From 1e010a96b8c65233e9a5869fb5aa748f6c039282 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 24 Jun 2023 15:21:55 -0400 Subject: [PATCH 001/104] docker: new xclim 0.44.0 should fix popmean.shape[axis] error so we can move to py310 See https://github.com/Ouranosinc/PAVICS-landing/issues/65 --- docker/Dockerfile | 4 +--- docker/environment.yml | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index b7da9aa..fd976a8 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -43,10 +43,8 @@ COPY environment.yml /environment.yml # Conda was stuck at this step: # DEBUG conda.common._logic:_run_sat(607): Invoking SAT with clause count: 2500273 # -# Python 3.10 cause this "ValueError: `popmean.shape[axis]` must equal 1." in -# homepage nb 4, see https://github.com/Ouranosinc/PAVICS-landing/issues/65 RUN umask 0000 && \ - mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.9 --yes && \ + mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && \ mamba env update --name birdy --file /environment.yml && \ mamba clean --all --yes diff --git a/docker/environment.yml b/docker/environment.yml index 2b375c9..2721ae7 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -19,7 +19,7 @@ dependencies: # Pin latest xclim and ravenpy to avoid downgrading during the second installation phase. # Mamba is quicker to solve dependencies than conda, but it is less precise so accidental downgrades can happen. - - xclim >= 0.43.0 + - xclim >= 0.44.0 - ravenpy >= 0.12.1 #- dask # from xclim and ravenpy From f56736758196253f85191c390e3003f76a351fe6 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 24 Jun 2023 15:29:57 -0400 Subject: [PATCH 002/104] docker: set bash as user shell for better Jupyter terminal experience --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index fd976a8..f879a34 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -21,7 +21,7 @@ RUN apt-get update && \ # Create user jenkins for our Jenkins e2e notebooks test suite. # Change /opt/conda folder permissions for jupyter-conda extension. RUN groupadd --gid 1000 jenkins \ - && useradd --uid 1000 --gid jenkins --create-home jenkins && \ + && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && \ chmod -R a+rwX /opt/conda COPY environment.yml /environment.yml From 8d344b0b8e9f24343ec9e1136c97561f80e047ba Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 29 Jun 2023 18:03:53 -0400 Subject: [PATCH 003/104] release: update to use image pavics/workflow-tests:230629 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6680d95..5bbb73b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:230601" + image "pavics/workflow-tests:230629" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 149d124..c22733d 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:230601 +FROM pavics/workflow-tests:230629 USER root diff --git a/launchcontainer b/launchcontainer index 844f733..ce5dacb 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:230601" + DOCKER_IMAGE="pavics/workflow-tests:230629" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index a07a30d..8ca94a2 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:230601" + DOCKER_IMAGE="pavics/workflow-tests:230629" fi if [ -z "$CONTAINER_NAME" ]; then From 4ad76b0d280fcf81bdaed2fd60a481057068c95f Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 4 Jul 2023 12:33:19 -0400 Subject: [PATCH 004/104] docker: pin pydantic to not break ravenpy --- docker/environment.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/environment.yml b/docker/environment.yml index 2721ae7..2af2c4b 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -22,6 +22,9 @@ dependencies: - xclim >= 0.44.0 - ravenpy >= 0.12.1 + # TODO: unpin pydantic, breaks ravenpy, needs ravenpy stable for paper submission + - pydantic < 2.0 + #- dask # from xclim and ravenpy #- distributed From 074f20e306158b99a4dd1e414fbd3d00d90b4eb4 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 4 Jul 2023 12:35:25 -0400 Subject: [PATCH 005/104] release: update to use image pavics/workflow-tests:py310-230704 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5bbb73b..91bdbf2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:230629" + image "pavics/workflow-tests:py310-230704" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index c22733d..fd37fd7 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:230629 +FROM pavics/workflow-tests:py310-230704 USER root diff --git a/launchcontainer b/launchcontainer index ce5dacb..1fc0743 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:230629" + DOCKER_IMAGE="pavics/workflow-tests:py310-230704" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 8ca94a2..2fe4094 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:230629" + DOCKER_IMAGE="pavics/workflow-tests:py310-230704" fi if [ -z "$CONTAINER_NAME" ]; then From dde83db57a700e5448a45e74fdfd7c151981c5d4 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 6 Jul 2023 12:20:50 -0400 Subject: [PATCH 006/104] docker: new ravenpy will pin pydantic itself --- docker/environment.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docker/environment.yml b/docker/environment.yml index 2af2c4b..7888b99 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -20,10 +20,7 @@ dependencies: # Pin latest xclim and ravenpy to avoid downgrading during the second installation phase. # Mamba is quicker to solve dependencies than conda, but it is less precise so accidental downgrades can happen. - xclim >= 0.44.0 - - ravenpy >= 0.12.1 - - # TODO: unpin pydantic, breaks ravenpy, needs ravenpy stable for paper submission - - pydantic < 2.0 + - ravenpy >= 0.12.2 #- dask # from xclim and ravenpy #- distributed From 138112ae2329d2d024f9c88dcd7f53c64fc74f6e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 6 Jul 2023 12:21:32 -0400 Subject: [PATCH 007/104] release: update to use image pavics/workflow-tests:py310-230706 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 91bdbf2..1401e6a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-230704" + image "pavics/workflow-tests:py310-230706" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index fd37fd7..a0dff1e 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-230704 +FROM pavics/workflow-tests:py310-230706 USER root diff --git a/launchcontainer b/launchcontainer index 1fc0743..2f5f157 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230704" + DOCKER_IMAGE="pavics/workflow-tests:py310-230706" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 2fe4094..cc5b556 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230704" + DOCKER_IMAGE="pavics/workflow-tests:py310-230706" fi if [ -z "$CONTAINER_NAME" ]; then From 30bbbb335c2d1fb82e2df19a89a2caa258b64b1e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 6 Jul 2023 15:29:30 -0400 Subject: [PATCH 008/104] docker: add pykdtree to fix cartopy bug with scipy 1.11 See https://github.com/Ouranosinc/pavics-sdi/pull/298, https://github.com/Ouranosinc/pavics-sdi/issues/294 --- docker/environment.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/environment.yml b/docker/environment.yml index 7888b99..90ff366 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -49,6 +49,10 @@ dependencies: - cfgrib - pydap - cartopy >= 0.21.0 + # Fixes cartopy bug arising with scipy 1.11. + # https://github.com/Ouranosinc/pavics-sdi/pull/298 + # https://github.com/Ouranosinc/pavics-sdi/issues/294 + - pykdtree - descartes # Is this really needed??? # - rasterio # from ravenpy # - gdal # for osgeo, from ravenpy From e974650bb54e7984818d260214662b3b6b1531de Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 6 Jul 2023 15:31:05 -0400 Subject: [PATCH 009/104] release: update to use image pavics/workflow-tests:py310-230706-2 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1401e6a..60017d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-230706" + image "pavics/workflow-tests:py310-230706-2" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index a0dff1e..4526378 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-230706 +FROM pavics/workflow-tests:py310-230706-2 USER root diff --git a/launchcontainer b/launchcontainer index 2f5f157..c096078 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230706" + DOCKER_IMAGE="pavics/workflow-tests:py310-230706-2" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index cc5b556..29ef719 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230706" + DOCKER_IMAGE="pavics/workflow-tests:py310-230706-2" fi if [ -z "$CONTAINER_NAME" ]; then From 0a918bdc95319ea1394cba6b979994295473e3dc Mon Sep 17 00:00:00 2001 From: Long Vu Date: Fri, 21 Jul 2023 16:02:47 -0400 Subject: [PATCH 010/104] release: update to use image pavics/workflow-tests:py310-230721 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 60017d6..4cfe3bd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-230706-2" + image "pavics/workflow-tests:py310-230721" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 4526378..5dd97e9 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-230706-2 +FROM pavics/workflow-tests:py310-230721 USER root diff --git a/launchcontainer b/launchcontainer index c096078..38dfcdd 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230706-2" + DOCKER_IMAGE="pavics/workflow-tests:py310-230721" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 29ef719..0d2d8c4 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230706-2" + DOCKER_IMAGE="pavics/workflow-tests:py310-230721" fi if [ -z "$CONTAINER_NAME" ]; then From 33c1ec7e35bc68d610ff08714b5e0dcd9459101a Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 30 Aug 2023 11:54:50 -0400 Subject: [PATCH 011/104] docker: unpin intake-esm, issue should be fixed Should be fixed by https://github.com/intake/intake-esm/pull/569. Fixes https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests/issues/109 --- docker/environment.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docker/environment.yml b/docker/environment.yml index 90ff366..cd96ed7 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -106,11 +106,7 @@ dependencies: # Plugin for building and loading intake catalogs for earth system data sets # holdings, such as CMIP (Coupled Model Intercomparison Project) and CESM # Large Ensemble datasets. - # Pin intake-esm since newer version activated validation of optional fields and broke our notebooks - # ValidationError: 1 validation error for ESMCatalogModel - # aggregation_control - # field required (type=value_error.missing) - - intake-esm <= 2021.8.17 + - intake-esm >= 2023.6.14 # load netCDF, Zarr and other multi-dimensional data (xarray_image, netcdf, # grib, opendap, rasterio, remote-xarray, zarr) - intake-xarray From 9bfb843acc0173d5e2e053f198330fe00c24e3af Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 30 Aug 2023 12:01:09 -0400 Subject: [PATCH 012/104] docker: unpin numpy to see if issue with datashade=True in hvplot.quadmesh() is fixed See https://github.com/holoviz/hvplot/issues/1073 --- docker/environment.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docker/environment.yml b/docker/environment.yml index cd96ed7..e0ac25d 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -32,10 +32,7 @@ dependencies: - matplotlib # - xarray # from xclim and ravenpy # - numpy # from xclim and ravenpy - # TODO: unpin numpy, pinned for hvplot.quadmesh(rasterize=True) - # datashade=True is an alias - # See https://github.com/holoviz/hvplot/issues/1073 - - numpy <= 1.23.5 + - numpy # TODO: unpin cf_xarray due to https://github.com/xarray-contrib/cf-xarray/issues/442 - cf_xarray != 0.8.1 - birdy From 7083aae1f27039a8a7cae973eb937fa37bfec251 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 30 Aug 2023 12:08:19 -0400 Subject: [PATCH 013/104] docker: unpin panel to test if Analogues dashboard can work with newer panel Also for https://github.com/Ouranosinc/pavics_panel_cccs/issues/102. --- docker/environment.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/environment.yml b/docker/environment.yml index e0ac25d..3b55d81 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -68,8 +68,7 @@ dependencies: - jupyter_bokeh - pscript - h5netcdf - # TODO: remove panel pin when Analogues dashboard works - - panel <= 0.14.4 + - panel # https://github.com/holoviz/panel - pyviz_comms # (was labextension pyviz/jupyterlab_pyviz in jupyterlab v2) - holoviews From 117b6de7fe6c03661cd2d5a8e9e6e7dcd34fb629 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 30 Aug 2023 12:25:01 -0400 Subject: [PATCH 014/104] release: update to use image pavics/workflow-tests:py310-230830 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f2fa68a..47c05c5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-230721" + image "pavics/workflow-tests:py310-230830" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 5dd97e9..f27dc9e 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-230721 +FROM pavics/workflow-tests:py310-230830 USER root diff --git a/launchcontainer b/launchcontainer index 38dfcdd..45308b0 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230721" + DOCKER_IMAGE="pavics/workflow-tests:py310-230830" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 0d2d8c4..54e19ea 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230721" + DOCKER_IMAGE="pavics/workflow-tests:py310-230830" fi if [ -z "$CONTAINER_NAME" ]; then From 9a42dd7b4e3a644db5ad4ce46234999763ae71f9 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 7 Sep 2023 22:37:28 -0400 Subject: [PATCH 015/104] docker: force latest panel >= 1.2.2 because mamba randomly choose older 1.2.1 --- docker/Dockerfile.testing | 4 ++-- docker/environment.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 494811d..55259b1 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -1,6 +1,6 @@ # For testing quickly without having to do a full rebuild. -FROM pavics/workflow-tests:230530-1 +FROM pavics/workflow-tests:py310-230830 #ENV ESMFMKFILE="/opt/conda/envs/birdy/lib/esmf.mk" @@ -11,7 +11,7 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy ravenpy==0.12.1 \ + && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy panel==1.2.2 \ && mamba clean --all --yes # && pip uninstall -y ravenpy \ # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy ravenpy aiohttp diff --git a/docker/environment.yml b/docker/environment.yml index 3b55d81..8f8f5d9 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -68,7 +68,7 @@ dependencies: - jupyter_bokeh - pscript - h5netcdf - - panel + - panel >= 1.2.2 # https://github.com/holoviz/panel - pyviz_comms # (was labextension pyviz/jupyterlab_pyviz in jupyterlab v2) - holoviews From adc4d3dff268eb3b3f59e92b54459347f373879e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 7 Sep 2023 22:40:02 -0400 Subject: [PATCH 016/104] release: update to use image pavics/workflow-tests:py310-230830-update230907 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 47c05c5..acf75f2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-230830" + image "pavics/workflow-tests:py310-230830-update230907" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index f27dc9e..5c88800 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-230830 +FROM pavics/workflow-tests:py310-230830-update230907 USER root diff --git a/launchcontainer b/launchcontainer index 45308b0..26cd461 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230830" + DOCKER_IMAGE="pavics/workflow-tests:py310-230830-update230907" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 54e19ea..8963934 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230830" + DOCKER_IMAGE="pavics/workflow-tests:py310-230830-update230907" fi if [ -z "$CONTAINER_NAME" ]; then From c7c03585bf40da8b0b007c7f1e488aa07df7b600 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 20 Sep 2023 17:09:55 -0400 Subject: [PATCH 017/104] docker: ensure /notebook_dir/ is read-only for the Jupyter user Anything outside of /notebook_dir/writable-workspace/ is not persisted on disk. So we make /notebook_dir/ read-only to avoid user accidentally saving valuable data there and lose it. Need to pre-create /notebook_dir/writable-workspace/ and /notebook_dir/pavics-homepage/ because Jenkins will write there so these folders are writable. See https://github.com/Ouranosinc/PAVICS-landing/blob/f733612c9805bbd46da7d8204497553d891ffd1b/content/notebooks/climate_indicators/setup_dirlayout.sh#L14-L27 --- docker/Dockerfile | 4 +++- docker/Dockerfile.testing | 9 ++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index f879a34..c00ca55 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -95,7 +95,9 @@ RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/$DOCKER_STACKS_ wget https://raw.githubusercontent.com/jupyter/docker-stacks/$DOCKER_STACKS_COMMIT/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && \ chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && \ chmod a+r /etc/jupyter/jupyter_notebook_config.py && \ - mkdir /notebook_dir && chown jenkins /notebook_dir && \ + mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && \ + mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && \ + chown root:root /notebook_dir && chmod a-w /notebook_dir && \ chmod a+rwX -R /opt/conda/envs/birdy/fonts && \ mkdir /opt/conda/pkgs/cache && \ chown jenkins:jenkins -R /opt/conda/pkgs/cache && \ diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 55259b1..8f23050 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -1,6 +1,6 @@ # For testing quickly without having to do a full rebuild. -FROM pavics/workflow-tests:py310-230830 +FROM pavics/workflow-tests:230601 #ENV ESMFMKFILE="/opt/conda/envs/birdy/lib/esmf.mk" @@ -11,8 +11,11 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy panel==1.2.2 \ - && mamba clean --all --yes + && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace \ + && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage \ + && chown root:root /notebook_dir && chmod a-w /notebook_dir +# && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy panel==1.2.2 \ +# && mamba clean --all --yes # && pip uninstall -y ravenpy \ # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy ravenpy aiohttp From 68cce0b9489c5a4871a1b1890a8a97e0530514d8 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 20 Sep 2023 17:13:46 -0400 Subject: [PATCH 018/104] release: update to use image pavics/workflow-tests:py39-230601-1 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index acf75f2..8abd37d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-230830-update230907" + image "pavics/workflow-tests:py39-230601-1" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 5c88800..ff7a0b7 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-230830-update230907 +FROM pavics/workflow-tests:py39-230601-1 USER root diff --git a/launchcontainer b/launchcontainer index 26cd461..dbefd8b 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230830-update230907" + DOCKER_IMAGE="pavics/workflow-tests:py39-230601-1" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 8963934..02796db 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-230830-update230907" + DOCKER_IMAGE="pavics/workflow-tests:py39-230601-1" fi if [ -z "$CONTAINER_NAME" ]; then From 4d8dcd054555c242cb0347f9559d2d38955354ea Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 17 Oct 2023 00:45:30 -0400 Subject: [PATCH 019/104] docker update: newer panel and bokeh for FWI quick release --- docker/Dockerfile.testing | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 8f23050..f64f16d 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -1,6 +1,6 @@ # For testing quickly without having to do a full rebuild. -FROM pavics/workflow-tests:230601 +FROM pavics/workflow-tests:py39-230601-1 #ENV ESMFMKFILE="/opt/conda/envs/birdy/lib/esmf.mk" @@ -11,11 +11,8 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace \ - && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage \ - && chown root:root /notebook_dir && chmod a-w /notebook_dir -# && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy panel==1.2.2 \ -# && mamba clean --all --yes + && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy panel==1.2.2 bokeh==3.2.2 \ + && mamba clean --all --yes # && pip uninstall -y ravenpy \ # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy ravenpy aiohttp From 187f9bf1db993a1fb62199d7ea998c0a78331c79 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 7 Nov 2023 09:29:26 -0500 Subject: [PATCH 020/104] release: update to use image pavics/workflow-tests:py310-231107 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8abd37d..700e21e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py39-230601-1" + image "pavics/workflow-tests:py310-231107" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index ff7a0b7..bb3a1c5 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py39-230601-1 +FROM pavics/workflow-tests:py310-231107 USER root diff --git a/launchcontainer b/launchcontainer index dbefd8b..b543905 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py39-230601-1" + DOCKER_IMAGE="pavics/workflow-tests:py310-231107" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 02796db..dbac39a 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py39-230601-1" + DOCKER_IMAGE="pavics/workflow-tests:py310-231107" fi if [ -z "$CONTAINER_NAME" ]; then From 8529a9abb326cf30d27c12e0aca5b7d0c94a299c Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 30 Jan 2024 15:32:31 -0500 Subject: [PATCH 021/104] docker: ensure threddsclient >= 0.4.5 for Thredds v5 compat See https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests/pull/134 --- docker/environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/environment.yml b/docker/environment.yml index f784ac4..4ff587b 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -61,7 +61,7 @@ dependencies: - pyogrio - scikit-image - ipyleaflet - - threddsclient + - threddsclient >= 0.4.5 - bokeh - regionmask - siphon From 5c282ebbe2cc456c0f0a5f06d9c8f706f68fb65e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 30 Jan 2024 15:45:50 -0500 Subject: [PATCH 022/104] docker: ensure recent new packages part of new incremental build --- docker/Dockerfile.testing | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 94d6d61..935ef60 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -1,6 +1,6 @@ # For testing quickly without having to do a full rebuild. -FROM pavics/workflow-tests:py39-230601-1-update231122 +FROM pavics/workflow-tests:py310-231107 #ENV ESMFMKFILE="/opt/conda/envs/birdy/lib/esmf.mk" @@ -11,9 +11,9 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && pip install --no-cache-dir https://github.com/bird-house/threddsclient/archive/refs/heads/master.zip -# && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy salib \ -# && mamba clean --all --yes + && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy salib threddsclient==0.4.5 \ + && mamba clean --all --yes \ + && pip install --no-cache-dir --upgrade fstd2nc # && pip uninstall -y ravenpy \ # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy ravenpy aiohttp From a62b2ddfde0310a3a316e2b26c9498ea7962e70d Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 30 Jan 2024 15:47:37 -0500 Subject: [PATCH 023/104] docker: ensure xclim >= 0.47.0 --- docker/Dockerfile.testing | 2 +- docker/environment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 935ef60..035bc21 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -11,7 +11,7 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy salib threddsclient==0.4.5 \ + && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy salib threddsclient==0.4.5 xclim==0.47.0 \ && mamba clean --all --yes \ && pip install --no-cache-dir --upgrade fstd2nc # && pip uninstall -y ravenpy \ diff --git a/docker/environment.yml b/docker/environment.yml index 4ff587b..d061c43 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -19,7 +19,7 @@ dependencies: # Pin latest xclim and ravenpy to avoid downgrading during the second installation phase. # Mamba is quicker to solve dependencies than conda, but it is less precise so accidental downgrades can happen. - - xclim >= 0.44.0 + - xclim >= 0.47.0 - ravenpy >= 0.12.2 #- dask # from xclim and ravenpy From e2d81937cd451d8241fda67a1eec10237b90121e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 30 Jan 2024 16:27:34 -0500 Subject: [PATCH 024/104] release: update to use image pavics/workflow-tests:py310-231107-update240130 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9adb751..26eb5f7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-231107" + image "pavics/workflow-tests:py310-231107-update240130" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index bb3a1c5..ce78f0a 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-231107 +FROM pavics/workflow-tests:py310-231107-update240130 USER root diff --git a/launchcontainer b/launchcontainer index b543905..d800c5d 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-231107" + DOCKER_IMAGE="pavics/workflow-tests:py310-231107-update240130" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index dbac39a..0bede83 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-231107" + DOCKER_IMAGE="pavics/workflow-tests:py310-231107-update240130" fi if [ -z "$CONTAINER_NAME" ]; then From 56992e5f60dfcb3dfdd323274062375a834849df Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 6 Mar 2024 17:58:19 -0500 Subject: [PATCH 025/104] docker: add xscen, finagos, upgrade ravenpy and pydantic In a fresh build, ravenpy should pull pydantic. xscen and finagos are Ouranos internal tools that are ready to be used publicly. --- docker/Dockerfile.testing | 6 +++--- docker/environment.yml | 10 +++++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 035bc21..2544b37 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -1,6 +1,6 @@ # For testing quickly without having to do a full rebuild. -FROM pavics/workflow-tests:py310-231107 +FROM pavics/workflow-tests:py310-231107-update240130 #ENV ESMFMKFILE="/opt/conda/envs/birdy/lib/esmf.mk" @@ -11,9 +11,9 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy salib threddsclient==0.4.5 xclim==0.47.0 \ + && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.3 ravenpy==0.13.0 pydantic==2.6.3 \ && mamba clean --all --yes \ - && pip install --no-cache-dir --upgrade fstd2nc + && pip install --no-cache-dir --upgrade finagos # && pip uninstall -y ravenpy \ # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy ravenpy aiohttp diff --git a/docker/environment.yml b/docker/environment.yml index d061c43..613220f 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -20,7 +20,11 @@ dependencies: # Pin latest xclim and ravenpy to avoid downgrading during the second installation phase. # Mamba is quicker to solve dependencies than conda, but it is less precise so accidental downgrades can happen. - xclim >= 0.47.0 - - ravenpy >= 0.12.2 + - ravenpy >= 0.13.0 + + # https://anaconda.org/conda-forge/xscen + # A climate change scenario-building analysis framework, built with xclim/xarray. + - xscen >= 0.8.3 #- dask # from xclim and ravenpy #- distributed @@ -221,6 +225,10 @@ dependencies: # https://pypi.org/project/fstd2nc/ # Converts RPN standard files (from Environment Canada) to netCDF files. - fstd2nc + # https://pypi.org/project/figanos/ + # Outils pour produire des graphiques informatifs sur les impacts des + # changements climatiques. + - figanos # visual debugger for Jupyter Notebook, not working with JupyterLab at this moment - pixiedust # block execution of 'run_all_cells' until user input finished From 23cb6af9800f399601d6c03e6f82d2f0fb1f1360 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 6 Mar 2024 18:30:38 -0500 Subject: [PATCH 026/104] docker: pin xscen for back-compat with xclim 0.47.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the following dependency error: Note the ravenpy error is not true! Pinning xscen also solved the ravenpy error. ``` Could not solve for environment specs The following packages are incompatible ├─ ravenpy 0.13.0 is installable with the potential options │ ├─ ravenpy 0.13.0 would require │ │ └─ xarray >=2022.12.0,<2023.9.0 with the potential options │ │ ├─ xarray [2023.4.1|2023.4.2|...|2023.8.0], which can be installed; │ │ ├─ xarray [2022.12.0|2023.1.0] would require │ │ │ └─ pandas >=1.3,<2a0 with the potential options │ │ │ ├─ pandas [1.4.0|1.4.1|...|1.5.3], which can be installed; │ │ │ ├─ pandas [1.3.0|1.3.1|...|1.5.3] would require │ │ │ │ └─ python >=3.8,<3.9.0a0 , which can be installed; │ │ │ ├─ pandas [1.3.0|1.3.1|...|2.2.1] would require │ │ │ │ └─ python >=3.9,<3.10.0a0 , which can be installed; │ │ │ ├─ pandas [1.5.1|1.5.2|1.5.3|2.2.0|2.2.1] would require │ │ │ │ └─ python >=3.11,<3.12.0a0 , which can be installed; │ │ │ ├─ pandas [1.3.0|1.3.1|...|1.3.5] would require │ │ │ │ └─ python >=3.7,<3.8.0a0 , which can be installed; │ │ │ └─ pandas [1.3.0|1.3.1|...|1.3.5], which can be installed; │ │ └─ xarray [2023.2.0|2023.3.0] would require │ │ └─ pandas [>=1.4,<2 |>=1.4,<2a0 ] with the potential options │ │ ├─ pandas [1.4.0|1.4.1|...|1.5.3], which can be installed; │ │ ├─ pandas [1.3.0|1.3.1|...|1.5.3], which can be installed (as previously explained); │ │ ├─ pandas [1.3.0|1.3.1|...|2.2.1], which can be installed (as previously explained); │ │ └─ pandas [1.5.1|1.5.2|1.5.3|2.2.0|2.2.1], which can be installed (as previously explained); │ ├─ ravenpy 0.13.0 would require │ │ └─ python >=3.11,<3.12.0a0 , which can be installed; │ ├─ ravenpy 0.13.0 would require │ │ └─ python >=3.8,<3.9.0a0 , which can be installed; │ └─ ravenpy 0.13.0 would require │ └─ python >=3.9,<3.10.0a0 , which can be installed; └─ xscen 0.8.3 is not installable because it requires ├─ pandas >=2.2 with the potential options │ ├─ pandas [1.3.0|1.3.1|...|2.2.1], which can be installed (as previously explained); │ ├─ pandas [1.5.1|1.5.2|1.5.3|2.2.0|2.2.1], which can be installed (as previously explained); │ ├─ pandas [2.2.0|2.2.1] conflicts with any installable versions previously reported; │ └─ pandas [2.2.0|2.2.1] would require │ └─ python >=3.12,<3.13.0a0 , which can be installed; └─ xclim >=0.48.2 , which requires └─ xarray >=2023.11.0 , which conflicts with any installable versions previously reported. The command '/bin/sh -c umask 0000 && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.3 ravenpy==0.13.0 pydantic==2.6.3 && mamba clean --a ll --yes && pip install --no-cache-dir --upgrade finagos' returned a non-zero code: 1 ``` --- docker/Dockerfile.testing | 2 +- docker/environment.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 2544b37..9e75266 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -11,7 +11,7 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.3 ravenpy==0.13.0 pydantic==2.6.3 \ + && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.2 ravenpy==0.13.0 pydantic==2.6.3 \ && mamba clean --all --yes \ && pip install --no-cache-dir --upgrade finagos # && pip uninstall -y ravenpy \ diff --git a/docker/environment.yml b/docker/environment.yml index 613220f..dd78ccf 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -24,7 +24,8 @@ dependencies: # https://anaconda.org/conda-forge/xscen # A climate change scenario-building analysis framework, built with xclim/xarray. - - xscen >= 0.8.3 + # PIN to 0.8.2 for xclim 0.47.0 compat + - xscen == 0.8.2 #- dask # from xclim and ravenpy #- distributed From 63011de12c6924deb4ebf5c568e6bcb5da597349 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 6 Mar 2024 18:42:31 -0500 Subject: [PATCH 027/104] docker: fix typo in figanos name --- docker/Dockerfile.testing | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 9e75266..07f5f9d 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -13,7 +13,7 @@ USER root RUN umask 0000 \ && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.2 ravenpy==0.13.0 pydantic==2.6.3 \ && mamba clean --all --yes \ - && pip install --no-cache-dir --upgrade finagos + && pip install --no-cache-dir --upgrade figanos # && pip uninstall -y ravenpy \ # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy ravenpy aiohttp From ce26b1c4c7776456bdb7821fdd339242252b2c08 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 6 Mar 2024 18:54:34 -0500 Subject: [PATCH 028/104] release: update to use image pavics/workflow-tests:py310-231107-update240306 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 26eb5f7..c4daf74 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-231107-update240130" + image "pavics/workflow-tests:py310-231107-update240306" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index ce78f0a..9b20bda 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-231107-update240130 +FROM pavics/workflow-tests:py310-231107-update240306 USER root diff --git a/launchcontainer b/launchcontainer index d800c5d..514d852 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-231107-update240130" + DOCKER_IMAGE="pavics/workflow-tests:py310-231107-update240306" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 0bede83..0790e7a 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-231107-update240130" + DOCKER_IMAGE="pavics/workflow-tests:py310-231107-update240306" fi if [ -z "$CONTAINER_NAME" ]; then From 4f2c0995711f5b6db82991065a652ea056778a2a Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 6 Mar 2024 19:43:43 -0500 Subject: [PATCH 029/104] release: update to use image pavics/workflow-tests:py310-240306 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c4daf74..98d591f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-231107-update240306" + image "pavics/workflow-tests:py310-240306" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 9b20bda..5faf28a 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-231107-update240306 +FROM pavics/workflow-tests:py310-240306 USER root diff --git a/launchcontainer b/launchcontainer index 514d852..75402c3 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-231107-update240306" + DOCKER_IMAGE="pavics/workflow-tests:py310-240306" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 0790e7a..b8847f4 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-231107-update240306" + DOCKER_IMAGE="pavics/workflow-tests:py310-240306" fi if [ -z "$CONTAINER_NAME" ]; then From daaa4896c7358eff3a7bd6434617b4af06c89e42 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 6 Mar 2024 21:40:36 -0500 Subject: [PATCH 030/104] docker: attempt to fix "Plugin 'jupyterlab_dash' is already registered." --- docker/Dockerfile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index c00ca55..bded360 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -61,15 +61,6 @@ RUN python -m ipykernel install --name birdy # environment.yml above # RUN mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy nbdime -# build jupyterlab extensions installed by conda, see `jupyter labextension list` -# Supposedly not needed with jupyterlab v3 anymore but see -# https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998901247 -# TODO: remove 'jupyter lab build' step once all extensions move to prebuilt extensions, -# see comment https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998917305 -# Currently jupyter-dash is holding back this step, see -# https://github.com/plotly/jupyter-dash/issues/49 -RUN jupyter lab build - RUN jupyter serverextension enable voila --sys-prefix \ && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix \ && jupyter serverextension list From f4b19c252ad0e6e2e9db06a28fef8b782acd15f7 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 7 Mar 2024 11:21:53 -0500 Subject: [PATCH 031/104] Revert "docker: attempt to fix "Plugin 'jupyterlab_dash' is already registered."" This reverts commit daaa4896c7358eff3a7bd6434617b4af06c89e42. Have this error when starting JupyterLab: ``` JupyterLab build is suggested: @plotly/dash-jupyterlab needs to be included in build jupyterlab-dash needs to be included in build ``` --- docker/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index bded360..c00ca55 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -61,6 +61,15 @@ RUN python -m ipykernel install --name birdy # environment.yml above # RUN mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy nbdime +# build jupyterlab extensions installed by conda, see `jupyter labextension list` +# Supposedly not needed with jupyterlab v3 anymore but see +# https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998901247 +# TODO: remove 'jupyter lab build' step once all extensions move to prebuilt extensions, +# see comment https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998917305 +# Currently jupyter-dash is holding back this step, see +# https://github.com/plotly/jupyter-dash/issues/49 +RUN jupyter lab build + RUN jupyter serverextension enable voila --sys-prefix \ && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix \ && jupyter serverextension list From 81deb99a4111b9c0945e26e06809be2d90ea59b0 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 7 Mar 2024 12:20:39 -0500 Subject: [PATCH 032/104] docker: add py39-230601-1-update240116 previous release env export and build logs as baseline --- docker/saved_buildout/conda-env-export.yml | 706 +++++++++++++++++++++ docker/saved_buildout/docker-buildlogs.txt | 339 ++++++++++ 2 files changed, 1045 insertions(+) create mode 100644 docker/saved_buildout/conda-env-export.yml create mode 100644 docker/saved_buildout/docker-buildlogs.txt diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml new file mode 100644 index 0000000..01cdf34 --- /dev/null +++ b/docker/saved_buildout/conda-env-export.yml @@ -0,0 +1,706 @@ +name: birdy +channels: + - cdat + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=conda_forge + - _openmp_mutex=4.5=2_gnu + - affine=2.4.0=pyhd8ed1ab_0 + - aiobotocore=2.5.0=pyhd8ed1ab_0 + - aiofiles=22.1.0=pyhd8ed1ab_0 + - aiohttp=3.8.4=py39h72bdee0_0 + - aioitertools=0.11.0=pyhd8ed1ab_0 + - aiosignal=1.3.1=pyhd8ed1ab_0 + - aiosqlite=0.19.0=pyhd8ed1ab_0 + - alembic=1.11.1=pyhd8ed1ab_0 + - alsa-lib=1.2.8=h166bdaf_0 + - altair=5.0.1=pyhd8ed1ab_0 + - ansi2html=1.8.0=py39hf3d152e_1 + - anyio=3.6.1=pyhd8ed1ab_1 + - aom=3.5.0=h27087fc_0 + - appdirs=1.4.4=pyh9f0ad1d_0 + - argon2-cffi=21.3.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py39hb9d737c_3 + - asciitree=0.3.3=py_2 + - astor=0.8.1=pyh9f0ad1d_0 + - asttokens=2.2.1=pyhd8ed1ab_0 + - async-timeout=4.0.2=pyhd8ed1ab_0 + - async_generator=1.10=py_0 + - attr=2.5.1=h166bdaf_1 + - attrs=23.1.0=pyh71513ae_1 + - aws-c-auth=0.6.27=he072965_1 + - aws-c-cal=0.5.26=hf677bf3_1 + - aws-c-common=0.8.19=hd590300_0 + - aws-c-compression=0.2.16=hbad4bc6_7 + - aws-c-event-stream=0.2.20=hb4b372c_7 + - aws-c-http=0.7.7=h2632f9a_4 + - aws-c-io=0.13.21=h9fef7b8_5 + - aws-c-mqtt=0.8.11=h2282364_1 + - aws-c-s3=0.3.0=hcb5a9b2_2 + - aws-c-sdkutils=0.1.9=hbad4bc6_2 + - aws-checksums=0.1.14=hbad4bc6_7 + - aws-crt-cpp=0.20.2=he0fdcb3_0 + - aws-sdk-cpp=1.10.57=h059227d_13 + - babel=2.12.1=pyhd8ed1ab_1 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.functools_lru_cache=1.6.4=pyhd8ed1ab_0 + - base58=2.1.1=pyhd8ed1ab_0 + - bcrypt=3.2.2=py39hb9d737c_1 + - beautifulsoup4=4.12.2=pyha770c72_0 + - bias_correction=0.4=pyhd8ed1ab_0 + - birdy=0.8.4=pyh1a96a4e_0 + - bleach=6.0.0=pyhd8ed1ab_0 + - blinker=1.6.2=pyhd8ed1ab_0 + - blosc=1.21.4=h0f2a231_0 + - bokeh=2.4.3=pyhd8ed1ab_3 + - boltons=23.0.0=pyhd8ed1ab_0 + - boost-cpp=1.78.0=h5adbc97_2 + - boto3=1.26.76=pyhd8ed1ab_0 + - botocore=1.29.76=pyhd8ed1ab_0 + - bottleneck=1.3.7=py39h389d5f1_0 + - branca=0.6.0=pyhd8ed1ab_0 + - brotli=1.0.9=h166bdaf_8 + - brotli-bin=1.0.9=h166bdaf_8 + - brotlipy=0.7.0=py39hb9d737c_1005 + - brunsli=0.1=h9c3ff4c_0 + - bzip2=1.0.8=h7f98852_4 + - c-ares=1.19.1=hd590300_0 + - c-blosc2=2.9.2=hb4ffafa_0 + - ca-certificates=2023.7.22=hbcca054_0 + - cached-property=1.5.2=hd8ed1ab_1 + - cached_property=1.5.2=pyha770c72_1 + - cachetools=5.3.0=pyhd8ed1ab_0 + - cairo=1.16.0=ha61ee94_1014 + - cartopy=0.21.1=py39h6e7ad6e_0 + - cattrs=23.1.1=pyhd8ed1ab_0 + - cdat_info=8.2.1=pyhd8ed1ab_2 + - cdms2=3.1.5=py39h36de48d_15 + - cdtime=3.1.4=py39he83c29a_7 + - certifi=2023.7.22=pyhd8ed1ab_0 + - certipy=0.1.3=py_0 + - cf_xarray=0.8.0=pyhd8ed1ab_0 + - cffi=1.15.1=py39he91dace_3 + - cfgrib=0.9.10.4=pyhd8ed1ab_0 + - cfgv=3.3.1=pyhd8ed1ab_0 + - cfitsio=4.2.0=hd9d235c_0 + - cftime=1.6.2=py39h2ae25f5_1 + - charls=2.4.2=h59595ed_0 + - charset-normalizer=2.1.1=pyhd8ed1ab_0 + - click=8.1.3=unix_pyhd8ed1ab_2 + - click-plugins=1.1.1=py_0 + - cligj=0.7.2=pyhd8ed1ab_1 + - climpred=2.3.0=pyhd8ed1ab_0 + - clisops=0.9.6=pyh1a96a4e_0 + - cloudpickle=2.2.1=pyhd8ed1ab_0 + - colorama=0.4.6=pyhd8ed1ab_0 + - colorcet=3.0.1=pyhd8ed1ab_0 + - comm=0.1.3=pyhd8ed1ab_0 + - configurable-http-proxy=4.5.4=he2f69ee_2 + - contourpy=1.0.7=py39h4b4f3f3_0 + - coverage=7.2.7=py39hd1e30aa_0 + - cryptography=41.0.0=py39hd4f0224_0 + - curl=8.1.2=h409715c_0 + - cycler=0.11.0=pyhd8ed1ab_0 + - cytoolz=0.12.0=py39hb9d737c_1 + - dash=2.10.0=pyhd8ed1ab_0 + - dask=2023.5.1=pyhd8ed1ab_0 + - dask-core=2023.5.1=pyhd8ed1ab_0 + - dask-labextension=6.1.0=pyhd8ed1ab_0 + - dataclasses=0.8=pyhc8e2a94_3 + - datashader=0.15.0=pyhd8ed1ab_0 + - datashape=0.5.4=py_1 + - dav1d=1.2.0=hd590300_0 + - dbus=1.13.6=h5008d03_3 + - debugpy=1.6.7=py39h227be39_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - defusedxml=0.7.1=pyhd8ed1ab_0 + - descartes=1.1.0=py_4 + - dill=0.3.6=pyhd8ed1ab_1 + - distarray=2.12.2=pyh050c7b8_4 + - distlib=0.3.6=pyhd8ed1ab_0 + - distributed=2023.5.1=pyhd8ed1ab_0 + - docopt=0.6.2=py_1 + - docrep=0.3.2=pyh44b312d_0 + - eccodes=2.28.0=h7513371_1 + - elfutils=0.189=hde5d1a3_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - eofs=1.4.0=py_0 + - esgf-compute-api=2.3.9=0_h1234567_ + - esgf-pyclient=0.3.1=pyh1a96a4e_2 + - esmf=8.4.0=mpi_mpich_hc592774_104 + - esmpy=8.4.0=mpi_mpich_py39h3088dd8_102 + - exceptiongroup=1.1.1=pyhd8ed1ab_0 + - execnet=1.9.0=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - expat=2.5.0=hcb278e6_1 + - fasteners=0.17.3=pyhd8ed1ab_0 + - fastprogress=1.0.3=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_hc118613_107 + - filelock=3.12.0=pyhd8ed1ab_0 + - findlibs=0.0.5=pyhd8ed1ab_0 + - fiona=1.9.1=py39hbc5ff6d_0 + - flask=2.3.2=pyhd8ed1ab_0 + - flit-core=3.9.0=pyhd8ed1ab_0 + - flox=0.7.2=pyhd8ed1ab_0 + - folium=0.14.0=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 + - font-ttf-inconsolata=3.000=h77eed37_0 + - font-ttf-source-code-pro=2.038=h77eed37_0 + - font-ttf-ubuntu=0.83=hab24e00_0 + - fontconfig=2.14.2=h14ed4e7_0 + - fonts-conda-ecosystem=1=0 + - fonts-conda-forge=1=0 + - fonttools=4.39.4=py39hd1e30aa_0 + - freeglut=3.2.2=h9c3ff4c_1 + - freetype=2.12.1=hca18f0e_1 + - freexl=1.0.6=h166bdaf_1 + - frozenlist=1.3.3=py39hb9d737c_0 + - fsspec=2023.5.0=pyh1a96a4e_0 + - funcsigs=1.0.2=py_3 + - future=0.18.3=pyhd8ed1ab_0 + - g2clib=1.6.3=hbecde78_1 + - gcsfs=2023.5.0=pyhd8ed1ab_0 + - gdal=3.6.2=py39hc6cd174_6 + - geckodriver=0.33.0=hd2f7af9_0 + - geographiclib=1.52=pyhd8ed1ab_0 + - geopandas=0.13.0=pyhd8ed1ab_0 + - geopandas-base=0.13.0=pyha770c72_0 + - geopy=2.3.0=pyhd8ed1ab_0 + - geos=3.11.1=h27087fc_0 + - geotiff=1.7.1=h7a142b4_6 + - geoviews=1.9.6=pyhd8ed1ab_0 + - geoviews-core=1.9.6=pyha770c72_0 + - gettext=0.21.1=h27087fc_0 + - gflags=2.2.2=he1b5a44_1004 + - giflib=5.2.1=h0b41bf4_3 + - gitdb=4.0.10=pyhd8ed1ab_0 + - gitpython=3.1.31=pyhd8ed1ab_0 + - glib=2.76.3=hfc55251_0 + - glib-tools=2.76.3=hfc55251_0 + - glog=0.6.0=h6f12383_0 + - gnutls=3.7.8=hf3e180e_0 + - google-api-core=2.11.0=pyhd8ed1ab_0 + - google-auth=2.19.0=pyh1a96a4e_0 + - google-auth-oauthlib=1.0.0=pyhd8ed1ab_0 + - google-cloud-core=2.3.2=pyhd8ed1ab_0 + - google-cloud-storage=2.9.0=pyh1a96a4e_0 + - google-crc32c=1.1.2=py39h8db88ab_4 + - google-resumable-media=2.5.0=pyhd8ed1ab_0 + - googleapis-common-protos=1.57.1=pyhd8ed1ab_0 + - graphite2=1.3.13=h58526e2_1001 + - greenlet=2.0.2=py39h3d6467e_1 + - grpcio=1.54.2=py39h227be39_2 + - gst-plugins-base=1.22.0=h4243ec0_2 + - gstreamer=1.22.0=h25f0c4b_2 + - gstreamer-orc=0.4.34=hd590300_0 + - h11=0.14.0=pyhd8ed1ab_0 + - h5netcdf=1.1.0=pyhd8ed1ab_1 + - h5py=3.8.0=mpi_mpich_py39hadaddcd_0 + - harfbuzz=6.0.0=h8e241bc_0 + - haversine=2.8.0=pyhd8ed1ab_0 + - hdf4=4.2.15=h9772cbc_5 + - hdf5=1.12.2=mpi_mpich_h5d83325_1 + - holoviews=1.16.0=pyhd8ed1ab_0 + - hvplot=0.8.3=pyhd8ed1ab_0 + - icu=70.1=h27087fc_0 + - identify=2.5.24=pyhd8ed1ab_0 + - idna=3.4=pyhd8ed1ab_0 + - imagecodecs=2023.1.23=py39hd061359_0 + - imageio=2.28.1=pyh24c5eb1_0 + - importlib-metadata=6.6.0=pyha770c72_0 + - importlib-resources=5.12.0=pyhd8ed1ab_0 + - importlib_metadata=6.6.0=hd8ed1ab_0 + - importlib_resources=5.12.0=pyhd8ed1ab_0 + - iniconfig=2.0.0=pyhd8ed1ab_0 + - intake=0.7.0=pyhd8ed1ab_0 + - intake-esm=2021.8.17=pyhd8ed1ab_0 + - intake-geopandas=0.4.0=pyhd8ed1ab_0 + - intake-thredds=2022.8.19=pyhd8ed1ab_0 + - intake-xarray=0.7.0=pyhd8ed1ab_0 + - ipykernel=6.23.1=pyh210e3f2_0 + - ipyleaflet=0.17.2=pyhd8ed1ab_0 + - ipython=8.13.2=pyh41d4057_0 + - ipython_genutils=0.2.0=py_1 + - ipywidgets=8.0.6=pyhd8ed1ab_0 + - itsdangerous=2.1.2=pyhd8ed1ab_0 + - jack=1.9.22=h11f4161_0 + - jasper=2.0.33=h0ff4b12_1 + - jedi=0.18.2=pyhd8ed1ab_0 + - jinja2=3.1.2=pyhd8ed1ab_1 + - jmespath=1.0.1=pyhd8ed1ab_0 + - joblib=1.2.0=pyhd8ed1ab_0 + - jpeg=9e=h0b41bf4_3 + - json-c=0.16=hc379101_0 + - json5=0.9.5=pyh9f0ad1d_0 + - jsonpickle=2.2.0=pyhd8ed1ab_0 + - jsonschema=4.17.3=pyhd8ed1ab_0 + - jupyter=1.0.0=py39hf3d152e_8 + - jupyter-archive=3.3.4=pyhd8ed1ab_1 + - jupyter-dash=0.4.2=pyhd8ed1ab_1 + - jupyter-resource-usage=0.7.1=pyhd8ed1ab_0 + - jupyter-server-mathjax=0.2.6=pyh5bfe37b_1 + - jupyter-server-proxy=4.0.0=pyhd8ed1ab_0 + - jupyter_bokeh=3.0.5=pyhd8ed1ab_0 + - jupyter_client=7.4.1=pyhd8ed1ab_0 + - jupyter_console=6.6.3=pyhd8ed1ab_0 + - jupyter_core=5.3.0=py39hf3d152e_0 + - jupyter_events=0.6.3=pyhd8ed1ab_0 + - jupyter_server=1.23.6=pyhd8ed1ab_0 + - jupyter_server_fileid=0.9.0=pyhd8ed1ab_0 + - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 + - jupyter_telemetry=0.1.0=pyhd8ed1ab_1 + - jupyter_ydoc=0.2.4=pyhd8ed1ab_0 + - jupyterhub=4.0.0=pyh2a2186d_0 + - jupyterhub-base=4.0.0=pyh2a2186d_0 + - jupyterlab=3.6.4=pyhd8ed1ab_0 + - jupyterlab-git=0.41.0=pyhd8ed1ab_1 + - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 + - jupyterlab-topbar=0.6.1=pyhd8ed1ab_2 + - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 + - jupyterlab_server=2.22.1=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.7=pyhd8ed1ab_1 + - jupytext=1.14.5=pyhcff175f_0 + - jxrlib=1.1=h7f98852_2 + - kealib=1.5.0=ha7026e8_0 + - keyutils=1.6.1=h166bdaf_0 + - kiwisolver=1.4.4=py39hf939315_1 + - krb5=1.20.1=h81ceb04_0 + - lame=3.100=h166bdaf_1003 + - lazy-object-proxy=1.9.0=py39h72bdee0_0 + - lazy_loader=0.2=pyhd8ed1ab_0 + - lcms2=2.15=hfd0df8a_0 + - ld_impl_linux-64=2.40=h41732ed_0 + - lerc=4.0.0=h27087fc_0 + - libabseil=20230125.2=cxx17_h59595ed_2 + - libaec=1.0.6=hcb278e6_1 + - libarchive=3.6.2=h3d51595_0 + - libarrow=10.0.1=hf815326_25_cpu + - libavif=0.11.1=hff004cb_1 + - libblas=3.9.0=16_linux64_openblas + - libbrotlicommon=1.0.9=h166bdaf_8 + - libbrotlidec=1.0.9=h166bdaf_8 + - libbrotlienc=1.0.9=h166bdaf_8 + - libcap=2.67=he9d0100_0 + - libcblas=3.9.0=16_linux64_openblas + - libcdms=3.1.2=hf94f14b_119 + - libcf=1.0.3=py39h6c807ef_115 + - libclang=15.0.7=default_h7634d5b_2 + - libclang13=15.0.7=default_h9986a30_2 + - libcrc32c=1.1.2=h9c3ff4c_0 + - libcups=2.3.3=h36d4200_3 + - libcurl=8.1.2=h409715c_0 + - libdb=6.2.32=h9c3ff4c_0 + - libdeflate=1.17=h0b41bf4_0 + - libdrm=2.4.114=h166bdaf_0 + - libdrs=3.1.2=hf593df3_118 + - libdrs_f=3.1.2=h7e76ec7_114 + - libedit=3.1.20191231=he28a2e2_2 + - libev=4.33=h516909a_1 + - libevent=2.1.10=h28343ad_4 + - libexpat=2.5.0=hcb278e6_1 + - libffi=3.4.2=h7f98852_5 + - libflac=1.4.2=h27087fc_0 + - libgcc-ng=12.2.0=h65d4601_19 + - libgcrypt=1.10.1=h166bdaf_0 + - libgdal=3.6.2=h8c90c07_6 + - libgfortran-ng=12.2.0=h69a702a_19 + - libgfortran5=12.2.0=h337968e_19 + - libglib=2.76.3=hebfc3b9_0 + - libglu=9.0.0=he1b5a44_1001 + - libgomp=12.2.0=h65d4601_19 + - libgoogle-cloud=2.10.1=hac9eb74_1 + - libgpg-error=1.46=h620e276_0 + - libgrpc=1.54.2=hb20ce57_2 + - libiconv=1.17=h166bdaf_0 + - libidn2=2.3.4=h166bdaf_0 + - libkml=1.3.0=h37653c0_1015 + - liblapack=3.9.0=16_linux64_openblas + - libllvm14=14.0.6=hcd5def8_2 + - libllvm15=15.0.7=hadd5161_1 + - libllvm16=16.0.1=hadd5161_0 + - libmicrohttpd=0.9.76=h87ba234_0 + - libnetcdf=4.8.1=mpi_mpich_hcd871d9_6 + - libnghttp2=1.52.0=h61bc06f_0 + - libnsl=2.0.0=h7f98852_0 + - libnuma=2.0.16=h0b41bf4_1 + - libogg=1.3.4=h7f98852_1 + - libopenblas=0.3.21=pthreads_h78a6416_3 + - libopus=1.3.1=h7f98852_1 + - libpciaccess=0.17=h166bdaf_0 + - libpng=1.6.39=h753d276_0 + - libpq=15.2=hb675445_0 + - libprotobuf=3.21.12=h3eb15da_0 + - librttopo=1.1.0=ha49c73b_12 + - libsndfile=1.2.0=hb75c966_0 + - libsodium=1.0.18=h36c2ea0_1 + - libspatialindex=1.9.3=h9c3ff4c_4 + - libspatialite=5.0.1=h221c8f1_23 + - libsqlite=3.42.0=h2797004_0 + - libssh2=1.10.0=hf14f497_3 + - libstdcxx-ng=12.2.0=h46fd767_19 + - libsystemd0=253=h8c4010b_1 + - libtasn1=4.19.0=h166bdaf_0 + - libthrift=0.18.1=h5e4af38_0 + - libtiff=4.5.0=h6adf6a1_2 + - libtool=2.4.7=h27087fc_0 + - libudev1=253=h0b41bf4_1 + - libunistring=0.9.10=h7f98852_0 + - libutf8proc=2.8.0=h166bdaf_0 + - libuuid=2.38.1=h0b41bf4_0 + - libuv=1.44.2=h166bdaf_0 + - libvorbis=1.3.7=h9c3ff4c_0 + - libwebp-base=1.3.0=h0b41bf4_0 + - libxcb=1.13=h7f98852_1004 + - libxkbcommon=1.5.0=h79f4944_1 + - libxml2=2.10.3=hca2bb57_4 + - libxslt=1.1.37=h873f0b0_0 + - libzip=1.9.2=hc929e4a_1 + - libzlib=1.2.13=h166bdaf_4 + - libzopfli=1.0.3=h9c3ff4c_0 + - llvmlite=0.40.0=py39h174d805_0 + - lmoments3=1.0.5=pyhd8ed1ab_0 + - locket=1.0.0=pyhd8ed1ab_0 + - loguru=0.7.0=py39hf3d152e_0 + - lxml=4.9.2=py39h14694de_0 + - lz4=4.3.2=py39h724f13c_0 + - lz4-c=1.9.4=hcb278e6_0 + - lzo=2.10=h516909a_1000 + - mako=1.2.4=pyhd8ed1ab_0 + - mamba_gator=5.2.1=pyhd8ed1ab_0 + - mapclassify=2.5.0=pyhd8ed1ab_1 + - markdown=3.4.3=pyhd8ed1ab_0 + - markdown-it-py=2.2.0=pyhd8ed1ab_0 + - markupsafe=2.1.2=py39h72bdee0_0 + - matplotlib=3.7.1=py39hf3d152e_0 + - matplotlib-base=3.7.1=py39he190548_0 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - mdit-py-plugins=0.3.5=pyhd8ed1ab_0 + - mdurl=0.1.0=pyhd8ed1ab_0 + - memory_profiler=0.61.0=pyhd8ed1ab_0 + - mesalib=23.0.2=h3855f93_0 + - mistune=2.0.5=pyhd8ed1ab_0 + - mpg123=1.31.3=hcb278e6_0 + - mpi=1.0=mpich + - mpi4py=3.1.4=py39h32b9844_0 + - mpich=4.0.3=h846660c_100 + - msgpack-python=1.0.5=py39h4b4f3f3_0 + - multidict=6.0.4=py39h72bdee0_0 + - multipledispatch=0.6.0=py_0 + - multiprocess=0.70.14=py39hb9d737c_3 + - munch=3.0.0=pyhd8ed1ab_0 + - munkres=1.1.4=pyh9f0ad1d_0 + - myproxyclient=2.1.0=pyhd8ed1ab_2 + - mysql-common=8.0.32=hf1915f5_2 + - mysql-libs=8.0.32=hca2cd23_2 + - nbclassic=1.0.0=pyhb4ecaf3_1 + - nbclient=0.7.4=pyhd8ed1ab_0 + - nbconvert=7.4.0=pyhd8ed1ab_0 + - nbconvert-core=7.4.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.4.0=pyhd8ed1ab_0 + - nbdime=3.2.1=pyhd8ed1ab_0 + - nbformat=5.9.0=pyhd8ed1ab_0 + - nbresuse=0.4.0=pyhd8ed1ab_0 + - nbval=0.9.6=pyh9f0ad1d_0 + - nc-time-axis=1.4.1=pyhd8ed1ab_0 + - ncurses=6.3=h27087fc_1 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - nested_dict=1.61=pyhd3deb0d_0 + - netcdf-fortran=4.6.0=mpi_mpich_h1e13492_2 + - netcdf4=1.6.2=nompi_py39hfaa66c4_100 + - nettle=3.8.1=hc379101_1 + - networkx=3.1=pyhd8ed1ab_0 + - nodeenv=1.8.0=pyhd8ed1ab_0 + - nodejs=18.15.0=h8d033a5_0 + - notebook=6.5.4=pyha770c72_0 + - notebook-shim=0.2.3=pyhd8ed1ab_0 + - nspr=4.35=h27087fc_0 + - nss=3.89=he45b914_0 + - numba=0.57.0=py39hb75a051_1 + - numcodecs=0.11.0=py39h227be39_1 + - numpy=1.23.5=py39h3d75532_0 + - numpy_groupies=0.9.22=pyhd8ed1ab_0 + - oauthlib=3.2.2=pyhd8ed1ab_0 + - openblas=0.3.21=pthreads_h320a7e8_3 + - openjpeg=2.5.0=hfec8fc6_2 + - openssl=3.1.4=hd590300_0 + - orc=1.8.3=hfdbbad2_0 + - outcome=1.2.0=pyhd8ed1ab_0 + - owslib=0.28.1=pyhd8ed1ab_0 + - p11-kit=0.24.1=hc5aa10d_0 + - packaging=23.1=pyhd8ed1ab_0 + - pamela=1.0.0=py_0 + - pandas=1.3.5=py39hde0f152_0 + - pandoc=2.19.2=h32600fe_2 + - pandocfilters=1.5.0=pyhd8ed1ab_0 + - panel=0.14.4=pyhd8ed1ab_0 + - parallelio=2.5.10=mpi_mpich_h862c5c2_100 + - param=1.13.0=pyh1a96a4e_0 + - paramiko=3.2.0=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - partd=1.4.0=pyhd8ed1ab_0 + - pathos=0.3.0=pyhd8ed1ab_0 + - patsy=0.5.3=pyhd8ed1ab_0 + - pcre2=10.40=hc3806b6_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pickleshare=0.7.5=py_1003 + - pillow=9.4.0=py39h2320bf1_1 + - pint=0.21=pyhd8ed1ab_0 + - pip=23.1.2=pyhd8ed1ab_0 + - pixman=0.40.0=h36c2ea0_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 + - platformdirs=3.5.1=pyhd8ed1ab_0 + - plotly=5.14.1=pyhd8ed1ab_0 + - pluggy=1.0.0=pyhd8ed1ab_5 + - ply=3.11=py_1 + - pooch=1.7.0=pyha770c72_3 + - poppler=23.01.0=h091648b_0 + - poppler-data=0.4.12=hd8ed1ab_0 + - postgresql=15.2=h3248436_0 + - pox=0.3.2=pyhd8ed1ab_0 + - ppft=1.7.6.6=pyhd8ed1ab_0 + - pre-commit=3.3.2=pyha770c72_0 + - proj=9.1.1=h8ffa02c_2 + - prometheus_client=0.17.0=pyhd8ed1ab_0 + - prompt-toolkit=3.0.38=pyha770c72_0 + - prompt_toolkit=3.0.38=hd8ed1ab_0 + - properscoring=0.1=py_0 + - protobuf=4.21.12=py39h227be39_0 + - pscript=0.7.7=pyhd8ed1ab_0 + - psutil=5.9.5=py39h72bdee0_0 + - pthread-stubs=0.4=h36c2ea0_1001 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pulseaudio=16.1=hcb278e6_3 + - pulseaudio-client=16.1=h5195f5e_3 + - pulseaudio-daemon=16.1=ha8d29e2_3 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - pyarrow=10.0.1=py39he4327e9_25_cpu + - pyasn1=0.4.8=py_0 + - pyasn1-modules=0.2.7=py_0 + - pycparser=2.21=pyhd8ed1ab_0 + - pyct=0.4.6=py_0 + - pyct-core=0.4.6=py_0 + - pycurl=7.45.1=py39h9297c8b_3 + - pydantic=1.10.8=py39hd1e30aa_0 + - pydap=3.4.0=pyhd8ed1ab_0 + - pydeck=0.8.0=pyhd8ed1ab_0 + - pygeos=0.14=py39hc9151fd_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - pyjwt=2.7.0=pyhd8ed1ab_0 + - pymbolic=2022.2=pyhd8ed1ab_0 + - pymetalink=6.4=pyhd8ed1ab_0 + - pympler=1.0.1=pyhd8ed1ab_0 + - pynacl=1.5.0=py39hb9d737c_2 + - pyogrio=0.5.1=py39hbc5ff6d_0 + - pyopenssl=23.2.0=pyhd8ed1ab_1 + - pyparsing=3.0.9=pyhd8ed1ab_0 + - pyproj=3.5.0=py39hf8a5840_0 + - pyqt=5.15.7=py39h5c7b992_3 + - pyqt5-sip=12.11.0=py39h227be39_3 + - pyrsistent=0.19.3=py39h72bdee0_0 + - pyshp=2.3.1=pyhd8ed1ab_0 + - pysocks=1.7.1=pyha2e5f31_6 + - pytest=7.3.1=pyhd8ed1ab_0 + - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - python=3.9.16=h2782a2a_0_cpython + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - python-eccodes=1.5.1=py39h389d5f1_0 + - python-fastjsonschema=2.17.1=pyhd8ed1ab_0 + - python-json-logger=2.0.7=pyhd8ed1ab_0 + - python-pptx=0.6.21=pyhd8ed1ab_0 + - python-tzdata=2023.3=pyhd8ed1ab_0 + - python_abi=3.9=3_cp39 + - pytools=2022.1.14=pyhd8ed1ab_0 + - pytz=2023.3=pyhd8ed1ab_0 + - pyu2f=0.1.5=pyhd8ed1ab_0 + - pyviz_comms=2.3.0=pyhd8ed1ab_0 + - pywavelets=1.4.1=py39h389d5f1_0 + - pyyaml=6.0=py39hb9d737c_5 + - pyzmq=25.1.0=py39hb257651_0 + - qt-main=5.15.8=h5d23da1_6 + - qtconsole=5.4.3=pyhd8ed1ab_0 + - qtconsole-base=5.4.3=pyha770c72_0 + - qtpy=2.3.1=pyhd8ed1ab_0 + - rasterio=1.3.6=py39h09b1985_0 + - raven-hydro=0.2.1=py39h8e2dbb5_1 + - ravenpy=0.12.1=py39hf3d152e_0 + - rdma-core=28.9=h59595ed_1 + - re2=2023.03.02=h8c504da_0 + - readline=8.2=h8228510_1 + - regionmask=0.10.0=pyhd8ed1ab_0 + - requests=2.31.0=pyhd8ed1ab_0 + - requests-cache=1.0.1=pyhd8ed1ab_0 + - requests-magpie=0.2.0=pyhd8ed1ab_0 + - requests-oauthlib=1.3.1=pyhd8ed1ab_0 + - retrying=1.3.3=py_2 + - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - rfc3986-validator=0.1.1=pyh9f0ad1d_0 + - rioxarray=0.14.1=pyhd8ed1ab_0 + - roocs-utils=0.6.4=pyh1a96a4e_0 + - rsa=4.9=pyhd8ed1ab_0 + - rtree=1.0.1=py39hb102c33_1 + - ruamel.yaml=0.17.31=py39hd1e30aa_0 + - ruamel.yaml.clib=0.2.7=py39h72bdee0_1 + - s2n=1.3.44=h06160fa_0 + - s3fs=2023.5.0=pyhd8ed1ab_0 + - s3transfer=0.6.1=pyhd8ed1ab_0 + - salib=1.4.7=pyhd8ed1ab_0 + - scikit-image=0.20.0=py39h7c7b5a8_1 + - scikit-learn=1.2.2=py39hc236052_2 + - scipy=1.9.1=py39h8ba3f38_0 + - scp=0.14.5=pyhd8ed1ab_0 + - seaborn=0.12.2=hd8ed1ab_0 + - seaborn-base=0.12.2=pyhd8ed1ab_0 + - selenium=4.9.1=pyhd8ed1ab_0 + - semver=3.0.0=pyhd8ed1ab_0 + - send2trash=1.8.2=pyh41d4057_0 + - setuptools=59.8.0=py39hf3d152e_1 + - shapely=2.0.1=py39hc9151fd_0 + - simpervisor=1.0.0=pyhd8ed1ab_0 + - sip=6.7.9=py39h3d6467e_0 + - siphon=0.9=pyhd8ed1ab_2 + - six=1.16.0=pyh6c4a22f_0 + - smmap=3.0.5=pyh44b312d_0 + - snappy=1.1.10=h9fff704_0 + - sniffio=1.3.0=pyhd8ed1ab_0 + - snuggs=1.4.7=py_0 + - sortedcontainers=2.4.0=pyhd8ed1ab_0 + - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - sparse=0.14.0=pyhd8ed1ab_0 + - spotpy=1.6.2=pyhd8ed1ab_0 + - sqlalchemy=2.0.15=py39hd1e30aa_0 + - sqlite=3.42.0=h2c6b66d_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - statsmodels=0.14.0=py39h0f8d45d_1 + - streamlit=1.8.0=pyhd8ed1ab_0 + - tblib=1.7.0=pyhd8ed1ab_0 + - tenacity=8.2.2=pyhd8ed1ab_0 + - terminado=0.17.1=pyh41d4057_0 + - threadpoolctl=3.1.0=pyh8a188c0_0 + - tifffile=2023.4.12=pyhd8ed1ab_0 + - tiledb=2.13.2=hd532e3d_0 + - tinycss2=1.2.1=pyhd8ed1ab_0 + - tk=8.6.12=h27826a3_0 + - toml=0.10.2=pyhd8ed1ab_0 + - tomli=2.0.1=pyhd8ed1ab_0 + - toolz=0.12.0=pyhd8ed1ab_0 + - tornado=6.3.2=py39hd1e30aa_0 + - tqdm=4.65.0=pyhd8ed1ab_1 + - traitlets=5.9.0=pyhd8ed1ab_0 + - traittypes=0.2.1=pyh9f0ad1d_2 + - trio=0.22.0=py39hf3d152e_1 + - trio-websocket=0.10.2=pyhd8ed1ab_0 + - typing-extensions=4.6.2=hd8ed1ab_0 + - typing_extensions=4.6.2=pyha770c72_0 + - tzcode=2023c=h0b41bf4_0 + - tzdata=2023c=h71feb2d_0 + - tzlocal=5.0.1=py39hf3d152e_0 + - ucx=1.14.1=hf587318_2 + - ujson=5.7.0=py39h227be39_0 + - ukkonen=1.0.1=py39hf939315_3 + - unicodedata2=15.0.0=py39hb9d737c_0 + - url-normalize=1.4.3=pyhd8ed1ab_0 + - urllib3=1.26.15=pyhd8ed1ab_0 + - urlpath=1.2.0=pyhd8ed1ab_0 + - validators=0.20.0=pyhd8ed1ab_0 + - virtualenv=20.23.0=pyhd8ed1ab_0 + - voila=0.4.0=pyhd8ed1ab_0 + - watchdog=3.0.0=py39hf3d152e_0 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - webencodings=0.5.1=py_1 + - webob=1.8.7=pyhd8ed1ab_0 + - websocket-client=1.5.2=pyhd8ed1ab_0 + - websockets=11.0.3=py39hd1e30aa_0 + - werkzeug=2.3.4=pyhd8ed1ab_0 + - wget=1.20.3=ha35d2d1_1 + - wheel=0.40.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.7=pyhd8ed1ab_0 + - wrapt=1.15.0=py39h72bdee0_0 + - wsproto=1.2.0=pyhd8ed1ab_0 + - xarray=2023.1.0=pyhd8ed1ab_0 + - xcb-util=0.4.0=h516909a_0 + - xcb-util-image=0.4.0=h166bdaf_0 + - xcb-util-keysyms=0.4.0=h516909a_0 + - xcb-util-renderutil=0.3.9=h166bdaf_0 + - xcb-util-wm=0.4.1=h516909a_0 + - xclim=0.43.0=py39hf3d152e_1 + - xerces-c=3.2.4=h55805fa_1 + - xesmf=0.7.1=pyhd8ed1ab_0 + - xeus=3.0.5=hac2b420_1 + - xeus-python=0.15.9=py39h7633fee_0 + - xeus-python-shell=0.5.0=pyhd8ed1ab_0 + - xeus-python-shell-raw=0.5.0=pyhd8ed1ab_0 + - xeus-zmq=1.0.3=h0541b36_0 + - xhistogram=0.3.2=pyhd8ed1ab_0 + - xkeyboard-config=2.38=h0b41bf4_0 + - xlrd=2.0.1=pyhd8ed1ab_3 + - xlsxwriter=3.1.2=pyhd8ed1ab_0 + - xorg-damageproto=1.2.1=h7f98852_1002 + - xorg-fixesproto=5.0=h7f98852_1002 + - xorg-glproto=1.4.17=h7f98852_1002 + - xorg-inputproto=2.3.2=h7f98852_1002 + - xorg-kbproto=1.0.7=h7f98852_1002 + - xorg-libice=1.1.1=hd590300_0 + - xorg-libsm=1.2.4=h7391055_0 + - xorg-libx11=1.8.4=h0b41bf4_0 + - xorg-libxau=1.0.11=hd590300_0 + - xorg-libxdamage=1.1.5=h7f98852_1 + - xorg-libxdmcp=1.1.3=h7f98852_0 + - xorg-libxext=1.3.4=h0b41bf4_2 + - xorg-libxfixes=5.0.3=h7f98852_1004 + - xorg-libxi=1.7.10=h7f98852_0 + - xorg-libxrandr=1.5.2=h7f98852_1 + - xorg-libxrender=0.9.10=h7f98852_1003 + - xorg-randrproto=1.5.0=h7f98852_1001 + - xorg-renderproto=0.11.1=h7f98852_1002 + - xorg-util-macros=1.19.3=h7f98852_0 + - xorg-xextproto=7.3.0=h0b41bf4_1003 + - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 + - xorg-xproto=7.0.31=h7f98852_1007 + - xrft=1.0.1=pyhd8ed1ab_0 + - xskillscore=0.0.24=pyhd8ed1ab_0 + - xyzservices=2023.5.0=pyhd8ed1ab_1 + - xz=5.2.6=h166bdaf_0 + - y-py=0.5.9=py39h50f1755_0 + - yaml=0.2.5=h7f98852_2 + - yarl=1.9.2=py39hd1e30aa_0 + - ypy-websocket=0.8.2=pyhd8ed1ab_0 + - zarr=2.14.2=pyhd8ed1ab_0 + - zeromq=4.3.4=h9c3ff4c_1 + - zfp=1.0.0=h27087fc_3 + - zict=3.0.0=pyhd8ed1ab_0 + - zipp=3.15.0=pyhd8ed1ab_0 + - zlib=1.2.13=h166bdaf_4 + - zlib-ng=2.0.7=h0b41bf4_0 + - zstd=1.5.2=h3eb15da_6 + - pip: + - arrow==1.2.3 + - astunparse==1.6.3 + - colour==0.1.5 + - dnspython==2.3.0 + - email-validator==2.0.0.post2 + - fqdn==1.5.1 + - fstd2nc==0.20231105.0 + - fstd2nc-deps==0.20200304.6 + - geojson==3.0.1 + - hsclient==0.3.3 + - hsmodels==0.5.5 + - ipython-blocking==0.3.1 + - isodate==0.6.1 + - isoduration==20.11.0 + - jsonpointer==2.3 + - jupyterlab-logout==0.5.0 + - jupyterlab-tabular-data-editor==1.0.0 + - jupyternotify==0.1.15 + - pixiedust==1.1.19 + - progress==1.6 + - pytest-tornasync==0.6.0.post2 + - rdflib==5.0.0 + - threddsclient==0.4.4 + - uri-template==1.2.0 + - webcolors==1.13 + - xmltodict==0.13.0 + - xncml==0.2 + - xsdata==23.5 +prefix: /opt/conda/envs/birdy diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt new file mode 100644 index 0000000..7cb5409 --- /dev/null +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -0,0 +1,339 @@ +2024-01-16T15:53:27Z Building in Docker Cloud's infrastructure... +2024-01-16T15:53:27Z Cloning into '.'... +2024-01-16T15:53:27Z Warning: Permanently added the RSA host key for IP address '140.82.113.4' to the list of known hosts. +2024-01-16T15:53:29Z Switched to a new branch 'dockerupdate-py39-230601-1-update240116' +2024-01-16T15:53:29Z KernelVersion: 5.4.0-1068-aws +2024-01-16T15:53:29Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-01-16T15:53:29Z Arch: amd64 +2024-01-16T15:53:29Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-01-16T15:53:29Z ApiVersion: 1.41 +2024-01-16T15:53:29Z Platform: {u'Name': u'Docker Engine - Community'} +2024-01-16T15:53:29Z Version: 20.10.15 +2024-01-16T15:53:29Z MinAPIVersion: 1.12 +2024-01-16T15:53:29Z GitCommit: 4433bf6 +2024-01-16T15:53:29Z Os: linux +2024-01-16T15:53:29Z GoVersion: go1.17.9 +2024-01-16T15:53:29Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py39-230601-1-update240116... +2024-01-16T15:53:34Z #1 [internal] load build definition from Dockerfile.testing +2024-01-16T15:53:34Z #1 transferring dockerfile: +2024-01-16T15:53:34Z #1 transferring dockerfile: 1.24kB done +2024-01-16T15:53:34Z #1 DONE 0.1s +2024-01-16T15:53:34Z +2024-01-16T15:53:34Z #2 [internal] load .dockerignore +2024-01-16T15:53:34Z #2 transferring context: 2B done +2024-01-16T15:53:34Z #2 DONE 0.0s +2024-01-16T15:53:34Z +2024-01-16T15:53:34Z #3 [internal] load metadata for docker.io/pavics/workflow-tests:py39-230601-1-update231122 +2024-01-16T15:53:34Z #3 ... +2024-01-16T15:53:34Z +2024-01-16T15:53:34Z #4 [auth] pavics/workflow-tests:pull token for registry-1.docker.io +2024-01-16T15:53:34Z #4 DONE 0.0s +2024-01-16T15:53:34Z +2024-01-16T15:53:34Z #3 [internal] load metadata for docker.io/pavics/workflow-tests:py39-230601-1-update231122 +2024-01-16T15:53:35Z #3 DONE 0.7s +2024-01-16T15:53:35Z +2024-01-16T15:53:35Z #5 [1/2] FROM docker.io/pavics/workflow-tests:py39-230601-1-update231122@sha256:ee89dcb84228b101d58c4f51e1c27997b522d89ef5df03230938caf2c18525eb +2024-01-16T15:53:35Z #5 resolve docker.io/pavics/workflow-tests:py39-230601-1-update231122@sha256:ee89dcb84228b101d58c4f51e1c27997b522d89ef5df03230938caf2c18525eb done +2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 4.19MB / 31.42MB 0.1s +2024-01-16T15:53:35Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 0B / 50.18MB 0.1s +2024-01-16T15:53:35Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 0B / 72.05MB 0.1s +2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 14.68MB / 31.42MB 0.2s +2024-01-16T15:53:35Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 3.15MB / 50.18MB 0.2s +2024-01-16T15:53:35Z #5 sha256:7ecd10d73c5c860e3f0de222a89437d59fb3aeac2dd66dedbe7e75dbd84afe6d 12.45kB / 12.45kB done +2024-01-16T15:53:35Z #5 sha256:ee89dcb84228b101d58c4f51e1c27997b522d89ef5df03230938caf2c18525eb 3.49kB / 3.49kB done +2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 18.87MB / 31.42MB 0.3s +2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 27.62MB / 31.42MB 0.5s +2024-01-16T15:53:35Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 8.81MB / 50.18MB 0.5s +2024-01-16T15:53:35Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 9.44MB / 72.05MB 0.5s +2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 31.42MB / 31.42MB 0.6s +2024-01-16T15:53:35Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 12.62MB / 50.18MB 0.6s +2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 17.20MB / 50.18MB 0.7s +2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 17.38MB / 72.05MB 0.7s +2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 29.36MB / 50.18MB 0.9s +2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 25.17MB / 72.05MB 0.9s +2024-01-16T15:53:36Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 31.42MB / 31.42MB 1.0s done +2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 31.58MB / 72.05MB 1.0s +2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 34.96MB / 50.18MB 1.1s +2024-01-16T15:53:36Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 0B / 166.09MB 1.1s +2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 37.75MB / 50.18MB 1.3s +2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 36.70MB / 72.05MB 1.3s +2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 40.89MB / 50.18MB 1.5s +2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 41.94MB / 72.05MB 1.5s +2024-01-16T15:53:36Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 8.39MB / 166.09MB 1.6s +2024-01-16T15:53:36Z #5 extracting sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 0.1s +2024-01-16T15:53:37Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 46.14MB / 72.05MB 1.9s +2024-01-16T15:53:37Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 44.30MB / 50.18MB 2.1s +2024-01-16T15:53:37Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 47.19MB / 50.18MB 2.2s +2024-01-16T15:53:37Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 52.43MB / 72.05MB 2.2s +2024-01-16T15:53:37Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 50.18MB / 50.18MB 2.3s +2024-01-16T15:53:37Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 16.78MB / 166.09MB 2.4s +2024-01-16T15:53:37Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 50.18MB / 50.18MB 2.5s done +2024-01-16T15:53:37Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 56.52MB / 72.05MB 2.6s +2024-01-16T15:53:37Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 26.21MB / 166.09MB 2.6s +2024-01-16T15:53:37Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 0B / 315.95MB 2.6s +2024-01-16T15:53:38Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 60.87MB / 72.05MB 2.9s +2024-01-16T15:53:38Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 65.01MB / 72.05MB 3.1s +2024-01-16T15:53:38Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 72.05MB / 72.05MB 3.3s +2024-01-16T15:53:38Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 41.94MB / 166.09MB 3.3s +2024-01-16T15:53:38Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 17.83MB / 315.95MB 3.4s +2024-01-16T15:53:39Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 72.05MB / 72.05MB 3.6s done +2024-01-16T15:53:39Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 51.84MB / 166.09MB 3.8s +2024-01-16T15:53:39Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 0B / 178.45MB 3.8s +2024-01-16T15:53:39Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 40.03MB / 315.95MB 4.2s +2024-01-16T15:53:39Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 10.49MB / 178.45MB 4.5s +2024-01-16T15:53:39Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 60.82MB / 166.09MB 4.6s +2024-01-16T15:53:40Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 73.40MB / 166.09MB 5.0s +2024-01-16T15:53:40Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 56.62MB / 315.95MB 5.0s +2024-01-16T15:53:40Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 26.21MB / 178.45MB 5.0s +2024-01-16T15:53:40Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 87.03MB / 166.09MB 5.3s +2024-01-16T15:53:40Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 36.70MB / 178.45MB 5.3s +2024-01-16T15:53:40Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 98.57MB / 166.09MB 5.7s +2024-01-16T15:53:40Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 48.23MB / 178.45MB 5.7s +2024-01-16T15:53:41Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 73.40MB / 315.95MB 5.8s +2024-01-16T15:53:41Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 61.87MB / 178.45MB 6.2s +2024-01-16T15:53:41Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 106.95MB / 166.09MB 6.3s +2024-01-16T15:53:41Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 71.30MB / 178.45MB 6.5s +2024-01-16T15:53:41Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 115.78MB / 166.09MB 6.6s +2024-01-16T15:53:42Z #5 extracting sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 5.2s +2024-01-16T15:53:42Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 93.32MB / 315.95MB 6.9s +2024-01-16T15:53:42Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 84.50MB / 178.45MB 7.0s +2024-01-16T15:53:42Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 124.78MB / 166.09MB 7.1s +2024-01-16T15:53:42Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 94.37MB / 178.45MB 7.2s +2024-01-16T15:53:42Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 134.22MB / 166.09MB 7.3s +2024-01-16T15:53:42Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 117.44MB / 315.95MB 7.5s +2024-01-16T15:53:42Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 142.87MB / 166.09MB 7.6s +2024-01-16T15:53:42Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 104.17MB / 178.45MB 7.6s +2024-01-16T15:53:43Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 134.22MB / 315.95MB 7.9s +2024-01-16T15:53:43Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 160.49MB / 166.09MB 8.1s +2024-01-16T15:53:43Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 115.73MB / 178.45MB 8.1s +2024-01-16T15:53:43Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 125.72MB / 178.45MB 8.4s +2024-01-16T15:53:44Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 150.99MB / 315.95MB 8.7s +2024-01-16T15:53:44Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 143.65MB / 178.45MB 9.4s +2024-01-16T15:53:45Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 157.29MB / 178.45MB 9.8s +2024-01-16T15:53:45Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 166.09MB / 166.09MB 9.9s done +2024-01-16T15:53:45Z #5 sha256:7ece3239e3205850471f67fc804740ecd2f32cf9acd7b9e16efadfe2d721d261 0B / 3.71kB 10.0s +2024-01-16T15:53:45Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 167.77MB / 315.95MB 10.1s +2024-01-16T15:53:45Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 167.77MB / 178.45MB 10.1s +2024-01-16T15:53:45Z #5 sha256:7ece3239e3205850471f67fc804740ecd2f32cf9acd7b9e16efadfe2d721d261 3.71kB / 3.71kB 10.0s done +2024-01-16T15:53:45Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 0B / 1.59GB 10.4s +2024-01-16T15:53:45Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 178.45MB / 178.45MB 10.7s +2024-01-16T15:53:46Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 188.12MB / 315.95MB 11.2s +2024-01-16T15:53:46Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 204.47MB / 315.95MB 11.6s +2024-01-16T15:53:47Z #5 extracting sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 10.3s +2024-01-16T15:53:47Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 221.25MB / 315.95MB 12.2s +2024-01-16T15:53:47Z #5 extracting sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 10.7s done +2024-01-16T15:53:47Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 178.45MB / 178.45MB 12.3s done +2024-01-16T15:53:47Z #5 sha256:6ad64da2708fca2c9f80e93fa2b0d706e6126d9584a56fc1230e708f8c297c9f 6.66kB / 6.66kB 12.4s done +2024-01-16T15:53:48Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 239.08MB / 315.95MB 12.7s +2024-01-16T15:53:48Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 0B / 200.46MB 12.7s +2024-01-16T15:53:48Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 85.98MB / 1.59GB 12.9s +2024-01-16T15:53:48Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 255.93MB / 315.95MB 13.3s +2024-01-16T15:53:48Z #5 extracting sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e +2024-01-16T15:53:49Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 19.19MB / 200.46MB 13.8s +2024-01-16T15:53:49Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 275.78MB / 315.95MB 14.0s +2024-01-16T15:53:49Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 31.46MB / 200.46MB 14.3s +2024-01-16T15:53:49Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 297.80MB / 315.95MB 14.4s +2024-01-16T15:53:49Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 44.04MB / 200.46MB 14.6s +2024-01-16T15:53:50Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 315.62MB / 315.95MB 14.9s +2024-01-16T15:53:50Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 54.53MB / 200.46MB 15.0s +2024-01-16T15:53:50Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 64.57MB / 200.46MB 15.2s +2024-01-16T15:53:50Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 166.72MB / 1.59GB 15.4s +2024-01-16T15:53:51Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 75.50MB / 200.46MB 15.9s +2024-01-16T15:53:51Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 87.03MB / 200.46MB 16.3s +2024-01-16T15:53:51Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 102.99MB / 200.46MB 16.5s +2024-01-16T15:53:52Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 113.25MB / 200.46MB 17.3s +2024-01-16T15:53:52Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 130.02MB / 200.46MB 17.6s +2024-01-16T15:53:53Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 315.95MB / 315.95MB 17.9s done +2024-01-16T15:53:53Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 142.61MB / 200.46MB 17.9s +2024-01-16T15:53:53Z #5 sha256:a42d5ce605fe230150399cf7ea693b5a5045a664b87d21acc5e825513312cf9a 0B / 2.96kB 18.0s +2024-01-16T15:53:53Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 158.33MB / 200.46MB 18.3s +2024-01-16T15:53:53Z #5 sha256:a42d5ce605fe230150399cf7ea693b5a5045a664b87d21acc5e825513312cf9a 2.96kB / 2.96kB 18.2s done +2024-01-16T15:53:53Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 0B / 136.79MB 18.3s +2024-01-16T15:53:53Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 247.46MB / 1.59GB 18.5s +2024-01-16T15:53:53Z #5 extracting sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 5.1s +2024-01-16T15:53:54Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 178.26MB / 200.46MB 18.8s +2024-01-16T15:53:54Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 11.53MB / 136.79MB 18.8s +2024-01-16T15:53:54Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 196.08MB / 200.46MB 19.2s +2024-01-16T15:53:54Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 20.97MB / 136.79MB 19.2s +2024-01-16T15:53:54Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 29.36MB / 136.79MB 19.4s +2024-01-16T15:53:54Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 39.85MB / 136.79MB 19.6s +2024-01-16T15:53:55Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 47.19MB / 136.79MB 20.4s +2024-01-16T15:53:55Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 54.53MB / 136.79MB 20.7s +2024-01-16T15:53:56Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 61.69MB / 136.79MB 21.0s +2024-01-16T15:53:56Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 200.46MB / 200.46MB 21.1s done +2024-01-16T15:53:56Z #5 sha256:8144baa7f709ffa4b39b187f6149563ce3bb0d341d0ee0e50c8827f5af23ccfc 0B / 229B 21.1s +2024-01-16T15:53:56Z #5 sha256:8144baa7f709ffa4b39b187f6149563ce3bb0d341d0ee0e50c8827f5af23ccfc 229B / 229B 21.2s done +2024-01-16T15:53:56Z #5 sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 0B / 7.40MB 21.3s +2024-01-16T15:53:56Z #5 sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 4.19MB / 7.40MB 21.5s +2024-01-16T15:53:56Z #5 sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 7.40MB / 7.40MB 21.6s +2024-01-16T15:53:57Z #5 sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 7.40MB / 7.40MB 21.7s done +2024-01-16T15:53:57Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 0B / 23.70MB 21.8s +2024-01-16T15:53:57Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 71.30MB / 136.79MB 21.9s +2024-01-16T15:53:57Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 6.29MB / 23.70MB 22.0s +2024-01-16T15:53:57Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 80.74MB / 136.79MB 22.1s +2024-01-16T15:53:57Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 9.44MB / 23.70MB 22.2s +2024-01-16T15:53:57Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 333.82MB / 1.59GB 22.5s +2024-01-16T15:53:57Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 87.62MB / 136.79MB 22.5s +2024-01-16T15:53:57Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 12.58MB / 23.70MB 22.5s +2024-01-16T15:53:58Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 19.92MB / 23.70MB 22.8s +2024-01-16T15:53:58Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 23.70MB / 23.70MB 22.9s +2024-01-16T15:53:58Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 100.69MB / 136.79MB 23.1s +2024-01-16T15:53:58Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 23.70MB / 23.70MB 23.3s done +2024-01-16T15:53:58Z #5 extracting sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 10.2s +2024-01-16T15:53:59Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 108.10MB / 136.79MB 23.7s +2024-01-16T15:53:59Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 120.59MB / 136.79MB 24.0s +2024-01-16T15:53:59Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 132.12MB / 136.79MB 24.3s +2024-01-16T15:54:00Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 417.33MB / 1.59GB 25.5s +2024-01-16T15:54:01Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 136.79MB / 136.79MB 25.9s done +2024-01-16T15:54:02Z #5 extracting sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 13.5s done +2024-01-16T15:54:02Z #5 extracting sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 +2024-01-16T15:54:03Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 497.03MB / 1.59GB 28.3s +2024-01-16T15:54:05Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 578.81MB / 1.59GB 30.5s +2024-01-16T15:54:07Z #5 extracting sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 5.0s +2024-01-16T15:54:08Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 659.88MB / 1.59GB 32.8s +2024-01-16T15:54:10Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 750.78MB / 1.59GB 35.5s +2024-01-16T15:54:12Z #5 extracting sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 10.1s +2024-01-16T15:54:13Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 831.52MB / 1.59GB 37.9s +2024-01-16T15:54:16Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 919.60MB / 1.59GB 41.1s +2024-01-16T15:54:16Z #5 extracting sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 14.0s done +2024-01-16T15:54:17Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d +2024-01-16T15:54:17Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.00GB / 1.59GB 42.6s +2024-01-16T15:54:20Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.08GB / 1.59GB 45.4s +2024-01-16T15:54:22Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 5.0s +2024-01-16T15:54:23Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.16GB / 1.59GB 47.9s +2024-01-16T15:54:25Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.24GB / 1.59GB 50.7s +2024-01-16T15:54:27Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 10.2s +2024-01-16T15:54:28Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.32GB / 1.59GB 53.5s +2024-01-16T15:54:31Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.41GB / 1.59GB 56.5s +2024-01-16T15:54:32Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 15.4s +2024-01-16T15:54:34Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.49GB / 1.59GB 59.3s +2024-01-16T15:54:36Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.57GB / 1.59GB 61.5s +2024-01-16T15:54:37Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 20.5s +2024-01-16T15:54:38Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 20.5s done +2024-01-16T15:54:39Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 +2024-01-16T15:54:40Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.59GB / 1.59GB 65.0s done +2024-01-16T15:54:44Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 5.0s +2024-01-16T15:54:49Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 10.2s +2024-01-16T15:54:54Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 15.3s +2024-01-16T15:55:00Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 20.7s +2024-01-16T15:55:05Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 25.7s +2024-01-16T15:55:06Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 26.7s done +2024-01-16T15:55:07Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 +2024-01-16T15:55:12Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 5.1s +2024-01-16T15:55:17Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 10.1s +2024-01-16T15:55:22Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 15.2s +2024-01-16T15:55:24Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 17.9s done +2024-01-16T15:55:25Z #5 extracting sha256:7ece3239e3205850471f67fc804740ecd2f32cf9acd7b9e16efadfe2d721d261 done +2024-01-16T15:55:25Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 +2024-01-16T15:55:30Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 5.1s +2024-01-16T15:55:36Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 10.2s +2024-01-16T15:55:41Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 15.6s +2024-01-16T15:55:46Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 20.8s +2024-01-16T15:55:52Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 26.2s +2024-01-16T15:55:57Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 31.8s +2024-01-16T15:56:03Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 37.1s +2024-01-16T15:56:08Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 42.4s +2024-01-16T15:56:13Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 47.9s +2024-01-16T15:56:18Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 53.0s +2024-01-16T15:56:23Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 58.1s +2024-01-16T15:56:28Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 63.1s +2024-01-16T15:56:34Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 68.2s +2024-01-16T15:56:39Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 73.2s +2024-01-16T15:56:44Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 78.3s +2024-01-16T15:56:49Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 83.3s +2024-01-16T15:56:54Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 88.4s +2024-01-16T15:56:59Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 93.4s +2024-01-16T15:57:04Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 98.5s +2024-01-16T15:57:09Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 103.7s +2024-01-16T15:57:14Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 108.8s +2024-01-16T15:57:19Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 114.1s +2024-01-16T15:57:25Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 119.2s +2024-01-16T15:57:30Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 124.2s +2024-01-16T15:57:35Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 129.3s +2024-01-16T15:57:40Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 134.3s +2024-01-16T15:57:45Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 139.4s +2024-01-16T15:57:50Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 144.7s +2024-01-16T15:57:55Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 149.8s +2024-01-16T15:58:01Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 155.4s +2024-01-16T15:58:06Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 160.4s +2024-01-16T15:58:12Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 166.2s +2024-01-16T15:58:17Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 171.5s +2024-01-16T15:58:22Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 176.7s +2024-01-16T15:58:27Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 181.8s +2024-01-16T15:58:32Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 186.9s +2024-01-16T15:58:37Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 192.1s +2024-01-16T15:58:43Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 197.3s +2024-01-16T15:58:48Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 202.5s +2024-01-16T15:58:53Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 208.0s +2024-01-16T15:58:58Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 213.1s +2024-01-16T15:59:04Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 218.3s +2024-01-16T15:59:10Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 225.1s +2024-01-16T15:59:16Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 231.0s +2024-01-16T15:59:22Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 236.9s +2024-01-16T15:59:27Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 242.1s +2024-01-16T15:59:33Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 247.3s +2024-01-16T15:59:38Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 252.6s +2024-01-16T15:59:45Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 259.6s +2024-01-16T15:59:50Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 264.7s +2024-01-16T15:59:56Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 270.2s +2024-01-16T16:00:00Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 274.7s done +2024-01-16T16:00:05Z #5 extracting sha256:6ad64da2708fca2c9f80e93fa2b0d706e6126d9584a56fc1230e708f8c297c9f done +2024-01-16T16:00:06Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf +2024-01-16T16:00:11Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 5.2s +2024-01-16T16:00:19Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 13.0s +2024-01-16T16:00:24Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 18.4s +2024-01-16T16:00:29Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 23.5s +2024-01-16T16:00:34Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 28.6s +2024-01-16T16:00:40Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 33.9s +2024-01-16T16:00:46Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 40.2s +2024-01-16T16:00:51Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 45.3s +2024-01-16T16:00:57Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 51.4s +2024-01-16T16:01:02Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 56.6s +2024-01-16T16:01:05Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 59.2s done +2024-01-16T16:01:06Z #5 extracting sha256:a42d5ce605fe230150399cf7ea693b5a5045a664b87d21acc5e825513312cf9a done +2024-01-16T16:01:07Z #5 extracting sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 0.1s +2024-01-16T16:01:11Z #5 extracting sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 4.4s done +2024-01-16T16:01:11Z #5 extracting sha256:8144baa7f709ffa4b39b187f6149563ce3bb0d341d0ee0e50c8827f5af23ccfc done +2024-01-16T16:01:11Z #5 extracting sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af +2024-01-16T16:01:12Z #5 extracting sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 0.8s done +2024-01-16T16:01:12Z #5 extracting sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 +2024-01-16T16:01:13Z #5 extracting sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 0.9s done +2024-01-16T16:01:14Z #5 DONE 458.8s +2024-01-16T16:01:14Z +2024-01-16T16:01:14Z #6 [2/2] RUN umask 0000 && pip install --no-cache-dir https://github.com/bird-house/threddsclient/archive/refs/heads/master.zip +2024-01-16T16:01:15Z #6 1.403 Collecting https://github.com/bird-house/threddsclient/archive/refs/heads/master.zip +2024-01-16T16:01:15Z #6 1.665 Downloading https://github.com/bird-house/threddsclient/archive/refs/heads/master.zip +2024-01-16T16:01:15Z #6 1.676 - 24.0 kB 31.3 MB/s 0:00:00 +2024-01-16T16:01:15Z #6 1.694 Preparing metadata (setup.py): started +2024-01-16T16:01:16Z #6 2.397 Preparing metadata (setup.py): finished with status 'done' +2024-01-16T16:01:16Z #6 2.408 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.9/site-packages (from threddsclient==0.4.4) (2.31.0) +2024-01-16T16:01:16Z #6 2.409 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from threddsclient==0.4.4) (4.12.2) +2024-01-16T16:01:16Z #6 2.410 Requirement already satisfied: lxml in /opt/conda/envs/birdy/lib/python3.9/site-packages (from threddsclient==0.4.4) (4.9.2) +2024-01-16T16:01:16Z #6 2.419 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from beautifulsoup4->threddsclient==0.4.4) (2.3.2.post1) +2024-01-16T16:01:16Z #6 2.442 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from requests->threddsclient==0.4.4) (2.1.1) +2024-01-16T16:01:16Z #6 2.445 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from requests->threddsclient==0.4.4) (3.4) +2024-01-16T16:01:16Z #6 2.448 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from requests->threddsclient==0.4.4) (1.26.15) +2024-01-16T16:01:16Z #6 2.451 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from requests->threddsclient==0.4.4) (2023.7.22) +2024-01-16T16:01:16Z #6 2.498 Building wheels for collected packages: threddsclient +2024-01-16T16:01:16Z #6 2.500 Building wheel for threddsclient (setup.py): started +2024-01-16T16:01:17Z #6 3.274 Building wheel for threddsclient (setup.py): finished with status 'done' +2024-01-16T16:01:17Z #6 3.275 Created wheel for threddsclient: filename=threddsclient-0.4.4-py3-none-any.whl size=13214 sha256=35afcb20f58cb7443302cf5c28a2891e2832af33c0de5511cb8d94e28e669872 +2024-01-16T16:01:17Z #6 3.276 Stored in directory: /tmp/pip-ephem-wheel-cache-vjp8p85a/wheels/f1/ec/5c/12e566b7240af2369781dd85cc1cdff5517b52ed8135182cc9 +2024-01-16T16:01:17Z #6 3.280 Successfully built threddsclient +2024-01-16T16:01:23Z #6 9.681 Installing collected packages: threddsclient +2024-01-16T16:01:23Z #6 9.681 Attempting uninstall: threddsclient +2024-01-16T16:01:23Z #6 9.687 Found existing installation: threddsclient 0.4.2 +2024-01-16T16:01:23Z #6 9.692 Uninstalling threddsclient-0.4.2: +2024-01-16T16:01:23Z #6 9.701 Successfully uninstalled threddsclient-0.4.2 +2024-01-16T16:01:24Z #6 9.855 Successfully installed threddsclient-0.4.4 +2024-01-16T16:01:24Z #6 9.857 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +2024-01-16T16:01:26Z #6 DONE 12.6s +2024-01-16T16:01:26Z +2024-01-16T16:01:26Z #7 exporting to image +2024-01-16T16:01:26Z #7 exporting layers 0.0s done +2024-01-16T16:01:26Z #7 writing image sha256:d55ce59d11bf9929b18fcf7ef902f4cc624f97d9fc9b77261385d938dddd47f2 done +2024-01-16T16:01:26Z #7 naming to docker.io/pavics/workflow-tests:py39-230601-1-update240116 done +2024-01-16T16:01:26Z #7 DONE 0.1s +2024-01-16T16:01:26Z Pushing index.docker.io/pavics/workflow-tests:py39-230601-1-update240116... +2024-01-16T16:01:28Z Done! +2024-01-16T16:01:28Z Build finished From 866da9f191f6a14eed027b7da1780896be02448a Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 7 Mar 2024 13:12:28 -0500 Subject: [PATCH 033/104] docker: add py310-231107 env export and build log for full build baseline --- docker/saved_buildout/conda-env-export.yml | 748 ++- docker/saved_buildout/docker-buildlogs.txt | 5632 ++++++++++++++++++-- 2 files changed, 5666 insertions(+), 714 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index 01cdf34..5111e5a 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -7,120 +7,116 @@ dependencies: - _libgcc_mutex=0.1=conda_forge - _openmp_mutex=4.5=2_gnu - affine=2.4.0=pyhd8ed1ab_0 - - aiobotocore=2.5.0=pyhd8ed1ab_0 + - aiobotocore=2.7.0=pyhd8ed1ab_1 - aiofiles=22.1.0=pyhd8ed1ab_0 - - aiohttp=3.8.4=py39h72bdee0_0 + - aiohttp=3.8.6=py310h2372a71_1 - aioitertools=0.11.0=pyhd8ed1ab_0 - aiosignal=1.3.1=pyhd8ed1ab_0 - aiosqlite=0.19.0=pyhd8ed1ab_0 - - alembic=1.11.1=pyhd8ed1ab_0 + - alembic=1.12.1=pyhd8ed1ab_0 - alsa-lib=1.2.8=h166bdaf_0 - - altair=5.0.1=pyhd8ed1ab_0 - - ansi2html=1.8.0=py39hf3d152e_1 - - anyio=3.6.1=pyhd8ed1ab_1 + - altair=5.1.2=pyhd8ed1ab_0 + - ansi2html=1.8.0=py310hff52083_2 + - anyio=4.0.0=pyhd8ed1ab_0 - aom=3.5.0=h27087fc_0 - appdirs=1.4.4=pyh9f0ad1d_0 - - argon2-cffi=21.3.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py39hb9d737c_3 + - argon2-cffi=23.1.0=pyhd8ed1ab_0 + - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - arrow=1.3.0=pyhd8ed1ab_0 - asciitree=0.3.3=py_2 - - astor=0.8.1=pyh9f0ad1d_0 - - asttokens=2.2.1=pyhd8ed1ab_0 - - async-timeout=4.0.2=pyhd8ed1ab_0 + - asttokens=2.4.1=pyhd8ed1ab_0 + - async-timeout=4.0.3=pyhd8ed1ab_0 - async_generator=1.10=py_0 - attr=2.5.1=h166bdaf_1 - attrs=23.1.0=pyh71513ae_1 - - aws-c-auth=0.6.27=he072965_1 - - aws-c-cal=0.5.26=hf677bf3_1 - - aws-c-common=0.8.19=hd590300_0 - - aws-c-compression=0.2.16=hbad4bc6_7 - - aws-c-event-stream=0.2.20=hb4b372c_7 - - aws-c-http=0.7.7=h2632f9a_4 - - aws-c-io=0.13.21=h9fef7b8_5 - - aws-c-mqtt=0.8.11=h2282364_1 - - aws-c-s3=0.3.0=hcb5a9b2_2 - - aws-c-sdkutils=0.1.9=hbad4bc6_2 - - aws-checksums=0.1.14=hbad4bc6_7 - - aws-crt-cpp=0.20.2=he0fdcb3_0 - - aws-sdk-cpp=1.10.57=h059227d_13 - - babel=2.12.1=pyhd8ed1ab_1 - - backcall=0.2.0=pyh9f0ad1d_0 + - aws-c-auth=0.7.0=hf8751d9_2 + - aws-c-cal=0.6.0=h93469e0_0 + - aws-c-common=0.8.23=hd590300_0 + - aws-c-compression=0.2.17=h862ab75_1 + - aws-c-event-stream=0.3.1=h9599702_1 + - aws-c-http=0.7.11=hbe98c3e_0 + - aws-c-io=0.13.28=h3870b5a_0 + - aws-c-mqtt=0.8.14=h2e270ba_2 + - aws-c-s3=0.3.13=heb0bb06_2 + - aws-c-sdkutils=0.1.11=h862ab75_1 + - aws-checksums=0.1.16=h862ab75_1 + - aws-crt-cpp=0.20.3=he9c0e7f_4 + - aws-sdk-cpp=1.10.57=hbc2ea52_17 + - babel=2.13.1=pyhd8ed1ab_0 - backports=1.0=pyhd8ed1ab_3 - - backports.functools_lru_cache=1.6.4=pyhd8ed1ab_0 - - base58=2.1.1=pyhd8ed1ab_0 - - bcrypt=3.2.2=py39hb9d737c_1 + - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 + - bcrypt=4.0.1=py310hcb5633a_1 - beautifulsoup4=4.12.2=pyha770c72_0 - bias_correction=0.4=pyhd8ed1ab_0 - birdy=0.8.4=pyh1a96a4e_0 - - bleach=6.0.0=pyhd8ed1ab_0 - - blinker=1.6.2=pyhd8ed1ab_0 - - blosc=1.21.4=h0f2a231_0 - - bokeh=2.4.3=pyhd8ed1ab_3 + - bleach=6.1.0=pyhd8ed1ab_0 + - blinker=1.7.0=pyhd8ed1ab_0 + - blosc=1.21.5=h0f2a231_0 + - bokeh=3.3.0=pyhd8ed1ab_0 - boltons=23.0.0=pyhd8ed1ab_0 - boost-cpp=1.78.0=h5adbc97_2 - - boto3=1.26.76=pyhd8ed1ab_0 - - botocore=1.29.76=pyhd8ed1ab_0 - - bottleneck=1.3.7=py39h389d5f1_0 - - branca=0.6.0=pyhd8ed1ab_0 - - brotli=1.0.9=h166bdaf_8 - - brotli-bin=1.0.9=h166bdaf_8 - - brotlipy=0.7.0=py39hb9d737c_1005 + - botocore=1.31.64=pyhd8ed1ab_0 + - bottleneck=1.3.7=py310h1f7b6fc_1 + - branca=0.7.0=pyhd8ed1ab_1 + - brotli=1.0.9=h166bdaf_9 + - brotli-bin=1.0.9=h166bdaf_9 + - brotli-python=1.0.9=py310hd8f1fbe_9 - brunsli=0.1=h9c3ff4c_0 - - bzip2=1.0.8=h7f98852_4 - - c-ares=1.19.1=hd590300_0 - - c-blosc2=2.9.2=hb4ffafa_0 + - bzip2=1.0.8=hd590300_5 + - c-ares=1.21.0=hd590300_0 + - c-blosc2=2.11.1=hb4ffafa_0 - ca-certificates=2023.7.22=hbcca054_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.0=pyhd8ed1ab_0 + - cachetools=5.3.2=pyhd8ed1ab_0 - cairo=1.16.0=ha61ee94_1014 - - cartopy=0.21.1=py39h6e7ad6e_0 - - cattrs=23.1.1=pyhd8ed1ab_0 + - cartopy=0.22.0=py310hcc13569_1 + - cattrs=23.1.2=pyhd8ed1ab_0 - cdat_info=8.2.1=pyhd8ed1ab_2 - - cdms2=3.1.5=py39h36de48d_15 - - cdtime=3.1.4=py39he83c29a_7 + - cdms2=3.1.5=py310h5f4584e_15 + - cdtime=3.1.4=py310h1a17f1e_7 - certifi=2023.7.22=pyhd8ed1ab_0 - certipy=0.1.3=py_0 - - cf_xarray=0.8.0=pyhd8ed1ab_0 - - cffi=1.15.1=py39he91dace_3 + - cf_xarray=0.8.6=pyhd8ed1ab_0 + - cffi=1.16.0=py310h2fee648_0 - cfgrib=0.9.10.4=pyhd8ed1ab_0 - cfgv=3.3.1=pyhd8ed1ab_0 - cfitsio=4.2.0=hd9d235c_0 - - cftime=1.6.2=py39h2ae25f5_1 + - cftime=1.6.3=py310h1f7b6fc_0 - charls=2.4.2=h59595ed_0 - - charset-normalizer=2.1.1=pyhd8ed1ab_0 - - click=8.1.3=unix_pyhd8ed1ab_2 + - charset-normalizer=3.3.2=pyhd8ed1ab_0 + - click=8.1.7=unix_pyh707e725_0 - click-plugins=1.1.1=py_0 - cligj=0.7.2=pyhd8ed1ab_1 - climpred=2.3.0=pyhd8ed1ab_0 - - clisops=0.9.6=pyh1a96a4e_0 - - cloudpickle=2.2.1=pyhd8ed1ab_0 + - clisops=0.11.0=pyh1a96a4e_0 + - cloudpickle=3.0.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - colorcet=3.0.1=pyhd8ed1ab_0 - - comm=0.1.3=pyhd8ed1ab_0 + - comm=0.1.4=pyhd8ed1ab_0 - configurable-http-proxy=4.5.4=he2f69ee_2 - - contourpy=1.0.7=py39h4b4f3f3_0 - - coverage=7.2.7=py39hd1e30aa_0 - - cryptography=41.0.0=py39hd4f0224_0 + - contourpy=1.2.0=py310hd41b1e2_0 + - coverage=7.3.2=py310h2372a71_0 + - cryptography=41.0.5=py310h75e40e8_0 - curl=8.1.2=h409715c_0 - - cycler=0.11.0=pyhd8ed1ab_0 - - cytoolz=0.12.0=py39hb9d737c_1 - - dash=2.10.0=pyhd8ed1ab_0 - - dask=2023.5.1=pyhd8ed1ab_0 - - dask-core=2023.5.1=pyhd8ed1ab_0 - - dask-labextension=6.1.0=pyhd8ed1ab_0 + - cycler=0.12.1=pyhd8ed1ab_0 + - cytoolz=0.12.2=py310h2372a71_1 + - dash=2.14.1=pyhd8ed1ab_0 + - dask=2023.10.1=pyhd8ed1ab_0 + - dask-core=2023.10.1=pyhd8ed1ab_0 + - dask-labextension=6.2.0=pyhd8ed1ab_0 - dataclasses=0.8=pyhc8e2a94_3 - - datashader=0.15.0=pyhd8ed1ab_0 - - datashape=0.5.4=py_1 - - dav1d=1.2.0=hd590300_0 + - datashader=0.16.0=pyhd8ed1ab_0 + - dav1d=1.2.1=hd590300_0 - dbus=1.13.6=h5008d03_3 - - debugpy=1.6.7=py39h227be39_0 + - debugpy=1.8.0=py310hc6cd4ac_1 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - descartes=1.1.0=py_4 - - dill=0.3.6=pyhd8ed1ab_1 + - dill=0.3.7=pyhd8ed1ab_0 - distarray=2.12.2=pyh050c7b8_4 - - distlib=0.3.6=pyhd8ed1ab_0 - - distributed=2023.5.1=pyhd8ed1ab_0 + - distlib=0.3.7=pyhd8ed1ab_0 + - distributed=2023.10.1=pyhd8ed1ab_0 - docopt=0.6.2=py_1 - docrep=0.3.2=pyh44b312d_0 - eccodes=2.28.0=h7513371_1 @@ -130,21 +126,20 @@ dependencies: - esgf-compute-api=2.3.9=0_h1234567_ - esgf-pyclient=0.3.1=pyh1a96a4e_2 - esmf=8.4.0=mpi_mpich_hc592774_104 - - esmpy=8.4.0=mpi_mpich_py39h3088dd8_102 - - exceptiongroup=1.1.1=pyhd8ed1ab_0 - - execnet=1.9.0=pyhd8ed1ab_0 - - executing=1.2.0=pyhd8ed1ab_0 + - esmpy=8.4.0=mpi_mpich_py310h515c5ea_102 + - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - execnet=2.0.2=pyhd8ed1ab_0 + - executing=2.0.1=pyhd8ed1ab_0 - expat=2.5.0=hcb278e6_1 - fasteners=0.17.3=pyhd8ed1ab_0 - fastprogress=1.0.3=pyhd8ed1ab_0 - - fftw=3.3.10=nompi_hc118613_107 - - filelock=3.12.0=pyhd8ed1ab_0 + - fftw=3.3.10=nompi_hc118613_108 + - filelock=3.13.1=pyhd8ed1ab_0 - findlibs=0.0.5=pyhd8ed1ab_0 - - fiona=1.9.1=py39hbc5ff6d_0 - - flask=2.3.2=pyhd8ed1ab_0 - - flit-core=3.9.0=pyhd8ed1ab_0 - - flox=0.7.2=pyhd8ed1ab_0 - - folium=0.14.0=pyhd8ed1ab_0 + - fiona=1.9.1=py310ha325b7b_0 + - flask=3.0.0=pyhd8ed1ab_0 + - flox=0.8.1=pyhd8ed1ab_0 + - folium=0.15.0=pyhd8ed1ab_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 @@ -152,142 +147,148 @@ dependencies: - fontconfig=2.14.2=h14ed4e7_0 - fonts-conda-ecosystem=1=0 - fonts-conda-forge=1=0 - - fonttools=4.39.4=py39hd1e30aa_0 + - fonttools=4.44.0=py310h2372a71_0 + - fqdn=1.5.1=pyhd8ed1ab_0 - freeglut=3.2.2=h9c3ff4c_1 - - freetype=2.12.1=hca18f0e_1 + - freetype=2.12.1=h267a509_2 - freexl=1.0.6=h166bdaf_1 - - frozenlist=1.3.3=py39hb9d737c_0 - - fsspec=2023.5.0=pyh1a96a4e_0 + - frozenlist=1.4.0=py310h2372a71_1 + - fsspec=2023.10.0=pyhca7485f_0 - funcsigs=1.0.2=py_3 - future=0.18.3=pyhd8ed1ab_0 - g2clib=1.6.3=hbecde78_1 - - gcsfs=2023.5.0=pyhd8ed1ab_0 - - gdal=3.6.2=py39hc6cd174_6 - - geckodriver=0.33.0=hd2f7af9_0 + - gcsfs=2023.10.0=pyhd8ed1ab_0 + - gdal=3.6.2=py310hc1b7723_6 + - geckodriver=0.33.0=h0e8d75e_1 - geographiclib=1.52=pyhd8ed1ab_0 - - geopandas=0.13.0=pyhd8ed1ab_0 - - geopandas-base=0.13.0=pyha770c72_0 - - geopy=2.3.0=pyhd8ed1ab_0 + - geopandas=0.14.0=pyhd8ed1ab_1 + - geopandas-base=0.14.0=pyha770c72_1 + - geopy=2.4.0=pyhd8ed1ab_0 - geos=3.11.1=h27087fc_0 - geotiff=1.7.1=h7a142b4_6 - - geoviews=1.9.6=pyhd8ed1ab_0 - - geoviews-core=1.9.6=pyha770c72_0 + - geoviews=1.11.0=pyhd8ed1ab_0 + - geoviews-core=1.11.0=pyha770c72_0 - gettext=0.21.1=h27087fc_0 - gflags=2.2.2=he1b5a44_1004 - giflib=5.2.1=h0b41bf4_3 - - gitdb=4.0.10=pyhd8ed1ab_0 - - gitpython=3.1.31=pyhd8ed1ab_0 - - glib=2.76.3=hfc55251_0 - - glib-tools=2.76.3=hfc55251_0 + - gitdb=4.0.11=pyhd8ed1ab_0 + - gitpython=3.1.40=pyhd8ed1ab_0 + - glib=2.78.1=hfc55251_0 + - glib-tools=2.78.1=hfc55251_0 - glog=0.6.0=h6f12383_0 + - gmp=6.2.1=h58526e2_0 - gnutls=3.7.8=hf3e180e_0 - - google-api-core=2.11.0=pyhd8ed1ab_0 - - google-auth=2.19.0=pyh1a96a4e_0 - - google-auth-oauthlib=1.0.0=pyhd8ed1ab_0 - - google-cloud-core=2.3.2=pyhd8ed1ab_0 - - google-cloud-storage=2.9.0=pyh1a96a4e_0 - - google-crc32c=1.1.2=py39h8db88ab_4 - - google-resumable-media=2.5.0=pyhd8ed1ab_0 - - googleapis-common-protos=1.57.1=pyhd8ed1ab_0 + - google-api-core=2.12.0=pyhd8ed1ab_0 + - google-auth=2.23.4=pyhca7485f_0 + - google-auth-oauthlib=1.1.0=pyhd8ed1ab_0 + - google-cloud-core=2.3.3=pyhd8ed1ab_0 + - google-cloud-storage=2.13.0=pyhca7485f_0 + - google-crc32c=1.1.2=py310hc5c09a0_5 + - google-resumable-media=2.6.0=pyhd8ed1ab_0 + - googleapis-common-protos=1.61.0=pyhd8ed1ab_0 - graphite2=1.3.13=h58526e2_1001 - - greenlet=2.0.2=py39h3d6467e_1 - - grpcio=1.54.2=py39h227be39_2 + - greenlet=3.0.1=py310hc6cd4ac_0 + - grpcio=1.56.2=py310h1b8f574_1 - gst-plugins-base=1.22.0=h4243ec0_2 - gstreamer=1.22.0=h25f0c4b_2 - gstreamer-orc=0.4.34=hd590300_0 - h11=0.14.0=pyhd8ed1ab_0 - - h5netcdf=1.1.0=pyhd8ed1ab_1 - - h5py=3.8.0=mpi_mpich_py39hadaddcd_0 + - h5netcdf=1.2.0=pyhd8ed1ab_0 + - h5py=3.8.0=nompi_py310h0311031_100 - harfbuzz=6.0.0=h8e241bc_0 - haversine=2.8.0=pyhd8ed1ab_0 - hdf4=4.2.15=h9772cbc_5 - hdf5=1.12.2=mpi_mpich_h5d83325_1 - - holoviews=1.16.0=pyhd8ed1ab_0 - - hvplot=0.8.3=pyhd8ed1ab_0 + - holoviews=1.18.0=pyhd8ed1ab_0 + - hvplot=0.9.0=pyhd8ed1ab_0 - icu=70.1=h27087fc_0 - - identify=2.5.24=pyhd8ed1ab_0 + - identify=2.5.31=pyhd8ed1ab_0 - idna=3.4=pyhd8ed1ab_0 - - imagecodecs=2023.1.23=py39hd061359_0 - - imageio=2.28.1=pyh24c5eb1_0 - - importlib-metadata=6.6.0=pyha770c72_0 - - importlib-resources=5.12.0=pyhd8ed1ab_0 - - importlib_metadata=6.6.0=hd8ed1ab_0 - - importlib_resources=5.12.0=pyhd8ed1ab_0 + - imagecodecs=2023.1.23=py310ha3ed6a1_0 + - imageio=2.31.5=pyh8c1a49c_0 + - importlib-metadata=6.8.0=pyha770c72_0 + - importlib_metadata=6.8.0=hd8ed1ab_0 + - importlib_resources=6.1.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - intake=0.7.0=pyhd8ed1ab_0 - - intake-esm=2021.8.17=pyhd8ed1ab_0 + - intake-esm=2023.6.14=pyhd8ed1ab_0 - intake-geopandas=0.4.0=pyhd8ed1ab_0 - intake-thredds=2022.8.19=pyhd8ed1ab_0 - intake-xarray=0.7.0=pyhd8ed1ab_0 - - ipykernel=6.23.1=pyh210e3f2_0 - - ipyleaflet=0.17.2=pyhd8ed1ab_0 - - ipython=8.13.2=pyh41d4057_0 + - ipykernel=6.26.0=pyhf8b6a83_0 + - ipyleaflet=0.17.4=pyhd8ed1ab_0 + - ipython=8.17.2=pyh41d4057_0 - ipython_genutils=0.2.0=py_1 - - ipywidgets=8.0.6=pyhd8ed1ab_0 + - ipywidgets=8.1.1=pyhd8ed1ab_0 + - isoduration=20.11.0=pyhd8ed1ab_0 - itsdangerous=2.1.2=pyhd8ed1ab_0 - jack=1.9.22=h11f4161_0 - jasper=2.0.33=h0ff4b12_1 - - jedi=0.18.2=pyhd8ed1ab_0 + - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.2=pyhd8ed1ab_1 - jmespath=1.0.1=pyhd8ed1ab_0 - - joblib=1.2.0=pyhd8ed1ab_0 + - joblib=1.3.2=pyhd8ed1ab_0 - jpeg=9e=h0b41bf4_3 - json-c=0.16=hc379101_0 - - json5=0.9.5=pyh9f0ad1d_0 - - jsonpickle=2.2.0=pyhd8ed1ab_0 - - jsonschema=4.17.3=pyhd8ed1ab_0 - - jupyter=1.0.0=py39hf3d152e_8 - - jupyter-archive=3.3.4=pyhd8ed1ab_1 + - json5=0.9.14=pyhd8ed1ab_0 + - jsonpickle=3.0.2=pyhd8ed1ab_1 + - jsonpointer=2.4=py310hff52083_3 + - jsonschema=4.19.2=pyhd8ed1ab_0 + - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.19.2=pyhd8ed1ab_0 + - jupyter=1.0.0=pyhd8ed1ab_10 + - jupyter-archive=3.4.0=pyhd8ed1ab_0 - jupyter-dash=0.4.2=pyhd8ed1ab_1 - jupyter-resource-usage=0.7.1=pyhd8ed1ab_0 - jupyter-server-mathjax=0.2.6=pyh5bfe37b_1 - - jupyter-server-proxy=4.0.0=pyhd8ed1ab_0 - - jupyter_bokeh=3.0.5=pyhd8ed1ab_0 - - jupyter_client=7.4.1=pyhd8ed1ab_0 + - jupyter-server-proxy=4.1.0=pyhd8ed1ab_0 + - jupyter_bokeh=3.0.7=pyhd8ed1ab_0 + - jupyter_client=7.4.9=pyhd8ed1ab_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - - jupyter_core=5.3.0=py39hf3d152e_0 - - jupyter_events=0.6.3=pyhd8ed1ab_0 - - jupyter_server=1.23.6=pyhd8ed1ab_0 + - jupyter_core=5.5.0=py310hff52083_0 + - jupyter_events=0.9.0=pyhd8ed1ab_0 + - jupyter_server=2.10.0=pyhd8ed1ab_0 - jupyter_server_fileid=0.9.0=pyhd8ed1ab_0 + - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 - jupyter_telemetry=0.1.0=pyhd8ed1ab_1 - jupyter_ydoc=0.2.4=pyhd8ed1ab_0 - - jupyterhub=4.0.0=pyh2a2186d_0 - - jupyterhub-base=4.0.0=pyh2a2186d_0 - - jupyterlab=3.6.4=pyhd8ed1ab_0 - - jupyterlab-git=0.41.0=pyhd8ed1ab_1 + - jupyterhub=4.0.2=pyh31011fe_0 + - jupyterhub-base=4.0.2=pyh31011fe_0 + - jupyterlab=3.6.6=pyhd8ed1ab_0 + - jupyterlab-git=0.44.0=pyhd8ed1ab_0 - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 - jupyterlab-topbar=0.6.1=pyhd8ed1ab_2 - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - jupyterlab_server=2.22.1=pyhd8ed1ab_0 - - jupyterlab_widgets=3.0.7=pyhd8ed1ab_1 - - jupytext=1.14.5=pyhcff175f_0 + - jupyterlab_server=2.25.0=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 + - jupytext=1.15.2=pyh5da7574_0 - jxrlib=1.1=h7f98852_2 - kealib=1.5.0=ha7026e8_0 - keyutils=1.6.1=h166bdaf_0 - - kiwisolver=1.4.4=py39hf939315_1 + - kiwisolver=1.4.5=py310hd41b1e2_1 - krb5=1.20.1=h81ceb04_0 - lame=3.100=h166bdaf_1003 - - lazy-object-proxy=1.9.0=py39h72bdee0_0 - - lazy_loader=0.2=pyhd8ed1ab_0 + - lazy-object-proxy=1.9.0=py310h2372a71_1 + - lazy_loader=0.3=pyhd8ed1ab_0 - lcms2=2.15=hfd0df8a_0 - ld_impl_linux-64=2.40=h41732ed_0 - lerc=4.0.0=h27087fc_0 - - libabseil=20230125.2=cxx17_h59595ed_2 - - libaec=1.0.6=hcb278e6_1 + - libabseil=20230125.3=cxx17_h59595ed_0 + - libaec=1.1.2=h59595ed_1 - libarchive=3.6.2=h3d51595_0 - - libarrow=10.0.1=hf815326_25_cpu - - libavif=0.11.1=hff004cb_1 - - libblas=3.9.0=16_linux64_openblas - - libbrotlicommon=1.0.9=h166bdaf_8 - - libbrotlidec=1.0.9=h166bdaf_8 - - libbrotlienc=1.0.9=h166bdaf_8 + - libarrow=12.0.1=h657c46f_7_cpu + - libavif=0.11.1=h8182462_2 + - libblas=3.9.0=19_linux64_openblas + - libbrotlicommon=1.0.9=h166bdaf_9 + - libbrotlidec=1.0.9=h166bdaf_9 + - libbrotlienc=1.0.9=h166bdaf_9 - libcap=2.67=he9d0100_0 - - libcblas=3.9.0=16_linux64_openblas + - libcblas=3.9.0=19_linux64_openblas - libcdms=3.1.2=hf94f14b_119 - - libcf=1.0.3=py39h6c807ef_115 - - libclang=15.0.7=default_h7634d5b_2 - - libclang13=15.0.7=default_h9986a30_2 + - libcf=1.0.3=py310hbc577d2_115 + - libclang=15.0.7=default_h7634d5b_3 + - libclang13=15.0.7=default_h9986a30_3 - libcrc32c=1.1.2=h9c3ff4c_0 - libcups=2.3.3=h36d4200_3 - libcurl=8.1.2=h409715c_0 @@ -301,45 +302,45 @@ dependencies: - libevent=2.1.10=h28343ad_4 - libexpat=2.5.0=hcb278e6_1 - libffi=3.4.2=h7f98852_5 - - libflac=1.4.2=h27087fc_0 - - libgcc-ng=12.2.0=h65d4601_19 - - libgcrypt=1.10.1=h166bdaf_0 + - libflac=1.4.3=h59595ed_0 + - libgcc-ng=13.2.0=h807b86a_2 + - libgcrypt=1.10.2=hd590300_0 - libgdal=3.6.2=h8c90c07_6 - - libgfortran-ng=12.2.0=h69a702a_19 - - libgfortran5=12.2.0=h337968e_19 - - libglib=2.76.3=hebfc3b9_0 + - libgfortran-ng=13.2.0=h69a702a_2 + - libgfortran5=13.2.0=ha4646dd_2 + - libglib=2.78.1=hebfc3b9_0 - libglu=9.0.0=he1b5a44_1001 - - libgomp=12.2.0=h65d4601_19 - - libgoogle-cloud=2.10.1=hac9eb74_1 - - libgpg-error=1.46=h620e276_0 - - libgrpc=1.54.2=hb20ce57_2 + - libgomp=13.2.0=h807b86a_2 + - libgoogle-cloud=2.12.0=h840a212_1 + - libgpg-error=1.47=h71f35ed_0 + - libgrpc=1.56.2=h3905398_1 - libiconv=1.17=h166bdaf_0 - libidn2=2.3.4=h166bdaf_0 - - libkml=1.3.0=h37653c0_1015 - - liblapack=3.9.0=16_linux64_openblas - - libllvm14=14.0.6=hcd5def8_2 + - libkml=1.3.0=h01aab08_1016 + - liblapack=3.9.0=19_linux64_openblas + - libllvm14=14.0.6=hcd5def8_4 - libllvm15=15.0.7=hadd5161_1 - libllvm16=16.0.1=hadd5161_0 - - libmicrohttpd=0.9.76=h87ba234_0 + - libmicrohttpd=0.9.77=h97afed2_0 - libnetcdf=4.8.1=mpi_mpich_hcd871d9_6 - - libnghttp2=1.52.0=h61bc06f_0 - - libnsl=2.0.0=h7f98852_0 + - libnghttp2=1.55.1=h47da74e_0 + - libnsl=2.0.1=hd590300_0 - libnuma=2.0.16=h0b41bf4_1 - libogg=1.3.4=h7f98852_1 - - libopenblas=0.3.21=pthreads_h78a6416_3 + - libopenblas=0.3.24=pthreads_h413a1c8_0 - libopus=1.3.1=h7f98852_1 - libpciaccess=0.17=h166bdaf_0 - libpng=1.6.39=h753d276_0 - libpq=15.2=hb675445_0 - - libprotobuf=3.21.12=h3eb15da_0 + - libprotobuf=4.23.3=hd1fb520_1 - librttopo=1.1.0=ha49c73b_12 - - libsndfile=1.2.0=hb75c966_0 + - libsndfile=1.2.2=hc60ed4a_1 - libsodium=1.0.18=h36c2ea0_1 - libspatialindex=1.9.3=h9c3ff4c_4 - libspatialite=5.0.1=h221c8f1_23 - - libsqlite=3.42.0=h2797004_0 - - libssh2=1.10.0=hf14f497_3 - - libstdcxx-ng=12.2.0=h46fd767_19 + - libsqlite=3.44.0=h2797004_0 + - libssh2=1.11.0=h0841786_0 + - libstdcxx-ng=13.2.0=h7e041cc_2 - libsystemd0=253=h8c4010b_1 - libtasn1=4.19.0=h166bdaf_0 - libthrift=0.18.1=h5e4af38_0 @@ -349,293 +350,300 @@ dependencies: - libunistring=0.9.10=h7f98852_0 - libutf8proc=2.8.0=h166bdaf_0 - libuuid=2.38.1=h0b41bf4_0 - - libuv=1.44.2=h166bdaf_0 + - libuv=1.44.2=hd590300_1 - libvorbis=1.3.7=h9c3ff4c_0 - - libwebp-base=1.3.0=h0b41bf4_0 + - libwebp-base=1.3.2=hd590300_0 - libxcb=1.13=h7f98852_1004 - libxkbcommon=1.5.0=h79f4944_1 - libxml2=2.10.3=hca2bb57_4 - libxslt=1.1.37=h873f0b0_0 - - libzip=1.9.2=hc929e4a_1 - - libzlib=1.2.13=h166bdaf_4 + - libzip=1.10.1=h2629f0a_3 + - libzlib=1.2.13=hd590300_5 - libzopfli=1.0.3=h9c3ff4c_0 - - llvmlite=0.40.0=py39h174d805_0 - - lmoments3=1.0.5=pyhd8ed1ab_0 + - linkify-it-py=2.0.0=pyhd8ed1ab_0 + - llvmlite=0.40.1=py310h1b8f574_0 + - lmoments3=1.0.6=pyhd8ed1ab_0 - locket=1.0.0=pyhd8ed1ab_0 - - loguru=0.7.0=py39hf3d152e_0 - - lxml=4.9.2=py39h14694de_0 - - lz4=4.3.2=py39h724f13c_0 + - loguru=0.7.2=py310hff52083_1 + - lxml=4.9.2=py310hbdc0903_0 + - lz4=4.3.2=py310h350c4a5_1 - lz4-c=1.9.4=hcb278e6_0 - lzo=2.10=h516909a_1000 - mako=1.2.4=pyhd8ed1ab_0 - mamba_gator=5.2.1=pyhd8ed1ab_0 - - mapclassify=2.5.0=pyhd8ed1ab_1 - - markdown=3.4.3=pyhd8ed1ab_0 - - markdown-it-py=2.2.0=pyhd8ed1ab_0 - - markupsafe=2.1.2=py39h72bdee0_0 - - matplotlib=3.7.1=py39hf3d152e_0 - - matplotlib-base=3.7.1=py39he190548_0 + - mapclassify=2.6.1=pyhd8ed1ab_0 + - markdown=3.5.1=pyhd8ed1ab_0 + - markdown-it-py=3.0.0=pyhd8ed1ab_0 + - markupsafe=2.1.3=py310h2372a71_1 + - matplotlib=3.8.1=py310hff52083_0 + - matplotlib-base=3.8.1=py310h62c0568_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - - mdit-py-plugins=0.3.5=pyhd8ed1ab_0 + - mdit-py-plugins=0.4.0=pyhd8ed1ab_0 - mdurl=0.1.0=pyhd8ed1ab_0 - memory_profiler=0.61.0=pyhd8ed1ab_0 - mesalib=23.0.2=h3855f93_0 - - mistune=2.0.5=pyhd8ed1ab_0 - - mpg123=1.31.3=hcb278e6_0 + - mistune=3.0.2=pyhd8ed1ab_0 + - mpg123=1.32.3=h59595ed_0 - mpi=1.0=mpich - - mpi4py=3.1.4=py39h32b9844_0 + - mpi4py=3.1.4=py310h37cc914_0 - mpich=4.0.3=h846660c_100 - - msgpack-python=1.0.5=py39h4b4f3f3_0 - - multidict=6.0.4=py39h72bdee0_0 + - msgpack-python=1.0.6=py310hd41b1e2_0 + - multidict=6.0.4=py310h2372a71_1 - multipledispatch=0.6.0=py_0 - - multiprocess=0.70.14=py39hb9d737c_3 - - munch=3.0.0=pyhd8ed1ab_0 + - multiprocess=0.70.15=py310h2372a71_1 + - munch=4.0.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - myproxyclient=2.1.0=pyhd8ed1ab_2 - - mysql-common=8.0.32=hf1915f5_2 - - mysql-libs=8.0.32=hca2cd23_2 + - mysql-common=8.0.33=hf1915f5_6 + - mysql-libs=8.0.33=hca2cd23_6 - nbclassic=1.0.0=pyhb4ecaf3_1 - nbclient=0.7.4=pyhd8ed1ab_0 - - nbconvert=7.4.0=pyhd8ed1ab_0 - - nbconvert-core=7.4.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.4.0=pyhd8ed1ab_0 + - nbconvert=7.11.0=pyhd8ed1ab_0 + - nbconvert-core=7.11.0=pyhd8ed1ab_0 + - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - nbdime=3.2.1=pyhd8ed1ab_0 - - nbformat=5.9.0=pyhd8ed1ab_0 + - nbformat=5.9.2=pyhd8ed1ab_0 - nbresuse=0.4.0=pyhd8ed1ab_0 - - nbval=0.9.6=pyh9f0ad1d_0 + - nbval=0.10.0=pyhd8ed1ab_0 - nc-time-axis=1.4.1=pyhd8ed1ab_0 - - ncurses=6.3=h27087fc_1 - - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - ncurses=6.4=h59595ed_2 + - nest-asyncio=1.5.8=pyhd8ed1ab_0 - nested_dict=1.61=pyhd3deb0d_0 - netcdf-fortran=4.6.0=mpi_mpich_h1e13492_2 - - netcdf4=1.6.2=nompi_py39hfaa66c4_100 + - netcdf4=1.6.2=nompi_py310h55e1e36_100 - nettle=3.8.1=hc379101_1 - - networkx=3.1=pyhd8ed1ab_0 + - networkx=3.2.1=pyhd8ed1ab_0 - nodeenv=1.8.0=pyhd8ed1ab_0 - nodejs=18.15.0=h8d033a5_0 - - notebook=6.5.4=pyha770c72_0 + - notebook=6.5.6=pyha770c72_0 - notebook-shim=0.2.3=pyhd8ed1ab_0 - nspr=4.35=h27087fc_0 - - nss=3.89=he45b914_0 - - numba=0.57.0=py39hb75a051_1 - - numcodecs=0.11.0=py39h227be39_1 - - numpy=1.23.5=py39h3d75532_0 - - numpy_groupies=0.9.22=pyhd8ed1ab_0 + - nss=3.94=h1d7d5a4_0 + - numba=0.57.1=py310h0f6aa51_0 + - numcodecs=0.12.1=py310hc6cd4ac_0 + - numpy=1.24.4=py310ha4c1d20_0 + - numpy_groupies=0.10.2=pyhd8ed1ab_0 - oauthlib=3.2.2=pyhd8ed1ab_0 - - openblas=0.3.21=pthreads_h320a7e8_3 + - openblas=0.3.24=pthreads_h7a3da1a_0 - openjpeg=2.5.0=hfec8fc6_2 - openssl=3.1.4=hd590300_0 - - orc=1.8.3=hfdbbad2_0 - - outcome=1.2.0=pyhd8ed1ab_0 + - orc=1.9.0=h385abfd_1 + - outcome=1.3.0.post0=pyhd8ed1ab_0 + - overrides=7.4.0=pyhd8ed1ab_0 - owslib=0.28.1=pyhd8ed1ab_0 - p11-kit=0.24.1=hc5aa10d_0 - - packaging=23.1=pyhd8ed1ab_0 - - pamela=1.0.0=py_0 - - pandas=1.3.5=py39hde0f152_0 - - pandoc=2.19.2=h32600fe_2 + - packaging=23.2=pyhd8ed1ab_0 + - pamela=1.1.0=pyh1a96a4e_0 + - pandas=2.1.2=py310hcc13569_0 + - pandoc=3.1.3=h32600fe_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - panel=0.14.4=pyhd8ed1ab_0 + - panel=1.3.1=pyhd8ed1ab_0 - parallelio=2.5.10=mpi_mpich_h862c5c2_100 - - param=1.13.0=pyh1a96a4e_0 - - paramiko=3.2.0=pyhd8ed1ab_0 + - param=2.0.0=pyhca7485f_0 + - paramiko=3.3.1=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - - partd=1.4.0=pyhd8ed1ab_0 - - pathos=0.3.0=pyhd8ed1ab_0 + - partd=1.4.1=pyhd8ed1ab_0 + - pathos=0.3.1=pyhd8ed1ab_0 - patsy=0.5.3=pyhd8ed1ab_0 - pcre2=10.40=hc3806b6_0 - pexpect=4.8.0=pyh1a96a4e_2 - pickleshare=0.7.5=py_1003 - - pillow=9.4.0=py39h2320bf1_1 - - pint=0.21=pyhd8ed1ab_0 - - pip=23.1.2=pyhd8ed1ab_0 - - pixman=0.40.0=h36c2ea0_0 - - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_0 - - platformdirs=3.5.1=pyhd8ed1ab_0 - - plotly=5.14.1=pyhd8ed1ab_0 - - pluggy=1.0.0=pyhd8ed1ab_5 + - pillow=9.4.0=py310h023d228_1 + - pint=0.22=pyhd8ed1ab_1 + - pip=23.3.1=pyhd8ed1ab_0 + - pixman=0.42.2=h59595ed_0 + - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 + - platformdirs=3.11.0=pyhd8ed1ab_0 + - plotly=5.18.0=pyhd8ed1ab_0 + - pluggy=1.3.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - pooch=1.7.0=pyha770c72_3 + - pooch=1.8.0=pyhd8ed1ab_0 - poppler=23.01.0=h091648b_0 - poppler-data=0.4.12=hd8ed1ab_0 - postgresql=15.2=h3248436_0 - - pox=0.3.2=pyhd8ed1ab_0 - - ppft=1.7.6.6=pyhd8ed1ab_0 - - pre-commit=3.3.2=pyha770c72_0 + - pox=0.3.3=pyhd8ed1ab_0 + - ppft=1.7.6.7=pyhd8ed1ab_0 + - pre-commit=3.5.0=pyha770c72_0 - proj=9.1.1=h8ffa02c_2 - - prometheus_client=0.17.0=pyhd8ed1ab_0 - - prompt-toolkit=3.0.38=pyha770c72_0 - - prompt_toolkit=3.0.38=hd8ed1ab_0 + - prometheus_client=0.18.0=pyhd8ed1ab_0 + - prompt-toolkit=3.0.39=pyha770c72_0 + - prompt_toolkit=3.0.39=hd8ed1ab_0 - properscoring=0.1=py_0 - - protobuf=4.21.12=py39h227be39_0 + - protobuf=4.23.3=py310hb875b13_0 - pscript=0.7.7=pyhd8ed1ab_0 - - psutil=5.9.5=py39h72bdee0_0 + - psutil=5.9.5=py310h2372a71_1 - pthread-stubs=0.4=h36c2ea0_1001 - ptyprocess=0.7.0=pyhd3deb0d_0 - pulseaudio=16.1=hcb278e6_3 - pulseaudio-client=16.1=h5195f5e_3 - pulseaudio-daemon=16.1=ha8d29e2_3 - pure_eval=0.2.2=pyhd8ed1ab_0 - - pyarrow=10.0.1=py39he4327e9_25_cpu - - pyasn1=0.4.8=py_0 - - pyasn1-modules=0.2.7=py_0 + - pyarrow=12.0.1=py310h0576679_7_cpu + - pyasn1=0.5.0=pyhd8ed1ab_0 + - pyasn1-modules=0.3.0=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - pyct=0.4.6=py_0 - pyct-core=0.4.6=py_0 - - pycurl=7.45.1=py39h9297c8b_3 - - pydantic=1.10.8=py39hd1e30aa_0 + - pycurl=7.45.1=py310h60f9ec7_3 + - pydantic=1.10.13=py310h2372a71_1 - pydap=3.4.0=pyhd8ed1ab_0 - pydeck=0.8.0=pyhd8ed1ab_0 - - pygeos=0.14=py39hc9151fd_0 - - pygments=2.15.1=pyhd8ed1ab_0 - - pyjwt=2.7.0=pyhd8ed1ab_0 + - pygments=2.16.1=pyhd8ed1ab_0 + - pyjwt=2.8.0=pyhd8ed1ab_0 + - pykdtree=1.3.9=py310h1f7b6fc_1 - pymbolic=2022.2=pyhd8ed1ab_0 - pymetalink=6.4=pyhd8ed1ab_0 - - pympler=1.0.1=pyhd8ed1ab_0 - - pynacl=1.5.0=py39hb9d737c_2 - - pyogrio=0.5.1=py39hbc5ff6d_0 - - pyopenssl=23.2.0=pyhd8ed1ab_1 - - pyparsing=3.0.9=pyhd8ed1ab_0 - - pyproj=3.5.0=py39hf8a5840_0 - - pyqt=5.15.7=py39h5c7b992_3 - - pyqt5-sip=12.11.0=py39h227be39_3 - - pyrsistent=0.19.3=py39h72bdee0_0 + - pynacl=1.5.0=py310h2372a71_3 + - pyogrio=0.5.1=py310ha325b7b_0 + - pyopenssl=23.3.0=pyhd8ed1ab_0 + - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyproj=3.5.0=py310h15e2413_0 + - pyqt=5.15.9=py310h04931ad_5 + - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - pyshp=2.3.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 - - pytest=7.3.1=pyhd8ed1ab_0 + - pytest=7.4.3=pyhd8ed1ab_0 - pytest-xdist=3.3.1=pyhd8ed1ab_0 - - python=3.9.16=h2782a2a_0_cpython + - python=3.10.13=hd12c33a_0_cpython - python-dateutil=2.8.2=pyhd8ed1ab_0 - - python-eccodes=1.5.1=py39h389d5f1_0 - - python-fastjsonschema=2.17.1=pyhd8ed1ab_0 + - python-eccodes=1.5.1=py310h0a54255_0 + - python-fastjsonschema=2.18.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - - python-pptx=0.6.21=pyhd8ed1ab_0 + - python-pptx=0.6.23=pyhd8ed1ab_0 - python-tzdata=2023.3=pyhd8ed1ab_0 - - python_abi=3.9=3_cp39 - - pytools=2022.1.14=pyhd8ed1ab_0 - - pytz=2023.3=pyhd8ed1ab_0 + - python_abi=3.10=4_cp310 + - pytools=2023.1.1=pyhd8ed1ab_0 + - pytz=2023.3.post1=pyhd8ed1ab_0 - pyu2f=0.1.5=pyhd8ed1ab_0 - - pyviz_comms=2.3.0=pyhd8ed1ab_0 - - pywavelets=1.4.1=py39h389d5f1_0 - - pyyaml=6.0=py39hb9d737c_5 - - pyzmq=25.1.0=py39hb257651_0 + - pyviz_comms=2.3.2=pyhd8ed1ab_0 + - pywavelets=1.4.1=py310h1f7b6fc_1 + - pyyaml=6.0.1=py310h2372a71_1 + - pyzmq=24.0.1=py310h330234f_1 - qt-main=5.15.8=h5d23da1_6 - - qtconsole=5.4.3=pyhd8ed1ab_0 - - qtconsole-base=5.4.3=pyha770c72_0 - - qtpy=2.3.1=pyhd8ed1ab_0 - - rasterio=1.3.6=py39h09b1985_0 - - raven-hydro=0.2.1=py39h8e2dbb5_1 - - ravenpy=0.12.1=py39hf3d152e_0 + - qtconsole-base=5.5.0=pyha770c72_0 + - qtpy=2.4.1=pyhd8ed1ab_0 + - rasterio=1.3.6=py310h3e853a9_0 + - raven-hydro=0.2.4=py310hee4f699_0 + - ravenpy=0.12.3=py310hff52083_0 - rdma-core=28.9=h59595ed_1 - re2=2023.03.02=h8c504da_0 - readline=8.2=h8228510_1 - - regionmask=0.10.0=pyhd8ed1ab_0 + - referencing=0.30.2=pyhd8ed1ab_0 + - regionmask=0.11.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - requests-cache=1.0.1=pyhd8ed1ab_0 + - requests-cache=1.1.0=pyhd8ed1ab_0 - requests-magpie=0.2.0=pyhd8ed1ab_0 - requests-oauthlib=1.3.1=pyhd8ed1ab_0 - retrying=1.3.3=py_2 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rioxarray=0.14.1=pyhd8ed1ab_0 + - rich=13.6.0=pyhd8ed1ab_0 + - rioxarray=0.15.0=pyhd8ed1ab_0 - roocs-utils=0.6.4=pyh1a96a4e_0 + - rpds-py=0.12.0=py310hcb5633a_0 - rsa=4.9=pyhd8ed1ab_0 - - rtree=1.0.1=py39hb102c33_1 - - ruamel.yaml=0.17.31=py39hd1e30aa_0 - - ruamel.yaml.clib=0.2.7=py39h72bdee0_1 - - s2n=1.3.44=h06160fa_0 - - s3fs=2023.5.0=pyhd8ed1ab_0 - - s3transfer=0.6.1=pyhd8ed1ab_0 - - salib=1.4.7=pyhd8ed1ab_0 - - scikit-image=0.20.0=py39h7c7b5a8_1 - - scikit-learn=1.2.2=py39hc236052_2 - - scipy=1.9.1=py39h8ba3f38_0 + - rtree=1.1.0=py310hbdcdc62_0 + - ruamel.yaml=0.18.5=py310h2372a71_0 + - ruamel.yaml.clib=0.2.7=py310h2372a71_2 + - s2n=1.3.46=h06160fa_0 + - s3fs=2023.10.0=pyhd8ed1ab_0 + - scikit-image=0.22.0=py310hcc13569_2 + - scikit-learn=1.3.2=py310h1fdf081_1 + - scipy=1.11.3=py310hb13e2d6_1 - scp=0.14.5=pyhd8ed1ab_0 - - seaborn=0.12.2=hd8ed1ab_0 - - seaborn-base=0.12.2=pyhd8ed1ab_0 - - selenium=4.9.1=pyhd8ed1ab_0 - - semver=3.0.0=pyhd8ed1ab_0 + - seaborn=0.13.0=hd8ed1ab_0 + - seaborn-base=0.13.0=pyhd8ed1ab_0 + - selenium=4.15.1=pyhd8ed1ab_0 + - selenium-manager=4.15.0=he8a937b_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=59.8.0=py39hf3d152e_1 - - shapely=2.0.1=py39hc9151fd_0 + - setuptools=68.2.2=pyhd8ed1ab_0 + - shapely=2.0.1=py310h8b84c32_0 - simpervisor=1.0.0=pyhd8ed1ab_0 - - sip=6.7.9=py39h3d6467e_0 + - sip=6.7.12=py310hc6cd4ac_0 - siphon=0.9=pyhd8ed1ab_2 - six=1.16.0=pyh6c4a22f_0 - - smmap=3.0.5=pyh44b312d_0 + - smmap=5.0.0=pyhd8ed1ab_0 - snappy=1.1.10=h9fff704_0 - sniffio=1.3.0=pyhd8ed1ab_0 - snuggs=1.4.7=py_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 - - soupsieve=2.3.2.post1=pyhd8ed1ab_0 + - soupsieve=2.5=pyhd8ed1ab_1 - sparse=0.14.0=pyhd8ed1ab_0 - spotpy=1.6.2=pyhd8ed1ab_0 - - sqlalchemy=2.0.15=py39hd1e30aa_0 - - sqlite=3.42.0=h2c6b66d_0 + - sqlalchemy=2.0.23=py310h2372a71_0 + - sqlite=3.44.0=h2c6b66d_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - statsmodels=0.14.0=py39h0f8d45d_1 - - streamlit=1.8.0=pyhd8ed1ab_0 - - tblib=1.7.0=pyhd8ed1ab_0 - - tenacity=8.2.2=pyhd8ed1ab_0 + - statsmodels=0.14.0=py310h1f7b6fc_2 + - streamlit=1.28.1=pyhd8ed1ab_0 + - tblib=2.0.0=pyhd8ed1ab_0 + - tenacity=8.2.3=pyhd8ed1ab_0 - terminado=0.17.1=pyh41d4057_0 - - threadpoolctl=3.1.0=pyh8a188c0_0 - - tifffile=2023.4.12=pyhd8ed1ab_0 + - threadpoolctl=3.2.0=pyha21a80b_0 + - threddsclient=0.4.4=pyh1a96a4e_0 + - tifffile=2023.8.12=pyhd8ed1ab_0 - tiledb=2.13.2=hd532e3d_0 - tinycss2=1.2.1=pyhd8ed1ab_0 - - tk=8.6.12=h27826a3_0 + - tk=8.6.13=noxft_h4845f30_101 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.2=py39hd1e30aa_0 - - tqdm=4.65.0=pyhd8ed1ab_1 - - traitlets=5.9.0=pyhd8ed1ab_0 + - tornado=6.3.3=py310h2372a71_1 + - tqdm=4.66.1=pyhd8ed1ab_0 + - traitlets=5.13.0=pyhd8ed1ab_0 - traittypes=0.2.1=pyh9f0ad1d_2 - - trio=0.22.0=py39hf3d152e_1 - - trio-websocket=0.10.2=pyhd8ed1ab_0 - - typing-extensions=4.6.2=hd8ed1ab_0 - - typing_extensions=4.6.2=pyha770c72_0 + - trio=0.23.1=py310hff52083_1 + - trio-websocket=0.11.1=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 + - typing-extensions=4.8.0=hd8ed1ab_0 + - typing_extensions=4.8.0=pyha770c72_0 + - typing_utils=0.1.0=pyhd8ed1ab_0 - tzcode=2023c=h0b41bf4_0 - tzdata=2023c=h71feb2d_0 - - tzlocal=5.0.1=py39hf3d152e_0 - - ucx=1.14.1=hf587318_2 - - ujson=5.7.0=py39h227be39_0 - - ukkonen=1.0.1=py39hf939315_3 - - unicodedata2=15.0.0=py39hb9d737c_0 + - tzlocal=5.2=py310hff52083_0 + - uc-micro-py=1.0.1=pyhd8ed1ab_0 + - ucx=1.14.1=h64cca9d_5 + - ujson=5.8.0=py310hc6cd4ac_0 + - ukkonen=1.0.1=py310hd41b1e2_4 + - unicodedata2=15.1.0=py310h2372a71_0 + - uri-template=1.3.0=pyhd8ed1ab_0 + - uriparser=0.9.7=hcb278e6_1 - url-normalize=1.4.3=pyhd8ed1ab_0 - - urllib3=1.26.15=pyhd8ed1ab_0 + - urllib3=1.26.18=pyhd8ed1ab_0 - urlpath=1.2.0=pyhd8ed1ab_0 - - validators=0.20.0=pyhd8ed1ab_0 - - virtualenv=20.23.0=pyhd8ed1ab_0 - - voila=0.4.0=pyhd8ed1ab_0 - - watchdog=3.0.0=py39hf3d152e_0 - - wcwidth=0.2.6=pyhd8ed1ab_0 - - webencodings=0.5.1=py_1 + - validators=0.22.0=pyhd8ed1ab_0 + - virtualenv=20.24.6=pyhd8ed1ab_0 + - voila=0.5.5=pyhd8ed1ab_0 + - watchdog=3.0.0=py310hff52083_1 + - wcwidth=0.2.9=pyhd8ed1ab_0 + - webcolors=1.13=pyhd8ed1ab_0 + - webencodings=0.5.1=pyhd8ed1ab_2 - webob=1.8.7=pyhd8ed1ab_0 - - websocket-client=1.5.2=pyhd8ed1ab_0 - - websockets=11.0.3=py39hd1e30aa_0 - - werkzeug=2.3.4=pyhd8ed1ab_0 + - websocket-client=1.6.4=pyhd8ed1ab_0 + - websockets=12.0=py310h2372a71_0 + - werkzeug=3.0.1=pyhd8ed1ab_0 - wget=1.20.3=ha35d2d1_1 - - wheel=0.40.0=pyhd8ed1ab_0 - - widgetsnbextension=4.0.7=pyhd8ed1ab_0 - - wrapt=1.15.0=py39h72bdee0_0 + - wheel=0.41.3=pyhd8ed1ab_0 + - widgetsnbextension=4.0.9=pyhd8ed1ab_0 + - wrapt=1.15.0=py310h2372a71_1 - wsproto=1.2.0=pyhd8ed1ab_0 - - xarray=2023.1.0=pyhd8ed1ab_0 + - xarray=2023.8.0=pyhd8ed1ab_0 - xcb-util=0.4.0=h516909a_0 - xcb-util-image=0.4.0=h166bdaf_0 - xcb-util-keysyms=0.4.0=h516909a_0 - xcb-util-renderutil=0.3.9=h166bdaf_0 - xcb-util-wm=0.4.1=h516909a_0 - - xclim=0.43.0=py39hf3d152e_1 + - xclim=0.46.0=py310hff52083_0 - xerces-c=3.2.4=h55805fa_1 - - xesmf=0.7.1=pyhd8ed1ab_0 - - xeus=3.0.5=hac2b420_1 - - xeus-python=0.15.9=py39h7633fee_0 + - xesmf=0.8.2=pyhd8ed1ab_0 + - xeus=3.1.3=h06414e2_0 + - xeus-python=0.15.10=py310hd41b1e2_1 - xeus-python-shell=0.5.0=pyhd8ed1ab_0 - xeus-python-shell-raw=0.5.0=pyhd8ed1ab_0 - - xeus-zmq=1.0.3=h0541b36_0 + - xeus-zmq=1.1.1=h6b5a882_1 - xhistogram=0.3.2=pyhd8ed1ab_0 - xkeyboard-config=2.38=h0b41bf4_0 - xlrd=2.0.1=pyhd8ed1ab_3 - - xlsxwriter=3.1.2=pyhd8ed1ab_0 + - xlsxwriter=3.1.9=pyhd8ed1ab_0 - xorg-damageproto=1.2.1=h7f98852_1002 - xorg-fixesproto=5.0=h7f98852_1002 - xorg-glproto=1.4.17=h7f98852_1002 @@ -660,47 +668,37 @@ dependencies: - xorg-xproto=7.0.31=h7f98852_1007 - xrft=1.0.1=pyhd8ed1ab_0 - xskillscore=0.0.24=pyhd8ed1ab_0 - - xyzservices=2023.5.0=pyhd8ed1ab_1 + - xyzservices=2023.10.1=pyhd8ed1ab_0 - xz=5.2.6=h166bdaf_0 - - y-py=0.5.9=py39h50f1755_0 + - y-py=0.5.9=py310h4426083_0 - yaml=0.2.5=h7f98852_2 - - yarl=1.9.2=py39hd1e30aa_0 + - yarl=1.9.2=py310h2372a71_1 - ypy-websocket=0.8.2=pyhd8ed1ab_0 - - zarr=2.14.2=pyhd8ed1ab_0 - - zeromq=4.3.4=h9c3ff4c_1 - - zfp=1.0.0=h27087fc_3 + - zarr=2.16.1=pyhd8ed1ab_0 + - zeromq=4.3.5=h59595ed_0 + - zfp=1.0.0=h59595ed_4 - zict=3.0.0=pyhd8ed1ab_0 - - zipp=3.15.0=pyhd8ed1ab_0 - - zlib=1.2.13=h166bdaf_4 + - zipp=3.17.0=pyhd8ed1ab_0 + - zlib=1.2.13=hd590300_5 - zlib-ng=2.0.7=h0b41bf4_0 - - zstd=1.5.2=h3eb15da_6 + - zstd=1.5.5=hfc55251_0 - pip: - - arrow==1.2.3 - astunparse==1.6.3 - colour==0.1.5 - - dnspython==2.3.0 - - email-validator==2.0.0.post2 - - fqdn==1.5.1 - - fstd2nc==0.20231105.0 - - fstd2nc-deps==0.20200304.6 - - geojson==3.0.1 - - hsclient==0.3.3 - - hsmodels==0.5.5 + - dnspython==2.4.2 + - email-validator==2.1.0.post1 + - geojson==3.1.0 + - hsclient==0.3.4 + - hsmodels==0.5.8 - ipython-blocking==0.3.1 - isodate==0.6.1 - - isoduration==20.11.0 - - jsonpointer==2.3 - jupyterlab-logout==0.5.0 - jupyterlab-tabular-data-editor==1.0.0 - jupyternotify==0.1.15 - pixiedust==1.1.19 - - progress==1.6 - pytest-tornasync==0.6.0.post2 - rdflib==5.0.0 - - threddsclient==0.4.4 - - uri-template==1.2.0 - - webcolors==1.13 - xmltodict==0.13.0 - - xncml==0.2 - - xsdata==23.5 + - xncml==0.3 + - xsdata==23.8 prefix: /opt/conda/envs/birdy diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index 7cb5409..d8f424c 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,339 +1,5293 @@ -2024-01-16T15:53:27Z Building in Docker Cloud's infrastructure... -2024-01-16T15:53:27Z Cloning into '.'... -2024-01-16T15:53:27Z Warning: Permanently added the RSA host key for IP address '140.82.113.4' to the list of known hosts. -2024-01-16T15:53:29Z Switched to a new branch 'dockerupdate-py39-230601-1-update240116' -2024-01-16T15:53:29Z KernelVersion: 5.4.0-1068-aws -2024-01-16T15:53:29Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-01-16T15:53:29Z Arch: amd64 -2024-01-16T15:53:29Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-01-16T15:53:29Z ApiVersion: 1.41 -2024-01-16T15:53:29Z Platform: {u'Name': u'Docker Engine - Community'} -2024-01-16T15:53:29Z Version: 20.10.15 -2024-01-16T15:53:29Z MinAPIVersion: 1.12 -2024-01-16T15:53:29Z GitCommit: 4433bf6 -2024-01-16T15:53:29Z Os: linux -2024-01-16T15:53:29Z GoVersion: go1.17.9 -2024-01-16T15:53:29Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py39-230601-1-update240116... -2024-01-16T15:53:34Z #1 [internal] load build definition from Dockerfile.testing -2024-01-16T15:53:34Z #1 transferring dockerfile: -2024-01-16T15:53:34Z #1 transferring dockerfile: 1.24kB done -2024-01-16T15:53:34Z #1 DONE 0.1s -2024-01-16T15:53:34Z -2024-01-16T15:53:34Z #2 [internal] load .dockerignore -2024-01-16T15:53:34Z #2 transferring context: 2B done -2024-01-16T15:53:34Z #2 DONE 0.0s -2024-01-16T15:53:34Z -2024-01-16T15:53:34Z #3 [internal] load metadata for docker.io/pavics/workflow-tests:py39-230601-1-update231122 -2024-01-16T15:53:34Z #3 ... -2024-01-16T15:53:34Z -2024-01-16T15:53:34Z #4 [auth] pavics/workflow-tests:pull token for registry-1.docker.io -2024-01-16T15:53:34Z #4 DONE 0.0s -2024-01-16T15:53:34Z -2024-01-16T15:53:34Z #3 [internal] load metadata for docker.io/pavics/workflow-tests:py39-230601-1-update231122 -2024-01-16T15:53:35Z #3 DONE 0.7s -2024-01-16T15:53:35Z -2024-01-16T15:53:35Z #5 [1/2] FROM docker.io/pavics/workflow-tests:py39-230601-1-update231122@sha256:ee89dcb84228b101d58c4f51e1c27997b522d89ef5df03230938caf2c18525eb -2024-01-16T15:53:35Z #5 resolve docker.io/pavics/workflow-tests:py39-230601-1-update231122@sha256:ee89dcb84228b101d58c4f51e1c27997b522d89ef5df03230938caf2c18525eb done -2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 4.19MB / 31.42MB 0.1s -2024-01-16T15:53:35Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 0B / 50.18MB 0.1s -2024-01-16T15:53:35Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 0B / 72.05MB 0.1s -2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 14.68MB / 31.42MB 0.2s -2024-01-16T15:53:35Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 3.15MB / 50.18MB 0.2s -2024-01-16T15:53:35Z #5 sha256:7ecd10d73c5c860e3f0de222a89437d59fb3aeac2dd66dedbe7e75dbd84afe6d 12.45kB / 12.45kB done -2024-01-16T15:53:35Z #5 sha256:ee89dcb84228b101d58c4f51e1c27997b522d89ef5df03230938caf2c18525eb 3.49kB / 3.49kB done -2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 18.87MB / 31.42MB 0.3s -2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 27.62MB / 31.42MB 0.5s -2024-01-16T15:53:35Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 8.81MB / 50.18MB 0.5s -2024-01-16T15:53:35Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 9.44MB / 72.05MB 0.5s -2024-01-16T15:53:35Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 31.42MB / 31.42MB 0.6s -2024-01-16T15:53:35Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 12.62MB / 50.18MB 0.6s -2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 17.20MB / 50.18MB 0.7s -2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 17.38MB / 72.05MB 0.7s -2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 29.36MB / 50.18MB 0.9s -2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 25.17MB / 72.05MB 0.9s -2024-01-16T15:53:36Z #5 sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 31.42MB / 31.42MB 1.0s done -2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 31.58MB / 72.05MB 1.0s -2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 34.96MB / 50.18MB 1.1s -2024-01-16T15:53:36Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 0B / 166.09MB 1.1s -2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 37.75MB / 50.18MB 1.3s -2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 36.70MB / 72.05MB 1.3s -2024-01-16T15:53:36Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 40.89MB / 50.18MB 1.5s -2024-01-16T15:53:36Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 41.94MB / 72.05MB 1.5s -2024-01-16T15:53:36Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 8.39MB / 166.09MB 1.6s -2024-01-16T15:53:36Z #5 extracting sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 0.1s -2024-01-16T15:53:37Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 46.14MB / 72.05MB 1.9s -2024-01-16T15:53:37Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 44.30MB / 50.18MB 2.1s -2024-01-16T15:53:37Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 47.19MB / 50.18MB 2.2s -2024-01-16T15:53:37Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 52.43MB / 72.05MB 2.2s -2024-01-16T15:53:37Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 50.18MB / 50.18MB 2.3s -2024-01-16T15:53:37Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 16.78MB / 166.09MB 2.4s -2024-01-16T15:53:37Z #5 sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 50.18MB / 50.18MB 2.5s done -2024-01-16T15:53:37Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 56.52MB / 72.05MB 2.6s -2024-01-16T15:53:37Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 26.21MB / 166.09MB 2.6s -2024-01-16T15:53:37Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 0B / 315.95MB 2.6s -2024-01-16T15:53:38Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 60.87MB / 72.05MB 2.9s -2024-01-16T15:53:38Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 65.01MB / 72.05MB 3.1s -2024-01-16T15:53:38Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 72.05MB / 72.05MB 3.3s -2024-01-16T15:53:38Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 41.94MB / 166.09MB 3.3s -2024-01-16T15:53:38Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 17.83MB / 315.95MB 3.4s -2024-01-16T15:53:39Z #5 sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 72.05MB / 72.05MB 3.6s done -2024-01-16T15:53:39Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 51.84MB / 166.09MB 3.8s -2024-01-16T15:53:39Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 0B / 178.45MB 3.8s -2024-01-16T15:53:39Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 40.03MB / 315.95MB 4.2s -2024-01-16T15:53:39Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 10.49MB / 178.45MB 4.5s -2024-01-16T15:53:39Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 60.82MB / 166.09MB 4.6s -2024-01-16T15:53:40Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 73.40MB / 166.09MB 5.0s -2024-01-16T15:53:40Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 56.62MB / 315.95MB 5.0s -2024-01-16T15:53:40Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 26.21MB / 178.45MB 5.0s -2024-01-16T15:53:40Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 87.03MB / 166.09MB 5.3s -2024-01-16T15:53:40Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 36.70MB / 178.45MB 5.3s -2024-01-16T15:53:40Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 98.57MB / 166.09MB 5.7s -2024-01-16T15:53:40Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 48.23MB / 178.45MB 5.7s -2024-01-16T15:53:41Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 73.40MB / 315.95MB 5.8s -2024-01-16T15:53:41Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 61.87MB / 178.45MB 6.2s -2024-01-16T15:53:41Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 106.95MB / 166.09MB 6.3s -2024-01-16T15:53:41Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 71.30MB / 178.45MB 6.5s -2024-01-16T15:53:41Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 115.78MB / 166.09MB 6.6s -2024-01-16T15:53:42Z #5 extracting sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 5.2s -2024-01-16T15:53:42Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 93.32MB / 315.95MB 6.9s -2024-01-16T15:53:42Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 84.50MB / 178.45MB 7.0s -2024-01-16T15:53:42Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 124.78MB / 166.09MB 7.1s -2024-01-16T15:53:42Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 94.37MB / 178.45MB 7.2s -2024-01-16T15:53:42Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 134.22MB / 166.09MB 7.3s -2024-01-16T15:53:42Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 117.44MB / 315.95MB 7.5s -2024-01-16T15:53:42Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 142.87MB / 166.09MB 7.6s -2024-01-16T15:53:42Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 104.17MB / 178.45MB 7.6s -2024-01-16T15:53:43Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 134.22MB / 315.95MB 7.9s -2024-01-16T15:53:43Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 160.49MB / 166.09MB 8.1s -2024-01-16T15:53:43Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 115.73MB / 178.45MB 8.1s -2024-01-16T15:53:43Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 125.72MB / 178.45MB 8.4s -2024-01-16T15:53:44Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 150.99MB / 315.95MB 8.7s -2024-01-16T15:53:44Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 143.65MB / 178.45MB 9.4s -2024-01-16T15:53:45Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 157.29MB / 178.45MB 9.8s -2024-01-16T15:53:45Z #5 sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 166.09MB / 166.09MB 9.9s done -2024-01-16T15:53:45Z #5 sha256:7ece3239e3205850471f67fc804740ecd2f32cf9acd7b9e16efadfe2d721d261 0B / 3.71kB 10.0s -2024-01-16T15:53:45Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 167.77MB / 315.95MB 10.1s -2024-01-16T15:53:45Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 167.77MB / 178.45MB 10.1s -2024-01-16T15:53:45Z #5 sha256:7ece3239e3205850471f67fc804740ecd2f32cf9acd7b9e16efadfe2d721d261 3.71kB / 3.71kB 10.0s done -2024-01-16T15:53:45Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 0B / 1.59GB 10.4s -2024-01-16T15:53:45Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 178.45MB / 178.45MB 10.7s -2024-01-16T15:53:46Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 188.12MB / 315.95MB 11.2s -2024-01-16T15:53:46Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 204.47MB / 315.95MB 11.6s -2024-01-16T15:53:47Z #5 extracting sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 10.3s -2024-01-16T15:53:47Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 221.25MB / 315.95MB 12.2s -2024-01-16T15:53:47Z #5 extracting sha256:26c5c85e47da3022f1bdb9a112103646c5c29517d757e95426f16e4bd9533405 10.7s done -2024-01-16T15:53:47Z #5 sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 178.45MB / 178.45MB 12.3s done -2024-01-16T15:53:47Z #5 sha256:6ad64da2708fca2c9f80e93fa2b0d706e6126d9584a56fc1230e708f8c297c9f 6.66kB / 6.66kB 12.4s done -2024-01-16T15:53:48Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 239.08MB / 315.95MB 12.7s -2024-01-16T15:53:48Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 0B / 200.46MB 12.7s -2024-01-16T15:53:48Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 85.98MB / 1.59GB 12.9s -2024-01-16T15:53:48Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 255.93MB / 315.95MB 13.3s -2024-01-16T15:53:48Z #5 extracting sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e -2024-01-16T15:53:49Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 19.19MB / 200.46MB 13.8s -2024-01-16T15:53:49Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 275.78MB / 315.95MB 14.0s -2024-01-16T15:53:49Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 31.46MB / 200.46MB 14.3s -2024-01-16T15:53:49Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 297.80MB / 315.95MB 14.4s -2024-01-16T15:53:49Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 44.04MB / 200.46MB 14.6s -2024-01-16T15:53:50Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 315.62MB / 315.95MB 14.9s -2024-01-16T15:53:50Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 54.53MB / 200.46MB 15.0s -2024-01-16T15:53:50Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 64.57MB / 200.46MB 15.2s -2024-01-16T15:53:50Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 166.72MB / 1.59GB 15.4s -2024-01-16T15:53:51Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 75.50MB / 200.46MB 15.9s -2024-01-16T15:53:51Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 87.03MB / 200.46MB 16.3s -2024-01-16T15:53:51Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 102.99MB / 200.46MB 16.5s -2024-01-16T15:53:52Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 113.25MB / 200.46MB 17.3s -2024-01-16T15:53:52Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 130.02MB / 200.46MB 17.6s -2024-01-16T15:53:53Z #5 sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 315.95MB / 315.95MB 17.9s done -2024-01-16T15:53:53Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 142.61MB / 200.46MB 17.9s -2024-01-16T15:53:53Z #5 sha256:a42d5ce605fe230150399cf7ea693b5a5045a664b87d21acc5e825513312cf9a 0B / 2.96kB 18.0s -2024-01-16T15:53:53Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 158.33MB / 200.46MB 18.3s -2024-01-16T15:53:53Z #5 sha256:a42d5ce605fe230150399cf7ea693b5a5045a664b87d21acc5e825513312cf9a 2.96kB / 2.96kB 18.2s done -2024-01-16T15:53:53Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 0B / 136.79MB 18.3s -2024-01-16T15:53:53Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 247.46MB / 1.59GB 18.5s -2024-01-16T15:53:53Z #5 extracting sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 5.1s -2024-01-16T15:53:54Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 178.26MB / 200.46MB 18.8s -2024-01-16T15:53:54Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 11.53MB / 136.79MB 18.8s -2024-01-16T15:53:54Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 196.08MB / 200.46MB 19.2s -2024-01-16T15:53:54Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 20.97MB / 136.79MB 19.2s -2024-01-16T15:53:54Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 29.36MB / 136.79MB 19.4s -2024-01-16T15:53:54Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 39.85MB / 136.79MB 19.6s -2024-01-16T15:53:55Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 47.19MB / 136.79MB 20.4s -2024-01-16T15:53:55Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 54.53MB / 136.79MB 20.7s -2024-01-16T15:53:56Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 61.69MB / 136.79MB 21.0s -2024-01-16T15:53:56Z #5 sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 200.46MB / 200.46MB 21.1s done -2024-01-16T15:53:56Z #5 sha256:8144baa7f709ffa4b39b187f6149563ce3bb0d341d0ee0e50c8827f5af23ccfc 0B / 229B 21.1s -2024-01-16T15:53:56Z #5 sha256:8144baa7f709ffa4b39b187f6149563ce3bb0d341d0ee0e50c8827f5af23ccfc 229B / 229B 21.2s done -2024-01-16T15:53:56Z #5 sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 0B / 7.40MB 21.3s -2024-01-16T15:53:56Z #5 sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 4.19MB / 7.40MB 21.5s -2024-01-16T15:53:56Z #5 sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 7.40MB / 7.40MB 21.6s -2024-01-16T15:53:57Z #5 sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 7.40MB / 7.40MB 21.7s done -2024-01-16T15:53:57Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 0B / 23.70MB 21.8s -2024-01-16T15:53:57Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 71.30MB / 136.79MB 21.9s -2024-01-16T15:53:57Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 6.29MB / 23.70MB 22.0s -2024-01-16T15:53:57Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 80.74MB / 136.79MB 22.1s -2024-01-16T15:53:57Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 9.44MB / 23.70MB 22.2s -2024-01-16T15:53:57Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 333.82MB / 1.59GB 22.5s -2024-01-16T15:53:57Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 87.62MB / 136.79MB 22.5s -2024-01-16T15:53:57Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 12.58MB / 23.70MB 22.5s -2024-01-16T15:53:58Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 19.92MB / 23.70MB 22.8s -2024-01-16T15:53:58Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 23.70MB / 23.70MB 22.9s -2024-01-16T15:53:58Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 100.69MB / 136.79MB 23.1s -2024-01-16T15:53:58Z #5 sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 23.70MB / 23.70MB 23.3s done -2024-01-16T15:53:58Z #5 extracting sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 10.2s -2024-01-16T15:53:59Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 108.10MB / 136.79MB 23.7s -2024-01-16T15:53:59Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 120.59MB / 136.79MB 24.0s -2024-01-16T15:53:59Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 132.12MB / 136.79MB 24.3s -2024-01-16T15:54:00Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 417.33MB / 1.59GB 25.5s -2024-01-16T15:54:01Z #5 sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 136.79MB / 136.79MB 25.9s done -2024-01-16T15:54:02Z #5 extracting sha256:94d07c8690a4ebb0c3efd27c229864e07d2047a60fad23472f4a5a9bc9cb4b9e 13.5s done -2024-01-16T15:54:02Z #5 extracting sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 -2024-01-16T15:54:03Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 497.03MB / 1.59GB 28.3s -2024-01-16T15:54:05Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 578.81MB / 1.59GB 30.5s -2024-01-16T15:54:07Z #5 extracting sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 5.0s -2024-01-16T15:54:08Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 659.88MB / 1.59GB 32.8s -2024-01-16T15:54:10Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 750.78MB / 1.59GB 35.5s -2024-01-16T15:54:12Z #5 extracting sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 10.1s -2024-01-16T15:54:13Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 831.52MB / 1.59GB 37.9s -2024-01-16T15:54:16Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 919.60MB / 1.59GB 41.1s -2024-01-16T15:54:16Z #5 extracting sha256:aac8deeeec9f25370156d9d1a1fcab24f3b2e212c98a02c564d45f194ef98f59 14.0s done -2024-01-16T15:54:17Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d -2024-01-16T15:54:17Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.00GB / 1.59GB 42.6s -2024-01-16T15:54:20Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.08GB / 1.59GB 45.4s -2024-01-16T15:54:22Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 5.0s -2024-01-16T15:54:23Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.16GB / 1.59GB 47.9s -2024-01-16T15:54:25Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.24GB / 1.59GB 50.7s -2024-01-16T15:54:27Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 10.2s -2024-01-16T15:54:28Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.32GB / 1.59GB 53.5s -2024-01-16T15:54:31Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.41GB / 1.59GB 56.5s -2024-01-16T15:54:32Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 15.4s -2024-01-16T15:54:34Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.49GB / 1.59GB 59.3s -2024-01-16T15:54:36Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.57GB / 1.59GB 61.5s -2024-01-16T15:54:37Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 20.5s -2024-01-16T15:54:38Z #5 extracting sha256:ce6336dc557ab32d35ca2c33c10f935870744e90d2e8de37a43035de6bd7254d 20.5s done -2024-01-16T15:54:39Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 -2024-01-16T15:54:40Z #5 sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 1.59GB / 1.59GB 65.0s done -2024-01-16T15:54:44Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 5.0s -2024-01-16T15:54:49Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 10.2s -2024-01-16T15:54:54Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 15.3s -2024-01-16T15:55:00Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 20.7s -2024-01-16T15:55:05Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 25.7s -2024-01-16T15:55:06Z #5 extracting sha256:403f1034b5370252ba6cd3944620bb92839fd2e537985c43c17dff55397f4950 26.7s done -2024-01-16T15:55:07Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 -2024-01-16T15:55:12Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 5.1s -2024-01-16T15:55:17Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 10.1s -2024-01-16T15:55:22Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 15.2s -2024-01-16T15:55:24Z #5 extracting sha256:0c07f3aadee84b9783f97227a75f5faff6787b0cbe6774d27a7a7507c8102d00 17.9s done -2024-01-16T15:55:25Z #5 extracting sha256:7ece3239e3205850471f67fc804740ecd2f32cf9acd7b9e16efadfe2d721d261 done -2024-01-16T15:55:25Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 -2024-01-16T15:55:30Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 5.1s -2024-01-16T15:55:36Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 10.2s -2024-01-16T15:55:41Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 15.6s -2024-01-16T15:55:46Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 20.8s -2024-01-16T15:55:52Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 26.2s -2024-01-16T15:55:57Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 31.8s -2024-01-16T15:56:03Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 37.1s -2024-01-16T15:56:08Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 42.4s -2024-01-16T15:56:13Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 47.9s -2024-01-16T15:56:18Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 53.0s -2024-01-16T15:56:23Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 58.1s -2024-01-16T15:56:28Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 63.1s -2024-01-16T15:56:34Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 68.2s -2024-01-16T15:56:39Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 73.2s -2024-01-16T15:56:44Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 78.3s -2024-01-16T15:56:49Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 83.3s -2024-01-16T15:56:54Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 88.4s -2024-01-16T15:56:59Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 93.4s -2024-01-16T15:57:04Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 98.5s -2024-01-16T15:57:09Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 103.7s -2024-01-16T15:57:14Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 108.8s -2024-01-16T15:57:19Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 114.1s -2024-01-16T15:57:25Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 119.2s -2024-01-16T15:57:30Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 124.2s -2024-01-16T15:57:35Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 129.3s -2024-01-16T15:57:40Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 134.3s -2024-01-16T15:57:45Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 139.4s -2024-01-16T15:57:50Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 144.7s -2024-01-16T15:57:55Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 149.8s -2024-01-16T15:58:01Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 155.4s -2024-01-16T15:58:06Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 160.4s -2024-01-16T15:58:12Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 166.2s -2024-01-16T15:58:17Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 171.5s -2024-01-16T15:58:22Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 176.7s -2024-01-16T15:58:27Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 181.8s -2024-01-16T15:58:32Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 186.9s -2024-01-16T15:58:37Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 192.1s -2024-01-16T15:58:43Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 197.3s -2024-01-16T15:58:48Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 202.5s -2024-01-16T15:58:53Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 208.0s -2024-01-16T15:58:58Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 213.1s -2024-01-16T15:59:04Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 218.3s -2024-01-16T15:59:10Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 225.1s -2024-01-16T15:59:16Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 231.0s -2024-01-16T15:59:22Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 236.9s -2024-01-16T15:59:27Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 242.1s -2024-01-16T15:59:33Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 247.3s -2024-01-16T15:59:38Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 252.6s -2024-01-16T15:59:45Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 259.6s -2024-01-16T15:59:50Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 264.7s -2024-01-16T15:59:56Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 270.2s -2024-01-16T16:00:00Z #5 extracting sha256:9813282396e58213775e63c43af4ccd2c628d7b717d5c18bcb46f8cb52c4c4d8 274.7s done -2024-01-16T16:00:05Z #5 extracting sha256:6ad64da2708fca2c9f80e93fa2b0d706e6126d9584a56fc1230e708f8c297c9f done -2024-01-16T16:00:06Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf -2024-01-16T16:00:11Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 5.2s -2024-01-16T16:00:19Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 13.0s -2024-01-16T16:00:24Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 18.4s -2024-01-16T16:00:29Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 23.5s -2024-01-16T16:00:34Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 28.6s -2024-01-16T16:00:40Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 33.9s -2024-01-16T16:00:46Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 40.2s -2024-01-16T16:00:51Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 45.3s -2024-01-16T16:00:57Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 51.4s -2024-01-16T16:01:02Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 56.6s -2024-01-16T16:01:05Z #5 extracting sha256:9a1ce158b391ce5959e6fcdea2eaa8952d21668f28834a04850ba9f49a162bbf 59.2s done -2024-01-16T16:01:06Z #5 extracting sha256:a42d5ce605fe230150399cf7ea693b5a5045a664b87d21acc5e825513312cf9a done -2024-01-16T16:01:07Z #5 extracting sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 0.1s -2024-01-16T16:01:11Z #5 extracting sha256:b2da61821d2de372c5ce23a2311eeada02f13767afa7e92c09c8f12c9bd50308 4.4s done -2024-01-16T16:01:11Z #5 extracting sha256:8144baa7f709ffa4b39b187f6149563ce3bb0d341d0ee0e50c8827f5af23ccfc done -2024-01-16T16:01:11Z #5 extracting sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af -2024-01-16T16:01:12Z #5 extracting sha256:7b504ec6580df16b31c8d285256b8d26464a8a7d3e816d899296f54a58b9a2af 0.8s done -2024-01-16T16:01:12Z #5 extracting sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 -2024-01-16T16:01:13Z #5 extracting sha256:96289424801e3678535fd367bf2d09c7bb7c3d9ed7c8128ddc7aad96f1de2f04 0.9s done -2024-01-16T16:01:14Z #5 DONE 458.8s -2024-01-16T16:01:14Z -2024-01-16T16:01:14Z #6 [2/2] RUN umask 0000 && pip install --no-cache-dir https://github.com/bird-house/threddsclient/archive/refs/heads/master.zip -2024-01-16T16:01:15Z #6 1.403 Collecting https://github.com/bird-house/threddsclient/archive/refs/heads/master.zip -2024-01-16T16:01:15Z #6 1.665 Downloading https://github.com/bird-house/threddsclient/archive/refs/heads/master.zip -2024-01-16T16:01:15Z #6 1.676 - 24.0 kB 31.3 MB/s 0:00:00 -2024-01-16T16:01:15Z #6 1.694 Preparing metadata (setup.py): started -2024-01-16T16:01:16Z #6 2.397 Preparing metadata (setup.py): finished with status 'done' -2024-01-16T16:01:16Z #6 2.408 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.9/site-packages (from threddsclient==0.4.4) (2.31.0) -2024-01-16T16:01:16Z #6 2.409 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from threddsclient==0.4.4) (4.12.2) -2024-01-16T16:01:16Z #6 2.410 Requirement already satisfied: lxml in /opt/conda/envs/birdy/lib/python3.9/site-packages (from threddsclient==0.4.4) (4.9.2) -2024-01-16T16:01:16Z #6 2.419 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from beautifulsoup4->threddsclient==0.4.4) (2.3.2.post1) -2024-01-16T16:01:16Z #6 2.442 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from requests->threddsclient==0.4.4) (2.1.1) -2024-01-16T16:01:16Z #6 2.445 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from requests->threddsclient==0.4.4) (3.4) -2024-01-16T16:01:16Z #6 2.448 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from requests->threddsclient==0.4.4) (1.26.15) -2024-01-16T16:01:16Z #6 2.451 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.9/site-packages (from requests->threddsclient==0.4.4) (2023.7.22) -2024-01-16T16:01:16Z #6 2.498 Building wheels for collected packages: threddsclient -2024-01-16T16:01:16Z #6 2.500 Building wheel for threddsclient (setup.py): started -2024-01-16T16:01:17Z #6 3.274 Building wheel for threddsclient (setup.py): finished with status 'done' -2024-01-16T16:01:17Z #6 3.275 Created wheel for threddsclient: filename=threddsclient-0.4.4-py3-none-any.whl size=13214 sha256=35afcb20f58cb7443302cf5c28a2891e2832af33c0de5511cb8d94e28e669872 -2024-01-16T16:01:17Z #6 3.276 Stored in directory: /tmp/pip-ephem-wheel-cache-vjp8p85a/wheels/f1/ec/5c/12e566b7240af2369781dd85cc1cdff5517b52ed8135182cc9 -2024-01-16T16:01:17Z #6 3.280 Successfully built threddsclient -2024-01-16T16:01:23Z #6 9.681 Installing collected packages: threddsclient -2024-01-16T16:01:23Z #6 9.681 Attempting uninstall: threddsclient -2024-01-16T16:01:23Z #6 9.687 Found existing installation: threddsclient 0.4.2 -2024-01-16T16:01:23Z #6 9.692 Uninstalling threddsclient-0.4.2: -2024-01-16T16:01:23Z #6 9.701 Successfully uninstalled threddsclient-0.4.2 -2024-01-16T16:01:24Z #6 9.855 Successfully installed threddsclient-0.4.4 -2024-01-16T16:01:24Z #6 9.857 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -2024-01-16T16:01:26Z #6 DONE 12.6s -2024-01-16T16:01:26Z -2024-01-16T16:01:26Z #7 exporting to image -2024-01-16T16:01:26Z #7 exporting layers 0.0s done -2024-01-16T16:01:26Z #7 writing image sha256:d55ce59d11bf9929b18fcf7ef902f4cc624f97d9fc9b77261385d938dddd47f2 done -2024-01-16T16:01:26Z #7 naming to docker.io/pavics/workflow-tests:py39-230601-1-update240116 done -2024-01-16T16:01:26Z #7 DONE 0.1s -2024-01-16T16:01:26Z Pushing index.docker.io/pavics/workflow-tests:py39-230601-1-update240116... -2024-01-16T16:01:28Z Done! -2024-01-16T16:01:28Z Build finished +2023-11-07T14:31:48Z Building in Docker Cloud's infrastructure... +2023-11-07T14:31:48Z Cloning into '.'... +2023-11-07T14:31:49Z Warning: Permanently added the RSA host key for IP address '140.82.113.4' to the list of known hosts. +2023-11-07T14:31:50Z Switched to a new branch 'docker-py310-231107' +2023-11-07T14:31:50Z KernelVersion: 5.4.0-1068-aws +2023-11-07T14:31:50Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2023-11-07T14:31:50Z Arch: amd64 +2023-11-07T14:31:50Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2023-11-07T14:31:50Z ApiVersion: 1.41 +2023-11-07T14:31:50Z Platform: {u'Name': u'Docker Engine - Community'} +2023-11-07T14:31:50Z Version: 20.10.15 +2023-11-07T14:31:50Z MinAPIVersion: 1.12 +2023-11-07T14:31:50Z GitCommit: 4433bf6 +2023-11-07T14:31:50Z Os: linux +2023-11-07T14:31:50Z GoVersion: go1.17.9 +2023-11-07T14:31:50Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-231107... +2023-11-07T14:31:57Z #1 [internal] load build definition from Dockerfile +2023-11-07T14:31:57Z #1 transferring dockerfile: 6.98kB done +2023-11-07T14:31:57Z #1 DONE 0.1s +2023-11-07T14:31:57Z +2023-11-07T14:31:57Z #2 [internal] load .dockerignore +2023-11-07T14:31:57Z #2 transferring context: 2B done +2023-11-07T14:31:57Z #2 DONE 0.0s +2023-11-07T14:31:57Z +2023-11-07T14:31:57Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2023-11-07T14:31:57Z #3 ... +2023-11-07T14:31:57Z +2023-11-07T14:31:57Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2023-11-07T14:31:57Z #4 DONE 0.0s +2023-11-07T14:31:57Z +2023-11-07T14:31:57Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2023-11-07T14:31:57Z #3 DONE 0.7s +2023-11-07T14:31:57Z +2023-11-07T14:31:57Z #5 [internal] load build context +2023-11-07T14:31:57Z #5 transferring context: 8.95kB done +2023-11-07T14:31:57Z #5 DONE 0.0s +2023-11-07T14:31:57Z +2023-11-07T14:31:57Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:db9f536d96d49fe21b5f4ac3252781bb0d2a3b58dab2d8e44343b85014366f00 +2023-11-07T14:31:57Z #6 resolve docker.io/continuumio/miniconda3@sha256:db9f536d96d49fe21b5f4ac3252781bb0d2a3b58dab2d8e44343b85014366f00 done +2023-11-07T14:31:57Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 0B / 114.31MB 0.1s +2023-11-07T14:31:57Z #6 sha256:db9f536d96d49fe21b5f4ac3252781bb0d2a3b58dab2d8e44343b85014366f00 3.11kB / 3.11kB done +2023-11-07T14:31:57Z #6 sha256:a89cd00402729eb4af1efb8424aec26f8ffe04d8f3250b1485f1814bd640d357 869B / 869B done +2023-11-07T14:31:57Z #6 sha256:6fbaadd54391b461351b02c0ddaf2bf284a2dcc9817f5685e07b2602e30f2b5c 4.61kB / 4.61kB done +2023-11-07T14:31:57Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 2.10MB / 31.42MB 0.1s +2023-11-07T14:31:57Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 0B / 50.08MB 0.1s +2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 8.24MB / 31.42MB 0.2s +2023-11-07T14:31:58Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 9.06MB / 114.31MB 0.4s +2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 16.78MB / 31.42MB 0.4s +2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 5.24MB / 50.08MB 0.4s +2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 19.92MB / 31.42MB 0.5s +2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 8.39MB / 50.08MB 0.5s +2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 22.02MB / 31.42MB 0.6s +2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 11.53MB / 50.08MB 0.6s +2023-11-07T14:31:58Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 20.97MB / 114.31MB 0.9s +2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 30.41MB / 31.42MB 0.9s +2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 27.26MB / 50.08MB 0.9s +2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 30.41MB / 50.08MB 1.0s +2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 29.36MB / 114.31MB 1.1s +2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 35.37MB / 50.08MB 1.1s +2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 37.75MB / 114.31MB 1.3s +2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 42.99MB / 50.08MB 1.3s +2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 46.14MB / 50.08MB 1.4s +2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 47.89MB / 114.31MB 1.5s +2023-11-07T14:31:59Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 31.42MB / 31.42MB 1.4s done +2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 50.08MB / 50.08MB 1.5s +2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 55.57MB / 114.31MB 1.8s +2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 50.08MB / 50.08MB 1.7s done +2023-11-07T14:31:59Z #6 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b +2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 61.87MB / 114.31MB 2.1s +2023-11-07T14:32:00Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 69.21MB / 114.31MB 2.6s +2023-11-07T14:32:00Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 76.55MB / 114.31MB 2.8s +2023-11-07T14:32:00Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 82.84MB / 114.31MB 3.1s +2023-11-07T14:32:01Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 90.18MB / 114.31MB 3.5s +2023-11-07T14:32:01Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 99.61MB / 114.31MB 3.9s +2023-11-07T14:32:02Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 112.20MB / 114.31MB 4.4s +2023-11-07T14:32:03Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 114.31MB / 114.31MB 5.4s done +2023-11-07T14:32:04Z #6 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 5.1s +2023-11-07T14:32:05Z #6 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 5.4s done +2023-11-07T14:32:05Z #6 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f +2023-11-07T14:32:10Z #6 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 5.1s +2023-11-07T14:32:12Z #6 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 6.5s done +2023-11-07T14:32:12Z #6 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 +2023-11-07T14:32:17Z #6 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 5.0s +2023-11-07T14:32:22Z #6 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 10.1s +2023-11-07T14:32:25Z #6 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 13.2s done +2023-11-07T14:32:26Z #6 DONE 28.2s +2023-11-07T14:32:26Z +2023-11-07T14:32:26Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2023-11-07T14:32:34Z #7 0.989 Collecting package metadata (current_repodata.json): ...working... done +2023-11-07T14:32:38Z #7 7.938 Solving environment: ...working... done +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 ## Package Plan ## +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 environment location: /opt/conda +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 added / updated specs: +2023-11-07T14:32:38Z #7 12.44 - conda +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 The following packages will be downloaded: +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 package | build +2023-11-07T14:32:38Z #7 12.44 ---------------------------|----------------- +2023-11-07T14:32:38Z #7 12.44 archspec-0.2.1 | pyhd3eb1b0_0 39 KB +2023-11-07T14:32:38Z #7 12.44 brotli-python-1.0.9 | py311h6a678d5_7 318 KB +2023-11-07T14:32:38Z #7 12.44 conda-23.10.0 | py311h06a4308_0 1.3 MB +2023-11-07T14:32:38Z #7 12.44 conda-libmamba-solver-23.11.0| py311h06a4308_0 102 KB +2023-11-07T14:32:38Z #7 12.44 libcurl-8.4.0 | h251f7ec_0 411 KB +2023-11-07T14:32:38Z #7 12.44 libmamba-1.5.3 | haf1ee3a_0 1.9 MB +2023-11-07T14:32:38Z #7 12.44 libmambapy-1.5.3 | py311h2dafd23_0 314 KB +2023-11-07T14:32:38Z #7 12.44 libnghttp2-1.57.0 | h2d74bed_0 674 KB +2023-11-07T14:32:38Z #7 12.44 openssl-3.0.12 | h7f8727e_0 5.2 MB +2023-11-07T14:32:38Z #7 12.44 urllib3-1.26.18 | py311h06a4308_0 251 KB +2023-11-07T14:32:38Z #7 12.44 yaml-cpp-0.8.0 | h6a678d5_0 607 KB +2023-11-07T14:32:38Z #7 12.44 ------------------------------------------------------------ +2023-11-07T14:32:38Z #7 12.44 Total: 11.0 MB +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 The following NEW packages will be INSTALLED: +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 archspec pkgs/main/noarch::archspec-0.2.1-pyhd3eb1b0_0 +2023-11-07T14:32:38Z #7 12.44 brotli-python pkgs/main/linux-64::brotli-python-1.0.9-py311h6a678d5_7 +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 The following packages will be REMOVED: +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 brotlipy-0.7.0-py311h5eee18b_1002 +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 The following packages will be UPDATED: +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 conda 23.9.0-py311h06a4308_0 --> 23.10.0-py311h06a4308_0 +2023-11-07T14:32:38Z #7 12.44 conda-libmamba-so~ 23.9.1-py311h06a4308_0 --> 23.11.0-py311h06a4308_0 +2023-11-07T14:32:38Z #7 12.44 libcurl 8.2.1-h251f7ec_0 --> 8.4.0-h251f7ec_0 +2023-11-07T14:32:38Z #7 12.44 libmamba 1.5.1-haf1ee3a_0 --> 1.5.3-haf1ee3a_0 +2023-11-07T14:32:38Z #7 12.44 libmambapy 1.5.1-py311h2dafd23_0 --> 1.5.3-py311h2dafd23_0 +2023-11-07T14:32:38Z #7 12.44 libnghttp2 1.52.0-h2d74bed_1 --> 1.57.0-h2d74bed_0 +2023-11-07T14:32:38Z #7 12.44 openssl 3.0.11-h7f8727e_2 --> 3.0.12-h7f8727e_0 +2023-11-07T14:32:38Z #7 12.44 urllib3 1.26.16-py311h06a4308_0 --> 1.26.18-py311h06a4308_0 +2023-11-07T14:32:38Z #7 12.44 yaml-cpp 0.7.0-h295c915_1 --> 0.8.0-h6a678d5_0 +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 +2023-11-07T14:32:38Z #7 12.44 Proceed ([y]/n)? +2023-11-07T14:32:39Z #7 13.62 +2023-11-07T14:32:39Z #7 13.62 Downloading and Extracting Packages: ...working... done +2023-11-07T14:32:39Z #7 13.62 Preparing transaction: ...working... done +2023-11-07T14:32:40Z #7 13.69 Verifying transaction: ...working... done +2023-11-07T14:32:50Z #7 14.19 Executing transaction: ...working... done +2023-11-07T14:32:52Z #7 26.11 Channels: +2023-11-07T14:32:52Z #7 26.11 - conda-forge +2023-11-07T14:32:52Z #7 26.11 - defaults +2023-11-07T14:32:52Z #7 26.11 Platform: linux-64 +2023-11-07T14:33:52Z #7 26.11 Collecting package metadata (repodata.json): ...working... done +2023-11-07T14:33:54Z #7 86.01 Solving environment: ...working... done +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 ## Package Plan ## +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 environment location: /opt/conda +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 added / updated specs: +2023-11-07T14:33:54Z #7 88.34 - mamba +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 The following packages will be downloaded: +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 package | build +2023-11-07T14:33:54Z #7 88.34 ---------------------------|----------------- +2023-11-07T14:33:54Z #7 88.34 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 certifi-2023.7.22 | pyhd8ed1ab_0 150 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 conda-23.10.0 | py311h38be061_0 1.2 MB conda-forge +2023-11-07T14:33:54Z #7 88.34 fmt-10.1.1 | h00ab1b0_0 188 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2023-11-07T14:33:54Z #7 88.34 libarchive-3.7.2 | h039dbb9_0 846 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 libgcc-ng-13.2.0 | h807b86a_2 753 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 libgomp-13.2.0 | h807b86a_2 411 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 libiconv-1.17 | h166bdaf_0 1.4 MB conda-forge +2023-11-07T14:33:54Z #7 88.34 libmamba-1.5.3 | had39da4_1 1.6 MB conda-forge +2023-11-07T14:33:54Z #7 88.34 libmambapy-1.5.3 | py311hf2555c7_1 297 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 libstdcxx-ng-13.2.0 | h7e041cc_2 3.7 MB conda-forge +2023-11-07T14:33:54Z #7 88.34 libxml2-2.11.5 | h232c23b_1 689 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 lzo-2.10 | h516909a_1000 314 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 mamba-1.5.3 | py311h3072747_1 64 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 openssl-3.1.4 | hd590300_0 2.5 MB conda-forge +2023-11-07T14:33:54Z #7 88.34 python_abi-3.11 | 2_cp311 5 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2023-11-07T14:33:54Z #7 88.34 ------------------------------------------------------------ +2023-11-07T14:33:54Z #7 88.34 Total: 25.7 MB +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 The following NEW packages will be INSTALLED: +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 libiconv conda-forge/linux-64::libiconv-1.17-h166bdaf_0 +2023-11-07T14:33:54Z #7 88.34 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2023-11-07T14:33:54Z #7 88.34 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 +2023-11-07T14:33:54Z #7 88.34 mamba conda-forge/linux-64::mamba-1.5.3-py311h3072747_1 +2023-11-07T14:33:54Z #7 88.34 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 The following packages will be UPDATED: +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.1.1-h00ab1b0_0 +2023-11-07T14:33:54Z #7 88.34 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2023-11-07T14:33:54Z #7 88.34 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h039dbb9_0 +2023-11-07T14:33:54Z #7 88.34 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_2 +2023-11-07T14:33:54Z #7 88.34 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_2 +2023-11-07T14:33:54Z #7 88.34 libmamba pkgs/main::libmamba-1.5.3-haf1ee3a_0 --> conda-forge::libmamba-1.5.3-had39da4_1 +2023-11-07T14:33:54Z #7 88.34 libmambapy pkgs/main::libmambapy-1.5.3-py311h2da~ --> conda-forge::libmambapy-1.5.3-py311hf2555c7_1 +2023-11-07T14:33:54Z #7 88.34 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_2 +2023-11-07T14:33:54Z #7 88.34 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.11.5-h232c23b_1 +2023-11-07T14:33:54Z #7 88.34 openssl pkgs/main::openssl-3.0.12-h7f8727e_0 --> conda-forge::openssl-3.1.4-hd590300_0 +2023-11-07T14:33:54Z #7 88.34 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 The following packages will be SUPERSEDED by a higher-priority channel: +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2023-11-07T14:33:54Z #7 88.34 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2023-11-07T14:33:54Z #7 88.34 certifi pkgs/main/linux-64::certifi-2023.7.22~ --> conda-forge/noarch::certifi-2023.7.22-pyhd8ed1ab_0 +2023-11-07T14:33:54Z #7 88.34 conda pkgs/main::conda-23.10.0-py311h06a430~ --> conda-forge::conda-23.10.0-py311h38be061_0 +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 +2023-11-07T14:33:54Z #7 88.34 Proceed ([y]/n)? +2023-11-07T14:33:57Z #7 91.07 +2023-11-07T14:33:57Z #7 91.07 Downloading and Extracting Packages: ...working... done +2023-11-07T14:33:57Z #7 91.07 Preparing transaction: ...working... done +2023-11-07T14:33:57Z #7 91.16 Verifying transaction: ...working... done +2023-11-07T14:34:06Z #7 91.61 Executing transaction: ...working... done +2023-11-07T14:34:07Z #7 101.6 Will remove 31 (36.6 MB) tarball(s). +2023-11-07T14:34:07Z #7 101.6 Will remove 1 index cache(s). +2023-11-07T14:34:07Z #7 101.6 Will remove 7 (33.3 MB) package(s). +2023-11-07T14:34:07Z #7 101.6 There are no tempfile(s) to remove. +2023-11-07T14:34:07Z #7 101.6 There are no logfile(s) to remove. +2023-11-07T14:34:09Z #7 103.1 bin/micromamba +2023-11-07T14:34:11Z #7 DONE 105.8s +2023-11-07T14:34:11Z +2023-11-07T14:34:11Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2023-11-07T14:34:12Z #8 0.555 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2023-11-07T14:34:12Z #8 0.574 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2023-11-07T14:34:12Z #8 0.574 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2023-11-07T14:34:12Z #8 0.734 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8062 kB] +2023-11-07T14:34:13Z #8 1.425 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [258 kB] +2023-11-07T14:34:14Z #8 2.110 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [17.4 kB] +2023-11-07T14:34:15Z #8 3.277 Fetched 8546 kB in 3s (3130 kB/s) +2023-11-07T14:34:16Z #8 3.277 Reading package lists... +2023-11-07T14:34:17Z #8 4.359 Reading package lists... +2023-11-07T14:34:17Z #8 5.511 Building dependency tree... +2023-11-07T14:34:17Z #8 5.775 Reading state information... +2023-11-07T14:34:18Z #8 6.146 git is already the newest version (1:2.30.2-1+deb11u2). +2023-11-07T14:34:18Z #8 6.146 mercurial is already the newest version (5.6.1-4). +2023-11-07T14:34:18Z #8 6.146 The following additional packages will be installed: +2023-11-07T14:34:18Z #8 6.147 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2023-11-07T14:34:18Z #8 6.147 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2023-11-07T14:34:18Z #8 6.148 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2023-11-07T14:34:18Z #8 6.148 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2023-11-07T14:34:18Z #8 6.149 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2023-11-07T14:34:18Z #8 6.149 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2023-11-07T14:34:18Z #8 6.157 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2023-11-07T14:34:18Z #8 6.157 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2023-11-07T14:34:18Z #8 6.157 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2023-11-07T14:34:18Z #8 6.157 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2023-11-07T14:34:18Z #8 6.157 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2023-11-07T14:34:18Z #8 6.157 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2023-11-07T14:34:18Z #8 6.157 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2023-11-07T14:34:18Z #8 6.157 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2023-11-07T14:34:18Z #8 6.157 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2023-11-07T14:34:18Z #8 6.157 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2023-11-07T14:34:18Z #8 6.157 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2023-11-07T14:34:18Z #8 6.157 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2023-11-07T14:34:18Z #8 6.157 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2023-11-07T14:34:18Z #8 6.157 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2023-11-07T14:34:18Z #8 6.157 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2023-11-07T14:34:18Z #8 6.157 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2023-11-07T14:34:18Z #8 6.157 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2023-11-07T14:34:18Z #8 6.157 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2023-11-07T14:34:18Z #8 6.157 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2023-11-07T14:34:18Z #8 6.157 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2023-11-07T14:34:18Z #8 6.157 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2023-11-07T14:34:18Z #8 6.157 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2023-11-07T14:34:18Z #8 6.157 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2023-11-07T14:34:18Z #8 6.157 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2023-11-07T14:34:18Z #8 6.157 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2023-11-07T14:34:18Z #8 6.157 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2023-11-07T14:34:18Z #8 6.157 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2023-11-07T14:34:18Z #8 6.157 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2023-11-07T14:34:18Z #8 6.157 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2023-11-07T14:34:18Z #8 6.157 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2023-11-07T14:34:18Z #8 6.157 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2023-11-07T14:34:18Z #8 6.157 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv +2023-11-07T14:34:18Z #8 6.157 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data +2023-11-07T14:34:18Z #8 6.157 Suggested packages: +2023-11-07T14:34:18Z #8 6.157 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2023-11-07T14:34:18Z #8 6.157 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2023-11-07T14:34:18Z #8 6.157 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2023-11-07T14:34:18Z #8 6.157 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs +2023-11-07T14:34:18Z #8 6.157 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser +2023-11-07T14:34:18Z #8 6.157 opencl-icd ed diffutils-doc systemd-container policykit-1 zip +2023-11-07T14:34:18Z #8 6.157 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2023-11-07T14:34:18Z #8 6.157 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2023-11-07T14:34:18Z #8 6.157 nvidia-legacy-340xx-vdpau-driver mesa-utils +2023-11-07T14:34:19Z #8 8.006 The following NEW packages will be installed: +2023-11-07T14:34:19Z #8 8.008 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2023-11-07T14:34:19Z #8 8.009 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2023-11-07T14:34:20Z #8 8.009 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2023-11-07T14:34:20Z #8 8.017 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2023-11-07T14:34:20Z #8 8.017 glib-networking glib-networking-common glib-networking-services +2023-11-07T14:34:20Z #8 8.017 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2023-11-07T14:34:20Z #8 8.017 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2023-11-07T14:34:20Z #8 8.017 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2023-11-07T14:34:20Z #8 8.017 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2023-11-07T14:34:20Z #8 8.017 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2023-11-07T14:34:20Z #8 8.017 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2023-11-07T14:34:20Z #8 8.017 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2023-11-07T14:34:20Z #8 8.017 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2023-11-07T14:34:20Z #8 8.017 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2023-11-07T14:34:20Z #8 8.017 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2023-11-07T14:34:20Z #8 8.017 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2023-11-07T14:34:20Z #8 8.017 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2023-11-07T14:34:20Z #8 8.017 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2023-11-07T14:34:20Z #8 8.017 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2023-11-07T14:34:20Z #8 8.017 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2023-11-07T14:34:20Z #8 8.017 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2023-11-07T14:34:20Z #8 8.017 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2023-11-07T14:34:20Z #8 8.017 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2023-11-07T14:34:20Z #8 8.017 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2023-11-07T14:34:20Z #8 8.017 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2023-11-07T14:34:20Z #8 8.017 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2023-11-07T14:34:20Z #8 8.017 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2023-11-07T14:34:20Z #8 8.017 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2023-11-07T14:34:20Z #8 8.017 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2023-11-07T14:34:20Z #8 8.017 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2023-11-07T14:34:20Z #8 8.017 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2023-11-07T14:34:20Z #8 8.017 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2023-11-07T14:34:20Z #8 8.017 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2023-11-07T14:34:20Z #8 8.017 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2023-11-07T14:34:20Z #8 8.017 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2023-11-07T14:34:20Z #8 8.017 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2023-11-07T14:34:20Z #8 8.017 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2023-11-07T14:34:20Z #8 8.017 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2023-11-07T14:34:20Z #8 8.017 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2023-11-07T14:34:20Z #8 8.017 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2023-11-07T14:34:20Z #8 8.017 x11-utils xkb-data +2023-11-07T14:34:20Z #8 8.057 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. +2023-11-07T14:34:20Z #8 8.057 Need to get 235 MB of archives. +2023-11-07T14:34:20Z #8 8.057 After this operation, 890 MB of additional disk space will be used. +2023-11-07T14:34:20Z #8 8.057 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2023-11-07T14:34:20Z #8 8.063 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2023-11-07T14:34:20Z #8 8.066 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2023-11-07T14:34:20Z #8 8.069 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2023-11-07T14:34:20Z #8 8.074 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2023-11-07T14:34:20Z #8 8.077 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2023-11-07T14:34:20Z #8 8.079 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2023-11-07T14:34:20Z #8 8.085 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2023-11-07T14:34:20Z #8 8.087 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2023-11-07T14:34:20Z #8 8.090 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2023-11-07T14:34:20Z #8 8.256 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2023-11-07T14:34:20Z #8 8.258 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2023-11-07T14:34:20Z #8 8.265 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2023-11-07T14:34:20Z #8 8.271 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2023-11-07T14:34:20Z #8 8.308 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2023-11-07T14:34:20Z #8 8.312 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2023-11-07T14:34:20Z #8 8.337 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2023-11-07T14:34:20Z #8 8.359 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2023-11-07T14:34:20Z #8 8.361 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2023-11-07T14:34:20Z #8 8.366 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2023-11-07T14:34:20Z #8 8.676 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2023-11-07T14:34:20Z #8 8.699 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2023-11-07T14:34:20Z #8 8.714 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2023-11-07T14:34:20Z #8 8.717 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2023-11-07T14:34:20Z #8 8.750 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2023-11-07T14:34:20Z #8 8.752 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2023-11-07T14:34:20Z #8 8.755 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2023-11-07T14:34:20Z #8 8.759 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u4 [290 kB] +2023-11-07T14:34:20Z #8 8.766 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2023-11-07T14:34:20Z #8 8.770 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2023-11-07T14:34:20Z #8 8.781 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2023-11-07T14:34:21Z #8 9.164 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2023-11-07T14:34:21Z #8 9.166 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2023-11-07T14:34:21Z #8 9.168 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2023-11-07T14:34:21Z #8 9.174 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2023-11-07T14:34:21Z #8 9.178 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2023-11-07T14:34:21Z #8 9.181 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2023-11-07T14:34:21Z #8 9.183 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2023-11-07T14:34:21Z #8 9.185 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2023-11-07T14:34:21Z #8 9.188 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2023-11-07T14:34:21Z #8 9.244 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2023-11-07T14:34:21Z #8 9.254 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2023-11-07T14:34:21Z #8 9.321 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2023-11-07T14:34:21Z #8 9.328 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2023-11-07T14:34:21Z #8 9.363 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2023-11-07T14:34:21Z #8 9.367 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2023-11-07T14:34:21Z #8 9.376 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2023-11-07T14:34:21Z #8 9.412 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2023-11-07T14:34:21Z #8 9.414 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2023-11-07T14:34:21Z #8 9.676 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2023-11-07T14:34:21Z #8 9.678 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2023-11-07T14:34:21Z #8 9.683 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2023-11-07T14:34:21Z #8 9.685 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2023-11-07T14:34:21Z #8 9.687 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2023-11-07T14:34:21Z #8 9.689 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2023-11-07T14:34:21Z #8 9.692 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2023-11-07T14:34:21Z #8 9.695 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2023-11-07T14:34:21Z #8 9.703 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2023-11-07T14:34:21Z #8 9.721 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2023-11-07T14:34:21Z #8 9.726 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2023-11-07T14:34:21Z #8 9.737 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2023-11-07T14:34:21Z #8 9.748 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2023-11-07T14:34:21Z #8 9.752 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2023-11-07T14:34:21Z #8 9.756 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2023-11-07T14:34:21Z #8 9.766 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2023-11-07T14:34:21Z #8 9.770 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2023-11-07T14:34:21Z #8 9.775 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2023-11-07T14:34:21Z #8 9.782 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2023-11-07T14:34:21Z #8 9.785 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2023-11-07T14:34:21Z #8 9.789 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2023-11-07T14:34:21Z #8 9.793 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2023-11-07T14:34:21Z #8 9.796 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2023-11-07T14:34:21Z #8 9.799 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2023-11-07T14:34:21Z #8 9.801 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2023-11-07T14:34:21Z #8 9.807 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2023-11-07T14:34:21Z #8 9.811 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2023-11-07T14:34:21Z #8 9.814 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2023-11-07T14:34:21Z #8 9.816 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2023-11-07T14:34:21Z #8 9.844 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2023-11-07T14:34:21Z #8 9.846 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2023-11-07T14:34:21Z #8 9.847 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2023-11-07T14:34:21Z #8 9.853 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2023-11-07T14:34:21Z #8 9.855 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2023-11-07T14:34:21Z #8 9.857 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2023-11-07T14:34:21Z #8 9.859 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2023-11-07T14:34:21Z #8 9.862 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2023-11-07T14:34:21Z #8 9.864 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2023-11-07T14:34:21Z #8 9.866 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2023-11-07T14:34:21Z #8 9.868 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2023-11-07T14:34:21Z #8 9.870 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2023-11-07T14:34:21Z #8 9.871 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2023-11-07T14:34:21Z #8 9.882 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2023-11-07T14:34:21Z #8 9.884 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2023-11-07T14:34:21Z #8 9.888 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2023-11-07T14:34:21Z #8 9.890 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2023-11-07T14:34:21Z #8 9.891 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2023-11-07T14:34:21Z #8 9.892 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2023-11-07T14:34:21Z #8 9.909 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2023-11-07T14:34:21Z #8 9.911 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2023-11-07T14:34:21Z #8 9.914 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2023-11-07T14:34:21Z #8 9.915 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2023-11-07T14:34:21Z #8 9.917 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2023-11-07T14:34:21Z #8 9.941 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2023-11-07T14:34:21Z #8 9.943 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2023-11-07T14:34:21Z #8 9.951 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2023-11-07T14:34:21Z #8 9.967 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2023-11-07T14:34:21Z #8 9.969 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2023-11-07T14:34:21Z #8 10.05 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2023-11-07T14:34:22Z #8 10.12 Get:109 http://deb.debian.org/debian-security bullseye-security/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2023-11-07T14:34:22Z #8 10.13 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.4.0esr-1~deb11u1 [63.6 MB] +2023-11-07T14:34:23Z #8 11.79 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2023-11-07T14:34:23Z #8 11.79 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2023-11-07T14:34:23Z #8 11.80 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2023-11-07T14:34:23Z #8 11.80 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2023-11-07T14:34:23Z #8 11.80 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2023-11-07T14:34:23Z #8 11.80 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2023-11-07T14:34:23Z #8 11.84 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2023-11-07T14:34:23Z #8 11.88 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2023-11-07T14:34:23Z #8 11.91 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2023-11-07T14:34:23Z #8 11.92 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2023-11-07T14:34:23Z #8 11.92 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2023-11-07T14:34:23Z #8 11.97 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2023-11-07T14:34:24Z #8 12.47 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2023-11-07T14:34:24Z #8 12.47 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2023-11-07T14:34:24Z #8 12.47 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2023-11-07T14:34:24Z #8 12.47 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2023-11-07T14:34:24Z #8 12.47 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2023-11-07T14:34:24Z #8 12.48 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2023-11-07T14:34:24Z #8 12.48 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2023-11-07T14:34:24Z #8 12.48 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2023-11-07T14:34:24Z #8 12.49 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2023-11-07T14:34:24Z #8 12.52 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2023-11-07T14:34:24Z #8 12.55 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2023-11-07T14:34:24Z #8 12.65 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2023-11-07T14:34:24Z #8 12.65 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2023-11-07T14:34:24Z #8 12.65 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2023-11-07T14:34:24Z #8 12.65 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2023-11-07T14:34:24Z #8 12.66 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2023-11-07T14:34:24Z #8 12.66 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2023-11-07T14:34:24Z #8 12.88 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2023-11-07T14:34:24Z #8 12.88 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2023-11-07T14:34:24Z #8 12.89 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2023-11-07T14:34:24Z #8 12.89 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2023-11-07T14:34:24Z #8 12.90 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2023-11-07T14:34:24Z #8 12.90 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2023-11-07T14:34:24Z #8 12.94 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2023-11-07T14:34:24Z #8 12.94 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2023-11-07T14:34:24Z #8 12.95 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2023-11-07T14:34:24Z #8 12.95 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2023-11-07T14:34:24Z #8 12.96 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2023-11-07T14:34:24Z #8 12.96 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2023-11-07T14:34:24Z #8 12.96 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2023-11-07T14:34:24Z #8 12.97 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2023-11-07T14:34:24Z #8 12.97 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2023-11-07T14:34:24Z #8 12.97 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2023-11-07T14:34:24Z #8 12.97 Get:156 http://deb.debian.org/debian-security bullseye-security/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2023-11-07T14:34:24Z #8 12.99 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2023-11-07T14:34:24Z #8 12.99 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2023-11-07T14:34:24Z #8 12.99 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2023-11-07T14:34:24Z #8 13.00 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2023-11-07T14:34:24Z #8 13.00 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2023-11-07T14:34:24Z #8 13.03 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2023-11-07T14:34:24Z #8 13.03 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2023-11-07T14:34:24Z #8 13.03 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2023-11-07T14:34:24Z #8 13.04 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2023-11-07T14:34:25Z #8 13.18 Get:166 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-dev-bin amd64 2.31-13+deb11u7 [276 kB] +2023-11-07T14:34:25Z #8 13.18 Get:167 http://deb.debian.org/debian-security bullseye-security/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2023-11-07T14:34:25Z #8 13.18 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2023-11-07T14:34:25Z #8 13.19 Get:169 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-devtools amd64 2.31-13+deb11u7 [246 kB] +2023-11-07T14:34:25Z #8 13.19 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.197-1 [1668 kB] +2023-11-07T14:34:25Z #8 13.22 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2023-11-07T14:34:25Z #8 13.23 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2023-11-07T14:34:25Z #8 13.23 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2023-11-07T14:34:25Z #8 13.24 Get:174 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6-dev amd64 2.31-13+deb11u7 [2361 kB] +2023-11-07T14:34:25Z #8 13.27 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2023-11-07T14:34:25Z #8 13.27 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2023-11-07T14:34:25Z #8 13.28 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2023-11-07T14:34:25Z #8 13.28 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2023-11-07T14:34:25Z #8 13.29 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2023-11-07T14:34:25Z #8 13.29 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2023-11-07T14:34:25Z #8 13.30 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2023-11-07T14:34:25Z #8 13.30 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2023-11-07T14:34:25Z #8 13.50 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2023-11-07T14:34:26Z #8 14.04 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2023-11-07T14:34:26Z #8 14.04 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2023-11-07T14:34:26Z #8 14.04 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2023-11-07T14:34:26Z #8 14.04 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2023-11-07T14:34:26Z #8 14.27 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2023-11-07T14:34:26Z #8 14.29 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2023-11-07T14:34:26Z #8 14.29 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2023-11-07T14:34:26Z #8 14.29 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2023-11-07T14:34:26Z #8 14.29 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2023-11-07T14:34:26Z #8 14.29 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2023-11-07T14:34:26Z #8 14.30 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2023-11-07T14:34:26Z #8 14.30 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2023-11-07T14:34:26Z #8 14.30 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2023-11-07T14:34:26Z #8 14.30 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2023-11-07T14:34:26Z #8 14.40 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2023-11-07T14:34:26Z #8 14.40 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2023-11-07T14:34:26Z #8 14.40 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2023-11-07T14:34:26Z #8 14.40 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2023-11-07T14:34:26Z #8 14.40 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2023-11-07T14:34:26Z #8 14.40 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2023-11-07T14:34:26Z #8 14.40 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2023-11-07T14:34:26Z #8 14.40 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2023-11-07T14:34:26Z #8 14.40 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2023-11-07T14:34:26Z #8 14.40 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2023-11-07T14:34:26Z #8 14.40 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2023-11-07T14:34:26Z #8 14.40 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2023-11-07T14:34:26Z #8 14.40 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2023-11-07T14:34:26Z #8 14.40 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2023-11-07T14:34:26Z #8 14.40 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2023-11-07T14:34:26Z #8 14.40 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2023-11-07T14:34:26Z #8 14.40 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2023-11-07T14:34:26Z #8 14.42 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2023-11-07T14:34:26Z #8 14.48 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2023-11-07T14:34:26Z #8 14.57 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2023-11-07T14:34:26Z #8 14.57 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2023-11-07T14:34:26Z #8 14.58 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2023-11-07T14:34:26Z #8 14.58 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2023-11-07T14:34:26Z #8 14.58 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2023-11-07T14:34:26Z #8 14.88 debconf: delaying package configuration, since apt-utils is not installed +2023-11-07T14:34:26Z #8 14.93 Fetched 235 MB in 7s (36.0 MB/s) +2023-11-07T14:34:26Z #8 14.97 Selecting previously unselected package libapparmor1:amd64. +2023-11-07T14:34:26Z #8 14.97 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12444 files and directories currently installed.) +2023-11-07T14:34:26Z #8 14.99 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2023-11-07T14:34:26Z #8 15.00 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2023-11-07T14:34:26Z #8 15.05 Selecting previously unselected package libcap2:amd64. +2023-11-07T14:34:26Z #8 15.05 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2023-11-07T14:34:26Z #8 15.06 Unpacking libcap2:amd64 (1:2.44-1) ... +2023-11-07T14:34:26Z #8 15.11 Selecting previously unselected package libargon2-1:amd64. +2023-11-07T14:34:27Z #8 15.11 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2023-11-07T14:34:27Z #8 15.12 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2023-11-07T14:34:27Z #8 15.16 Selecting previously unselected package dmsetup. +2023-11-07T14:34:27Z #8 15.16 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2023-11-07T14:34:27Z #8 15.17 Unpacking dmsetup (2:1.02.175-2.1) ... +2023-11-07T14:34:27Z #8 15.23 Selecting previously unselected package libdevmapper1.02.1:amd64. +2023-11-07T14:34:27Z #8 15.23 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2023-11-07T14:34:27Z #8 15.24 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2023-11-07T14:34:27Z #8 15.29 Selecting previously unselected package libjson-c5:amd64. +2023-11-07T14:34:27Z #8 15.30 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2023-11-07T14:34:27Z #8 15.30 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2023-11-07T14:34:27Z #8 15.35 Selecting previously unselected package libcryptsetup12:amd64. +2023-11-07T14:34:27Z #8 15.36 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2023-11-07T14:34:27Z #8 15.36 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2023-11-07T14:34:27Z #8 15.45 Selecting previously unselected package libip4tc2:amd64. +2023-11-07T14:34:27Z #8 15.46 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2023-11-07T14:34:27Z #8 15.46 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2023-11-07T14:34:27Z #8 15.50 Selecting previously unselected package libkmod2:amd64. +2023-11-07T14:34:27Z #8 15.51 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2023-11-07T14:34:27Z #8 15.51 Unpacking libkmod2:amd64 (28-1) ... +2023-11-07T14:34:27Z #8 15.57 Selecting previously unselected package systemd. +2023-11-07T14:34:27Z #8 15.57 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2023-11-07T14:34:27Z #8 15.63 Unpacking systemd (247.3-7+deb11u4) ... +2023-11-07T14:34:28Z #8 16.70 Setting up libapparmor1:amd64 (2.13.6-10) ... +2023-11-07T14:34:28Z #8 16.71 Setting up libcap2:amd64 (1:2.44-1) ... +2023-11-07T14:34:28Z #8 16.73 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2023-11-07T14:34:28Z #8 16.75 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2023-11-07T14:34:28Z #8 16.76 Setting up libip4tc2:amd64 (1.8.7-1) ... +2023-11-07T14:34:28Z #8 16.78 Setting up libkmod2:amd64 (28-1) ... +2023-11-07T14:34:28Z #8 16.79 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2023-11-07T14:34:28Z #8 16.81 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2023-11-07T14:34:28Z #8 16.82 Setting up systemd (247.3-7+deb11u4) ... +2023-11-07T14:34:28Z #8 16.87 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2023-11-07T14:34:28Z #8 16.88 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2023-11-07T14:34:28Z #8 16.89 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2023-11-07T14:34:28Z #8 16.92 Initializing machine ID from KVM UUID. +2023-11-07T14:34:29Z #8 17.35 Setting up dmsetup (2:1.02.175-2.1) ... +2023-11-07T14:34:29Z #8 17.43 Selecting previously unselected package systemd-sysv. +2023-11-07T14:34:29Z #8 17.43 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13295 files and directories currently installed.) +2023-11-07T14:34:29Z #8 17.45 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2023-11-07T14:34:29Z #8 17.46 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2023-11-07T14:34:29Z #8 17.52 Selecting previously unselected package libdbus-1-3:amd64. +2023-11-07T14:34:29Z #8 17.52 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2023-11-07T14:34:29Z #8 17.52 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2023-11-07T14:34:29Z #8 17.60 Selecting previously unselected package dbus. +2023-11-07T14:34:29Z #8 17.60 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2023-11-07T14:34:29Z #8 17.62 Unpacking dbus (1.12.28-0+deb11u1) ... +2023-11-07T14:34:29Z #8 17.76 Selecting previously unselected package libnss-systemd:amd64. +2023-11-07T14:34:29Z #8 17.77 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2023-11-07T14:34:29Z #8 17.77 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2023-11-07T14:34:29Z #8 17.84 Selecting previously unselected package libpam-systemd:amd64. +2023-11-07T14:34:29Z #8 17.84 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2023-11-07T14:34:29Z #8 17.85 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2023-11-07T14:34:29Z #8 17.95 Selecting previously unselected package manpages. +2023-11-07T14:34:29Z #8 17.96 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2023-11-07T14:34:29Z #8 17.96 Unpacking manpages (5.10-1) ... +2023-11-07T14:34:30Z #8 18.16 Selecting previously unselected package systemd-timesyncd. +2023-11-07T14:34:30Z #8 18.16 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2023-11-07T14:34:30Z #8 18.17 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2023-11-07T14:34:30Z #8 18.23 Selecting previously unselected package hicolor-icon-theme. +2023-11-07T14:34:30Z #8 18.23 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2023-11-07T14:34:30Z #8 18.24 Unpacking hicolor-icon-theme (0.17-2) ... +2023-11-07T14:34:30Z #8 18.34 Selecting previously unselected package libgdk-pixbuf2.0-common. +2023-11-07T14:34:30Z #8 18.34 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2023-11-07T14:34:30Z #8 18.35 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2023-11-07T14:34:30Z #8 18.47 Selecting previously unselected package libicu67:amd64. +2023-11-07T14:34:30Z #8 18.47 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2023-11-07T14:34:30Z #8 18.48 Unpacking libicu67:amd64 (67.1-7) ... +2023-11-07T14:34:31Z #8 19.95 Selecting previously unselected package libxml2:amd64. +2023-11-07T14:34:31Z #8 19.95 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2023-11-07T14:34:31Z #8 19.96 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2023-11-07T14:34:32Z #8 20.15 Selecting previously unselected package shared-mime-info. +2023-11-07T14:34:32Z #8 20.15 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2023-11-07T14:34:32Z #8 20.15 Unpacking shared-mime-info (2.0-1) ... +2023-11-07T14:34:32Z #8 20.33 Selecting previously unselected package libjpeg62-turbo:amd64. +2023-11-07T14:34:32Z #8 20.33 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2023-11-07T14:34:32Z #8 20.33 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2023-11-07T14:34:32Z #8 20.40 Selecting previously unselected package libpng16-16:amd64. +2023-11-07T14:34:32Z #8 20.40 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2023-11-07T14:34:32Z #8 20.41 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2023-11-07T14:34:32Z #8 20.48 Selecting previously unselected package libdeflate0:amd64. +2023-11-07T14:34:32Z #8 20.48 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2023-11-07T14:34:32Z #8 20.49 Unpacking libdeflate0:amd64 (1.7-1) ... +2023-11-07T14:34:32Z #8 20.53 Selecting previously unselected package libjbig0:amd64. +2023-11-07T14:34:32Z #8 20.54 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2023-11-07T14:34:32Z #8 20.55 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2023-11-07T14:34:32Z #8 20.59 Selecting previously unselected package libwebp6:amd64. +2023-11-07T14:34:32Z #8 20.59 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2023-11-07T14:34:32Z #8 20.60 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2023-11-07T14:34:32Z #8 20.67 Selecting previously unselected package libtiff5:amd64. +2023-11-07T14:34:32Z #8 20.68 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u4_amd64.deb ... +2023-11-07T14:34:32Z #8 20.69 Unpacking libtiff5:amd64 (4.2.0-1+deb11u4) ... +2023-11-07T14:34:32Z #8 20.76 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2023-11-07T14:34:32Z #8 20.76 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2023-11-07T14:34:32Z #8 20.77 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2023-11-07T14:34:32Z #8 20.84 Selecting previously unselected package gtk-update-icon-cache. +2023-11-07T14:34:32Z #8 20.84 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2023-11-07T14:34:32Z #8 20.85 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2023-11-07T14:34:32Z #8 20.97 Selecting previously unselected package adwaita-icon-theme. +2023-11-07T14:34:32Z #8 20.97 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2023-11-07T14:34:32Z #8 20.98 Unpacking adwaita-icon-theme (3.38.0-1) ... +2023-11-07T14:34:35Z #8 23.40 Selecting previously unselected package alsa-topology-conf. +2023-11-07T14:34:35Z #8 23.40 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2023-11-07T14:34:35Z #8 23.41 Unpacking alsa-topology-conf (1.2.4-1) ... +2023-11-07T14:34:35Z #8 23.45 Selecting previously unselected package libasound2-data. +2023-11-07T14:34:35Z #8 23.46 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2023-11-07T14:34:35Z #8 23.46 Unpacking libasound2-data (1.2.4-1.1) ... +2023-11-07T14:34:35Z #8 23.53 Selecting previously unselected package libasound2:amd64. +2023-11-07T14:34:35Z #8 23.53 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2023-11-07T14:34:35Z #8 23.54 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2023-11-07T14:34:35Z #8 23.62 Selecting previously unselected package alsa-ucm-conf. +2023-11-07T14:34:35Z #8 23.63 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2023-11-07T14:34:35Z #8 23.63 Unpacking alsa-ucm-conf (1.2.4-2) ... +2023-11-07T14:34:35Z #8 23.71 Selecting previously unselected package libatspi2.0-0:amd64. +2023-11-07T14:34:35Z #8 23.71 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2023-11-07T14:34:35Z #8 23.72 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2023-11-07T14:34:35Z #8 23.77 Selecting previously unselected package libxi6:amd64. +2023-11-07T14:34:35Z #8 23.78 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2023-11-07T14:34:35Z #8 23.79 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2023-11-07T14:34:35Z #8 23.84 Selecting previously unselected package libxtst6:amd64. +2023-11-07T14:34:35Z #8 23.84 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2023-11-07T14:34:35Z #8 23.85 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2023-11-07T14:34:35Z #8 23.89 Selecting previously unselected package at-spi2-core. +2023-11-07T14:34:35Z #8 23.90 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2023-11-07T14:34:35Z #8 23.90 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2023-11-07T14:34:35Z #8 23.96 Selecting previously unselected package binutils-common:amd64. +2023-11-07T14:34:35Z #8 23.96 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2023-11-07T14:34:35Z #8 23.97 Unpacking binutils-common:amd64 (2.35.2-2) ... +2023-11-07T14:34:36Z #8 24.36 Selecting previously unselected package libbinutils:amd64. +2023-11-07T14:34:36Z #8 24.36 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2023-11-07T14:34:36Z #8 24.37 Unpacking libbinutils:amd64 (2.35.2-2) ... +2023-11-07T14:34:36Z #8 24.51 Selecting previously unselected package libctf-nobfd0:amd64. +2023-11-07T14:34:36Z #8 24.51 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2023-11-07T14:34:36Z #8 24.52 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2023-11-07T14:34:36Z #8 24.58 Selecting previously unselected package libctf0:amd64. +2023-11-07T14:34:36Z #8 24.58 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2023-11-07T14:34:36Z #8 24.58 Unpacking libctf0:amd64 (2.35.2-2) ... +2023-11-07T14:34:36Z #8 24.62 Selecting previously unselected package binutils-x86-64-linux-gnu. +2023-11-07T14:34:36Z #8 24.63 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2023-11-07T14:34:36Z #8 24.64 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2023-11-07T14:34:36Z #8 25.00 Selecting previously unselected package binutils. +2023-11-07T14:34:36Z #8 25.00 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2023-11-07T14:34:36Z #8 25.01 Unpacking binutils (2.35.2-2) ... +2023-11-07T14:34:37Z #8 25.07 Selecting previously unselected package libisl23:amd64. +2023-11-07T14:34:37Z #8 25.07 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2023-11-07T14:34:37Z #8 25.08 Unpacking libisl23:amd64 (0.23-1) ... +2023-11-07T14:34:37Z #8 25.22 Selecting previously unselected package libmpfr6:amd64. +2023-11-07T14:34:37Z #8 25.22 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2023-11-07T14:34:37Z #8 25.23 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2023-11-07T14:34:37Z #8 25.42 Selecting previously unselected package libmpc3:amd64. +2023-11-07T14:34:37Z #8 25.42 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2023-11-07T14:34:37Z #8 25.43 Unpacking libmpc3:amd64 (1.2.0-1) ... +2023-11-07T14:34:37Z #8 25.47 Selecting previously unselected package cpp-10. +2023-11-07T14:34:37Z #8 25.47 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2023-11-07T14:34:37Z #8 25.48 Unpacking cpp-10 (10.2.1-6) ... +2023-11-07T14:34:38Z #8 26.76 Selecting previously unselected package cpp. +2023-11-07T14:34:38Z #8 26.76 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2023-11-07T14:34:38Z #8 26.77 Unpacking cpp (4:10.2.1-1) ... +2023-11-07T14:34:38Z #8 26.80 Selecting previously unselected package dbus-user-session. +2023-11-07T14:34:38Z #8 26.81 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2023-11-07T14:34:38Z #8 26.81 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2023-11-07T14:34:38Z #8 26.87 Selecting previously unselected package libdconf1:amd64. +2023-11-07T14:34:38Z #8 26.87 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2023-11-07T14:34:38Z #8 26.87 Unpacking libdconf1:amd64 (0.38.0-2) ... +2023-11-07T14:34:38Z #8 26.92 Selecting previously unselected package dconf-service. +2023-11-07T14:34:38Z #8 26.93 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2023-11-07T14:34:38Z #8 26.93 Unpacking dconf-service (0.38.0-2) ... +2023-11-07T14:34:38Z #8 26.97 Selecting previously unselected package dconf-gsettings-backend:amd64. +2023-11-07T14:34:38Z #8 26.97 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2023-11-07T14:34:38Z #8 26.98 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2023-11-07T14:34:38Z #8 27.01 Selecting previously unselected package libatk1.0-data. +2023-11-07T14:34:39Z #8 27.02 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2023-11-07T14:34:39Z #8 27.03 Unpacking libatk1.0-data (2.36.0-2) ... +2023-11-07T14:34:39Z #8 27.11 Selecting previously unselected package libatk1.0-0:amd64. +2023-11-07T14:34:39Z #8 27.11 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2023-11-07T14:34:39Z #8 27.11 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2023-11-07T14:34:39Z #8 27.16 Selecting previously unselected package libfreetype6:amd64. +2023-11-07T14:34:39Z #8 27.17 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2023-11-07T14:34:39Z #8 27.17 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2023-11-07T14:34:39Z #8 27.27 Selecting previously unselected package fonts-dejavu-core. +2023-11-07T14:34:39Z #8 27.28 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2023-11-07T14:34:39Z #8 27.28 Unpacking fonts-dejavu-core (2.37-2) ... +2023-11-07T14:34:39Z #8 27.49 Selecting previously unselected package fontconfig-config. +2023-11-07T14:34:39Z #8 27.50 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2023-11-07T14:34:39Z #8 27.63 Unpacking fontconfig-config (2.13.1-4.2) ... +2023-11-07T14:34:39Z #8 27.70 Selecting previously unselected package libfontconfig1:amd64. +2023-11-07T14:34:39Z #8 27.71 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2023-11-07T14:34:39Z #8 27.71 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2023-11-07T14:34:39Z #8 27.78 Selecting previously unselected package libpixman-1-0:amd64. +2023-11-07T14:34:39Z #8 27.78 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2023-11-07T14:34:39Z #8 27.79 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2023-11-07T14:34:39Z #8 27.88 Selecting previously unselected package libxcb-render0:amd64. +2023-11-07T14:34:39Z #8 27.89 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2023-11-07T14:34:39Z #8 27.89 Unpacking libxcb-render0:amd64 (1.14-3) ... +2023-11-07T14:34:39Z #8 27.96 Selecting previously unselected package libxcb-shm0:amd64. +2023-11-07T14:34:39Z #8 27.96 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2023-11-07T14:34:39Z #8 27.97 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2023-11-07T14:34:39Z #8 28.02 Selecting previously unselected package libcairo2:amd64. +2023-11-07T14:34:39Z #8 28.02 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2023-11-07T14:34:39Z #8 28.03 Unpacking libcairo2:amd64 (1.16.0-5) ... +2023-11-07T14:34:40Z #8 28.16 Selecting previously unselected package libcairo-gobject2:amd64. +2023-11-07T14:34:40Z #8 28.16 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2023-11-07T14:34:40Z #8 28.17 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2023-11-07T14:34:40Z #8 28.23 Selecting previously unselected package libdbus-glib-1-2:amd64. +2023-11-07T14:34:40Z #8 28.24 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2023-11-07T14:34:40Z #8 28.24 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2023-11-07T14:34:40Z #8 28.32 Selecting previously unselected package libevent-2.1-7:amd64. +2023-11-07T14:34:40Z #8 28.32 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2023-11-07T14:34:40Z #8 28.33 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2023-11-07T14:34:40Z #8 28.42 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2023-11-07T14:34:40Z #8 28.42 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2023-11-07T14:34:40Z #8 28.43 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2023-11-07T14:34:40Z #8 28.48 Selecting previously unselected package liblcms2-2:amd64. +2023-11-07T14:34:40Z #8 28.48 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2023-11-07T14:34:40Z #8 28.49 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2023-11-07T14:34:40Z #8 28.56 Selecting previously unselected package libcolord2:amd64. +2023-11-07T14:34:40Z #8 28.57 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2023-11-07T14:34:40Z #8 28.58 Unpacking libcolord2:amd64 (1.4.5-3) ... +2023-11-07T14:34:40Z #8 28.64 Selecting previously unselected package libavahi-common-data:amd64. +2023-11-07T14:34:40Z #8 28.64 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2023-11-07T14:34:40Z #8 28.65 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2023-11-07T14:34:40Z #8 28.72 Selecting previously unselected package libavahi-common3:amd64. +2023-11-07T14:34:40Z #8 28.72 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2023-11-07T14:34:40Z #8 28.73 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2023-11-07T14:34:40Z #8 28.78 Selecting previously unselected package libavahi-client3:amd64. +2023-11-07T14:34:40Z #8 28.78 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2023-11-07T14:34:40Z #8 28.79 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2023-11-07T14:34:40Z #8 28.84 Selecting previously unselected package libcups2:amd64. +2023-11-07T14:34:40Z #8 28.84 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2023-11-07T14:34:40Z #8 28.88 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2023-11-07T14:34:40Z #8 29.03 Selecting previously unselected package libepoxy0:amd64. +2023-11-07T14:34:40Z #8 29.04 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2023-11-07T14:34:40Z #8 29.05 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2023-11-07T14:34:41Z #8 29.15 Selecting previously unselected package libfribidi0:amd64. +2023-11-07T14:34:41Z #8 29.16 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2023-11-07T14:34:41Z #8 29.16 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2023-11-07T14:34:41Z #8 29.21 Selecting previously unselected package libgraphite2-3:amd64. +2023-11-07T14:34:41Z #8 29.21 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2023-11-07T14:34:41Z #8 29.22 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2023-11-07T14:34:41Z #8 29.27 Selecting previously unselected package libharfbuzz0b:amd64. +2023-11-07T14:34:41Z #8 29.28 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2023-11-07T14:34:41Z #8 29.28 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2023-11-07T14:34:41Z #8 29.38 Selecting previously unselected package libjson-glib-1.0-common. +2023-11-07T14:34:41Z #8 29.38 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2023-11-07T14:34:41Z #8 29.39 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2023-11-07T14:34:41Z #8 29.45 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2023-11-07T14:34:41Z #8 29.46 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2023-11-07T14:34:41Z #8 29.46 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2023-11-07T14:34:41Z #8 29.54 Selecting previously unselected package fontconfig. +2023-11-07T14:34:41Z #8 29.55 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2023-11-07T14:34:41Z #8 29.56 Unpacking fontconfig (2.13.1-4.2) ... +2023-11-07T14:34:41Z #8 29.63 Selecting previously unselected package libthai-data. +2023-11-07T14:34:41Z #8 29.64 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2023-11-07T14:34:41Z #8 29.64 Unpacking libthai-data (0.1.28-3) ... +2023-11-07T14:34:41Z #8 29.71 Selecting previously unselected package libdatrie1:amd64. +2023-11-07T14:34:41Z #8 29.72 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2023-11-07T14:34:41Z #8 29.72 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2023-11-07T14:34:41Z #8 29.77 Selecting previously unselected package libthai0:amd64. +2023-11-07T14:34:41Z #8 29.78 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2023-11-07T14:34:41Z #8 29.78 Unpacking libthai0:amd64 (0.1.28-3) ... +2023-11-07T14:34:41Z #8 29.83 Selecting previously unselected package libpango-1.0-0:amd64. +2023-11-07T14:34:41Z #8 29.83 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2023-11-07T14:34:41Z #8 29.84 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2023-11-07T14:34:41Z #8 29.91 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2023-11-07T14:34:41Z #8 29.91 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2023-11-07T14:34:41Z #8 29.92 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2023-11-07T14:34:41Z #8 29.98 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2023-11-07T14:34:41Z #8 29.98 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2023-11-07T14:34:41Z #8 29.99 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2023-11-07T14:34:41Z #8 30.03 Selecting previously unselected package libproxy1v5:amd64. +2023-11-07T14:34:41Z #8 30.04 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2023-11-07T14:34:41Z #8 30.04 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2023-11-07T14:34:41Z #8 30.09 Selecting previously unselected package glib-networking-common. +2023-11-07T14:34:41Z #8 30.09 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2023-11-07T14:34:41Z #8 30.10 Unpacking glib-networking-common (2.66.0-2) ... +2023-11-07T14:34:42Z #8 30.15 Selecting previously unselected package glib-networking-services. +2023-11-07T14:34:42Z #8 30.16 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2023-11-07T14:34:42Z #8 30.16 Unpacking glib-networking-services (2.66.0-2) ... +2023-11-07T14:34:42Z #8 30.20 Selecting previously unselected package gsettings-desktop-schemas. +2023-11-07T14:34:42Z #8 30.20 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2023-11-07T14:34:42Z #8 30.21 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2023-11-07T14:34:42Z #8 30.36 Selecting previously unselected package glib-networking:amd64. +2023-11-07T14:34:42Z #8 30.37 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2023-11-07T14:34:42Z #8 30.37 Unpacking glib-networking:amd64 (2.66.0-2) ... +2023-11-07T14:34:42Z #8 30.43 Selecting previously unselected package libsoup2.4-1:amd64. +2023-11-07T14:34:42Z #8 30.43 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2023-11-07T14:34:42Z #8 30.44 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2023-11-07T14:34:42Z #8 30.54 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2023-11-07T14:34:42Z #8 30.54 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2023-11-07T14:34:42Z #8 30.55 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2023-11-07T14:34:42Z #8 30.60 Selecting previously unselected package librest-0.7-0:amd64. +2023-11-07T14:34:42Z #8 30.60 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2023-11-07T14:34:42Z #8 30.61 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2023-11-07T14:34:42Z #8 30.68 Selecting previously unselected package libwayland-client0:amd64. +2023-11-07T14:34:42Z #8 30.68 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2023-11-07T14:34:42Z #8 30.69 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2023-11-07T14:34:42Z #8 30.73 Selecting previously unselected package libwayland-cursor0:amd64. +2023-11-07T14:34:42Z #8 30.74 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2023-11-07T14:34:42Z #8 30.74 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2023-11-07T14:34:42Z #8 30.78 Selecting previously unselected package libwayland-egl1:amd64. +2023-11-07T14:34:42Z #8 30.79 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2023-11-07T14:34:42Z #8 30.79 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2023-11-07T14:34:42Z #8 30.83 Selecting previously unselected package libxcomposite1:amd64. +2023-11-07T14:34:42Z #8 30.84 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2023-11-07T14:34:42Z #8 30.84 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2023-11-07T14:34:42Z #8 30.88 Selecting previously unselected package libxfixes3:amd64. +2023-11-07T14:34:42Z #8 30.89 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2023-11-07T14:34:42Z #8 30.90 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2023-11-07T14:34:42Z #8 30.94 Selecting previously unselected package libxcursor1:amd64. +2023-11-07T14:34:42Z #8 30.95 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2023-11-07T14:34:42Z #8 30.95 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2023-11-07T14:34:42Z #8 31.00 Selecting previously unselected package libxdamage1:amd64. +2023-11-07T14:34:42Z #8 31.01 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2023-11-07T14:34:42Z #8 31.02 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2023-11-07T14:34:42Z #8 31.06 Selecting previously unselected package libxinerama1:amd64. +2023-11-07T14:34:42Z #8 31.06 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2023-11-07T14:34:42Z #8 31.06 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2023-11-07T14:34:42Z #8 31.10 Selecting previously unselected package xkb-data. +2023-11-07T14:34:43Z #8 31.11 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2023-11-07T14:34:43Z #8 31.12 Unpacking xkb-data (2.29-2) ... +2023-11-07T14:34:43Z #8 31.34 Selecting previously unselected package libxkbcommon0:amd64. +2023-11-07T14:34:43Z #8 31.34 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2023-11-07T14:34:43Z #8 31.35 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2023-11-07T14:34:43Z #8 31.41 Selecting previously unselected package libxrandr2:amd64. +2023-11-07T14:34:43Z #8 31.42 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2023-11-07T14:34:43Z #8 31.42 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2023-11-07T14:34:43Z #8 31.47 Selecting previously unselected package libgtk-3-common. +2023-11-07T14:34:43Z #8 31.48 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2023-11-07T14:34:43Z #8 31.48 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2023-11-07T14:34:44Z #8 32.22 Selecting previously unselected package libgtk-3-0:amd64. +2023-11-07T14:34:44Z #8 32.22 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2023-11-07T14:34:44Z #8 32.23 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2023-11-07T14:34:44Z #8 32.70 Selecting previously unselected package libx11-xcb1:amd64. +2023-11-07T14:34:44Z #8 32.71 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2023-11-07T14:34:44Z #8 32.71 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2023-11-07T14:34:44Z #8 32.78 Selecting previously unselected package firefox-esr. +2023-11-07T14:34:44Z #8 32.78 Preparing to unpack .../099-firefox-esr_115.4.0esr-1~deb11u1_amd64.deb ... +2023-11-07T14:34:44Z #8 32.80 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2023-11-07T14:34:44Z #8 32.80 Unpacking firefox-esr (115.4.0esr-1~deb11u1) ... +2023-11-07T14:34:54Z #8 42.32 Selecting previously unselected package fonts-humor-sans. +2023-11-07T14:34:54Z #8 42.33 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2023-11-07T14:34:54Z #8 42.33 Unpacking fonts-humor-sans (1.0-4) ... +2023-11-07T14:34:54Z #8 42.38 Selecting previously unselected package libcc1-0:amd64. +2023-11-07T14:34:54Z #8 42.39 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2023-11-07T14:34:54Z #8 42.39 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2023-11-07T14:34:54Z #8 42.44 Selecting previously unselected package libgomp1:amd64. +2023-11-07T14:34:54Z #8 42.44 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2023-11-07T14:34:54Z #8 42.45 Unpacking libgomp1:amd64 (10.2.1-6) ... +2023-11-07T14:34:54Z #8 42.50 Selecting previously unselected package libitm1:amd64. +2023-11-07T14:34:54Z #8 42.51 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2023-11-07T14:34:54Z #8 42.51 Unpacking libitm1:amd64 (10.2.1-6) ... +2023-11-07T14:34:54Z #8 42.55 Selecting previously unselected package libatomic1:amd64. +2023-11-07T14:34:54Z #8 42.56 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2023-11-07T14:34:54Z #8 42.56 Unpacking libatomic1:amd64 (10.2.1-6) ... +2023-11-07T14:34:54Z #8 42.61 Selecting previously unselected package libasan6:amd64. +2023-11-07T14:34:54Z #8 42.61 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2023-11-07T14:34:54Z #8 42.62 Unpacking libasan6:amd64 (10.2.1-6) ... +2023-11-07T14:34:54Z #8 43.01 Selecting previously unselected package liblsan0:amd64. +2023-11-07T14:34:54Z #8 43.02 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2023-11-07T14:34:54Z #8 43.02 Unpacking liblsan0:amd64 (10.2.1-6) ... +2023-11-07T14:34:55Z #8 43.19 Selecting previously unselected package libtsan0:amd64. +2023-11-07T14:34:55Z #8 43.19 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2023-11-07T14:34:55Z #8 43.20 Unpacking libtsan0:amd64 (10.2.1-6) ... +2023-11-07T14:34:55Z #8 43.59 Selecting previously unselected package libubsan1:amd64. +2023-11-07T14:34:55Z #8 43.59 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2023-11-07T14:34:55Z #8 43.60 Unpacking libubsan1:amd64 (10.2.1-6) ... +2023-11-07T14:34:55Z #8 43.77 Selecting previously unselected package libquadmath0:amd64. +2023-11-07T14:34:55Z #8 43.77 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2023-11-07T14:34:55Z #8 43.78 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2023-11-07T14:34:55Z #8 43.85 Selecting previously unselected package libgcc-10-dev:amd64. +2023-11-07T14:34:55Z #8 43.86 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2023-11-07T14:34:55Z #8 43.86 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2023-11-07T14:34:56Z #8 44.27 Selecting previously unselected package gcc-10. +2023-11-07T14:34:56Z #8 44.27 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2023-11-07T14:34:56Z #8 44.28 Unpacking gcc-10 (10.2.1-6) ... +2023-11-07T14:34:58Z #8 46.79 Selecting previously unselected package gcc. +2023-11-07T14:34:58Z #8 46.80 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2023-11-07T14:34:58Z #8 46.80 Unpacking gcc (4:10.2.1-1) ... +2023-11-07T14:34:58Z #8 46.85 Selecting previously unselected package libva2:amd64. +2023-11-07T14:34:58Z #8 46.86 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2023-11-07T14:34:58Z #8 46.86 Unpacking libva2:amd64 (2.10.0-1) ... +2023-11-07T14:34:58Z #8 46.91 Selecting previously unselected package libdrm-common. +2023-11-07T14:34:58Z #8 46.91 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2023-11-07T14:34:58Z #8 46.92 Unpacking libdrm-common (2.4.104-1) ... +2023-11-07T14:34:58Z #8 46.97 Selecting previously unselected package libdrm2:amd64. +2023-11-07T14:34:58Z #8 46.97 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2023-11-07T14:34:58Z #8 46.97 Unpacking libdrm2:amd64 (2.4.104-1) ... +2023-11-07T14:34:58Z #8 47.03 Selecting previously unselected package libpciaccess0:amd64. +2023-11-07T14:34:58Z #8 47.03 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2023-11-07T14:34:58Z #8 47.03 Unpacking libpciaccess0:amd64 (0.16-1) ... +2023-11-07T14:34:58Z #8 47.09 Selecting previously unselected package libdrm-intel1:amd64. +2023-11-07T14:34:58Z #8 47.09 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2023-11-07T14:34:58Z #8 47.09 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2023-11-07T14:34:58Z #8 47.14 Selecting previously unselected package i965-va-driver:amd64. +2023-11-07T14:34:59Z #8 47.14 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2023-11-07T14:34:59Z #8 47.15 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2023-11-07T14:34:59Z #8 47.24 Selecting previously unselected package libigdgmm11:amd64. +2023-11-07T14:34:59Z #8 47.24 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2023-11-07T14:34:59Z #8 47.25 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2023-11-07T14:34:59Z #8 47.34 Selecting previously unselected package intel-media-va-driver:amd64. +2023-11-07T14:34:59Z #8 47.34 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2023-11-07T14:34:59Z #8 47.34 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2023-11-07T14:34:59Z #8 47.67 Selecting previously unselected package libaom0:amd64. +2023-11-07T14:34:59Z #8 47.67 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2023-11-07T14:34:59Z #8 47.68 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2023-11-07T14:34:59Z #8 47.89 Selecting previously unselected package libmfx1:amd64. +2023-11-07T14:34:59Z #8 47.89 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2023-11-07T14:34:59Z #8 47.90 Unpacking libmfx1:amd64 (21.1.0-1) ... +2023-11-07T14:35:00Z #8 48.61 Selecting previously unselected package libva-drm2:amd64. +2023-11-07T14:35:00Z #8 48.62 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2023-11-07T14:35:00Z #8 48.62 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2023-11-07T14:35:00Z #8 48.67 Selecting previously unselected package libva-x11-2:amd64. +2023-11-07T14:35:00Z #8 48.67 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2023-11-07T14:35:00Z #8 48.68 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2023-11-07T14:35:00Z #8 48.72 Selecting previously unselected package libvdpau1:amd64. +2023-11-07T14:35:00Z #8 48.73 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2023-11-07T14:35:00Z #8 48.73 Unpacking libvdpau1:amd64 (1.4-3) ... +2023-11-07T14:35:00Z #8 48.79 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2023-11-07T14:35:00Z #8 48.80 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2023-11-07T14:35:00Z #8 48.80 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2023-11-07T14:35:00Z #8 48.85 Selecting previously unselected package libavutil56:amd64. +2023-11-07T14:35:00Z #8 48.85 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2023-11-07T14:35:00Z #8 48.86 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2023-11-07T14:35:00Z #8 48.94 Selecting previously unselected package libcodec2-0.9:amd64. +2023-11-07T14:35:00Z #8 48.95 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2023-11-07T14:35:00Z #8 48.96 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2023-11-07T14:35:01Z #8 50.04 Selecting previously unselected package libdav1d4:amd64. +2023-11-07T14:35:01Z #8 50.04 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2023-11-07T14:35:01Z #8 50.05 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2023-11-07T14:35:02Z #8 50.14 Selecting previously unselected package libgsm1:amd64. +2023-11-07T14:35:02Z #8 50.15 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2023-11-07T14:35:02Z #8 50.15 Unpacking libgsm1:amd64 (1.0.18-2) ... +2023-11-07T14:35:02Z #8 50.20 Selecting previously unselected package libmp3lame0:amd64. +2023-11-07T14:35:02Z #8 50.21 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2023-11-07T14:35:02Z #8 50.21 Unpacking libmp3lame0:amd64 (3.100-3) ... +2023-11-07T14:35:02Z #8 50.28 Selecting previously unselected package libopenjp2-7:amd64. +2023-11-07T14:35:02Z #8 50.29 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2023-11-07T14:35:02Z #8 50.29 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2023-11-07T14:35:02Z #8 50.36 Selecting previously unselected package libopus0:amd64. +2023-11-07T14:35:02Z #8 50.36 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2023-11-07T14:35:02Z #8 50.37 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2023-11-07T14:35:02Z #8 50.44 Selecting previously unselected package librsvg2-2:amd64. +2023-11-07T14:35:02Z #8 50.44 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2023-11-07T14:35:02Z #8 50.45 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2023-11-07T14:35:02Z #8 50.89 Selecting previously unselected package libshine3:amd64. +2023-11-07T14:35:02Z #8 50.89 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2023-11-07T14:35:02Z #8 50.90 Unpacking libshine3:amd64 (3.1.1-2) ... +2023-11-07T14:35:02Z #8 50.94 Selecting previously unselected package libsnappy1v5:amd64. +2023-11-07T14:35:02Z #8 50.95 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2023-11-07T14:35:02Z #8 50.95 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2023-11-07T14:35:02Z #8 51.00 Selecting previously unselected package libspeex1:amd64. +2023-11-07T14:35:02Z #8 51.00 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2023-11-07T14:35:02Z #8 51.01 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2023-11-07T14:35:02Z #8 51.06 Selecting previously unselected package libsoxr0:amd64. +2023-11-07T14:35:02Z #8 51.07 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2023-11-07T14:35:02Z #8 51.07 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2023-11-07T14:35:03Z #8 51.13 Selecting previously unselected package libswresample3:amd64. +2023-11-07T14:35:03Z #8 51.13 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2023-11-07T14:35:03Z #8 51.14 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2023-11-07T14:35:03Z #8 51.20 Selecting previously unselected package libogg0:amd64. +2023-11-07T14:35:03Z #8 51.20 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2023-11-07T14:35:03Z #8 51.20 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2023-11-07T14:35:03Z #8 51.25 Selecting previously unselected package libtheora0:amd64. +2023-11-07T14:35:03Z #8 51.26 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2023-11-07T14:35:03Z #8 51.27 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2023-11-07T14:35:03Z #8 51.34 Selecting previously unselected package libtwolame0:amd64. +2023-11-07T14:35:03Z #8 51.34 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2023-11-07T14:35:03Z #8 51.35 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2023-11-07T14:35:03Z #8 51.90 Selecting previously unselected package libvorbis0a:amd64. +2023-11-07T14:35:03Z #8 51.90 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2023-11-07T14:35:03Z #8 51.92 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2023-11-07T14:35:03Z #8 52.00 Selecting previously unselected package libvorbisenc2:amd64. +2023-11-07T14:35:03Z #8 52.01 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2023-11-07T14:35:03Z #8 52.01 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2023-11-07T14:35:03Z #8 52.08 Selecting previously unselected package libvpx6:amd64. +2023-11-07T14:35:03Z #8 52.08 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2023-11-07T14:35:03Z #8 52.08 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2023-11-07T14:35:04Z #8 52.25 Selecting previously unselected package libwavpack1:amd64. +2023-11-07T14:35:04Z #8 52.26 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2023-11-07T14:35:04Z #8 52.26 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2023-11-07T14:35:04Z #8 52.32 Selecting previously unselected package libwebpmux3:amd64. +2023-11-07T14:35:04Z #8 52.33 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2023-11-07T14:35:04Z #8 52.33 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2023-11-07T14:35:04Z #8 52.40 Selecting previously unselected package libx264-160:amd64. +2023-11-07T14:35:04Z #8 52.40 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2023-11-07T14:35:04Z #8 52.41 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2023-11-07T14:35:04Z #8 52.53 Selecting previously unselected package libnuma1:amd64. +2023-11-07T14:35:04Z #8 52.54 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2023-11-07T14:35:04Z #8 52.54 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2023-11-07T14:35:04Z #8 52.63 Selecting previously unselected package libx265-192:amd64. +2023-11-07T14:35:04Z #8 52.63 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2023-11-07T14:35:04Z #8 52.64 Unpacking libx265-192:amd64 (3.4-2) ... +2023-11-07T14:35:04Z #8 52.97 Selecting previously unselected package libxvidcore4:amd64. +2023-11-07T14:35:04Z #8 52.97 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2023-11-07T14:35:04Z #8 52.98 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2023-11-07T14:35:05Z #8 53.05 Selecting previously unselected package libzvbi-common. +2023-11-07T14:35:05Z #8 53.05 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2023-11-07T14:35:05Z #8 53.06 Unpacking libzvbi-common (0.2.35-18) ... +2023-11-07T14:35:05Z #8 53.11 Selecting previously unselected package libzvbi0:amd64. +2023-11-07T14:35:05Z #8 53.12 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2023-11-07T14:35:05Z #8 53.12 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2023-11-07T14:35:05Z #8 53.20 Selecting previously unselected package libavcodec58:amd64. +2023-11-07T14:35:05Z #8 53.21 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2023-11-07T14:35:05Z #8 53.21 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2023-11-07T14:35:05Z #8 53.98 Selecting previously unselected package libc-dev-bin. +2023-11-07T14:35:05Z #8 53.98 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u7_amd64.deb ... +2023-11-07T14:35:05Z #8 53.99 Unpacking libc-dev-bin (2.31-13+deb11u7) ... +2023-11-07T14:35:05Z #8 54.04 Selecting previously unselected package libxpm4:amd64. +2023-11-07T14:35:05Z #8 54.04 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2023-11-07T14:35:05Z #8 54.05 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2023-11-07T14:35:06Z #8 54.11 Selecting previously unselected package libgd3:amd64. +2023-11-07T14:35:06Z #8 54.11 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2023-11-07T14:35:06Z #8 54.11 Unpacking libgd3:amd64 (2.3.0-2) ... +2023-11-07T14:35:06Z #8 54.17 Selecting previously unselected package libc-devtools. +2023-11-07T14:35:06Z #8 54.17 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u7_amd64.deb ... +2023-11-07T14:35:06Z #8 54.18 Unpacking libc-devtools (2.31-13+deb11u7) ... +2023-11-07T14:35:06Z #8 54.24 Selecting previously unselected package linux-libc-dev:amd64. +2023-11-07T14:35:06Z #8 54.24 Preparing to unpack .../159-linux-libc-dev_5.10.197-1_amd64.deb ... +2023-11-07T14:35:06Z #8 54.24 Unpacking linux-libc-dev:amd64 (5.10.197-1) ... +2023-11-07T14:35:06Z #8 54.60 Selecting previously unselected package libcrypt-dev:amd64. +2023-11-07T14:35:06Z #8 54.60 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2023-11-07T14:35:06Z #8 54.61 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2023-11-07T14:35:06Z #8 54.66 Selecting previously unselected package libtirpc-dev:amd64. +2023-11-07T14:35:06Z #8 54.66 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2023-11-07T14:35:06Z #8 54.67 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2023-11-07T14:35:06Z #8 54.74 Selecting previously unselected package libnsl-dev:amd64. +2023-11-07T14:35:06Z #8 54.74 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2023-11-07T14:35:06Z #8 54.75 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2023-11-07T14:35:06Z #8 54.80 Selecting previously unselected package libc6-dev:amd64. +2023-11-07T14:35:06Z #8 54.80 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u7_amd64.deb ... +2023-11-07T14:35:06Z #8 54.81 Unpacking libc6-dev:amd64 (2.31-13+deb11u7) ... +2023-11-07T14:35:07Z #8 55.34 Selecting previously unselected package libdrm-amdgpu1:amd64. +2023-11-07T14:35:07Z #8 55.34 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2023-11-07T14:35:07Z #8 55.34 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2023-11-07T14:35:07Z #8 55.39 Selecting previously unselected package libdrm-nouveau2:amd64. +2023-11-07T14:35:07Z #8 55.39 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2023-11-07T14:35:07Z #8 55.40 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2023-11-07T14:35:07Z #8 55.50 Selecting previously unselected package libdrm-radeon1:amd64. +2023-11-07T14:35:07Z #8 55.50 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2023-11-07T14:35:07Z #8 55.50 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2023-11-07T14:35:07Z #8 55.55 Selecting previously unselected package libelf1:amd64. +2023-11-07T14:35:07Z #8 55.55 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2023-11-07T14:35:07Z #8 55.56 Unpacking libelf1:amd64 (0.183-1) ... +2023-11-07T14:35:07Z #8 55.62 Selecting previously unselected package libfontenc1:amd64. +2023-11-07T14:35:07Z #8 55.62 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2023-11-07T14:35:07Z #8 55.63 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2023-11-07T14:35:07Z #8 55.67 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2023-11-07T14:35:07Z #8 55.67 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2023-11-07T14:35:07Z #8 55.68 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2023-11-07T14:35:07Z #8 55.73 Selecting previously unselected package libglapi-mesa:amd64. +2023-11-07T14:35:07Z #8 55.73 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2023-11-07T14:35:07Z #8 55.73 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2023-11-07T14:35:07Z #8 55.79 Selecting previously unselected package libz3-4:amd64. +2023-11-07T14:35:07Z #8 55.79 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2023-11-07T14:35:07Z #8 55.80 Unpacking libz3-4:amd64 (4.8.10-1) ... +2023-11-07T14:35:08Z #8 56.89 Selecting previously unselected package libllvm11:amd64. +2023-11-07T14:35:08Z #8 56.89 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2023-11-07T14:35:08Z #8 56.90 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2023-11-07T14:35:11Z #8 59.92 Selecting previously unselected package libsensors-config. +2023-11-07T14:35:11Z #8 59.92 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2023-11-07T14:35:11Z #8 59.93 Unpacking libsensors-config (1:3.6.0-7) ... +2023-11-07T14:35:11Z #8 59.97 Selecting previously unselected package libsensors5:amd64. +2023-11-07T14:35:11Z #8 59.98 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2023-11-07T14:35:11Z #8 60.02 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2023-11-07T14:35:11Z #8 60.06 Selecting previously unselected package libvulkan1:amd64. +2023-11-07T14:35:11Z #8 60.06 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2023-11-07T14:35:11Z #8 60.07 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2023-11-07T14:35:11Z #8 60.13 Selecting previously unselected package libgl1-mesa-dri:amd64. +2023-11-07T14:35:12Z #8 60.13 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2023-11-07T14:35:12Z #8 60.14 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2023-11-07T14:35:13Z #8 61.63 Selecting previously unselected package libglvnd0:amd64. +2023-11-07T14:35:13Z #8 61.63 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2023-11-07T14:35:13Z #8 61.63 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2023-11-07T14:35:13Z #8 61.69 Selecting previously unselected package libxcb-dri2-0:amd64. +2023-11-07T14:35:13Z #8 61.69 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2023-11-07T14:35:13Z #8 61.70 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2023-11-07T14:35:13Z #8 61.75 Selecting previously unselected package libxcb-dri3-0:amd64. +2023-11-07T14:35:13Z #8 61.76 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2023-11-07T14:35:13Z #8 61.76 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2023-11-07T14:35:13Z #8 61.82 Selecting previously unselected package libxcb-glx0:amd64. +2023-11-07T14:35:13Z #8 61.82 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2023-11-07T14:35:13Z #8 61.83 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2023-11-07T14:35:13Z #8 61.89 Selecting previously unselected package libxcb-present0:amd64. +2023-11-07T14:35:13Z #8 61.89 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2023-11-07T14:35:13Z #8 61.90 Unpacking libxcb-present0:amd64 (1.14-3) ... +2023-11-07T14:35:13Z #8 61.96 Selecting previously unselected package libxcb-sync1:amd64. +2023-11-07T14:35:13Z #8 61.96 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2023-11-07T14:35:13Z #8 61.96 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2023-11-07T14:35:13Z #8 62.02 Selecting previously unselected package libxcb-xfixes0:amd64. +2023-11-07T14:35:13Z #8 62.02 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2023-11-07T14:35:13Z #8 62.03 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2023-11-07T14:35:13Z #8 62.08 Selecting previously unselected package libxshmfence1:amd64. +2023-11-07T14:35:13Z #8 62.09 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2023-11-07T14:35:13Z #8 62.09 Unpacking libxshmfence1:amd64 (1.3-1) ... +2023-11-07T14:35:14Z #8 62.13 Selecting previously unselected package libxxf86vm1:amd64. +2023-11-07T14:35:14Z #8 62.14 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2023-11-07T14:35:14Z #8 62.14 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2023-11-07T14:35:14Z #8 62.19 Selecting previously unselected package libglx-mesa0:amd64. +2023-11-07T14:35:14Z #8 62.20 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2023-11-07T14:35:14Z #8 62.20 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2023-11-07T14:35:14Z #8 62.26 Selecting previously unselected package libgtk-3-bin. +2023-11-07T14:35:14Z #8 62.27 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2023-11-07T14:35:14Z #8 62.28 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2023-11-07T14:35:14Z #8 62.34 Selecting previously unselected package librsvg2-common:amd64. +2023-11-07T14:35:14Z #8 62.34 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2023-11-07T14:35:14Z #8 62.35 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2023-11-07T14:35:14Z #8 62.39 Selecting previously unselected package libglx0:amd64. +2023-11-07T14:35:14Z #8 62.40 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2023-11-07T14:35:14Z #8 62.41 Unpacking libglx0:amd64 (1.3.2-1) ... +2023-11-07T14:35:14Z #8 62.46 Selecting previously unselected package libgl1:amd64. +2023-11-07T14:35:14Z #8 62.47 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2023-11-07T14:35:14Z #8 62.47 Unpacking libgl1:amd64 (1.3.2-1) ... +2023-11-07T14:35:14Z #8 62.53 Selecting previously unselected package libvdpau-va-gl1:amd64. +2023-11-07T14:35:14Z #8 62.54 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2023-11-07T14:35:14Z #8 62.54 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2023-11-07T14:35:14Z #8 62.60 Selecting previously unselected package libxt6:amd64. +2023-11-07T14:35:14Z #8 62.61 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2023-11-07T14:35:14Z #8 62.61 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2023-11-07T14:35:14Z #8 62.74 Selecting previously unselected package libxmu6:amd64. +2023-11-07T14:35:14Z #8 62.74 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2023-11-07T14:35:14Z #8 62.74 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2023-11-07T14:35:14Z #8 62.79 Selecting previously unselected package libxaw7:amd64. +2023-11-07T14:35:14Z #8 62.80 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2023-11-07T14:35:14Z #8 62.81 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2023-11-07T14:35:14Z #8 62.88 Selecting previously unselected package libxcb-randr0:amd64. +2023-11-07T14:35:14Z #8 62.89 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2023-11-07T14:35:14Z #8 62.89 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2023-11-07T14:35:14Z #8 62.96 Selecting previously unselected package libxcb-shape0:amd64. +2023-11-07T14:35:14Z #8 62.97 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2023-11-07T14:35:14Z #8 62.97 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2023-11-07T14:35:14Z #8 63.03 Selecting previously unselected package libxft2:amd64. +2023-11-07T14:35:14Z #8 63.04 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2023-11-07T14:35:14Z #8 63.04 Unpacking libxft2:amd64 (2.3.2-2) ... +2023-11-07T14:35:14Z #8 63.08 Selecting previously unselected package libxkbfile1:amd64. +2023-11-07T14:35:14Z #8 63.09 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2023-11-07T14:35:14Z #8 63.09 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2023-11-07T14:35:14Z #8 63.14 Selecting previously unselected package libxmuu1:amd64. +2023-11-07T14:35:15Z #8 63.14 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2023-11-07T14:35:15Z #8 63.15 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2023-11-07T14:35:15Z #8 63.19 Selecting previously unselected package libxv1:amd64. +2023-11-07T14:35:15Z #8 63.19 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2023-11-07T14:35:15Z #8 63.19 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2023-11-07T14:35:15Z #8 63.24 Selecting previously unselected package libxxf86dga1:amd64. +2023-11-07T14:35:15Z #8 63.25 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2023-11-07T14:35:15Z #8 63.25 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2023-11-07T14:35:15Z #8 63.29 Selecting previously unselected package manpages-dev. +2023-11-07T14:35:15Z #8 63.29 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2023-11-07T14:35:15Z #8 63.30 Unpacking manpages-dev (5.10-1) ... +2023-11-07T14:35:15Z #8 63.73 Selecting previously unselected package mesa-va-drivers:amd64. +2023-11-07T14:35:15Z #8 63.74 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2023-11-07T14:35:15Z #8 63.74 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2023-11-07T14:35:16Z #8 64.23 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2023-11-07T14:35:16Z #8 64.23 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2023-11-07T14:35:16Z #8 64.24 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2023-11-07T14:35:16Z #8 64.71 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2023-11-07T14:35:16Z #8 64.72 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2023-11-07T14:35:16Z #8 64.72 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2023-11-07T14:35:17Z #8 65.43 Selecting previously unselected package patch. +2023-11-07T14:35:17Z #8 65.44 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2023-11-07T14:35:17Z #8 65.44 Unpacking patch (2.7.6-7) ... +2023-11-07T14:35:17Z #8 65.50 Selecting previously unselected package unzip. +2023-11-07T14:35:17Z #8 65.50 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2023-11-07T14:35:17Z #8 65.51 Unpacking unzip (6.0-26+deb11u1) ... +2023-11-07T14:35:17Z #8 65.57 Selecting previously unselected package va-driver-all:amd64. +2023-11-07T14:35:17Z #8 65.58 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2023-11-07T14:35:17Z #8 65.58 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2023-11-07T14:35:17Z #8 65.62 Selecting previously unselected package vdpau-driver-all:amd64. +2023-11-07T14:35:17Z #8 65.62 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2023-11-07T14:35:17Z #8 65.62 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2023-11-07T14:35:17Z #8 65.67 Selecting previously unselected package x11-utils. +2023-11-07T14:35:17Z #8 65.67 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2023-11-07T14:35:17Z #8 65.67 Unpacking x11-utils (7.7+5) ... +2023-11-07T14:35:17Z #8 65.80 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2023-11-07T14:35:17Z #8 65.82 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2023-11-07T14:35:17Z #8 65.83 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2023-11-07T14:35:17Z #8 65.85 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2023-11-07T14:35:17Z #8 65.86 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2023-11-07T14:35:17Z #8 65.87 Setting up libpciaccess0:amd64 (0.16-1) ... +2023-11-07T14:35:17Z #8 65.88 Setting up systemd-sysv (247.3-7+deb11u4) ... +2023-11-07T14:35:17Z #8 65.89 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2023-11-07T14:35:17Z #8 65.90 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2023-11-07T14:35:17Z #8 65.92 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2023-11-07T14:35:17Z #8 65.93 Setting up libogg0:amd64 (1.3.4-0.1) ... +2023-11-07T14:35:17Z #8 65.95 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2023-11-07T14:35:17Z #8 65.96 Setting up libshine3:amd64 (3.1.1-2) ... +2023-11-07T14:35:17Z #8 65.97 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2023-11-07T14:35:17Z #8 65.99 Setting up hicolor-icon-theme (0.17-2) ... +2023-11-07T14:35:17Z #8 66.01 Setting up libxi6:amd64 (2:1.7.10-1) ... +2023-11-07T14:35:17Z #8 66.03 Setting up libtwolame0:amd64 (0.4.0-2) ... +2023-11-07T14:35:17Z #8 66.04 Setting up libicu67:amd64 (67.1-7) ... +2023-11-07T14:35:17Z #8 66.05 Setting up libdatrie1:amd64 (0.2.13-1) ... +2023-11-07T14:35:17Z #8 66.06 Setting up libgsm1:amd64 (1.0.18-2) ... +2023-11-07T14:35:17Z #8 66.08 Setting up libxcb-render0:amd64 (1.14-3) ... +2023-11-07T14:35:17Z #8 66.09 Setting up manpages (5.10-1) ... +2023-11-07T14:35:17Z #8 66.10 Setting up libglvnd0:amd64 (1.3.2-1) ... +2023-11-07T14:35:17Z #8 66.12 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2023-11-07T14:35:17Z #8 66.13 Setting up libxcb-glx0:amd64 (1.14-3) ... +2023-11-07T14:35:17Z #8 66.14 Setting up unzip (6.0-26+deb11u1) ... +2023-11-07T14:35:18Z #8 66.16 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2023-11-07T14:35:18Z #8 66.18 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2023-11-07T14:35:18Z #8 66.19 Setting up libxcb-shape0:amd64 (1.14-3) ... +2023-11-07T14:35:18Z #8 66.20 Setting up binutils-common:amd64 (2.35.2-2) ... +2023-11-07T14:35:18Z #8 66.21 Setting up libsensors-config (1:3.6.0-7) ... +2023-11-07T14:35:18Z #8 66.23 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2023-11-07T14:35:18Z #8 66.24 Setting up libdeflate0:amd64 (1.7-1) ... +2023-11-07T14:35:18Z #8 66.26 Setting up linux-libc-dev:amd64 (5.10.197-1) ... +2023-11-07T14:35:18Z #8 66.27 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2023-11-07T14:35:18Z #8 66.28 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2023-11-07T14:35:18Z #8 66.29 First installation detected... +2023-11-07T14:35:18Z #8 66.29 Checking NSS setup... +2023-11-07T14:35:18Z #8 66.30 Setting up xkb-data (2.29-2) ... +2023-11-07T14:35:18Z #8 66.31 Setting up libxcb-shm0:amd64 (1.14-3) ... +2023-11-07T14:35:18Z #8 66.32 Setting up libgomp1:amd64 (10.2.1-6) ... +2023-11-07T14:35:18Z #8 66.34 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2023-11-07T14:35:18Z #8 66.36 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2023-11-07T14:35:18Z #8 66.38 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2023-11-07T14:35:18Z #8 66.39 Setting up libcolord2:amd64 (1.4.5-3) ... +2023-11-07T14:35:18Z #8 66.40 Setting up libasan6:amd64 (10.2.1-6) ... +2023-11-07T14:35:18Z #8 66.41 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2023-11-07T14:35:18Z #8 66.43 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2023-11-07T14:35:18Z #8 66.44 Setting up libxcb-present0:amd64 (1.14-3) ... +2023-11-07T14:35:18Z #8 66.45 Setting up libdconf1:amd64 (0.38.0-2) ... +2023-11-07T14:35:18Z #8 66.46 Setting up libasound2-data (1.2.4-1.1) ... +2023-11-07T14:35:18Z #8 66.48 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2023-11-07T14:35:18Z #8 66.49 Setting up libz3-4:amd64 (4.8.10-1) ... +2023-11-07T14:35:18Z #8 66.51 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2023-11-07T14:35:18Z #8 66.52 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2023-11-07T14:35:18Z #8 66.54 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2023-11-07T14:35:18Z #8 66.55 Setting up libva2:amd64 (2.10.0-1) ... +2023-11-07T14:35:18Z #8 66.56 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2023-11-07T14:35:18Z #8 66.58 Setting up libepoxy0:amd64 (1.5.5-1) ... +2023-11-07T14:35:18Z #8 66.60 Setting up libmpfr6:amd64 (4.1.0-3) ... +2023-11-07T14:35:18Z #8 66.61 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2023-11-07T14:35:18Z #8 66.62 Setting up libxcb-sync1:amd64 (1.14-3) ... +2023-11-07T14:35:18Z #8 66.63 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2023-11-07T14:35:18Z #8 66.65 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2023-11-07T14:35:18Z #8 66.66 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2023-11-07T14:35:18Z #8 66.67 Setting up dbus (1.12.28-0+deb11u1) ... +2023-11-07T14:35:18Z #8 66.84 invoke-rc.d: could not determine current runlevel +2023-11-07T14:35:18Z #8 66.85 invoke-rc.d: policy-rc.d denied execution of start. +2023-11-07T14:35:18Z #8 66.85 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2023-11-07T14:35:18Z #8 66.87 Setting up libopus0:amd64 (1.3.1-0.1) ... +2023-11-07T14:35:18Z #8 66.88 Setting up libquadmath0:amd64 (10.2.1-6) ... +2023-11-07T14:35:18Z #8 66.89 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2023-11-07T14:35:18Z #8 66.91 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2023-11-07T14:35:18Z #8 66.92 Setting up libxv1:amd64 (2:1.0.11-1) ... +2023-11-07T14:35:18Z #8 66.93 Setting up libpng16-16:amd64 (1.6.37-3) ... +2023-11-07T14:35:18Z #8 66.95 Setting up libmpc3:amd64 (1.2.0-1) ... +2023-11-07T14:35:18Z #8 66.96 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2023-11-07T14:35:19Z #8 67.31 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2023-11-07T14:35:19Z #8 67.31 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2023-11-07T14:35:19Z #8 67.32 Setting up libatomic1:amd64 (10.2.1-6) ... +2023-11-07T14:35:19Z #8 67.33 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2023-11-07T14:35:19Z #8 67.35 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2023-11-07T14:35:19Z #8 67.36 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2023-11-07T14:35:19Z #8 67.38 Setting up patch (2.7.6-7) ... +2023-11-07T14:35:19Z #8 67.39 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2023-11-07T14:35:19Z #8 67.40 Setting up fonts-dejavu-core (2.37-2) ... +2023-11-07T14:35:19Z #8 67.52 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2023-11-07T14:35:19Z #8 67.53 Setting up libxt6:amd64 (1:1.2.0-1) ... +2023-11-07T14:35:19Z #8 67.54 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2023-11-07T14:35:19Z #8 67.55 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2023-11-07T14:35:19Z #8 67.57 Setting up libubsan1:amd64 (10.2.1-6) ... +2023-11-07T14:35:19Z #8 67.58 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2023-11-07T14:35:19Z #8 67.60 Setting up libatk1.0-data (2.36.0-2) ... +2023-11-07T14:35:19Z #8 67.61 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2023-11-07T14:35:19Z #8 67.63 Setting up alsa-topology-conf (1.2.4-1) ... +2023-11-07T14:35:19Z #8 67.64 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2023-11-07T14:35:19Z #8 67.65 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2023-11-07T14:35:19Z #8 67.67 Setting up libxshmfence1:amd64 (1.3-1) ... +2023-11-07T14:35:19Z #8 67.68 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2023-11-07T14:35:19Z #8 67.70 Setting up libvdpau1:amd64 (1.4-3) ... +2023-11-07T14:35:19Z #8 67.71 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2023-11-07T14:35:19Z #8 67.73 Setting up libwavpack1:amd64 (5.4.0-1) ... +2023-11-07T14:35:19Z #8 67.74 Setting up libxcb-randr0:amd64 (1.14-3) ... +2023-11-07T14:35:20Z #8 68.28 Setting up libasound2:amd64 (1.2.4-1.1) ... +2023-11-07T14:35:20Z #8 68.99 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2023-11-07T14:35:22Z #8 70.38 Setting up libdav1d4:amd64 (0.7.1-3) ... +2023-11-07T14:35:22Z #8 70.72 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2023-11-07T14:35:22Z #8 70.73 Setting up libthai-data (0.1.28-3) ... +2023-11-07T14:35:22Z #8 70.75 Setting up fonts-humor-sans (1.0-4) ... +2023-11-07T14:35:22Z #8 70.76 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2023-11-07T14:35:22Z #8 70.78 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2023-11-07T14:35:22Z #8 70.79 Setting up libtiff5:amd64 (4.2.0-1+deb11u4) ... +2023-11-07T14:35:22Z #8 70.80 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2023-11-07T14:35:22Z #8 70.81 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2023-11-07T14:35:22Z #8 70.83 Setting up glib-networking-common (2.66.0-2) ... +2023-11-07T14:35:22Z #8 70.84 Setting up libbinutils:amd64 (2.35.2-2) ... +2023-11-07T14:35:22Z #8 70.85 Setting up libmfx1:amd64 (21.1.0-1) ... +2023-11-07T14:35:22Z #8 70.87 Setting up libisl23:amd64 (0.23-1) ... +2023-11-07T14:35:22Z #8 70.88 Setting up libc-dev-bin (2.31-13+deb11u7) ... +2023-11-07T14:35:22Z #8 70.89 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2023-11-07T14:35:22Z #8 70.91 Setting up libdrm-common (2.4.104-1) ... +2023-11-07T14:35:22Z #8 70.92 Setting up libelf1:amd64 (0.183-1) ... +2023-11-07T14:35:22Z #8 70.94 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2023-11-07T14:35:22Z #8 70.95 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2023-11-07T14:35:22Z #8 70.97 Setting up libcc1-0:amd64 (10.2.1-6) ... +2023-11-07T14:35:22Z #8 70.98 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2023-11-07T14:35:22Z #8 70.99 Setting up libzvbi-common (0.2.35-18) ... +2023-11-07T14:35:22Z #8 71.00 Setting up liblsan0:amd64 (10.2.1-6) ... +2023-11-07T14:35:22Z #8 71.01 Setting up cpp-10 (10.2.1-6) ... +2023-11-07T14:35:22Z #8 71.03 Setting up libmp3lame0:amd64 (3.100-3) ... +2023-11-07T14:35:22Z #8 71.04 Setting up libitm1:amd64 (10.2.1-6) ... +2023-11-07T14:35:22Z #8 71.05 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2023-11-07T14:35:22Z #8 71.07 Setting up libtsan0:amd64 (10.2.1-6) ... +2023-11-07T14:35:23Z #8 71.08 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2023-11-07T14:35:23Z #8 71.09 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2023-11-07T14:35:23Z #8 71.11 Setting up libctf0:amd64 (2.35.2-2) ... +2023-11-07T14:35:23Z #8 71.12 Setting up glib-networking-services (2.66.0-2) ... +2023-11-07T14:35:23Z #8 71.13 Setting up libzvbi0:amd64 (0.2.35-18) ... +2023-11-07T14:35:23Z #8 71.14 Setting up manpages-dev (5.10-1) ... +2023-11-07T14:35:23Z #8 71.16 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2023-11-07T14:35:23Z #8 71.18 Setting up alsa-ucm-conf (1.2.4-2) ... +2023-11-07T14:35:23Z #8 71.19 Setting up libsoxr0:amd64 (0.1.3-4) ... +2023-11-07T14:35:23Z #8 71.20 Setting up fontconfig-config (2.13.1-4.2) ... +2023-11-07T14:35:23Z #8 71.67 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2023-11-07T14:35:23Z #8 71.69 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2023-11-07T14:35:23Z #8 71.70 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2023-11-07T14:35:23Z #8 71.72 Setting up libx265-192:amd64 (3.4-2) ... +2023-11-07T14:35:23Z #8 71.73 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2023-11-07T14:35:23Z #8 71.74 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2023-11-07T14:35:23Z #8 71.75 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2023-11-07T14:35:23Z #8 71.76 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2023-11-07T14:35:23Z #8 71.78 Setting up libthai0:amd64 (0.1.28-3) ... +2023-11-07T14:35:23Z #8 71.79 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2023-11-07T14:35:23Z #8 71.80 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2023-11-07T14:35:23Z #8 71.81 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2023-11-07T14:35:23Z #8 71.82 Setting up shared-mime-info (2.0-1) ... +2023-11-07T14:35:26Z #8 74.62 Setting up libdrm2:amd64 (2.4.104-1) ... +2023-11-07T14:35:26Z #8 74.63 Setting up libva-drm2:amd64 (2.10.0-1) ... +2023-11-07T14:35:26Z #8 74.65 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2023-11-07T14:35:26Z #8 74.67 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2023-11-07T14:35:26Z #8 74.68 Setting up cpp (4:10.2.1-1) ... +2023-11-07T14:35:26Z #8 74.71 Setting up libc6-dev:amd64 (2.31-13+deb11u7) ... +2023-11-07T14:35:26Z #8 74.72 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2023-11-07T14:35:26Z #8 74.73 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2023-11-07T14:35:26Z #8 74.79 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2023-11-07T14:35:26Z #8 74.90 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2023-11-07T14:35:26Z #8 74.91 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2023-11-07T14:35:26Z #8 74.92 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2023-11-07T14:35:26Z #8 74.94 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2023-11-07T14:35:26Z #8 74.95 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2023-11-07T14:35:26Z #8 74.97 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2023-11-07T14:35:26Z #8 74.98 Setting up fontconfig (2.13.1-4.2) ... +2023-11-07T14:35:28Z #8 75.00 Regenerating fonts cache... done. +2023-11-07T14:35:29Z #8 77.26 Setting up libxft2:amd64 (2.3.2-2) ... +2023-11-07T14:35:29Z #8 77.27 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2023-11-07T14:35:29Z #8 77.28 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2023-11-07T14:35:29Z #8 77.29 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2023-11-07T14:35:29Z #8 77.30 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2023-11-07T14:35:29Z #8 77.32 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2023-11-07T14:35:29Z #8 77.34 Setting up dconf-service (0.38.0-2) ... +2023-11-07T14:35:29Z #8 77.36 Setting up binutils (2.35.2-2) ... +2023-11-07T14:35:29Z #8 77.38 Setting up libcairo2:amd64 (1.16.0-5) ... +2023-11-07T14:35:29Z #8 77.39 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2023-11-07T14:35:29Z #8 77.42 Setting up adwaita-icon-theme (3.38.0-1) ... +2023-11-07T14:35:29Z #8 77.51 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2023-11-07T14:35:29Z #8 77.52 Setting up libgd3:amd64 (2.3.0-2) ... +2023-11-07T14:35:29Z #8 77.53 Setting up gcc-10 (10.2.1-6) ... +2023-11-07T14:35:29Z #8 77.55 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2023-11-07T14:35:29Z #8 77.56 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2023-11-07T14:35:29Z #8 77.58 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2023-11-07T14:35:29Z #8 77.59 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2023-11-07T14:35:29Z #8 77.61 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2023-11-07T14:35:29Z #8 77.63 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2023-11-07T14:35:29Z #8 77.65 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2023-11-07T14:35:29Z #8 77.66 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2023-11-07T14:35:29Z #8 77.68 Setting up libc-devtools (2.31-13+deb11u7) ... +2023-11-07T14:35:29Z #8 77.69 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2023-11-07T14:35:29Z #8 77.71 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2023-11-07T14:35:29Z #8 77.72 Setting up libglx0:amd64 (1.3.2-1) ... +2023-11-07T14:35:29Z #8 77.74 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2023-11-07T14:35:29Z #8 77.75 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2023-11-07T14:35:29Z #8 77.77 Setting up gcc (4:10.2.1-1) ... +2023-11-07T14:35:29Z #8 77.80 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2023-11-07T14:35:29Z #8 77.81 Setting up libgl1:amd64 (1.3.2-1) ... +2023-11-07T14:35:29Z #8 77.83 Setting up va-driver-all:amd64 (2.10.0-1) ... +2023-11-07T14:35:29Z #8 77.84 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2023-11-07T14:35:29Z #8 77.88 Setting up x11-utils (7.7+5) ... +2023-11-07T14:35:29Z #8 77.93 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2023-11-07T14:35:29Z #8 77.96 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2023-11-07T14:35:29Z #8 77.97 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2023-11-07T14:35:29Z #8 77.99 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2023-11-07T14:35:29Z #8 78.01 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2023-11-07T14:35:29Z #8 78.03 Processing triggers for libglib2.0-0:amd64 (2.66.8-1) ... +2023-11-07T14:35:30Z #8 78.07 Processing triggers for libc-bin (2.31-13+deb11u7) ... +2023-11-07T14:35:30Z #8 78.12 Setting up glib-networking:amd64 (2.66.0-2) ... +2023-11-07T14:35:30Z #8 78.13 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2023-11-07T14:35:30Z #8 78.15 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2023-11-07T14:35:30Z #8 78.17 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2023-11-07T14:35:30Z #8 78.18 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2023-11-07T14:35:30Z #8 78.25 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2023-11-07T14:35:30Z #8 78.27 Setting up firefox-esr (115.4.0esr-1~deb11u1) ... +2023-11-07T14:35:30Z #8 78.29 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2023-11-07T14:35:30Z #8 78.29 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2023-11-07T14:35:30Z #8 78.30 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2023-11-07T14:35:30Z #8 78.30 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2023-11-07T14:35:30Z #8 78.31 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2023-11-07T14:35:30Z #8 78.34 Processing triggers for libc-bin (2.31-13+deb11u7) ... +2023-11-07T14:35:34Z #8 DONE 82.8s +2023-11-07T14:35:34Z +2023-11-07T14:35:34Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2023-11-07T14:36:33Z #9 DONE 58.7s +2023-11-07T14:36:33Z +2023-11-07T14:36:33Z #10 [ 5/10] COPY environment.yml /environment.yml +2023-11-07T14:36:33Z #10 DONE 0.1s +2023-11-07T14:36:33Z +2023-11-07T14:36:33Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2023-11-07T14:39:09Z #11 155.9 Transaction +2023-11-07T14:39:09Z #11 155.9 +2023-11-07T14:39:09Z #11 155.9 Prefix: /opt/conda/envs/birdy +2023-11-07T14:39:09Z #11 155.9 +2023-11-07T14:39:09Z #11 155.9 Updating specs: +2023-11-07T14:39:09Z #11 155.9 +2023-11-07T14:39:09Z #11 155.9 - xclim +2023-11-07T14:39:09Z #11 155.9 - ravenpy +2023-11-07T14:39:09Z #11 155.9 - python=3.10 +2023-11-07T14:39:09Z #11 155.9 +2023-11-07T14:39:09Z #11 155.9 +2023-11-07T14:39:09Z #11 156.0 Package Version Build Channel Size +2023-11-07T14:39:09Z #11 156.0 ────────────────────────────────────────────────────────────────────────────────────────────────────── +2023-11-07T14:39:09Z #11 156.0 Install: +2023-11-07T14:39:09Z #11 156.0 ────────────────────────────────────────────────────────────────────────────────────────────────────── +2023-11-07T14:39:09Z #11 156.0 +2023-11-07T14:39:09Z #11 156.0 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2023-11-07T14:39:09Z #11 156.0 + python_abi 3.10 4_cp310 conda-forge 6kB +2023-11-07T14:39:09Z #11 156.0 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB +2023-11-07T14:39:09Z #11 156.0 + libstdcxx-ng 13.2.0 h7e041cc_2 conda-forge Cached +2023-11-07T14:39:09Z #11 156.0 + ca-certificates 2023.7.22 hbcca054_0 conda-forge 150kB +2023-11-07T14:39:09Z #11 156.0 + mpi 1.0 mpich conda-forge 4kB +2023-11-07T14:39:09Z #11 156.0 + libgomp 13.2.0 h807b86a_2 conda-forge Cached +2023-11-07T14:39:09Z #11 156.0 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2023-11-07T14:39:09Z #11 156.0 + libgcc-ng 13.2.0 h807b86a_2 conda-forge Cached +2023-11-07T14:39:09Z #11 156.0 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2023-11-07T14:39:09Z #11 156.0 + uriparser 0.9.7 hcb278e6_1 conda-forge 47kB +2023-11-07T14:39:09Z #11 156.0 + c-ares 1.21.0 hd590300_0 conda-forge 122kB +2023-11-07T14:39:09Z #11 156.0 + libev 4.33 h516909a_1 conda-forge 106kB +2023-11-07T14:39:09Z #11 156.0 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2023-11-07T14:39:09Z #11 156.0 + rdma-core 28.9 h59595ed_1 conda-forge 4MB +2023-11-07T14:39:09Z #11 156.0 + libnuma 2.0.16 h0b41bf4_1 conda-forge 41kB +2023-11-07T14:39:09Z #11 156.0 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2023-11-07T14:39:09Z #11 156.0 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2023-11-07T14:39:09Z #11 156.0 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2023-11-07T14:39:09Z #11 156.0 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2023-11-07T14:39:09Z #11 156.0 + pixman 0.42.2 h59595ed_0 conda-forge 385kB +2023-11-07T14:39:09Z #11 156.0 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2023-11-07T14:39:09Z #11 156.0 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2023-11-07T14:39:09Z #11 156.0 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2023-11-07T14:39:09Z #11 156.0 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2023-11-07T14:39:09Z #11 156.0 + libaec 1.1.2 h59595ed_1 conda-forge 35kB +2023-11-07T14:39:09Z #11 156.0 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2023-11-07T14:39:09Z #11 156.0 + aws-c-common 0.8.23 hd590300_0 conda-forge 197kB +2023-11-07T14:39:09Z #11 156.0 + libbrotlicommon 1.0.9 h166bdaf_9 conda-forge 71kB +2023-11-07T14:39:09Z #11 156.0 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB +2023-11-07T14:39:09Z #11 156.0 + libexpat 2.5.0 hcb278e6_1 conda-forge 78kB +2023-11-07T14:39:09Z #11 156.0 + freexl 1.0.6 h166bdaf_1 conda-forge 50kB +2023-11-07T14:39:09Z #11 156.0 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB +2023-11-07T14:39:09Z #11 156.0 + nspr 4.35 h27087fc_0 conda-forge 227kB +2023-11-07T14:39:09Z #11 156.0 + jpeg 9e h0b41bf4_3 conda-forge 240kB +2023-11-07T14:39:09Z #11 156.0 + tzcode 2023c h0b41bf4_0 conda-forge 69kB +2023-11-07T14:39:09Z #11 156.0 + snappy 1.1.10 h9fff704_0 conda-forge 39kB +2023-11-07T14:39:09Z #11 156.0 + re2 2023.03.02 h8c504da_0 conda-forge 201kB +2023-11-07T14:39:09Z #11 156.0 + libabseil 20230125.3 cxx17_h59595ed_0 conda-forge 1MB +2023-11-07T14:39:09Z #11 156.0 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2023-11-07T14:39:09Z #11 156.0 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2023-11-07T14:39:09Z #11 156.0 + libgfortran5 13.2.0 ha4646dd_2 conda-forge 1MB +2023-11-07T14:39:09Z #11 156.0 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB +2023-11-07T14:39:09Z #11 156.0 + gettext 0.21.1 h27087fc_0 conda-forge 4MB +2023-11-07T14:39:09Z #11 156.0 + libdeflate 1.17 h0b41bf4_0 conda-forge 65kB +2023-11-07T14:39:09Z #11 156.0 + libiconv 1.17 h166bdaf_0 conda-forge Cached +2023-11-07T14:39:09Z #11 156.0 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2023-11-07T14:39:09Z #11 156.0 + json-c 0.16 hc379101_0 conda-forge 281kB +2023-11-07T14:39:09Z #11 156.0 + icu 70.1 h27087fc_0 conda-forge 14MB +2023-11-07T14:39:09Z #11 156.0 + geos 3.11.1 h27087fc_0 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + ncurses 6.4 h59595ed_2 conda-forge 884kB +2023-11-07T14:39:09Z #11 156.0 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2023-11-07T14:39:09Z #11 156.0 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2023-11-07T14:39:09Z #11 156.0 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2023-11-07T14:39:09Z #11 156.0 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2023-11-07T14:39:09Z #11 156.0 + openssl 3.1.4 hd590300_0 conda-forge Cached +2023-11-07T14:39:09Z #11 156.0 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB +2023-11-07T14:39:09Z #11 156.0 + libnsl 2.0.1 hd590300_0 conda-forge 33kB +2023-11-07T14:39:09Z #11 156.0 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2023-11-07T14:39:09Z #11 156.0 + ucx 1.14.1 h64cca9d_5 conda-forge 15MB +2023-11-07T14:39:09Z #11 156.0 + glog 0.6.0 h6f12383_0 conda-forge 114kB +2023-11-07T14:39:09Z #11 156.0 + libxcb 1.13 h7f98852_1004 conda-forge 400kB +2023-11-07T14:39:09Z #11 156.0 + aws-checksums 0.1.16 h862ab75_1 conda-forge 50kB +2023-11-07T14:39:09Z #11 156.0 + aws-c-compression 0.2.17 h862ab75_1 conda-forge 19kB +2023-11-07T14:39:09Z #11 156.0 + aws-c-sdkutils 0.1.11 h862ab75_1 conda-forge 53kB +2023-11-07T14:39:09Z #11 156.0 + libbrotlienc 1.0.9 h166bdaf_9 conda-forge 265kB +2023-11-07T14:39:09Z #11 156.0 + libbrotlidec 1.0.9 h166bdaf_9 conda-forge 33kB +2023-11-07T14:39:09Z #11 156.0 + expat 2.5.0 hcb278e6_1 conda-forge 137kB +2023-11-07T14:39:09Z #11 156.0 + libgfortran-ng 13.2.0 h69a702a_2 conda-forge 24kB +2023-11-07T14:39:09Z #11 156.0 + librttopo 1.1.0 ha49c73b_12 conda-forge 242kB +2023-11-07T14:39:09Z #11 156.0 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2023-11-07T14:39:09Z #11 156.0 + readline 8.2 h8228510_1 conda-forge 281kB +2023-11-07T14:39:09Z #11 156.0 + libprotobuf 4.23.3 hd1fb520_1 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + libkml 1.3.0 h01aab08_1016 conda-forge 511kB +2023-11-07T14:39:09Z #11 156.0 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2023-11-07T14:39:09Z #11 156.0 + libpng 1.6.39 h753d276_0 conda-forge 283kB +2023-11-07T14:39:09Z #11 156.0 + zlib 1.2.13 hd590300_5 conda-forge Cached +2023-11-07T14:39:09Z #11 156.0 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2023-11-07T14:39:09Z #11 156.0 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB +2023-11-07T14:39:09Z #11 156.0 + libsqlite 3.44.0 h2797004_0 conda-forge 846kB +2023-11-07T14:39:09Z #11 156.0 + pcre2 10.40 hc3806b6_0 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2023-11-07T14:39:09Z #11 156.0 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2023-11-07T14:39:09Z #11 156.0 + s2n 1.3.46 h06160fa_0 conda-forge 367kB +2023-11-07T14:39:09Z #11 156.0 + aws-c-cal 0.6.0 h93469e0_0 conda-forge 50kB +2023-11-07T14:39:09Z #11 156.0 + libnghttp2 1.55.1 h47da74e_0 conda-forge 628kB +2023-11-07T14:39:09Z #11 156.0 + libssh2 1.11.0 h0841786_0 conda-forge 271kB +2023-11-07T14:39:09Z #11 156.0 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2023-11-07T14:39:09Z #11 156.0 + libxml2 2.10.3 hca2bb57_4 conda-forge 714kB +2023-11-07T14:39:09Z #11 156.0 + xorg-libx11 1.8.4 h0b41bf4_0 conda-forge 830kB +2023-11-07T14:39:09Z #11 156.0 + brotli-bin 1.0.9 h166bdaf_9 conda-forge 20kB +2023-11-07T14:39:09Z #11 156.0 + mpich 4.0.3 h846660c_100 conda-forge 6MB +2023-11-07T14:39:09Z #11 156.0 + libopenblas 0.3.24 pthreads_h413a1c8_0 conda-forge 5MB +2023-11-07T14:39:09Z #11 156.0 + krb5 1.20.1 h81ceb04_0 conda-forge 1MB +2023-11-07T14:39:09Z #11 156.0 + libgrpc 1.56.2 h3905398_1 conda-forge 6MB +2023-11-07T14:39:09Z #11 156.0 + orc 1.9.0 h385abfd_1 conda-forge 1MB +2023-11-07T14:39:09Z #11 156.0 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB +2023-11-07T14:39:09Z #11 156.0 + boost-cpp 1.78.0 h5adbc97_2 conda-forge 16MB +2023-11-07T14:39:09Z #11 156.0 + libtiff 4.5.0 h6adf6a1_2 conda-forge 407kB +2023-11-07T14:39:09Z #11 156.0 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2023-11-07T14:39:09Z #11 156.0 + hdf4 4.2.15 h9772cbc_5 conda-forge 974kB +2023-11-07T14:39:09Z #11 156.0 + nss 3.94 h1d7d5a4_0 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + sqlite 3.44.0 h2c6b66d_0 conda-forge 837kB +2023-11-07T14:39:09Z #11 156.0 + libglib 2.78.1 hebfc3b9_0 conda-forge 3MB +2023-11-07T14:39:09Z #11 156.0 + libthrift 0.18.1 h8fd135c_2 conda-forge 4MB +2023-11-07T14:39:09Z #11 156.0 + aws-c-io 0.13.28 h3870b5a_0 conda-forge 155kB +2023-11-07T14:39:09Z #11 156.0 + libxslt 1.1.37 h873f0b0_0 conda-forge 258kB +2023-11-07T14:39:09Z #11 156.0 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2023-11-07T14:39:09Z #11 156.0 + xorg-libxrender 0.9.10 h7f98852_1003 conda-forge 33kB +2023-11-07T14:39:09Z #11 156.0 + brotli 1.0.9 h166bdaf_9 conda-forge 20kB +2023-11-07T14:39:09Z #11 156.0 + libblas 3.9.0 19_linux64_openblas conda-forge 15kB +2023-11-07T14:39:09Z #11 156.0 + libpq 15.2 hb675445_0 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + libcurl 8.1.2 h409715c_0 conda-forge 373kB +2023-11-07T14:39:09Z #11 156.0 + lcms2 2.15 hfd0df8a_0 conda-forge 241kB +2023-11-07T14:39:09Z #11 156.0 + openjpeg 2.5.0 hfec8fc6_2 conda-forge 352kB +2023-11-07T14:39:09Z #11 156.0 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2023-11-07T14:39:09Z #11 156.0 + aws-c-event-stream 0.3.1 h9599702_1 conda-forge 54kB +2023-11-07T14:39:09Z #11 156.0 + aws-c-http 0.7.11 hbe98c3e_0 conda-forge 194kB +2023-11-07T14:39:09Z #11 156.0 + libcblas 3.9.0 19_linux64_openblas conda-forge 14kB +2023-11-07T14:39:09Z #11 156.0 + liblapack 3.9.0 19_linux64_openblas conda-forge 14kB +2023-11-07T14:39:09Z #11 156.0 + libgoogle-cloud 2.12.0 h840a212_1 conda-forge 46MB +2023-11-07T14:39:09Z #11 156.0 + xerces-c 3.2.4 h55805fa_1 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + proj 9.1.1 h8ffa02c_2 conda-forge 3MB +2023-11-07T14:39:09Z #11 156.0 + curl 8.1.2 h409715c_0 conda-forge 91kB +2023-11-07T14:39:09Z #11 156.0 + hdf5 1.12.2 mpi_mpich_h5d83325_1 conda-forge 3MB +2023-11-07T14:39:09Z #11 156.0 + cfitsio 4.2.0 hd9d235c_0 conda-forge 848kB +2023-11-07T14:39:09Z #11 156.0 + aws-c-mqtt 0.8.14 h2e270ba_2 conda-forge 154kB +2023-11-07T14:39:09Z #11 156.0 + aws-c-auth 0.7.0 hf8751d9_2 conda-forge 102kB +2023-11-07T14:39:09Z #11 156.0 + libspatialite 5.0.1 h221c8f1_23 conda-forge 4MB +2023-11-07T14:39:09Z #11 156.0 + geotiff 1.7.1 h7a142b4_6 conda-forge 259kB +2023-11-07T14:39:09Z #11 156.0 + tiledb 2.13.2 hd532e3d_0 conda-forge 5MB +2023-11-07T14:39:09Z #11 156.0 + libnetcdf 4.8.1 mpi_mpich_hcd871d9_6 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + kealib 1.5.0 ha7026e8_0 conda-forge 164kB +2023-11-07T14:39:09Z #11 156.0 + aws-c-s3 0.3.13 heb0bb06_2 conda-forge 87kB +2023-11-07T14:39:09Z #11 156.0 + netcdf-fortran 4.6.0 mpi_mpich_h1e13492_2 conda-forge 598kB +2023-11-07T14:39:09Z #11 156.0 + parallelio 2.5.10 mpi_mpich_h862c5c2_100 conda-forge 359kB +2023-11-07T14:39:09Z #11 156.0 + aws-crt-cpp 0.20.3 he9c0e7f_4 conda-forge 321kB +2023-11-07T14:39:09Z #11 156.0 + esmf 8.4.0 mpi_mpich_hc592774_104 conda-forge 25MB +2023-11-07T14:39:09Z #11 156.0 + aws-sdk-cpp 1.10.57 hbc2ea52_17 conda-forge 4MB +2023-11-07T14:39:09Z #11 156.0 + libarrow 12.0.1 h657c46f_7_cpu conda-forge 28MB +2023-11-07T14:39:09Z #11 156.0 + tzdata 2023c h71feb2d_0 conda-forge 118kB +2023-11-07T14:39:09Z #11 156.0 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2023-11-07T14:39:09Z #11 156.0 + font-ttf-ubuntu 0.83 hab24e00_0 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2023-11-07T14:39:09Z #11 156.0 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2023-11-07T14:39:09Z #11 156.0 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + fonts-conda-forge 1 0 conda-forge 4kB +2023-11-07T14:39:09Z #11 156.0 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2023-11-07T14:39:09Z #11 156.0 + postgresql 15.2 h3248436_0 conda-forge 5MB +2023-11-07T14:39:09Z #11 156.0 + python 3.10.13 hd12c33a_0_cpython conda-forge 25MB +2023-11-07T14:39:09Z #11 156.0 + cairo 1.16.0 ha61ee94_1014 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + poppler 23.01.0 h091648b_0 conda-forge 16MB +2023-11-07T14:39:09Z #11 156.0 + libgdal 3.6.2 h8c90c07_6 conda-forge 10MB +2023-11-07T14:39:09Z #11 156.0 + wheel 0.41.3 pyhd8ed1ab_0 conda-forge 58kB +2023-11-07T14:39:09Z #11 156.0 + setuptools 68.2.2 pyhd8ed1ab_0 conda-forge 464kB +2023-11-07T14:39:09Z #11 156.0 + pip 23.3.1 pyhd8ed1ab_0 conda-forge 1MB +2023-11-07T14:39:09Z #11 156.0 + backports 1.0 pyhd8ed1ab_3 conda-forge 6kB +2023-11-07T14:39:09Z #11 156.0 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB +2023-11-07T14:39:09Z #11 156.0 + pure_eval 0.2.2 pyhd8ed1ab_0 conda-forge 15kB +2023-11-07T14:39:09Z #11 156.0 + executing 2.0.1 pyhd8ed1ab_0 conda-forge 28kB +2023-11-07T14:39:09Z #11 156.0 + ptyprocess 0.7.0 pyhd3deb0d_0 conda-forge 17kB +2023-11-07T14:39:09Z #11 156.0 + pygments 2.16.1 pyhd8ed1ab_0 conda-forge 853kB +2023-11-07T14:39:09Z #11 156.0 + exceptiongroup 1.1.3 pyhd8ed1ab_0 conda-forge 19kB +2023-11-07T14:39:09Z #11 156.0 + traitlets 5.13.0 pyhd8ed1ab_0 conda-forge 110kB +2023-11-07T14:39:09Z #11 156.0 + parso 0.8.3 pyhd8ed1ab_0 conda-forge 71kB +2023-11-07T14:39:09Z #11 156.0 + decorator 5.1.1 pyhd8ed1ab_0 conda-forge 12kB +2023-11-07T14:39:09Z #11 156.0 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2023-11-07T14:39:09Z #11 156.0 + pox 0.3.3 pyhd8ed1ab_0 conda-forge 26kB +2023-11-07T14:39:09Z #11 156.0 + dill 0.3.7 pyhd8ed1ab_0 conda-forge 88kB +2023-11-07T14:39:09Z #11 156.0 + appdirs 1.4.4 pyh9f0ad1d_0 conda-forge 13kB +2023-11-07T14:39:09Z #11 156.0 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2023-11-07T14:39:09Z #11 156.0 + idna 3.4 pyhd8ed1ab_0 conda-forge 57kB +2023-11-07T14:39:09Z #11 156.0 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2023-11-07T14:39:09Z #11 156.0 + future 0.18.3 pyhd8ed1ab_0 conda-forge 366kB +2023-11-07T14:39:09Z #11 156.0 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2023-11-07T14:39:09Z #11 156.0 + pyparsing 3.1.1 pyhd8ed1ab_0 conda-forge 90kB +2023-11-07T14:39:09Z #11 156.0 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2023-11-07T14:39:09Z #11 156.0 + certifi 2023.7.22 pyhd8ed1ab_0 conda-forge Cached +2023-11-07T14:39:09Z #11 156.0 + haversine 2.8.0 pyhd8ed1ab_0 conda-forge 13kB +2023-11-07T14:39:09Z #11 156.0 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2023-11-07T14:39:09Z #11 156.0 + threadpoolctl 3.2.0 pyha21a80b_0 conda-forge 21kB +2023-11-07T14:39:09Z #11 156.0 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB +2023-11-07T14:39:09Z #11 156.0 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB +2023-11-07T14:39:09Z #11 156.0 + pickleshare 0.7.5 py_1003 conda-forge 9kB +2023-11-07T14:39:09Z #11 156.0 + fsspec 2023.10.0 pyhca7485f_0 conda-forge 125kB +2023-11-07T14:39:09Z #11 156.0 + tblib 2.0.0 pyhd8ed1ab_0 conda-forge 17kB +2023-11-07T14:39:09Z #11 156.0 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2023-11-07T14:39:09Z #11 156.0 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2023-11-07T14:39:09Z #11 156.0 + typing_extensions 4.8.0 pyha770c72_0 conda-forge 35kB +2023-11-07T14:39:09Z #11 156.0 + packaging 23.2 pyhd8ed1ab_0 conda-forge 49kB +2023-11-07T14:39:09Z #11 156.0 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2023-11-07T14:39:09Z #11 156.0 + munch 4.0.0 pyhd8ed1ab_0 conda-forge 15kB +2023-11-07T14:39:09Z #11 156.0 + attrs 23.1.0 pyh71513ae_1 conda-forge 55kB +2023-11-07T14:39:09Z #11 156.0 + pytz 2023.3.post1 pyhd8ed1ab_0 conda-forge 187kB +2023-11-07T14:39:09Z #11 156.0 + python-tzdata 2023.3 pyhd8ed1ab_0 conda-forge 143kB +2023-11-07T14:39:09Z #11 156.0 + toolz 0.12.0 pyhd8ed1ab_0 conda-forge 49kB +2023-11-07T14:39:09Z #11 156.0 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2023-11-07T14:39:09Z #11 156.0 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2023-11-07T14:39:09Z #11 156.0 + boltons 23.0.0 pyhd8ed1ab_0 conda-forge 303kB +2023-11-07T14:39:09Z #11 156.0 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2023-11-07T14:39:09Z #11 156.0 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2023-11-07T14:39:09Z #11 156.0 + backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0 conda-forge 12kB +2023-11-07T14:39:09Z #11 156.0 + pexpect 4.8.0 pyh1a96a4e_2 conda-forge 49kB +2023-11-07T14:39:09Z #11 156.0 + matplotlib-inline 0.1.6 pyhd8ed1ab_0 conda-forge 12kB +2023-11-07T14:39:09Z #11 156.0 + jedi 0.19.1 pyhd8ed1ab_0 conda-forge 841kB +2023-11-07T14:39:09Z #11 156.0 + typing-extensions 4.8.0 hd8ed1ab_0 conda-forge 10kB +2023-11-07T14:39:09Z #11 156.0 + pint 0.22 pyhd8ed1ab_1 conda-forge 230kB +2023-11-07T14:39:09Z #11 156.0 + asttokens 2.4.1 pyhd8ed1ab_0 conda-forge 29kB +2023-11-07T14:39:09Z #11 156.0 + ppft 1.7.6.7 pyhd8ed1ab_0 conda-forge 34kB +2023-11-07T14:39:09Z #11 156.0 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2023-11-07T14:39:09Z #11 156.0 + python-dateutil 2.8.2 pyhd8ed1ab_0 conda-forge 246kB +2023-11-07T14:39:09Z #11 156.0 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2023-11-07T14:39:09Z #11 156.0 + importlib-metadata 6.8.0 pyha770c72_0 conda-forge 26kB +2023-11-07T14:39:09Z #11 156.0 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2023-11-07T14:39:09Z #11 156.0 + click-plugins 1.1.1 py_0 conda-forge 9kB +2023-11-07T14:39:09Z #11 156.0 + wcwidth 0.2.9 pyhd8ed1ab_0 conda-forge 30kB +2023-11-07T14:39:09Z #11 156.0 + platformdirs 3.11.0 pyhd8ed1ab_0 conda-forge 20kB +2023-11-07T14:39:09Z #11 156.0 + stack_data 0.6.2 pyhd8ed1ab_0 conda-forge 26kB +2023-11-07T14:39:09Z #11 156.0 + importlib_metadata 6.8.0 hd8ed1ab_0 conda-forge 9kB +2023-11-07T14:39:09Z #11 156.0 + prompt-toolkit 3.0.39 pyha770c72_0 conda-forge 269kB +2023-11-07T14:39:09Z #11 156.0 + pytools 2023.1.1 pyhd8ed1ab_0 conda-forge 71kB +2023-11-07T14:39:09Z #11 156.0 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB +2023-11-07T14:39:09Z #11 156.0 + prompt_toolkit 3.0.39 hd8ed1ab_0 conda-forge 7kB +2023-11-07T14:39:09Z #11 156.0 + ipython 8.17.2 pyh41d4057_0 conda-forge 590kB +2023-11-07T14:39:09Z #11 156.0 + rtree 1.1.0 py310hbdcdc62_0 conda-forge 50kB +2023-11-07T14:39:09Z #11 156.0 + brotli-python 1.0.9 py310hd8f1fbe_9 conda-forge 326kB +2023-11-07T14:39:09Z #11 156.0 + mpi4py 3.1.4 py310h37cc914_0 conda-forge 631kB +2023-11-07T14:39:09Z #11 156.0 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB +2023-11-07T14:39:09Z #11 156.0 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB +2023-11-07T14:39:09Z #11 156.0 + lxml 4.9.2 py310hbdc0903_0 conda-forge 1MB +2023-11-07T14:39:09Z #11 156.0 + markupsafe 2.1.3 py310h2372a71_1 conda-forge 24kB +2023-11-07T14:39:09Z #11 156.0 + pillow 9.4.0 py310h023d228_1 conda-forge 46MB +2023-11-07T14:39:09Z #11 156.0 + lz4 4.3.2 py310h350c4a5_1 conda-forge 37kB +2023-11-07T14:39:09Z #11 156.0 + tornado 6.3.3 py310h2372a71_1 conda-forge 642kB +2023-11-07T14:39:09Z #11 156.0 + psutil 5.9.5 py310h2372a71_1 conda-forge 361kB +2023-11-07T14:39:09Z #11 156.0 + msgpack-python 1.0.6 py310hd41b1e2_0 conda-forge 197kB +2023-11-07T14:39:09Z #11 156.0 + raven-hydro 0.2.4 py310hee4f699_0 conda-forge 786kB +2023-11-07T14:39:09Z #11 156.0 + llvmlite 0.40.1 py310h1b8f574_0 conda-forge 3MB +2023-11-07T14:39:09Z #11 156.0 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB +2023-11-07T14:39:09Z #11 156.0 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB +2023-11-07T14:39:09Z #11 156.0 + multiprocess 0.70.15 py310h2372a71_1 conda-forge 243kB +2023-11-07T14:39:09Z #11 156.0 + pyproj 3.5.0 py310h15e2413_0 conda-forge 447kB +2023-11-07T14:39:09Z #11 156.0 + cytoolz 0.12.2 py310h2372a71_1 conda-forge 368kB +2023-11-07T14:39:09Z #11 156.0 + pydantic 1.10.13 py310h2372a71_1 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + fonttools 4.44.0 py310h2372a71_0 conda-forge 2MB +2023-11-07T14:39:09Z #11 156.0 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB +2023-11-07T14:39:09Z #11 156.0 + esmpy 8.4.0 mpi_mpich_py310h515c5ea_102 conda-forge 46MB +2023-11-07T14:39:09Z #11 156.0 + pyarrow 12.0.1 py310h0576679_7_cpu conda-forge 4MB +2023-11-07T14:39:09Z #11 156.0 + shapely 2.0.1 py310h8b84c32_0 conda-forge 422kB +2023-11-07T14:39:09Z #11 156.0 + gdal 3.6.2 py310hc1b7723_6 conda-forge 1MB +2023-11-07T14:39:09Z #11 156.0 + scipy 1.11.3 py310hb13e2d6_1 conda-forge 15MB +2023-11-07T14:39:09Z #11 156.0 + pandas 2.1.2 py310hcc13569_0 conda-forge 12MB +2023-11-07T14:39:09Z #11 156.0 + numba 0.57.1 py310h0f6aa51_0 conda-forge 4MB +2023-11-07T14:39:09Z #11 156.0 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB +2023-11-07T14:39:09Z #11 156.0 + bottleneck 1.3.7 py310h1f7b6fc_1 conda-forge 125kB +2023-11-07T14:39:09Z #11 156.0 + matplotlib-base 3.8.1 py310h62c0568_0 conda-forge 7MB +2023-11-07T14:39:09Z #11 156.0 + fiona 1.9.1 py310ha325b7b_0 conda-forge 856kB +2023-11-07T14:39:09Z #11 156.0 + pyogrio 0.5.1 py310ha325b7b_0 conda-forge 560kB +2023-11-07T14:39:09Z #11 156.0 + scikit-learn 1.3.2 py310h1fdf081_1 conda-forge 8MB +2023-11-07T14:39:09Z #11 156.0 + netcdf4 1.6.2 nompi_py310h55e1e36_100 conda-forge 490kB +2023-11-07T14:39:09Z #11 156.0 + urllib3 2.0.7 pyhd8ed1ab_0 conda-forge 99kB +2023-11-07T14:39:09Z #11 156.0 + jinja2 3.1.2 pyhd8ed1ab_1 conda-forge 101kB +2023-11-07T14:39:09Z #11 156.0 + dask-core 2023.10.1 pyhd8ed1ab_0 conda-forge 863kB +2023-11-07T14:39:09Z #11 156.0 + snuggs 1.4.7 py_0 conda-forge 8kB +2023-11-07T14:39:09Z #11 156.0 + eofs 1.4.0 py_0 conda-forge 958kB +2023-11-07T14:39:09Z #11 156.0 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2023-11-07T14:39:09Z #11 156.0 + pathos 0.3.1 pyhd8ed1ab_0 conda-forge 52kB +2023-11-07T14:39:09Z #11 156.0 + patsy 0.5.3 pyhd8ed1ab_0 conda-forge 194kB +2023-11-07T14:39:09Z #11 156.0 + lmoments3 1.0.6 pyhd8ed1ab_0 conda-forge 36kB +2023-11-07T14:39:09Z #11 156.0 + properscoring 0.1 py_0 conda-forge 22kB +2023-11-07T14:39:09Z #11 156.0 + geopandas-base 0.14.0 pyha770c72_1 conda-forge 1MB +2023-11-07T14:39:09Z #11 156.0 + xarray 2023.8.0 pyhd8ed1ab_0 conda-forge 690kB +2023-11-07T14:39:09Z #11 156.0 + sparse 0.14.0 pyhd8ed1ab_0 conda-forge 66kB +2023-11-07T14:39:09Z #11 156.0 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2023-11-07T14:39:09Z #11 156.0 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2023-11-07T14:39:09Z #11 156.0 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2023-11-07T14:39:09Z #11 156.0 + branca 0.7.0 pyhd8ed1ab_1 conda-forge 29kB +2023-11-07T14:39:09Z #11 156.0 + bokeh 3.3.0 pyhd8ed1ab_0 conda-forge 5MB +2023-11-07T14:39:09Z #11 156.0 + distributed 2023.10.1 pyhd8ed1ab_0 conda-forge 791kB +2023-11-07T14:39:09Z #11 156.0 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2023-11-07T14:39:09Z #11 156.0 + cf_xarray 0.8.6 pyhd8ed1ab_0 conda-forge 53kB +2023-11-07T14:39:09Z #11 156.0 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2023-11-07T14:39:09Z #11 156.0 + folium 0.15.0 pyhd8ed1ab_0 conda-forge 73kB +2023-11-07T14:39:09Z #11 156.0 + dask 2023.10.1 pyhd8ed1ab_0 conda-forge 7kB +2023-11-07T14:39:09Z #11 156.0 + xesmf 0.8.2 pyhd8ed1ab_0 conda-forge 44kB +2023-11-07T14:39:09Z #11 156.0 + geopandas 0.14.0 pyhd8ed1ab_1 conda-forge 8kB +2023-11-07T14:39:09Z #11 156.0 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2023-11-07T14:39:09Z #11 156.0 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2023-11-07T14:39:09Z #11 156.0 + xskillscore 0.0.24 pyhd8ed1ab_0 conda-forge 59kB +2023-11-07T14:39:09Z #11 156.0 + rasterio 1.3.6 py310h3e853a9_0 conda-forge 7MB +2023-11-07T14:39:09Z #11 156.0 + statsmodels 0.14.0 py310h1f7b6fc_2 conda-forge 10MB +2023-11-07T14:39:09Z #11 156.0 + xclim 0.46.0 py310hff52083_0 conda-forge 890kB +2023-11-07T14:39:09Z #11 156.0 + rioxarray 0.15.0 pyhd8ed1ab_0 conda-forge 47kB +2023-11-07T14:39:09Z #11 156.0 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2023-11-07T14:39:09Z #11 156.0 + climpred 2.3.0 pyhd8ed1ab_0 conda-forge 128kB +2023-11-07T14:39:09Z #11 156.0 + ravenpy 0.12.3 py310hff52083_0 conda-forge 6MB +2023-11-07T14:39:09Z #11 156.0 +2023-11-07T14:39:09Z #11 156.0 Summary: +2023-11-07T14:39:09Z #11 156.0 +2023-11-07T14:39:09Z #11 156.0 Install: 296 packages +2023-11-07T14:39:09Z #11 156.0 +2023-11-07T14:39:09Z #11 156.0 Total download: 557MB +2023-11-07T14:39:09Z #11 156.0 +2023-11-07T14:39:09Z #11 156.0 ────────────────────────────────────────────────────────────────────────────────────────────────────── +2023-11-07T14:39:09Z #11 156.0 +2023-11-07T14:39:09Z #11 156.0 +2023-11-07T14:40:56Z #11 263.1 +2023-11-07T14:40:56Z #11 263.1 Looking for: ['xclim', 'ravenpy', 'python=3.10'] +2023-11-07T14:40:56Z #11 263.1 +2023-11-07T14:40:56Z #11 263.1 +2023-11-07T14:40:56Z #11 263.1 Downloading and Extracting Packages: ...working... done +2023-11-07T14:41:01Z #11 263.1 Preparing transaction: ...working... done +2023-11-07T14:41:20Z #11 267.7 Verifying transaction: ...working... done +2023-11-07T14:41:55Z #11 287.2 Executing transaction: ...working... done +2023-11-07T14:41:55Z #11 322.3 +2023-11-07T14:41:55Z #11 322.3 To activate this environment, use +2023-11-07T14:41:55Z #11 322.3 +2023-11-07T14:41:55Z #11 322.3 $ mamba activate birdy +2023-11-07T14:41:55Z #11 322.3 +2023-11-07T14:41:55Z #11 322.3 To deactivate an active environment, use +2023-11-07T14:41:55Z #11 322.3 +2023-11-07T14:41:55Z #11 322.3 $ mamba deactivate +2023-11-07T14:41:55Z #11 322.3 +2023-11-07T14:41:56Z #11 323.1 conda-forge/linux-64 Using cache +2023-11-07T14:41:56Z #11 323.1 conda-forge/noarch Using cache +2023-11-07T14:42:03Z #11 330.3 +2023-11-07T14:42:03Z #11 330.3 +2023-11-07T14:42:03Z #11 330.3 Looking for: ["xclim[version='>=0.44.0']", "ravenpy[version='>=0.12.2']", 'flox', 'matplotlib', 'numpy', 'cf_xarray!=0.8.1', 'birdy', "libnetcdf[version='<=4.8.1']", 'cfgrib', 'pydap', "cartopy[version='>=0.21.0']", 'pykdtree', 'descartes', 'pyogrio', 'scikit-image', 'ipyleaflet', 'threddsclient', 'bokeh', 'regionmask', 'siphon', 'jupyter_bokeh', 'pscript', 'h5netcdf', "panel[version='>=1.2.2']", 'pyviz_comms', 'holoviews', "geoviews[version='>=1.9.6']", 'hvplot', 'streamlit', 'seaborn', 'python-pptx', 'nc-time-axis', 'aiohttp', 'intake', "intake-esm[version='>=2023.6.14']", 'intake-xarray', 'intake-geopandas', 'intake-thredds', 'gcsfs', 'zarr', 's3fs', "clisops[version='>=0.9.2']", "xesmf[version='>=0.6.2']", 'geopy', 'memory_profiler', 'esgf-compute-api', 'esgf-pyclient', 'cdms2', 'mesalib', 'pytest', 'pytest-xdist', 'nbval', 'jupyter', 'notebook', 'jupyterlab', 'jupyterhub', 'ipywidgets', 'ipyleaflet', 'mamba_gator', 'nbdime', 'jupytext', 'jupyterlab-git', 'voila', 'jupyter-archive', 'jupyterlab-topbar', 'jupyterlab-system-monitor', 'jupyter-resource-usage', 'nbresuse', 'xeus-python', 'jupyter-dash', 'jupyter-server-proxy', 'dask-labextension', "nodejs[version='>=16.0']", 'curl', 'wget', 'nested_dict', 'urlpath', 'paramiko', 'pymetalink', 'requests-magpie', 'scp', 'selenium', 'geckodriver', 'xlrd', 'pre-commit', 'pip'] +2023-11-07T14:42:03Z #11 330.3 +2023-11-07T14:42:03Z #11 330.3 +2023-11-07T14:44:08Z #11 455.2 Transaction +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 Prefix: /opt/conda/envs/birdy +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 Updating specs: +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 - flox +2023-11-07T14:44:08Z #11 455.2 - matplotlib +2023-11-07T14:44:08Z #11 455.2 - birdy +2023-11-07T14:44:08Z #11 455.2 - cfgrib +2023-11-07T14:44:08Z #11 455.2 - pydap +2023-11-07T14:44:08Z #11 455.2 - cartopy[version='>=0.21.0'] +2023-11-07T14:44:08Z #11 455.2 - pykdtree +2023-11-07T14:44:08Z #11 455.2 - descartes +2023-11-07T14:44:08Z #11 455.2 - scikit-image +2023-11-07T14:44:08Z #11 455.2 - ipyleaflet +2023-11-07T14:44:08Z #11 455.2 - threddsclient +2023-11-07T14:44:08Z #11 455.2 - regionmask +2023-11-07T14:44:08Z #11 455.2 - siphon +2023-11-07T14:44:08Z #11 455.2 - jupyter_bokeh +2023-11-07T14:44:08Z #11 455.2 - pscript +2023-11-07T14:44:08Z #11 455.2 - h5netcdf +2023-11-07T14:44:08Z #11 455.2 - panel[version='>=1.2.2'] +2023-11-07T14:44:08Z #11 455.2 - pyviz_comms +2023-11-07T14:44:08Z #11 455.2 - holoviews +2023-11-07T14:44:08Z #11 455.2 - geoviews[version='>=1.9.6'] +2023-11-07T14:44:08Z #11 455.2 - hvplot +2023-11-07T14:44:08Z #11 455.2 - streamlit +2023-11-07T14:44:08Z #11 455.2 - seaborn +2023-11-07T14:44:08Z #11 455.2 - python-pptx +2023-11-07T14:44:08Z #11 455.2 - aiohttp +2023-11-07T14:44:08Z #11 455.2 - intake +2023-11-07T14:44:08Z #11 455.2 - intake-esm[version='>=2023.6.14'] +2023-11-07T14:44:08Z #11 455.2 - intake-xarray +2023-11-07T14:44:08Z #11 455.2 - intake-geopandas +2023-11-07T14:44:08Z #11 455.2 - intake-thredds +2023-11-07T14:44:08Z #11 455.2 - gcsfs +2023-11-07T14:44:08Z #11 455.2 - zarr +2023-11-07T14:44:08Z #11 455.2 - s3fs +2023-11-07T14:44:08Z #11 455.2 - clisops[version='>=0.9.2'] +2023-11-07T14:44:08Z #11 455.2 - geopy +2023-11-07T14:44:08Z #11 455.2 - memory_profiler +2023-11-07T14:44:08Z #11 455.2 - esgf-compute-api +2023-11-07T14:44:08Z #11 455.2 - esgf-pyclient +2023-11-07T14:44:08Z #11 455.2 - cdms2 +2023-11-07T14:44:08Z #11 455.2 - mesalib +2023-11-07T14:44:08Z #11 455.2 - pytest +2023-11-07T14:44:08Z #11 455.2 - pytest-xdist +2023-11-07T14:44:08Z #11 455.2 - nbval +2023-11-07T14:44:08Z #11 455.2 - jupyter +2023-11-07T14:44:08Z #11 455.2 - notebook +2023-11-07T14:44:08Z #11 455.2 - jupyterlab +2023-11-07T14:44:08Z #11 455.2 - jupyterhub +2023-11-07T14:44:08Z #11 455.2 - ipywidgets +2023-11-07T14:44:08Z #11 455.2 - ipyleaflet +2023-11-07T14:44:08Z #11 455.2 - mamba_gator +2023-11-07T14:44:08Z #11 455.2 - nbdime +2023-11-07T14:44:08Z #11 455.2 - jupytext +2023-11-07T14:44:08Z #11 455.2 - jupyterlab-git +2023-11-07T14:44:08Z #11 455.2 - voila +2023-11-07T14:44:08Z #11 455.2 - jupyter-archive +2023-11-07T14:44:08Z #11 455.2 - jupyterlab-topbar +2023-11-07T14:44:08Z #11 455.2 - jupyterlab-system-monitor +2023-11-07T14:44:08Z #11 455.2 - jupyter-resource-usage +2023-11-07T14:44:08Z #11 455.2 - nbresuse +2023-11-07T14:44:08Z #11 455.2 - xeus-python +2023-11-07T14:44:08Z #11 455.2 - jupyter-dash +2023-11-07T14:44:08Z #11 455.2 - jupyter-server-proxy +2023-11-07T14:44:08Z #11 455.2 - dask-labextension +2023-11-07T14:44:08Z #11 455.2 - nodejs[version='>=16.0'] +2023-11-07T14:44:08Z #11 455.2 - wget +2023-11-07T14:44:08Z #11 455.2 - nested_dict +2023-11-07T14:44:08Z #11 455.2 - urlpath +2023-11-07T14:44:08Z #11 455.2 - paramiko +2023-11-07T14:44:08Z #11 455.2 - pymetalink +2023-11-07T14:44:08Z #11 455.2 - requests-magpie +2023-11-07T14:44:08Z #11 455.2 - scp +2023-11-07T14:44:08Z #11 455.2 - selenium +2023-11-07T14:44:08Z #11 455.2 - geckodriver +2023-11-07T14:44:08Z #11 455.2 - xlrd +2023-11-07T14:44:08Z #11 455.2 - pre-commit +2023-11-07T14:44:08Z #11 455.2 - xclim[version='>=0.44.0'] +2023-11-07T14:44:08Z #11 455.2 - ravenpy[version='>=0.12.2'] +2023-11-07T14:44:08Z #11 455.2 - numpy +2023-11-07T14:44:08Z #11 455.2 - cf_xarray !=0.8.1 +2023-11-07T14:44:08Z #11 455.2 - libnetcdf[version='<=4.8.1'] +2023-11-07T14:44:08Z #11 455.2 - pyogrio +2023-11-07T14:44:08Z #11 455.2 - bokeh +2023-11-07T14:44:08Z #11 455.2 - nc-time-axis +2023-11-07T14:44:08Z #11 455.2 - xesmf[version='>=0.6.2'] +2023-11-07T14:44:08Z #11 455.2 - curl +2023-11-07T14:44:08Z #11 455.2 - pip +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 Package Version Build Channel Size +2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── +2023-11-07T14:44:08Z #11 455.2 Install: +2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 + docopt 0.6.2 py_1 conda-forge 15kB +2023-11-07T14:44:08Z #11 455.2 + descartes 1.1.0 py_4 conda-forge 8kB +2023-11-07T14:44:08Z #11 455.2 + pscript 0.7.7 pyhd8ed1ab_0 conda-forge 68kB +2023-11-07T14:44:08Z #11 455.2 + param 2.0.0 pyhca7485f_0 conda-forge 103kB +2023-11-07T14:44:08Z #11 455.2 + multipledispatch 0.6.0 py_0 conda-forge 12kB +2023-11-07T14:44:08Z #11 455.2 + seaborn-base 0.13.0 pyhd8ed1ab_0 conda-forge 234kB +2023-11-07T14:44:08Z #11 455.2 + asciitree 0.3.3 py_2 conda-forge 6kB +2023-11-07T14:44:08Z #11 455.2 + roocs-utils 0.6.4 pyh1a96a4e_0 conda-forge 27kB +2023-11-07T14:44:08Z #11 455.2 + memory_profiler 0.61.0 pyhd8ed1ab_0 conda-forge 33kB +2023-11-07T14:44:08Z #11 455.2 + ipython_genutils 0.2.0 py_1 conda-forge 22kB +2023-11-07T14:44:08Z #11 455.2 + jupyterlab_widgets 3.0.9 pyhd8ed1ab_0 conda-forge 187kB +2023-11-07T14:44:08Z #11 455.2 + widgetsnbextension 4.0.9 pyhd8ed1ab_0 conda-forge 886kB +2023-11-07T14:44:08Z #11 455.2 + xeus-python-shell-raw 0.5.0 pyhd8ed1ab_0 conda-forge 11kB +2023-11-07T14:44:08Z #11 455.2 + retrying 1.3.3 py_2 conda-forge 11kB +2023-11-07T14:44:08Z #11 455.2 + simpervisor 1.0.0 pyhd8ed1ab_0 conda-forge 13kB +2023-11-07T14:44:08Z #11 455.2 + nested_dict 1.61 pyhd3deb0d_0 conda-forge 9kB +2023-11-07T14:44:08Z #11 455.2 + urlpath 1.2.0 pyhd8ed1ab_0 conda-forge 13kB +2023-11-07T14:44:08Z #11 455.2 + pymetalink 6.4 pyhd8ed1ab_0 conda-forge 41kB +2023-11-07T14:44:08Z #11 455.2 + requests-magpie 0.2.0 pyhd8ed1ab_0 conda-forge 7kB +2023-11-07T14:44:08Z #11 455.2 + xlrd 2.0.1 pyhd8ed1ab_3 conda-forge 94kB +2023-11-07T14:44:08Z #11 455.2 + fasteners 0.17.3 pyhd8ed1ab_0 conda-forge 20kB +2023-11-07T14:44:08Z #11 455.2 + send2trash 1.8.2 pyh41d4057_0 conda-forge 23kB +2023-11-07T14:44:08Z #11 455.2 + blinker 1.7.0 pyhd8ed1ab_0 conda-forge 18kB +2023-11-07T14:44:08Z #11 455.2 + cachetools 5.3.2 pyhd8ed1ab_0 conda-forge 15kB +2023-11-07T14:44:08Z #11 455.2 + tenacity 8.2.3 pyhd8ed1ab_0 conda-forge 23kB +2023-11-07T14:44:08Z #11 455.2 + toml 0.10.2 pyhd8ed1ab_0 conda-forge 18kB +2023-11-07T14:44:08Z #11 455.2 + validators 0.22.0 pyhd8ed1ab_0 conda-forge 25kB +2023-11-07T14:44:08Z #11 455.2 + sniffio 1.3.0 pyhd8ed1ab_0 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + mdurl 0.1.0 pyhd8ed1ab_0 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + pooch 1.8.0 pyhd8ed1ab_0 conda-forge 52kB +2023-11-07T14:44:08Z #11 455.2 + xlsxwriter 3.1.9 pyhd8ed1ab_0 conda-forge 121kB +2023-11-07T14:44:08Z #11 455.2 + execnet 2.0.2 pyhd8ed1ab_0 conda-forge 37kB +2023-11-07T14:44:08Z #11 455.2 + colorama 0.4.6 pyhd8ed1ab_0 conda-forge 25kB +2023-11-07T14:44:08Z #11 455.2 + pluggy 1.3.0 pyhd8ed1ab_0 conda-forge 23kB +2023-11-07T14:44:08Z #11 455.2 + iniconfig 2.0.0 pyhd8ed1ab_0 conda-forge 11kB +2023-11-07T14:44:08Z #11 455.2 + tomli 2.0.1 pyhd8ed1ab_0 conda-forge 16kB +2023-11-07T14:44:08Z #11 455.2 + webob 1.8.7 pyhd8ed1ab_0 conda-forge 88kB +2023-11-07T14:44:08Z #11 455.2 + distlib 0.3.7 pyhd8ed1ab_0 conda-forge 274kB +2023-11-07T14:44:08Z #11 455.2 + cfgv 3.3.1 pyhd8ed1ab_0 conda-forge 11kB +2023-11-07T14:44:08Z #11 455.2 + nodeenv 1.8.0 pyhd8ed1ab_0 conda-forge 34kB +2023-11-07T14:44:08Z #11 455.2 + markdown 3.5.1 pyhd8ed1ab_0 conda-forge 77kB +2023-11-07T14:44:08Z #11 455.2 + uc-micro-py 1.0.1 pyhd8ed1ab_0 conda-forge 9kB +2023-11-07T14:44:08Z #11 455.2 + prometheus_client 0.18.0 pyhd8ed1ab_0 conda-forge 54kB +2023-11-07T14:44:08Z #11 455.2 + terminado 0.17.1 pyh41d4057_0 conda-forge 21kB +2023-11-07T14:44:08Z #11 455.2 + nest-asyncio 1.5.8 pyhd8ed1ab_0 conda-forge 12kB +2023-11-07T14:44:08Z #11 455.2 + python-fastjsonschema 2.18.1 pyhd8ed1ab_0 conda-forge 226kB +2023-11-07T14:44:08Z #11 455.2 + defusedxml 0.7.1 pyhd8ed1ab_0 conda-forge 24kB +2023-11-07T14:44:08Z #11 455.2 + entrypoints 0.4 pyhd8ed1ab_0 conda-forge 9kB +2023-11-07T14:44:08Z #11 455.2 + pandocfilters 1.5.0 pyhd8ed1ab_0 conda-forge 12kB +2023-11-07T14:44:08Z #11 455.2 + jupyterlab_pygments 0.2.2 pyhd8ed1ab_0 conda-forge 17kB +2023-11-07T14:44:08Z #11 455.2 + mistune 3.0.2 pyhd8ed1ab_0 conda-forge 66kB +2023-11-07T14:44:08Z #11 455.2 + babel 2.13.1 pyhd8ed1ab_0 conda-forge 7MB +2023-11-07T14:44:08Z #11 455.2 + json5 0.9.14 pyhd8ed1ab_0 conda-forge 25kB +2023-11-07T14:44:08Z #11 455.2 + pamela 1.1.0 pyh1a96a4e_0 conda-forge 12kB +2023-11-07T14:44:08Z #11 455.2 + async_generator 1.10 py_0 conda-forge 18kB +2023-11-07T14:44:08Z #11 455.2 + aiofiles 22.1.0 pyhd8ed1ab_0 conda-forge 18kB +2023-11-07T14:44:08Z #11 455.2 + rfc3339-validator 0.1.4 pyhd8ed1ab_0 conda-forge 8kB +2023-11-07T14:44:08Z #11 455.2 + rfc3986-validator 0.1.1 pyh9f0ad1d_0 conda-forge 8kB +2023-11-07T14:44:08Z #11 455.2 + websocket-client 1.6.4 pyhd8ed1ab_0 conda-forge 46kB +2023-11-07T14:44:08Z #11 455.2 + typing_utils 0.1.0 pyhd8ed1ab_0 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + python-json-logger 2.0.7 pyhd8ed1ab_0 conda-forge 13kB +2023-11-07T14:44:08Z #11 455.2 + uri-template 1.3.0 pyhd8ed1ab_0 conda-forge 24kB +2023-11-07T14:44:08Z #11 455.2 + webcolors 1.13 pyhd8ed1ab_0 conda-forge 18kB +2023-11-07T14:44:08Z #11 455.2 + importlib_resources 6.1.1 pyhd8ed1ab_0 conda-forge 30kB +2023-11-07T14:44:08Z #11 455.2 + pkgutil-resolve-name 1.3.10 pyhd8ed1ab_1 conda-forge 11kB +2023-11-07T14:44:08Z #11 455.2 + comm 0.1.4 pyhd8ed1ab_0 conda-forge 12kB +2023-11-07T14:44:08Z #11 455.2 + traittypes 0.2.1 pyh9f0ad1d_2 conda-forge 10kB +2023-11-07T14:44:08Z #11 455.2 + fastprogress 1.0.3 pyhd8ed1ab_0 conda-forge 17kB +2023-11-07T14:44:08Z #11 455.2 + smmap 5.0.0 pyhd8ed1ab_0 conda-forge 22kB +2023-11-07T14:44:08Z #11 455.2 + geographiclib 1.52 pyhd8ed1ab_0 conda-forge 36kB +2023-11-07T14:44:08Z #11 455.2 + pyu2f 0.1.5 pyhd8ed1ab_0 conda-forge 32kB +2023-11-07T14:44:08Z #11 455.2 + numpy_groupies 0.10.2 pyhd8ed1ab_0 conda-forge 37kB +2023-11-07T14:44:08Z #11 455.2 + webencodings 0.5.1 pyhd8ed1ab_2 conda-forge 16kB +2023-11-07T14:44:08Z #11 455.2 + funcsigs 1.0.2 py_3 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + soupsieve 2.5 pyhd8ed1ab_1 conda-forge 37kB +2023-11-07T14:44:08Z #11 455.2 + mako 1.2.4 pyhd8ed1ab_0 conda-forge 63kB +2023-11-07T14:44:08Z #11 455.2 + aioitertools 0.11.0 pyhd8ed1ab_0 conda-forge 23kB +2023-11-07T14:44:08Z #11 455.2 + pyjwt 2.8.0 pyhd8ed1ab_0 conda-forge 25kB +2023-11-07T14:44:08Z #11 455.2 + itsdangerous 2.1.2 pyhd8ed1ab_0 conda-forge 16kB +2023-11-07T14:44:08Z #11 455.2 + url-normalize 1.4.3 pyhd8ed1ab_0 conda-forge 10kB +2023-11-07T14:44:08Z #11 455.2 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB +2023-11-07T14:44:08Z #11 455.2 + outcome 1.3.0.post0 pyhd8ed1ab_0 conda-forge 16kB +2023-11-07T14:44:08Z #11 455.2 + imageio 2.31.5 pyh8c1a49c_0 conda-forge 291kB +2023-11-07T14:44:08Z #11 455.2 + lazy_loader 0.3 pyhd8ed1ab_0 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + pycparser 2.21 pyhd8ed1ab_0 conda-forge 103kB +2023-11-07T14:44:08Z #11 455.2 + distarray 2.12.2 pyh050c7b8_4 conda-forge 16kB +2023-11-07T14:44:08Z #11 455.2 + pyshp 2.3.1 pyhd8ed1ab_0 conda-forge 964kB +2023-11-07T14:44:08Z #11 455.2 + async-timeout 4.0.3 pyhd8ed1ab_0 conda-forge 11kB +2023-11-07T14:44:08Z #11 455.2 + aiosqlite 0.19.0 pyhd8ed1ab_0 conda-forge 19kB +2023-11-07T14:44:08Z #11 455.2 + filelock 3.13.1 pyhd8ed1ab_0 conda-forge 16kB +2023-11-07T14:44:08Z #11 455.2 + cattrs 23.1.2 pyhd8ed1ab_0 conda-forge 42kB +2023-11-07T14:44:08Z #11 455.2 + qtpy 2.4.1 pyhd8ed1ab_0 conda-forge 62kB +2023-11-07T14:44:08Z #11 455.2 + werkzeug 3.0.1 pyhd8ed1ab_0 conda-forge 242kB +2023-11-07T14:44:08Z #11 455.2 + jmespath 1.0.1 pyhd8ed1ab_0 conda-forge 21kB +2023-11-07T14:44:08Z #11 455.2 + types-python-dateutil 2.8.19.14 pyhd8ed1ab_0 conda-forge 21kB +2023-11-07T14:44:08Z #11 455.2 + h11 0.14.0 pyhd8ed1ab_0 conda-forge 48kB +2023-11-07T14:44:08Z #11 455.2 + pyasn1 0.5.0 pyhd8ed1ab_0 conda-forge 63kB +2023-11-07T14:44:08Z #11 455.2 + findlibs 0.0.5 pyhd8ed1ab_0 conda-forge 13kB +2023-11-07T14:44:08Z #11 455.2 + ply 3.11 py_1 conda-forge 45kB +2023-11-07T14:44:08Z #11 455.2 + pyct-core 0.4.6 py_0 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + pyviz_comms 2.3.2 pyhd8ed1ab_0 conda-forge 46kB +2023-11-07T14:44:08Z #11 455.2 + seaborn 0.13.0 hd8ed1ab_0 conda-forge 7kB +2023-11-07T14:44:08Z #11 455.2 + xeus-python-shell 0.5.0 pyhd8ed1ab_0 conda-forge 5kB +2023-11-07T14:44:08Z #11 455.2 + plotly 5.18.0 pyhd8ed1ab_0 conda-forge 5MB +2023-11-07T14:44:08Z #11 455.2 + anyio 4.0.0 pyhd8ed1ab_0 conda-forge 99kB +2023-11-07T14:44:08Z #11 455.2 + markdown-it-py 3.0.0 pyhd8ed1ab_0 conda-forge 64kB +2023-11-07T14:44:08Z #11 455.2 + regionmask 0.11.0 pyhd8ed1ab_0 conda-forge 59kB +2023-11-07T14:44:08Z #11 455.2 + python-pptx 0.6.23 pyhd8ed1ab_0 conda-forge 399kB +2023-11-07T14:44:08Z #11 455.2 + tqdm 4.66.1 pyhd8ed1ab_0 conda-forge 89kB +2023-11-07T14:44:08Z #11 455.2 + pytest 7.4.3 pyhd8ed1ab_0 conda-forge 245kB +2023-11-07T14:44:08Z #11 455.2 + linkify-it-py 2.0.0 pyhd8ed1ab_0 conda-forge 22kB +2023-11-07T14:44:08Z #11 455.2 + jupyter_server_terminals 0.4.4 pyhd8ed1ab_1 conda-forge 19kB +2023-11-07T14:44:08Z #11 455.2 + intake 0.7.0 pyhd8ed1ab_0 conda-forge 193kB +2023-11-07T14:44:08Z #11 455.2 + overrides 7.4.0 pyhd8ed1ab_0 conda-forge 30kB +2023-11-07T14:44:08Z #11 455.2 + ipywidgets 8.1.1 pyhd8ed1ab_0 conda-forge 114kB +2023-11-07T14:44:08Z #11 455.2 + gitdb 4.0.11 pyhd8ed1ab_0 conda-forge 53kB +2023-11-07T14:44:08Z #11 455.2 + geopy 2.4.0 pyhd8ed1ab_0 conda-forge 73kB +2023-11-07T14:44:08Z #11 455.2 + flox 0.8.1 pyhd8ed1ab_0 conda-forge 50kB +2023-11-07T14:44:08Z #11 455.2 + tinycss2 1.2.1 pyhd8ed1ab_0 conda-forge 23kB +2023-11-07T14:44:08Z #11 455.2 + bleach 6.1.0 pyhd8ed1ab_0 conda-forge 131kB +2023-11-07T14:44:08Z #11 455.2 + beautifulsoup4 4.12.2 pyha770c72_0 conda-forge 115kB +2023-11-07T14:44:08Z #11 455.2 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB +2023-11-07T14:44:08Z #11 455.2 + virtualenv 20.24.6 pyhd8ed1ab_0 conda-forge 3MB +2023-11-07T14:44:08Z #11 455.2 + flask 3.0.0 pyhd8ed1ab_0 conda-forge 80kB +2023-11-07T14:44:08Z #11 455.2 + botocore 1.31.64 pyhd8ed1ab_0 conda-forge 6MB +2023-11-07T14:44:08Z #11 455.2 + arrow 1.3.0 pyhd8ed1ab_0 conda-forge 100kB +2023-11-07T14:44:08Z #11 455.2 + wsproto 1.2.0 pyhd8ed1ab_0 conda-forge 25kB +2023-11-07T14:44:08Z #11 455.2 + pyasn1-modules 0.3.0 pyhd8ed1ab_0 conda-forge 96kB +2023-11-07T14:44:08Z #11 455.2 + rsa 4.9 pyhd8ed1ab_0 conda-forge 30kB +2023-11-07T14:44:08Z #11 455.2 + pyct 0.4.6 py_0 conda-forge 3kB +2023-11-07T14:44:08Z #11 455.2 + mdit-py-plugins 0.4.0 pyhd8ed1ab_0 conda-forge 41kB +2023-11-07T14:44:08Z #11 455.2 + rich 13.6.0 pyhd8ed1ab_0 conda-forge 183kB +2023-11-07T14:44:08Z #11 455.2 + pytest-xdist 3.3.1 pyhd8ed1ab_0 conda-forge 36kB +2023-11-07T14:44:08Z #11 455.2 + intake-geopandas 0.4.0 pyhd8ed1ab_0 conda-forge 13kB +2023-11-07T14:44:08Z #11 455.2 + jupyter_bokeh 3.0.7 pyhd8ed1ab_0 conda-forge 542kB +2023-11-07T14:44:08Z #11 455.2 + ipyleaflet 0.17.4 pyhd8ed1ab_0 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + gitpython 3.1.40 pyhd8ed1ab_0 conda-forge 147kB +2023-11-07T14:44:08Z #11 455.2 + threddsclient 0.4.4 pyh1a96a4e_0 conda-forge 18kB +2023-11-07T14:44:08Z #11 455.2 + pydap 3.4.0 pyhd8ed1ab_0 conda-forge 722kB +2023-11-07T14:44:08Z #11 455.2 + fqdn 1.5.1 pyhd8ed1ab_0 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + isoduration 20.11.0 pyhd8ed1ab_0 conda-forge 17kB +2023-11-07T14:44:08Z #11 455.2 + colorcet 3.0.1 pyhd8ed1ab_0 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + panel 1.3.1 pyhd8ed1ab_0 conda-forge 14MB +2023-11-07T14:44:08Z #11 455.2 + datashader 0.16.0 pyhd8ed1ab_0 conda-forge 17MB +2023-11-07T14:44:08Z #11 455.2 + holoviews 1.18.0 pyhd8ed1ab_0 conda-forge 3MB +2023-11-07T14:44:08Z #11 455.2 + hvplot 0.9.0 pyhd8ed1ab_0 conda-forge 3MB +2023-11-07T14:44:08Z #11 455.2 + pykdtree 1.3.9 py310h1f7b6fc_1 conda-forge 79kB +2023-11-07T14:44:08Z #11 455.2 + libllvm16 16.0.1 hadd5161_0 conda-forge 35MB +2023-11-07T14:44:08Z #11 455.2 + libpciaccess 0.17 h166bdaf_0 conda-forge 40kB +2023-11-07T14:44:08Z #11 455.2 + selenium-manager 4.15.0 he8a937b_0 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + geckodriver 0.33.0 h0e8d75e_1 conda-forge 3MB +2023-11-07T14:44:08Z #11 455.2 + openblas 0.3.24 pthreads_h7a3da1a_0 conda-forge 6MB +2023-11-07T14:44:08Z #11 455.2 + numcodecs 0.12.1 py310hc6cd4ac_0 conda-forge 757kB +2023-11-07T14:44:08Z #11 455.2 + jupyter_core 5.5.0 py310hff52083_0 conda-forge 79kB +2023-11-07T14:44:08Z #11 455.2 + websockets 12.0 py310h2372a71_0 conda-forge 159kB +2023-11-07T14:44:08Z #11 455.2 + protobuf 4.23.3 py310hb875b13_0 conda-forge 326kB +2023-11-07T14:44:08Z #11 455.2 + tzlocal 5.2 py310hff52083_0 conda-forge 36kB +2023-11-07T14:44:08Z #11 455.2 + watchdog 3.0.0 py310hff52083_1 conda-forge 110kB +2023-11-07T14:44:08Z #11 455.2 + bcrypt 4.0.1 py310hcb5633a_1 conda-forge 576kB +2023-11-07T14:44:08Z #11 455.2 + pycurl 7.45.1 py310h60f9ec7_3 conda-forge 76kB +2023-11-07T14:44:08Z #11 455.2 + y-py 0.5.9 py310h4426083_0 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + jsonpointer 2.4 py310hff52083_3 conda-forge 16kB +2023-11-07T14:44:08Z #11 455.2 + rpds-py 0.12.0 py310hcb5633a_0 conda-forge 986kB +2023-11-07T14:44:08Z #11 455.2 + debugpy 1.8.0 py310hc6cd4ac_1 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + loguru 0.7.2 py310hff52083_1 conda-forge 99kB +2023-11-07T14:44:08Z #11 455.2 + wrapt 1.15.0 py310h2372a71_1 conda-forge 54kB +2023-11-07T14:44:08Z #11 455.2 + ansi2html 1.8.0 py310hff52083_2 conda-forge 42kB +2023-11-07T14:44:08Z #11 455.2 + xeus 3.1.3 h06414e2_0 conda-forge 343kB +2023-11-07T14:44:08Z #11 455.2 + greenlet 3.0.1 py310hc6cd4ac_0 conda-forge 206kB +2023-11-07T14:44:08Z #11 455.2 + pywavelets 1.4.1 py310h1f7b6fc_1 conda-forge 4MB +2023-11-07T14:44:08Z #11 455.2 + ruamel.yaml.clib 0.2.7 py310h2372a71_2 conda-forge 135kB +2023-11-07T14:44:08Z #11 455.2 + libglu 9.0.0 he1b5a44_1001 conda-forge 423kB +2023-11-07T14:44:08Z #11 455.2 + aom 3.5.0 h27087fc_0 conda-forge 3MB +2023-11-07T14:44:08Z #11 455.2 + dav1d 1.2.1 hd590300_0 conda-forge 760kB +2023-11-07T14:44:08Z #11 455.2 + zfp 1.0.0 h59595ed_4 conda-forge 278kB +2023-11-07T14:44:08Z #11 455.2 + zlib-ng 2.0.7 h0b41bf4_0 conda-forge 95kB +2023-11-07T14:44:08Z #11 455.2 + charls 2.4.2 h59595ed_0 conda-forge 150kB +2023-11-07T14:44:08Z #11 455.2 + libtasn1 4.19.0 h166bdaf_0 conda-forge 117kB +2023-11-07T14:44:08Z #11 455.2 + nettle 3.8.1 hc379101_1 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + lazy-object-proxy 1.9.0 py310h2372a71_1 conda-forge 34kB +2023-11-07T14:44:08Z #11 455.2 + frozenlist 1.4.0 py310h2372a71_1 conda-forge 54kB +2023-11-07T14:44:08Z #11 455.2 + multidict 6.0.4 py310h2372a71_1 conda-forge 57kB +2023-11-07T14:44:08Z #11 455.2 + xorg-util-macros 1.19.3 h7f98852_0 conda-forge 52kB +2023-11-07T14:44:08Z #11 455.2 + ujson 5.8.0 py310hc6cd4ac_0 conda-forge 52kB +2023-11-07T14:44:08Z #11 455.2 + grpcio 1.56.2 py310h1b8f574_1 conda-forge 765kB +2023-11-07T14:44:08Z #11 455.2 + gmp 6.2.1 h58526e2_0 conda-forge 826kB +2023-11-07T14:44:08Z #11 455.2 + libuv 1.44.2 hd590300_1 conda-forge 824kB +2023-11-07T14:44:08Z #11 455.2 + xorg-glproto 1.4.17 h7f98852_1002 conda-forge 21kB +2023-11-07T14:44:08Z #11 455.2 + alsa-lib 1.2.8 h166bdaf_0 conda-forge 592kB +2023-11-07T14:44:08Z #11 455.2 + libcups 2.3.3 h36d4200_3 conda-forge 5MB +2023-11-07T14:44:08Z #11 455.2 + xcb-util-renderutil 0.3.9 h166bdaf_0 conda-forge 16kB +2023-11-07T14:44:08Z #11 455.2 + dbus 1.13.6 h5008d03_3 conda-forge 619kB +2023-11-07T14:44:08Z #11 455.2 + libtool 2.4.7 h27087fc_0 conda-forge 412kB +2023-11-07T14:44:08Z #11 455.2 + glib-tools 2.78.1 hfc55251_0 conda-forge 112kB +2023-11-07T14:44:08Z #11 455.2 + mysql-common 8.0.33 hf1915f5_6 conda-forge 753kB +2023-11-07T14:44:08Z #11 455.2 + fftw 3.3.10 nompi_hc118613_108 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + gstreamer-orc 0.4.34 hd590300_0 conda-forge 259kB +2023-11-07T14:44:08Z #11 455.2 + xkeyboard-config 2.38 h0b41bf4_0 conda-forge 882kB +2023-11-07T14:44:08Z #11 455.2 + libgpg-error 1.47 h71f35ed_0 conda-forge 261kB +2023-11-07T14:44:08Z #11 455.2 + lame 3.100 h166bdaf_1003 conda-forge 508kB +2023-11-07T14:44:08Z #11 455.2 + libogg 1.3.4 h7f98852_1 conda-forge 211kB +2023-11-07T14:44:08Z #11 455.2 + libopus 1.3.1 h7f98852_1 conda-forge 261kB +2023-11-07T14:44:08Z #11 455.2 + mpg123 1.32.3 h59595ed_0 conda-forge 492kB +2023-11-07T14:44:08Z #11 455.2 + libllvm15 15.0.7 hadd5161_1 conda-forge 33MB +2023-11-07T14:44:08Z #11 455.2 + attr 2.5.1 h166bdaf_1 conda-forge 71kB +2023-11-07T14:44:08Z #11 455.2 + libsodium 1.0.18 h36c2ea0_1 conda-forge 375kB +2023-11-07T14:44:08Z #11 455.2 + xcb-util 0.4.0 h516909a_0 conda-forge 20kB +2023-11-07T14:44:08Z #11 455.2 + xcb-util-keysyms 0.4.0 h516909a_0 conda-forge 12kB +2023-11-07T14:44:08Z #11 455.2 + xcb-util-wm 0.4.1 h516909a_0 conda-forge 56kB +2023-11-07T14:44:08Z #11 455.2 + xorg-xf86vidmodeproto 2.3.1 h7f98852_1002 conda-forge 24kB +2023-11-07T14:44:08Z #11 455.2 + lzo 2.10 h516909a_1000 conda-forge Cached +2023-11-07T14:44:08Z #11 455.2 + libdb 6.2.32 h9c3ff4c_0 conda-forge 24MB +2023-11-07T14:44:08Z #11 455.2 + brunsli 0.1 h9c3ff4c_0 conda-forge 205kB +2023-11-07T14:44:08Z #11 455.2 + jxrlib 1.1 h7f98852_2 conda-forge 241kB +2023-11-07T14:44:08Z #11 455.2 + libzopfli 1.0.3 h9c3ff4c_0 conda-forge 168kB +2023-11-07T14:44:08Z #11 455.2 + graphite2 1.3.13 h58526e2_1001 conda-forge 105kB +2023-11-07T14:44:08Z #11 455.2 + xorg-randrproto 1.5.0 h7f98852_1001 conda-forge 33kB +2023-11-07T14:44:08Z #11 455.2 + xorg-inputproto 2.3.2 h7f98852_1002 conda-forge 20kB +2023-11-07T14:44:08Z #11 455.2 + xorg-fixesproto 5.0 h7f98852_1002 conda-forge 9kB +2023-11-07T14:44:08Z #11 455.2 + xorg-damageproto 1.2.1 h7f98852_1002 conda-forge 25kB +2023-11-07T14:44:08Z #11 455.2 + libunistring 0.9.10 h7f98852_0 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + coverage 7.3.2 py310h2372a71_0 conda-forge 281kB +2023-11-07T14:44:08Z #11 455.2 + trio 0.23.1 py310hff52083_1 conda-forge 640kB +2023-11-07T14:44:08Z #11 455.2 + cffi 1.16.0 py310h2fee648_0 conda-forge 241kB +2023-11-07T14:44:08Z #11 455.2 + cartopy 0.22.0 py310hcc13569_1 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + sip 6.7.12 py310hc6cd4ac_0 conda-forge 494kB +2023-11-07T14:44:08Z #11 455.2 + h5py 3.8.0 nompi_py310h0311031_100 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + libdrm 2.4.114 h166bdaf_0 conda-forge 305kB +2023-11-07T14:44:08Z #11 455.2 + libcf 1.0.3 py310hbc577d2_115 conda-forge 263kB +2023-11-07T14:44:08Z #11 455.2 + sqlalchemy 2.0.23 py310h2372a71_0 conda-forge 3MB +2023-11-07T14:44:08Z #11 455.2 + ruamel.yaml 0.18.5 py310h2372a71_0 conda-forge 202kB +2023-11-07T14:44:08Z #11 455.2 + libavif 0.11.1 h8182462_2 conda-forge 102kB +2023-11-07T14:44:08Z #11 455.2 + c-blosc2 2.11.1 hb4ffafa_0 conda-forge 332kB +2023-11-07T14:44:08Z #11 455.2 + p11-kit 0.24.1 hc5aa10d_0 conda-forge 5MB +2023-11-07T14:44:08Z #11 455.2 + yarl 1.9.2 py310h2372a71_1 conda-forge 98kB +2023-11-07T14:44:08Z #11 455.2 + pandoc 3.1.3 h32600fe_0 conda-forge 29MB +2023-11-07T14:44:08Z #11 455.2 + nodejs 18.15.0 h8d033a5_0 conda-forge 15MB +2023-11-07T14:44:08Z #11 455.2 + glib 2.78.1 hfc55251_0 conda-forge 489kB +2023-11-07T14:44:08Z #11 455.2 + mysql-libs 8.0.33 hca2cd23_6 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + libxkbcommon 1.5.0 h79f4944_1 conda-forge 563kB +2023-11-07T14:44:08Z #11 455.2 + libgcrypt 1.10.2 hd590300_0 conda-forge 639kB +2023-11-07T14:44:08Z #11 455.2 + libvorbis 1.3.7 h9c3ff4c_0 conda-forge 286kB +2023-11-07T14:44:08Z #11 455.2 + libflac 1.4.3 h59595ed_0 conda-forge 394kB +2023-11-07T14:44:08Z #11 455.2 + libclang13 15.0.7 default_h9986a30_3 conda-forge 10MB +2023-11-07T14:44:08Z #11 455.2 + libcap 2.67 he9d0100_0 conda-forge 99kB +2023-11-07T14:44:08Z #11 455.2 + zeromq 4.3.5 h59595ed_0 conda-forge 343kB +2023-11-07T14:44:08Z #11 455.2 + xcb-util-image 0.4.0 h166bdaf_0 conda-forge 24kB +2023-11-07T14:44:08Z #11 455.2 + libarchive 3.6.2 h3d51595_0 conda-forge 836kB +2023-11-07T14:44:08Z #11 455.2 + jack 1.9.22 h11f4161_0 conda-forge 464kB +2023-11-07T14:44:08Z #11 455.2 + harfbuzz 6.0.0 h8e241bc_0 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + xorg-libxrandr 1.5.2 h7f98852_1 conda-forge 30kB +2023-11-07T14:44:08Z #11 455.2 + xorg-libxfixes 5.0.3 h7f98852_1004 conda-forge 18kB +2023-11-07T14:44:08Z #11 455.2 + libidn2 2.3.4 h166bdaf_0 conda-forge 160kB +2023-11-07T14:44:08Z #11 455.2 + google-crc32c 1.1.2 py310hc5c09a0_5 conda-forge 24kB +2023-11-07T14:44:08Z #11 455.2 + argon2-cffi-bindings 21.2.0 py310h2372a71_4 conda-forge 34kB +2023-11-07T14:44:08Z #11 455.2 + ukkonen 1.0.1 py310hd41b1e2_4 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + pynacl 1.5.0 py310h2372a71_3 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + cryptography 41.0.5 py310h75e40e8_0 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + pyqt5-sip 12.12.2 py310hc6cd4ac_5 conda-forge 85kB +2023-11-07T14:44:08Z #11 455.2 + imagecodecs 2023.1.23 py310ha3ed6a1_0 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + configurable-http-proxy 4.5.4 he2f69ee_2 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + gstreamer 1.22.0 h25f0c4b_2 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + libsndfile 1.2.2 hc60ed4a_1 conda-forge 354kB +2023-11-07T14:44:08Z #11 455.2 + libclang 15.0.7 default_h7634d5b_3 conda-forge 133kB +2023-11-07T14:44:08Z #11 455.2 + libudev1 253 h0b41bf4_1 conda-forge 119kB +2023-11-07T14:44:08Z #11 455.2 + libsystemd0 253 h8c4010b_1 conda-forge 381kB +2023-11-07T14:44:08Z #11 455.2 + xeus-zmq 1.1.1 h6b5a882_1 conda-forge 342kB +2023-11-07T14:44:08Z #11 455.2 + pyzmq 24.0.1 py310h330234f_1 conda-forge 518kB +2023-11-07T14:44:08Z #11 455.2 + xorg-libxi 1.7.10 h7f98852_0 conda-forge 47kB +2023-11-07T14:44:08Z #11 455.2 + xorg-libxdamage 1.1.5 h7f98852_1 conda-forge 12kB +2023-11-07T14:44:08Z #11 455.2 + gnutls 3.7.8 hf3e180e_0 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + wget 1.20.3 ha35d2d1_1 conda-forge 835kB +2023-11-07T14:44:08Z #11 455.2 + gst-plugins-base 1.22.0 h4243ec0_2 conda-forge 3MB +2023-11-07T14:44:08Z #11 455.2 + pulseaudio-client 16.1 h5195f5e_3 conda-forge 752kB +2023-11-07T14:44:08Z #11 455.2 + xeus-python 0.15.10 py310hd41b1e2_1 conda-forge 777kB +2023-11-07T14:44:08Z #11 455.2 + freeglut 3.2.2 h9c3ff4c_1 conda-forge 166kB +2023-11-07T14:44:08Z #11 455.2 + libmicrohttpd 0.9.77 h97afed2_0 conda-forge 218kB +2023-11-07T14:44:08Z #11 455.2 + pulseaudio-daemon 16.1 ha8d29e2_3 conda-forge 849kB +2023-11-07T14:44:08Z #11 455.2 + jasper 2.0.33 h0ff4b12_1 conda-forge 726kB +2023-11-07T14:44:08Z #11 455.2 + elfutils 0.189 hde5d1a3_0 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + pulseaudio 16.1 hcb278e6_3 conda-forge 17kB +2023-11-07T14:44:08Z #11 455.2 + g2clib 1.6.3 hbecde78_1 conda-forge 57kB +2023-11-07T14:44:08Z #11 455.2 + eccodes 2.28.0 h7513371_1 conda-forge 4MB +2023-11-07T14:44:08Z #11 455.2 + mesalib 23.0.2 h3855f93_0 conda-forge 4MB +2023-11-07T14:44:08Z #11 455.2 + qt-main 5.15.8 h5d23da1_6 conda-forge 52MB +2023-11-07T14:44:08Z #11 455.2 + libdrs 3.1.2 hf593df3_118 conda-forge 565kB +2023-11-07T14:44:08Z #11 455.2 + python-eccodes 1.5.1 py310h0a54255_0 conda-forge 89kB +2023-11-07T14:44:08Z #11 455.2 + pyqt 5.15.9 py310h04931ad_5 conda-forge 5MB +2023-11-07T14:44:08Z #11 455.2 + libcdms 3.1.2 hf94f14b_119 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 + matplotlib 3.8.1 py310hff52083_0 conda-forge 8kB +2023-11-07T14:44:08Z #11 455.2 + libdrs_f 3.1.2 h7e76ec7_114 conda-forge 549kB +2023-11-07T14:44:08Z #11 455.2 + zarr 2.16.1 pyhd8ed1ab_0 conda-forge 158kB +2023-11-07T14:44:08Z #11 455.2 + googleapis-common-protos 1.61.0 pyhd8ed1ab_0 conda-forge 123kB +2023-11-07T14:44:08Z #11 455.2 + siphon 0.9 pyhd8ed1ab_2 conda-forge 56kB +2023-11-07T14:44:08Z #11 455.2 + ypy-websocket 0.8.2 pyhd8ed1ab_0 conda-forge 17kB +2023-11-07T14:44:08Z #11 455.2 + jupyter_ydoc 0.2.4 pyhd8ed1ab_0 conda-forge 80kB +2023-11-07T14:44:08Z #11 455.2 + referencing 0.30.2 pyhd8ed1ab_0 conda-forge 38kB +2023-11-07T14:44:08Z #11 455.2 + clisops 0.11.0 pyh1a96a4e_0 conda-forge 11MB +2023-11-07T14:44:08Z #11 455.2 + birdy 0.8.4 pyh1a96a4e_0 conda-forge 48kB +2023-11-07T14:44:08Z #11 455.2 + dash 2.14.1 pyhd8ed1ab_0 conda-forge 7MB +2023-11-07T14:44:08Z #11 455.2 + aiosignal 1.3.1 pyhd8ed1ab_0 conda-forge 13kB +2023-11-07T14:44:08Z #11 455.2 + requests-cache 1.1.0 pyhd8ed1ab_0 conda-forge 50kB +2023-11-07T14:44:08Z #11 455.2 + trio-websocket 0.11.1 pyhd8ed1ab_0 conda-forge 31kB +2023-11-07T14:44:08Z #11 455.2 + geoviews-core 1.11.0 pyha770c72_0 conda-forge 376kB +2023-11-07T14:44:08Z #11 455.2 + h5netcdf 1.2.0 pyhd8ed1ab_0 conda-forge 42kB +2023-11-07T14:44:08Z #11 455.2 + alembic 1.12.1 pyhd8ed1ab_0 conda-forge 155kB +2023-11-07T14:44:08Z #11 455.2 + google-resumable-media 2.6.0 pyhd8ed1ab_0 conda-forge 46kB +2023-11-07T14:44:08Z #11 455.2 + argon2-cffi 23.1.0 pyhd8ed1ab_0 conda-forge 19kB +2023-11-07T14:44:08Z #11 455.2 + identify 2.5.31 pyhd8ed1ab_0 conda-forge 78kB +2023-11-07T14:44:08Z #11 455.2 + pyopenssl 23.3.0 pyhd8ed1ab_0 conda-forge 127kB +2023-11-07T14:44:08Z #11 455.2 + oauthlib 3.2.2 pyhd8ed1ab_0 conda-forge 92kB +2023-11-07T14:44:08Z #11 455.2 + paramiko 3.3.1 pyhd8ed1ab_0 conda-forge 159kB +2023-11-07T14:44:08Z #11 455.2 + tifffile 2023.8.12 pyhd8ed1ab_0 conda-forge 175kB +2023-11-07T14:44:08Z #11 455.2 + jupyter_client 7.4.9 pyhd8ed1ab_0 conda-forge 99kB +2023-11-07T14:44:08Z #11 455.2 + cfgrib 0.9.10.4 pyhd8ed1ab_0 conda-forge 42kB +2023-11-07T14:44:08Z #11 455.2 + intake-xarray 0.7.0 pyhd8ed1ab_0 conda-forge 28kB +2023-11-07T14:44:08Z #11 455.2 + intake-esm 2023.6.14 pyhd8ed1ab_0 conda-forge 31kB +2023-11-07T14:44:08Z #11 455.2 + jsonschema-specifications 2023.7.1 pyhd8ed1ab_0 conda-forge 15kB +2023-11-07T14:44:08Z #11 455.2 + selenium 4.15.1 pyhd8ed1ab_0 conda-forge 292kB +2023-11-07T14:44:08Z #11 455.2 + geoviews 1.11.0 pyhd8ed1ab_0 conda-forge 8kB +2023-11-07T14:44:08Z #11 455.2 + pre-commit 3.5.0 pyha770c72_0 conda-forge 179kB +2023-11-07T14:44:08Z #11 455.2 + myproxyclient 2.1.0 pyhd8ed1ab_2 conda-forge 27kB +2023-11-07T14:44:08Z #11 455.2 + certipy 0.1.3 py_0 conda-forge 17kB +2023-11-07T14:44:08Z #11 455.2 + requests-oauthlib 1.3.1 pyhd8ed1ab_0 conda-forge 22kB +2023-11-07T14:44:08Z #11 455.2 + scp 0.14.5 pyhd8ed1ab_0 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + ipykernel 6.26.0 pyhf8b6a83_0 conda-forge 116kB +2023-11-07T14:44:08Z #11 455.2 + jsonschema 4.19.2 pyhd8ed1ab_0 conda-forge 72kB +2023-11-07T14:44:08Z #11 455.2 + esgf-pyclient 0.3.1 pyh1a96a4e_2 conda-forge 23kB +2023-11-07T14:44:08Z #11 455.2 + qtconsole-base 5.5.0 pyha770c72_0 conda-forge 100kB +2023-11-07T14:44:08Z #11 455.2 + jupyter_console 6.6.3 pyhd8ed1ab_0 conda-forge 26kB +2023-11-07T14:44:08Z #11 455.2 + pydeck 0.8.0 pyhd8ed1ab_0 conda-forge 4MB +2023-11-07T14:44:08Z #11 455.2 + jupyter-dash 0.4.2 pyhd8ed1ab_1 conda-forge 21kB +2023-11-07T14:44:08Z #11 455.2 + jsonschema-with-format-nongpl 4.19.2 pyhd8ed1ab_0 conda-forge 7kB +2023-11-07T14:44:08Z #11 455.2 + nbformat 5.9.2 pyhd8ed1ab_0 conda-forge 100kB +2023-11-07T14:44:08Z #11 455.2 + altair 5.1.2 pyhd8ed1ab_0 conda-forge 411kB +2023-11-07T14:44:08Z #11 455.2 + jupyter_telemetry 0.1.0 pyhd8ed1ab_1 conda-forge 10kB +2023-11-07T14:44:08Z #11 455.2 + jupyter_events 0.9.0 pyhd8ed1ab_0 conda-forge 21kB +2023-11-07T14:44:08Z #11 455.2 + cdat_info 8.2.1 pyhd8ed1ab_2 conda-forge 16kB +2023-11-07T14:44:08Z #11 455.2 + nbclient 0.7.4 pyhd8ed1ab_0 conda-forge 65kB +2023-11-07T14:44:08Z #11 455.2 + jupytext 1.15.2 pyh5da7574_0 conda-forge 186kB +2023-11-07T14:44:08Z #11 455.2 + nbval 0.10.0 pyhd8ed1ab_0 conda-forge 27kB +2023-11-07T14:44:08Z #11 455.2 + streamlit 1.28.1 pyhd8ed1ab_0 conda-forge 7MB +2023-11-07T14:44:08Z #11 455.2 + jupyterhub-base 4.0.2 pyh31011fe_0 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + nbconvert-core 7.11.0 pyhd8ed1ab_0 conda-forge 188kB +2023-11-07T14:44:08Z #11 455.2 + jupyterhub 4.0.2 pyh31011fe_0 conda-forge 8kB +2023-11-07T14:44:08Z #11 455.2 + jupyter_server 2.10.0 pyhd8ed1ab_0 conda-forge 317kB +2023-11-07T14:44:08Z #11 455.2 + nbconvert-pandoc 7.11.0 pyhd8ed1ab_0 conda-forge 7kB +2023-11-07T14:44:08Z #11 455.2 + jupyter-server-mathjax 0.2.6 pyh5bfe37b_1 conda-forge 2MB +2023-11-07T14:44:08Z #11 455.2 + jupyter_server_fileid 0.9.0 pyhd8ed1ab_0 conda-forge 19kB +2023-11-07T14:44:08Z #11 455.2 + notebook-shim 0.2.3 pyhd8ed1ab_0 conda-forge 17kB +2023-11-07T14:44:08Z #11 455.2 + jupyterlab_server 2.25.0 pyhd8ed1ab_0 conda-forge 48kB +2023-11-07T14:44:08Z #11 455.2 + jupyter-resource-usage 0.7.1 pyhd8ed1ab_0 conda-forge 34kB +2023-11-07T14:44:08Z #11 455.2 + jupyter-archive 3.4.0 pyhd8ed1ab_0 conda-forge 29kB +2023-11-07T14:44:08Z #11 455.2 + nbconvert 7.11.0 pyhd8ed1ab_0 conda-forge 8kB +2023-11-07T14:44:08Z #11 455.2 + nbdime 3.2.1 pyhd8ed1ab_0 conda-forge 4MB +2023-11-07T14:44:08Z #11 455.2 + jupyter_server_ydoc 0.8.0 pyhd8ed1ab_0 conda-forge 15kB +2023-11-07T14:44:08Z #11 455.2 + mamba_gator 5.2.1 pyhd8ed1ab_0 conda-forge 4MB +2023-11-07T14:44:08Z #11 455.2 + nbclassic 1.0.0 pyhb4ecaf3_1 conda-forge 6MB +2023-11-07T14:44:08Z #11 455.2 + voila 0.5.5 pyhd8ed1ab_0 conda-forge 3MB +2023-11-07T14:44:08Z #11 455.2 + notebook 6.5.6 pyha770c72_0 conda-forge 307kB +2023-11-07T14:44:08Z #11 455.2 + nbresuse 0.4.0 pyhd8ed1ab_0 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + jupyterlab 3.6.6 pyhd8ed1ab_0 conda-forge 5MB +2023-11-07T14:44:08Z #11 455.2 + jupyter 1.0.0 pyhd8ed1ab_10 conda-forge 9kB +2023-11-07T14:44:08Z #11 455.2 + jupyterlab-topbar 0.6.1 pyhd8ed1ab_2 conda-forge 21kB +2023-11-07T14:44:08Z #11 455.2 + jupyterlab-git 0.44.0 pyhd8ed1ab_0 conda-forge 543kB +2023-11-07T14:44:08Z #11 455.2 + jupyterlab-system-monitor 0.8.0 pyhd8ed1ab_2 conda-forge 31kB +2023-11-07T14:44:08Z #11 455.2 + aiohttp 3.8.6 py310h2372a71_1 conda-forge 650kB +2023-11-07T14:44:08Z #11 455.2 + scikit-image 0.22.0 py310hcc13569_2 conda-forge 11MB +2023-11-07T14:44:08Z #11 455.2 + cdtime 3.1.4 py310h1a17f1e_7 conda-forge 69kB +2023-11-07T14:44:08Z #11 455.2 + cdms2 3.1.5 py310h5f4584e_15 conda-forge 645kB +2023-11-07T14:44:08Z #11 455.2 + esgf-compute-api 2.3.9 0_h1234567_ cdat 40kB +2023-11-07T14:44:08Z #11 455.2 + google-auth 2.23.4 pyhca7485f_0 conda-forge 102kB +2023-11-07T14:44:08Z #11 455.2 + aiobotocore 2.7.0 pyhd8ed1ab_1 conda-forge 64kB +2023-11-07T14:44:08Z #11 455.2 + jupyter-server-proxy 4.1.0 pyhd8ed1ab_0 conda-forge 34kB +2023-11-07T14:44:08Z #11 455.2 + intake-thredds 2022.8.19 pyhd8ed1ab_0 conda-forge 14kB +2023-11-07T14:44:08Z #11 455.2 + google-api-core 2.12.0 pyhd8ed1ab_0 conda-forge 78kB +2023-11-07T14:44:08Z #11 455.2 + google-auth-oauthlib 1.1.0 pyhd8ed1ab_0 conda-forge 21kB +2023-11-07T14:44:08Z #11 455.2 + s3fs 2023.10.0 pyhd8ed1ab_0 conda-forge 32kB +2023-11-07T14:44:08Z #11 455.2 + dask-labextension 6.2.0 pyhd8ed1ab_0 conda-forge 42kB +2023-11-07T14:44:08Z #11 455.2 + google-cloud-core 2.3.3 pyhd8ed1ab_0 conda-forge 29kB +2023-11-07T14:44:08Z #11 455.2 + google-cloud-storage 2.13.0 pyhca7485f_0 conda-forge 87kB +2023-11-07T14:44:08Z #11 455.2 + gcsfs 2023.10.0 pyhd8ed1ab_0 conda-forge 36kB +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 Change: +2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 - libthrift 0.18.1 h8fd135c_2 conda-forge Cached +2023-11-07T14:44:08Z #11 455.2 + libthrift 0.18.1 h5e4af38_0 conda-forge 4MB +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 Downgrade: +2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 - urllib3 2.0.7 pyhd8ed1ab_0 conda-forge Cached +2023-11-07T14:44:08Z #11 455.2 + urllib3 1.26.18 pyhd8ed1ab_0 conda-forge 115kB +2023-11-07T14:44:08Z #11 455.2 - libevent 2.1.12 hf998b51_1 conda-forge Cached +2023-11-07T14:44:08Z #11 455.2 + libevent 2.1.10 h28343ad_4 conda-forge 1MB +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 Summary: +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 Install: 382 packages +2023-11-07T14:44:08Z #11 455.2 Change: 1 packages +2023-11-07T14:44:08Z #11 455.2 Downgrade: 2 packages +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 Total download: 452MB +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:44:08Z #11 455.2 +2023-11-07T14:46:29Z #11 596.3 +2023-11-07T14:46:29Z #11 596.3 Downloading and Extracting Packages: ...working... done +2023-11-07T14:46:36Z #11 596.3 Preparing transaction: ...working... done +2023-11-07T14:46:53Z #11 602.9 Verifying transaction: ...working... done +2023-11-07T14:47:39Z #11 620.4 Executing transaction: ...working... done +2023-11-07T14:47:54Z #11 666.2 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2023-11-07T14:47:54Z #11 681.5 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.yuzrlpy5.requirements.txt', '--exists-action=b'] +2023-11-07T14:47:54Z #11 681.5 Pip subprocess output: +2023-11-07T14:47:54Z #11 681.5 Collecting xncml (from -r /condaenv.yuzrlpy5.requirements.txt (line 1)) +2023-11-07T14:47:54Z #11 681.5 Downloading xncml-0.3-py2.py3-none-any.whl.metadata (1.1 kB) +2023-11-07T14:47:54Z #11 681.5 Collecting hsclient (from -r /condaenv.yuzrlpy5.requirements.txt (line 2)) +2023-11-07T14:47:54Z #11 681.5 Downloading hsclient-0.3.4-py3-none-any.whl.metadata (4.7 kB) +2023-11-07T14:47:54Z #11 681.5 Collecting pixiedust (from -r /condaenv.yuzrlpy5.requirements.txt (line 3)) +2023-11-07T14:47:54Z #11 681.5 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 9.6 MB/s eta 0:00:00 +2023-11-07T14:47:54Z #11 681.5 Preparing metadata (setup.py): started +2023-11-07T14:47:54Z #11 681.5 Preparing metadata (setup.py): finished with status 'done' +2023-11-07T14:47:54Z #11 681.5 Collecting ipython_blocking (from -r /condaenv.yuzrlpy5.requirements.txt (line 4)) +2023-11-07T14:47:54Z #11 681.5 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2023-11-07T14:47:54Z #11 681.5 Collecting jupyternotify (from -r /condaenv.yuzrlpy5.requirements.txt (line 5)) +2023-11-07T14:47:54Z #11 681.5 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2023-11-07T14:47:54Z #11 681.5 Preparing metadata (setup.py): started +2023-11-07T14:47:54Z #11 681.5 Preparing metadata (setup.py): finished with status 'done' +2023-11-07T14:47:54Z #11 681.5 Collecting jupyterlab-logout (from -r /condaenv.yuzrlpy5.requirements.txt (line 6)) +2023-11-07T14:47:54Z #11 681.5 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2023-11-07T14:47:54Z #11 681.5 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.yuzrlpy5.requirements.txt (line 7)) +2023-11-07T14:47:54Z #11 681.5 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 26.2 MB/s eta 0:00:00 +2023-11-07T14:47:54Z #11 681.5 Collecting pytest-tornasync (from -r /condaenv.yuzrlpy5.requirements.txt (line 8)) +2023-11-07T14:47:54Z #11 681.5 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2023-11-07T14:47:54Z #11 681.5 Collecting xmltodict (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) +2023-11-07T14:47:54Z #11 681.5 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2023-11-07T14:47:54Z #11 681.5 Collecting xsdata (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) +2023-11-07T14:47:54Z #11 681.5 Downloading xsdata-23.8-py3-none-any.whl.metadata (5.8 kB) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (2023.8.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.6.3) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.6.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (2023.10.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (5.9.5) +2023-11-07T14:47:54Z #11 681.5 Collecting hsmodels>=0.5.5 (from hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) +2023-11-07T14:47:54Z #11 681.5 Downloading hsmodels-0.5.8-py3-none-any.whl.metadata (725 bytes) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (2.31.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (1.3.1) +2023-11-07T14:47:54Z #11 681.5 Collecting geojson (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) +2023-11-07T14:47:54Z #11 681.5 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2023-11-07T14:47:54Z #11 681.5 Collecting astunparse (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) +2023-11-07T14:47:54Z #11 681.5 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (3.5.1) +2023-11-07T14:47:54Z #11 681.5 Collecting colour (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) +2023-11-07T14:47:54Z #11 681.5 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (3.8.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (2.1.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (8.17.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (8.1.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.7.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (1.0.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.6.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (3.6.6) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (7.4.3) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: tornado>=5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (6.3.3) +2023-11-07T14:47:54Z #11 681.5 Collecting rdflib<6.0.0 (from hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) +2023-11-07T14:47:54Z #11 681.5 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 18.2 MB/s eta 0:00:00 +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pydantic<2.0,>=1.8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (1.10.13) +2023-11-07T14:47:54Z #11 681.5 Collecting email-validator (from hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) +2023-11-07T14:47:54Z #11 681.5 Downloading email_validator-2.1.0.post1-py3-none-any.whl.metadata (25 kB) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (23.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (5.5.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.25.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.10.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.2.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.8.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.0.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (6.5.6) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (3.1.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.0.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (2.0.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pluggy<2.0,>=0.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (1.3.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (1.1.3) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (0.41.3) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (1.16.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: numpy>1.13.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cftime->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.24.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: click>=8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (8.1.7) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (3.0.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (2023.10.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.4.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pyyaml>=5.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (6.0.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (0.12.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (6.8.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (5.1.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.19.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.1.6) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: prompt-toolkit!=3.0.37,<3.1.0,>=3.0.30 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (3.0.39) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (2.16.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.6.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: traitlets>=5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (5.13.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (4.8.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.1.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: widgetsnbextension~=4.0.9 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (4.0.9) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab-widgets~=3.0.9 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (3.0.9) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (5.5.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (6.6.3) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (7.11.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (6.26.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (1.2.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (0.12.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (4.44.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (1.4.5) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pillow>=8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (9.4.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (3.1.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: python-dateutil>=2.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (2.8.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (7.4.9) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (5.9.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (2023.3.post1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (2023.3) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (3.3.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (3.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (1.26.18) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (2023.7.22) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (3.2.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: typing-extensions in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xsdata->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (4.8.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (3.17.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.8.3) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.1.3) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (1.5.8) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (24.0.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: platformdirs>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-core->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (3.11.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (4.0.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (23.1.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-events>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.9.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.4.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (7.4.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.18.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.8.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.17.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.6.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.9.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.8.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.5.9) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.13.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.9.14) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (4.19.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (4.12.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (6.1.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (0.7.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (0.2.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (3.0.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (1.5.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (1.2.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (2.18.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.2.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.2.3) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.0.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.7.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit!=3.0.37,<3.1.0,>=3.0.30->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.2.9) +2023-11-07T14:47:54Z #11 681.5 Collecting isodate (from rdflib<6.0.0->hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) +2023-11-07T14:47:54Z #11 681.5 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.8 MB/s eta 0:00:00 +2023-11-07T14:47:54Z #11 681.5 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) +2023-11-07T14:47:54Z #11 681.5 Downloading dnspython-2.4.2-py3-none-any.whl.metadata (4.9 kB) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (1.8.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (2.4.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (2.0.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (2.4.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.2.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.3.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from bleach!=5.0.0->nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (0.5.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: attrs>=22.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (23.1.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2023.7.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.30.2) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.12.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.0.7) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.1.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.1.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (22.1.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.19.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (21.2.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (2.5) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.5.1) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (20.11.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.4) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.3.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.13) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: cffi>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi-bindings->argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.16.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.0.1->argon2-cffi-bindings->argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.21) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.3.0) +2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.8.19.14) +2023-11-07T14:47:54Z #11 681.5 Downloading xncml-0.3-py2.py3-none-any.whl (871 kB) +2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 871.1/871.1 kB 38.4 MB/s eta 0:00:00 +2023-11-07T14:47:54Z #11 681.5 Downloading hsclient-0.3.4-py3-none-any.whl (18 kB) +2023-11-07T14:47:54Z #11 681.5 Downloading hsmodels-0.5.8-py3-none-any.whl (33 kB) +2023-11-07T14:47:54Z #11 681.5 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2023-11-07T14:47:54Z #11 681.5 Downloading xsdata-23.8-py3-none-any.whl (193 kB) +2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 193.1/193.1 kB 15.8 MB/s eta 0:00:00 +2023-11-07T14:47:54Z #11 681.5 Downloading email_validator-2.1.0.post1-py3-none-any.whl (32 kB) +2023-11-07T14:47:54Z #11 681.5 Downloading dnspython-2.4.2-py3-none-any.whl (300 kB) +2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 300.4/300.4 kB 24.9 MB/s eta 0:00:00 +2023-11-07T14:47:54Z #11 681.5 Building wheels for collected packages: pixiedust, jupyternotify +2023-11-07T14:47:54Z #11 681.5 Building wheel for pixiedust (setup.py): started +2023-11-07T14:47:54Z #11 681.5 Building wheel for pixiedust (setup.py): finished with status 'done' +2023-11-07T14:47:54Z #11 681.5 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321785 sha256=4afa56cd414d8bc177e1bcf89f8b90540bdcf4cca11e7d9de95665d2e4463c72 +2023-11-07T14:47:54Z #11 681.5 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 +2023-11-07T14:47:54Z #11 681.5 Building wheel for jupyternotify (setup.py): started +2023-11-07T14:47:54Z #11 681.5 Building wheel for jupyternotify (setup.py): finished with status 'done' +2023-11-07T14:47:54Z #11 681.5 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=86719f36cece685178462e278fdf132bea4c7f60945f55d3ae142bd926a79a8a +2023-11-07T14:47:54Z #11 681.5 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 +2023-11-07T14:47:54Z #11 681.5 Successfully built pixiedust jupyternotify +2023-11-07T14:47:54Z #11 681.5 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, pixiedust, hsmodels, xncml, hsclient, ipython_blocking, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2023-11-07T14:47:54Z #11 681.5 Successfully installed astunparse-1.6.3 colour-0.1.5 dnspython-2.4.2 email-validator-2.1.0.post1 geojson-3.1.0 hsclient-0.3.4 hsmodels-0.5.8 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.3 xsdata-23.8 +2023-11-07T14:47:54Z #11 681.5 +2023-11-07T14:47:54Z #11 681.5 done +2023-11-07T14:47:54Z #11 681.5 # +2023-11-07T14:47:54Z #11 681.5 # To activate this environment, use +2023-11-07T14:47:54Z #11 681.5 # +2023-11-07T14:47:54Z #11 681.5 # $ conda activate birdy +2023-11-07T14:47:54Z #11 681.5 # +2023-11-07T14:47:54Z #11 681.5 # To deactivate an active environment, use +2023-11-07T14:47:54Z #11 681.5 # +2023-11-07T14:47:54Z #11 681.5 # $ conda deactivate +2023-11-07T14:47:54Z #11 681.5 +2023-11-07T14:48:18Z #11 705.1 Will remove 672 (962.1 MB) tarball(s). +2023-11-07T14:48:18Z #11 705.1 Will remove 1 index cache(s). +2023-11-07T14:48:18Z #11 705.1 Will remove 49 (98.7 MB) package(s). +2023-11-07T14:48:18Z #11 705.1 There are no tempfile(s) to remove. +2023-11-07T14:48:18Z #11 705.1 There are no logfile(s) to remove. +2023-11-07T14:48:19Z #11 DONE 705.8s +2023-11-07T14:48:19Z +2023-11-07T14:48:19Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2023-11-07T14:48:20Z #12 1.456 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2023-11-07T14:48:20Z #12 DONE 1.6s +2023-11-07T14:48:20Z +2023-11-07T14:48:20Z #13 [ 8/10] RUN jupyter lab build +2023-11-07T14:48:22Z #13 1.698 [LabBuildApp] JupyterLab 3.6.6 +2023-11-07T14:48:22Z #13 1.699 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2023-11-07T14:48:23Z #13 2.338 [LabBuildApp] Building jupyterlab assets (production, minimized) +2023-11-07T14:50:43Z #13 2.355 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ +2023-11-07T14:50:43Z #13 DONE 142.3s +2023-11-07T14:50:43Z +2023-11-07T14:50:43Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2023-11-07T14:50:43Z #14 0.724 Enabling: voila +2023-11-07T14:50:43Z #14 0.724 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2023-11-07T14:50:43Z #14 0.727 - Validating... +2023-11-07T14:50:44Z #14 1.556 voila 0.5.5 OK +2023-11-07T14:50:45Z #14 1.942 Enabling: panel.io.jupyter_server_extension +2023-11-07T14:50:45Z #14 1.942 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2023-11-07T14:50:45Z #14 1.945 - Validating... +2023-11-07T14:50:46Z #14 3.863 panel.io.jupyter_server_extension OK +2023-11-07T14:50:47Z #14 4.379 - Validating... +2023-11-07T14:50:48Z #14 5.272 dask_labextension 6.2.0 OK +2023-11-07T14:50:48Z #14 5.272 - Validating... +2023-11-07T14:50:48Z #14 5.272 jupyter_server_proxy OK +2023-11-07T14:50:48Z #14 5.273 - Validating... +2023-11-07T14:50:48Z #14 5.446 jupyter_resource_usage 0.7.1 OK +2023-11-07T14:50:48Z #14 5.446 - Validating... +2023-11-07T14:50:48Z #14 5.505  X is jupyter_server_ydoc importable? +2023-11-07T14:50:48Z #14 5.505 - Validating... +2023-11-07T14:50:48Z #14 5.571 jupyterlab 3.6.6 OK +2023-11-07T14:50:48Z #14 5.571 - Validating... +2023-11-07T14:50:48Z #14 5.604 jupyterlab_git 0.44.0 OK +2023-11-07T14:50:48Z #14 5.605 - Validating... +2023-11-07T14:50:48Z #14 5.684 jupytext 1.15.2 OK +2023-11-07T14:50:48Z #14 5.684 - Validating... +2023-11-07T14:50:48Z #14 5.689 mamba_gator 5.2.1 OK +2023-11-07T14:50:48Z #14 5.689 - Validating... +2023-11-07T14:50:48Z #14 5.689 nbdime 3.2.1 OK +2023-11-07T14:50:48Z #14 5.689 - Validating... +2023-11-07T14:50:49Z #14 6.839 panel.io.jupyter_server_extension OK +2023-11-07T14:50:49Z #14 6.839 - Validating... +2023-11-07T14:50:50Z #14 6.906 nbresuse OK +2023-11-07T14:50:50Z #14 6.906 - Validating... +2023-11-07T14:50:50Z #14 7.135 voila.server_extension OK +2023-11-07T14:50:50Z #14 7.135 - Validating... +2023-11-07T14:50:50Z #14 7.135 voila 0.5.5 OK +2023-11-07T14:50:50Z #14 7.136 config dir: /opt/conda/envs/birdy/etc/jupyter +2023-11-07T14:50:50Z #14 7.136 dask_labextension  enabled  +2023-11-07T14:50:50Z #14 7.136 jupyter_server_proxy  enabled  +2023-11-07T14:50:50Z #14 7.136 jupyter_resource_usage  enabled  +2023-11-07T14:50:50Z #14 7.136 jupyter_server_ydoc  enabled  +2023-11-07T14:50:50Z #14 7.136 jupyterlab  enabled  +2023-11-07T14:50:50Z #14 7.136 jupyterlab_git  enabled  +2023-11-07T14:50:50Z #14 7.136 jupytext  enabled  +2023-11-07T14:50:50Z #14 7.136 mamba_gator  enabled  +2023-11-07T14:50:50Z #14 7.136 nbdime  enabled  +2023-11-07T14:50:50Z #14 7.136 panel.io.jupyter_server_extension  enabled  +2023-11-07T14:50:50Z #14 7.136 nbresuse  enabled  +2023-11-07T14:50:50Z #14 7.136 voila.server_extension  enabled  +2023-11-07T14:50:50Z #14 7.136 voila  enabled  +2023-11-07T14:50:50Z #14 DONE 7.6s +2023-11-07T14:50:50Z +2023-11-07T14:50:50Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2023-11-07T14:50:51Z #15 0.340 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2023-11-07T14:50:51Z #15 0.355 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.110.133, 185.199.111.133, ... +2023-11-07T14:50:51Z #15 0.358 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2023-11-07T14:50:51Z #15 0.363 HTTP request sent, awaiting response... 200 OK +2023-11-07T14:50:51Z #15 0.477 Length: 9769 (9.5K) [text/plain] +2023-11-07T14:50:51Z #15 0.477 Saving to: ‘/usr/local/bin/start.sh’ +2023-11-07T14:50:51Z #15 0.478 +2023-11-07T14:50:51Z #15 0.478 0K ......... 100% 5.04M=0.002s +2023-11-07T14:50:51Z #15 0.479 +2023-11-07T14:50:51Z #15 0.479 2023-11-07 14:50:51 (5.04 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2023-11-07T14:50:51Z #15 0.479 +2023-11-07T14:50:51Z #15 0.488 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2023-11-07T14:50:51Z #15 0.511 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2023-11-07T14:50:51Z #15 0.517 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2023-11-07T14:50:51Z #15 0.523 HTTP request sent, awaiting response... 200 OK +2023-11-07T14:50:51Z #15 0.591 Length: 359 [text/plain] +2023-11-07T14:50:51Z #15 0.591 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2023-11-07T14:50:51Z #15 0.591 +2023-11-07T14:50:51Z #15 0.591 0K 100% 6.31M=0s +2023-11-07T14:50:51Z #15 0.592 +2023-11-07T14:50:51Z #15 0.592 2023-11-07 14:50:51 (6.31 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2023-11-07T14:50:51Z #15 0.592 +2023-11-07T14:50:51Z #15 0.598 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2023-11-07T14:50:51Z #15 0.624 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2023-11-07T14:50:51Z #15 0.625 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2023-11-07T14:50:51Z #15 0.631 HTTP request sent, awaiting response... 200 OK +2023-11-07T14:50:51Z #15 0.711 Length: 852 [text/plain] +2023-11-07T14:50:51Z #15 0.711 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2023-11-07T14:50:51Z #15 0.711 +2023-11-07T14:50:51Z #15 0.711 0K 100% 39.4M=0s +2023-11-07T14:50:51Z #15 0.712 +2023-11-07T14:50:51Z #15 0.713 2023-11-07 14:50:51 (39.4 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2023-11-07T14:50:51Z #15 0.713 +2023-11-07T14:50:51Z #15 0.718 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2023-11-07T14:50:51Z #15 0.741 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2023-11-07T14:50:51Z #15 0.742 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2023-11-07T14:50:51Z #15 0.749 HTTP request sent, awaiting response... 200 OK +2023-11-07T14:50:51Z #15 0.847 Length: 1034 (1.0K) [text/plain] +2023-11-07T14:50:51Z #15 0.847 Saving to: ‘/usr/local/bin/fix-permissions’ +2023-11-07T14:50:51Z #15 0.847 +2023-11-07T14:50:51Z #15 0.847 0K . 100% 4.23M=0s +2023-11-07T14:50:51Z #15 0.849 +2023-11-07T14:50:51Z #15 0.849 2023-11-07 14:50:51 (4.23 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2023-11-07T14:50:51Z #15 0.849 +2023-11-07T14:50:51Z #15 0.855 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2023-11-07T14:50:51Z #15 0.878 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2023-11-07T14:50:51Z #15 0.879 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2023-11-07T14:50:51Z #15 0.885 HTTP request sent, awaiting response... 200 OK +2023-11-07T14:50:51Z #15 0.967 Length: 1836 (1.8K) [text/plain] +2023-11-07T14:50:51Z #15 0.967 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2023-11-07T14:50:51Z #15 0.968 +2023-11-07T14:50:51Z #15 0.968 0K . 100% 9.71M=0s +2023-11-07T14:50:51Z #15 0.968 +2023-11-07T14:50:51Z #15 0.968 2023-11-07 14:50:51 (9.71 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2023-11-07T14:50:51Z #15 0.968 +2023-11-07T14:50:51Z #15 1.178 --2023-11-07 14:50:51-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2023-11-07T14:50:51Z #15 1.200 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.35, 3.162.103.63, 3.162.103.75, ... +2023-11-07T14:50:51Z #15 1.212 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.35|:443... connected. +2023-11-07T14:50:52Z #15 1.220 HTTP request sent, awaiting response... 200 OK +2023-11-07T14:50:52Z #15 1.253 Length: 132675270 (127M) [application/x-tar] +2023-11-07T14:50:52Z #15 1.253 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2023-11-07T14:50:52Z #15 1.254 +2023-11-07T14:50:52Z #15 1.254 0K .......... .......... .......... .......... .......... 0% 23.3M 5s +2023-11-07T14:50:52Z #15 1.255 50K .......... .......... .......... .......... .......... 0% 37.0M 4s +2023-11-07T14:50:52Z #15 1.257 100K .......... .......... .......... .......... .......... 0% 138M 3s +2023-11-07T14:50:52Z #15 1.257 150K .......... .......... .......... .......... .......... 0% 77.0M 3s +2023-11-07T14:50:52Z #15 1.257 200K .......... .......... .......... .......... .......... 0% 72.7M 3s +2023-11-07T14:50:52Z #15 1.258 250K .......... .......... .......... .......... .......... 0% 48.9M 3s +2023-11-07T14:50:52Z #15 1.259 300K .......... .......... .......... .......... .......... 0% 38.4M 3s +2023-11-07T14:50:52Z #15 1.261 350K .......... .......... .......... .......... .......... 0% 38.1M 3s +2023-11-07T14:50:52Z #15 1.262 400K .......... .......... .......... .......... .......... 0% 50.9M 3s +2023-11-07T14:50:52Z #15 1.263 450K .......... .......... .......... .......... .......... 0% 55.8M 3s +2023-11-07T14:50:52Z #15 1.264 500K .......... .......... .......... .......... .......... 0% 46.5M 3s +2023-11-07T14:50:52Z #15 1.265 550K .......... .......... .......... .......... .......... 0% 42.5M 3s +2023-11-07T14:50:52Z #15 1.266 600K .......... .......... .......... .......... .......... 0% 44.3M 3s +2023-11-07T14:50:52Z #15 1.267 650K .......... .......... .......... .......... .......... 0% 51.0M 3s +2023-11-07T14:50:52Z #15 1.268 700K .......... .......... .......... .......... .......... 0% 45.2M 3s +2023-11-07T14:50:52Z #15 1.269 750K .......... .......... .......... .......... .......... 0% 41.3M 3s +2023-11-07T14:50:52Z #15 1.270 800K .......... .......... .......... .......... .......... 0% 45.1M 3s +2023-11-07T14:50:52Z #15 1.271 850K .......... .......... .......... .......... .......... 0% 51.0M 3s +2023-11-07T14:50:52Z #15 1.272 900K .......... .......... .......... .......... .......... 0% 51.1M 3s +2023-11-07T14:50:52Z #15 1.273 950K .......... .......... .......... .......... .......... 0% 32.1M 3s +2023-11-07T14:50:52Z #15 1.275 1000K .......... .......... .......... .......... .......... 0% 93.1M 3s +2023-11-07T14:50:52Z #15 1.280 1050K .......... .......... .......... .......... .......... 0% 199M 3s +2023-11-07T14:50:52Z #15 1.280 1100K .......... .......... .......... .......... .......... 0% 202M 3s +2023-11-07T14:50:52Z #15 1.280 1150K .......... .......... .......... .......... .......... 0% 201M 2s +2023-11-07T14:50:52Z #15 1.280 1200K .......... .......... .......... .......... .......... 0% 235M 2s +2023-11-07T14:50:52Z #15 1.280 1250K .......... .......... .......... .......... .......... 1% 209M 2s +2023-11-07T14:50:52Z #15 1.280 1300K .......... .......... .......... .......... .......... 1% 174M 2s +2023-11-07T14:50:52Z #15 1.280 1350K .......... .......... .......... .......... .......... 1% 175M 2s +2023-11-07T14:50:52Z #15 1.280 1400K .......... .......... .......... .......... .......... 1% 183M 2s +2023-11-07T14:50:52Z #15 1.280 1450K .......... .......... .......... .......... .......... 1% 176M 2s +2023-11-07T14:50:52Z #15 1.280 1500K .......... .......... .......... .......... .......... 1% 187M 2s +2023-11-07T14:50:52Z #15 1.280 1550K .......... .......... .......... .......... .......... 1% 175M 2s +2023-11-07T14:50:52Z #15 1.280 1600K .......... .......... .......... .......... .......... 1% 184M 2s +2023-11-07T14:50:52Z #15 1.280 1650K .......... .......... .......... .......... .......... 1% 170M 2s +2023-11-07T14:50:52Z #15 1.280 1700K .......... .......... .......... .......... .......... 1% 162M 2s +2023-11-07T14:50:52Z #15 1.280 1750K .......... .......... .......... .......... .......... 1% 142M 2s +2023-11-07T14:50:52Z #15 1.280 1800K .......... .......... .......... .......... .......... 1% 145M 2s +2023-11-07T14:50:52Z #15 1.280 1850K .......... .......... .......... .......... .......... 1% 148M 2s +2023-11-07T14:50:52Z #15 1.280 1900K .......... .......... .......... .......... .......... 1% 140M 2s +2023-11-07T14:50:52Z #15 1.280 1950K .......... .......... .......... .......... .......... 1% 68.6M 2s +2023-11-07T14:50:52Z #15 1.281 2000K .......... .......... .......... .......... .......... 1% 22.1M 2s +2023-11-07T14:50:52Z #15 1.283 2050K .......... .......... .......... .......... .......... 1% 18.8M 2s +2023-11-07T14:50:52Z #15 1.286 2100K .......... .......... .......... .......... .......... 1% 32.9M 2s +2023-11-07T14:50:52Z #15 1.287 2150K .......... .......... .......... .......... .......... 1% 56.0M 2s +2023-11-07T14:50:52Z #15 1.288 2200K .......... .......... .......... .......... .......... 1% 34.2M 2s +2023-11-07T14:50:52Z #15 1.289 2250K .......... .......... .......... .......... .......... 1% 39.4M 2s +2023-11-07T14:50:52Z #15 1.291 2300K .......... .......... .......... .......... .......... 1% 112M 2s +2023-11-07T14:50:52Z #15 1.291 2350K .......... .......... .......... .......... .......... 1% 56.8M 2s +2023-11-07T14:50:52Z #15 1.292 2400K .......... .......... .......... .......... .......... 1% 129M 2s +2023-11-07T14:50:52Z #15 1.293 2450K .......... .......... .......... .......... .......... 1% 64.5M 2s +2023-11-07T14:50:52Z #15 1.293 2500K .......... .......... .......... .......... .......... 1% 53.2M 2s +2023-11-07T14:50:52Z #15 1.296 2550K .......... .......... .......... .......... .......... 2% 148M 2s +2023-11-07T14:50:52Z #15 1.296 2600K .......... .......... .......... .......... .......... 2% 128M 2s +2023-11-07T14:50:52Z #15 1.296 2650K .......... .......... .......... .......... .......... 2% 153M 2s +2023-11-07T14:50:52Z #15 1.296 2700K .......... .......... .......... .......... .......... 2% 150M 2s +2023-11-07T14:50:52Z #15 1.296 2750K .......... .......... .......... .......... .......... 2% 109M 2s +2023-11-07T14:50:52Z #15 1.296 2800K .......... .......... .......... .......... .......... 2% 142M 2s +2023-11-07T14:50:52Z #15 1.296 2850K .......... .......... .......... .......... .......... 2% 63.6M 2s +2023-11-07T14:50:52Z #15 1.297 2900K .......... .......... .......... .......... .......... 2% 32.1M 2s +2023-11-07T14:50:52Z #15 1.299 2950K .......... .......... .......... .......... .......... 2% 31.1M 2s +2023-11-07T14:50:52Z #15 1.300 3000K .......... .......... .......... .......... .......... 2% 34.0M 2s +2023-11-07T14:50:52Z #15 1.302 3050K .......... .......... .......... .......... .......... 2% 46.1M 2s +2023-11-07T14:50:52Z #15 1.303 3100K .......... .......... .......... .......... .......... 2% 81.5M 2s +2023-11-07T14:50:52Z #15 1.304 3150K .......... .......... .......... .......... .......... 2% 152M 2s +2023-11-07T14:50:52Z #15 1.304 3200K .......... .......... .......... .......... .......... 2% 65.5M 2s +2023-11-07T14:50:52Z #15 1.305 3250K .......... .......... .......... .......... .......... 2% 43.4M 2s +2023-11-07T14:50:52Z #15 1.305 3300K .......... .......... .......... .......... .......... 2% 51.7M 2s +2023-11-07T14:50:52Z #15 1.306 3350K .......... .......... .......... .......... .......... 2% 46.8M 2s +2023-11-07T14:50:52Z #15 1.307 3400K .......... .......... .......... .......... .......... 2% 74.5M 2s +2023-11-07T14:50:52Z #15 1.308 3450K .......... .......... .......... .......... .......... 2% 137M 2s +2023-11-07T14:50:52Z #15 1.308 3500K .......... .......... .......... .......... .......... 2% 135M 2s +2023-11-07T14:50:52Z #15 1.309 3550K .......... .......... .......... .......... .......... 2% 159M 2s +2023-11-07T14:50:52Z #15 1.309 3600K .......... .......... .......... .......... .......... 2% 114M 2s +2023-11-07T14:50:52Z #15 1.309 3650K .......... .......... .......... .......... .......... 2% 149M 2s +2023-11-07T14:50:52Z #15 1.310 3700K .......... .......... .......... .......... .......... 2% 136M 2s +2023-11-07T14:50:52Z #15 1.310 3750K .......... .......... .......... .......... .......... 2% 126M 2s +2023-11-07T14:50:52Z #15 1.310 3800K .......... .......... .......... .......... .......... 2% 163M 2s +2023-11-07T14:50:52Z #15 1.311 3850K .......... .......... .......... .......... .......... 3% 129M 2s +2023-11-07T14:50:52Z #15 1.311 3900K .......... .......... .......... .......... .......... 3% 149M 2s +2023-11-07T14:50:52Z #15 1.312 3950K .......... .......... .......... .......... .......... 3% 124M 2s +2023-11-07T14:50:52Z #15 1.312 4000K .......... .......... .......... .......... .......... 3% 146M 2s +2023-11-07T14:50:52Z #15 1.313 4050K .......... .......... .......... .......... .......... 3% 120M 2s +2023-11-07T14:50:52Z #15 1.313 4100K .......... .......... .......... .......... .......... 3% 135M 2s +2023-11-07T14:50:52Z #15 1.313 4150K .......... .......... .......... .......... .......... 3% 148M 2s +2023-11-07T14:50:52Z #15 1.313 4200K .......... .......... .......... .......... .......... 3% 135M 2s +2023-11-07T14:50:52Z #15 1.314 4250K .......... .......... .......... .......... .......... 3% 138M 2s +2023-11-07T14:50:52Z #15 1.314 4300K .......... .......... .......... .......... .......... 3% 158M 2s +2023-11-07T14:50:52Z #15 1.314 4350K .......... .......... .......... .......... .......... 3% 146M 2s +2023-11-07T14:50:52Z #15 1.315 4400K .......... .......... .......... .......... .......... 3% 137M 2s +2023-11-07T14:50:52Z #15 1.315 4450K .......... .......... .......... .......... .......... 3% 130M 2s +2023-11-07T14:50:52Z #15 1.315 4500K .......... .......... .......... .......... .......... 3% 148M 2s +2023-11-07T14:50:52Z #15 1.316 4550K .......... .......... .......... .......... .......... 3% 157M 2s +2023-11-07T14:50:52Z #15 1.316 4600K .......... .......... .......... .......... .......... 3% 151M 2s +2023-11-07T14:50:52Z #15 1.317 4650K .......... .......... .......... .......... .......... 3% 109M 2s +2023-11-07T14:50:52Z #15 1.317 4700K .......... .......... .......... .......... .......... 3% 148M 2s +2023-11-07T14:50:52Z #15 1.317 4750K .......... .......... .......... .......... .......... 3% 139M 2s +2023-11-07T14:50:52Z #15 1.317 4800K .......... .......... .......... .......... .......... 3% 137M 2s +2023-11-07T14:50:52Z #15 1.318 4850K .......... .......... .......... .......... .......... 3% 147M 2s +2023-11-07T14:50:52Z #15 1.318 4900K .......... .......... .......... .......... .......... 3% 151M 2s +2023-11-07T14:50:52Z #15 1.318 4950K .......... .......... .......... .......... .......... 3% 148M 2s +2023-11-07T14:50:52Z #15 1.319 5000K .......... .......... .......... .......... .......... 3% 131M 2s +2023-11-07T14:50:52Z #15 1.319 5050K .......... .......... .......... .......... .......... 3% 155M 2s +2023-11-07T14:50:52Z #15 1.320 5100K .......... .......... .......... .......... .......... 3% 149M 2s +2023-11-07T14:50:52Z #15 1.320 5150K .......... .......... .......... .......... .......... 4% 136M 2s +2023-11-07T14:50:52Z #15 1.321 5200K .......... .......... .......... .......... .......... 4% 107M 2s +2023-11-07T14:50:52Z #15 1.321 5250K .......... .......... .......... .......... .......... 4% 122M 2s +2023-11-07T14:50:52Z #15 1.325 5300K .......... .......... .......... .......... .......... 4% 178M 2s +2023-11-07T14:50:52Z #15 1.325 5350K .......... .......... .......... .......... .......... 4% 162M 2s +2023-11-07T14:50:52Z #15 1.325 5400K .......... .......... .......... .......... .......... 4% 108M 2s +2023-11-07T14:50:52Z #15 1.325 5450K .......... .......... .......... .......... .......... 4% 108M 2s +2023-11-07T14:50:52Z #15 1.325 5500K .......... .......... .......... .......... .......... 4% 132M 2s +2023-11-07T14:50:52Z #15 1.325 5550K .......... .......... .......... .......... .......... 4% 124M 2s +2023-11-07T14:50:52Z #15 1.325 5600K .......... .......... .......... .......... .......... 4% 128M 2s +2023-11-07T14:50:52Z #15 1.325 5650K .......... .......... .......... .......... .......... 4% 117M 2s +2023-11-07T14:50:52Z #15 1.325 5700K .......... .......... .......... .......... .......... 4% 147M 2s +2023-11-07T14:50:52Z #15 1.325 5750K .......... .......... .......... .......... .......... 4% 121M 2s +2023-11-07T14:50:52Z #15 1.325 5800K .......... .......... .......... .......... .......... 4% 129M 2s +2023-11-07T14:50:52Z #15 1.325 5850K .......... .......... .......... .......... .......... 4% 146M 2s +2023-11-07T14:50:52Z #15 1.325 5900K .......... .......... .......... .......... .......... 4% 121M 2s +2023-11-07T14:50:52Z #15 1.326 5950K .......... .......... .......... .......... .......... 4% 145M 2s +2023-11-07T14:50:52Z #15 1.326 6000K .......... .......... .......... .......... .......... 4% 125M 2s +2023-11-07T14:50:52Z #15 1.327 6050K .......... .......... .......... .......... .......... 4% 135M 1s +2023-11-07T14:50:52Z #15 1.327 6100K .......... .......... .......... .......... .......... 4% 144M 1s +2023-11-07T14:50:52Z #15 1.327 6150K .......... .......... .......... .......... .......... 4% 135M 1s +2023-11-07T14:50:52Z #15 1.328 6200K .......... .......... .......... .......... .......... 4% 147M 1s +2023-11-07T14:50:52Z #15 1.328 6250K .......... .......... .......... .......... .......... 4% 114M 1s +2023-11-07T14:50:52Z #15 1.329 6300K .......... .......... .......... .......... .......... 4% 135M 1s +2023-11-07T14:50:52Z #15 1.329 6350K .......... .......... .......... .......... .......... 4% 154M 1s +2023-11-07T14:50:52Z #15 1.329 6400K .......... .......... .......... .......... .......... 4% 118M 1s +2023-11-07T14:50:52Z #15 1.336 6450K .......... .......... .......... .......... .......... 5% 158M 1s +2023-11-07T14:50:52Z #15 1.337 6500K .......... .......... .......... .......... .......... 5% 161M 1s +2023-11-07T14:50:52Z #15 1.337 6550K .......... .......... .......... .......... .......... 5% 130M 1s +2023-11-07T14:50:52Z #15 1.337 6600K .......... .......... .......... .......... .......... 5% 148M 1s +2023-11-07T14:50:52Z #15 1.337 6650K .......... .......... .......... .......... .......... 5% 133M 1s +2023-11-07T14:50:52Z #15 1.337 6700K .......... .......... .......... .......... .......... 5% 111M 1s +2023-11-07T14:50:52Z #15 1.337 6750K .......... .......... .......... .......... .......... 5% 124M 1s +2023-11-07T14:50:52Z #15 1.337 6800K .......... .......... .......... .......... .......... 5% 99.9M 1s +2023-11-07T14:50:52Z #15 1.337 6850K .......... .......... .......... .......... .......... 5% 131M 1s +2023-11-07T14:50:52Z #15 1.337 6900K .......... .......... .......... .......... .......... 5% 121M 1s +2023-11-07T14:50:52Z #15 1.337 6950K .......... .......... .......... .......... .......... 5% 128M 1s +2023-11-07T14:50:52Z #15 1.337 7000K .......... .......... .......... .......... .......... 5% 118M 1s +2023-11-07T14:50:52Z #15 1.337 7050K .......... .......... .......... .......... .......... 5% 109M 1s +2023-11-07T14:50:52Z #15 1.337 7100K .......... .......... .......... .......... .......... 5% 122M 1s +2023-11-07T14:50:52Z #15 1.337 7150K .......... .......... .......... .......... .......... 5% 128M 1s +2023-11-07T14:50:52Z #15 1.337 7200K .......... .......... .......... .......... .......... 5% 124M 1s +2023-11-07T14:50:52Z #15 1.337 7250K .......... .......... .......... .......... .......... 5% 119M 1s +2023-11-07T14:50:52Z #15 1.337 7300K .......... .......... .......... .......... .......... 5% 118M 1s +2023-11-07T14:50:52Z #15 1.337 7350K .......... .......... .......... .......... .......... 5% 136M 1s +2023-11-07T14:50:52Z #15 1.337 7400K .......... .......... .......... .......... .......... 5% 130M 1s +2023-11-07T14:50:52Z #15 1.338 7450K .......... .......... .......... .......... .......... 5% 138M 1s +2023-11-07T14:50:52Z #15 1.338 7500K .......... .......... .......... .......... .......... 5% 131M 1s +2023-11-07T14:50:52Z #15 1.338 7550K .......... .......... .......... .......... .......... 5% 161M 1s +2023-11-07T14:50:52Z #15 1.339 7600K .......... .......... .......... .......... .......... 5% 127M 1s +2023-11-07T14:50:52Z #15 1.339 7650K .......... .......... .......... .......... .......... 5% 134M 1s +2023-11-07T14:50:52Z #15 1.339 7700K .......... .......... .......... .......... .......... 5% 151M 1s +2023-11-07T14:50:52Z #15 1.340 7750K .......... .......... .......... .......... .......... 6% 153M 1s +2023-11-07T14:50:52Z #15 1.340 7800K .......... .......... .......... .......... .......... 6% 155M 1s +2023-11-07T14:50:52Z #15 1.341 7850K .......... .......... .......... .......... .......... 6% 99.0M 1s +2023-11-07T14:50:52Z #15 1.341 7900K .......... .......... .......... .......... .......... 6% 161M 1s +2023-11-07T14:50:52Z #15 1.341 7950K .......... .......... .......... .......... .......... 6% 116M 1s +2023-11-07T14:50:52Z #15 1.342 8000K .......... .......... .......... .......... .......... 6% 138M 1s +2023-11-07T14:50:52Z #15 1.342 8050K .......... .......... .......... .......... .......... 6% 130M 1s +2023-11-07T14:50:52Z #15 1.342 8100K .......... .......... .......... .......... .......... 6% 134M 1s +2023-11-07T14:50:52Z #15 1.343 8150K .......... .......... .......... .......... .......... 6% 113M 1s +2023-11-07T14:50:52Z #15 1.343 8200K .......... .......... .......... .......... .......... 6% 124M 1s +2023-11-07T14:50:52Z #15 1.343 8250K .......... .......... .......... .......... .......... 6% 152M 1s +2023-11-07T14:50:52Z #15 1.343 8300K .......... .......... .......... .......... .......... 6% 150M 1s +2023-11-07T14:50:52Z #15 1.344 8350K .......... .......... .......... .......... .......... 6% 147M 1s +2023-11-07T14:50:52Z #15 1.344 8400K .......... .......... .......... .......... .......... 6% 107M 1s +2023-11-07T14:50:52Z #15 1.345 8450K .......... .......... .......... .......... .......... 6% 121M 1s +2023-11-07T14:50:52Z #15 1.345 8500K .......... .......... .......... .......... .......... 6% 140M 1s +2023-11-07T14:50:52Z #15 1.347 8550K .......... .......... .......... .......... .......... 6% 166M 1s +2023-11-07T14:50:52Z #15 1.347 8600K .......... .......... .......... .......... .......... 6% 118M 1s +2023-11-07T14:50:52Z #15 1.347 8650K .......... .......... .......... .......... .......... 6% 160M 1s +2023-11-07T14:50:52Z #15 1.347 8700K .......... .......... .......... .......... .......... 6% 131M 1s +2023-11-07T14:50:52Z #15 1.347 8750K .......... .......... .......... .......... .......... 6% 128M 1s +2023-11-07T14:50:52Z #15 1.347 8800K .......... .......... .......... .......... .......... 6% 144M 1s +2023-11-07T14:50:52Z #15 1.347 8850K .......... .......... .......... .......... .......... 6% 128M 1s +2023-11-07T14:50:52Z #15 1.348 8900K .......... .......... .......... .......... .......... 6% 143M 1s +2023-11-07T14:50:52Z #15 1.348 8950K .......... .......... .......... .......... .......... 6% 123M 1s +2023-11-07T14:50:52Z #15 1.349 9000K .......... .......... .......... .......... .......... 6% 126M 1s +2023-11-07T14:50:52Z #15 1.349 9050K .......... .......... .......... .......... .......... 7% 151M 1s +2023-11-07T14:50:52Z #15 1.349 9100K .......... .......... .......... .......... .......... 7% 120M 1s +2023-11-07T14:50:52Z #15 1.350 9150K .......... .......... .......... .......... .......... 7% 149M 1s +2023-11-07T14:50:52Z #15 1.350 9200K .......... .......... .......... .......... .......... 7% 135M 1s +2023-11-07T14:50:52Z #15 1.350 9250K .......... .......... .......... .......... .......... 7% 140M 1s +2023-11-07T14:50:52Z #15 1.351 9300K .......... .......... .......... .......... .......... 7% 142M 1s +2023-11-07T14:50:52Z #15 1.351 9350K .......... .......... .......... .......... .......... 7% 129M 1s +2023-11-07T14:50:52Z #15 1.351 9400K .......... .......... .......... .......... .......... 7% 136M 1s +2023-11-07T14:50:52Z #15 1.352 9450K .......... .......... .......... .......... .......... 7% 154M 1s +2023-11-07T14:50:52Z #15 1.352 9500K .......... .......... .......... .......... .......... 7% 122M 1s +2023-11-07T14:50:52Z #15 1.361 9550K .......... .......... .......... .......... .......... 7% 138M 1s +2023-11-07T14:50:52Z #15 1.361 9600K .......... .......... .......... .......... .......... 7% 127M 1s +2023-11-07T14:50:52Z #15 1.361 9650K .......... .......... .......... .......... .......... 7% 136M 1s +2023-11-07T14:50:52Z #15 1.361 9700K .......... .......... .......... .......... .......... 7% 129M 1s +2023-11-07T14:50:52Z #15 1.361 9750K .......... .......... .......... .......... .......... 7% 118M 1s +2023-11-07T14:50:52Z #15 1.361 9800K .......... .......... .......... .......... .......... 7% 129M 1s +2023-11-07T14:50:52Z #15 1.361 9850K .......... .......... .......... .......... .......... 7% 97.2M 1s +2023-11-07T14:50:52Z #15 1.361 9900K .......... .......... .......... .......... .......... 7% 135M 1s +2023-11-07T14:50:52Z #15 1.361 9950K .......... .......... .......... .......... .......... 7% 138M 1s +2023-11-07T14:50:52Z #15 1.361 10000K .......... .......... .......... .......... .......... 7% 113M 1s +2023-11-07T14:50:52Z #15 1.361 10050K .......... .......... .......... .......... .......... 7% 120M 1s +2023-11-07T14:50:52Z #15 1.361 10100K .......... .......... .......... .......... .......... 7% 124M 1s +2023-11-07T14:50:52Z #15 1.361 10150K .......... .......... .......... .......... .......... 7% 135M 1s +2023-11-07T14:50:52Z #15 1.361 10200K .......... .......... .......... .......... .......... 7% 135M 1s +2023-11-07T14:50:52Z #15 1.361 10250K .......... .......... .......... .......... .......... 7% 131M 1s +2023-11-07T14:50:52Z #15 1.361 10300K .......... .......... .......... .......... .......... 7% 124M 1s +2023-11-07T14:50:52Z #15 1.361 10350K .......... .......... .......... .......... .......... 8% 115M 1s +2023-11-07T14:50:52Z #15 1.361 10400K .......... .......... .......... .......... .......... 8% 139M 1s +2023-11-07T14:50:52Z #15 1.361 10450K .......... .......... .......... .......... .......... 8% 134M 1s +2023-11-07T14:50:52Z #15 1.361 10500K .......... .......... .......... .......... .......... 8% 141M 1s +2023-11-07T14:50:52Z #15 1.361 10550K .......... .......... .......... .......... .......... 8% 112M 1s +2023-11-07T14:50:52Z #15 1.361 10600K .......... .......... .......... .......... .......... 8% 145M 1s +2023-11-07T14:50:52Z #15 1.361 10650K .......... .......... .......... .......... .......... 8% 136M 1s +2023-11-07T14:50:52Z #15 1.361 10700K .......... .......... .......... .......... .......... 8% 144M 1s +2023-11-07T14:50:52Z #15 1.362 10750K .......... .......... .......... .......... .......... 8% 156M 1s +2023-11-07T14:50:52Z #15 1.362 10800K .......... .......... .......... .......... .......... 8% 109M 1s +2023-11-07T14:50:52Z #15 1.363 10850K .......... .......... .......... .......... .......... 8% 142M 1s +2023-11-07T14:50:52Z #15 1.363 10900K .......... .......... .......... .......... .......... 8% 133M 1s +2023-11-07T14:50:52Z #15 1.363 10950K .......... .......... .......... .......... .......... 8% 148M 1s +2023-11-07T14:50:52Z #15 1.364 11000K .......... .......... .......... .......... .......... 8% 145M 1s +2023-11-07T14:50:52Z #15 1.364 11050K .......... .......... .......... .......... .......... 8% 162M 1s +2023-11-07T14:50:52Z #15 1.364 11100K .......... .......... .......... .......... .......... 8% 97.6M 1s +2023-11-07T14:50:52Z #15 1.365 11150K .......... .......... .......... .......... .......... 8% 167M 1s +2023-11-07T14:50:52Z #15 1.365 11200K .......... .......... .......... .......... .......... 8% 123M 1s +2023-11-07T14:50:52Z #15 1.365 11250K .......... .......... .......... .......... .......... 8% 137M 1s +2023-11-07T14:50:52Z #15 1.366 11300K .......... .......... .......... .......... .......... 8% 149M 1s +2023-11-07T14:50:52Z #15 1.366 11350K .......... .......... .......... .......... .......... 8% 161M 1s +2023-11-07T14:50:52Z #15 1.367 11400K .......... .......... .......... .......... .......... 8% 119M 1s +2023-11-07T14:50:52Z #15 1.367 11450K .......... .......... .......... .......... .......... 8% 153M 1s +2023-11-07T14:50:52Z #15 1.367 11500K .......... .......... .......... .......... .......... 8% 135M 1s +2023-11-07T14:50:52Z #15 1.367 11550K .......... .......... .......... .......... .......... 8% 155M 1s +2023-11-07T14:50:52Z #15 1.368 11600K .......... .......... .......... .......... .......... 8% 167M 1s +2023-11-07T14:50:52Z #15 1.368 11650K .......... .......... .......... .......... .......... 9% 107M 1s +2023-11-07T14:50:52Z #15 1.368 11700K .......... .......... .......... .......... .......... 9% 136M 1s +2023-11-07T14:50:52Z #15 1.369 11750K .......... .......... .......... .......... .......... 9% 167M 1s +2023-11-07T14:50:52Z #15 1.369 11800K .......... .......... .......... .......... .......... 9% 140M 1s +2023-11-07T14:50:52Z #15 1.369 11850K .......... .......... .......... .......... .......... 9% 144M 1s +2023-11-07T14:50:52Z #15 1.370 11900K .......... .......... .......... .......... .......... 9% 138M 1s +2023-11-07T14:50:52Z #15 1.370 11950K .......... .......... .......... .......... .......... 9% 152M 1s +2023-11-07T14:50:52Z #15 1.371 12000K .......... .......... .......... .......... .......... 9% 156M 1s +2023-11-07T14:50:52Z #15 1.371 12050K .......... .......... .......... .......... .......... 9% 120M 1s +2023-11-07T14:50:52Z #15 1.371 12100K .......... .......... .......... .......... .......... 9% 156M 1s +2023-11-07T14:50:52Z #15 1.372 12150K .......... .......... .......... .......... .......... 9% 157M 1s +2023-11-07T14:50:52Z #15 1.372 12200K .......... .......... .......... .......... .......... 9% 154M 1s +2023-11-07T14:50:52Z #15 1.372 12250K .......... .......... .......... .......... .......... 9% 117M 1s +2023-11-07T14:50:52Z #15 1.373 12300K .......... .......... .......... .......... .......... 9% 127M 1s +2023-11-07T14:50:52Z #15 1.373 12350K .......... .......... .......... .......... .......... 9% 151M 1s +2023-11-07T14:50:52Z #15 1.373 12400K .......... .......... .......... .......... .......... 9% 158M 1s +2023-11-07T14:50:52Z #15 1.374 12450K .......... .......... .......... .......... .......... 9% 168M 1s +2023-11-07T14:50:52Z #15 1.374 12500K .......... .......... .......... .......... .......... 9% 130M 1s +2023-11-07T14:50:52Z #15 1.376 12550K .......... .......... .......... .......... .......... 9% 145M 1s +2023-11-07T14:50:52Z #15 1.376 12600K .......... .......... .......... .......... .......... 9% 161M 1s +2023-11-07T14:50:52Z #15 1.376 12650K .......... .......... .......... .......... .......... 9% 154M 1s +2023-11-07T14:50:52Z #15 1.376 12700K .......... .......... .......... .......... .......... 9% 114M 1s +2023-11-07T14:50:52Z #15 1.376 12750K .......... .......... .......... .......... .......... 9% 144M 1s +2023-11-07T14:50:52Z #15 1.376 12800K .......... .......... .......... .......... .......... 9% 128M 1s +2023-11-07T14:50:52Z #15 1.376 12850K .......... .......... .......... .......... .......... 9% 137M 1s +2023-11-07T14:50:52Z #15 1.377 12900K .......... .......... .......... .......... .......... 9% 138M 1s +2023-11-07T14:50:52Z #15 1.380 12950K .......... .......... .......... .......... .......... 10% 138M 1s +2023-11-07T14:50:52Z #15 1.380 13000K .......... .......... .......... .......... .......... 10% 152M 1s +2023-11-07T14:50:52Z #15 1.380 13050K .......... .......... .......... .......... .......... 10% 79.6M 1s +2023-11-07T14:50:52Z #15 1.380 13100K .......... .......... .......... .......... .......... 10% 55.5M 1s +2023-11-07T14:50:52Z #15 1.380 13150K .......... .......... .......... .......... .......... 10% 62.1M 1s +2023-11-07T14:50:52Z #15 1.380 13200K .......... .......... .......... .......... .......... 10% 68.0M 1s +2023-11-07T14:50:52Z #15 1.381 13250K .......... .......... .......... .......... .......... 10% 63.2M 1s +2023-11-07T14:50:52Z #15 1.382 13300K .......... .......... .......... .......... .......... 10% 64.9M 1s +2023-11-07T14:50:52Z #15 1.382 13350K .......... .......... .......... .......... .......... 10% 74.9M 1s +2023-11-07T14:50:52Z #15 1.383 13400K .......... .......... .......... .......... .......... 10% 64.2M 1s +2023-11-07T14:50:52Z #15 1.384 13450K .......... .......... .......... .......... .......... 10% 60.4M 1s +2023-11-07T14:50:52Z #15 1.385 13500K .......... .......... .......... .......... .......... 10% 68.6M 1s +2023-11-07T14:50:52Z #15 1.386 13550K .......... .......... .......... .......... .......... 10% 79.9M 1s +2023-11-07T14:50:52Z #15 1.388 13600K .......... .......... .......... .......... .......... 10% 116M 1s +2023-11-07T14:50:52Z #15 1.388 13650K .......... .......... .......... .......... .......... 10% 143M 1s +2023-11-07T14:50:52Z #15 1.388 13700K .......... .......... .......... .......... .......... 10% 149M 1s +2023-11-07T14:50:52Z #15 1.388 13750K .......... .......... .......... .......... .......... 10% 123M 1s +2023-11-07T14:50:52Z #15 1.388 13800K .......... .......... .......... .......... .......... 10% 144M 1s +2023-11-07T14:50:52Z #15 1.388 13850K .......... .......... .......... .......... .......... 10% 105M 1s +2023-11-07T14:50:52Z #15 1.388 13900K .......... .......... .......... .......... .......... 10% 74.7M 1s +2023-11-07T14:50:52Z #15 1.389 13950K .......... .......... .......... .......... .......... 10% 68.2M 1s +2023-11-07T14:50:52Z #15 1.390 14000K .......... .......... .......... .......... .......... 10% 65.4M 1s +2023-11-07T14:50:52Z #15 1.390 14050K .......... .......... .......... .......... .......... 10% 66.3M 1s +2023-11-07T14:50:52Z #15 1.391 14100K .......... .......... .......... .......... .......... 10% 71.0M 1s +2023-11-07T14:50:52Z #15 1.397 14150K .......... .......... .......... .......... .......... 10% 77.9M 1s +2023-11-07T14:50:52Z #15 1.397 14200K .......... .......... .......... .......... .......... 10% 76.3M 1s +2023-11-07T14:50:52Z #15 1.397 14250K .......... .......... .......... .......... .......... 11% 60.2M 1s +2023-11-07T14:50:52Z #15 1.397 14300K .......... .......... .......... .......... .......... 11% 79.6M 1s +2023-11-07T14:50:52Z #15 1.397 14350K .......... .......... .......... .......... .......... 11% 59.2M 1s +2023-11-07T14:50:52Z #15 1.397 14400K .......... .......... .......... .......... .......... 11% 83.6M 1s +2023-11-07T14:50:52Z #15 1.397 14450K .......... .......... .......... .......... .......... 11% 74.1M 1s +2023-11-07T14:50:52Z #15 1.400 14500K .......... .......... .......... .......... .......... 11% 161M 1s +2023-11-07T14:50:52Z #15 1.400 14550K .......... .......... .......... .......... .......... 11% 115M 1s +2023-11-07T14:50:52Z #15 1.400 14600K .......... .......... .......... .......... .......... 11% 131M 1s +2023-11-07T14:50:52Z #15 1.400 14650K .......... .......... .......... .......... .......... 11% 104M 1s +2023-11-07T14:50:52Z #15 1.400 14700K .......... .......... .......... .......... .......... 11% 131M 1s +2023-11-07T14:50:52Z #15 1.400 14750K .......... .......... .......... .......... .......... 11% 114M 1s +2023-11-07T14:50:52Z #15 1.400 14800K .......... .......... .......... .......... .......... 11% 107M 1s +2023-11-07T14:50:52Z #15 1.400 14850K .......... .......... .......... .......... .......... 11% 137M 1s +2023-11-07T14:50:52Z #15 1.400 14900K .......... .......... .......... .......... .......... 11% 117M 1s +2023-11-07T14:50:52Z #15 1.400 14950K .......... .......... .......... .......... .......... 11% 95.4M 1s +2023-11-07T14:50:52Z #15 1.401 15000K .......... .......... .......... .......... .......... 11% 63.5M 1s +2023-11-07T14:50:52Z #15 1.401 15050K .......... .......... .......... .......... .......... 11% 77.5M 1s +2023-11-07T14:50:52Z #15 1.402 15100K .......... .......... .......... .......... .......... 11% 64.6M 1s +2023-11-07T14:50:52Z #15 1.403 15150K .......... .......... .......... .......... .......... 11% 61.8M 1s +2023-11-07T14:50:52Z #15 1.404 15200K .......... .......... .......... .......... .......... 11% 74.4M 1s +2023-11-07T14:50:52Z #15 1.404 15250K .......... .......... .......... .......... .......... 11% 71.7M 1s +2023-11-07T14:50:52Z #15 1.405 15300K .......... .......... .......... .......... .......... 11% 73.3M 1s +2023-11-07T14:50:52Z #15 1.406 15350K .......... .......... .......... .......... .......... 11% 68.4M 1s +2023-11-07T14:50:52Z #15 1.406 15400K .......... .......... .......... .......... .......... 11% 74.7M 1s +2023-11-07T14:50:52Z #15 1.407 15450K .......... .......... .......... .......... .......... 11% 78.0M 1s +2023-11-07T14:50:52Z #15 1.408 15500K .......... .......... .......... .......... .......... 12% 89.0M 1s +2023-11-07T14:50:52Z #15 1.408 15550K .......... .......... .......... .......... .......... 12% 149M 1s +2023-11-07T14:50:52Z #15 1.408 15600K .......... .......... .......... .......... .......... 12% 93.0M 1s +2023-11-07T14:50:52Z #15 1.412 15650K .......... .......... .......... .......... .......... 12% 145M 1s +2023-11-07T14:50:52Z #15 1.412 15700K .......... .......... .......... .......... .......... 12% 116M 1s +2023-11-07T14:50:52Z #15 1.412 15750K .......... .......... .......... .......... .......... 12% 143M 1s +2023-11-07T14:50:52Z #15 1.412 15800K .......... .......... .......... .......... .......... 12% 164M 1s +2023-11-07T14:50:52Z #15 1.412 15850K .......... .......... .......... .......... .......... 12% 130M 1s +2023-11-07T14:50:52Z #15 1.412 15900K .......... .......... .......... .......... .......... 12% 118M 1s +2023-11-07T14:50:52Z #15 1.412 15950K .......... .......... .......... .......... .......... 12% 133M 1s +2023-11-07T14:50:52Z #15 1.412 16000K .......... .......... .......... .......... .......... 12% 106M 1s +2023-11-07T14:50:52Z #15 1.412 16050K .......... .......... .......... .......... .......... 12% 140M 1s +2023-11-07T14:50:52Z #15 1.412 16100K .......... .......... .......... .......... .......... 12% 60.6M 1s +2023-11-07T14:50:52Z #15 1.413 16150K .......... .......... .......... .......... .......... 12% 72.4M 1s +2023-11-07T14:50:52Z #15 1.414 16200K .......... .......... .......... .......... .......... 12% 79.8M 1s +2023-11-07T14:50:52Z #15 1.415 16250K .......... .......... .......... .......... .......... 12% 69.8M 1s +2023-11-07T14:50:52Z #15 1.415 16300K .......... .......... .......... .......... .......... 12% 66.0M 1s +2023-11-07T14:50:52Z #15 1.416 16350K .......... .......... .......... .......... .......... 12% 58.9M 1s +2023-11-07T14:50:52Z #15 1.417 16400K .......... .......... .......... .......... .......... 12% 72.6M 1s +2023-11-07T14:50:52Z #15 1.419 16450K .......... .......... .......... .......... .......... 12% 71.3M 1s +2023-11-07T14:50:52Z #15 1.419 16500K .......... .......... .......... .......... .......... 12% 80.1M 1s +2023-11-07T14:50:52Z #15 1.419 16550K .......... .......... .......... .......... .......... 12% 67.2M 1s +2023-11-07T14:50:52Z #15 1.419 16600K .......... .......... .......... .......... .......... 12% 67.4M 1s +2023-11-07T14:50:52Z #15 1.420 16650K .......... .......... .......... .......... .......... 12% 68.4M 1s +2023-11-07T14:50:52Z #15 1.421 16700K .......... .......... .......... .......... .......... 12% 93.9M 1s +2023-11-07T14:50:52Z #15 1.424 16750K .......... .......... .......... .......... .......... 12% 155M 1s +2023-11-07T14:50:52Z #15 1.424 16800K .......... .......... .......... .......... .......... 13% 133M 1s +2023-11-07T14:50:52Z #15 1.424 16850K .......... .......... .......... .......... .......... 13% 133M 1s +2023-11-07T14:50:52Z #15 1.424 16900K .......... .......... .......... .......... .......... 13% 170M 1s +2023-11-07T14:50:52Z #15 1.424 16950K .......... .......... .......... .......... .......... 13% 130M 1s +2023-11-07T14:50:52Z #15 1.424 17000K .......... .......... .......... .......... .......... 13% 108M 1s +2023-11-07T14:50:52Z #15 1.424 17050K .......... .......... .......... .......... .......... 13% 122M 1s +2023-11-07T14:50:52Z #15 1.424 17100K .......... .......... .......... .......... .......... 13% 114M 1s +2023-11-07T14:50:52Z #15 1.424 17150K .......... .......... .......... .......... .......... 13% 64.8M 1s +2023-11-07T14:50:52Z #15 1.425 17200K .......... .......... .......... .......... .......... 13% 73.6M 1s +2023-11-07T14:50:52Z #15 1.426 17250K .......... .......... .......... .......... .......... 13% 78.0M 1s +2023-11-07T14:50:52Z #15 1.426 17300K .......... .......... .......... .......... .......... 13% 68.8M 1s +2023-11-07T14:50:52Z #15 1.427 17350K .......... .......... .......... .......... .......... 13% 65.4M 1s +2023-11-07T14:50:52Z #15 1.428 17400K .......... .......... .......... .......... .......... 13% 84.7M 1s +2023-11-07T14:50:52Z #15 1.428 17450K .......... .......... .......... .......... .......... 13% 74.4M 1s +2023-11-07T14:50:52Z #15 1.429 17500K .......... .......... .......... .......... .......... 13% 63.4M 1s +2023-11-07T14:50:52Z #15 1.430 17550K .......... .......... .......... .......... .......... 13% 70.3M 1s +2023-11-07T14:50:52Z #15 1.431 17600K .......... .......... .......... .......... .......... 13% 61.6M 1s +2023-11-07T14:50:52Z #15 1.431 17650K .......... .......... .......... .......... .......... 13% 72.8M 1s +2023-11-07T14:50:52Z #15 1.432 17700K .......... .......... .......... .......... .......... 13% 69.3M 1s +2023-11-07T14:50:52Z #15 1.433 17750K .......... .......... .......... .......... .......... 13% 85.9M 1s +2023-11-07T14:50:52Z #15 1.433 17800K .......... .......... .......... .......... .......... 13% 78.2M 1s +2023-11-07T14:50:52Z #15 1.434 17850K .......... .......... .......... .......... .......... 13% 61.9M 1s +2023-11-07T14:50:52Z #15 1.436 17900K .......... .......... .......... .......... .......... 13% 65.1M 1s +2023-11-07T14:50:52Z #15 1.436 17950K .......... .......... .......... .......... .......... 13% 72.0M 1s +2023-11-07T14:50:52Z #15 1.436 18000K .......... .......... .......... .......... .......... 13% 63.5M 1s +2023-11-07T14:50:52Z #15 1.437 18050K .......... .......... .......... .......... .......... 13% 70.8M 1s +2023-11-07T14:50:52Z #15 1.437 18100K .......... .......... .......... .......... .......... 14% 74.8M 1s +2023-11-07T14:50:52Z #15 1.438 18150K .......... .......... .......... .......... .......... 14% 58.4M 1s +2023-11-07T14:50:52Z #15 1.440 18200K .......... .......... .......... .......... .......... 14% 55.4M 1s +2023-11-07T14:50:52Z #15 1.440 18250K .......... .......... .......... .......... .......... 14% 72.3M 1s +2023-11-07T14:50:52Z #15 1.441 18300K .......... .......... .......... .......... .......... 14% 57.6M 1s +2023-11-07T14:50:52Z #15 1.441 18350K .......... .......... .......... .......... .......... 14% 72.0M 1s +2023-11-07T14:50:52Z #15 1.445 18400K .......... .......... .......... .......... .......... 14% 81.2M 1s +2023-11-07T14:50:52Z #15 1.445 18450K .......... .......... .......... .......... .......... 14% 68.9M 1s +2023-11-07T14:50:52Z #15 1.445 18500K .......... .......... .......... .......... .......... 14% 72.2M 1s +2023-11-07T14:50:52Z #15 1.445 18550K .......... .......... .......... .......... .......... 14% 70.8M 1s +2023-11-07T14:50:52Z #15 1.445 18600K .......... .......... .......... .......... .......... 14% 62.2M 1s +2023-11-07T14:50:52Z #15 1.446 18650K .......... .......... .......... .......... .......... 14% 70.6M 1s +2023-11-07T14:50:52Z #15 1.446 18700K .......... .......... .......... .......... .......... 14% 66.5M 1s +2023-11-07T14:50:52Z #15 1.447 18750K .......... .......... .......... .......... .......... 14% 69.6M 1s +2023-11-07T14:50:52Z #15 1.453 18800K .......... .......... .......... .......... .......... 14% 140M 1s +2023-11-07T14:50:52Z #15 1.453 18850K .......... .......... .......... .......... .......... 14% 134M 1s +2023-11-07T14:50:52Z #15 1.453 18900K .......... .......... .......... .......... .......... 14% 148M 1s +2023-11-07T14:50:52Z #15 1.453 18950K .......... .......... .......... .......... .......... 14% 125M 1s +2023-11-07T14:50:52Z #15 1.453 19000K .......... .......... .......... .......... .......... 14% 136M 1s +2023-11-07T14:50:52Z #15 1.453 19050K .......... .......... .......... .......... .......... 14% 106M 1s +2023-11-07T14:50:52Z #15 1.453 19100K .......... .......... .......... .......... .......... 14% 130M 1s +2023-11-07T14:50:52Z #15 1.453 19150K .......... .......... .......... .......... .......... 14% 132M 1s +2023-11-07T14:50:52Z #15 1.453 19200K .......... .......... .......... .......... .......... 14% 109M 1s +2023-11-07T14:50:52Z #15 1.453 19250K .......... .......... .......... .......... .......... 14% 127M 1s +2023-11-07T14:50:52Z #15 1.453 19300K .......... .......... .......... .......... .......... 14% 137M 1s +2023-11-07T14:50:52Z #15 1.453 19350K .......... .......... .......... .......... .......... 14% 124M 1s +2023-11-07T14:50:52Z #15 1.453 19400K .......... .......... .......... .......... .......... 15% 80.5M 1s +2023-11-07T14:50:52Z #15 1.453 19450K .......... .......... .......... .......... .......... 15% 73.1M 1s +2023-11-07T14:50:52Z #15 1.454 19500K .......... .......... .......... .......... .......... 15% 70.1M 1s +2023-11-07T14:50:52Z #15 1.455 19550K .......... .......... .......... .......... .......... 15% 69.8M 1s +2023-11-07T14:50:52Z #15 1.455 19600K .......... .......... .......... .......... .......... 15% 65.3M 1s +2023-11-07T14:50:52Z #15 1.456 19650K .......... .......... .......... .......... .......... 15% 75.8M 1s +2023-11-07T14:50:52Z #15 1.461 19700K .......... .......... .......... .......... .......... 15% 80.1M 1s +2023-11-07T14:50:52Z #15 1.461 19750K .......... .......... .......... .......... .......... 15% 64.2M 1s +2023-11-07T14:50:52Z #15 1.461 19800K .......... .......... .......... .......... .......... 15% 81.5M 1s +2023-11-07T14:50:52Z #15 1.461 19850K .......... .......... .......... .......... .......... 15% 65.7M 1s +2023-11-07T14:50:52Z #15 1.461 19900K .......... .......... .......... .......... .......... 15% 68.7M 1s +2023-11-07T14:50:52Z #15 1.461 19950K .......... .......... .......... .......... .......... 15% 69.5M 1s +2023-11-07T14:50:52Z #15 1.461 20000K .......... .......... .......... .......... .......... 15% 70.2M 1s +2023-11-07T14:50:52Z #15 1.461 20050K .......... .......... .......... .......... .......... 15% 67.7M 1s +2023-11-07T14:50:52Z #15 1.462 20100K .......... .......... .......... .......... .......... 15% 47.2M 1s +2023-11-07T14:50:52Z #15 1.463 20150K .......... .......... .......... .......... .......... 15% 52.3M 1s +2023-11-07T14:50:52Z #15 1.464 20200K .......... .......... .......... .......... .......... 15% 54.1M 1s +2023-11-07T14:50:52Z #15 1.465 20250K .......... .......... .......... .......... .......... 15% 59.2M 1s +2023-11-07T14:50:52Z #15 1.467 20300K .......... .......... .......... .......... .......... 15% 48.3M 1s +2023-11-07T14:50:52Z #15 1.467 20350K .......... .......... .......... .......... .......... 15% 58.2M 1s +2023-11-07T14:50:52Z #15 1.467 20400K .......... .......... .......... .......... .......... 15% 48.4M 1s +2023-11-07T14:50:52Z #15 1.468 20450K .......... .......... .......... .......... .......... 15% 64.5M 1s +2023-11-07T14:50:52Z #15 1.469 20500K .......... .......... .......... .......... .......... 15% 47.0M 1s +2023-11-07T14:50:52Z #15 1.470 20550K .......... .......... .......... .......... .......... 15% 58.2M 1s +2023-11-07T14:50:52Z #15 1.471 20600K .......... .......... .......... .......... .......... 15% 48.1M 1s +2023-11-07T14:50:52Z #15 1.472 20650K .......... .......... .......... .......... .......... 15% 46.1M 1s +2023-11-07T14:50:52Z #15 1.473 20700K .......... .......... .......... .......... .......... 16% 54.5M 1s +2023-11-07T14:50:52Z #15 1.474 20750K .......... .......... .......... .......... .......... 16% 50.4M 1s +2023-11-07T14:50:52Z #15 1.475 20800K .......... .......... .......... .......... .......... 16% 56.8M 1s +2023-11-07T14:50:52Z #15 1.476 20850K .......... .......... .......... .......... .......... 16% 62.1M 1s +2023-11-07T14:50:52Z #15 1.477 20900K .......... .......... .......... .......... .......... 16% 36.8M 1s +2023-11-07T14:50:52Z #15 1.478 20950K .......... .......... .......... .......... .......... 16% 49.1M 1s +2023-11-07T14:50:52Z #15 1.479 21000K .......... .......... .......... .......... .......... 16% 47.9M 1s +2023-11-07T14:50:52Z #15 1.480 21050K .......... .......... .......... .......... .......... 16% 62.9M 1s +2023-11-07T14:50:52Z #15 1.481 21100K .......... .......... .......... .......... .......... 16% 51.2M 1s +2023-11-07T14:50:52Z #15 1.482 21150K .......... .......... .......... .......... .......... 16% 152M 1s +2023-11-07T14:50:52Z #15 1.482 21200K .......... .......... .......... .......... .......... 16% 47.0M 1s +2023-11-07T14:50:52Z #15 1.484 21250K .......... .......... .......... .......... .......... 16% 130M 1s +2023-11-07T14:50:52Z #15 1.484 21300K .......... .......... .......... .......... .......... 16% 39.4M 1s +2023-11-07T14:50:52Z #15 1.485 21350K .......... .......... .......... .......... .......... 16% 101M 1s +2023-11-07T14:50:52Z #15 1.486 21400K .......... .......... .......... .......... .......... 16% 148M 1s +2023-11-07T14:50:52Z #15 1.486 21450K .......... .......... .......... .......... .......... 16% 161M 1s +2023-11-07T14:50:52Z #15 1.486 21500K .......... .......... .......... .......... .......... 16% 119M 1s +2023-11-07T14:50:52Z #15 1.486 21550K .......... .......... .......... .......... .......... 16% 47.3M 1s +2023-11-07T14:50:52Z #15 1.491 21600K .......... .......... .......... .......... .......... 16% 136M 1s +2023-11-07T14:50:52Z #15 1.491 21650K .......... .......... .......... .......... .......... 16% 158M 1s +2023-11-07T14:50:52Z #15 1.491 21700K .......... .......... .......... .......... .......... 16% 144M 1s +2023-11-07T14:50:52Z #15 1.491 21750K .......... .......... .......... .......... .......... 16% 155M 1s +2023-11-07T14:50:52Z #15 1.491 21800K .......... .......... .......... .......... .......... 16% 145M 1s +2023-11-07T14:50:52Z #15 1.491 21850K .......... .......... .......... .......... .......... 16% 149M 1s +2023-11-07T14:50:52Z #15 1.491 21900K .......... .......... .......... .......... .......... 16% 132M 1s +2023-11-07T14:50:52Z #15 1.491 21950K .......... .......... .......... .......... .......... 16% 161M 1s +2023-11-07T14:50:52Z #15 1.491 22000K .......... .......... .......... .......... .......... 17% 154M 1s +2023-11-07T14:50:52Z #15 1.491 22050K .......... .......... .......... .......... .......... 17% 136M 1s +2023-11-07T14:50:52Z #15 1.491 22100K .......... .......... .......... .......... .......... 17% 164M 1s +2023-11-07T14:50:52Z #15 1.491 22150K .......... .......... .......... .......... .......... 17% 129M 1s +2023-11-07T14:50:52Z #15 1.491 22200K .......... .......... .......... .......... .......... 17% 34.7M 1s +2023-11-07T14:50:52Z #15 1.493 22250K .......... .......... .......... .......... .......... 17% 78.7M 1s +2023-11-07T14:50:52Z #15 1.496 22300K .......... .......... .......... .......... .......... 17% 162M 1s +2023-11-07T14:50:52Z #15 1.496 22350K .......... .......... .......... .......... .......... 17% 160M 1s +2023-11-07T14:50:52Z #15 1.496 22400K .......... .......... .......... .......... .......... 17% 143M 1s +2023-11-07T14:50:52Z #15 1.496 22450K .......... .......... .......... .......... .......... 17% 169M 1s +2023-11-07T14:50:52Z #15 1.496 22500K .......... .......... .......... .......... .......... 17% 133M 1s +2023-11-07T14:50:52Z #15 1.496 22550K .......... .......... .......... .......... .......... 17% 164M 1s +2023-11-07T14:50:52Z #15 1.496 22600K .......... .......... .......... .......... .......... 17% 175M 1s +2023-11-07T14:50:52Z #15 1.496 22650K .......... .......... .......... .......... .......... 17% 138M 1s +2023-11-07T14:50:52Z #15 1.496 22700K .......... .......... .......... .......... .......... 17% 144M 1s +2023-11-07T14:50:52Z #15 1.496 22750K .......... .......... .......... .......... .......... 17% 47.4M 1s +2023-11-07T14:50:52Z #15 1.497 22800K .......... .......... .......... .......... .......... 17% 31.0M 1s +2023-11-07T14:50:52Z #15 1.500 22850K .......... .......... .......... .......... .......... 17% 115M 1s +2023-11-07T14:50:52Z #15 1.500 22900K .......... .......... .......... .......... .......... 17% 127M 1s +2023-11-07T14:50:52Z #15 1.500 22950K .......... .......... .......... .......... .......... 17% 170M 1s +2023-11-07T14:50:52Z #15 1.500 23000K .......... .......... .......... .......... .......... 17% 158M 1s +2023-11-07T14:50:52Z #15 1.500 23050K .......... .......... .......... .......... .......... 17% 49.1M 1s +2023-11-07T14:50:52Z #15 1.501 23100K .......... .......... .......... .......... .......... 17% 31.7M 1s +2023-11-07T14:50:52Z #15 1.504 23150K .......... .......... .......... .......... .......... 17% 58.4M 1s +2023-11-07T14:50:52Z #15 1.506 23200K .......... .......... .......... .......... .......... 17% 157M 1s +2023-11-07T14:50:52Z #15 1.506 23250K .......... .......... .......... .......... .......... 17% 158M 1s +2023-11-07T14:50:52Z #15 1.506 23300K .......... .......... .......... .......... .......... 18% 58.4M 1s +2023-11-07T14:50:52Z #15 1.506 23350K .......... .......... .......... .......... .......... 18% 29.0M 1s +2023-11-07T14:50:52Z #15 1.507 23400K .......... .......... .......... .......... .......... 18% 36.3M 1s +2023-11-07T14:50:52Z #15 1.508 23450K .......... .......... .......... .......... .......... 18% 46.2M 1s +2023-11-07T14:50:52Z #15 1.510 23500K .......... .......... .......... .......... .......... 18% 48.1M 1s +2023-11-07T14:50:52Z #15 1.511 23550K .......... .......... .......... .......... .......... 18% 105M 1s +2023-11-07T14:50:52Z #15 1.511 23600K .......... .......... .......... .......... .......... 18% 157M 1s +2023-11-07T14:50:52Z #15 1.511 23650K .......... .......... .......... .......... .......... 18% 30.1M 1s +2023-11-07T14:50:52Z #15 1.515 23700K .......... .......... .......... .......... .......... 18% 150M 1s +2023-11-07T14:50:52Z #15 1.515 23750K .......... .......... .......... .......... .......... 18% 136M 1s +2023-11-07T14:50:52Z #15 1.515 23800K .......... .......... .......... .......... .......... 18% 152M 1s +2023-11-07T14:50:52Z #15 1.515 23850K .......... .......... .......... .......... .......... 18% 151M 1s +2023-11-07T14:50:52Z #15 1.515 23900K .......... .......... .......... .......... .......... 18% 153M 1s +2023-11-07T14:50:52Z #15 1.515 23950K .......... .......... .......... .......... .......... 18% 139M 1s +2023-11-07T14:50:52Z #15 1.515 24000K .......... .......... .......... .......... .......... 18% 139M 1s +2023-11-07T14:50:52Z #15 1.515 24050K .......... .......... .......... .......... .......... 18% 34.4M 1s +2023-11-07T14:50:52Z #15 1.516 24100K .......... .......... .......... .......... .......... 18% 59.1M 1s +2023-11-07T14:50:52Z #15 1.521 24150K .......... .......... .......... .......... .......... 18% 165M 1s +2023-11-07T14:50:52Z #15 1.521 24200K .......... .......... .......... .......... .......... 18% 134M 1s +2023-11-07T14:50:52Z #15 1.521 24250K .......... .......... .......... .......... .......... 18% 146M 1s +2023-11-07T14:50:52Z #15 1.521 24300K .......... .......... .......... .......... .......... 18% 161M 1s +2023-11-07T14:50:52Z #15 1.521 24350K .......... .......... .......... .......... .......... 18% 165M 1s +2023-11-07T14:50:52Z #15 1.521 24400K .......... .......... .......... .......... .......... 18% 142M 1s +2023-11-07T14:50:52Z #15 1.521 24450K .......... .......... .......... .......... .......... 18% 150M 1s +2023-11-07T14:50:52Z #15 1.521 24500K .......... .......... .......... .......... .......... 18% 146M 1s +2023-11-07T14:50:52Z #15 1.521 24550K .......... .......... .......... .......... .......... 18% 127M 1s +2023-11-07T14:50:52Z #15 1.521 24600K .......... .......... .......... .......... .......... 19% 39.8M 1s +2023-11-07T14:50:52Z #15 1.521 24650K .......... .......... .......... .......... .......... 19% 44.6M 1s +2023-11-07T14:50:52Z #15 1.524 24700K .......... .......... .......... .......... .......... 19% 136M 1s +2023-11-07T14:50:52Z #15 1.524 24750K .......... .......... .......... .......... .......... 19% 152M 1s +2023-11-07T14:50:52Z #15 1.524 24800K .......... .......... .......... .......... .......... 19% 173M 1s +2023-11-07T14:50:52Z #15 1.524 24850K .......... .......... .......... .......... .......... 19% 145M 1s +2023-11-07T14:50:52Z #15 1.524 24900K .......... .......... .......... .......... .......... 19% 144M 1s +2023-11-07T14:50:52Z #15 1.524 24950K .......... .......... .......... .......... .......... 19% 117M 1s +2023-11-07T14:50:52Z #15 1.524 25000K .......... .......... .......... .......... .......... 19% 31.8M 1s +2023-11-07T14:50:52Z #15 1.526 25050K .......... .......... .......... .......... .......... 19% 79.3M 1s +2023-11-07T14:50:52Z #15 1.528 25100K .......... .......... .......... .......... .......... 19% 129M 1s +2023-11-07T14:50:52Z #15 1.528 25150K .......... .......... .......... .......... .......... 19% 142M 1s +2023-11-07T14:50:52Z #15 1.528 25200K .......... .......... .......... .......... .......... 19% 142M 1s +2023-11-07T14:50:52Z #15 1.528 25250K .......... .......... .......... .......... .......... 19% 176M 1s +2023-11-07T14:50:52Z #15 1.528 25300K .......... .......... .......... .......... .......... 19% 134M 1s +2023-11-07T14:50:52Z #15 1.528 25350K .......... .......... .......... .......... .......... 19% 33.5M 1s +2023-11-07T14:50:52Z #15 1.530 25400K .......... .......... .......... .......... .......... 19% 36.4M 1s +2023-11-07T14:50:52Z #15 1.531 25450K .......... .......... .......... .......... .......... 19% 46.6M 1s +2023-11-07T14:50:52Z #15 1.532 25500K .......... .......... .......... .......... .......... 19% 43.6M 1s +2023-11-07T14:50:52Z #15 1.533 25550K .......... .......... .......... .......... .......... 19% 39.8M 1s +2023-11-07T14:50:52Z #15 1.535 25600K .......... .......... .......... .......... .......... 19% 46.6M 1s +2023-11-07T14:50:52Z #15 1.537 25650K .......... .......... .......... .......... .......... 19% 38.2M 1s +2023-11-07T14:50:52Z #15 1.537 25700K .......... .......... .......... .......... .......... 19% 46.6M 1s +2023-11-07T14:50:52Z #15 1.538 25750K .......... .......... .......... .......... .......... 19% 110M 1s +2023-11-07T14:50:52Z #15 1.538 25800K .......... .......... .......... .......... .......... 19% 30.9M 1s +2023-11-07T14:50:52Z #15 1.544 25850K .......... .......... .......... .......... .......... 19% 153M 1s +2023-11-07T14:50:52Z #15 1.544 25900K .......... .......... .......... .......... .......... 20% 51.3M 1s +2023-11-07T14:50:52Z #15 1.544 25950K .......... .......... .......... .......... .......... 20% 85.4M 1s +2023-11-07T14:50:52Z #15 1.544 26000K .......... .......... .......... .......... .......... 20% 115M 1s +2023-11-07T14:50:52Z #15 1.544 26050K .......... .......... .......... .......... .......... 20% 162M 1s +2023-11-07T14:50:52Z #15 1.544 26100K .......... .......... .......... .......... .......... 20% 182M 1s +2023-11-07T14:50:52Z #15 1.544 26150K .......... .......... .......... .......... .......... 20% 115M 1s +2023-11-07T14:50:52Z #15 1.544 26200K .......... .......... .......... .......... .......... 20% 23.1M 1s +2023-11-07T14:50:52Z #15 1.545 26250K .......... .......... .......... .......... .......... 20% 40.8M 1s +2023-11-07T14:50:52Z #15 1.547 26300K .......... .......... .......... .......... .......... 20% 69.8M 1s +2023-11-07T14:50:52Z #15 1.547 26350K .......... .......... .......... .......... .......... 20% 36.1M 1s +2023-11-07T14:50:52Z #15 1.549 26400K .......... .......... .......... .......... .......... 20% 32.0M 1s +2023-11-07T14:50:52Z #15 1.550 26450K .......... .......... .......... .......... .......... 20% 70.0M 1s +2023-11-07T14:50:52Z #15 1.551 26500K .......... .......... .......... .......... .......... 20% 79.7M 1s +2023-11-07T14:50:52Z #15 1.551 26550K .......... .......... .......... .......... .......... 20% 54.9M 1s +2023-11-07T14:50:52Z #15 1.552 26600K .......... .......... .......... .......... .......... 20% 40.7M 1s +2023-11-07T14:50:52Z #15 1.554 26650K .......... .......... .......... .......... .......... 20% 148M 1s +2023-11-07T14:50:52Z #15 1.554 26700K .......... .......... .......... .......... .......... 20% 36.8M 1s +2023-11-07T14:50:52Z #15 1.556 26750K .......... .......... .......... .......... .......... 20% 30.7M 1s +2023-11-07T14:50:52Z #15 1.557 26800K .......... .......... .......... .......... .......... 20% 52.8M 1s +2023-11-07T14:50:52Z #15 1.558 26850K .......... .......... .......... .......... .......... 20% 80.2M 1s +2023-11-07T14:50:52Z #15 1.559 26900K .......... .......... .......... .......... .......... 20% 29.4M 1s +2023-11-07T14:50:52Z #15 1.560 26950K .......... .......... .......... .......... .......... 20% 162M 1s +2023-11-07T14:50:52Z #15 1.560 27000K .......... .......... .......... .......... .......... 20% 49.9M 1s +2023-11-07T14:50:52Z #15 1.561 27050K .......... .......... .......... .......... .......... 20% 31.7M 1s +2023-11-07T14:50:52Z #15 1.563 27100K .......... .......... .......... .......... .......... 20% 52.8M 1s +2023-11-07T14:50:52Z #15 1.564 27150K .......... .......... .......... .......... .......... 20% 45.9M 1s +2023-11-07T14:50:52Z #15 1.565 27200K .......... .......... .......... .......... .......... 21% 39.0M 1s +2023-11-07T14:50:52Z #15 1.566 27250K .......... .......... .......... .......... .......... 21% 38.7M 1s +2023-11-07T14:50:52Z #15 1.567 27300K .......... .......... .......... .......... .......... 21% 34.0M 1s +2023-11-07T14:50:52Z #15 1.569 27350K .......... .......... .......... .......... .......... 21% 44.8M 1s +2023-11-07T14:50:52Z #15 1.570 27400K .......... .......... .......... .......... .......... 21% 42.4M 1s +2023-11-07T14:50:52Z #15 1.571 27450K .......... .......... .......... .......... .......... 21% 58.1M 1s +2023-11-07T14:50:52Z #15 1.572 27500K .......... .......... .......... .......... .......... 21% 79.6M 1s +2023-11-07T14:50:52Z #15 1.572 27550K .......... .......... .......... .......... .......... 21% 36.5M 1s +2023-11-07T14:50:52Z #15 1.574 27600K .......... .......... .......... .......... .......... 21% 36.9M 1s +2023-11-07T14:50:52Z #15 1.575 27650K .......... .......... .......... .......... .......... 21% 35.4M 1s +2023-11-07T14:50:52Z #15 1.576 27700K .......... .......... .......... .......... .......... 21% 45.2M 1s +2023-11-07T14:50:52Z #15 1.578 27750K .......... .......... .......... .......... .......... 21% 53.7M 1s +2023-11-07T14:50:52Z #15 1.579 27800K .......... .......... .......... .......... .......... 21% 37.1M 1s +2023-11-07T14:50:52Z #15 1.580 27850K .......... .......... .......... .......... .......... 21% 38.1M 1s +2023-11-07T14:50:52Z #15 1.581 27900K .......... .......... .......... .......... .......... 21% 45.9M 1s +2023-11-07T14:50:52Z #15 1.582 27950K .......... .......... .......... .......... .......... 21% 48.1M 1s +2023-11-07T14:50:52Z #15 1.583 28000K .......... .......... .......... .......... .......... 21% 91.1M 1s +2023-11-07T14:50:52Z #15 1.584 28050K .......... .......... .......... .......... .......... 21% 53.7M 1s +2023-11-07T14:50:52Z #15 1.585 28100K .......... .......... .......... .......... .......... 21% 28.4M 1s +2023-11-07T14:50:52Z #15 1.586 28150K .......... .......... .......... .......... .......... 21% 39.0M 1s +2023-11-07T14:50:52Z #15 1.588 28200K .......... .......... .......... .......... .......... 21% 39.9M 1s +2023-11-07T14:50:52Z #15 1.589 28250K .......... .......... .......... .......... .......... 21% 56.6M 1s +2023-11-07T14:50:52Z #15 1.590 28300K .......... .......... .......... .......... .......... 21% 41.4M 1s +2023-11-07T14:50:52Z #15 1.591 28350K .......... .......... .......... .......... .......... 21% 33.7M 1s +2023-11-07T14:50:52Z #15 1.593 28400K .......... .......... .......... .......... .......... 21% 49.3M 1s +2023-11-07T14:50:52Z #15 1.593 28450K .......... .......... .......... .......... .......... 21% 54.6M 1s +2023-11-07T14:50:52Z #15 1.594 28500K .......... .......... .......... .......... .......... 22% 108M 1s +2023-11-07T14:50:52Z #15 1.595 28550K .......... .......... .......... .......... .......... 22% 61.0M 1s +2023-11-07T14:50:52Z #15 1.595 28600K .......... .......... .......... .......... .......... 22% 37.5M 1s +2023-11-07T14:50:52Z #15 1.597 28650K .......... .......... .......... .......... .......... 22% 53.1M 1s +2023-11-07T14:50:52Z #15 1.601 28700K .......... .......... .......... .......... .......... 22% 121M 1s +2023-11-07T14:50:52Z #15 1.601 28750K .......... .......... .......... .......... .......... 22% 52.8M 1s +2023-11-07T14:50:52Z #15 1.601 28800K .......... .......... .......... .......... .......... 22% 53.5M 1s +2023-11-07T14:50:52Z #15 1.601 28850K .......... .......... .......... .......... .......... 22% 45.2M 1s +2023-11-07T14:50:52Z #15 1.601 28900K .......... .......... .......... .......... .......... 22% 42.3M 1s +2023-11-07T14:50:52Z #15 1.602 28950K .......... .......... .......... .......... .......... 22% 43.5M 1s +2023-11-07T14:50:52Z #15 1.604 29000K .......... .......... .......... .......... .......... 22% 123M 1s +2023-11-07T14:50:52Z #15 1.604 29050K .......... .......... .......... .......... .......... 22% 20.9M 1s +2023-11-07T14:50:52Z #15 1.606 29100K .......... .......... .......... .......... .......... 22% 60.6M 1s +2023-11-07T14:50:52Z #15 1.607 29150K .......... .......... .......... .......... .......... 22% 73.4M 1s +2023-11-07T14:50:52Z #15 1.608 29200K .......... .......... .......... .......... .......... 22% 115M 1s +2023-11-07T14:50:52Z #15 1.608 29250K .......... .......... .......... .......... .......... 22% 39.4M 1s +2023-11-07T14:50:52Z #15 1.609 29300K .......... .......... .......... .......... .......... 22% 68.8M 1s +2023-11-07T14:50:52Z #15 1.611 29350K .......... .......... .......... .......... .......... 22% 107M 1s +2023-11-07T14:50:52Z #15 1.611 29400K .......... .......... .......... .......... .......... 22% 159M 1s +2023-11-07T14:50:52Z #15 1.611 29450K .......... .......... .......... .......... .......... 22% 68.8M 1s +2023-11-07T14:50:52Z #15 1.611 29500K .......... .......... .......... .......... .......... 22% 49.4M 1s +2023-11-07T14:50:52Z #15 1.612 29550K .......... .......... .......... .......... .......... 22% 96.6M 1s +2023-11-07T14:50:52Z #15 1.613 29600K .......... .......... .......... .......... .......... 22% 48.4M 1s +2023-11-07T14:50:52Z #15 1.614 29650K .......... .......... .......... .......... .......... 22% 56.5M 1s +2023-11-07T14:50:52Z #15 1.615 29700K .......... .......... .......... .......... .......... 22% 59.0M 1s +2023-11-07T14:50:52Z #15 1.616 29750K .......... .......... .......... .......... .......... 22% 47.3M 1s +2023-11-07T14:50:52Z #15 1.617 29800K .......... .......... .......... .......... .......... 23% 41.2M 1s +2023-11-07T14:50:52Z #15 1.618 29850K .......... .......... .......... .......... .......... 23% 67.2M 1s +2023-11-07T14:50:52Z #15 1.619 29900K .......... .......... .......... .......... .......... 23% 57.5M 1s +2023-11-07T14:50:52Z #15 1.619 29950K .......... .......... .......... .......... .......... 23% 52.3M 1s +2023-11-07T14:50:52Z #15 1.620 30000K .......... .......... .......... .......... .......... 23% 46.0M 1s +2023-11-07T14:50:52Z #15 1.622 30050K .......... .......... .......... .......... .......... 23% 61.4M 1s +2023-11-07T14:50:52Z #15 1.622 30100K .......... .......... .......... .......... .......... 23% 41.3M 1s +2023-11-07T14:50:52Z #15 1.624 30150K .......... .......... .......... .......... .......... 23% 58.8M 1s +2023-11-07T14:50:52Z #15 1.624 30200K .......... .......... .......... .......... .......... 23% 42.5M 1s +2023-11-07T14:50:52Z #15 1.625 30250K .......... .......... .......... .......... .......... 23% 70.7M 1s +2023-11-07T14:50:52Z #15 1.626 30300K .......... .......... .......... .......... .......... 23% 48.6M 1s +2023-11-07T14:50:52Z #15 1.627 30350K .......... .......... .......... .......... .......... 23% 45.7M 1s +2023-11-07T14:50:52Z #15 1.633 30400K .......... .......... .......... .......... .......... 23% 80.2M 1s +2023-11-07T14:50:52Z #15 1.633 30450K .......... .......... .......... .......... .......... 23% 81.1M 1s +2023-11-07T14:50:52Z #15 1.633 30500K .......... .......... .......... .......... .......... 23% 63.3M 1s +2023-11-07T14:50:52Z #15 1.633 30550K .......... .......... .......... .......... .......... 23% 83.3M 1s +2023-11-07T14:50:52Z #15 1.633 30600K .......... .......... .......... .......... .......... 23% 65.0M 1s +2023-11-07T14:50:52Z #15 1.633 30650K .......... .......... .......... .......... .......... 23% 79.9M 1s +2023-11-07T14:50:52Z #15 1.633 30700K .......... .......... .......... .......... .......... 23% 71.9M 1s +2023-11-07T14:50:52Z #15 1.633 30750K .......... .......... .......... .......... .......... 23% 39.1M 1s +2023-11-07T14:50:52Z #15 1.634 30800K .......... .......... .......... .......... .......... 23% 42.2M 1s +2023-11-07T14:50:52Z #15 1.635 30850K .......... .......... .......... .......... .......... 23% 34.3M 1s +2023-11-07T14:50:52Z #15 1.636 30900K .......... .......... .......... .......... .......... 23% 40.9M 1s +2023-11-07T14:50:52Z #15 1.638 30950K .......... .......... .......... .......... .......... 23% 51.1M 1s +2023-11-07T14:50:52Z #15 1.639 31000K .......... .......... .......... .......... .......... 23% 46.6M 1s +2023-11-07T14:50:52Z #15 1.640 31050K .......... .......... .......... .......... .......... 24% 47.6M 1s +2023-11-07T14:50:52Z #15 1.641 31100K .......... .......... .......... .......... .......... 24% 53.1M 1s +2023-11-07T14:50:52Z #15 1.642 31150K .......... .......... .......... .......... .......... 24% 50.8M 1s +2023-11-07T14:50:52Z #15 1.643 31200K .......... .......... .......... .......... .......... 24% 43.3M 1s +2023-11-07T14:50:52Z #15 1.644 31250K .......... .......... .......... .......... .......... 24% 48.4M 1s +2023-11-07T14:50:52Z #15 1.645 31300K .......... .......... .......... .......... .......... 24% 41.3M 1s +2023-11-07T14:50:52Z #15 1.646 31350K .......... .......... .......... .......... .......... 24% 48.4M 1s +2023-11-07T14:50:52Z #15 1.647 31400K .......... .......... .......... .......... .......... 24% 41.4M 1s +2023-11-07T14:50:52Z #15 1.648 31450K .......... .......... .......... .......... .......... 24% 54.3M 1s +2023-11-07T14:50:52Z #15 1.649 31500K .......... .......... .......... .......... .......... 24% 47.3M 1s +2023-11-07T14:50:52Z #15 1.650 31550K .......... .......... .......... .......... .......... 24% 43.5M 1s +2023-11-07T14:50:52Z #15 1.651 31600K .......... .......... .......... .......... .......... 24% 46.8M 1s +2023-11-07T14:50:52Z #15 1.652 31650K .......... .......... .......... .......... .......... 24% 37.0M 1s +2023-11-07T14:50:52Z #15 1.654 31700K .......... .......... .......... .......... .......... 24% 39.8M 1s +2023-11-07T14:50:52Z #15 1.655 31750K .......... .......... .......... .......... .......... 24% 61.3M 1s +2023-11-07T14:50:52Z #15 1.655 31800K .......... .......... .......... .......... .......... 24% 62.5M 1s +2023-11-07T14:50:52Z #15 1.656 31850K .......... .......... .......... .......... .......... 24% 47.0M 1s +2023-11-07T14:50:52Z #15 1.657 31900K .......... .......... .......... .......... .......... 24% 38.8M 1s +2023-11-07T14:50:52Z #15 1.659 31950K .......... .......... .......... .......... .......... 24% 56.6M 1s +2023-11-07T14:50:52Z #15 1.660 32000K .......... .......... .......... .......... .......... 24% 36.2M 1s +2023-11-07T14:50:52Z #15 1.661 32050K .......... .......... .......... .......... .......... 24% 65.3M 1s +2023-11-07T14:50:52Z #15 1.662 32100K .......... .......... .......... .......... .......... 24% 51.0M 1s +2023-11-07T14:50:52Z #15 1.662 32150K .......... .......... .......... .......... .......... 24% 50.4M 1s +2023-11-07T14:50:52Z #15 1.664 32200K .......... .......... .......... .......... .......... 24% 166M 1s +2023-11-07T14:50:52Z #15 1.664 32250K .......... .......... .......... .......... .......... 24% 32.6M 1s +2023-11-07T14:50:52Z #15 1.666 32300K .......... .......... .......... .......... .......... 24% 102M 1s +2023-11-07T14:50:52Z #15 1.666 32350K .......... .......... .......... .......... .......... 25% 40.9M 1s +2023-11-07T14:50:52Z #15 1.667 32400K .......... .......... .......... .......... .......... 25% 50.1M 1s +2023-11-07T14:50:52Z #15 1.668 32450K .......... .......... .......... .......... .......... 25% 46.1M 1s +2023-11-07T14:50:52Z #15 1.669 32500K .......... .......... .......... .......... .......... 25% 52.2M 1s +2023-11-07T14:50:52Z #15 1.670 32550K .......... .......... .......... .......... .......... 25% 42.3M 1s +2023-11-07T14:50:52Z #15 1.671 32600K .......... .......... .......... .......... .......... 25% 47.4M 1s +2023-11-07T14:50:52Z #15 1.673 32650K .......... .......... .......... .......... .......... 25% 82.2M 1s +2023-11-07T14:50:52Z #15 1.673 32700K .......... .......... .......... .......... .......... 25% 47.6M 1s +2023-11-07T14:50:52Z #15 1.674 32750K .......... .......... .......... .......... .......... 25% 45.4M 1s +2023-11-07T14:50:52Z #15 1.675 32800K .......... .......... .......... .......... .......... 25% 29.9M 1s +2023-11-07T14:50:52Z #15 1.676 32850K .......... .......... .......... .......... .......... 25% 43.7M 1s +2023-11-07T14:50:52Z #15 1.678 32900K .......... .......... .......... .......... .......... 25% 56.6M 1s +2023-11-07T14:50:52Z #15 1.679 32950K .......... .......... .......... .......... .......... 25% 43.7M 1s +2023-11-07T14:50:52Z #15 1.680 33000K .......... .......... .......... .......... .......... 25% 39.7M 1s +2023-11-07T14:50:52Z #15 1.681 33050K .......... .......... .......... .......... .......... 25% 42.8M 1s +2023-11-07T14:50:52Z #15 1.682 33100K .......... .......... .......... .......... .......... 25% 44.2M 1s +2023-11-07T14:50:52Z #15 1.683 33150K .......... .......... .......... .......... .......... 25% 44.0M 1s +2023-11-07T14:50:52Z #15 1.684 33200K .......... .......... .......... .......... .......... 25% 34.4M 1s +2023-11-07T14:50:52Z #15 1.686 33250K .......... .......... .......... .......... .......... 25% 84.7M 1s +2023-11-07T14:50:52Z #15 1.686 33300K .......... .......... .......... .......... .......... 25% 41.8M 1s +2023-11-07T14:50:52Z #15 1.687 33350K .......... .......... .......... .......... .......... 25% 57.5M 1s +2023-11-07T14:50:52Z #15 1.688 33400K .......... .......... .......... .......... .......... 25% 44.7M 1s +2023-11-07T14:50:52Z #15 1.689 33450K .......... .......... .......... .......... .......... 25% 135M 1s +2023-11-07T14:50:52Z #15 1.689 33500K .......... .......... .......... .......... .......... 25% 59.4M 1s +2023-11-07T14:50:52Z #15 1.690 33550K .......... .......... .......... .......... .......... 25% 56.9M 1s +2023-11-07T14:50:52Z #15 1.691 33600K .......... .......... .......... .......... .......... 25% 30.8M 1s +2023-11-07T14:50:52Z #15 1.693 33650K .......... .......... .......... .......... .......... 26% 58.0M 1s +2023-11-07T14:50:52Z #15 1.694 33700K .......... .......... .......... .......... .......... 26% 163M 1s +2023-11-07T14:50:52Z #15 1.694 33750K .......... .......... .......... .......... .......... 26% 34.1M 1s +2023-11-07T14:50:52Z #15 1.695 33800K .......... .......... .......... .......... .......... 26% 43.9M 1s +2023-11-07T14:50:52Z #15 1.696 33850K .......... .......... .......... .......... .......... 26% 49.7M 1s +2023-11-07T14:50:52Z #15 1.698 33900K .......... .......... .......... .......... .......... 26% 86.6M 1s +2023-11-07T14:50:52Z #15 1.698 33950K .......... .......... .......... .......... .......... 26% 35.1M 1s +2023-11-07T14:50:52Z #15 1.703 34000K .......... .......... .......... .......... .......... 26% 41.9M 1s +2023-11-07T14:50:52Z #15 1.703 34050K .......... .......... .......... .......... .......... 26% 49.8M 1s +2023-11-07T14:50:52Z #15 1.703 34100K .......... .......... .......... .......... .......... 26% 44.1M 1s +2023-11-07T14:50:52Z #15 1.703 34150K .......... .......... .......... .......... .......... 26% 38.6M 1s +2023-11-07T14:50:52Z #15 1.704 34200K .......... .......... .......... .......... .......... 26% 48.9M 1s +2023-11-07T14:50:52Z #15 1.705 34250K .......... .......... .......... .......... .......... 26% 69.0M 1s +2023-11-07T14:50:52Z #15 1.706 34300K .......... .......... .......... .......... .......... 26% 145M 1s +2023-11-07T14:50:52Z #15 1.706 34350K .......... .......... .......... .......... .......... 26% 40.5M 1s +2023-11-07T14:50:52Z #15 1.708 34400K .......... .......... .......... .......... .......... 26% 28.4M 1s +2023-11-07T14:50:52Z #15 1.709 34450K .......... .......... .......... .......... .......... 26% 41.6M 1s +2023-11-07T14:50:52Z #15 1.710 34500K .......... .......... .......... .......... .......... 26% 40.2M 1s +2023-11-07T14:50:52Z #15 1.711 34550K .......... .......... .......... .......... .......... 26% 45.2M 1s +2023-11-07T14:50:52Z #15 1.712 34600K .......... .......... .......... .......... .......... 26% 49.7M 1s +2023-11-07T14:50:52Z #15 1.713 34650K .......... .......... .......... .......... .......... 26% 41.5M 1s +2023-11-07T14:50:52Z #15 1.715 34700K .......... .......... .......... .......... .......... 26% 38.7M 1s +2023-11-07T14:50:52Z #15 1.717 34750K .......... .......... .......... .......... .......... 26% 52.8M 1s +2023-11-07T14:50:52Z #15 1.717 34800K .......... .......... .......... .......... .......... 26% 31.7M 1s +2023-11-07T14:50:52Z #15 1.721 34850K .......... .......... .......... .......... .......... 26% 46.6M 1s +2023-11-07T14:50:52Z #15 1.721 34900K .......... .......... .......... .......... .......... 26% 57.1M 1s +2023-11-07T14:50:52Z #15 1.721 34950K .......... .......... .......... .......... .......... 27% 30.9M 1s +2023-11-07T14:50:52Z #15 1.722 35000K .......... .......... .......... .......... .......... 27% 40.8M 1s +2023-11-07T14:50:52Z #15 1.724 35050K .......... .......... .......... .......... .......... 27% 117M 1s +2023-11-07T14:50:52Z #15 1.724 35100K .......... .......... .......... .......... .......... 27% 167M 1s +2023-11-07T14:50:52Z #15 1.724 35150K .......... .......... .......... .......... .......... 27% 44.2M 1s +2023-11-07T14:50:52Z #15 1.725 35200K .......... .......... .......... .......... .......... 27% 42.4M 1s +2023-11-07T14:50:52Z #15 1.726 35250K .......... .......... .......... .......... .......... 27% 52.4M 1s +2023-11-07T14:50:52Z #15 1.727 35300K .......... .......... .......... .......... .......... 27% 153M 1s +2023-11-07T14:50:52Z #15 1.727 35350K .......... .......... .......... .......... .......... 27% 28.8M 1s +2023-11-07T14:50:52Z #15 1.729 35400K .......... .......... .......... .......... .......... 27% 55.0M 1s +2023-11-07T14:50:52Z #15 1.733 35450K .......... .......... .......... .......... .......... 27% 53.5M 1s +2023-11-07T14:50:52Z #15 1.733 35500K .......... .......... .......... .......... .......... 27% 48.4M 1s +2023-11-07T14:50:52Z #15 1.733 35550K .......... .......... .......... .......... .......... 27% 46.2M 1s +2023-11-07T14:50:52Z #15 1.733 35600K .......... .......... .......... .......... .......... 27% 36.0M 1s +2023-11-07T14:50:52Z #15 1.734 35650K .......... .......... .......... .......... .......... 27% 62.0M 1s +2023-11-07T14:50:52Z #15 1.735 35700K .......... .......... .......... .......... .......... 27% 58.8M 1s +2023-11-07T14:50:52Z #15 1.736 35750K .......... .......... .......... .......... .......... 27% 61.1M 1s +2023-11-07T14:50:52Z #15 1.737 35800K .......... .......... .......... .......... .......... 27% 62.1M 1s +2023-11-07T14:50:52Z #15 1.738 35850K .......... .......... .......... .......... .......... 27% 119M 1s +2023-11-07T14:50:52Z #15 1.738 35900K .......... .......... .......... .......... .......... 27% 61.4M 1s +2023-11-07T14:50:52Z #15 1.739 35950K .......... .......... .......... .......... .......... 27% 39.1M 1s +2023-11-07T14:50:52Z #15 1.740 36000K .......... .......... .......... .......... .......... 27% 47.1M 1s +2023-11-07T14:50:52Z #15 1.741 36050K .......... .......... .......... .......... .......... 27% 29.1M 1s +2023-11-07T14:50:52Z #15 1.743 36100K .......... .......... .......... .......... .......... 27% 51.8M 1s +2023-11-07T14:50:52Z #15 1.743 36150K .......... .......... .......... .......... .......... 27% 43.3M 1s +2023-11-07T14:50:52Z #15 1.745 36200K .......... .......... .......... .......... .......... 27% 46.3M 1s +2023-11-07T14:50:52Z #15 1.746 36250K .......... .......... .......... .......... .......... 28% 46.6M 1s +2023-11-07T14:50:52Z #15 1.746 36300K .......... .......... .......... .......... .......... 28% 59.5M 1s +2023-11-07T14:50:52Z #15 1.747 36350K .......... .......... .......... .......... .......... 28% 77.7M 1s +2023-11-07T14:50:52Z #15 1.748 36400K .......... .......... .......... .......... .......... 28% 43.8M 1s +2023-11-07T14:50:52Z #15 1.749 36450K .......... .......... .......... .......... .......... 28% 55.8M 1s +2023-11-07T14:50:52Z #15 1.751 36500K .......... .......... .......... .......... .......... 28% 129M 1s +2023-11-07T14:50:52Z #15 1.751 36550K .......... .......... .......... .......... .......... 28% 33.4M 1s +2023-11-07T14:50:52Z #15 1.752 36600K .......... .......... .......... .......... .......... 28% 45.7M 1s +2023-11-07T14:50:52Z #15 1.753 36650K .......... .......... .......... .......... .......... 28% 59.6M 1s +2023-11-07T14:50:52Z #15 1.754 36700K .......... .......... .......... .......... .......... 28% 45.9M 1s +2023-11-07T14:50:52Z #15 1.755 36750K .......... .......... .......... .......... .......... 28% 47.0M 1s +2023-11-07T14:50:52Z #15 1.756 36800K .......... .......... .......... .......... .......... 28% 48.8M 1s +2023-11-07T14:50:52Z #15 1.757 36850K .......... .......... .......... .......... .......... 28% 44.6M 1s +2023-11-07T14:50:52Z #15 1.758 36900K .......... .......... .......... .......... .......... 28% 72.6M 1s +2023-11-07T14:50:52Z #15 1.759 36950K .......... .......... .......... .......... .......... 28% 56.7M 1s +2023-11-07T14:50:52Z #15 1.760 37000K .......... .......... .......... .......... .......... 28% 127M 1s +2023-11-07T14:50:52Z #15 1.760 37050K .......... .......... .......... .......... .......... 28% 27.8M 1s +2023-11-07T14:50:52Z #15 1.762 37100K .......... .......... .......... .......... .......... 28% 72.4M 1s +2023-11-07T14:50:52Z #15 1.762 37150K .......... .......... .......... .......... .......... 28% 39.2M 1s +2023-11-07T14:50:52Z #15 1.764 37200K .......... .......... .......... .......... .......... 28% 47.3M 1s +2023-11-07T14:50:52Z #15 1.765 37250K .......... .......... .......... .......... .......... 28% 62.6M 1s +2023-11-07T14:50:52Z #15 1.766 37300K .......... .......... .......... .......... .......... 28% 82.5M 1s +2023-11-07T14:50:52Z #15 1.766 37350K .......... .......... .......... .......... .......... 28% 32.5M 1s +2023-11-07T14:50:52Z #15 1.768 37400K .......... .......... .......... .......... .......... 28% 46.0M 1s +2023-11-07T14:50:52Z #15 1.769 37450K .......... .......... .......... .......... .......... 28% 45.7M 1s +2023-11-07T14:50:52Z #15 1.770 37500K .......... .......... .......... .......... .......... 28% 32.3M 1s +2023-11-07T14:50:52Z #15 1.771 37550K .......... .......... .......... .......... .......... 29% 45.7M 1s +2023-11-07T14:50:52Z #15 1.772 37600K .......... .......... .......... .......... .......... 29% 48.7M 1s +2023-11-07T14:50:52Z #15 1.773 37650K .......... .......... .......... .......... .......... 29% 37.2M 1s +2023-11-07T14:50:52Z #15 1.775 37700K .......... .......... .......... .......... .......... 29% 49.8M 1s +2023-11-07T14:50:52Z #15 1.775 37750K .......... .......... .......... .......... .......... 29% 36.0M 1s +2023-11-07T14:50:52Z #15 1.777 37800K .......... .......... .......... .......... .......... 29% 40.2M 1s +2023-11-07T14:50:52Z #15 1.779 37850K .......... .......... .......... .......... .......... 29% 48.4M 1s +2023-11-07T14:50:52Z #15 1.779 37900K .......... .......... .......... .......... .......... 29% 61.3M 1s +2023-11-07T14:50:52Z #15 1.780 37950K .......... .......... .......... .......... .......... 29% 38.3M 1s +2023-11-07T14:50:52Z #15 1.781 38000K .......... .......... .......... .......... .......... 29% 77.2M 1s +2023-11-07T14:50:52Z #15 1.782 38050K .......... .......... .......... .......... .......... 29% 50.8M 1s +2023-11-07T14:50:52Z #15 1.783 38100K .......... .......... .......... .......... .......... 29% 131M 1s +2023-11-07T14:50:52Z #15 1.783 38150K .......... .......... .......... .......... .......... 29% 28.3M 1s +2023-11-07T14:50:52Z #15 1.785 38200K .......... .......... .......... .......... .......... 29% 50.9M 1s +2023-11-07T14:50:52Z #15 1.786 38250K .......... .......... .......... .......... .......... 29% 41.5M 1s +2023-11-07T14:50:52Z #15 1.787 38300K .......... .......... .......... .......... .......... 29% 46.8M 1s +2023-11-07T14:50:52Z #15 1.788 38350K .......... .......... .......... .......... .......... 29% 53.5M 1s +2023-11-07T14:50:52Z #15 1.789 38400K .......... .......... .......... .......... .......... 29% 40.1M 1s +2023-11-07T14:50:52Z #15 1.791 38450K .......... .......... .......... .......... .......... 29% 36.7M 1s +2023-11-07T14:50:52Z #15 1.792 38500K .......... .......... .......... .......... .......... 29% 52.8M 1s +2023-11-07T14:50:52Z #15 1.792 38550K .......... .......... .......... .......... .......... 29% 79.7M 1s +2023-11-07T14:50:52Z #15 1.796 38600K .......... .......... .......... .......... .......... 29% 129M 1s +2023-11-07T14:50:52Z #15 1.796 38650K .......... .......... .......... .......... .......... 29% 173M 1s +2023-11-07T14:50:52Z #15 1.796 38700K .......... .......... .......... .......... .......... 29% 173M 1s +2023-11-07T14:50:52Z #15 1.796 38750K .......... .......... .......... .......... .......... 29% 157M 1s +2023-11-07T14:50:52Z #15 1.796 38800K .......... .......... .......... .......... .......... 29% 152M 1s +2023-11-07T14:50:52Z #15 1.796 38850K .......... .......... .......... .......... .......... 30% 138M 1s +2023-11-07T14:50:52Z #15 1.796 38900K .......... .......... .......... .......... .......... 30% 164M 1s +2023-11-07T14:50:52Z #15 1.796 38950K .......... .......... .......... .......... .......... 30% 141M 1s +2023-11-07T14:50:52Z #15 1.796 39000K .......... .......... .......... .......... .......... 30% 121M 1s +2023-11-07T14:50:52Z #15 1.796 39050K .......... .......... .......... .......... .......... 30% 142M 1s +2023-11-07T14:50:52Z #15 1.796 39100K .......... .......... .......... .......... .......... 30% 27.0M 1s +2023-11-07T14:50:52Z #15 1.798 39150K .......... .......... .......... .......... .......... 30% 29.6M 1s +2023-11-07T14:50:52Z #15 1.800 39200K .......... .......... .......... .......... .......... 30% 43.0M 1s +2023-11-07T14:50:52Z #15 1.801 39250K .......... .......... .......... .......... .......... 30% 42.5M 1s +2023-11-07T14:50:52Z #15 1.802 39300K .......... .......... .......... .......... .......... 30% 37.4M 1s +2023-11-07T14:50:52Z #15 1.804 39350K .......... .......... .......... .......... .......... 30% 36.4M 1s +2023-11-07T14:50:52Z #15 1.805 39400K .......... .......... .......... .......... .......... 30% 49.8M 1s +2023-11-07T14:50:52Z #15 1.806 39450K .......... .......... .......... .......... .......... 30% 52.6M 1s +2023-11-07T14:50:52Z #15 1.812 39500K .......... .......... .......... .......... .......... 30% 44.7M 1s +2023-11-07T14:50:52Z #15 1.812 39550K .......... .......... .......... .......... .......... 30% 42.5M 1s +2023-11-07T14:50:52Z #15 1.812 39600K .......... .......... .......... .......... .......... 30% 47.4M 1s +2023-11-07T14:50:52Z #15 1.812 39650K .......... .......... .......... .......... .......... 30% 43.8M 1s +2023-11-07T14:50:52Z #15 1.812 39700K .......... .......... .......... .......... .......... 30% 54.4M 1s +2023-11-07T14:50:52Z #15 1.812 39750K .......... .......... .......... .......... .......... 30% 67.4M 1s +2023-11-07T14:50:52Z #15 1.815 39800K .......... .......... .......... .......... .......... 30% 125M 1s +2023-11-07T14:50:52Z #15 1.815 39850K .......... .......... .......... .......... .......... 30% 125M 1s +2023-11-07T14:50:52Z #15 1.815 39900K .......... .......... .......... .......... .......... 30% 108M 1s +2023-11-07T14:50:52Z #15 1.815 39950K .......... .......... .......... .......... .......... 30% 123M 1s +2023-11-07T14:50:52Z #15 1.815 40000K .......... .......... .......... .......... .......... 30% 140M 1s +2023-11-07T14:50:52Z #15 1.815 40050K .......... .......... .......... .......... .......... 30% 72.0M 1s +2023-11-07T14:50:52Z #15 1.815 40100K .......... .......... .......... .......... .......... 30% 52.7M 1s +2023-11-07T14:50:52Z #15 1.816 40150K .......... .......... .......... .......... .......... 31% 37.9M 1s +2023-11-07T14:50:52Z #15 1.818 40200K .......... .......... .......... .......... .......... 31% 109M 1s +2023-11-07T14:50:52Z #15 1.818 40250K .......... .......... .......... .......... .......... 31% 43.1M 1s +2023-11-07T14:50:52Z #15 1.819 40300K .......... .......... .......... .......... .......... 31% 110M 1s +2023-11-07T14:50:52Z #15 1.819 40350K .......... .......... .......... .......... .......... 31% 124M 1s +2023-11-07T14:50:52Z #15 1.820 40400K .......... .......... .......... .......... .......... 31% 64.2M 1s +2023-11-07T14:50:52Z #15 1.821 40450K .......... .......... .......... .......... .......... 31% 74.3M 1s +2023-11-07T14:50:52Z #15 1.821 40500K .......... .......... .......... .......... .......... 31% 97.4M 1s +2023-11-07T14:50:52Z #15 1.822 40550K .......... .......... .......... .......... .......... 31% 92.8M 1s +2023-11-07T14:50:52Z #15 1.822 40600K .......... .......... .......... .......... .......... 31% 96.7M 1s +2023-11-07T14:50:52Z #15 1.823 40650K .......... .......... .......... .......... .......... 31% 67.0M 1s +2023-11-07T14:50:52Z #15 1.824 40700K .......... .......... .......... .......... .......... 31% 160M 1s +2023-11-07T14:50:52Z #15 1.824 40750K .......... .......... .......... .......... .......... 31% 73.1M 1s +2023-11-07T14:50:52Z #15 1.825 40800K .......... .......... .......... .......... .......... 31% 92.4M 1s +2023-11-07T14:50:52Z #15 1.825 40850K .......... .......... .......... .......... .......... 31% 46.2M 1s +2023-11-07T14:50:52Z #15 1.826 40900K .......... .......... .......... .......... .......... 31% 44.2M 1s +2023-11-07T14:50:52Z #15 1.827 40950K .......... .......... .......... .......... .......... 31% 59.2M 1s +2023-11-07T14:50:52Z #15 1.828 41000K .......... .......... .......... .......... .......... 31% 47.7M 1s +2023-11-07T14:50:52Z #15 1.829 41050K .......... .......... .......... .......... .......... 31% 60.0M 1s +2023-11-07T14:50:52Z #15 1.830 41100K .......... .......... .......... .......... .......... 31% 50.6M 1s +2023-11-07T14:50:52Z #15 1.831 41150K .......... .......... .......... .......... .......... 31% 55.2M 1s +2023-11-07T14:50:52Z #15 1.833 41200K .......... .......... .......... .......... .......... 31% 125M 1s +2023-11-07T14:50:52Z #15 1.833 41250K .......... .......... .......... .......... .......... 31% 123M 1s +2023-11-07T14:50:52Z #15 1.833 41300K .......... .......... .......... .......... .......... 31% 69.9M 1s +2023-11-07T14:50:52Z #15 1.834 41350K .......... .......... .......... .......... .......... 31% 143M 1s +2023-11-07T14:50:52Z #15 1.834 41400K .......... .......... .......... .......... .......... 31% 61.9M 1s +2023-11-07T14:50:52Z #15 1.834 41450K .......... .......... .......... .......... .......... 32% 109M 1s +2023-11-07T14:50:52Z #15 1.835 41500K .......... .......... .......... .......... .......... 32% 58.9M 1s +2023-11-07T14:50:52Z #15 1.836 41550K .......... .......... .......... .......... .......... 32% 120M 1s +2023-11-07T14:50:52Z #15 1.836 41600K .......... .......... .......... .......... .......... 32% 99.7M 1s +2023-11-07T14:50:52Z #15 1.837 41650K .......... .......... .......... .......... .......... 32% 91.1M 1s +2023-11-07T14:50:52Z #15 1.837 41700K .......... .......... .......... .......... .......... 32% 95.3M 1s +2023-11-07T14:50:52Z #15 1.838 41750K .......... .......... .......... .......... .......... 32% 125M 1s +2023-11-07T14:50:52Z #15 1.838 41800K .......... .......... .......... .......... .......... 32% 61.1M 1s +2023-11-07T14:50:52Z #15 1.839 41850K .......... .......... .......... .......... .......... 32% 105M 1s +2023-11-07T14:50:52Z #15 1.839 41900K .......... .......... .......... .......... .......... 32% 90.7M 1s +2023-11-07T14:50:52Z #15 1.840 41950K .......... .......... .......... .......... .......... 32% 99.9M 1s +2023-11-07T14:50:52Z #15 1.840 42000K .......... .......... .......... .......... .......... 32% 81.9M 1s +2023-11-07T14:50:52Z #15 1.841 42050K .......... .......... .......... .......... .......... 32% 102M 1s +2023-11-07T14:50:52Z #15 1.841 42100K .......... .......... .......... .......... .......... 32% 119M 1s +2023-11-07T14:50:52Z #15 1.842 42150K .......... .......... .......... .......... .......... 32% 86.2M 1s +2023-11-07T14:50:52Z #15 1.842 42200K .......... .......... .......... .......... .......... 32% 68.0M 1s +2023-11-07T14:50:52Z #15 1.843 42250K .......... .......... .......... .......... .......... 32% 80.8M 1s +2023-11-07T14:50:52Z #15 1.844 42300K .......... .......... .......... .......... .......... 32% 129M 1s +2023-11-07T14:50:52Z #15 1.844 42350K .......... .......... .......... .......... .......... 32% 78.2M 1s +2023-11-07T14:50:52Z #15 1.845 42400K .......... .......... .......... .......... .......... 32% 86.0M 1s +2023-11-07T14:50:52Z #15 1.846 42450K .......... .......... .......... .......... .......... 32% 116M 1s +2023-11-07T14:50:52Z #15 1.846 42500K .......... .......... .......... .......... .......... 32% 67.7M 1s +2023-11-07T14:50:52Z #15 1.846 42550K .......... .......... .......... .......... .......... 32% 54.1M 1s +2023-11-07T14:50:52Z #15 1.847 42600K .......... .......... .......... .......... .......... 32% 43.7M 1s +2023-11-07T14:50:52Z #15 1.848 42650K .......... .......... .......... .......... .......... 32% 81.4M 1s +2023-11-07T14:50:52Z #15 1.853 42700K .......... .......... .......... .......... .......... 32% 162M 1s +2023-11-07T14:50:52Z #15 1.853 42750K .......... .......... .......... .......... .......... 33% 160M 1s +2023-11-07T14:50:52Z #15 1.853 42800K .......... .......... .......... .......... .......... 33% 148M 1s +2023-11-07T14:50:52Z #15 1.853 42850K .......... .......... .......... .......... .......... 33% 158M 1s +2023-11-07T14:50:52Z #15 1.853 42900K .......... .......... .......... .......... .......... 33% 130M 1s +2023-11-07T14:50:52Z #15 1.853 42950K .......... .......... .......... .......... .......... 33% 164M 1s +2023-11-07T14:50:52Z #15 1.853 43000K .......... .......... .......... .......... .......... 33% 59.4M 1s +2023-11-07T14:50:52Z #15 1.853 43050K .......... .......... .......... .......... .......... 33% 67.8M 1s +2023-11-07T14:50:52Z #15 1.853 43100K .......... .......... .......... .......... .......... 33% 62.4M 1s +2023-11-07T14:50:52Z #15 1.853 43150K .......... .......... .......... .......... .......... 33% 40.6M 1s +2023-11-07T14:50:52Z #15 1.854 43200K .......... .......... .......... .......... .......... 33% 37.9M 1s +2023-11-07T14:50:52Z #15 1.856 43250K .......... .......... .......... .......... .......... 33% 35.9M 1s +2023-11-07T14:50:52Z #15 1.857 43300K .......... .......... .......... .......... .......... 33% 72.0M 1s +2023-11-07T14:50:52Z #15 1.858 43350K .......... .......... .......... .......... .......... 33% 59.3M 1s +2023-11-07T14:50:52Z #15 1.859 43400K .......... .......... .......... .......... .......... 33% 45.5M 1s +2023-11-07T14:50:52Z #15 1.860 43450K .......... .......... .......... .......... .......... 33% 53.5M 1s +2023-11-07T14:50:52Z #15 1.861 43500K .......... .......... .......... .......... .......... 33% 55.7M 1s +2023-11-07T14:50:52Z #15 1.861 43550K .......... .......... .......... .......... .......... 33% 105M 1s +2023-11-07T14:50:52Z #15 1.862 43600K .......... .......... .......... .......... .......... 33% 145M 1s +2023-11-07T14:50:52Z #15 1.862 43650K .......... .......... .......... .......... .......... 33% 70.3M 1s +2023-11-07T14:50:52Z #15 1.863 43700K .......... .......... .......... .......... .......... 33% 82.3M 1s +2023-11-07T14:50:52Z #15 1.863 43750K .......... .......... .......... .......... .......... 33% 71.9M 1s +2023-11-07T14:50:52Z #15 1.865 43800K .......... .......... .......... .......... .......... 33% 111M 1s +2023-11-07T14:50:52Z #15 1.865 43850K .......... .......... .......... .......... .......... 33% 116M 1s +2023-11-07T14:50:52Z #15 1.865 43900K .......... .......... .......... .......... .......... 33% 81.3M 1s +2023-11-07T14:50:52Z #15 1.866 43950K .......... .......... .......... .......... .......... 33% 88.5M 1s +2023-11-07T14:50:52Z #15 1.866 44000K .......... .......... .......... .......... .......... 33% 78.9M 1s +2023-11-07T14:50:52Z #15 1.867 44050K .......... .......... .......... .......... .......... 34% 86.4M 1s +2023-11-07T14:50:52Z #15 1.867 44100K .......... .......... .......... .......... .......... 34% 90.7M 1s +2023-11-07T14:50:52Z #15 1.868 44150K .......... .......... .......... .......... .......... 34% 66.9M 1s +2023-11-07T14:50:52Z #15 1.869 44200K .......... .......... .......... .......... .......... 34% 157M 1s +2023-11-07T14:50:52Z #15 1.869 44250K .......... .......... .......... .......... .......... 34% 61.6M 1s +2023-11-07T14:50:52Z #15 1.870 44300K .......... .......... .......... .......... .......... 34% 85.2M 1s +2023-11-07T14:50:52Z #15 1.870 44350K .......... .......... .......... .......... .......... 34% 136M 1s +2023-11-07T14:50:52Z #15 1.871 44400K .......... .......... .......... .......... .......... 34% 66.4M 1s +2023-11-07T14:50:52Z #15 1.872 44450K .......... .......... .......... .......... .......... 34% 123M 1s +2023-11-07T14:50:52Z #15 1.872 44500K .......... .......... .......... .......... .......... 34% 82.1M 1s +2023-11-07T14:50:52Z #15 1.872 44550K .......... .......... .......... .......... .......... 34% 77.3M 1s +2023-11-07T14:50:52Z #15 1.873 44600K .......... .......... .......... .......... .......... 34% 74.2M 1s +2023-11-07T14:50:52Z #15 1.874 44650K .......... .......... .......... .......... .......... 34% 74.3M 1s +2023-11-07T14:50:52Z #15 1.876 44700K .......... .......... .......... .......... .......... 34% 169M 1s +2023-11-07T14:50:52Z #15 1.876 44750K .......... .......... .......... .......... .......... 34% 140M 1s +2023-11-07T14:50:52Z #15 1.876 44800K .......... .......... .......... .......... .......... 34% 163M 1s +2023-11-07T14:50:52Z #15 1.876 44850K .......... .......... .......... .......... .......... 34% 149M 1s +2023-11-07T14:50:52Z #15 1.876 44900K .......... .......... .......... .......... .......... 34% 167M 1s +2023-11-07T14:50:52Z #15 1.876 44950K .......... .......... .......... .......... .......... 34% 163M 1s +2023-11-07T14:50:52Z #15 1.876 45000K .......... .......... .......... .......... .......... 34% 93.5M 1s +2023-11-07T14:50:52Z #15 1.877 45050K .......... .......... .......... .......... .......... 34% 57.2M 1s +2023-11-07T14:50:52Z #15 1.878 45100K .......... .......... .......... .......... .......... 34% 57.7M 1s +2023-11-07T14:50:52Z #15 1.878 45150K .......... .......... .......... .......... .......... 34% 40.7M 1s +2023-11-07T14:50:52Z #15 1.880 45200K .......... .......... .......... .......... .......... 34% 73.4M 1s +2023-11-07T14:50:52Z #15 1.880 45250K .......... .......... .......... .......... .......... 34% 83.0M 1s +2023-11-07T14:50:52Z #15 1.881 45300K .......... .......... .......... .......... .......... 35% 72.3M 1s +2023-11-07T14:50:52Z #15 1.882 45350K .......... .......... .......... .......... .......... 35% 59.0M 1s +2023-11-07T14:50:52Z #15 1.882 45400K .......... .......... .......... .......... .......... 35% 50.3M 1s +2023-11-07T14:50:52Z #15 1.883 45450K .......... .......... .......... .......... .......... 35% 49.0M 1s +2023-11-07T14:50:52Z #15 1.884 45500K .......... .......... .......... .......... .......... 35% 53.1M 1s +2023-11-07T14:50:52Z #15 1.885 45550K .......... .......... .......... .......... .......... 35% 63.0M 1s +2023-11-07T14:50:52Z #15 1.886 45600K .......... .......... .......... .......... .......... 35% 65.6M 1s +2023-11-07T14:50:52Z #15 1.887 45650K .......... .......... .......... .......... .......... 35% 52.5M 1s +2023-11-07T14:50:52Z #15 1.888 45700K .......... .......... .......... .......... .......... 35% 38.5M 1s +2023-11-07T14:50:52Z #15 1.889 45750K .......... .......... .......... .......... .......... 35% 37.6M 1s +2023-11-07T14:50:52Z #15 1.890 45800K .......... .......... .......... .......... .......... 35% 38.8M 1s +2023-11-07T14:50:52Z #15 1.892 45850K .......... .......... .......... .......... .......... 35% 30.6M 1s +2023-11-07T14:50:52Z #15 1.893 45900K .......... .......... .......... .......... .......... 35% 45.7M 1s +2023-11-07T14:50:52Z #15 1.894 45950K .......... .......... .......... .......... .......... 35% 46.3M 1s +2023-11-07T14:50:52Z #15 1.896 46000K .......... .......... .......... .......... .......... 35% 46.7M 1s +2023-11-07T14:50:52Z #15 1.897 46050K .......... .......... .......... .......... .......... 35% 34.7M 1s +2023-11-07T14:50:52Z #15 1.898 46100K .......... .......... .......... .......... .......... 35% 29.1M 1s +2023-11-07T14:50:52Z #15 1.899 46150K .......... .......... .......... .......... .......... 35% 61.7M 1s +2023-11-07T14:50:52Z #15 1.900 46200K .......... .......... .......... .......... .......... 35% 39.7M 1s +2023-11-07T14:50:52Z #15 1.901 46250K .......... .......... .......... .......... .......... 35% 80.7M 1s +2023-11-07T14:50:52Z #15 1.903 46300K .......... .......... .......... .......... .......... 35% 49.2M 1s +2023-11-07T14:50:52Z #15 1.903 46350K .......... .......... .......... .......... .......... 35% 53.3M 1s +2023-11-07T14:50:52Z #15 1.904 46400K .......... .......... .......... .......... .......... 35% 51.9M 1s +2023-11-07T14:50:52Z #15 1.910 46450K .......... .......... .......... .......... .......... 35% 56.0M 1s +2023-11-07T14:50:52Z #15 1.910 46500K .......... .......... .......... .......... .......... 35% 54.4M 1s +2023-11-07T14:50:52Z #15 1.910 46550K .......... .......... .......... .......... .......... 35% 71.0M 1s +2023-11-07T14:50:52Z #15 1.910 46600K .......... .......... .......... .......... .......... 36% 77.9M 1s +2023-11-07T14:50:52Z #15 1.910 46650K .......... .......... .......... .......... .......... 36% 59.0M 1s +2023-11-07T14:50:52Z #15 1.910 46700K .......... .......... .......... .......... .......... 36% 43.4M 1s +2023-11-07T14:50:52Z #15 1.910 46750K .......... .......... .......... .......... .......... 36% 71.8M 1s +2023-11-07T14:50:52Z #15 1.912 46800K .......... .......... .......... .......... .......... 36% 119M 1s +2023-11-07T14:50:52Z #15 1.912 46850K .......... .......... .......... .......... .......... 36% 116M 1s +2023-11-07T14:50:52Z #15 1.912 46900K .......... .......... .......... .......... .......... 36% 82.2M 1s +2023-11-07T14:50:52Z #15 1.912 46950K .......... .......... .......... .......... .......... 36% 51.8M 1s +2023-11-07T14:50:52Z #15 1.916 47000K .......... .......... .......... .......... .......... 36% 116M 1s +2023-11-07T14:50:52Z #15 1.916 47050K .......... .......... .......... .......... .......... 36% 124M 1s +2023-11-07T14:50:52Z #15 1.916 47100K .......... .......... .......... .......... .......... 36% 104M 1s +2023-11-07T14:50:52Z #15 1.916 47150K .......... .......... .......... .......... .......... 36% 117M 1s +2023-11-07T14:50:52Z #15 1.916 47200K .......... .......... .......... .......... .......... 36% 113M 1s +2023-11-07T14:50:52Z #15 1.916 47250K .......... .......... .......... .......... .......... 36% 128M 1s +2023-11-07T14:50:52Z #15 1.916 47300K .......... .......... .......... .......... .......... 36% 106M 1s +2023-11-07T14:50:52Z #15 1.916 47350K .......... .......... .......... .......... .......... 36% 128M 1s +2023-11-07T14:50:52Z #15 1.916 47400K .......... .......... .......... .......... .......... 36% 49.4M 1s +2023-11-07T14:50:52Z #15 1.927 47450K .......... .......... .......... .......... .......... 36% 83.0M 1s +2023-11-07T14:50:52Z #15 1.927 47500K .......... .......... .......... .......... .......... 36% 108M 1s +2023-11-07T14:50:52Z #15 1.927 47550K .......... .......... .......... .......... .......... 36% 120M 1s +2023-11-07T14:50:52Z #15 1.927 47600K .......... .......... .......... .......... .......... 36% 106M 1s +2023-11-07T14:50:52Z #15 1.927 47650K .......... .......... .......... .......... .......... 36% 66.6M 1s +2023-11-07T14:50:52Z #15 1.927 47700K .......... .......... .......... .......... .......... 36% 66.4M 1s +2023-11-07T14:50:52Z #15 1.927 47750K .......... .......... .......... .......... .......... 36% 67.7M 1s +2023-11-07T14:50:52Z #15 1.927 47800K .......... .......... .......... .......... .......... 36% 65.7M 1s +2023-11-07T14:50:52Z #15 1.927 47850K .......... .......... .......... .......... .......... 36% 78.3M 1s +2023-11-07T14:50:52Z #15 1.927 47900K .......... .......... .......... .......... .......... 37% 69.3M 1s +2023-11-07T14:50:52Z #15 1.927 47950K .......... .......... .......... .......... .......... 37% 65.8M 1s +2023-11-07T14:50:52Z #15 1.927 48000K .......... .......... .......... .......... .......... 37% 103M 1s +2023-11-07T14:50:52Z #15 1.927 48050K .......... .......... .......... .......... .......... 37% 105M 1s +2023-11-07T14:50:52Z #15 1.927 48100K .......... .......... .......... .......... .......... 37% 138M 1s +2023-11-07T14:50:52Z #15 1.927 48150K .......... .......... .......... .......... .......... 37% 120M 1s +2023-11-07T14:50:52Z #15 1.927 48200K .......... .......... .......... .......... .......... 37% 94.8M 1s +2023-11-07T14:50:52Z #15 1.927 48250K .......... .......... .......... .......... .......... 37% 130M 1s +2023-11-07T14:50:52Z #15 1.927 48300K .......... .......... .......... .......... .......... 37% 91.0M 1s +2023-11-07T14:50:52Z #15 1.928 48350K .......... .......... .......... .......... .......... 37% 95.4M 1s +2023-11-07T14:50:52Z #15 1.940 48400K .......... .......... .......... .......... .......... 37% 30.7M 1s +2023-11-07T14:50:52Z #15 1.940 48450K .......... .......... .......... .......... .......... 37% 97.7M 1s +2023-11-07T14:50:52Z #15 1.940 48500K .......... .......... .......... .......... .......... 37% 130M 1s +2023-11-07T14:50:52Z #15 1.940 48550K .......... .......... .......... .......... .......... 37% 120M 1s +2023-11-07T14:50:52Z #15 1.940 48600K .......... .......... .......... .......... .......... 37% 116M 1s +2023-11-07T14:50:52Z #15 1.940 48650K .......... .......... .......... .......... .......... 37% 122M 1s +2023-11-07T14:50:52Z #15 1.940 48700K .......... .......... .......... .......... .......... 37% 98.9M 1s +2023-11-07T14:50:52Z #15 1.940 48750K .......... .......... .......... .......... .......... 37% 69.7M 1s +2023-11-07T14:50:52Z #15 1.940 48800K .......... .......... .......... .......... .......... 37% 58.1M 1s +2023-11-07T14:50:52Z #15 1.940 48850K .......... .......... .......... .......... .......... 37% 86.3M 1s +2023-11-07T14:50:52Z #15 1.940 48900K .......... .......... .......... .......... .......... 37% 150M 1s +2023-11-07T14:50:52Z #15 1.940 48950K .......... .......... .......... .......... .......... 37% 145M 1s +2023-11-07T14:50:52Z #15 1.940 49000K .......... .......... .......... .......... .......... 37% 163M 1s +2023-11-07T14:50:52Z #15 1.940 49050K .......... .......... .......... .......... .......... 37% 153M 1s +2023-11-07T14:50:52Z #15 1.940 49100K .......... .......... .......... .......... .......... 37% 155M 1s +2023-11-07T14:50:52Z #15 1.940 49150K .......... .......... .......... .......... .......... 37% 162M 1s +2023-11-07T14:50:52Z #15 1.940 49200K .......... .......... .......... .......... .......... 38% 5.32M 1s +2023-11-07T14:50:52Z #15 1.945 49250K .......... .......... .......... .......... .......... 38% 138M 1s +2023-11-07T14:50:52Z #15 1.946 49300K .......... .......... .......... .......... .......... 38% 136M 1s +2023-11-07T14:50:52Z #15 1.946 49350K .......... .......... .......... .......... .......... 38% 104M 1s +2023-11-07T14:50:52Z #15 1.946 49400K .......... .......... .......... .......... .......... 38% 134M 1s +2023-11-07T14:50:52Z #15 1.947 49450K .......... .......... .......... .......... .......... 38% 141M 1s +2023-11-07T14:50:52Z #15 1.947 49500K .......... .......... .......... .......... .......... 38% 79.7M 1s +2023-11-07T14:50:52Z #15 1.948 49550K .......... .......... .......... .......... .......... 38% 69.2M 1s +2023-11-07T14:50:52Z #15 1.948 49600K .......... .......... .......... .......... .......... 38% 96.9M 1s +2023-11-07T14:50:52Z #15 1.949 49650K .......... .......... .......... .......... .......... 38% 60.7M 1s +2023-11-07T14:50:52Z #15 1.950 49700K .......... .......... .......... .......... .......... 38% 111M 1s +2023-11-07T14:50:52Z #15 1.950 49750K .......... .......... .......... .......... .......... 38% 87.0M 1s +2023-11-07T14:50:52Z #15 1.951 49800K .......... .......... .......... .......... .......... 38% 116M 1s +2023-11-07T14:50:52Z #15 1.951 49850K .......... .......... .......... .......... .......... 38% 108M 1s +2023-11-07T14:50:52Z #15 1.952 49900K .......... .......... .......... .......... .......... 38% 108M 1s +2023-11-07T14:50:52Z #15 1.952 49950K .......... .......... .......... .......... .......... 38% 21.1M 1s +2023-11-07T14:50:52Z #15 1.954 50000K .......... .......... .......... .......... .......... 38% 114M 1s +2023-11-07T14:50:52Z #15 1.955 50050K .......... .......... .......... .......... .......... 38% 116M 1s +2023-11-07T14:50:52Z #15 1.955 50100K .......... .......... .......... .......... .......... 38% 87.0M 1s +2023-11-07T14:50:52Z #15 1.956 50150K .......... .......... .......... .......... .......... 38% 136M 1s +2023-11-07T14:50:52Z #15 1.956 50200K .......... .......... .......... .......... .......... 38% 111M 1s +2023-11-07T14:50:52Z #15 1.956 50250K .......... .......... .......... .......... .......... 38% 60.2M 1s +2023-11-07T14:50:52Z #15 1.957 50300K .......... .......... .......... .......... .......... 38% 105M 1s +2023-11-07T14:50:52Z #15 1.958 50350K .......... .......... .......... .......... .......... 38% 89.3M 1s +2023-11-07T14:50:52Z #15 1.958 50400K .......... .......... .......... .......... .......... 38% 71.0M 1s +2023-11-07T14:50:52Z #15 1.959 50450K .......... .......... .......... .......... .......... 38% 90.4M 1s +2023-11-07T14:50:52Z #15 1.960 50500K .......... .......... .......... .......... .......... 39% 99.6M 1s +2023-11-07T14:50:52Z #15 1.960 50550K .......... .......... .......... .......... .......... 39% 10.9M 1s +2023-11-07T14:50:52Z #15 1.972 50600K .......... .......... .......... .......... .......... 39% 170M 1s +2023-11-07T14:50:52Z #15 1.972 50650K .......... .......... .......... .......... .......... 39% 147M 1s +2023-11-07T14:50:52Z #15 1.972 50700K .......... .......... .......... .......... .......... 39% 143M 1s +2023-11-07T14:50:52Z #15 1.972 50750K .......... .......... .......... .......... .......... 39% 168M 1s +2023-11-07T14:50:52Z #15 1.972 50800K .......... .......... .......... .......... .......... 39% 176M 1s +2023-11-07T14:50:52Z #15 1.972 50850K .......... .......... .......... .......... .......... 39% 162M 1s +2023-11-07T14:50:52Z #15 1.972 50900K .......... .......... .......... .......... .......... 39% 152M 1s +2023-11-07T14:50:52Z #15 1.972 50950K .......... .......... .......... .......... .......... 39% 131M 1s +2023-11-07T14:50:52Z #15 1.972 51000K .......... .......... .......... .......... .......... 39% 137M 1s +2023-11-07T14:50:52Z #15 1.972 51050K .......... .......... .......... .......... .......... 39% 162M 1s +2023-11-07T14:50:52Z #15 1.972 51100K .......... .......... .......... .......... .......... 39% 157M 1s +2023-11-07T14:50:52Z #15 1.972 51150K .......... .......... .......... .......... .......... 39% 136M 1s +2023-11-07T14:50:52Z #15 1.972 51200K .......... .......... .......... .......... .......... 39% 134M 1s +2023-11-07T14:50:52Z #15 1.972 51250K .......... .......... .......... .......... .......... 39% 160M 1s +2023-11-07T14:50:52Z #15 1.972 51300K .......... .......... .......... .......... .......... 39% 152M 1s +2023-11-07T14:50:52Z #15 1.972 51350K .......... .......... .......... .......... .......... 39% 156M 1s +2023-11-07T14:50:52Z #15 1.972 51400K .......... .......... .......... .......... .......... 39% 157M 1s +2023-11-07T14:50:52Z #15 1.972 51450K .......... .......... .......... .......... .......... 39% 141M 1s +2023-11-07T14:50:52Z #15 1.972 51500K .......... .......... .......... .......... .......... 39% 180M 1s +2023-11-07T14:50:52Z #15 1.972 51550K .......... .......... .......... .......... .......... 39% 149M 1s +2023-11-07T14:50:52Z #15 1.972 51600K .......... .......... .......... .......... .......... 39% 149M 1s +2023-11-07T14:50:52Z #15 1.972 51650K .......... .......... .......... .......... .......... 39% 136M 1s +2023-11-07T14:50:52Z #15 1.972 51700K .......... .......... .......... .......... .......... 39% 159M 1s +2023-11-07T14:50:52Z #15 1.972 51750K .......... .......... .......... .......... .......... 39% 17.4M 1s +2023-11-07T14:50:52Z #15 1.976 51800K .......... .......... .......... .......... .......... 40% 123M 1s +2023-11-07T14:50:52Z #15 1.976 51850K .......... .......... .......... .......... .......... 40% 153M 1s +2023-11-07T14:50:52Z #15 1.976 51900K .......... .......... .......... .......... .......... 40% 162M 1s +2023-11-07T14:50:52Z #15 1.976 51950K .......... .......... .......... .......... .......... 40% 154M 1s +2023-11-07T14:50:52Z #15 1.976 52000K .......... .......... .......... .......... .......... 40% 16.8M 1s +2023-11-07T14:50:52Z #15 1.979 52050K .......... .......... .......... .......... .......... 40% 31.0M 1s +2023-11-07T14:50:52Z #15 1.984 52100K .......... .......... .......... .......... .......... 40% 165M 1s +2023-11-07T14:50:52Z #15 1.984 52150K .......... .......... .......... .......... .......... 40% 173M 1s +2023-11-07T14:50:52Z #15 1.984 52200K .......... .......... .......... .......... .......... 40% 130M 1s +2023-11-07T14:50:52Z #15 1.984 52250K .......... .......... .......... .......... .......... 40% 162M 1s +2023-11-07T14:50:52Z #15 1.984 52300K .......... .......... .......... .......... .......... 40% 172M 1s +2023-11-07T14:50:52Z #15 1.984 52350K .......... .......... .......... .......... .......... 40% 167M 1s +2023-11-07T14:50:52Z #15 1.984 52400K .......... .......... .......... .......... .......... 40% 148M 1s +2023-11-07T14:50:52Z #15 1.984 52450K .......... .......... .......... .......... .......... 40% 140M 1s +2023-11-07T14:50:52Z #15 1.984 52500K .......... .......... .......... .......... .......... 40% 122M 1s +2023-11-07T14:50:52Z #15 1.984 52550K .......... .......... .......... .......... .......... 40% 158M 1s +2023-11-07T14:50:52Z #15 1.984 52600K .......... .......... .......... .......... .......... 40% 160M 1s +2023-11-07T14:50:52Z #15 1.984 52650K .......... .......... .......... .......... .......... 40% 8.94M 1s +2023-11-07T14:50:52Z #15 1.990 52700K .......... .......... .......... .......... .......... 40% 57.2M 1s +2023-11-07T14:50:52Z #15 1.990 52750K .......... .......... .......... .......... .......... 40% 38.1M 1s +2023-11-07T14:50:52Z #15 1.992 52800K .......... .......... .......... .......... .......... 40% 57.7M 1s +2023-11-07T14:50:52Z #15 1.993 52850K .......... .......... .......... .......... .......... 40% 79.1M 1s +2023-11-07T14:50:52Z #15 1.994 52900K .......... .......... .......... .......... .......... 40% 29.1M 1s +2023-11-07T14:50:52Z #15 1.996 52950K .......... .......... .......... .......... .......... 40% 23.8M 1s +2023-11-07T14:50:52Z #15 1.998 53000K .......... .......... .......... .......... .......... 40% 40.1M 1s +2023-11-07T14:50:52Z #15 1.998 53050K .......... .......... .......... .......... .......... 40% 166M 1s +2023-11-07T14:50:52Z #15 2.003 53100K .......... .......... .......... .......... .......... 41% 10.2M 1s +2023-11-07T14:50:52Z #15 2.003 53150K .......... .......... .......... .......... .......... 41% 8.77M 1s +2023-11-07T14:50:52Z #15 2.009 53200K .......... .......... .......... .......... .......... 41% 35.4M 1s +2023-11-07T14:50:52Z #15 2.010 53250K .......... .......... .......... .......... .......... 41% 25.3M 1s +2023-11-07T14:50:52Z #15 2.016 53300K .......... .......... .......... .......... .......... 41% 162M 1s +2023-11-07T14:50:52Z #15 2.016 53350K .......... .......... .......... .......... .......... 41% 164M 1s +2023-11-07T14:50:52Z #15 2.016 53400K .......... .......... .......... .......... .......... 41% 193M 1s +2023-11-07T14:50:52Z #15 2.016 53450K .......... .......... .......... .......... .......... 41% 152M 1s +2023-11-07T14:50:52Z #15 2.016 53500K .......... .......... .......... .......... .......... 41% 181M 1s +2023-11-07T14:50:52Z #15 2.016 53550K .......... .......... .......... .......... .......... 41% 162M 1s +2023-11-07T14:50:52Z #15 2.016 53600K .......... .......... .......... .......... .......... 41% 164M 1s +2023-11-07T14:50:52Z #15 2.016 53650K .......... .......... .......... .......... .......... 41% 170M 1s +2023-11-07T14:50:52Z #15 2.016 53700K .......... .......... .......... .......... .......... 41% 185M 1s +2023-11-07T14:50:52Z #15 2.016 53750K .......... .......... .......... .......... .......... 41% 145M 1s +2023-11-07T14:50:52Z #15 2.016 53800K .......... .......... .......... .......... .......... 41% 123M 1s +2023-11-07T14:50:52Z #15 2.016 53850K .......... .......... .......... .......... .......... 41% 167M 1s +2023-11-07T14:50:52Z #15 2.016 53900K .......... .......... .......... .......... .......... 41% 159M 1s +2023-11-07T14:50:52Z #15 2.016 53950K .......... .......... .......... .......... .......... 41% 16.1M 1s +2023-11-07T14:50:52Z #15 2.022 54000K .......... .......... .......... .......... .......... 41% 12.1M 1s +2023-11-07T14:50:52Z #15 2.023 54050K .......... .......... .......... .......... .......... 41% 8.72M 1s +2023-11-07T14:50:52Z #15 2.029 54100K .......... .......... .......... .......... .......... 41% 125M 1s +2023-11-07T14:50:52Z #15 2.029 54150K .......... .......... .......... .......... .......... 41% 122M 1s +2023-11-07T14:50:52Z #15 2.030 54200K .......... .......... .......... .......... .......... 41% 113M 1s +2023-11-07T14:50:52Z #15 2.030 54250K .......... .......... .......... .......... .......... 41% 126M 1s +2023-11-07T14:50:52Z #15 2.030 54300K .......... .......... .......... .......... .......... 41% 136M 1s +2023-11-07T14:50:52Z #15 2.031 54350K .......... .......... .......... .......... .......... 41% 127M 1s +2023-11-07T14:50:52Z #15 2.031 54400K .......... .......... .......... .......... .......... 42% 125M 1s +2023-11-07T14:50:52Z #15 2.032 54450K .......... .......... .......... .......... .......... 42% 110M 1s +2023-11-07T14:50:52Z #15 2.032 54500K .......... .......... .......... .......... .......... 42% 132M 1s +2023-11-07T14:50:52Z #15 2.033 54550K .......... .......... .......... .......... .......... 42% 134M 1s +2023-11-07T14:50:52Z #15 2.033 54600K .......... .......... .......... .......... .......... 42% 146M 1s +2023-11-07T14:50:52Z #15 2.033 54650K .......... .......... .......... .......... .......... 42% 57.0M 1s +2023-11-07T14:50:52Z #15 2.034 54700K .......... .......... .......... .......... .......... 42% 145M 1s +2023-11-07T14:50:52Z #15 2.034 54750K .......... .......... .......... .......... .......... 42% 90.5M 1s +2023-11-07T14:50:52Z #15 2.035 54800K .......... .......... .......... .......... .......... 42% 111M 1s +2023-11-07T14:50:52Z #15 2.035 54850K .......... .......... .......... .......... .......... 42% 131M 1s +2023-11-07T14:50:52Z #15 2.035 54900K .......... .......... .......... .......... .......... 42% 120M 1s +2023-11-07T14:50:52Z #15 2.036 54950K .......... .......... .......... .......... .......... 42% 137M 1s +2023-11-07T14:50:52Z #15 2.036 55000K .......... .......... .......... .......... .......... 42% 102M 1s +2023-11-07T14:50:52Z #15 2.037 55050K .......... .......... .......... .......... .......... 42% 135M 1s +2023-11-07T14:50:52Z #15 2.037 55100K .......... .......... .......... .......... .......... 42% 137M 1s +2023-11-07T14:50:52Z #15 2.038 55150K .......... .......... .......... .......... .......... 42% 108M 1s +2023-11-07T14:50:52Z #15 2.038 55200K .......... .......... .......... .......... .......... 42% 135M 1s +2023-11-07T14:50:52Z #15 2.039 55250K .......... .......... .......... .......... .......... 42% 135M 1s +2023-11-07T14:50:52Z #15 2.039 55300K .......... .......... .......... .......... .......... 42% 158M 1s +2023-11-07T14:50:52Z #15 2.039 55350K .......... .......... .......... .......... .......... 42% 90.9M 1s +2023-11-07T14:50:52Z #15 2.040 55400K .......... .......... .......... .......... .......... 42% 75.2M 1s +2023-11-07T14:50:52Z #15 2.040 55450K .......... .......... .......... .......... .......... 42% 5.76M 1s +2023-11-07T14:50:52Z #15 2.049 55500K .......... .......... .......... .......... .......... 42% 126M 1s +2023-11-07T14:50:52Z #15 2.049 55550K .......... .......... .......... .......... .......... 42% 128M 1s +2023-11-07T14:50:52Z #15 2.050 55600K .......... .......... .......... .......... .......... 42% 112M 1s +2023-11-07T14:50:52Z #15 2.050 55650K .......... .......... .......... .......... .......... 42% 146M 1s +2023-11-07T14:50:52Z #15 2.050 55700K .......... .......... .......... .......... .......... 43% 127M 1s +2023-11-07T14:50:52Z #15 2.051 55750K .......... .......... .......... .......... .......... 43% 133M 1s +2023-11-07T14:50:52Z #15 2.051 55800K .......... .......... .......... .......... .......... 43% 144M 1s +2023-11-07T14:50:52Z #15 2.051 55850K .......... .......... .......... .......... .......... 43% 130M 1s +2023-11-07T14:50:52Z #15 2.052 55900K .......... .......... .......... .......... .......... 43% 137M 1s +2023-11-07T14:50:52Z #15 2.052 55950K .......... .......... .......... .......... .......... 43% 121M 1s +2023-11-07T14:50:52Z #15 2.053 56000K .......... .......... .......... .......... .......... 43% 134M 1s +2023-11-07T14:50:52Z #15 2.053 56050K .......... .......... .......... .......... .......... 43% 129M 1s +2023-11-07T14:50:52Z #15 2.053 56100K .......... .......... .......... .......... .......... 43% 52.9M 1s +2023-11-07T14:50:52Z #15 2.055 56150K .......... .......... .......... .......... .......... 43% 144M 1s +2023-11-07T14:50:52Z #15 2.055 56200K .......... .......... .......... .......... .......... 43% 80.6M 1s +2023-11-07T14:50:52Z #15 2.056 56250K .......... .......... .......... .......... .......... 43% 107M 1s +2023-11-07T14:50:52Z #15 2.056 56300K .......... .......... .......... .......... .......... 43% 130M 1s +2023-11-07T14:50:52Z #15 2.056 56350K .......... .......... .......... .......... .......... 43% 114M 1s +2023-11-07T14:50:52Z #15 2.057 56400K .......... .......... .......... .......... .......... 43% 132M 1s +2023-11-07T14:50:52Z #15 2.057 56450K .......... .......... .......... .......... .......... 43% 140M 1s +2023-11-07T14:50:52Z #15 2.057 56500K .......... .......... .......... .......... .......... 43% 131M 1s +2023-11-07T14:50:52Z #15 2.057 56550K .......... .......... .......... .......... .......... 43% 147M 1s +2023-11-07T14:50:52Z #15 2.058 56600K .......... .......... .......... .......... .......... 43% 123M 1s +2023-11-07T14:50:52Z #15 2.058 56650K .......... .......... .......... .......... .......... 43% 128M 1s +2023-11-07T14:50:52Z #15 2.059 56700K .......... .......... .......... .......... .......... 43% 22.1M 1s +2023-11-07T14:50:52Z #15 2.061 56750K .......... .......... .......... .......... .......... 43% 134M 1s +2023-11-07T14:50:52Z #15 2.061 56800K .......... .......... .......... .......... .......... 43% 133M 1s +2023-11-07T14:50:52Z #15 2.062 56850K .......... .......... .......... .......... .......... 43% 113M 1s +2023-11-07T14:50:52Z #15 2.062 56900K .......... .......... .......... .......... .......... 43% 147M 1s +2023-11-07T14:50:52Z #15 2.063 56950K .......... .......... .......... .......... .......... 43% 123M 1s +2023-11-07T14:50:52Z #15 2.063 57000K .......... .......... .......... .......... .......... 44% 136M 1s +2023-11-07T14:50:52Z #15 2.063 57050K .......... .......... .......... .......... .......... 44% 144M 1s +2023-11-07T14:50:52Z #15 2.063 57100K .......... .......... .......... .......... .......... 44% 125M 1s +2023-11-07T14:50:52Z #15 2.064 57150K .......... .......... .......... .......... .......... 44% 128M 1s +2023-11-07T14:50:52Z #15 2.064 57200K .......... .......... .......... .......... .......... 44% 119M 1s +2023-11-07T14:50:52Z #15 2.064 57250K .......... .......... .......... .......... .......... 44% 134M 1s +2023-11-07T14:50:52Z #15 2.065 57300K .......... .......... .......... .......... .......... 44% 148M 1s +2023-11-07T14:50:52Z #15 2.066 57350K .......... .......... .......... .......... .......... 44% 57.9M 1s +2023-11-07T14:50:52Z #15 2.066 57400K .......... .......... .......... .......... .......... 44% 129M 1s +2023-11-07T14:50:52Z #15 2.066 57450K .......... .......... .......... .......... .......... 44% 82.1M 1s +2023-11-07T14:50:52Z #15 2.067 57500K .......... .......... .......... .......... .......... 44% 101M 1s +2023-11-07T14:50:52Z #15 2.067 57550K .......... .......... .......... .......... .......... 44% 140M 1s +2023-11-07T14:50:52Z #15 2.068 57600K .......... .......... .......... .......... .......... 44% 131M 1s +2023-11-07T14:50:52Z #15 2.068 57650K .......... .......... .......... .......... .......... 44% 121M 1s +2023-11-07T14:50:52Z #15 2.069 57700K .......... .......... .......... .......... .......... 44% 117M 1s +2023-11-07T14:50:53Z #15 2.069 57750K .......... .......... .......... .......... .......... 44% 151M 1s +2023-11-07T14:50:53Z #15 2.069 57800K .......... .......... .......... .......... .......... 44% 140M 1s +2023-11-07T14:50:53Z #15 2.070 57850K .......... .......... .......... .......... .......... 44% 143M 1s +2023-11-07T14:50:53Z #15 2.070 57900K .......... .......... .......... .......... .......... 44% 111M 1s +2023-11-07T14:50:53Z #15 2.070 57950K .......... .......... .......... .......... .......... 44% 131M 1s +2023-11-07T14:50:53Z #15 2.071 58000K .......... .......... .......... .......... .......... 44% 138M 1s +2023-11-07T14:50:53Z #15 2.071 58050K .......... .......... .......... .......... .......... 44% 111M 1s +2023-11-07T14:50:53Z #15 2.072 58100K .......... .......... .......... .......... .......... 44% 10.2M 1s +2023-11-07T14:50:53Z #15 2.076 58150K .......... .......... .......... .......... .......... 44% 102M 1s +2023-11-07T14:50:53Z #15 2.077 58200K .......... .......... .......... .......... .......... 44% 125M 1s +2023-11-07T14:50:53Z #15 2.077 58250K .......... .......... .......... .......... .......... 44% 129M 1s +2023-11-07T14:50:53Z #15 2.078 58300K .......... .......... .......... .......... .......... 45% 143M 1s +2023-11-07T14:50:53Z #15 2.078 58350K .......... .......... .......... .......... .......... 45% 168M 1s +2023-11-07T14:50:53Z #15 2.078 58400K .......... .......... .......... .......... .......... 45% 117M 1s +2023-11-07T14:50:53Z #15 2.079 58450K .......... .......... .......... .......... .......... 45% 132M 1s +2023-11-07T14:50:53Z #15 2.079 58500K .......... .......... .......... .......... .......... 45% 135M 1s +2023-11-07T14:50:53Z #15 2.079 58550K .......... .......... .......... .......... .......... 45% 142M 1s +2023-11-07T14:50:53Z #15 2.080 58600K .......... .......... .......... .......... .......... 45% 117M 1s +2023-11-07T14:50:53Z #15 2.081 58650K .......... .......... .......... .......... .......... 45% 10.8M 1s +2023-11-07T14:50:53Z #15 2.085 58700K .......... .......... .......... .......... .......... 45% 135M 1s +2023-11-07T14:50:53Z #15 2.085 58750K .......... .......... .......... .......... .......... 45% 133M 1s +2023-11-07T14:50:53Z #15 2.085 58800K .......... .......... .......... .......... .......... 45% 119M 1s +2023-11-07T14:50:53Z #15 2.086 58850K .......... .......... .......... .......... .......... 45% 174M 1s +2023-11-07T14:50:53Z #15 2.086 58900K .......... .......... .......... .......... .......... 45% 148M 1s +2023-11-07T14:50:53Z #15 2.086 58950K .......... .......... .......... .......... .......... 45% 139M 1s +2023-11-07T14:50:53Z #15 2.087 59000K .......... .......... .......... .......... .......... 45% 102M 1s +2023-11-07T14:50:53Z #15 2.087 59050K .......... .......... .......... .......... .......... 45% 129M 1s +2023-11-07T14:50:53Z #15 2.088 59100K .......... .......... .......... .......... .......... 45% 141M 1s +2023-11-07T14:50:53Z #15 2.088 59150K .......... .......... .......... .......... .......... 45% 85.4M 1s +2023-11-07T14:50:53Z #15 2.089 59200K .......... .......... .......... .......... .......... 45% 66.9M 1s +2023-11-07T14:50:53Z #15 2.090 59250K .......... .......... .......... .......... .......... 45% 130M 1s +2023-11-07T14:50:53Z #15 2.090 59300K .......... .......... .......... .......... .......... 45% 66.9M 1s +2023-11-07T14:50:53Z #15 2.091 59350K .......... .......... .......... .......... .......... 45% 65.1M 1s +2023-11-07T14:50:53Z #15 2.091 59400K .......... .......... .......... .......... .......... 45% 106M 1s +2023-11-07T14:50:53Z #15 2.092 59450K .......... .......... .......... .......... .......... 45% 135M 1s +2023-11-07T14:50:53Z #15 2.092 59500K .......... .......... .......... .......... .......... 45% 120M 1s +2023-11-07T14:50:53Z #15 2.092 59550K .......... .......... .......... .......... .......... 45% 126M 1s +2023-11-07T14:50:53Z #15 2.093 59600K .......... .......... .......... .......... .......... 46% 119M 1s +2023-11-07T14:50:53Z #15 2.093 59650K .......... .......... .......... .......... .......... 46% 81.3M 1s +2023-11-07T14:50:53Z #15 2.094 59700K .......... .......... .......... .......... .......... 46% 59.8M 1s +2023-11-07T14:50:53Z #15 2.095 59750K .......... .......... .......... .......... .......... 46% 130M 1s +2023-11-07T14:50:53Z #15 2.095 59800K .......... .......... .......... .......... .......... 46% 118M 1s +2023-11-07T14:50:53Z #15 2.096 59850K .......... .......... .......... .......... .......... 46% 130M 1s +2023-11-07T14:50:53Z #15 2.096 59900K .......... .......... .......... .......... .......... 46% 113M 1s +2023-11-07T14:50:53Z #15 2.096 59950K .......... .......... .......... .......... .......... 46% 141M 1s +2023-11-07T14:50:53Z #15 2.097 60000K .......... .......... .......... .......... .......... 46% 91.5M 1s +2023-11-07T14:50:53Z #15 2.097 60050K .......... .......... .......... .......... .......... 46% 73.3M 1s +2023-11-07T14:50:53Z #15 2.098 60100K .......... .......... .......... .......... .......... 46% 73.1M 1s +2023-11-07T14:50:53Z #15 2.099 60150K .......... .......... .......... .......... .......... 46% 103M 1s +2023-11-07T14:50:53Z #15 2.099 60200K .......... .......... .......... .......... .......... 46% 121M 1s +2023-11-07T14:50:53Z #15 2.100 60250K .......... .......... .......... .......... .......... 46% 93.3M 1s +2023-11-07T14:50:53Z #15 2.100 60300K .......... .......... .......... .......... .......... 46% 126M 1s +2023-11-07T14:50:53Z #15 2.101 60350K .......... .......... .......... .......... .......... 46% 5.76M 1s +2023-11-07T14:50:53Z #15 2.117 60400K .......... .......... .......... .......... .......... 46% 162M 1s +2023-11-07T14:50:53Z #15 2.117 60450K .......... .......... .......... .......... .......... 46% 175M 1s +2023-11-07T14:50:53Z #15 2.117 60500K .......... .......... .......... .......... .......... 46% 156M 1s +2023-11-07T14:50:53Z #15 2.117 60550K .......... .......... .......... .......... .......... 46% 117M 1s +2023-11-07T14:50:53Z #15 2.117 60600K .......... .......... .......... .......... .......... 46% 162M 1s +2023-11-07T14:50:53Z #15 2.117 60650K .......... .......... .......... .......... .......... 46% 150M 1s +2023-11-07T14:50:53Z #15 2.117 60700K .......... .......... .......... .......... .......... 46% 78.7M 1s +2023-11-07T14:50:53Z #15 2.117 60750K .......... .......... .......... .......... .......... 46% 86.7M 1s +2023-11-07T14:50:53Z #15 2.117 60800K .......... .......... .......... .......... .......... 46% 163M 1s +2023-11-07T14:50:53Z #15 2.117 60850K .......... .......... .......... .......... .......... 47% 67.8M 1s +2023-11-07T14:50:53Z #15 2.117 60900K .......... .......... .......... .......... .......... 47% 101M 1s +2023-11-07T14:50:53Z #15 2.117 60950K .......... .......... .......... .......... .......... 47% 119M 1s +2023-11-07T14:50:53Z #15 2.117 61000K .......... .......... .......... .......... .......... 47% 150M 1s +2023-11-07T14:50:53Z #15 2.117 61050K .......... .......... .......... .......... .......... 47% 161M 1s +2023-11-07T14:50:53Z #15 2.117 61100K .......... .......... .......... .......... .......... 47% 124M 1s +2023-11-07T14:50:53Z #15 2.117 61150K .......... .......... .......... .......... .......... 47% 149M 1s +2023-11-07T14:50:53Z #15 2.117 61200K .......... .......... .......... .......... .......... 47% 76.4M 1s +2023-11-07T14:50:53Z #15 2.117 61250K .......... .......... .......... .......... .......... 47% 80.2M 1s +2023-11-07T14:50:53Z #15 2.117 61300K .......... .......... .......... .......... .......... 47% 149M 1s +2023-11-07T14:50:53Z #15 2.117 61350K .......... .......... .......... .......... .......... 47% 70.8M 1s +2023-11-07T14:50:53Z #15 2.117 61400K .......... .......... .......... .......... .......... 47% 141M 1s +2023-11-07T14:50:53Z #15 2.118 61450K .......... .......... .......... .......... .......... 47% 89.7M 1s +2023-11-07T14:50:53Z #15 2.118 61500K .......... .......... .......... .......... .......... 47% 124M 1s +2023-11-07T14:50:53Z #15 2.119 61550K .......... .......... .......... .......... .......... 47% 118M 1s +2023-11-07T14:50:53Z #15 2.119 61600K .......... .......... .......... .......... .......... 47% 67.8M 1s +2023-11-07T14:50:53Z #15 2.120 61650K .......... .......... .......... .......... .......... 47% 101M 1s +2023-11-07T14:50:53Z #15 2.120 61700K .......... .......... .......... .......... .......... 47% 130M 1s +2023-11-07T14:50:53Z #15 2.121 61750K .......... .......... .......... .......... .......... 47% 55.9M 1s +2023-11-07T14:50:53Z #15 2.122 61800K .......... .......... .......... .......... .......... 47% 134M 1s +2023-11-07T14:50:53Z #15 2.122 61850K .......... .......... .......... .......... .......... 47% 99.2M 1s +2023-11-07T14:50:53Z #15 2.123 61900K .......... .......... .......... .......... .......... 47% 155M 1s +2023-11-07T14:50:53Z #15 2.123 61950K .......... .......... .......... .......... .......... 47% 112M 1s +2023-11-07T14:50:53Z #15 2.123 62000K .......... .......... .......... .......... .......... 47% 70.1M 1s +2023-11-07T14:50:53Z #15 2.124 62050K .......... .......... .......... .......... .......... 47% 124M 1s +2023-11-07T14:50:53Z #15 2.124 62100K .......... .......... .......... .......... .......... 47% 83.0M 1s +2023-11-07T14:50:53Z #15 2.125 62150K .......... .......... .......... .......... .......... 48% 91.1M 1s +2023-11-07T14:50:53Z #15 2.125 62200K .......... .......... .......... .......... .......... 48% 119M 1s +2023-11-07T14:50:53Z #15 2.126 62250K .......... .......... .......... .......... .......... 48% 112M 1s +2023-11-07T14:50:53Z #15 2.126 62300K .......... .......... .......... .......... .......... 48% 164M 1s +2023-11-07T14:50:53Z #15 2.126 62350K .......... .......... .......... .......... .......... 48% 94.2M 1s +2023-11-07T14:50:53Z #15 2.127 62400K .......... .......... .......... .......... .......... 48% 82.1M 1s +2023-11-07T14:50:53Z #15 2.128 62450K .......... .......... .......... .......... .......... 48% 96.0M 1s +2023-11-07T14:50:53Z #15 2.128 62500K .......... .......... .......... .......... .......... 48% 75.9M 1s +2023-11-07T14:50:53Z #15 2.129 62550K .......... .......... .......... .......... .......... 48% 155M 1s +2023-11-07T14:50:53Z #15 2.129 62600K .......... .......... .......... .......... .......... 48% 207M 1s +2023-11-07T14:50:53Z #15 2.129 62650K .......... .......... .......... .......... .......... 48% 113M 1s +2023-11-07T14:50:53Z #15 2.130 62700K .......... .......... .......... .......... .......... 48% 108M 1s +2023-11-07T14:50:53Z #15 2.131 62750K .......... .......... .......... .......... .......... 48% 145M 1s +2023-11-07T14:50:53Z #15 2.131 62800K .......... .......... .......... .......... .......... 48% 78.5M 1s +2023-11-07T14:50:53Z #15 2.131 62850K .......... .......... .......... .......... .......... 48% 68.1M 1s +2023-11-07T14:50:53Z #15 2.133 62900K .......... .......... .......... .......... .......... 48% 73.0M 1s +2023-11-07T14:50:53Z #15 2.133 62950K .......... .......... .......... .......... .......... 48% 150M 1s +2023-11-07T14:50:53Z #15 2.133 63000K .......... .......... .......... .......... .......... 48% 114M 1s +2023-11-07T14:50:53Z #15 2.134 63050K .......... .......... .......... .......... .......... 48% 134M 1s +2023-11-07T14:50:53Z #15 2.134 63100K .......... .......... .......... .......... .......... 48% 126M 1s +2023-11-07T14:50:53Z #15 2.134 63150K .......... .......... .......... .......... .......... 48% 118M 1s +2023-11-07T14:50:53Z #15 2.136 63200K .......... .......... .......... .......... .......... 48% 66.3M 1s +2023-11-07T14:50:53Z #15 2.136 63250K .......... .......... .......... .......... .......... 48% 85.0M 1s +2023-11-07T14:50:53Z #15 2.136 63300K .......... .......... .......... .......... .......... 48% 143M 1s +2023-11-07T14:50:53Z #15 2.136 63350K .......... .......... .......... .......... .......... 48% 57.0M 1s +2023-11-07T14:50:53Z #15 2.137 63400K .......... .......... .......... .......... .......... 48% 52.3M 1s +2023-11-07T14:50:53Z #15 2.140 63450K .......... .......... .......... .......... .......... 49% 143M 1s +2023-11-07T14:50:53Z #15 2.140 63500K .......... .......... .......... .......... .......... 49% 110M 1s +2023-11-07T14:50:53Z #15 2.140 63550K .......... .......... .......... .......... .......... 49% 78.2M 1s +2023-11-07T14:50:53Z #15 2.140 63600K .......... .......... .......... .......... .......... 49% 143M 1s +2023-11-07T14:50:53Z #15 2.140 63650K .......... .......... .......... .......... .......... 49% 138M 1s +2023-11-07T14:50:53Z #15 2.140 63700K .......... .......... .......... .......... .......... 49% 146M 1s +2023-11-07T14:50:53Z #15 2.140 63750K .......... .......... .......... .......... .......... 49% 41.0M 1s +2023-11-07T14:50:53Z #15 2.144 63800K .......... .......... .......... .......... .......... 49% 143M 1s +2023-11-07T14:50:53Z #15 2.144 63850K .......... .......... .......... .......... .......... 49% 163M 1s +2023-11-07T14:50:53Z #15 2.144 63900K .......... .......... .......... .......... .......... 49% 71.7M 1s +2023-11-07T14:50:53Z #15 2.144 63950K .......... .......... .......... .......... .......... 49% 85.8M 1s +2023-11-07T14:50:53Z #15 2.144 64000K .......... .......... .......... .......... .......... 49% 89.7M 1s +2023-11-07T14:50:53Z #15 2.144 64050K .......... .......... .......... .......... .......... 49% 125M 1s +2023-11-07T14:50:53Z #15 2.144 64100K .......... .......... .......... .......... .......... 49% 43.0M 1s +2023-11-07T14:50:53Z #15 2.146 64150K .......... .......... .......... .......... .......... 49% 137M 1s +2023-11-07T14:50:53Z #15 2.146 64200K .......... .......... .......... .......... .......... 49% 30.3M 1s +2023-11-07T14:50:53Z #15 2.148 64250K .......... .......... .......... .......... .......... 49% 160M 1s +2023-11-07T14:50:53Z #15 2.148 64300K .......... .......... .......... .......... .......... 49% 155M 1s +2023-11-07T14:50:53Z #15 2.148 64350K .......... .......... .......... .......... .......... 49% 84.0M 1s +2023-11-07T14:50:53Z #15 2.149 64400K .......... .......... .......... .......... .......... 49% 47.5M 1s +2023-11-07T14:50:53Z #15 2.152 64450K .......... .......... .......... .......... .......... 49% 126M 1s +2023-11-07T14:50:53Z #15 2.152 64500K .......... .......... .......... .......... .......... 49% 157M 1s +2023-11-07T14:50:53Z #15 2.152 64550K .......... .......... .......... .......... .......... 49% 49.7M 1s +2023-11-07T14:50:53Z #15 2.152 64600K .......... .......... .......... .......... .......... 49% 171M 1s +2023-11-07T14:50:53Z #15 2.152 64650K .......... .......... .......... .......... .......... 49% 88.9M 1s +2023-11-07T14:50:53Z #15 2.152 64700K .......... .......... .......... .......... .......... 49% 42.7M 1s +2023-11-07T14:50:53Z #15 2.154 64750K .......... .......... .......... .......... .......... 50% 88.7M 1s +2023-11-07T14:50:53Z #15 2.156 64800K .......... .......... .......... .......... .......... 50% 98.8M 1s +2023-11-07T14:50:53Z #15 2.156 64850K .......... .......... .......... .......... .......... 50% 157M 1s +2023-11-07T14:50:53Z #15 2.156 64900K .......... .......... .......... .......... .......... 50% 127M 1s +2023-11-07T14:50:53Z #15 2.156 64950K .......... .......... .......... .......... .......... 50% 144M 1s +2023-11-07T14:50:53Z #15 2.156 65000K .......... .......... .......... .......... .......... 50% 114M 1s +2023-11-07T14:50:53Z #15 2.156 65050K .......... .......... .......... .......... .......... 50% 66.0M 1s +2023-11-07T14:50:53Z #15 2.157 65100K .......... .......... .......... .......... .......... 50% 43.4M 1s +2023-11-07T14:50:53Z #15 2.160 65150K .......... .......... .......... .......... .......... 50% 87.9M 1s +2023-11-07T14:50:53Z #15 2.160 65200K .......... .......... .......... .......... .......... 50% 161M 1s +2023-11-07T14:50:53Z #15 2.160 65250K .......... .......... .......... .......... .......... 50% 164M 1s +2023-11-07T14:50:53Z #15 2.160 65300K .......... .......... .......... .......... .......... 50% 99.5M 1s +2023-11-07T14:50:53Z #15 2.160 65350K .......... .......... .......... .......... .......... 50% 156M 1s +2023-11-07T14:50:53Z #15 2.160 65400K .......... .......... .......... .......... .......... 50% 157M 1s +2023-11-07T14:50:53Z #15 2.160 65450K .......... .......... .......... .......... .......... 50% 142M 1s +2023-11-07T14:50:53Z #15 2.160 65500K .......... .......... .......... .......... .......... 50% 50.1M 1s +2023-11-07T14:50:53Z #15 2.164 65550K .......... .......... .......... .......... .......... 50% 80.1M 1s +2023-11-07T14:50:53Z #15 2.164 65600K .......... .......... .......... .......... .......... 50% 91.5M 1s +2023-11-07T14:50:53Z #15 2.164 65650K .......... .......... .......... .......... .......... 50% 109M 1s +2023-11-07T14:50:53Z #15 2.164 65700K .......... .......... .......... .......... .......... 50% 82.1M 1s +2023-11-07T14:50:53Z #15 2.164 65750K .......... .......... .......... .......... .......... 50% 109M 1s +2023-11-07T14:50:53Z #15 2.164 65800K .......... .......... .......... .......... .......... 50% 133M 1s +2023-11-07T14:50:53Z #15 2.164 65850K .......... .......... .......... .......... .......... 50% 61.8M 1s +2023-11-07T14:50:53Z #15 2.168 65900K .......... .......... .......... .......... .......... 50% 133M 1s +2023-11-07T14:50:53Z #15 2.168 65950K .......... .......... .......... .......... .......... 50% 81.0M 1s +2023-11-07T14:50:53Z #15 2.168 66000K .......... .......... .......... .......... .......... 50% 155M 1s +2023-11-07T14:50:53Z #15 2.168 66050K .......... .......... .......... .......... .......... 51% 121M 1s +2023-11-07T14:50:53Z #15 2.168 66100K .......... .......... .......... .......... .......... 51% 70.8M 1s +2023-11-07T14:50:53Z #15 2.168 66150K .......... .......... .......... .......... .......... 51% 117M 1s +2023-11-07T14:50:53Z #15 2.168 66200K .......... .......... .......... .......... .......... 51% 51.0M 1s +2023-11-07T14:50:53Z #15 2.172 66250K .......... .......... .......... .......... .......... 51% 87.3M 1s +2023-11-07T14:50:53Z #15 2.172 66300K .......... .......... .......... .......... .......... 51% 75.1M 1s +2023-11-07T14:50:53Z #15 2.172 66350K .......... .......... .......... .......... .......... 51% 138M 1s +2023-11-07T14:50:53Z #15 2.172 66400K .......... .......... .......... .......... .......... 51% 144M 1s +2023-11-07T14:50:53Z #15 2.172 66450K .......... .......... .......... .......... .......... 51% 138M 1s +2023-11-07T14:50:53Z #15 2.172 66500K .......... .......... .......... .......... .......... 51% 74.9M 1s +2023-11-07T14:50:53Z #15 2.172 66550K .......... .......... .......... .......... .......... 51% 93.1M 1s +2023-11-07T14:50:53Z #15 2.173 66600K .......... .......... .......... .......... .......... 51% 62.1M 1s +2023-11-07T14:50:53Z #15 2.173 66650K .......... .......... .......... .......... .......... 51% 115M 1s +2023-11-07T14:50:53Z #15 2.173 66700K .......... .......... .......... .......... .......... 51% 105M 1s +2023-11-07T14:50:53Z #15 2.174 66750K .......... .......... .......... .......... .......... 51% 137M 1s +2023-11-07T14:50:53Z #15 2.174 66800K .......... .......... .......... .......... .......... 51% 107M 1s +2023-11-07T14:50:53Z #15 2.175 66850K .......... .......... .......... .......... .......... 51% 73.3M 1s +2023-11-07T14:50:53Z #15 2.176 66900K .......... .......... .......... .......... .......... 51% 107M 1s +2023-11-07T14:50:53Z #15 2.176 66950K .......... .......... .......... .......... .......... 51% 129M 1s +2023-11-07T14:50:53Z #15 2.176 67000K .......... .......... .......... .......... .......... 51% 73.4M 1s +2023-11-07T14:50:53Z #15 2.177 67050K .......... .......... .......... .......... .......... 51% 133M 1s +2023-11-07T14:50:53Z #15 2.177 67100K .......... .......... .......... .......... .......... 51% 171M 1s +2023-11-07T14:50:53Z #15 2.178 67150K .......... .......... .......... .......... .......... 51% 75.6M 1s +2023-11-07T14:50:53Z #15 2.179 67200K .......... .......... .......... .......... .......... 51% 117M 1s +2023-11-07T14:50:53Z #15 2.179 67250K .......... .......... .......... .......... .......... 51% 153M 1s +2023-11-07T14:50:53Z #15 2.179 67300K .......... .......... .......... .......... .......... 51% 78.8M 1s +2023-11-07T14:50:53Z #15 2.180 67350K .......... .......... .......... .......... .......... 52% 98.6M 1s +2023-11-07T14:50:53Z #15 2.180 67400K .......... .......... .......... .......... .......... 52% 184M 1s +2023-11-07T14:50:53Z #15 2.181 67450K .......... .......... .......... .......... .......... 52% 71.7M 1s +2023-11-07T14:50:53Z #15 2.181 67500K .......... .......... .......... .......... .......... 52% 122M 1s +2023-11-07T14:50:53Z #15 2.182 67550K .......... .......... .......... .......... .......... 52% 119M 1s +2023-11-07T14:50:53Z #15 2.182 67600K .......... .......... .......... .......... .......... 52% 101M 1s +2023-11-07T14:50:53Z #15 2.182 67650K .......... .......... .......... .......... .......... 52% 130M 1s +2023-11-07T14:50:53Z #15 2.185 67700K .......... .......... .......... .......... .......... 52% 70.2M 1s +2023-11-07T14:50:53Z #15 2.185 67750K .......... .......... .......... .......... .......... 52% 130M 1s +2023-11-07T14:50:53Z #15 2.185 67800K .......... .......... .......... .......... .......... 52% 171M 1s +2023-11-07T14:50:53Z #15 2.185 67850K .......... .......... .......... .......... .......... 52% 80.2M 1s +2023-11-07T14:50:53Z #15 2.185 67900K .......... .......... .......... .......... .......... 52% 107M 1s +2023-11-07T14:50:53Z #15 2.185 67950K .......... .......... .......... .......... .......... 52% 136M 1s +2023-11-07T14:50:53Z #15 2.185 68000K .......... .......... .......... .......... .......... 52% 62.2M 1s +2023-11-07T14:50:53Z #15 2.186 68050K .......... .......... .......... .......... .......... 52% 127M 1s +2023-11-07T14:50:53Z #15 2.187 68100K .......... .......... .......... .......... .......... 52% 80.7M 1s +2023-11-07T14:50:53Z #15 2.187 68150K .......... .......... .......... .......... .......... 52% 98.2M 1s +2023-11-07T14:50:53Z #15 2.188 68200K .......... .......... .......... .......... .......... 52% 129M 1s +2023-11-07T14:50:53Z #15 2.188 68250K .......... .......... .......... .......... .......... 52% 57.4M 1s +2023-11-07T14:50:53Z #15 2.189 68300K .......... .......... .......... .......... .......... 52% 83.0M 1s +2023-11-07T14:50:53Z #15 2.190 68350K .......... .......... .......... .......... .......... 52% 90.7M 1s +2023-11-07T14:50:53Z #15 2.193 68400K .......... .......... .......... .......... .......... 52% 119M 1s +2023-11-07T14:50:53Z #15 2.193 68450K .......... .......... .......... .......... .......... 52% 150M 1s +2023-11-07T14:50:53Z #15 2.193 68500K .......... .......... .......... .......... .......... 52% 132M 1s +2023-11-07T14:50:53Z #15 2.193 68550K .......... .......... .......... .......... .......... 52% 178M 1s +2023-11-07T14:50:53Z #15 2.193 68600K .......... .......... .......... .......... .......... 52% 83.6M 1s +2023-11-07T14:50:53Z #15 2.193 68650K .......... .......... .......... .......... .......... 53% 126M 1s +2023-11-07T14:50:53Z #15 2.193 68700K .......... .......... .......... .......... .......... 53% 80.5M 1s +2023-11-07T14:50:53Z #15 2.193 68750K .......... .......... .......... .......... .......... 53% 70.5M 1s +2023-11-07T14:50:53Z #15 2.194 68800K .......... .......... .......... .......... .......... 53% 105M 1s +2023-11-07T14:50:53Z #15 2.194 68850K .......... .......... .......... .......... .......... 53% 119M 1s +2023-11-07T14:50:53Z #15 2.195 68900K .......... .......... .......... .......... .......... 53% 100M 1s +2023-11-07T14:50:53Z #15 2.195 68950K .......... .......... .......... .......... .......... 53% 133M 1s +2023-11-07T14:50:53Z #15 2.196 69000K .......... .......... .......... .......... .......... 53% 129M 1s +2023-11-07T14:50:53Z #15 2.196 69050K .......... .......... .......... .......... .......... 53% 65.1M 1s +2023-11-07T14:50:53Z #15 2.200 69100K .......... .......... .......... .......... .......... 53% 121M 1s +2023-11-07T14:50:53Z #15 2.200 69150K .......... .......... .......... .......... .......... 53% 156M 1s +2023-11-07T14:50:53Z #15 2.200 69200K .......... .......... .......... .......... .......... 53% 72.4M 1s +2023-11-07T14:50:53Z #15 2.200 69250K .......... .......... .......... .......... .......... 53% 178M 1s +2023-11-07T14:50:53Z #15 2.200 69300K .......... .......... .......... .......... .......... 53% 149M 1s +2023-11-07T14:50:53Z #15 2.200 69350K .......... .......... .......... .......... .......... 53% 101M 1s +2023-11-07T14:50:53Z #15 2.200 69400K .......... .......... .......... .......... .......... 53% 101M 1s +2023-11-07T14:50:53Z #15 2.200 69450K .......... .......... .......... .......... .......... 53% 113M 1s +2023-11-07T14:50:53Z #15 2.200 69500K .......... .......... .......... .......... .......... 53% 30.1M 1s +2023-11-07T14:50:53Z #15 2.202 69550K .......... .......... .......... .......... .......... 53% 20.8M 1s +2023-11-07T14:50:53Z #15 2.209 69600K .......... .......... .......... .......... .......... 53% 122M 1s +2023-11-07T14:50:53Z #15 2.209 69650K .......... .......... .......... .......... .......... 53% 121M 1s +2023-11-07T14:50:53Z #15 2.209 69700K .......... .......... .......... .......... .......... 53% 112M 1s +2023-11-07T14:50:53Z #15 2.209 69750K .......... .......... .......... .......... .......... 53% 102M 1s +2023-11-07T14:50:53Z #15 2.209 69800K .......... .......... .......... .......... .......... 53% 118M 1s +2023-11-07T14:50:53Z #15 2.209 69850K .......... .......... .......... .......... .......... 53% 76.9M 1s +2023-11-07T14:50:53Z #15 2.209 69900K .......... .......... .......... .......... .......... 53% 70.8M 1s +2023-11-07T14:50:53Z #15 2.209 69950K .......... .......... .......... .......... .......... 54% 81.4M 1s +2023-11-07T14:50:53Z #15 2.209 70000K .......... .......... .......... .......... .......... 54% 11.8M 1s +2023-11-07T14:50:53Z #15 2.212 70050K .......... .......... .......... .......... .......... 54% 73.4M 1s +2023-11-07T14:50:53Z #15 2.216 70100K .......... .......... .......... .......... .......... 54% 131M 1s +2023-11-07T14:50:53Z #15 2.216 70150K .......... .......... .......... .......... .......... 54% 127M 1s +2023-11-07T14:50:53Z #15 2.216 70200K .......... .......... .......... .......... .......... 54% 111M 1s +2023-11-07T14:50:53Z #15 2.216 70250K .......... .......... .......... .......... .......... 54% 128M 1s +2023-11-07T14:50:53Z #15 2.216 70300K .......... .......... .......... .......... .......... 54% 121M 1s +2023-11-07T14:50:53Z #15 2.216 70350K .......... .......... .......... .......... .......... 54% 129M 1s +2023-11-07T14:50:53Z #15 2.216 70400K .......... .......... .......... .......... .......... 54% 53.6M 1s +2023-11-07T14:50:53Z #15 2.216 70450K .......... .......... .......... .......... .......... 54% 17.2M 1s +2023-11-07T14:50:53Z #15 2.220 70500K .......... .......... .......... .......... .......... 54% 24.8M 1s +2023-11-07T14:50:53Z #15 2.224 70550K .......... .......... .......... .......... .......... 54% 106M 1s +2023-11-07T14:50:53Z #15 2.224 70600K .......... .......... .......... .......... .......... 54% 131M 1s +2023-11-07T14:50:53Z #15 2.224 70650K .......... .......... .......... .......... .......... 54% 125M 1s +2023-11-07T14:50:53Z #15 2.224 70700K .......... .......... .......... .......... .......... 54% 119M 1s +2023-11-07T14:50:53Z #15 2.224 70750K .......... .......... .......... .......... .......... 54% 110M 1s +2023-11-07T14:50:53Z #15 2.224 70800K .......... .......... .......... .......... .......... 54% 111M 1s +2023-11-07T14:50:53Z #15 2.224 70850K .......... .......... .......... .......... .......... 54% 83.1M 1s +2023-11-07T14:50:53Z #15 2.224 70900K .......... .......... .......... .......... .......... 54% 13.3M 1s +2023-11-07T14:50:53Z #15 2.228 70950K .......... .......... .......... .......... .......... 54% 21.7M 1s +2023-11-07T14:50:53Z #15 2.230 71000K .......... .......... .......... .......... .......... 54% 42.5M 1s +2023-11-07T14:50:53Z #15 2.231 71050K .......... .......... .......... .......... .......... 54% 43.9M 1s +2023-11-07T14:50:53Z #15 2.236 71100K .......... .......... .......... .......... .......... 54% 127M 1s +2023-11-07T14:50:53Z #15 2.236 71150K .......... .......... .......... .......... .......... 54% 120M 1s +2023-11-07T14:50:53Z #15 2.236 71200K .......... .......... .......... .......... .......... 54% 103M 1s +2023-11-07T14:50:53Z #15 2.236 71250K .......... .......... .......... .......... .......... 55% 125M 1s +2023-11-07T14:50:53Z #15 2.236 71300K .......... .......... .......... .......... .......... 55% 66.8M 1s +2023-11-07T14:50:53Z #15 2.236 71350K .......... .......... .......... .......... .......... 55% 74.8M 1s +2023-11-07T14:50:53Z #15 2.236 71400K .......... .......... .......... .......... .......... 55% 79.6M 1s +2023-11-07T14:50:53Z #15 2.236 71450K .......... .......... .......... .......... .......... 55% 94.5M 1s +2023-11-07T14:50:53Z #15 2.237 71500K .......... .......... .......... .......... .......... 55% 14.1M 1s +2023-11-07T14:50:53Z #15 2.240 71550K .......... .......... .......... .......... .......... 55% 105M 1s +2023-11-07T14:50:53Z #15 2.244 71600K .......... .......... .......... .......... .......... 55% 121M 1s +2023-11-07T14:50:53Z #15 2.244 71650K .......... .......... .......... .......... .......... 55% 154M 1s +2023-11-07T14:50:53Z #15 2.244 71700K .......... .......... .......... .......... .......... 55% 151M 1s +2023-11-07T14:50:53Z #15 2.244 71750K .......... .......... .......... .......... .......... 55% 167M 1s +2023-11-07T14:50:53Z #15 2.244 71800K .......... .......... .......... .......... .......... 55% 137M 1s +2023-11-07T14:50:53Z #15 2.244 71850K .......... .......... .......... .......... .......... 55% 51.3M 1s +2023-11-07T14:50:53Z #15 2.244 71900K .......... .......... .......... .......... .......... 55% 126M 1s +2023-11-07T14:50:53Z #15 2.244 71950K .......... .......... .......... .......... .......... 55% 56.6M 1s +2023-11-07T14:50:53Z #15 2.244 72000K .......... .......... .......... .......... .......... 55% 13.0M 1s +2023-11-07T14:50:53Z #15 2.248 72050K .......... .......... .......... .......... .......... 55% 38.3M 1s +2023-11-07T14:50:53Z #15 2.249 72100K .......... .......... .......... .......... .......... 55% 44.3M 1s +2023-11-07T14:50:53Z #15 2.252 72150K .......... .......... .......... .......... .......... 55% 135M 1s +2023-11-07T14:50:53Z #15 2.252 72200K .......... .......... .......... .......... .......... 55% 159M 1s +2023-11-07T14:50:53Z #15 2.252 72250K .......... .......... .......... .......... .......... 55% 139M 1s +2023-11-07T14:50:53Z #15 2.252 72300K .......... .......... .......... .......... .......... 55% 114M 1s +2023-11-07T14:50:53Z #15 2.252 72350K .......... .......... .......... .......... .......... 55% 12.3M 1s +2023-11-07T14:50:53Z #15 2.256 72400K .......... .......... .......... .......... .......... 55% 8.84M 1s +2023-11-07T14:50:53Z #15 2.261 72450K .......... .......... .......... .......... .......... 55% 11.1M 1s +2023-11-07T14:50:53Z #15 2.266 72500K .......... .......... .......... .......... .......... 55% 10.6M 1s +2023-11-07T14:50:53Z #15 2.270 72550K .......... .......... .......... .......... .......... 56% 12.0M 1s +2023-11-07T14:50:53Z #15 2.281 72600K .......... .......... .......... .......... .......... 56% 108M 1s +2023-11-07T14:50:53Z #15 2.281 72650K .......... .......... .......... .......... .......... 56% 123M 1s +2023-11-07T14:50:53Z #15 2.281 72700K .......... .......... .......... .......... .......... 56% 82.1M 1s +2023-11-07T14:50:53Z #15 2.281 72750K .......... .......... .......... .......... .......... 56% 87.6M 1s +2023-11-07T14:50:53Z #15 2.281 72800K .......... .......... .......... .......... .......... 56% 9.96M 1s +2023-11-07T14:50:53Z #15 2.284 72850K .......... .......... .......... .......... .......... 56% 114M 1s +2023-11-07T14:50:53Z #15 2.284 72900K .......... .......... .......... .......... .......... 56% 134M 1s +2023-11-07T14:50:53Z #15 2.284 72950K .......... .......... .......... .......... .......... 56% 83.9M 1s +2023-11-07T14:50:53Z #15 2.284 73000K .......... .......... .......... .......... .......... 56% 133M 1s +2023-11-07T14:50:53Z #15 2.284 73050K .......... .......... .......... .......... .......... 56% 125M 1s +2023-11-07T14:50:53Z #15 2.284 73100K .......... .......... .......... .......... .......... 56% 63.2M 1s +2023-11-07T14:50:53Z #15 2.284 73150K .......... .......... .......... .......... .......... 56% 13.2M 1s +2023-11-07T14:50:53Z #15 2.288 73200K .......... .......... .......... .......... .......... 56% 34.2M 1s +2023-11-07T14:50:53Z #15 2.292 73250K .......... .......... .......... .......... .......... 56% 40.8M 1s +2023-11-07T14:50:53Z #15 2.292 73300K .......... .......... .......... .......... .......... 56% 37.8M 1s +2023-11-07T14:50:53Z #15 2.292 73350K .......... .......... .......... .......... .......... 56% 30.9M 1s +2023-11-07T14:50:53Z #15 2.293 73400K .......... .......... .......... .......... .......... 56% 36.7M 1s +2023-11-07T14:50:53Z #15 2.295 73450K .......... .......... .......... .......... .......... 56% 23.2M 1s +2023-11-07T14:50:53Z #15 2.297 73500K .......... .......... .......... .......... .......... 56% 34.5M 1s +2023-11-07T14:50:53Z #15 2.299 73550K .......... .......... .......... .......... .......... 56% 25.0M 1s +2023-11-07T14:50:53Z #15 2.300 73600K .......... .......... .......... .......... .......... 56% 50.5M 1s +2023-11-07T14:50:53Z #15 2.305 73650K .......... .......... .......... .......... .......... 56% 106M 1s +2023-11-07T14:50:53Z #15 2.305 73700K .......... .......... .......... .......... .......... 56% 132M 1s +2023-11-07T14:50:53Z #15 2.305 73750K .......... .......... .......... .......... .......... 56% 133M 1s +2023-11-07T14:50:53Z #15 2.305 73800K .......... .......... .......... .......... .......... 56% 100M 1s +2023-11-07T14:50:53Z #15 2.305 73850K .......... .......... .......... .......... .......... 57% 109M 1s +2023-11-07T14:50:53Z #15 2.305 73900K .......... .......... .......... .......... .......... 57% 131M 1s +2023-11-07T14:50:53Z #15 2.305 73950K .......... .......... .......... .......... .......... 57% 23.2M 1s +2023-11-07T14:50:53Z #15 2.306 74000K .......... .......... .......... .......... .......... 57% 28.1M 1s +2023-11-07T14:50:53Z #15 2.308 74050K .......... .......... .......... .......... .......... 57% 38.2M 1s +2023-11-07T14:50:53Z #15 2.309 74100K .......... .......... .......... .......... .......... 57% 40.0M 1s +2023-11-07T14:50:53Z #15 2.310 74150K .......... .......... .......... .......... .......... 57% 34.1M 1s +2023-11-07T14:50:53Z #15 2.311 74200K .......... .......... .......... .......... .......... 57% 31.0M 1s +2023-11-07T14:50:53Z #15 2.313 74250K .......... .......... .......... .......... .......... 57% 39.7M 1s +2023-11-07T14:50:53Z #15 2.315 74300K .......... .......... .......... .......... .......... 57% 93.9M 1s +2023-11-07T14:50:53Z #15 2.315 74350K .......... .......... .......... .......... .......... 57% 34.1M 1s +2023-11-07T14:50:53Z #15 2.316 74400K .......... .......... .......... .......... .......... 57% 50.9M 1s +2023-11-07T14:50:53Z #15 2.317 74450K .......... .......... .......... .......... .......... 57% 70.4M 1s +2023-11-07T14:50:53Z #15 2.318 74500K .......... .......... .......... .......... .......... 57% 111M 1s +2023-11-07T14:50:53Z #15 2.318 74550K .......... .......... .......... .......... .......... 57% 64.3M 1s +2023-11-07T14:50:53Z #15 2.320 74600K .......... .......... .......... .......... .......... 57% 14.7M 1s +2023-11-07T14:50:53Z #15 2.322 74650K .......... .......... .......... .......... .......... 57% 36.8M 1s +2023-11-07T14:50:53Z #15 2.324 74700K .......... .......... .......... .......... .......... 57% 92.5M 1s +2023-11-07T14:50:53Z #15 2.324 74750K .......... .......... .......... .......... .......... 57% 61.7M 1s +2023-11-07T14:50:53Z #15 2.325 74800K .......... .......... .......... .......... .......... 57% 51.2M 1s +2023-11-07T14:50:53Z #15 2.326 74850K .......... .......... .......... .......... .......... 57% 59.2M 1s +2023-11-07T14:50:53Z #15 2.327 74900K .......... .......... .......... .......... .......... 57% 70.1M 1s +2023-11-07T14:50:53Z #15 2.328 74950K .......... .......... .......... .......... .......... 57% 168M 1s +2023-11-07T14:50:53Z #15 2.328 75000K .......... .......... .......... .......... .......... 57% 67.5M 1s +2023-11-07T14:50:53Z #15 2.329 75050K .......... .......... .......... .......... .......... 57% 23.3M 1s +2023-11-07T14:50:53Z #15 2.331 75100K .......... .......... .......... .......... .......... 58% 22.7M 1s +2023-11-07T14:50:53Z #15 2.333 75150K .......... .......... .......... .......... .......... 58% 141M 1s +2023-11-07T14:50:53Z #15 2.333 75200K .......... .......... .......... .......... .......... 58% 52.8M 1s +2023-11-07T14:50:53Z #15 2.334 75250K .......... .......... .......... .......... .......... 58% 82.3M 1s +2023-11-07T14:50:53Z #15 2.335 75300K .......... .......... .......... .......... .......... 58% 97.1M 1s +2023-11-07T14:50:53Z #15 2.335 75350K .......... .......... .......... .......... .......... 58% 75.7M 1s +2023-11-07T14:50:53Z #15 2.336 75400K .......... .......... .......... .......... .......... 58% 111M 1s +2023-11-07T14:50:53Z #15 2.336 75450K .......... .......... .......... .......... .......... 58% 77.3M 1s +2023-11-07T14:50:53Z #15 2.337 75500K .......... .......... .......... .......... .......... 58% 81.6M 1s +2023-11-07T14:50:53Z #15 2.337 75550K .......... .......... .......... .......... .......... 58% 86.1M 1s +2023-11-07T14:50:53Z #15 2.338 75600K .......... .......... .......... .......... .......... 58% 94.5M 1s +2023-11-07T14:50:53Z #15 2.339 75650K .......... .......... .......... .......... .......... 58% 116M 1s +2023-11-07T14:50:53Z #15 2.339 75700K .......... .......... .......... .......... .......... 58% 55.6M 1s +2023-11-07T14:50:53Z #15 2.340 75750K .......... .......... .......... .......... .......... 58% 49.0M 1s +2023-11-07T14:50:53Z #15 2.341 75800K .......... .......... .......... .......... .......... 58% 77.4M 1s +2023-11-07T14:50:53Z #15 2.341 75850K .......... .......... .......... .......... .......... 58% 72.9M 1s +2023-11-07T14:50:53Z #15 2.342 75900K .......... .......... .......... .......... .......... 58% 133M 1s +2023-11-07T14:50:53Z #15 2.342 75950K .......... .......... .......... .......... .......... 58% 55.9M 1s +2023-11-07T14:50:53Z #15 2.347 76000K .......... .......... .......... .......... .......... 58% 138M 1s +2023-11-07T14:50:53Z #15 2.347 76050K .......... .......... .......... .......... .......... 58% 204M 1s +2023-11-07T14:50:53Z #15 2.347 76100K .......... .......... .......... .......... .......... 58% 170M 1s +2023-11-07T14:50:53Z #15 2.347 76150K .......... .......... .......... .......... .......... 58% 176M 1s +2023-11-07T14:50:53Z #15 2.347 76200K .......... .......... .......... .......... .......... 58% 200M 1s +2023-11-07T14:50:53Z #15 2.347 76250K .......... .......... .......... .......... .......... 58% 169M 1s +2023-11-07T14:50:53Z #15 2.347 76300K .......... .......... .......... .......... .......... 58% 181M 1s +2023-11-07T14:50:53Z #15 2.347 76350K .......... .......... .......... .......... .......... 58% 186M 1s +2023-11-07T14:50:53Z #15 2.347 76400K .......... .......... .......... .......... .......... 59% 216M 1s +2023-11-07T14:50:53Z #15 2.347 76450K .......... .......... .......... .......... .......... 59% 211M 1s +2023-11-07T14:50:53Z #15 2.347 76500K .......... .......... .......... .......... .......... 59% 143M 1s +2023-11-07T14:50:53Z #15 2.347 76550K .......... .......... .......... .......... .......... 59% 130M 1s +2023-11-07T14:50:53Z #15 2.347 76600K .......... .......... .......... .......... .......... 59% 55.2M 1s +2023-11-07T14:50:53Z #15 2.348 76650K .......... .......... .......... .......... .......... 59% 44.2M 1s +2023-11-07T14:50:53Z #15 2.349 76700K .......... .......... .......... .......... .......... 59% 55.0M 1s +2023-11-07T14:50:53Z #15 2.351 76750K .......... .......... .......... .......... .......... 59% 132M 1s +2023-11-07T14:50:53Z #15 2.351 76800K .......... .......... .......... .......... .......... 59% 116M 1s +2023-11-07T14:50:53Z #15 2.351 76850K .......... .......... .......... .......... .......... 59% 80.1M 1s +2023-11-07T14:50:53Z #15 2.351 76900K .......... .......... .......... .......... .......... 59% 43.9M 1s +2023-11-07T14:50:53Z #15 2.357 76950K .......... .......... .......... .......... .......... 59% 115M 1s +2023-11-07T14:50:53Z #15 2.357 77000K .......... .......... .......... .......... .......... 59% 161M 1s +2023-11-07T14:50:53Z #15 2.357 77050K .......... .......... .......... .......... .......... 59% 158M 1s +2023-11-07T14:50:53Z #15 2.357 77100K .......... .......... .......... .......... .......... 59% 109M 1s +2023-11-07T14:50:53Z #15 2.357 77150K .......... .......... .......... .......... .......... 59% 142M 1s +2023-11-07T14:50:53Z #15 2.357 77200K .......... .......... .......... .......... .......... 59% 144M 1s +2023-11-07T14:50:53Z #15 2.357 77250K .......... .......... .......... .......... .......... 59% 136M 1s +2023-11-07T14:50:53Z #15 2.357 77300K .......... .......... .......... .......... .......... 59% 72.2M 1s +2023-11-07T14:50:53Z #15 2.357 77350K .......... .......... .......... .......... .......... 59% 89.3M 1s +2023-11-07T14:50:53Z #15 2.357 77400K .......... .......... .......... .......... .......... 59% 116M 1s +2023-11-07T14:50:53Z #15 2.357 77450K .......... .......... .......... .......... .......... 59% 22.7M 1s +2023-11-07T14:50:53Z #15 2.358 77500K .......... .......... .......... .......... .......... 59% 42.7M 1s +2023-11-07T14:50:53Z #15 2.360 77550K .......... .......... .......... .......... .......... 59% 96.1M 1s +2023-11-07T14:50:53Z #15 2.360 77600K .......... .......... .......... .......... .......... 59% 61.7M 1s +2023-11-07T14:50:53Z #15 2.361 77650K .......... .......... .......... .......... .......... 59% 52.1M 1s +2023-11-07T14:50:53Z #15 2.362 77700K .......... .......... .......... .......... .......... 60% 38.7M 1s +2023-11-07T14:50:53Z #15 2.363 77750K .......... .......... .......... .......... .......... 60% 31.5M 1s +2023-11-07T14:50:53Z #15 2.365 77800K .......... .......... .......... .......... .......... 60% 46.4M 1s +2023-11-07T14:50:53Z #15 2.366 77850K .......... .......... .......... .......... .......... 60% 37.0M 1s +2023-11-07T14:50:53Z #15 2.367 77900K .......... .......... .......... .......... .......... 60% 87.8M 1s +2023-11-07T14:50:53Z #15 2.368 77950K .......... .......... .......... .......... .......... 60% 21.0M 1s +2023-11-07T14:50:53Z #15 2.370 78000K .......... .......... .......... .......... .......... 60% 31.0M 1s +2023-11-07T14:50:53Z #15 2.371 78050K .......... .......... .......... .......... .......... 60% 53.7M 1s +2023-11-07T14:50:53Z #15 2.372 78100K .......... .......... .......... .......... .......... 60% 55.6M 1s +2023-11-07T14:50:53Z #15 2.374 78150K .......... .......... .......... .......... .......... 60% 28.0M 1s +2023-11-07T14:50:53Z #15 2.375 78200K .......... .......... .......... .......... .......... 60% 20.3M 1s +2023-11-07T14:50:53Z #15 2.378 78250K .......... .......... .......... .......... .......... 60% 41.7M 1s +2023-11-07T14:50:53Z #15 2.379 78300K .......... .......... .......... .......... .......... 60% 29.5M 1s +2023-11-07T14:50:53Z #15 2.385 78350K .......... .......... .......... .......... .......... 60% 49.2M 1s +2023-11-07T14:50:53Z #15 2.385 78400K .......... .......... .......... .......... .......... 60% 156M 1s +2023-11-07T14:50:53Z #15 2.385 78450K .......... .......... .......... .......... .......... 60% 155M 1s +2023-11-07T14:50:53Z #15 2.385 78500K .......... .......... .......... .......... .......... 60% 177M 1s +2023-11-07T14:50:53Z #15 2.385 78550K .......... .......... .......... .......... .......... 60% 152M 1s +2023-11-07T14:50:53Z #15 2.385 78600K .......... .......... .......... .......... .......... 60% 156M 1s +2023-11-07T14:50:53Z #15 2.385 78650K .......... .......... .......... .......... .......... 60% 98.8M 1s +2023-11-07T14:50:53Z #15 2.385 78700K .......... .......... .......... .......... .......... 60% 79.5M 1s +2023-11-07T14:50:53Z #15 2.385 78750K .......... .......... .......... .......... .......... 60% 131M 1s +2023-11-07T14:50:53Z #15 2.385 78800K .......... .......... .......... .......... .......... 60% 6.72M 1s +2023-11-07T14:50:53Z #15 2.392 78850K .......... .......... .......... .......... .......... 60% 15.0M 1s +2023-11-07T14:50:53Z #15 2.395 78900K .......... .......... .......... .......... .......... 60% 16.2M 1s +2023-11-07T14:50:53Z #15 2.398 78950K .......... .......... .......... .......... .......... 60% 8.67M 1s +2023-11-07T14:50:53Z #15 2.404 79000K .......... .......... .......... .......... .......... 61% 9.90M 1s +2023-11-07T14:50:53Z #15 2.408 79050K .......... .......... .......... .......... .......... 61% 10.4M 1s +2023-11-07T14:50:53Z #15 2.413 79100K .......... .......... .......... .......... .......... 61% 27.6M 1s +2023-11-07T14:50:53Z #15 2.415 79150K .......... .......... .......... .......... .......... 61% 46.8M 1s +2023-11-07T14:50:53Z #15 2.416 79200K .......... .......... .......... .......... .......... 61% 60.7M 1s +2023-11-07T14:50:53Z #15 2.417 79250K .......... .......... .......... .......... .......... 61% 22.0M 1s +2023-11-07T14:50:53Z #15 2.419 79300K .......... .......... .......... .......... .......... 61% 25.7M 1s +2023-11-07T14:50:53Z #15 2.421 79350K .......... .......... .......... .......... .......... 61% 36.7M 1s +2023-11-07T14:50:53Z #15 2.422 79400K .......... .......... .......... .......... .......... 61% 74.6M 1s +2023-11-07T14:50:53Z #15 2.423 79450K .......... .......... .......... .......... .......... 61% 30.8M 1s +2023-11-07T14:50:53Z #15 2.424 79500K .......... .......... .......... .......... .......... 61% 15.5M 1s +2023-11-07T14:50:53Z #15 2.432 79550K .......... .......... .......... .......... .......... 61% 170M 1s +2023-11-07T14:50:53Z #15 2.432 79600K .......... .......... .......... .......... .......... 61% 169M 1s +2023-11-07T14:50:53Z #15 2.432 79650K .......... .......... .......... .......... .......... 61% 184M 1s +2023-11-07T14:50:53Z #15 2.432 79700K .......... .......... .......... .......... .......... 61% 164M 1s +2023-11-07T14:50:53Z #15 2.432 79750K .......... .......... .......... .......... .......... 61% 103M 1s +2023-11-07T14:50:53Z #15 2.432 79800K .......... .......... .......... .......... .......... 61% 162M 1s +2023-11-07T14:50:53Z #15 2.432 79850K .......... .......... .......... .......... .......... 61% 181M 1s +2023-11-07T14:50:53Z #15 2.432 79900K .......... .......... .......... .......... .......... 61% 183M 1s +2023-11-07T14:50:53Z #15 2.432 79950K .......... .......... .......... .......... .......... 61% 78.5M 1s +2023-11-07T14:50:53Z #15 2.432 80000K .......... .......... .......... .......... .......... 61% 105M 1s +2023-11-07T14:50:53Z #15 2.432 80050K .......... .......... .......... .......... .......... 61% 163M 1s +2023-11-07T14:50:53Z #15 2.432 80100K .......... .......... .......... .......... .......... 61% 185M 1s +2023-11-07T14:50:53Z #15 2.432 80150K .......... .......... .......... .......... .......... 61% 93.0M 1s +2023-11-07T14:50:53Z #15 2.432 80200K .......... .......... .......... .......... .......... 61% 14.6M 1s +2023-11-07T14:50:53Z #15 2.435 80250K .......... .......... .......... .......... .......... 61% 18.1M 1s +2023-11-07T14:50:53Z #15 2.438 80300K .......... .......... .......... .......... .......... 62% 33.8M 1s +2023-11-07T14:50:53Z #15 2.440 80350K .......... .......... .......... .......... .......... 62% 32.0M 1s +2023-11-07T14:50:53Z #15 2.441 80400K .......... .......... .......... .......... .......... 62% 35.4M 1s +2023-11-07T14:50:53Z #15 2.442 80450K .......... .......... .......... .......... .......... 62% 40.5M 1s +2023-11-07T14:50:53Z #15 2.444 80500K .......... .......... .......... .......... .......... 62% 33.2M 1s +2023-11-07T14:50:53Z #15 2.445 80550K .......... .......... .......... .......... .......... 62% 39.7M 1s +2023-11-07T14:50:53Z #15 2.446 80600K .......... .......... .......... .......... .......... 62% 30.9M 1s +2023-11-07T14:50:53Z #15 2.448 80650K .......... .......... .......... .......... .......... 62% 38.1M 1s +2023-11-07T14:50:53Z #15 2.453 80700K .......... .......... .......... .......... .......... 62% 42.6M 1s +2023-11-07T14:50:53Z #15 2.453 80750K .......... .......... .......... .......... .......... 62% 42.7M 1s +2023-11-07T14:50:53Z #15 2.453 80800K .......... .......... .......... .......... .......... 62% 21.9M 1s +2023-11-07T14:50:53Z #15 2.454 80850K .......... .......... .......... .......... .......... 62% 27.6M 1s +2023-11-07T14:50:53Z #15 2.456 80900K .......... .......... .......... .......... .......... 62% 31.8M 1s +2023-11-07T14:50:53Z #15 2.457 80950K .......... .......... .......... .......... .......... 62% 38.2M 1s +2023-11-07T14:50:53Z #15 2.459 81000K .......... .......... .......... .......... .......... 62% 27.2M 1s +2023-11-07T14:50:53Z #15 2.460 81050K .......... .......... .......... .......... .......... 62% 37.5M 1s +2023-11-07T14:50:53Z #15 2.461 81100K .......... .......... .......... .......... .......... 62% 37.0M 1s +2023-11-07T14:50:53Z #15 2.463 81150K .......... .......... .......... .......... .......... 62% 27.4M 1s +2023-11-07T14:50:53Z #15 2.465 81200K .......... .......... .......... .......... .......... 62% 44.9M 1s +2023-11-07T14:50:53Z #15 2.466 81250K .......... .......... .......... .......... .......... 62% 44.8M 1s +2023-11-07T14:50:53Z #15 2.469 81300K .......... .......... .......... .......... .......... 62% 43.2M 1s +2023-11-07T14:50:53Z #15 2.469 81350K .......... .......... .......... .......... .......... 62% 23.9M 1s +2023-11-07T14:50:53Z #15 2.470 81400K .......... .......... .......... .......... .......... 62% 31.8M 1s +2023-11-07T14:50:53Z #15 2.471 81450K .......... .......... .......... .......... .......... 62% 36.2M 1s +2023-11-07T14:50:53Z #15 2.473 81500K .......... .......... .......... .......... .......... 62% 37.5M 1s +2023-11-07T14:50:53Z #15 2.474 81550K .......... .......... .......... .......... .......... 62% 46.4M 1s +2023-11-07T14:50:53Z #15 2.475 81600K .......... .......... .......... .......... .......... 63% 84.4M 1s +2023-11-07T14:50:53Z #15 2.476 81650K .......... .......... .......... .......... .......... 63% 45.8M 1s +2023-11-07T14:50:53Z #15 2.477 81700K .......... .......... .......... .......... .......... 63% 49.9M 1s +2023-11-07T14:50:53Z #15 2.478 81750K .......... .......... .......... .......... .......... 63% 59.5M 1s +2023-11-07T14:50:53Z #15 2.479 81800K .......... .......... .......... .......... .......... 63% 44.2M 1s +2023-11-07T14:50:53Z #15 2.480 81850K .......... .......... .......... .......... .......... 63% 59.2M 1s +2023-11-07T14:50:53Z #15 2.481 81900K .......... .......... .......... .......... .......... 63% 54.0M 1s +2023-11-07T14:50:53Z #15 2.482 81950K .......... .......... .......... .......... .......... 63% 38.1M 1s +2023-11-07T14:50:53Z #15 2.483 82000K .......... .......... .......... .......... .......... 63% 48.1M 1s +2023-11-07T14:50:53Z #15 2.484 82050K .......... .......... .......... .......... .......... 63% 41.8M 1s +2023-11-07T14:50:53Z #15 2.485 82100K .......... .......... .......... .......... .......... 63% 68.9M 1s +2023-11-07T14:50:53Z #15 2.486 82150K .......... .......... .......... .......... .......... 63% 50.4M 1s +2023-11-07T14:50:53Z #15 2.487 82200K .......... .......... .......... .......... .......... 63% 87.1M 1s +2023-11-07T14:50:53Z #15 2.487 82250K .......... .......... .......... .......... .......... 63% 46.0M 1s +2023-11-07T14:50:53Z #15 2.488 82300K .......... .......... .......... .......... .......... 63% 40.1M 1s +2023-11-07T14:50:53Z #15 2.489 82350K .......... .......... .......... .......... .......... 63% 46.6M 1s +2023-11-07T14:50:53Z #15 2.491 82400K .......... .......... .......... .......... .......... 63% 40.9M 1s +2023-11-07T14:50:53Z #15 2.492 82450K .......... .......... .......... .......... .......... 63% 34.3M 1s +2023-11-07T14:50:53Z #15 2.493 82500K .......... .......... .......... .......... .......... 63% 42.4M 1s +2023-11-07T14:50:53Z #15 2.495 82550K .......... .......... .......... .......... .......... 63% 170M 1s +2023-11-07T14:50:53Z #15 2.495 82600K .......... .......... .......... .......... .......... 63% 27.4M 1s +2023-11-07T14:50:53Z #15 2.496 82650K .......... .......... .......... .......... .......... 63% 41.9M 1s +2023-11-07T14:50:53Z #15 2.498 82700K .......... .......... .......... .......... .......... 63% 53.5M 1s +2023-11-07T14:50:53Z #15 2.499 82750K .......... .......... .......... .......... .......... 63% 32.3M 1s +2023-11-07T14:50:53Z #15 2.500 82800K .......... .......... .......... .......... .......... 63% 34.9M 1s +2023-11-07T14:50:53Z #15 2.502 82850K .......... .......... .......... .......... .......... 63% 46.7M 1s +2023-11-07T14:50:53Z #15 2.502 82900K .......... .......... .......... .......... .......... 64% 33.2M 1s +2023-11-07T14:50:53Z #15 2.504 82950K .......... .......... .......... .......... .......... 64% 40.6M 1s +2023-11-07T14:50:53Z #15 2.505 83000K .......... .......... .......... .......... .......... 64% 25.7M 1s +2023-11-07T14:50:53Z #15 2.507 83050K .......... .......... .......... .......... .......... 64% 30.1M 1s +2023-11-07T14:50:53Z #15 2.509 83100K .......... .......... .......... .......... .......... 64% 30.8M 1s +2023-11-07T14:50:53Z #15 2.510 83150K .......... .......... .......... .......... .......... 64% 33.0M 1s +2023-11-07T14:50:53Z #15 2.512 83200K .......... .......... .......... .......... .......... 64% 35.9M 1s +2023-11-07T14:50:53Z #15 2.513 83250K .......... .......... .......... .......... .......... 64% 28.2M 1s +2023-11-07T14:50:53Z #15 2.515 83300K .......... .......... .......... .......... .......... 64% 35.0M 1s +2023-11-07T14:50:53Z #15 2.516 83350K .......... .......... .......... .......... .......... 64% 34.2M 1s +2023-11-07T14:50:53Z #15 2.518 83400K .......... .......... .......... .......... .......... 64% 32.0M 1s +2023-11-07T14:50:53Z #15 2.519 83450K .......... .......... .......... .......... .......... 64% 32.5M 1s +2023-11-07T14:50:53Z #15 2.521 83500K .......... .......... .......... .......... .......... 64% 31.4M 1s +2023-11-07T14:50:53Z #15 2.523 83550K .......... .......... .......... .......... .......... 64% 24.2M 1s +2023-11-07T14:50:53Z #15 2.524 83600K .......... .......... .......... .......... .......... 64% 20.8M 1s +2023-11-07T14:50:53Z #15 2.527 83650K .......... .......... .......... .......... .......... 64% 34.8M 1s +2023-11-07T14:50:53Z #15 2.528 83700K .......... .......... .......... .......... .......... 64% 31.1M 1s +2023-11-07T14:50:53Z #15 2.529 83750K .......... .......... .......... .......... .......... 64% 33.8M 1s +2023-11-07T14:50:53Z #15 2.531 83800K .......... .......... .......... .......... .......... 64% 35.8M 1s +2023-11-07T14:50:53Z #15 2.532 83850K .......... .......... .......... .......... .......... 64% 31.3M 1s +2023-11-07T14:50:53Z #15 2.534 83900K .......... .......... .......... .......... .......... 64% 38.1M 1s +2023-11-07T14:50:53Z #15 2.535 83950K .......... .......... .......... .......... .......... 64% 37.0M 1s +2023-11-07T14:50:53Z #15 2.537 84000K .......... .......... .......... .......... .......... 64% 30.2M 1s +2023-11-07T14:50:53Z #15 2.538 84050K .......... .......... .......... .......... .......... 64% 28.8M 1s +2023-11-07T14:50:53Z #15 2.540 84100K .......... .......... .......... .......... .......... 64% 24.7M 1s +2023-11-07T14:50:53Z #15 2.542 84150K .......... .......... .......... .......... .......... 64% 37.8M 1s +2023-11-07T14:50:53Z #15 2.543 84200K .......... .......... .......... .......... .......... 65% 37.0M 1s +2023-11-07T14:50:53Z #15 2.545 84250K .......... .......... .......... .......... .......... 65% 29.0M 1s +2023-11-07T14:50:53Z #15 2.546 84300K .......... .......... .......... .......... .......... 65% 39.1M 1s +2023-11-07T14:50:53Z #15 2.547 84350K .......... .......... .......... .......... .......... 65% 30.7M 1s +2023-11-07T14:50:53Z #15 2.549 84400K .......... .......... .......... .......... .......... 65% 34.5M 1s +2023-11-07T14:50:53Z #15 2.550 84450K .......... .......... .......... .......... .......... 65% 27.3M 1s +2023-11-07T14:50:53Z #15 2.552 84500K .......... .......... .......... .......... .......... 65% 32.3M 1s +2023-11-07T14:50:53Z #15 2.554 84550K .......... .......... .......... .......... .......... 65% 53.0M 1s +2023-11-07T14:50:53Z #15 2.555 84600K .......... .......... .......... .......... .......... 65% 29.2M 1s +2023-11-07T14:50:53Z #15 2.556 84650K .......... .......... .......... .......... .......... 65% 29.4M 1s +2023-11-07T14:50:53Z #15 2.558 84700K .......... .......... .......... .......... .......... 65% 24.3M 1s +2023-11-07T14:50:53Z #15 2.560 84750K .......... .......... .......... .......... .......... 65% 34.7M 1s +2023-11-07T14:50:53Z #15 2.561 84800K .......... .......... .......... .......... .......... 65% 42.0M 1s +2023-11-07T14:50:53Z #15 2.562 84850K .......... .......... .......... .......... .......... 65% 31.1M 1s +2023-11-07T14:50:53Z #15 2.564 84900K .......... .......... .......... .......... .......... 65% 25.9M 1s +2023-11-07T14:50:53Z #15 2.566 84950K .......... .......... .......... .......... .......... 65% 24.7M 1s +2023-11-07T14:50:53Z #15 2.568 85000K .......... .......... .......... .......... .......... 65% 28.1M 1s +2023-11-07T14:50:53Z #15 2.570 85050K .......... .......... .......... .......... .......... 65% 27.6M 1s +2023-11-07T14:50:53Z #15 2.571 85100K .......... .......... .......... .......... .......... 65% 34.9M 1s +2023-11-07T14:50:53Z #15 2.573 85150K .......... .......... .......... .......... .......... 65% 30.9M 1s +2023-11-07T14:50:53Z #15 2.574 85200K .......... .......... .......... .......... .......... 65% 30.2M 1s +2023-11-07T14:50:53Z #15 2.576 85250K .......... .......... .......... .......... .......... 65% 20.7M 1s +2023-11-07T14:50:53Z #15 2.578 85300K .......... .......... .......... .......... .......... 65% 37.6M 1s +2023-11-07T14:50:53Z #15 2.580 85350K .......... .......... .......... .......... .......... 65% 32.5M 1s +2023-11-07T14:50:53Z #15 2.581 85400K .......... .......... .......... .......... .......... 65% 30.8M 1s +2023-11-07T14:50:53Z #15 2.583 85450K .......... .......... .......... .......... .......... 65% 21.1M 1s +2023-11-07T14:50:53Z #15 2.585 85500K .......... .......... .......... .......... .......... 66% 18.1M 1s +2023-11-07T14:50:53Z #15 2.592 85550K .......... .......... .......... .......... .......... 66% 177M 1s +2023-11-07T14:50:53Z #15 2.592 85600K .......... .......... .......... .......... .......... 66% 183M 1s +2023-11-07T14:50:53Z #15 2.592 85650K .......... .......... .......... .......... .......... 66% 153M 1s +2023-11-07T14:50:53Z #15 2.592 85700K .......... .......... .......... .......... .......... 66% 120M 1s +2023-11-07T14:50:53Z #15 2.592 85750K .......... .......... .......... .......... .......... 66% 149M 1s +2023-11-07T14:50:53Z #15 2.592 85800K .......... .......... .......... .......... .......... 66% 182M 1s +2023-11-07T14:50:53Z #15 2.592 85850K .......... .......... .......... .......... .......... 66% 181M 1s +2023-11-07T14:50:53Z #15 2.592 85900K .......... .......... .......... .......... .......... 66% 184M 1s +2023-11-07T14:50:53Z #15 2.592 85950K .......... .......... .......... .......... .......... 66% 91.4M 1s +2023-11-07T14:50:53Z #15 2.592 86000K .......... .......... .......... .......... .......... 66% 98.9M 1s +2023-11-07T14:50:53Z #15 2.592 86050K .......... .......... .......... .......... .......... 66% 184M 1s +2023-11-07T14:50:53Z #15 2.592 86100K .......... .......... .......... .......... .......... 66% 114M 1s +2023-11-07T14:50:53Z #15 2.592 86150K .......... .......... .......... .......... .......... 66% 121M 1s +2023-11-07T14:50:53Z #15 2.592 86200K .......... .......... .......... .......... .......... 66% 15.4M 1s +2023-11-07T14:50:53Z #15 2.595 86250K .......... .......... .......... .......... .......... 66% 11.9M 1s +2023-11-07T14:50:53Z #15 2.600 86300K .......... .......... .......... .......... .......... 66% 11.7M 1s +2023-11-07T14:50:53Z #15 2.604 86350K .......... .......... .......... .......... .......... 66% 9.83M 1s +2023-11-07T14:50:53Z #15 2.609 86400K .......... .......... .......... .......... .......... 66% 16.1M 1s +2023-11-07T14:50:53Z #15 2.612 86450K .......... .......... .......... .......... .......... 66% 10.2M 1s +2023-11-07T14:50:53Z #15 2.617 86500K .......... .......... .......... .......... .......... 66% 15.3M 1s +2023-11-07T14:50:53Z #15 2.620 86550K .......... .......... .......... .......... .......... 66% 38.0M 1s +2023-11-07T14:50:53Z #15 2.621 86600K .......... .......... .......... .......... .......... 66% 47.8M 1s +2023-11-07T14:50:53Z #15 2.623 86650K .......... .......... .......... .......... .......... 66% 12.8M 1s +2023-11-07T14:50:53Z #15 2.626 86700K .......... .......... .......... .......... .......... 66% 22.2M 1s +2023-11-07T14:50:53Z #15 2.628 86750K .......... .......... .......... .......... .......... 66% 35.7M 1s +2023-11-07T14:50:53Z #15 2.629 86800K .......... .......... .......... .......... .......... 67% 33.9M 1s +2023-11-07T14:50:53Z #15 2.631 86850K .......... .......... .......... .......... .......... 67% 32.8M 1s +2023-11-07T14:50:53Z #15 2.633 86900K .......... .......... .......... .......... .......... 67% 28.3M 1s +2023-11-07T14:50:53Z #15 2.634 86950K .......... .......... .......... .......... .......... 67% 29.8M 1s +2023-11-07T14:50:53Z #15 2.636 87000K .......... .......... .......... .......... .......... 67% 24.0M 1s +2023-11-07T14:50:53Z #15 2.638 87050K .......... .......... .......... .......... .......... 67% 35.4M 1s +2023-11-07T14:50:53Z #15 2.639 87100K .......... .......... .......... .......... .......... 67% 30.4M 1s +2023-11-07T14:50:53Z #15 2.641 87150K .......... .......... .......... .......... .......... 67% 27.7M 1s +2023-11-07T14:50:53Z #15 2.642 87200K .......... .......... .......... .......... .......... 67% 32.5M 1s +2023-11-07T14:50:53Z #15 2.644 87250K .......... .......... .......... .......... .......... 67% 24.2M 1s +2023-11-07T14:50:53Z #15 2.646 87300K .......... .......... .......... .......... .......... 67% 23.9M 1s +2023-11-07T14:50:53Z #15 2.648 87350K .......... .......... .......... .......... .......... 67% 26.5M 1s +2023-11-07T14:50:53Z #15 2.650 87400K .......... .......... .......... .......... .......... 67% 93.7M 1s +2023-11-07T14:50:53Z #15 2.650 87450K .......... .......... .......... .......... .......... 67% 44.5M 1s +2023-11-07T14:50:53Z #15 2.651 87500K .......... .......... .......... .......... .......... 67% 34.1M 1s +2023-11-07T14:50:53Z #15 2.653 87550K .......... .......... .......... .......... .......... 67% 33.0M 1s +2023-11-07T14:50:53Z #15 2.654 87600K .......... .......... .......... .......... .......... 67% 33.3M 1s +2023-11-07T14:50:53Z #15 2.656 87650K .......... .......... .......... .......... .......... 67% 30.9M 1s +2023-11-07T14:50:53Z #15 2.657 87700K .......... .......... .......... .......... .......... 67% 32.4M 1s +2023-11-07T14:50:53Z #15 2.659 87750K .......... .......... .......... .......... .......... 67% 29.3M 1s +2023-11-07T14:50:53Z #15 2.661 87800K .......... .......... .......... .......... .......... 67% 33.5M 1s +2023-11-07T14:50:53Z #15 2.662 87850K .......... .......... .......... .......... .......... 67% 21.4M 1s +2023-11-07T14:50:53Z #15 2.664 87900K .......... .......... .......... .......... .......... 67% 34.3M 1s +2023-11-07T14:50:53Z #15 2.666 87950K .......... .......... .......... .......... .......... 67% 34.5M 1s +2023-11-07T14:50:53Z #15 2.667 88000K .......... .......... .......... .......... .......... 67% 30.9M 1s +2023-11-07T14:50:53Z #15 2.669 88050K .......... .......... .......... .......... .......... 67% 49.4M 1s +2023-11-07T14:50:53Z #15 2.670 88100K .......... .......... .......... .......... .......... 68% 27.5M 1s +2023-11-07T14:50:53Z #15 2.672 88150K .......... .......... .......... .......... .......... 68% 32.2M 1s +2023-11-07T14:50:53Z #15 2.673 88200K .......... .......... .......... .......... .......... 68% 43.2M 1s +2023-11-07T14:50:53Z #15 2.674 88250K .......... .......... .......... .......... .......... 68% 30.9M 1s +2023-11-07T14:50:53Z #15 2.676 88300K .......... .......... .......... .......... .......... 68% 34.5M 1s +2023-11-07T14:50:53Z #15 2.678 88350K .......... .......... .......... .......... .......... 68% 28.2M 1s +2023-11-07T14:50:53Z #15 2.679 88400K .......... .......... .......... .......... .......... 68% 32.6M 1s +2023-11-07T14:50:53Z #15 2.681 88450K .......... .......... .......... .......... .......... 68% 26.3M 1s +2023-11-07T14:50:53Z #15 2.683 88500K .......... .......... .......... .......... .......... 68% 36.5M 1s +2023-11-07T14:50:53Z #15 2.684 88550K .......... .......... .......... .......... .......... 68% 32.8M 1s +2023-11-07T14:50:53Z #15 2.685 88600K .......... .......... .......... .......... .......... 68% 28.6M 1s +2023-11-07T14:50:53Z #15 2.687 88650K .......... .......... .......... .......... .......... 68% 30.4M 1s +2023-11-07T14:50:53Z #15 2.688 88700K .......... .......... .......... .......... .......... 68% 32.1M 1s +2023-11-07T14:50:53Z #15 2.690 88750K .......... .......... .......... .......... .......... 68% 35.0M 1s +2023-11-07T14:50:53Z #15 2.691 88800K .......... .......... .......... .......... .......... 68% 35.0M 1s +2023-11-07T14:50:53Z #15 2.693 88850K .......... .......... .......... .......... .......... 68% 30.1M 1s +2023-11-07T14:50:53Z #15 2.696 88900K .......... .......... .......... .......... .......... 68% 40.2M 1s +2023-11-07T14:50:53Z #15 2.696 88950K .......... .......... .......... .......... .......... 68% 27.7M 1s +2023-11-07T14:50:53Z #15 2.697 89000K .......... .......... .......... .......... .......... 68% 27.3M 1s +2023-11-07T14:50:53Z #15 2.699 89050K .......... .......... .......... .......... .......... 68% 40.7M 1s +2023-11-07T14:50:53Z #15 2.700 89100K .......... .......... .......... .......... .......... 68% 28.1M 1s +2023-11-07T14:50:53Z #15 2.703 89150K .......... .......... .......... .......... .......... 68% 44.4M 1s +2023-11-07T14:50:53Z #15 2.703 89200K .......... .......... .......... .......... .......... 68% 26.7M 1s +2023-11-07T14:50:53Z #15 2.705 89250K .......... .......... .......... .......... .......... 68% 27.5M 1s +2023-11-07T14:50:53Z #15 2.707 89300K .......... .......... .......... .......... .......... 68% 81.0M 1s +2023-11-07T14:50:53Z #15 2.708 89350K .......... .......... .......... .......... .......... 68% 30.8M 1s +2023-11-07T14:50:53Z #15 2.709 89400K .......... .......... .......... .......... .......... 69% 30.2M 1s +2023-11-07T14:50:53Z #15 2.711 89450K .......... .......... .......... .......... .......... 69% 30.3M 1s +2023-11-07T14:50:53Z #15 2.712 89500K .......... .......... .......... .......... .......... 69% 60.2M 1s +2023-11-07T14:50:53Z #15 2.713 89550K .......... .......... .......... .......... .......... 69% 31.4M 1s +2023-11-07T14:50:53Z #15 2.715 89600K .......... .......... .......... .......... .......... 69% 155M 1s +2023-11-07T14:50:53Z #15 2.715 89650K .......... .......... .......... .......... .......... 69% 29.4M 1s +2023-11-07T14:50:53Z #15 2.716 89700K .......... .......... .......... .......... .......... 69% 72.2M 1s +2023-11-07T14:50:53Z #15 2.717 89750K .......... .......... .......... .......... .......... 69% 41.6M 1s +2023-11-07T14:50:53Z #15 2.718 89800K .......... .......... .......... .......... .......... 69% 37.3M 1s +2023-11-07T14:50:53Z #15 2.720 89850K .......... .......... .......... .......... .......... 69% 38.9M 1s +2023-11-07T14:50:53Z #15 2.721 89900K .......... .......... .......... .......... .......... 69% 50.3M 1s +2023-11-07T14:50:53Z #15 2.722 89950K .......... .......... .......... .......... .......... 69% 24.0M 1s +2023-11-07T14:50:53Z #15 2.724 90000K .......... .......... .......... .......... .......... 69% 35.6M 1s +2023-11-07T14:50:53Z #15 2.725 90050K .......... .......... .......... .......... .......... 69% 68.8M 1s +2023-11-07T14:50:53Z #15 2.726 90100K .......... .......... .......... .......... .......... 69% 52.9M 1s +2023-11-07T14:50:53Z #15 2.727 90150K .......... .......... .......... .......... .......... 69% 149M 1s +2023-11-07T14:50:53Z #15 2.727 90200K .......... .......... .......... .......... .......... 69% 9.12M 1s +2023-11-07T14:50:53Z #15 2.735 90250K .......... .......... .......... .......... .......... 69% 113M 1s +2023-11-07T14:50:53Z #15 2.735 90300K .......... .......... .......... .......... .......... 69% 127M 1s +2023-11-07T14:50:53Z #15 2.735 90350K .......... .......... .......... .......... .......... 69% 98.5M 1s +2023-11-07T14:50:53Z #15 2.735 90400K .......... .......... .......... .......... .......... 69% 121M 1s +2023-11-07T14:50:53Z #15 2.735 90450K .......... .......... .......... .......... .......... 69% 125M 1s +2023-11-07T14:50:53Z #15 2.735 90500K .......... .......... .......... .......... .......... 69% 104M 1s +2023-11-07T14:50:53Z #15 2.735 90550K .......... .......... .......... .......... .......... 69% 130M 1s +2023-11-07T14:50:53Z #15 2.735 90600K .......... .......... .......... .......... .......... 69% 69.2M 1s +2023-11-07T14:50:53Z #15 2.737 90650K .......... .......... .......... .......... .......... 70% 97.1M 1s +2023-11-07T14:50:53Z #15 2.737 90700K .......... .......... .......... .......... .......... 70% 127M 1s +2023-11-07T14:50:53Z #15 2.737 90750K .......... .......... .......... .......... .......... 70% 138M 1s +2023-11-07T14:50:53Z #15 2.738 90800K .......... .......... .......... .......... .......... 70% 137M 1s +2023-11-07T14:50:53Z #15 2.738 90850K .......... .......... .......... .......... .......... 70% 122M 1s +2023-11-07T14:50:53Z #15 2.738 90900K .......... .......... .......... .......... .......... 70% 131M 1s +2023-11-07T14:50:53Z #15 2.738 90950K .......... .......... .......... .......... .......... 70% 119M 1s +2023-11-07T14:50:53Z #15 2.739 91000K .......... .......... .......... .......... .......... 70% 129M 1s +2023-11-07T14:50:53Z #15 2.739 91050K .......... .......... .......... .......... .......... 70% 104M 1s +2023-11-07T14:50:53Z #15 2.740 91100K .......... .......... .......... .......... .......... 70% 122M 1s +2023-11-07T14:50:53Z #15 2.740 91150K .......... .......... .......... .......... .......... 70% 119M 1s +2023-11-07T14:50:53Z #15 2.741 91200K .......... .......... .......... .......... .......... 70% 141M 1s +2023-11-07T14:50:53Z #15 2.745 91250K .......... .......... .......... .......... .......... 70% 162M 1s +2023-11-07T14:50:53Z #15 2.745 91300K .......... .......... .......... .......... .......... 70% 190M 1s +2023-11-07T14:50:53Z #15 2.745 91350K .......... .......... .......... .......... .......... 70% 144M 1s +2023-11-07T14:50:53Z #15 2.745 91400K .......... .......... .......... .......... .......... 70% 170M 1s +2023-11-07T14:50:53Z #15 2.745 91450K .......... .......... .......... .......... .......... 70% 171M 1s +2023-11-07T14:50:53Z #15 2.745 91500K .......... .......... .......... .......... .......... 70% 146M 1s +2023-11-07T14:50:53Z #15 2.745 91550K .......... .......... .......... .......... .......... 70% 138M 1s +2023-11-07T14:50:53Z #15 2.745 91600K .......... .......... .......... .......... .......... 70% 158M 1s +2023-11-07T14:50:53Z #15 2.745 91650K .......... .......... .......... .......... .......... 70% 174M 1s +2023-11-07T14:50:53Z #15 2.745 91700K .......... .......... .......... .......... .......... 70% 127M 1s +2023-11-07T14:50:53Z #15 2.745 91750K .......... .......... .......... .......... .......... 70% 25.8M 1s +2023-11-07T14:50:53Z #15 2.746 91800K .......... .......... .......... .......... .......... 70% 110M 1s +2023-11-07T14:50:53Z #15 2.747 91850K .......... .......... .......... .......... .......... 70% 112M 1s +2023-11-07T14:50:53Z #15 2.747 91900K .......... .......... .......... .......... .......... 70% 93.0M 1s +2023-11-07T14:50:53Z #15 2.747 91950K .......... .......... .......... .......... .......... 71% 119M 1s +2023-11-07T14:50:53Z #15 2.748 92000K .......... .......... .......... .......... .......... 71% 114M 1s +2023-11-07T14:50:53Z #15 2.748 92050K .......... .......... .......... .......... .......... 71% 108M 1s +2023-11-07T14:50:53Z #15 2.749 92100K .......... .......... .......... .......... .......... 71% 105M 1s +2023-11-07T14:50:53Z #15 2.749 92150K .......... .......... .......... .......... .......... 71% 126M 1s +2023-11-07T14:50:53Z #15 2.750 92200K .......... .......... .......... .......... .......... 71% 107M 1s +2023-11-07T14:50:53Z #15 2.750 92250K .......... .......... .......... .......... .......... 71% 118M 1s +2023-11-07T14:50:53Z #15 2.750 92300K .......... .......... .......... .......... .......... 71% 128M 1s +2023-11-07T14:50:53Z #15 2.751 92350K .......... .......... .......... .......... .......... 71% 112M 1s +2023-11-07T14:50:53Z #15 2.751 92400K .......... .......... .......... .......... .......... 71% 122M 1s +2023-11-07T14:50:53Z #15 2.752 92450K .......... .......... .......... .......... .......... 71% 118M 1s +2023-11-07T14:50:53Z #15 2.752 92500K .......... .......... .......... .......... .......... 71% 82.9M 1s +2023-11-07T14:50:53Z #15 2.753 92550K .......... .......... .......... .......... .......... 71% 112M 1s +2023-11-07T14:50:53Z #15 2.753 92600K .......... .......... .......... .......... .......... 71% 98.2M 1s +2023-11-07T14:50:53Z #15 2.754 92650K .......... .......... .......... .......... .......... 71% 116M 1s +2023-11-07T14:50:53Z #15 2.754 92700K .......... .......... .......... .......... .......... 71% 110M 1s +2023-11-07T14:50:53Z #15 2.755 92750K .......... .......... .......... .......... .......... 71% 112M 1s +2023-11-07T14:50:53Z #15 2.761 92800K .......... .......... .......... .......... .......... 71% 40.0M 1s +2023-11-07T14:50:53Z #15 2.761 92850K .......... .......... .......... .......... .......... 71% 122M 1s +2023-11-07T14:50:53Z #15 2.761 92900K .......... .......... .......... .......... .......... 71% 143M 1s +2023-11-07T14:50:53Z #15 2.761 92950K .......... .......... .......... .......... .......... 71% 167M 1s +2023-11-07T14:50:53Z #15 2.761 93000K .......... .......... .......... .......... .......... 71% 168M 1s +2023-11-07T14:50:53Z #15 2.761 93050K .......... .......... .......... .......... .......... 71% 140M 1s +2023-11-07T14:50:53Z #15 2.761 93100K .......... .......... .......... .......... .......... 71% 148M 1s +2023-11-07T14:50:53Z #15 2.761 93150K .......... .......... .......... .......... .......... 71% 165M 1s +2023-11-07T14:50:53Z #15 2.761 93200K .......... .......... .......... .......... .......... 71% 145M 1s +2023-11-07T14:50:53Z #15 2.761 93250K .......... .......... .......... .......... .......... 72% 109M 1s +2023-11-07T14:50:53Z #15 2.761 93300K .......... .......... .......... .......... .......... 72% 146M 1s +2023-11-07T14:50:53Z #15 2.761 93350K .......... .......... .......... .......... .......... 72% 171M 1s +2023-11-07T14:50:53Z #15 2.761 93400K .......... .......... .......... .......... .......... 72% 143M 1s +2023-11-07T14:50:53Z #15 2.761 93450K .......... .......... .......... .......... .......... 72% 90.2M 1s +2023-11-07T14:50:53Z #15 2.761 93500K .......... .......... .......... .......... .......... 72% 89.2M 1s +2023-11-07T14:50:53Z #15 2.761 93550K .......... .......... .......... .......... .......... 72% 54.9M 1s +2023-11-07T14:50:53Z #15 2.762 93600K .......... .......... .......... .......... .......... 72% 38.8M 1s +2023-11-07T14:50:53Z #15 2.763 93650K .......... .......... .......... .......... .......... 72% 87.4M 1s +2023-11-07T14:50:53Z #15 2.764 93700K .......... .......... .......... .......... .......... 72% 130M 1s +2023-11-07T14:50:53Z #15 2.764 93750K .......... .......... .......... .......... .......... 72% 110M 1s +2023-11-07T14:50:53Z #15 2.765 93800K .......... .......... .......... .......... .......... 72% 123M 1s +2023-11-07T14:50:53Z #15 2.765 93850K .......... .......... .......... .......... .......... 72% 119M 1s +2023-11-07T14:50:53Z #15 2.766 93900K .......... .......... .......... .......... .......... 72% 128M 1s +2023-11-07T14:50:53Z #15 2.766 93950K .......... .......... .......... .......... .......... 72% 126M 1s +2023-11-07T14:50:53Z #15 2.766 94000K .......... .......... .......... .......... .......... 72% 127M 1s +2023-11-07T14:50:53Z #15 2.767 94050K .......... .......... .......... .......... .......... 72% 106M 1s +2023-11-07T14:50:53Z #15 2.767 94100K .......... .......... .......... .......... .......... 72% 113M 1s +2023-11-07T14:50:53Z #15 2.768 94150K .......... .......... .......... .......... .......... 72% 132M 1s +2023-11-07T14:50:53Z #15 2.768 94200K .......... .......... .......... .......... .......... 72% 107M 1s +2023-11-07T14:50:53Z #15 2.768 94250K .......... .......... .......... .......... .......... 72% 99.0M 1s +2023-11-07T14:50:53Z #15 2.769 94300K .......... .......... .......... .......... .......... 72% 122M 1s +2023-11-07T14:50:53Z #15 2.770 94350K .......... .......... .......... .......... .......... 72% 92.3M 1s +2023-11-07T14:50:53Z #15 2.770 94400K .......... .......... .......... .......... .......... 72% 127M 1s +2023-11-07T14:50:53Z #15 2.770 94450K .......... .......... .......... .......... .......... 72% 123M 1s +2023-11-07T14:50:53Z #15 2.771 94500K .......... .......... .......... .......... .......... 72% 103M 1s +2023-11-07T14:50:53Z #15 2.771 94550K .......... .......... .......... .......... .......... 73% 104M 1s +2023-11-07T14:50:53Z #15 2.772 94600K .......... .......... .......... .......... .......... 73% 145M 1s +2023-11-07T14:50:53Z #15 2.772 94650K .......... .......... .......... .......... .......... 73% 110M 1s +2023-11-07T14:50:53Z #15 2.772 94700K .......... .......... .......... .......... .......... 73% 101M 1s +2023-11-07T14:50:53Z #15 2.778 94750K .......... .......... .......... .......... .......... 73% 41.9M 1s +2023-11-07T14:50:53Z #15 2.778 94800K .......... .......... .......... .......... .......... 73% 176M 1s +2023-11-07T14:50:53Z #15 2.778 94850K .......... .......... .......... .......... .......... 73% 145M 1s +2023-11-07T14:50:53Z #15 2.778 94900K .......... .......... .......... .......... .......... 73% 155M 1s +2023-11-07T14:50:53Z #15 2.778 94950K .......... .......... .......... .......... .......... 73% 152M 1s +2023-11-07T14:50:53Z #15 2.778 95000K .......... .......... .......... .......... .......... 73% 158M 1s +2023-11-07T14:50:53Z #15 2.778 95050K .......... .......... .......... .......... .......... 73% 155M 1s +2023-11-07T14:50:53Z #15 2.778 95100K .......... .......... .......... .......... .......... 73% 128M 1s +2023-11-07T14:50:53Z #15 2.778 95150K .......... .......... .......... .......... .......... 73% 96.8M 1s +2023-11-07T14:50:53Z #15 2.778 95200K .......... .......... .......... .......... .......... 73% 56.2M 1s +2023-11-07T14:50:53Z #15 2.778 95250K .......... .......... .......... .......... .......... 73% 49.7M 1s +2023-11-07T14:50:53Z #15 2.779 95300K .......... .......... .......... .......... .......... 73% 41.5M 1s +2023-11-07T14:50:53Z #15 2.785 95350K .......... .......... .......... .......... .......... 73% 158M 1s +2023-11-07T14:50:53Z #15 2.785 95400K .......... .......... .......... .......... .......... 73% 120M 1s +2023-11-07T14:50:53Z #15 2.785 95450K .......... .......... .......... .......... .......... 73% 136M 1s +2023-11-07T14:50:53Z #15 2.785 95500K .......... .......... .......... .......... .......... 73% 163M 1s +2023-11-07T14:50:53Z #15 2.785 95550K .......... .......... .......... .......... .......... 73% 160M 1s +2023-11-07T14:50:53Z #15 2.785 95600K .......... .......... .......... .......... .......... 73% 162M 1s +2023-11-07T14:50:53Z #15 2.785 95650K .......... .......... .......... .......... .......... 73% 142M 1s +2023-11-07T14:50:53Z #15 2.785 95700K .......... .......... .......... .......... .......... 73% 157M 1s +2023-11-07T14:50:53Z #15 2.785 95750K .......... .......... .......... .......... .......... 73% 136M 1s +2023-11-07T14:50:53Z #15 2.785 95800K .......... .......... .......... .......... .......... 73% 156M 1s +2023-11-07T14:50:53Z #15 2.785 95850K .......... .......... .......... .......... .......... 74% 143M 1s +2023-11-07T14:50:53Z #15 2.785 95900K .......... .......... .......... .......... .......... 74% 126M 1s +2023-11-07T14:50:53Z #15 2.785 95950K .......... .......... .......... .......... .......... 74% 137M 1s +2023-11-07T14:50:53Z #15 2.785 96000K .......... .......... .......... .......... .......... 74% 91.8M 1s +2023-11-07T14:50:53Z #15 2.785 96050K .......... .......... .......... .......... .......... 74% 119M 1s +2023-11-07T14:50:53Z #15 2.785 96100K .......... .......... .......... .......... .......... 74% 106M 1s +2023-11-07T14:50:53Z #15 2.786 96150K .......... .......... .......... .......... .......... 74% 64.7M 1s +2023-11-07T14:50:53Z #15 2.787 96200K .......... .......... .......... .......... .......... 74% 42.3M 1s +2023-11-07T14:50:53Z #15 2.788 96250K .......... .......... .......... .......... .......... 74% 39.2M 1s +2023-11-07T14:50:53Z #15 2.789 96300K .......... .......... .......... .......... .......... 74% 38.5M 1s +2023-11-07T14:50:53Z #15 2.790 96350K .......... .......... .......... .......... .......... 74% 56.9M 1s +2023-11-07T14:50:53Z #15 2.792 96400K .......... .......... .......... .......... .......... 74% 93.1M 1s +2023-11-07T14:50:53Z #15 2.792 96450K .......... .......... .......... .......... .......... 74% 130M 1s +2023-11-07T14:50:53Z #15 2.792 96500K .......... .......... .......... .......... .......... 74% 40.7M 1s +2023-11-07T14:50:53Z #15 2.794 96550K .......... .......... .......... .......... .......... 74% 123M 1s +2023-11-07T14:50:53Z #15 2.794 96600K .......... .......... .......... .......... .......... 74% 125M 1s +2023-11-07T14:50:53Z #15 2.795 96650K .......... .......... .......... .......... .......... 74% 102M 1s +2023-11-07T14:50:53Z #15 2.795 96700K .......... .......... .......... .......... .......... 74% 123M 1s +2023-11-07T14:50:53Z #15 2.795 96750K .......... .......... .......... .......... .......... 74% 70.7M 1s +2023-11-07T14:50:53Z #15 2.796 96800K .......... .......... .......... .......... .......... 74% 94.6M 1s +2023-11-07T14:50:53Z #15 2.796 96850K .......... .......... .......... .......... .......... 74% 119M 1s +2023-11-07T14:50:53Z #15 2.796 96900K .......... .......... .......... .......... .......... 74% 54.1M 1s +2023-11-07T14:50:53Z #15 2.801 96950K .......... .......... .......... .......... .......... 74% 98.9M 1s +2023-11-07T14:50:53Z #15 2.801 97000K .......... .......... .......... .......... .......... 74% 168M 1s +2023-11-07T14:50:53Z #15 2.801 97050K .......... .......... .......... .......... .......... 74% 156M 1s +2023-11-07T14:50:53Z #15 2.801 97100K .......... .......... .......... .......... .......... 74% 156M 1s +2023-11-07T14:50:53Z #15 2.801 97150K .......... .......... .......... .......... .......... 75% 75.8M 1s +2023-11-07T14:50:53Z #15 2.801 97200K .......... .......... .......... .......... .......... 75% 174M 1s +2023-11-07T14:50:53Z #15 2.801 97250K .......... .......... .......... .......... .......... 75% 85.8M 1s +2023-11-07T14:50:53Z #15 2.801 97300K .......... .......... .......... .......... .......... 75% 12.1M 1s +2023-11-07T14:50:53Z #15 2.809 97350K .......... .......... .......... .......... .......... 75% 139M 1s +2023-11-07T14:50:53Z #15 2.809 97400K .......... .......... .......... .......... .......... 75% 179M 1s +2023-11-07T14:50:53Z #15 2.809 97450K .......... .......... .......... .......... .......... 75% 146M 1s +2023-11-07T14:50:53Z #15 2.809 97500K .......... .......... .......... .......... .......... 75% 160M 1s +2023-11-07T14:50:53Z #15 2.809 97550K .......... .......... .......... .......... .......... 75% 160M 1s +2023-11-07T14:50:53Z #15 2.809 97600K .......... .......... .......... .......... .......... 75% 177M 1s +2023-11-07T14:50:53Z #15 2.809 97650K .......... .......... .......... .......... .......... 75% 174M 1s +2023-11-07T14:50:53Z #15 2.809 97700K .......... .......... .......... .......... .......... 75% 150M 1s +2023-11-07T14:50:53Z #15 2.809 97750K .......... .......... .......... .......... .......... 75% 62.7M 1s +2023-11-07T14:50:53Z #15 2.809 97800K .......... .......... .......... .......... .......... 75% 125M 1s +2023-11-07T14:50:53Z #15 2.809 97850K .......... .......... .......... .......... .......... 75% 164M 1s +2023-11-07T14:50:53Z #15 2.809 97900K .......... .......... .......... .......... .......... 75% 7.54M 1s +2023-11-07T14:50:53Z #15 2.817 97950K .......... .......... .......... .......... .......... 75% 66.8M 1s +2023-11-07T14:50:53Z #15 2.817 98000K .......... .......... .......... .......... .......... 75% 182M 1s +2023-11-07T14:50:53Z #15 2.817 98050K .......... .......... .......... .......... .......... 75% 58.0M 1s +2023-11-07T14:50:53Z #15 2.830 98100K .......... .......... .......... .......... .......... 75% 8.62M 1s +2023-11-07T14:50:53Z #15 2.830 98150K .......... .......... .......... .......... .......... 75% 169M 1s +2023-11-07T14:50:53Z #15 2.830 98200K .......... .......... .......... .......... .......... 75% 180M 1s +2023-11-07T14:50:53Z #15 2.830 98250K .......... .......... .......... .......... .......... 75% 162M 0s +2023-11-07T14:50:53Z #15 2.830 98300K .......... .......... .......... .......... .......... 75% 116M 0s +2023-11-07T14:50:53Z #15 2.830 98350K .......... .......... .......... .......... .......... 75% 72.1M 0s +2023-11-07T14:50:53Z #15 2.830 98400K .......... .......... .......... .......... .......... 75% 108M 0s +2023-11-07T14:50:53Z #15 2.830 98450K .......... .......... .......... .......... .......... 76% 81.4M 0s +2023-11-07T14:50:53Z #15 2.830 98500K .......... .......... .......... .......... .......... 76% 92.5M 0s +2023-11-07T14:50:53Z #15 2.830 98550K .......... .......... .......... .......... .......... 76% 84.5M 0s +2023-11-07T14:50:53Z #15 2.830 98600K .......... .......... .......... .......... .......... 76% 113M 0s +2023-11-07T14:50:53Z #15 2.830 98650K .......... .......... .......... .......... .......... 76% 66.8M 0s +2023-11-07T14:50:53Z #15 2.830 98700K .......... .......... .......... .......... .......... 76% 6.42M 0s +2023-11-07T14:50:53Z #15 2.842 98750K .......... .......... .......... .......... .......... 76% 165M 0s +2023-11-07T14:50:53Z #15 2.842 98800K .......... .......... .......... .......... .......... 76% 156M 0s +2023-11-07T14:50:53Z #15 2.842 98850K .......... .......... .......... .......... .......... 76% 181M 0s +2023-11-07T14:50:53Z #15 2.842 98900K .......... .......... .......... .......... .......... 76% 153M 0s +2023-11-07T14:50:53Z #15 2.842 98950K .......... .......... .......... .......... .......... 76% 97.5M 0s +2023-11-07T14:50:53Z #15 2.842 99000K .......... .......... .......... .......... .......... 76% 184M 0s +2023-11-07T14:50:53Z #15 2.842 99050K .......... .......... .......... .......... .......... 76% 183M 0s +2023-11-07T14:50:53Z #15 2.842 99100K .......... .......... .......... .......... .......... 76% 182M 0s +2023-11-07T14:50:53Z #15 2.842 99150K .......... .......... .......... .......... .......... 76% 76.9M 0s +2023-11-07T14:50:53Z #15 2.842 99200K .......... .......... .......... .......... .......... 76% 81.5M 0s +2023-11-07T14:50:53Z #15 2.842 99250K .......... .......... .......... .......... .......... 76% 151M 0s +2023-11-07T14:50:53Z #15 2.842 99300K .......... .......... .......... .......... .......... 76% 64.8M 0s +2023-11-07T14:50:53Z #15 2.844 99350K .......... .......... .......... .......... .......... 76% 5.91M 0s +2023-11-07T14:50:53Z #15 2.853 99400K .......... .......... .......... .......... .......... 76% 169M 0s +2023-11-07T14:50:53Z #15 2.853 99450K .......... .......... .......... .......... .......... 76% 81.6M 0s +2023-11-07T14:50:53Z #15 2.853 99500K .......... .......... .......... .......... .......... 76% 146M 0s +2023-11-07T14:50:53Z #15 2.853 99550K .......... .......... .......... .......... .......... 76% 183M 0s +2023-11-07T14:50:53Z #15 2.853 99600K .......... .......... .......... .......... .......... 76% 182M 0s +2023-11-07T14:50:53Z #15 2.853 99650K .......... .......... .......... .......... .......... 76% 182M 0s +2023-11-07T14:50:53Z #15 2.853 99700K .......... .......... .......... .......... .......... 76% 57.7M 0s +2023-11-07T14:50:53Z #15 2.853 99750K .......... .......... .......... .......... .......... 77% 85.6M 0s +2023-11-07T14:50:53Z #15 2.853 99800K .......... .......... .......... .......... .......... 77% 102M 0s +2023-11-07T14:50:53Z #15 2.853 99850K .......... .......... .......... .......... .......... 77% 183M 0s +2023-11-07T14:50:53Z #15 2.853 99900K .......... .......... .......... .......... .......... 77% 8.95M 0s +2023-11-07T14:50:53Z #15 2.861 99950K .......... .......... .......... .......... .......... 77% 169M 0s +2023-11-07T14:50:53Z #15 2.861 100000K .......... .......... .......... .......... .......... 77% 176M 0s +2023-11-07T14:50:53Z #15 2.861 100050K .......... .......... .......... .......... .......... 77% 180M 0s +2023-11-07T14:50:53Z #15 2.861 100100K .......... .......... .......... .......... .......... 77% 161M 0s +2023-11-07T14:50:53Z #15 2.861 100150K .......... .......... .......... .......... .......... 77% 173M 0s +2023-11-07T14:50:53Z #15 2.861 100200K .......... .......... .......... .......... .......... 77% 180M 0s +2023-11-07T14:50:53Z #15 2.861 100250K .......... .......... .......... .......... .......... 77% 180M 0s +2023-11-07T14:50:53Z #15 2.861 100300K .......... .......... .......... .......... .......... 77% 135M 0s +2023-11-07T14:50:53Z #15 2.861 100350K .......... .......... .......... .......... .......... 77% 175M 0s +2023-11-07T14:50:53Z #15 2.861 100400K .......... .......... .......... .......... .......... 77% 10.6M 0s +2023-11-07T14:50:53Z #15 2.873 100450K .......... .......... .......... .......... .......... 77% 153M 0s +2023-11-07T14:50:53Z #15 2.873 100500K .......... .......... .......... .......... .......... 77% 181M 0s +2023-11-07T14:50:53Z #15 2.873 100550K .......... .......... .......... .......... .......... 77% 176M 0s +2023-11-07T14:50:53Z #15 2.873 100600K .......... .......... .......... .......... .......... 77% 180M 0s +2023-11-07T14:50:53Z #15 2.873 100650K .......... .......... .......... .......... .......... 77% 131M 0s +2023-11-07T14:50:53Z #15 2.873 100700K .......... .......... .......... .......... .......... 77% 156M 0s +2023-11-07T14:50:53Z #15 2.873 100750K .......... .......... .......... .......... .......... 77% 180M 0s +2023-11-07T14:50:53Z #15 2.873 100800K .......... .......... .......... .......... .......... 77% 175M 0s +2023-11-07T14:50:53Z #15 2.873 100850K .......... .......... .......... .......... .......... 77% 171M 0s +2023-11-07T14:50:53Z #15 2.873 100900K .......... .......... .......... .......... .......... 77% 113M 0s +2023-11-07T14:50:53Z #15 2.873 100950K .......... .......... .......... .......... .......... 77% 155M 0s +2023-11-07T14:50:53Z #15 2.873 101000K .......... .......... .......... .......... .......... 77% 156M 0s +2023-11-07T14:50:53Z #15 2.873 101050K .......... .......... .......... .......... .......... 78% 187M 0s +2023-11-07T14:50:53Z #15 2.873 101100K .......... .......... .......... .......... .......... 78% 55.1M 0s +2023-11-07T14:50:53Z #15 2.873 101150K .......... .......... .......... .......... .......... 78% 147M 0s +2023-11-07T14:50:53Z #15 2.873 101200K .......... .......... .......... .......... .......... 78% 178M 0s +2023-11-07T14:50:53Z #15 2.873 101250K .......... .......... .......... .......... .......... 78% 51.2M 0s +2023-11-07T14:50:53Z #15 2.873 101300K .......... .......... .......... .......... .......... 78% 8.01M 0s +2023-11-07T14:50:53Z #15 2.878 101350K .......... .......... .......... .......... .......... 78% 6.37M 0s +2023-11-07T14:50:53Z #15 2.886 101400K .......... .......... .......... .......... .......... 78% 33.8M 0s +2023-11-07T14:50:53Z #15 2.888 101450K .......... .......... .......... .......... .......... 78% 122M 0s +2023-11-07T14:50:53Z #15 2.888 101500K .......... .......... .......... .......... .......... 78% 148M 0s +2023-11-07T14:50:53Z #15 2.888 101550K .......... .......... .......... .......... .......... 78% 131M 0s +2023-11-07T14:50:53Z #15 2.888 101600K .......... .......... .......... .......... .......... 78% 161M 0s +2023-11-07T14:50:53Z #15 2.888 101650K .......... .......... .......... .......... .......... 78% 177M 0s +2023-11-07T14:50:53Z #15 2.888 101700K .......... .......... .......... .......... .......... 78% 77.6M 0s +2023-11-07T14:50:53Z #15 2.889 101750K .......... .......... .......... .......... .......... 78% 28.2M 0s +2023-11-07T14:50:53Z #15 2.891 101800K .......... .......... .......... .......... .......... 78% 70.6M 0s +2023-11-07T14:50:53Z #15 2.891 101850K .......... .......... .......... .......... .......... 78% 62.4M 0s +2023-11-07T14:50:53Z #15 2.892 101900K .......... .......... .......... .......... .......... 78% 59.2M 0s +2023-11-07T14:50:53Z #15 2.893 101950K .......... .......... .......... .......... .......... 78% 80.6M 0s +2023-11-07T14:50:53Z #15 2.894 102000K .......... .......... .......... .......... .......... 78% 34.3M 0s +2023-11-07T14:50:53Z #15 2.895 102050K .......... .......... .......... .......... .......... 78% 15.0M 0s +2023-11-07T14:50:53Z #15 2.898 102100K .......... .......... .......... .......... .......... 78% 40.3M 0s +2023-11-07T14:50:53Z #15 2.899 102150K .......... .......... .......... .......... .......... 78% 30.8M 0s +2023-11-07T14:50:53Z #15 2.901 102200K .......... .......... .......... .......... .......... 78% 14.5M 0s +2023-11-07T14:50:53Z #15 2.904 102250K .......... .......... .......... .......... .......... 78% 23.4M 0s +2023-11-07T14:50:53Z #15 2.906 102300K .......... .......... .......... .......... .......... 78% 27.7M 0s +2023-11-07T14:50:53Z #15 2.908 102350K .......... .......... .......... .......... .......... 79% 34.4M 0s +2023-11-07T14:50:53Z #15 2.912 102400K .......... .......... .......... .......... .......... 79% 161M 0s +2023-11-07T14:50:53Z #15 2.912 102450K .......... .......... .......... .......... .......... 79% 181M 0s +2023-11-07T14:50:53Z #15 2.912 102500K .......... .......... .......... .......... .......... 79% 182M 0s +2023-11-07T14:50:53Z #15 2.912 102550K .......... .......... .......... .......... .......... 79% 155M 0s +2023-11-07T14:50:53Z #15 2.912 102600K .......... .......... .......... .......... .......... 79% 126M 0s +2023-11-07T14:50:53Z #15 2.912 102650K .......... .......... .......... .......... .......... 79% 185M 0s +2023-11-07T14:50:53Z #15 2.912 102700K .......... .......... .......... .......... .......... 79% 185M 0s +2023-11-07T14:50:53Z #15 2.912 102750K .......... .......... .......... .......... .......... 79% 167M 0s +2023-11-07T14:50:53Z #15 2.912 102800K .......... .......... .......... .......... .......... 79% 187M 0s +2023-11-07T14:50:53Z #15 2.912 102850K .......... .......... .......... .......... .......... 79% 41.5M 0s +2023-11-07T14:50:53Z #15 2.914 102900K .......... .......... .......... .......... .......... 79% 10.9M 0s +2023-11-07T14:50:53Z #15 2.918 102950K .......... .......... .......... .......... .......... 79% 16.7M 0s +2023-11-07T14:50:53Z #15 2.921 103000K .......... .......... .......... .......... .......... 79% 43.5M 0s +2023-11-07T14:50:53Z #15 2.928 103050K .......... .......... .......... .......... .......... 79% 22.8M 0s +2023-11-07T14:50:53Z #15 2.928 103100K .......... .......... .......... .......... .......... 79% 184M 0s +2023-11-07T14:50:53Z #15 2.928 103150K .......... .......... .......... .......... .......... 79% 156M 0s +2023-11-07T14:50:53Z #15 2.928 103200K .......... .......... .......... .......... .......... 79% 159M 0s +2023-11-07T14:50:53Z #15 2.928 103250K .......... .......... .......... .......... .......... 79% 116M 0s +2023-11-07T14:50:53Z #15 2.928 103300K .......... .......... .......... .......... .......... 79% 124M 0s +2023-11-07T14:50:53Z #15 2.928 103350K .......... .......... .......... .......... .......... 79% 181M 0s +2023-11-07T14:50:53Z #15 2.928 103400K .......... .......... .......... .......... .......... 79% 184M 0s +2023-11-07T14:50:53Z #15 2.928 103450K .......... .......... .......... .......... .......... 79% 82.1M 0s +2023-11-07T14:50:53Z #15 2.928 103500K .......... .......... .......... .......... .......... 79% 110M 0s +2023-11-07T14:50:53Z #15 2.928 103550K .......... .......... .......... .......... .......... 79% 76.5M 0s +2023-11-07T14:50:53Z #15 2.928 103600K .......... .......... .......... .......... .......... 79% 133M 0s +2023-11-07T14:50:53Z #15 2.928 103650K .......... .......... .......... .......... .......... 80% 12.2M 0s +2023-11-07T14:50:53Z #15 2.937 103700K .......... .......... .......... .......... .......... 80% 73.8M 0s +2023-11-07T14:50:53Z #15 2.937 103750K .......... .......... .......... .......... .......... 80% 179M 0s +2023-11-07T14:50:53Z #15 2.937 103800K .......... .......... .......... .......... .......... 80% 178M 0s +2023-11-07T14:50:53Z #15 2.937 103850K .......... .......... .......... .......... .......... 80% 164M 0s +2023-11-07T14:50:53Z #15 2.937 103900K .......... .......... .......... .......... .......... 80% 176M 0s +2023-11-07T14:50:53Z #15 2.937 103950K .......... .......... .......... .......... .......... 80% 165M 0s +2023-11-07T14:50:53Z #15 2.937 104000K .......... .......... .......... .......... .......... 80% 152M 0s +2023-11-07T14:50:53Z #15 2.937 104050K .......... .......... .......... .......... .......... 80% 133M 0s +2023-11-07T14:50:53Z #15 2.937 104100K .......... .......... .......... .......... .......... 80% 181M 0s +2023-11-07T14:50:53Z #15 2.937 104150K .......... .......... .......... .......... .......... 80% 180M 0s +2023-11-07T14:50:53Z #15 2.937 104200K .......... .......... .......... .......... .......... 80% 164M 0s +2023-11-07T14:50:53Z #15 2.937 104250K .......... .......... .......... .......... .......... 80% 178M 0s +2023-11-07T14:50:53Z #15 2.937 104300K .......... .......... .......... .......... .......... 80% 6.89M 0s +2023-11-07T14:50:53Z #15 2.948 104350K .......... .......... .......... .......... .......... 80% 151M 0s +2023-11-07T14:50:53Z #15 2.948 104400K .......... .......... .......... .......... .......... 80% 77.7M 0s +2023-11-07T14:50:53Z #15 2.948 104450K .......... .......... .......... .......... .......... 80% 63.9M 0s +2023-11-07T14:50:53Z #15 2.948 104500K .......... .......... .......... .......... .......... 80% 20.3M 0s +2023-11-07T14:50:53Z #15 2.948 104550K .......... .......... .......... .......... .......... 80% 174M 0s +2023-11-07T14:50:53Z #15 2.948 104600K .......... .......... .......... .......... .......... 80% 156M 0s +2023-11-07T14:50:53Z #15 2.948 104650K .......... .......... .......... .......... .......... 80% 187M 0s +2023-11-07T14:50:53Z #15 2.948 104700K .......... .......... .......... .......... .......... 80% 25.6M 0s +2023-11-07T14:50:53Z #15 2.951 104750K .......... .......... .......... .......... .......... 80% 7.42M 0s +2023-11-07T14:50:53Z #15 2.960 104800K .......... .......... .......... .......... .......... 80% 150M 0s +2023-11-07T14:50:53Z #15 2.960 104850K .......... .......... .......... .......... .......... 80% 150M 0s +2023-11-07T14:50:53Z #15 2.960 104900K .......... .......... .......... .......... .......... 81% 183M 0s +2023-11-07T14:50:53Z #15 2.960 104950K .......... .......... .......... .......... .......... 81% 185M 0s +2023-11-07T14:50:53Z #15 2.960 105000K .......... .......... .......... .......... .......... 81% 116M 0s +2023-11-07T14:50:53Z #15 2.960 105050K .......... .......... .......... .......... .......... 81% 164M 0s +2023-11-07T14:50:53Z #15 2.960 105100K .......... .......... .......... .......... .......... 81% 181M 0s +2023-11-07T14:50:53Z #15 2.960 105150K .......... .......... .......... .......... .......... 81% 169M 0s +2023-11-07T14:50:53Z #15 2.960 105200K .......... .......... .......... .......... .......... 81% 136M 0s +2023-11-07T14:50:53Z #15 2.960 105250K .......... .......... .......... .......... .......... 81% 163M 0s +2023-11-07T14:50:53Z #15 2.960 105300K .......... .......... .......... .......... .......... 81% 183M 0s +2023-11-07T14:50:53Z #15 2.960 105350K .......... .......... .......... .......... .......... 81% 182M 0s +2023-11-07T14:50:53Z #15 2.960 105400K .......... .......... .......... .......... .......... 81% 6.26M 0s +2023-11-07T14:50:53Z #15 2.972 105450K .......... .......... .......... .......... .......... 81% 134M 0s +2023-11-07T14:50:53Z #15 2.972 105500K .......... .......... .......... .......... .......... 81% 176M 0s +2023-11-07T14:50:53Z #15 2.972 105550K .......... .......... .......... .......... .......... 81% 175M 0s +2023-11-07T14:50:53Z #15 2.972 105600K .......... .......... .......... .......... .......... 81% 154M 0s +2023-11-07T14:50:53Z #15 2.972 105650K .......... .......... .......... .......... .......... 81% 79.7M 0s +2023-11-07T14:50:53Z #15 2.972 105700K .......... .......... .......... .......... .......... 81% 154M 0s +2023-11-07T14:50:53Z #15 2.972 105750K .......... .......... .......... .......... .......... 81% 178M 0s +2023-11-07T14:50:53Z #15 2.972 105800K .......... .......... .......... .......... .......... 81% 162M 0s +2023-11-07T14:50:53Z #15 2.972 105850K .......... .......... .......... .......... .......... 81% 169M 0s +2023-11-07T14:50:53Z #15 2.972 105900K .......... .......... .......... .......... .......... 81% 77.6M 0s +2023-11-07T14:50:53Z #15 2.972 105950K .......... .......... .......... .......... .......... 81% 176M 0s +2023-11-07T14:50:53Z #15 2.972 106000K .......... .......... .......... .......... .......... 81% 14.7M 0s +2023-11-07T14:50:53Z #15 2.976 106050K .......... .......... .......... .......... .......... 81% 15.0M 0s +2023-11-07T14:50:53Z #15 2.980 106100K .......... .......... .......... .......... .......... 81% 171M 0s +2023-11-07T14:50:53Z #15 2.980 106150K .......... .......... .......... .......... .......... 81% 161M 0s +2023-11-07T14:50:53Z #15 2.980 106200K .......... .......... .......... .......... .......... 82% 157M 0s +2023-11-07T14:50:53Z #15 2.980 106250K .......... .......... .......... .......... .......... 82% 171M 0s +2023-11-07T14:50:53Z #15 2.980 106300K .......... .......... .......... .......... .......... 82% 178M 0s +2023-11-07T14:50:53Z #15 2.980 106350K .......... .......... .......... .......... .......... 82% 21.4M 0s +2023-11-07T14:50:53Z #15 2.984 106400K .......... .......... .......... .......... .......... 82% 17.4M 0s +2023-11-07T14:50:53Z #15 2.988 106450K .......... .......... .......... .......... .......... 82% 174M 0s +2023-11-07T14:50:53Z #15 2.988 106500K .......... .......... .......... .......... .......... 82% 176M 0s +2023-11-07T14:50:53Z #15 2.988 106550K .......... .......... .......... .......... .......... 82% 182M 0s +2023-11-07T14:50:53Z #15 2.988 106600K .......... .......... .......... .......... .......... 82% 177M 0s +2023-11-07T14:50:53Z #15 2.988 106650K .......... .......... .......... .......... .......... 82% 76.8M 0s +2023-11-07T14:50:53Z #15 2.988 106700K .......... .......... .......... .......... .......... 82% 123M 0s +2023-11-07T14:50:53Z #15 2.988 106750K .......... .......... .......... .......... .......... 82% 128M 0s +2023-11-07T14:50:53Z #15 2.988 106800K .......... .......... .......... .......... .......... 82% 182M 0s +2023-11-07T14:50:53Z #15 2.988 106850K .......... .......... .......... .......... .......... 82% 180M 0s +2023-11-07T14:50:53Z #15 2.988 106900K .......... .......... .......... .......... .......... 82% 13.6M 0s +2023-11-07T14:50:53Z #15 2.993 106950K .......... .......... .......... .......... .......... 82% 13.2M 0s +2023-11-07T14:50:53Z #15 3.000 107000K .......... .......... .......... .......... .......... 82% 174M 0s +2023-11-07T14:50:53Z #15 3.000 107050K .......... .......... .......... .......... .......... 82% 180M 0s +2023-11-07T14:50:53Z #15 3.000 107100K .......... .......... .......... .......... .......... 82% 166M 0s +2023-11-07T14:50:53Z #15 3.000 107150K .......... .......... .......... .......... .......... 82% 94.7M 0s +2023-11-07T14:50:53Z #15 3.000 107200K .......... .......... .......... .......... .......... 82% 135M 0s +2023-11-07T14:50:53Z #15 3.000 107250K .......... .......... .......... .......... .......... 82% 180M 0s +2023-11-07T14:50:53Z #15 3.000 107300K .......... .......... .......... .......... .......... 82% 182M 0s +2023-11-07T14:50:53Z #15 3.000 107350K .......... .......... .......... .......... .......... 82% 184M 0s +2023-11-07T14:50:53Z #15 3.000 107400K .......... .......... .......... .......... .......... 82% 97.5M 0s +2023-11-07T14:50:53Z #15 3.000 107450K .......... .......... .......... .......... .......... 82% 89.4M 0s +2023-11-07T14:50:53Z #15 3.000 107500K .......... .......... .......... .......... .......... 83% 167M 0s +2023-11-07T14:50:53Z #15 3.000 107550K .......... .......... .......... .......... .......... 83% 115M 0s +2023-11-07T14:50:53Z #15 3.000 107600K .......... .......... .......... .......... .......... 83% 182M 0s +2023-11-07T14:50:53Z #15 3.000 107650K .......... .......... .......... .......... .......... 83% 9.18M 0s +2023-11-07T14:50:53Z #15 3.008 107700K .......... .......... .......... .......... .......... 83% 128M 0s +2023-11-07T14:50:53Z #15 3.008 107750K .......... .......... .......... .......... .......... 83% 118M 0s +2023-11-07T14:50:53Z #15 3.008 107800K .......... .......... .......... .......... .......... 83% 147M 0s +2023-11-07T14:50:53Z #15 3.008 107850K .......... .......... .......... .......... .......... 83% 88.9M 0s +2023-11-07T14:50:53Z #15 3.008 107900K .......... .......... .......... .......... .......... 83% 83.2M 0s +2023-11-07T14:50:53Z #15 3.008 107950K .......... .......... .......... .......... .......... 83% 101M 0s +2023-11-07T14:50:53Z #15 3.008 108000K .......... .......... .......... .......... .......... 83% 39.1M 0s +2023-11-07T14:50:53Z #15 3.012 108050K .......... .......... .......... .......... .......... 83% 97.5M 0s +2023-11-07T14:50:53Z #15 3.012 108100K .......... .......... .......... .......... .......... 83% 133M 0s +2023-11-07T14:50:53Z #15 3.012 108150K .......... .......... .......... .......... .......... 83% 77.7M 0s +2023-11-07T14:50:53Z #15 3.012 108200K .......... .......... .......... .......... .......... 83% 125M 0s +2023-11-07T14:50:53Z #15 3.012 108250K .......... .......... .......... .......... .......... 83% 129M 0s +2023-11-07T14:50:53Z #15 3.012 108300K .......... .......... .......... .......... .......... 83% 112M 0s +2023-11-07T14:50:53Z #15 3.012 108350K .......... .......... .......... .......... .......... 83% 94.1M 0s +2023-11-07T14:50:53Z #15 3.016 108400K .......... .......... .......... .......... .......... 83% 116M 0s +2023-11-07T14:50:53Z #15 3.016 108450K .......... .......... .......... .......... .......... 83% 132M 0s +2023-11-07T14:50:53Z #15 3.016 108500K .......... .......... .......... .......... .......... 83% 114M 0s +2023-11-07T14:50:53Z #15 3.016 108550K .......... .......... .......... .......... .......... 83% 121M 0s +2023-11-07T14:50:53Z #15 3.016 108600K .......... .......... .......... .......... .......... 83% 113M 0s +2023-11-07T14:50:53Z #15 3.016 108650K .......... .......... .......... .......... .......... 83% 124M 0s +2023-11-07T14:50:53Z #15 3.016 108700K .......... .......... .......... .......... .......... 83% 116M 0s +2023-11-07T14:50:53Z #15 3.016 108750K .......... .......... .......... .......... .......... 83% 75.7M 0s +2023-11-07T14:50:53Z #15 3.016 108800K .......... .......... .......... .......... .......... 84% 65.4M 0s +2023-11-07T14:50:53Z #15 3.017 108850K .......... .......... .......... .......... .......... 84% 82.7M 0s +2023-11-07T14:50:53Z #15 3.017 108900K .......... .......... .......... .......... .......... 84% 113M 0s +2023-11-07T14:50:53Z #15 3.018 108950K .......... .......... .......... .......... .......... 84% 129M 0s +2023-11-07T14:50:53Z #15 3.018 109000K .......... .......... .......... .......... .......... 84% 94.9M 0s +2023-11-07T14:50:53Z #15 3.019 109050K .......... .......... .......... .......... .......... 84% 117M 0s +2023-11-07T14:50:53Z #15 3.019 109100K .......... .......... .......... .......... .......... 84% 142M 0s +2023-11-07T14:50:53Z #15 3.019 109150K .......... .......... .......... .......... .......... 84% 117M 0s +2023-11-07T14:50:53Z #15 3.020 109200K .......... .......... .......... .......... .......... 84% 113M 0s +2023-11-07T14:50:53Z #15 3.021 109250K .......... .......... .......... .......... .......... 84% 140M 0s +2023-11-07T14:50:53Z #15 3.021 109300K .......... .......... .......... .......... .......... 84% 108M 0s +2023-11-07T14:50:53Z #15 3.021 109350K .......... .......... .......... .......... .......... 84% 139M 0s +2023-11-07T14:50:53Z #15 3.022 109400K .......... .......... .......... .......... .......... 84% 145M 0s +2023-11-07T14:50:53Z #15 3.022 109450K .......... .......... .......... .......... .......... 84% 154M 0s +2023-11-07T14:50:53Z #15 3.023 109500K .......... .......... .......... .......... .......... 84% 63.1M 0s +2023-11-07T14:50:53Z #15 3.023 109550K .......... .......... .......... .......... .......... 84% 98.8M 0s +2023-11-07T14:50:53Z #15 3.024 109600K .......... .......... .......... .......... .......... 84% 89.6M 0s +2023-11-07T14:50:53Z #15 3.024 109650K .......... .......... .......... .......... .......... 84% 96.8M 0s +2023-11-07T14:50:53Z #15 3.028 109700K .......... .......... .......... .......... .......... 84% 148M 0s +2023-11-07T14:50:53Z #15 3.028 109750K .......... .......... .......... .......... .......... 84% 127M 0s +2023-11-07T14:50:53Z #15 3.028 109800K .......... .......... .......... .......... .......... 84% 127M 0s +2023-11-07T14:50:53Z #15 3.028 109850K .......... .......... .......... .......... .......... 84% 130M 0s +2023-11-07T14:50:53Z #15 3.028 109900K .......... .......... .......... .......... .......... 84% 128M 0s +2023-11-07T14:50:53Z #15 3.028 109950K .......... .......... .......... .......... .......... 84% 133M 0s +2023-11-07T14:50:53Z #15 3.028 110000K .......... .......... .......... .......... .......... 84% 140M 0s +2023-11-07T14:50:53Z #15 3.028 110050K .......... .......... .......... .......... .......... 84% 127M 0s +2023-11-07T14:50:53Z #15 3.028 110100K .......... .......... .......... .......... .......... 85% 137M 0s +2023-11-07T14:50:53Z #15 3.032 110150K .......... .......... .......... .......... .......... 85% 93.4M 0s +2023-11-07T14:50:53Z #15 3.032 110200K .......... .......... .......... .......... .......... 85% 93.1M 0s +2023-11-07T14:50:53Z #15 3.032 110250K .......... .......... .......... .......... .......... 85% 74.8M 0s +2023-11-07T14:50:53Z #15 3.032 110300K .......... .......... .......... .......... .......... 85% 147M 0s +2023-11-07T14:50:53Z #15 3.032 110350K .......... .......... .......... .......... .......... 85% 98.7M 0s +2023-11-07T14:50:53Z #15 3.032 110400K .......... .......... .......... .......... .......... 85% 119M 0s +2023-11-07T14:50:53Z #15 3.032 110450K .......... .......... .......... .......... .......... 85% 112M 0s +2023-11-07T14:50:53Z #15 3.032 110500K .......... .......... .......... .......... .......... 85% 133M 0s +2023-11-07T14:50:53Z #15 3.032 110550K .......... .......... .......... .......... .......... 85% 150M 0s +2023-11-07T14:50:53Z #15 3.032 110600K .......... .......... .......... .......... .......... 85% 86.1M 0s +2023-11-07T14:50:53Z #15 3.033 110650K .......... .......... .......... .......... .......... 85% 123M 0s +2023-11-07T14:50:53Z #15 3.033 110700K .......... .......... .......... .......... .......... 85% 135M 0s +2023-11-07T14:50:53Z #15 3.033 110750K .......... .......... .......... .......... .......... 85% 132M 0s +2023-11-07T14:50:53Z #15 3.034 110800K .......... .......... .......... .......... .......... 85% 138M 0s +2023-11-07T14:50:53Z #15 3.034 110850K .......... .......... .......... .......... .......... 85% 131M 0s +2023-11-07T14:50:53Z #15 3.034 110900K .......... .......... .......... .......... .......... 85% 150M 0s +2023-11-07T14:50:53Z #15 3.035 110950K .......... .......... .......... .......... .......... 85% 79.2M 0s +2023-11-07T14:50:53Z #15 3.035 111000K .......... .......... .......... .......... .......... 85% 82.9M 0s +2023-11-07T14:50:53Z #15 3.036 111050K .......... .......... .......... .......... .......... 85% 120M 0s +2023-11-07T14:50:53Z #15 3.036 111100K .......... .......... .......... .......... .......... 85% 66.6M 0s +2023-11-07T14:50:53Z #15 3.038 111150K .......... .......... .......... .......... .......... 85% 109M 0s +2023-11-07T14:50:53Z #15 3.038 111200K .......... .......... .......... .......... .......... 85% 130M 0s +2023-11-07T14:50:53Z #15 3.038 111250K .......... .......... .......... .......... .......... 85% 109M 0s +2023-11-07T14:50:53Z #15 3.038 111300K .......... .......... .......... .......... .......... 85% 97.7M 0s +2023-11-07T14:50:53Z #15 3.039 111350K .......... .......... .......... .......... .......... 85% 141M 0s +2023-11-07T14:50:53Z #15 3.039 111400K .......... .......... .......... .......... .......... 86% 160M 0s +2023-11-07T14:50:53Z #15 3.039 111450K .......... .......... .......... .......... .......... 86% 121M 0s +2023-11-07T14:50:53Z #15 3.040 111500K .......... .......... .......... .......... .......... 86% 142M 0s +2023-11-07T14:50:53Z #15 3.040 111550K .......... .......... .......... .......... .......... 86% 124M 0s +2023-11-07T14:50:53Z #15 3.041 111600K .......... .......... .......... .......... .......... 86% 129M 0s +2023-11-07T14:50:53Z #15 3.041 111650K .......... .......... .......... .......... .......... 86% 141M 0s +2023-11-07T14:50:53Z #15 3.042 111700K .......... .......... .......... .......... .......... 86% 137M 0s +2023-11-07T14:50:53Z #15 3.042 111750K .......... .......... .......... .......... .......... 86% 53.4M 0s +2023-11-07T14:50:53Z #15 3.043 111800K .......... .......... .......... .......... .......... 86% 147M 0s +2023-11-07T14:50:53Z #15 3.043 111850K .......... .......... .......... .......... .......... 86% 105M 0s +2023-11-07T14:50:53Z #15 3.044 111900K .......... .......... .......... .......... .......... 86% 85.3M 0s +2023-11-07T14:50:53Z #15 3.044 111950K .......... .......... .......... .......... .......... 86% 131M 0s +2023-11-07T14:50:53Z #15 3.048 112000K .......... .......... .......... .......... .......... 86% 120M 0s +2023-11-07T14:50:53Z #15 3.048 112050K .......... .......... .......... .......... .......... 86% 115M 0s +2023-11-07T14:50:53Z #15 3.048 112100K .......... .......... .......... .......... .......... 86% 136M 0s +2023-11-07T14:50:53Z #15 3.048 112150K .......... .......... .......... .......... .......... 86% 69.9M 0s +2023-11-07T14:50:53Z #15 3.048 112200K .......... .......... .......... .......... .......... 86% 71.1M 0s +2023-11-07T14:50:53Z #15 3.048 112250K .......... .......... .......... .......... .......... 86% 56.7M 0s +2023-11-07T14:50:53Z #15 3.048 112300K .......... .......... .......... .......... .......... 86% 125M 0s +2023-11-07T14:50:53Z #15 3.048 112350K .......... .......... .......... .......... .......... 86% 78.8M 0s +2023-11-07T14:50:53Z #15 3.049 112400K .......... .......... .......... .......... .......... 86% 95.6M 0s +2023-11-07T14:50:53Z #15 3.055 112450K .......... .......... .......... .......... .......... 86% 160M 0s +2023-11-07T14:50:53Z #15 3.055 112500K .......... .......... .......... .......... .......... 86% 143M 0s +2023-11-07T14:50:53Z #15 3.055 112550K .......... .......... .......... .......... .......... 86% 179M 0s +2023-11-07T14:50:53Z #15 3.055 112600K .......... .......... .......... .......... .......... 86% 143M 0s +2023-11-07T14:50:53Z #15 3.055 112650K .......... .......... .......... .......... .......... 86% 150M 0s +2023-11-07T14:50:53Z #15 3.055 112700K .......... .......... .......... .......... .......... 87% 99.9M 0s +2023-11-07T14:50:53Z #15 3.055 112750K .......... .......... .......... .......... .......... 87% 84.2M 0s +2023-11-07T14:50:53Z #15 3.055 112800K .......... .......... .......... .......... .......... 87% 106M 0s +2023-11-07T14:50:53Z #15 3.055 112850K .......... .......... .......... .......... .......... 87% 120M 0s +2023-11-07T14:50:53Z #15 3.055 112900K .......... .......... .......... .......... .......... 87% 74.7M 0s +2023-11-07T14:50:53Z #15 3.055 112950K .......... .......... .......... .......... .......... 87% 115M 0s +2023-11-07T14:50:53Z #15 3.055 113000K .......... .......... .......... .......... .......... 87% 72.1M 0s +2023-11-07T14:50:53Z #15 3.056 113050K .......... .......... .......... .......... .......... 87% 120M 0s +2023-11-07T14:50:53Z #15 3.056 113100K .......... .......... .......... .......... .......... 87% 79.9M 0s +2023-11-07T14:50:53Z #15 3.056 113150K .......... .......... .......... .......... .......... 87% 120M 0s +2023-11-07T14:50:53Z #15 3.056 113200K .......... .......... .......... .......... .......... 87% 63.3M 0s +2023-11-07T14:50:53Z #15 3.057 113250K .......... .......... .......... .......... .......... 87% 43.7M 0s +2023-11-07T14:50:53Z #15 3.058 113300K .......... .......... .......... .......... .......... 87% 46.0M 0s +2023-11-07T14:50:53Z #15 3.059 113350K .......... .......... .......... .......... .......... 87% 56.8M 0s +2023-11-07T14:50:53Z #15 3.064 113400K .......... .......... .......... .......... .......... 87% 130M 0s +2023-11-07T14:50:53Z #15 3.064 113450K .......... .......... .......... .......... .......... 87% 117M 0s +2023-11-07T14:50:53Z #15 3.064 113500K .......... .......... .......... .......... .......... 87% 138M 0s +2023-11-07T14:50:53Z #15 3.064 113550K .......... .......... .......... .......... .......... 87% 97.1M 0s +2023-11-07T14:50:53Z #15 3.064 113600K .......... .......... .......... .......... .......... 87% 83.0M 0s +2023-11-07T14:50:53Z #15 3.064 113650K .......... .......... .......... .......... .......... 87% 55.5M 0s +2023-11-07T14:50:53Z #15 3.064 113700K .......... .......... .......... .......... .......... 87% 56.3M 0s +2023-11-07T14:50:53Z #15 3.064 113750K .......... .......... .......... .......... .......... 87% 109M 0s +2023-11-07T14:50:53Z #15 3.064 113800K .......... .......... .......... .......... .......... 87% 34.2M 0s +2023-11-07T14:50:53Z #15 3.066 113850K .......... .......... .......... .......... .......... 87% 32.8M 0s +2023-11-07T14:50:53Z #15 3.072 113900K .......... .......... .......... .......... .......... 87% 96.0M 0s +2023-11-07T14:50:53Z #15 3.072 113950K .......... .......... .......... .......... .......... 87% 134M 0s +2023-11-07T14:50:53Z #15 3.072 114000K .......... .......... .......... .......... .......... 88% 117M 0s +2023-11-07T14:50:53Z #15 3.072 114050K .......... .......... .......... .......... .......... 88% 62.4M 0s +2023-11-07T14:50:53Z #15 3.072 114100K .......... .......... .......... .......... .......... 88% 88.3M 0s +2023-11-07T14:50:53Z #15 3.072 114150K .......... .......... .......... .......... .......... 88% 68.9M 0s +2023-11-07T14:50:53Z #15 3.072 114200K .......... .......... .......... .......... .......... 88% 116M 0s +2023-11-07T14:50:53Z #15 3.072 114250K .......... .......... .......... .......... .......... 88% 113M 0s +2023-11-07T14:50:53Z #15 3.072 114300K .......... .......... .......... .......... .......... 88% 62.9M 0s +2023-11-07T14:50:53Z #15 3.072 114350K .......... .......... .......... .......... .......... 88% 34.6M 0s +2023-11-07T14:50:53Z #15 3.073 114400K .......... .......... .......... .......... .......... 88% 37.2M 0s +2023-11-07T14:50:53Z #15 3.075 114450K .......... .......... .......... .......... .......... 88% 111M 0s +2023-11-07T14:50:53Z #15 3.075 114500K .......... .......... .......... .......... .......... 88% 97.4M 0s +2023-11-07T14:50:53Z #15 3.076 114550K .......... .......... .......... .......... .......... 88% 119M 0s +2023-11-07T14:50:53Z #15 3.076 114600K .......... .......... .......... .......... .......... 88% 114M 0s +2023-11-07T14:50:53Z #15 3.077 114650K .......... .......... .......... .......... .......... 88% 52.9M 0s +2023-11-07T14:50:53Z #15 3.078 114700K .......... .......... .......... .......... .......... 88% 102M 0s +2023-11-07T14:50:53Z #15 3.078 114750K .......... .......... .......... .......... .......... 88% 86.8M 0s +2023-11-07T14:50:53Z #15 3.079 114800K .......... .......... .......... .......... .......... 88% 60.8M 0s +2023-11-07T14:50:53Z #15 3.079 114850K .......... .......... .......... .......... .......... 88% 96.3M 0s +2023-11-07T14:50:53Z #15 3.080 114900K .......... .......... .......... .......... .......... 88% 107M 0s +2023-11-07T14:50:53Z #15 3.081 114950K .......... .......... .......... .......... .......... 88% 109M 0s +2023-11-07T14:50:53Z #15 3.081 115000K .......... .......... .......... .......... .......... 88% 158M 0s +2023-11-07T14:50:53Z #15 3.081 115050K .......... .......... .......... .......... .......... 88% 91.5M 0s +2023-11-07T14:50:53Z #15 3.083 115100K .......... .......... .......... .......... .......... 88% 156M 0s +2023-11-07T14:50:53Z #15 3.083 115150K .......... .......... .......... .......... .......... 88% 53.4M 0s +2023-11-07T14:50:53Z #15 3.083 115200K .......... .......... .......... .......... .......... 88% 141M 0s +2023-11-07T14:50:53Z #15 3.083 115250K .......... .......... .......... .......... .......... 88% 86.8M 0s +2023-11-07T14:50:53Z #15 3.084 115300K .......... .......... .......... .......... .......... 89% 135M 0s +2023-11-07T14:50:53Z #15 3.084 115350K .......... .......... .......... .......... .......... 89% 86.6M 0s +2023-11-07T14:50:53Z #15 3.085 115400K .......... .......... .......... .......... .......... 89% 107M 0s +2023-11-07T14:50:53Z #15 3.085 115450K .......... .......... .......... .......... .......... 89% 147M 0s +2023-11-07T14:50:53Z #15 3.085 115500K .......... .......... .......... .......... .......... 89% 101M 0s +2023-11-07T14:50:53Z #15 3.088 115550K .......... .......... .......... .......... .......... 89% 100M 0s +2023-11-07T14:50:53Z #15 3.088 115600K .......... .......... .......... .......... .......... 89% 68.3M 0s +2023-11-07T14:50:53Z #15 3.088 115650K .......... .......... .......... .......... .......... 89% 51.2M 0s +2023-11-07T14:50:53Z #15 3.088 115700K .......... .......... .......... .......... .......... 89% 72.4M 0s +2023-11-07T14:50:53Z #15 3.092 115750K .......... .......... .......... .......... .......... 89% 109M 0s +2023-11-07T14:50:53Z #15 3.092 115800K .......... .......... .......... .......... .......... 89% 106M 0s +2023-11-07T14:50:53Z #15 3.092 115850K .......... .......... .......... .......... .......... 89% 120M 0s +2023-11-07T14:50:53Z #15 3.092 115900K .......... .......... .......... .......... .......... 89% 129M 0s +2023-11-07T14:50:53Z #15 3.092 115950K .......... .......... .......... .......... .......... 89% 128M 0s +2023-11-07T14:50:53Z #15 3.092 116000K .......... .......... .......... .......... .......... 89% 116M 0s +2023-11-07T14:50:53Z #15 3.092 116050K .......... .......... .......... .......... .......... 89% 53.8M 0s +2023-11-07T14:50:53Z #15 3.092 116100K .......... .......... .......... .......... .......... 89% 46.6M 0s +2023-11-07T14:50:53Z #15 3.093 116150K .......... .......... .......... .......... .......... 89% 57.6M 0s +2023-11-07T14:50:53Z #15 3.094 116200K .......... .......... .......... .......... .......... 89% 79.9M 0s +2023-11-07T14:50:53Z #15 3.095 116250K .......... .......... .......... .......... .......... 89% 91.2M 0s +2023-11-07T14:50:53Z #15 3.095 116300K .......... .......... .......... .......... .......... 89% 113M 0s +2023-11-07T14:50:53Z #15 3.096 116350K .......... .......... .......... .......... .......... 89% 131M 0s +2023-11-07T14:50:53Z #15 3.096 116400K .......... .......... .......... .......... .......... 89% 122M 0s +2023-11-07T14:50:53Z #15 3.096 116450K .......... .......... .......... .......... .......... 89% 71.4M 0s +2023-11-07T14:50:53Z #15 3.097 116500K .......... .......... .......... .......... .......... 89% 77.3M 0s +2023-11-07T14:50:53Z #15 3.098 116550K .......... .......... .......... .......... .......... 89% 64.9M 0s +2023-11-07T14:50:53Z #15 3.101 116600K .......... .......... .......... .......... .......... 90% 113M 0s +2023-11-07T14:50:53Z #15 3.101 116650K .......... .......... .......... .......... .......... 90% 166M 0s +2023-11-07T14:50:53Z #15 3.101 116700K .......... .......... .......... .......... .......... 90% 162M 0s +2023-11-07T14:50:53Z #15 3.101 116750K .......... .......... .......... .......... .......... 90% 155M 0s +2023-11-07T14:50:53Z #15 3.101 116800K .......... .......... .......... .......... .......... 90% 125M 0s +2023-11-07T14:50:53Z #15 3.101 116850K .......... .......... .......... .......... .......... 90% 145M 0s +2023-11-07T14:50:53Z #15 3.101 116900K .......... .......... .......... .......... .......... 90% 63.9M 0s +2023-11-07T14:50:53Z #15 3.101 116950K .......... .......... .......... .......... .......... 90% 61.7M 0s +2023-11-07T14:50:53Z #15 3.103 117000K .......... .......... .......... .......... .......... 90% 84.0M 0s +2023-11-07T14:50:53Z #15 3.103 117050K .......... .......... .......... .......... .......... 90% 98.7M 0s +2023-11-07T14:50:53Z #15 3.103 117100K .......... .......... .......... .......... .......... 90% 124M 0s +2023-11-07T14:50:53Z #15 3.104 117150K .......... .......... .......... .......... .......... 90% 81.7M 0s +2023-11-07T14:50:53Z #15 3.104 117200K .......... .......... .......... .......... .......... 90% 122M 0s +2023-11-07T14:50:53Z #15 3.105 117250K .......... .......... .......... .......... .......... 90% 115M 0s +2023-11-07T14:50:53Z #15 3.105 117300K .......... .......... .......... .......... .......... 90% 128M 0s +2023-11-07T14:50:53Z #15 3.105 117350K .......... .......... .......... .......... .......... 90% 56.4M 0s +2023-11-07T14:50:53Z #15 3.106 117400K .......... .......... .......... .......... .......... 90% 118M 0s +2023-11-07T14:50:53Z #15 3.107 117450K .......... .......... .......... .......... .......... 90% 57.6M 0s +2023-11-07T14:50:53Z #15 3.112 117500K .......... .......... .......... .......... .......... 90% 144M 0s +2023-11-07T14:50:53Z #15 3.112 117550K .......... .......... .......... .......... .......... 90% 160M 0s +2023-11-07T14:50:53Z #15 3.112 117600K .......... .......... .......... .......... .......... 90% 149M 0s +2023-11-07T14:50:53Z #15 3.112 117650K .......... .......... .......... .......... .......... 90% 131M 0s +2023-11-07T14:50:53Z #15 3.112 117700K .......... .......... .......... .......... .......... 90% 145M 0s +2023-11-07T14:50:53Z #15 3.112 117750K .......... .......... .......... .......... .......... 90% 176M 0s +2023-11-07T14:50:53Z #15 3.112 117800K .......... .......... .......... .......... .......... 90% 71.0M 0s +2023-11-07T14:50:53Z #15 3.112 117850K .......... .......... .......... .......... .......... 90% 103M 0s +2023-11-07T14:50:53Z #15 3.112 117900K .......... .......... .......... .......... .......... 91% 92.0M 0s +2023-11-07T14:50:53Z #15 3.112 117950K .......... .......... .......... .......... .......... 91% 119M 0s +2023-11-07T14:50:53Z #15 3.112 118000K .......... .......... .......... .......... .......... 91% 139M 0s +2023-11-07T14:50:53Z #15 3.112 118050K .......... .......... .......... .......... .......... 91% 68.4M 0s +2023-11-07T14:50:53Z #15 3.113 118100K .......... .......... .......... .......... .......... 91% 93.3M 0s +2023-11-07T14:50:53Z #15 3.113 118150K .......... .......... .......... .......... .......... 91% 101M 0s +2023-11-07T14:50:53Z #15 3.114 118200K .......... .......... .......... .......... .......... 91% 68.5M 0s +2023-11-07T14:50:53Z #15 3.116 118250K .......... .......... .......... .......... .......... 91% 107M 0s +2023-11-07T14:50:53Z #15 3.116 118300K .......... .......... .......... .......... .......... 91% 91.5M 0s +2023-11-07T14:50:53Z #15 3.116 118350K .......... .......... .......... .......... .......... 91% 139M 0s +2023-11-07T14:50:53Z #15 3.116 118400K .......... .......... .......... .......... .......... 91% 89.0M 0s +2023-11-07T14:50:53Z #15 3.120 118450K .......... .......... .......... .......... .......... 91% 56.0M 0s +2023-11-07T14:50:53Z #15 3.120 118500K .......... .......... .......... .......... .......... 91% 72.2M 0s +2023-11-07T14:50:53Z #15 3.120 118550K .......... .......... .......... .......... .......... 91% 134M 0s +2023-11-07T14:50:53Z #15 3.120 118600K .......... .......... .......... .......... .......... 91% 122M 0s +2023-11-07T14:50:53Z #15 3.120 118650K .......... .......... .......... .......... .......... 91% 67.6M 0s +2023-11-07T14:50:53Z #15 3.120 118700K .......... .......... .......... .......... .......... 91% 90.8M 0s +2023-11-07T14:50:53Z #15 3.120 118750K .......... .......... .......... .......... .......... 91% 46.3M 0s +2023-11-07T14:50:53Z #15 3.124 118800K .......... .......... .......... .......... .......... 91% 95.5M 0s +2023-11-07T14:50:53Z #15 3.124 118850K .......... .......... .......... .......... .......... 91% 134M 0s +2023-11-07T14:50:53Z #15 3.124 118900K .......... .......... .......... .......... .......... 91% 124M 0s +2023-11-07T14:50:53Z #15 3.124 118950K .......... .......... .......... .......... .......... 91% 111M 0s +2023-11-07T14:50:53Z #15 3.124 119000K .......... .......... .......... .......... .......... 91% 88.2M 0s +2023-11-07T14:50:53Z #15 3.124 119050K .......... .......... .......... .......... .......... 91% 62.2M 0s +2023-11-07T14:50:53Z #15 3.124 119100K .......... .......... .......... .......... .......... 91% 41.7M 0s +2023-11-07T14:50:53Z #15 3.128 119150K .......... .......... .......... .......... .......... 91% 128M 0s +2023-11-07T14:50:53Z #15 3.128 119200K .......... .......... .......... .......... .......... 92% 92.9M 0s +2023-11-07T14:50:53Z #15 3.128 119250K .......... .......... .......... .......... .......... 92% 94.9M 0s +2023-11-07T14:50:53Z #15 3.128 119300K .......... .......... .......... .......... .......... 92% 123M 0s +2023-11-07T14:50:53Z #15 3.128 119350K .......... .......... .......... .......... .......... 92% 123M 0s +2023-11-07T14:50:53Z #15 3.128 119400K .......... .......... .......... .......... .......... 92% 112M 0s +2023-11-07T14:50:53Z #15 3.128 119450K .......... .......... .......... .......... .......... 92% 14.0M 0s +2023-11-07T14:50:53Z #15 3.132 119500K .......... .......... .......... .......... .......... 92% 99.2M 0s +2023-11-07T14:50:53Z #15 3.132 119550K .......... .......... .......... .......... .......... 92% 128M 0s +2023-11-07T14:50:53Z #15 3.132 119600K .......... .......... .......... .......... .......... 92% 47.5M 0s +2023-11-07T14:50:53Z #15 3.133 119650K .......... .......... .......... .......... .......... 92% 46.5M 0s +2023-11-07T14:50:53Z #15 3.136 119700K .......... .......... .......... .......... .......... 92% 122M 0s +2023-11-07T14:50:53Z #15 3.136 119750K .......... .......... .......... .......... .......... 92% 110M 0s +2023-11-07T14:50:53Z #15 3.136 119800K .......... .......... .......... .......... .......... 92% 75.9M 0s +2023-11-07T14:50:53Z #15 3.136 119850K .......... .......... .......... .......... .......... 92% 32.2M 0s +2023-11-07T14:50:53Z #15 3.140 119900K .......... .......... .......... .......... .......... 92% 34.3M 0s +2023-11-07T14:50:53Z #15 3.140 119950K .......... .......... .......... .......... .......... 92% 55.9M 0s +2023-11-07T14:50:53Z #15 3.140 120000K .......... .......... .......... .......... .......... 92% 36.9M 0s +2023-11-07T14:50:53Z #15 3.141 120050K .......... .......... .......... .......... .......... 92% 65.6M 0s +2023-11-07T14:50:53Z #15 3.142 120100K .......... .......... .......... .......... .......... 92% 66.5M 0s +2023-11-07T14:50:53Z #15 3.142 120150K .......... .......... .......... .......... .......... 92% 81.1M 0s +2023-11-07T14:50:53Z #15 3.143 120200K .......... .......... .......... .......... .......... 92% 20.4M 0s +2023-11-07T14:50:53Z #15 3.145 120250K .......... .......... .......... .......... .......... 92% 93.1M 0s +2023-11-07T14:50:53Z #15 3.147 120300K .......... .......... .......... .......... .......... 92% 144M 0s +2023-11-07T14:50:53Z #15 3.147 120350K .......... .......... .......... .......... .......... 92% 48.8M 0s +2023-11-07T14:50:53Z #15 3.147 120400K .......... .......... .......... .......... .......... 92% 139M 0s +2023-11-07T14:50:53Z #15 3.148 120450K .......... .......... .......... .......... .......... 93% 48.9M 0s +2023-11-07T14:50:53Z #15 3.149 120500K .......... .......... .......... .......... .......... 93% 44.2M 0s +2023-11-07T14:50:53Z #15 3.150 120550K .......... .......... .......... .......... .......... 93% 59.4M 0s +2023-11-07T14:50:53Z #15 3.151 120600K .......... .......... .......... .......... .......... 93% 86.7M 0s +2023-11-07T14:50:53Z #15 3.151 120650K .......... .......... .......... .......... .......... 93% 20.0M 0s +2023-11-07T14:50:53Z #15 3.154 120700K .......... .......... .......... .......... .......... 93% 131M 0s +2023-11-07T14:50:53Z #15 3.154 120750K .......... .......... .......... .......... .......... 93% 123M 0s +2023-11-07T14:50:53Z #15 3.154 120800K .......... .......... .......... .......... .......... 93% 131M 0s +2023-11-07T14:50:53Z #15 3.155 120850K .......... .......... .......... .......... .......... 93% 50.8M 0s +2023-11-07T14:50:53Z #15 3.156 120900K .......... .......... .......... .......... .......... 93% 123M 0s +2023-11-07T14:50:53Z #15 3.156 120950K .......... .......... .......... .......... .......... 93% 49.2M 0s +2023-11-07T14:50:53Z #15 3.160 121000K .......... .......... .......... .......... .......... 93% 18.0M 0s +2023-11-07T14:50:53Z #15 3.160 121050K .......... .......... .......... .......... .......... 93% 130M 0s +2023-11-07T14:50:53Z #15 3.160 121100K .......... .......... .......... .......... .......... 93% 86.6M 0s +2023-11-07T14:50:53Z #15 3.165 121150K .......... .......... .......... .......... .......... 93% 52.8M 0s +2023-11-07T14:50:53Z #15 3.165 121200K .......... .......... .......... .......... .......... 93% 126M 0s +2023-11-07T14:50:53Z #15 3.165 121250K .......... .......... .......... .......... .......... 93% 136M 0s +2023-11-07T14:50:53Z #15 3.165 121300K .......... .......... .......... .......... .......... 93% 15.1M 0s +2023-11-07T14:50:53Z #15 3.166 121350K .......... .......... .......... .......... .......... 93% 53.7M 0s +2023-11-07T14:50:53Z #15 3.169 121400K .......... .......... .......... .......... .......... 93% 101M 0s +2023-11-07T14:50:53Z #15 3.169 121450K .......... .......... .......... .......... .......... 93% 112M 0s +2023-11-07T14:50:53Z #15 3.169 121500K .......... .......... .......... .......... .......... 93% 69.0M 0s +2023-11-07T14:50:53Z #15 3.169 121550K .......... .......... .......... .......... .......... 93% 15.6M 0s +2023-11-07T14:50:53Z #15 3.172 121600K .......... .......... .......... .......... .......... 93% 122M 0s +2023-11-07T14:50:53Z #15 3.172 121650K .......... .......... .......... .......... .......... 93% 124M 0s +2023-11-07T14:50:53Z #15 3.172 121700K .......... .......... .......... .......... .......... 93% 65.0M 0s +2023-11-07T14:50:53Z #15 3.178 121750K .......... .......... .......... .......... .......... 94% 111M 0s +2023-11-07T14:50:53Z #15 3.178 121800K .......... .......... .......... .......... .......... 94% 130M 0s +2023-11-07T14:50:53Z #15 3.178 121850K .......... .......... .......... .......... .......... 94% 70.8M 0s +2023-11-07T14:50:53Z #15 3.178 121900K .......... .......... .......... .......... .......... 94% 124M 0s +2023-11-07T14:50:53Z #15 3.178 121950K .......... .......... .......... .......... .......... 94% 130M 0s +2023-11-07T14:50:53Z #15 3.178 122000K .......... .......... .......... .......... .......... 94% 61.2M 0s +2023-11-07T14:50:53Z #15 3.178 122050K .......... .......... .......... .......... .......... 94% 14.7M 0s +2023-11-07T14:50:53Z #15 3.180 122100K .......... .......... .......... .......... .......... 94% 35.5M 0s +2023-11-07T14:50:53Z #15 3.184 122150K .......... .......... .......... .......... .......... 94% 120M 0s +2023-11-07T14:50:53Z #15 3.184 122200K .......... .......... .......... .......... .......... 94% 68.6M 0s +2023-11-07T14:50:53Z #15 3.184 122250K .......... .......... .......... .......... .......... 94% 95.8M 0s +2023-11-07T14:50:53Z #15 3.184 122300K .......... .......... .......... .......... .......... 94% 127M 0s +2023-11-07T14:50:53Z #15 3.184 122350K .......... .......... .......... .......... .......... 94% 122M 0s +2023-11-07T14:50:53Z #15 3.184 122400K .......... .......... .......... .......... .......... 94% 130M 0s +2023-11-07T14:50:53Z #15 3.184 122450K .......... .......... .......... .......... .......... 94% 111M 0s +2023-11-07T14:50:53Z #15 3.184 122500K .......... .......... .......... .......... .......... 94% 127M 0s +2023-11-07T14:50:53Z #15 3.184 122550K .......... .......... .......... .......... .......... 94% 40.2M 0s +2023-11-07T14:50:53Z #15 3.185 122600K .......... .......... .......... .......... .......... 94% 64.1M 0s +2023-11-07T14:50:53Z #15 3.188 122650K .......... .......... .......... .......... .......... 94% 128M 0s +2023-11-07T14:50:53Z #15 3.188 122700K .......... .......... .......... .......... .......... 94% 108M 0s +2023-11-07T14:50:53Z #15 3.188 122750K .......... .......... .......... .......... .......... 94% 126M 0s +2023-11-07T14:50:53Z #15 3.188 122800K .......... .......... .......... .......... .......... 94% 49.2M 0s +2023-11-07T14:50:53Z #15 3.189 122850K .......... .......... .......... .......... .......... 94% 21.6M 0s +2023-11-07T14:50:53Z #15 3.191 122900K .......... .......... .......... .......... .......... 94% 58.2M 0s +2023-11-07T14:50:53Z #15 3.191 122950K .......... .......... .......... .......... .......... 94% 61.7M 0s +2023-11-07T14:50:53Z #15 3.196 123000K .......... .......... .......... .......... .......... 94% 118M 0s +2023-11-07T14:50:53Z #15 3.196 123050K .......... .......... .......... .......... .......... 95% 107M 0s +2023-11-07T14:50:53Z #15 3.196 123100K .......... .......... .......... .......... .......... 95% 146M 0s +2023-11-07T14:50:53Z #15 3.196 123150K .......... .......... .......... .......... .......... 95% 112M 0s +2023-11-07T14:50:53Z #15 3.196 123200K .......... .......... .......... .......... .......... 95% 126M 0s +2023-11-07T14:50:53Z #15 3.196 123250K .......... .......... .......... .......... .......... 95% 134M 0s +2023-11-07T14:50:53Z #15 3.196 123300K .......... .......... .......... .......... .......... 95% 133M 0s +2023-11-07T14:50:53Z #15 3.196 123350K .......... .......... .......... .......... .......... 95% 89.7M 0s +2023-11-07T14:50:53Z #15 3.196 123400K .......... .......... .......... .......... .......... 95% 133M 0s +2023-11-07T14:50:53Z #15 3.196 123450K .......... .......... .......... .......... .......... 95% 127M 0s +2023-11-07T14:50:53Z #15 3.196 123500K .......... .......... .......... .......... .......... 95% 22.5M 0s +2023-11-07T14:50:53Z #15 3.199 123550K .......... .......... .......... .......... .......... 95% 34.1M 0s +2023-11-07T14:50:53Z #15 3.200 123600K .......... .......... .......... .......... .......... 95% 65.2M 0s +2023-11-07T14:50:53Z #15 3.201 123650K .......... .......... .......... .......... .......... 95% 42.3M 0s +2023-11-07T14:50:53Z #15 3.202 123700K .......... .......... .......... .......... .......... 95% 14.9M 0s +2023-11-07T14:50:53Z #15 3.205 123750K .......... .......... .......... .......... .......... 95% 62.8M 0s +2023-11-07T14:50:53Z #15 3.208 123800K .......... .......... .......... .......... .......... 95% 35.9M 0s +2023-11-07T14:50:53Z #15 3.208 123850K .......... .......... .......... .......... .......... 95% 34.8M 0s +2023-11-07T14:50:53Z #15 3.208 123900K .......... .......... .......... .......... .......... 95% 38.3M 0s +2023-11-07T14:50:53Z #15 3.210 123950K .......... .......... .......... .......... .......... 95% 44.2M 0s +2023-11-07T14:50:53Z #15 3.212 124000K .......... .......... .......... .......... .......... 95% 37.7M 0s +2023-11-07T14:50:53Z #15 3.212 124050K .......... .......... .......... .......... .......... 95% 35.7M 0s +2023-11-07T14:50:53Z #15 3.216 124100K .......... .......... .......... .......... .......... 95% 37.9M 0s +2023-11-07T14:50:53Z #15 3.216 124150K .......... .......... .......... .......... .......... 95% 35.2M 0s +2023-11-07T14:50:53Z #15 3.217 124200K .......... .......... .......... .......... .......... 95% 29.8M 0s +2023-11-07T14:50:53Z #15 3.218 124250K .......... .......... .......... .......... .......... 95% 168M 0s +2023-11-07T14:50:53Z #15 3.218 124300K .......... .......... .......... .......... .......... 95% 29.8M 0s +2023-11-07T14:50:53Z #15 3.225 124350K .......... .......... .......... .......... .......... 96% 33.6M 0s +2023-11-07T14:50:53Z #15 3.225 124400K .......... .......... .......... .......... .......... 96% 40.9M 0s +2023-11-07T14:50:53Z #15 3.225 124450K .......... .......... .......... .......... .......... 96% 41.8M 0s +2023-11-07T14:50:53Z #15 3.225 124500K .......... .......... .......... .......... .......... 96% 26.9M 0s +2023-11-07T14:50:53Z #15 3.229 124550K .......... .......... .......... .......... .......... 96% 29.7M 0s +2023-11-07T14:50:53Z #15 3.229 124600K .......... .......... .......... .......... .......... 96% 32.3M 0s +2023-11-07T14:50:53Z #15 3.232 124650K .......... .......... .......... .......... .......... 96% 36.2M 0s +2023-11-07T14:50:53Z #15 3.232 124700K .......... .......... .......... .......... .......... 96% 41.0M 0s +2023-11-07T14:50:53Z #15 3.232 124750K .......... .......... .......... .......... .......... 96% 34.7M 0s +2023-11-07T14:50:53Z #15 3.232 124800K .......... .......... .......... .......... .......... 96% 38.9M 0s +2023-11-07T14:50:53Z #15 3.236 124850K .......... .......... .......... .......... .......... 96% 51.2M 0s +2023-11-07T14:50:53Z #15 3.236 124900K .......... .......... .......... .......... .......... 96% 35.8M 0s +2023-11-07T14:50:53Z #15 3.236 124950K .......... .......... .......... .......... .......... 96% 48.2M 0s +2023-11-07T14:50:53Z #15 3.237 125000K .......... .......... .......... .......... .......... 96% 31.8M 0s +2023-11-07T14:50:53Z #15 3.240 125050K .......... .......... .......... .......... .......... 96% 111M 0s +2023-11-07T14:50:53Z #15 3.240 125100K .......... .......... .......... .......... .......... 96% 203M 0s +2023-11-07T14:50:53Z #15 3.240 125150K .......... .......... .......... .......... .......... 96% 243M 0s +2023-11-07T14:50:53Z #15 3.240 125200K .......... .......... .......... .......... .......... 96% 217M 0s +2023-11-07T14:50:53Z #15 3.240 125250K .......... .......... .......... .......... .......... 96% 260M 0s +2023-11-07T14:50:53Z #15 3.240 125300K .......... .......... .......... .......... .......... 96% 256M 0s +2023-11-07T14:50:53Z #15 3.240 125350K .......... .......... .......... .......... .......... 96% 189M 0s +2023-11-07T14:50:53Z #15 3.240 125400K .......... .......... .......... .......... .......... 96% 167M 0s +2023-11-07T14:50:53Z #15 3.241 125450K .......... .......... .......... .......... .......... 96% 155M 0s +2023-11-07T14:50:53Z #15 3.241 125500K .......... .......... .......... .......... .......... 96% 161M 0s +2023-11-07T14:50:53Z #15 3.241 125550K .......... .......... .......... .......... .......... 96% 138M 0s +2023-11-07T14:50:53Z #15 3.242 125600K .......... .......... .......... .......... .......... 96% 156M 0s +2023-11-07T14:50:53Z #15 3.243 125650K .......... .......... .......... .......... .......... 97% 164M 0s +2023-11-07T14:50:53Z #15 3.243 125700K .......... .......... .......... .......... .......... 97% 149M 0s +2023-11-07T14:50:53Z #15 3.243 125750K .......... .......... .......... .......... .......... 97% 136M 0s +2023-11-07T14:50:53Z #15 3.243 125800K .......... .......... .......... .......... .......... 97% 142M 0s +2023-11-07T14:50:53Z #15 3.243 125850K .......... .......... .......... .......... .......... 97% 168M 0s +2023-11-07T14:50:53Z #15 3.244 125900K .......... .......... .......... .......... .......... 97% 170M 0s +2023-11-07T14:50:53Z #15 3.244 125950K .......... .......... .......... .......... .......... 97% 158M 0s +2023-11-07T14:50:53Z #15 3.244 126000K .......... .......... .......... .......... .......... 97% 131M 0s +2023-11-07T14:50:53Z #15 3.245 126050K .......... .......... .......... .......... .......... 97% 173M 0s +2023-11-07T14:50:53Z #15 3.245 126100K .......... .......... .......... .......... .......... 97% 171M 0s +2023-11-07T14:50:53Z #15 3.245 126150K .......... .......... .......... .......... .......... 97% 156M 0s +2023-11-07T14:50:53Z #15 3.246 126200K .......... .......... .......... .......... .......... 97% 141M 0s +2023-11-07T14:50:53Z #15 3.246 126250K .......... .......... .......... .......... .......... 97% 166M 0s +2023-11-07T14:50:53Z #15 3.246 126300K .......... .......... .......... .......... .......... 97% 173M 0s +2023-11-07T14:50:53Z #15 3.247 126350K .......... .......... .......... .......... .......... 97% 169M 0s +2023-11-07T14:50:53Z #15 3.247 126400K .......... .......... .......... .......... .......... 97% 151M 0s +2023-11-07T14:50:53Z #15 3.247 126450K .......... .......... .......... .......... .......... 97% 144M 0s +2023-11-07T14:50:53Z #15 3.247 126500K .......... .......... .......... .......... .......... 97% 125M 0s +2023-11-07T14:50:53Z #15 3.248 126550K .......... .......... .......... .......... .......... 97% 158M 0s +2023-11-07T14:50:53Z #15 3.248 126600K .......... .......... .......... .......... .......... 97% 171M 0s +2023-11-07T14:50:53Z #15 3.248 126650K .......... .......... .......... .......... .......... 97% 127M 0s +2023-11-07T14:50:53Z #15 3.249 126700K .......... .......... .......... .......... .......... 97% 166M 0s +2023-11-07T14:50:53Z #15 3.249 126750K .......... .......... .......... .......... .......... 97% 140M 0s +2023-11-07T14:50:53Z #15 3.249 126800K .......... .......... .......... .......... .......... 97% 125M 0s +2023-11-07T14:50:53Z #15 3.250 126850K .......... .......... .......... .......... .......... 97% 156M 0s +2023-11-07T14:50:54Z #15 3.250 126900K .......... .......... .......... .......... .......... 97% 147M 0s +2023-11-07T14:50:54Z #15 3.254 126950K .......... .......... .......... .......... .......... 98% 138M 0s +2023-11-07T14:50:54Z #15 3.255 127000K .......... .......... .......... .......... .......... 98% 134M 0s +2023-11-07T14:50:54Z #15 3.255 127050K .......... .......... .......... .......... .......... 98% 165M 0s +2023-11-07T14:50:54Z #15 3.255 127100K .......... .......... .......... .......... .......... 98% 116M 0s +2023-11-07T14:50:54Z #15 3.255 127150K .......... .......... .......... .......... .......... 98% 59.3M 0s +2023-11-07T14:50:54Z #15 3.255 127200K .......... .......... .......... .......... .......... 98% 146M 0s +2023-11-07T14:50:54Z #15 3.255 127250K .......... .......... .......... .......... .......... 98% 64.0M 0s +2023-11-07T14:50:54Z #15 3.255 127300K .......... .......... .......... .......... .......... 98% 88.9M 0s +2023-11-07T14:50:54Z #15 3.255 127350K .......... .......... .......... .......... .......... 98% 119M 0s +2023-11-07T14:50:54Z #15 3.255 127400K .......... .......... .......... .......... .......... 98% 141M 0s +2023-11-07T14:50:54Z #15 3.255 127450K .......... .......... .......... .......... .......... 98% 130M 0s +2023-11-07T14:50:54Z #15 3.255 127500K .......... .......... .......... .......... .......... 98% 151M 0s +2023-11-07T14:50:54Z #15 3.256 127550K .......... .......... .......... .......... .......... 98% 162M 0s +2023-11-07T14:50:54Z #15 3.256 127600K .......... .......... .......... .......... .......... 98% 121M 0s +2023-11-07T14:50:54Z #15 3.257 127650K .......... .......... .......... .......... .......... 98% 147M 0s +2023-11-07T14:50:54Z #15 3.257 127700K .......... .......... .......... .......... .......... 98% 155M 0s +2023-11-07T14:50:54Z #15 3.257 127750K .......... .......... .......... .......... .......... 98% 156M 0s +2023-11-07T14:50:54Z #15 3.257 127800K .......... .......... .......... .......... .......... 98% 142M 0s +2023-11-07T14:50:54Z #15 3.258 127850K .......... .......... .......... .......... .......... 98% 158M 0s +2023-11-07T14:50:54Z #15 3.258 127900K .......... .......... .......... .......... .......... 98% 159M 0s +2023-11-07T14:50:54Z #15 3.259 127950K .......... .......... .......... .......... .......... 98% 170M 0s +2023-11-07T14:50:54Z #15 3.259 128000K .......... .......... .......... .......... .......... 98% 127M 0s +2023-11-07T14:50:54Z #15 3.259 128050K .......... .......... .......... .......... .......... 98% 156M 0s +2023-11-07T14:50:54Z #15 3.259 128100K .......... .......... .......... .......... .......... 98% 159M 0s +2023-11-07T14:50:54Z #15 3.260 128150K .......... .......... .......... .......... .......... 98% 168M 0s +2023-11-07T14:50:54Z #15 3.260 128200K .......... .......... .......... .......... .......... 98% 142M 0s +2023-11-07T14:50:54Z #15 3.261 128250K .......... .......... .......... .......... .......... 99% 40.0M 0s +2023-11-07T14:50:54Z #15 3.264 128300K .......... .......... .......... .......... .......... 99% 171M 0s +2023-11-07T14:50:54Z #15 3.264 128350K .......... .......... .......... .......... .......... 99% 165M 0s +2023-11-07T14:50:54Z #15 3.264 128400K .......... .......... .......... .......... .......... 99% 170M 0s +2023-11-07T14:50:54Z #15 3.264 128450K .......... .......... .......... .......... .......... 99% 155M 0s +2023-11-07T14:50:54Z #15 3.264 128500K .......... .......... .......... .......... .......... 99% 164M 0s +2023-11-07T14:50:54Z #15 3.264 128550K .......... .......... .......... .......... .......... 99% 142M 0s +2023-11-07T14:50:54Z #15 3.264 128600K .......... .......... .......... .......... .......... 99% 163M 0s +2023-11-07T14:50:54Z #15 3.264 128650K .......... .......... .......... .......... .......... 99% 175M 0s +2023-11-07T14:50:54Z #15 3.264 128700K .......... .......... .......... .......... .......... 99% 155M 0s +2023-11-07T14:50:54Z #15 3.264 128750K .......... .......... .......... .......... .......... 99% 13.4M 0s +2023-11-07T14:50:54Z #15 3.272 128800K .......... .......... .......... .......... .......... 99% 132M 0s +2023-11-07T14:50:54Z #15 3.272 128850K .......... .......... .......... .......... .......... 99% 155M 0s +2023-11-07T14:50:54Z #15 3.272 128900K .......... .......... .......... .......... .......... 99% 163M 0s +2023-11-07T14:50:54Z #15 3.272 128950K .......... .......... .......... .......... .......... 99% 159M 0s +2023-11-07T14:50:54Z #15 3.272 129000K .......... .......... .......... .......... .......... 99% 161M 0s +2023-11-07T14:50:54Z #15 3.272 129050K .......... .......... .......... .......... .......... 99% 139M 0s +2023-11-07T14:50:54Z #15 3.272 129100K .......... .......... .......... .......... .......... 99% 168M 0s +2023-11-07T14:50:54Z #15 3.272 129150K .......... .......... .......... .......... .......... 99% 156M 0s +2023-11-07T14:50:54Z #15 3.272 129200K .......... .......... .......... .......... .......... 99% 158M 0s +2023-11-07T14:50:54Z #15 3.272 129250K .......... .......... .......... .......... .......... 99% 156M 0s +2023-11-07T14:50:54Z #15 3.272 129300K .......... .......... .......... .......... .......... 99% 141M 0s +2023-11-07T14:50:54Z #15 3.272 129350K .......... .......... .......... .......... .......... 99% 165M 0s +2023-11-07T14:50:54Z #15 3.272 129400K .......... .......... .......... .......... .......... 99% 168M 0s +2023-11-07T14:50:54Z #15 3.272 129450K .......... .......... .......... .......... .......... 99% 154M 0s +2023-11-07T14:50:54Z #15 3.272 129500K .......... .......... .......... .......... .......... 99% 7.39M 0s +2023-11-07T14:50:54Z #15 3.280 129550K .......... ..... 100% 131M=2.0s +2023-11-07T14:50:54Z #15 3.280 +2023-11-07T14:50:54Z #15 3.280 2023-11-07 14:50:53 (62.5 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [132675270/132675270] +2023-11-07T14:50:54Z #15 3.280 +2023-11-07T14:50:55Z #15 4.808 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.2/globusconnectpersonal' +2023-11-07T14:50:55Z #15 4.831 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2023-11-07T14:50:56Z #15 DONE 5.6s +2023-11-07T14:50:56Z +2023-11-07T14:50:56Z #16 exporting to image +2023-11-07T14:50:56Z #16 exporting layers +2023-11-07T14:53:17Z #16 exporting layers 141.0s done +2023-11-07T14:53:17Z #16 writing image sha256:ba56ae835924765543ac48574b379de4ee967b81e93599b016fd18c4aadc1841 done +2023-11-07T14:53:17Z #16 naming to docker.io/pavics/workflow-tests:py310-231107 done +2023-11-07T14:53:17Z #16 DONE 141.0s +2023-11-07T14:53:17Z Pushing index.docker.io/pavics/workflow-tests:py310-231107... +2023-11-07T15:00:36Z Done! +2023-11-07T15:00:36Z Build finished From a8b72060765d324c60ccb36317100235ddfe6776 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 7 Mar 2024 13:21:33 -0500 Subject: [PATCH 034/104] docker: py310-231107-update240306 env export, build log, initial jenkins --- docker/saved_buildout/conda-env-export.yml | 32 +- docker/saved_buildout/docker-buildlogs.txt | 5747 ++--------------- .../jenkins-buildlogs-default.txt | 1688 +++++ .../jenkins-buildlogs-raven.txt | 2670 ++++++++ 4 files changed, 4835 insertions(+), 5302 deletions(-) create mode 100644 docker/saved_buildout/jenkins-buildlogs-default.txt create mode 100644 docker/saved_buildout/jenkins-buildlogs-raven.txt diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index 5111e5a..978441c 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -16,6 +16,7 @@ dependencies: - alembic=1.12.1=pyhd8ed1ab_0 - alsa-lib=1.2.8=h166bdaf_0 - altair=5.1.2=pyhd8ed1ab_0 + - annotated-types=0.6.0=pyhd8ed1ab_0 - ansi2html=1.8.0=py310hff52083_2 - anyio=4.0.0=pyhd8ed1ab_0 - aom=3.5.0=h27087fc_0 @@ -65,7 +66,7 @@ dependencies: - bzip2=1.0.8=hd590300_5 - c-ares=1.21.0=hd590300_0 - c-blosc2=2.11.1=hb4ffafa_0 - - ca-certificates=2023.7.22=hbcca054_0 + - ca-certificates=2024.2.2=hbcca054_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - cachetools=5.3.2=pyhd8ed1ab_0 @@ -75,7 +76,7 @@ dependencies: - cdat_info=8.2.1=pyhd8ed1ab_2 - cdms2=3.1.5=py310h5f4584e_15 - cdtime=3.1.4=py310h1a17f1e_7 - - certifi=2023.7.22=pyhd8ed1ab_0 + - certifi=2024.2.2=pyhd8ed1ab_0 - certipy=0.1.3=py_0 - cf_xarray=0.8.6=pyhd8ed1ab_0 - cffi=1.16.0=py310h2fee648_0 @@ -88,7 +89,7 @@ dependencies: - click=8.1.7=unix_pyh707e725_0 - click-plugins=1.1.1=py_0 - cligj=0.7.2=pyhd8ed1ab_1 - - climpred=2.3.0=pyhd8ed1ab_0 + - climpred=2.4.0=pyhd8ed1ab_0 - clisops=0.11.0=pyh1a96a4e_0 - cloudpickle=3.0.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 @@ -211,7 +212,7 @@ dependencies: - importlib_resources=6.1.1=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - intake=0.7.0=pyhd8ed1ab_0 - - intake-esm=2023.6.14=pyhd8ed1ab_0 + - intake-esm=2024.2.6=pyhd8ed1ab_1 - intake-geopandas=0.4.0=pyhd8ed1ab_0 - intake-thredds=2022.8.19=pyhd8ed1ab_0 - intake-xarray=0.7.0=pyhd8ed1ab_0 @@ -394,6 +395,7 @@ dependencies: - munch=4.0.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - myproxyclient=2.1.0=pyhd8ed1ab_2 + - mypy_extensions=1.0.0=pyha770c72_0 - mysql-common=8.0.33=hf1915f5_6 - mysql-libs=8.0.33=hca2cd23_6 - nbclassic=1.0.0=pyhb4ecaf3_1 @@ -426,7 +428,7 @@ dependencies: - oauthlib=3.2.2=pyhd8ed1ab_0 - openblas=0.3.24=pthreads_h7a3da1a_0 - openjpeg=2.5.0=hfec8fc6_2 - - openssl=3.1.4=hd590300_0 + - openssl=3.2.1=hd590300_0 - orc=1.9.0=h385abfd_1 - outcome=1.3.0.post0=pyhd8ed1ab_0 - overrides=7.4.0=pyhd8ed1ab_0 @@ -441,6 +443,7 @@ dependencies: - parallelio=2.5.10=mpi_mpich_h862c5c2_100 - param=2.0.0=pyhca7485f_0 - paramiko=3.3.1=pyhd8ed1ab_0 + - parse=1.20.1=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - partd=1.4.1=pyhd8ed1ab_0 - pathos=0.3.1=pyhd8ed1ab_0 @@ -485,7 +488,8 @@ dependencies: - pyct=0.4.6=py_0 - pyct-core=0.4.6=py_0 - pycurl=7.45.1=py310h60f9ec7_3 - - pydantic=1.10.13=py310h2372a71_1 + - pydantic=2.6.3=pyhd8ed1ab_0 + - pydantic-core=2.16.3=py310hcb5633a_0 - pydap=3.4.0=pyhd8ed1ab_0 - pydeck=0.8.0=pyhd8ed1ab_0 - pygments=2.16.1=pyhd8ed1ab_0 @@ -524,10 +528,11 @@ dependencies: - qtpy=2.4.1=pyhd8ed1ab_0 - rasterio=1.3.6=py310h3e853a9_0 - raven-hydro=0.2.4=py310hee4f699_0 - - ravenpy=0.12.3=py310hff52083_0 + - ravenpy=0.13.0=py310hff52083_0 - rdma-core=28.9=h59595ed_1 - re2=2023.03.02=h8c504da_0 - readline=8.2=h8228510_1 + - rechunker=0.5.2=pyhd8ed1ab_1 - referencing=0.30.2=pyhd8ed1ab_0 - regionmask=0.11.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 @@ -547,6 +552,7 @@ dependencies: - ruamel.yaml.clib=0.2.7=py310h2372a71_2 - s2n=1.3.46=h06160fa_0 - s3fs=2023.10.0=pyhd8ed1ab_0 + - salib=1.4.7=pyhd8ed1ab_0 - scikit-image=0.22.0=py310hcc13569_2 - scikit-learn=1.3.2=py310h1fdf081_1 - scipy=1.11.3=py310hb13e2d6_1 @@ -579,7 +585,7 @@ dependencies: - tenacity=8.2.3=pyhd8ed1ab_0 - terminado=0.17.1=pyh41d4057_0 - threadpoolctl=3.2.0=pyha21a80b_0 - - threddsclient=0.4.4=pyh1a96a4e_0 + - threddsclient=0.4.5=pyhca7485f_0 - tifffile=2023.8.12=pyhd8ed1ab_0 - tiledb=2.13.2=hd532e3d_0 - tinycss2=1.2.1=pyhd8ed1ab_0 @@ -632,7 +638,7 @@ dependencies: - xcb-util-keysyms=0.4.0=h516909a_0 - xcb-util-renderutil=0.3.9=h166bdaf_0 - xcb-util-wm=0.4.1=h516909a_0 - - xclim=0.46.0=py310hff52083_0 + - xclim=0.47.0=py310hff52083_0 - xerces-c=3.2.4=h55805fa_1 - xesmf=0.8.2=pyhd8ed1ab_0 - xeus=3.1.3=h06414e2_0 @@ -667,6 +673,7 @@ dependencies: - xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 - xorg-xproto=7.0.31=h7f98852_1007 - xrft=1.0.1=pyhd8ed1ab_0 + - xscen=0.8.2=pyhd8ed1ab_0 - xskillscore=0.0.24=pyhd8ed1ab_0 - xyzservices=2023.10.1=pyhd8ed1ab_0 - xz=5.2.6=h166bdaf_0 @@ -684,9 +691,15 @@ dependencies: - zstd=1.5.5=hfc55251_0 - pip: - astunparse==1.6.3 + - cairocffi==1.6.1 + - cairosvg==2.7.1 - colour==0.1.5 + - cssselect2==0.7.0 - dnspython==2.4.2 - email-validator==2.1.0.post1 + - figanos==0.3.0 + - fstd2nc==0.20231105.1 + - fstd2nc-deps==0.20200304.6 - geojson==3.1.0 - hsclient==0.3.4 - hsmodels==0.5.8 @@ -696,6 +709,7 @@ dependencies: - jupyterlab-tabular-data-editor==1.0.0 - jupyternotify==0.1.15 - pixiedust==1.1.19 + - progress==1.6 - pytest-tornasync==0.6.0.post2 - rdflib==5.0.0 - xmltodict==0.13.0 diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index d8f424c..b42ed95 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,5293 +1,454 @@ -2023-11-07T14:31:48Z Building in Docker Cloud's infrastructure... -2023-11-07T14:31:48Z Cloning into '.'... -2023-11-07T14:31:49Z Warning: Permanently added the RSA host key for IP address '140.82.113.4' to the list of known hosts. -2023-11-07T14:31:50Z Switched to a new branch 'docker-py310-231107' -2023-11-07T14:31:50Z KernelVersion: 5.4.0-1068-aws -2023-11-07T14:31:50Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2023-11-07T14:31:50Z Arch: amd64 -2023-11-07T14:31:50Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2023-11-07T14:31:50Z ApiVersion: 1.41 -2023-11-07T14:31:50Z Platform: {u'Name': u'Docker Engine - Community'} -2023-11-07T14:31:50Z Version: 20.10.15 -2023-11-07T14:31:50Z MinAPIVersion: 1.12 -2023-11-07T14:31:50Z GitCommit: 4433bf6 -2023-11-07T14:31:50Z Os: linux -2023-11-07T14:31:50Z GoVersion: go1.17.9 -2023-11-07T14:31:50Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-231107... -2023-11-07T14:31:57Z #1 [internal] load build definition from Dockerfile -2023-11-07T14:31:57Z #1 transferring dockerfile: 6.98kB done -2023-11-07T14:31:57Z #1 DONE 0.1s -2023-11-07T14:31:57Z -2023-11-07T14:31:57Z #2 [internal] load .dockerignore -2023-11-07T14:31:57Z #2 transferring context: 2B done -2023-11-07T14:31:57Z #2 DONE 0.0s -2023-11-07T14:31:57Z -2023-11-07T14:31:57Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2023-11-07T14:31:57Z #3 ... -2023-11-07T14:31:57Z -2023-11-07T14:31:57Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2023-11-07T14:31:57Z #4 DONE 0.0s -2023-11-07T14:31:57Z -2023-11-07T14:31:57Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2023-11-07T14:31:57Z #3 DONE 0.7s -2023-11-07T14:31:57Z -2023-11-07T14:31:57Z #5 [internal] load build context -2023-11-07T14:31:57Z #5 transferring context: 8.95kB done -2023-11-07T14:31:57Z #5 DONE 0.0s -2023-11-07T14:31:57Z -2023-11-07T14:31:57Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:db9f536d96d49fe21b5f4ac3252781bb0d2a3b58dab2d8e44343b85014366f00 -2023-11-07T14:31:57Z #6 resolve docker.io/continuumio/miniconda3@sha256:db9f536d96d49fe21b5f4ac3252781bb0d2a3b58dab2d8e44343b85014366f00 done -2023-11-07T14:31:57Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 0B / 114.31MB 0.1s -2023-11-07T14:31:57Z #6 sha256:db9f536d96d49fe21b5f4ac3252781bb0d2a3b58dab2d8e44343b85014366f00 3.11kB / 3.11kB done -2023-11-07T14:31:57Z #6 sha256:a89cd00402729eb4af1efb8424aec26f8ffe04d8f3250b1485f1814bd640d357 869B / 869B done -2023-11-07T14:31:57Z #6 sha256:6fbaadd54391b461351b02c0ddaf2bf284a2dcc9817f5685e07b2602e30f2b5c 4.61kB / 4.61kB done -2023-11-07T14:31:57Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 2.10MB / 31.42MB 0.1s -2023-11-07T14:31:57Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 0B / 50.08MB 0.1s -2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 8.24MB / 31.42MB 0.2s -2023-11-07T14:31:58Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 9.06MB / 114.31MB 0.4s -2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 16.78MB / 31.42MB 0.4s -2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 5.24MB / 50.08MB 0.4s -2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 19.92MB / 31.42MB 0.5s -2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 8.39MB / 50.08MB 0.5s -2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 22.02MB / 31.42MB 0.6s -2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 11.53MB / 50.08MB 0.6s -2023-11-07T14:31:58Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 20.97MB / 114.31MB 0.9s -2023-11-07T14:31:58Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 30.41MB / 31.42MB 0.9s -2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 27.26MB / 50.08MB 0.9s -2023-11-07T14:31:58Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 30.41MB / 50.08MB 1.0s -2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 29.36MB / 114.31MB 1.1s -2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 35.37MB / 50.08MB 1.1s -2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 37.75MB / 114.31MB 1.3s -2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 42.99MB / 50.08MB 1.3s -2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 46.14MB / 50.08MB 1.4s -2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 47.89MB / 114.31MB 1.5s -2023-11-07T14:31:59Z #6 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 31.42MB / 31.42MB 1.4s done -2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 50.08MB / 50.08MB 1.5s -2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 55.57MB / 114.31MB 1.8s -2023-11-07T14:31:59Z #6 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 50.08MB / 50.08MB 1.7s done -2023-11-07T14:31:59Z #6 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b -2023-11-07T14:31:59Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 61.87MB / 114.31MB 2.1s -2023-11-07T14:32:00Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 69.21MB / 114.31MB 2.6s -2023-11-07T14:32:00Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 76.55MB / 114.31MB 2.8s -2023-11-07T14:32:00Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 82.84MB / 114.31MB 3.1s -2023-11-07T14:32:01Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 90.18MB / 114.31MB 3.5s -2023-11-07T14:32:01Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 99.61MB / 114.31MB 3.9s -2023-11-07T14:32:02Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 112.20MB / 114.31MB 4.4s -2023-11-07T14:32:03Z #6 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 114.31MB / 114.31MB 5.4s done -2023-11-07T14:32:04Z #6 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 5.1s -2023-11-07T14:32:05Z #6 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 5.4s done -2023-11-07T14:32:05Z #6 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f -2023-11-07T14:32:10Z #6 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 5.1s -2023-11-07T14:32:12Z #6 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 6.5s done -2023-11-07T14:32:12Z #6 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 -2023-11-07T14:32:17Z #6 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 5.0s -2023-11-07T14:32:22Z #6 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 10.1s -2023-11-07T14:32:25Z #6 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 13.2s done -2023-11-07T14:32:26Z #6 DONE 28.2s -2023-11-07T14:32:26Z -2023-11-07T14:32:26Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2023-11-07T14:32:34Z #7 0.989 Collecting package metadata (current_repodata.json): ...working... done -2023-11-07T14:32:38Z #7 7.938 Solving environment: ...working... done -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 ## Package Plan ## -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 environment location: /opt/conda -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 added / updated specs: -2023-11-07T14:32:38Z #7 12.44 - conda -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 The following packages will be downloaded: -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 package | build -2023-11-07T14:32:38Z #7 12.44 ---------------------------|----------------- -2023-11-07T14:32:38Z #7 12.44 archspec-0.2.1 | pyhd3eb1b0_0 39 KB -2023-11-07T14:32:38Z #7 12.44 brotli-python-1.0.9 | py311h6a678d5_7 318 KB -2023-11-07T14:32:38Z #7 12.44 conda-23.10.0 | py311h06a4308_0 1.3 MB -2023-11-07T14:32:38Z #7 12.44 conda-libmamba-solver-23.11.0| py311h06a4308_0 102 KB -2023-11-07T14:32:38Z #7 12.44 libcurl-8.4.0 | h251f7ec_0 411 KB -2023-11-07T14:32:38Z #7 12.44 libmamba-1.5.3 | haf1ee3a_0 1.9 MB -2023-11-07T14:32:38Z #7 12.44 libmambapy-1.5.3 | py311h2dafd23_0 314 KB -2023-11-07T14:32:38Z #7 12.44 libnghttp2-1.57.0 | h2d74bed_0 674 KB -2023-11-07T14:32:38Z #7 12.44 openssl-3.0.12 | h7f8727e_0 5.2 MB -2023-11-07T14:32:38Z #7 12.44 urllib3-1.26.18 | py311h06a4308_0 251 KB -2023-11-07T14:32:38Z #7 12.44 yaml-cpp-0.8.0 | h6a678d5_0 607 KB -2023-11-07T14:32:38Z #7 12.44 ------------------------------------------------------------ -2023-11-07T14:32:38Z #7 12.44 Total: 11.0 MB -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 The following NEW packages will be INSTALLED: -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 archspec pkgs/main/noarch::archspec-0.2.1-pyhd3eb1b0_0 -2023-11-07T14:32:38Z #7 12.44 brotli-python pkgs/main/linux-64::brotli-python-1.0.9-py311h6a678d5_7 -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 The following packages will be REMOVED: -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 brotlipy-0.7.0-py311h5eee18b_1002 -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 The following packages will be UPDATED: -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 conda 23.9.0-py311h06a4308_0 --> 23.10.0-py311h06a4308_0 -2023-11-07T14:32:38Z #7 12.44 conda-libmamba-so~ 23.9.1-py311h06a4308_0 --> 23.11.0-py311h06a4308_0 -2023-11-07T14:32:38Z #7 12.44 libcurl 8.2.1-h251f7ec_0 --> 8.4.0-h251f7ec_0 -2023-11-07T14:32:38Z #7 12.44 libmamba 1.5.1-haf1ee3a_0 --> 1.5.3-haf1ee3a_0 -2023-11-07T14:32:38Z #7 12.44 libmambapy 1.5.1-py311h2dafd23_0 --> 1.5.3-py311h2dafd23_0 -2023-11-07T14:32:38Z #7 12.44 libnghttp2 1.52.0-h2d74bed_1 --> 1.57.0-h2d74bed_0 -2023-11-07T14:32:38Z #7 12.44 openssl 3.0.11-h7f8727e_2 --> 3.0.12-h7f8727e_0 -2023-11-07T14:32:38Z #7 12.44 urllib3 1.26.16-py311h06a4308_0 --> 1.26.18-py311h06a4308_0 -2023-11-07T14:32:38Z #7 12.44 yaml-cpp 0.7.0-h295c915_1 --> 0.8.0-h6a678d5_0 -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 -2023-11-07T14:32:38Z #7 12.44 Proceed ([y]/n)? -2023-11-07T14:32:39Z #7 13.62 -2023-11-07T14:32:39Z #7 13.62 Downloading and Extracting Packages: ...working... done -2023-11-07T14:32:39Z #7 13.62 Preparing transaction: ...working... done -2023-11-07T14:32:40Z #7 13.69 Verifying transaction: ...working... done -2023-11-07T14:32:50Z #7 14.19 Executing transaction: ...working... done -2023-11-07T14:32:52Z #7 26.11 Channels: -2023-11-07T14:32:52Z #7 26.11 - conda-forge -2023-11-07T14:32:52Z #7 26.11 - defaults -2023-11-07T14:32:52Z #7 26.11 Platform: linux-64 -2023-11-07T14:33:52Z #7 26.11 Collecting package metadata (repodata.json): ...working... done -2023-11-07T14:33:54Z #7 86.01 Solving environment: ...working... done -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 ## Package Plan ## -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 environment location: /opt/conda -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 added / updated specs: -2023-11-07T14:33:54Z #7 88.34 - mamba -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 The following packages will be downloaded: -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 package | build -2023-11-07T14:33:54Z #7 88.34 ---------------------------|----------------- -2023-11-07T14:33:54Z #7 88.34 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 certifi-2023.7.22 | pyhd8ed1ab_0 150 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 conda-23.10.0 | py311h38be061_0 1.2 MB conda-forge -2023-11-07T14:33:54Z #7 88.34 fmt-10.1.1 | h00ab1b0_0 188 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2023-11-07T14:33:54Z #7 88.34 libarchive-3.7.2 | h039dbb9_0 846 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 libgcc-ng-13.2.0 | h807b86a_2 753 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 libgomp-13.2.0 | h807b86a_2 411 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 libiconv-1.17 | h166bdaf_0 1.4 MB conda-forge -2023-11-07T14:33:54Z #7 88.34 libmamba-1.5.3 | had39da4_1 1.6 MB conda-forge -2023-11-07T14:33:54Z #7 88.34 libmambapy-1.5.3 | py311hf2555c7_1 297 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 libstdcxx-ng-13.2.0 | h7e041cc_2 3.7 MB conda-forge -2023-11-07T14:33:54Z #7 88.34 libxml2-2.11.5 | h232c23b_1 689 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 lzo-2.10 | h516909a_1000 314 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 mamba-1.5.3 | py311h3072747_1 64 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 openssl-3.1.4 | hd590300_0 2.5 MB conda-forge -2023-11-07T14:33:54Z #7 88.34 python_abi-3.11 | 2_cp311 5 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2023-11-07T14:33:54Z #7 88.34 ------------------------------------------------------------ -2023-11-07T14:33:54Z #7 88.34 Total: 25.7 MB -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 The following NEW packages will be INSTALLED: -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 libiconv conda-forge/linux-64::libiconv-1.17-h166bdaf_0 -2023-11-07T14:33:54Z #7 88.34 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2023-11-07T14:33:54Z #7 88.34 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 -2023-11-07T14:33:54Z #7 88.34 mamba conda-forge/linux-64::mamba-1.5.3-py311h3072747_1 -2023-11-07T14:33:54Z #7 88.34 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 The following packages will be UPDATED: -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.1.1-h00ab1b0_0 -2023-11-07T14:33:54Z #7 88.34 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2023-11-07T14:33:54Z #7 88.34 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h039dbb9_0 -2023-11-07T14:33:54Z #7 88.34 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_2 -2023-11-07T14:33:54Z #7 88.34 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_2 -2023-11-07T14:33:54Z #7 88.34 libmamba pkgs/main::libmamba-1.5.3-haf1ee3a_0 --> conda-forge::libmamba-1.5.3-had39da4_1 -2023-11-07T14:33:54Z #7 88.34 libmambapy pkgs/main::libmambapy-1.5.3-py311h2da~ --> conda-forge::libmambapy-1.5.3-py311hf2555c7_1 -2023-11-07T14:33:54Z #7 88.34 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_2 -2023-11-07T14:33:54Z #7 88.34 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.11.5-h232c23b_1 -2023-11-07T14:33:54Z #7 88.34 openssl pkgs/main::openssl-3.0.12-h7f8727e_0 --> conda-forge::openssl-3.1.4-hd590300_0 -2023-11-07T14:33:54Z #7 88.34 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 The following packages will be SUPERSEDED by a higher-priority channel: -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2023-11-07T14:33:54Z #7 88.34 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2023-11-07T14:33:54Z #7 88.34 certifi pkgs/main/linux-64::certifi-2023.7.22~ --> conda-forge/noarch::certifi-2023.7.22-pyhd8ed1ab_0 -2023-11-07T14:33:54Z #7 88.34 conda pkgs/main::conda-23.10.0-py311h06a430~ --> conda-forge::conda-23.10.0-py311h38be061_0 -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 -2023-11-07T14:33:54Z #7 88.34 Proceed ([y]/n)? -2023-11-07T14:33:57Z #7 91.07 -2023-11-07T14:33:57Z #7 91.07 Downloading and Extracting Packages: ...working... done -2023-11-07T14:33:57Z #7 91.07 Preparing transaction: ...working... done -2023-11-07T14:33:57Z #7 91.16 Verifying transaction: ...working... done -2023-11-07T14:34:06Z #7 91.61 Executing transaction: ...working... done -2023-11-07T14:34:07Z #7 101.6 Will remove 31 (36.6 MB) tarball(s). -2023-11-07T14:34:07Z #7 101.6 Will remove 1 index cache(s). -2023-11-07T14:34:07Z #7 101.6 Will remove 7 (33.3 MB) package(s). -2023-11-07T14:34:07Z #7 101.6 There are no tempfile(s) to remove. -2023-11-07T14:34:07Z #7 101.6 There are no logfile(s) to remove. -2023-11-07T14:34:09Z #7 103.1 bin/micromamba -2023-11-07T14:34:11Z #7 DONE 105.8s -2023-11-07T14:34:11Z -2023-11-07T14:34:11Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2023-11-07T14:34:12Z #8 0.555 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2023-11-07T14:34:12Z #8 0.574 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2023-11-07T14:34:12Z #8 0.574 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2023-11-07T14:34:12Z #8 0.734 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8062 kB] -2023-11-07T14:34:13Z #8 1.425 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [258 kB] -2023-11-07T14:34:14Z #8 2.110 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [17.4 kB] -2023-11-07T14:34:15Z #8 3.277 Fetched 8546 kB in 3s (3130 kB/s) -2023-11-07T14:34:16Z #8 3.277 Reading package lists... -2023-11-07T14:34:17Z #8 4.359 Reading package lists... -2023-11-07T14:34:17Z #8 5.511 Building dependency tree... -2023-11-07T14:34:17Z #8 5.775 Reading state information... -2023-11-07T14:34:18Z #8 6.146 git is already the newest version (1:2.30.2-1+deb11u2). -2023-11-07T14:34:18Z #8 6.146 mercurial is already the newest version (5.6.1-4). -2023-11-07T14:34:18Z #8 6.146 The following additional packages will be installed: -2023-11-07T14:34:18Z #8 6.147 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2023-11-07T14:34:18Z #8 6.147 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2023-11-07T14:34:18Z #8 6.148 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2023-11-07T14:34:18Z #8 6.148 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2023-11-07T14:34:18Z #8 6.149 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2023-11-07T14:34:18Z #8 6.149 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2023-11-07T14:34:18Z #8 6.157 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2023-11-07T14:34:18Z #8 6.157 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2023-11-07T14:34:18Z #8 6.157 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2023-11-07T14:34:18Z #8 6.157 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2023-11-07T14:34:18Z #8 6.157 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2023-11-07T14:34:18Z #8 6.157 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2023-11-07T14:34:18Z #8 6.157 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2023-11-07T14:34:18Z #8 6.157 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2023-11-07T14:34:18Z #8 6.157 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2023-11-07T14:34:18Z #8 6.157 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2023-11-07T14:34:18Z #8 6.157 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2023-11-07T14:34:18Z #8 6.157 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2023-11-07T14:34:18Z #8 6.157 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2023-11-07T14:34:18Z #8 6.157 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2023-11-07T14:34:18Z #8 6.157 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2023-11-07T14:34:18Z #8 6.157 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2023-11-07T14:34:18Z #8 6.157 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2023-11-07T14:34:18Z #8 6.157 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2023-11-07T14:34:18Z #8 6.157 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2023-11-07T14:34:18Z #8 6.157 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2023-11-07T14:34:18Z #8 6.157 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2023-11-07T14:34:18Z #8 6.157 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2023-11-07T14:34:18Z #8 6.157 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2023-11-07T14:34:18Z #8 6.157 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2023-11-07T14:34:18Z #8 6.157 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2023-11-07T14:34:18Z #8 6.157 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2023-11-07T14:34:18Z #8 6.157 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2023-11-07T14:34:18Z #8 6.157 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2023-11-07T14:34:18Z #8 6.157 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2023-11-07T14:34:18Z #8 6.157 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2023-11-07T14:34:18Z #8 6.157 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2023-11-07T14:34:18Z #8 6.157 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv -2023-11-07T14:34:18Z #8 6.157 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data -2023-11-07T14:34:18Z #8 6.157 Suggested packages: -2023-11-07T14:34:18Z #8 6.157 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2023-11-07T14:34:18Z #8 6.157 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2023-11-07T14:34:18Z #8 6.157 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2023-11-07T14:34:18Z #8 6.157 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs -2023-11-07T14:34:18Z #8 6.157 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser -2023-11-07T14:34:18Z #8 6.157 opencl-icd ed diffutils-doc systemd-container policykit-1 zip -2023-11-07T14:34:18Z #8 6.157 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2023-11-07T14:34:18Z #8 6.157 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2023-11-07T14:34:18Z #8 6.157 nvidia-legacy-340xx-vdpau-driver mesa-utils -2023-11-07T14:34:19Z #8 8.006 The following NEW packages will be installed: -2023-11-07T14:34:19Z #8 8.008 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2023-11-07T14:34:19Z #8 8.009 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2023-11-07T14:34:20Z #8 8.009 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2023-11-07T14:34:20Z #8 8.017 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2023-11-07T14:34:20Z #8 8.017 glib-networking glib-networking-common glib-networking-services -2023-11-07T14:34:20Z #8 8.017 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2023-11-07T14:34:20Z #8 8.017 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2023-11-07T14:34:20Z #8 8.017 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2023-11-07T14:34:20Z #8 8.017 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2023-11-07T14:34:20Z #8 8.017 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2023-11-07T14:34:20Z #8 8.017 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2023-11-07T14:34:20Z #8 8.017 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2023-11-07T14:34:20Z #8 8.017 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2023-11-07T14:34:20Z #8 8.017 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2023-11-07T14:34:20Z #8 8.017 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2023-11-07T14:34:20Z #8 8.017 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2023-11-07T14:34:20Z #8 8.017 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2023-11-07T14:34:20Z #8 8.017 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2023-11-07T14:34:20Z #8 8.017 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2023-11-07T14:34:20Z #8 8.017 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2023-11-07T14:34:20Z #8 8.017 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2023-11-07T14:34:20Z #8 8.017 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2023-11-07T14:34:20Z #8 8.017 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2023-11-07T14:34:20Z #8 8.017 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2023-11-07T14:34:20Z #8 8.017 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2023-11-07T14:34:20Z #8 8.017 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2023-11-07T14:34:20Z #8 8.017 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2023-11-07T14:34:20Z #8 8.017 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2023-11-07T14:34:20Z #8 8.017 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2023-11-07T14:34:20Z #8 8.017 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2023-11-07T14:34:20Z #8 8.017 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2023-11-07T14:34:20Z #8 8.017 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2023-11-07T14:34:20Z #8 8.017 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2023-11-07T14:34:20Z #8 8.017 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2023-11-07T14:34:20Z #8 8.017 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2023-11-07T14:34:20Z #8 8.017 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2023-11-07T14:34:20Z #8 8.017 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2023-11-07T14:34:20Z #8 8.017 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2023-11-07T14:34:20Z #8 8.017 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2023-11-07T14:34:20Z #8 8.017 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2023-11-07T14:34:20Z #8 8.017 x11-utils xkb-data -2023-11-07T14:34:20Z #8 8.057 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. -2023-11-07T14:34:20Z #8 8.057 Need to get 235 MB of archives. -2023-11-07T14:34:20Z #8 8.057 After this operation, 890 MB of additional disk space will be used. -2023-11-07T14:34:20Z #8 8.057 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2023-11-07T14:34:20Z #8 8.063 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2023-11-07T14:34:20Z #8 8.066 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2023-11-07T14:34:20Z #8 8.069 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2023-11-07T14:34:20Z #8 8.074 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2023-11-07T14:34:20Z #8 8.077 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2023-11-07T14:34:20Z #8 8.079 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2023-11-07T14:34:20Z #8 8.085 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2023-11-07T14:34:20Z #8 8.087 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2023-11-07T14:34:20Z #8 8.090 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2023-11-07T14:34:20Z #8 8.256 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2023-11-07T14:34:20Z #8 8.258 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2023-11-07T14:34:20Z #8 8.265 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2023-11-07T14:34:20Z #8 8.271 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2023-11-07T14:34:20Z #8 8.308 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2023-11-07T14:34:20Z #8 8.312 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2023-11-07T14:34:20Z #8 8.337 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2023-11-07T14:34:20Z #8 8.359 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2023-11-07T14:34:20Z #8 8.361 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2023-11-07T14:34:20Z #8 8.366 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2023-11-07T14:34:20Z #8 8.676 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2023-11-07T14:34:20Z #8 8.699 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2023-11-07T14:34:20Z #8 8.714 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2023-11-07T14:34:20Z #8 8.717 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2023-11-07T14:34:20Z #8 8.750 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2023-11-07T14:34:20Z #8 8.752 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2023-11-07T14:34:20Z #8 8.755 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2023-11-07T14:34:20Z #8 8.759 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u4 [290 kB] -2023-11-07T14:34:20Z #8 8.766 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2023-11-07T14:34:20Z #8 8.770 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2023-11-07T14:34:20Z #8 8.781 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2023-11-07T14:34:21Z #8 9.164 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2023-11-07T14:34:21Z #8 9.166 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2023-11-07T14:34:21Z #8 9.168 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2023-11-07T14:34:21Z #8 9.174 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2023-11-07T14:34:21Z #8 9.178 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2023-11-07T14:34:21Z #8 9.181 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2023-11-07T14:34:21Z #8 9.183 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2023-11-07T14:34:21Z #8 9.185 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2023-11-07T14:34:21Z #8 9.188 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2023-11-07T14:34:21Z #8 9.244 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2023-11-07T14:34:21Z #8 9.254 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2023-11-07T14:34:21Z #8 9.321 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2023-11-07T14:34:21Z #8 9.328 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2023-11-07T14:34:21Z #8 9.363 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2023-11-07T14:34:21Z #8 9.367 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2023-11-07T14:34:21Z #8 9.376 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2023-11-07T14:34:21Z #8 9.412 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2023-11-07T14:34:21Z #8 9.414 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2023-11-07T14:34:21Z #8 9.676 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2023-11-07T14:34:21Z #8 9.678 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2023-11-07T14:34:21Z #8 9.683 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2023-11-07T14:34:21Z #8 9.685 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2023-11-07T14:34:21Z #8 9.687 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2023-11-07T14:34:21Z #8 9.689 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2023-11-07T14:34:21Z #8 9.692 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2023-11-07T14:34:21Z #8 9.695 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2023-11-07T14:34:21Z #8 9.703 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2023-11-07T14:34:21Z #8 9.721 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2023-11-07T14:34:21Z #8 9.726 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2023-11-07T14:34:21Z #8 9.737 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2023-11-07T14:34:21Z #8 9.748 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2023-11-07T14:34:21Z #8 9.752 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2023-11-07T14:34:21Z #8 9.756 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2023-11-07T14:34:21Z #8 9.766 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2023-11-07T14:34:21Z #8 9.770 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2023-11-07T14:34:21Z #8 9.775 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2023-11-07T14:34:21Z #8 9.782 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2023-11-07T14:34:21Z #8 9.785 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2023-11-07T14:34:21Z #8 9.789 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2023-11-07T14:34:21Z #8 9.793 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2023-11-07T14:34:21Z #8 9.796 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2023-11-07T14:34:21Z #8 9.799 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2023-11-07T14:34:21Z #8 9.801 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2023-11-07T14:34:21Z #8 9.807 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2023-11-07T14:34:21Z #8 9.811 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2023-11-07T14:34:21Z #8 9.814 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2023-11-07T14:34:21Z #8 9.816 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2023-11-07T14:34:21Z #8 9.844 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2023-11-07T14:34:21Z #8 9.846 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2023-11-07T14:34:21Z #8 9.847 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2023-11-07T14:34:21Z #8 9.853 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2023-11-07T14:34:21Z #8 9.855 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2023-11-07T14:34:21Z #8 9.857 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2023-11-07T14:34:21Z #8 9.859 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2023-11-07T14:34:21Z #8 9.862 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2023-11-07T14:34:21Z #8 9.864 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2023-11-07T14:34:21Z #8 9.866 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2023-11-07T14:34:21Z #8 9.868 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2023-11-07T14:34:21Z #8 9.870 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2023-11-07T14:34:21Z #8 9.871 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2023-11-07T14:34:21Z #8 9.882 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2023-11-07T14:34:21Z #8 9.884 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2023-11-07T14:34:21Z #8 9.888 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2023-11-07T14:34:21Z #8 9.890 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2023-11-07T14:34:21Z #8 9.891 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2023-11-07T14:34:21Z #8 9.892 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2023-11-07T14:34:21Z #8 9.909 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2023-11-07T14:34:21Z #8 9.911 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2023-11-07T14:34:21Z #8 9.914 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2023-11-07T14:34:21Z #8 9.915 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2023-11-07T14:34:21Z #8 9.917 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2023-11-07T14:34:21Z #8 9.941 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2023-11-07T14:34:21Z #8 9.943 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2023-11-07T14:34:21Z #8 9.951 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2023-11-07T14:34:21Z #8 9.967 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2023-11-07T14:34:21Z #8 9.969 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2023-11-07T14:34:21Z #8 10.05 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2023-11-07T14:34:22Z #8 10.12 Get:109 http://deb.debian.org/debian-security bullseye-security/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2023-11-07T14:34:22Z #8 10.13 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.4.0esr-1~deb11u1 [63.6 MB] -2023-11-07T14:34:23Z #8 11.79 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2023-11-07T14:34:23Z #8 11.79 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2023-11-07T14:34:23Z #8 11.80 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2023-11-07T14:34:23Z #8 11.80 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2023-11-07T14:34:23Z #8 11.80 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2023-11-07T14:34:23Z #8 11.80 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2023-11-07T14:34:23Z #8 11.84 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2023-11-07T14:34:23Z #8 11.88 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2023-11-07T14:34:23Z #8 11.91 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2023-11-07T14:34:23Z #8 11.92 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2023-11-07T14:34:23Z #8 11.92 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2023-11-07T14:34:23Z #8 11.97 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2023-11-07T14:34:24Z #8 12.47 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2023-11-07T14:34:24Z #8 12.47 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2023-11-07T14:34:24Z #8 12.47 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2023-11-07T14:34:24Z #8 12.47 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2023-11-07T14:34:24Z #8 12.47 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2023-11-07T14:34:24Z #8 12.48 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2023-11-07T14:34:24Z #8 12.48 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2023-11-07T14:34:24Z #8 12.48 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2023-11-07T14:34:24Z #8 12.49 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2023-11-07T14:34:24Z #8 12.52 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2023-11-07T14:34:24Z #8 12.55 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2023-11-07T14:34:24Z #8 12.65 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2023-11-07T14:34:24Z #8 12.65 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2023-11-07T14:34:24Z #8 12.65 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2023-11-07T14:34:24Z #8 12.65 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2023-11-07T14:34:24Z #8 12.66 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2023-11-07T14:34:24Z #8 12.66 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2023-11-07T14:34:24Z #8 12.88 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2023-11-07T14:34:24Z #8 12.88 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2023-11-07T14:34:24Z #8 12.89 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2023-11-07T14:34:24Z #8 12.89 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2023-11-07T14:34:24Z #8 12.90 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2023-11-07T14:34:24Z #8 12.90 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2023-11-07T14:34:24Z #8 12.94 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2023-11-07T14:34:24Z #8 12.94 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2023-11-07T14:34:24Z #8 12.95 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2023-11-07T14:34:24Z #8 12.95 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2023-11-07T14:34:24Z #8 12.96 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2023-11-07T14:34:24Z #8 12.96 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2023-11-07T14:34:24Z #8 12.96 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2023-11-07T14:34:24Z #8 12.97 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2023-11-07T14:34:24Z #8 12.97 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2023-11-07T14:34:24Z #8 12.97 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2023-11-07T14:34:24Z #8 12.97 Get:156 http://deb.debian.org/debian-security bullseye-security/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2023-11-07T14:34:24Z #8 12.99 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2023-11-07T14:34:24Z #8 12.99 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2023-11-07T14:34:24Z #8 12.99 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2023-11-07T14:34:24Z #8 13.00 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2023-11-07T14:34:24Z #8 13.00 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2023-11-07T14:34:24Z #8 13.03 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2023-11-07T14:34:24Z #8 13.03 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2023-11-07T14:34:24Z #8 13.03 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2023-11-07T14:34:24Z #8 13.04 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2023-11-07T14:34:25Z #8 13.18 Get:166 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-dev-bin amd64 2.31-13+deb11u7 [276 kB] -2023-11-07T14:34:25Z #8 13.18 Get:167 http://deb.debian.org/debian-security bullseye-security/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2023-11-07T14:34:25Z #8 13.18 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2023-11-07T14:34:25Z #8 13.19 Get:169 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-devtools amd64 2.31-13+deb11u7 [246 kB] -2023-11-07T14:34:25Z #8 13.19 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.197-1 [1668 kB] -2023-11-07T14:34:25Z #8 13.22 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2023-11-07T14:34:25Z #8 13.23 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2023-11-07T14:34:25Z #8 13.23 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2023-11-07T14:34:25Z #8 13.24 Get:174 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6-dev amd64 2.31-13+deb11u7 [2361 kB] -2023-11-07T14:34:25Z #8 13.27 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2023-11-07T14:34:25Z #8 13.27 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2023-11-07T14:34:25Z #8 13.28 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2023-11-07T14:34:25Z #8 13.28 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2023-11-07T14:34:25Z #8 13.29 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2023-11-07T14:34:25Z #8 13.29 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2023-11-07T14:34:25Z #8 13.30 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2023-11-07T14:34:25Z #8 13.30 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2023-11-07T14:34:25Z #8 13.50 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2023-11-07T14:34:26Z #8 14.04 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2023-11-07T14:34:26Z #8 14.04 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2023-11-07T14:34:26Z #8 14.04 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2023-11-07T14:34:26Z #8 14.04 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2023-11-07T14:34:26Z #8 14.27 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2023-11-07T14:34:26Z #8 14.29 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2023-11-07T14:34:26Z #8 14.29 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2023-11-07T14:34:26Z #8 14.29 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2023-11-07T14:34:26Z #8 14.29 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2023-11-07T14:34:26Z #8 14.29 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2023-11-07T14:34:26Z #8 14.30 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2023-11-07T14:34:26Z #8 14.30 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2023-11-07T14:34:26Z #8 14.30 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2023-11-07T14:34:26Z #8 14.30 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2023-11-07T14:34:26Z #8 14.40 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2023-11-07T14:34:26Z #8 14.40 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2023-11-07T14:34:26Z #8 14.40 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2023-11-07T14:34:26Z #8 14.40 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2023-11-07T14:34:26Z #8 14.40 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2023-11-07T14:34:26Z #8 14.40 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2023-11-07T14:34:26Z #8 14.40 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2023-11-07T14:34:26Z #8 14.40 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2023-11-07T14:34:26Z #8 14.40 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2023-11-07T14:34:26Z #8 14.40 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2023-11-07T14:34:26Z #8 14.40 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2023-11-07T14:34:26Z #8 14.40 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2023-11-07T14:34:26Z #8 14.40 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2023-11-07T14:34:26Z #8 14.40 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2023-11-07T14:34:26Z #8 14.40 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2023-11-07T14:34:26Z #8 14.40 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2023-11-07T14:34:26Z #8 14.40 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2023-11-07T14:34:26Z #8 14.42 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2023-11-07T14:34:26Z #8 14.48 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2023-11-07T14:34:26Z #8 14.57 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2023-11-07T14:34:26Z #8 14.57 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2023-11-07T14:34:26Z #8 14.58 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2023-11-07T14:34:26Z #8 14.58 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2023-11-07T14:34:26Z #8 14.58 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2023-11-07T14:34:26Z #8 14.88 debconf: delaying package configuration, since apt-utils is not installed -2023-11-07T14:34:26Z #8 14.93 Fetched 235 MB in 7s (36.0 MB/s) -2023-11-07T14:34:26Z #8 14.97 Selecting previously unselected package libapparmor1:amd64. -2023-11-07T14:34:26Z #8 14.97 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12444 files and directories currently installed.) -2023-11-07T14:34:26Z #8 14.99 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2023-11-07T14:34:26Z #8 15.00 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2023-11-07T14:34:26Z #8 15.05 Selecting previously unselected package libcap2:amd64. -2023-11-07T14:34:26Z #8 15.05 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2023-11-07T14:34:26Z #8 15.06 Unpacking libcap2:amd64 (1:2.44-1) ... -2023-11-07T14:34:26Z #8 15.11 Selecting previously unselected package libargon2-1:amd64. -2023-11-07T14:34:27Z #8 15.11 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2023-11-07T14:34:27Z #8 15.12 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2023-11-07T14:34:27Z #8 15.16 Selecting previously unselected package dmsetup. -2023-11-07T14:34:27Z #8 15.16 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2023-11-07T14:34:27Z #8 15.17 Unpacking dmsetup (2:1.02.175-2.1) ... -2023-11-07T14:34:27Z #8 15.23 Selecting previously unselected package libdevmapper1.02.1:amd64. -2023-11-07T14:34:27Z #8 15.23 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2023-11-07T14:34:27Z #8 15.24 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2023-11-07T14:34:27Z #8 15.29 Selecting previously unselected package libjson-c5:amd64. -2023-11-07T14:34:27Z #8 15.30 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2023-11-07T14:34:27Z #8 15.30 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2023-11-07T14:34:27Z #8 15.35 Selecting previously unselected package libcryptsetup12:amd64. -2023-11-07T14:34:27Z #8 15.36 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2023-11-07T14:34:27Z #8 15.36 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2023-11-07T14:34:27Z #8 15.45 Selecting previously unselected package libip4tc2:amd64. -2023-11-07T14:34:27Z #8 15.46 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2023-11-07T14:34:27Z #8 15.46 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2023-11-07T14:34:27Z #8 15.50 Selecting previously unselected package libkmod2:amd64. -2023-11-07T14:34:27Z #8 15.51 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2023-11-07T14:34:27Z #8 15.51 Unpacking libkmod2:amd64 (28-1) ... -2023-11-07T14:34:27Z #8 15.57 Selecting previously unselected package systemd. -2023-11-07T14:34:27Z #8 15.57 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2023-11-07T14:34:27Z #8 15.63 Unpacking systemd (247.3-7+deb11u4) ... -2023-11-07T14:34:28Z #8 16.70 Setting up libapparmor1:amd64 (2.13.6-10) ... -2023-11-07T14:34:28Z #8 16.71 Setting up libcap2:amd64 (1:2.44-1) ... -2023-11-07T14:34:28Z #8 16.73 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2023-11-07T14:34:28Z #8 16.75 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2023-11-07T14:34:28Z #8 16.76 Setting up libip4tc2:amd64 (1.8.7-1) ... -2023-11-07T14:34:28Z #8 16.78 Setting up libkmod2:amd64 (28-1) ... -2023-11-07T14:34:28Z #8 16.79 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2023-11-07T14:34:28Z #8 16.81 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2023-11-07T14:34:28Z #8 16.82 Setting up systemd (247.3-7+deb11u4) ... -2023-11-07T14:34:28Z #8 16.87 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2023-11-07T14:34:28Z #8 16.88 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2023-11-07T14:34:28Z #8 16.89 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2023-11-07T14:34:28Z #8 16.92 Initializing machine ID from KVM UUID. -2023-11-07T14:34:29Z #8 17.35 Setting up dmsetup (2:1.02.175-2.1) ... -2023-11-07T14:34:29Z #8 17.43 Selecting previously unselected package systemd-sysv. -2023-11-07T14:34:29Z #8 17.43 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13295 files and directories currently installed.) -2023-11-07T14:34:29Z #8 17.45 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2023-11-07T14:34:29Z #8 17.46 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2023-11-07T14:34:29Z #8 17.52 Selecting previously unselected package libdbus-1-3:amd64. -2023-11-07T14:34:29Z #8 17.52 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2023-11-07T14:34:29Z #8 17.52 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2023-11-07T14:34:29Z #8 17.60 Selecting previously unselected package dbus. -2023-11-07T14:34:29Z #8 17.60 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2023-11-07T14:34:29Z #8 17.62 Unpacking dbus (1.12.28-0+deb11u1) ... -2023-11-07T14:34:29Z #8 17.76 Selecting previously unselected package libnss-systemd:amd64. -2023-11-07T14:34:29Z #8 17.77 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2023-11-07T14:34:29Z #8 17.77 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2023-11-07T14:34:29Z #8 17.84 Selecting previously unselected package libpam-systemd:amd64. -2023-11-07T14:34:29Z #8 17.84 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2023-11-07T14:34:29Z #8 17.85 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2023-11-07T14:34:29Z #8 17.95 Selecting previously unselected package manpages. -2023-11-07T14:34:29Z #8 17.96 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2023-11-07T14:34:29Z #8 17.96 Unpacking manpages (5.10-1) ... -2023-11-07T14:34:30Z #8 18.16 Selecting previously unselected package systemd-timesyncd. -2023-11-07T14:34:30Z #8 18.16 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2023-11-07T14:34:30Z #8 18.17 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2023-11-07T14:34:30Z #8 18.23 Selecting previously unselected package hicolor-icon-theme. -2023-11-07T14:34:30Z #8 18.23 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2023-11-07T14:34:30Z #8 18.24 Unpacking hicolor-icon-theme (0.17-2) ... -2023-11-07T14:34:30Z #8 18.34 Selecting previously unselected package libgdk-pixbuf2.0-common. -2023-11-07T14:34:30Z #8 18.34 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2023-11-07T14:34:30Z #8 18.35 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2023-11-07T14:34:30Z #8 18.47 Selecting previously unselected package libicu67:amd64. -2023-11-07T14:34:30Z #8 18.47 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2023-11-07T14:34:30Z #8 18.48 Unpacking libicu67:amd64 (67.1-7) ... -2023-11-07T14:34:31Z #8 19.95 Selecting previously unselected package libxml2:amd64. -2023-11-07T14:34:31Z #8 19.95 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2023-11-07T14:34:31Z #8 19.96 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2023-11-07T14:34:32Z #8 20.15 Selecting previously unselected package shared-mime-info. -2023-11-07T14:34:32Z #8 20.15 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2023-11-07T14:34:32Z #8 20.15 Unpacking shared-mime-info (2.0-1) ... -2023-11-07T14:34:32Z #8 20.33 Selecting previously unselected package libjpeg62-turbo:amd64. -2023-11-07T14:34:32Z #8 20.33 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2023-11-07T14:34:32Z #8 20.33 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2023-11-07T14:34:32Z #8 20.40 Selecting previously unselected package libpng16-16:amd64. -2023-11-07T14:34:32Z #8 20.40 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2023-11-07T14:34:32Z #8 20.41 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2023-11-07T14:34:32Z #8 20.48 Selecting previously unselected package libdeflate0:amd64. -2023-11-07T14:34:32Z #8 20.48 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2023-11-07T14:34:32Z #8 20.49 Unpacking libdeflate0:amd64 (1.7-1) ... -2023-11-07T14:34:32Z #8 20.53 Selecting previously unselected package libjbig0:amd64. -2023-11-07T14:34:32Z #8 20.54 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2023-11-07T14:34:32Z #8 20.55 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2023-11-07T14:34:32Z #8 20.59 Selecting previously unselected package libwebp6:amd64. -2023-11-07T14:34:32Z #8 20.59 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2023-11-07T14:34:32Z #8 20.60 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2023-11-07T14:34:32Z #8 20.67 Selecting previously unselected package libtiff5:amd64. -2023-11-07T14:34:32Z #8 20.68 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u4_amd64.deb ... -2023-11-07T14:34:32Z #8 20.69 Unpacking libtiff5:amd64 (4.2.0-1+deb11u4) ... -2023-11-07T14:34:32Z #8 20.76 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2023-11-07T14:34:32Z #8 20.76 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2023-11-07T14:34:32Z #8 20.77 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2023-11-07T14:34:32Z #8 20.84 Selecting previously unselected package gtk-update-icon-cache. -2023-11-07T14:34:32Z #8 20.84 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2023-11-07T14:34:32Z #8 20.85 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2023-11-07T14:34:32Z #8 20.97 Selecting previously unselected package adwaita-icon-theme. -2023-11-07T14:34:32Z #8 20.97 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2023-11-07T14:34:32Z #8 20.98 Unpacking adwaita-icon-theme (3.38.0-1) ... -2023-11-07T14:34:35Z #8 23.40 Selecting previously unselected package alsa-topology-conf. -2023-11-07T14:34:35Z #8 23.40 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2023-11-07T14:34:35Z #8 23.41 Unpacking alsa-topology-conf (1.2.4-1) ... -2023-11-07T14:34:35Z #8 23.45 Selecting previously unselected package libasound2-data. -2023-11-07T14:34:35Z #8 23.46 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2023-11-07T14:34:35Z #8 23.46 Unpacking libasound2-data (1.2.4-1.1) ... -2023-11-07T14:34:35Z #8 23.53 Selecting previously unselected package libasound2:amd64. -2023-11-07T14:34:35Z #8 23.53 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2023-11-07T14:34:35Z #8 23.54 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2023-11-07T14:34:35Z #8 23.62 Selecting previously unselected package alsa-ucm-conf. -2023-11-07T14:34:35Z #8 23.63 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2023-11-07T14:34:35Z #8 23.63 Unpacking alsa-ucm-conf (1.2.4-2) ... -2023-11-07T14:34:35Z #8 23.71 Selecting previously unselected package libatspi2.0-0:amd64. -2023-11-07T14:34:35Z #8 23.71 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2023-11-07T14:34:35Z #8 23.72 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2023-11-07T14:34:35Z #8 23.77 Selecting previously unselected package libxi6:amd64. -2023-11-07T14:34:35Z #8 23.78 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2023-11-07T14:34:35Z #8 23.79 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2023-11-07T14:34:35Z #8 23.84 Selecting previously unselected package libxtst6:amd64. -2023-11-07T14:34:35Z #8 23.84 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2023-11-07T14:34:35Z #8 23.85 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2023-11-07T14:34:35Z #8 23.89 Selecting previously unselected package at-spi2-core. -2023-11-07T14:34:35Z #8 23.90 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2023-11-07T14:34:35Z #8 23.90 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2023-11-07T14:34:35Z #8 23.96 Selecting previously unselected package binutils-common:amd64. -2023-11-07T14:34:35Z #8 23.96 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2023-11-07T14:34:35Z #8 23.97 Unpacking binutils-common:amd64 (2.35.2-2) ... -2023-11-07T14:34:36Z #8 24.36 Selecting previously unselected package libbinutils:amd64. -2023-11-07T14:34:36Z #8 24.36 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2023-11-07T14:34:36Z #8 24.37 Unpacking libbinutils:amd64 (2.35.2-2) ... -2023-11-07T14:34:36Z #8 24.51 Selecting previously unselected package libctf-nobfd0:amd64. -2023-11-07T14:34:36Z #8 24.51 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2023-11-07T14:34:36Z #8 24.52 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2023-11-07T14:34:36Z #8 24.58 Selecting previously unselected package libctf0:amd64. -2023-11-07T14:34:36Z #8 24.58 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2023-11-07T14:34:36Z #8 24.58 Unpacking libctf0:amd64 (2.35.2-2) ... -2023-11-07T14:34:36Z #8 24.62 Selecting previously unselected package binutils-x86-64-linux-gnu. -2023-11-07T14:34:36Z #8 24.63 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2023-11-07T14:34:36Z #8 24.64 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2023-11-07T14:34:36Z #8 25.00 Selecting previously unselected package binutils. -2023-11-07T14:34:36Z #8 25.00 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2023-11-07T14:34:36Z #8 25.01 Unpacking binutils (2.35.2-2) ... -2023-11-07T14:34:37Z #8 25.07 Selecting previously unselected package libisl23:amd64. -2023-11-07T14:34:37Z #8 25.07 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2023-11-07T14:34:37Z #8 25.08 Unpacking libisl23:amd64 (0.23-1) ... -2023-11-07T14:34:37Z #8 25.22 Selecting previously unselected package libmpfr6:amd64. -2023-11-07T14:34:37Z #8 25.22 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2023-11-07T14:34:37Z #8 25.23 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2023-11-07T14:34:37Z #8 25.42 Selecting previously unselected package libmpc3:amd64. -2023-11-07T14:34:37Z #8 25.42 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2023-11-07T14:34:37Z #8 25.43 Unpacking libmpc3:amd64 (1.2.0-1) ... -2023-11-07T14:34:37Z #8 25.47 Selecting previously unselected package cpp-10. -2023-11-07T14:34:37Z #8 25.47 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2023-11-07T14:34:37Z #8 25.48 Unpacking cpp-10 (10.2.1-6) ... -2023-11-07T14:34:38Z #8 26.76 Selecting previously unselected package cpp. -2023-11-07T14:34:38Z #8 26.76 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2023-11-07T14:34:38Z #8 26.77 Unpacking cpp (4:10.2.1-1) ... -2023-11-07T14:34:38Z #8 26.80 Selecting previously unselected package dbus-user-session. -2023-11-07T14:34:38Z #8 26.81 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2023-11-07T14:34:38Z #8 26.81 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2023-11-07T14:34:38Z #8 26.87 Selecting previously unselected package libdconf1:amd64. -2023-11-07T14:34:38Z #8 26.87 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2023-11-07T14:34:38Z #8 26.87 Unpacking libdconf1:amd64 (0.38.0-2) ... -2023-11-07T14:34:38Z #8 26.92 Selecting previously unselected package dconf-service. -2023-11-07T14:34:38Z #8 26.93 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2023-11-07T14:34:38Z #8 26.93 Unpacking dconf-service (0.38.0-2) ... -2023-11-07T14:34:38Z #8 26.97 Selecting previously unselected package dconf-gsettings-backend:amd64. -2023-11-07T14:34:38Z #8 26.97 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2023-11-07T14:34:38Z #8 26.98 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2023-11-07T14:34:38Z #8 27.01 Selecting previously unselected package libatk1.0-data. -2023-11-07T14:34:39Z #8 27.02 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2023-11-07T14:34:39Z #8 27.03 Unpacking libatk1.0-data (2.36.0-2) ... -2023-11-07T14:34:39Z #8 27.11 Selecting previously unselected package libatk1.0-0:amd64. -2023-11-07T14:34:39Z #8 27.11 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2023-11-07T14:34:39Z #8 27.11 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2023-11-07T14:34:39Z #8 27.16 Selecting previously unselected package libfreetype6:amd64. -2023-11-07T14:34:39Z #8 27.17 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2023-11-07T14:34:39Z #8 27.17 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2023-11-07T14:34:39Z #8 27.27 Selecting previously unselected package fonts-dejavu-core. -2023-11-07T14:34:39Z #8 27.28 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2023-11-07T14:34:39Z #8 27.28 Unpacking fonts-dejavu-core (2.37-2) ... -2023-11-07T14:34:39Z #8 27.49 Selecting previously unselected package fontconfig-config. -2023-11-07T14:34:39Z #8 27.50 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2023-11-07T14:34:39Z #8 27.63 Unpacking fontconfig-config (2.13.1-4.2) ... -2023-11-07T14:34:39Z #8 27.70 Selecting previously unselected package libfontconfig1:amd64. -2023-11-07T14:34:39Z #8 27.71 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2023-11-07T14:34:39Z #8 27.71 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2023-11-07T14:34:39Z #8 27.78 Selecting previously unselected package libpixman-1-0:amd64. -2023-11-07T14:34:39Z #8 27.78 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2023-11-07T14:34:39Z #8 27.79 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2023-11-07T14:34:39Z #8 27.88 Selecting previously unselected package libxcb-render0:amd64. -2023-11-07T14:34:39Z #8 27.89 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2023-11-07T14:34:39Z #8 27.89 Unpacking libxcb-render0:amd64 (1.14-3) ... -2023-11-07T14:34:39Z #8 27.96 Selecting previously unselected package libxcb-shm0:amd64. -2023-11-07T14:34:39Z #8 27.96 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2023-11-07T14:34:39Z #8 27.97 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2023-11-07T14:34:39Z #8 28.02 Selecting previously unselected package libcairo2:amd64. -2023-11-07T14:34:39Z #8 28.02 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2023-11-07T14:34:39Z #8 28.03 Unpacking libcairo2:amd64 (1.16.0-5) ... -2023-11-07T14:34:40Z #8 28.16 Selecting previously unselected package libcairo-gobject2:amd64. -2023-11-07T14:34:40Z #8 28.16 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2023-11-07T14:34:40Z #8 28.17 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2023-11-07T14:34:40Z #8 28.23 Selecting previously unselected package libdbus-glib-1-2:amd64. -2023-11-07T14:34:40Z #8 28.24 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2023-11-07T14:34:40Z #8 28.24 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2023-11-07T14:34:40Z #8 28.32 Selecting previously unselected package libevent-2.1-7:amd64. -2023-11-07T14:34:40Z #8 28.32 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2023-11-07T14:34:40Z #8 28.33 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2023-11-07T14:34:40Z #8 28.42 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2023-11-07T14:34:40Z #8 28.42 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2023-11-07T14:34:40Z #8 28.43 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2023-11-07T14:34:40Z #8 28.48 Selecting previously unselected package liblcms2-2:amd64. -2023-11-07T14:34:40Z #8 28.48 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2023-11-07T14:34:40Z #8 28.49 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2023-11-07T14:34:40Z #8 28.56 Selecting previously unselected package libcolord2:amd64. -2023-11-07T14:34:40Z #8 28.57 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2023-11-07T14:34:40Z #8 28.58 Unpacking libcolord2:amd64 (1.4.5-3) ... -2023-11-07T14:34:40Z #8 28.64 Selecting previously unselected package libavahi-common-data:amd64. -2023-11-07T14:34:40Z #8 28.64 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2023-11-07T14:34:40Z #8 28.65 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2023-11-07T14:34:40Z #8 28.72 Selecting previously unselected package libavahi-common3:amd64. -2023-11-07T14:34:40Z #8 28.72 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2023-11-07T14:34:40Z #8 28.73 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2023-11-07T14:34:40Z #8 28.78 Selecting previously unselected package libavahi-client3:amd64. -2023-11-07T14:34:40Z #8 28.78 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2023-11-07T14:34:40Z #8 28.79 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2023-11-07T14:34:40Z #8 28.84 Selecting previously unselected package libcups2:amd64. -2023-11-07T14:34:40Z #8 28.84 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2023-11-07T14:34:40Z #8 28.88 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2023-11-07T14:34:40Z #8 29.03 Selecting previously unselected package libepoxy0:amd64. -2023-11-07T14:34:40Z #8 29.04 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2023-11-07T14:34:40Z #8 29.05 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2023-11-07T14:34:41Z #8 29.15 Selecting previously unselected package libfribidi0:amd64. -2023-11-07T14:34:41Z #8 29.16 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2023-11-07T14:34:41Z #8 29.16 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2023-11-07T14:34:41Z #8 29.21 Selecting previously unselected package libgraphite2-3:amd64. -2023-11-07T14:34:41Z #8 29.21 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2023-11-07T14:34:41Z #8 29.22 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2023-11-07T14:34:41Z #8 29.27 Selecting previously unselected package libharfbuzz0b:amd64. -2023-11-07T14:34:41Z #8 29.28 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2023-11-07T14:34:41Z #8 29.28 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2023-11-07T14:34:41Z #8 29.38 Selecting previously unselected package libjson-glib-1.0-common. -2023-11-07T14:34:41Z #8 29.38 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2023-11-07T14:34:41Z #8 29.39 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2023-11-07T14:34:41Z #8 29.45 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2023-11-07T14:34:41Z #8 29.46 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2023-11-07T14:34:41Z #8 29.46 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2023-11-07T14:34:41Z #8 29.54 Selecting previously unselected package fontconfig. -2023-11-07T14:34:41Z #8 29.55 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2023-11-07T14:34:41Z #8 29.56 Unpacking fontconfig (2.13.1-4.2) ... -2023-11-07T14:34:41Z #8 29.63 Selecting previously unselected package libthai-data. -2023-11-07T14:34:41Z #8 29.64 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2023-11-07T14:34:41Z #8 29.64 Unpacking libthai-data (0.1.28-3) ... -2023-11-07T14:34:41Z #8 29.71 Selecting previously unselected package libdatrie1:amd64. -2023-11-07T14:34:41Z #8 29.72 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2023-11-07T14:34:41Z #8 29.72 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2023-11-07T14:34:41Z #8 29.77 Selecting previously unselected package libthai0:amd64. -2023-11-07T14:34:41Z #8 29.78 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2023-11-07T14:34:41Z #8 29.78 Unpacking libthai0:amd64 (0.1.28-3) ... -2023-11-07T14:34:41Z #8 29.83 Selecting previously unselected package libpango-1.0-0:amd64. -2023-11-07T14:34:41Z #8 29.83 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2023-11-07T14:34:41Z #8 29.84 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2023-11-07T14:34:41Z #8 29.91 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2023-11-07T14:34:41Z #8 29.91 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2023-11-07T14:34:41Z #8 29.92 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2023-11-07T14:34:41Z #8 29.98 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2023-11-07T14:34:41Z #8 29.98 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2023-11-07T14:34:41Z #8 29.99 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2023-11-07T14:34:41Z #8 30.03 Selecting previously unselected package libproxy1v5:amd64. -2023-11-07T14:34:41Z #8 30.04 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2023-11-07T14:34:41Z #8 30.04 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2023-11-07T14:34:41Z #8 30.09 Selecting previously unselected package glib-networking-common. -2023-11-07T14:34:41Z #8 30.09 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2023-11-07T14:34:41Z #8 30.10 Unpacking glib-networking-common (2.66.0-2) ... -2023-11-07T14:34:42Z #8 30.15 Selecting previously unselected package glib-networking-services. -2023-11-07T14:34:42Z #8 30.16 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2023-11-07T14:34:42Z #8 30.16 Unpacking glib-networking-services (2.66.0-2) ... -2023-11-07T14:34:42Z #8 30.20 Selecting previously unselected package gsettings-desktop-schemas. -2023-11-07T14:34:42Z #8 30.20 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2023-11-07T14:34:42Z #8 30.21 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2023-11-07T14:34:42Z #8 30.36 Selecting previously unselected package glib-networking:amd64. -2023-11-07T14:34:42Z #8 30.37 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2023-11-07T14:34:42Z #8 30.37 Unpacking glib-networking:amd64 (2.66.0-2) ... -2023-11-07T14:34:42Z #8 30.43 Selecting previously unselected package libsoup2.4-1:amd64. -2023-11-07T14:34:42Z #8 30.43 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2023-11-07T14:34:42Z #8 30.44 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2023-11-07T14:34:42Z #8 30.54 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2023-11-07T14:34:42Z #8 30.54 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2023-11-07T14:34:42Z #8 30.55 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2023-11-07T14:34:42Z #8 30.60 Selecting previously unselected package librest-0.7-0:amd64. -2023-11-07T14:34:42Z #8 30.60 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2023-11-07T14:34:42Z #8 30.61 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2023-11-07T14:34:42Z #8 30.68 Selecting previously unselected package libwayland-client0:amd64. -2023-11-07T14:34:42Z #8 30.68 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2023-11-07T14:34:42Z #8 30.69 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2023-11-07T14:34:42Z #8 30.73 Selecting previously unselected package libwayland-cursor0:amd64. -2023-11-07T14:34:42Z #8 30.74 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2023-11-07T14:34:42Z #8 30.74 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2023-11-07T14:34:42Z #8 30.78 Selecting previously unselected package libwayland-egl1:amd64. -2023-11-07T14:34:42Z #8 30.79 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2023-11-07T14:34:42Z #8 30.79 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2023-11-07T14:34:42Z #8 30.83 Selecting previously unselected package libxcomposite1:amd64. -2023-11-07T14:34:42Z #8 30.84 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2023-11-07T14:34:42Z #8 30.84 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2023-11-07T14:34:42Z #8 30.88 Selecting previously unselected package libxfixes3:amd64. -2023-11-07T14:34:42Z #8 30.89 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2023-11-07T14:34:42Z #8 30.90 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2023-11-07T14:34:42Z #8 30.94 Selecting previously unselected package libxcursor1:amd64. -2023-11-07T14:34:42Z #8 30.95 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2023-11-07T14:34:42Z #8 30.95 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2023-11-07T14:34:42Z #8 31.00 Selecting previously unselected package libxdamage1:amd64. -2023-11-07T14:34:42Z #8 31.01 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2023-11-07T14:34:42Z #8 31.02 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2023-11-07T14:34:42Z #8 31.06 Selecting previously unselected package libxinerama1:amd64. -2023-11-07T14:34:42Z #8 31.06 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2023-11-07T14:34:42Z #8 31.06 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2023-11-07T14:34:42Z #8 31.10 Selecting previously unselected package xkb-data. -2023-11-07T14:34:43Z #8 31.11 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2023-11-07T14:34:43Z #8 31.12 Unpacking xkb-data (2.29-2) ... -2023-11-07T14:34:43Z #8 31.34 Selecting previously unselected package libxkbcommon0:amd64. -2023-11-07T14:34:43Z #8 31.34 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2023-11-07T14:34:43Z #8 31.35 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2023-11-07T14:34:43Z #8 31.41 Selecting previously unselected package libxrandr2:amd64. -2023-11-07T14:34:43Z #8 31.42 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2023-11-07T14:34:43Z #8 31.42 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2023-11-07T14:34:43Z #8 31.47 Selecting previously unselected package libgtk-3-common. -2023-11-07T14:34:43Z #8 31.48 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2023-11-07T14:34:43Z #8 31.48 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2023-11-07T14:34:44Z #8 32.22 Selecting previously unselected package libgtk-3-0:amd64. -2023-11-07T14:34:44Z #8 32.22 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2023-11-07T14:34:44Z #8 32.23 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2023-11-07T14:34:44Z #8 32.70 Selecting previously unselected package libx11-xcb1:amd64. -2023-11-07T14:34:44Z #8 32.71 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2023-11-07T14:34:44Z #8 32.71 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2023-11-07T14:34:44Z #8 32.78 Selecting previously unselected package firefox-esr. -2023-11-07T14:34:44Z #8 32.78 Preparing to unpack .../099-firefox-esr_115.4.0esr-1~deb11u1_amd64.deb ... -2023-11-07T14:34:44Z #8 32.80 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2023-11-07T14:34:44Z #8 32.80 Unpacking firefox-esr (115.4.0esr-1~deb11u1) ... -2023-11-07T14:34:54Z #8 42.32 Selecting previously unselected package fonts-humor-sans. -2023-11-07T14:34:54Z #8 42.33 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2023-11-07T14:34:54Z #8 42.33 Unpacking fonts-humor-sans (1.0-4) ... -2023-11-07T14:34:54Z #8 42.38 Selecting previously unselected package libcc1-0:amd64. -2023-11-07T14:34:54Z #8 42.39 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2023-11-07T14:34:54Z #8 42.39 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2023-11-07T14:34:54Z #8 42.44 Selecting previously unselected package libgomp1:amd64. -2023-11-07T14:34:54Z #8 42.44 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2023-11-07T14:34:54Z #8 42.45 Unpacking libgomp1:amd64 (10.2.1-6) ... -2023-11-07T14:34:54Z #8 42.50 Selecting previously unselected package libitm1:amd64. -2023-11-07T14:34:54Z #8 42.51 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2023-11-07T14:34:54Z #8 42.51 Unpacking libitm1:amd64 (10.2.1-6) ... -2023-11-07T14:34:54Z #8 42.55 Selecting previously unselected package libatomic1:amd64. -2023-11-07T14:34:54Z #8 42.56 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2023-11-07T14:34:54Z #8 42.56 Unpacking libatomic1:amd64 (10.2.1-6) ... -2023-11-07T14:34:54Z #8 42.61 Selecting previously unselected package libasan6:amd64. -2023-11-07T14:34:54Z #8 42.61 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2023-11-07T14:34:54Z #8 42.62 Unpacking libasan6:amd64 (10.2.1-6) ... -2023-11-07T14:34:54Z #8 43.01 Selecting previously unselected package liblsan0:amd64. -2023-11-07T14:34:54Z #8 43.02 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2023-11-07T14:34:54Z #8 43.02 Unpacking liblsan0:amd64 (10.2.1-6) ... -2023-11-07T14:34:55Z #8 43.19 Selecting previously unselected package libtsan0:amd64. -2023-11-07T14:34:55Z #8 43.19 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2023-11-07T14:34:55Z #8 43.20 Unpacking libtsan0:amd64 (10.2.1-6) ... -2023-11-07T14:34:55Z #8 43.59 Selecting previously unselected package libubsan1:amd64. -2023-11-07T14:34:55Z #8 43.59 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2023-11-07T14:34:55Z #8 43.60 Unpacking libubsan1:amd64 (10.2.1-6) ... -2023-11-07T14:34:55Z #8 43.77 Selecting previously unselected package libquadmath0:amd64. -2023-11-07T14:34:55Z #8 43.77 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2023-11-07T14:34:55Z #8 43.78 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2023-11-07T14:34:55Z #8 43.85 Selecting previously unselected package libgcc-10-dev:amd64. -2023-11-07T14:34:55Z #8 43.86 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2023-11-07T14:34:55Z #8 43.86 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2023-11-07T14:34:56Z #8 44.27 Selecting previously unselected package gcc-10. -2023-11-07T14:34:56Z #8 44.27 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2023-11-07T14:34:56Z #8 44.28 Unpacking gcc-10 (10.2.1-6) ... -2023-11-07T14:34:58Z #8 46.79 Selecting previously unselected package gcc. -2023-11-07T14:34:58Z #8 46.80 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2023-11-07T14:34:58Z #8 46.80 Unpacking gcc (4:10.2.1-1) ... -2023-11-07T14:34:58Z #8 46.85 Selecting previously unselected package libva2:amd64. -2023-11-07T14:34:58Z #8 46.86 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2023-11-07T14:34:58Z #8 46.86 Unpacking libva2:amd64 (2.10.0-1) ... -2023-11-07T14:34:58Z #8 46.91 Selecting previously unselected package libdrm-common. -2023-11-07T14:34:58Z #8 46.91 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2023-11-07T14:34:58Z #8 46.92 Unpacking libdrm-common (2.4.104-1) ... -2023-11-07T14:34:58Z #8 46.97 Selecting previously unselected package libdrm2:amd64. -2023-11-07T14:34:58Z #8 46.97 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2023-11-07T14:34:58Z #8 46.97 Unpacking libdrm2:amd64 (2.4.104-1) ... -2023-11-07T14:34:58Z #8 47.03 Selecting previously unselected package libpciaccess0:amd64. -2023-11-07T14:34:58Z #8 47.03 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2023-11-07T14:34:58Z #8 47.03 Unpacking libpciaccess0:amd64 (0.16-1) ... -2023-11-07T14:34:58Z #8 47.09 Selecting previously unselected package libdrm-intel1:amd64. -2023-11-07T14:34:58Z #8 47.09 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2023-11-07T14:34:58Z #8 47.09 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2023-11-07T14:34:58Z #8 47.14 Selecting previously unselected package i965-va-driver:amd64. -2023-11-07T14:34:59Z #8 47.14 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2023-11-07T14:34:59Z #8 47.15 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2023-11-07T14:34:59Z #8 47.24 Selecting previously unselected package libigdgmm11:amd64. -2023-11-07T14:34:59Z #8 47.24 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2023-11-07T14:34:59Z #8 47.25 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2023-11-07T14:34:59Z #8 47.34 Selecting previously unselected package intel-media-va-driver:amd64. -2023-11-07T14:34:59Z #8 47.34 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2023-11-07T14:34:59Z #8 47.34 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2023-11-07T14:34:59Z #8 47.67 Selecting previously unselected package libaom0:amd64. -2023-11-07T14:34:59Z #8 47.67 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2023-11-07T14:34:59Z #8 47.68 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2023-11-07T14:34:59Z #8 47.89 Selecting previously unselected package libmfx1:amd64. -2023-11-07T14:34:59Z #8 47.89 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2023-11-07T14:34:59Z #8 47.90 Unpacking libmfx1:amd64 (21.1.0-1) ... -2023-11-07T14:35:00Z #8 48.61 Selecting previously unselected package libva-drm2:amd64. -2023-11-07T14:35:00Z #8 48.62 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2023-11-07T14:35:00Z #8 48.62 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2023-11-07T14:35:00Z #8 48.67 Selecting previously unselected package libva-x11-2:amd64. -2023-11-07T14:35:00Z #8 48.67 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2023-11-07T14:35:00Z #8 48.68 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2023-11-07T14:35:00Z #8 48.72 Selecting previously unselected package libvdpau1:amd64. -2023-11-07T14:35:00Z #8 48.73 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2023-11-07T14:35:00Z #8 48.73 Unpacking libvdpau1:amd64 (1.4-3) ... -2023-11-07T14:35:00Z #8 48.79 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2023-11-07T14:35:00Z #8 48.80 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2023-11-07T14:35:00Z #8 48.80 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2023-11-07T14:35:00Z #8 48.85 Selecting previously unselected package libavutil56:amd64. -2023-11-07T14:35:00Z #8 48.85 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2023-11-07T14:35:00Z #8 48.86 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2023-11-07T14:35:00Z #8 48.94 Selecting previously unselected package libcodec2-0.9:amd64. -2023-11-07T14:35:00Z #8 48.95 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2023-11-07T14:35:00Z #8 48.96 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2023-11-07T14:35:01Z #8 50.04 Selecting previously unselected package libdav1d4:amd64. -2023-11-07T14:35:01Z #8 50.04 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2023-11-07T14:35:01Z #8 50.05 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2023-11-07T14:35:02Z #8 50.14 Selecting previously unselected package libgsm1:amd64. -2023-11-07T14:35:02Z #8 50.15 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2023-11-07T14:35:02Z #8 50.15 Unpacking libgsm1:amd64 (1.0.18-2) ... -2023-11-07T14:35:02Z #8 50.20 Selecting previously unselected package libmp3lame0:amd64. -2023-11-07T14:35:02Z #8 50.21 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2023-11-07T14:35:02Z #8 50.21 Unpacking libmp3lame0:amd64 (3.100-3) ... -2023-11-07T14:35:02Z #8 50.28 Selecting previously unselected package libopenjp2-7:amd64. -2023-11-07T14:35:02Z #8 50.29 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2023-11-07T14:35:02Z #8 50.29 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2023-11-07T14:35:02Z #8 50.36 Selecting previously unselected package libopus0:amd64. -2023-11-07T14:35:02Z #8 50.36 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2023-11-07T14:35:02Z #8 50.37 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2023-11-07T14:35:02Z #8 50.44 Selecting previously unselected package librsvg2-2:amd64. -2023-11-07T14:35:02Z #8 50.44 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2023-11-07T14:35:02Z #8 50.45 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2023-11-07T14:35:02Z #8 50.89 Selecting previously unselected package libshine3:amd64. -2023-11-07T14:35:02Z #8 50.89 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2023-11-07T14:35:02Z #8 50.90 Unpacking libshine3:amd64 (3.1.1-2) ... -2023-11-07T14:35:02Z #8 50.94 Selecting previously unselected package libsnappy1v5:amd64. -2023-11-07T14:35:02Z #8 50.95 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2023-11-07T14:35:02Z #8 50.95 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2023-11-07T14:35:02Z #8 51.00 Selecting previously unselected package libspeex1:amd64. -2023-11-07T14:35:02Z #8 51.00 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2023-11-07T14:35:02Z #8 51.01 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2023-11-07T14:35:02Z #8 51.06 Selecting previously unselected package libsoxr0:amd64. -2023-11-07T14:35:02Z #8 51.07 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2023-11-07T14:35:02Z #8 51.07 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2023-11-07T14:35:03Z #8 51.13 Selecting previously unselected package libswresample3:amd64. -2023-11-07T14:35:03Z #8 51.13 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2023-11-07T14:35:03Z #8 51.14 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2023-11-07T14:35:03Z #8 51.20 Selecting previously unselected package libogg0:amd64. -2023-11-07T14:35:03Z #8 51.20 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2023-11-07T14:35:03Z #8 51.20 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2023-11-07T14:35:03Z #8 51.25 Selecting previously unselected package libtheora0:amd64. -2023-11-07T14:35:03Z #8 51.26 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2023-11-07T14:35:03Z #8 51.27 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2023-11-07T14:35:03Z #8 51.34 Selecting previously unselected package libtwolame0:amd64. -2023-11-07T14:35:03Z #8 51.34 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2023-11-07T14:35:03Z #8 51.35 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2023-11-07T14:35:03Z #8 51.90 Selecting previously unselected package libvorbis0a:amd64. -2023-11-07T14:35:03Z #8 51.90 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2023-11-07T14:35:03Z #8 51.92 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2023-11-07T14:35:03Z #8 52.00 Selecting previously unselected package libvorbisenc2:amd64. -2023-11-07T14:35:03Z #8 52.01 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2023-11-07T14:35:03Z #8 52.01 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2023-11-07T14:35:03Z #8 52.08 Selecting previously unselected package libvpx6:amd64. -2023-11-07T14:35:03Z #8 52.08 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2023-11-07T14:35:03Z #8 52.08 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2023-11-07T14:35:04Z #8 52.25 Selecting previously unselected package libwavpack1:amd64. -2023-11-07T14:35:04Z #8 52.26 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2023-11-07T14:35:04Z #8 52.26 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2023-11-07T14:35:04Z #8 52.32 Selecting previously unselected package libwebpmux3:amd64. -2023-11-07T14:35:04Z #8 52.33 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2023-11-07T14:35:04Z #8 52.33 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2023-11-07T14:35:04Z #8 52.40 Selecting previously unselected package libx264-160:amd64. -2023-11-07T14:35:04Z #8 52.40 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2023-11-07T14:35:04Z #8 52.41 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2023-11-07T14:35:04Z #8 52.53 Selecting previously unselected package libnuma1:amd64. -2023-11-07T14:35:04Z #8 52.54 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2023-11-07T14:35:04Z #8 52.54 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2023-11-07T14:35:04Z #8 52.63 Selecting previously unselected package libx265-192:amd64. -2023-11-07T14:35:04Z #8 52.63 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2023-11-07T14:35:04Z #8 52.64 Unpacking libx265-192:amd64 (3.4-2) ... -2023-11-07T14:35:04Z #8 52.97 Selecting previously unselected package libxvidcore4:amd64. -2023-11-07T14:35:04Z #8 52.97 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2023-11-07T14:35:04Z #8 52.98 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2023-11-07T14:35:05Z #8 53.05 Selecting previously unselected package libzvbi-common. -2023-11-07T14:35:05Z #8 53.05 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2023-11-07T14:35:05Z #8 53.06 Unpacking libzvbi-common (0.2.35-18) ... -2023-11-07T14:35:05Z #8 53.11 Selecting previously unselected package libzvbi0:amd64. -2023-11-07T14:35:05Z #8 53.12 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2023-11-07T14:35:05Z #8 53.12 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2023-11-07T14:35:05Z #8 53.20 Selecting previously unselected package libavcodec58:amd64. -2023-11-07T14:35:05Z #8 53.21 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2023-11-07T14:35:05Z #8 53.21 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2023-11-07T14:35:05Z #8 53.98 Selecting previously unselected package libc-dev-bin. -2023-11-07T14:35:05Z #8 53.98 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u7_amd64.deb ... -2023-11-07T14:35:05Z #8 53.99 Unpacking libc-dev-bin (2.31-13+deb11u7) ... -2023-11-07T14:35:05Z #8 54.04 Selecting previously unselected package libxpm4:amd64. -2023-11-07T14:35:05Z #8 54.04 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2023-11-07T14:35:05Z #8 54.05 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2023-11-07T14:35:06Z #8 54.11 Selecting previously unselected package libgd3:amd64. -2023-11-07T14:35:06Z #8 54.11 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2023-11-07T14:35:06Z #8 54.11 Unpacking libgd3:amd64 (2.3.0-2) ... -2023-11-07T14:35:06Z #8 54.17 Selecting previously unselected package libc-devtools. -2023-11-07T14:35:06Z #8 54.17 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u7_amd64.deb ... -2023-11-07T14:35:06Z #8 54.18 Unpacking libc-devtools (2.31-13+deb11u7) ... -2023-11-07T14:35:06Z #8 54.24 Selecting previously unselected package linux-libc-dev:amd64. -2023-11-07T14:35:06Z #8 54.24 Preparing to unpack .../159-linux-libc-dev_5.10.197-1_amd64.deb ... -2023-11-07T14:35:06Z #8 54.24 Unpacking linux-libc-dev:amd64 (5.10.197-1) ... -2023-11-07T14:35:06Z #8 54.60 Selecting previously unselected package libcrypt-dev:amd64. -2023-11-07T14:35:06Z #8 54.60 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2023-11-07T14:35:06Z #8 54.61 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2023-11-07T14:35:06Z #8 54.66 Selecting previously unselected package libtirpc-dev:amd64. -2023-11-07T14:35:06Z #8 54.66 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2023-11-07T14:35:06Z #8 54.67 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2023-11-07T14:35:06Z #8 54.74 Selecting previously unselected package libnsl-dev:amd64. -2023-11-07T14:35:06Z #8 54.74 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2023-11-07T14:35:06Z #8 54.75 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2023-11-07T14:35:06Z #8 54.80 Selecting previously unselected package libc6-dev:amd64. -2023-11-07T14:35:06Z #8 54.80 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u7_amd64.deb ... -2023-11-07T14:35:06Z #8 54.81 Unpacking libc6-dev:amd64 (2.31-13+deb11u7) ... -2023-11-07T14:35:07Z #8 55.34 Selecting previously unselected package libdrm-amdgpu1:amd64. -2023-11-07T14:35:07Z #8 55.34 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2023-11-07T14:35:07Z #8 55.34 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2023-11-07T14:35:07Z #8 55.39 Selecting previously unselected package libdrm-nouveau2:amd64. -2023-11-07T14:35:07Z #8 55.39 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2023-11-07T14:35:07Z #8 55.40 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2023-11-07T14:35:07Z #8 55.50 Selecting previously unselected package libdrm-radeon1:amd64. -2023-11-07T14:35:07Z #8 55.50 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2023-11-07T14:35:07Z #8 55.50 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2023-11-07T14:35:07Z #8 55.55 Selecting previously unselected package libelf1:amd64. -2023-11-07T14:35:07Z #8 55.55 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2023-11-07T14:35:07Z #8 55.56 Unpacking libelf1:amd64 (0.183-1) ... -2023-11-07T14:35:07Z #8 55.62 Selecting previously unselected package libfontenc1:amd64. -2023-11-07T14:35:07Z #8 55.62 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2023-11-07T14:35:07Z #8 55.63 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2023-11-07T14:35:07Z #8 55.67 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2023-11-07T14:35:07Z #8 55.67 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2023-11-07T14:35:07Z #8 55.68 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2023-11-07T14:35:07Z #8 55.73 Selecting previously unselected package libglapi-mesa:amd64. -2023-11-07T14:35:07Z #8 55.73 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2023-11-07T14:35:07Z #8 55.73 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2023-11-07T14:35:07Z #8 55.79 Selecting previously unselected package libz3-4:amd64. -2023-11-07T14:35:07Z #8 55.79 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2023-11-07T14:35:07Z #8 55.80 Unpacking libz3-4:amd64 (4.8.10-1) ... -2023-11-07T14:35:08Z #8 56.89 Selecting previously unselected package libllvm11:amd64. -2023-11-07T14:35:08Z #8 56.89 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2023-11-07T14:35:08Z #8 56.90 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2023-11-07T14:35:11Z #8 59.92 Selecting previously unselected package libsensors-config. -2023-11-07T14:35:11Z #8 59.92 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2023-11-07T14:35:11Z #8 59.93 Unpacking libsensors-config (1:3.6.0-7) ... -2023-11-07T14:35:11Z #8 59.97 Selecting previously unselected package libsensors5:amd64. -2023-11-07T14:35:11Z #8 59.98 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2023-11-07T14:35:11Z #8 60.02 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2023-11-07T14:35:11Z #8 60.06 Selecting previously unselected package libvulkan1:amd64. -2023-11-07T14:35:11Z #8 60.06 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2023-11-07T14:35:11Z #8 60.07 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2023-11-07T14:35:11Z #8 60.13 Selecting previously unselected package libgl1-mesa-dri:amd64. -2023-11-07T14:35:12Z #8 60.13 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2023-11-07T14:35:12Z #8 60.14 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2023-11-07T14:35:13Z #8 61.63 Selecting previously unselected package libglvnd0:amd64. -2023-11-07T14:35:13Z #8 61.63 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2023-11-07T14:35:13Z #8 61.63 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2023-11-07T14:35:13Z #8 61.69 Selecting previously unselected package libxcb-dri2-0:amd64. -2023-11-07T14:35:13Z #8 61.69 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2023-11-07T14:35:13Z #8 61.70 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2023-11-07T14:35:13Z #8 61.75 Selecting previously unselected package libxcb-dri3-0:amd64. -2023-11-07T14:35:13Z #8 61.76 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2023-11-07T14:35:13Z #8 61.76 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2023-11-07T14:35:13Z #8 61.82 Selecting previously unselected package libxcb-glx0:amd64. -2023-11-07T14:35:13Z #8 61.82 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2023-11-07T14:35:13Z #8 61.83 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2023-11-07T14:35:13Z #8 61.89 Selecting previously unselected package libxcb-present0:amd64. -2023-11-07T14:35:13Z #8 61.89 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2023-11-07T14:35:13Z #8 61.90 Unpacking libxcb-present0:amd64 (1.14-3) ... -2023-11-07T14:35:13Z #8 61.96 Selecting previously unselected package libxcb-sync1:amd64. -2023-11-07T14:35:13Z #8 61.96 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2023-11-07T14:35:13Z #8 61.96 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2023-11-07T14:35:13Z #8 62.02 Selecting previously unselected package libxcb-xfixes0:amd64. -2023-11-07T14:35:13Z #8 62.02 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2023-11-07T14:35:13Z #8 62.03 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2023-11-07T14:35:13Z #8 62.08 Selecting previously unselected package libxshmfence1:amd64. -2023-11-07T14:35:13Z #8 62.09 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2023-11-07T14:35:13Z #8 62.09 Unpacking libxshmfence1:amd64 (1.3-1) ... -2023-11-07T14:35:14Z #8 62.13 Selecting previously unselected package libxxf86vm1:amd64. -2023-11-07T14:35:14Z #8 62.14 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2023-11-07T14:35:14Z #8 62.14 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2023-11-07T14:35:14Z #8 62.19 Selecting previously unselected package libglx-mesa0:amd64. -2023-11-07T14:35:14Z #8 62.20 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2023-11-07T14:35:14Z #8 62.20 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2023-11-07T14:35:14Z #8 62.26 Selecting previously unselected package libgtk-3-bin. -2023-11-07T14:35:14Z #8 62.27 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2023-11-07T14:35:14Z #8 62.28 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2023-11-07T14:35:14Z #8 62.34 Selecting previously unselected package librsvg2-common:amd64. -2023-11-07T14:35:14Z #8 62.34 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2023-11-07T14:35:14Z #8 62.35 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2023-11-07T14:35:14Z #8 62.39 Selecting previously unselected package libglx0:amd64. -2023-11-07T14:35:14Z #8 62.40 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2023-11-07T14:35:14Z #8 62.41 Unpacking libglx0:amd64 (1.3.2-1) ... -2023-11-07T14:35:14Z #8 62.46 Selecting previously unselected package libgl1:amd64. -2023-11-07T14:35:14Z #8 62.47 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2023-11-07T14:35:14Z #8 62.47 Unpacking libgl1:amd64 (1.3.2-1) ... -2023-11-07T14:35:14Z #8 62.53 Selecting previously unselected package libvdpau-va-gl1:amd64. -2023-11-07T14:35:14Z #8 62.54 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2023-11-07T14:35:14Z #8 62.54 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2023-11-07T14:35:14Z #8 62.60 Selecting previously unselected package libxt6:amd64. -2023-11-07T14:35:14Z #8 62.61 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2023-11-07T14:35:14Z #8 62.61 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2023-11-07T14:35:14Z #8 62.74 Selecting previously unselected package libxmu6:amd64. -2023-11-07T14:35:14Z #8 62.74 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2023-11-07T14:35:14Z #8 62.74 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2023-11-07T14:35:14Z #8 62.79 Selecting previously unselected package libxaw7:amd64. -2023-11-07T14:35:14Z #8 62.80 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2023-11-07T14:35:14Z #8 62.81 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2023-11-07T14:35:14Z #8 62.88 Selecting previously unselected package libxcb-randr0:amd64. -2023-11-07T14:35:14Z #8 62.89 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2023-11-07T14:35:14Z #8 62.89 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2023-11-07T14:35:14Z #8 62.96 Selecting previously unselected package libxcb-shape0:amd64. -2023-11-07T14:35:14Z #8 62.97 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2023-11-07T14:35:14Z #8 62.97 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2023-11-07T14:35:14Z #8 63.03 Selecting previously unselected package libxft2:amd64. -2023-11-07T14:35:14Z #8 63.04 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2023-11-07T14:35:14Z #8 63.04 Unpacking libxft2:amd64 (2.3.2-2) ... -2023-11-07T14:35:14Z #8 63.08 Selecting previously unselected package libxkbfile1:amd64. -2023-11-07T14:35:14Z #8 63.09 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2023-11-07T14:35:14Z #8 63.09 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2023-11-07T14:35:14Z #8 63.14 Selecting previously unselected package libxmuu1:amd64. -2023-11-07T14:35:15Z #8 63.14 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2023-11-07T14:35:15Z #8 63.15 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2023-11-07T14:35:15Z #8 63.19 Selecting previously unselected package libxv1:amd64. -2023-11-07T14:35:15Z #8 63.19 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2023-11-07T14:35:15Z #8 63.19 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2023-11-07T14:35:15Z #8 63.24 Selecting previously unselected package libxxf86dga1:amd64. -2023-11-07T14:35:15Z #8 63.25 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2023-11-07T14:35:15Z #8 63.25 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2023-11-07T14:35:15Z #8 63.29 Selecting previously unselected package manpages-dev. -2023-11-07T14:35:15Z #8 63.29 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2023-11-07T14:35:15Z #8 63.30 Unpacking manpages-dev (5.10-1) ... -2023-11-07T14:35:15Z #8 63.73 Selecting previously unselected package mesa-va-drivers:amd64. -2023-11-07T14:35:15Z #8 63.74 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2023-11-07T14:35:15Z #8 63.74 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2023-11-07T14:35:16Z #8 64.23 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2023-11-07T14:35:16Z #8 64.23 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2023-11-07T14:35:16Z #8 64.24 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2023-11-07T14:35:16Z #8 64.71 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2023-11-07T14:35:16Z #8 64.72 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2023-11-07T14:35:16Z #8 64.72 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2023-11-07T14:35:17Z #8 65.43 Selecting previously unselected package patch. -2023-11-07T14:35:17Z #8 65.44 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2023-11-07T14:35:17Z #8 65.44 Unpacking patch (2.7.6-7) ... -2023-11-07T14:35:17Z #8 65.50 Selecting previously unselected package unzip. -2023-11-07T14:35:17Z #8 65.50 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2023-11-07T14:35:17Z #8 65.51 Unpacking unzip (6.0-26+deb11u1) ... -2023-11-07T14:35:17Z #8 65.57 Selecting previously unselected package va-driver-all:amd64. -2023-11-07T14:35:17Z #8 65.58 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2023-11-07T14:35:17Z #8 65.58 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2023-11-07T14:35:17Z #8 65.62 Selecting previously unselected package vdpau-driver-all:amd64. -2023-11-07T14:35:17Z #8 65.62 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2023-11-07T14:35:17Z #8 65.62 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2023-11-07T14:35:17Z #8 65.67 Selecting previously unselected package x11-utils. -2023-11-07T14:35:17Z #8 65.67 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2023-11-07T14:35:17Z #8 65.67 Unpacking x11-utils (7.7+5) ... -2023-11-07T14:35:17Z #8 65.80 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2023-11-07T14:35:17Z #8 65.82 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2023-11-07T14:35:17Z #8 65.83 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2023-11-07T14:35:17Z #8 65.85 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2023-11-07T14:35:17Z #8 65.86 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2023-11-07T14:35:17Z #8 65.87 Setting up libpciaccess0:amd64 (0.16-1) ... -2023-11-07T14:35:17Z #8 65.88 Setting up systemd-sysv (247.3-7+deb11u4) ... -2023-11-07T14:35:17Z #8 65.89 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2023-11-07T14:35:17Z #8 65.90 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2023-11-07T14:35:17Z #8 65.92 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2023-11-07T14:35:17Z #8 65.93 Setting up libogg0:amd64 (1.3.4-0.1) ... -2023-11-07T14:35:17Z #8 65.95 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2023-11-07T14:35:17Z #8 65.96 Setting up libshine3:amd64 (3.1.1-2) ... -2023-11-07T14:35:17Z #8 65.97 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2023-11-07T14:35:17Z #8 65.99 Setting up hicolor-icon-theme (0.17-2) ... -2023-11-07T14:35:17Z #8 66.01 Setting up libxi6:amd64 (2:1.7.10-1) ... -2023-11-07T14:35:17Z #8 66.03 Setting up libtwolame0:amd64 (0.4.0-2) ... -2023-11-07T14:35:17Z #8 66.04 Setting up libicu67:amd64 (67.1-7) ... -2023-11-07T14:35:17Z #8 66.05 Setting up libdatrie1:amd64 (0.2.13-1) ... -2023-11-07T14:35:17Z #8 66.06 Setting up libgsm1:amd64 (1.0.18-2) ... -2023-11-07T14:35:17Z #8 66.08 Setting up libxcb-render0:amd64 (1.14-3) ... -2023-11-07T14:35:17Z #8 66.09 Setting up manpages (5.10-1) ... -2023-11-07T14:35:17Z #8 66.10 Setting up libglvnd0:amd64 (1.3.2-1) ... -2023-11-07T14:35:17Z #8 66.12 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2023-11-07T14:35:17Z #8 66.13 Setting up libxcb-glx0:amd64 (1.14-3) ... -2023-11-07T14:35:17Z #8 66.14 Setting up unzip (6.0-26+deb11u1) ... -2023-11-07T14:35:18Z #8 66.16 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2023-11-07T14:35:18Z #8 66.18 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2023-11-07T14:35:18Z #8 66.19 Setting up libxcb-shape0:amd64 (1.14-3) ... -2023-11-07T14:35:18Z #8 66.20 Setting up binutils-common:amd64 (2.35.2-2) ... -2023-11-07T14:35:18Z #8 66.21 Setting up libsensors-config (1:3.6.0-7) ... -2023-11-07T14:35:18Z #8 66.23 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2023-11-07T14:35:18Z #8 66.24 Setting up libdeflate0:amd64 (1.7-1) ... -2023-11-07T14:35:18Z #8 66.26 Setting up linux-libc-dev:amd64 (5.10.197-1) ... -2023-11-07T14:35:18Z #8 66.27 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2023-11-07T14:35:18Z #8 66.28 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2023-11-07T14:35:18Z #8 66.29 First installation detected... -2023-11-07T14:35:18Z #8 66.29 Checking NSS setup... -2023-11-07T14:35:18Z #8 66.30 Setting up xkb-data (2.29-2) ... -2023-11-07T14:35:18Z #8 66.31 Setting up libxcb-shm0:amd64 (1.14-3) ... -2023-11-07T14:35:18Z #8 66.32 Setting up libgomp1:amd64 (10.2.1-6) ... -2023-11-07T14:35:18Z #8 66.34 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2023-11-07T14:35:18Z #8 66.36 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2023-11-07T14:35:18Z #8 66.38 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2023-11-07T14:35:18Z #8 66.39 Setting up libcolord2:amd64 (1.4.5-3) ... -2023-11-07T14:35:18Z #8 66.40 Setting up libasan6:amd64 (10.2.1-6) ... -2023-11-07T14:35:18Z #8 66.41 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2023-11-07T14:35:18Z #8 66.43 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2023-11-07T14:35:18Z #8 66.44 Setting up libxcb-present0:amd64 (1.14-3) ... -2023-11-07T14:35:18Z #8 66.45 Setting up libdconf1:amd64 (0.38.0-2) ... -2023-11-07T14:35:18Z #8 66.46 Setting up libasound2-data (1.2.4-1.1) ... -2023-11-07T14:35:18Z #8 66.48 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2023-11-07T14:35:18Z #8 66.49 Setting up libz3-4:amd64 (4.8.10-1) ... -2023-11-07T14:35:18Z #8 66.51 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2023-11-07T14:35:18Z #8 66.52 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2023-11-07T14:35:18Z #8 66.54 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2023-11-07T14:35:18Z #8 66.55 Setting up libva2:amd64 (2.10.0-1) ... -2023-11-07T14:35:18Z #8 66.56 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2023-11-07T14:35:18Z #8 66.58 Setting up libepoxy0:amd64 (1.5.5-1) ... -2023-11-07T14:35:18Z #8 66.60 Setting up libmpfr6:amd64 (4.1.0-3) ... -2023-11-07T14:35:18Z #8 66.61 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2023-11-07T14:35:18Z #8 66.62 Setting up libxcb-sync1:amd64 (1.14-3) ... -2023-11-07T14:35:18Z #8 66.63 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2023-11-07T14:35:18Z #8 66.65 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2023-11-07T14:35:18Z #8 66.66 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2023-11-07T14:35:18Z #8 66.67 Setting up dbus (1.12.28-0+deb11u1) ... -2023-11-07T14:35:18Z #8 66.84 invoke-rc.d: could not determine current runlevel -2023-11-07T14:35:18Z #8 66.85 invoke-rc.d: policy-rc.d denied execution of start. -2023-11-07T14:35:18Z #8 66.85 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2023-11-07T14:35:18Z #8 66.87 Setting up libopus0:amd64 (1.3.1-0.1) ... -2023-11-07T14:35:18Z #8 66.88 Setting up libquadmath0:amd64 (10.2.1-6) ... -2023-11-07T14:35:18Z #8 66.89 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2023-11-07T14:35:18Z #8 66.91 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2023-11-07T14:35:18Z #8 66.92 Setting up libxv1:amd64 (2:1.0.11-1) ... -2023-11-07T14:35:18Z #8 66.93 Setting up libpng16-16:amd64 (1.6.37-3) ... -2023-11-07T14:35:18Z #8 66.95 Setting up libmpc3:amd64 (1.2.0-1) ... -2023-11-07T14:35:18Z #8 66.96 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2023-11-07T14:35:19Z #8 67.31 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2023-11-07T14:35:19Z #8 67.31 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2023-11-07T14:35:19Z #8 67.32 Setting up libatomic1:amd64 (10.2.1-6) ... -2023-11-07T14:35:19Z #8 67.33 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2023-11-07T14:35:19Z #8 67.35 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2023-11-07T14:35:19Z #8 67.36 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2023-11-07T14:35:19Z #8 67.38 Setting up patch (2.7.6-7) ... -2023-11-07T14:35:19Z #8 67.39 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2023-11-07T14:35:19Z #8 67.40 Setting up fonts-dejavu-core (2.37-2) ... -2023-11-07T14:35:19Z #8 67.52 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2023-11-07T14:35:19Z #8 67.53 Setting up libxt6:amd64 (1:1.2.0-1) ... -2023-11-07T14:35:19Z #8 67.54 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2023-11-07T14:35:19Z #8 67.55 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2023-11-07T14:35:19Z #8 67.57 Setting up libubsan1:amd64 (10.2.1-6) ... -2023-11-07T14:35:19Z #8 67.58 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2023-11-07T14:35:19Z #8 67.60 Setting up libatk1.0-data (2.36.0-2) ... -2023-11-07T14:35:19Z #8 67.61 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2023-11-07T14:35:19Z #8 67.63 Setting up alsa-topology-conf (1.2.4-1) ... -2023-11-07T14:35:19Z #8 67.64 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2023-11-07T14:35:19Z #8 67.65 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2023-11-07T14:35:19Z #8 67.67 Setting up libxshmfence1:amd64 (1.3-1) ... -2023-11-07T14:35:19Z #8 67.68 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2023-11-07T14:35:19Z #8 67.70 Setting up libvdpau1:amd64 (1.4-3) ... -2023-11-07T14:35:19Z #8 67.71 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2023-11-07T14:35:19Z #8 67.73 Setting up libwavpack1:amd64 (5.4.0-1) ... -2023-11-07T14:35:19Z #8 67.74 Setting up libxcb-randr0:amd64 (1.14-3) ... -2023-11-07T14:35:20Z #8 68.28 Setting up libasound2:amd64 (1.2.4-1.1) ... -2023-11-07T14:35:20Z #8 68.99 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2023-11-07T14:35:22Z #8 70.38 Setting up libdav1d4:amd64 (0.7.1-3) ... -2023-11-07T14:35:22Z #8 70.72 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2023-11-07T14:35:22Z #8 70.73 Setting up libthai-data (0.1.28-3) ... -2023-11-07T14:35:22Z #8 70.75 Setting up fonts-humor-sans (1.0-4) ... -2023-11-07T14:35:22Z #8 70.76 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2023-11-07T14:35:22Z #8 70.78 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2023-11-07T14:35:22Z #8 70.79 Setting up libtiff5:amd64 (4.2.0-1+deb11u4) ... -2023-11-07T14:35:22Z #8 70.80 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2023-11-07T14:35:22Z #8 70.81 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2023-11-07T14:35:22Z #8 70.83 Setting up glib-networking-common (2.66.0-2) ... -2023-11-07T14:35:22Z #8 70.84 Setting up libbinutils:amd64 (2.35.2-2) ... -2023-11-07T14:35:22Z #8 70.85 Setting up libmfx1:amd64 (21.1.0-1) ... -2023-11-07T14:35:22Z #8 70.87 Setting up libisl23:amd64 (0.23-1) ... -2023-11-07T14:35:22Z #8 70.88 Setting up libc-dev-bin (2.31-13+deb11u7) ... -2023-11-07T14:35:22Z #8 70.89 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2023-11-07T14:35:22Z #8 70.91 Setting up libdrm-common (2.4.104-1) ... -2023-11-07T14:35:22Z #8 70.92 Setting up libelf1:amd64 (0.183-1) ... -2023-11-07T14:35:22Z #8 70.94 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2023-11-07T14:35:22Z #8 70.95 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2023-11-07T14:35:22Z #8 70.97 Setting up libcc1-0:amd64 (10.2.1-6) ... -2023-11-07T14:35:22Z #8 70.98 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2023-11-07T14:35:22Z #8 70.99 Setting up libzvbi-common (0.2.35-18) ... -2023-11-07T14:35:22Z #8 71.00 Setting up liblsan0:amd64 (10.2.1-6) ... -2023-11-07T14:35:22Z #8 71.01 Setting up cpp-10 (10.2.1-6) ... -2023-11-07T14:35:22Z #8 71.03 Setting up libmp3lame0:amd64 (3.100-3) ... -2023-11-07T14:35:22Z #8 71.04 Setting up libitm1:amd64 (10.2.1-6) ... -2023-11-07T14:35:22Z #8 71.05 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2023-11-07T14:35:22Z #8 71.07 Setting up libtsan0:amd64 (10.2.1-6) ... -2023-11-07T14:35:23Z #8 71.08 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2023-11-07T14:35:23Z #8 71.09 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2023-11-07T14:35:23Z #8 71.11 Setting up libctf0:amd64 (2.35.2-2) ... -2023-11-07T14:35:23Z #8 71.12 Setting up glib-networking-services (2.66.0-2) ... -2023-11-07T14:35:23Z #8 71.13 Setting up libzvbi0:amd64 (0.2.35-18) ... -2023-11-07T14:35:23Z #8 71.14 Setting up manpages-dev (5.10-1) ... -2023-11-07T14:35:23Z #8 71.16 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2023-11-07T14:35:23Z #8 71.18 Setting up alsa-ucm-conf (1.2.4-2) ... -2023-11-07T14:35:23Z #8 71.19 Setting up libsoxr0:amd64 (0.1.3-4) ... -2023-11-07T14:35:23Z #8 71.20 Setting up fontconfig-config (2.13.1-4.2) ... -2023-11-07T14:35:23Z #8 71.67 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2023-11-07T14:35:23Z #8 71.69 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2023-11-07T14:35:23Z #8 71.70 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2023-11-07T14:35:23Z #8 71.72 Setting up libx265-192:amd64 (3.4-2) ... -2023-11-07T14:35:23Z #8 71.73 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2023-11-07T14:35:23Z #8 71.74 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2023-11-07T14:35:23Z #8 71.75 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2023-11-07T14:35:23Z #8 71.76 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2023-11-07T14:35:23Z #8 71.78 Setting up libthai0:amd64 (0.1.28-3) ... -2023-11-07T14:35:23Z #8 71.79 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2023-11-07T14:35:23Z #8 71.80 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2023-11-07T14:35:23Z #8 71.81 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2023-11-07T14:35:23Z #8 71.82 Setting up shared-mime-info (2.0-1) ... -2023-11-07T14:35:26Z #8 74.62 Setting up libdrm2:amd64 (2.4.104-1) ... -2023-11-07T14:35:26Z #8 74.63 Setting up libva-drm2:amd64 (2.10.0-1) ... -2023-11-07T14:35:26Z #8 74.65 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2023-11-07T14:35:26Z #8 74.67 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2023-11-07T14:35:26Z #8 74.68 Setting up cpp (4:10.2.1-1) ... -2023-11-07T14:35:26Z #8 74.71 Setting up libc6-dev:amd64 (2.31-13+deb11u7) ... -2023-11-07T14:35:26Z #8 74.72 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2023-11-07T14:35:26Z #8 74.73 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2023-11-07T14:35:26Z #8 74.79 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2023-11-07T14:35:26Z #8 74.90 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2023-11-07T14:35:26Z #8 74.91 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2023-11-07T14:35:26Z #8 74.92 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2023-11-07T14:35:26Z #8 74.94 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2023-11-07T14:35:26Z #8 74.95 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2023-11-07T14:35:26Z #8 74.97 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2023-11-07T14:35:26Z #8 74.98 Setting up fontconfig (2.13.1-4.2) ... -2023-11-07T14:35:28Z #8 75.00 Regenerating fonts cache... done. -2023-11-07T14:35:29Z #8 77.26 Setting up libxft2:amd64 (2.3.2-2) ... -2023-11-07T14:35:29Z #8 77.27 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2023-11-07T14:35:29Z #8 77.28 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2023-11-07T14:35:29Z #8 77.29 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2023-11-07T14:35:29Z #8 77.30 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2023-11-07T14:35:29Z #8 77.32 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2023-11-07T14:35:29Z #8 77.34 Setting up dconf-service (0.38.0-2) ... -2023-11-07T14:35:29Z #8 77.36 Setting up binutils (2.35.2-2) ... -2023-11-07T14:35:29Z #8 77.38 Setting up libcairo2:amd64 (1.16.0-5) ... -2023-11-07T14:35:29Z #8 77.39 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2023-11-07T14:35:29Z #8 77.42 Setting up adwaita-icon-theme (3.38.0-1) ... -2023-11-07T14:35:29Z #8 77.51 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2023-11-07T14:35:29Z #8 77.52 Setting up libgd3:amd64 (2.3.0-2) ... -2023-11-07T14:35:29Z #8 77.53 Setting up gcc-10 (10.2.1-6) ... -2023-11-07T14:35:29Z #8 77.55 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2023-11-07T14:35:29Z #8 77.56 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2023-11-07T14:35:29Z #8 77.58 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2023-11-07T14:35:29Z #8 77.59 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2023-11-07T14:35:29Z #8 77.61 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2023-11-07T14:35:29Z #8 77.63 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2023-11-07T14:35:29Z #8 77.65 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2023-11-07T14:35:29Z #8 77.66 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2023-11-07T14:35:29Z #8 77.68 Setting up libc-devtools (2.31-13+deb11u7) ... -2023-11-07T14:35:29Z #8 77.69 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2023-11-07T14:35:29Z #8 77.71 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2023-11-07T14:35:29Z #8 77.72 Setting up libglx0:amd64 (1.3.2-1) ... -2023-11-07T14:35:29Z #8 77.74 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2023-11-07T14:35:29Z #8 77.75 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2023-11-07T14:35:29Z #8 77.77 Setting up gcc (4:10.2.1-1) ... -2023-11-07T14:35:29Z #8 77.80 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2023-11-07T14:35:29Z #8 77.81 Setting up libgl1:amd64 (1.3.2-1) ... -2023-11-07T14:35:29Z #8 77.83 Setting up va-driver-all:amd64 (2.10.0-1) ... -2023-11-07T14:35:29Z #8 77.84 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2023-11-07T14:35:29Z #8 77.88 Setting up x11-utils (7.7+5) ... -2023-11-07T14:35:29Z #8 77.93 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2023-11-07T14:35:29Z #8 77.96 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2023-11-07T14:35:29Z #8 77.97 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2023-11-07T14:35:29Z #8 77.99 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2023-11-07T14:35:29Z #8 78.01 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2023-11-07T14:35:29Z #8 78.03 Processing triggers for libglib2.0-0:amd64 (2.66.8-1) ... -2023-11-07T14:35:30Z #8 78.07 Processing triggers for libc-bin (2.31-13+deb11u7) ... -2023-11-07T14:35:30Z #8 78.12 Setting up glib-networking:amd64 (2.66.0-2) ... -2023-11-07T14:35:30Z #8 78.13 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2023-11-07T14:35:30Z #8 78.15 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2023-11-07T14:35:30Z #8 78.17 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2023-11-07T14:35:30Z #8 78.18 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2023-11-07T14:35:30Z #8 78.25 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2023-11-07T14:35:30Z #8 78.27 Setting up firefox-esr (115.4.0esr-1~deb11u1) ... -2023-11-07T14:35:30Z #8 78.29 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2023-11-07T14:35:30Z #8 78.29 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2023-11-07T14:35:30Z #8 78.30 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2023-11-07T14:35:30Z #8 78.30 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2023-11-07T14:35:30Z #8 78.31 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2023-11-07T14:35:30Z #8 78.34 Processing triggers for libc-bin (2.31-13+deb11u7) ... -2023-11-07T14:35:34Z #8 DONE 82.8s -2023-11-07T14:35:34Z -2023-11-07T14:35:34Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2023-11-07T14:36:33Z #9 DONE 58.7s -2023-11-07T14:36:33Z -2023-11-07T14:36:33Z #10 [ 5/10] COPY environment.yml /environment.yml -2023-11-07T14:36:33Z #10 DONE 0.1s -2023-11-07T14:36:33Z -2023-11-07T14:36:33Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2023-11-07T14:39:09Z #11 155.9 Transaction -2023-11-07T14:39:09Z #11 155.9 -2023-11-07T14:39:09Z #11 155.9 Prefix: /opt/conda/envs/birdy -2023-11-07T14:39:09Z #11 155.9 -2023-11-07T14:39:09Z #11 155.9 Updating specs: -2023-11-07T14:39:09Z #11 155.9 -2023-11-07T14:39:09Z #11 155.9 - xclim -2023-11-07T14:39:09Z #11 155.9 - ravenpy -2023-11-07T14:39:09Z #11 155.9 - python=3.10 -2023-11-07T14:39:09Z #11 155.9 -2023-11-07T14:39:09Z #11 155.9 -2023-11-07T14:39:09Z #11 156.0 Package Version Build Channel Size -2023-11-07T14:39:09Z #11 156.0 ────────────────────────────────────────────────────────────────────────────────────────────────────── -2023-11-07T14:39:09Z #11 156.0 Install: -2023-11-07T14:39:09Z #11 156.0 ────────────────────────────────────────────────────────────────────────────────────────────────────── -2023-11-07T14:39:09Z #11 156.0 -2023-11-07T14:39:09Z #11 156.0 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2023-11-07T14:39:09Z #11 156.0 + python_abi 3.10 4_cp310 conda-forge 6kB -2023-11-07T14:39:09Z #11 156.0 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB -2023-11-07T14:39:09Z #11 156.0 + libstdcxx-ng 13.2.0 h7e041cc_2 conda-forge Cached -2023-11-07T14:39:09Z #11 156.0 + ca-certificates 2023.7.22 hbcca054_0 conda-forge 150kB -2023-11-07T14:39:09Z #11 156.0 + mpi 1.0 mpich conda-forge 4kB -2023-11-07T14:39:09Z #11 156.0 + libgomp 13.2.0 h807b86a_2 conda-forge Cached -2023-11-07T14:39:09Z #11 156.0 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2023-11-07T14:39:09Z #11 156.0 + libgcc-ng 13.2.0 h807b86a_2 conda-forge Cached -2023-11-07T14:39:09Z #11 156.0 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2023-11-07T14:39:09Z #11 156.0 + uriparser 0.9.7 hcb278e6_1 conda-forge 47kB -2023-11-07T14:39:09Z #11 156.0 + c-ares 1.21.0 hd590300_0 conda-forge 122kB -2023-11-07T14:39:09Z #11 156.0 + libev 4.33 h516909a_1 conda-forge 106kB -2023-11-07T14:39:09Z #11 156.0 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2023-11-07T14:39:09Z #11 156.0 + rdma-core 28.9 h59595ed_1 conda-forge 4MB -2023-11-07T14:39:09Z #11 156.0 + libnuma 2.0.16 h0b41bf4_1 conda-forge 41kB -2023-11-07T14:39:09Z #11 156.0 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2023-11-07T14:39:09Z #11 156.0 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2023-11-07T14:39:09Z #11 156.0 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2023-11-07T14:39:09Z #11 156.0 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2023-11-07T14:39:09Z #11 156.0 + pixman 0.42.2 h59595ed_0 conda-forge 385kB -2023-11-07T14:39:09Z #11 156.0 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2023-11-07T14:39:09Z #11 156.0 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2023-11-07T14:39:09Z #11 156.0 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2023-11-07T14:39:09Z #11 156.0 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2023-11-07T14:39:09Z #11 156.0 + libaec 1.1.2 h59595ed_1 conda-forge 35kB -2023-11-07T14:39:09Z #11 156.0 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2023-11-07T14:39:09Z #11 156.0 + aws-c-common 0.8.23 hd590300_0 conda-forge 197kB -2023-11-07T14:39:09Z #11 156.0 + libbrotlicommon 1.0.9 h166bdaf_9 conda-forge 71kB -2023-11-07T14:39:09Z #11 156.0 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB -2023-11-07T14:39:09Z #11 156.0 + libexpat 2.5.0 hcb278e6_1 conda-forge 78kB -2023-11-07T14:39:09Z #11 156.0 + freexl 1.0.6 h166bdaf_1 conda-forge 50kB -2023-11-07T14:39:09Z #11 156.0 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB -2023-11-07T14:39:09Z #11 156.0 + nspr 4.35 h27087fc_0 conda-forge 227kB -2023-11-07T14:39:09Z #11 156.0 + jpeg 9e h0b41bf4_3 conda-forge 240kB -2023-11-07T14:39:09Z #11 156.0 + tzcode 2023c h0b41bf4_0 conda-forge 69kB -2023-11-07T14:39:09Z #11 156.0 + snappy 1.1.10 h9fff704_0 conda-forge 39kB -2023-11-07T14:39:09Z #11 156.0 + re2 2023.03.02 h8c504da_0 conda-forge 201kB -2023-11-07T14:39:09Z #11 156.0 + libabseil 20230125.3 cxx17_h59595ed_0 conda-forge 1MB -2023-11-07T14:39:09Z #11 156.0 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2023-11-07T14:39:09Z #11 156.0 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2023-11-07T14:39:09Z #11 156.0 + libgfortran5 13.2.0 ha4646dd_2 conda-forge 1MB -2023-11-07T14:39:09Z #11 156.0 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB -2023-11-07T14:39:09Z #11 156.0 + gettext 0.21.1 h27087fc_0 conda-forge 4MB -2023-11-07T14:39:09Z #11 156.0 + libdeflate 1.17 h0b41bf4_0 conda-forge 65kB -2023-11-07T14:39:09Z #11 156.0 + libiconv 1.17 h166bdaf_0 conda-forge Cached -2023-11-07T14:39:09Z #11 156.0 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2023-11-07T14:39:09Z #11 156.0 + json-c 0.16 hc379101_0 conda-forge 281kB -2023-11-07T14:39:09Z #11 156.0 + icu 70.1 h27087fc_0 conda-forge 14MB -2023-11-07T14:39:09Z #11 156.0 + geos 3.11.1 h27087fc_0 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + ncurses 6.4 h59595ed_2 conda-forge 884kB -2023-11-07T14:39:09Z #11 156.0 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2023-11-07T14:39:09Z #11 156.0 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2023-11-07T14:39:09Z #11 156.0 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2023-11-07T14:39:09Z #11 156.0 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2023-11-07T14:39:09Z #11 156.0 + openssl 3.1.4 hd590300_0 conda-forge Cached -2023-11-07T14:39:09Z #11 156.0 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB -2023-11-07T14:39:09Z #11 156.0 + libnsl 2.0.1 hd590300_0 conda-forge 33kB -2023-11-07T14:39:09Z #11 156.0 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2023-11-07T14:39:09Z #11 156.0 + ucx 1.14.1 h64cca9d_5 conda-forge 15MB -2023-11-07T14:39:09Z #11 156.0 + glog 0.6.0 h6f12383_0 conda-forge 114kB -2023-11-07T14:39:09Z #11 156.0 + libxcb 1.13 h7f98852_1004 conda-forge 400kB -2023-11-07T14:39:09Z #11 156.0 + aws-checksums 0.1.16 h862ab75_1 conda-forge 50kB -2023-11-07T14:39:09Z #11 156.0 + aws-c-compression 0.2.17 h862ab75_1 conda-forge 19kB -2023-11-07T14:39:09Z #11 156.0 + aws-c-sdkutils 0.1.11 h862ab75_1 conda-forge 53kB -2023-11-07T14:39:09Z #11 156.0 + libbrotlienc 1.0.9 h166bdaf_9 conda-forge 265kB -2023-11-07T14:39:09Z #11 156.0 + libbrotlidec 1.0.9 h166bdaf_9 conda-forge 33kB -2023-11-07T14:39:09Z #11 156.0 + expat 2.5.0 hcb278e6_1 conda-forge 137kB -2023-11-07T14:39:09Z #11 156.0 + libgfortran-ng 13.2.0 h69a702a_2 conda-forge 24kB -2023-11-07T14:39:09Z #11 156.0 + librttopo 1.1.0 ha49c73b_12 conda-forge 242kB -2023-11-07T14:39:09Z #11 156.0 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2023-11-07T14:39:09Z #11 156.0 + readline 8.2 h8228510_1 conda-forge 281kB -2023-11-07T14:39:09Z #11 156.0 + libprotobuf 4.23.3 hd1fb520_1 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + libkml 1.3.0 h01aab08_1016 conda-forge 511kB -2023-11-07T14:39:09Z #11 156.0 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2023-11-07T14:39:09Z #11 156.0 + libpng 1.6.39 h753d276_0 conda-forge 283kB -2023-11-07T14:39:09Z #11 156.0 + zlib 1.2.13 hd590300_5 conda-forge Cached -2023-11-07T14:39:09Z #11 156.0 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2023-11-07T14:39:09Z #11 156.0 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB -2023-11-07T14:39:09Z #11 156.0 + libsqlite 3.44.0 h2797004_0 conda-forge 846kB -2023-11-07T14:39:09Z #11 156.0 + pcre2 10.40 hc3806b6_0 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2023-11-07T14:39:09Z #11 156.0 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2023-11-07T14:39:09Z #11 156.0 + s2n 1.3.46 h06160fa_0 conda-forge 367kB -2023-11-07T14:39:09Z #11 156.0 + aws-c-cal 0.6.0 h93469e0_0 conda-forge 50kB -2023-11-07T14:39:09Z #11 156.0 + libnghttp2 1.55.1 h47da74e_0 conda-forge 628kB -2023-11-07T14:39:09Z #11 156.0 + libssh2 1.11.0 h0841786_0 conda-forge 271kB -2023-11-07T14:39:09Z #11 156.0 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2023-11-07T14:39:09Z #11 156.0 + libxml2 2.10.3 hca2bb57_4 conda-forge 714kB -2023-11-07T14:39:09Z #11 156.0 + xorg-libx11 1.8.4 h0b41bf4_0 conda-forge 830kB -2023-11-07T14:39:09Z #11 156.0 + brotli-bin 1.0.9 h166bdaf_9 conda-forge 20kB -2023-11-07T14:39:09Z #11 156.0 + mpich 4.0.3 h846660c_100 conda-forge 6MB -2023-11-07T14:39:09Z #11 156.0 + libopenblas 0.3.24 pthreads_h413a1c8_0 conda-forge 5MB -2023-11-07T14:39:09Z #11 156.0 + krb5 1.20.1 h81ceb04_0 conda-forge 1MB -2023-11-07T14:39:09Z #11 156.0 + libgrpc 1.56.2 h3905398_1 conda-forge 6MB -2023-11-07T14:39:09Z #11 156.0 + orc 1.9.0 h385abfd_1 conda-forge 1MB -2023-11-07T14:39:09Z #11 156.0 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB -2023-11-07T14:39:09Z #11 156.0 + boost-cpp 1.78.0 h5adbc97_2 conda-forge 16MB -2023-11-07T14:39:09Z #11 156.0 + libtiff 4.5.0 h6adf6a1_2 conda-forge 407kB -2023-11-07T14:39:09Z #11 156.0 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2023-11-07T14:39:09Z #11 156.0 + hdf4 4.2.15 h9772cbc_5 conda-forge 974kB -2023-11-07T14:39:09Z #11 156.0 + nss 3.94 h1d7d5a4_0 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + sqlite 3.44.0 h2c6b66d_0 conda-forge 837kB -2023-11-07T14:39:09Z #11 156.0 + libglib 2.78.1 hebfc3b9_0 conda-forge 3MB -2023-11-07T14:39:09Z #11 156.0 + libthrift 0.18.1 h8fd135c_2 conda-forge 4MB -2023-11-07T14:39:09Z #11 156.0 + aws-c-io 0.13.28 h3870b5a_0 conda-forge 155kB -2023-11-07T14:39:09Z #11 156.0 + libxslt 1.1.37 h873f0b0_0 conda-forge 258kB -2023-11-07T14:39:09Z #11 156.0 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2023-11-07T14:39:09Z #11 156.0 + xorg-libxrender 0.9.10 h7f98852_1003 conda-forge 33kB -2023-11-07T14:39:09Z #11 156.0 + brotli 1.0.9 h166bdaf_9 conda-forge 20kB -2023-11-07T14:39:09Z #11 156.0 + libblas 3.9.0 19_linux64_openblas conda-forge 15kB -2023-11-07T14:39:09Z #11 156.0 + libpq 15.2 hb675445_0 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + libcurl 8.1.2 h409715c_0 conda-forge 373kB -2023-11-07T14:39:09Z #11 156.0 + lcms2 2.15 hfd0df8a_0 conda-forge 241kB -2023-11-07T14:39:09Z #11 156.0 + openjpeg 2.5.0 hfec8fc6_2 conda-forge 352kB -2023-11-07T14:39:09Z #11 156.0 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2023-11-07T14:39:09Z #11 156.0 + aws-c-event-stream 0.3.1 h9599702_1 conda-forge 54kB -2023-11-07T14:39:09Z #11 156.0 + aws-c-http 0.7.11 hbe98c3e_0 conda-forge 194kB -2023-11-07T14:39:09Z #11 156.0 + libcblas 3.9.0 19_linux64_openblas conda-forge 14kB -2023-11-07T14:39:09Z #11 156.0 + liblapack 3.9.0 19_linux64_openblas conda-forge 14kB -2023-11-07T14:39:09Z #11 156.0 + libgoogle-cloud 2.12.0 h840a212_1 conda-forge 46MB -2023-11-07T14:39:09Z #11 156.0 + xerces-c 3.2.4 h55805fa_1 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + proj 9.1.1 h8ffa02c_2 conda-forge 3MB -2023-11-07T14:39:09Z #11 156.0 + curl 8.1.2 h409715c_0 conda-forge 91kB -2023-11-07T14:39:09Z #11 156.0 + hdf5 1.12.2 mpi_mpich_h5d83325_1 conda-forge 3MB -2023-11-07T14:39:09Z #11 156.0 + cfitsio 4.2.0 hd9d235c_0 conda-forge 848kB -2023-11-07T14:39:09Z #11 156.0 + aws-c-mqtt 0.8.14 h2e270ba_2 conda-forge 154kB -2023-11-07T14:39:09Z #11 156.0 + aws-c-auth 0.7.0 hf8751d9_2 conda-forge 102kB -2023-11-07T14:39:09Z #11 156.0 + libspatialite 5.0.1 h221c8f1_23 conda-forge 4MB -2023-11-07T14:39:09Z #11 156.0 + geotiff 1.7.1 h7a142b4_6 conda-forge 259kB -2023-11-07T14:39:09Z #11 156.0 + tiledb 2.13.2 hd532e3d_0 conda-forge 5MB -2023-11-07T14:39:09Z #11 156.0 + libnetcdf 4.8.1 mpi_mpich_hcd871d9_6 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + kealib 1.5.0 ha7026e8_0 conda-forge 164kB -2023-11-07T14:39:09Z #11 156.0 + aws-c-s3 0.3.13 heb0bb06_2 conda-forge 87kB -2023-11-07T14:39:09Z #11 156.0 + netcdf-fortran 4.6.0 mpi_mpich_h1e13492_2 conda-forge 598kB -2023-11-07T14:39:09Z #11 156.0 + parallelio 2.5.10 mpi_mpich_h862c5c2_100 conda-forge 359kB -2023-11-07T14:39:09Z #11 156.0 + aws-crt-cpp 0.20.3 he9c0e7f_4 conda-forge 321kB -2023-11-07T14:39:09Z #11 156.0 + esmf 8.4.0 mpi_mpich_hc592774_104 conda-forge 25MB -2023-11-07T14:39:09Z #11 156.0 + aws-sdk-cpp 1.10.57 hbc2ea52_17 conda-forge 4MB -2023-11-07T14:39:09Z #11 156.0 + libarrow 12.0.1 h657c46f_7_cpu conda-forge 28MB -2023-11-07T14:39:09Z #11 156.0 + tzdata 2023c h71feb2d_0 conda-forge 118kB -2023-11-07T14:39:09Z #11 156.0 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2023-11-07T14:39:09Z #11 156.0 + font-ttf-ubuntu 0.83 hab24e00_0 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2023-11-07T14:39:09Z #11 156.0 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2023-11-07T14:39:09Z #11 156.0 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + fonts-conda-forge 1 0 conda-forge 4kB -2023-11-07T14:39:09Z #11 156.0 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2023-11-07T14:39:09Z #11 156.0 + postgresql 15.2 h3248436_0 conda-forge 5MB -2023-11-07T14:39:09Z #11 156.0 + python 3.10.13 hd12c33a_0_cpython conda-forge 25MB -2023-11-07T14:39:09Z #11 156.0 + cairo 1.16.0 ha61ee94_1014 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + poppler 23.01.0 h091648b_0 conda-forge 16MB -2023-11-07T14:39:09Z #11 156.0 + libgdal 3.6.2 h8c90c07_6 conda-forge 10MB -2023-11-07T14:39:09Z #11 156.0 + wheel 0.41.3 pyhd8ed1ab_0 conda-forge 58kB -2023-11-07T14:39:09Z #11 156.0 + setuptools 68.2.2 pyhd8ed1ab_0 conda-forge 464kB -2023-11-07T14:39:09Z #11 156.0 + pip 23.3.1 pyhd8ed1ab_0 conda-forge 1MB -2023-11-07T14:39:09Z #11 156.0 + backports 1.0 pyhd8ed1ab_3 conda-forge 6kB -2023-11-07T14:39:09Z #11 156.0 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB -2023-11-07T14:39:09Z #11 156.0 + pure_eval 0.2.2 pyhd8ed1ab_0 conda-forge 15kB -2023-11-07T14:39:09Z #11 156.0 + executing 2.0.1 pyhd8ed1ab_0 conda-forge 28kB -2023-11-07T14:39:09Z #11 156.0 + ptyprocess 0.7.0 pyhd3deb0d_0 conda-forge 17kB -2023-11-07T14:39:09Z #11 156.0 + pygments 2.16.1 pyhd8ed1ab_0 conda-forge 853kB -2023-11-07T14:39:09Z #11 156.0 + exceptiongroup 1.1.3 pyhd8ed1ab_0 conda-forge 19kB -2023-11-07T14:39:09Z #11 156.0 + traitlets 5.13.0 pyhd8ed1ab_0 conda-forge 110kB -2023-11-07T14:39:09Z #11 156.0 + parso 0.8.3 pyhd8ed1ab_0 conda-forge 71kB -2023-11-07T14:39:09Z #11 156.0 + decorator 5.1.1 pyhd8ed1ab_0 conda-forge 12kB -2023-11-07T14:39:09Z #11 156.0 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2023-11-07T14:39:09Z #11 156.0 + pox 0.3.3 pyhd8ed1ab_0 conda-forge 26kB -2023-11-07T14:39:09Z #11 156.0 + dill 0.3.7 pyhd8ed1ab_0 conda-forge 88kB -2023-11-07T14:39:09Z #11 156.0 + appdirs 1.4.4 pyh9f0ad1d_0 conda-forge 13kB -2023-11-07T14:39:09Z #11 156.0 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2023-11-07T14:39:09Z #11 156.0 + idna 3.4 pyhd8ed1ab_0 conda-forge 57kB -2023-11-07T14:39:09Z #11 156.0 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2023-11-07T14:39:09Z #11 156.0 + future 0.18.3 pyhd8ed1ab_0 conda-forge 366kB -2023-11-07T14:39:09Z #11 156.0 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2023-11-07T14:39:09Z #11 156.0 + pyparsing 3.1.1 pyhd8ed1ab_0 conda-forge 90kB -2023-11-07T14:39:09Z #11 156.0 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2023-11-07T14:39:09Z #11 156.0 + certifi 2023.7.22 pyhd8ed1ab_0 conda-forge Cached -2023-11-07T14:39:09Z #11 156.0 + haversine 2.8.0 pyhd8ed1ab_0 conda-forge 13kB -2023-11-07T14:39:09Z #11 156.0 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2023-11-07T14:39:09Z #11 156.0 + threadpoolctl 3.2.0 pyha21a80b_0 conda-forge 21kB -2023-11-07T14:39:09Z #11 156.0 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB -2023-11-07T14:39:09Z #11 156.0 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB -2023-11-07T14:39:09Z #11 156.0 + pickleshare 0.7.5 py_1003 conda-forge 9kB -2023-11-07T14:39:09Z #11 156.0 + fsspec 2023.10.0 pyhca7485f_0 conda-forge 125kB -2023-11-07T14:39:09Z #11 156.0 + tblib 2.0.0 pyhd8ed1ab_0 conda-forge 17kB -2023-11-07T14:39:09Z #11 156.0 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2023-11-07T14:39:09Z #11 156.0 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2023-11-07T14:39:09Z #11 156.0 + typing_extensions 4.8.0 pyha770c72_0 conda-forge 35kB -2023-11-07T14:39:09Z #11 156.0 + packaging 23.2 pyhd8ed1ab_0 conda-forge 49kB -2023-11-07T14:39:09Z #11 156.0 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2023-11-07T14:39:09Z #11 156.0 + munch 4.0.0 pyhd8ed1ab_0 conda-forge 15kB -2023-11-07T14:39:09Z #11 156.0 + attrs 23.1.0 pyh71513ae_1 conda-forge 55kB -2023-11-07T14:39:09Z #11 156.0 + pytz 2023.3.post1 pyhd8ed1ab_0 conda-forge 187kB -2023-11-07T14:39:09Z #11 156.0 + python-tzdata 2023.3 pyhd8ed1ab_0 conda-forge 143kB -2023-11-07T14:39:09Z #11 156.0 + toolz 0.12.0 pyhd8ed1ab_0 conda-forge 49kB -2023-11-07T14:39:09Z #11 156.0 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2023-11-07T14:39:09Z #11 156.0 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2023-11-07T14:39:09Z #11 156.0 + boltons 23.0.0 pyhd8ed1ab_0 conda-forge 303kB -2023-11-07T14:39:09Z #11 156.0 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2023-11-07T14:39:09Z #11 156.0 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2023-11-07T14:39:09Z #11 156.0 + backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0 conda-forge 12kB -2023-11-07T14:39:09Z #11 156.0 + pexpect 4.8.0 pyh1a96a4e_2 conda-forge 49kB -2023-11-07T14:39:09Z #11 156.0 + matplotlib-inline 0.1.6 pyhd8ed1ab_0 conda-forge 12kB -2023-11-07T14:39:09Z #11 156.0 + jedi 0.19.1 pyhd8ed1ab_0 conda-forge 841kB -2023-11-07T14:39:09Z #11 156.0 + typing-extensions 4.8.0 hd8ed1ab_0 conda-forge 10kB -2023-11-07T14:39:09Z #11 156.0 + pint 0.22 pyhd8ed1ab_1 conda-forge 230kB -2023-11-07T14:39:09Z #11 156.0 + asttokens 2.4.1 pyhd8ed1ab_0 conda-forge 29kB -2023-11-07T14:39:09Z #11 156.0 + ppft 1.7.6.7 pyhd8ed1ab_0 conda-forge 34kB -2023-11-07T14:39:09Z #11 156.0 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2023-11-07T14:39:09Z #11 156.0 + python-dateutil 2.8.2 pyhd8ed1ab_0 conda-forge 246kB -2023-11-07T14:39:09Z #11 156.0 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2023-11-07T14:39:09Z #11 156.0 + importlib-metadata 6.8.0 pyha770c72_0 conda-forge 26kB -2023-11-07T14:39:09Z #11 156.0 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2023-11-07T14:39:09Z #11 156.0 + click-plugins 1.1.1 py_0 conda-forge 9kB -2023-11-07T14:39:09Z #11 156.0 + wcwidth 0.2.9 pyhd8ed1ab_0 conda-forge 30kB -2023-11-07T14:39:09Z #11 156.0 + platformdirs 3.11.0 pyhd8ed1ab_0 conda-forge 20kB -2023-11-07T14:39:09Z #11 156.0 + stack_data 0.6.2 pyhd8ed1ab_0 conda-forge 26kB -2023-11-07T14:39:09Z #11 156.0 + importlib_metadata 6.8.0 hd8ed1ab_0 conda-forge 9kB -2023-11-07T14:39:09Z #11 156.0 + prompt-toolkit 3.0.39 pyha770c72_0 conda-forge 269kB -2023-11-07T14:39:09Z #11 156.0 + pytools 2023.1.1 pyhd8ed1ab_0 conda-forge 71kB -2023-11-07T14:39:09Z #11 156.0 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB -2023-11-07T14:39:09Z #11 156.0 + prompt_toolkit 3.0.39 hd8ed1ab_0 conda-forge 7kB -2023-11-07T14:39:09Z #11 156.0 + ipython 8.17.2 pyh41d4057_0 conda-forge 590kB -2023-11-07T14:39:09Z #11 156.0 + rtree 1.1.0 py310hbdcdc62_0 conda-forge 50kB -2023-11-07T14:39:09Z #11 156.0 + brotli-python 1.0.9 py310hd8f1fbe_9 conda-forge 326kB -2023-11-07T14:39:09Z #11 156.0 + mpi4py 3.1.4 py310h37cc914_0 conda-forge 631kB -2023-11-07T14:39:09Z #11 156.0 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB -2023-11-07T14:39:09Z #11 156.0 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB -2023-11-07T14:39:09Z #11 156.0 + lxml 4.9.2 py310hbdc0903_0 conda-forge 1MB -2023-11-07T14:39:09Z #11 156.0 + markupsafe 2.1.3 py310h2372a71_1 conda-forge 24kB -2023-11-07T14:39:09Z #11 156.0 + pillow 9.4.0 py310h023d228_1 conda-forge 46MB -2023-11-07T14:39:09Z #11 156.0 + lz4 4.3.2 py310h350c4a5_1 conda-forge 37kB -2023-11-07T14:39:09Z #11 156.0 + tornado 6.3.3 py310h2372a71_1 conda-forge 642kB -2023-11-07T14:39:09Z #11 156.0 + psutil 5.9.5 py310h2372a71_1 conda-forge 361kB -2023-11-07T14:39:09Z #11 156.0 + msgpack-python 1.0.6 py310hd41b1e2_0 conda-forge 197kB -2023-11-07T14:39:09Z #11 156.0 + raven-hydro 0.2.4 py310hee4f699_0 conda-forge 786kB -2023-11-07T14:39:09Z #11 156.0 + llvmlite 0.40.1 py310h1b8f574_0 conda-forge 3MB -2023-11-07T14:39:09Z #11 156.0 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB -2023-11-07T14:39:09Z #11 156.0 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB -2023-11-07T14:39:09Z #11 156.0 + multiprocess 0.70.15 py310h2372a71_1 conda-forge 243kB -2023-11-07T14:39:09Z #11 156.0 + pyproj 3.5.0 py310h15e2413_0 conda-forge 447kB -2023-11-07T14:39:09Z #11 156.0 + cytoolz 0.12.2 py310h2372a71_1 conda-forge 368kB -2023-11-07T14:39:09Z #11 156.0 + pydantic 1.10.13 py310h2372a71_1 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + fonttools 4.44.0 py310h2372a71_0 conda-forge 2MB -2023-11-07T14:39:09Z #11 156.0 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB -2023-11-07T14:39:09Z #11 156.0 + esmpy 8.4.0 mpi_mpich_py310h515c5ea_102 conda-forge 46MB -2023-11-07T14:39:09Z #11 156.0 + pyarrow 12.0.1 py310h0576679_7_cpu conda-forge 4MB -2023-11-07T14:39:09Z #11 156.0 + shapely 2.0.1 py310h8b84c32_0 conda-forge 422kB -2023-11-07T14:39:09Z #11 156.0 + gdal 3.6.2 py310hc1b7723_6 conda-forge 1MB -2023-11-07T14:39:09Z #11 156.0 + scipy 1.11.3 py310hb13e2d6_1 conda-forge 15MB -2023-11-07T14:39:09Z #11 156.0 + pandas 2.1.2 py310hcc13569_0 conda-forge 12MB -2023-11-07T14:39:09Z #11 156.0 + numba 0.57.1 py310h0f6aa51_0 conda-forge 4MB -2023-11-07T14:39:09Z #11 156.0 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB -2023-11-07T14:39:09Z #11 156.0 + bottleneck 1.3.7 py310h1f7b6fc_1 conda-forge 125kB -2023-11-07T14:39:09Z #11 156.0 + matplotlib-base 3.8.1 py310h62c0568_0 conda-forge 7MB -2023-11-07T14:39:09Z #11 156.0 + fiona 1.9.1 py310ha325b7b_0 conda-forge 856kB -2023-11-07T14:39:09Z #11 156.0 + pyogrio 0.5.1 py310ha325b7b_0 conda-forge 560kB -2023-11-07T14:39:09Z #11 156.0 + scikit-learn 1.3.2 py310h1fdf081_1 conda-forge 8MB -2023-11-07T14:39:09Z #11 156.0 + netcdf4 1.6.2 nompi_py310h55e1e36_100 conda-forge 490kB -2023-11-07T14:39:09Z #11 156.0 + urllib3 2.0.7 pyhd8ed1ab_0 conda-forge 99kB -2023-11-07T14:39:09Z #11 156.0 + jinja2 3.1.2 pyhd8ed1ab_1 conda-forge 101kB -2023-11-07T14:39:09Z #11 156.0 + dask-core 2023.10.1 pyhd8ed1ab_0 conda-forge 863kB -2023-11-07T14:39:09Z #11 156.0 + snuggs 1.4.7 py_0 conda-forge 8kB -2023-11-07T14:39:09Z #11 156.0 + eofs 1.4.0 py_0 conda-forge 958kB -2023-11-07T14:39:09Z #11 156.0 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2023-11-07T14:39:09Z #11 156.0 + pathos 0.3.1 pyhd8ed1ab_0 conda-forge 52kB -2023-11-07T14:39:09Z #11 156.0 + patsy 0.5.3 pyhd8ed1ab_0 conda-forge 194kB -2023-11-07T14:39:09Z #11 156.0 + lmoments3 1.0.6 pyhd8ed1ab_0 conda-forge 36kB -2023-11-07T14:39:09Z #11 156.0 + properscoring 0.1 py_0 conda-forge 22kB -2023-11-07T14:39:09Z #11 156.0 + geopandas-base 0.14.0 pyha770c72_1 conda-forge 1MB -2023-11-07T14:39:09Z #11 156.0 + xarray 2023.8.0 pyhd8ed1ab_0 conda-forge 690kB -2023-11-07T14:39:09Z #11 156.0 + sparse 0.14.0 pyhd8ed1ab_0 conda-forge 66kB -2023-11-07T14:39:09Z #11 156.0 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2023-11-07T14:39:09Z #11 156.0 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2023-11-07T14:39:09Z #11 156.0 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2023-11-07T14:39:09Z #11 156.0 + branca 0.7.0 pyhd8ed1ab_1 conda-forge 29kB -2023-11-07T14:39:09Z #11 156.0 + bokeh 3.3.0 pyhd8ed1ab_0 conda-forge 5MB -2023-11-07T14:39:09Z #11 156.0 + distributed 2023.10.1 pyhd8ed1ab_0 conda-forge 791kB -2023-11-07T14:39:09Z #11 156.0 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2023-11-07T14:39:09Z #11 156.0 + cf_xarray 0.8.6 pyhd8ed1ab_0 conda-forge 53kB -2023-11-07T14:39:09Z #11 156.0 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2023-11-07T14:39:09Z #11 156.0 + folium 0.15.0 pyhd8ed1ab_0 conda-forge 73kB -2023-11-07T14:39:09Z #11 156.0 + dask 2023.10.1 pyhd8ed1ab_0 conda-forge 7kB -2023-11-07T14:39:09Z #11 156.0 + xesmf 0.8.2 pyhd8ed1ab_0 conda-forge 44kB -2023-11-07T14:39:09Z #11 156.0 + geopandas 0.14.0 pyhd8ed1ab_1 conda-forge 8kB -2023-11-07T14:39:09Z #11 156.0 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2023-11-07T14:39:09Z #11 156.0 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2023-11-07T14:39:09Z #11 156.0 + xskillscore 0.0.24 pyhd8ed1ab_0 conda-forge 59kB -2023-11-07T14:39:09Z #11 156.0 + rasterio 1.3.6 py310h3e853a9_0 conda-forge 7MB -2023-11-07T14:39:09Z #11 156.0 + statsmodels 0.14.0 py310h1f7b6fc_2 conda-forge 10MB -2023-11-07T14:39:09Z #11 156.0 + xclim 0.46.0 py310hff52083_0 conda-forge 890kB -2023-11-07T14:39:09Z #11 156.0 + rioxarray 0.15.0 pyhd8ed1ab_0 conda-forge 47kB -2023-11-07T14:39:09Z #11 156.0 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2023-11-07T14:39:09Z #11 156.0 + climpred 2.3.0 pyhd8ed1ab_0 conda-forge 128kB -2023-11-07T14:39:09Z #11 156.0 + ravenpy 0.12.3 py310hff52083_0 conda-forge 6MB -2023-11-07T14:39:09Z #11 156.0 -2023-11-07T14:39:09Z #11 156.0 Summary: -2023-11-07T14:39:09Z #11 156.0 -2023-11-07T14:39:09Z #11 156.0 Install: 296 packages -2023-11-07T14:39:09Z #11 156.0 -2023-11-07T14:39:09Z #11 156.0 Total download: 557MB -2023-11-07T14:39:09Z #11 156.0 -2023-11-07T14:39:09Z #11 156.0 ────────────────────────────────────────────────────────────────────────────────────────────────────── -2023-11-07T14:39:09Z #11 156.0 -2023-11-07T14:39:09Z #11 156.0 -2023-11-07T14:40:56Z #11 263.1 -2023-11-07T14:40:56Z #11 263.1 Looking for: ['xclim', 'ravenpy', 'python=3.10'] -2023-11-07T14:40:56Z #11 263.1 -2023-11-07T14:40:56Z #11 263.1 -2023-11-07T14:40:56Z #11 263.1 Downloading and Extracting Packages: ...working... done -2023-11-07T14:41:01Z #11 263.1 Preparing transaction: ...working... done -2023-11-07T14:41:20Z #11 267.7 Verifying transaction: ...working... done -2023-11-07T14:41:55Z #11 287.2 Executing transaction: ...working... done -2023-11-07T14:41:55Z #11 322.3 -2023-11-07T14:41:55Z #11 322.3 To activate this environment, use -2023-11-07T14:41:55Z #11 322.3 -2023-11-07T14:41:55Z #11 322.3 $ mamba activate birdy -2023-11-07T14:41:55Z #11 322.3 -2023-11-07T14:41:55Z #11 322.3 To deactivate an active environment, use -2023-11-07T14:41:55Z #11 322.3 -2023-11-07T14:41:55Z #11 322.3 $ mamba deactivate -2023-11-07T14:41:55Z #11 322.3 -2023-11-07T14:41:56Z #11 323.1 conda-forge/linux-64 Using cache -2023-11-07T14:41:56Z #11 323.1 conda-forge/noarch Using cache -2023-11-07T14:42:03Z #11 330.3 -2023-11-07T14:42:03Z #11 330.3 -2023-11-07T14:42:03Z #11 330.3 Looking for: ["xclim[version='>=0.44.0']", "ravenpy[version='>=0.12.2']", 'flox', 'matplotlib', 'numpy', 'cf_xarray!=0.8.1', 'birdy', "libnetcdf[version='<=4.8.1']", 'cfgrib', 'pydap', "cartopy[version='>=0.21.0']", 'pykdtree', 'descartes', 'pyogrio', 'scikit-image', 'ipyleaflet', 'threddsclient', 'bokeh', 'regionmask', 'siphon', 'jupyter_bokeh', 'pscript', 'h5netcdf', "panel[version='>=1.2.2']", 'pyviz_comms', 'holoviews', "geoviews[version='>=1.9.6']", 'hvplot', 'streamlit', 'seaborn', 'python-pptx', 'nc-time-axis', 'aiohttp', 'intake', "intake-esm[version='>=2023.6.14']", 'intake-xarray', 'intake-geopandas', 'intake-thredds', 'gcsfs', 'zarr', 's3fs', "clisops[version='>=0.9.2']", "xesmf[version='>=0.6.2']", 'geopy', 'memory_profiler', 'esgf-compute-api', 'esgf-pyclient', 'cdms2', 'mesalib', 'pytest', 'pytest-xdist', 'nbval', 'jupyter', 'notebook', 'jupyterlab', 'jupyterhub', 'ipywidgets', 'ipyleaflet', 'mamba_gator', 'nbdime', 'jupytext', 'jupyterlab-git', 'voila', 'jupyter-archive', 'jupyterlab-topbar', 'jupyterlab-system-monitor', 'jupyter-resource-usage', 'nbresuse', 'xeus-python', 'jupyter-dash', 'jupyter-server-proxy', 'dask-labextension', "nodejs[version='>=16.0']", 'curl', 'wget', 'nested_dict', 'urlpath', 'paramiko', 'pymetalink', 'requests-magpie', 'scp', 'selenium', 'geckodriver', 'xlrd', 'pre-commit', 'pip'] -2023-11-07T14:42:03Z #11 330.3 -2023-11-07T14:42:03Z #11 330.3 -2023-11-07T14:44:08Z #11 455.2 Transaction -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 Prefix: /opt/conda/envs/birdy -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 Updating specs: -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 - flox -2023-11-07T14:44:08Z #11 455.2 - matplotlib -2023-11-07T14:44:08Z #11 455.2 - birdy -2023-11-07T14:44:08Z #11 455.2 - cfgrib -2023-11-07T14:44:08Z #11 455.2 - pydap -2023-11-07T14:44:08Z #11 455.2 - cartopy[version='>=0.21.0'] -2023-11-07T14:44:08Z #11 455.2 - pykdtree -2023-11-07T14:44:08Z #11 455.2 - descartes -2023-11-07T14:44:08Z #11 455.2 - scikit-image -2023-11-07T14:44:08Z #11 455.2 - ipyleaflet -2023-11-07T14:44:08Z #11 455.2 - threddsclient -2023-11-07T14:44:08Z #11 455.2 - regionmask -2023-11-07T14:44:08Z #11 455.2 - siphon -2023-11-07T14:44:08Z #11 455.2 - jupyter_bokeh -2023-11-07T14:44:08Z #11 455.2 - pscript -2023-11-07T14:44:08Z #11 455.2 - h5netcdf -2023-11-07T14:44:08Z #11 455.2 - panel[version='>=1.2.2'] -2023-11-07T14:44:08Z #11 455.2 - pyviz_comms -2023-11-07T14:44:08Z #11 455.2 - holoviews -2023-11-07T14:44:08Z #11 455.2 - geoviews[version='>=1.9.6'] -2023-11-07T14:44:08Z #11 455.2 - hvplot -2023-11-07T14:44:08Z #11 455.2 - streamlit -2023-11-07T14:44:08Z #11 455.2 - seaborn -2023-11-07T14:44:08Z #11 455.2 - python-pptx -2023-11-07T14:44:08Z #11 455.2 - aiohttp -2023-11-07T14:44:08Z #11 455.2 - intake -2023-11-07T14:44:08Z #11 455.2 - intake-esm[version='>=2023.6.14'] -2023-11-07T14:44:08Z #11 455.2 - intake-xarray -2023-11-07T14:44:08Z #11 455.2 - intake-geopandas -2023-11-07T14:44:08Z #11 455.2 - intake-thredds -2023-11-07T14:44:08Z #11 455.2 - gcsfs -2023-11-07T14:44:08Z #11 455.2 - zarr -2023-11-07T14:44:08Z #11 455.2 - s3fs -2023-11-07T14:44:08Z #11 455.2 - clisops[version='>=0.9.2'] -2023-11-07T14:44:08Z #11 455.2 - geopy -2023-11-07T14:44:08Z #11 455.2 - memory_profiler -2023-11-07T14:44:08Z #11 455.2 - esgf-compute-api -2023-11-07T14:44:08Z #11 455.2 - esgf-pyclient -2023-11-07T14:44:08Z #11 455.2 - cdms2 -2023-11-07T14:44:08Z #11 455.2 - mesalib -2023-11-07T14:44:08Z #11 455.2 - pytest -2023-11-07T14:44:08Z #11 455.2 - pytest-xdist -2023-11-07T14:44:08Z #11 455.2 - nbval -2023-11-07T14:44:08Z #11 455.2 - jupyter -2023-11-07T14:44:08Z #11 455.2 - notebook -2023-11-07T14:44:08Z #11 455.2 - jupyterlab -2023-11-07T14:44:08Z #11 455.2 - jupyterhub -2023-11-07T14:44:08Z #11 455.2 - ipywidgets -2023-11-07T14:44:08Z #11 455.2 - ipyleaflet -2023-11-07T14:44:08Z #11 455.2 - mamba_gator -2023-11-07T14:44:08Z #11 455.2 - nbdime -2023-11-07T14:44:08Z #11 455.2 - jupytext -2023-11-07T14:44:08Z #11 455.2 - jupyterlab-git -2023-11-07T14:44:08Z #11 455.2 - voila -2023-11-07T14:44:08Z #11 455.2 - jupyter-archive -2023-11-07T14:44:08Z #11 455.2 - jupyterlab-topbar -2023-11-07T14:44:08Z #11 455.2 - jupyterlab-system-monitor -2023-11-07T14:44:08Z #11 455.2 - jupyter-resource-usage -2023-11-07T14:44:08Z #11 455.2 - nbresuse -2023-11-07T14:44:08Z #11 455.2 - xeus-python -2023-11-07T14:44:08Z #11 455.2 - jupyter-dash -2023-11-07T14:44:08Z #11 455.2 - jupyter-server-proxy -2023-11-07T14:44:08Z #11 455.2 - dask-labextension -2023-11-07T14:44:08Z #11 455.2 - nodejs[version='>=16.0'] -2023-11-07T14:44:08Z #11 455.2 - wget -2023-11-07T14:44:08Z #11 455.2 - nested_dict -2023-11-07T14:44:08Z #11 455.2 - urlpath -2023-11-07T14:44:08Z #11 455.2 - paramiko -2023-11-07T14:44:08Z #11 455.2 - pymetalink -2023-11-07T14:44:08Z #11 455.2 - requests-magpie -2023-11-07T14:44:08Z #11 455.2 - scp -2023-11-07T14:44:08Z #11 455.2 - selenium -2023-11-07T14:44:08Z #11 455.2 - geckodriver -2023-11-07T14:44:08Z #11 455.2 - xlrd -2023-11-07T14:44:08Z #11 455.2 - pre-commit -2023-11-07T14:44:08Z #11 455.2 - xclim[version='>=0.44.0'] -2023-11-07T14:44:08Z #11 455.2 - ravenpy[version='>=0.12.2'] -2023-11-07T14:44:08Z #11 455.2 - numpy -2023-11-07T14:44:08Z #11 455.2 - cf_xarray !=0.8.1 -2023-11-07T14:44:08Z #11 455.2 - libnetcdf[version='<=4.8.1'] -2023-11-07T14:44:08Z #11 455.2 - pyogrio -2023-11-07T14:44:08Z #11 455.2 - bokeh -2023-11-07T14:44:08Z #11 455.2 - nc-time-axis -2023-11-07T14:44:08Z #11 455.2 - xesmf[version='>=0.6.2'] -2023-11-07T14:44:08Z #11 455.2 - curl -2023-11-07T14:44:08Z #11 455.2 - pip -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 Package Version Build Channel Size -2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── -2023-11-07T14:44:08Z #11 455.2 Install: -2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 + docopt 0.6.2 py_1 conda-forge 15kB -2023-11-07T14:44:08Z #11 455.2 + descartes 1.1.0 py_4 conda-forge 8kB -2023-11-07T14:44:08Z #11 455.2 + pscript 0.7.7 pyhd8ed1ab_0 conda-forge 68kB -2023-11-07T14:44:08Z #11 455.2 + param 2.0.0 pyhca7485f_0 conda-forge 103kB -2023-11-07T14:44:08Z #11 455.2 + multipledispatch 0.6.0 py_0 conda-forge 12kB -2023-11-07T14:44:08Z #11 455.2 + seaborn-base 0.13.0 pyhd8ed1ab_0 conda-forge 234kB -2023-11-07T14:44:08Z #11 455.2 + asciitree 0.3.3 py_2 conda-forge 6kB -2023-11-07T14:44:08Z #11 455.2 + roocs-utils 0.6.4 pyh1a96a4e_0 conda-forge 27kB -2023-11-07T14:44:08Z #11 455.2 + memory_profiler 0.61.0 pyhd8ed1ab_0 conda-forge 33kB -2023-11-07T14:44:08Z #11 455.2 + ipython_genutils 0.2.0 py_1 conda-forge 22kB -2023-11-07T14:44:08Z #11 455.2 + jupyterlab_widgets 3.0.9 pyhd8ed1ab_0 conda-forge 187kB -2023-11-07T14:44:08Z #11 455.2 + widgetsnbextension 4.0.9 pyhd8ed1ab_0 conda-forge 886kB -2023-11-07T14:44:08Z #11 455.2 + xeus-python-shell-raw 0.5.0 pyhd8ed1ab_0 conda-forge 11kB -2023-11-07T14:44:08Z #11 455.2 + retrying 1.3.3 py_2 conda-forge 11kB -2023-11-07T14:44:08Z #11 455.2 + simpervisor 1.0.0 pyhd8ed1ab_0 conda-forge 13kB -2023-11-07T14:44:08Z #11 455.2 + nested_dict 1.61 pyhd3deb0d_0 conda-forge 9kB -2023-11-07T14:44:08Z #11 455.2 + urlpath 1.2.0 pyhd8ed1ab_0 conda-forge 13kB -2023-11-07T14:44:08Z #11 455.2 + pymetalink 6.4 pyhd8ed1ab_0 conda-forge 41kB -2023-11-07T14:44:08Z #11 455.2 + requests-magpie 0.2.0 pyhd8ed1ab_0 conda-forge 7kB -2023-11-07T14:44:08Z #11 455.2 + xlrd 2.0.1 pyhd8ed1ab_3 conda-forge 94kB -2023-11-07T14:44:08Z #11 455.2 + fasteners 0.17.3 pyhd8ed1ab_0 conda-forge 20kB -2023-11-07T14:44:08Z #11 455.2 + send2trash 1.8.2 pyh41d4057_0 conda-forge 23kB -2023-11-07T14:44:08Z #11 455.2 + blinker 1.7.0 pyhd8ed1ab_0 conda-forge 18kB -2023-11-07T14:44:08Z #11 455.2 + cachetools 5.3.2 pyhd8ed1ab_0 conda-forge 15kB -2023-11-07T14:44:08Z #11 455.2 + tenacity 8.2.3 pyhd8ed1ab_0 conda-forge 23kB -2023-11-07T14:44:08Z #11 455.2 + toml 0.10.2 pyhd8ed1ab_0 conda-forge 18kB -2023-11-07T14:44:08Z #11 455.2 + validators 0.22.0 pyhd8ed1ab_0 conda-forge 25kB -2023-11-07T14:44:08Z #11 455.2 + sniffio 1.3.0 pyhd8ed1ab_0 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + mdurl 0.1.0 pyhd8ed1ab_0 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + pooch 1.8.0 pyhd8ed1ab_0 conda-forge 52kB -2023-11-07T14:44:08Z #11 455.2 + xlsxwriter 3.1.9 pyhd8ed1ab_0 conda-forge 121kB -2023-11-07T14:44:08Z #11 455.2 + execnet 2.0.2 pyhd8ed1ab_0 conda-forge 37kB -2023-11-07T14:44:08Z #11 455.2 + colorama 0.4.6 pyhd8ed1ab_0 conda-forge 25kB -2023-11-07T14:44:08Z #11 455.2 + pluggy 1.3.0 pyhd8ed1ab_0 conda-forge 23kB -2023-11-07T14:44:08Z #11 455.2 + iniconfig 2.0.0 pyhd8ed1ab_0 conda-forge 11kB -2023-11-07T14:44:08Z #11 455.2 + tomli 2.0.1 pyhd8ed1ab_0 conda-forge 16kB -2023-11-07T14:44:08Z #11 455.2 + webob 1.8.7 pyhd8ed1ab_0 conda-forge 88kB -2023-11-07T14:44:08Z #11 455.2 + distlib 0.3.7 pyhd8ed1ab_0 conda-forge 274kB -2023-11-07T14:44:08Z #11 455.2 + cfgv 3.3.1 pyhd8ed1ab_0 conda-forge 11kB -2023-11-07T14:44:08Z #11 455.2 + nodeenv 1.8.0 pyhd8ed1ab_0 conda-forge 34kB -2023-11-07T14:44:08Z #11 455.2 + markdown 3.5.1 pyhd8ed1ab_0 conda-forge 77kB -2023-11-07T14:44:08Z #11 455.2 + uc-micro-py 1.0.1 pyhd8ed1ab_0 conda-forge 9kB -2023-11-07T14:44:08Z #11 455.2 + prometheus_client 0.18.0 pyhd8ed1ab_0 conda-forge 54kB -2023-11-07T14:44:08Z #11 455.2 + terminado 0.17.1 pyh41d4057_0 conda-forge 21kB -2023-11-07T14:44:08Z #11 455.2 + nest-asyncio 1.5.8 pyhd8ed1ab_0 conda-forge 12kB -2023-11-07T14:44:08Z #11 455.2 + python-fastjsonschema 2.18.1 pyhd8ed1ab_0 conda-forge 226kB -2023-11-07T14:44:08Z #11 455.2 + defusedxml 0.7.1 pyhd8ed1ab_0 conda-forge 24kB -2023-11-07T14:44:08Z #11 455.2 + entrypoints 0.4 pyhd8ed1ab_0 conda-forge 9kB -2023-11-07T14:44:08Z #11 455.2 + pandocfilters 1.5.0 pyhd8ed1ab_0 conda-forge 12kB -2023-11-07T14:44:08Z #11 455.2 + jupyterlab_pygments 0.2.2 pyhd8ed1ab_0 conda-forge 17kB -2023-11-07T14:44:08Z #11 455.2 + mistune 3.0.2 pyhd8ed1ab_0 conda-forge 66kB -2023-11-07T14:44:08Z #11 455.2 + babel 2.13.1 pyhd8ed1ab_0 conda-forge 7MB -2023-11-07T14:44:08Z #11 455.2 + json5 0.9.14 pyhd8ed1ab_0 conda-forge 25kB -2023-11-07T14:44:08Z #11 455.2 + pamela 1.1.0 pyh1a96a4e_0 conda-forge 12kB -2023-11-07T14:44:08Z #11 455.2 + async_generator 1.10 py_0 conda-forge 18kB -2023-11-07T14:44:08Z #11 455.2 + aiofiles 22.1.0 pyhd8ed1ab_0 conda-forge 18kB -2023-11-07T14:44:08Z #11 455.2 + rfc3339-validator 0.1.4 pyhd8ed1ab_0 conda-forge 8kB -2023-11-07T14:44:08Z #11 455.2 + rfc3986-validator 0.1.1 pyh9f0ad1d_0 conda-forge 8kB -2023-11-07T14:44:08Z #11 455.2 + websocket-client 1.6.4 pyhd8ed1ab_0 conda-forge 46kB -2023-11-07T14:44:08Z #11 455.2 + typing_utils 0.1.0 pyhd8ed1ab_0 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + python-json-logger 2.0.7 pyhd8ed1ab_0 conda-forge 13kB -2023-11-07T14:44:08Z #11 455.2 + uri-template 1.3.0 pyhd8ed1ab_0 conda-forge 24kB -2023-11-07T14:44:08Z #11 455.2 + webcolors 1.13 pyhd8ed1ab_0 conda-forge 18kB -2023-11-07T14:44:08Z #11 455.2 + importlib_resources 6.1.1 pyhd8ed1ab_0 conda-forge 30kB -2023-11-07T14:44:08Z #11 455.2 + pkgutil-resolve-name 1.3.10 pyhd8ed1ab_1 conda-forge 11kB -2023-11-07T14:44:08Z #11 455.2 + comm 0.1.4 pyhd8ed1ab_0 conda-forge 12kB -2023-11-07T14:44:08Z #11 455.2 + traittypes 0.2.1 pyh9f0ad1d_2 conda-forge 10kB -2023-11-07T14:44:08Z #11 455.2 + fastprogress 1.0.3 pyhd8ed1ab_0 conda-forge 17kB -2023-11-07T14:44:08Z #11 455.2 + smmap 5.0.0 pyhd8ed1ab_0 conda-forge 22kB -2023-11-07T14:44:08Z #11 455.2 + geographiclib 1.52 pyhd8ed1ab_0 conda-forge 36kB -2023-11-07T14:44:08Z #11 455.2 + pyu2f 0.1.5 pyhd8ed1ab_0 conda-forge 32kB -2023-11-07T14:44:08Z #11 455.2 + numpy_groupies 0.10.2 pyhd8ed1ab_0 conda-forge 37kB -2023-11-07T14:44:08Z #11 455.2 + webencodings 0.5.1 pyhd8ed1ab_2 conda-forge 16kB -2023-11-07T14:44:08Z #11 455.2 + funcsigs 1.0.2 py_3 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + soupsieve 2.5 pyhd8ed1ab_1 conda-forge 37kB -2023-11-07T14:44:08Z #11 455.2 + mako 1.2.4 pyhd8ed1ab_0 conda-forge 63kB -2023-11-07T14:44:08Z #11 455.2 + aioitertools 0.11.0 pyhd8ed1ab_0 conda-forge 23kB -2023-11-07T14:44:08Z #11 455.2 + pyjwt 2.8.0 pyhd8ed1ab_0 conda-forge 25kB -2023-11-07T14:44:08Z #11 455.2 + itsdangerous 2.1.2 pyhd8ed1ab_0 conda-forge 16kB -2023-11-07T14:44:08Z #11 455.2 + url-normalize 1.4.3 pyhd8ed1ab_0 conda-forge 10kB -2023-11-07T14:44:08Z #11 455.2 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB -2023-11-07T14:44:08Z #11 455.2 + outcome 1.3.0.post0 pyhd8ed1ab_0 conda-forge 16kB -2023-11-07T14:44:08Z #11 455.2 + imageio 2.31.5 pyh8c1a49c_0 conda-forge 291kB -2023-11-07T14:44:08Z #11 455.2 + lazy_loader 0.3 pyhd8ed1ab_0 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + pycparser 2.21 pyhd8ed1ab_0 conda-forge 103kB -2023-11-07T14:44:08Z #11 455.2 + distarray 2.12.2 pyh050c7b8_4 conda-forge 16kB -2023-11-07T14:44:08Z #11 455.2 + pyshp 2.3.1 pyhd8ed1ab_0 conda-forge 964kB -2023-11-07T14:44:08Z #11 455.2 + async-timeout 4.0.3 pyhd8ed1ab_0 conda-forge 11kB -2023-11-07T14:44:08Z #11 455.2 + aiosqlite 0.19.0 pyhd8ed1ab_0 conda-forge 19kB -2023-11-07T14:44:08Z #11 455.2 + filelock 3.13.1 pyhd8ed1ab_0 conda-forge 16kB -2023-11-07T14:44:08Z #11 455.2 + cattrs 23.1.2 pyhd8ed1ab_0 conda-forge 42kB -2023-11-07T14:44:08Z #11 455.2 + qtpy 2.4.1 pyhd8ed1ab_0 conda-forge 62kB -2023-11-07T14:44:08Z #11 455.2 + werkzeug 3.0.1 pyhd8ed1ab_0 conda-forge 242kB -2023-11-07T14:44:08Z #11 455.2 + jmespath 1.0.1 pyhd8ed1ab_0 conda-forge 21kB -2023-11-07T14:44:08Z #11 455.2 + types-python-dateutil 2.8.19.14 pyhd8ed1ab_0 conda-forge 21kB -2023-11-07T14:44:08Z #11 455.2 + h11 0.14.0 pyhd8ed1ab_0 conda-forge 48kB -2023-11-07T14:44:08Z #11 455.2 + pyasn1 0.5.0 pyhd8ed1ab_0 conda-forge 63kB -2023-11-07T14:44:08Z #11 455.2 + findlibs 0.0.5 pyhd8ed1ab_0 conda-forge 13kB -2023-11-07T14:44:08Z #11 455.2 + ply 3.11 py_1 conda-forge 45kB -2023-11-07T14:44:08Z #11 455.2 + pyct-core 0.4.6 py_0 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + pyviz_comms 2.3.2 pyhd8ed1ab_0 conda-forge 46kB -2023-11-07T14:44:08Z #11 455.2 + seaborn 0.13.0 hd8ed1ab_0 conda-forge 7kB -2023-11-07T14:44:08Z #11 455.2 + xeus-python-shell 0.5.0 pyhd8ed1ab_0 conda-forge 5kB -2023-11-07T14:44:08Z #11 455.2 + plotly 5.18.0 pyhd8ed1ab_0 conda-forge 5MB -2023-11-07T14:44:08Z #11 455.2 + anyio 4.0.0 pyhd8ed1ab_0 conda-forge 99kB -2023-11-07T14:44:08Z #11 455.2 + markdown-it-py 3.0.0 pyhd8ed1ab_0 conda-forge 64kB -2023-11-07T14:44:08Z #11 455.2 + regionmask 0.11.0 pyhd8ed1ab_0 conda-forge 59kB -2023-11-07T14:44:08Z #11 455.2 + python-pptx 0.6.23 pyhd8ed1ab_0 conda-forge 399kB -2023-11-07T14:44:08Z #11 455.2 + tqdm 4.66.1 pyhd8ed1ab_0 conda-forge 89kB -2023-11-07T14:44:08Z #11 455.2 + pytest 7.4.3 pyhd8ed1ab_0 conda-forge 245kB -2023-11-07T14:44:08Z #11 455.2 + linkify-it-py 2.0.0 pyhd8ed1ab_0 conda-forge 22kB -2023-11-07T14:44:08Z #11 455.2 + jupyter_server_terminals 0.4.4 pyhd8ed1ab_1 conda-forge 19kB -2023-11-07T14:44:08Z #11 455.2 + intake 0.7.0 pyhd8ed1ab_0 conda-forge 193kB -2023-11-07T14:44:08Z #11 455.2 + overrides 7.4.0 pyhd8ed1ab_0 conda-forge 30kB -2023-11-07T14:44:08Z #11 455.2 + ipywidgets 8.1.1 pyhd8ed1ab_0 conda-forge 114kB -2023-11-07T14:44:08Z #11 455.2 + gitdb 4.0.11 pyhd8ed1ab_0 conda-forge 53kB -2023-11-07T14:44:08Z #11 455.2 + geopy 2.4.0 pyhd8ed1ab_0 conda-forge 73kB -2023-11-07T14:44:08Z #11 455.2 + flox 0.8.1 pyhd8ed1ab_0 conda-forge 50kB -2023-11-07T14:44:08Z #11 455.2 + tinycss2 1.2.1 pyhd8ed1ab_0 conda-forge 23kB -2023-11-07T14:44:08Z #11 455.2 + bleach 6.1.0 pyhd8ed1ab_0 conda-forge 131kB -2023-11-07T14:44:08Z #11 455.2 + beautifulsoup4 4.12.2 pyha770c72_0 conda-forge 115kB -2023-11-07T14:44:08Z #11 455.2 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB -2023-11-07T14:44:08Z #11 455.2 + virtualenv 20.24.6 pyhd8ed1ab_0 conda-forge 3MB -2023-11-07T14:44:08Z #11 455.2 + flask 3.0.0 pyhd8ed1ab_0 conda-forge 80kB -2023-11-07T14:44:08Z #11 455.2 + botocore 1.31.64 pyhd8ed1ab_0 conda-forge 6MB -2023-11-07T14:44:08Z #11 455.2 + arrow 1.3.0 pyhd8ed1ab_0 conda-forge 100kB -2023-11-07T14:44:08Z #11 455.2 + wsproto 1.2.0 pyhd8ed1ab_0 conda-forge 25kB -2023-11-07T14:44:08Z #11 455.2 + pyasn1-modules 0.3.0 pyhd8ed1ab_0 conda-forge 96kB -2023-11-07T14:44:08Z #11 455.2 + rsa 4.9 pyhd8ed1ab_0 conda-forge 30kB -2023-11-07T14:44:08Z #11 455.2 + pyct 0.4.6 py_0 conda-forge 3kB -2023-11-07T14:44:08Z #11 455.2 + mdit-py-plugins 0.4.0 pyhd8ed1ab_0 conda-forge 41kB -2023-11-07T14:44:08Z #11 455.2 + rich 13.6.0 pyhd8ed1ab_0 conda-forge 183kB -2023-11-07T14:44:08Z #11 455.2 + pytest-xdist 3.3.1 pyhd8ed1ab_0 conda-forge 36kB -2023-11-07T14:44:08Z #11 455.2 + intake-geopandas 0.4.0 pyhd8ed1ab_0 conda-forge 13kB -2023-11-07T14:44:08Z #11 455.2 + jupyter_bokeh 3.0.7 pyhd8ed1ab_0 conda-forge 542kB -2023-11-07T14:44:08Z #11 455.2 + ipyleaflet 0.17.4 pyhd8ed1ab_0 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + gitpython 3.1.40 pyhd8ed1ab_0 conda-forge 147kB -2023-11-07T14:44:08Z #11 455.2 + threddsclient 0.4.4 pyh1a96a4e_0 conda-forge 18kB -2023-11-07T14:44:08Z #11 455.2 + pydap 3.4.0 pyhd8ed1ab_0 conda-forge 722kB -2023-11-07T14:44:08Z #11 455.2 + fqdn 1.5.1 pyhd8ed1ab_0 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + isoduration 20.11.0 pyhd8ed1ab_0 conda-forge 17kB -2023-11-07T14:44:08Z #11 455.2 + colorcet 3.0.1 pyhd8ed1ab_0 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + panel 1.3.1 pyhd8ed1ab_0 conda-forge 14MB -2023-11-07T14:44:08Z #11 455.2 + datashader 0.16.0 pyhd8ed1ab_0 conda-forge 17MB -2023-11-07T14:44:08Z #11 455.2 + holoviews 1.18.0 pyhd8ed1ab_0 conda-forge 3MB -2023-11-07T14:44:08Z #11 455.2 + hvplot 0.9.0 pyhd8ed1ab_0 conda-forge 3MB -2023-11-07T14:44:08Z #11 455.2 + pykdtree 1.3.9 py310h1f7b6fc_1 conda-forge 79kB -2023-11-07T14:44:08Z #11 455.2 + libllvm16 16.0.1 hadd5161_0 conda-forge 35MB -2023-11-07T14:44:08Z #11 455.2 + libpciaccess 0.17 h166bdaf_0 conda-forge 40kB -2023-11-07T14:44:08Z #11 455.2 + selenium-manager 4.15.0 he8a937b_0 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + geckodriver 0.33.0 h0e8d75e_1 conda-forge 3MB -2023-11-07T14:44:08Z #11 455.2 + openblas 0.3.24 pthreads_h7a3da1a_0 conda-forge 6MB -2023-11-07T14:44:08Z #11 455.2 + numcodecs 0.12.1 py310hc6cd4ac_0 conda-forge 757kB -2023-11-07T14:44:08Z #11 455.2 + jupyter_core 5.5.0 py310hff52083_0 conda-forge 79kB -2023-11-07T14:44:08Z #11 455.2 + websockets 12.0 py310h2372a71_0 conda-forge 159kB -2023-11-07T14:44:08Z #11 455.2 + protobuf 4.23.3 py310hb875b13_0 conda-forge 326kB -2023-11-07T14:44:08Z #11 455.2 + tzlocal 5.2 py310hff52083_0 conda-forge 36kB -2023-11-07T14:44:08Z #11 455.2 + watchdog 3.0.0 py310hff52083_1 conda-forge 110kB -2023-11-07T14:44:08Z #11 455.2 + bcrypt 4.0.1 py310hcb5633a_1 conda-forge 576kB -2023-11-07T14:44:08Z #11 455.2 + pycurl 7.45.1 py310h60f9ec7_3 conda-forge 76kB -2023-11-07T14:44:08Z #11 455.2 + y-py 0.5.9 py310h4426083_0 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + jsonpointer 2.4 py310hff52083_3 conda-forge 16kB -2023-11-07T14:44:08Z #11 455.2 + rpds-py 0.12.0 py310hcb5633a_0 conda-forge 986kB -2023-11-07T14:44:08Z #11 455.2 + debugpy 1.8.0 py310hc6cd4ac_1 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + loguru 0.7.2 py310hff52083_1 conda-forge 99kB -2023-11-07T14:44:08Z #11 455.2 + wrapt 1.15.0 py310h2372a71_1 conda-forge 54kB -2023-11-07T14:44:08Z #11 455.2 + ansi2html 1.8.0 py310hff52083_2 conda-forge 42kB -2023-11-07T14:44:08Z #11 455.2 + xeus 3.1.3 h06414e2_0 conda-forge 343kB -2023-11-07T14:44:08Z #11 455.2 + greenlet 3.0.1 py310hc6cd4ac_0 conda-forge 206kB -2023-11-07T14:44:08Z #11 455.2 + pywavelets 1.4.1 py310h1f7b6fc_1 conda-forge 4MB -2023-11-07T14:44:08Z #11 455.2 + ruamel.yaml.clib 0.2.7 py310h2372a71_2 conda-forge 135kB -2023-11-07T14:44:08Z #11 455.2 + libglu 9.0.0 he1b5a44_1001 conda-forge 423kB -2023-11-07T14:44:08Z #11 455.2 + aom 3.5.0 h27087fc_0 conda-forge 3MB -2023-11-07T14:44:08Z #11 455.2 + dav1d 1.2.1 hd590300_0 conda-forge 760kB -2023-11-07T14:44:08Z #11 455.2 + zfp 1.0.0 h59595ed_4 conda-forge 278kB -2023-11-07T14:44:08Z #11 455.2 + zlib-ng 2.0.7 h0b41bf4_0 conda-forge 95kB -2023-11-07T14:44:08Z #11 455.2 + charls 2.4.2 h59595ed_0 conda-forge 150kB -2023-11-07T14:44:08Z #11 455.2 + libtasn1 4.19.0 h166bdaf_0 conda-forge 117kB -2023-11-07T14:44:08Z #11 455.2 + nettle 3.8.1 hc379101_1 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + lazy-object-proxy 1.9.0 py310h2372a71_1 conda-forge 34kB -2023-11-07T14:44:08Z #11 455.2 + frozenlist 1.4.0 py310h2372a71_1 conda-forge 54kB -2023-11-07T14:44:08Z #11 455.2 + multidict 6.0.4 py310h2372a71_1 conda-forge 57kB -2023-11-07T14:44:08Z #11 455.2 + xorg-util-macros 1.19.3 h7f98852_0 conda-forge 52kB -2023-11-07T14:44:08Z #11 455.2 + ujson 5.8.0 py310hc6cd4ac_0 conda-forge 52kB -2023-11-07T14:44:08Z #11 455.2 + grpcio 1.56.2 py310h1b8f574_1 conda-forge 765kB -2023-11-07T14:44:08Z #11 455.2 + gmp 6.2.1 h58526e2_0 conda-forge 826kB -2023-11-07T14:44:08Z #11 455.2 + libuv 1.44.2 hd590300_1 conda-forge 824kB -2023-11-07T14:44:08Z #11 455.2 + xorg-glproto 1.4.17 h7f98852_1002 conda-forge 21kB -2023-11-07T14:44:08Z #11 455.2 + alsa-lib 1.2.8 h166bdaf_0 conda-forge 592kB -2023-11-07T14:44:08Z #11 455.2 + libcups 2.3.3 h36d4200_3 conda-forge 5MB -2023-11-07T14:44:08Z #11 455.2 + xcb-util-renderutil 0.3.9 h166bdaf_0 conda-forge 16kB -2023-11-07T14:44:08Z #11 455.2 + dbus 1.13.6 h5008d03_3 conda-forge 619kB -2023-11-07T14:44:08Z #11 455.2 + libtool 2.4.7 h27087fc_0 conda-forge 412kB -2023-11-07T14:44:08Z #11 455.2 + glib-tools 2.78.1 hfc55251_0 conda-forge 112kB -2023-11-07T14:44:08Z #11 455.2 + mysql-common 8.0.33 hf1915f5_6 conda-forge 753kB -2023-11-07T14:44:08Z #11 455.2 + fftw 3.3.10 nompi_hc118613_108 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + gstreamer-orc 0.4.34 hd590300_0 conda-forge 259kB -2023-11-07T14:44:08Z #11 455.2 + xkeyboard-config 2.38 h0b41bf4_0 conda-forge 882kB -2023-11-07T14:44:08Z #11 455.2 + libgpg-error 1.47 h71f35ed_0 conda-forge 261kB -2023-11-07T14:44:08Z #11 455.2 + lame 3.100 h166bdaf_1003 conda-forge 508kB -2023-11-07T14:44:08Z #11 455.2 + libogg 1.3.4 h7f98852_1 conda-forge 211kB -2023-11-07T14:44:08Z #11 455.2 + libopus 1.3.1 h7f98852_1 conda-forge 261kB -2023-11-07T14:44:08Z #11 455.2 + mpg123 1.32.3 h59595ed_0 conda-forge 492kB -2023-11-07T14:44:08Z #11 455.2 + libllvm15 15.0.7 hadd5161_1 conda-forge 33MB -2023-11-07T14:44:08Z #11 455.2 + attr 2.5.1 h166bdaf_1 conda-forge 71kB -2023-11-07T14:44:08Z #11 455.2 + libsodium 1.0.18 h36c2ea0_1 conda-forge 375kB -2023-11-07T14:44:08Z #11 455.2 + xcb-util 0.4.0 h516909a_0 conda-forge 20kB -2023-11-07T14:44:08Z #11 455.2 + xcb-util-keysyms 0.4.0 h516909a_0 conda-forge 12kB -2023-11-07T14:44:08Z #11 455.2 + xcb-util-wm 0.4.1 h516909a_0 conda-forge 56kB -2023-11-07T14:44:08Z #11 455.2 + xorg-xf86vidmodeproto 2.3.1 h7f98852_1002 conda-forge 24kB -2023-11-07T14:44:08Z #11 455.2 + lzo 2.10 h516909a_1000 conda-forge Cached -2023-11-07T14:44:08Z #11 455.2 + libdb 6.2.32 h9c3ff4c_0 conda-forge 24MB -2023-11-07T14:44:08Z #11 455.2 + brunsli 0.1 h9c3ff4c_0 conda-forge 205kB -2023-11-07T14:44:08Z #11 455.2 + jxrlib 1.1 h7f98852_2 conda-forge 241kB -2023-11-07T14:44:08Z #11 455.2 + libzopfli 1.0.3 h9c3ff4c_0 conda-forge 168kB -2023-11-07T14:44:08Z #11 455.2 + graphite2 1.3.13 h58526e2_1001 conda-forge 105kB -2023-11-07T14:44:08Z #11 455.2 + xorg-randrproto 1.5.0 h7f98852_1001 conda-forge 33kB -2023-11-07T14:44:08Z #11 455.2 + xorg-inputproto 2.3.2 h7f98852_1002 conda-forge 20kB -2023-11-07T14:44:08Z #11 455.2 + xorg-fixesproto 5.0 h7f98852_1002 conda-forge 9kB -2023-11-07T14:44:08Z #11 455.2 + xorg-damageproto 1.2.1 h7f98852_1002 conda-forge 25kB -2023-11-07T14:44:08Z #11 455.2 + libunistring 0.9.10 h7f98852_0 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + coverage 7.3.2 py310h2372a71_0 conda-forge 281kB -2023-11-07T14:44:08Z #11 455.2 + trio 0.23.1 py310hff52083_1 conda-forge 640kB -2023-11-07T14:44:08Z #11 455.2 + cffi 1.16.0 py310h2fee648_0 conda-forge 241kB -2023-11-07T14:44:08Z #11 455.2 + cartopy 0.22.0 py310hcc13569_1 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + sip 6.7.12 py310hc6cd4ac_0 conda-forge 494kB -2023-11-07T14:44:08Z #11 455.2 + h5py 3.8.0 nompi_py310h0311031_100 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + libdrm 2.4.114 h166bdaf_0 conda-forge 305kB -2023-11-07T14:44:08Z #11 455.2 + libcf 1.0.3 py310hbc577d2_115 conda-forge 263kB -2023-11-07T14:44:08Z #11 455.2 + sqlalchemy 2.0.23 py310h2372a71_0 conda-forge 3MB -2023-11-07T14:44:08Z #11 455.2 + ruamel.yaml 0.18.5 py310h2372a71_0 conda-forge 202kB -2023-11-07T14:44:08Z #11 455.2 + libavif 0.11.1 h8182462_2 conda-forge 102kB -2023-11-07T14:44:08Z #11 455.2 + c-blosc2 2.11.1 hb4ffafa_0 conda-forge 332kB -2023-11-07T14:44:08Z #11 455.2 + p11-kit 0.24.1 hc5aa10d_0 conda-forge 5MB -2023-11-07T14:44:08Z #11 455.2 + yarl 1.9.2 py310h2372a71_1 conda-forge 98kB -2023-11-07T14:44:08Z #11 455.2 + pandoc 3.1.3 h32600fe_0 conda-forge 29MB -2023-11-07T14:44:08Z #11 455.2 + nodejs 18.15.0 h8d033a5_0 conda-forge 15MB -2023-11-07T14:44:08Z #11 455.2 + glib 2.78.1 hfc55251_0 conda-forge 489kB -2023-11-07T14:44:08Z #11 455.2 + mysql-libs 8.0.33 hca2cd23_6 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + libxkbcommon 1.5.0 h79f4944_1 conda-forge 563kB -2023-11-07T14:44:08Z #11 455.2 + libgcrypt 1.10.2 hd590300_0 conda-forge 639kB -2023-11-07T14:44:08Z #11 455.2 + libvorbis 1.3.7 h9c3ff4c_0 conda-forge 286kB -2023-11-07T14:44:08Z #11 455.2 + libflac 1.4.3 h59595ed_0 conda-forge 394kB -2023-11-07T14:44:08Z #11 455.2 + libclang13 15.0.7 default_h9986a30_3 conda-forge 10MB -2023-11-07T14:44:08Z #11 455.2 + libcap 2.67 he9d0100_0 conda-forge 99kB -2023-11-07T14:44:08Z #11 455.2 + zeromq 4.3.5 h59595ed_0 conda-forge 343kB -2023-11-07T14:44:08Z #11 455.2 + xcb-util-image 0.4.0 h166bdaf_0 conda-forge 24kB -2023-11-07T14:44:08Z #11 455.2 + libarchive 3.6.2 h3d51595_0 conda-forge 836kB -2023-11-07T14:44:08Z #11 455.2 + jack 1.9.22 h11f4161_0 conda-forge 464kB -2023-11-07T14:44:08Z #11 455.2 + harfbuzz 6.0.0 h8e241bc_0 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + xorg-libxrandr 1.5.2 h7f98852_1 conda-forge 30kB -2023-11-07T14:44:08Z #11 455.2 + xorg-libxfixes 5.0.3 h7f98852_1004 conda-forge 18kB -2023-11-07T14:44:08Z #11 455.2 + libidn2 2.3.4 h166bdaf_0 conda-forge 160kB -2023-11-07T14:44:08Z #11 455.2 + google-crc32c 1.1.2 py310hc5c09a0_5 conda-forge 24kB -2023-11-07T14:44:08Z #11 455.2 + argon2-cffi-bindings 21.2.0 py310h2372a71_4 conda-forge 34kB -2023-11-07T14:44:08Z #11 455.2 + ukkonen 1.0.1 py310hd41b1e2_4 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + pynacl 1.5.0 py310h2372a71_3 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + cryptography 41.0.5 py310h75e40e8_0 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + pyqt5-sip 12.12.2 py310hc6cd4ac_5 conda-forge 85kB -2023-11-07T14:44:08Z #11 455.2 + imagecodecs 2023.1.23 py310ha3ed6a1_0 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + configurable-http-proxy 4.5.4 he2f69ee_2 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + gstreamer 1.22.0 h25f0c4b_2 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + libsndfile 1.2.2 hc60ed4a_1 conda-forge 354kB -2023-11-07T14:44:08Z #11 455.2 + libclang 15.0.7 default_h7634d5b_3 conda-forge 133kB -2023-11-07T14:44:08Z #11 455.2 + libudev1 253 h0b41bf4_1 conda-forge 119kB -2023-11-07T14:44:08Z #11 455.2 + libsystemd0 253 h8c4010b_1 conda-forge 381kB -2023-11-07T14:44:08Z #11 455.2 + xeus-zmq 1.1.1 h6b5a882_1 conda-forge 342kB -2023-11-07T14:44:08Z #11 455.2 + pyzmq 24.0.1 py310h330234f_1 conda-forge 518kB -2023-11-07T14:44:08Z #11 455.2 + xorg-libxi 1.7.10 h7f98852_0 conda-forge 47kB -2023-11-07T14:44:08Z #11 455.2 + xorg-libxdamage 1.1.5 h7f98852_1 conda-forge 12kB -2023-11-07T14:44:08Z #11 455.2 + gnutls 3.7.8 hf3e180e_0 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + wget 1.20.3 ha35d2d1_1 conda-forge 835kB -2023-11-07T14:44:08Z #11 455.2 + gst-plugins-base 1.22.0 h4243ec0_2 conda-forge 3MB -2023-11-07T14:44:08Z #11 455.2 + pulseaudio-client 16.1 h5195f5e_3 conda-forge 752kB -2023-11-07T14:44:08Z #11 455.2 + xeus-python 0.15.10 py310hd41b1e2_1 conda-forge 777kB -2023-11-07T14:44:08Z #11 455.2 + freeglut 3.2.2 h9c3ff4c_1 conda-forge 166kB -2023-11-07T14:44:08Z #11 455.2 + libmicrohttpd 0.9.77 h97afed2_0 conda-forge 218kB -2023-11-07T14:44:08Z #11 455.2 + pulseaudio-daemon 16.1 ha8d29e2_3 conda-forge 849kB -2023-11-07T14:44:08Z #11 455.2 + jasper 2.0.33 h0ff4b12_1 conda-forge 726kB -2023-11-07T14:44:08Z #11 455.2 + elfutils 0.189 hde5d1a3_0 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + pulseaudio 16.1 hcb278e6_3 conda-forge 17kB -2023-11-07T14:44:08Z #11 455.2 + g2clib 1.6.3 hbecde78_1 conda-forge 57kB -2023-11-07T14:44:08Z #11 455.2 + eccodes 2.28.0 h7513371_1 conda-forge 4MB -2023-11-07T14:44:08Z #11 455.2 + mesalib 23.0.2 h3855f93_0 conda-forge 4MB -2023-11-07T14:44:08Z #11 455.2 + qt-main 5.15.8 h5d23da1_6 conda-forge 52MB -2023-11-07T14:44:08Z #11 455.2 + libdrs 3.1.2 hf593df3_118 conda-forge 565kB -2023-11-07T14:44:08Z #11 455.2 + python-eccodes 1.5.1 py310h0a54255_0 conda-forge 89kB -2023-11-07T14:44:08Z #11 455.2 + pyqt 5.15.9 py310h04931ad_5 conda-forge 5MB -2023-11-07T14:44:08Z #11 455.2 + libcdms 3.1.2 hf94f14b_119 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 + matplotlib 3.8.1 py310hff52083_0 conda-forge 8kB -2023-11-07T14:44:08Z #11 455.2 + libdrs_f 3.1.2 h7e76ec7_114 conda-forge 549kB -2023-11-07T14:44:08Z #11 455.2 + zarr 2.16.1 pyhd8ed1ab_0 conda-forge 158kB -2023-11-07T14:44:08Z #11 455.2 + googleapis-common-protos 1.61.0 pyhd8ed1ab_0 conda-forge 123kB -2023-11-07T14:44:08Z #11 455.2 + siphon 0.9 pyhd8ed1ab_2 conda-forge 56kB -2023-11-07T14:44:08Z #11 455.2 + ypy-websocket 0.8.2 pyhd8ed1ab_0 conda-forge 17kB -2023-11-07T14:44:08Z #11 455.2 + jupyter_ydoc 0.2.4 pyhd8ed1ab_0 conda-forge 80kB -2023-11-07T14:44:08Z #11 455.2 + referencing 0.30.2 pyhd8ed1ab_0 conda-forge 38kB -2023-11-07T14:44:08Z #11 455.2 + clisops 0.11.0 pyh1a96a4e_0 conda-forge 11MB -2023-11-07T14:44:08Z #11 455.2 + birdy 0.8.4 pyh1a96a4e_0 conda-forge 48kB -2023-11-07T14:44:08Z #11 455.2 + dash 2.14.1 pyhd8ed1ab_0 conda-forge 7MB -2023-11-07T14:44:08Z #11 455.2 + aiosignal 1.3.1 pyhd8ed1ab_0 conda-forge 13kB -2023-11-07T14:44:08Z #11 455.2 + requests-cache 1.1.0 pyhd8ed1ab_0 conda-forge 50kB -2023-11-07T14:44:08Z #11 455.2 + trio-websocket 0.11.1 pyhd8ed1ab_0 conda-forge 31kB -2023-11-07T14:44:08Z #11 455.2 + geoviews-core 1.11.0 pyha770c72_0 conda-forge 376kB -2023-11-07T14:44:08Z #11 455.2 + h5netcdf 1.2.0 pyhd8ed1ab_0 conda-forge 42kB -2023-11-07T14:44:08Z #11 455.2 + alembic 1.12.1 pyhd8ed1ab_0 conda-forge 155kB -2023-11-07T14:44:08Z #11 455.2 + google-resumable-media 2.6.0 pyhd8ed1ab_0 conda-forge 46kB -2023-11-07T14:44:08Z #11 455.2 + argon2-cffi 23.1.0 pyhd8ed1ab_0 conda-forge 19kB -2023-11-07T14:44:08Z #11 455.2 + identify 2.5.31 pyhd8ed1ab_0 conda-forge 78kB -2023-11-07T14:44:08Z #11 455.2 + pyopenssl 23.3.0 pyhd8ed1ab_0 conda-forge 127kB -2023-11-07T14:44:08Z #11 455.2 + oauthlib 3.2.2 pyhd8ed1ab_0 conda-forge 92kB -2023-11-07T14:44:08Z #11 455.2 + paramiko 3.3.1 pyhd8ed1ab_0 conda-forge 159kB -2023-11-07T14:44:08Z #11 455.2 + tifffile 2023.8.12 pyhd8ed1ab_0 conda-forge 175kB -2023-11-07T14:44:08Z #11 455.2 + jupyter_client 7.4.9 pyhd8ed1ab_0 conda-forge 99kB -2023-11-07T14:44:08Z #11 455.2 + cfgrib 0.9.10.4 pyhd8ed1ab_0 conda-forge 42kB -2023-11-07T14:44:08Z #11 455.2 + intake-xarray 0.7.0 pyhd8ed1ab_0 conda-forge 28kB -2023-11-07T14:44:08Z #11 455.2 + intake-esm 2023.6.14 pyhd8ed1ab_0 conda-forge 31kB -2023-11-07T14:44:08Z #11 455.2 + jsonschema-specifications 2023.7.1 pyhd8ed1ab_0 conda-forge 15kB -2023-11-07T14:44:08Z #11 455.2 + selenium 4.15.1 pyhd8ed1ab_0 conda-forge 292kB -2023-11-07T14:44:08Z #11 455.2 + geoviews 1.11.0 pyhd8ed1ab_0 conda-forge 8kB -2023-11-07T14:44:08Z #11 455.2 + pre-commit 3.5.0 pyha770c72_0 conda-forge 179kB -2023-11-07T14:44:08Z #11 455.2 + myproxyclient 2.1.0 pyhd8ed1ab_2 conda-forge 27kB -2023-11-07T14:44:08Z #11 455.2 + certipy 0.1.3 py_0 conda-forge 17kB -2023-11-07T14:44:08Z #11 455.2 + requests-oauthlib 1.3.1 pyhd8ed1ab_0 conda-forge 22kB -2023-11-07T14:44:08Z #11 455.2 + scp 0.14.5 pyhd8ed1ab_0 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + ipykernel 6.26.0 pyhf8b6a83_0 conda-forge 116kB -2023-11-07T14:44:08Z #11 455.2 + jsonschema 4.19.2 pyhd8ed1ab_0 conda-forge 72kB -2023-11-07T14:44:08Z #11 455.2 + esgf-pyclient 0.3.1 pyh1a96a4e_2 conda-forge 23kB -2023-11-07T14:44:08Z #11 455.2 + qtconsole-base 5.5.0 pyha770c72_0 conda-forge 100kB -2023-11-07T14:44:08Z #11 455.2 + jupyter_console 6.6.3 pyhd8ed1ab_0 conda-forge 26kB -2023-11-07T14:44:08Z #11 455.2 + pydeck 0.8.0 pyhd8ed1ab_0 conda-forge 4MB -2023-11-07T14:44:08Z #11 455.2 + jupyter-dash 0.4.2 pyhd8ed1ab_1 conda-forge 21kB -2023-11-07T14:44:08Z #11 455.2 + jsonschema-with-format-nongpl 4.19.2 pyhd8ed1ab_0 conda-forge 7kB -2023-11-07T14:44:08Z #11 455.2 + nbformat 5.9.2 pyhd8ed1ab_0 conda-forge 100kB -2023-11-07T14:44:08Z #11 455.2 + altair 5.1.2 pyhd8ed1ab_0 conda-forge 411kB -2023-11-07T14:44:08Z #11 455.2 + jupyter_telemetry 0.1.0 pyhd8ed1ab_1 conda-forge 10kB -2023-11-07T14:44:08Z #11 455.2 + jupyter_events 0.9.0 pyhd8ed1ab_0 conda-forge 21kB -2023-11-07T14:44:08Z #11 455.2 + cdat_info 8.2.1 pyhd8ed1ab_2 conda-forge 16kB -2023-11-07T14:44:08Z #11 455.2 + nbclient 0.7.4 pyhd8ed1ab_0 conda-forge 65kB -2023-11-07T14:44:08Z #11 455.2 + jupytext 1.15.2 pyh5da7574_0 conda-forge 186kB -2023-11-07T14:44:08Z #11 455.2 + nbval 0.10.0 pyhd8ed1ab_0 conda-forge 27kB -2023-11-07T14:44:08Z #11 455.2 + streamlit 1.28.1 pyhd8ed1ab_0 conda-forge 7MB -2023-11-07T14:44:08Z #11 455.2 + jupyterhub-base 4.0.2 pyh31011fe_0 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + nbconvert-core 7.11.0 pyhd8ed1ab_0 conda-forge 188kB -2023-11-07T14:44:08Z #11 455.2 + jupyterhub 4.0.2 pyh31011fe_0 conda-forge 8kB -2023-11-07T14:44:08Z #11 455.2 + jupyter_server 2.10.0 pyhd8ed1ab_0 conda-forge 317kB -2023-11-07T14:44:08Z #11 455.2 + nbconvert-pandoc 7.11.0 pyhd8ed1ab_0 conda-forge 7kB -2023-11-07T14:44:08Z #11 455.2 + jupyter-server-mathjax 0.2.6 pyh5bfe37b_1 conda-forge 2MB -2023-11-07T14:44:08Z #11 455.2 + jupyter_server_fileid 0.9.0 pyhd8ed1ab_0 conda-forge 19kB -2023-11-07T14:44:08Z #11 455.2 + notebook-shim 0.2.3 pyhd8ed1ab_0 conda-forge 17kB -2023-11-07T14:44:08Z #11 455.2 + jupyterlab_server 2.25.0 pyhd8ed1ab_0 conda-forge 48kB -2023-11-07T14:44:08Z #11 455.2 + jupyter-resource-usage 0.7.1 pyhd8ed1ab_0 conda-forge 34kB -2023-11-07T14:44:08Z #11 455.2 + jupyter-archive 3.4.0 pyhd8ed1ab_0 conda-forge 29kB -2023-11-07T14:44:08Z #11 455.2 + nbconvert 7.11.0 pyhd8ed1ab_0 conda-forge 8kB -2023-11-07T14:44:08Z #11 455.2 + nbdime 3.2.1 pyhd8ed1ab_0 conda-forge 4MB -2023-11-07T14:44:08Z #11 455.2 + jupyter_server_ydoc 0.8.0 pyhd8ed1ab_0 conda-forge 15kB -2023-11-07T14:44:08Z #11 455.2 + mamba_gator 5.2.1 pyhd8ed1ab_0 conda-forge 4MB -2023-11-07T14:44:08Z #11 455.2 + nbclassic 1.0.0 pyhb4ecaf3_1 conda-forge 6MB -2023-11-07T14:44:08Z #11 455.2 + voila 0.5.5 pyhd8ed1ab_0 conda-forge 3MB -2023-11-07T14:44:08Z #11 455.2 + notebook 6.5.6 pyha770c72_0 conda-forge 307kB -2023-11-07T14:44:08Z #11 455.2 + nbresuse 0.4.0 pyhd8ed1ab_0 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + jupyterlab 3.6.6 pyhd8ed1ab_0 conda-forge 5MB -2023-11-07T14:44:08Z #11 455.2 + jupyter 1.0.0 pyhd8ed1ab_10 conda-forge 9kB -2023-11-07T14:44:08Z #11 455.2 + jupyterlab-topbar 0.6.1 pyhd8ed1ab_2 conda-forge 21kB -2023-11-07T14:44:08Z #11 455.2 + jupyterlab-git 0.44.0 pyhd8ed1ab_0 conda-forge 543kB -2023-11-07T14:44:08Z #11 455.2 + jupyterlab-system-monitor 0.8.0 pyhd8ed1ab_2 conda-forge 31kB -2023-11-07T14:44:08Z #11 455.2 + aiohttp 3.8.6 py310h2372a71_1 conda-forge 650kB -2023-11-07T14:44:08Z #11 455.2 + scikit-image 0.22.0 py310hcc13569_2 conda-forge 11MB -2023-11-07T14:44:08Z #11 455.2 + cdtime 3.1.4 py310h1a17f1e_7 conda-forge 69kB -2023-11-07T14:44:08Z #11 455.2 + cdms2 3.1.5 py310h5f4584e_15 conda-forge 645kB -2023-11-07T14:44:08Z #11 455.2 + esgf-compute-api 2.3.9 0_h1234567_ cdat 40kB -2023-11-07T14:44:08Z #11 455.2 + google-auth 2.23.4 pyhca7485f_0 conda-forge 102kB -2023-11-07T14:44:08Z #11 455.2 + aiobotocore 2.7.0 pyhd8ed1ab_1 conda-forge 64kB -2023-11-07T14:44:08Z #11 455.2 + jupyter-server-proxy 4.1.0 pyhd8ed1ab_0 conda-forge 34kB -2023-11-07T14:44:08Z #11 455.2 + intake-thredds 2022.8.19 pyhd8ed1ab_0 conda-forge 14kB -2023-11-07T14:44:08Z #11 455.2 + google-api-core 2.12.0 pyhd8ed1ab_0 conda-forge 78kB -2023-11-07T14:44:08Z #11 455.2 + google-auth-oauthlib 1.1.0 pyhd8ed1ab_0 conda-forge 21kB -2023-11-07T14:44:08Z #11 455.2 + s3fs 2023.10.0 pyhd8ed1ab_0 conda-forge 32kB -2023-11-07T14:44:08Z #11 455.2 + dask-labextension 6.2.0 pyhd8ed1ab_0 conda-forge 42kB -2023-11-07T14:44:08Z #11 455.2 + google-cloud-core 2.3.3 pyhd8ed1ab_0 conda-forge 29kB -2023-11-07T14:44:08Z #11 455.2 + google-cloud-storage 2.13.0 pyhca7485f_0 conda-forge 87kB -2023-11-07T14:44:08Z #11 455.2 + gcsfs 2023.10.0 pyhd8ed1ab_0 conda-forge 36kB -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 Change: -2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 - libthrift 0.18.1 h8fd135c_2 conda-forge Cached -2023-11-07T14:44:08Z #11 455.2 + libthrift 0.18.1 h5e4af38_0 conda-forge 4MB -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 Downgrade: -2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 - urllib3 2.0.7 pyhd8ed1ab_0 conda-forge Cached -2023-11-07T14:44:08Z #11 455.2 + urllib3 1.26.18 pyhd8ed1ab_0 conda-forge 115kB -2023-11-07T14:44:08Z #11 455.2 - libevent 2.1.12 hf998b51_1 conda-forge Cached -2023-11-07T14:44:08Z #11 455.2 + libevent 2.1.10 h28343ad_4 conda-forge 1MB -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 Summary: -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 Install: 382 packages -2023-11-07T14:44:08Z #11 455.2 Change: 1 packages -2023-11-07T14:44:08Z #11 455.2 Downgrade: 2 packages -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 Total download: 452MB -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 ───────────────────────────────────────────────────────────────────────────────────────────────── -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:44:08Z #11 455.2 -2023-11-07T14:46:29Z #11 596.3 -2023-11-07T14:46:29Z #11 596.3 Downloading and Extracting Packages: ...working... done -2023-11-07T14:46:36Z #11 596.3 Preparing transaction: ...working... done -2023-11-07T14:46:53Z #11 602.9 Verifying transaction: ...working... done -2023-11-07T14:47:39Z #11 620.4 Executing transaction: ...working... done -2023-11-07T14:47:54Z #11 666.2 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2023-11-07T14:47:54Z #11 681.5 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.yuzrlpy5.requirements.txt', '--exists-action=b'] -2023-11-07T14:47:54Z #11 681.5 Pip subprocess output: -2023-11-07T14:47:54Z #11 681.5 Collecting xncml (from -r /condaenv.yuzrlpy5.requirements.txt (line 1)) -2023-11-07T14:47:54Z #11 681.5 Downloading xncml-0.3-py2.py3-none-any.whl.metadata (1.1 kB) -2023-11-07T14:47:54Z #11 681.5 Collecting hsclient (from -r /condaenv.yuzrlpy5.requirements.txt (line 2)) -2023-11-07T14:47:54Z #11 681.5 Downloading hsclient-0.3.4-py3-none-any.whl.metadata (4.7 kB) -2023-11-07T14:47:54Z #11 681.5 Collecting pixiedust (from -r /condaenv.yuzrlpy5.requirements.txt (line 3)) -2023-11-07T14:47:54Z #11 681.5 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 9.6 MB/s eta 0:00:00 -2023-11-07T14:47:54Z #11 681.5 Preparing metadata (setup.py): started -2023-11-07T14:47:54Z #11 681.5 Preparing metadata (setup.py): finished with status 'done' -2023-11-07T14:47:54Z #11 681.5 Collecting ipython_blocking (from -r /condaenv.yuzrlpy5.requirements.txt (line 4)) -2023-11-07T14:47:54Z #11 681.5 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2023-11-07T14:47:54Z #11 681.5 Collecting jupyternotify (from -r /condaenv.yuzrlpy5.requirements.txt (line 5)) -2023-11-07T14:47:54Z #11 681.5 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2023-11-07T14:47:54Z #11 681.5 Preparing metadata (setup.py): started -2023-11-07T14:47:54Z #11 681.5 Preparing metadata (setup.py): finished with status 'done' -2023-11-07T14:47:54Z #11 681.5 Collecting jupyterlab-logout (from -r /condaenv.yuzrlpy5.requirements.txt (line 6)) -2023-11-07T14:47:54Z #11 681.5 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2023-11-07T14:47:54Z #11 681.5 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.yuzrlpy5.requirements.txt (line 7)) -2023-11-07T14:47:54Z #11 681.5 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 26.2 MB/s eta 0:00:00 -2023-11-07T14:47:54Z #11 681.5 Collecting pytest-tornasync (from -r /condaenv.yuzrlpy5.requirements.txt (line 8)) -2023-11-07T14:47:54Z #11 681.5 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2023-11-07T14:47:54Z #11 681.5 Collecting xmltodict (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) -2023-11-07T14:47:54Z #11 681.5 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2023-11-07T14:47:54Z #11 681.5 Collecting xsdata (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) -2023-11-07T14:47:54Z #11 681.5 Downloading xsdata-23.8-py3-none-any.whl.metadata (5.8 kB) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (2023.8.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.6.3) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.6.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (2023.10.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (5.9.5) -2023-11-07T14:47:54Z #11 681.5 Collecting hsmodels>=0.5.5 (from hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) -2023-11-07T14:47:54Z #11 681.5 Downloading hsmodels-0.5.8-py3-none-any.whl.metadata (725 bytes) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (2.31.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (1.3.1) -2023-11-07T14:47:54Z #11 681.5 Collecting geojson (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) -2023-11-07T14:47:54Z #11 681.5 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2023-11-07T14:47:54Z #11 681.5 Collecting astunparse (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) -2023-11-07T14:47:54Z #11 681.5 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (3.5.1) -2023-11-07T14:47:54Z #11 681.5 Collecting colour (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) -2023-11-07T14:47:54Z #11 681.5 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (3.8.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (2.1.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (8.17.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (8.1.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.7.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (1.0.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.6.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (3.6.6) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (7.4.3) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: tornado>=5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (6.3.3) -2023-11-07T14:47:54Z #11 681.5 Collecting rdflib<6.0.0 (from hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) -2023-11-07T14:47:54Z #11 681.5 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 18.2 MB/s eta 0:00:00 -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pydantic<2.0,>=1.8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (1.10.13) -2023-11-07T14:47:54Z #11 681.5 Collecting email-validator (from hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) -2023-11-07T14:47:54Z #11 681.5 Downloading email_validator-2.1.0.post1-py3-none-any.whl.metadata (25 kB) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (23.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (5.5.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.25.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.10.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.2.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.8.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.0.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (6.5.6) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (3.1.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.0.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (2.0.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pluggy<2.0,>=0.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (1.3.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.yuzrlpy5.requirements.txt (line 8)) (1.1.3) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (0.41.3) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (1.16.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: numpy>1.13.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cftime->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.24.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: click>=8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (8.1.7) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (3.0.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (2023.10.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.4.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pyyaml>=5.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (6.0.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (0.12.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (6.8.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (5.1.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.19.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.1.6) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: prompt-toolkit!=3.0.37,<3.1.0,>=3.0.30 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (3.0.39) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (2.16.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.6.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: traitlets>=5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (5.13.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (4.8.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.1.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: widgetsnbextension~=4.0.9 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (4.0.9) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab-widgets~=3.0.9 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (3.0.9) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (5.5.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (6.6.3) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (7.11.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (6.26.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (1.2.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (0.12.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (4.44.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (1.4.5) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pillow>=8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (9.4.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (3.1.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: python-dateutil>=2.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (2.8.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (7.4.9) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (5.9.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (2023.3.post1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->pixiedust->-r /condaenv.yuzrlpy5.requirements.txt (line 3)) (2023.3) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (3.3.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (3.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (1.26.18) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (2023.7.22) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) (3.2.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: typing-extensions in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xsdata->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (4.8.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (3.17.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.8.3) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.1.3) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (1.5.8) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (24.0.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: platformdirs>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-core->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (3.11.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (4.0.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (23.1.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-events>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.9.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.4.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (7.4.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.18.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.8.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.17.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.6.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.9.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.8.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.5.9) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.13.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.9.14) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (4.19.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (4.12.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (6.1.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (0.7.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (0.2.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (3.0.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (1.5.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (1.2.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (2.18.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.2.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.2.3) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.yuzrlpy5.requirements.txt (line 1)) (1.0.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.7.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit!=3.0.37,<3.1.0,>=3.0.30->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.2.9) -2023-11-07T14:47:54Z #11 681.5 Collecting isodate (from rdflib<6.0.0->hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) -2023-11-07T14:47:54Z #11 681.5 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.8 MB/s eta 0:00:00 -2023-11-07T14:47:54Z #11 681.5 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=0.5.5->hsclient->-r /condaenv.yuzrlpy5.requirements.txt (line 2)) -2023-11-07T14:47:54Z #11 681.5 Downloading dnspython-2.4.2-py3-none-any.whl.metadata (4.9 kB) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (1.8.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (2.4.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (2.0.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (2.4.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.yuzrlpy5.requirements.txt (line 4)) (0.2.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.3.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from bleach!=5.0.0->nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (0.5.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: attrs>=22.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (23.1.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2023.7.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.30.2) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.12.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.0.7) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.1.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.1.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (22.1.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (0.19.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (21.2.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.yuzrlpy5.requirements.txt (line 5)) (2.5) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.5.1) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (20.11.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.4) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.3.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.13) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: cffi>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi-bindings->argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.16.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.0.1->argon2-cffi-bindings->argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.21) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (1.3.0) -2023-11-07T14:47:54Z #11 681.5 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.6.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.yuzrlpy5.requirements.txt (line 6)) (2.8.19.14) -2023-11-07T14:47:54Z #11 681.5 Downloading xncml-0.3-py2.py3-none-any.whl (871 kB) -2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 871.1/871.1 kB 38.4 MB/s eta 0:00:00 -2023-11-07T14:47:54Z #11 681.5 Downloading hsclient-0.3.4-py3-none-any.whl (18 kB) -2023-11-07T14:47:54Z #11 681.5 Downloading hsmodels-0.5.8-py3-none-any.whl (33 kB) -2023-11-07T14:47:54Z #11 681.5 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2023-11-07T14:47:54Z #11 681.5 Downloading xsdata-23.8-py3-none-any.whl (193 kB) -2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 193.1/193.1 kB 15.8 MB/s eta 0:00:00 -2023-11-07T14:47:54Z #11 681.5 Downloading email_validator-2.1.0.post1-py3-none-any.whl (32 kB) -2023-11-07T14:47:54Z #11 681.5 Downloading dnspython-2.4.2-py3-none-any.whl (300 kB) -2023-11-07T14:47:54Z #11 681.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 300.4/300.4 kB 24.9 MB/s eta 0:00:00 -2023-11-07T14:47:54Z #11 681.5 Building wheels for collected packages: pixiedust, jupyternotify -2023-11-07T14:47:54Z #11 681.5 Building wheel for pixiedust (setup.py): started -2023-11-07T14:47:54Z #11 681.5 Building wheel for pixiedust (setup.py): finished with status 'done' -2023-11-07T14:47:54Z #11 681.5 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321785 sha256=4afa56cd414d8bc177e1bcf89f8b90540bdcf4cca11e7d9de95665d2e4463c72 -2023-11-07T14:47:54Z #11 681.5 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 -2023-11-07T14:47:54Z #11 681.5 Building wheel for jupyternotify (setup.py): started -2023-11-07T14:47:54Z #11 681.5 Building wheel for jupyternotify (setup.py): finished with status 'done' -2023-11-07T14:47:54Z #11 681.5 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=86719f36cece685178462e278fdf132bea4c7f60945f55d3ae142bd926a79a8a -2023-11-07T14:47:54Z #11 681.5 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 -2023-11-07T14:47:54Z #11 681.5 Successfully built pixiedust jupyternotify -2023-11-07T14:47:54Z #11 681.5 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, pixiedust, hsmodels, xncml, hsclient, ipython_blocking, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2023-11-07T14:47:54Z #11 681.5 Successfully installed astunparse-1.6.3 colour-0.1.5 dnspython-2.4.2 email-validator-2.1.0.post1 geojson-3.1.0 hsclient-0.3.4 hsmodels-0.5.8 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.3 xsdata-23.8 -2023-11-07T14:47:54Z #11 681.5 -2023-11-07T14:47:54Z #11 681.5 done -2023-11-07T14:47:54Z #11 681.5 # -2023-11-07T14:47:54Z #11 681.5 # To activate this environment, use -2023-11-07T14:47:54Z #11 681.5 # -2023-11-07T14:47:54Z #11 681.5 # $ conda activate birdy -2023-11-07T14:47:54Z #11 681.5 # -2023-11-07T14:47:54Z #11 681.5 # To deactivate an active environment, use -2023-11-07T14:47:54Z #11 681.5 # -2023-11-07T14:47:54Z #11 681.5 # $ conda deactivate -2023-11-07T14:47:54Z #11 681.5 -2023-11-07T14:48:18Z #11 705.1 Will remove 672 (962.1 MB) tarball(s). -2023-11-07T14:48:18Z #11 705.1 Will remove 1 index cache(s). -2023-11-07T14:48:18Z #11 705.1 Will remove 49 (98.7 MB) package(s). -2023-11-07T14:48:18Z #11 705.1 There are no tempfile(s) to remove. -2023-11-07T14:48:18Z #11 705.1 There are no logfile(s) to remove. -2023-11-07T14:48:19Z #11 DONE 705.8s -2023-11-07T14:48:19Z -2023-11-07T14:48:19Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2023-11-07T14:48:20Z #12 1.456 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2023-11-07T14:48:20Z #12 DONE 1.6s -2023-11-07T14:48:20Z -2023-11-07T14:48:20Z #13 [ 8/10] RUN jupyter lab build -2023-11-07T14:48:22Z #13 1.698 [LabBuildApp] JupyterLab 3.6.6 -2023-11-07T14:48:22Z #13 1.699 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2023-11-07T14:48:23Z #13 2.338 [LabBuildApp] Building jupyterlab assets (production, minimized) -2023-11-07T14:50:43Z #13 2.355 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ -2023-11-07T14:50:43Z #13 DONE 142.3s -2023-11-07T14:50:43Z -2023-11-07T14:50:43Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2023-11-07T14:50:43Z #14 0.724 Enabling: voila -2023-11-07T14:50:43Z #14 0.724 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2023-11-07T14:50:43Z #14 0.727 - Validating... -2023-11-07T14:50:44Z #14 1.556 voila 0.5.5 OK -2023-11-07T14:50:45Z #14 1.942 Enabling: panel.io.jupyter_server_extension -2023-11-07T14:50:45Z #14 1.942 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2023-11-07T14:50:45Z #14 1.945 - Validating... -2023-11-07T14:50:46Z #14 3.863 panel.io.jupyter_server_extension OK -2023-11-07T14:50:47Z #14 4.379 - Validating... -2023-11-07T14:50:48Z #14 5.272 dask_labextension 6.2.0 OK -2023-11-07T14:50:48Z #14 5.272 - Validating... -2023-11-07T14:50:48Z #14 5.272 jupyter_server_proxy OK -2023-11-07T14:50:48Z #14 5.273 - Validating... -2023-11-07T14:50:48Z #14 5.446 jupyter_resource_usage 0.7.1 OK -2023-11-07T14:50:48Z #14 5.446 - Validating... -2023-11-07T14:50:48Z #14 5.505  X is jupyter_server_ydoc importable? -2023-11-07T14:50:48Z #14 5.505 - Validating... -2023-11-07T14:50:48Z #14 5.571 jupyterlab 3.6.6 OK -2023-11-07T14:50:48Z #14 5.571 - Validating... -2023-11-07T14:50:48Z #14 5.604 jupyterlab_git 0.44.0 OK -2023-11-07T14:50:48Z #14 5.605 - Validating... -2023-11-07T14:50:48Z #14 5.684 jupytext 1.15.2 OK -2023-11-07T14:50:48Z #14 5.684 - Validating... -2023-11-07T14:50:48Z #14 5.689 mamba_gator 5.2.1 OK -2023-11-07T14:50:48Z #14 5.689 - Validating... -2023-11-07T14:50:48Z #14 5.689 nbdime 3.2.1 OK -2023-11-07T14:50:48Z #14 5.689 - Validating... -2023-11-07T14:50:49Z #14 6.839 panel.io.jupyter_server_extension OK -2023-11-07T14:50:49Z #14 6.839 - Validating... -2023-11-07T14:50:50Z #14 6.906 nbresuse OK -2023-11-07T14:50:50Z #14 6.906 - Validating... -2023-11-07T14:50:50Z #14 7.135 voila.server_extension OK -2023-11-07T14:50:50Z #14 7.135 - Validating... -2023-11-07T14:50:50Z #14 7.135 voila 0.5.5 OK -2023-11-07T14:50:50Z #14 7.136 config dir: /opt/conda/envs/birdy/etc/jupyter -2023-11-07T14:50:50Z #14 7.136 dask_labextension  enabled  -2023-11-07T14:50:50Z #14 7.136 jupyter_server_proxy  enabled  -2023-11-07T14:50:50Z #14 7.136 jupyter_resource_usage  enabled  -2023-11-07T14:50:50Z #14 7.136 jupyter_server_ydoc  enabled  -2023-11-07T14:50:50Z #14 7.136 jupyterlab  enabled  -2023-11-07T14:50:50Z #14 7.136 jupyterlab_git  enabled  -2023-11-07T14:50:50Z #14 7.136 jupytext  enabled  -2023-11-07T14:50:50Z #14 7.136 mamba_gator  enabled  -2023-11-07T14:50:50Z #14 7.136 nbdime  enabled  -2023-11-07T14:50:50Z #14 7.136 panel.io.jupyter_server_extension  enabled  -2023-11-07T14:50:50Z #14 7.136 nbresuse  enabled  -2023-11-07T14:50:50Z #14 7.136 voila.server_extension  enabled  -2023-11-07T14:50:50Z #14 7.136 voila  enabled  -2023-11-07T14:50:50Z #14 DONE 7.6s -2023-11-07T14:50:50Z -2023-11-07T14:50:50Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2023-11-07T14:50:51Z #15 0.340 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2023-11-07T14:50:51Z #15 0.355 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.110.133, 185.199.111.133, ... -2023-11-07T14:50:51Z #15 0.358 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2023-11-07T14:50:51Z #15 0.363 HTTP request sent, awaiting response... 200 OK -2023-11-07T14:50:51Z #15 0.477 Length: 9769 (9.5K) [text/plain] -2023-11-07T14:50:51Z #15 0.477 Saving to: ‘/usr/local/bin/start.sh’ -2023-11-07T14:50:51Z #15 0.478 -2023-11-07T14:50:51Z #15 0.478 0K ......... 100% 5.04M=0.002s -2023-11-07T14:50:51Z #15 0.479 -2023-11-07T14:50:51Z #15 0.479 2023-11-07 14:50:51 (5.04 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2023-11-07T14:50:51Z #15 0.479 -2023-11-07T14:50:51Z #15 0.488 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2023-11-07T14:50:51Z #15 0.511 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2023-11-07T14:50:51Z #15 0.517 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2023-11-07T14:50:51Z #15 0.523 HTTP request sent, awaiting response... 200 OK -2023-11-07T14:50:51Z #15 0.591 Length: 359 [text/plain] -2023-11-07T14:50:51Z #15 0.591 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2023-11-07T14:50:51Z #15 0.591 -2023-11-07T14:50:51Z #15 0.591 0K 100% 6.31M=0s -2023-11-07T14:50:51Z #15 0.592 -2023-11-07T14:50:51Z #15 0.592 2023-11-07 14:50:51 (6.31 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2023-11-07T14:50:51Z #15 0.592 -2023-11-07T14:50:51Z #15 0.598 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2023-11-07T14:50:51Z #15 0.624 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2023-11-07T14:50:51Z #15 0.625 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2023-11-07T14:50:51Z #15 0.631 HTTP request sent, awaiting response... 200 OK -2023-11-07T14:50:51Z #15 0.711 Length: 852 [text/plain] -2023-11-07T14:50:51Z #15 0.711 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2023-11-07T14:50:51Z #15 0.711 -2023-11-07T14:50:51Z #15 0.711 0K 100% 39.4M=0s -2023-11-07T14:50:51Z #15 0.712 -2023-11-07T14:50:51Z #15 0.713 2023-11-07 14:50:51 (39.4 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2023-11-07T14:50:51Z #15 0.713 -2023-11-07T14:50:51Z #15 0.718 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2023-11-07T14:50:51Z #15 0.741 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2023-11-07T14:50:51Z #15 0.742 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2023-11-07T14:50:51Z #15 0.749 HTTP request sent, awaiting response... 200 OK -2023-11-07T14:50:51Z #15 0.847 Length: 1034 (1.0K) [text/plain] -2023-11-07T14:50:51Z #15 0.847 Saving to: ‘/usr/local/bin/fix-permissions’ -2023-11-07T14:50:51Z #15 0.847 -2023-11-07T14:50:51Z #15 0.847 0K . 100% 4.23M=0s -2023-11-07T14:50:51Z #15 0.849 -2023-11-07T14:50:51Z #15 0.849 2023-11-07 14:50:51 (4.23 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2023-11-07T14:50:51Z #15 0.849 -2023-11-07T14:50:51Z #15 0.855 --2023-11-07 14:50:51-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2023-11-07T14:50:51Z #15 0.878 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2023-11-07T14:50:51Z #15 0.879 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2023-11-07T14:50:51Z #15 0.885 HTTP request sent, awaiting response... 200 OK -2023-11-07T14:50:51Z #15 0.967 Length: 1836 (1.8K) [text/plain] -2023-11-07T14:50:51Z #15 0.967 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2023-11-07T14:50:51Z #15 0.968 -2023-11-07T14:50:51Z #15 0.968 0K . 100% 9.71M=0s -2023-11-07T14:50:51Z #15 0.968 -2023-11-07T14:50:51Z #15 0.968 2023-11-07 14:50:51 (9.71 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2023-11-07T14:50:51Z #15 0.968 -2023-11-07T14:50:51Z #15 1.178 --2023-11-07 14:50:51-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2023-11-07T14:50:51Z #15 1.200 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.35, 3.162.103.63, 3.162.103.75, ... -2023-11-07T14:50:51Z #15 1.212 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.35|:443... connected. -2023-11-07T14:50:52Z #15 1.220 HTTP request sent, awaiting response... 200 OK -2023-11-07T14:50:52Z #15 1.253 Length: 132675270 (127M) [application/x-tar] -2023-11-07T14:50:52Z #15 1.253 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2023-11-07T14:50:52Z #15 1.254 -2023-11-07T14:50:52Z #15 1.254 0K .......... .......... .......... .......... .......... 0% 23.3M 5s -2023-11-07T14:50:52Z #15 1.255 50K .......... .......... .......... .......... .......... 0% 37.0M 4s -2023-11-07T14:50:52Z #15 1.257 100K .......... .......... .......... .......... .......... 0% 138M 3s -2023-11-07T14:50:52Z #15 1.257 150K .......... .......... .......... .......... .......... 0% 77.0M 3s -2023-11-07T14:50:52Z #15 1.257 200K .......... .......... .......... .......... .......... 0% 72.7M 3s -2023-11-07T14:50:52Z #15 1.258 250K .......... .......... .......... .......... .......... 0% 48.9M 3s -2023-11-07T14:50:52Z #15 1.259 300K .......... .......... .......... .......... .......... 0% 38.4M 3s -2023-11-07T14:50:52Z #15 1.261 350K .......... .......... .......... .......... .......... 0% 38.1M 3s -2023-11-07T14:50:52Z #15 1.262 400K .......... .......... .......... .......... .......... 0% 50.9M 3s -2023-11-07T14:50:52Z #15 1.263 450K .......... .......... .......... .......... .......... 0% 55.8M 3s -2023-11-07T14:50:52Z #15 1.264 500K .......... .......... .......... .......... .......... 0% 46.5M 3s -2023-11-07T14:50:52Z #15 1.265 550K .......... .......... .......... .......... .......... 0% 42.5M 3s -2023-11-07T14:50:52Z #15 1.266 600K .......... .......... .......... .......... .......... 0% 44.3M 3s -2023-11-07T14:50:52Z #15 1.267 650K .......... .......... .......... .......... .......... 0% 51.0M 3s -2023-11-07T14:50:52Z #15 1.268 700K .......... .......... .......... .......... .......... 0% 45.2M 3s -2023-11-07T14:50:52Z #15 1.269 750K .......... .......... .......... .......... .......... 0% 41.3M 3s -2023-11-07T14:50:52Z #15 1.270 800K .......... .......... .......... .......... .......... 0% 45.1M 3s -2023-11-07T14:50:52Z #15 1.271 850K .......... .......... .......... .......... .......... 0% 51.0M 3s -2023-11-07T14:50:52Z #15 1.272 900K .......... .......... .......... .......... .......... 0% 51.1M 3s -2023-11-07T14:50:52Z #15 1.273 950K .......... .......... .......... .......... .......... 0% 32.1M 3s -2023-11-07T14:50:52Z #15 1.275 1000K .......... .......... .......... .......... .......... 0% 93.1M 3s -2023-11-07T14:50:52Z #15 1.280 1050K .......... .......... .......... .......... .......... 0% 199M 3s -2023-11-07T14:50:52Z #15 1.280 1100K .......... .......... .......... .......... .......... 0% 202M 3s -2023-11-07T14:50:52Z #15 1.280 1150K .......... .......... .......... .......... .......... 0% 201M 2s -2023-11-07T14:50:52Z #15 1.280 1200K .......... .......... .......... .......... .......... 0% 235M 2s -2023-11-07T14:50:52Z #15 1.280 1250K .......... .......... .......... .......... .......... 1% 209M 2s -2023-11-07T14:50:52Z #15 1.280 1300K .......... .......... .......... .......... .......... 1% 174M 2s -2023-11-07T14:50:52Z #15 1.280 1350K .......... .......... .......... .......... .......... 1% 175M 2s -2023-11-07T14:50:52Z #15 1.280 1400K .......... .......... .......... .......... .......... 1% 183M 2s -2023-11-07T14:50:52Z #15 1.280 1450K .......... .......... .......... .......... .......... 1% 176M 2s -2023-11-07T14:50:52Z #15 1.280 1500K .......... .......... .......... .......... .......... 1% 187M 2s -2023-11-07T14:50:52Z #15 1.280 1550K .......... .......... .......... .......... .......... 1% 175M 2s -2023-11-07T14:50:52Z #15 1.280 1600K .......... .......... .......... .......... .......... 1% 184M 2s -2023-11-07T14:50:52Z #15 1.280 1650K .......... .......... .......... .......... .......... 1% 170M 2s -2023-11-07T14:50:52Z #15 1.280 1700K .......... .......... .......... .......... .......... 1% 162M 2s -2023-11-07T14:50:52Z #15 1.280 1750K .......... .......... .......... .......... .......... 1% 142M 2s -2023-11-07T14:50:52Z #15 1.280 1800K .......... .......... .......... .......... .......... 1% 145M 2s -2023-11-07T14:50:52Z #15 1.280 1850K .......... .......... .......... .......... .......... 1% 148M 2s -2023-11-07T14:50:52Z #15 1.280 1900K .......... .......... .......... .......... .......... 1% 140M 2s -2023-11-07T14:50:52Z #15 1.280 1950K .......... .......... .......... .......... .......... 1% 68.6M 2s -2023-11-07T14:50:52Z #15 1.281 2000K .......... .......... .......... .......... .......... 1% 22.1M 2s -2023-11-07T14:50:52Z #15 1.283 2050K .......... .......... .......... .......... .......... 1% 18.8M 2s -2023-11-07T14:50:52Z #15 1.286 2100K .......... .......... .......... .......... .......... 1% 32.9M 2s -2023-11-07T14:50:52Z #15 1.287 2150K .......... .......... .......... .......... .......... 1% 56.0M 2s -2023-11-07T14:50:52Z #15 1.288 2200K .......... .......... .......... .......... .......... 1% 34.2M 2s -2023-11-07T14:50:52Z #15 1.289 2250K .......... .......... .......... .......... .......... 1% 39.4M 2s -2023-11-07T14:50:52Z #15 1.291 2300K .......... .......... .......... .......... .......... 1% 112M 2s -2023-11-07T14:50:52Z #15 1.291 2350K .......... .......... .......... .......... .......... 1% 56.8M 2s -2023-11-07T14:50:52Z #15 1.292 2400K .......... .......... .......... .......... .......... 1% 129M 2s -2023-11-07T14:50:52Z #15 1.293 2450K .......... .......... .......... .......... .......... 1% 64.5M 2s -2023-11-07T14:50:52Z #15 1.293 2500K .......... .......... .......... .......... .......... 1% 53.2M 2s -2023-11-07T14:50:52Z #15 1.296 2550K .......... .......... .......... .......... .......... 2% 148M 2s -2023-11-07T14:50:52Z #15 1.296 2600K .......... .......... .......... .......... .......... 2% 128M 2s -2023-11-07T14:50:52Z #15 1.296 2650K .......... .......... .......... .......... .......... 2% 153M 2s -2023-11-07T14:50:52Z #15 1.296 2700K .......... .......... .......... .......... .......... 2% 150M 2s -2023-11-07T14:50:52Z #15 1.296 2750K .......... .......... .......... .......... .......... 2% 109M 2s -2023-11-07T14:50:52Z #15 1.296 2800K .......... .......... .......... .......... .......... 2% 142M 2s -2023-11-07T14:50:52Z #15 1.296 2850K .......... .......... .......... .......... .......... 2% 63.6M 2s -2023-11-07T14:50:52Z #15 1.297 2900K .......... .......... .......... .......... .......... 2% 32.1M 2s -2023-11-07T14:50:52Z #15 1.299 2950K .......... .......... .......... .......... .......... 2% 31.1M 2s -2023-11-07T14:50:52Z #15 1.300 3000K .......... .......... .......... .......... .......... 2% 34.0M 2s -2023-11-07T14:50:52Z #15 1.302 3050K .......... .......... .......... .......... .......... 2% 46.1M 2s -2023-11-07T14:50:52Z #15 1.303 3100K .......... .......... .......... .......... .......... 2% 81.5M 2s -2023-11-07T14:50:52Z #15 1.304 3150K .......... .......... .......... .......... .......... 2% 152M 2s -2023-11-07T14:50:52Z #15 1.304 3200K .......... .......... .......... .......... .......... 2% 65.5M 2s -2023-11-07T14:50:52Z #15 1.305 3250K .......... .......... .......... .......... .......... 2% 43.4M 2s -2023-11-07T14:50:52Z #15 1.305 3300K .......... .......... .......... .......... .......... 2% 51.7M 2s -2023-11-07T14:50:52Z #15 1.306 3350K .......... .......... .......... .......... .......... 2% 46.8M 2s -2023-11-07T14:50:52Z #15 1.307 3400K .......... .......... .......... .......... .......... 2% 74.5M 2s -2023-11-07T14:50:52Z #15 1.308 3450K .......... .......... .......... .......... .......... 2% 137M 2s -2023-11-07T14:50:52Z #15 1.308 3500K .......... .......... .......... .......... .......... 2% 135M 2s -2023-11-07T14:50:52Z #15 1.309 3550K .......... .......... .......... .......... .......... 2% 159M 2s -2023-11-07T14:50:52Z #15 1.309 3600K .......... .......... .......... .......... .......... 2% 114M 2s -2023-11-07T14:50:52Z #15 1.309 3650K .......... .......... .......... .......... .......... 2% 149M 2s -2023-11-07T14:50:52Z #15 1.310 3700K .......... .......... .......... .......... .......... 2% 136M 2s -2023-11-07T14:50:52Z #15 1.310 3750K .......... .......... .......... .......... .......... 2% 126M 2s -2023-11-07T14:50:52Z #15 1.310 3800K .......... .......... .......... .......... .......... 2% 163M 2s -2023-11-07T14:50:52Z #15 1.311 3850K .......... .......... .......... .......... .......... 3% 129M 2s -2023-11-07T14:50:52Z #15 1.311 3900K .......... .......... .......... .......... .......... 3% 149M 2s -2023-11-07T14:50:52Z #15 1.312 3950K .......... .......... .......... .......... .......... 3% 124M 2s -2023-11-07T14:50:52Z #15 1.312 4000K .......... .......... .......... .......... .......... 3% 146M 2s -2023-11-07T14:50:52Z #15 1.313 4050K .......... .......... .......... .......... .......... 3% 120M 2s -2023-11-07T14:50:52Z #15 1.313 4100K .......... .......... .......... .......... .......... 3% 135M 2s -2023-11-07T14:50:52Z #15 1.313 4150K .......... .......... .......... .......... .......... 3% 148M 2s -2023-11-07T14:50:52Z #15 1.313 4200K .......... .......... .......... .......... .......... 3% 135M 2s -2023-11-07T14:50:52Z #15 1.314 4250K .......... .......... .......... .......... .......... 3% 138M 2s -2023-11-07T14:50:52Z #15 1.314 4300K .......... .......... .......... .......... .......... 3% 158M 2s -2023-11-07T14:50:52Z #15 1.314 4350K .......... .......... .......... .......... .......... 3% 146M 2s -2023-11-07T14:50:52Z #15 1.315 4400K .......... .......... .......... .......... .......... 3% 137M 2s -2023-11-07T14:50:52Z #15 1.315 4450K .......... .......... .......... .......... .......... 3% 130M 2s -2023-11-07T14:50:52Z #15 1.315 4500K .......... .......... .......... .......... .......... 3% 148M 2s -2023-11-07T14:50:52Z #15 1.316 4550K .......... .......... .......... .......... .......... 3% 157M 2s -2023-11-07T14:50:52Z #15 1.316 4600K .......... .......... .......... .......... .......... 3% 151M 2s -2023-11-07T14:50:52Z #15 1.317 4650K .......... .......... .......... .......... .......... 3% 109M 2s -2023-11-07T14:50:52Z #15 1.317 4700K .......... .......... .......... .......... .......... 3% 148M 2s -2023-11-07T14:50:52Z #15 1.317 4750K .......... .......... .......... .......... .......... 3% 139M 2s -2023-11-07T14:50:52Z #15 1.317 4800K .......... .......... .......... .......... .......... 3% 137M 2s -2023-11-07T14:50:52Z #15 1.318 4850K .......... .......... .......... .......... .......... 3% 147M 2s -2023-11-07T14:50:52Z #15 1.318 4900K .......... .......... .......... .......... .......... 3% 151M 2s -2023-11-07T14:50:52Z #15 1.318 4950K .......... .......... .......... .......... .......... 3% 148M 2s -2023-11-07T14:50:52Z #15 1.319 5000K .......... .......... .......... .......... .......... 3% 131M 2s -2023-11-07T14:50:52Z #15 1.319 5050K .......... .......... .......... .......... .......... 3% 155M 2s -2023-11-07T14:50:52Z #15 1.320 5100K .......... .......... .......... .......... .......... 3% 149M 2s -2023-11-07T14:50:52Z #15 1.320 5150K .......... .......... .......... .......... .......... 4% 136M 2s -2023-11-07T14:50:52Z #15 1.321 5200K .......... .......... .......... .......... .......... 4% 107M 2s -2023-11-07T14:50:52Z #15 1.321 5250K .......... .......... .......... .......... .......... 4% 122M 2s -2023-11-07T14:50:52Z #15 1.325 5300K .......... .......... .......... .......... .......... 4% 178M 2s -2023-11-07T14:50:52Z #15 1.325 5350K .......... .......... .......... .......... .......... 4% 162M 2s -2023-11-07T14:50:52Z #15 1.325 5400K .......... .......... .......... .......... .......... 4% 108M 2s -2023-11-07T14:50:52Z #15 1.325 5450K .......... .......... .......... .......... .......... 4% 108M 2s -2023-11-07T14:50:52Z #15 1.325 5500K .......... .......... .......... .......... .......... 4% 132M 2s -2023-11-07T14:50:52Z #15 1.325 5550K .......... .......... .......... .......... .......... 4% 124M 2s -2023-11-07T14:50:52Z #15 1.325 5600K .......... .......... .......... .......... .......... 4% 128M 2s -2023-11-07T14:50:52Z #15 1.325 5650K .......... .......... .......... .......... .......... 4% 117M 2s -2023-11-07T14:50:52Z #15 1.325 5700K .......... .......... .......... .......... .......... 4% 147M 2s -2023-11-07T14:50:52Z #15 1.325 5750K .......... .......... .......... .......... .......... 4% 121M 2s -2023-11-07T14:50:52Z #15 1.325 5800K .......... .......... .......... .......... .......... 4% 129M 2s -2023-11-07T14:50:52Z #15 1.325 5850K .......... .......... .......... .......... .......... 4% 146M 2s -2023-11-07T14:50:52Z #15 1.325 5900K .......... .......... .......... .......... .......... 4% 121M 2s -2023-11-07T14:50:52Z #15 1.326 5950K .......... .......... .......... .......... .......... 4% 145M 2s -2023-11-07T14:50:52Z #15 1.326 6000K .......... .......... .......... .......... .......... 4% 125M 2s -2023-11-07T14:50:52Z #15 1.327 6050K .......... .......... .......... .......... .......... 4% 135M 1s -2023-11-07T14:50:52Z #15 1.327 6100K .......... .......... .......... .......... .......... 4% 144M 1s -2023-11-07T14:50:52Z #15 1.327 6150K .......... .......... .......... .......... .......... 4% 135M 1s -2023-11-07T14:50:52Z #15 1.328 6200K .......... .......... .......... .......... .......... 4% 147M 1s -2023-11-07T14:50:52Z #15 1.328 6250K .......... .......... .......... .......... .......... 4% 114M 1s -2023-11-07T14:50:52Z #15 1.329 6300K .......... .......... .......... .......... .......... 4% 135M 1s -2023-11-07T14:50:52Z #15 1.329 6350K .......... .......... .......... .......... .......... 4% 154M 1s -2023-11-07T14:50:52Z #15 1.329 6400K .......... .......... .......... .......... .......... 4% 118M 1s -2023-11-07T14:50:52Z #15 1.336 6450K .......... .......... .......... .......... .......... 5% 158M 1s -2023-11-07T14:50:52Z #15 1.337 6500K .......... .......... .......... .......... .......... 5% 161M 1s -2023-11-07T14:50:52Z #15 1.337 6550K .......... .......... .......... .......... .......... 5% 130M 1s -2023-11-07T14:50:52Z #15 1.337 6600K .......... .......... .......... .......... .......... 5% 148M 1s -2023-11-07T14:50:52Z #15 1.337 6650K .......... .......... .......... .......... .......... 5% 133M 1s -2023-11-07T14:50:52Z #15 1.337 6700K .......... .......... .......... .......... .......... 5% 111M 1s -2023-11-07T14:50:52Z #15 1.337 6750K .......... .......... .......... .......... .......... 5% 124M 1s -2023-11-07T14:50:52Z #15 1.337 6800K .......... .......... .......... .......... .......... 5% 99.9M 1s -2023-11-07T14:50:52Z #15 1.337 6850K .......... .......... .......... .......... .......... 5% 131M 1s -2023-11-07T14:50:52Z #15 1.337 6900K .......... .......... .......... .......... .......... 5% 121M 1s -2023-11-07T14:50:52Z #15 1.337 6950K .......... .......... .......... .......... .......... 5% 128M 1s -2023-11-07T14:50:52Z #15 1.337 7000K .......... .......... .......... .......... .......... 5% 118M 1s -2023-11-07T14:50:52Z #15 1.337 7050K .......... .......... .......... .......... .......... 5% 109M 1s -2023-11-07T14:50:52Z #15 1.337 7100K .......... .......... .......... .......... .......... 5% 122M 1s -2023-11-07T14:50:52Z #15 1.337 7150K .......... .......... .......... .......... .......... 5% 128M 1s -2023-11-07T14:50:52Z #15 1.337 7200K .......... .......... .......... .......... .......... 5% 124M 1s -2023-11-07T14:50:52Z #15 1.337 7250K .......... .......... .......... .......... .......... 5% 119M 1s -2023-11-07T14:50:52Z #15 1.337 7300K .......... .......... .......... .......... .......... 5% 118M 1s -2023-11-07T14:50:52Z #15 1.337 7350K .......... .......... .......... .......... .......... 5% 136M 1s -2023-11-07T14:50:52Z #15 1.337 7400K .......... .......... .......... .......... .......... 5% 130M 1s -2023-11-07T14:50:52Z #15 1.338 7450K .......... .......... .......... .......... .......... 5% 138M 1s -2023-11-07T14:50:52Z #15 1.338 7500K .......... .......... .......... .......... .......... 5% 131M 1s -2023-11-07T14:50:52Z #15 1.338 7550K .......... .......... .......... .......... .......... 5% 161M 1s -2023-11-07T14:50:52Z #15 1.339 7600K .......... .......... .......... .......... .......... 5% 127M 1s -2023-11-07T14:50:52Z #15 1.339 7650K .......... .......... .......... .......... .......... 5% 134M 1s -2023-11-07T14:50:52Z #15 1.339 7700K .......... .......... .......... .......... .......... 5% 151M 1s -2023-11-07T14:50:52Z #15 1.340 7750K .......... .......... .......... .......... .......... 6% 153M 1s -2023-11-07T14:50:52Z #15 1.340 7800K .......... .......... .......... .......... .......... 6% 155M 1s -2023-11-07T14:50:52Z #15 1.341 7850K .......... .......... .......... .......... .......... 6% 99.0M 1s -2023-11-07T14:50:52Z #15 1.341 7900K .......... .......... .......... .......... .......... 6% 161M 1s -2023-11-07T14:50:52Z #15 1.341 7950K .......... .......... .......... .......... .......... 6% 116M 1s -2023-11-07T14:50:52Z #15 1.342 8000K .......... .......... .......... .......... .......... 6% 138M 1s -2023-11-07T14:50:52Z #15 1.342 8050K .......... .......... .......... .......... .......... 6% 130M 1s -2023-11-07T14:50:52Z #15 1.342 8100K .......... .......... .......... .......... .......... 6% 134M 1s -2023-11-07T14:50:52Z #15 1.343 8150K .......... .......... .......... .......... .......... 6% 113M 1s -2023-11-07T14:50:52Z #15 1.343 8200K .......... .......... .......... .......... .......... 6% 124M 1s -2023-11-07T14:50:52Z #15 1.343 8250K .......... .......... .......... .......... .......... 6% 152M 1s -2023-11-07T14:50:52Z #15 1.343 8300K .......... .......... .......... .......... .......... 6% 150M 1s -2023-11-07T14:50:52Z #15 1.344 8350K .......... .......... .......... .......... .......... 6% 147M 1s -2023-11-07T14:50:52Z #15 1.344 8400K .......... .......... .......... .......... .......... 6% 107M 1s -2023-11-07T14:50:52Z #15 1.345 8450K .......... .......... .......... .......... .......... 6% 121M 1s -2023-11-07T14:50:52Z #15 1.345 8500K .......... .......... .......... .......... .......... 6% 140M 1s -2023-11-07T14:50:52Z #15 1.347 8550K .......... .......... .......... .......... .......... 6% 166M 1s -2023-11-07T14:50:52Z #15 1.347 8600K .......... .......... .......... .......... .......... 6% 118M 1s -2023-11-07T14:50:52Z #15 1.347 8650K .......... .......... .......... .......... .......... 6% 160M 1s -2023-11-07T14:50:52Z #15 1.347 8700K .......... .......... .......... .......... .......... 6% 131M 1s -2023-11-07T14:50:52Z #15 1.347 8750K .......... .......... .......... .......... .......... 6% 128M 1s -2023-11-07T14:50:52Z #15 1.347 8800K .......... .......... .......... .......... .......... 6% 144M 1s -2023-11-07T14:50:52Z #15 1.347 8850K .......... .......... .......... .......... .......... 6% 128M 1s -2023-11-07T14:50:52Z #15 1.348 8900K .......... .......... .......... .......... .......... 6% 143M 1s -2023-11-07T14:50:52Z #15 1.348 8950K .......... .......... .......... .......... .......... 6% 123M 1s -2023-11-07T14:50:52Z #15 1.349 9000K .......... .......... .......... .......... .......... 6% 126M 1s -2023-11-07T14:50:52Z #15 1.349 9050K .......... .......... .......... .......... .......... 7% 151M 1s -2023-11-07T14:50:52Z #15 1.349 9100K .......... .......... .......... .......... .......... 7% 120M 1s -2023-11-07T14:50:52Z #15 1.350 9150K .......... .......... .......... .......... .......... 7% 149M 1s -2023-11-07T14:50:52Z #15 1.350 9200K .......... .......... .......... .......... .......... 7% 135M 1s -2023-11-07T14:50:52Z #15 1.350 9250K .......... .......... .......... .......... .......... 7% 140M 1s -2023-11-07T14:50:52Z #15 1.351 9300K .......... .......... .......... .......... .......... 7% 142M 1s -2023-11-07T14:50:52Z #15 1.351 9350K .......... .......... .......... .......... .......... 7% 129M 1s -2023-11-07T14:50:52Z #15 1.351 9400K .......... .......... .......... .......... .......... 7% 136M 1s -2023-11-07T14:50:52Z #15 1.352 9450K .......... .......... .......... .......... .......... 7% 154M 1s -2023-11-07T14:50:52Z #15 1.352 9500K .......... .......... .......... .......... .......... 7% 122M 1s -2023-11-07T14:50:52Z #15 1.361 9550K .......... .......... .......... .......... .......... 7% 138M 1s -2023-11-07T14:50:52Z #15 1.361 9600K .......... .......... .......... .......... .......... 7% 127M 1s -2023-11-07T14:50:52Z #15 1.361 9650K .......... .......... .......... .......... .......... 7% 136M 1s -2023-11-07T14:50:52Z #15 1.361 9700K .......... .......... .......... .......... .......... 7% 129M 1s -2023-11-07T14:50:52Z #15 1.361 9750K .......... .......... .......... .......... .......... 7% 118M 1s -2023-11-07T14:50:52Z #15 1.361 9800K .......... .......... .......... .......... .......... 7% 129M 1s -2023-11-07T14:50:52Z #15 1.361 9850K .......... .......... .......... .......... .......... 7% 97.2M 1s -2023-11-07T14:50:52Z #15 1.361 9900K .......... .......... .......... .......... .......... 7% 135M 1s -2023-11-07T14:50:52Z #15 1.361 9950K .......... .......... .......... .......... .......... 7% 138M 1s -2023-11-07T14:50:52Z #15 1.361 10000K .......... .......... .......... .......... .......... 7% 113M 1s -2023-11-07T14:50:52Z #15 1.361 10050K .......... .......... .......... .......... .......... 7% 120M 1s -2023-11-07T14:50:52Z #15 1.361 10100K .......... .......... .......... .......... .......... 7% 124M 1s -2023-11-07T14:50:52Z #15 1.361 10150K .......... .......... .......... .......... .......... 7% 135M 1s -2023-11-07T14:50:52Z #15 1.361 10200K .......... .......... .......... .......... .......... 7% 135M 1s -2023-11-07T14:50:52Z #15 1.361 10250K .......... .......... .......... .......... .......... 7% 131M 1s -2023-11-07T14:50:52Z #15 1.361 10300K .......... .......... .......... .......... .......... 7% 124M 1s -2023-11-07T14:50:52Z #15 1.361 10350K .......... .......... .......... .......... .......... 8% 115M 1s -2023-11-07T14:50:52Z #15 1.361 10400K .......... .......... .......... .......... .......... 8% 139M 1s -2023-11-07T14:50:52Z #15 1.361 10450K .......... .......... .......... .......... .......... 8% 134M 1s -2023-11-07T14:50:52Z #15 1.361 10500K .......... .......... .......... .......... .......... 8% 141M 1s -2023-11-07T14:50:52Z #15 1.361 10550K .......... .......... .......... .......... .......... 8% 112M 1s -2023-11-07T14:50:52Z #15 1.361 10600K .......... .......... .......... .......... .......... 8% 145M 1s -2023-11-07T14:50:52Z #15 1.361 10650K .......... .......... .......... .......... .......... 8% 136M 1s -2023-11-07T14:50:52Z #15 1.361 10700K .......... .......... .......... .......... .......... 8% 144M 1s -2023-11-07T14:50:52Z #15 1.362 10750K .......... .......... .......... .......... .......... 8% 156M 1s -2023-11-07T14:50:52Z #15 1.362 10800K .......... .......... .......... .......... .......... 8% 109M 1s -2023-11-07T14:50:52Z #15 1.363 10850K .......... .......... .......... .......... .......... 8% 142M 1s -2023-11-07T14:50:52Z #15 1.363 10900K .......... .......... .......... .......... .......... 8% 133M 1s -2023-11-07T14:50:52Z #15 1.363 10950K .......... .......... .......... .......... .......... 8% 148M 1s -2023-11-07T14:50:52Z #15 1.364 11000K .......... .......... .......... .......... .......... 8% 145M 1s -2023-11-07T14:50:52Z #15 1.364 11050K .......... .......... .......... .......... .......... 8% 162M 1s -2023-11-07T14:50:52Z #15 1.364 11100K .......... .......... .......... .......... .......... 8% 97.6M 1s -2023-11-07T14:50:52Z #15 1.365 11150K .......... .......... .......... .......... .......... 8% 167M 1s -2023-11-07T14:50:52Z #15 1.365 11200K .......... .......... .......... .......... .......... 8% 123M 1s -2023-11-07T14:50:52Z #15 1.365 11250K .......... .......... .......... .......... .......... 8% 137M 1s -2023-11-07T14:50:52Z #15 1.366 11300K .......... .......... .......... .......... .......... 8% 149M 1s -2023-11-07T14:50:52Z #15 1.366 11350K .......... .......... .......... .......... .......... 8% 161M 1s -2023-11-07T14:50:52Z #15 1.367 11400K .......... .......... .......... .......... .......... 8% 119M 1s -2023-11-07T14:50:52Z #15 1.367 11450K .......... .......... .......... .......... .......... 8% 153M 1s -2023-11-07T14:50:52Z #15 1.367 11500K .......... .......... .......... .......... .......... 8% 135M 1s -2023-11-07T14:50:52Z #15 1.367 11550K .......... .......... .......... .......... .......... 8% 155M 1s -2023-11-07T14:50:52Z #15 1.368 11600K .......... .......... .......... .......... .......... 8% 167M 1s -2023-11-07T14:50:52Z #15 1.368 11650K .......... .......... .......... .......... .......... 9% 107M 1s -2023-11-07T14:50:52Z #15 1.368 11700K .......... .......... .......... .......... .......... 9% 136M 1s -2023-11-07T14:50:52Z #15 1.369 11750K .......... .......... .......... .......... .......... 9% 167M 1s -2023-11-07T14:50:52Z #15 1.369 11800K .......... .......... .......... .......... .......... 9% 140M 1s -2023-11-07T14:50:52Z #15 1.369 11850K .......... .......... .......... .......... .......... 9% 144M 1s -2023-11-07T14:50:52Z #15 1.370 11900K .......... .......... .......... .......... .......... 9% 138M 1s -2023-11-07T14:50:52Z #15 1.370 11950K .......... .......... .......... .......... .......... 9% 152M 1s -2023-11-07T14:50:52Z #15 1.371 12000K .......... .......... .......... .......... .......... 9% 156M 1s -2023-11-07T14:50:52Z #15 1.371 12050K .......... .......... .......... .......... .......... 9% 120M 1s -2023-11-07T14:50:52Z #15 1.371 12100K .......... .......... .......... .......... .......... 9% 156M 1s -2023-11-07T14:50:52Z #15 1.372 12150K .......... .......... .......... .......... .......... 9% 157M 1s -2023-11-07T14:50:52Z #15 1.372 12200K .......... .......... .......... .......... .......... 9% 154M 1s -2023-11-07T14:50:52Z #15 1.372 12250K .......... .......... .......... .......... .......... 9% 117M 1s -2023-11-07T14:50:52Z #15 1.373 12300K .......... .......... .......... .......... .......... 9% 127M 1s -2023-11-07T14:50:52Z #15 1.373 12350K .......... .......... .......... .......... .......... 9% 151M 1s -2023-11-07T14:50:52Z #15 1.373 12400K .......... .......... .......... .......... .......... 9% 158M 1s -2023-11-07T14:50:52Z #15 1.374 12450K .......... .......... .......... .......... .......... 9% 168M 1s -2023-11-07T14:50:52Z #15 1.374 12500K .......... .......... .......... .......... .......... 9% 130M 1s -2023-11-07T14:50:52Z #15 1.376 12550K .......... .......... .......... .......... .......... 9% 145M 1s -2023-11-07T14:50:52Z #15 1.376 12600K .......... .......... .......... .......... .......... 9% 161M 1s -2023-11-07T14:50:52Z #15 1.376 12650K .......... .......... .......... .......... .......... 9% 154M 1s -2023-11-07T14:50:52Z #15 1.376 12700K .......... .......... .......... .......... .......... 9% 114M 1s -2023-11-07T14:50:52Z #15 1.376 12750K .......... .......... .......... .......... .......... 9% 144M 1s -2023-11-07T14:50:52Z #15 1.376 12800K .......... .......... .......... .......... .......... 9% 128M 1s -2023-11-07T14:50:52Z #15 1.376 12850K .......... .......... .......... .......... .......... 9% 137M 1s -2023-11-07T14:50:52Z #15 1.377 12900K .......... .......... .......... .......... .......... 9% 138M 1s -2023-11-07T14:50:52Z #15 1.380 12950K .......... .......... .......... .......... .......... 10% 138M 1s -2023-11-07T14:50:52Z #15 1.380 13000K .......... .......... .......... .......... .......... 10% 152M 1s -2023-11-07T14:50:52Z #15 1.380 13050K .......... .......... .......... .......... .......... 10% 79.6M 1s -2023-11-07T14:50:52Z #15 1.380 13100K .......... .......... .......... .......... .......... 10% 55.5M 1s -2023-11-07T14:50:52Z #15 1.380 13150K .......... .......... .......... .......... .......... 10% 62.1M 1s -2023-11-07T14:50:52Z #15 1.380 13200K .......... .......... .......... .......... .......... 10% 68.0M 1s -2023-11-07T14:50:52Z #15 1.381 13250K .......... .......... .......... .......... .......... 10% 63.2M 1s -2023-11-07T14:50:52Z #15 1.382 13300K .......... .......... .......... .......... .......... 10% 64.9M 1s -2023-11-07T14:50:52Z #15 1.382 13350K .......... .......... .......... .......... .......... 10% 74.9M 1s -2023-11-07T14:50:52Z #15 1.383 13400K .......... .......... .......... .......... .......... 10% 64.2M 1s -2023-11-07T14:50:52Z #15 1.384 13450K .......... .......... .......... .......... .......... 10% 60.4M 1s -2023-11-07T14:50:52Z #15 1.385 13500K .......... .......... .......... .......... .......... 10% 68.6M 1s -2023-11-07T14:50:52Z #15 1.386 13550K .......... .......... .......... .......... .......... 10% 79.9M 1s -2023-11-07T14:50:52Z #15 1.388 13600K .......... .......... .......... .......... .......... 10% 116M 1s -2023-11-07T14:50:52Z #15 1.388 13650K .......... .......... .......... .......... .......... 10% 143M 1s -2023-11-07T14:50:52Z #15 1.388 13700K .......... .......... .......... .......... .......... 10% 149M 1s -2023-11-07T14:50:52Z #15 1.388 13750K .......... .......... .......... .......... .......... 10% 123M 1s -2023-11-07T14:50:52Z #15 1.388 13800K .......... .......... .......... .......... .......... 10% 144M 1s -2023-11-07T14:50:52Z #15 1.388 13850K .......... .......... .......... .......... .......... 10% 105M 1s -2023-11-07T14:50:52Z #15 1.388 13900K .......... .......... .......... .......... .......... 10% 74.7M 1s -2023-11-07T14:50:52Z #15 1.389 13950K .......... .......... .......... .......... .......... 10% 68.2M 1s -2023-11-07T14:50:52Z #15 1.390 14000K .......... .......... .......... .......... .......... 10% 65.4M 1s -2023-11-07T14:50:52Z #15 1.390 14050K .......... .......... .......... .......... .......... 10% 66.3M 1s -2023-11-07T14:50:52Z #15 1.391 14100K .......... .......... .......... .......... .......... 10% 71.0M 1s -2023-11-07T14:50:52Z #15 1.397 14150K .......... .......... .......... .......... .......... 10% 77.9M 1s -2023-11-07T14:50:52Z #15 1.397 14200K .......... .......... .......... .......... .......... 10% 76.3M 1s -2023-11-07T14:50:52Z #15 1.397 14250K .......... .......... .......... .......... .......... 11% 60.2M 1s -2023-11-07T14:50:52Z #15 1.397 14300K .......... .......... .......... .......... .......... 11% 79.6M 1s -2023-11-07T14:50:52Z #15 1.397 14350K .......... .......... .......... .......... .......... 11% 59.2M 1s -2023-11-07T14:50:52Z #15 1.397 14400K .......... .......... .......... .......... .......... 11% 83.6M 1s -2023-11-07T14:50:52Z #15 1.397 14450K .......... .......... .......... .......... .......... 11% 74.1M 1s -2023-11-07T14:50:52Z #15 1.400 14500K .......... .......... .......... .......... .......... 11% 161M 1s -2023-11-07T14:50:52Z #15 1.400 14550K .......... .......... .......... .......... .......... 11% 115M 1s -2023-11-07T14:50:52Z #15 1.400 14600K .......... .......... .......... .......... .......... 11% 131M 1s -2023-11-07T14:50:52Z #15 1.400 14650K .......... .......... .......... .......... .......... 11% 104M 1s -2023-11-07T14:50:52Z #15 1.400 14700K .......... .......... .......... .......... .......... 11% 131M 1s -2023-11-07T14:50:52Z #15 1.400 14750K .......... .......... .......... .......... .......... 11% 114M 1s -2023-11-07T14:50:52Z #15 1.400 14800K .......... .......... .......... .......... .......... 11% 107M 1s -2023-11-07T14:50:52Z #15 1.400 14850K .......... .......... .......... .......... .......... 11% 137M 1s -2023-11-07T14:50:52Z #15 1.400 14900K .......... .......... .......... .......... .......... 11% 117M 1s -2023-11-07T14:50:52Z #15 1.400 14950K .......... .......... .......... .......... .......... 11% 95.4M 1s -2023-11-07T14:50:52Z #15 1.401 15000K .......... .......... .......... .......... .......... 11% 63.5M 1s -2023-11-07T14:50:52Z #15 1.401 15050K .......... .......... .......... .......... .......... 11% 77.5M 1s -2023-11-07T14:50:52Z #15 1.402 15100K .......... .......... .......... .......... .......... 11% 64.6M 1s -2023-11-07T14:50:52Z #15 1.403 15150K .......... .......... .......... .......... .......... 11% 61.8M 1s -2023-11-07T14:50:52Z #15 1.404 15200K .......... .......... .......... .......... .......... 11% 74.4M 1s -2023-11-07T14:50:52Z #15 1.404 15250K .......... .......... .......... .......... .......... 11% 71.7M 1s -2023-11-07T14:50:52Z #15 1.405 15300K .......... .......... .......... .......... .......... 11% 73.3M 1s -2023-11-07T14:50:52Z #15 1.406 15350K .......... .......... .......... .......... .......... 11% 68.4M 1s -2023-11-07T14:50:52Z #15 1.406 15400K .......... .......... .......... .......... .......... 11% 74.7M 1s -2023-11-07T14:50:52Z #15 1.407 15450K .......... .......... .......... .......... .......... 11% 78.0M 1s -2023-11-07T14:50:52Z #15 1.408 15500K .......... .......... .......... .......... .......... 12% 89.0M 1s -2023-11-07T14:50:52Z #15 1.408 15550K .......... .......... .......... .......... .......... 12% 149M 1s -2023-11-07T14:50:52Z #15 1.408 15600K .......... .......... .......... .......... .......... 12% 93.0M 1s -2023-11-07T14:50:52Z #15 1.412 15650K .......... .......... .......... .......... .......... 12% 145M 1s -2023-11-07T14:50:52Z #15 1.412 15700K .......... .......... .......... .......... .......... 12% 116M 1s -2023-11-07T14:50:52Z #15 1.412 15750K .......... .......... .......... .......... .......... 12% 143M 1s -2023-11-07T14:50:52Z #15 1.412 15800K .......... .......... .......... .......... .......... 12% 164M 1s -2023-11-07T14:50:52Z #15 1.412 15850K .......... .......... .......... .......... .......... 12% 130M 1s -2023-11-07T14:50:52Z #15 1.412 15900K .......... .......... .......... .......... .......... 12% 118M 1s -2023-11-07T14:50:52Z #15 1.412 15950K .......... .......... .......... .......... .......... 12% 133M 1s -2023-11-07T14:50:52Z #15 1.412 16000K .......... .......... .......... .......... .......... 12% 106M 1s -2023-11-07T14:50:52Z #15 1.412 16050K .......... .......... .......... .......... .......... 12% 140M 1s -2023-11-07T14:50:52Z #15 1.412 16100K .......... .......... .......... .......... .......... 12% 60.6M 1s -2023-11-07T14:50:52Z #15 1.413 16150K .......... .......... .......... .......... .......... 12% 72.4M 1s -2023-11-07T14:50:52Z #15 1.414 16200K .......... .......... .......... .......... .......... 12% 79.8M 1s -2023-11-07T14:50:52Z #15 1.415 16250K .......... .......... .......... .......... .......... 12% 69.8M 1s -2023-11-07T14:50:52Z #15 1.415 16300K .......... .......... .......... .......... .......... 12% 66.0M 1s -2023-11-07T14:50:52Z #15 1.416 16350K .......... .......... .......... .......... .......... 12% 58.9M 1s -2023-11-07T14:50:52Z #15 1.417 16400K .......... .......... .......... .......... .......... 12% 72.6M 1s -2023-11-07T14:50:52Z #15 1.419 16450K .......... .......... .......... .......... .......... 12% 71.3M 1s -2023-11-07T14:50:52Z #15 1.419 16500K .......... .......... .......... .......... .......... 12% 80.1M 1s -2023-11-07T14:50:52Z #15 1.419 16550K .......... .......... .......... .......... .......... 12% 67.2M 1s -2023-11-07T14:50:52Z #15 1.419 16600K .......... .......... .......... .......... .......... 12% 67.4M 1s -2023-11-07T14:50:52Z #15 1.420 16650K .......... .......... .......... .......... .......... 12% 68.4M 1s -2023-11-07T14:50:52Z #15 1.421 16700K .......... .......... .......... .......... .......... 12% 93.9M 1s -2023-11-07T14:50:52Z #15 1.424 16750K .......... .......... .......... .......... .......... 12% 155M 1s -2023-11-07T14:50:52Z #15 1.424 16800K .......... .......... .......... .......... .......... 13% 133M 1s -2023-11-07T14:50:52Z #15 1.424 16850K .......... .......... .......... .......... .......... 13% 133M 1s -2023-11-07T14:50:52Z #15 1.424 16900K .......... .......... .......... .......... .......... 13% 170M 1s -2023-11-07T14:50:52Z #15 1.424 16950K .......... .......... .......... .......... .......... 13% 130M 1s -2023-11-07T14:50:52Z #15 1.424 17000K .......... .......... .......... .......... .......... 13% 108M 1s -2023-11-07T14:50:52Z #15 1.424 17050K .......... .......... .......... .......... .......... 13% 122M 1s -2023-11-07T14:50:52Z #15 1.424 17100K .......... .......... .......... .......... .......... 13% 114M 1s -2023-11-07T14:50:52Z #15 1.424 17150K .......... .......... .......... .......... .......... 13% 64.8M 1s -2023-11-07T14:50:52Z #15 1.425 17200K .......... .......... .......... .......... .......... 13% 73.6M 1s -2023-11-07T14:50:52Z #15 1.426 17250K .......... .......... .......... .......... .......... 13% 78.0M 1s -2023-11-07T14:50:52Z #15 1.426 17300K .......... .......... .......... .......... .......... 13% 68.8M 1s -2023-11-07T14:50:52Z #15 1.427 17350K .......... .......... .......... .......... .......... 13% 65.4M 1s -2023-11-07T14:50:52Z #15 1.428 17400K .......... .......... .......... .......... .......... 13% 84.7M 1s -2023-11-07T14:50:52Z #15 1.428 17450K .......... .......... .......... .......... .......... 13% 74.4M 1s -2023-11-07T14:50:52Z #15 1.429 17500K .......... .......... .......... .......... .......... 13% 63.4M 1s -2023-11-07T14:50:52Z #15 1.430 17550K .......... .......... .......... .......... .......... 13% 70.3M 1s -2023-11-07T14:50:52Z #15 1.431 17600K .......... .......... .......... .......... .......... 13% 61.6M 1s -2023-11-07T14:50:52Z #15 1.431 17650K .......... .......... .......... .......... .......... 13% 72.8M 1s -2023-11-07T14:50:52Z #15 1.432 17700K .......... .......... .......... .......... .......... 13% 69.3M 1s -2023-11-07T14:50:52Z #15 1.433 17750K .......... .......... .......... .......... .......... 13% 85.9M 1s -2023-11-07T14:50:52Z #15 1.433 17800K .......... .......... .......... .......... .......... 13% 78.2M 1s -2023-11-07T14:50:52Z #15 1.434 17850K .......... .......... .......... .......... .......... 13% 61.9M 1s -2023-11-07T14:50:52Z #15 1.436 17900K .......... .......... .......... .......... .......... 13% 65.1M 1s -2023-11-07T14:50:52Z #15 1.436 17950K .......... .......... .......... .......... .......... 13% 72.0M 1s -2023-11-07T14:50:52Z #15 1.436 18000K .......... .......... .......... .......... .......... 13% 63.5M 1s -2023-11-07T14:50:52Z #15 1.437 18050K .......... .......... .......... .......... .......... 13% 70.8M 1s -2023-11-07T14:50:52Z #15 1.437 18100K .......... .......... .......... .......... .......... 14% 74.8M 1s -2023-11-07T14:50:52Z #15 1.438 18150K .......... .......... .......... .......... .......... 14% 58.4M 1s -2023-11-07T14:50:52Z #15 1.440 18200K .......... .......... .......... .......... .......... 14% 55.4M 1s -2023-11-07T14:50:52Z #15 1.440 18250K .......... .......... .......... .......... .......... 14% 72.3M 1s -2023-11-07T14:50:52Z #15 1.441 18300K .......... .......... .......... .......... .......... 14% 57.6M 1s -2023-11-07T14:50:52Z #15 1.441 18350K .......... .......... .......... .......... .......... 14% 72.0M 1s -2023-11-07T14:50:52Z #15 1.445 18400K .......... .......... .......... .......... .......... 14% 81.2M 1s -2023-11-07T14:50:52Z #15 1.445 18450K .......... .......... .......... .......... .......... 14% 68.9M 1s -2023-11-07T14:50:52Z #15 1.445 18500K .......... .......... .......... .......... .......... 14% 72.2M 1s -2023-11-07T14:50:52Z #15 1.445 18550K .......... .......... .......... .......... .......... 14% 70.8M 1s -2023-11-07T14:50:52Z #15 1.445 18600K .......... .......... .......... .......... .......... 14% 62.2M 1s -2023-11-07T14:50:52Z #15 1.446 18650K .......... .......... .......... .......... .......... 14% 70.6M 1s -2023-11-07T14:50:52Z #15 1.446 18700K .......... .......... .......... .......... .......... 14% 66.5M 1s -2023-11-07T14:50:52Z #15 1.447 18750K .......... .......... .......... .......... .......... 14% 69.6M 1s -2023-11-07T14:50:52Z #15 1.453 18800K .......... .......... .......... .......... .......... 14% 140M 1s -2023-11-07T14:50:52Z #15 1.453 18850K .......... .......... .......... .......... .......... 14% 134M 1s -2023-11-07T14:50:52Z #15 1.453 18900K .......... .......... .......... .......... .......... 14% 148M 1s -2023-11-07T14:50:52Z #15 1.453 18950K .......... .......... .......... .......... .......... 14% 125M 1s -2023-11-07T14:50:52Z #15 1.453 19000K .......... .......... .......... .......... .......... 14% 136M 1s -2023-11-07T14:50:52Z #15 1.453 19050K .......... .......... .......... .......... .......... 14% 106M 1s -2023-11-07T14:50:52Z #15 1.453 19100K .......... .......... .......... .......... .......... 14% 130M 1s -2023-11-07T14:50:52Z #15 1.453 19150K .......... .......... .......... .......... .......... 14% 132M 1s -2023-11-07T14:50:52Z #15 1.453 19200K .......... .......... .......... .......... .......... 14% 109M 1s -2023-11-07T14:50:52Z #15 1.453 19250K .......... .......... .......... .......... .......... 14% 127M 1s -2023-11-07T14:50:52Z #15 1.453 19300K .......... .......... .......... .......... .......... 14% 137M 1s -2023-11-07T14:50:52Z #15 1.453 19350K .......... .......... .......... .......... .......... 14% 124M 1s -2023-11-07T14:50:52Z #15 1.453 19400K .......... .......... .......... .......... .......... 15% 80.5M 1s -2023-11-07T14:50:52Z #15 1.453 19450K .......... .......... .......... .......... .......... 15% 73.1M 1s -2023-11-07T14:50:52Z #15 1.454 19500K .......... .......... .......... .......... .......... 15% 70.1M 1s -2023-11-07T14:50:52Z #15 1.455 19550K .......... .......... .......... .......... .......... 15% 69.8M 1s -2023-11-07T14:50:52Z #15 1.455 19600K .......... .......... .......... .......... .......... 15% 65.3M 1s -2023-11-07T14:50:52Z #15 1.456 19650K .......... .......... .......... .......... .......... 15% 75.8M 1s -2023-11-07T14:50:52Z #15 1.461 19700K .......... .......... .......... .......... .......... 15% 80.1M 1s -2023-11-07T14:50:52Z #15 1.461 19750K .......... .......... .......... .......... .......... 15% 64.2M 1s -2023-11-07T14:50:52Z #15 1.461 19800K .......... .......... .......... .......... .......... 15% 81.5M 1s -2023-11-07T14:50:52Z #15 1.461 19850K .......... .......... .......... .......... .......... 15% 65.7M 1s -2023-11-07T14:50:52Z #15 1.461 19900K .......... .......... .......... .......... .......... 15% 68.7M 1s -2023-11-07T14:50:52Z #15 1.461 19950K .......... .......... .......... .......... .......... 15% 69.5M 1s -2023-11-07T14:50:52Z #15 1.461 20000K .......... .......... .......... .......... .......... 15% 70.2M 1s -2023-11-07T14:50:52Z #15 1.461 20050K .......... .......... .......... .......... .......... 15% 67.7M 1s -2023-11-07T14:50:52Z #15 1.462 20100K .......... .......... .......... .......... .......... 15% 47.2M 1s -2023-11-07T14:50:52Z #15 1.463 20150K .......... .......... .......... .......... .......... 15% 52.3M 1s -2023-11-07T14:50:52Z #15 1.464 20200K .......... .......... .......... .......... .......... 15% 54.1M 1s -2023-11-07T14:50:52Z #15 1.465 20250K .......... .......... .......... .......... .......... 15% 59.2M 1s -2023-11-07T14:50:52Z #15 1.467 20300K .......... .......... .......... .......... .......... 15% 48.3M 1s -2023-11-07T14:50:52Z #15 1.467 20350K .......... .......... .......... .......... .......... 15% 58.2M 1s -2023-11-07T14:50:52Z #15 1.467 20400K .......... .......... .......... .......... .......... 15% 48.4M 1s -2023-11-07T14:50:52Z #15 1.468 20450K .......... .......... .......... .......... .......... 15% 64.5M 1s -2023-11-07T14:50:52Z #15 1.469 20500K .......... .......... .......... .......... .......... 15% 47.0M 1s -2023-11-07T14:50:52Z #15 1.470 20550K .......... .......... .......... .......... .......... 15% 58.2M 1s -2023-11-07T14:50:52Z #15 1.471 20600K .......... .......... .......... .......... .......... 15% 48.1M 1s -2023-11-07T14:50:52Z #15 1.472 20650K .......... .......... .......... .......... .......... 15% 46.1M 1s -2023-11-07T14:50:52Z #15 1.473 20700K .......... .......... .......... .......... .......... 16% 54.5M 1s -2023-11-07T14:50:52Z #15 1.474 20750K .......... .......... .......... .......... .......... 16% 50.4M 1s -2023-11-07T14:50:52Z #15 1.475 20800K .......... .......... .......... .......... .......... 16% 56.8M 1s -2023-11-07T14:50:52Z #15 1.476 20850K .......... .......... .......... .......... .......... 16% 62.1M 1s -2023-11-07T14:50:52Z #15 1.477 20900K .......... .......... .......... .......... .......... 16% 36.8M 1s -2023-11-07T14:50:52Z #15 1.478 20950K .......... .......... .......... .......... .......... 16% 49.1M 1s -2023-11-07T14:50:52Z #15 1.479 21000K .......... .......... .......... .......... .......... 16% 47.9M 1s -2023-11-07T14:50:52Z #15 1.480 21050K .......... .......... .......... .......... .......... 16% 62.9M 1s -2023-11-07T14:50:52Z #15 1.481 21100K .......... .......... .......... .......... .......... 16% 51.2M 1s -2023-11-07T14:50:52Z #15 1.482 21150K .......... .......... .......... .......... .......... 16% 152M 1s -2023-11-07T14:50:52Z #15 1.482 21200K .......... .......... .......... .......... .......... 16% 47.0M 1s -2023-11-07T14:50:52Z #15 1.484 21250K .......... .......... .......... .......... .......... 16% 130M 1s -2023-11-07T14:50:52Z #15 1.484 21300K .......... .......... .......... .......... .......... 16% 39.4M 1s -2023-11-07T14:50:52Z #15 1.485 21350K .......... .......... .......... .......... .......... 16% 101M 1s -2023-11-07T14:50:52Z #15 1.486 21400K .......... .......... .......... .......... .......... 16% 148M 1s -2023-11-07T14:50:52Z #15 1.486 21450K .......... .......... .......... .......... .......... 16% 161M 1s -2023-11-07T14:50:52Z #15 1.486 21500K .......... .......... .......... .......... .......... 16% 119M 1s -2023-11-07T14:50:52Z #15 1.486 21550K .......... .......... .......... .......... .......... 16% 47.3M 1s -2023-11-07T14:50:52Z #15 1.491 21600K .......... .......... .......... .......... .......... 16% 136M 1s -2023-11-07T14:50:52Z #15 1.491 21650K .......... .......... .......... .......... .......... 16% 158M 1s -2023-11-07T14:50:52Z #15 1.491 21700K .......... .......... .......... .......... .......... 16% 144M 1s -2023-11-07T14:50:52Z #15 1.491 21750K .......... .......... .......... .......... .......... 16% 155M 1s -2023-11-07T14:50:52Z #15 1.491 21800K .......... .......... .......... .......... .......... 16% 145M 1s -2023-11-07T14:50:52Z #15 1.491 21850K .......... .......... .......... .......... .......... 16% 149M 1s -2023-11-07T14:50:52Z #15 1.491 21900K .......... .......... .......... .......... .......... 16% 132M 1s -2023-11-07T14:50:52Z #15 1.491 21950K .......... .......... .......... .......... .......... 16% 161M 1s -2023-11-07T14:50:52Z #15 1.491 22000K .......... .......... .......... .......... .......... 17% 154M 1s -2023-11-07T14:50:52Z #15 1.491 22050K .......... .......... .......... .......... .......... 17% 136M 1s -2023-11-07T14:50:52Z #15 1.491 22100K .......... .......... .......... .......... .......... 17% 164M 1s -2023-11-07T14:50:52Z #15 1.491 22150K .......... .......... .......... .......... .......... 17% 129M 1s -2023-11-07T14:50:52Z #15 1.491 22200K .......... .......... .......... .......... .......... 17% 34.7M 1s -2023-11-07T14:50:52Z #15 1.493 22250K .......... .......... .......... .......... .......... 17% 78.7M 1s -2023-11-07T14:50:52Z #15 1.496 22300K .......... .......... .......... .......... .......... 17% 162M 1s -2023-11-07T14:50:52Z #15 1.496 22350K .......... .......... .......... .......... .......... 17% 160M 1s -2023-11-07T14:50:52Z #15 1.496 22400K .......... .......... .......... .......... .......... 17% 143M 1s -2023-11-07T14:50:52Z #15 1.496 22450K .......... .......... .......... .......... .......... 17% 169M 1s -2023-11-07T14:50:52Z #15 1.496 22500K .......... .......... .......... .......... .......... 17% 133M 1s -2023-11-07T14:50:52Z #15 1.496 22550K .......... .......... .......... .......... .......... 17% 164M 1s -2023-11-07T14:50:52Z #15 1.496 22600K .......... .......... .......... .......... .......... 17% 175M 1s -2023-11-07T14:50:52Z #15 1.496 22650K .......... .......... .......... .......... .......... 17% 138M 1s -2023-11-07T14:50:52Z #15 1.496 22700K .......... .......... .......... .......... .......... 17% 144M 1s -2023-11-07T14:50:52Z #15 1.496 22750K .......... .......... .......... .......... .......... 17% 47.4M 1s -2023-11-07T14:50:52Z #15 1.497 22800K .......... .......... .......... .......... .......... 17% 31.0M 1s -2023-11-07T14:50:52Z #15 1.500 22850K .......... .......... .......... .......... .......... 17% 115M 1s -2023-11-07T14:50:52Z #15 1.500 22900K .......... .......... .......... .......... .......... 17% 127M 1s -2023-11-07T14:50:52Z #15 1.500 22950K .......... .......... .......... .......... .......... 17% 170M 1s -2023-11-07T14:50:52Z #15 1.500 23000K .......... .......... .......... .......... .......... 17% 158M 1s -2023-11-07T14:50:52Z #15 1.500 23050K .......... .......... .......... .......... .......... 17% 49.1M 1s -2023-11-07T14:50:52Z #15 1.501 23100K .......... .......... .......... .......... .......... 17% 31.7M 1s -2023-11-07T14:50:52Z #15 1.504 23150K .......... .......... .......... .......... .......... 17% 58.4M 1s -2023-11-07T14:50:52Z #15 1.506 23200K .......... .......... .......... .......... .......... 17% 157M 1s -2023-11-07T14:50:52Z #15 1.506 23250K .......... .......... .......... .......... .......... 17% 158M 1s -2023-11-07T14:50:52Z #15 1.506 23300K .......... .......... .......... .......... .......... 18% 58.4M 1s -2023-11-07T14:50:52Z #15 1.506 23350K .......... .......... .......... .......... .......... 18% 29.0M 1s -2023-11-07T14:50:52Z #15 1.507 23400K .......... .......... .......... .......... .......... 18% 36.3M 1s -2023-11-07T14:50:52Z #15 1.508 23450K .......... .......... .......... .......... .......... 18% 46.2M 1s -2023-11-07T14:50:52Z #15 1.510 23500K .......... .......... .......... .......... .......... 18% 48.1M 1s -2023-11-07T14:50:52Z #15 1.511 23550K .......... .......... .......... .......... .......... 18% 105M 1s -2023-11-07T14:50:52Z #15 1.511 23600K .......... .......... .......... .......... .......... 18% 157M 1s -2023-11-07T14:50:52Z #15 1.511 23650K .......... .......... .......... .......... .......... 18% 30.1M 1s -2023-11-07T14:50:52Z #15 1.515 23700K .......... .......... .......... .......... .......... 18% 150M 1s -2023-11-07T14:50:52Z #15 1.515 23750K .......... .......... .......... .......... .......... 18% 136M 1s -2023-11-07T14:50:52Z #15 1.515 23800K .......... .......... .......... .......... .......... 18% 152M 1s -2023-11-07T14:50:52Z #15 1.515 23850K .......... .......... .......... .......... .......... 18% 151M 1s -2023-11-07T14:50:52Z #15 1.515 23900K .......... .......... .......... .......... .......... 18% 153M 1s -2023-11-07T14:50:52Z #15 1.515 23950K .......... .......... .......... .......... .......... 18% 139M 1s -2023-11-07T14:50:52Z #15 1.515 24000K .......... .......... .......... .......... .......... 18% 139M 1s -2023-11-07T14:50:52Z #15 1.515 24050K .......... .......... .......... .......... .......... 18% 34.4M 1s -2023-11-07T14:50:52Z #15 1.516 24100K .......... .......... .......... .......... .......... 18% 59.1M 1s -2023-11-07T14:50:52Z #15 1.521 24150K .......... .......... .......... .......... .......... 18% 165M 1s -2023-11-07T14:50:52Z #15 1.521 24200K .......... .......... .......... .......... .......... 18% 134M 1s -2023-11-07T14:50:52Z #15 1.521 24250K .......... .......... .......... .......... .......... 18% 146M 1s -2023-11-07T14:50:52Z #15 1.521 24300K .......... .......... .......... .......... .......... 18% 161M 1s -2023-11-07T14:50:52Z #15 1.521 24350K .......... .......... .......... .......... .......... 18% 165M 1s -2023-11-07T14:50:52Z #15 1.521 24400K .......... .......... .......... .......... .......... 18% 142M 1s -2023-11-07T14:50:52Z #15 1.521 24450K .......... .......... .......... .......... .......... 18% 150M 1s -2023-11-07T14:50:52Z #15 1.521 24500K .......... .......... .......... .......... .......... 18% 146M 1s -2023-11-07T14:50:52Z #15 1.521 24550K .......... .......... .......... .......... .......... 18% 127M 1s -2023-11-07T14:50:52Z #15 1.521 24600K .......... .......... .......... .......... .......... 19% 39.8M 1s -2023-11-07T14:50:52Z #15 1.521 24650K .......... .......... .......... .......... .......... 19% 44.6M 1s -2023-11-07T14:50:52Z #15 1.524 24700K .......... .......... .......... .......... .......... 19% 136M 1s -2023-11-07T14:50:52Z #15 1.524 24750K .......... .......... .......... .......... .......... 19% 152M 1s -2023-11-07T14:50:52Z #15 1.524 24800K .......... .......... .......... .......... .......... 19% 173M 1s -2023-11-07T14:50:52Z #15 1.524 24850K .......... .......... .......... .......... .......... 19% 145M 1s -2023-11-07T14:50:52Z #15 1.524 24900K .......... .......... .......... .......... .......... 19% 144M 1s -2023-11-07T14:50:52Z #15 1.524 24950K .......... .......... .......... .......... .......... 19% 117M 1s -2023-11-07T14:50:52Z #15 1.524 25000K .......... .......... .......... .......... .......... 19% 31.8M 1s -2023-11-07T14:50:52Z #15 1.526 25050K .......... .......... .......... .......... .......... 19% 79.3M 1s -2023-11-07T14:50:52Z #15 1.528 25100K .......... .......... .......... .......... .......... 19% 129M 1s -2023-11-07T14:50:52Z #15 1.528 25150K .......... .......... .......... .......... .......... 19% 142M 1s -2023-11-07T14:50:52Z #15 1.528 25200K .......... .......... .......... .......... .......... 19% 142M 1s -2023-11-07T14:50:52Z #15 1.528 25250K .......... .......... .......... .......... .......... 19% 176M 1s -2023-11-07T14:50:52Z #15 1.528 25300K .......... .......... .......... .......... .......... 19% 134M 1s -2023-11-07T14:50:52Z #15 1.528 25350K .......... .......... .......... .......... .......... 19% 33.5M 1s -2023-11-07T14:50:52Z #15 1.530 25400K .......... .......... .......... .......... .......... 19% 36.4M 1s -2023-11-07T14:50:52Z #15 1.531 25450K .......... .......... .......... .......... .......... 19% 46.6M 1s -2023-11-07T14:50:52Z #15 1.532 25500K .......... .......... .......... .......... .......... 19% 43.6M 1s -2023-11-07T14:50:52Z #15 1.533 25550K .......... .......... .......... .......... .......... 19% 39.8M 1s -2023-11-07T14:50:52Z #15 1.535 25600K .......... .......... .......... .......... .......... 19% 46.6M 1s -2023-11-07T14:50:52Z #15 1.537 25650K .......... .......... .......... .......... .......... 19% 38.2M 1s -2023-11-07T14:50:52Z #15 1.537 25700K .......... .......... .......... .......... .......... 19% 46.6M 1s -2023-11-07T14:50:52Z #15 1.538 25750K .......... .......... .......... .......... .......... 19% 110M 1s -2023-11-07T14:50:52Z #15 1.538 25800K .......... .......... .......... .......... .......... 19% 30.9M 1s -2023-11-07T14:50:52Z #15 1.544 25850K .......... .......... .......... .......... .......... 19% 153M 1s -2023-11-07T14:50:52Z #15 1.544 25900K .......... .......... .......... .......... .......... 20% 51.3M 1s -2023-11-07T14:50:52Z #15 1.544 25950K .......... .......... .......... .......... .......... 20% 85.4M 1s -2023-11-07T14:50:52Z #15 1.544 26000K .......... .......... .......... .......... .......... 20% 115M 1s -2023-11-07T14:50:52Z #15 1.544 26050K .......... .......... .......... .......... .......... 20% 162M 1s -2023-11-07T14:50:52Z #15 1.544 26100K .......... .......... .......... .......... .......... 20% 182M 1s -2023-11-07T14:50:52Z #15 1.544 26150K .......... .......... .......... .......... .......... 20% 115M 1s -2023-11-07T14:50:52Z #15 1.544 26200K .......... .......... .......... .......... .......... 20% 23.1M 1s -2023-11-07T14:50:52Z #15 1.545 26250K .......... .......... .......... .......... .......... 20% 40.8M 1s -2023-11-07T14:50:52Z #15 1.547 26300K .......... .......... .......... .......... .......... 20% 69.8M 1s -2023-11-07T14:50:52Z #15 1.547 26350K .......... .......... .......... .......... .......... 20% 36.1M 1s -2023-11-07T14:50:52Z #15 1.549 26400K .......... .......... .......... .......... .......... 20% 32.0M 1s -2023-11-07T14:50:52Z #15 1.550 26450K .......... .......... .......... .......... .......... 20% 70.0M 1s -2023-11-07T14:50:52Z #15 1.551 26500K .......... .......... .......... .......... .......... 20% 79.7M 1s -2023-11-07T14:50:52Z #15 1.551 26550K .......... .......... .......... .......... .......... 20% 54.9M 1s -2023-11-07T14:50:52Z #15 1.552 26600K .......... .......... .......... .......... .......... 20% 40.7M 1s -2023-11-07T14:50:52Z #15 1.554 26650K .......... .......... .......... .......... .......... 20% 148M 1s -2023-11-07T14:50:52Z #15 1.554 26700K .......... .......... .......... .......... .......... 20% 36.8M 1s -2023-11-07T14:50:52Z #15 1.556 26750K .......... .......... .......... .......... .......... 20% 30.7M 1s -2023-11-07T14:50:52Z #15 1.557 26800K .......... .......... .......... .......... .......... 20% 52.8M 1s -2023-11-07T14:50:52Z #15 1.558 26850K .......... .......... .......... .......... .......... 20% 80.2M 1s -2023-11-07T14:50:52Z #15 1.559 26900K .......... .......... .......... .......... .......... 20% 29.4M 1s -2023-11-07T14:50:52Z #15 1.560 26950K .......... .......... .......... .......... .......... 20% 162M 1s -2023-11-07T14:50:52Z #15 1.560 27000K .......... .......... .......... .......... .......... 20% 49.9M 1s -2023-11-07T14:50:52Z #15 1.561 27050K .......... .......... .......... .......... .......... 20% 31.7M 1s -2023-11-07T14:50:52Z #15 1.563 27100K .......... .......... .......... .......... .......... 20% 52.8M 1s -2023-11-07T14:50:52Z #15 1.564 27150K .......... .......... .......... .......... .......... 20% 45.9M 1s -2023-11-07T14:50:52Z #15 1.565 27200K .......... .......... .......... .......... .......... 21% 39.0M 1s -2023-11-07T14:50:52Z #15 1.566 27250K .......... .......... .......... .......... .......... 21% 38.7M 1s -2023-11-07T14:50:52Z #15 1.567 27300K .......... .......... .......... .......... .......... 21% 34.0M 1s -2023-11-07T14:50:52Z #15 1.569 27350K .......... .......... .......... .......... .......... 21% 44.8M 1s -2023-11-07T14:50:52Z #15 1.570 27400K .......... .......... .......... .......... .......... 21% 42.4M 1s -2023-11-07T14:50:52Z #15 1.571 27450K .......... .......... .......... .......... .......... 21% 58.1M 1s -2023-11-07T14:50:52Z #15 1.572 27500K .......... .......... .......... .......... .......... 21% 79.6M 1s -2023-11-07T14:50:52Z #15 1.572 27550K .......... .......... .......... .......... .......... 21% 36.5M 1s -2023-11-07T14:50:52Z #15 1.574 27600K .......... .......... .......... .......... .......... 21% 36.9M 1s -2023-11-07T14:50:52Z #15 1.575 27650K .......... .......... .......... .......... .......... 21% 35.4M 1s -2023-11-07T14:50:52Z #15 1.576 27700K .......... .......... .......... .......... .......... 21% 45.2M 1s -2023-11-07T14:50:52Z #15 1.578 27750K .......... .......... .......... .......... .......... 21% 53.7M 1s -2023-11-07T14:50:52Z #15 1.579 27800K .......... .......... .......... .......... .......... 21% 37.1M 1s -2023-11-07T14:50:52Z #15 1.580 27850K .......... .......... .......... .......... .......... 21% 38.1M 1s -2023-11-07T14:50:52Z #15 1.581 27900K .......... .......... .......... .......... .......... 21% 45.9M 1s -2023-11-07T14:50:52Z #15 1.582 27950K .......... .......... .......... .......... .......... 21% 48.1M 1s -2023-11-07T14:50:52Z #15 1.583 28000K .......... .......... .......... .......... .......... 21% 91.1M 1s -2023-11-07T14:50:52Z #15 1.584 28050K .......... .......... .......... .......... .......... 21% 53.7M 1s -2023-11-07T14:50:52Z #15 1.585 28100K .......... .......... .......... .......... .......... 21% 28.4M 1s -2023-11-07T14:50:52Z #15 1.586 28150K .......... .......... .......... .......... .......... 21% 39.0M 1s -2023-11-07T14:50:52Z #15 1.588 28200K .......... .......... .......... .......... .......... 21% 39.9M 1s -2023-11-07T14:50:52Z #15 1.589 28250K .......... .......... .......... .......... .......... 21% 56.6M 1s -2023-11-07T14:50:52Z #15 1.590 28300K .......... .......... .......... .......... .......... 21% 41.4M 1s -2023-11-07T14:50:52Z #15 1.591 28350K .......... .......... .......... .......... .......... 21% 33.7M 1s -2023-11-07T14:50:52Z #15 1.593 28400K .......... .......... .......... .......... .......... 21% 49.3M 1s -2023-11-07T14:50:52Z #15 1.593 28450K .......... .......... .......... .......... .......... 21% 54.6M 1s -2023-11-07T14:50:52Z #15 1.594 28500K .......... .......... .......... .......... .......... 22% 108M 1s -2023-11-07T14:50:52Z #15 1.595 28550K .......... .......... .......... .......... .......... 22% 61.0M 1s -2023-11-07T14:50:52Z #15 1.595 28600K .......... .......... .......... .......... .......... 22% 37.5M 1s -2023-11-07T14:50:52Z #15 1.597 28650K .......... .......... .......... .......... .......... 22% 53.1M 1s -2023-11-07T14:50:52Z #15 1.601 28700K .......... .......... .......... .......... .......... 22% 121M 1s -2023-11-07T14:50:52Z #15 1.601 28750K .......... .......... .......... .......... .......... 22% 52.8M 1s -2023-11-07T14:50:52Z #15 1.601 28800K .......... .......... .......... .......... .......... 22% 53.5M 1s -2023-11-07T14:50:52Z #15 1.601 28850K .......... .......... .......... .......... .......... 22% 45.2M 1s -2023-11-07T14:50:52Z #15 1.601 28900K .......... .......... .......... .......... .......... 22% 42.3M 1s -2023-11-07T14:50:52Z #15 1.602 28950K .......... .......... .......... .......... .......... 22% 43.5M 1s -2023-11-07T14:50:52Z #15 1.604 29000K .......... .......... .......... .......... .......... 22% 123M 1s -2023-11-07T14:50:52Z #15 1.604 29050K .......... .......... .......... .......... .......... 22% 20.9M 1s -2023-11-07T14:50:52Z #15 1.606 29100K .......... .......... .......... .......... .......... 22% 60.6M 1s -2023-11-07T14:50:52Z #15 1.607 29150K .......... .......... .......... .......... .......... 22% 73.4M 1s -2023-11-07T14:50:52Z #15 1.608 29200K .......... .......... .......... .......... .......... 22% 115M 1s -2023-11-07T14:50:52Z #15 1.608 29250K .......... .......... .......... .......... .......... 22% 39.4M 1s -2023-11-07T14:50:52Z #15 1.609 29300K .......... .......... .......... .......... .......... 22% 68.8M 1s -2023-11-07T14:50:52Z #15 1.611 29350K .......... .......... .......... .......... .......... 22% 107M 1s -2023-11-07T14:50:52Z #15 1.611 29400K .......... .......... .......... .......... .......... 22% 159M 1s -2023-11-07T14:50:52Z #15 1.611 29450K .......... .......... .......... .......... .......... 22% 68.8M 1s -2023-11-07T14:50:52Z #15 1.611 29500K .......... .......... .......... .......... .......... 22% 49.4M 1s -2023-11-07T14:50:52Z #15 1.612 29550K .......... .......... .......... .......... .......... 22% 96.6M 1s -2023-11-07T14:50:52Z #15 1.613 29600K .......... .......... .......... .......... .......... 22% 48.4M 1s -2023-11-07T14:50:52Z #15 1.614 29650K .......... .......... .......... .......... .......... 22% 56.5M 1s -2023-11-07T14:50:52Z #15 1.615 29700K .......... .......... .......... .......... .......... 22% 59.0M 1s -2023-11-07T14:50:52Z #15 1.616 29750K .......... .......... .......... .......... .......... 22% 47.3M 1s -2023-11-07T14:50:52Z #15 1.617 29800K .......... .......... .......... .......... .......... 23% 41.2M 1s -2023-11-07T14:50:52Z #15 1.618 29850K .......... .......... .......... .......... .......... 23% 67.2M 1s -2023-11-07T14:50:52Z #15 1.619 29900K .......... .......... .......... .......... .......... 23% 57.5M 1s -2023-11-07T14:50:52Z #15 1.619 29950K .......... .......... .......... .......... .......... 23% 52.3M 1s -2023-11-07T14:50:52Z #15 1.620 30000K .......... .......... .......... .......... .......... 23% 46.0M 1s -2023-11-07T14:50:52Z #15 1.622 30050K .......... .......... .......... .......... .......... 23% 61.4M 1s -2023-11-07T14:50:52Z #15 1.622 30100K .......... .......... .......... .......... .......... 23% 41.3M 1s -2023-11-07T14:50:52Z #15 1.624 30150K .......... .......... .......... .......... .......... 23% 58.8M 1s -2023-11-07T14:50:52Z #15 1.624 30200K .......... .......... .......... .......... .......... 23% 42.5M 1s -2023-11-07T14:50:52Z #15 1.625 30250K .......... .......... .......... .......... .......... 23% 70.7M 1s -2023-11-07T14:50:52Z #15 1.626 30300K .......... .......... .......... .......... .......... 23% 48.6M 1s -2023-11-07T14:50:52Z #15 1.627 30350K .......... .......... .......... .......... .......... 23% 45.7M 1s -2023-11-07T14:50:52Z #15 1.633 30400K .......... .......... .......... .......... .......... 23% 80.2M 1s -2023-11-07T14:50:52Z #15 1.633 30450K .......... .......... .......... .......... .......... 23% 81.1M 1s -2023-11-07T14:50:52Z #15 1.633 30500K .......... .......... .......... .......... .......... 23% 63.3M 1s -2023-11-07T14:50:52Z #15 1.633 30550K .......... .......... .......... .......... .......... 23% 83.3M 1s -2023-11-07T14:50:52Z #15 1.633 30600K .......... .......... .......... .......... .......... 23% 65.0M 1s -2023-11-07T14:50:52Z #15 1.633 30650K .......... .......... .......... .......... .......... 23% 79.9M 1s -2023-11-07T14:50:52Z #15 1.633 30700K .......... .......... .......... .......... .......... 23% 71.9M 1s -2023-11-07T14:50:52Z #15 1.633 30750K .......... .......... .......... .......... .......... 23% 39.1M 1s -2023-11-07T14:50:52Z #15 1.634 30800K .......... .......... .......... .......... .......... 23% 42.2M 1s -2023-11-07T14:50:52Z #15 1.635 30850K .......... .......... .......... .......... .......... 23% 34.3M 1s -2023-11-07T14:50:52Z #15 1.636 30900K .......... .......... .......... .......... .......... 23% 40.9M 1s -2023-11-07T14:50:52Z #15 1.638 30950K .......... .......... .......... .......... .......... 23% 51.1M 1s -2023-11-07T14:50:52Z #15 1.639 31000K .......... .......... .......... .......... .......... 23% 46.6M 1s -2023-11-07T14:50:52Z #15 1.640 31050K .......... .......... .......... .......... .......... 24% 47.6M 1s -2023-11-07T14:50:52Z #15 1.641 31100K .......... .......... .......... .......... .......... 24% 53.1M 1s -2023-11-07T14:50:52Z #15 1.642 31150K .......... .......... .......... .......... .......... 24% 50.8M 1s -2023-11-07T14:50:52Z #15 1.643 31200K .......... .......... .......... .......... .......... 24% 43.3M 1s -2023-11-07T14:50:52Z #15 1.644 31250K .......... .......... .......... .......... .......... 24% 48.4M 1s -2023-11-07T14:50:52Z #15 1.645 31300K .......... .......... .......... .......... .......... 24% 41.3M 1s -2023-11-07T14:50:52Z #15 1.646 31350K .......... .......... .......... .......... .......... 24% 48.4M 1s -2023-11-07T14:50:52Z #15 1.647 31400K .......... .......... .......... .......... .......... 24% 41.4M 1s -2023-11-07T14:50:52Z #15 1.648 31450K .......... .......... .......... .......... .......... 24% 54.3M 1s -2023-11-07T14:50:52Z #15 1.649 31500K .......... .......... .......... .......... .......... 24% 47.3M 1s -2023-11-07T14:50:52Z #15 1.650 31550K .......... .......... .......... .......... .......... 24% 43.5M 1s -2023-11-07T14:50:52Z #15 1.651 31600K .......... .......... .......... .......... .......... 24% 46.8M 1s -2023-11-07T14:50:52Z #15 1.652 31650K .......... .......... .......... .......... .......... 24% 37.0M 1s -2023-11-07T14:50:52Z #15 1.654 31700K .......... .......... .......... .......... .......... 24% 39.8M 1s -2023-11-07T14:50:52Z #15 1.655 31750K .......... .......... .......... .......... .......... 24% 61.3M 1s -2023-11-07T14:50:52Z #15 1.655 31800K .......... .......... .......... .......... .......... 24% 62.5M 1s -2023-11-07T14:50:52Z #15 1.656 31850K .......... .......... .......... .......... .......... 24% 47.0M 1s -2023-11-07T14:50:52Z #15 1.657 31900K .......... .......... .......... .......... .......... 24% 38.8M 1s -2023-11-07T14:50:52Z #15 1.659 31950K .......... .......... .......... .......... .......... 24% 56.6M 1s -2023-11-07T14:50:52Z #15 1.660 32000K .......... .......... .......... .......... .......... 24% 36.2M 1s -2023-11-07T14:50:52Z #15 1.661 32050K .......... .......... .......... .......... .......... 24% 65.3M 1s -2023-11-07T14:50:52Z #15 1.662 32100K .......... .......... .......... .......... .......... 24% 51.0M 1s -2023-11-07T14:50:52Z #15 1.662 32150K .......... .......... .......... .......... .......... 24% 50.4M 1s -2023-11-07T14:50:52Z #15 1.664 32200K .......... .......... .......... .......... .......... 24% 166M 1s -2023-11-07T14:50:52Z #15 1.664 32250K .......... .......... .......... .......... .......... 24% 32.6M 1s -2023-11-07T14:50:52Z #15 1.666 32300K .......... .......... .......... .......... .......... 24% 102M 1s -2023-11-07T14:50:52Z #15 1.666 32350K .......... .......... .......... .......... .......... 25% 40.9M 1s -2023-11-07T14:50:52Z #15 1.667 32400K .......... .......... .......... .......... .......... 25% 50.1M 1s -2023-11-07T14:50:52Z #15 1.668 32450K .......... .......... .......... .......... .......... 25% 46.1M 1s -2023-11-07T14:50:52Z #15 1.669 32500K .......... .......... .......... .......... .......... 25% 52.2M 1s -2023-11-07T14:50:52Z #15 1.670 32550K .......... .......... .......... .......... .......... 25% 42.3M 1s -2023-11-07T14:50:52Z #15 1.671 32600K .......... .......... .......... .......... .......... 25% 47.4M 1s -2023-11-07T14:50:52Z #15 1.673 32650K .......... .......... .......... .......... .......... 25% 82.2M 1s -2023-11-07T14:50:52Z #15 1.673 32700K .......... .......... .......... .......... .......... 25% 47.6M 1s -2023-11-07T14:50:52Z #15 1.674 32750K .......... .......... .......... .......... .......... 25% 45.4M 1s -2023-11-07T14:50:52Z #15 1.675 32800K .......... .......... .......... .......... .......... 25% 29.9M 1s -2023-11-07T14:50:52Z #15 1.676 32850K .......... .......... .......... .......... .......... 25% 43.7M 1s -2023-11-07T14:50:52Z #15 1.678 32900K .......... .......... .......... .......... .......... 25% 56.6M 1s -2023-11-07T14:50:52Z #15 1.679 32950K .......... .......... .......... .......... .......... 25% 43.7M 1s -2023-11-07T14:50:52Z #15 1.680 33000K .......... .......... .......... .......... .......... 25% 39.7M 1s -2023-11-07T14:50:52Z #15 1.681 33050K .......... .......... .......... .......... .......... 25% 42.8M 1s -2023-11-07T14:50:52Z #15 1.682 33100K .......... .......... .......... .......... .......... 25% 44.2M 1s -2023-11-07T14:50:52Z #15 1.683 33150K .......... .......... .......... .......... .......... 25% 44.0M 1s -2023-11-07T14:50:52Z #15 1.684 33200K .......... .......... .......... .......... .......... 25% 34.4M 1s -2023-11-07T14:50:52Z #15 1.686 33250K .......... .......... .......... .......... .......... 25% 84.7M 1s -2023-11-07T14:50:52Z #15 1.686 33300K .......... .......... .......... .......... .......... 25% 41.8M 1s -2023-11-07T14:50:52Z #15 1.687 33350K .......... .......... .......... .......... .......... 25% 57.5M 1s -2023-11-07T14:50:52Z #15 1.688 33400K .......... .......... .......... .......... .......... 25% 44.7M 1s -2023-11-07T14:50:52Z #15 1.689 33450K .......... .......... .......... .......... .......... 25% 135M 1s -2023-11-07T14:50:52Z #15 1.689 33500K .......... .......... .......... .......... .......... 25% 59.4M 1s -2023-11-07T14:50:52Z #15 1.690 33550K .......... .......... .......... .......... .......... 25% 56.9M 1s -2023-11-07T14:50:52Z #15 1.691 33600K .......... .......... .......... .......... .......... 25% 30.8M 1s -2023-11-07T14:50:52Z #15 1.693 33650K .......... .......... .......... .......... .......... 26% 58.0M 1s -2023-11-07T14:50:52Z #15 1.694 33700K .......... .......... .......... .......... .......... 26% 163M 1s -2023-11-07T14:50:52Z #15 1.694 33750K .......... .......... .......... .......... .......... 26% 34.1M 1s -2023-11-07T14:50:52Z #15 1.695 33800K .......... .......... .......... .......... .......... 26% 43.9M 1s -2023-11-07T14:50:52Z #15 1.696 33850K .......... .......... .......... .......... .......... 26% 49.7M 1s -2023-11-07T14:50:52Z #15 1.698 33900K .......... .......... .......... .......... .......... 26% 86.6M 1s -2023-11-07T14:50:52Z #15 1.698 33950K .......... .......... .......... .......... .......... 26% 35.1M 1s -2023-11-07T14:50:52Z #15 1.703 34000K .......... .......... .......... .......... .......... 26% 41.9M 1s -2023-11-07T14:50:52Z #15 1.703 34050K .......... .......... .......... .......... .......... 26% 49.8M 1s -2023-11-07T14:50:52Z #15 1.703 34100K .......... .......... .......... .......... .......... 26% 44.1M 1s -2023-11-07T14:50:52Z #15 1.703 34150K .......... .......... .......... .......... .......... 26% 38.6M 1s -2023-11-07T14:50:52Z #15 1.704 34200K .......... .......... .......... .......... .......... 26% 48.9M 1s -2023-11-07T14:50:52Z #15 1.705 34250K .......... .......... .......... .......... .......... 26% 69.0M 1s -2023-11-07T14:50:52Z #15 1.706 34300K .......... .......... .......... .......... .......... 26% 145M 1s -2023-11-07T14:50:52Z #15 1.706 34350K .......... .......... .......... .......... .......... 26% 40.5M 1s -2023-11-07T14:50:52Z #15 1.708 34400K .......... .......... .......... .......... .......... 26% 28.4M 1s -2023-11-07T14:50:52Z #15 1.709 34450K .......... .......... .......... .......... .......... 26% 41.6M 1s -2023-11-07T14:50:52Z #15 1.710 34500K .......... .......... .......... .......... .......... 26% 40.2M 1s -2023-11-07T14:50:52Z #15 1.711 34550K .......... .......... .......... .......... .......... 26% 45.2M 1s -2023-11-07T14:50:52Z #15 1.712 34600K .......... .......... .......... .......... .......... 26% 49.7M 1s -2023-11-07T14:50:52Z #15 1.713 34650K .......... .......... .......... .......... .......... 26% 41.5M 1s -2023-11-07T14:50:52Z #15 1.715 34700K .......... .......... .......... .......... .......... 26% 38.7M 1s -2023-11-07T14:50:52Z #15 1.717 34750K .......... .......... .......... .......... .......... 26% 52.8M 1s -2023-11-07T14:50:52Z #15 1.717 34800K .......... .......... .......... .......... .......... 26% 31.7M 1s -2023-11-07T14:50:52Z #15 1.721 34850K .......... .......... .......... .......... .......... 26% 46.6M 1s -2023-11-07T14:50:52Z #15 1.721 34900K .......... .......... .......... .......... .......... 26% 57.1M 1s -2023-11-07T14:50:52Z #15 1.721 34950K .......... .......... .......... .......... .......... 27% 30.9M 1s -2023-11-07T14:50:52Z #15 1.722 35000K .......... .......... .......... .......... .......... 27% 40.8M 1s -2023-11-07T14:50:52Z #15 1.724 35050K .......... .......... .......... .......... .......... 27% 117M 1s -2023-11-07T14:50:52Z #15 1.724 35100K .......... .......... .......... .......... .......... 27% 167M 1s -2023-11-07T14:50:52Z #15 1.724 35150K .......... .......... .......... .......... .......... 27% 44.2M 1s -2023-11-07T14:50:52Z #15 1.725 35200K .......... .......... .......... .......... .......... 27% 42.4M 1s -2023-11-07T14:50:52Z #15 1.726 35250K .......... .......... .......... .......... .......... 27% 52.4M 1s -2023-11-07T14:50:52Z #15 1.727 35300K .......... .......... .......... .......... .......... 27% 153M 1s -2023-11-07T14:50:52Z #15 1.727 35350K .......... .......... .......... .......... .......... 27% 28.8M 1s -2023-11-07T14:50:52Z #15 1.729 35400K .......... .......... .......... .......... .......... 27% 55.0M 1s -2023-11-07T14:50:52Z #15 1.733 35450K .......... .......... .......... .......... .......... 27% 53.5M 1s -2023-11-07T14:50:52Z #15 1.733 35500K .......... .......... .......... .......... .......... 27% 48.4M 1s -2023-11-07T14:50:52Z #15 1.733 35550K .......... .......... .......... .......... .......... 27% 46.2M 1s -2023-11-07T14:50:52Z #15 1.733 35600K .......... .......... .......... .......... .......... 27% 36.0M 1s -2023-11-07T14:50:52Z #15 1.734 35650K .......... .......... .......... .......... .......... 27% 62.0M 1s -2023-11-07T14:50:52Z #15 1.735 35700K .......... .......... .......... .......... .......... 27% 58.8M 1s -2023-11-07T14:50:52Z #15 1.736 35750K .......... .......... .......... .......... .......... 27% 61.1M 1s -2023-11-07T14:50:52Z #15 1.737 35800K .......... .......... .......... .......... .......... 27% 62.1M 1s -2023-11-07T14:50:52Z #15 1.738 35850K .......... .......... .......... .......... .......... 27% 119M 1s -2023-11-07T14:50:52Z #15 1.738 35900K .......... .......... .......... .......... .......... 27% 61.4M 1s -2023-11-07T14:50:52Z #15 1.739 35950K .......... .......... .......... .......... .......... 27% 39.1M 1s -2023-11-07T14:50:52Z #15 1.740 36000K .......... .......... .......... .......... .......... 27% 47.1M 1s -2023-11-07T14:50:52Z #15 1.741 36050K .......... .......... .......... .......... .......... 27% 29.1M 1s -2023-11-07T14:50:52Z #15 1.743 36100K .......... .......... .......... .......... .......... 27% 51.8M 1s -2023-11-07T14:50:52Z #15 1.743 36150K .......... .......... .......... .......... .......... 27% 43.3M 1s -2023-11-07T14:50:52Z #15 1.745 36200K .......... .......... .......... .......... .......... 27% 46.3M 1s -2023-11-07T14:50:52Z #15 1.746 36250K .......... .......... .......... .......... .......... 28% 46.6M 1s -2023-11-07T14:50:52Z #15 1.746 36300K .......... .......... .......... .......... .......... 28% 59.5M 1s -2023-11-07T14:50:52Z #15 1.747 36350K .......... .......... .......... .......... .......... 28% 77.7M 1s -2023-11-07T14:50:52Z #15 1.748 36400K .......... .......... .......... .......... .......... 28% 43.8M 1s -2023-11-07T14:50:52Z #15 1.749 36450K .......... .......... .......... .......... .......... 28% 55.8M 1s -2023-11-07T14:50:52Z #15 1.751 36500K .......... .......... .......... .......... .......... 28% 129M 1s -2023-11-07T14:50:52Z #15 1.751 36550K .......... .......... .......... .......... .......... 28% 33.4M 1s -2023-11-07T14:50:52Z #15 1.752 36600K .......... .......... .......... .......... .......... 28% 45.7M 1s -2023-11-07T14:50:52Z #15 1.753 36650K .......... .......... .......... .......... .......... 28% 59.6M 1s -2023-11-07T14:50:52Z #15 1.754 36700K .......... .......... .......... .......... .......... 28% 45.9M 1s -2023-11-07T14:50:52Z #15 1.755 36750K .......... .......... .......... .......... .......... 28% 47.0M 1s -2023-11-07T14:50:52Z #15 1.756 36800K .......... .......... .......... .......... .......... 28% 48.8M 1s -2023-11-07T14:50:52Z #15 1.757 36850K .......... .......... .......... .......... .......... 28% 44.6M 1s -2023-11-07T14:50:52Z #15 1.758 36900K .......... .......... .......... .......... .......... 28% 72.6M 1s -2023-11-07T14:50:52Z #15 1.759 36950K .......... .......... .......... .......... .......... 28% 56.7M 1s -2023-11-07T14:50:52Z #15 1.760 37000K .......... .......... .......... .......... .......... 28% 127M 1s -2023-11-07T14:50:52Z #15 1.760 37050K .......... .......... .......... .......... .......... 28% 27.8M 1s -2023-11-07T14:50:52Z #15 1.762 37100K .......... .......... .......... .......... .......... 28% 72.4M 1s -2023-11-07T14:50:52Z #15 1.762 37150K .......... .......... .......... .......... .......... 28% 39.2M 1s -2023-11-07T14:50:52Z #15 1.764 37200K .......... .......... .......... .......... .......... 28% 47.3M 1s -2023-11-07T14:50:52Z #15 1.765 37250K .......... .......... .......... .......... .......... 28% 62.6M 1s -2023-11-07T14:50:52Z #15 1.766 37300K .......... .......... .......... .......... .......... 28% 82.5M 1s -2023-11-07T14:50:52Z #15 1.766 37350K .......... .......... .......... .......... .......... 28% 32.5M 1s -2023-11-07T14:50:52Z #15 1.768 37400K .......... .......... .......... .......... .......... 28% 46.0M 1s -2023-11-07T14:50:52Z #15 1.769 37450K .......... .......... .......... .......... .......... 28% 45.7M 1s -2023-11-07T14:50:52Z #15 1.770 37500K .......... .......... .......... .......... .......... 28% 32.3M 1s -2023-11-07T14:50:52Z #15 1.771 37550K .......... .......... .......... .......... .......... 29% 45.7M 1s -2023-11-07T14:50:52Z #15 1.772 37600K .......... .......... .......... .......... .......... 29% 48.7M 1s -2023-11-07T14:50:52Z #15 1.773 37650K .......... .......... .......... .......... .......... 29% 37.2M 1s -2023-11-07T14:50:52Z #15 1.775 37700K .......... .......... .......... .......... .......... 29% 49.8M 1s -2023-11-07T14:50:52Z #15 1.775 37750K .......... .......... .......... .......... .......... 29% 36.0M 1s -2023-11-07T14:50:52Z #15 1.777 37800K .......... .......... .......... .......... .......... 29% 40.2M 1s -2023-11-07T14:50:52Z #15 1.779 37850K .......... .......... .......... .......... .......... 29% 48.4M 1s -2023-11-07T14:50:52Z #15 1.779 37900K .......... .......... .......... .......... .......... 29% 61.3M 1s -2023-11-07T14:50:52Z #15 1.780 37950K .......... .......... .......... .......... .......... 29% 38.3M 1s -2023-11-07T14:50:52Z #15 1.781 38000K .......... .......... .......... .......... .......... 29% 77.2M 1s -2023-11-07T14:50:52Z #15 1.782 38050K .......... .......... .......... .......... .......... 29% 50.8M 1s -2023-11-07T14:50:52Z #15 1.783 38100K .......... .......... .......... .......... .......... 29% 131M 1s -2023-11-07T14:50:52Z #15 1.783 38150K .......... .......... .......... .......... .......... 29% 28.3M 1s -2023-11-07T14:50:52Z #15 1.785 38200K .......... .......... .......... .......... .......... 29% 50.9M 1s -2023-11-07T14:50:52Z #15 1.786 38250K .......... .......... .......... .......... .......... 29% 41.5M 1s -2023-11-07T14:50:52Z #15 1.787 38300K .......... .......... .......... .......... .......... 29% 46.8M 1s -2023-11-07T14:50:52Z #15 1.788 38350K .......... .......... .......... .......... .......... 29% 53.5M 1s -2023-11-07T14:50:52Z #15 1.789 38400K .......... .......... .......... .......... .......... 29% 40.1M 1s -2023-11-07T14:50:52Z #15 1.791 38450K .......... .......... .......... .......... .......... 29% 36.7M 1s -2023-11-07T14:50:52Z #15 1.792 38500K .......... .......... .......... .......... .......... 29% 52.8M 1s -2023-11-07T14:50:52Z #15 1.792 38550K .......... .......... .......... .......... .......... 29% 79.7M 1s -2023-11-07T14:50:52Z #15 1.796 38600K .......... .......... .......... .......... .......... 29% 129M 1s -2023-11-07T14:50:52Z #15 1.796 38650K .......... .......... .......... .......... .......... 29% 173M 1s -2023-11-07T14:50:52Z #15 1.796 38700K .......... .......... .......... .......... .......... 29% 173M 1s -2023-11-07T14:50:52Z #15 1.796 38750K .......... .......... .......... .......... .......... 29% 157M 1s -2023-11-07T14:50:52Z #15 1.796 38800K .......... .......... .......... .......... .......... 29% 152M 1s -2023-11-07T14:50:52Z #15 1.796 38850K .......... .......... .......... .......... .......... 30% 138M 1s -2023-11-07T14:50:52Z #15 1.796 38900K .......... .......... .......... .......... .......... 30% 164M 1s -2023-11-07T14:50:52Z #15 1.796 38950K .......... .......... .......... .......... .......... 30% 141M 1s -2023-11-07T14:50:52Z #15 1.796 39000K .......... .......... .......... .......... .......... 30% 121M 1s -2023-11-07T14:50:52Z #15 1.796 39050K .......... .......... .......... .......... .......... 30% 142M 1s -2023-11-07T14:50:52Z #15 1.796 39100K .......... .......... .......... .......... .......... 30% 27.0M 1s -2023-11-07T14:50:52Z #15 1.798 39150K .......... .......... .......... .......... .......... 30% 29.6M 1s -2023-11-07T14:50:52Z #15 1.800 39200K .......... .......... .......... .......... .......... 30% 43.0M 1s -2023-11-07T14:50:52Z #15 1.801 39250K .......... .......... .......... .......... .......... 30% 42.5M 1s -2023-11-07T14:50:52Z #15 1.802 39300K .......... .......... .......... .......... .......... 30% 37.4M 1s -2023-11-07T14:50:52Z #15 1.804 39350K .......... .......... .......... .......... .......... 30% 36.4M 1s -2023-11-07T14:50:52Z #15 1.805 39400K .......... .......... .......... .......... .......... 30% 49.8M 1s -2023-11-07T14:50:52Z #15 1.806 39450K .......... .......... .......... .......... .......... 30% 52.6M 1s -2023-11-07T14:50:52Z #15 1.812 39500K .......... .......... .......... .......... .......... 30% 44.7M 1s -2023-11-07T14:50:52Z #15 1.812 39550K .......... .......... .......... .......... .......... 30% 42.5M 1s -2023-11-07T14:50:52Z #15 1.812 39600K .......... .......... .......... .......... .......... 30% 47.4M 1s -2023-11-07T14:50:52Z #15 1.812 39650K .......... .......... .......... .......... .......... 30% 43.8M 1s -2023-11-07T14:50:52Z #15 1.812 39700K .......... .......... .......... .......... .......... 30% 54.4M 1s -2023-11-07T14:50:52Z #15 1.812 39750K .......... .......... .......... .......... .......... 30% 67.4M 1s -2023-11-07T14:50:52Z #15 1.815 39800K .......... .......... .......... .......... .......... 30% 125M 1s -2023-11-07T14:50:52Z #15 1.815 39850K .......... .......... .......... .......... .......... 30% 125M 1s -2023-11-07T14:50:52Z #15 1.815 39900K .......... .......... .......... .......... .......... 30% 108M 1s -2023-11-07T14:50:52Z #15 1.815 39950K .......... .......... .......... .......... .......... 30% 123M 1s -2023-11-07T14:50:52Z #15 1.815 40000K .......... .......... .......... .......... .......... 30% 140M 1s -2023-11-07T14:50:52Z #15 1.815 40050K .......... .......... .......... .......... .......... 30% 72.0M 1s -2023-11-07T14:50:52Z #15 1.815 40100K .......... .......... .......... .......... .......... 30% 52.7M 1s -2023-11-07T14:50:52Z #15 1.816 40150K .......... .......... .......... .......... .......... 31% 37.9M 1s -2023-11-07T14:50:52Z #15 1.818 40200K .......... .......... .......... .......... .......... 31% 109M 1s -2023-11-07T14:50:52Z #15 1.818 40250K .......... .......... .......... .......... .......... 31% 43.1M 1s -2023-11-07T14:50:52Z #15 1.819 40300K .......... .......... .......... .......... .......... 31% 110M 1s -2023-11-07T14:50:52Z #15 1.819 40350K .......... .......... .......... .......... .......... 31% 124M 1s -2023-11-07T14:50:52Z #15 1.820 40400K .......... .......... .......... .......... .......... 31% 64.2M 1s -2023-11-07T14:50:52Z #15 1.821 40450K .......... .......... .......... .......... .......... 31% 74.3M 1s -2023-11-07T14:50:52Z #15 1.821 40500K .......... .......... .......... .......... .......... 31% 97.4M 1s -2023-11-07T14:50:52Z #15 1.822 40550K .......... .......... .......... .......... .......... 31% 92.8M 1s -2023-11-07T14:50:52Z #15 1.822 40600K .......... .......... .......... .......... .......... 31% 96.7M 1s -2023-11-07T14:50:52Z #15 1.823 40650K .......... .......... .......... .......... .......... 31% 67.0M 1s -2023-11-07T14:50:52Z #15 1.824 40700K .......... .......... .......... .......... .......... 31% 160M 1s -2023-11-07T14:50:52Z #15 1.824 40750K .......... .......... .......... .......... .......... 31% 73.1M 1s -2023-11-07T14:50:52Z #15 1.825 40800K .......... .......... .......... .......... .......... 31% 92.4M 1s -2023-11-07T14:50:52Z #15 1.825 40850K .......... .......... .......... .......... .......... 31% 46.2M 1s -2023-11-07T14:50:52Z #15 1.826 40900K .......... .......... .......... .......... .......... 31% 44.2M 1s -2023-11-07T14:50:52Z #15 1.827 40950K .......... .......... .......... .......... .......... 31% 59.2M 1s -2023-11-07T14:50:52Z #15 1.828 41000K .......... .......... .......... .......... .......... 31% 47.7M 1s -2023-11-07T14:50:52Z #15 1.829 41050K .......... .......... .......... .......... .......... 31% 60.0M 1s -2023-11-07T14:50:52Z #15 1.830 41100K .......... .......... .......... .......... .......... 31% 50.6M 1s -2023-11-07T14:50:52Z #15 1.831 41150K .......... .......... .......... .......... .......... 31% 55.2M 1s -2023-11-07T14:50:52Z #15 1.833 41200K .......... .......... .......... .......... .......... 31% 125M 1s -2023-11-07T14:50:52Z #15 1.833 41250K .......... .......... .......... .......... .......... 31% 123M 1s -2023-11-07T14:50:52Z #15 1.833 41300K .......... .......... .......... .......... .......... 31% 69.9M 1s -2023-11-07T14:50:52Z #15 1.834 41350K .......... .......... .......... .......... .......... 31% 143M 1s -2023-11-07T14:50:52Z #15 1.834 41400K .......... .......... .......... .......... .......... 31% 61.9M 1s -2023-11-07T14:50:52Z #15 1.834 41450K .......... .......... .......... .......... .......... 32% 109M 1s -2023-11-07T14:50:52Z #15 1.835 41500K .......... .......... .......... .......... .......... 32% 58.9M 1s -2023-11-07T14:50:52Z #15 1.836 41550K .......... .......... .......... .......... .......... 32% 120M 1s -2023-11-07T14:50:52Z #15 1.836 41600K .......... .......... .......... .......... .......... 32% 99.7M 1s -2023-11-07T14:50:52Z #15 1.837 41650K .......... .......... .......... .......... .......... 32% 91.1M 1s -2023-11-07T14:50:52Z #15 1.837 41700K .......... .......... .......... .......... .......... 32% 95.3M 1s -2023-11-07T14:50:52Z #15 1.838 41750K .......... .......... .......... .......... .......... 32% 125M 1s -2023-11-07T14:50:52Z #15 1.838 41800K .......... .......... .......... .......... .......... 32% 61.1M 1s -2023-11-07T14:50:52Z #15 1.839 41850K .......... .......... .......... .......... .......... 32% 105M 1s -2023-11-07T14:50:52Z #15 1.839 41900K .......... .......... .......... .......... .......... 32% 90.7M 1s -2023-11-07T14:50:52Z #15 1.840 41950K .......... .......... .......... .......... .......... 32% 99.9M 1s -2023-11-07T14:50:52Z #15 1.840 42000K .......... .......... .......... .......... .......... 32% 81.9M 1s -2023-11-07T14:50:52Z #15 1.841 42050K .......... .......... .......... .......... .......... 32% 102M 1s -2023-11-07T14:50:52Z #15 1.841 42100K .......... .......... .......... .......... .......... 32% 119M 1s -2023-11-07T14:50:52Z #15 1.842 42150K .......... .......... .......... .......... .......... 32% 86.2M 1s -2023-11-07T14:50:52Z #15 1.842 42200K .......... .......... .......... .......... .......... 32% 68.0M 1s -2023-11-07T14:50:52Z #15 1.843 42250K .......... .......... .......... .......... .......... 32% 80.8M 1s -2023-11-07T14:50:52Z #15 1.844 42300K .......... .......... .......... .......... .......... 32% 129M 1s -2023-11-07T14:50:52Z #15 1.844 42350K .......... .......... .......... .......... .......... 32% 78.2M 1s -2023-11-07T14:50:52Z #15 1.845 42400K .......... .......... .......... .......... .......... 32% 86.0M 1s -2023-11-07T14:50:52Z #15 1.846 42450K .......... .......... .......... .......... .......... 32% 116M 1s -2023-11-07T14:50:52Z #15 1.846 42500K .......... .......... .......... .......... .......... 32% 67.7M 1s -2023-11-07T14:50:52Z #15 1.846 42550K .......... .......... .......... .......... .......... 32% 54.1M 1s -2023-11-07T14:50:52Z #15 1.847 42600K .......... .......... .......... .......... .......... 32% 43.7M 1s -2023-11-07T14:50:52Z #15 1.848 42650K .......... .......... .......... .......... .......... 32% 81.4M 1s -2023-11-07T14:50:52Z #15 1.853 42700K .......... .......... .......... .......... .......... 32% 162M 1s -2023-11-07T14:50:52Z #15 1.853 42750K .......... .......... .......... .......... .......... 33% 160M 1s -2023-11-07T14:50:52Z #15 1.853 42800K .......... .......... .......... .......... .......... 33% 148M 1s -2023-11-07T14:50:52Z #15 1.853 42850K .......... .......... .......... .......... .......... 33% 158M 1s -2023-11-07T14:50:52Z #15 1.853 42900K .......... .......... .......... .......... .......... 33% 130M 1s -2023-11-07T14:50:52Z #15 1.853 42950K .......... .......... .......... .......... .......... 33% 164M 1s -2023-11-07T14:50:52Z #15 1.853 43000K .......... .......... .......... .......... .......... 33% 59.4M 1s -2023-11-07T14:50:52Z #15 1.853 43050K .......... .......... .......... .......... .......... 33% 67.8M 1s -2023-11-07T14:50:52Z #15 1.853 43100K .......... .......... .......... .......... .......... 33% 62.4M 1s -2023-11-07T14:50:52Z #15 1.853 43150K .......... .......... .......... .......... .......... 33% 40.6M 1s -2023-11-07T14:50:52Z #15 1.854 43200K .......... .......... .......... .......... .......... 33% 37.9M 1s -2023-11-07T14:50:52Z #15 1.856 43250K .......... .......... .......... .......... .......... 33% 35.9M 1s -2023-11-07T14:50:52Z #15 1.857 43300K .......... .......... .......... .......... .......... 33% 72.0M 1s -2023-11-07T14:50:52Z #15 1.858 43350K .......... .......... .......... .......... .......... 33% 59.3M 1s -2023-11-07T14:50:52Z #15 1.859 43400K .......... .......... .......... .......... .......... 33% 45.5M 1s -2023-11-07T14:50:52Z #15 1.860 43450K .......... .......... .......... .......... .......... 33% 53.5M 1s -2023-11-07T14:50:52Z #15 1.861 43500K .......... .......... .......... .......... .......... 33% 55.7M 1s -2023-11-07T14:50:52Z #15 1.861 43550K .......... .......... .......... .......... .......... 33% 105M 1s -2023-11-07T14:50:52Z #15 1.862 43600K .......... .......... .......... .......... .......... 33% 145M 1s -2023-11-07T14:50:52Z #15 1.862 43650K .......... .......... .......... .......... .......... 33% 70.3M 1s -2023-11-07T14:50:52Z #15 1.863 43700K .......... .......... .......... .......... .......... 33% 82.3M 1s -2023-11-07T14:50:52Z #15 1.863 43750K .......... .......... .......... .......... .......... 33% 71.9M 1s -2023-11-07T14:50:52Z #15 1.865 43800K .......... .......... .......... .......... .......... 33% 111M 1s -2023-11-07T14:50:52Z #15 1.865 43850K .......... .......... .......... .......... .......... 33% 116M 1s -2023-11-07T14:50:52Z #15 1.865 43900K .......... .......... .......... .......... .......... 33% 81.3M 1s -2023-11-07T14:50:52Z #15 1.866 43950K .......... .......... .......... .......... .......... 33% 88.5M 1s -2023-11-07T14:50:52Z #15 1.866 44000K .......... .......... .......... .......... .......... 33% 78.9M 1s -2023-11-07T14:50:52Z #15 1.867 44050K .......... .......... .......... .......... .......... 34% 86.4M 1s -2023-11-07T14:50:52Z #15 1.867 44100K .......... .......... .......... .......... .......... 34% 90.7M 1s -2023-11-07T14:50:52Z #15 1.868 44150K .......... .......... .......... .......... .......... 34% 66.9M 1s -2023-11-07T14:50:52Z #15 1.869 44200K .......... .......... .......... .......... .......... 34% 157M 1s -2023-11-07T14:50:52Z #15 1.869 44250K .......... .......... .......... .......... .......... 34% 61.6M 1s -2023-11-07T14:50:52Z #15 1.870 44300K .......... .......... .......... .......... .......... 34% 85.2M 1s -2023-11-07T14:50:52Z #15 1.870 44350K .......... .......... .......... .......... .......... 34% 136M 1s -2023-11-07T14:50:52Z #15 1.871 44400K .......... .......... .......... .......... .......... 34% 66.4M 1s -2023-11-07T14:50:52Z #15 1.872 44450K .......... .......... .......... .......... .......... 34% 123M 1s -2023-11-07T14:50:52Z #15 1.872 44500K .......... .......... .......... .......... .......... 34% 82.1M 1s -2023-11-07T14:50:52Z #15 1.872 44550K .......... .......... .......... .......... .......... 34% 77.3M 1s -2023-11-07T14:50:52Z #15 1.873 44600K .......... .......... .......... .......... .......... 34% 74.2M 1s -2023-11-07T14:50:52Z #15 1.874 44650K .......... .......... .......... .......... .......... 34% 74.3M 1s -2023-11-07T14:50:52Z #15 1.876 44700K .......... .......... .......... .......... .......... 34% 169M 1s -2023-11-07T14:50:52Z #15 1.876 44750K .......... .......... .......... .......... .......... 34% 140M 1s -2023-11-07T14:50:52Z #15 1.876 44800K .......... .......... .......... .......... .......... 34% 163M 1s -2023-11-07T14:50:52Z #15 1.876 44850K .......... .......... .......... .......... .......... 34% 149M 1s -2023-11-07T14:50:52Z #15 1.876 44900K .......... .......... .......... .......... .......... 34% 167M 1s -2023-11-07T14:50:52Z #15 1.876 44950K .......... .......... .......... .......... .......... 34% 163M 1s -2023-11-07T14:50:52Z #15 1.876 45000K .......... .......... .......... .......... .......... 34% 93.5M 1s -2023-11-07T14:50:52Z #15 1.877 45050K .......... .......... .......... .......... .......... 34% 57.2M 1s -2023-11-07T14:50:52Z #15 1.878 45100K .......... .......... .......... .......... .......... 34% 57.7M 1s -2023-11-07T14:50:52Z #15 1.878 45150K .......... .......... .......... .......... .......... 34% 40.7M 1s -2023-11-07T14:50:52Z #15 1.880 45200K .......... .......... .......... .......... .......... 34% 73.4M 1s -2023-11-07T14:50:52Z #15 1.880 45250K .......... .......... .......... .......... .......... 34% 83.0M 1s -2023-11-07T14:50:52Z #15 1.881 45300K .......... .......... .......... .......... .......... 35% 72.3M 1s -2023-11-07T14:50:52Z #15 1.882 45350K .......... .......... .......... .......... .......... 35% 59.0M 1s -2023-11-07T14:50:52Z #15 1.882 45400K .......... .......... .......... .......... .......... 35% 50.3M 1s -2023-11-07T14:50:52Z #15 1.883 45450K .......... .......... .......... .......... .......... 35% 49.0M 1s -2023-11-07T14:50:52Z #15 1.884 45500K .......... .......... .......... .......... .......... 35% 53.1M 1s -2023-11-07T14:50:52Z #15 1.885 45550K .......... .......... .......... .......... .......... 35% 63.0M 1s -2023-11-07T14:50:52Z #15 1.886 45600K .......... .......... .......... .......... .......... 35% 65.6M 1s -2023-11-07T14:50:52Z #15 1.887 45650K .......... .......... .......... .......... .......... 35% 52.5M 1s -2023-11-07T14:50:52Z #15 1.888 45700K .......... .......... .......... .......... .......... 35% 38.5M 1s -2023-11-07T14:50:52Z #15 1.889 45750K .......... .......... .......... .......... .......... 35% 37.6M 1s -2023-11-07T14:50:52Z #15 1.890 45800K .......... .......... .......... .......... .......... 35% 38.8M 1s -2023-11-07T14:50:52Z #15 1.892 45850K .......... .......... .......... .......... .......... 35% 30.6M 1s -2023-11-07T14:50:52Z #15 1.893 45900K .......... .......... .......... .......... .......... 35% 45.7M 1s -2023-11-07T14:50:52Z #15 1.894 45950K .......... .......... .......... .......... .......... 35% 46.3M 1s -2023-11-07T14:50:52Z #15 1.896 46000K .......... .......... .......... .......... .......... 35% 46.7M 1s -2023-11-07T14:50:52Z #15 1.897 46050K .......... .......... .......... .......... .......... 35% 34.7M 1s -2023-11-07T14:50:52Z #15 1.898 46100K .......... .......... .......... .......... .......... 35% 29.1M 1s -2023-11-07T14:50:52Z #15 1.899 46150K .......... .......... .......... .......... .......... 35% 61.7M 1s -2023-11-07T14:50:52Z #15 1.900 46200K .......... .......... .......... .......... .......... 35% 39.7M 1s -2023-11-07T14:50:52Z #15 1.901 46250K .......... .......... .......... .......... .......... 35% 80.7M 1s -2023-11-07T14:50:52Z #15 1.903 46300K .......... .......... .......... .......... .......... 35% 49.2M 1s -2023-11-07T14:50:52Z #15 1.903 46350K .......... .......... .......... .......... .......... 35% 53.3M 1s -2023-11-07T14:50:52Z #15 1.904 46400K .......... .......... .......... .......... .......... 35% 51.9M 1s -2023-11-07T14:50:52Z #15 1.910 46450K .......... .......... .......... .......... .......... 35% 56.0M 1s -2023-11-07T14:50:52Z #15 1.910 46500K .......... .......... .......... .......... .......... 35% 54.4M 1s -2023-11-07T14:50:52Z #15 1.910 46550K .......... .......... .......... .......... .......... 35% 71.0M 1s -2023-11-07T14:50:52Z #15 1.910 46600K .......... .......... .......... .......... .......... 36% 77.9M 1s -2023-11-07T14:50:52Z #15 1.910 46650K .......... .......... .......... .......... .......... 36% 59.0M 1s -2023-11-07T14:50:52Z #15 1.910 46700K .......... .......... .......... .......... .......... 36% 43.4M 1s -2023-11-07T14:50:52Z #15 1.910 46750K .......... .......... .......... .......... .......... 36% 71.8M 1s -2023-11-07T14:50:52Z #15 1.912 46800K .......... .......... .......... .......... .......... 36% 119M 1s -2023-11-07T14:50:52Z #15 1.912 46850K .......... .......... .......... .......... .......... 36% 116M 1s -2023-11-07T14:50:52Z #15 1.912 46900K .......... .......... .......... .......... .......... 36% 82.2M 1s -2023-11-07T14:50:52Z #15 1.912 46950K .......... .......... .......... .......... .......... 36% 51.8M 1s -2023-11-07T14:50:52Z #15 1.916 47000K .......... .......... .......... .......... .......... 36% 116M 1s -2023-11-07T14:50:52Z #15 1.916 47050K .......... .......... .......... .......... .......... 36% 124M 1s -2023-11-07T14:50:52Z #15 1.916 47100K .......... .......... .......... .......... .......... 36% 104M 1s -2023-11-07T14:50:52Z #15 1.916 47150K .......... .......... .......... .......... .......... 36% 117M 1s -2023-11-07T14:50:52Z #15 1.916 47200K .......... .......... .......... .......... .......... 36% 113M 1s -2023-11-07T14:50:52Z #15 1.916 47250K .......... .......... .......... .......... .......... 36% 128M 1s -2023-11-07T14:50:52Z #15 1.916 47300K .......... .......... .......... .......... .......... 36% 106M 1s -2023-11-07T14:50:52Z #15 1.916 47350K .......... .......... .......... .......... .......... 36% 128M 1s -2023-11-07T14:50:52Z #15 1.916 47400K .......... .......... .......... .......... .......... 36% 49.4M 1s -2023-11-07T14:50:52Z #15 1.927 47450K .......... .......... .......... .......... .......... 36% 83.0M 1s -2023-11-07T14:50:52Z #15 1.927 47500K .......... .......... .......... .......... .......... 36% 108M 1s -2023-11-07T14:50:52Z #15 1.927 47550K .......... .......... .......... .......... .......... 36% 120M 1s -2023-11-07T14:50:52Z #15 1.927 47600K .......... .......... .......... .......... .......... 36% 106M 1s -2023-11-07T14:50:52Z #15 1.927 47650K .......... .......... .......... .......... .......... 36% 66.6M 1s -2023-11-07T14:50:52Z #15 1.927 47700K .......... .......... .......... .......... .......... 36% 66.4M 1s -2023-11-07T14:50:52Z #15 1.927 47750K .......... .......... .......... .......... .......... 36% 67.7M 1s -2023-11-07T14:50:52Z #15 1.927 47800K .......... .......... .......... .......... .......... 36% 65.7M 1s -2023-11-07T14:50:52Z #15 1.927 47850K .......... .......... .......... .......... .......... 36% 78.3M 1s -2023-11-07T14:50:52Z #15 1.927 47900K .......... .......... .......... .......... .......... 37% 69.3M 1s -2023-11-07T14:50:52Z #15 1.927 47950K .......... .......... .......... .......... .......... 37% 65.8M 1s -2023-11-07T14:50:52Z #15 1.927 48000K .......... .......... .......... .......... .......... 37% 103M 1s -2023-11-07T14:50:52Z #15 1.927 48050K .......... .......... .......... .......... .......... 37% 105M 1s -2023-11-07T14:50:52Z #15 1.927 48100K .......... .......... .......... .......... .......... 37% 138M 1s -2023-11-07T14:50:52Z #15 1.927 48150K .......... .......... .......... .......... .......... 37% 120M 1s -2023-11-07T14:50:52Z #15 1.927 48200K .......... .......... .......... .......... .......... 37% 94.8M 1s -2023-11-07T14:50:52Z #15 1.927 48250K .......... .......... .......... .......... .......... 37% 130M 1s -2023-11-07T14:50:52Z #15 1.927 48300K .......... .......... .......... .......... .......... 37% 91.0M 1s -2023-11-07T14:50:52Z #15 1.928 48350K .......... .......... .......... .......... .......... 37% 95.4M 1s -2023-11-07T14:50:52Z #15 1.940 48400K .......... .......... .......... .......... .......... 37% 30.7M 1s -2023-11-07T14:50:52Z #15 1.940 48450K .......... .......... .......... .......... .......... 37% 97.7M 1s -2023-11-07T14:50:52Z #15 1.940 48500K .......... .......... .......... .......... .......... 37% 130M 1s -2023-11-07T14:50:52Z #15 1.940 48550K .......... .......... .......... .......... .......... 37% 120M 1s -2023-11-07T14:50:52Z #15 1.940 48600K .......... .......... .......... .......... .......... 37% 116M 1s -2023-11-07T14:50:52Z #15 1.940 48650K .......... .......... .......... .......... .......... 37% 122M 1s -2023-11-07T14:50:52Z #15 1.940 48700K .......... .......... .......... .......... .......... 37% 98.9M 1s -2023-11-07T14:50:52Z #15 1.940 48750K .......... .......... .......... .......... .......... 37% 69.7M 1s -2023-11-07T14:50:52Z #15 1.940 48800K .......... .......... .......... .......... .......... 37% 58.1M 1s -2023-11-07T14:50:52Z #15 1.940 48850K .......... .......... .......... .......... .......... 37% 86.3M 1s -2023-11-07T14:50:52Z #15 1.940 48900K .......... .......... .......... .......... .......... 37% 150M 1s -2023-11-07T14:50:52Z #15 1.940 48950K .......... .......... .......... .......... .......... 37% 145M 1s -2023-11-07T14:50:52Z #15 1.940 49000K .......... .......... .......... .......... .......... 37% 163M 1s -2023-11-07T14:50:52Z #15 1.940 49050K .......... .......... .......... .......... .......... 37% 153M 1s -2023-11-07T14:50:52Z #15 1.940 49100K .......... .......... .......... .......... .......... 37% 155M 1s -2023-11-07T14:50:52Z #15 1.940 49150K .......... .......... .......... .......... .......... 37% 162M 1s -2023-11-07T14:50:52Z #15 1.940 49200K .......... .......... .......... .......... .......... 38% 5.32M 1s -2023-11-07T14:50:52Z #15 1.945 49250K .......... .......... .......... .......... .......... 38% 138M 1s -2023-11-07T14:50:52Z #15 1.946 49300K .......... .......... .......... .......... .......... 38% 136M 1s -2023-11-07T14:50:52Z #15 1.946 49350K .......... .......... .......... .......... .......... 38% 104M 1s -2023-11-07T14:50:52Z #15 1.946 49400K .......... .......... .......... .......... .......... 38% 134M 1s -2023-11-07T14:50:52Z #15 1.947 49450K .......... .......... .......... .......... .......... 38% 141M 1s -2023-11-07T14:50:52Z #15 1.947 49500K .......... .......... .......... .......... .......... 38% 79.7M 1s -2023-11-07T14:50:52Z #15 1.948 49550K .......... .......... .......... .......... .......... 38% 69.2M 1s -2023-11-07T14:50:52Z #15 1.948 49600K .......... .......... .......... .......... .......... 38% 96.9M 1s -2023-11-07T14:50:52Z #15 1.949 49650K .......... .......... .......... .......... .......... 38% 60.7M 1s -2023-11-07T14:50:52Z #15 1.950 49700K .......... .......... .......... .......... .......... 38% 111M 1s -2023-11-07T14:50:52Z #15 1.950 49750K .......... .......... .......... .......... .......... 38% 87.0M 1s -2023-11-07T14:50:52Z #15 1.951 49800K .......... .......... .......... .......... .......... 38% 116M 1s -2023-11-07T14:50:52Z #15 1.951 49850K .......... .......... .......... .......... .......... 38% 108M 1s -2023-11-07T14:50:52Z #15 1.952 49900K .......... .......... .......... .......... .......... 38% 108M 1s -2023-11-07T14:50:52Z #15 1.952 49950K .......... .......... .......... .......... .......... 38% 21.1M 1s -2023-11-07T14:50:52Z #15 1.954 50000K .......... .......... .......... .......... .......... 38% 114M 1s -2023-11-07T14:50:52Z #15 1.955 50050K .......... .......... .......... .......... .......... 38% 116M 1s -2023-11-07T14:50:52Z #15 1.955 50100K .......... .......... .......... .......... .......... 38% 87.0M 1s -2023-11-07T14:50:52Z #15 1.956 50150K .......... .......... .......... .......... .......... 38% 136M 1s -2023-11-07T14:50:52Z #15 1.956 50200K .......... .......... .......... .......... .......... 38% 111M 1s -2023-11-07T14:50:52Z #15 1.956 50250K .......... .......... .......... .......... .......... 38% 60.2M 1s -2023-11-07T14:50:52Z #15 1.957 50300K .......... .......... .......... .......... .......... 38% 105M 1s -2023-11-07T14:50:52Z #15 1.958 50350K .......... .......... .......... .......... .......... 38% 89.3M 1s -2023-11-07T14:50:52Z #15 1.958 50400K .......... .......... .......... .......... .......... 38% 71.0M 1s -2023-11-07T14:50:52Z #15 1.959 50450K .......... .......... .......... .......... .......... 38% 90.4M 1s -2023-11-07T14:50:52Z #15 1.960 50500K .......... .......... .......... .......... .......... 39% 99.6M 1s -2023-11-07T14:50:52Z #15 1.960 50550K .......... .......... .......... .......... .......... 39% 10.9M 1s -2023-11-07T14:50:52Z #15 1.972 50600K .......... .......... .......... .......... .......... 39% 170M 1s -2023-11-07T14:50:52Z #15 1.972 50650K .......... .......... .......... .......... .......... 39% 147M 1s -2023-11-07T14:50:52Z #15 1.972 50700K .......... .......... .......... .......... .......... 39% 143M 1s -2023-11-07T14:50:52Z #15 1.972 50750K .......... .......... .......... .......... .......... 39% 168M 1s -2023-11-07T14:50:52Z #15 1.972 50800K .......... .......... .......... .......... .......... 39% 176M 1s -2023-11-07T14:50:52Z #15 1.972 50850K .......... .......... .......... .......... .......... 39% 162M 1s -2023-11-07T14:50:52Z #15 1.972 50900K .......... .......... .......... .......... .......... 39% 152M 1s -2023-11-07T14:50:52Z #15 1.972 50950K .......... .......... .......... .......... .......... 39% 131M 1s -2023-11-07T14:50:52Z #15 1.972 51000K .......... .......... .......... .......... .......... 39% 137M 1s -2023-11-07T14:50:52Z #15 1.972 51050K .......... .......... .......... .......... .......... 39% 162M 1s -2023-11-07T14:50:52Z #15 1.972 51100K .......... .......... .......... .......... .......... 39% 157M 1s -2023-11-07T14:50:52Z #15 1.972 51150K .......... .......... .......... .......... .......... 39% 136M 1s -2023-11-07T14:50:52Z #15 1.972 51200K .......... .......... .......... .......... .......... 39% 134M 1s -2023-11-07T14:50:52Z #15 1.972 51250K .......... .......... .......... .......... .......... 39% 160M 1s -2023-11-07T14:50:52Z #15 1.972 51300K .......... .......... .......... .......... .......... 39% 152M 1s -2023-11-07T14:50:52Z #15 1.972 51350K .......... .......... .......... .......... .......... 39% 156M 1s -2023-11-07T14:50:52Z #15 1.972 51400K .......... .......... .......... .......... .......... 39% 157M 1s -2023-11-07T14:50:52Z #15 1.972 51450K .......... .......... .......... .......... .......... 39% 141M 1s -2023-11-07T14:50:52Z #15 1.972 51500K .......... .......... .......... .......... .......... 39% 180M 1s -2023-11-07T14:50:52Z #15 1.972 51550K .......... .......... .......... .......... .......... 39% 149M 1s -2023-11-07T14:50:52Z #15 1.972 51600K .......... .......... .......... .......... .......... 39% 149M 1s -2023-11-07T14:50:52Z #15 1.972 51650K .......... .......... .......... .......... .......... 39% 136M 1s -2023-11-07T14:50:52Z #15 1.972 51700K .......... .......... .......... .......... .......... 39% 159M 1s -2023-11-07T14:50:52Z #15 1.972 51750K .......... .......... .......... .......... .......... 39% 17.4M 1s -2023-11-07T14:50:52Z #15 1.976 51800K .......... .......... .......... .......... .......... 40% 123M 1s -2023-11-07T14:50:52Z #15 1.976 51850K .......... .......... .......... .......... .......... 40% 153M 1s -2023-11-07T14:50:52Z #15 1.976 51900K .......... .......... .......... .......... .......... 40% 162M 1s -2023-11-07T14:50:52Z #15 1.976 51950K .......... .......... .......... .......... .......... 40% 154M 1s -2023-11-07T14:50:52Z #15 1.976 52000K .......... .......... .......... .......... .......... 40% 16.8M 1s -2023-11-07T14:50:52Z #15 1.979 52050K .......... .......... .......... .......... .......... 40% 31.0M 1s -2023-11-07T14:50:52Z #15 1.984 52100K .......... .......... .......... .......... .......... 40% 165M 1s -2023-11-07T14:50:52Z #15 1.984 52150K .......... .......... .......... .......... .......... 40% 173M 1s -2023-11-07T14:50:52Z #15 1.984 52200K .......... .......... .......... .......... .......... 40% 130M 1s -2023-11-07T14:50:52Z #15 1.984 52250K .......... .......... .......... .......... .......... 40% 162M 1s -2023-11-07T14:50:52Z #15 1.984 52300K .......... .......... .......... .......... .......... 40% 172M 1s -2023-11-07T14:50:52Z #15 1.984 52350K .......... .......... .......... .......... .......... 40% 167M 1s -2023-11-07T14:50:52Z #15 1.984 52400K .......... .......... .......... .......... .......... 40% 148M 1s -2023-11-07T14:50:52Z #15 1.984 52450K .......... .......... .......... .......... .......... 40% 140M 1s -2023-11-07T14:50:52Z #15 1.984 52500K .......... .......... .......... .......... .......... 40% 122M 1s -2023-11-07T14:50:52Z #15 1.984 52550K .......... .......... .......... .......... .......... 40% 158M 1s -2023-11-07T14:50:52Z #15 1.984 52600K .......... .......... .......... .......... .......... 40% 160M 1s -2023-11-07T14:50:52Z #15 1.984 52650K .......... .......... .......... .......... .......... 40% 8.94M 1s -2023-11-07T14:50:52Z #15 1.990 52700K .......... .......... .......... .......... .......... 40% 57.2M 1s -2023-11-07T14:50:52Z #15 1.990 52750K .......... .......... .......... .......... .......... 40% 38.1M 1s -2023-11-07T14:50:52Z #15 1.992 52800K .......... .......... .......... .......... .......... 40% 57.7M 1s -2023-11-07T14:50:52Z #15 1.993 52850K .......... .......... .......... .......... .......... 40% 79.1M 1s -2023-11-07T14:50:52Z #15 1.994 52900K .......... .......... .......... .......... .......... 40% 29.1M 1s -2023-11-07T14:50:52Z #15 1.996 52950K .......... .......... .......... .......... .......... 40% 23.8M 1s -2023-11-07T14:50:52Z #15 1.998 53000K .......... .......... .......... .......... .......... 40% 40.1M 1s -2023-11-07T14:50:52Z #15 1.998 53050K .......... .......... .......... .......... .......... 40% 166M 1s -2023-11-07T14:50:52Z #15 2.003 53100K .......... .......... .......... .......... .......... 41% 10.2M 1s -2023-11-07T14:50:52Z #15 2.003 53150K .......... .......... .......... .......... .......... 41% 8.77M 1s -2023-11-07T14:50:52Z #15 2.009 53200K .......... .......... .......... .......... .......... 41% 35.4M 1s -2023-11-07T14:50:52Z #15 2.010 53250K .......... .......... .......... .......... .......... 41% 25.3M 1s -2023-11-07T14:50:52Z #15 2.016 53300K .......... .......... .......... .......... .......... 41% 162M 1s -2023-11-07T14:50:52Z #15 2.016 53350K .......... .......... .......... .......... .......... 41% 164M 1s -2023-11-07T14:50:52Z #15 2.016 53400K .......... .......... .......... .......... .......... 41% 193M 1s -2023-11-07T14:50:52Z #15 2.016 53450K .......... .......... .......... .......... .......... 41% 152M 1s -2023-11-07T14:50:52Z #15 2.016 53500K .......... .......... .......... .......... .......... 41% 181M 1s -2023-11-07T14:50:52Z #15 2.016 53550K .......... .......... .......... .......... .......... 41% 162M 1s -2023-11-07T14:50:52Z #15 2.016 53600K .......... .......... .......... .......... .......... 41% 164M 1s -2023-11-07T14:50:52Z #15 2.016 53650K .......... .......... .......... .......... .......... 41% 170M 1s -2023-11-07T14:50:52Z #15 2.016 53700K .......... .......... .......... .......... .......... 41% 185M 1s -2023-11-07T14:50:52Z #15 2.016 53750K .......... .......... .......... .......... .......... 41% 145M 1s -2023-11-07T14:50:52Z #15 2.016 53800K .......... .......... .......... .......... .......... 41% 123M 1s -2023-11-07T14:50:52Z #15 2.016 53850K .......... .......... .......... .......... .......... 41% 167M 1s -2023-11-07T14:50:52Z #15 2.016 53900K .......... .......... .......... .......... .......... 41% 159M 1s -2023-11-07T14:50:52Z #15 2.016 53950K .......... .......... .......... .......... .......... 41% 16.1M 1s -2023-11-07T14:50:52Z #15 2.022 54000K .......... .......... .......... .......... .......... 41% 12.1M 1s -2023-11-07T14:50:52Z #15 2.023 54050K .......... .......... .......... .......... .......... 41% 8.72M 1s -2023-11-07T14:50:52Z #15 2.029 54100K .......... .......... .......... .......... .......... 41% 125M 1s -2023-11-07T14:50:52Z #15 2.029 54150K .......... .......... .......... .......... .......... 41% 122M 1s -2023-11-07T14:50:52Z #15 2.030 54200K .......... .......... .......... .......... .......... 41% 113M 1s -2023-11-07T14:50:52Z #15 2.030 54250K .......... .......... .......... .......... .......... 41% 126M 1s -2023-11-07T14:50:52Z #15 2.030 54300K .......... .......... .......... .......... .......... 41% 136M 1s -2023-11-07T14:50:52Z #15 2.031 54350K .......... .......... .......... .......... .......... 41% 127M 1s -2023-11-07T14:50:52Z #15 2.031 54400K .......... .......... .......... .......... .......... 42% 125M 1s -2023-11-07T14:50:52Z #15 2.032 54450K .......... .......... .......... .......... .......... 42% 110M 1s -2023-11-07T14:50:52Z #15 2.032 54500K .......... .......... .......... .......... .......... 42% 132M 1s -2023-11-07T14:50:52Z #15 2.033 54550K .......... .......... .......... .......... .......... 42% 134M 1s -2023-11-07T14:50:52Z #15 2.033 54600K .......... .......... .......... .......... .......... 42% 146M 1s -2023-11-07T14:50:52Z #15 2.033 54650K .......... .......... .......... .......... .......... 42% 57.0M 1s -2023-11-07T14:50:52Z #15 2.034 54700K .......... .......... .......... .......... .......... 42% 145M 1s -2023-11-07T14:50:52Z #15 2.034 54750K .......... .......... .......... .......... .......... 42% 90.5M 1s -2023-11-07T14:50:52Z #15 2.035 54800K .......... .......... .......... .......... .......... 42% 111M 1s -2023-11-07T14:50:52Z #15 2.035 54850K .......... .......... .......... .......... .......... 42% 131M 1s -2023-11-07T14:50:52Z #15 2.035 54900K .......... .......... .......... .......... .......... 42% 120M 1s -2023-11-07T14:50:52Z #15 2.036 54950K .......... .......... .......... .......... .......... 42% 137M 1s -2023-11-07T14:50:52Z #15 2.036 55000K .......... .......... .......... .......... .......... 42% 102M 1s -2023-11-07T14:50:52Z #15 2.037 55050K .......... .......... .......... .......... .......... 42% 135M 1s -2023-11-07T14:50:52Z #15 2.037 55100K .......... .......... .......... .......... .......... 42% 137M 1s -2023-11-07T14:50:52Z #15 2.038 55150K .......... .......... .......... .......... .......... 42% 108M 1s -2023-11-07T14:50:52Z #15 2.038 55200K .......... .......... .......... .......... .......... 42% 135M 1s -2023-11-07T14:50:52Z #15 2.039 55250K .......... .......... .......... .......... .......... 42% 135M 1s -2023-11-07T14:50:52Z #15 2.039 55300K .......... .......... .......... .......... .......... 42% 158M 1s -2023-11-07T14:50:52Z #15 2.039 55350K .......... .......... .......... .......... .......... 42% 90.9M 1s -2023-11-07T14:50:52Z #15 2.040 55400K .......... .......... .......... .......... .......... 42% 75.2M 1s -2023-11-07T14:50:52Z #15 2.040 55450K .......... .......... .......... .......... .......... 42% 5.76M 1s -2023-11-07T14:50:52Z #15 2.049 55500K .......... .......... .......... .......... .......... 42% 126M 1s -2023-11-07T14:50:52Z #15 2.049 55550K .......... .......... .......... .......... .......... 42% 128M 1s -2023-11-07T14:50:52Z #15 2.050 55600K .......... .......... .......... .......... .......... 42% 112M 1s -2023-11-07T14:50:52Z #15 2.050 55650K .......... .......... .......... .......... .......... 42% 146M 1s -2023-11-07T14:50:52Z #15 2.050 55700K .......... .......... .......... .......... .......... 43% 127M 1s -2023-11-07T14:50:52Z #15 2.051 55750K .......... .......... .......... .......... .......... 43% 133M 1s -2023-11-07T14:50:52Z #15 2.051 55800K .......... .......... .......... .......... .......... 43% 144M 1s -2023-11-07T14:50:52Z #15 2.051 55850K .......... .......... .......... .......... .......... 43% 130M 1s -2023-11-07T14:50:52Z #15 2.052 55900K .......... .......... .......... .......... .......... 43% 137M 1s -2023-11-07T14:50:52Z #15 2.052 55950K .......... .......... .......... .......... .......... 43% 121M 1s -2023-11-07T14:50:52Z #15 2.053 56000K .......... .......... .......... .......... .......... 43% 134M 1s -2023-11-07T14:50:52Z #15 2.053 56050K .......... .......... .......... .......... .......... 43% 129M 1s -2023-11-07T14:50:52Z #15 2.053 56100K .......... .......... .......... .......... .......... 43% 52.9M 1s -2023-11-07T14:50:52Z #15 2.055 56150K .......... .......... .......... .......... .......... 43% 144M 1s -2023-11-07T14:50:52Z #15 2.055 56200K .......... .......... .......... .......... .......... 43% 80.6M 1s -2023-11-07T14:50:52Z #15 2.056 56250K .......... .......... .......... .......... .......... 43% 107M 1s -2023-11-07T14:50:52Z #15 2.056 56300K .......... .......... .......... .......... .......... 43% 130M 1s -2023-11-07T14:50:52Z #15 2.056 56350K .......... .......... .......... .......... .......... 43% 114M 1s -2023-11-07T14:50:52Z #15 2.057 56400K .......... .......... .......... .......... .......... 43% 132M 1s -2023-11-07T14:50:52Z #15 2.057 56450K .......... .......... .......... .......... .......... 43% 140M 1s -2023-11-07T14:50:52Z #15 2.057 56500K .......... .......... .......... .......... .......... 43% 131M 1s -2023-11-07T14:50:52Z #15 2.057 56550K .......... .......... .......... .......... .......... 43% 147M 1s -2023-11-07T14:50:52Z #15 2.058 56600K .......... .......... .......... .......... .......... 43% 123M 1s -2023-11-07T14:50:52Z #15 2.058 56650K .......... .......... .......... .......... .......... 43% 128M 1s -2023-11-07T14:50:52Z #15 2.059 56700K .......... .......... .......... .......... .......... 43% 22.1M 1s -2023-11-07T14:50:52Z #15 2.061 56750K .......... .......... .......... .......... .......... 43% 134M 1s -2023-11-07T14:50:52Z #15 2.061 56800K .......... .......... .......... .......... .......... 43% 133M 1s -2023-11-07T14:50:52Z #15 2.062 56850K .......... .......... .......... .......... .......... 43% 113M 1s -2023-11-07T14:50:52Z #15 2.062 56900K .......... .......... .......... .......... .......... 43% 147M 1s -2023-11-07T14:50:52Z #15 2.063 56950K .......... .......... .......... .......... .......... 43% 123M 1s -2023-11-07T14:50:52Z #15 2.063 57000K .......... .......... .......... .......... .......... 44% 136M 1s -2023-11-07T14:50:52Z #15 2.063 57050K .......... .......... .......... .......... .......... 44% 144M 1s -2023-11-07T14:50:52Z #15 2.063 57100K .......... .......... .......... .......... .......... 44% 125M 1s -2023-11-07T14:50:52Z #15 2.064 57150K .......... .......... .......... .......... .......... 44% 128M 1s -2023-11-07T14:50:52Z #15 2.064 57200K .......... .......... .......... .......... .......... 44% 119M 1s -2023-11-07T14:50:52Z #15 2.064 57250K .......... .......... .......... .......... .......... 44% 134M 1s -2023-11-07T14:50:52Z #15 2.065 57300K .......... .......... .......... .......... .......... 44% 148M 1s -2023-11-07T14:50:52Z #15 2.066 57350K .......... .......... .......... .......... .......... 44% 57.9M 1s -2023-11-07T14:50:52Z #15 2.066 57400K .......... .......... .......... .......... .......... 44% 129M 1s -2023-11-07T14:50:52Z #15 2.066 57450K .......... .......... .......... .......... .......... 44% 82.1M 1s -2023-11-07T14:50:52Z #15 2.067 57500K .......... .......... .......... .......... .......... 44% 101M 1s -2023-11-07T14:50:52Z #15 2.067 57550K .......... .......... .......... .......... .......... 44% 140M 1s -2023-11-07T14:50:52Z #15 2.068 57600K .......... .......... .......... .......... .......... 44% 131M 1s -2023-11-07T14:50:52Z #15 2.068 57650K .......... .......... .......... .......... .......... 44% 121M 1s -2023-11-07T14:50:52Z #15 2.069 57700K .......... .......... .......... .......... .......... 44% 117M 1s -2023-11-07T14:50:53Z #15 2.069 57750K .......... .......... .......... .......... .......... 44% 151M 1s -2023-11-07T14:50:53Z #15 2.069 57800K .......... .......... .......... .......... .......... 44% 140M 1s -2023-11-07T14:50:53Z #15 2.070 57850K .......... .......... .......... .......... .......... 44% 143M 1s -2023-11-07T14:50:53Z #15 2.070 57900K .......... .......... .......... .......... .......... 44% 111M 1s -2023-11-07T14:50:53Z #15 2.070 57950K .......... .......... .......... .......... .......... 44% 131M 1s -2023-11-07T14:50:53Z #15 2.071 58000K .......... .......... .......... .......... .......... 44% 138M 1s -2023-11-07T14:50:53Z #15 2.071 58050K .......... .......... .......... .......... .......... 44% 111M 1s -2023-11-07T14:50:53Z #15 2.072 58100K .......... .......... .......... .......... .......... 44% 10.2M 1s -2023-11-07T14:50:53Z #15 2.076 58150K .......... .......... .......... .......... .......... 44% 102M 1s -2023-11-07T14:50:53Z #15 2.077 58200K .......... .......... .......... .......... .......... 44% 125M 1s -2023-11-07T14:50:53Z #15 2.077 58250K .......... .......... .......... .......... .......... 44% 129M 1s -2023-11-07T14:50:53Z #15 2.078 58300K .......... .......... .......... .......... .......... 45% 143M 1s -2023-11-07T14:50:53Z #15 2.078 58350K .......... .......... .......... .......... .......... 45% 168M 1s -2023-11-07T14:50:53Z #15 2.078 58400K .......... .......... .......... .......... .......... 45% 117M 1s -2023-11-07T14:50:53Z #15 2.079 58450K .......... .......... .......... .......... .......... 45% 132M 1s -2023-11-07T14:50:53Z #15 2.079 58500K .......... .......... .......... .......... .......... 45% 135M 1s -2023-11-07T14:50:53Z #15 2.079 58550K .......... .......... .......... .......... .......... 45% 142M 1s -2023-11-07T14:50:53Z #15 2.080 58600K .......... .......... .......... .......... .......... 45% 117M 1s -2023-11-07T14:50:53Z #15 2.081 58650K .......... .......... .......... .......... .......... 45% 10.8M 1s -2023-11-07T14:50:53Z #15 2.085 58700K .......... .......... .......... .......... .......... 45% 135M 1s -2023-11-07T14:50:53Z #15 2.085 58750K .......... .......... .......... .......... .......... 45% 133M 1s -2023-11-07T14:50:53Z #15 2.085 58800K .......... .......... .......... .......... .......... 45% 119M 1s -2023-11-07T14:50:53Z #15 2.086 58850K .......... .......... .......... .......... .......... 45% 174M 1s -2023-11-07T14:50:53Z #15 2.086 58900K .......... .......... .......... .......... .......... 45% 148M 1s -2023-11-07T14:50:53Z #15 2.086 58950K .......... .......... .......... .......... .......... 45% 139M 1s -2023-11-07T14:50:53Z #15 2.087 59000K .......... .......... .......... .......... .......... 45% 102M 1s -2023-11-07T14:50:53Z #15 2.087 59050K .......... .......... .......... .......... .......... 45% 129M 1s -2023-11-07T14:50:53Z #15 2.088 59100K .......... .......... .......... .......... .......... 45% 141M 1s -2023-11-07T14:50:53Z #15 2.088 59150K .......... .......... .......... .......... .......... 45% 85.4M 1s -2023-11-07T14:50:53Z #15 2.089 59200K .......... .......... .......... .......... .......... 45% 66.9M 1s -2023-11-07T14:50:53Z #15 2.090 59250K .......... .......... .......... .......... .......... 45% 130M 1s -2023-11-07T14:50:53Z #15 2.090 59300K .......... .......... .......... .......... .......... 45% 66.9M 1s -2023-11-07T14:50:53Z #15 2.091 59350K .......... .......... .......... .......... .......... 45% 65.1M 1s -2023-11-07T14:50:53Z #15 2.091 59400K .......... .......... .......... .......... .......... 45% 106M 1s -2023-11-07T14:50:53Z #15 2.092 59450K .......... .......... .......... .......... .......... 45% 135M 1s -2023-11-07T14:50:53Z #15 2.092 59500K .......... .......... .......... .......... .......... 45% 120M 1s -2023-11-07T14:50:53Z #15 2.092 59550K .......... .......... .......... .......... .......... 45% 126M 1s -2023-11-07T14:50:53Z #15 2.093 59600K .......... .......... .......... .......... .......... 46% 119M 1s -2023-11-07T14:50:53Z #15 2.093 59650K .......... .......... .......... .......... .......... 46% 81.3M 1s -2023-11-07T14:50:53Z #15 2.094 59700K .......... .......... .......... .......... .......... 46% 59.8M 1s -2023-11-07T14:50:53Z #15 2.095 59750K .......... .......... .......... .......... .......... 46% 130M 1s -2023-11-07T14:50:53Z #15 2.095 59800K .......... .......... .......... .......... .......... 46% 118M 1s -2023-11-07T14:50:53Z #15 2.096 59850K .......... .......... .......... .......... .......... 46% 130M 1s -2023-11-07T14:50:53Z #15 2.096 59900K .......... .......... .......... .......... .......... 46% 113M 1s -2023-11-07T14:50:53Z #15 2.096 59950K .......... .......... .......... .......... .......... 46% 141M 1s -2023-11-07T14:50:53Z #15 2.097 60000K .......... .......... .......... .......... .......... 46% 91.5M 1s -2023-11-07T14:50:53Z #15 2.097 60050K .......... .......... .......... .......... .......... 46% 73.3M 1s -2023-11-07T14:50:53Z #15 2.098 60100K .......... .......... .......... .......... .......... 46% 73.1M 1s -2023-11-07T14:50:53Z #15 2.099 60150K .......... .......... .......... .......... .......... 46% 103M 1s -2023-11-07T14:50:53Z #15 2.099 60200K .......... .......... .......... .......... .......... 46% 121M 1s -2023-11-07T14:50:53Z #15 2.100 60250K .......... .......... .......... .......... .......... 46% 93.3M 1s -2023-11-07T14:50:53Z #15 2.100 60300K .......... .......... .......... .......... .......... 46% 126M 1s -2023-11-07T14:50:53Z #15 2.101 60350K .......... .......... .......... .......... .......... 46% 5.76M 1s -2023-11-07T14:50:53Z #15 2.117 60400K .......... .......... .......... .......... .......... 46% 162M 1s -2023-11-07T14:50:53Z #15 2.117 60450K .......... .......... .......... .......... .......... 46% 175M 1s -2023-11-07T14:50:53Z #15 2.117 60500K .......... .......... .......... .......... .......... 46% 156M 1s -2023-11-07T14:50:53Z #15 2.117 60550K .......... .......... .......... .......... .......... 46% 117M 1s -2023-11-07T14:50:53Z #15 2.117 60600K .......... .......... .......... .......... .......... 46% 162M 1s -2023-11-07T14:50:53Z #15 2.117 60650K .......... .......... .......... .......... .......... 46% 150M 1s -2023-11-07T14:50:53Z #15 2.117 60700K .......... .......... .......... .......... .......... 46% 78.7M 1s -2023-11-07T14:50:53Z #15 2.117 60750K .......... .......... .......... .......... .......... 46% 86.7M 1s -2023-11-07T14:50:53Z #15 2.117 60800K .......... .......... .......... .......... .......... 46% 163M 1s -2023-11-07T14:50:53Z #15 2.117 60850K .......... .......... .......... .......... .......... 47% 67.8M 1s -2023-11-07T14:50:53Z #15 2.117 60900K .......... .......... .......... .......... .......... 47% 101M 1s -2023-11-07T14:50:53Z #15 2.117 60950K .......... .......... .......... .......... .......... 47% 119M 1s -2023-11-07T14:50:53Z #15 2.117 61000K .......... .......... .......... .......... .......... 47% 150M 1s -2023-11-07T14:50:53Z #15 2.117 61050K .......... .......... .......... .......... .......... 47% 161M 1s -2023-11-07T14:50:53Z #15 2.117 61100K .......... .......... .......... .......... .......... 47% 124M 1s -2023-11-07T14:50:53Z #15 2.117 61150K .......... .......... .......... .......... .......... 47% 149M 1s -2023-11-07T14:50:53Z #15 2.117 61200K .......... .......... .......... .......... .......... 47% 76.4M 1s -2023-11-07T14:50:53Z #15 2.117 61250K .......... .......... .......... .......... .......... 47% 80.2M 1s -2023-11-07T14:50:53Z #15 2.117 61300K .......... .......... .......... .......... .......... 47% 149M 1s -2023-11-07T14:50:53Z #15 2.117 61350K .......... .......... .......... .......... .......... 47% 70.8M 1s -2023-11-07T14:50:53Z #15 2.117 61400K .......... .......... .......... .......... .......... 47% 141M 1s -2023-11-07T14:50:53Z #15 2.118 61450K .......... .......... .......... .......... .......... 47% 89.7M 1s -2023-11-07T14:50:53Z #15 2.118 61500K .......... .......... .......... .......... .......... 47% 124M 1s -2023-11-07T14:50:53Z #15 2.119 61550K .......... .......... .......... .......... .......... 47% 118M 1s -2023-11-07T14:50:53Z #15 2.119 61600K .......... .......... .......... .......... .......... 47% 67.8M 1s -2023-11-07T14:50:53Z #15 2.120 61650K .......... .......... .......... .......... .......... 47% 101M 1s -2023-11-07T14:50:53Z #15 2.120 61700K .......... .......... .......... .......... .......... 47% 130M 1s -2023-11-07T14:50:53Z #15 2.121 61750K .......... .......... .......... .......... .......... 47% 55.9M 1s -2023-11-07T14:50:53Z #15 2.122 61800K .......... .......... .......... .......... .......... 47% 134M 1s -2023-11-07T14:50:53Z #15 2.122 61850K .......... .......... .......... .......... .......... 47% 99.2M 1s -2023-11-07T14:50:53Z #15 2.123 61900K .......... .......... .......... .......... .......... 47% 155M 1s -2023-11-07T14:50:53Z #15 2.123 61950K .......... .......... .......... .......... .......... 47% 112M 1s -2023-11-07T14:50:53Z #15 2.123 62000K .......... .......... .......... .......... .......... 47% 70.1M 1s -2023-11-07T14:50:53Z #15 2.124 62050K .......... .......... .......... .......... .......... 47% 124M 1s -2023-11-07T14:50:53Z #15 2.124 62100K .......... .......... .......... .......... .......... 47% 83.0M 1s -2023-11-07T14:50:53Z #15 2.125 62150K .......... .......... .......... .......... .......... 48% 91.1M 1s -2023-11-07T14:50:53Z #15 2.125 62200K .......... .......... .......... .......... .......... 48% 119M 1s -2023-11-07T14:50:53Z #15 2.126 62250K .......... .......... .......... .......... .......... 48% 112M 1s -2023-11-07T14:50:53Z #15 2.126 62300K .......... .......... .......... .......... .......... 48% 164M 1s -2023-11-07T14:50:53Z #15 2.126 62350K .......... .......... .......... .......... .......... 48% 94.2M 1s -2023-11-07T14:50:53Z #15 2.127 62400K .......... .......... .......... .......... .......... 48% 82.1M 1s -2023-11-07T14:50:53Z #15 2.128 62450K .......... .......... .......... .......... .......... 48% 96.0M 1s -2023-11-07T14:50:53Z #15 2.128 62500K .......... .......... .......... .......... .......... 48% 75.9M 1s -2023-11-07T14:50:53Z #15 2.129 62550K .......... .......... .......... .......... .......... 48% 155M 1s -2023-11-07T14:50:53Z #15 2.129 62600K .......... .......... .......... .......... .......... 48% 207M 1s -2023-11-07T14:50:53Z #15 2.129 62650K .......... .......... .......... .......... .......... 48% 113M 1s -2023-11-07T14:50:53Z #15 2.130 62700K .......... .......... .......... .......... .......... 48% 108M 1s -2023-11-07T14:50:53Z #15 2.131 62750K .......... .......... .......... .......... .......... 48% 145M 1s -2023-11-07T14:50:53Z #15 2.131 62800K .......... .......... .......... .......... .......... 48% 78.5M 1s -2023-11-07T14:50:53Z #15 2.131 62850K .......... .......... .......... .......... .......... 48% 68.1M 1s -2023-11-07T14:50:53Z #15 2.133 62900K .......... .......... .......... .......... .......... 48% 73.0M 1s -2023-11-07T14:50:53Z #15 2.133 62950K .......... .......... .......... .......... .......... 48% 150M 1s -2023-11-07T14:50:53Z #15 2.133 63000K .......... .......... .......... .......... .......... 48% 114M 1s -2023-11-07T14:50:53Z #15 2.134 63050K .......... .......... .......... .......... .......... 48% 134M 1s -2023-11-07T14:50:53Z #15 2.134 63100K .......... .......... .......... .......... .......... 48% 126M 1s -2023-11-07T14:50:53Z #15 2.134 63150K .......... .......... .......... .......... .......... 48% 118M 1s -2023-11-07T14:50:53Z #15 2.136 63200K .......... .......... .......... .......... .......... 48% 66.3M 1s -2023-11-07T14:50:53Z #15 2.136 63250K .......... .......... .......... .......... .......... 48% 85.0M 1s -2023-11-07T14:50:53Z #15 2.136 63300K .......... .......... .......... .......... .......... 48% 143M 1s -2023-11-07T14:50:53Z #15 2.136 63350K .......... .......... .......... .......... .......... 48% 57.0M 1s -2023-11-07T14:50:53Z #15 2.137 63400K .......... .......... .......... .......... .......... 48% 52.3M 1s -2023-11-07T14:50:53Z #15 2.140 63450K .......... .......... .......... .......... .......... 49% 143M 1s -2023-11-07T14:50:53Z #15 2.140 63500K .......... .......... .......... .......... .......... 49% 110M 1s -2023-11-07T14:50:53Z #15 2.140 63550K .......... .......... .......... .......... .......... 49% 78.2M 1s -2023-11-07T14:50:53Z #15 2.140 63600K .......... .......... .......... .......... .......... 49% 143M 1s -2023-11-07T14:50:53Z #15 2.140 63650K .......... .......... .......... .......... .......... 49% 138M 1s -2023-11-07T14:50:53Z #15 2.140 63700K .......... .......... .......... .......... .......... 49% 146M 1s -2023-11-07T14:50:53Z #15 2.140 63750K .......... .......... .......... .......... .......... 49% 41.0M 1s -2023-11-07T14:50:53Z #15 2.144 63800K .......... .......... .......... .......... .......... 49% 143M 1s -2023-11-07T14:50:53Z #15 2.144 63850K .......... .......... .......... .......... .......... 49% 163M 1s -2023-11-07T14:50:53Z #15 2.144 63900K .......... .......... .......... .......... .......... 49% 71.7M 1s -2023-11-07T14:50:53Z #15 2.144 63950K .......... .......... .......... .......... .......... 49% 85.8M 1s -2023-11-07T14:50:53Z #15 2.144 64000K .......... .......... .......... .......... .......... 49% 89.7M 1s -2023-11-07T14:50:53Z #15 2.144 64050K .......... .......... .......... .......... .......... 49% 125M 1s -2023-11-07T14:50:53Z #15 2.144 64100K .......... .......... .......... .......... .......... 49% 43.0M 1s -2023-11-07T14:50:53Z #15 2.146 64150K .......... .......... .......... .......... .......... 49% 137M 1s -2023-11-07T14:50:53Z #15 2.146 64200K .......... .......... .......... .......... .......... 49% 30.3M 1s -2023-11-07T14:50:53Z #15 2.148 64250K .......... .......... .......... .......... .......... 49% 160M 1s -2023-11-07T14:50:53Z #15 2.148 64300K .......... .......... .......... .......... .......... 49% 155M 1s -2023-11-07T14:50:53Z #15 2.148 64350K .......... .......... .......... .......... .......... 49% 84.0M 1s -2023-11-07T14:50:53Z #15 2.149 64400K .......... .......... .......... .......... .......... 49% 47.5M 1s -2023-11-07T14:50:53Z #15 2.152 64450K .......... .......... .......... .......... .......... 49% 126M 1s -2023-11-07T14:50:53Z #15 2.152 64500K .......... .......... .......... .......... .......... 49% 157M 1s -2023-11-07T14:50:53Z #15 2.152 64550K .......... .......... .......... .......... .......... 49% 49.7M 1s -2023-11-07T14:50:53Z #15 2.152 64600K .......... .......... .......... .......... .......... 49% 171M 1s -2023-11-07T14:50:53Z #15 2.152 64650K .......... .......... .......... .......... .......... 49% 88.9M 1s -2023-11-07T14:50:53Z #15 2.152 64700K .......... .......... .......... .......... .......... 49% 42.7M 1s -2023-11-07T14:50:53Z #15 2.154 64750K .......... .......... .......... .......... .......... 50% 88.7M 1s -2023-11-07T14:50:53Z #15 2.156 64800K .......... .......... .......... .......... .......... 50% 98.8M 1s -2023-11-07T14:50:53Z #15 2.156 64850K .......... .......... .......... .......... .......... 50% 157M 1s -2023-11-07T14:50:53Z #15 2.156 64900K .......... .......... .......... .......... .......... 50% 127M 1s -2023-11-07T14:50:53Z #15 2.156 64950K .......... .......... .......... .......... .......... 50% 144M 1s -2023-11-07T14:50:53Z #15 2.156 65000K .......... .......... .......... .......... .......... 50% 114M 1s -2023-11-07T14:50:53Z #15 2.156 65050K .......... .......... .......... .......... .......... 50% 66.0M 1s -2023-11-07T14:50:53Z #15 2.157 65100K .......... .......... .......... .......... .......... 50% 43.4M 1s -2023-11-07T14:50:53Z #15 2.160 65150K .......... .......... .......... .......... .......... 50% 87.9M 1s -2023-11-07T14:50:53Z #15 2.160 65200K .......... .......... .......... .......... .......... 50% 161M 1s -2023-11-07T14:50:53Z #15 2.160 65250K .......... .......... .......... .......... .......... 50% 164M 1s -2023-11-07T14:50:53Z #15 2.160 65300K .......... .......... .......... .......... .......... 50% 99.5M 1s -2023-11-07T14:50:53Z #15 2.160 65350K .......... .......... .......... .......... .......... 50% 156M 1s -2023-11-07T14:50:53Z #15 2.160 65400K .......... .......... .......... .......... .......... 50% 157M 1s -2023-11-07T14:50:53Z #15 2.160 65450K .......... .......... .......... .......... .......... 50% 142M 1s -2023-11-07T14:50:53Z #15 2.160 65500K .......... .......... .......... .......... .......... 50% 50.1M 1s -2023-11-07T14:50:53Z #15 2.164 65550K .......... .......... .......... .......... .......... 50% 80.1M 1s -2023-11-07T14:50:53Z #15 2.164 65600K .......... .......... .......... .......... .......... 50% 91.5M 1s -2023-11-07T14:50:53Z #15 2.164 65650K .......... .......... .......... .......... .......... 50% 109M 1s -2023-11-07T14:50:53Z #15 2.164 65700K .......... .......... .......... .......... .......... 50% 82.1M 1s -2023-11-07T14:50:53Z #15 2.164 65750K .......... .......... .......... .......... .......... 50% 109M 1s -2023-11-07T14:50:53Z #15 2.164 65800K .......... .......... .......... .......... .......... 50% 133M 1s -2023-11-07T14:50:53Z #15 2.164 65850K .......... .......... .......... .......... .......... 50% 61.8M 1s -2023-11-07T14:50:53Z #15 2.168 65900K .......... .......... .......... .......... .......... 50% 133M 1s -2023-11-07T14:50:53Z #15 2.168 65950K .......... .......... .......... .......... .......... 50% 81.0M 1s -2023-11-07T14:50:53Z #15 2.168 66000K .......... .......... .......... .......... .......... 50% 155M 1s -2023-11-07T14:50:53Z #15 2.168 66050K .......... .......... .......... .......... .......... 51% 121M 1s -2023-11-07T14:50:53Z #15 2.168 66100K .......... .......... .......... .......... .......... 51% 70.8M 1s -2023-11-07T14:50:53Z #15 2.168 66150K .......... .......... .......... .......... .......... 51% 117M 1s -2023-11-07T14:50:53Z #15 2.168 66200K .......... .......... .......... .......... .......... 51% 51.0M 1s -2023-11-07T14:50:53Z #15 2.172 66250K .......... .......... .......... .......... .......... 51% 87.3M 1s -2023-11-07T14:50:53Z #15 2.172 66300K .......... .......... .......... .......... .......... 51% 75.1M 1s -2023-11-07T14:50:53Z #15 2.172 66350K .......... .......... .......... .......... .......... 51% 138M 1s -2023-11-07T14:50:53Z #15 2.172 66400K .......... .......... .......... .......... .......... 51% 144M 1s -2023-11-07T14:50:53Z #15 2.172 66450K .......... .......... .......... .......... .......... 51% 138M 1s -2023-11-07T14:50:53Z #15 2.172 66500K .......... .......... .......... .......... .......... 51% 74.9M 1s -2023-11-07T14:50:53Z #15 2.172 66550K .......... .......... .......... .......... .......... 51% 93.1M 1s -2023-11-07T14:50:53Z #15 2.173 66600K .......... .......... .......... .......... .......... 51% 62.1M 1s -2023-11-07T14:50:53Z #15 2.173 66650K .......... .......... .......... .......... .......... 51% 115M 1s -2023-11-07T14:50:53Z #15 2.173 66700K .......... .......... .......... .......... .......... 51% 105M 1s -2023-11-07T14:50:53Z #15 2.174 66750K .......... .......... .......... .......... .......... 51% 137M 1s -2023-11-07T14:50:53Z #15 2.174 66800K .......... .......... .......... .......... .......... 51% 107M 1s -2023-11-07T14:50:53Z #15 2.175 66850K .......... .......... .......... .......... .......... 51% 73.3M 1s -2023-11-07T14:50:53Z #15 2.176 66900K .......... .......... .......... .......... .......... 51% 107M 1s -2023-11-07T14:50:53Z #15 2.176 66950K .......... .......... .......... .......... .......... 51% 129M 1s -2023-11-07T14:50:53Z #15 2.176 67000K .......... .......... .......... .......... .......... 51% 73.4M 1s -2023-11-07T14:50:53Z #15 2.177 67050K .......... .......... .......... .......... .......... 51% 133M 1s -2023-11-07T14:50:53Z #15 2.177 67100K .......... .......... .......... .......... .......... 51% 171M 1s -2023-11-07T14:50:53Z #15 2.178 67150K .......... .......... .......... .......... .......... 51% 75.6M 1s -2023-11-07T14:50:53Z #15 2.179 67200K .......... .......... .......... .......... .......... 51% 117M 1s -2023-11-07T14:50:53Z #15 2.179 67250K .......... .......... .......... .......... .......... 51% 153M 1s -2023-11-07T14:50:53Z #15 2.179 67300K .......... .......... .......... .......... .......... 51% 78.8M 1s -2023-11-07T14:50:53Z #15 2.180 67350K .......... .......... .......... .......... .......... 52% 98.6M 1s -2023-11-07T14:50:53Z #15 2.180 67400K .......... .......... .......... .......... .......... 52% 184M 1s -2023-11-07T14:50:53Z #15 2.181 67450K .......... .......... .......... .......... .......... 52% 71.7M 1s -2023-11-07T14:50:53Z #15 2.181 67500K .......... .......... .......... .......... .......... 52% 122M 1s -2023-11-07T14:50:53Z #15 2.182 67550K .......... .......... .......... .......... .......... 52% 119M 1s -2023-11-07T14:50:53Z #15 2.182 67600K .......... .......... .......... .......... .......... 52% 101M 1s -2023-11-07T14:50:53Z #15 2.182 67650K .......... .......... .......... .......... .......... 52% 130M 1s -2023-11-07T14:50:53Z #15 2.185 67700K .......... .......... .......... .......... .......... 52% 70.2M 1s -2023-11-07T14:50:53Z #15 2.185 67750K .......... .......... .......... .......... .......... 52% 130M 1s -2023-11-07T14:50:53Z #15 2.185 67800K .......... .......... .......... .......... .......... 52% 171M 1s -2023-11-07T14:50:53Z #15 2.185 67850K .......... .......... .......... .......... .......... 52% 80.2M 1s -2023-11-07T14:50:53Z #15 2.185 67900K .......... .......... .......... .......... .......... 52% 107M 1s -2023-11-07T14:50:53Z #15 2.185 67950K .......... .......... .......... .......... .......... 52% 136M 1s -2023-11-07T14:50:53Z #15 2.185 68000K .......... .......... .......... .......... .......... 52% 62.2M 1s -2023-11-07T14:50:53Z #15 2.186 68050K .......... .......... .......... .......... .......... 52% 127M 1s -2023-11-07T14:50:53Z #15 2.187 68100K .......... .......... .......... .......... .......... 52% 80.7M 1s -2023-11-07T14:50:53Z #15 2.187 68150K .......... .......... .......... .......... .......... 52% 98.2M 1s -2023-11-07T14:50:53Z #15 2.188 68200K .......... .......... .......... .......... .......... 52% 129M 1s -2023-11-07T14:50:53Z #15 2.188 68250K .......... .......... .......... .......... .......... 52% 57.4M 1s -2023-11-07T14:50:53Z #15 2.189 68300K .......... .......... .......... .......... .......... 52% 83.0M 1s -2023-11-07T14:50:53Z #15 2.190 68350K .......... .......... .......... .......... .......... 52% 90.7M 1s -2023-11-07T14:50:53Z #15 2.193 68400K .......... .......... .......... .......... .......... 52% 119M 1s -2023-11-07T14:50:53Z #15 2.193 68450K .......... .......... .......... .......... .......... 52% 150M 1s -2023-11-07T14:50:53Z #15 2.193 68500K .......... .......... .......... .......... .......... 52% 132M 1s -2023-11-07T14:50:53Z #15 2.193 68550K .......... .......... .......... .......... .......... 52% 178M 1s -2023-11-07T14:50:53Z #15 2.193 68600K .......... .......... .......... .......... .......... 52% 83.6M 1s -2023-11-07T14:50:53Z #15 2.193 68650K .......... .......... .......... .......... .......... 53% 126M 1s -2023-11-07T14:50:53Z #15 2.193 68700K .......... .......... .......... .......... .......... 53% 80.5M 1s -2023-11-07T14:50:53Z #15 2.193 68750K .......... .......... .......... .......... .......... 53% 70.5M 1s -2023-11-07T14:50:53Z #15 2.194 68800K .......... .......... .......... .......... .......... 53% 105M 1s -2023-11-07T14:50:53Z #15 2.194 68850K .......... .......... .......... .......... .......... 53% 119M 1s -2023-11-07T14:50:53Z #15 2.195 68900K .......... .......... .......... .......... .......... 53% 100M 1s -2023-11-07T14:50:53Z #15 2.195 68950K .......... .......... .......... .......... .......... 53% 133M 1s -2023-11-07T14:50:53Z #15 2.196 69000K .......... .......... .......... .......... .......... 53% 129M 1s -2023-11-07T14:50:53Z #15 2.196 69050K .......... .......... .......... .......... .......... 53% 65.1M 1s -2023-11-07T14:50:53Z #15 2.200 69100K .......... .......... .......... .......... .......... 53% 121M 1s -2023-11-07T14:50:53Z #15 2.200 69150K .......... .......... .......... .......... .......... 53% 156M 1s -2023-11-07T14:50:53Z #15 2.200 69200K .......... .......... .......... .......... .......... 53% 72.4M 1s -2023-11-07T14:50:53Z #15 2.200 69250K .......... .......... .......... .......... .......... 53% 178M 1s -2023-11-07T14:50:53Z #15 2.200 69300K .......... .......... .......... .......... .......... 53% 149M 1s -2023-11-07T14:50:53Z #15 2.200 69350K .......... .......... .......... .......... .......... 53% 101M 1s -2023-11-07T14:50:53Z #15 2.200 69400K .......... .......... .......... .......... .......... 53% 101M 1s -2023-11-07T14:50:53Z #15 2.200 69450K .......... .......... .......... .......... .......... 53% 113M 1s -2023-11-07T14:50:53Z #15 2.200 69500K .......... .......... .......... .......... .......... 53% 30.1M 1s -2023-11-07T14:50:53Z #15 2.202 69550K .......... .......... .......... .......... .......... 53% 20.8M 1s -2023-11-07T14:50:53Z #15 2.209 69600K .......... .......... .......... .......... .......... 53% 122M 1s -2023-11-07T14:50:53Z #15 2.209 69650K .......... .......... .......... .......... .......... 53% 121M 1s -2023-11-07T14:50:53Z #15 2.209 69700K .......... .......... .......... .......... .......... 53% 112M 1s -2023-11-07T14:50:53Z #15 2.209 69750K .......... .......... .......... .......... .......... 53% 102M 1s -2023-11-07T14:50:53Z #15 2.209 69800K .......... .......... .......... .......... .......... 53% 118M 1s -2023-11-07T14:50:53Z #15 2.209 69850K .......... .......... .......... .......... .......... 53% 76.9M 1s -2023-11-07T14:50:53Z #15 2.209 69900K .......... .......... .......... .......... .......... 53% 70.8M 1s -2023-11-07T14:50:53Z #15 2.209 69950K .......... .......... .......... .......... .......... 54% 81.4M 1s -2023-11-07T14:50:53Z #15 2.209 70000K .......... .......... .......... .......... .......... 54% 11.8M 1s -2023-11-07T14:50:53Z #15 2.212 70050K .......... .......... .......... .......... .......... 54% 73.4M 1s -2023-11-07T14:50:53Z #15 2.216 70100K .......... .......... .......... .......... .......... 54% 131M 1s -2023-11-07T14:50:53Z #15 2.216 70150K .......... .......... .......... .......... .......... 54% 127M 1s -2023-11-07T14:50:53Z #15 2.216 70200K .......... .......... .......... .......... .......... 54% 111M 1s -2023-11-07T14:50:53Z #15 2.216 70250K .......... .......... .......... .......... .......... 54% 128M 1s -2023-11-07T14:50:53Z #15 2.216 70300K .......... .......... .......... .......... .......... 54% 121M 1s -2023-11-07T14:50:53Z #15 2.216 70350K .......... .......... .......... .......... .......... 54% 129M 1s -2023-11-07T14:50:53Z #15 2.216 70400K .......... .......... .......... .......... .......... 54% 53.6M 1s -2023-11-07T14:50:53Z #15 2.216 70450K .......... .......... .......... .......... .......... 54% 17.2M 1s -2023-11-07T14:50:53Z #15 2.220 70500K .......... .......... .......... .......... .......... 54% 24.8M 1s -2023-11-07T14:50:53Z #15 2.224 70550K .......... .......... .......... .......... .......... 54% 106M 1s -2023-11-07T14:50:53Z #15 2.224 70600K .......... .......... .......... .......... .......... 54% 131M 1s -2023-11-07T14:50:53Z #15 2.224 70650K .......... .......... .......... .......... .......... 54% 125M 1s -2023-11-07T14:50:53Z #15 2.224 70700K .......... .......... .......... .......... .......... 54% 119M 1s -2023-11-07T14:50:53Z #15 2.224 70750K .......... .......... .......... .......... .......... 54% 110M 1s -2023-11-07T14:50:53Z #15 2.224 70800K .......... .......... .......... .......... .......... 54% 111M 1s -2023-11-07T14:50:53Z #15 2.224 70850K .......... .......... .......... .......... .......... 54% 83.1M 1s -2023-11-07T14:50:53Z #15 2.224 70900K .......... .......... .......... .......... .......... 54% 13.3M 1s -2023-11-07T14:50:53Z #15 2.228 70950K .......... .......... .......... .......... .......... 54% 21.7M 1s -2023-11-07T14:50:53Z #15 2.230 71000K .......... .......... .......... .......... .......... 54% 42.5M 1s -2023-11-07T14:50:53Z #15 2.231 71050K .......... .......... .......... .......... .......... 54% 43.9M 1s -2023-11-07T14:50:53Z #15 2.236 71100K .......... .......... .......... .......... .......... 54% 127M 1s -2023-11-07T14:50:53Z #15 2.236 71150K .......... .......... .......... .......... .......... 54% 120M 1s -2023-11-07T14:50:53Z #15 2.236 71200K .......... .......... .......... .......... .......... 54% 103M 1s -2023-11-07T14:50:53Z #15 2.236 71250K .......... .......... .......... .......... .......... 55% 125M 1s -2023-11-07T14:50:53Z #15 2.236 71300K .......... .......... .......... .......... .......... 55% 66.8M 1s -2023-11-07T14:50:53Z #15 2.236 71350K .......... .......... .......... .......... .......... 55% 74.8M 1s -2023-11-07T14:50:53Z #15 2.236 71400K .......... .......... .......... .......... .......... 55% 79.6M 1s -2023-11-07T14:50:53Z #15 2.236 71450K .......... .......... .......... .......... .......... 55% 94.5M 1s -2023-11-07T14:50:53Z #15 2.237 71500K .......... .......... .......... .......... .......... 55% 14.1M 1s -2023-11-07T14:50:53Z #15 2.240 71550K .......... .......... .......... .......... .......... 55% 105M 1s -2023-11-07T14:50:53Z #15 2.244 71600K .......... .......... .......... .......... .......... 55% 121M 1s -2023-11-07T14:50:53Z #15 2.244 71650K .......... .......... .......... .......... .......... 55% 154M 1s -2023-11-07T14:50:53Z #15 2.244 71700K .......... .......... .......... .......... .......... 55% 151M 1s -2023-11-07T14:50:53Z #15 2.244 71750K .......... .......... .......... .......... .......... 55% 167M 1s -2023-11-07T14:50:53Z #15 2.244 71800K .......... .......... .......... .......... .......... 55% 137M 1s -2023-11-07T14:50:53Z #15 2.244 71850K .......... .......... .......... .......... .......... 55% 51.3M 1s -2023-11-07T14:50:53Z #15 2.244 71900K .......... .......... .......... .......... .......... 55% 126M 1s -2023-11-07T14:50:53Z #15 2.244 71950K .......... .......... .......... .......... .......... 55% 56.6M 1s -2023-11-07T14:50:53Z #15 2.244 72000K .......... .......... .......... .......... .......... 55% 13.0M 1s -2023-11-07T14:50:53Z #15 2.248 72050K .......... .......... .......... .......... .......... 55% 38.3M 1s -2023-11-07T14:50:53Z #15 2.249 72100K .......... .......... .......... .......... .......... 55% 44.3M 1s -2023-11-07T14:50:53Z #15 2.252 72150K .......... .......... .......... .......... .......... 55% 135M 1s -2023-11-07T14:50:53Z #15 2.252 72200K .......... .......... .......... .......... .......... 55% 159M 1s -2023-11-07T14:50:53Z #15 2.252 72250K .......... .......... .......... .......... .......... 55% 139M 1s -2023-11-07T14:50:53Z #15 2.252 72300K .......... .......... .......... .......... .......... 55% 114M 1s -2023-11-07T14:50:53Z #15 2.252 72350K .......... .......... .......... .......... .......... 55% 12.3M 1s -2023-11-07T14:50:53Z #15 2.256 72400K .......... .......... .......... .......... .......... 55% 8.84M 1s -2023-11-07T14:50:53Z #15 2.261 72450K .......... .......... .......... .......... .......... 55% 11.1M 1s -2023-11-07T14:50:53Z #15 2.266 72500K .......... .......... .......... .......... .......... 55% 10.6M 1s -2023-11-07T14:50:53Z #15 2.270 72550K .......... .......... .......... .......... .......... 56% 12.0M 1s -2023-11-07T14:50:53Z #15 2.281 72600K .......... .......... .......... .......... .......... 56% 108M 1s -2023-11-07T14:50:53Z #15 2.281 72650K .......... .......... .......... .......... .......... 56% 123M 1s -2023-11-07T14:50:53Z #15 2.281 72700K .......... .......... .......... .......... .......... 56% 82.1M 1s -2023-11-07T14:50:53Z #15 2.281 72750K .......... .......... .......... .......... .......... 56% 87.6M 1s -2023-11-07T14:50:53Z #15 2.281 72800K .......... .......... .......... .......... .......... 56% 9.96M 1s -2023-11-07T14:50:53Z #15 2.284 72850K .......... .......... .......... .......... .......... 56% 114M 1s -2023-11-07T14:50:53Z #15 2.284 72900K .......... .......... .......... .......... .......... 56% 134M 1s -2023-11-07T14:50:53Z #15 2.284 72950K .......... .......... .......... .......... .......... 56% 83.9M 1s -2023-11-07T14:50:53Z #15 2.284 73000K .......... .......... .......... .......... .......... 56% 133M 1s -2023-11-07T14:50:53Z #15 2.284 73050K .......... .......... .......... .......... .......... 56% 125M 1s -2023-11-07T14:50:53Z #15 2.284 73100K .......... .......... .......... .......... .......... 56% 63.2M 1s -2023-11-07T14:50:53Z #15 2.284 73150K .......... .......... .......... .......... .......... 56% 13.2M 1s -2023-11-07T14:50:53Z #15 2.288 73200K .......... .......... .......... .......... .......... 56% 34.2M 1s -2023-11-07T14:50:53Z #15 2.292 73250K .......... .......... .......... .......... .......... 56% 40.8M 1s -2023-11-07T14:50:53Z #15 2.292 73300K .......... .......... .......... .......... .......... 56% 37.8M 1s -2023-11-07T14:50:53Z #15 2.292 73350K .......... .......... .......... .......... .......... 56% 30.9M 1s -2023-11-07T14:50:53Z #15 2.293 73400K .......... .......... .......... .......... .......... 56% 36.7M 1s -2023-11-07T14:50:53Z #15 2.295 73450K .......... .......... .......... .......... .......... 56% 23.2M 1s -2023-11-07T14:50:53Z #15 2.297 73500K .......... .......... .......... .......... .......... 56% 34.5M 1s -2023-11-07T14:50:53Z #15 2.299 73550K .......... .......... .......... .......... .......... 56% 25.0M 1s -2023-11-07T14:50:53Z #15 2.300 73600K .......... .......... .......... .......... .......... 56% 50.5M 1s -2023-11-07T14:50:53Z #15 2.305 73650K .......... .......... .......... .......... .......... 56% 106M 1s -2023-11-07T14:50:53Z #15 2.305 73700K .......... .......... .......... .......... .......... 56% 132M 1s -2023-11-07T14:50:53Z #15 2.305 73750K .......... .......... .......... .......... .......... 56% 133M 1s -2023-11-07T14:50:53Z #15 2.305 73800K .......... .......... .......... .......... .......... 56% 100M 1s -2023-11-07T14:50:53Z #15 2.305 73850K .......... .......... .......... .......... .......... 57% 109M 1s -2023-11-07T14:50:53Z #15 2.305 73900K .......... .......... .......... .......... .......... 57% 131M 1s -2023-11-07T14:50:53Z #15 2.305 73950K .......... .......... .......... .......... .......... 57% 23.2M 1s -2023-11-07T14:50:53Z #15 2.306 74000K .......... .......... .......... .......... .......... 57% 28.1M 1s -2023-11-07T14:50:53Z #15 2.308 74050K .......... .......... .......... .......... .......... 57% 38.2M 1s -2023-11-07T14:50:53Z #15 2.309 74100K .......... .......... .......... .......... .......... 57% 40.0M 1s -2023-11-07T14:50:53Z #15 2.310 74150K .......... .......... .......... .......... .......... 57% 34.1M 1s -2023-11-07T14:50:53Z #15 2.311 74200K .......... .......... .......... .......... .......... 57% 31.0M 1s -2023-11-07T14:50:53Z #15 2.313 74250K .......... .......... .......... .......... .......... 57% 39.7M 1s -2023-11-07T14:50:53Z #15 2.315 74300K .......... .......... .......... .......... .......... 57% 93.9M 1s -2023-11-07T14:50:53Z #15 2.315 74350K .......... .......... .......... .......... .......... 57% 34.1M 1s -2023-11-07T14:50:53Z #15 2.316 74400K .......... .......... .......... .......... .......... 57% 50.9M 1s -2023-11-07T14:50:53Z #15 2.317 74450K .......... .......... .......... .......... .......... 57% 70.4M 1s -2023-11-07T14:50:53Z #15 2.318 74500K .......... .......... .......... .......... .......... 57% 111M 1s -2023-11-07T14:50:53Z #15 2.318 74550K .......... .......... .......... .......... .......... 57% 64.3M 1s -2023-11-07T14:50:53Z #15 2.320 74600K .......... .......... .......... .......... .......... 57% 14.7M 1s -2023-11-07T14:50:53Z #15 2.322 74650K .......... .......... .......... .......... .......... 57% 36.8M 1s -2023-11-07T14:50:53Z #15 2.324 74700K .......... .......... .......... .......... .......... 57% 92.5M 1s -2023-11-07T14:50:53Z #15 2.324 74750K .......... .......... .......... .......... .......... 57% 61.7M 1s -2023-11-07T14:50:53Z #15 2.325 74800K .......... .......... .......... .......... .......... 57% 51.2M 1s -2023-11-07T14:50:53Z #15 2.326 74850K .......... .......... .......... .......... .......... 57% 59.2M 1s -2023-11-07T14:50:53Z #15 2.327 74900K .......... .......... .......... .......... .......... 57% 70.1M 1s -2023-11-07T14:50:53Z #15 2.328 74950K .......... .......... .......... .......... .......... 57% 168M 1s -2023-11-07T14:50:53Z #15 2.328 75000K .......... .......... .......... .......... .......... 57% 67.5M 1s -2023-11-07T14:50:53Z #15 2.329 75050K .......... .......... .......... .......... .......... 57% 23.3M 1s -2023-11-07T14:50:53Z #15 2.331 75100K .......... .......... .......... .......... .......... 58% 22.7M 1s -2023-11-07T14:50:53Z #15 2.333 75150K .......... .......... .......... .......... .......... 58% 141M 1s -2023-11-07T14:50:53Z #15 2.333 75200K .......... .......... .......... .......... .......... 58% 52.8M 1s -2023-11-07T14:50:53Z #15 2.334 75250K .......... .......... .......... .......... .......... 58% 82.3M 1s -2023-11-07T14:50:53Z #15 2.335 75300K .......... .......... .......... .......... .......... 58% 97.1M 1s -2023-11-07T14:50:53Z #15 2.335 75350K .......... .......... .......... .......... .......... 58% 75.7M 1s -2023-11-07T14:50:53Z #15 2.336 75400K .......... .......... .......... .......... .......... 58% 111M 1s -2023-11-07T14:50:53Z #15 2.336 75450K .......... .......... .......... .......... .......... 58% 77.3M 1s -2023-11-07T14:50:53Z #15 2.337 75500K .......... .......... .......... .......... .......... 58% 81.6M 1s -2023-11-07T14:50:53Z #15 2.337 75550K .......... .......... .......... .......... .......... 58% 86.1M 1s -2023-11-07T14:50:53Z #15 2.338 75600K .......... .......... .......... .......... .......... 58% 94.5M 1s -2023-11-07T14:50:53Z #15 2.339 75650K .......... .......... .......... .......... .......... 58% 116M 1s -2023-11-07T14:50:53Z #15 2.339 75700K .......... .......... .......... .......... .......... 58% 55.6M 1s -2023-11-07T14:50:53Z #15 2.340 75750K .......... .......... .......... .......... .......... 58% 49.0M 1s -2023-11-07T14:50:53Z #15 2.341 75800K .......... .......... .......... .......... .......... 58% 77.4M 1s -2023-11-07T14:50:53Z #15 2.341 75850K .......... .......... .......... .......... .......... 58% 72.9M 1s -2023-11-07T14:50:53Z #15 2.342 75900K .......... .......... .......... .......... .......... 58% 133M 1s -2023-11-07T14:50:53Z #15 2.342 75950K .......... .......... .......... .......... .......... 58% 55.9M 1s -2023-11-07T14:50:53Z #15 2.347 76000K .......... .......... .......... .......... .......... 58% 138M 1s -2023-11-07T14:50:53Z #15 2.347 76050K .......... .......... .......... .......... .......... 58% 204M 1s -2023-11-07T14:50:53Z #15 2.347 76100K .......... .......... .......... .......... .......... 58% 170M 1s -2023-11-07T14:50:53Z #15 2.347 76150K .......... .......... .......... .......... .......... 58% 176M 1s -2023-11-07T14:50:53Z #15 2.347 76200K .......... .......... .......... .......... .......... 58% 200M 1s -2023-11-07T14:50:53Z #15 2.347 76250K .......... .......... .......... .......... .......... 58% 169M 1s -2023-11-07T14:50:53Z #15 2.347 76300K .......... .......... .......... .......... .......... 58% 181M 1s -2023-11-07T14:50:53Z #15 2.347 76350K .......... .......... .......... .......... .......... 58% 186M 1s -2023-11-07T14:50:53Z #15 2.347 76400K .......... .......... .......... .......... .......... 59% 216M 1s -2023-11-07T14:50:53Z #15 2.347 76450K .......... .......... .......... .......... .......... 59% 211M 1s -2023-11-07T14:50:53Z #15 2.347 76500K .......... .......... .......... .......... .......... 59% 143M 1s -2023-11-07T14:50:53Z #15 2.347 76550K .......... .......... .......... .......... .......... 59% 130M 1s -2023-11-07T14:50:53Z #15 2.347 76600K .......... .......... .......... .......... .......... 59% 55.2M 1s -2023-11-07T14:50:53Z #15 2.348 76650K .......... .......... .......... .......... .......... 59% 44.2M 1s -2023-11-07T14:50:53Z #15 2.349 76700K .......... .......... .......... .......... .......... 59% 55.0M 1s -2023-11-07T14:50:53Z #15 2.351 76750K .......... .......... .......... .......... .......... 59% 132M 1s -2023-11-07T14:50:53Z #15 2.351 76800K .......... .......... .......... .......... .......... 59% 116M 1s -2023-11-07T14:50:53Z #15 2.351 76850K .......... .......... .......... .......... .......... 59% 80.1M 1s -2023-11-07T14:50:53Z #15 2.351 76900K .......... .......... .......... .......... .......... 59% 43.9M 1s -2023-11-07T14:50:53Z #15 2.357 76950K .......... .......... .......... .......... .......... 59% 115M 1s -2023-11-07T14:50:53Z #15 2.357 77000K .......... .......... .......... .......... .......... 59% 161M 1s -2023-11-07T14:50:53Z #15 2.357 77050K .......... .......... .......... .......... .......... 59% 158M 1s -2023-11-07T14:50:53Z #15 2.357 77100K .......... .......... .......... .......... .......... 59% 109M 1s -2023-11-07T14:50:53Z #15 2.357 77150K .......... .......... .......... .......... .......... 59% 142M 1s -2023-11-07T14:50:53Z #15 2.357 77200K .......... .......... .......... .......... .......... 59% 144M 1s -2023-11-07T14:50:53Z #15 2.357 77250K .......... .......... .......... .......... .......... 59% 136M 1s -2023-11-07T14:50:53Z #15 2.357 77300K .......... .......... .......... .......... .......... 59% 72.2M 1s -2023-11-07T14:50:53Z #15 2.357 77350K .......... .......... .......... .......... .......... 59% 89.3M 1s -2023-11-07T14:50:53Z #15 2.357 77400K .......... .......... .......... .......... .......... 59% 116M 1s -2023-11-07T14:50:53Z #15 2.357 77450K .......... .......... .......... .......... .......... 59% 22.7M 1s -2023-11-07T14:50:53Z #15 2.358 77500K .......... .......... .......... .......... .......... 59% 42.7M 1s -2023-11-07T14:50:53Z #15 2.360 77550K .......... .......... .......... .......... .......... 59% 96.1M 1s -2023-11-07T14:50:53Z #15 2.360 77600K .......... .......... .......... .......... .......... 59% 61.7M 1s -2023-11-07T14:50:53Z #15 2.361 77650K .......... .......... .......... .......... .......... 59% 52.1M 1s -2023-11-07T14:50:53Z #15 2.362 77700K .......... .......... .......... .......... .......... 60% 38.7M 1s -2023-11-07T14:50:53Z #15 2.363 77750K .......... .......... .......... .......... .......... 60% 31.5M 1s -2023-11-07T14:50:53Z #15 2.365 77800K .......... .......... .......... .......... .......... 60% 46.4M 1s -2023-11-07T14:50:53Z #15 2.366 77850K .......... .......... .......... .......... .......... 60% 37.0M 1s -2023-11-07T14:50:53Z #15 2.367 77900K .......... .......... .......... .......... .......... 60% 87.8M 1s -2023-11-07T14:50:53Z #15 2.368 77950K .......... .......... .......... .......... .......... 60% 21.0M 1s -2023-11-07T14:50:53Z #15 2.370 78000K .......... .......... .......... .......... .......... 60% 31.0M 1s -2023-11-07T14:50:53Z #15 2.371 78050K .......... .......... .......... .......... .......... 60% 53.7M 1s -2023-11-07T14:50:53Z #15 2.372 78100K .......... .......... .......... .......... .......... 60% 55.6M 1s -2023-11-07T14:50:53Z #15 2.374 78150K .......... .......... .......... .......... .......... 60% 28.0M 1s -2023-11-07T14:50:53Z #15 2.375 78200K .......... .......... .......... .......... .......... 60% 20.3M 1s -2023-11-07T14:50:53Z #15 2.378 78250K .......... .......... .......... .......... .......... 60% 41.7M 1s -2023-11-07T14:50:53Z #15 2.379 78300K .......... .......... .......... .......... .......... 60% 29.5M 1s -2023-11-07T14:50:53Z #15 2.385 78350K .......... .......... .......... .......... .......... 60% 49.2M 1s -2023-11-07T14:50:53Z #15 2.385 78400K .......... .......... .......... .......... .......... 60% 156M 1s -2023-11-07T14:50:53Z #15 2.385 78450K .......... .......... .......... .......... .......... 60% 155M 1s -2023-11-07T14:50:53Z #15 2.385 78500K .......... .......... .......... .......... .......... 60% 177M 1s -2023-11-07T14:50:53Z #15 2.385 78550K .......... .......... .......... .......... .......... 60% 152M 1s -2023-11-07T14:50:53Z #15 2.385 78600K .......... .......... .......... .......... .......... 60% 156M 1s -2023-11-07T14:50:53Z #15 2.385 78650K .......... .......... .......... .......... .......... 60% 98.8M 1s -2023-11-07T14:50:53Z #15 2.385 78700K .......... .......... .......... .......... .......... 60% 79.5M 1s -2023-11-07T14:50:53Z #15 2.385 78750K .......... .......... .......... .......... .......... 60% 131M 1s -2023-11-07T14:50:53Z #15 2.385 78800K .......... .......... .......... .......... .......... 60% 6.72M 1s -2023-11-07T14:50:53Z #15 2.392 78850K .......... .......... .......... .......... .......... 60% 15.0M 1s -2023-11-07T14:50:53Z #15 2.395 78900K .......... .......... .......... .......... .......... 60% 16.2M 1s -2023-11-07T14:50:53Z #15 2.398 78950K .......... .......... .......... .......... .......... 60% 8.67M 1s -2023-11-07T14:50:53Z #15 2.404 79000K .......... .......... .......... .......... .......... 61% 9.90M 1s -2023-11-07T14:50:53Z #15 2.408 79050K .......... .......... .......... .......... .......... 61% 10.4M 1s -2023-11-07T14:50:53Z #15 2.413 79100K .......... .......... .......... .......... .......... 61% 27.6M 1s -2023-11-07T14:50:53Z #15 2.415 79150K .......... .......... .......... .......... .......... 61% 46.8M 1s -2023-11-07T14:50:53Z #15 2.416 79200K .......... .......... .......... .......... .......... 61% 60.7M 1s -2023-11-07T14:50:53Z #15 2.417 79250K .......... .......... .......... .......... .......... 61% 22.0M 1s -2023-11-07T14:50:53Z #15 2.419 79300K .......... .......... .......... .......... .......... 61% 25.7M 1s -2023-11-07T14:50:53Z #15 2.421 79350K .......... .......... .......... .......... .......... 61% 36.7M 1s -2023-11-07T14:50:53Z #15 2.422 79400K .......... .......... .......... .......... .......... 61% 74.6M 1s -2023-11-07T14:50:53Z #15 2.423 79450K .......... .......... .......... .......... .......... 61% 30.8M 1s -2023-11-07T14:50:53Z #15 2.424 79500K .......... .......... .......... .......... .......... 61% 15.5M 1s -2023-11-07T14:50:53Z #15 2.432 79550K .......... .......... .......... .......... .......... 61% 170M 1s -2023-11-07T14:50:53Z #15 2.432 79600K .......... .......... .......... .......... .......... 61% 169M 1s -2023-11-07T14:50:53Z #15 2.432 79650K .......... .......... .......... .......... .......... 61% 184M 1s -2023-11-07T14:50:53Z #15 2.432 79700K .......... .......... .......... .......... .......... 61% 164M 1s -2023-11-07T14:50:53Z #15 2.432 79750K .......... .......... .......... .......... .......... 61% 103M 1s -2023-11-07T14:50:53Z #15 2.432 79800K .......... .......... .......... .......... .......... 61% 162M 1s -2023-11-07T14:50:53Z #15 2.432 79850K .......... .......... .......... .......... .......... 61% 181M 1s -2023-11-07T14:50:53Z #15 2.432 79900K .......... .......... .......... .......... .......... 61% 183M 1s -2023-11-07T14:50:53Z #15 2.432 79950K .......... .......... .......... .......... .......... 61% 78.5M 1s -2023-11-07T14:50:53Z #15 2.432 80000K .......... .......... .......... .......... .......... 61% 105M 1s -2023-11-07T14:50:53Z #15 2.432 80050K .......... .......... .......... .......... .......... 61% 163M 1s -2023-11-07T14:50:53Z #15 2.432 80100K .......... .......... .......... .......... .......... 61% 185M 1s -2023-11-07T14:50:53Z #15 2.432 80150K .......... .......... .......... .......... .......... 61% 93.0M 1s -2023-11-07T14:50:53Z #15 2.432 80200K .......... .......... .......... .......... .......... 61% 14.6M 1s -2023-11-07T14:50:53Z #15 2.435 80250K .......... .......... .......... .......... .......... 61% 18.1M 1s -2023-11-07T14:50:53Z #15 2.438 80300K .......... .......... .......... .......... .......... 62% 33.8M 1s -2023-11-07T14:50:53Z #15 2.440 80350K .......... .......... .......... .......... .......... 62% 32.0M 1s -2023-11-07T14:50:53Z #15 2.441 80400K .......... .......... .......... .......... .......... 62% 35.4M 1s -2023-11-07T14:50:53Z #15 2.442 80450K .......... .......... .......... .......... .......... 62% 40.5M 1s -2023-11-07T14:50:53Z #15 2.444 80500K .......... .......... .......... .......... .......... 62% 33.2M 1s -2023-11-07T14:50:53Z #15 2.445 80550K .......... .......... .......... .......... .......... 62% 39.7M 1s -2023-11-07T14:50:53Z #15 2.446 80600K .......... .......... .......... .......... .......... 62% 30.9M 1s -2023-11-07T14:50:53Z #15 2.448 80650K .......... .......... .......... .......... .......... 62% 38.1M 1s -2023-11-07T14:50:53Z #15 2.453 80700K .......... .......... .......... .......... .......... 62% 42.6M 1s -2023-11-07T14:50:53Z #15 2.453 80750K .......... .......... .......... .......... .......... 62% 42.7M 1s -2023-11-07T14:50:53Z #15 2.453 80800K .......... .......... .......... .......... .......... 62% 21.9M 1s -2023-11-07T14:50:53Z #15 2.454 80850K .......... .......... .......... .......... .......... 62% 27.6M 1s -2023-11-07T14:50:53Z #15 2.456 80900K .......... .......... .......... .......... .......... 62% 31.8M 1s -2023-11-07T14:50:53Z #15 2.457 80950K .......... .......... .......... .......... .......... 62% 38.2M 1s -2023-11-07T14:50:53Z #15 2.459 81000K .......... .......... .......... .......... .......... 62% 27.2M 1s -2023-11-07T14:50:53Z #15 2.460 81050K .......... .......... .......... .......... .......... 62% 37.5M 1s -2023-11-07T14:50:53Z #15 2.461 81100K .......... .......... .......... .......... .......... 62% 37.0M 1s -2023-11-07T14:50:53Z #15 2.463 81150K .......... .......... .......... .......... .......... 62% 27.4M 1s -2023-11-07T14:50:53Z #15 2.465 81200K .......... .......... .......... .......... .......... 62% 44.9M 1s -2023-11-07T14:50:53Z #15 2.466 81250K .......... .......... .......... .......... .......... 62% 44.8M 1s -2023-11-07T14:50:53Z #15 2.469 81300K .......... .......... .......... .......... .......... 62% 43.2M 1s -2023-11-07T14:50:53Z #15 2.469 81350K .......... .......... .......... .......... .......... 62% 23.9M 1s -2023-11-07T14:50:53Z #15 2.470 81400K .......... .......... .......... .......... .......... 62% 31.8M 1s -2023-11-07T14:50:53Z #15 2.471 81450K .......... .......... .......... .......... .......... 62% 36.2M 1s -2023-11-07T14:50:53Z #15 2.473 81500K .......... .......... .......... .......... .......... 62% 37.5M 1s -2023-11-07T14:50:53Z #15 2.474 81550K .......... .......... .......... .......... .......... 62% 46.4M 1s -2023-11-07T14:50:53Z #15 2.475 81600K .......... .......... .......... .......... .......... 63% 84.4M 1s -2023-11-07T14:50:53Z #15 2.476 81650K .......... .......... .......... .......... .......... 63% 45.8M 1s -2023-11-07T14:50:53Z #15 2.477 81700K .......... .......... .......... .......... .......... 63% 49.9M 1s -2023-11-07T14:50:53Z #15 2.478 81750K .......... .......... .......... .......... .......... 63% 59.5M 1s -2023-11-07T14:50:53Z #15 2.479 81800K .......... .......... .......... .......... .......... 63% 44.2M 1s -2023-11-07T14:50:53Z #15 2.480 81850K .......... .......... .......... .......... .......... 63% 59.2M 1s -2023-11-07T14:50:53Z #15 2.481 81900K .......... .......... .......... .......... .......... 63% 54.0M 1s -2023-11-07T14:50:53Z #15 2.482 81950K .......... .......... .......... .......... .......... 63% 38.1M 1s -2023-11-07T14:50:53Z #15 2.483 82000K .......... .......... .......... .......... .......... 63% 48.1M 1s -2023-11-07T14:50:53Z #15 2.484 82050K .......... .......... .......... .......... .......... 63% 41.8M 1s -2023-11-07T14:50:53Z #15 2.485 82100K .......... .......... .......... .......... .......... 63% 68.9M 1s -2023-11-07T14:50:53Z #15 2.486 82150K .......... .......... .......... .......... .......... 63% 50.4M 1s -2023-11-07T14:50:53Z #15 2.487 82200K .......... .......... .......... .......... .......... 63% 87.1M 1s -2023-11-07T14:50:53Z #15 2.487 82250K .......... .......... .......... .......... .......... 63% 46.0M 1s -2023-11-07T14:50:53Z #15 2.488 82300K .......... .......... .......... .......... .......... 63% 40.1M 1s -2023-11-07T14:50:53Z #15 2.489 82350K .......... .......... .......... .......... .......... 63% 46.6M 1s -2023-11-07T14:50:53Z #15 2.491 82400K .......... .......... .......... .......... .......... 63% 40.9M 1s -2023-11-07T14:50:53Z #15 2.492 82450K .......... .......... .......... .......... .......... 63% 34.3M 1s -2023-11-07T14:50:53Z #15 2.493 82500K .......... .......... .......... .......... .......... 63% 42.4M 1s -2023-11-07T14:50:53Z #15 2.495 82550K .......... .......... .......... .......... .......... 63% 170M 1s -2023-11-07T14:50:53Z #15 2.495 82600K .......... .......... .......... .......... .......... 63% 27.4M 1s -2023-11-07T14:50:53Z #15 2.496 82650K .......... .......... .......... .......... .......... 63% 41.9M 1s -2023-11-07T14:50:53Z #15 2.498 82700K .......... .......... .......... .......... .......... 63% 53.5M 1s -2023-11-07T14:50:53Z #15 2.499 82750K .......... .......... .......... .......... .......... 63% 32.3M 1s -2023-11-07T14:50:53Z #15 2.500 82800K .......... .......... .......... .......... .......... 63% 34.9M 1s -2023-11-07T14:50:53Z #15 2.502 82850K .......... .......... .......... .......... .......... 63% 46.7M 1s -2023-11-07T14:50:53Z #15 2.502 82900K .......... .......... .......... .......... .......... 64% 33.2M 1s -2023-11-07T14:50:53Z #15 2.504 82950K .......... .......... .......... .......... .......... 64% 40.6M 1s -2023-11-07T14:50:53Z #15 2.505 83000K .......... .......... .......... .......... .......... 64% 25.7M 1s -2023-11-07T14:50:53Z #15 2.507 83050K .......... .......... .......... .......... .......... 64% 30.1M 1s -2023-11-07T14:50:53Z #15 2.509 83100K .......... .......... .......... .......... .......... 64% 30.8M 1s -2023-11-07T14:50:53Z #15 2.510 83150K .......... .......... .......... .......... .......... 64% 33.0M 1s -2023-11-07T14:50:53Z #15 2.512 83200K .......... .......... .......... .......... .......... 64% 35.9M 1s -2023-11-07T14:50:53Z #15 2.513 83250K .......... .......... .......... .......... .......... 64% 28.2M 1s -2023-11-07T14:50:53Z #15 2.515 83300K .......... .......... .......... .......... .......... 64% 35.0M 1s -2023-11-07T14:50:53Z #15 2.516 83350K .......... .......... .......... .......... .......... 64% 34.2M 1s -2023-11-07T14:50:53Z #15 2.518 83400K .......... .......... .......... .......... .......... 64% 32.0M 1s -2023-11-07T14:50:53Z #15 2.519 83450K .......... .......... .......... .......... .......... 64% 32.5M 1s -2023-11-07T14:50:53Z #15 2.521 83500K .......... .......... .......... .......... .......... 64% 31.4M 1s -2023-11-07T14:50:53Z #15 2.523 83550K .......... .......... .......... .......... .......... 64% 24.2M 1s -2023-11-07T14:50:53Z #15 2.524 83600K .......... .......... .......... .......... .......... 64% 20.8M 1s -2023-11-07T14:50:53Z #15 2.527 83650K .......... .......... .......... .......... .......... 64% 34.8M 1s -2023-11-07T14:50:53Z #15 2.528 83700K .......... .......... .......... .......... .......... 64% 31.1M 1s -2023-11-07T14:50:53Z #15 2.529 83750K .......... .......... .......... .......... .......... 64% 33.8M 1s -2023-11-07T14:50:53Z #15 2.531 83800K .......... .......... .......... .......... .......... 64% 35.8M 1s -2023-11-07T14:50:53Z #15 2.532 83850K .......... .......... .......... .......... .......... 64% 31.3M 1s -2023-11-07T14:50:53Z #15 2.534 83900K .......... .......... .......... .......... .......... 64% 38.1M 1s -2023-11-07T14:50:53Z #15 2.535 83950K .......... .......... .......... .......... .......... 64% 37.0M 1s -2023-11-07T14:50:53Z #15 2.537 84000K .......... .......... .......... .......... .......... 64% 30.2M 1s -2023-11-07T14:50:53Z #15 2.538 84050K .......... .......... .......... .......... .......... 64% 28.8M 1s -2023-11-07T14:50:53Z #15 2.540 84100K .......... .......... .......... .......... .......... 64% 24.7M 1s -2023-11-07T14:50:53Z #15 2.542 84150K .......... .......... .......... .......... .......... 64% 37.8M 1s -2023-11-07T14:50:53Z #15 2.543 84200K .......... .......... .......... .......... .......... 65% 37.0M 1s -2023-11-07T14:50:53Z #15 2.545 84250K .......... .......... .......... .......... .......... 65% 29.0M 1s -2023-11-07T14:50:53Z #15 2.546 84300K .......... .......... .......... .......... .......... 65% 39.1M 1s -2023-11-07T14:50:53Z #15 2.547 84350K .......... .......... .......... .......... .......... 65% 30.7M 1s -2023-11-07T14:50:53Z #15 2.549 84400K .......... .......... .......... .......... .......... 65% 34.5M 1s -2023-11-07T14:50:53Z #15 2.550 84450K .......... .......... .......... .......... .......... 65% 27.3M 1s -2023-11-07T14:50:53Z #15 2.552 84500K .......... .......... .......... .......... .......... 65% 32.3M 1s -2023-11-07T14:50:53Z #15 2.554 84550K .......... .......... .......... .......... .......... 65% 53.0M 1s -2023-11-07T14:50:53Z #15 2.555 84600K .......... .......... .......... .......... .......... 65% 29.2M 1s -2023-11-07T14:50:53Z #15 2.556 84650K .......... .......... .......... .......... .......... 65% 29.4M 1s -2023-11-07T14:50:53Z #15 2.558 84700K .......... .......... .......... .......... .......... 65% 24.3M 1s -2023-11-07T14:50:53Z #15 2.560 84750K .......... .......... .......... .......... .......... 65% 34.7M 1s -2023-11-07T14:50:53Z #15 2.561 84800K .......... .......... .......... .......... .......... 65% 42.0M 1s -2023-11-07T14:50:53Z #15 2.562 84850K .......... .......... .......... .......... .......... 65% 31.1M 1s -2023-11-07T14:50:53Z #15 2.564 84900K .......... .......... .......... .......... .......... 65% 25.9M 1s -2023-11-07T14:50:53Z #15 2.566 84950K .......... .......... .......... .......... .......... 65% 24.7M 1s -2023-11-07T14:50:53Z #15 2.568 85000K .......... .......... .......... .......... .......... 65% 28.1M 1s -2023-11-07T14:50:53Z #15 2.570 85050K .......... .......... .......... .......... .......... 65% 27.6M 1s -2023-11-07T14:50:53Z #15 2.571 85100K .......... .......... .......... .......... .......... 65% 34.9M 1s -2023-11-07T14:50:53Z #15 2.573 85150K .......... .......... .......... .......... .......... 65% 30.9M 1s -2023-11-07T14:50:53Z #15 2.574 85200K .......... .......... .......... .......... .......... 65% 30.2M 1s -2023-11-07T14:50:53Z #15 2.576 85250K .......... .......... .......... .......... .......... 65% 20.7M 1s -2023-11-07T14:50:53Z #15 2.578 85300K .......... .......... .......... .......... .......... 65% 37.6M 1s -2023-11-07T14:50:53Z #15 2.580 85350K .......... .......... .......... .......... .......... 65% 32.5M 1s -2023-11-07T14:50:53Z #15 2.581 85400K .......... .......... .......... .......... .......... 65% 30.8M 1s -2023-11-07T14:50:53Z #15 2.583 85450K .......... .......... .......... .......... .......... 65% 21.1M 1s -2023-11-07T14:50:53Z #15 2.585 85500K .......... .......... .......... .......... .......... 66% 18.1M 1s -2023-11-07T14:50:53Z #15 2.592 85550K .......... .......... .......... .......... .......... 66% 177M 1s -2023-11-07T14:50:53Z #15 2.592 85600K .......... .......... .......... .......... .......... 66% 183M 1s -2023-11-07T14:50:53Z #15 2.592 85650K .......... .......... .......... .......... .......... 66% 153M 1s -2023-11-07T14:50:53Z #15 2.592 85700K .......... .......... .......... .......... .......... 66% 120M 1s -2023-11-07T14:50:53Z #15 2.592 85750K .......... .......... .......... .......... .......... 66% 149M 1s -2023-11-07T14:50:53Z #15 2.592 85800K .......... .......... .......... .......... .......... 66% 182M 1s -2023-11-07T14:50:53Z #15 2.592 85850K .......... .......... .......... .......... .......... 66% 181M 1s -2023-11-07T14:50:53Z #15 2.592 85900K .......... .......... .......... .......... .......... 66% 184M 1s -2023-11-07T14:50:53Z #15 2.592 85950K .......... .......... .......... .......... .......... 66% 91.4M 1s -2023-11-07T14:50:53Z #15 2.592 86000K .......... .......... .......... .......... .......... 66% 98.9M 1s -2023-11-07T14:50:53Z #15 2.592 86050K .......... .......... .......... .......... .......... 66% 184M 1s -2023-11-07T14:50:53Z #15 2.592 86100K .......... .......... .......... .......... .......... 66% 114M 1s -2023-11-07T14:50:53Z #15 2.592 86150K .......... .......... .......... .......... .......... 66% 121M 1s -2023-11-07T14:50:53Z #15 2.592 86200K .......... .......... .......... .......... .......... 66% 15.4M 1s -2023-11-07T14:50:53Z #15 2.595 86250K .......... .......... .......... .......... .......... 66% 11.9M 1s -2023-11-07T14:50:53Z #15 2.600 86300K .......... .......... .......... .......... .......... 66% 11.7M 1s -2023-11-07T14:50:53Z #15 2.604 86350K .......... .......... .......... .......... .......... 66% 9.83M 1s -2023-11-07T14:50:53Z #15 2.609 86400K .......... .......... .......... .......... .......... 66% 16.1M 1s -2023-11-07T14:50:53Z #15 2.612 86450K .......... .......... .......... .......... .......... 66% 10.2M 1s -2023-11-07T14:50:53Z #15 2.617 86500K .......... .......... .......... .......... .......... 66% 15.3M 1s -2023-11-07T14:50:53Z #15 2.620 86550K .......... .......... .......... .......... .......... 66% 38.0M 1s -2023-11-07T14:50:53Z #15 2.621 86600K .......... .......... .......... .......... .......... 66% 47.8M 1s -2023-11-07T14:50:53Z #15 2.623 86650K .......... .......... .......... .......... .......... 66% 12.8M 1s -2023-11-07T14:50:53Z #15 2.626 86700K .......... .......... .......... .......... .......... 66% 22.2M 1s -2023-11-07T14:50:53Z #15 2.628 86750K .......... .......... .......... .......... .......... 66% 35.7M 1s -2023-11-07T14:50:53Z #15 2.629 86800K .......... .......... .......... .......... .......... 67% 33.9M 1s -2023-11-07T14:50:53Z #15 2.631 86850K .......... .......... .......... .......... .......... 67% 32.8M 1s -2023-11-07T14:50:53Z #15 2.633 86900K .......... .......... .......... .......... .......... 67% 28.3M 1s -2023-11-07T14:50:53Z #15 2.634 86950K .......... .......... .......... .......... .......... 67% 29.8M 1s -2023-11-07T14:50:53Z #15 2.636 87000K .......... .......... .......... .......... .......... 67% 24.0M 1s -2023-11-07T14:50:53Z #15 2.638 87050K .......... .......... .......... .......... .......... 67% 35.4M 1s -2023-11-07T14:50:53Z #15 2.639 87100K .......... .......... .......... .......... .......... 67% 30.4M 1s -2023-11-07T14:50:53Z #15 2.641 87150K .......... .......... .......... .......... .......... 67% 27.7M 1s -2023-11-07T14:50:53Z #15 2.642 87200K .......... .......... .......... .......... .......... 67% 32.5M 1s -2023-11-07T14:50:53Z #15 2.644 87250K .......... .......... .......... .......... .......... 67% 24.2M 1s -2023-11-07T14:50:53Z #15 2.646 87300K .......... .......... .......... .......... .......... 67% 23.9M 1s -2023-11-07T14:50:53Z #15 2.648 87350K .......... .......... .......... .......... .......... 67% 26.5M 1s -2023-11-07T14:50:53Z #15 2.650 87400K .......... .......... .......... .......... .......... 67% 93.7M 1s -2023-11-07T14:50:53Z #15 2.650 87450K .......... .......... .......... .......... .......... 67% 44.5M 1s -2023-11-07T14:50:53Z #15 2.651 87500K .......... .......... .......... .......... .......... 67% 34.1M 1s -2023-11-07T14:50:53Z #15 2.653 87550K .......... .......... .......... .......... .......... 67% 33.0M 1s -2023-11-07T14:50:53Z #15 2.654 87600K .......... .......... .......... .......... .......... 67% 33.3M 1s -2023-11-07T14:50:53Z #15 2.656 87650K .......... .......... .......... .......... .......... 67% 30.9M 1s -2023-11-07T14:50:53Z #15 2.657 87700K .......... .......... .......... .......... .......... 67% 32.4M 1s -2023-11-07T14:50:53Z #15 2.659 87750K .......... .......... .......... .......... .......... 67% 29.3M 1s -2023-11-07T14:50:53Z #15 2.661 87800K .......... .......... .......... .......... .......... 67% 33.5M 1s -2023-11-07T14:50:53Z #15 2.662 87850K .......... .......... .......... .......... .......... 67% 21.4M 1s -2023-11-07T14:50:53Z #15 2.664 87900K .......... .......... .......... .......... .......... 67% 34.3M 1s -2023-11-07T14:50:53Z #15 2.666 87950K .......... .......... .......... .......... .......... 67% 34.5M 1s -2023-11-07T14:50:53Z #15 2.667 88000K .......... .......... .......... .......... .......... 67% 30.9M 1s -2023-11-07T14:50:53Z #15 2.669 88050K .......... .......... .......... .......... .......... 67% 49.4M 1s -2023-11-07T14:50:53Z #15 2.670 88100K .......... .......... .......... .......... .......... 68% 27.5M 1s -2023-11-07T14:50:53Z #15 2.672 88150K .......... .......... .......... .......... .......... 68% 32.2M 1s -2023-11-07T14:50:53Z #15 2.673 88200K .......... .......... .......... .......... .......... 68% 43.2M 1s -2023-11-07T14:50:53Z #15 2.674 88250K .......... .......... .......... .......... .......... 68% 30.9M 1s -2023-11-07T14:50:53Z #15 2.676 88300K .......... .......... .......... .......... .......... 68% 34.5M 1s -2023-11-07T14:50:53Z #15 2.678 88350K .......... .......... .......... .......... .......... 68% 28.2M 1s -2023-11-07T14:50:53Z #15 2.679 88400K .......... .......... .......... .......... .......... 68% 32.6M 1s -2023-11-07T14:50:53Z #15 2.681 88450K .......... .......... .......... .......... .......... 68% 26.3M 1s -2023-11-07T14:50:53Z #15 2.683 88500K .......... .......... .......... .......... .......... 68% 36.5M 1s -2023-11-07T14:50:53Z #15 2.684 88550K .......... .......... .......... .......... .......... 68% 32.8M 1s -2023-11-07T14:50:53Z #15 2.685 88600K .......... .......... .......... .......... .......... 68% 28.6M 1s -2023-11-07T14:50:53Z #15 2.687 88650K .......... .......... .......... .......... .......... 68% 30.4M 1s -2023-11-07T14:50:53Z #15 2.688 88700K .......... .......... .......... .......... .......... 68% 32.1M 1s -2023-11-07T14:50:53Z #15 2.690 88750K .......... .......... .......... .......... .......... 68% 35.0M 1s -2023-11-07T14:50:53Z #15 2.691 88800K .......... .......... .......... .......... .......... 68% 35.0M 1s -2023-11-07T14:50:53Z #15 2.693 88850K .......... .......... .......... .......... .......... 68% 30.1M 1s -2023-11-07T14:50:53Z #15 2.696 88900K .......... .......... .......... .......... .......... 68% 40.2M 1s -2023-11-07T14:50:53Z #15 2.696 88950K .......... .......... .......... .......... .......... 68% 27.7M 1s -2023-11-07T14:50:53Z #15 2.697 89000K .......... .......... .......... .......... .......... 68% 27.3M 1s -2023-11-07T14:50:53Z #15 2.699 89050K .......... .......... .......... .......... .......... 68% 40.7M 1s -2023-11-07T14:50:53Z #15 2.700 89100K .......... .......... .......... .......... .......... 68% 28.1M 1s -2023-11-07T14:50:53Z #15 2.703 89150K .......... .......... .......... .......... .......... 68% 44.4M 1s -2023-11-07T14:50:53Z #15 2.703 89200K .......... .......... .......... .......... .......... 68% 26.7M 1s -2023-11-07T14:50:53Z #15 2.705 89250K .......... .......... .......... .......... .......... 68% 27.5M 1s -2023-11-07T14:50:53Z #15 2.707 89300K .......... .......... .......... .......... .......... 68% 81.0M 1s -2023-11-07T14:50:53Z #15 2.708 89350K .......... .......... .......... .......... .......... 68% 30.8M 1s -2023-11-07T14:50:53Z #15 2.709 89400K .......... .......... .......... .......... .......... 69% 30.2M 1s -2023-11-07T14:50:53Z #15 2.711 89450K .......... .......... .......... .......... .......... 69% 30.3M 1s -2023-11-07T14:50:53Z #15 2.712 89500K .......... .......... .......... .......... .......... 69% 60.2M 1s -2023-11-07T14:50:53Z #15 2.713 89550K .......... .......... .......... .......... .......... 69% 31.4M 1s -2023-11-07T14:50:53Z #15 2.715 89600K .......... .......... .......... .......... .......... 69% 155M 1s -2023-11-07T14:50:53Z #15 2.715 89650K .......... .......... .......... .......... .......... 69% 29.4M 1s -2023-11-07T14:50:53Z #15 2.716 89700K .......... .......... .......... .......... .......... 69% 72.2M 1s -2023-11-07T14:50:53Z #15 2.717 89750K .......... .......... .......... .......... .......... 69% 41.6M 1s -2023-11-07T14:50:53Z #15 2.718 89800K .......... .......... .......... .......... .......... 69% 37.3M 1s -2023-11-07T14:50:53Z #15 2.720 89850K .......... .......... .......... .......... .......... 69% 38.9M 1s -2023-11-07T14:50:53Z #15 2.721 89900K .......... .......... .......... .......... .......... 69% 50.3M 1s -2023-11-07T14:50:53Z #15 2.722 89950K .......... .......... .......... .......... .......... 69% 24.0M 1s -2023-11-07T14:50:53Z #15 2.724 90000K .......... .......... .......... .......... .......... 69% 35.6M 1s -2023-11-07T14:50:53Z #15 2.725 90050K .......... .......... .......... .......... .......... 69% 68.8M 1s -2023-11-07T14:50:53Z #15 2.726 90100K .......... .......... .......... .......... .......... 69% 52.9M 1s -2023-11-07T14:50:53Z #15 2.727 90150K .......... .......... .......... .......... .......... 69% 149M 1s -2023-11-07T14:50:53Z #15 2.727 90200K .......... .......... .......... .......... .......... 69% 9.12M 1s -2023-11-07T14:50:53Z #15 2.735 90250K .......... .......... .......... .......... .......... 69% 113M 1s -2023-11-07T14:50:53Z #15 2.735 90300K .......... .......... .......... .......... .......... 69% 127M 1s -2023-11-07T14:50:53Z #15 2.735 90350K .......... .......... .......... .......... .......... 69% 98.5M 1s -2023-11-07T14:50:53Z #15 2.735 90400K .......... .......... .......... .......... .......... 69% 121M 1s -2023-11-07T14:50:53Z #15 2.735 90450K .......... .......... .......... .......... .......... 69% 125M 1s -2023-11-07T14:50:53Z #15 2.735 90500K .......... .......... .......... .......... .......... 69% 104M 1s -2023-11-07T14:50:53Z #15 2.735 90550K .......... .......... .......... .......... .......... 69% 130M 1s -2023-11-07T14:50:53Z #15 2.735 90600K .......... .......... .......... .......... .......... 69% 69.2M 1s -2023-11-07T14:50:53Z #15 2.737 90650K .......... .......... .......... .......... .......... 70% 97.1M 1s -2023-11-07T14:50:53Z #15 2.737 90700K .......... .......... .......... .......... .......... 70% 127M 1s -2023-11-07T14:50:53Z #15 2.737 90750K .......... .......... .......... .......... .......... 70% 138M 1s -2023-11-07T14:50:53Z #15 2.738 90800K .......... .......... .......... .......... .......... 70% 137M 1s -2023-11-07T14:50:53Z #15 2.738 90850K .......... .......... .......... .......... .......... 70% 122M 1s -2023-11-07T14:50:53Z #15 2.738 90900K .......... .......... .......... .......... .......... 70% 131M 1s -2023-11-07T14:50:53Z #15 2.738 90950K .......... .......... .......... .......... .......... 70% 119M 1s -2023-11-07T14:50:53Z #15 2.739 91000K .......... .......... .......... .......... .......... 70% 129M 1s -2023-11-07T14:50:53Z #15 2.739 91050K .......... .......... .......... .......... .......... 70% 104M 1s -2023-11-07T14:50:53Z #15 2.740 91100K .......... .......... .......... .......... .......... 70% 122M 1s -2023-11-07T14:50:53Z #15 2.740 91150K .......... .......... .......... .......... .......... 70% 119M 1s -2023-11-07T14:50:53Z #15 2.741 91200K .......... .......... .......... .......... .......... 70% 141M 1s -2023-11-07T14:50:53Z #15 2.745 91250K .......... .......... .......... .......... .......... 70% 162M 1s -2023-11-07T14:50:53Z #15 2.745 91300K .......... .......... .......... .......... .......... 70% 190M 1s -2023-11-07T14:50:53Z #15 2.745 91350K .......... .......... .......... .......... .......... 70% 144M 1s -2023-11-07T14:50:53Z #15 2.745 91400K .......... .......... .......... .......... .......... 70% 170M 1s -2023-11-07T14:50:53Z #15 2.745 91450K .......... .......... .......... .......... .......... 70% 171M 1s -2023-11-07T14:50:53Z #15 2.745 91500K .......... .......... .......... .......... .......... 70% 146M 1s -2023-11-07T14:50:53Z #15 2.745 91550K .......... .......... .......... .......... .......... 70% 138M 1s -2023-11-07T14:50:53Z #15 2.745 91600K .......... .......... .......... .......... .......... 70% 158M 1s -2023-11-07T14:50:53Z #15 2.745 91650K .......... .......... .......... .......... .......... 70% 174M 1s -2023-11-07T14:50:53Z #15 2.745 91700K .......... .......... .......... .......... .......... 70% 127M 1s -2023-11-07T14:50:53Z #15 2.745 91750K .......... .......... .......... .......... .......... 70% 25.8M 1s -2023-11-07T14:50:53Z #15 2.746 91800K .......... .......... .......... .......... .......... 70% 110M 1s -2023-11-07T14:50:53Z #15 2.747 91850K .......... .......... .......... .......... .......... 70% 112M 1s -2023-11-07T14:50:53Z #15 2.747 91900K .......... .......... .......... .......... .......... 70% 93.0M 1s -2023-11-07T14:50:53Z #15 2.747 91950K .......... .......... .......... .......... .......... 71% 119M 1s -2023-11-07T14:50:53Z #15 2.748 92000K .......... .......... .......... .......... .......... 71% 114M 1s -2023-11-07T14:50:53Z #15 2.748 92050K .......... .......... .......... .......... .......... 71% 108M 1s -2023-11-07T14:50:53Z #15 2.749 92100K .......... .......... .......... .......... .......... 71% 105M 1s -2023-11-07T14:50:53Z #15 2.749 92150K .......... .......... .......... .......... .......... 71% 126M 1s -2023-11-07T14:50:53Z #15 2.750 92200K .......... .......... .......... .......... .......... 71% 107M 1s -2023-11-07T14:50:53Z #15 2.750 92250K .......... .......... .......... .......... .......... 71% 118M 1s -2023-11-07T14:50:53Z #15 2.750 92300K .......... .......... .......... .......... .......... 71% 128M 1s -2023-11-07T14:50:53Z #15 2.751 92350K .......... .......... .......... .......... .......... 71% 112M 1s -2023-11-07T14:50:53Z #15 2.751 92400K .......... .......... .......... .......... .......... 71% 122M 1s -2023-11-07T14:50:53Z #15 2.752 92450K .......... .......... .......... .......... .......... 71% 118M 1s -2023-11-07T14:50:53Z #15 2.752 92500K .......... .......... .......... .......... .......... 71% 82.9M 1s -2023-11-07T14:50:53Z #15 2.753 92550K .......... .......... .......... .......... .......... 71% 112M 1s -2023-11-07T14:50:53Z #15 2.753 92600K .......... .......... .......... .......... .......... 71% 98.2M 1s -2023-11-07T14:50:53Z #15 2.754 92650K .......... .......... .......... .......... .......... 71% 116M 1s -2023-11-07T14:50:53Z #15 2.754 92700K .......... .......... .......... .......... .......... 71% 110M 1s -2023-11-07T14:50:53Z #15 2.755 92750K .......... .......... .......... .......... .......... 71% 112M 1s -2023-11-07T14:50:53Z #15 2.761 92800K .......... .......... .......... .......... .......... 71% 40.0M 1s -2023-11-07T14:50:53Z #15 2.761 92850K .......... .......... .......... .......... .......... 71% 122M 1s -2023-11-07T14:50:53Z #15 2.761 92900K .......... .......... .......... .......... .......... 71% 143M 1s -2023-11-07T14:50:53Z #15 2.761 92950K .......... .......... .......... .......... .......... 71% 167M 1s -2023-11-07T14:50:53Z #15 2.761 93000K .......... .......... .......... .......... .......... 71% 168M 1s -2023-11-07T14:50:53Z #15 2.761 93050K .......... .......... .......... .......... .......... 71% 140M 1s -2023-11-07T14:50:53Z #15 2.761 93100K .......... .......... .......... .......... .......... 71% 148M 1s -2023-11-07T14:50:53Z #15 2.761 93150K .......... .......... .......... .......... .......... 71% 165M 1s -2023-11-07T14:50:53Z #15 2.761 93200K .......... .......... .......... .......... .......... 71% 145M 1s -2023-11-07T14:50:53Z #15 2.761 93250K .......... .......... .......... .......... .......... 72% 109M 1s -2023-11-07T14:50:53Z #15 2.761 93300K .......... .......... .......... .......... .......... 72% 146M 1s -2023-11-07T14:50:53Z #15 2.761 93350K .......... .......... .......... .......... .......... 72% 171M 1s -2023-11-07T14:50:53Z #15 2.761 93400K .......... .......... .......... .......... .......... 72% 143M 1s -2023-11-07T14:50:53Z #15 2.761 93450K .......... .......... .......... .......... .......... 72% 90.2M 1s -2023-11-07T14:50:53Z #15 2.761 93500K .......... .......... .......... .......... .......... 72% 89.2M 1s -2023-11-07T14:50:53Z #15 2.761 93550K .......... .......... .......... .......... .......... 72% 54.9M 1s -2023-11-07T14:50:53Z #15 2.762 93600K .......... .......... .......... .......... .......... 72% 38.8M 1s -2023-11-07T14:50:53Z #15 2.763 93650K .......... .......... .......... .......... .......... 72% 87.4M 1s -2023-11-07T14:50:53Z #15 2.764 93700K .......... .......... .......... .......... .......... 72% 130M 1s -2023-11-07T14:50:53Z #15 2.764 93750K .......... .......... .......... .......... .......... 72% 110M 1s -2023-11-07T14:50:53Z #15 2.765 93800K .......... .......... .......... .......... .......... 72% 123M 1s -2023-11-07T14:50:53Z #15 2.765 93850K .......... .......... .......... .......... .......... 72% 119M 1s -2023-11-07T14:50:53Z #15 2.766 93900K .......... .......... .......... .......... .......... 72% 128M 1s -2023-11-07T14:50:53Z #15 2.766 93950K .......... .......... .......... .......... .......... 72% 126M 1s -2023-11-07T14:50:53Z #15 2.766 94000K .......... .......... .......... .......... .......... 72% 127M 1s -2023-11-07T14:50:53Z #15 2.767 94050K .......... .......... .......... .......... .......... 72% 106M 1s -2023-11-07T14:50:53Z #15 2.767 94100K .......... .......... .......... .......... .......... 72% 113M 1s -2023-11-07T14:50:53Z #15 2.768 94150K .......... .......... .......... .......... .......... 72% 132M 1s -2023-11-07T14:50:53Z #15 2.768 94200K .......... .......... .......... .......... .......... 72% 107M 1s -2023-11-07T14:50:53Z #15 2.768 94250K .......... .......... .......... .......... .......... 72% 99.0M 1s -2023-11-07T14:50:53Z #15 2.769 94300K .......... .......... .......... .......... .......... 72% 122M 1s -2023-11-07T14:50:53Z #15 2.770 94350K .......... .......... .......... .......... .......... 72% 92.3M 1s -2023-11-07T14:50:53Z #15 2.770 94400K .......... .......... .......... .......... .......... 72% 127M 1s -2023-11-07T14:50:53Z #15 2.770 94450K .......... .......... .......... .......... .......... 72% 123M 1s -2023-11-07T14:50:53Z #15 2.771 94500K .......... .......... .......... .......... .......... 72% 103M 1s -2023-11-07T14:50:53Z #15 2.771 94550K .......... .......... .......... .......... .......... 73% 104M 1s -2023-11-07T14:50:53Z #15 2.772 94600K .......... .......... .......... .......... .......... 73% 145M 1s -2023-11-07T14:50:53Z #15 2.772 94650K .......... .......... .......... .......... .......... 73% 110M 1s -2023-11-07T14:50:53Z #15 2.772 94700K .......... .......... .......... .......... .......... 73% 101M 1s -2023-11-07T14:50:53Z #15 2.778 94750K .......... .......... .......... .......... .......... 73% 41.9M 1s -2023-11-07T14:50:53Z #15 2.778 94800K .......... .......... .......... .......... .......... 73% 176M 1s -2023-11-07T14:50:53Z #15 2.778 94850K .......... .......... .......... .......... .......... 73% 145M 1s -2023-11-07T14:50:53Z #15 2.778 94900K .......... .......... .......... .......... .......... 73% 155M 1s -2023-11-07T14:50:53Z #15 2.778 94950K .......... .......... .......... .......... .......... 73% 152M 1s -2023-11-07T14:50:53Z #15 2.778 95000K .......... .......... .......... .......... .......... 73% 158M 1s -2023-11-07T14:50:53Z #15 2.778 95050K .......... .......... .......... .......... .......... 73% 155M 1s -2023-11-07T14:50:53Z #15 2.778 95100K .......... .......... .......... .......... .......... 73% 128M 1s -2023-11-07T14:50:53Z #15 2.778 95150K .......... .......... .......... .......... .......... 73% 96.8M 1s -2023-11-07T14:50:53Z #15 2.778 95200K .......... .......... .......... .......... .......... 73% 56.2M 1s -2023-11-07T14:50:53Z #15 2.778 95250K .......... .......... .......... .......... .......... 73% 49.7M 1s -2023-11-07T14:50:53Z #15 2.779 95300K .......... .......... .......... .......... .......... 73% 41.5M 1s -2023-11-07T14:50:53Z #15 2.785 95350K .......... .......... .......... .......... .......... 73% 158M 1s -2023-11-07T14:50:53Z #15 2.785 95400K .......... .......... .......... .......... .......... 73% 120M 1s -2023-11-07T14:50:53Z #15 2.785 95450K .......... .......... .......... .......... .......... 73% 136M 1s -2023-11-07T14:50:53Z #15 2.785 95500K .......... .......... .......... .......... .......... 73% 163M 1s -2023-11-07T14:50:53Z #15 2.785 95550K .......... .......... .......... .......... .......... 73% 160M 1s -2023-11-07T14:50:53Z #15 2.785 95600K .......... .......... .......... .......... .......... 73% 162M 1s -2023-11-07T14:50:53Z #15 2.785 95650K .......... .......... .......... .......... .......... 73% 142M 1s -2023-11-07T14:50:53Z #15 2.785 95700K .......... .......... .......... .......... .......... 73% 157M 1s -2023-11-07T14:50:53Z #15 2.785 95750K .......... .......... .......... .......... .......... 73% 136M 1s -2023-11-07T14:50:53Z #15 2.785 95800K .......... .......... .......... .......... .......... 73% 156M 1s -2023-11-07T14:50:53Z #15 2.785 95850K .......... .......... .......... .......... .......... 74% 143M 1s -2023-11-07T14:50:53Z #15 2.785 95900K .......... .......... .......... .......... .......... 74% 126M 1s -2023-11-07T14:50:53Z #15 2.785 95950K .......... .......... .......... .......... .......... 74% 137M 1s -2023-11-07T14:50:53Z #15 2.785 96000K .......... .......... .......... .......... .......... 74% 91.8M 1s -2023-11-07T14:50:53Z #15 2.785 96050K .......... .......... .......... .......... .......... 74% 119M 1s -2023-11-07T14:50:53Z #15 2.785 96100K .......... .......... .......... .......... .......... 74% 106M 1s -2023-11-07T14:50:53Z #15 2.786 96150K .......... .......... .......... .......... .......... 74% 64.7M 1s -2023-11-07T14:50:53Z #15 2.787 96200K .......... .......... .......... .......... .......... 74% 42.3M 1s -2023-11-07T14:50:53Z #15 2.788 96250K .......... .......... .......... .......... .......... 74% 39.2M 1s -2023-11-07T14:50:53Z #15 2.789 96300K .......... .......... .......... .......... .......... 74% 38.5M 1s -2023-11-07T14:50:53Z #15 2.790 96350K .......... .......... .......... .......... .......... 74% 56.9M 1s -2023-11-07T14:50:53Z #15 2.792 96400K .......... .......... .......... .......... .......... 74% 93.1M 1s -2023-11-07T14:50:53Z #15 2.792 96450K .......... .......... .......... .......... .......... 74% 130M 1s -2023-11-07T14:50:53Z #15 2.792 96500K .......... .......... .......... .......... .......... 74% 40.7M 1s -2023-11-07T14:50:53Z #15 2.794 96550K .......... .......... .......... .......... .......... 74% 123M 1s -2023-11-07T14:50:53Z #15 2.794 96600K .......... .......... .......... .......... .......... 74% 125M 1s -2023-11-07T14:50:53Z #15 2.795 96650K .......... .......... .......... .......... .......... 74% 102M 1s -2023-11-07T14:50:53Z #15 2.795 96700K .......... .......... .......... .......... .......... 74% 123M 1s -2023-11-07T14:50:53Z #15 2.795 96750K .......... .......... .......... .......... .......... 74% 70.7M 1s -2023-11-07T14:50:53Z #15 2.796 96800K .......... .......... .......... .......... .......... 74% 94.6M 1s -2023-11-07T14:50:53Z #15 2.796 96850K .......... .......... .......... .......... .......... 74% 119M 1s -2023-11-07T14:50:53Z #15 2.796 96900K .......... .......... .......... .......... .......... 74% 54.1M 1s -2023-11-07T14:50:53Z #15 2.801 96950K .......... .......... .......... .......... .......... 74% 98.9M 1s -2023-11-07T14:50:53Z #15 2.801 97000K .......... .......... .......... .......... .......... 74% 168M 1s -2023-11-07T14:50:53Z #15 2.801 97050K .......... .......... .......... .......... .......... 74% 156M 1s -2023-11-07T14:50:53Z #15 2.801 97100K .......... .......... .......... .......... .......... 74% 156M 1s -2023-11-07T14:50:53Z #15 2.801 97150K .......... .......... .......... .......... .......... 75% 75.8M 1s -2023-11-07T14:50:53Z #15 2.801 97200K .......... .......... .......... .......... .......... 75% 174M 1s -2023-11-07T14:50:53Z #15 2.801 97250K .......... .......... .......... .......... .......... 75% 85.8M 1s -2023-11-07T14:50:53Z #15 2.801 97300K .......... .......... .......... .......... .......... 75% 12.1M 1s -2023-11-07T14:50:53Z #15 2.809 97350K .......... .......... .......... .......... .......... 75% 139M 1s -2023-11-07T14:50:53Z #15 2.809 97400K .......... .......... .......... .......... .......... 75% 179M 1s -2023-11-07T14:50:53Z #15 2.809 97450K .......... .......... .......... .......... .......... 75% 146M 1s -2023-11-07T14:50:53Z #15 2.809 97500K .......... .......... .......... .......... .......... 75% 160M 1s -2023-11-07T14:50:53Z #15 2.809 97550K .......... .......... .......... .......... .......... 75% 160M 1s -2023-11-07T14:50:53Z #15 2.809 97600K .......... .......... .......... .......... .......... 75% 177M 1s -2023-11-07T14:50:53Z #15 2.809 97650K .......... .......... .......... .......... .......... 75% 174M 1s -2023-11-07T14:50:53Z #15 2.809 97700K .......... .......... .......... .......... .......... 75% 150M 1s -2023-11-07T14:50:53Z #15 2.809 97750K .......... .......... .......... .......... .......... 75% 62.7M 1s -2023-11-07T14:50:53Z #15 2.809 97800K .......... .......... .......... .......... .......... 75% 125M 1s -2023-11-07T14:50:53Z #15 2.809 97850K .......... .......... .......... .......... .......... 75% 164M 1s -2023-11-07T14:50:53Z #15 2.809 97900K .......... .......... .......... .......... .......... 75% 7.54M 1s -2023-11-07T14:50:53Z #15 2.817 97950K .......... .......... .......... .......... .......... 75% 66.8M 1s -2023-11-07T14:50:53Z #15 2.817 98000K .......... .......... .......... .......... .......... 75% 182M 1s -2023-11-07T14:50:53Z #15 2.817 98050K .......... .......... .......... .......... .......... 75% 58.0M 1s -2023-11-07T14:50:53Z #15 2.830 98100K .......... .......... .......... .......... .......... 75% 8.62M 1s -2023-11-07T14:50:53Z #15 2.830 98150K .......... .......... .......... .......... .......... 75% 169M 1s -2023-11-07T14:50:53Z #15 2.830 98200K .......... .......... .......... .......... .......... 75% 180M 1s -2023-11-07T14:50:53Z #15 2.830 98250K .......... .......... .......... .......... .......... 75% 162M 0s -2023-11-07T14:50:53Z #15 2.830 98300K .......... .......... .......... .......... .......... 75% 116M 0s -2023-11-07T14:50:53Z #15 2.830 98350K .......... .......... .......... .......... .......... 75% 72.1M 0s -2023-11-07T14:50:53Z #15 2.830 98400K .......... .......... .......... .......... .......... 75% 108M 0s -2023-11-07T14:50:53Z #15 2.830 98450K .......... .......... .......... .......... .......... 76% 81.4M 0s -2023-11-07T14:50:53Z #15 2.830 98500K .......... .......... .......... .......... .......... 76% 92.5M 0s -2023-11-07T14:50:53Z #15 2.830 98550K .......... .......... .......... .......... .......... 76% 84.5M 0s -2023-11-07T14:50:53Z #15 2.830 98600K .......... .......... .......... .......... .......... 76% 113M 0s -2023-11-07T14:50:53Z #15 2.830 98650K .......... .......... .......... .......... .......... 76% 66.8M 0s -2023-11-07T14:50:53Z #15 2.830 98700K .......... .......... .......... .......... .......... 76% 6.42M 0s -2023-11-07T14:50:53Z #15 2.842 98750K .......... .......... .......... .......... .......... 76% 165M 0s -2023-11-07T14:50:53Z #15 2.842 98800K .......... .......... .......... .......... .......... 76% 156M 0s -2023-11-07T14:50:53Z #15 2.842 98850K .......... .......... .......... .......... .......... 76% 181M 0s -2023-11-07T14:50:53Z #15 2.842 98900K .......... .......... .......... .......... .......... 76% 153M 0s -2023-11-07T14:50:53Z #15 2.842 98950K .......... .......... .......... .......... .......... 76% 97.5M 0s -2023-11-07T14:50:53Z #15 2.842 99000K .......... .......... .......... .......... .......... 76% 184M 0s -2023-11-07T14:50:53Z #15 2.842 99050K .......... .......... .......... .......... .......... 76% 183M 0s -2023-11-07T14:50:53Z #15 2.842 99100K .......... .......... .......... .......... .......... 76% 182M 0s -2023-11-07T14:50:53Z #15 2.842 99150K .......... .......... .......... .......... .......... 76% 76.9M 0s -2023-11-07T14:50:53Z #15 2.842 99200K .......... .......... .......... .......... .......... 76% 81.5M 0s -2023-11-07T14:50:53Z #15 2.842 99250K .......... .......... .......... .......... .......... 76% 151M 0s -2023-11-07T14:50:53Z #15 2.842 99300K .......... .......... .......... .......... .......... 76% 64.8M 0s -2023-11-07T14:50:53Z #15 2.844 99350K .......... .......... .......... .......... .......... 76% 5.91M 0s -2023-11-07T14:50:53Z #15 2.853 99400K .......... .......... .......... .......... .......... 76% 169M 0s -2023-11-07T14:50:53Z #15 2.853 99450K .......... .......... .......... .......... .......... 76% 81.6M 0s -2023-11-07T14:50:53Z #15 2.853 99500K .......... .......... .......... .......... .......... 76% 146M 0s -2023-11-07T14:50:53Z #15 2.853 99550K .......... .......... .......... .......... .......... 76% 183M 0s -2023-11-07T14:50:53Z #15 2.853 99600K .......... .......... .......... .......... .......... 76% 182M 0s -2023-11-07T14:50:53Z #15 2.853 99650K .......... .......... .......... .......... .......... 76% 182M 0s -2023-11-07T14:50:53Z #15 2.853 99700K .......... .......... .......... .......... .......... 76% 57.7M 0s -2023-11-07T14:50:53Z #15 2.853 99750K .......... .......... .......... .......... .......... 77% 85.6M 0s -2023-11-07T14:50:53Z #15 2.853 99800K .......... .......... .......... .......... .......... 77% 102M 0s -2023-11-07T14:50:53Z #15 2.853 99850K .......... .......... .......... .......... .......... 77% 183M 0s -2023-11-07T14:50:53Z #15 2.853 99900K .......... .......... .......... .......... .......... 77% 8.95M 0s -2023-11-07T14:50:53Z #15 2.861 99950K .......... .......... .......... .......... .......... 77% 169M 0s -2023-11-07T14:50:53Z #15 2.861 100000K .......... .......... .......... .......... .......... 77% 176M 0s -2023-11-07T14:50:53Z #15 2.861 100050K .......... .......... .......... .......... .......... 77% 180M 0s -2023-11-07T14:50:53Z #15 2.861 100100K .......... .......... .......... .......... .......... 77% 161M 0s -2023-11-07T14:50:53Z #15 2.861 100150K .......... .......... .......... .......... .......... 77% 173M 0s -2023-11-07T14:50:53Z #15 2.861 100200K .......... .......... .......... .......... .......... 77% 180M 0s -2023-11-07T14:50:53Z #15 2.861 100250K .......... .......... .......... .......... .......... 77% 180M 0s -2023-11-07T14:50:53Z #15 2.861 100300K .......... .......... .......... .......... .......... 77% 135M 0s -2023-11-07T14:50:53Z #15 2.861 100350K .......... .......... .......... .......... .......... 77% 175M 0s -2023-11-07T14:50:53Z #15 2.861 100400K .......... .......... .......... .......... .......... 77% 10.6M 0s -2023-11-07T14:50:53Z #15 2.873 100450K .......... .......... .......... .......... .......... 77% 153M 0s -2023-11-07T14:50:53Z #15 2.873 100500K .......... .......... .......... .......... .......... 77% 181M 0s -2023-11-07T14:50:53Z #15 2.873 100550K .......... .......... .......... .......... .......... 77% 176M 0s -2023-11-07T14:50:53Z #15 2.873 100600K .......... .......... .......... .......... .......... 77% 180M 0s -2023-11-07T14:50:53Z #15 2.873 100650K .......... .......... .......... .......... .......... 77% 131M 0s -2023-11-07T14:50:53Z #15 2.873 100700K .......... .......... .......... .......... .......... 77% 156M 0s -2023-11-07T14:50:53Z #15 2.873 100750K .......... .......... .......... .......... .......... 77% 180M 0s -2023-11-07T14:50:53Z #15 2.873 100800K .......... .......... .......... .......... .......... 77% 175M 0s -2023-11-07T14:50:53Z #15 2.873 100850K .......... .......... .......... .......... .......... 77% 171M 0s -2023-11-07T14:50:53Z #15 2.873 100900K .......... .......... .......... .......... .......... 77% 113M 0s -2023-11-07T14:50:53Z #15 2.873 100950K .......... .......... .......... .......... .......... 77% 155M 0s -2023-11-07T14:50:53Z #15 2.873 101000K .......... .......... .......... .......... .......... 77% 156M 0s -2023-11-07T14:50:53Z #15 2.873 101050K .......... .......... .......... .......... .......... 78% 187M 0s -2023-11-07T14:50:53Z #15 2.873 101100K .......... .......... .......... .......... .......... 78% 55.1M 0s -2023-11-07T14:50:53Z #15 2.873 101150K .......... .......... .......... .......... .......... 78% 147M 0s -2023-11-07T14:50:53Z #15 2.873 101200K .......... .......... .......... .......... .......... 78% 178M 0s -2023-11-07T14:50:53Z #15 2.873 101250K .......... .......... .......... .......... .......... 78% 51.2M 0s -2023-11-07T14:50:53Z #15 2.873 101300K .......... .......... .......... .......... .......... 78% 8.01M 0s -2023-11-07T14:50:53Z #15 2.878 101350K .......... .......... .......... .......... .......... 78% 6.37M 0s -2023-11-07T14:50:53Z #15 2.886 101400K .......... .......... .......... .......... .......... 78% 33.8M 0s -2023-11-07T14:50:53Z #15 2.888 101450K .......... .......... .......... .......... .......... 78% 122M 0s -2023-11-07T14:50:53Z #15 2.888 101500K .......... .......... .......... .......... .......... 78% 148M 0s -2023-11-07T14:50:53Z #15 2.888 101550K .......... .......... .......... .......... .......... 78% 131M 0s -2023-11-07T14:50:53Z #15 2.888 101600K .......... .......... .......... .......... .......... 78% 161M 0s -2023-11-07T14:50:53Z #15 2.888 101650K .......... .......... .......... .......... .......... 78% 177M 0s -2023-11-07T14:50:53Z #15 2.888 101700K .......... .......... .......... .......... .......... 78% 77.6M 0s -2023-11-07T14:50:53Z #15 2.889 101750K .......... .......... .......... .......... .......... 78% 28.2M 0s -2023-11-07T14:50:53Z #15 2.891 101800K .......... .......... .......... .......... .......... 78% 70.6M 0s -2023-11-07T14:50:53Z #15 2.891 101850K .......... .......... .......... .......... .......... 78% 62.4M 0s -2023-11-07T14:50:53Z #15 2.892 101900K .......... .......... .......... .......... .......... 78% 59.2M 0s -2023-11-07T14:50:53Z #15 2.893 101950K .......... .......... .......... .......... .......... 78% 80.6M 0s -2023-11-07T14:50:53Z #15 2.894 102000K .......... .......... .......... .......... .......... 78% 34.3M 0s -2023-11-07T14:50:53Z #15 2.895 102050K .......... .......... .......... .......... .......... 78% 15.0M 0s -2023-11-07T14:50:53Z #15 2.898 102100K .......... .......... .......... .......... .......... 78% 40.3M 0s -2023-11-07T14:50:53Z #15 2.899 102150K .......... .......... .......... .......... .......... 78% 30.8M 0s -2023-11-07T14:50:53Z #15 2.901 102200K .......... .......... .......... .......... .......... 78% 14.5M 0s -2023-11-07T14:50:53Z #15 2.904 102250K .......... .......... .......... .......... .......... 78% 23.4M 0s -2023-11-07T14:50:53Z #15 2.906 102300K .......... .......... .......... .......... .......... 78% 27.7M 0s -2023-11-07T14:50:53Z #15 2.908 102350K .......... .......... .......... .......... .......... 79% 34.4M 0s -2023-11-07T14:50:53Z #15 2.912 102400K .......... .......... .......... .......... .......... 79% 161M 0s -2023-11-07T14:50:53Z #15 2.912 102450K .......... .......... .......... .......... .......... 79% 181M 0s -2023-11-07T14:50:53Z #15 2.912 102500K .......... .......... .......... .......... .......... 79% 182M 0s -2023-11-07T14:50:53Z #15 2.912 102550K .......... .......... .......... .......... .......... 79% 155M 0s -2023-11-07T14:50:53Z #15 2.912 102600K .......... .......... .......... .......... .......... 79% 126M 0s -2023-11-07T14:50:53Z #15 2.912 102650K .......... .......... .......... .......... .......... 79% 185M 0s -2023-11-07T14:50:53Z #15 2.912 102700K .......... .......... .......... .......... .......... 79% 185M 0s -2023-11-07T14:50:53Z #15 2.912 102750K .......... .......... .......... .......... .......... 79% 167M 0s -2023-11-07T14:50:53Z #15 2.912 102800K .......... .......... .......... .......... .......... 79% 187M 0s -2023-11-07T14:50:53Z #15 2.912 102850K .......... .......... .......... .......... .......... 79% 41.5M 0s -2023-11-07T14:50:53Z #15 2.914 102900K .......... .......... .......... .......... .......... 79% 10.9M 0s -2023-11-07T14:50:53Z #15 2.918 102950K .......... .......... .......... .......... .......... 79% 16.7M 0s -2023-11-07T14:50:53Z #15 2.921 103000K .......... .......... .......... .......... .......... 79% 43.5M 0s -2023-11-07T14:50:53Z #15 2.928 103050K .......... .......... .......... .......... .......... 79% 22.8M 0s -2023-11-07T14:50:53Z #15 2.928 103100K .......... .......... .......... .......... .......... 79% 184M 0s -2023-11-07T14:50:53Z #15 2.928 103150K .......... .......... .......... .......... .......... 79% 156M 0s -2023-11-07T14:50:53Z #15 2.928 103200K .......... .......... .......... .......... .......... 79% 159M 0s -2023-11-07T14:50:53Z #15 2.928 103250K .......... .......... .......... .......... .......... 79% 116M 0s -2023-11-07T14:50:53Z #15 2.928 103300K .......... .......... .......... .......... .......... 79% 124M 0s -2023-11-07T14:50:53Z #15 2.928 103350K .......... .......... .......... .......... .......... 79% 181M 0s -2023-11-07T14:50:53Z #15 2.928 103400K .......... .......... .......... .......... .......... 79% 184M 0s -2023-11-07T14:50:53Z #15 2.928 103450K .......... .......... .......... .......... .......... 79% 82.1M 0s -2023-11-07T14:50:53Z #15 2.928 103500K .......... .......... .......... .......... .......... 79% 110M 0s -2023-11-07T14:50:53Z #15 2.928 103550K .......... .......... .......... .......... .......... 79% 76.5M 0s -2023-11-07T14:50:53Z #15 2.928 103600K .......... .......... .......... .......... .......... 79% 133M 0s -2023-11-07T14:50:53Z #15 2.928 103650K .......... .......... .......... .......... .......... 80% 12.2M 0s -2023-11-07T14:50:53Z #15 2.937 103700K .......... .......... .......... .......... .......... 80% 73.8M 0s -2023-11-07T14:50:53Z #15 2.937 103750K .......... .......... .......... .......... .......... 80% 179M 0s -2023-11-07T14:50:53Z #15 2.937 103800K .......... .......... .......... .......... .......... 80% 178M 0s -2023-11-07T14:50:53Z #15 2.937 103850K .......... .......... .......... .......... .......... 80% 164M 0s -2023-11-07T14:50:53Z #15 2.937 103900K .......... .......... .......... .......... .......... 80% 176M 0s -2023-11-07T14:50:53Z #15 2.937 103950K .......... .......... .......... .......... .......... 80% 165M 0s -2023-11-07T14:50:53Z #15 2.937 104000K .......... .......... .......... .......... .......... 80% 152M 0s -2023-11-07T14:50:53Z #15 2.937 104050K .......... .......... .......... .......... .......... 80% 133M 0s -2023-11-07T14:50:53Z #15 2.937 104100K .......... .......... .......... .......... .......... 80% 181M 0s -2023-11-07T14:50:53Z #15 2.937 104150K .......... .......... .......... .......... .......... 80% 180M 0s -2023-11-07T14:50:53Z #15 2.937 104200K .......... .......... .......... .......... .......... 80% 164M 0s -2023-11-07T14:50:53Z #15 2.937 104250K .......... .......... .......... .......... .......... 80% 178M 0s -2023-11-07T14:50:53Z #15 2.937 104300K .......... .......... .......... .......... .......... 80% 6.89M 0s -2023-11-07T14:50:53Z #15 2.948 104350K .......... .......... .......... .......... .......... 80% 151M 0s -2023-11-07T14:50:53Z #15 2.948 104400K .......... .......... .......... .......... .......... 80% 77.7M 0s -2023-11-07T14:50:53Z #15 2.948 104450K .......... .......... .......... .......... .......... 80% 63.9M 0s -2023-11-07T14:50:53Z #15 2.948 104500K .......... .......... .......... .......... .......... 80% 20.3M 0s -2023-11-07T14:50:53Z #15 2.948 104550K .......... .......... .......... .......... .......... 80% 174M 0s -2023-11-07T14:50:53Z #15 2.948 104600K .......... .......... .......... .......... .......... 80% 156M 0s -2023-11-07T14:50:53Z #15 2.948 104650K .......... .......... .......... .......... .......... 80% 187M 0s -2023-11-07T14:50:53Z #15 2.948 104700K .......... .......... .......... .......... .......... 80% 25.6M 0s -2023-11-07T14:50:53Z #15 2.951 104750K .......... .......... .......... .......... .......... 80% 7.42M 0s -2023-11-07T14:50:53Z #15 2.960 104800K .......... .......... .......... .......... .......... 80% 150M 0s -2023-11-07T14:50:53Z #15 2.960 104850K .......... .......... .......... .......... .......... 80% 150M 0s -2023-11-07T14:50:53Z #15 2.960 104900K .......... .......... .......... .......... .......... 81% 183M 0s -2023-11-07T14:50:53Z #15 2.960 104950K .......... .......... .......... .......... .......... 81% 185M 0s -2023-11-07T14:50:53Z #15 2.960 105000K .......... .......... .......... .......... .......... 81% 116M 0s -2023-11-07T14:50:53Z #15 2.960 105050K .......... .......... .......... .......... .......... 81% 164M 0s -2023-11-07T14:50:53Z #15 2.960 105100K .......... .......... .......... .......... .......... 81% 181M 0s -2023-11-07T14:50:53Z #15 2.960 105150K .......... .......... .......... .......... .......... 81% 169M 0s -2023-11-07T14:50:53Z #15 2.960 105200K .......... .......... .......... .......... .......... 81% 136M 0s -2023-11-07T14:50:53Z #15 2.960 105250K .......... .......... .......... .......... .......... 81% 163M 0s -2023-11-07T14:50:53Z #15 2.960 105300K .......... .......... .......... .......... .......... 81% 183M 0s -2023-11-07T14:50:53Z #15 2.960 105350K .......... .......... .......... .......... .......... 81% 182M 0s -2023-11-07T14:50:53Z #15 2.960 105400K .......... .......... .......... .......... .......... 81% 6.26M 0s -2023-11-07T14:50:53Z #15 2.972 105450K .......... .......... .......... .......... .......... 81% 134M 0s -2023-11-07T14:50:53Z #15 2.972 105500K .......... .......... .......... .......... .......... 81% 176M 0s -2023-11-07T14:50:53Z #15 2.972 105550K .......... .......... .......... .......... .......... 81% 175M 0s -2023-11-07T14:50:53Z #15 2.972 105600K .......... .......... .......... .......... .......... 81% 154M 0s -2023-11-07T14:50:53Z #15 2.972 105650K .......... .......... .......... .......... .......... 81% 79.7M 0s -2023-11-07T14:50:53Z #15 2.972 105700K .......... .......... .......... .......... .......... 81% 154M 0s -2023-11-07T14:50:53Z #15 2.972 105750K .......... .......... .......... .......... .......... 81% 178M 0s -2023-11-07T14:50:53Z #15 2.972 105800K .......... .......... .......... .......... .......... 81% 162M 0s -2023-11-07T14:50:53Z #15 2.972 105850K .......... .......... .......... .......... .......... 81% 169M 0s -2023-11-07T14:50:53Z #15 2.972 105900K .......... .......... .......... .......... .......... 81% 77.6M 0s -2023-11-07T14:50:53Z #15 2.972 105950K .......... .......... .......... .......... .......... 81% 176M 0s -2023-11-07T14:50:53Z #15 2.972 106000K .......... .......... .......... .......... .......... 81% 14.7M 0s -2023-11-07T14:50:53Z #15 2.976 106050K .......... .......... .......... .......... .......... 81% 15.0M 0s -2023-11-07T14:50:53Z #15 2.980 106100K .......... .......... .......... .......... .......... 81% 171M 0s -2023-11-07T14:50:53Z #15 2.980 106150K .......... .......... .......... .......... .......... 81% 161M 0s -2023-11-07T14:50:53Z #15 2.980 106200K .......... .......... .......... .......... .......... 82% 157M 0s -2023-11-07T14:50:53Z #15 2.980 106250K .......... .......... .......... .......... .......... 82% 171M 0s -2023-11-07T14:50:53Z #15 2.980 106300K .......... .......... .......... .......... .......... 82% 178M 0s -2023-11-07T14:50:53Z #15 2.980 106350K .......... .......... .......... .......... .......... 82% 21.4M 0s -2023-11-07T14:50:53Z #15 2.984 106400K .......... .......... .......... .......... .......... 82% 17.4M 0s -2023-11-07T14:50:53Z #15 2.988 106450K .......... .......... .......... .......... .......... 82% 174M 0s -2023-11-07T14:50:53Z #15 2.988 106500K .......... .......... .......... .......... .......... 82% 176M 0s -2023-11-07T14:50:53Z #15 2.988 106550K .......... .......... .......... .......... .......... 82% 182M 0s -2023-11-07T14:50:53Z #15 2.988 106600K .......... .......... .......... .......... .......... 82% 177M 0s -2023-11-07T14:50:53Z #15 2.988 106650K .......... .......... .......... .......... .......... 82% 76.8M 0s -2023-11-07T14:50:53Z #15 2.988 106700K .......... .......... .......... .......... .......... 82% 123M 0s -2023-11-07T14:50:53Z #15 2.988 106750K .......... .......... .......... .......... .......... 82% 128M 0s -2023-11-07T14:50:53Z #15 2.988 106800K .......... .......... .......... .......... .......... 82% 182M 0s -2023-11-07T14:50:53Z #15 2.988 106850K .......... .......... .......... .......... .......... 82% 180M 0s -2023-11-07T14:50:53Z #15 2.988 106900K .......... .......... .......... .......... .......... 82% 13.6M 0s -2023-11-07T14:50:53Z #15 2.993 106950K .......... .......... .......... .......... .......... 82% 13.2M 0s -2023-11-07T14:50:53Z #15 3.000 107000K .......... .......... .......... .......... .......... 82% 174M 0s -2023-11-07T14:50:53Z #15 3.000 107050K .......... .......... .......... .......... .......... 82% 180M 0s -2023-11-07T14:50:53Z #15 3.000 107100K .......... .......... .......... .......... .......... 82% 166M 0s -2023-11-07T14:50:53Z #15 3.000 107150K .......... .......... .......... .......... .......... 82% 94.7M 0s -2023-11-07T14:50:53Z #15 3.000 107200K .......... .......... .......... .......... .......... 82% 135M 0s -2023-11-07T14:50:53Z #15 3.000 107250K .......... .......... .......... .......... .......... 82% 180M 0s -2023-11-07T14:50:53Z #15 3.000 107300K .......... .......... .......... .......... .......... 82% 182M 0s -2023-11-07T14:50:53Z #15 3.000 107350K .......... .......... .......... .......... .......... 82% 184M 0s -2023-11-07T14:50:53Z #15 3.000 107400K .......... .......... .......... .......... .......... 82% 97.5M 0s -2023-11-07T14:50:53Z #15 3.000 107450K .......... .......... .......... .......... .......... 82% 89.4M 0s -2023-11-07T14:50:53Z #15 3.000 107500K .......... .......... .......... .......... .......... 83% 167M 0s -2023-11-07T14:50:53Z #15 3.000 107550K .......... .......... .......... .......... .......... 83% 115M 0s -2023-11-07T14:50:53Z #15 3.000 107600K .......... .......... .......... .......... .......... 83% 182M 0s -2023-11-07T14:50:53Z #15 3.000 107650K .......... .......... .......... .......... .......... 83% 9.18M 0s -2023-11-07T14:50:53Z #15 3.008 107700K .......... .......... .......... .......... .......... 83% 128M 0s -2023-11-07T14:50:53Z #15 3.008 107750K .......... .......... .......... .......... .......... 83% 118M 0s -2023-11-07T14:50:53Z #15 3.008 107800K .......... .......... .......... .......... .......... 83% 147M 0s -2023-11-07T14:50:53Z #15 3.008 107850K .......... .......... .......... .......... .......... 83% 88.9M 0s -2023-11-07T14:50:53Z #15 3.008 107900K .......... .......... .......... .......... .......... 83% 83.2M 0s -2023-11-07T14:50:53Z #15 3.008 107950K .......... .......... .......... .......... .......... 83% 101M 0s -2023-11-07T14:50:53Z #15 3.008 108000K .......... .......... .......... .......... .......... 83% 39.1M 0s -2023-11-07T14:50:53Z #15 3.012 108050K .......... .......... .......... .......... .......... 83% 97.5M 0s -2023-11-07T14:50:53Z #15 3.012 108100K .......... .......... .......... .......... .......... 83% 133M 0s -2023-11-07T14:50:53Z #15 3.012 108150K .......... .......... .......... .......... .......... 83% 77.7M 0s -2023-11-07T14:50:53Z #15 3.012 108200K .......... .......... .......... .......... .......... 83% 125M 0s -2023-11-07T14:50:53Z #15 3.012 108250K .......... .......... .......... .......... .......... 83% 129M 0s -2023-11-07T14:50:53Z #15 3.012 108300K .......... .......... .......... .......... .......... 83% 112M 0s -2023-11-07T14:50:53Z #15 3.012 108350K .......... .......... .......... .......... .......... 83% 94.1M 0s -2023-11-07T14:50:53Z #15 3.016 108400K .......... .......... .......... .......... .......... 83% 116M 0s -2023-11-07T14:50:53Z #15 3.016 108450K .......... .......... .......... .......... .......... 83% 132M 0s -2023-11-07T14:50:53Z #15 3.016 108500K .......... .......... .......... .......... .......... 83% 114M 0s -2023-11-07T14:50:53Z #15 3.016 108550K .......... .......... .......... .......... .......... 83% 121M 0s -2023-11-07T14:50:53Z #15 3.016 108600K .......... .......... .......... .......... .......... 83% 113M 0s -2023-11-07T14:50:53Z #15 3.016 108650K .......... .......... .......... .......... .......... 83% 124M 0s -2023-11-07T14:50:53Z #15 3.016 108700K .......... .......... .......... .......... .......... 83% 116M 0s -2023-11-07T14:50:53Z #15 3.016 108750K .......... .......... .......... .......... .......... 83% 75.7M 0s -2023-11-07T14:50:53Z #15 3.016 108800K .......... .......... .......... .......... .......... 84% 65.4M 0s -2023-11-07T14:50:53Z #15 3.017 108850K .......... .......... .......... .......... .......... 84% 82.7M 0s -2023-11-07T14:50:53Z #15 3.017 108900K .......... .......... .......... .......... .......... 84% 113M 0s -2023-11-07T14:50:53Z #15 3.018 108950K .......... .......... .......... .......... .......... 84% 129M 0s -2023-11-07T14:50:53Z #15 3.018 109000K .......... .......... .......... .......... .......... 84% 94.9M 0s -2023-11-07T14:50:53Z #15 3.019 109050K .......... .......... .......... .......... .......... 84% 117M 0s -2023-11-07T14:50:53Z #15 3.019 109100K .......... .......... .......... .......... .......... 84% 142M 0s -2023-11-07T14:50:53Z #15 3.019 109150K .......... .......... .......... .......... .......... 84% 117M 0s -2023-11-07T14:50:53Z #15 3.020 109200K .......... .......... .......... .......... .......... 84% 113M 0s -2023-11-07T14:50:53Z #15 3.021 109250K .......... .......... .......... .......... .......... 84% 140M 0s -2023-11-07T14:50:53Z #15 3.021 109300K .......... .......... .......... .......... .......... 84% 108M 0s -2023-11-07T14:50:53Z #15 3.021 109350K .......... .......... .......... .......... .......... 84% 139M 0s -2023-11-07T14:50:53Z #15 3.022 109400K .......... .......... .......... .......... .......... 84% 145M 0s -2023-11-07T14:50:53Z #15 3.022 109450K .......... .......... .......... .......... .......... 84% 154M 0s -2023-11-07T14:50:53Z #15 3.023 109500K .......... .......... .......... .......... .......... 84% 63.1M 0s -2023-11-07T14:50:53Z #15 3.023 109550K .......... .......... .......... .......... .......... 84% 98.8M 0s -2023-11-07T14:50:53Z #15 3.024 109600K .......... .......... .......... .......... .......... 84% 89.6M 0s -2023-11-07T14:50:53Z #15 3.024 109650K .......... .......... .......... .......... .......... 84% 96.8M 0s -2023-11-07T14:50:53Z #15 3.028 109700K .......... .......... .......... .......... .......... 84% 148M 0s -2023-11-07T14:50:53Z #15 3.028 109750K .......... .......... .......... .......... .......... 84% 127M 0s -2023-11-07T14:50:53Z #15 3.028 109800K .......... .......... .......... .......... .......... 84% 127M 0s -2023-11-07T14:50:53Z #15 3.028 109850K .......... .......... .......... .......... .......... 84% 130M 0s -2023-11-07T14:50:53Z #15 3.028 109900K .......... .......... .......... .......... .......... 84% 128M 0s -2023-11-07T14:50:53Z #15 3.028 109950K .......... .......... .......... .......... .......... 84% 133M 0s -2023-11-07T14:50:53Z #15 3.028 110000K .......... .......... .......... .......... .......... 84% 140M 0s -2023-11-07T14:50:53Z #15 3.028 110050K .......... .......... .......... .......... .......... 84% 127M 0s -2023-11-07T14:50:53Z #15 3.028 110100K .......... .......... .......... .......... .......... 85% 137M 0s -2023-11-07T14:50:53Z #15 3.032 110150K .......... .......... .......... .......... .......... 85% 93.4M 0s -2023-11-07T14:50:53Z #15 3.032 110200K .......... .......... .......... .......... .......... 85% 93.1M 0s -2023-11-07T14:50:53Z #15 3.032 110250K .......... .......... .......... .......... .......... 85% 74.8M 0s -2023-11-07T14:50:53Z #15 3.032 110300K .......... .......... .......... .......... .......... 85% 147M 0s -2023-11-07T14:50:53Z #15 3.032 110350K .......... .......... .......... .......... .......... 85% 98.7M 0s -2023-11-07T14:50:53Z #15 3.032 110400K .......... .......... .......... .......... .......... 85% 119M 0s -2023-11-07T14:50:53Z #15 3.032 110450K .......... .......... .......... .......... .......... 85% 112M 0s -2023-11-07T14:50:53Z #15 3.032 110500K .......... .......... .......... .......... .......... 85% 133M 0s -2023-11-07T14:50:53Z #15 3.032 110550K .......... .......... .......... .......... .......... 85% 150M 0s -2023-11-07T14:50:53Z #15 3.032 110600K .......... .......... .......... .......... .......... 85% 86.1M 0s -2023-11-07T14:50:53Z #15 3.033 110650K .......... .......... .......... .......... .......... 85% 123M 0s -2023-11-07T14:50:53Z #15 3.033 110700K .......... .......... .......... .......... .......... 85% 135M 0s -2023-11-07T14:50:53Z #15 3.033 110750K .......... .......... .......... .......... .......... 85% 132M 0s -2023-11-07T14:50:53Z #15 3.034 110800K .......... .......... .......... .......... .......... 85% 138M 0s -2023-11-07T14:50:53Z #15 3.034 110850K .......... .......... .......... .......... .......... 85% 131M 0s -2023-11-07T14:50:53Z #15 3.034 110900K .......... .......... .......... .......... .......... 85% 150M 0s -2023-11-07T14:50:53Z #15 3.035 110950K .......... .......... .......... .......... .......... 85% 79.2M 0s -2023-11-07T14:50:53Z #15 3.035 111000K .......... .......... .......... .......... .......... 85% 82.9M 0s -2023-11-07T14:50:53Z #15 3.036 111050K .......... .......... .......... .......... .......... 85% 120M 0s -2023-11-07T14:50:53Z #15 3.036 111100K .......... .......... .......... .......... .......... 85% 66.6M 0s -2023-11-07T14:50:53Z #15 3.038 111150K .......... .......... .......... .......... .......... 85% 109M 0s -2023-11-07T14:50:53Z #15 3.038 111200K .......... .......... .......... .......... .......... 85% 130M 0s -2023-11-07T14:50:53Z #15 3.038 111250K .......... .......... .......... .......... .......... 85% 109M 0s -2023-11-07T14:50:53Z #15 3.038 111300K .......... .......... .......... .......... .......... 85% 97.7M 0s -2023-11-07T14:50:53Z #15 3.039 111350K .......... .......... .......... .......... .......... 85% 141M 0s -2023-11-07T14:50:53Z #15 3.039 111400K .......... .......... .......... .......... .......... 86% 160M 0s -2023-11-07T14:50:53Z #15 3.039 111450K .......... .......... .......... .......... .......... 86% 121M 0s -2023-11-07T14:50:53Z #15 3.040 111500K .......... .......... .......... .......... .......... 86% 142M 0s -2023-11-07T14:50:53Z #15 3.040 111550K .......... .......... .......... .......... .......... 86% 124M 0s -2023-11-07T14:50:53Z #15 3.041 111600K .......... .......... .......... .......... .......... 86% 129M 0s -2023-11-07T14:50:53Z #15 3.041 111650K .......... .......... .......... .......... .......... 86% 141M 0s -2023-11-07T14:50:53Z #15 3.042 111700K .......... .......... .......... .......... .......... 86% 137M 0s -2023-11-07T14:50:53Z #15 3.042 111750K .......... .......... .......... .......... .......... 86% 53.4M 0s -2023-11-07T14:50:53Z #15 3.043 111800K .......... .......... .......... .......... .......... 86% 147M 0s -2023-11-07T14:50:53Z #15 3.043 111850K .......... .......... .......... .......... .......... 86% 105M 0s -2023-11-07T14:50:53Z #15 3.044 111900K .......... .......... .......... .......... .......... 86% 85.3M 0s -2023-11-07T14:50:53Z #15 3.044 111950K .......... .......... .......... .......... .......... 86% 131M 0s -2023-11-07T14:50:53Z #15 3.048 112000K .......... .......... .......... .......... .......... 86% 120M 0s -2023-11-07T14:50:53Z #15 3.048 112050K .......... .......... .......... .......... .......... 86% 115M 0s -2023-11-07T14:50:53Z #15 3.048 112100K .......... .......... .......... .......... .......... 86% 136M 0s -2023-11-07T14:50:53Z #15 3.048 112150K .......... .......... .......... .......... .......... 86% 69.9M 0s -2023-11-07T14:50:53Z #15 3.048 112200K .......... .......... .......... .......... .......... 86% 71.1M 0s -2023-11-07T14:50:53Z #15 3.048 112250K .......... .......... .......... .......... .......... 86% 56.7M 0s -2023-11-07T14:50:53Z #15 3.048 112300K .......... .......... .......... .......... .......... 86% 125M 0s -2023-11-07T14:50:53Z #15 3.048 112350K .......... .......... .......... .......... .......... 86% 78.8M 0s -2023-11-07T14:50:53Z #15 3.049 112400K .......... .......... .......... .......... .......... 86% 95.6M 0s -2023-11-07T14:50:53Z #15 3.055 112450K .......... .......... .......... .......... .......... 86% 160M 0s -2023-11-07T14:50:53Z #15 3.055 112500K .......... .......... .......... .......... .......... 86% 143M 0s -2023-11-07T14:50:53Z #15 3.055 112550K .......... .......... .......... .......... .......... 86% 179M 0s -2023-11-07T14:50:53Z #15 3.055 112600K .......... .......... .......... .......... .......... 86% 143M 0s -2023-11-07T14:50:53Z #15 3.055 112650K .......... .......... .......... .......... .......... 86% 150M 0s -2023-11-07T14:50:53Z #15 3.055 112700K .......... .......... .......... .......... .......... 87% 99.9M 0s -2023-11-07T14:50:53Z #15 3.055 112750K .......... .......... .......... .......... .......... 87% 84.2M 0s -2023-11-07T14:50:53Z #15 3.055 112800K .......... .......... .......... .......... .......... 87% 106M 0s -2023-11-07T14:50:53Z #15 3.055 112850K .......... .......... .......... .......... .......... 87% 120M 0s -2023-11-07T14:50:53Z #15 3.055 112900K .......... .......... .......... .......... .......... 87% 74.7M 0s -2023-11-07T14:50:53Z #15 3.055 112950K .......... .......... .......... .......... .......... 87% 115M 0s -2023-11-07T14:50:53Z #15 3.055 113000K .......... .......... .......... .......... .......... 87% 72.1M 0s -2023-11-07T14:50:53Z #15 3.056 113050K .......... .......... .......... .......... .......... 87% 120M 0s -2023-11-07T14:50:53Z #15 3.056 113100K .......... .......... .......... .......... .......... 87% 79.9M 0s -2023-11-07T14:50:53Z #15 3.056 113150K .......... .......... .......... .......... .......... 87% 120M 0s -2023-11-07T14:50:53Z #15 3.056 113200K .......... .......... .......... .......... .......... 87% 63.3M 0s -2023-11-07T14:50:53Z #15 3.057 113250K .......... .......... .......... .......... .......... 87% 43.7M 0s -2023-11-07T14:50:53Z #15 3.058 113300K .......... .......... .......... .......... .......... 87% 46.0M 0s -2023-11-07T14:50:53Z #15 3.059 113350K .......... .......... .......... .......... .......... 87% 56.8M 0s -2023-11-07T14:50:53Z #15 3.064 113400K .......... .......... .......... .......... .......... 87% 130M 0s -2023-11-07T14:50:53Z #15 3.064 113450K .......... .......... .......... .......... .......... 87% 117M 0s -2023-11-07T14:50:53Z #15 3.064 113500K .......... .......... .......... .......... .......... 87% 138M 0s -2023-11-07T14:50:53Z #15 3.064 113550K .......... .......... .......... .......... .......... 87% 97.1M 0s -2023-11-07T14:50:53Z #15 3.064 113600K .......... .......... .......... .......... .......... 87% 83.0M 0s -2023-11-07T14:50:53Z #15 3.064 113650K .......... .......... .......... .......... .......... 87% 55.5M 0s -2023-11-07T14:50:53Z #15 3.064 113700K .......... .......... .......... .......... .......... 87% 56.3M 0s -2023-11-07T14:50:53Z #15 3.064 113750K .......... .......... .......... .......... .......... 87% 109M 0s -2023-11-07T14:50:53Z #15 3.064 113800K .......... .......... .......... .......... .......... 87% 34.2M 0s -2023-11-07T14:50:53Z #15 3.066 113850K .......... .......... .......... .......... .......... 87% 32.8M 0s -2023-11-07T14:50:53Z #15 3.072 113900K .......... .......... .......... .......... .......... 87% 96.0M 0s -2023-11-07T14:50:53Z #15 3.072 113950K .......... .......... .......... .......... .......... 87% 134M 0s -2023-11-07T14:50:53Z #15 3.072 114000K .......... .......... .......... .......... .......... 88% 117M 0s -2023-11-07T14:50:53Z #15 3.072 114050K .......... .......... .......... .......... .......... 88% 62.4M 0s -2023-11-07T14:50:53Z #15 3.072 114100K .......... .......... .......... .......... .......... 88% 88.3M 0s -2023-11-07T14:50:53Z #15 3.072 114150K .......... .......... .......... .......... .......... 88% 68.9M 0s -2023-11-07T14:50:53Z #15 3.072 114200K .......... .......... .......... .......... .......... 88% 116M 0s -2023-11-07T14:50:53Z #15 3.072 114250K .......... .......... .......... .......... .......... 88% 113M 0s -2023-11-07T14:50:53Z #15 3.072 114300K .......... .......... .......... .......... .......... 88% 62.9M 0s -2023-11-07T14:50:53Z #15 3.072 114350K .......... .......... .......... .......... .......... 88% 34.6M 0s -2023-11-07T14:50:53Z #15 3.073 114400K .......... .......... .......... .......... .......... 88% 37.2M 0s -2023-11-07T14:50:53Z #15 3.075 114450K .......... .......... .......... .......... .......... 88% 111M 0s -2023-11-07T14:50:53Z #15 3.075 114500K .......... .......... .......... .......... .......... 88% 97.4M 0s -2023-11-07T14:50:53Z #15 3.076 114550K .......... .......... .......... .......... .......... 88% 119M 0s -2023-11-07T14:50:53Z #15 3.076 114600K .......... .......... .......... .......... .......... 88% 114M 0s -2023-11-07T14:50:53Z #15 3.077 114650K .......... .......... .......... .......... .......... 88% 52.9M 0s -2023-11-07T14:50:53Z #15 3.078 114700K .......... .......... .......... .......... .......... 88% 102M 0s -2023-11-07T14:50:53Z #15 3.078 114750K .......... .......... .......... .......... .......... 88% 86.8M 0s -2023-11-07T14:50:53Z #15 3.079 114800K .......... .......... .......... .......... .......... 88% 60.8M 0s -2023-11-07T14:50:53Z #15 3.079 114850K .......... .......... .......... .......... .......... 88% 96.3M 0s -2023-11-07T14:50:53Z #15 3.080 114900K .......... .......... .......... .......... .......... 88% 107M 0s -2023-11-07T14:50:53Z #15 3.081 114950K .......... .......... .......... .......... .......... 88% 109M 0s -2023-11-07T14:50:53Z #15 3.081 115000K .......... .......... .......... .......... .......... 88% 158M 0s -2023-11-07T14:50:53Z #15 3.081 115050K .......... .......... .......... .......... .......... 88% 91.5M 0s -2023-11-07T14:50:53Z #15 3.083 115100K .......... .......... .......... .......... .......... 88% 156M 0s -2023-11-07T14:50:53Z #15 3.083 115150K .......... .......... .......... .......... .......... 88% 53.4M 0s -2023-11-07T14:50:53Z #15 3.083 115200K .......... .......... .......... .......... .......... 88% 141M 0s -2023-11-07T14:50:53Z #15 3.083 115250K .......... .......... .......... .......... .......... 88% 86.8M 0s -2023-11-07T14:50:53Z #15 3.084 115300K .......... .......... .......... .......... .......... 89% 135M 0s -2023-11-07T14:50:53Z #15 3.084 115350K .......... .......... .......... .......... .......... 89% 86.6M 0s -2023-11-07T14:50:53Z #15 3.085 115400K .......... .......... .......... .......... .......... 89% 107M 0s -2023-11-07T14:50:53Z #15 3.085 115450K .......... .......... .......... .......... .......... 89% 147M 0s -2023-11-07T14:50:53Z #15 3.085 115500K .......... .......... .......... .......... .......... 89% 101M 0s -2023-11-07T14:50:53Z #15 3.088 115550K .......... .......... .......... .......... .......... 89% 100M 0s -2023-11-07T14:50:53Z #15 3.088 115600K .......... .......... .......... .......... .......... 89% 68.3M 0s -2023-11-07T14:50:53Z #15 3.088 115650K .......... .......... .......... .......... .......... 89% 51.2M 0s -2023-11-07T14:50:53Z #15 3.088 115700K .......... .......... .......... .......... .......... 89% 72.4M 0s -2023-11-07T14:50:53Z #15 3.092 115750K .......... .......... .......... .......... .......... 89% 109M 0s -2023-11-07T14:50:53Z #15 3.092 115800K .......... .......... .......... .......... .......... 89% 106M 0s -2023-11-07T14:50:53Z #15 3.092 115850K .......... .......... .......... .......... .......... 89% 120M 0s -2023-11-07T14:50:53Z #15 3.092 115900K .......... .......... .......... .......... .......... 89% 129M 0s -2023-11-07T14:50:53Z #15 3.092 115950K .......... .......... .......... .......... .......... 89% 128M 0s -2023-11-07T14:50:53Z #15 3.092 116000K .......... .......... .......... .......... .......... 89% 116M 0s -2023-11-07T14:50:53Z #15 3.092 116050K .......... .......... .......... .......... .......... 89% 53.8M 0s -2023-11-07T14:50:53Z #15 3.092 116100K .......... .......... .......... .......... .......... 89% 46.6M 0s -2023-11-07T14:50:53Z #15 3.093 116150K .......... .......... .......... .......... .......... 89% 57.6M 0s -2023-11-07T14:50:53Z #15 3.094 116200K .......... .......... .......... .......... .......... 89% 79.9M 0s -2023-11-07T14:50:53Z #15 3.095 116250K .......... .......... .......... .......... .......... 89% 91.2M 0s -2023-11-07T14:50:53Z #15 3.095 116300K .......... .......... .......... .......... .......... 89% 113M 0s -2023-11-07T14:50:53Z #15 3.096 116350K .......... .......... .......... .......... .......... 89% 131M 0s -2023-11-07T14:50:53Z #15 3.096 116400K .......... .......... .......... .......... .......... 89% 122M 0s -2023-11-07T14:50:53Z #15 3.096 116450K .......... .......... .......... .......... .......... 89% 71.4M 0s -2023-11-07T14:50:53Z #15 3.097 116500K .......... .......... .......... .......... .......... 89% 77.3M 0s -2023-11-07T14:50:53Z #15 3.098 116550K .......... .......... .......... .......... .......... 89% 64.9M 0s -2023-11-07T14:50:53Z #15 3.101 116600K .......... .......... .......... .......... .......... 90% 113M 0s -2023-11-07T14:50:53Z #15 3.101 116650K .......... .......... .......... .......... .......... 90% 166M 0s -2023-11-07T14:50:53Z #15 3.101 116700K .......... .......... .......... .......... .......... 90% 162M 0s -2023-11-07T14:50:53Z #15 3.101 116750K .......... .......... .......... .......... .......... 90% 155M 0s -2023-11-07T14:50:53Z #15 3.101 116800K .......... .......... .......... .......... .......... 90% 125M 0s -2023-11-07T14:50:53Z #15 3.101 116850K .......... .......... .......... .......... .......... 90% 145M 0s -2023-11-07T14:50:53Z #15 3.101 116900K .......... .......... .......... .......... .......... 90% 63.9M 0s -2023-11-07T14:50:53Z #15 3.101 116950K .......... .......... .......... .......... .......... 90% 61.7M 0s -2023-11-07T14:50:53Z #15 3.103 117000K .......... .......... .......... .......... .......... 90% 84.0M 0s -2023-11-07T14:50:53Z #15 3.103 117050K .......... .......... .......... .......... .......... 90% 98.7M 0s -2023-11-07T14:50:53Z #15 3.103 117100K .......... .......... .......... .......... .......... 90% 124M 0s -2023-11-07T14:50:53Z #15 3.104 117150K .......... .......... .......... .......... .......... 90% 81.7M 0s -2023-11-07T14:50:53Z #15 3.104 117200K .......... .......... .......... .......... .......... 90% 122M 0s -2023-11-07T14:50:53Z #15 3.105 117250K .......... .......... .......... .......... .......... 90% 115M 0s -2023-11-07T14:50:53Z #15 3.105 117300K .......... .......... .......... .......... .......... 90% 128M 0s -2023-11-07T14:50:53Z #15 3.105 117350K .......... .......... .......... .......... .......... 90% 56.4M 0s -2023-11-07T14:50:53Z #15 3.106 117400K .......... .......... .......... .......... .......... 90% 118M 0s -2023-11-07T14:50:53Z #15 3.107 117450K .......... .......... .......... .......... .......... 90% 57.6M 0s -2023-11-07T14:50:53Z #15 3.112 117500K .......... .......... .......... .......... .......... 90% 144M 0s -2023-11-07T14:50:53Z #15 3.112 117550K .......... .......... .......... .......... .......... 90% 160M 0s -2023-11-07T14:50:53Z #15 3.112 117600K .......... .......... .......... .......... .......... 90% 149M 0s -2023-11-07T14:50:53Z #15 3.112 117650K .......... .......... .......... .......... .......... 90% 131M 0s -2023-11-07T14:50:53Z #15 3.112 117700K .......... .......... .......... .......... .......... 90% 145M 0s -2023-11-07T14:50:53Z #15 3.112 117750K .......... .......... .......... .......... .......... 90% 176M 0s -2023-11-07T14:50:53Z #15 3.112 117800K .......... .......... .......... .......... .......... 90% 71.0M 0s -2023-11-07T14:50:53Z #15 3.112 117850K .......... .......... .......... .......... .......... 90% 103M 0s -2023-11-07T14:50:53Z #15 3.112 117900K .......... .......... .......... .......... .......... 91% 92.0M 0s -2023-11-07T14:50:53Z #15 3.112 117950K .......... .......... .......... .......... .......... 91% 119M 0s -2023-11-07T14:50:53Z #15 3.112 118000K .......... .......... .......... .......... .......... 91% 139M 0s -2023-11-07T14:50:53Z #15 3.112 118050K .......... .......... .......... .......... .......... 91% 68.4M 0s -2023-11-07T14:50:53Z #15 3.113 118100K .......... .......... .......... .......... .......... 91% 93.3M 0s -2023-11-07T14:50:53Z #15 3.113 118150K .......... .......... .......... .......... .......... 91% 101M 0s -2023-11-07T14:50:53Z #15 3.114 118200K .......... .......... .......... .......... .......... 91% 68.5M 0s -2023-11-07T14:50:53Z #15 3.116 118250K .......... .......... .......... .......... .......... 91% 107M 0s -2023-11-07T14:50:53Z #15 3.116 118300K .......... .......... .......... .......... .......... 91% 91.5M 0s -2023-11-07T14:50:53Z #15 3.116 118350K .......... .......... .......... .......... .......... 91% 139M 0s -2023-11-07T14:50:53Z #15 3.116 118400K .......... .......... .......... .......... .......... 91% 89.0M 0s -2023-11-07T14:50:53Z #15 3.120 118450K .......... .......... .......... .......... .......... 91% 56.0M 0s -2023-11-07T14:50:53Z #15 3.120 118500K .......... .......... .......... .......... .......... 91% 72.2M 0s -2023-11-07T14:50:53Z #15 3.120 118550K .......... .......... .......... .......... .......... 91% 134M 0s -2023-11-07T14:50:53Z #15 3.120 118600K .......... .......... .......... .......... .......... 91% 122M 0s -2023-11-07T14:50:53Z #15 3.120 118650K .......... .......... .......... .......... .......... 91% 67.6M 0s -2023-11-07T14:50:53Z #15 3.120 118700K .......... .......... .......... .......... .......... 91% 90.8M 0s -2023-11-07T14:50:53Z #15 3.120 118750K .......... .......... .......... .......... .......... 91% 46.3M 0s -2023-11-07T14:50:53Z #15 3.124 118800K .......... .......... .......... .......... .......... 91% 95.5M 0s -2023-11-07T14:50:53Z #15 3.124 118850K .......... .......... .......... .......... .......... 91% 134M 0s -2023-11-07T14:50:53Z #15 3.124 118900K .......... .......... .......... .......... .......... 91% 124M 0s -2023-11-07T14:50:53Z #15 3.124 118950K .......... .......... .......... .......... .......... 91% 111M 0s -2023-11-07T14:50:53Z #15 3.124 119000K .......... .......... .......... .......... .......... 91% 88.2M 0s -2023-11-07T14:50:53Z #15 3.124 119050K .......... .......... .......... .......... .......... 91% 62.2M 0s -2023-11-07T14:50:53Z #15 3.124 119100K .......... .......... .......... .......... .......... 91% 41.7M 0s -2023-11-07T14:50:53Z #15 3.128 119150K .......... .......... .......... .......... .......... 91% 128M 0s -2023-11-07T14:50:53Z #15 3.128 119200K .......... .......... .......... .......... .......... 92% 92.9M 0s -2023-11-07T14:50:53Z #15 3.128 119250K .......... .......... .......... .......... .......... 92% 94.9M 0s -2023-11-07T14:50:53Z #15 3.128 119300K .......... .......... .......... .......... .......... 92% 123M 0s -2023-11-07T14:50:53Z #15 3.128 119350K .......... .......... .......... .......... .......... 92% 123M 0s -2023-11-07T14:50:53Z #15 3.128 119400K .......... .......... .......... .......... .......... 92% 112M 0s -2023-11-07T14:50:53Z #15 3.128 119450K .......... .......... .......... .......... .......... 92% 14.0M 0s -2023-11-07T14:50:53Z #15 3.132 119500K .......... .......... .......... .......... .......... 92% 99.2M 0s -2023-11-07T14:50:53Z #15 3.132 119550K .......... .......... .......... .......... .......... 92% 128M 0s -2023-11-07T14:50:53Z #15 3.132 119600K .......... .......... .......... .......... .......... 92% 47.5M 0s -2023-11-07T14:50:53Z #15 3.133 119650K .......... .......... .......... .......... .......... 92% 46.5M 0s -2023-11-07T14:50:53Z #15 3.136 119700K .......... .......... .......... .......... .......... 92% 122M 0s -2023-11-07T14:50:53Z #15 3.136 119750K .......... .......... .......... .......... .......... 92% 110M 0s -2023-11-07T14:50:53Z #15 3.136 119800K .......... .......... .......... .......... .......... 92% 75.9M 0s -2023-11-07T14:50:53Z #15 3.136 119850K .......... .......... .......... .......... .......... 92% 32.2M 0s -2023-11-07T14:50:53Z #15 3.140 119900K .......... .......... .......... .......... .......... 92% 34.3M 0s -2023-11-07T14:50:53Z #15 3.140 119950K .......... .......... .......... .......... .......... 92% 55.9M 0s -2023-11-07T14:50:53Z #15 3.140 120000K .......... .......... .......... .......... .......... 92% 36.9M 0s -2023-11-07T14:50:53Z #15 3.141 120050K .......... .......... .......... .......... .......... 92% 65.6M 0s -2023-11-07T14:50:53Z #15 3.142 120100K .......... .......... .......... .......... .......... 92% 66.5M 0s -2023-11-07T14:50:53Z #15 3.142 120150K .......... .......... .......... .......... .......... 92% 81.1M 0s -2023-11-07T14:50:53Z #15 3.143 120200K .......... .......... .......... .......... .......... 92% 20.4M 0s -2023-11-07T14:50:53Z #15 3.145 120250K .......... .......... .......... .......... .......... 92% 93.1M 0s -2023-11-07T14:50:53Z #15 3.147 120300K .......... .......... .......... .......... .......... 92% 144M 0s -2023-11-07T14:50:53Z #15 3.147 120350K .......... .......... .......... .......... .......... 92% 48.8M 0s -2023-11-07T14:50:53Z #15 3.147 120400K .......... .......... .......... .......... .......... 92% 139M 0s -2023-11-07T14:50:53Z #15 3.148 120450K .......... .......... .......... .......... .......... 93% 48.9M 0s -2023-11-07T14:50:53Z #15 3.149 120500K .......... .......... .......... .......... .......... 93% 44.2M 0s -2023-11-07T14:50:53Z #15 3.150 120550K .......... .......... .......... .......... .......... 93% 59.4M 0s -2023-11-07T14:50:53Z #15 3.151 120600K .......... .......... .......... .......... .......... 93% 86.7M 0s -2023-11-07T14:50:53Z #15 3.151 120650K .......... .......... .......... .......... .......... 93% 20.0M 0s -2023-11-07T14:50:53Z #15 3.154 120700K .......... .......... .......... .......... .......... 93% 131M 0s -2023-11-07T14:50:53Z #15 3.154 120750K .......... .......... .......... .......... .......... 93% 123M 0s -2023-11-07T14:50:53Z #15 3.154 120800K .......... .......... .......... .......... .......... 93% 131M 0s -2023-11-07T14:50:53Z #15 3.155 120850K .......... .......... .......... .......... .......... 93% 50.8M 0s -2023-11-07T14:50:53Z #15 3.156 120900K .......... .......... .......... .......... .......... 93% 123M 0s -2023-11-07T14:50:53Z #15 3.156 120950K .......... .......... .......... .......... .......... 93% 49.2M 0s -2023-11-07T14:50:53Z #15 3.160 121000K .......... .......... .......... .......... .......... 93% 18.0M 0s -2023-11-07T14:50:53Z #15 3.160 121050K .......... .......... .......... .......... .......... 93% 130M 0s -2023-11-07T14:50:53Z #15 3.160 121100K .......... .......... .......... .......... .......... 93% 86.6M 0s -2023-11-07T14:50:53Z #15 3.165 121150K .......... .......... .......... .......... .......... 93% 52.8M 0s -2023-11-07T14:50:53Z #15 3.165 121200K .......... .......... .......... .......... .......... 93% 126M 0s -2023-11-07T14:50:53Z #15 3.165 121250K .......... .......... .......... .......... .......... 93% 136M 0s -2023-11-07T14:50:53Z #15 3.165 121300K .......... .......... .......... .......... .......... 93% 15.1M 0s -2023-11-07T14:50:53Z #15 3.166 121350K .......... .......... .......... .......... .......... 93% 53.7M 0s -2023-11-07T14:50:53Z #15 3.169 121400K .......... .......... .......... .......... .......... 93% 101M 0s -2023-11-07T14:50:53Z #15 3.169 121450K .......... .......... .......... .......... .......... 93% 112M 0s -2023-11-07T14:50:53Z #15 3.169 121500K .......... .......... .......... .......... .......... 93% 69.0M 0s -2023-11-07T14:50:53Z #15 3.169 121550K .......... .......... .......... .......... .......... 93% 15.6M 0s -2023-11-07T14:50:53Z #15 3.172 121600K .......... .......... .......... .......... .......... 93% 122M 0s -2023-11-07T14:50:53Z #15 3.172 121650K .......... .......... .......... .......... .......... 93% 124M 0s -2023-11-07T14:50:53Z #15 3.172 121700K .......... .......... .......... .......... .......... 93% 65.0M 0s -2023-11-07T14:50:53Z #15 3.178 121750K .......... .......... .......... .......... .......... 94% 111M 0s -2023-11-07T14:50:53Z #15 3.178 121800K .......... .......... .......... .......... .......... 94% 130M 0s -2023-11-07T14:50:53Z #15 3.178 121850K .......... .......... .......... .......... .......... 94% 70.8M 0s -2023-11-07T14:50:53Z #15 3.178 121900K .......... .......... .......... .......... .......... 94% 124M 0s -2023-11-07T14:50:53Z #15 3.178 121950K .......... .......... .......... .......... .......... 94% 130M 0s -2023-11-07T14:50:53Z #15 3.178 122000K .......... .......... .......... .......... .......... 94% 61.2M 0s -2023-11-07T14:50:53Z #15 3.178 122050K .......... .......... .......... .......... .......... 94% 14.7M 0s -2023-11-07T14:50:53Z #15 3.180 122100K .......... .......... .......... .......... .......... 94% 35.5M 0s -2023-11-07T14:50:53Z #15 3.184 122150K .......... .......... .......... .......... .......... 94% 120M 0s -2023-11-07T14:50:53Z #15 3.184 122200K .......... .......... .......... .......... .......... 94% 68.6M 0s -2023-11-07T14:50:53Z #15 3.184 122250K .......... .......... .......... .......... .......... 94% 95.8M 0s -2023-11-07T14:50:53Z #15 3.184 122300K .......... .......... .......... .......... .......... 94% 127M 0s -2023-11-07T14:50:53Z #15 3.184 122350K .......... .......... .......... .......... .......... 94% 122M 0s -2023-11-07T14:50:53Z #15 3.184 122400K .......... .......... .......... .......... .......... 94% 130M 0s -2023-11-07T14:50:53Z #15 3.184 122450K .......... .......... .......... .......... .......... 94% 111M 0s -2023-11-07T14:50:53Z #15 3.184 122500K .......... .......... .......... .......... .......... 94% 127M 0s -2023-11-07T14:50:53Z #15 3.184 122550K .......... .......... .......... .......... .......... 94% 40.2M 0s -2023-11-07T14:50:53Z #15 3.185 122600K .......... .......... .......... .......... .......... 94% 64.1M 0s -2023-11-07T14:50:53Z #15 3.188 122650K .......... .......... .......... .......... .......... 94% 128M 0s -2023-11-07T14:50:53Z #15 3.188 122700K .......... .......... .......... .......... .......... 94% 108M 0s -2023-11-07T14:50:53Z #15 3.188 122750K .......... .......... .......... .......... .......... 94% 126M 0s -2023-11-07T14:50:53Z #15 3.188 122800K .......... .......... .......... .......... .......... 94% 49.2M 0s -2023-11-07T14:50:53Z #15 3.189 122850K .......... .......... .......... .......... .......... 94% 21.6M 0s -2023-11-07T14:50:53Z #15 3.191 122900K .......... .......... .......... .......... .......... 94% 58.2M 0s -2023-11-07T14:50:53Z #15 3.191 122950K .......... .......... .......... .......... .......... 94% 61.7M 0s -2023-11-07T14:50:53Z #15 3.196 123000K .......... .......... .......... .......... .......... 94% 118M 0s -2023-11-07T14:50:53Z #15 3.196 123050K .......... .......... .......... .......... .......... 95% 107M 0s -2023-11-07T14:50:53Z #15 3.196 123100K .......... .......... .......... .......... .......... 95% 146M 0s -2023-11-07T14:50:53Z #15 3.196 123150K .......... .......... .......... .......... .......... 95% 112M 0s -2023-11-07T14:50:53Z #15 3.196 123200K .......... .......... .......... .......... .......... 95% 126M 0s -2023-11-07T14:50:53Z #15 3.196 123250K .......... .......... .......... .......... .......... 95% 134M 0s -2023-11-07T14:50:53Z #15 3.196 123300K .......... .......... .......... .......... .......... 95% 133M 0s -2023-11-07T14:50:53Z #15 3.196 123350K .......... .......... .......... .......... .......... 95% 89.7M 0s -2023-11-07T14:50:53Z #15 3.196 123400K .......... .......... .......... .......... .......... 95% 133M 0s -2023-11-07T14:50:53Z #15 3.196 123450K .......... .......... .......... .......... .......... 95% 127M 0s -2023-11-07T14:50:53Z #15 3.196 123500K .......... .......... .......... .......... .......... 95% 22.5M 0s -2023-11-07T14:50:53Z #15 3.199 123550K .......... .......... .......... .......... .......... 95% 34.1M 0s -2023-11-07T14:50:53Z #15 3.200 123600K .......... .......... .......... .......... .......... 95% 65.2M 0s -2023-11-07T14:50:53Z #15 3.201 123650K .......... .......... .......... .......... .......... 95% 42.3M 0s -2023-11-07T14:50:53Z #15 3.202 123700K .......... .......... .......... .......... .......... 95% 14.9M 0s -2023-11-07T14:50:53Z #15 3.205 123750K .......... .......... .......... .......... .......... 95% 62.8M 0s -2023-11-07T14:50:53Z #15 3.208 123800K .......... .......... .......... .......... .......... 95% 35.9M 0s -2023-11-07T14:50:53Z #15 3.208 123850K .......... .......... .......... .......... .......... 95% 34.8M 0s -2023-11-07T14:50:53Z #15 3.208 123900K .......... .......... .......... .......... .......... 95% 38.3M 0s -2023-11-07T14:50:53Z #15 3.210 123950K .......... .......... .......... .......... .......... 95% 44.2M 0s -2023-11-07T14:50:53Z #15 3.212 124000K .......... .......... .......... .......... .......... 95% 37.7M 0s -2023-11-07T14:50:53Z #15 3.212 124050K .......... .......... .......... .......... .......... 95% 35.7M 0s -2023-11-07T14:50:53Z #15 3.216 124100K .......... .......... .......... .......... .......... 95% 37.9M 0s -2023-11-07T14:50:53Z #15 3.216 124150K .......... .......... .......... .......... .......... 95% 35.2M 0s -2023-11-07T14:50:53Z #15 3.217 124200K .......... .......... .......... .......... .......... 95% 29.8M 0s -2023-11-07T14:50:53Z #15 3.218 124250K .......... .......... .......... .......... .......... 95% 168M 0s -2023-11-07T14:50:53Z #15 3.218 124300K .......... .......... .......... .......... .......... 95% 29.8M 0s -2023-11-07T14:50:53Z #15 3.225 124350K .......... .......... .......... .......... .......... 96% 33.6M 0s -2023-11-07T14:50:53Z #15 3.225 124400K .......... .......... .......... .......... .......... 96% 40.9M 0s -2023-11-07T14:50:53Z #15 3.225 124450K .......... .......... .......... .......... .......... 96% 41.8M 0s -2023-11-07T14:50:53Z #15 3.225 124500K .......... .......... .......... .......... .......... 96% 26.9M 0s -2023-11-07T14:50:53Z #15 3.229 124550K .......... .......... .......... .......... .......... 96% 29.7M 0s -2023-11-07T14:50:53Z #15 3.229 124600K .......... .......... .......... .......... .......... 96% 32.3M 0s -2023-11-07T14:50:53Z #15 3.232 124650K .......... .......... .......... .......... .......... 96% 36.2M 0s -2023-11-07T14:50:53Z #15 3.232 124700K .......... .......... .......... .......... .......... 96% 41.0M 0s -2023-11-07T14:50:53Z #15 3.232 124750K .......... .......... .......... .......... .......... 96% 34.7M 0s -2023-11-07T14:50:53Z #15 3.232 124800K .......... .......... .......... .......... .......... 96% 38.9M 0s -2023-11-07T14:50:53Z #15 3.236 124850K .......... .......... .......... .......... .......... 96% 51.2M 0s -2023-11-07T14:50:53Z #15 3.236 124900K .......... .......... .......... .......... .......... 96% 35.8M 0s -2023-11-07T14:50:53Z #15 3.236 124950K .......... .......... .......... .......... .......... 96% 48.2M 0s -2023-11-07T14:50:53Z #15 3.237 125000K .......... .......... .......... .......... .......... 96% 31.8M 0s -2023-11-07T14:50:53Z #15 3.240 125050K .......... .......... .......... .......... .......... 96% 111M 0s -2023-11-07T14:50:53Z #15 3.240 125100K .......... .......... .......... .......... .......... 96% 203M 0s -2023-11-07T14:50:53Z #15 3.240 125150K .......... .......... .......... .......... .......... 96% 243M 0s -2023-11-07T14:50:53Z #15 3.240 125200K .......... .......... .......... .......... .......... 96% 217M 0s -2023-11-07T14:50:53Z #15 3.240 125250K .......... .......... .......... .......... .......... 96% 260M 0s -2023-11-07T14:50:53Z #15 3.240 125300K .......... .......... .......... .......... .......... 96% 256M 0s -2023-11-07T14:50:53Z #15 3.240 125350K .......... .......... .......... .......... .......... 96% 189M 0s -2023-11-07T14:50:53Z #15 3.240 125400K .......... .......... .......... .......... .......... 96% 167M 0s -2023-11-07T14:50:53Z #15 3.241 125450K .......... .......... .......... .......... .......... 96% 155M 0s -2023-11-07T14:50:53Z #15 3.241 125500K .......... .......... .......... .......... .......... 96% 161M 0s -2023-11-07T14:50:53Z #15 3.241 125550K .......... .......... .......... .......... .......... 96% 138M 0s -2023-11-07T14:50:53Z #15 3.242 125600K .......... .......... .......... .......... .......... 96% 156M 0s -2023-11-07T14:50:53Z #15 3.243 125650K .......... .......... .......... .......... .......... 97% 164M 0s -2023-11-07T14:50:53Z #15 3.243 125700K .......... .......... .......... .......... .......... 97% 149M 0s -2023-11-07T14:50:53Z #15 3.243 125750K .......... .......... .......... .......... .......... 97% 136M 0s -2023-11-07T14:50:53Z #15 3.243 125800K .......... .......... .......... .......... .......... 97% 142M 0s -2023-11-07T14:50:53Z #15 3.243 125850K .......... .......... .......... .......... .......... 97% 168M 0s -2023-11-07T14:50:53Z #15 3.244 125900K .......... .......... .......... .......... .......... 97% 170M 0s -2023-11-07T14:50:53Z #15 3.244 125950K .......... .......... .......... .......... .......... 97% 158M 0s -2023-11-07T14:50:53Z #15 3.244 126000K .......... .......... .......... .......... .......... 97% 131M 0s -2023-11-07T14:50:53Z #15 3.245 126050K .......... .......... .......... .......... .......... 97% 173M 0s -2023-11-07T14:50:53Z #15 3.245 126100K .......... .......... .......... .......... .......... 97% 171M 0s -2023-11-07T14:50:53Z #15 3.245 126150K .......... .......... .......... .......... .......... 97% 156M 0s -2023-11-07T14:50:53Z #15 3.246 126200K .......... .......... .......... .......... .......... 97% 141M 0s -2023-11-07T14:50:53Z #15 3.246 126250K .......... .......... .......... .......... .......... 97% 166M 0s -2023-11-07T14:50:53Z #15 3.246 126300K .......... .......... .......... .......... .......... 97% 173M 0s -2023-11-07T14:50:53Z #15 3.247 126350K .......... .......... .......... .......... .......... 97% 169M 0s -2023-11-07T14:50:53Z #15 3.247 126400K .......... .......... .......... .......... .......... 97% 151M 0s -2023-11-07T14:50:53Z #15 3.247 126450K .......... .......... .......... .......... .......... 97% 144M 0s -2023-11-07T14:50:53Z #15 3.247 126500K .......... .......... .......... .......... .......... 97% 125M 0s -2023-11-07T14:50:53Z #15 3.248 126550K .......... .......... .......... .......... .......... 97% 158M 0s -2023-11-07T14:50:53Z #15 3.248 126600K .......... .......... .......... .......... .......... 97% 171M 0s -2023-11-07T14:50:53Z #15 3.248 126650K .......... .......... .......... .......... .......... 97% 127M 0s -2023-11-07T14:50:53Z #15 3.249 126700K .......... .......... .......... .......... .......... 97% 166M 0s -2023-11-07T14:50:53Z #15 3.249 126750K .......... .......... .......... .......... .......... 97% 140M 0s -2023-11-07T14:50:53Z #15 3.249 126800K .......... .......... .......... .......... .......... 97% 125M 0s -2023-11-07T14:50:53Z #15 3.250 126850K .......... .......... .......... .......... .......... 97% 156M 0s -2023-11-07T14:50:54Z #15 3.250 126900K .......... .......... .......... .......... .......... 97% 147M 0s -2023-11-07T14:50:54Z #15 3.254 126950K .......... .......... .......... .......... .......... 98% 138M 0s -2023-11-07T14:50:54Z #15 3.255 127000K .......... .......... .......... .......... .......... 98% 134M 0s -2023-11-07T14:50:54Z #15 3.255 127050K .......... .......... .......... .......... .......... 98% 165M 0s -2023-11-07T14:50:54Z #15 3.255 127100K .......... .......... .......... .......... .......... 98% 116M 0s -2023-11-07T14:50:54Z #15 3.255 127150K .......... .......... .......... .......... .......... 98% 59.3M 0s -2023-11-07T14:50:54Z #15 3.255 127200K .......... .......... .......... .......... .......... 98% 146M 0s -2023-11-07T14:50:54Z #15 3.255 127250K .......... .......... .......... .......... .......... 98% 64.0M 0s -2023-11-07T14:50:54Z #15 3.255 127300K .......... .......... .......... .......... .......... 98% 88.9M 0s -2023-11-07T14:50:54Z #15 3.255 127350K .......... .......... .......... .......... .......... 98% 119M 0s -2023-11-07T14:50:54Z #15 3.255 127400K .......... .......... .......... .......... .......... 98% 141M 0s -2023-11-07T14:50:54Z #15 3.255 127450K .......... .......... .......... .......... .......... 98% 130M 0s -2023-11-07T14:50:54Z #15 3.255 127500K .......... .......... .......... .......... .......... 98% 151M 0s -2023-11-07T14:50:54Z #15 3.256 127550K .......... .......... .......... .......... .......... 98% 162M 0s -2023-11-07T14:50:54Z #15 3.256 127600K .......... .......... .......... .......... .......... 98% 121M 0s -2023-11-07T14:50:54Z #15 3.257 127650K .......... .......... .......... .......... .......... 98% 147M 0s -2023-11-07T14:50:54Z #15 3.257 127700K .......... .......... .......... .......... .......... 98% 155M 0s -2023-11-07T14:50:54Z #15 3.257 127750K .......... .......... .......... .......... .......... 98% 156M 0s -2023-11-07T14:50:54Z #15 3.257 127800K .......... .......... .......... .......... .......... 98% 142M 0s -2023-11-07T14:50:54Z #15 3.258 127850K .......... .......... .......... .......... .......... 98% 158M 0s -2023-11-07T14:50:54Z #15 3.258 127900K .......... .......... .......... .......... .......... 98% 159M 0s -2023-11-07T14:50:54Z #15 3.259 127950K .......... .......... .......... .......... .......... 98% 170M 0s -2023-11-07T14:50:54Z #15 3.259 128000K .......... .......... .......... .......... .......... 98% 127M 0s -2023-11-07T14:50:54Z #15 3.259 128050K .......... .......... .......... .......... .......... 98% 156M 0s -2023-11-07T14:50:54Z #15 3.259 128100K .......... .......... .......... .......... .......... 98% 159M 0s -2023-11-07T14:50:54Z #15 3.260 128150K .......... .......... .......... .......... .......... 98% 168M 0s -2023-11-07T14:50:54Z #15 3.260 128200K .......... .......... .......... .......... .......... 98% 142M 0s -2023-11-07T14:50:54Z #15 3.261 128250K .......... .......... .......... .......... .......... 99% 40.0M 0s -2023-11-07T14:50:54Z #15 3.264 128300K .......... .......... .......... .......... .......... 99% 171M 0s -2023-11-07T14:50:54Z #15 3.264 128350K .......... .......... .......... .......... .......... 99% 165M 0s -2023-11-07T14:50:54Z #15 3.264 128400K .......... .......... .......... .......... .......... 99% 170M 0s -2023-11-07T14:50:54Z #15 3.264 128450K .......... .......... .......... .......... .......... 99% 155M 0s -2023-11-07T14:50:54Z #15 3.264 128500K .......... .......... .......... .......... .......... 99% 164M 0s -2023-11-07T14:50:54Z #15 3.264 128550K .......... .......... .......... .......... .......... 99% 142M 0s -2023-11-07T14:50:54Z #15 3.264 128600K .......... .......... .......... .......... .......... 99% 163M 0s -2023-11-07T14:50:54Z #15 3.264 128650K .......... .......... .......... .......... .......... 99% 175M 0s -2023-11-07T14:50:54Z #15 3.264 128700K .......... .......... .......... .......... .......... 99% 155M 0s -2023-11-07T14:50:54Z #15 3.264 128750K .......... .......... .......... .......... .......... 99% 13.4M 0s -2023-11-07T14:50:54Z #15 3.272 128800K .......... .......... .......... .......... .......... 99% 132M 0s -2023-11-07T14:50:54Z #15 3.272 128850K .......... .......... .......... .......... .......... 99% 155M 0s -2023-11-07T14:50:54Z #15 3.272 128900K .......... .......... .......... .......... .......... 99% 163M 0s -2023-11-07T14:50:54Z #15 3.272 128950K .......... .......... .......... .......... .......... 99% 159M 0s -2023-11-07T14:50:54Z #15 3.272 129000K .......... .......... .......... .......... .......... 99% 161M 0s -2023-11-07T14:50:54Z #15 3.272 129050K .......... .......... .......... .......... .......... 99% 139M 0s -2023-11-07T14:50:54Z #15 3.272 129100K .......... .......... .......... .......... .......... 99% 168M 0s -2023-11-07T14:50:54Z #15 3.272 129150K .......... .......... .......... .......... .......... 99% 156M 0s -2023-11-07T14:50:54Z #15 3.272 129200K .......... .......... .......... .......... .......... 99% 158M 0s -2023-11-07T14:50:54Z #15 3.272 129250K .......... .......... .......... .......... .......... 99% 156M 0s -2023-11-07T14:50:54Z #15 3.272 129300K .......... .......... .......... .......... .......... 99% 141M 0s -2023-11-07T14:50:54Z #15 3.272 129350K .......... .......... .......... .......... .......... 99% 165M 0s -2023-11-07T14:50:54Z #15 3.272 129400K .......... .......... .......... .......... .......... 99% 168M 0s -2023-11-07T14:50:54Z #15 3.272 129450K .......... .......... .......... .......... .......... 99% 154M 0s -2023-11-07T14:50:54Z #15 3.272 129500K .......... .......... .......... .......... .......... 99% 7.39M 0s -2023-11-07T14:50:54Z #15 3.280 129550K .......... ..... 100% 131M=2.0s -2023-11-07T14:50:54Z #15 3.280 -2023-11-07T14:50:54Z #15 3.280 2023-11-07 14:50:53 (62.5 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [132675270/132675270] -2023-11-07T14:50:54Z #15 3.280 -2023-11-07T14:50:55Z #15 4.808 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.2/globusconnectpersonal' -2023-11-07T14:50:55Z #15 4.831 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2023-11-07T14:50:56Z #15 DONE 5.6s -2023-11-07T14:50:56Z -2023-11-07T14:50:56Z #16 exporting to image -2023-11-07T14:50:56Z #16 exporting layers -2023-11-07T14:53:17Z #16 exporting layers 141.0s done -2023-11-07T14:53:17Z #16 writing image sha256:ba56ae835924765543ac48574b379de4ee967b81e93599b016fd18c4aadc1841 done -2023-11-07T14:53:17Z #16 naming to docker.io/pavics/workflow-tests:py310-231107 done -2023-11-07T14:53:17Z #16 DONE 141.0s -2023-11-07T14:53:17Z Pushing index.docker.io/pavics/workflow-tests:py310-231107... -2023-11-07T15:00:36Z Done! -2023-11-07T15:00:36Z Build finished +2024-03-06T23:56:40Z Building in Docker Cloud's infrastructure... +2024-03-06T23:56:40Z Cloning into '.'... +2024-03-06T23:56:41Z Warning: Permanently added the RSA host key for IP address '140.82.113.3' to the list of known hosts. +2024-03-06T23:56:42Z Switched to a new branch 'dockerupdate-py310-231107-update240306' +2024-03-06T23:56:42Z KernelVersion: 5.4.0-1068-aws +2024-03-06T23:56:42Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-03-06T23:56:42Z Arch: amd64 +2024-03-06T23:56:42Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-03-06T23:56:42Z ApiVersion: 1.41 +2024-03-06T23:56:42Z Platform: {u'Name': u'Docker Engine - Community'} +2024-03-06T23:56:42Z Version: 20.10.15 +2024-03-06T23:56:42Z MinAPIVersion: 1.12 +2024-03-06T23:56:42Z GitCommit: 4433bf6 +2024-03-06T23:56:42Z Os: linux +2024-03-06T23:56:42Z GoVersion: go1.17.9 +2024-03-06T23:56:42Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-231107-update240306... +2024-03-06T23:56:48Z #1 [internal] load build definition from Dockerfile.testing +2024-03-06T23:56:48Z #1 transferring dockerfile: 1.22kB done +2024-03-06T23:56:48Z #1 DONE 0.1s +2024-03-06T23:56:48Z +2024-03-06T23:56:48Z #2 [internal] load .dockerignore +2024-03-06T23:56:48Z #2 transferring context: 2B done +2024-03-06T23:56:48Z #2 DONE 0.1s +2024-03-06T23:56:48Z +2024-03-06T23:56:48Z #3 [internal] load metadata for docker.io/pavics/workflow-tests:py310-231107-update240130 +2024-03-06T23:56:48Z #3 ... +2024-03-06T23:56:48Z +2024-03-06T23:56:48Z #4 [auth] pavics/workflow-tests:pull token for registry-1.docker.io +2024-03-06T23:56:48Z #4 DONE 0.0s +2024-03-06T23:56:48Z +2024-03-06T23:56:48Z #3 [internal] load metadata for docker.io/pavics/workflow-tests:py310-231107-update240130 +2024-03-06T23:56:49Z #3 DONE 0.7s +2024-03-06T23:56:49Z +2024-03-06T23:56:49Z #5 [1/2] FROM docker.io/pavics/workflow-tests:py310-231107-update240130@sha256:7aea23606b9210a3aeba7fc4cf93f185f53c3ea244de48562e9f4f9038135fee +2024-03-06T23:56:49Z #5 resolve docker.io/pavics/workflow-tests:py310-231107-update240130@sha256:7aea23606b9210a3aeba7fc4cf93f185f53c3ea244de48562e9f4f9038135fee 0.0s done +2024-03-06T23:56:49Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 0B / 50.08MB 0.2s +2024-03-06T23:56:49Z #5 sha256:9504f052271b0c755905e9c4d2becee916349f319be1ec77f56ba0fdb0d22f92 12.04kB / 12.04kB done +2024-03-06T23:56:49Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 11.53MB / 31.42MB 0.2s +2024-03-06T23:56:49Z #5 sha256:7aea23606b9210a3aeba7fc4cf93f185f53c3ea244de48562e9f4f9038135fee 3.07kB / 3.07kB done +2024-03-06T23:56:49Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 0B / 114.31MB 0.2s +2024-03-06T23:56:49Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 8.39MB / 50.08MB 0.3s +2024-03-06T23:56:49Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 18.94MB / 31.42MB 0.4s +2024-03-06T23:56:49Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 13.63MB / 50.08MB 0.5s +2024-03-06T23:56:49Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 20.97MB / 31.42MB 0.5s +2024-03-06T23:56:49Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 6.29MB / 114.31MB 0.5s +2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 23.07MB / 50.08MB 0.8s +2024-03-06T23:56:50Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 27.53MB / 31.42MB 0.8s +2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 18.87MB / 114.31MB 0.8s +2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 31.46MB / 50.08MB 1.0s +2024-03-06T23:56:50Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 31.42MB / 31.42MB 1.0s +2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 26.57MB / 114.31MB 1.0s +2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 41.94MB / 50.08MB 1.2s +2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 35.18MB / 114.31MB 1.2s +2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 46.14MB / 50.08MB 1.3s +2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 40.89MB / 114.31MB 1.3s +2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 50.08MB / 50.08MB 1.4s +2024-03-06T23:56:50Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 31.42MB / 31.42MB 1.3s done +2024-03-06T23:56:50Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 0B / 49.85MB 1.4s +2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 50.08MB / 50.08MB 1.5s done +2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 52.43MB / 114.31MB 1.6s +2024-03-06T23:56:50Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 0B / 315.55MB 1.6s +2024-03-06T23:56:51Z #5 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b +2024-03-06T23:56:51Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 4.19MB / 49.85MB 1.8s +2024-03-06T23:56:51Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 58.72MB / 114.31MB 2.1s +2024-03-06T23:56:51Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 9.44MB / 49.85MB 2.1s +2024-03-06T23:56:51Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 14.07MB / 49.85MB 2.4s +2024-03-06T23:56:51Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 19.92MB / 49.85MB 2.6s +2024-03-06T23:56:52Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 17.83MB / 315.55MB 2.8s +2024-03-06T23:56:52Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 67.11MB / 114.31MB 3.0s +2024-03-06T23:56:52Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 25.17MB / 49.85MB 3.0s +2024-03-06T23:56:52Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 73.40MB / 114.31MB 3.1s +2024-03-06T23:56:52Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 30.98MB / 49.85MB 3.4s +2024-03-06T23:56:52Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 34.60MB / 49.85MB 3.5s +2024-03-06T23:56:52Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 36.70MB / 315.55MB 3.5s +2024-03-06T23:56:53Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 85.98MB / 114.31MB 3.9s +2024-03-06T23:56:53Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 41.94MB / 49.85MB 3.9s +2024-03-06T23:56:53Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 45.95MB / 49.85MB 4.0s +2024-03-06T23:56:53Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 93.32MB / 114.31MB 4.4s +2024-03-06T23:56:54Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 100.66MB / 114.31MB 4.6s +2024-03-06T23:56:54Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 49.85MB / 49.85MB 4.8s +2024-03-06T23:56:54Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 53.83MB / 315.55MB 4.8s +2024-03-06T23:56:54Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 49.85MB / 49.85MB 4.9s done +2024-03-06T23:56:54Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 0B / 147.61MB 5.0s +2024-03-06T23:56:54Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 108.00MB / 114.31MB 5.2s +2024-03-06T23:56:54Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 10.49MB / 147.61MB 5.4s +2024-03-06T23:56:54Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 71.30MB / 315.55MB 5.6s +2024-03-06T23:56:55Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 114.31MB / 114.31MB 5.7s +2024-03-06T23:56:55Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 19.07MB / 147.61MB 5.9s +2024-03-06T23:56:55Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 95.42MB / 315.55MB 6.4s +2024-03-06T23:56:56Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 30.41MB / 147.61MB 6.6s +2024-03-06T23:56:56Z #5 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 5.1s +2024-03-06T23:56:56Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 114.31MB / 114.31MB 6.8s done +2024-03-06T23:56:56Z #5 sha256:8459c54be37455a967f4b2773fd452a268d172f34742655bf3581db7baf59133 0B / 3.56kB 6.9s +2024-03-06T23:56:56Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 42.99MB / 147.61MB 7.1s +2024-03-06T23:56:56Z #5 sha256:8459c54be37455a967f4b2773fd452a268d172f34742655bf3581db7baf59133 3.56kB / 3.56kB 7.0s done +2024-03-06T23:56:56Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 0B / 1.62GB 7.1s +2024-03-06T23:56:56Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 114.29MB / 315.55MB 7.3s +2024-03-06T23:56:56Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 52.43MB / 147.61MB 7.5s +2024-03-06T23:56:57Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 62.91MB / 147.61MB 8.1s +2024-03-06T23:56:57Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 71.34MB / 147.61MB 8.5s +2024-03-06T23:56:58Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 81.79MB / 147.61MB 8.8s +2024-03-06T23:56:58Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 133.17MB / 315.55MB 8.9s +2024-03-06T23:56:58Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 94.37MB / 147.61MB 9.2s +2024-03-06T23:56:59Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 106.95MB / 147.61MB 9.7s +2024-03-06T23:56:59Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 156.24MB / 315.55MB 10.2s +2024-03-06T23:56:59Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 115.34MB / 147.61MB 10.5s +2024-03-06T23:57:00Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 174.06MB / 315.55MB 11.0s +2024-03-06T23:57:00Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 126.88MB / 147.61MB 11.2s +2024-03-06T23:57:00Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 137.36MB / 147.61MB 11.5s +2024-03-06T23:57:00Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 82.84MB / 1.62GB 11.5s +2024-03-06T23:57:01Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 189.90MB / 315.55MB 11.9s +2024-03-06T23:57:01Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 147.61MB / 147.61MB 12.1s +2024-03-06T23:57:01Z #5 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 10.5s +2024-03-06T23:57:02Z #5 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 11.1s done +2024-03-06T23:57:02Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 213.91MB / 315.55MB 13.1s +2024-03-06T23:57:02Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 233.83MB / 315.55MB 13.5s +2024-03-06T23:57:02Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 147.61MB / 147.61MB 13.5s done +2024-03-06T23:57:02Z #5 sha256:e1051cee58a022704fdd1610b1a0bbba1e4016cb1fb76a3bc664ce1b824131c4 0B / 6.74kB 13.6s +2024-03-06T23:57:03Z #5 sha256:e1051cee58a022704fdd1610b1a0bbba1e4016cb1fb76a3bc664ce1b824131c4 6.74kB / 6.74kB 13.7s done +2024-03-06T23:57:03Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 0B / 200.47MB 13.7s +2024-03-06T23:57:03Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 165.68MB / 1.62GB 14.2s +2024-03-06T23:57:03Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 251.66MB / 315.55MB 14.4s +2024-03-06T23:57:03Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 11.53MB / 200.47MB 14.5s +2024-03-06T23:57:03Z #5 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f +2024-03-06T23:57:04Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 24.12MB / 200.47MB 14.8s +2024-03-06T23:57:04Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 270.53MB / 315.55MB 15.2s +2024-03-06T23:57:05Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 288.40MB / 315.55MB 15.9s +2024-03-06T23:57:05Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 39.86MB / 200.47MB 15.9s +2024-03-06T23:57:05Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 306.90MB / 315.55MB 16.5s +2024-03-06T23:57:05Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 50.33MB / 200.47MB 16.6s +2024-03-06T23:57:06Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 60.38MB / 200.47MB 17.1s +2024-03-06T23:57:07Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 73.40MB / 200.47MB 17.9s +2024-03-06T23:57:07Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 84.93MB / 200.47MB 18.4s +2024-03-06T23:57:08Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 247.46MB / 1.62GB 18.9s +2024-03-06T23:57:08Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 96.47MB / 200.47MB 19.1s +2024-03-06T23:57:08Z #5 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 5.0s +2024-03-06T23:57:08Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 111.15MB / 200.47MB 19.6s +2024-03-06T23:57:09Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 315.55MB / 315.55MB 20.0s done +2024-03-06T23:57:09Z #5 sha256:043fc5acd7e177b5ee535ff0acb9a8affdbc7887d9f53f993c8364b668f6351c 0B / 3.09kB 20.0s +2024-03-06T23:57:09Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 127.93MB / 200.47MB 20.3s +2024-03-06T23:57:09Z #5 sha256:043fc5acd7e177b5ee535ff0acb9a8affdbc7887d9f53f993c8364b668f6351c 3.09kB / 3.09kB 20.2s done +2024-03-06T23:57:09Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 0B / 136.79MB 20.3s +2024-03-06T23:57:09Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 140.36MB / 200.47MB 20.5s +2024-03-06T23:57:10Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 150.99MB / 200.47MB 20.8s +2024-03-06T23:57:10Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 7.14MB / 136.79MB 20.9s +2024-03-06T23:57:10Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 167.77MB / 200.47MB 21.2s +2024-03-06T23:57:10Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 17.83MB / 136.79MB 21.2s +2024-03-06T23:57:10Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 178.26MB / 200.47MB 21.6s +2024-03-06T23:57:11Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 25.17MB / 136.79MB 21.9s +2024-03-06T23:57:11Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 336.24MB / 1.62GB 22.1s +2024-03-06T23:57:11Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 190.84MB / 200.47MB 22.5s +2024-03-06T23:57:11Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 32.99MB / 136.79MB 22.6s +2024-03-06T23:57:12Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 43.41MB / 136.79MB 23.0s +2024-03-06T23:57:12Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 50.33MB / 136.79MB 23.1s +2024-03-06T23:57:12Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 58.79MB / 136.79MB 23.6s +2024-03-06T23:57:13Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 69.21MB / 136.79MB 23.9s +2024-03-06T23:57:13Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 76.89MB / 136.79MB 24.5s +2024-03-06T23:57:14Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 85.98MB / 136.79MB 24.9s +2024-03-06T23:57:14Z #5 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 10.6s +2024-03-06T23:57:14Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 200.47MB / 200.47MB 25.3s done +2024-03-06T23:57:14Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 95.42MB / 136.79MB 25.4s +2024-03-06T23:57:14Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 0B / 32.78MB 25.4s +2024-03-06T23:57:14Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 103.87MB / 136.79MB 25.6s +2024-03-06T23:57:14Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 3.15MB / 32.78MB 25.6s +2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 9.44MB / 32.78MB 25.7s +2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 12.58MB / 32.78MB 25.9s +2024-03-06T23:57:15Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 115.34MB / 136.79MB 26.0s +2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 15.73MB / 32.78MB 26.0s +2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 19.92MB / 32.78MB 26.1s +2024-03-06T23:57:15Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 123.73MB / 136.79MB 26.2s +2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 23.07MB / 32.78MB 26.2s +2024-03-06T23:57:16Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 422.58MB / 1.62GB 26.6s +2024-03-06T23:57:16Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 26.21MB / 32.78MB 26.9s +2024-03-06T23:57:16Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 136.79MB / 136.79MB 27.1s +2024-03-06T23:57:16Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 28.31MB / 32.78MB 27.2s +2024-03-06T23:57:16Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 31.46MB / 32.78MB 27.4s +2024-03-06T23:57:17Z #5 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 13.3s done +2024-03-06T23:57:17Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 511.71MB / 1.62GB 28.4s +2024-03-06T23:57:17Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 136.79MB / 136.79MB 28.6s done +2024-03-06T23:57:18Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 32.78MB / 32.78MB 28.9s done +2024-03-06T23:57:18Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 +2024-03-06T23:57:19Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 594.54MB / 1.62GB 30.2s +2024-03-06T23:57:21Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 676.33MB / 1.62GB 32.3s +2024-03-06T23:57:23Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 5.0s +2024-03-06T23:57:24Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 762.71MB / 1.62GB 34.9s +2024-03-06T23:57:26Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 853.54MB / 1.62GB 37.2s +2024-03-06T23:57:28Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 936.38MB / 1.62GB 38.9s +2024-03-06T23:57:28Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 10.0s +2024-03-06T23:57:31Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.02GB / 1.62GB 41.7s +2024-03-06T23:57:33Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.10GB / 1.62GB 43.8s +2024-03-06T23:57:33Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 15.1s +2024-03-06T23:57:35Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.18GB / 1.62GB 46.4s +2024-03-06T23:57:37Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 18.8s done +2024-03-06T23:57:37Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.27GB / 1.62GB 48.5s +2024-03-06T23:57:38Z #5 extracting sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a +2024-03-06T23:57:40Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.35GB / 1.62GB 50.9s +2024-03-06T23:57:43Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.44GB / 1.62GB 53.9s +2024-03-06T23:57:43Z #5 extracting sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 5.2s +2024-03-06T23:57:45Z #5 extracting sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 6.7s done +2024-03-06T23:57:45Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.52GB / 1.62GB 56.4s +2024-03-06T23:57:45Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 +2024-03-06T23:57:48Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.61GB / 1.62GB 59.2s +2024-03-06T23:57:50Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 5.0s +2024-03-06T23:57:50Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.62GB / 1.62GB 61.6s done +2024-03-06T23:57:55Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 10.1s +2024-03-06T23:58:00Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 15.1s +2024-03-06T23:58:05Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 20.2s +2024-03-06T23:58:11Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 25.9s +2024-03-06T23:58:13Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 27.6s done +2024-03-06T23:58:13Z #5 extracting sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 +2024-03-06T23:58:18Z #5 extracting sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 5.0s +2024-03-06T23:58:24Z #5 extracting sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 10.1s +2024-03-06T23:58:28Z #5 extracting sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 14.7s done +2024-03-06T23:58:28Z #5 extracting sha256:8459c54be37455a967f4b2773fd452a268d172f34742655bf3581db7baf59133 done +2024-03-06T23:58:29Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d +2024-03-06T23:58:34Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 5.0s +2024-03-06T23:58:39Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 10.0s +2024-03-06T23:58:44Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 15.1s +2024-03-06T23:58:49Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 20.2s +2024-03-06T23:58:54Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 25.5s +2024-03-06T23:59:00Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 30.9s +2024-03-06T23:59:05Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 36.1s +2024-03-06T23:59:11Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 41.9s +2024-03-06T23:59:16Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 46.9s +2024-03-06T23:59:21Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 52.0s +2024-03-06T23:59:26Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 57.1s +2024-03-06T23:59:31Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 62.1s +2024-03-06T23:59:36Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 67.2s +2024-03-06T23:59:41Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 72.2s +2024-03-06T23:59:46Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 77.3s +2024-03-06T23:59:51Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 82.4s +2024-03-06T23:59:56Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 87.5s +2024-03-07T00:00:01Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 92.6s +2024-03-07T00:00:07Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 97.7s +2024-03-07T00:00:11Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 102.8s +2024-03-07T00:00:17Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 108.0s +2024-03-07T00:00:22Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 113.0s +2024-03-07T00:00:27Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 118.1s +2024-03-07T00:00:32Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 123.4s +2024-03-07T00:00:37Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 128.7s +2024-03-07T00:00:43Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 134.0s +2024-03-07T00:00:48Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 139.1s +2024-03-07T00:00:53Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 144.1s +2024-03-07T00:00:58Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 149.2s +2024-03-07T00:01:03Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 154.4s +2024-03-07T00:01:11Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 161.9s +2024-03-07T00:01:16Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 167.0s +2024-03-07T00:01:21Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 172.2s +2024-03-07T00:01:26Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 177.4s +2024-03-07T00:01:31Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 182.6s +2024-03-07T00:01:36Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 187.7s +2024-03-07T00:01:42Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 192.9s +2024-03-07T00:01:47Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 198.0s +2024-03-07T00:01:53Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 203.7s +2024-03-07T00:01:58Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 209.1s +2024-03-07T00:02:03Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 214.2s +2024-03-07T00:02:08Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 219.3s +2024-03-07T00:02:13Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 224.5s +2024-03-07T00:02:20Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 231.6s +2024-03-07T00:02:26Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 237.1s +2024-03-07T00:02:31Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 242.2s +2024-03-07T00:02:36Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 247.2s +2024-03-07T00:02:42Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 253.2s +2024-03-07T00:02:47Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 258.4s +2024-03-07T00:02:52Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 263.5s +2024-03-07T00:02:58Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 269.3s +2024-03-07T00:03:03Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 274.4s done +2024-03-07T00:03:08Z #5 extracting sha256:e1051cee58a022704fdd1610b1a0bbba1e4016cb1fb76a3bc664ce1b824131c4 done +2024-03-07T00:03:09Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 +2024-03-07T00:03:14Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 5.3s +2024-03-07T00:03:21Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 12.1s +2024-03-07T00:03:26Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 17.3s +2024-03-07T00:03:31Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 22.4s +2024-03-07T00:03:36Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 27.4s +2024-03-07T00:03:41Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 32.6s +2024-03-07T00:03:47Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 38.4s +2024-03-07T00:03:53Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 44.0s +2024-03-07T00:03:58Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 49.1s +2024-03-07T00:04:03Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 54.1s +2024-03-07T00:04:05Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 56.0s done +2024-03-07T00:04:07Z #5 extracting sha256:043fc5acd7e177b5ee535ff0acb9a8affdbc7887d9f53f993c8364b668f6351c done +2024-03-07T00:04:08Z #5 extracting sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 +2024-03-07T00:04:12Z #5 extracting sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 4.3s done +2024-03-07T00:04:12Z #5 extracting sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 +2024-03-07T00:04:14Z #5 extracting sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 2.0s done +2024-03-07T00:04:14Z #5 DONE 445.6s +2024-03-07T00:04:15Z +2024-03-07T00:04:15Z #6 [2/2] RUN umask 0000 && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.2 ravenpy==0.13.0 pydantic==2.6.3 && mamba clean --all --yes && pip install --no-cache-dir --upgrade figanos +2024-03-07T00:05:30Z #6 75.93 Transaction +2024-03-07T00:05:30Z #6 75.93 +2024-03-07T00:05:30Z #6 75.93 Prefix: /opt/conda/envs/birdy +2024-03-07T00:05:30Z #6 75.93 +2024-03-07T00:05:30Z #6 75.93 Updating specs: +2024-03-07T00:05:30Z #6 75.93 +2024-03-07T00:05:30Z #6 75.93 - xscen==0.8.2 +2024-03-07T00:05:30Z #6 75.93 - ravenpy==0.13.0 +2024-03-07T00:05:30Z #6 75.93 - pydantic==2.6.3 +2024-03-07T00:05:30Z #6 75.93 - ca-certificates +2024-03-07T00:05:30Z #6 75.93 - certifi +2024-03-07T00:05:30Z #6 75.93 - openssl +2024-03-07T00:05:30Z #6 75.93 +2024-03-07T00:05:30Z #6 75.93 +2024-03-07T00:05:31Z #6 75.95 Package Version Build Channel Size +2024-03-07T00:05:31Z #6 75.95 ────────────────────────────────────────────────────────────────────────── +2024-03-07T00:05:31Z #6 75.95 Install: +2024-03-07T00:05:31Z #6 75.95 ────────────────────────────────────────────────────────────────────────── +2024-03-07T00:05:31Z #6 75.95 +2024-03-07T00:05:31Z #6 75.95 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB +2024-03-07T00:05:31Z #6 75.95 + parse 1.20.1 pyhd8ed1ab_0 conda-forge 24kB +2024-03-07T00:05:31Z #6 75.95 + mypy_extensions 1.0.0 pyha770c72_0 conda-forge 10kB +2024-03-07T00:05:31Z #6 75.95 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB +2024-03-07T00:05:31Z #6 75.95 + rechunker 0.5.2 pyhd8ed1ab_1 conda-forge 25kB +2024-03-07T00:05:31Z #6 75.95 + xscen 0.8.2 pyhd8ed1ab_0 conda-forge 395kB +2024-03-07T00:05:31Z #6 75.95 +2024-03-07T00:05:31Z #6 75.95 Upgrade: +2024-03-07T00:05:31Z #6 75.95 ────────────────────────────────────────────────────────────────────────── +2024-03-07T00:05:31Z #6 75.95 +2024-03-07T00:05:31Z #6 75.95 - ca-certificates 2023.11.17 hbcca054_0 conda-forge Cached +2024-03-07T00:05:31Z #6 75.95 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB +2024-03-07T00:05:31Z #6 75.95 - climpred 2.3.0 pyhd8ed1ab_0 conda-forge Cached +2024-03-07T00:05:31Z #6 75.95 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-03-07T00:05:31Z #6 75.95 - certifi 2023.11.17 pyhd8ed1ab_0 conda-forge Cached +2024-03-07T00:05:31Z #6 75.95 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge 161kB +2024-03-07T00:05:31Z #6 75.95 - pydantic 1.10.13 py310h2372a71_1 conda-forge Cached +2024-03-07T00:05:31Z #6 75.95 + pydantic 2.6.3 pyhd8ed1ab_0 conda-forge 272kB +2024-03-07T00:05:31Z #6 75.95 - intake-esm 2023.6.14 pyhd8ed1ab_0 conda-forge Cached +2024-03-07T00:05:31Z #6 75.95 + intake-esm 2024.2.6 pyhd8ed1ab_1 conda-forge 31kB +2024-03-07T00:05:31Z #6 75.95 - ravenpy 0.12.3 py310hff52083_0 conda-forge Cached +2024-03-07T00:05:31Z #6 75.95 + ravenpy 0.13.0 py310hff52083_0 conda-forge 6MB +2024-03-07T00:05:31Z #6 75.95 +2024-03-07T00:05:31Z #6 75.95 Summary: +2024-03-07T00:05:31Z #6 75.95 +2024-03-07T00:05:31Z #6 75.95 Install: 6 packages +2024-03-07T00:05:31Z #6 75.95 Upgrade: 6 packages +2024-03-07T00:05:31Z #6 75.95 +2024-03-07T00:05:31Z #6 75.95 Total download: 9MB +2024-03-07T00:05:31Z #6 75.95 +2024-03-07T00:05:31Z #6 75.95 ────────────────────────────────────────────────────────────────────────── +2024-03-07T00:05:31Z #6 75.95 +2024-03-07T00:05:31Z #6 75.95 +2024-03-07T00:05:54Z #6 75.95 Confirm changes: [Y/n] +2024-03-07T00:05:54Z #6 99.12 Looking for: ['xscen==0.8.2', 'ravenpy==0.13.0', 'pydantic==2.6.3'] +2024-03-07T00:05:54Z #6 99.12 +2024-03-07T00:05:54Z #6 99.12 +2024-03-07T00:05:54Z #6 99.12 Pinned packages: +2024-03-07T00:05:54Z #6 99.12 - python 3.10.* +2024-03-07T00:05:54Z #6 99.12 +2024-03-07T00:05:54Z #6 99.12 +2024-03-07T00:05:54Z #6 99.12 +2024-03-07T00:05:54Z #6 99.12 Downloading and Extracting Packages: ...working... done +2024-03-07T00:05:54Z #6 99.12 Preparing transaction: ...working... done +2024-03-07T00:05:54Z #6 99.18 Verifying transaction: ...working... done +2024-03-07T00:06:00Z #6 99.41 Executing transaction: ...working... done +2024-03-07T00:06:04Z #6 109.5 Will remove 12 (8.5 MB) tarball(s). +2024-03-07T00:06:04Z #6 109.5 Will remove 1 index cache(s). +2024-03-07T00:06:04Z #6 109.5 There are no unused package(s) to remove. +2024-03-07T00:06:04Z #6 109.5 There are no tempfile(s) to remove. +2024-03-07T00:06:04Z #6 109.5 There are no logfile(s) to remove. +2024-03-07T00:06:06Z #6 111.2 Collecting figanos +2024-03-07T00:06:06Z #6 111.2 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-03-07T00:06:06Z #6 111.3 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.22.0) +2024-03-07T00:06:06Z #6 111.3 Collecting cairosvg (from figanos) +2024-03-07T00:06:06Z #6 111.3 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-03-07T00:06:06Z #6 111.3 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.14.0) +2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (3.8.1) +2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: numpy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (1.24.4) +2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (2.1.2) +2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (3.11.0) +2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (6.0.1) +2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.13.0) +2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.22.0) +2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (2023.8.0) +2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.47.0) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (23.0.0) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.3.7) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (0.8.6) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: cftime>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.6.3) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (8.1.7) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: dask>=2.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask[array]>=2.6->xclim>=0.38->figanos) (2023.10.1) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (3.0.2) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.0.6) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (0.57.1) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (0.22) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.3.2) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.11.3) +2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (0.14.0) +2024-03-07T00:06:06Z #6 111.7 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos) (2.8.2) +2024-03-07T00:06:06Z #6 111.7 Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos) (2023.3.post1) +2024-03-07T00:06:06Z #6 111.7 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos) (2023.3) +2024-03-07T00:06:06Z #6 111.8 Requirement already satisfied: packaging>=21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xarray->figanos) (23.2) +2024-03-07T00:06:06Z #6 111.9 Collecting cairocffi (from cairosvg->figanos) +2024-03-07T00:06:06Z #6 111.9 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) +2024-03-07T00:06:06Z #6 111.9 Collecting cssselect2 (from cairosvg->figanos) +2024-03-07T00:06:06Z #6 111.9 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-03-07T00:06:06Z #6 111.9 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos) (0.7.1) +2024-03-07T00:06:06Z #6 111.9 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos) (9.4.0) +2024-03-07T00:06:06Z #6 111.9 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos) (1.2.1) +2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos) (2.0.1) +2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos) (2.3.1) +2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos) (3.5.0) +2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (1.2.0) +2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (0.12.1) +2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (4.44.0) +2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (1.4.5) +2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (3.1.1) +2024-03-07T00:06:07Z #6 112.0 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos) (1.9.1) +2024-03-07T00:06:07Z #6 112.2 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos) (3.2.1) +2024-03-07T00:06:07Z #6 112.2 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos) (2.31.5) +2024-03-07T00:06:07Z #6 112.2 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos) (2023.8.12) +2024-03-07T00:06:07Z #6 112.2 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos) (0.3) +2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (3.0.0) +2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (2023.10.0) +2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (1.4.1) +2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (0.12.0) +2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (6.8.0) +2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (23.1.0) +2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: certifi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (2024.2.2) +2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (1.1.1) +2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (0.7.2) +2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (4.0.0) +2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (68.2.2) +2024-03-07T00:06:07Z #6 112.9 Requirement already satisfied: typing-extensions in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pint>=0.10->xclim>=0.38->figanos) (4.8.0) +2024-03-07T00:06:07Z #6 112.9 Requirement already satisfied: six>=1.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from python-dateutil>=2.8.2->pandas->figanos) (1.16.0) +2024-03-07T00:06:07Z #6 113.0 Requirement already satisfied: joblib>=1.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos) (1.3.2) +2024-03-07T00:06:08Z #6 113.0 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos) (3.2.0) +2024-03-07T00:06:08Z #6 113.1 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos) (1.16.0) +2024-03-07T00:06:08Z #6 113.1 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos) (0.5.1) +2024-03-07T00:06:08Z #6 113.2 Requirement already satisfied: llvmlite<0.41,>=0.40.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos) (0.40.1) +2024-03-07T00:06:08Z #6 113.3 Requirement already satisfied: patsy>=0.5.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos) (0.5.3) +2024-03-07T00:06:08Z #6 113.4 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos) (2.21) +2024-03-07T00:06:08Z #6 113.6 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (3.17.0) +2024-03-07T00:06:08Z #6 113.7 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (1.0.0) +2024-03-07T00:06:08Z #6 113.9 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-03-07T00:06:08Z #6 113.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 20.8 MB/s eta 0:00:00 +2024-03-07T00:06:08Z #6 113.9 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-03-07T00:06:08Z #6 113.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 108.5 MB/s eta 0:00:00 +2024-03-07T00:06:08Z #6 113.9 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) +2024-03-07T00:06:08Z #6 113.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 118.8 MB/s eta 0:00:00 +2024-03-07T00:06:08Z #6 113.9 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-03-07T00:06:15Z #6 120.2 Installing collected packages: cssselect2, cairocffi, cairosvg, figanos +2024-03-07T00:06:15Z #6 120.7 Successfully installed cairocffi-1.6.1 cairosvg-2.7.1 cssselect2-0.7.0 figanos-0.3.0 +2024-03-07T00:06:15Z #6 120.7 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +2024-03-07T00:06:16Z #6 DONE 121.7s +2024-03-07T00:06:16Z +2024-03-07T00:06:16Z #7 exporting to image +2024-03-07T00:06:16Z #7 exporting layers +2024-03-07T00:06:17Z #7 exporting layers 0.7s done +2024-03-07T00:06:17Z #7 writing image sha256:4458fd6669bec887c0d34b1ab79404510b5da5679c32c60f8ed0751a5518738e +2024-03-07T00:06:17Z #7 writing image sha256:4458fd6669bec887c0d34b1ab79404510b5da5679c32c60f8ed0751a5518738e done +2024-03-07T00:06:17Z #7 naming to docker.io/pavics/workflow-tests:py310-231107-update240306 done +2024-03-07T00:06:17Z #7 DONE 0.7s +2024-03-07T00:06:17Z Pushing index.docker.io/pavics/workflow-tests:py310-231107-update240306... +2024-03-07T00:06:22Z Done! +2024-03-07T00:06:22Z Build finished diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt new file mode 100644 index 0000000..c0595c1 --- /dev/null +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -0,0 +1,1688 @@ +Started by user Long Vu +Replayed #243 + > git rev-parse --is-inside-work-tree # timeout=10 +Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Fetching origin... +Fetching upstream changes from origin + > git --version # timeout=10 + > git config --get remote.origin.url # timeout=10 + > git fetch --tags --progress -- origin +refs/heads/*:refs/remotes/origin/* # timeout=10 +Seen branch in repository origin/current-production-version +Seen branch in repository origin/devel-new-extensions +Seen branch in repository origin/extended_tests +Seen branch in repository origin/master +Seen branch in repository origin/new-docker-build +Seen branch in repository origin/test-dockerhub-build +Seen branch in repository origin/twitcher_perf_test_notebook +Seen 7 remote branches +Obtained Jenkinsfile from daaa4896c7358eff3a7bd6434617b4af06c89e42 +Running in Durability level: MAX_SURVIVABILITY +[Pipeline] Start of Pipeline +[Pipeline] node +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[Pipeline] { +[Pipeline] stage +[Pipeline] { (Declarative: Checkout SCM) +[Pipeline] checkout +No credentials specified +Fetching changes from the remote Git repository +Fetching without tags + > git rev-parse --is-inside-work-tree # timeout=10 + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git --version # timeout=10 + > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision 4f2c0995711f5b6db82991065a652ea056778a2a (new-docker-build) +Commit message: "release: update to use image pavics/workflow-tests:py310-240306" + > git config core.sparsecheckout # timeout=10 + > git checkout -f 4f2c0995711f5b6db82991065a652ea056778a2a # timeout=10 + > git rev-list --no-walk daaa4896c7358eff3a7bd6434617b4af06c89e42 # timeout=10 +[Pipeline] } +[Pipeline] // stage +[Pipeline] withEnv +[Pipeline] { +[Pipeline] isUnix +[Pipeline] sh ++ docker inspect -f . pavics/workflow-tests:py310-231107-update240306 + +Error: No such object: pavics/workflow-tests:py310-231107-update240306 +[Pipeline] isUnix +[Pipeline] sh ++ docker pull pavics/workflow-tests:py310-231107-update240306 +py310-231107-update240306: Pulling from pavics/workflow-tests +e67fdae35593: Already exists +62aa66a9c405: Already exists +129bc9a4304f: Already exists +0ddacba29fe0: Already exists +dfd48180726c: Already exists +50cb7caec7ab: Already exists +8459c54be374: Already exists +66e47aa8b57b: Already exists +e1051cee58a0: Already exists +59919fbc16db: Already exists +043fc5acd7e1: Already exists +b9ad0629118e: Already exists +b34355233be9: Already exists +43c461133eb1: Pulling fs layer +43c461133eb1: Verifying Checksum +43c461133eb1: Download complete +43c461133eb1: Pull complete +Digest: sha256:e7d640b3e25c12aa63d14aa4133152afd0f30bad264aa8589ccc2654461f6dd8 +Status: Downloaded newer image for pavics/workflow-tests:py310-231107-update240306 +[Pipeline] withDockerContainer +linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-231107-update240306 cat +$ docker top ebc4e7303a12c810c96a8434d5c76564d1e50dadf347acfd670d3521f77f648b -eo pid,comm +[Pipeline] { +[Pipeline] ansiColor +[Pipeline] { +[Pipeline] timestamps +[Pipeline] { +[Pipeline] timeout +[2024-03-07T15:57:43.762Z] Timeout set to expire in 2 hr 0 min +[Pipeline] { +[Pipeline] stage +[Pipeline] { (Run tests) +[Pipeline] script +[Pipeline] { +[Pipeline] withCredentials +[2024-03-07T15:57:43.835Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[Pipeline] { +[Pipeline] sh +[2024-03-07T15:57:44.122Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-07T15:57:44.122Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-07T15:57:44.122Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-07T15:57:44.122Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-07T15:57:44.122Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-07T15:57:44.122Z] FINCH_BRANCH has been set to 'master' +[2024-03-07T15:57:44.122Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-07T15:57:44.122Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-07T15:57:44.122Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-07T15:57:44.122Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-07T15:57:44.122Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-07T15:57:44.122Z] RAVEN_BRANCH has been set to 'main' +[2024-03-07T15:57:44.122Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-07T15:57:44.122Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-07T15:57:44.122Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-07T15:57:44.122Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-07T15:57:44.122Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-07T15:57:44.122Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-07T15:57:44.122Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-07T15:57:44.122Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-07T15:57:44.122Z] + git clean -fdx +[2024-03-07T15:57:44.383Z] Removing .pytest_cache/ +[2024-03-07T15:57:44.383Z] Removing PAVICS-landing-master/ +[2024-03-07T15:57:44.383Z] Removing RavenPy-master/ +[2024-03-07T15:57:44.383Z] Removing __pycache__/ +[2024-03-07T15:57:44.383Z] Removing buildout/ +[2024-03-07T15:57:44.383Z] Removing esgf-compute-api-devel/ +[2024-03-07T15:57:44.383Z] Removing finch-master/ +[2024-03-07T15:57:44.383Z] Removing pavics-sdi-master/ +[2024-03-07T15:57:44.383Z] Removing raven-main/ +[2024-03-07T15:57:44.383Z] + ./downloadrepos +[2024-03-07T15:57:44.383Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-07T15:57:44.383Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-07T15:57:44.383Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-07T15:57:44.383Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-07T15:57:44.383Z] FINCH_BRANCH has been set to 'master' +[2024-03-07T15:57:44.383Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-07T15:57:44.383Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-07T15:57:44.383Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-07T15:57:44.383Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-07T15:57:44.383Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-07T15:57:44.383Z] RAVEN_BRANCH has been set to 'main' +[2024-03-07T15:57:44.383Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-07T15:57:44.383Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-07T15:57:44.383Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-07T15:57:44.383Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-07T15:57:44.383Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-07T15:57:44.383Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-07T15:57:44.383Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-07T15:57:44.383Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-07T15:57:44.643Z] + rm -rf pavics-sdi-* +[2024-03-07T15:57:44.643Z] + ls +[2024-03-07T15:57:44.643Z] + grep pavics-sdi +[2024-03-07T15:57:44.643Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-03-07T15:57:44.643Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-07T15:57:44.643Z] + shift +[2024-03-07T15:57:44.643Z] + branch=master +[2024-03-07T15:57:44.643Z] + shift +[2024-03-07T15:57:44.643Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-03-07T15:57:44.643Z] + tar xz +[2024-03-07T15:57:48.803Z] + grep pavics-sdi +[2024-03-07T15:57:48.803Z] + ls +[2024-03-07T15:57:48.803Z] pavics-sdi-master +[2024-03-07T15:57:48.803Z] + set +x +[2024-03-07T15:57:48.803Z] + rm -rf finch-* +[2024-03-07T15:57:48.803Z] + grep finch +[2024-03-07T15:57:48.803Z] + ls +[2024-03-07T15:57:48.803Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-07T15:57:48.803Z] + github_repo=https://github.com/bird-house/finch +[2024-03-07T15:57:48.803Z] + shift +[2024-03-07T15:57:48.803Z] + branch=master +[2024-03-07T15:57:48.803Z] + shift +[2024-03-07T15:57:48.803Z] + tar xz +[2024-03-07T15:57:48.803Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-03-07T15:57:50.172Z] + ls +[2024-03-07T15:57:50.172Z] + grep finch +[2024-03-07T15:57:50.172Z] finch-master +[2024-03-07T15:57:50.172Z] + set +x +[2024-03-07T15:57:50.172Z] + rm -rf PAVICS-landing-* +[2024-03-07T15:57:50.172Z] + ls +[2024-03-07T15:57:50.172Z] + grep PAVICS-landing +[2024-03-07T15:57:50.172Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-03-07T15:57:50.172Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-07T15:57:50.172Z] + shift +[2024-03-07T15:57:50.172Z] + branch=master +[2024-03-07T15:57:50.172Z] + shift +[2024-03-07T15:57:50.172Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-03-07T15:57:50.172Z] + tar xz +[2024-03-07T15:58:00.120Z] + ls +[2024-03-07T15:58:00.120Z] + grep PAVICS-landing +[2024-03-07T15:58:00.120Z] PAVICS-landing-master +[2024-03-07T15:58:00.120Z] + set +x +[2024-03-07T15:58:00.120Z] + rm -rf raven-* +[2024-03-07T15:58:00.120Z] + ls +[2024-03-07T15:58:00.120Z] + grep raven +[2024-03-07T15:58:00.120Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-07T15:58:00.120Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-07T15:58:00.120Z] + shift +[2024-03-07T15:58:00.120Z] + branch=main +[2024-03-07T15:58:00.120Z] + shift +[2024-03-07T15:58:00.120Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-07T15:58:00.120Z] + tar xz +[2024-03-07T15:58:01.493Z] + ls +[2024-03-07T15:58:01.493Z] + grep raven +[2024-03-07T15:58:01.493Z] raven-main +[2024-03-07T15:58:01.493Z] + set +x +[2024-03-07T15:58:01.493Z] + rm -rf RavenPy-* +[2024-03-07T15:58:01.493Z] + ls +[2024-03-07T15:58:01.493Z] + grep RavenPy +[2024-03-07T15:58:01.493Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-07T15:58:01.493Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-07T15:58:01.493Z] + shift +[2024-03-07T15:58:01.493Z] + branch=master +[2024-03-07T15:58:01.493Z] + shift +[2024-03-07T15:58:01.493Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-07T15:58:01.493Z] + tar xz +[2024-03-07T15:58:03.387Z] + + ls +[2024-03-07T15:58:03.387Z] grep RavenPy +[2024-03-07T15:58:03.387Z] RavenPy-master +[2024-03-07T15:58:03.387Z] + set +x +[2024-03-07T15:58:03.387Z] + rm -rf esgf-compute-api-* +[2024-03-07T15:58:03.387Z] + ls +[2024-03-07T15:58:03.387Z] + grep esgf-compute-api +[2024-03-07T15:58:03.387Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-07T15:58:03.387Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-07T15:58:03.387Z] + shift +[2024-03-07T15:58:03.387Z] + branch=devel +[2024-03-07T15:58:03.387Z] + shift +[2024-03-07T15:58:03.387Z] + + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gztar +[2024-03-07T15:58:03.387Z] xz +[2024-03-07T15:58:04.320Z] + grep esgf-compute-api+ +[2024-03-07T15:58:04.320Z] ls +[2024-03-07T15:58:04.320Z] esgf-compute-api-devel +[2024-03-07T15:58:04.320Z] + set +x +[2024-03-07T15:58:04.320Z] + echo master +[2024-03-07T15:58:04.320Z] + sed s@/@-@g +[2024-03-07T15:58:04.320Z] + PAVICS_SDI_BRANCH=master +[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g +[2024-03-07T15:58:04.320Z] + echo Ouranosinc/pavics-sdi +[2024-03-07T15:58:04.320Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-07T15:58:04.320Z] + echo master +[2024-03-07T15:58:04.320Z] + sed s@/@-@g +[2024-03-07T15:58:04.320Z] + FINCH_BRANCH=master +[2024-03-07T15:58:04.320Z] + echo bird-house/finch +[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g +[2024-03-07T15:58:04.320Z] + FINCH_REPO_NAME=finch +[2024-03-07T15:58:04.320Z] + echo master +[2024-03-07T15:58:04.320Z] + sed s@/@-@g +[2024-03-07T15:58:04.320Z] + PAVICS_LANDING_BRANCH=master +[2024-03-07T15:58:04.320Z] + echo Ouranosinc/PAVICS-landing +[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g +[2024-03-07T15:58:04.320Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-07T15:58:04.320Z] + echo main +[2024-03-07T15:58:04.320Z] + sed s@/@-@g +[2024-03-07T15:58:04.320Z] + RAVEN_BRANCH=main +[2024-03-07T15:58:04.320Z] + echo Ouranosinc/raven +[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g +[2024-03-07T15:58:04.320Z] + RAVEN_REPO_NAME=raven +[2024-03-07T15:58:04.320Z] + echo master +[2024-03-07T15:58:04.320Z] + sed s@/@-@g +[2024-03-07T15:58:04.320Z] + RAVENPY_BRANCH=master +[2024-03-07T15:58:04.320Z] + sed+ s@^.*/@@g +[2024-03-07T15:58:04.320Z] echo CSHS-CWRA/RavenPy +[2024-03-07T15:58:04.320Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-07T15:58:04.320Z] + sed s@/@-@g +[2024-03-07T15:58:04.320Z] + echo devel +[2024-03-07T15:58:04.320Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-07T15:58:04.320Z] + echo ESGF/esgf-compute-api +[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g +[2024-03-07T15:58:04.320Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-07T15:58:04.320Z] + sed+ s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T15:58:04.320Z] echo pavics-sdi-master +[2024-03-07T15:58:04.320Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-03-07T15:58:04.320Z] + + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T15:58:04.320Z] echo finch-master +[2024-03-07T15:58:04.320Z] + FINCH_DIR=finch-master +[2024-03-07T15:58:04.320Z] + echo PAVICS-landing-master +[2024-03-07T15:58:04.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T15:58:04.320Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-03-07T15:58:04.320Z] + echo raven-main +[2024-03-07T15:58:04.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T15:58:04.320Z] + RAVEN_DIR=raven-main +[2024-03-07T15:58:04.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T15:58:04.320Z] + echo RavenPy-master +[2024-03-07T15:58:04.320Z] + RAVENPY_DIR=RavenPy-master +[2024-03-07T15:58:04.320Z] + echo esgf-compute-api-devel +[2024-03-07T15:58:04.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T15:58:04.320Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-07T15:58:04.320Z] + echo true +[2024-03-07T15:58:04.883Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.444Z] + VERIFY_SSL=true +[2024-03-07T15:58:05.444Z] + [ xtrue = xfalse ] +[2024-03-07T15:58:05.444Z] + rm -v finch-master/setup.cfg +[2024-03-07T15:58:05.444Z] removed 'finch-master/setup.cfg' +[2024-03-07T15:58:05.444Z] + rm -v raven-main/setup.cfg +[2024-03-07T15:58:05.444Z] removed 'raven-main/setup.cfg' +[2024-03-07T15:58:05.444Z] + rm -v raven-main/pyproject.toml +[2024-03-07T15:58:05.444Z] removed 'raven-main/pyproject.toml' +[2024-03-07T15:58:05.444Z] + rm -v RavenPy-master/setup.cfg +[2024-03-07T15:58:05.444Z] removed 'RavenPy-master/setup.cfg' +[2024-03-07T15:58:05.444Z] + rm -v RavenPy-master/tox.ini +[2024-03-07T15:58:05.444Z] removed 'RavenPy-master/tox.ini' +[2024-03-07T15:58:05.444Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-07T15:58:05.444Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-07T15:58:05.444Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-07T15:58:05.444Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-07T15:58:05.444Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-07T15:58:05.444Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-07T15:58:05.444Z] + echo false +[2024-03-07T15:58:05.444Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.444Z] + TEST_MAGPIE_AUTH=false +[2024-03-07T15:58:05.444Z] + echo true +[2024-03-07T15:58:05.444Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.444Z] + TEST_PAVICS_SDI_REPO=true +[2024-03-07T15:58:05.444Z] + echo false +[2024-03-07T15:58:05.444Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.444Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-07T15:58:05.444Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.444Z] + echo true +[2024-03-07T15:58:05.444Z] + TEST_FINCH_REPO=true +[2024-03-07T15:58:05.444Z] + echo true +[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.445Z] + TEST_PAVICS_LANDING_REPO=true +[2024-03-07T15:58:05.445Z] + echo false +[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.445Z] + TEST_RAVEN_REPO=false +[2024-03-07T15:58:05.445Z] + echo false +[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.445Z] + TEST_RAVENPY_REPO=false +[2024-03-07T15:58:05.445Z] + echo false +[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.445Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-07T15:58:05.445Z] + echo true +[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] +[2024-03-07T15:58:05.445Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-03-07T15:58:05.445Z] + NOTEBOOKS_TO_TEST= +[2024-03-07T15:58:05.445Z] + [ xfalse = xtrue ] +[2024-03-07T15:58:05.445Z] + [ xtrue = xtrue ] +[2024-03-07T15:58:05.445Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb +[2024-03-07T15:58:05.445Z] + [ xfalse = xtrue ] +[2024-03-07T15:58:05.445Z] + [ xtrue = xtrue ] +[2024-03-07T15:58:05.445Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-03-07T15:58:05.445Z] + [ xtrue = xtrue ] +[2024-03-07T15:58:05.445Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb +[2024-03-07T15:58:05.445Z] + SETUP_SCRIPT=PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T15:58:05.445Z] + [ -x PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-03-07T15:58:05.445Z] + PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T15:58:05.445Z] + realpath PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T15:58:05.445Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T15:58:05.445Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T15:58:05.445Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators +[2024-03-07T15:58:05.445Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-07T15:58:05.445Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-07T15:58:05.445Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-03-07T15:58:05.445Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/output.zip +[2024-03-07T15:58:05.445Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.445Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.959Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.959Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.959Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:05.959Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T15:58:06.479Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-03-07T15:58:06.479Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-03-07T15:58:06.479Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-03-07T15:58:06.479Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/tutorial_data' +[2024-03-07T15:58:06.479Z] + [ xfalse = xtrue ] +[2024-03-07T15:58:06.479Z] + [ xfalse = xtrue ] +[2024-03-07T15:58:06.479Z] + [ xfalse = xtrue ] +[2024-03-07T15:58:06.479Z] + [ xtrue = xtrue ] +[2024-03-07T15:58:06.479Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-07T15:58:06.479Z] + ./runtest pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-07T15:58:06.479Z] + [ -n ] +[2024-03-07T15:58:06.479Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-07T15:58:06.479Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-07T15:58:06.479Z] Will run notebooks against pavics.ouranos.ca +[2024-03-07T15:58:06.479Z] + [ -z ] +[2024-03-07T15:58:06.479Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-03-07T15:58:06.740Z] + git diff +[2024-03-07T15:58:06.740Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-07T15:58:06.741Z] + py.test --nbval pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-03-07T15:58:33.363Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-07T15:58:33.363Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-07T15:58:33.363Z] ============================= test session starts ============================== +[2024-03-07T15:58:33.363Z] platform linux -- Python 3.10.13, pytest-7.4.3, pluggy-1.3.0 +[2024-03-07T15:58:33.364Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-03-07T15:58:33.364Z] plugins: anyio-4.0.0, dash-2.14.1, nbval-0.10.0, tornasync-0.6.0.post2, xdist-3.3.1 +[2024-03-07T15:58:33.364Z] collected 215 items +[2024-03-07T15:58:33.364Z] +[2024-03-07T15:59:09.434Z] pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb ....... [ 3%] +[2024-03-07T15:59:15.907Z] pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb ...... [ 6%] +[2024-03-07T15:59:26.652Z] pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb ........ [ 9%] +[2024-03-07T16:02:14.703Z] pavics-sdi-master/docs/source/notebooks/climex.ipynb ........F... [ 15%] +[2024-03-07T16:02:14.703Z] pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 15%] +[2024-03-07T16:02:21.311Z] ............... [ 22%] +[2024-03-07T16:02:29.393Z] pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb ..... [ 25%] +[2024-03-07T16:04:25.407Z] pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb ...... [ 27%] +[2024-03-07T16:04:38.268Z] pavics-sdi-master/docs/source/notebooks/forecasts.ipynb ..F... [ 30%] +[2024-03-07T16:04:42.442Z] pavics-sdi-master/docs/source/notebooks/opendap.ipynb ....... [ 33%] +[2024-03-07T16:04:47.002Z] pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb ..... [ 36%] +[2024-03-07T16:05:24.712Z] pavics-sdi-master/docs/source/notebooks/regridding.ipynb ....F..F....... [ 43%] +[2024-03-07T16:06:27.811Z] .....F......F [ 49%] +[2024-03-07T16:06:30.402Z] pavics-sdi-master/docs/source/notebooks/rendering.ipynb .... [ 51%] +[2024-03-07T16:06:33.494Z] pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb ...FFF.F [ 54%] +[2024-03-07T16:06:40.528Z] FF....FFFF.FFFFFF [ 62%] +[2024-03-07T16:06:47.563Z] pavics-sdi-master/docs/source/notebooks/subsetting.ipynb ...... [ 65%] +[2024-03-07T16:06:57.237Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 70%] +[2024-03-07T16:07:05.184Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...F.. [ 73%] +[2024-03-07T16:07:06.119Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 73%] +[2024-03-07T16:07:09.188Z] ...... [ 76%] +[2024-03-07T16:07:15.786Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 77%] +[2024-03-07T16:07:26.208Z] ............. [ 83%] +[2024-03-07T16:07:41.108Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb F [ 83%] +[2024-03-07T16:07:57.384Z] ....s. [ 86%] +[2024-03-07T16:08:05.469Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 86%] +[2024-03-07T16:08:15.514Z] .F. [ 88%] +[2024-03-07T16:08:30.385Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 88%] +[2024-03-07T16:08:55.580Z] .F.... [ 91%] +[2024-03-07T16:08:57.974Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-03-07T16:10:59.488Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] =================================== FAILURES =================================== +[2024-03-07T16:10:59.488Z] _________ pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 8 _________ +[2024-03-07T16:10:59.488Z] Notebook cell execution failed +[2024-03-07T16:10:59.488Z] Cell 8: Cell outputs differ +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] Input: +[2024-03-07T16:10:59.488Z] # Subset over the Montreal gridpoint +[2024-03-07T16:10:59.488Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) +[2024-03-07T16:10:59.488Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) +[2024-03-07T16:10:59.488Z] print("Input dataset for Montreal :") +[2024-03-07T16:10:59.488Z] display(pt) +[2024-03-07T16:10:59.488Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") +[2024-03-07T16:10:59.488Z] print("Maximim 1-day precipitation `lazy` output ..") +[2024-03-07T16:10:59.488Z] out +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] Traceback: +[2024-03-07T16:10:59.488Z]  mismatch 'text/plain' +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] assert reference_output == test_output failed: +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] '>>>>>>>>>>> +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] _______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 4 _______ +[2024-03-07T16:10:59.488Z] Notebook cell execution failed +[2024-03-07T16:10:59.488Z] Cell 4: Cell outputs differ +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] Input: +[2024-03-07T16:10:59.488Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) +[2024-03-07T16:10:59.488Z] plt.title("Target regular grid"); +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] Traceback: +[2024-03-07T16:10:59.488Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-07T16:10:59.488Z]
+[2024-03-07T16:10:59.488Z] ============ disagrees with newly computed (test) output: +[2024-03-07T16:10:59.488Z] Text(0.5, 1.0, 'Target regular grid') +[2024-03-07T16:10:59.488Z]
+[2024-03-07T16:10:59.488Z] >>>>>>>>>>>> +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] _______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 7 _______ +[2024-03-07T16:10:59.488Z] Notebook cell execution failed +[2024-03-07T16:10:59.488Z] Cell 7: Cell outputs differ +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.488Z] Input: +[2024-03-07T16:10:59.488Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. +[2024-03-07T16:10:59.488Z] warnings.filterwarnings("ignore", category=FutureWarning) +[2024-03-07T16:10:59.488Z] +[2024-03-07T16:10:59.489Z] # Apply the regridding weights to the input sea ice concentration data +[2024-03-07T16:10:59.489Z] sic_bil = reg_bil(ds_in.siconc) +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] # Plot the results +[2024-03-07T16:10:59.489Z] sic_bil.isel(time=0).plot(cmap=cmap) +[2024-03-07T16:10:59.489Z] plt.title("Regridded sic data (Jan 2020)"); +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Traceback: +[2024-03-07T16:10:59.489Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-07T16:10:59.489Z]
+[2024-03-07T16:10:59.489Z] ============ disagrees with newly computed (test) output: +[2024-03-07T16:10:59.489Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') +[2024-03-07T16:10:59.489Z]
+[2024-03-07T16:10:59.489Z] >>>>>>>>>>>> +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] ______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 20 _______ +[2024-03-07T16:10:59.489Z] Notebook cell execution failed +[2024-03-07T16:10:59.489Z] Cell 20: Cell outputs differ +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Input: +[2024-03-07T16:10:59.489Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") +[2024-03-07T16:10:59.489Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] fig, ax = plt.subplots(figsize=(6, 4)) +[2024-03-07T16:10:59.489Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) +[2024-03-07T16:10:59.489Z] ax.set_xlim(210, 320) +[2024-03-07T16:10:59.489Z] ax.set_ylim(38, 86) +[2024-03-07T16:10:59.489Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") +[2024-03-07T16:10:59.489Z] ax.annotate( +[2024-03-07T16:10:59.489Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", +[2024-03-07T16:10:59.489Z] (280, 40), +[2024-03-07T16:10:59.489Z] xytext=(1.3, 0.3), +[2024-03-07T16:10:59.489Z] xycoords="data", +[2024-03-07T16:10:59.489Z] textcoords="axes fraction", +[2024-03-07T16:10:59.489Z] fontsize="x-large", +[2024-03-07T16:10:59.489Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), +[2024-03-07T16:10:59.489Z] ); +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Traceback: +[2024-03-07T16:10:59.489Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-07T16:10:59.489Z]
+[2024-03-07T16:10:59.489Z] ============ disagrees with newly computed (test) output: +[2024-03-07T16:10:59.489Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') +[2024-03-07T16:10:59.489Z]
+[2024-03-07T16:10:59.489Z] >>>>>>>>>>>> +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] ______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 27 _______ +[2024-03-07T16:10:59.489Z] Notebook cell execution failed +[2024-03-07T16:10:59.489Z] Cell 27: Cell outputs differ +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Input: +[2024-03-07T16:10:59.489Z] # Now we can plot easily the results as a choropleth map! +[2024-03-07T16:10:59.489Z] ax = shapes_data.plot( +[2024-03-07T16:10:59.489Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} +[2024-03-07T16:10:59.489Z] ) +[2024-03-07T16:10:59.489Z] ax.set_ylabel("Latitude") +[2024-03-07T16:10:59.489Z] ax.set_xlabel("Longitude"); +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Traceback: +[2024-03-07T16:10:59.489Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-07T16:10:59.489Z]
+[2024-03-07T16:10:59.489Z] ============ disagrees with newly computed (test) output: +[2024-03-07T16:10:59.489Z] Text(0.5, 91.20243008191655, 'Longitude') +[2024-03-07T16:10:59.489Z]
+[2024-03-07T16:10:59.489Z] >>>>>>>>>>>> +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 3 ____ +[2024-03-07T16:10:59.489Z] Notebook cell execution failed +[2024-03-07T16:10:59.489Z] Cell 3: Cell execution caused an exception +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Input: +[2024-03-07T16:10:59.489Z] leaflet_map = ipyleaflet.Map( +[2024-03-07T16:10:59.489Z] center=canada_center_lat_lon, +[2024-03-07T16:10:59.489Z] basemap=ipyleaflet.basemaps.Stamen.Terrain, +[2024-03-07T16:10:59.489Z] zoom=4, +[2024-03-07T16:10:59.489Z] ) +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] initial_marker_location = canada_center_lat_lon +[2024-03-07T16:10:59.489Z] marker = ipyleaflet.Marker(location=initial_marker_location, draggable=True) +[2024-03-07T16:10:59.489Z] leaflet_map.add_layer(marker) +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] leaflet_map +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Traceback: +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.489Z] KeyError Traceback (most recent call last) +[2024-03-07T16:10:59.489Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:44, in Bunch.__getattr__(self, key) +[2024-03-07T16:10:59.489Z]  43 try: +[2024-03-07T16:10:59.489Z] ---> 44 return self.__getitem__(key) +[2024-03-07T16:10:59.489Z]  45 except KeyError as err: +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] KeyError: 'Stamen' +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] The above exception was the direct cause of the following exception: +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:10:59.489Z] Cell In[1], line 3 +[2024-03-07T16:10:59.489Z]  1 leaflet_map = ipyleaflet.Map( +[2024-03-07T16:10:59.489Z]  2 center=canada_center_lat_lon, +[2024-03-07T16:10:59.489Z] ----> 3 basemap=ipyleaflet.basemaps.Stamen.Terrain, +[2024-03-07T16:10:59.489Z]  4 zoom=4, +[2024-03-07T16:10:59.489Z]  5 ) +[2024-03-07T16:10:59.489Z]  7 initial_marker_location = canada_center_lat_lon +[2024-03-07T16:10:59.489Z]  8 marker = ipyleaflet.Marker(location=initial_marker_location, draggable=True) +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:46, in Bunch.__getattr__(self, key) +[2024-03-07T16:10:59.489Z]  44 return self.__getitem__(key) +[2024-03-07T16:10:59.489Z]  45 except KeyError as err: +[2024-03-07T16:10:59.489Z] ---> 46 raise AttributeError(key) from err +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] AttributeError: Stamen +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 4 ____ +[2024-03-07T16:10:59.489Z] Notebook cell execution failed +[2024-03-07T16:10:59.489Z] Cell 4: Cell execution caused an exception +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Input: +[2024-03-07T16:10:59.489Z] marker.location = (45.55, -72.44) +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Traceback: +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.489Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.489Z] Cell In[1], line 1 +[2024-03-07T16:10:59.489Z] ----> 1 marker.location = (45.55, -72.44) +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] NameError: name 'marker' is not defined +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 5 ____ +[2024-03-07T16:10:59.489Z] Notebook cell execution failed +[2024-03-07T16:10:59.489Z] Cell 5: Cell execution caused an exception +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Input: +[2024-03-07T16:10:59.489Z] print(initial_marker_location) +[2024-03-07T16:10:59.489Z] print(marker.location) +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Traceback: +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.489Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.489Z] Cell In[1], line 1 +[2024-03-07T16:10:59.489Z] ----> 1 print(initial_marker_location) +[2024-03-07T16:10:59.489Z]  2 print(marker.location) +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] NameError: name 'initial_marker_location' is not defined +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 7 ____ +[2024-03-07T16:10:59.489Z] Notebook cell execution failed +[2024-03-07T16:10:59.489Z] Cell 7: Cell execution caused an exception +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Input: +[2024-03-07T16:10:59.489Z] # NBVAL_IGNORE_OUTPUT +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] rectangle = get_rectangle() +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.489Z] Traceback: +[2024-03-07T16:10:59.489Z] +[2024-03-07T16:10:59.490Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.490Z] KeyError Traceback (most recent call last) +[2024-03-07T16:10:59.490Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:44, in Bunch.__getattr__(self, key) +[2024-03-07T16:10:59.490Z]  43 try: +[2024-03-07T16:10:59.490Z] ---> 44 return self.__getitem__(key) +[2024-03-07T16:10:59.490Z]  45 except KeyError as err: +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] KeyError: 'Stamen' +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] The above exception was the direct cause of the following exception: +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:10:59.490Z] Cell In[1], line 4 +[2024-03-07T16:10:59.490Z]  1 # NBVAL_IGNORE_OUTPUT +[2024-03-07T16:10:59.490Z] ----> 4 rectangle = get_rectangle() +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] Cell In[1], line 10, in get_rectangle() +[2024-03-07T16:10:59.490Z]  6 def get_rectangle(): +[2024-03-07T16:10:59.490Z]  7 canada_center = (52.4292, -93.2959) +[2024-03-07T16:10:59.490Z]  8 m = ipyleaflet.Map( +[2024-03-07T16:10:59.490Z]  9 center=canada_center, +[2024-03-07T16:10:59.490Z] ---> 10 basemap=ipyleaflet.basemaps.Stamen.Terrain, +[2024-03-07T16:10:59.490Z]  11 zoom=4, +[2024-03-07T16:10:59.490Z]  12 ) +[2024-03-07T16:10:59.490Z]  14 # Create a new draw control +[2024-03-07T16:10:59.490Z]  15 draw_control = ipyleaflet.DrawControl() +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:46, in Bunch.__getattr__(self, key) +[2024-03-07T16:10:59.490Z]  44 return self.__getitem__(key) +[2024-03-07T16:10:59.490Z]  45 except KeyError as err: +[2024-03-07T16:10:59.490Z] ---> 46 raise AttributeError(key) from err +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] AttributeError: Stamen +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 8 ____ +[2024-03-07T16:10:59.490Z] Notebook cell execution failed +[2024-03-07T16:10:59.490Z] Cell 8: Cell execution caused an exception +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] Input: +[2024-03-07T16:10:59.490Z] # GeoJSON with custom style properties +[2024-03-07T16:10:59.490Z] if not len(rectangle): +[2024-03-07T16:10:59.490Z] # Use the default region of Greater Montreal Area +[2024-03-07T16:10:59.490Z] rectangle = { +[2024-03-07T16:10:59.490Z] "type": "Feature", +[2024-03-07T16:10:59.490Z] "properties": { +[2024-03-07T16:10:59.490Z] "style": { +[2024-03-07T16:10:59.490Z] "stroke": True, +[2024-03-07T16:10:59.490Z] "color": "#4ae", +[2024-03-07T16:10:59.490Z] "weight": 4, +[2024-03-07T16:10:59.490Z] "opacity": 0.5, +[2024-03-07T16:10:59.490Z] "fill": True, +[2024-03-07T16:10:59.490Z] "fillColor": "#4ae", +[2024-03-07T16:10:59.490Z] "fillOpacity": 0.3, +[2024-03-07T16:10:59.490Z] "clickable": True, +[2024-03-07T16:10:59.490Z] } +[2024-03-07T16:10:59.490Z] }, +[2024-03-07T16:10:59.490Z] "geometry": { +[2024-03-07T16:10:59.490Z] "type": "Polygon", +[2024-03-07T16:10:59.490Z] "coordinates": [ +[2024-03-07T16:10:59.490Z] [ +[2024-03-07T16:10:59.490Z] [-74.511948, 45.202296], +[2024-03-07T16:10:59.490Z] [-74.511948, 45.934852], +[2024-03-07T16:10:59.490Z] [-72.978537, 45.934852], +[2024-03-07T16:10:59.490Z] [-72.978537, 45.202296], +[2024-03-07T16:10:59.490Z] [-74.511948, 45.202296], +[2024-03-07T16:10:59.490Z] ] +[2024-03-07T16:10:59.490Z] ], +[2024-03-07T16:10:59.490Z] }, +[2024-03-07T16:10:59.490Z] } +[2024-03-07T16:10:59.490Z] rectangle +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] Traceback: +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.490Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.490Z] Cell In[1], line 2 +[2024-03-07T16:10:59.490Z]  1 # GeoJSON with custom style properties +[2024-03-07T16:10:59.490Z] ----> 2 if not len(rectangle): +[2024-03-07T16:10:59.490Z]  3 # Use the default region of Greater Montreal Area +[2024-03-07T16:10:59.490Z]  4 rectangle = { +[2024-03-07T16:10:59.490Z]  5 "type": "Feature", +[2024-03-07T16:10:59.490Z]  6 "properties": { +[2024-03-07T16:10:59.490Z]  (...) +[2024-03-07T16:10:59.490Z]  29 }, +[2024-03-07T16:10:59.490Z]  30 } +[2024-03-07T16:10:59.490Z]  31 rectangle +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] NameError: name 'rectangle' is not defined +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 9 ____ +[2024-03-07T16:10:59.490Z] Notebook cell execution failed +[2024-03-07T16:10:59.490Z] Cell 9: Cell execution caused an exception +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] Input: +[2024-03-07T16:10:59.490Z] import geopandas as gpd +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] rect = gpd.GeoDataFrame.from_features([rectangle]) +[2024-03-07T16:10:59.490Z] bounds = rect.bounds +[2024-03-07T16:10:59.490Z] bounds +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] Traceback: +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.490Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.490Z] Cell In[1], line 3 +[2024-03-07T16:10:59.490Z]  1 import geopandas as gpd +[2024-03-07T16:10:59.490Z] ----> 3 rect = gpd.GeoDataFrame.from_features([rectangle]) +[2024-03-07T16:10:59.490Z]  4 bounds = rect.bounds +[2024-03-07T16:10:59.490Z]  5 bounds +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] NameError: name 'rectangle' is not defined +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 14 ___ +[2024-03-07T16:10:59.490Z] Notebook cell execution failed +[2024-03-07T16:10:59.490Z] Cell 14: Cell execution caused an exception +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] Input: +[2024-03-07T16:10:59.490Z] lon0 = float(bounds.minx) +[2024-03-07T16:10:59.490Z] lon1 = float(bounds.maxx) +[2024-03-07T16:10:59.490Z] lat0 = float(bounds.miny) +[2024-03-07T16:10:59.490Z] lat1 = float(bounds.maxy) +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] result_tasmin = finch.subset_bbox( +[2024-03-07T16:10:59.490Z] resource=data, +[2024-03-07T16:10:59.490Z] variable="tasmin", +[2024-03-07T16:10:59.490Z] lon0=lon0, +[2024-03-07T16:10:59.490Z] lon1=lon1, +[2024-03-07T16:10:59.490Z] lat0=lat0, +[2024-03-07T16:10:59.490Z] lat1=lat1, +[2024-03-07T16:10:59.490Z] start_date="1958-01-01", +[2024-03-07T16:10:59.490Z] end_date="1958-12-31", +[2024-03-07T16:10:59.490Z] ) +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] Traceback: +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.490Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.490Z] Cell In[1], line 1 +[2024-03-07T16:10:59.490Z] ----> 1 lon0 = float(bounds.minx) +[2024-03-07T16:10:59.490Z]  2 lon1 = float(bounds.maxx) +[2024-03-07T16:10:59.490Z]  3 lat0 = float(bounds.miny) +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] NameError: name 'bounds' is not defined +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 15 ___ +[2024-03-07T16:10:59.490Z] Notebook cell execution failed +[2024-03-07T16:10:59.490Z] Cell 15: Cell execution caused an exception +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] Input: +[2024-03-07T16:10:59.490Z] # NBVAL_IGNORE_OUTPUT +[2024-03-07T16:10:59.490Z] +[2024-03-07T16:10:59.490Z] # wait for process to complete before running this cell (the process is async) +[2024-03-07T16:10:59.490Z] tasmin_subset = result_tasmin.get().output +[2024-03-07T16:10:59.490Z] tasmin_subset +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Traceback: +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.491Z] Cell In[1], line 4 +[2024-03-07T16:10:59.491Z]  1 # NBVAL_IGNORE_OUTPUT +[2024-03-07T16:10:59.491Z]  2 +[2024-03-07T16:10:59.491Z]  3 # wait for process to complete before running this cell (the process is async) +[2024-03-07T16:10:59.491Z] ----> 4 tasmin_subset = result_tasmin.get().output +[2024-03-07T16:10:59.491Z]  5 tasmin_subset +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] NameError: name 'result_tasmin' is not defined +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 16 ___ +[2024-03-07T16:10:59.491Z] Notebook cell execution failed +[2024-03-07T16:10:59.491Z] Cell 16: Cell execution caused an exception +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Input: +[2024-03-07T16:10:59.491Z] result_tasmax = finch.subset_bbox( +[2024-03-07T16:10:59.491Z] resource=data, +[2024-03-07T16:10:59.491Z] variable="tasmax", +[2024-03-07T16:10:59.491Z] lon0=lon0, +[2024-03-07T16:10:59.491Z] lon1=lon1, +[2024-03-07T16:10:59.491Z] lat0=lat0, +[2024-03-07T16:10:59.491Z] lat1=lat1, +[2024-03-07T16:10:59.491Z] start_date="1958-01-01", +[2024-03-07T16:10:59.491Z] end_date="1958-12-31", +[2024-03-07T16:10:59.491Z] ) +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Traceback: +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.491Z] Cell In[1], line 4 +[2024-03-07T16:10:59.491Z]  1 result_tasmax = finch.subset_bbox( +[2024-03-07T16:10:59.491Z]  2 resource=data, +[2024-03-07T16:10:59.491Z]  3 variable="tasmax", +[2024-03-07T16:10:59.491Z] ----> 4 lon0=lon0, +[2024-03-07T16:10:59.491Z]  5 lon1=lon1, +[2024-03-07T16:10:59.491Z]  6 lat0=lat0, +[2024-03-07T16:10:59.491Z]  7 lat1=lat1, +[2024-03-07T16:10:59.491Z]  8 start_date="1958-01-01", +[2024-03-07T16:10:59.491Z]  9 end_date="1958-12-31", +[2024-03-07T16:10:59.491Z]  10 ) +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] NameError: name 'lon0' is not defined +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 17 ___ +[2024-03-07T16:10:59.491Z] Notebook cell execution failed +[2024-03-07T16:10:59.491Z] Cell 17: Cell execution caused an exception +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Input: +[2024-03-07T16:10:59.491Z] # NBVAL_IGNORE_OUTPUT +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] # wait for process to complete before running this cell (the process is async) +[2024-03-07T16:10:59.491Z] tasmax_subset = result_tasmax.get().output +[2024-03-07T16:10:59.491Z] tasmax_subset +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Traceback: +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.491Z] Cell In[1], line 4 +[2024-03-07T16:10:59.491Z]  1 # NBVAL_IGNORE_OUTPUT +[2024-03-07T16:10:59.491Z]  2 +[2024-03-07T16:10:59.491Z]  3 # wait for process to complete before running this cell (the process is async) +[2024-03-07T16:10:59.491Z] ----> 4 tasmax_subset = result_tasmax.get().output +[2024-03-07T16:10:59.491Z]  5 tasmax_subset +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] NameError: name 'result_tasmax' is not defined +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 19 ___ +[2024-03-07T16:10:59.491Z] Notebook cell execution failed +[2024-03-07T16:10:59.491Z] Cell 19: Cell execution caused an exception +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Input: +[2024-03-07T16:10:59.491Z] result = finch.heat_wave_frequency( +[2024-03-07T16:10:59.491Z] tasmin=tasmin_subset, +[2024-03-07T16:10:59.491Z] tasmax=tasmax_subset, +[2024-03-07T16:10:59.491Z] thresh_tasmin="14 degC", +[2024-03-07T16:10:59.491Z] thresh_tasmax="22 degC", +[2024-03-07T16:10:59.491Z] ) +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Traceback: +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.491Z] Cell In[1], line 2 +[2024-03-07T16:10:59.491Z]  1 result = finch.heat_wave_frequency( +[2024-03-07T16:10:59.491Z] ----> 2 tasmin=tasmin_subset, +[2024-03-07T16:10:59.491Z]  3 tasmax=tasmax_subset, +[2024-03-07T16:10:59.491Z]  4 thresh_tasmin="14 degC", +[2024-03-07T16:10:59.491Z]  5 thresh_tasmax="22 degC", +[2024-03-07T16:10:59.491Z]  6 ) +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] NameError: name 'tasmin_subset' is not defined +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 20 ___ +[2024-03-07T16:10:59.491Z] Notebook cell execution failed +[2024-03-07T16:10:59.491Z] Cell 20: Cell execution caused an exception +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Input: +[2024-03-07T16:10:59.491Z] response = result.get(asobj=True) +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Traceback: +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.491Z] Cell In[1], line 1 +[2024-03-07T16:10:59.491Z] ----> 1 response = result.get(asobj=True) +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] NameError: name 'result' is not defined +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 21 ___ +[2024-03-07T16:10:59.491Z] Notebook cell execution failed +[2024-03-07T16:10:59.491Z] Cell 21: Cell execution caused an exception +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Input: +[2024-03-07T16:10:59.491Z] ds = response.output +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Traceback: +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.491Z] Cell In[1], line 1 +[2024-03-07T16:10:59.491Z] ----> 1 ds = response.output +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] NameError: name 'response' is not defined +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 22 ___ +[2024-03-07T16:10:59.491Z] Notebook cell execution failed +[2024-03-07T16:10:59.491Z] Cell 22: Cell execution caused an exception +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Input: +[2024-03-07T16:10:59.491Z] ds.heat_wave_frequency.plot() +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] Traceback: +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.491Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:10:59.491Z] Cell In[1], line 1 +[2024-03-07T16:10:59.491Z] ----> 1 ds.heat_wave_frequency.plot() +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-03-07T16:10:59.491Z]  275 with suppress(KeyError): +[2024-03-07T16:10:59.491Z]  276 return source[name] +[2024-03-07T16:10:59.491Z] --> 277 raise AttributeError( +[2024-03-07T16:10:59.491Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-03-07T16:10:59.491Z]  279 ) +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.491Z] AttributeError: 'Dataset' object has no attribute 'heat_wave_frequency' +[2024-03-07T16:10:59.491Z] +[2024-03-07T16:10:59.492Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 23 ___ +[2024-03-07T16:10:59.492Z] Notebook cell execution failed +[2024-03-07T16:10:59.492Z] Cell 23: Cell execution caused an exception +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Input: +[2024-03-07T16:10:59.492Z] from urllib.parse import urlparse +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] output_url = result.get().output +[2024-03-07T16:10:59.492Z] print("output_url = ", output_url) +[2024-03-07T16:10:59.492Z] parsed = urlparse(output_url) +[2024-03-07T16:10:59.492Z] output_path = parsed.path.replace("wpsoutputs", "wps_outputs") +[2024-03-07T16:10:59.492Z] print("output_path = ", output_path) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] output_thredds_url = ( +[2024-03-07T16:10:59.492Z] f"https://{parsed.hostname}/twitcher/ows/proxy/thredds/dodsC/birdhouse{output_path}" +[2024-03-07T16:10:59.492Z] ) +[2024-03-07T16:10:59.492Z] print("output_thredds_url = ", output_thredds_url) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Traceback: +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.492Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.492Z] Cell In[1], line 3 +[2024-03-07T16:10:59.492Z]  1 from urllib.parse import urlparse +[2024-03-07T16:10:59.492Z] ----> 3 output_url = result.get().output +[2024-03-07T16:10:59.492Z]  4 print("output_url = ", output_url) +[2024-03-07T16:10:59.492Z]  5 parsed = urlparse(output_url) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] NameError: name 'result' is not defined +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 24 ___ +[2024-03-07T16:10:59.492Z] Notebook cell execution failed +[2024-03-07T16:10:59.492Z] Cell 24: Cell execution caused an exception +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Input: +[2024-03-07T16:10:59.492Z] # NBVAL_IGNORE_OUTPUT +[2024-03-07T16:10:59.492Z] import hvplot.xarray +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] dsremote = xr.open_dataset(output_thredds_url) +[2024-03-07T16:10:59.492Z] dsremote.hvplot.quadmesh( +[2024-03-07T16:10:59.492Z] "lon", +[2024-03-07T16:10:59.492Z] "lat", +[2024-03-07T16:10:59.492Z] "heat_wave_frequency", +[2024-03-07T16:10:59.492Z] geo=True, +[2024-03-07T16:10:59.492Z] alpha=0.8, +[2024-03-07T16:10:59.492Z] frame_height=540, +[2024-03-07T16:10:59.492Z] cmap="viridis", +[2024-03-07T16:10:59.492Z] tiles="CartoLight", +[2024-03-07T16:10:59.492Z] ) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Traceback: +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.492Z] NameError Traceback (most recent call last) +[2024-03-07T16:10:59.492Z] Cell In[1], line 4 +[2024-03-07T16:10:59.492Z]  1 # NBVAL_IGNORE_OUTPUT +[2024-03-07T16:10:59.492Z]  2 import hvplot.xarray +[2024-03-07T16:10:59.492Z] ----> 4 dsremote = xr.open_dataset(output_thredds_url) +[2024-03-07T16:10:59.492Z]  5 dsremote.hvplot.quadmesh( +[2024-03-07T16:10:59.492Z]  6 "lon", +[2024-03-07T16:10:59.492Z]  7 "lat", +[2024-03-07T16:10:59.492Z]  (...) +[2024-03-07T16:10:59.492Z]  13 tiles="CartoLight", +[2024-03-07T16:10:59.492Z]  14 ) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] NameError: name 'output_thredds_url' is not defined +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] _________ finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 _________ +[2024-03-07T16:10:59.492Z] Notebook cell execution failed +[2024-03-07T16:10:59.492Z] Cell 3: Cell outputs differ +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Input: +[2024-03-07T16:10:59.492Z] print("Process status: ", resp.status) +[2024-03-07T16:10:59.492Z] urls = resp.get() +[2024-03-07T16:10:59.492Z] print("Link to process output: ", urls.output) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Traceback: +[2024-03-07T16:10:59.492Z]  mismatch 'stdout' +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] assert reference_output == test_output failed: +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] 'Process stat...20650101.nc\n' == 'Process stat...20650101.nc\n' +[2024-03-07T16:10:59.492Z] Skipping 49 identical leading characters in diff, use -v to show +[2024-03-07T16:10:59.492Z] - output: https://WPS_HOST/wpsoutputs/STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc +[2024-03-07T16:10:59.492Z] ? --------------------------- +[2024-03-07T16:10:59.492Z] + output: /STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc +[2024-03-07T16:10:59.492Z]  +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 0 _ +[2024-03-07T16:10:59.492Z] Notebook cell execution failed +[2024-03-07T16:10:59.492Z] Cell 0: Cell outputs differ +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Input: +[2024-03-07T16:10:59.492Z] import os +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] os.environ["USE_PYGEOS"] = "0" # force use Shapely with GeoPandas +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] import warnings +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] import numba +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] warnings.simplefilter("ignore", category=numba.core.errors.NumbaDeprecationWarning) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] import geopandas as gpd +[2024-03-07T16:10:59.492Z] import matplotlib.pyplot as plt +[2024-03-07T16:10:59.492Z] import xarray as xr +[2024-03-07T16:10:59.492Z] from clisops.core import subset +[2024-03-07T16:10:59.492Z] from dask.diagnostics import ProgressBar +[2024-03-07T16:10:59.492Z] from siphon.catalog import TDSCatalog +[2024-03-07T16:10:59.492Z] from xclim import atmos +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] warnings.simplefilter("ignore") +[2024-03-07T16:10:59.492Z] # TODO change address +[2024-03-07T16:10:59.492Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] # Create Catalog +[2024-03-07T16:10:59.492Z] cat = TDSCatalog(url) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] # Subset over the Gasp�� peninsula in eastern Quebec +[2024-03-07T16:10:59.492Z] gaspe = gpd.GeoDataFrame.from_file( +[2024-03-07T16:10:59.492Z] "/notebook_dir/pavics-homepage/tutorial_data/gaspesie_mrc.geojson" +[2024-03-07T16:10:59.492Z] ) +[2024-03-07T16:10:59.492Z] ds = subset.subset_shape( +[2024-03-07T16:10:59.492Z] xr.open_dataset(cat.datasets[0].access_urls["OPENDAP"], chunks=dict(time=256)), +[2024-03-07T16:10:59.492Z] shape=gpd.GeoDataFrame(geometry=gaspe.buffer(0.05)), +[2024-03-07T16:10:59.492Z] ) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] # What we see here is only a representation of the full content, the entire data set hasn't been loaded. +[2024-03-07T16:10:59.492Z] display(ds) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] # plot of single day tasmin +[2024-03-07T16:10:59.492Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Traceback: +[2024-03-07T16:10:59.492Z] Missing output fields from running code: {'stderr'} +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ +[2024-03-07T16:10:59.492Z] Notebook cell execution failed +[2024-03-07T16:10:59.492Z] Cell 2: Cell execution caused an exception +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Input: +[2024-03-07T16:10:59.492Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) +[2024-03-07T16:10:59.492Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] chng_f, pos_f = xens.change_significance( +[2024-03-07T16:10:59.492Z] fut.sel(time=fut["time.season"] == "JJA"), +[2024-03-07T16:10:59.492Z] ref.sel(time=ref["time.season"] == "JJA"), +[2024-03-07T16:10:59.492Z] test="ttest", +[2024-03-07T16:10:59.492Z] ) +[2024-03-07T16:10:59.492Z] plt.figure( +[2024-03-07T16:10:59.492Z] figsize=(15, 6), +[2024-03-07T16:10:59.492Z] ) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] plt.subplot(1, 2, 1) +[2024-03-07T16:10:59.492Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] plt.title(chng_f.description.split(".")[0]) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] plt.subplot(1, 2, 2) +[2024-03-07T16:10:59.492Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-03-07T16:10:59.492Z] plt.title(pos_f.description.split(".")[0]) +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] display() +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] Traceback: +[2024-03-07T16:10:59.492Z] +[2024-03-07T16:10:59.492Z] --------------------------------------------------------------------------- +[2024-03-07T16:10:59.492Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:10:59.492Z] Cell In[1], line 20 +[2024-03-07T16:10:59.492Z]  18 plt.subplot(1, 2, 2) +[2024-03-07T16:10:59.492Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-03-07T16:10:59.493Z] ---> 20 plt.title(pos_f.description.split(".")[0]) +[2024-03-07T16:10:59.493Z]  22 display() +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-03-07T16:10:59.493Z]  275 with suppress(KeyError): +[2024-03-07T16:10:59.493Z]  276 return source[name] +[2024-03-07T16:10:59.493Z] --> 277 raise AttributeError( +[2024-03-07T16:10:59.493Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-03-07T16:10:59.493Z]  279 ) +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb::Cell 2 _ +[2024-03-07T16:10:59.493Z] Notebook cell execution failed +[2024-03-07T16:10:59.493Z] Cell 2: Cell outputs differ +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] Input: +[2024-03-07T16:10:59.493Z] import geopandas as gpd +[2024-03-07T16:10:59.493Z] import hvplot.pandas +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] gdf = gpd.GeoDataFrame.from_file( +[2024-03-07T16:10:59.493Z] "/notebook_dir/pavics-homepage/tutorial_data/gaspesie_mrc.geojson" +[2024-03-07T16:10:59.493Z] ) +[2024-03-07T16:10:59.493Z] gdf = gdf.dissolve(by="MUS_NM_MRC") +[2024-03-07T16:10:59.493Z] gdf["region_name"] = gdf.index +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] # TODO replace with clisops average.average_shape() once it can do a 'skipna' +[2024-03-07T16:10:59.493Z] # mask of valid (non-nan) data cells +[2024-03-07T16:10:59.493Z] data_mask = ( +[2024-03-07T16:10:59.493Z] ds_ens.tx_mean.isel(rcp=0, realization=0).mean(dim=["year", "season"]).notnull() +[2024-03-07T16:10:59.493Z] ) +[2024-03-07T16:10:59.493Z] # spatial weights of gridcells interesecting each polygon +[2024-03-07T16:10:59.493Z] weight_masks = subset.create_weight_masks(ds_ens, poly=gdf) +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] def clean_masks(data_mask, masks): +[2024-03-07T16:10:59.493Z] # remove weight values of gridcells that are nan in the actual data. Rescale so total == 1 +[2024-03-07T16:10:59.493Z] return (masks * data_mask) / (masks * data_mask).sum(dim=["lat", "lon"]) +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] weight_masks = clean_masks(data_mask, weight_masks) +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] # Calculate weighted average for each region +[2024-03-07T16:10:59.493Z] with xr.set_options(keep_attrs=True): +[2024-03-07T16:10:59.493Z] reg_ts_sims = (ds_ens * weight_masks).sum(dim=["lat", "lon"]) +[2024-03-07T16:10:59.493Z] reg_ts = xens.ensemble_percentiles(reg_ts_sims) +[2024-03-07T16:10:59.493Z] reg_ts.load() +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] # get only tx_mean percentile variables for this plot +[2024-03-07T16:10:59.493Z] vars1 = [v for v in reg_ts if "tx_mean" in v] +[2024-03-07T16:10:59.493Z] clear_output() +[2024-03-07T16:10:59.493Z] # plot a simple map of the sub-regions +[2024-03-07T16:10:59.493Z] display( +[2024-03-07T16:10:59.493Z] gdf.hvplot( +[2024-03-07T16:10:59.493Z] geo=True, +[2024-03-07T16:10:59.493Z] color="region_name", +[2024-03-07T16:10:59.493Z] tiles="EsriImagery", +[2024-03-07T16:10:59.493Z] legend=False, +[2024-03-07T16:10:59.493Z] frame_width=400, +[2024-03-07T16:10:59.493Z] ) +[2024-03-07T16:10:59.493Z] ) +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] # Interative time-series plot of regional means +[2024-03-07T16:10:59.493Z] reg_ts[vars1].hvplot.line( +[2024-03-07T16:10:59.493Z] x="year", title="time series of regional mean conditions" +[2024-03-07T16:10:59.493Z] ).opts(legend_position="top_left", frame_width=500) +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] Traceback: +[2024-03-07T16:10:59.493Z]  mismatch 'text/plain' +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] assert reference_output == test_output failed: +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] ':Overlay\n ...(region_name)' == ':Overlay\n ...(region_name)' +[2024-03-07T16:10:59.493Z] :Overlay +[2024-03-07T16:10:59.493Z] - .WMTS.I :WMTS [Longitude,Latitude] +[2024-03-07T16:10:59.493Z] + .Tiles.I :Tiles [x,y] +[2024-03-07T16:10:59.493Z] .Polygons.I :Polygons [Longitude,Latitude] (region_name) +[2024-03-07T16:10:59.493Z]  +[2024-03-07T16:10:59.493Z] +[2024-03-07T16:10:59.493Z] ----------------------------- Captured stdout call ----------------------------- +[2024-03-07T16:10:59.493Z] unhandled iopub msg: clear_output +[2024-03-07T16:10:59.493Z] =========================== short test summary info ============================ +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 8 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/forecasts.ipynb::Cell 2 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 4 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 7 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 20 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 27 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 3 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 4 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 5 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 7 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 8 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 9 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 14 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 15 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 16 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 17 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 19 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 20 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 21 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 22 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 23 +[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 24 +[2024-03-07T16:10:59.493Z] FAILED finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 +[2024-03-07T16:10:59.493Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 0 +[2024-03-07T16:10:59.494Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-03-07T16:10:59.494Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb::Cell 2 +[2024-03-07T16:10:59.494Z] ============ 26 failed, 188 passed, 1 skipped in 748.36s (0:12:28) ============= +[2024-03-07T16:10:59.752Z] + EXIT_CODE=1 +[2024-03-07T16:10:59.752Z] + echo true +[2024-03-07T16:10:59.752Z] + tr [:upper:] [:lower:] +[2024-03-07T16:10:59.752Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-07T16:10:59.752Z] + [ xtrue = xtrue ] +[2024-03-07T16:10:59.752Z] + mkdir -p buildout +[2024-03-07T16:10:59.752Z] + basename pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb +[2024-03-07T16:10:59.752Z] + filename=WCS_example.ipynb +[2024-03-07T16:10:59.752Z] + echo WCS_example.ipynb +[2024-03-07T16:10:59.752Z] + sed s/.ipynb$// +[2024-03-07T16:10:59.752Z] + filename=WCS_example +[2024-03-07T16:10:59.752Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-03-07T16:10:59.752Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb +[2024-03-07T16:11:01.661Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-03-07T16:11:11.663Z] [NbConvertApp] Writing 144455 bytes to buildout/WCS_example.output.ipynb +[2024-03-07T16:11:11.663Z] + basename pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb +[2024-03-07T16:11:11.663Z] + filename=WFS_example.ipynb +[2024-03-07T16:11:11.663Z] + echo WFS_example.ipynb +[2024-03-07T16:11:11.663Z] + sed s/.ipynb$// +[2024-03-07T16:11:11.663Z] + filename=WFS_example +[2024-03-07T16:11:11.663Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-03-07T16:11:11.663Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb +[2024-03-07T16:11:12.602Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-03-07T16:11:22.574Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb +[2024-03-07T16:11:22.574Z] + basename pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb +[2024-03-07T16:11:22.574Z] + filename=WMS_example.ipynb +[2024-03-07T16:11:22.574Z] + echo WMS_example.ipynb +[2024-03-07T16:11:22.574Z] + sed s/.ipynb$// +[2024-03-07T16:11:22.574Z] + filename=WMS_example +[2024-03-07T16:11:22.574Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-03-07T16:11:22.574Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb +[2024-03-07T16:11:23.144Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-03-07T16:11:29.800Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb +[2024-03-07T16:11:29.800Z] + basename pavics-sdi-master/docs/source/notebooks/climex.ipynb +[2024-03-07T16:11:29.800Z] + filename=climex.ipynb +[2024-03-07T16:11:29.800Z] + echo climex.ipynb +[2024-03-07T16:11:29.800Z] + sed s/.ipynb$// +[2024-03-07T16:11:29.800Z] + filename=climex +[2024-03-07T16:11:29.800Z] + [ -e buildout/climex.output.ipynb ] +[2024-03-07T16:11:29.800Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb +[2024-03-07T16:11:31.183Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/climex.ipynb to notebook +[2024-03-07T16:14:07.690Z] [NbConvertApp] Writing 1778863 bytes to buildout/climex.output.ipynb +[2024-03-07T16:14:07.690Z] + basename pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-07T16:14:07.690Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-03-07T16:14:07.690Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-03-07T16:14:07.690Z] + sed s/.ipynb$// +[2024-03-07T16:14:07.690Z] + filename=eccc-geoapi-climate-stations +[2024-03-07T16:14:07.690Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-03-07T16:14:07.690Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-07T16:14:07.690Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-03-07T16:14:14.273Z] [NbConvertApp] Writing 280015 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-03-07T16:14:14.273Z] + basename pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-07T16:14:14.273Z] + filename=eccc-geoapi-xclim.ipynb +[2024-03-07T16:14:14.273Z] + + echo eccc-geoapi-xclim.ipynb +[2024-03-07T16:14:14.273Z] sed s/.ipynb$// +[2024-03-07T16:14:14.273Z] + filename=eccc-geoapi-xclim +[2024-03-07T16:14:14.273Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-03-07T16:14:14.273Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-07T16:14:14.847Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-03-07T16:14:24.894Z] [NbConvertApp] Writing 108373 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-03-07T16:14:24.894Z] + basename pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb +[2024-03-07T16:14:24.894Z] + filename=esgf-dap.ipynb +[2024-03-07T16:14:24.894Z] + echo esgf-dap.ipynb +[2024-03-07T16:14:24.894Z] + sed s/.ipynb$// +[2024-03-07T16:14:24.894Z] + filename=esgf-dap +[2024-03-07T16:14:24.894Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-03-07T16:14:24.894Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb +[2024-03-07T16:14:25.837Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-03-07T16:15:22.081Z] [NbConvertApp] Writing 63545 bytes to buildout/esgf-dap.output.ipynb +[2024-03-07T16:15:22.081Z] + basename pavics-sdi-master/docs/source/notebooks/forecasts.ipynb +[2024-03-07T16:15:22.081Z] + filename=forecasts.ipynb +[2024-03-07T16:15:22.081Z] + + sed s/.ipynb$// +[2024-03-07T16:15:22.081Z] echo forecasts.ipynb +[2024-03-07T16:15:22.081Z] + filename=forecasts +[2024-03-07T16:15:22.081Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-03-07T16:15:22.081Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb +[2024-03-07T16:15:22.081Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/forecasts.ipynb to notebook +[2024-03-07T16:15:34.403Z] [NbConvertApp] Writing 179289 bytes to buildout/forecasts.output.ipynb +[2024-03-07T16:15:34.403Z] + basename pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-07T16:15:34.403Z] + filename=jupyter_extensions.ipynb +[2024-03-07T16:15:34.403Z] + + sed s/.ipynb$// +[2024-03-07T16:15:34.403Z] echo jupyter_extensions.ipynb +[2024-03-07T16:15:34.403Z] + filename=jupyter_extensions +[2024-03-07T16:15:34.403Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-03-07T16:15:34.403Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-07T16:15:34.664Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-03-07T16:15:36.579Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb +[2024-03-07T16:15:36.579Z] + basename pavics-sdi-master/docs/source/notebooks/opendap.ipynb +[2024-03-07T16:15:36.579Z] + filename=opendap.ipynb +[2024-03-07T16:15:36.579Z] + echo opendap.ipynb +[2024-03-07T16:15:36.579Z] + sed s/.ipynb$// +[2024-03-07T16:15:36.579Z] + filename=opendap +[2024-03-07T16:15:36.579Z] + [ -e buildout/opendap.output.ipynb ] +[2024-03-07T16:15:36.580Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb +[2024-03-07T16:15:38.493Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/opendap.ipynb to notebook +[2024-03-07T16:15:43.767Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb +[2024-03-07T16:15:43.767Z] + basename pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-07T16:15:43.767Z] + filename=pavics_thredds.ipynb +[2024-03-07T16:15:43.767Z] + echo pavics_thredds.ipynb +[2024-03-07T16:15:43.767Z] + sed s/.ipynb$// +[2024-03-07T16:15:43.767Z] + filename=pavics_thredds +[2024-03-07T16:15:43.767Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-03-07T16:15:43.767Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-07T16:15:45.131Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-03-07T16:15:48.427Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-07T16:15:48.428Z] context: Access to service is forbidden. +[2024-03-07T16:15:48.428Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-07T16:15:48.428Z] context: Access to service is forbidden. +[2024-03-07T16:15:50.345Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb +[2024-03-07T16:15:50.345Z] + basename pavics-sdi-master/docs/source/notebooks/regridding.ipynb +[2024-03-07T16:15:50.345Z] + filename=regridding.ipynb +[2024-03-07T16:15:50.346Z] + + sed s/.ipynb$// +[2024-03-07T16:15:50.346Z] echo regridding.ipynb +[2024-03-07T16:15:50.346Z] + filename=regridding +[2024-03-07T16:15:50.346Z] + [ -e buildout/regridding.output.ipynb ] +[2024-03-07T16:15:50.346Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb +[2024-03-07T16:15:52.241Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/regridding.ipynb to notebook +[2024-03-07T16:17:28.790Z] [NbConvertApp] Writing 1239686 bytes to buildout/regridding.output.ipynb +[2024-03-07T16:17:28.790Z] + basename pavics-sdi-master/docs/source/notebooks/rendering.ipynb +[2024-03-07T16:17:28.790Z] + filename=rendering.ipynb +[2024-03-07T16:17:28.790Z] + sed s/.ipynb$// +[2024-03-07T16:17:28.790Z] + echo rendering.ipynb +[2024-03-07T16:17:28.790Z] + filename=rendering +[2024-03-07T16:17:28.790Z] + [ -e buildout/rendering.output.ipynb ] +[2024-03-07T16:17:28.790Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb +[2024-03-07T16:17:28.790Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/rendering.ipynb to notebook +[2024-03-07T16:17:28.790Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb +[2024-03-07T16:17:28.790Z] + basename pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb +[2024-03-07T16:17:28.790Z] + filename=subset-user-input.ipynb +[2024-03-07T16:17:28.790Z] + echo subset-user-input.ipynb +[2024-03-07T16:17:28.790Z] + sed s/.ipynb$// +[2024-03-07T16:17:28.790Z] + filename=subset-user-input +[2024-03-07T16:17:28.790Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-03-07T16:17:28.791Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb +[2024-03-07T16:17:30.176Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-03-07T16:17:42.393Z] [NbConvertApp] Writing 156075 bytes to buildout/subset-user-input.output.ipynb +[2024-03-07T16:17:42.393Z] + basename pavics-sdi-master/docs/source/notebooks/subsetting.ipynb +[2024-03-07T16:17:42.393Z] + filename=subsetting.ipynb +[2024-03-07T16:17:42.393Z] + + sed s/.ipynb$// +[2024-03-07T16:17:42.393Z] echo subsetting.ipynb +[2024-03-07T16:17:42.393Z] + filename=subsetting +[2024-03-07T16:17:42.393Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-03-07T16:17:42.393Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb +[2024-03-07T16:17:43.325Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/subsetting.ipynb to notebook +[2024-03-07T16:17:53.327Z] [NbConvertApp] Writing 93314 bytes to buildout/subsetting.output.ipynb +[2024-03-07T16:17:53.595Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-07T16:17:53.595Z] + filename=dap_subset.ipynb +[2024-03-07T16:17:53.595Z] + + sed s/.ipynb$// +[2024-03-07T16:17:53.595Z] echo dap_subset.ipynb +[2024-03-07T16:17:53.595Z] + filename=dap_subset +[2024-03-07T16:17:53.595Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-03-07T16:17:53.595Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-07T16:17:54.983Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-03-07T16:18:04.982Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb +[2024-03-07T16:18:04.982Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-07T16:18:04.982Z] + filename=finch-usage.ipynb +[2024-03-07T16:18:04.982Z] + echo finch-usage.ipynb +[2024-03-07T16:18:04.982Z] + sed s/.ipynb$// +[2024-03-07T16:18:04.982Z] + filename=finch-usage +[2024-03-07T16:18:04.982Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-03-07T16:18:04.982Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-07T16:18:06.397Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-03-07T16:18:16.373Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb +[2024-03-07T16:18:16.373Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-07T16:18:16.373Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-07T16:18:16.373Z] + sed s/.ipynb$// +[2024-03-07T16:18:16.373Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-07T16:18:16.373Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-03-07T16:18:16.373Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-03-07T16:18:16.374Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-07T16:18:17.308Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-03-07T16:18:22.578Z] [NbConvertApp] Writing 173043 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-03-07T16:18:22.578Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-07T16:18:22.578Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-07T16:18:22.578Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-07T16:18:22.578Z] + sed s/.ipynb$// +[2024-03-07T16:18:22.578Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-03-07T16:18:22.578Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-03-07T16:18:22.579Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-07T16:18:23.952Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-03-07T16:18:42.036Z] [NbConvertApp] Writing 1481206 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-03-07T16:18:42.295Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-07T16:18:42.295Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-07T16:18:42.295Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-07T16:18:42.295Z] + sed s/.ipynb$// +[2024-03-07T16:18:42.295Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-03-07T16:18:42.295Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-03-07T16:18:42.295Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-07T16:18:43.702Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-03-07T16:23:20.481Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). +[2024-03-07T16:23:20.481Z] Exception ignored in: > +[2024-03-07T16:23:20.481Z] Traceback (most recent call last): +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_perf.py", line 176, in _gc_callback +[2024-03-07T16:23:20.481Z] def _gc_callback(self, phase, info): +[2024-03-07T16:23:20.481Z] KeyboardInterrupt: +[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,471 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,471 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,471 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,471 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,472 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,472 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-07T16:23:20.481Z] Traceback (most recent call last): +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply +[2024-03-07T16:23:20.481Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 189, in ensure_async +[2024-03-07T16:23:20.481Z] result = await obj +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg +[2024-03-07T16:23:20.481Z] raise Empty +[2024-03-07T16:23:20.481Z] _queue.Empty +[2024-03-07T16:23:20.481Z] +[2024-03-07T16:23:20.481Z] During handling of the above exception, another exception occurred: +[2024-03-07T16:23:20.481Z] +[2024-03-07T16:23:20.481Z] Traceback (most recent call last): +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-03-07T16:23:20.481Z] sys.exit(main()) +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 280, in launch_instance +[2024-03-07T16:23:20.481Z] super().launch_instance(argv=argv, **kwargs) +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1053, in launch_instance +[2024-03-07T16:23:20.481Z] app.start() +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 412, in start +[2024-03-07T16:23:20.481Z] self.convert_notebooks() +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 590, in convert_notebooks +[2024-03-07T16:23:20.481Z] self.convert_single_notebook(notebook_filename) +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 556, in convert_single_notebook +[2024-03-07T16:23:20.481Z] output, resources = self.export_single_notebook( +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 479, in export_single_notebook +[2024-03-07T16:23:20.481Z] output, resources = self.exporter.from_filename( +[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-03-07T16:23:20.482Z] return self.from_file(f, resources=resources, **kw) +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-03-07T16:23:20.482Z] return self.from_notebook_node( +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-03-07T16:23:20.482Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-03-07T16:23:20.482Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 352, in _preprocess +[2024-03-07T16:23:20.482Z] nbc, resc = preprocessor(nbc, resc) +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-03-07T16:23:20.482Z] return self.preprocess(nb, resources) +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess +[2024-03-07T16:23:20.482Z] self.preprocess_cell(cell, resources, index) +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell +[2024-03-07T16:23:20.482Z] cell = self.execute_cell(cell, index, store_history=True) +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 173, in wrapped +[2024-03-07T16:23:20.482Z] return loop.run_until_complete(inner) +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-03-07T16:23:20.482Z] return future.result() +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell +[2024-03-07T16:23:20.482Z] exec_reply = await self.task_poll_for_reply +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply +[2024-03-07T16:23:20.482Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) +[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout +[2024-03-07T16:23:20.482Z] raise CellTimeoutError.error_from_timeout_and_cell( +[2024-03-07T16:23:20.482Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. +[2024-03-07T16:23:20.482Z] The message was: Cell execution timed out. +[2024-03-07T16:23:20.482Z] Here is a preview of the cell contents: +[2024-03-07T16:23:20.482Z] ------------------- +[2024-03-07T16:23:20.482Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] +[2024-03-07T16:23:20.482Z] ... +[2024-03-07T16:23:20.482Z] [' print("computing with dask client ...")', ' compute(jobs)', ' print("finished")', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()'] +[2024-03-07T16:23:20.482Z] ------------------- +[2024-03-07T16:23:20.482Z] +[2024-03-07T16:23:20.482Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-07T16:23:20.482Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-07T16:23:20.482Z] + + sed s/.ipynb$// +[2024-03-07T16:23:20.482Z] echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-07T16:23:20.482Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-03-07T16:23:20.482Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-03-07T16:23:20.482Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-07T16:23:20.482Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-03-07T16:23:38.689Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-03-07T16:23:38.689Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-07T16:23:38.689Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-07T16:23:38.689Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-07T16:23:38.689Z] + sed s/.ipynb$// +[2024-03-07T16:23:38.689Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-03-07T16:23:38.689Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-03-07T16:23:38.689Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-07T16:23:38.689Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-03-07T16:24:17.438Z] [NbConvertApp] Writing 1093308 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-03-07T16:24:17.438Z] + basename notebooks/hummingbird.ipynb +[2024-03-07T16:24:17.438Z] + filename=hummingbird.ipynb +[2024-03-07T16:24:17.438Z] + echo hummingbird.ipynb +[2024-03-07T16:24:17.438Z] + sed s/.ipynb$// +[2024-03-07T16:24:17.439Z] + filename=hummingbird +[2024-03-07T16:24:17.439Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-03-07T16:24:17.439Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-03-07T16:24:18.382Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-03-07T16:24:23.633Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb +[2024-03-07T16:24:23.633Z] + basename notebooks/stress-tests.ipynb +[2024-03-07T16:24:23.633Z] + filename=stress-tests.ipynb +[2024-03-07T16:24:23.633Z] + echo stress-tests.ipynb +[2024-03-07T16:24:23.633Z] + sed s/.ipynb$// +[2024-03-07T16:24:23.633Z] + filename=stress-tests +[2024-03-07T16:24:23.633Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-03-07T16:24:23.633Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-03-07T16:24:25.008Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-03-07T16:26:31.458Z] [NbConvertApp] Writing 442955 bytes to buildout/stress-tests.output.ipynb +[2024-03-07T16:26:31.458Z] + exit 1 +[2024-03-07T16:26:31.458Z] + EXIT_CODE=1 +[2024-03-07T16:26:31.458Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-07T16:26:31.458Z] + mkdir -p buildout/env-dump +[2024-03-07T16:26:31.458Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-07T16:26:31.458Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-07T16:26:31.458Z] + conda env export -n birdy +[2024-03-07T16:26:49.586Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-07T16:26:49.586Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-07T16:26:49.586Z] + conda list -n birdy --explicit +[2024-03-07T16:26:56.171Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-07T16:26:56.171Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-07T16:26:56.171Z] + pip freeze +[2024-03-07T16:27:04.285Z] + exit 1 +[Pipeline] } +[Pipeline] // withCredentials +[Pipeline] } +[Pipeline] // script +[Pipeline] } +[Pipeline] // stage +[Pipeline] stage +[Pipeline] { (Declarative: Post Actions) +[Pipeline] archiveArtifacts +[2024-03-07T16:27:05.872Z] Archiving artifacts +[2024-03-07T16:27:05.908Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:05.959Z] Archiving artifacts +[2024-03-07T16:27:08.035Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:08.256Z] Archiving artifacts +[2024-03-07T16:27:08.275Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:08.308Z] Archiving artifacts +[2024-03-07T16:27:08.365Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:08.429Z] Archiving artifacts +[2024-03-07T16:27:08.449Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:08.484Z] Archiving artifacts +[2024-03-07T16:27:08.546Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:08.948Z] Archiving artifacts +[2024-03-07T16:27:08.967Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:08.994Z] Archiving artifacts +[2024-03-07T16:27:09.029Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:09.093Z] Archiving artifacts +[2024-03-07T16:27:09.453Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:09.542Z] Archiving artifacts +[2024-03-07T16:27:10.517Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:27:11.079Z] Archiving artifacts +[2024-03-07T16:27:11.106Z] Recording fingerprints +[Pipeline] emailextrecipients +[Pipeline] step +[2024-03-07T16:27:11.238Z] Sending e-mails to: vu.long@ouranos.ca +[Pipeline] } +[Pipeline] // stage +[Pipeline] } +[Pipeline] // timeout +[Pipeline] } +[Pipeline] // timestamps +[Pipeline] } +[Pipeline] // ansiColor +[Pipeline] } +$ docker stop --time=1 ebc4e7303a12c810c96a8434d5c76564d1e50dadf347acfd670d3521f77f648b +$ docker rm -f ebc4e7303a12c810c96a8434d5c76564d1e50dadf347acfd670d3521f77f648b +[Pipeline] // withDockerContainer +[Pipeline] } +[Pipeline] // withEnv +[Pipeline] } +[Pipeline] // node +[Pipeline] End of Pipeline +ERROR: script returned exit code 1 +Finished: FAILURE diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt new file mode 100644 index 0000000..e162b7c --- /dev/null +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -0,0 +1,2670 @@ +Started by user Long Vu +Replayed #246 + > git rev-parse --is-inside-work-tree # timeout=10 +Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Fetching origin... +Fetching upstream changes from origin + > git --version # timeout=10 + > git config --get remote.origin.url # timeout=10 + > git fetch --tags --progress -- origin +refs/heads/*:refs/remotes/origin/* # timeout=10 +Seen branch in repository origin/current-production-version +Seen branch in repository origin/devel-new-extensions +Seen branch in repository origin/extended_tests +Seen branch in repository origin/master +Seen branch in repository origin/new-docker-build +Seen branch in repository origin/test-dockerhub-build +Seen branch in repository origin/twitcher_perf_test_notebook +Seen 7 remote branches +Obtained Jenkinsfile from daaa4896c7358eff3a7bd6434617b4af06c89e42 +Running in Durability level: MAX_SURVIVABILITY +[Pipeline] Start of Pipeline +[Pipeline] node +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 +[Pipeline] { +[Pipeline] stage +[Pipeline] { (Declarative: Checkout SCM) +[Pipeline] checkout +No credentials specified +Fetching changes from the remote Git repository +Fetching without tags + > git rev-parse --is-inside-work-tree # timeout=10 + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git --version # timeout=10 + > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision daaa4896c7358eff3a7bd6434617b4af06c89e42 (new-docker-build) +Commit message: "docker: attempt to fix "Plugin 'jupyterlab_dash' is already registered."" + > git config core.sparsecheckout # timeout=10 + > git checkout -f daaa4896c7358eff3a7bd6434617b4af06c89e42 # timeout=10 + > git rev-list --no-walk daaa4896c7358eff3a7bd6434617b4af06c89e42 # timeout=10 +[Pipeline] } +[Pipeline] // stage +[Pipeline] withEnv +[Pipeline] { +[Pipeline] isUnix +[Pipeline] sh ++ docker inspect -f . pavics/workflow-tests:py310-231107-update240306 +. +[Pipeline] withDockerContainer +linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-231107-update240306 cat +$ docker top afee8048e2b4deaf0609277fd962ea28b5c30bfa175abfd9c040c3676602ff2d -eo pid,comm +[Pipeline] { +[Pipeline] ansiColor +[Pipeline] { +[Pipeline] timestamps +[Pipeline] { +[Pipeline] timeout +[2024-03-07T16:18:10.123Z] Timeout set to expire in 2 hr 0 min +[Pipeline] { +[Pipeline] stage +[Pipeline] { (Run tests) +[Pipeline] script +[Pipeline] { +[Pipeline] withCredentials +[2024-03-07T16:18:10.906Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[Pipeline] { +[Pipeline] sh +[2024-03-07T16:18:11.356Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-07T16:18:11.356Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-07T16:18:11.356Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-07T16:18:11.356Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-07T16:18:11.356Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-07T16:18:11.356Z] FINCH_BRANCH has been set to 'master' +[2024-03-07T16:18:11.356Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-07T16:18:11.356Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-07T16:18:11.356Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-07T16:18:11.356Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-07T16:18:11.356Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-07T16:18:11.356Z] RAVEN_BRANCH has been set to 'main' +[2024-03-07T16:18:11.356Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-07T16:18:11.356Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-07T16:18:11.356Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-07T16:18:11.356Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-07T16:18:11.356Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-07T16:18:11.356Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-07T16:18:11.356Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-07T16:18:11.356Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-07T16:18:11.356Z] + git clean -fdx +[2024-03-07T16:18:11.922Z] Removing .pytest_cache/ +[2024-03-07T16:18:11.922Z] Removing PAVICS-landing-master/ +[2024-03-07T16:18:11.922Z] Removing RavenPy-fix_docs/ +[2024-03-07T16:18:11.922Z] Removing __pycache__/ +[2024-03-07T16:18:11.922Z] Removing buildout/ +[2024-03-07T16:18:11.922Z] Removing esgf-compute-api-devel/ +[2024-03-07T16:18:11.922Z] Removing finch-master/ +[2024-03-07T16:18:11.922Z] Removing pavics-sdi-master/ +[2024-03-07T16:18:11.922Z] Removing raven-master/ +[2024-03-07T16:18:11.922Z] + ./downloadrepos +[2024-03-07T16:18:11.922Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-07T16:18:11.922Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-07T16:18:11.922Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-07T16:18:11.922Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-07T16:18:11.922Z] FINCH_BRANCH has been set to 'master' +[2024-03-07T16:18:11.922Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-07T16:18:11.922Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-07T16:18:11.922Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-07T16:18:11.922Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-07T16:18:11.922Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-07T16:18:11.922Z] RAVEN_BRANCH has been set to 'main' +[2024-03-07T16:18:11.922Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-07T16:18:11.922Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-07T16:18:11.922Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-07T16:18:11.922Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-07T16:18:11.922Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-07T16:18:11.922Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-07T16:18:11.922Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-07T16:18:11.922Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-07T16:18:11.922Z] + rm -rf pavics-sdi-* +[2024-03-07T16:18:11.922Z] + ls +[2024-03-07T16:18:11.922Z] + grep pavics-sdi +[2024-03-07T16:18:11.922Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-03-07T16:18:11.922Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-07T16:18:11.922Z] + shift +[2024-03-07T16:18:11.922Z] + branch=master +[2024-03-07T16:18:11.922Z] + shift +[2024-03-07T16:18:11.922Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-03-07T16:18:11.922Z] + tar xz +[2024-03-07T16:18:15.266Z] + ls +[2024-03-07T16:18:15.266Z] + grep pavics-sdi +[2024-03-07T16:18:15.266Z] pavics-sdi-master +[2024-03-07T16:18:15.266Z] + set +x +[2024-03-07T16:18:15.266Z] + rm -rf finch-* +[2024-03-07T16:18:15.266Z] + ls +[2024-03-07T16:18:15.266Z] + grep finch +[2024-03-07T16:18:15.266Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-07T16:18:15.266Z] + github_repo=https://github.com/bird-house/finch +[2024-03-07T16:18:15.266Z] + shift +[2024-03-07T16:18:15.266Z] + branch=master +[2024-03-07T16:18:15.266Z] + shift +[2024-03-07T16:18:15.266Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-03-07T16:18:15.266Z] + tar xz +[2024-03-07T16:18:16.633Z] + ls +[2024-03-07T16:18:16.633Z] + grep finch +[2024-03-07T16:18:16.633Z] finch-master +[2024-03-07T16:18:16.633Z] + set +x +[2024-03-07T16:18:16.633Z] + rm -rf PAVICS-landing-* +[2024-03-07T16:18:16.633Z] + ls +[2024-03-07T16:18:16.633Z] + grep PAVICS-landing +[2024-03-07T16:18:16.633Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-03-07T16:18:16.633Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-07T16:18:16.633Z] + shift +[2024-03-07T16:18:16.633Z] + branch=master +[2024-03-07T16:18:16.633Z] + shift +[2024-03-07T16:18:16.633Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-03-07T16:18:16.633Z] + tar xz +[2024-03-07T16:18:38.543Z] + ls +[2024-03-07T16:18:38.543Z] + grep PAVICS-landing +[2024-03-07T16:18:38.543Z] PAVICS-landing-master +[2024-03-07T16:18:38.543Z] + set +x +[2024-03-07T16:18:38.543Z] + rm -rf raven-* +[2024-03-07T16:18:38.543Z] + ls +[2024-03-07T16:18:38.543Z] + grep raven +[2024-03-07T16:18:38.543Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-07T16:18:38.543Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-07T16:18:38.543Z] + shift +[2024-03-07T16:18:38.543Z] + branch=main +[2024-03-07T16:18:38.543Z] + shift +[2024-03-07T16:18:38.543Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-07T16:18:38.543Z] + tar xz +[2024-03-07T16:18:38.543Z] + ls +[2024-03-07T16:18:38.543Z] + grep raven +[2024-03-07T16:18:38.543Z] raven-main +[2024-03-07T16:18:38.543Z] + set +x +[2024-03-07T16:18:38.543Z] + rm -rf RavenPy-* +[2024-03-07T16:18:38.543Z] + ls +[2024-03-07T16:18:38.543Z] + grep RavenPy +[2024-03-07T16:18:38.543Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-07T16:18:38.543Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-07T16:18:38.543Z] + shift +[2024-03-07T16:18:38.543Z] + branch=master +[2024-03-07T16:18:38.543Z] + shift +[2024-03-07T16:18:38.543Z] + + tar xz +[2024-03-07T16:18:38.543Z] wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-07T16:18:38.543Z] + ls +[2024-03-07T16:18:38.543Z] + grep RavenPy +[2024-03-07T16:18:38.543Z] RavenPy-master +[2024-03-07T16:18:38.543Z] + set +x +[2024-03-07T16:18:38.543Z] + rm -rf esgf-compute-api-* +[2024-03-07T16:18:38.543Z] + ls +[2024-03-07T16:18:38.543Z] + grep esgf-compute-api +[2024-03-07T16:18:38.543Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-07T16:18:38.543Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-07T16:18:38.543Z] + shift +[2024-03-07T16:18:38.543Z] + branch=devel +[2024-03-07T16:18:38.543Z] + shift +[2024-03-07T16:18:38.543Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-03-07T16:18:38.543Z] + tar xz +[2024-03-07T16:18:39.923Z] + ls +[2024-03-07T16:18:39.923Z] + grep esgf-compute-api +[2024-03-07T16:18:39.923Z] esgf-compute-api-devel +[2024-03-07T16:18:39.923Z] + set +x +[2024-03-07T16:18:39.923Z] + echo master +[2024-03-07T16:18:39.923Z] + sed s@/@-@g +[2024-03-07T16:18:39.923Z] + PAVICS_SDI_BRANCH=master +[2024-03-07T16:18:39.923Z] + echo Ouranosinc/pavics-sdi +[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g +[2024-03-07T16:18:39.923Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-07T16:18:39.923Z] + echo master +[2024-03-07T16:18:39.923Z] + sed s@/@-@g +[2024-03-07T16:18:39.923Z] + FINCH_BRANCH=master +[2024-03-07T16:18:39.923Z] + echo bird-house/finch +[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g +[2024-03-07T16:18:39.923Z] + FINCH_REPO_NAME=finch +[2024-03-07T16:18:39.923Z] + echo master +[2024-03-07T16:18:39.923Z] + sed s@/@-@g +[2024-03-07T16:18:39.923Z] + PAVICS_LANDING_BRANCH=master +[2024-03-07T16:18:39.923Z] + echo Ouranosinc/PAVICS-landing +[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g +[2024-03-07T16:18:39.923Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-07T16:18:39.923Z] + echo main +[2024-03-07T16:18:39.923Z] + sed s@/@-@g +[2024-03-07T16:18:39.923Z] + RAVEN_BRANCH=main +[2024-03-07T16:18:39.923Z] + echo Ouranosinc/raven +[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g +[2024-03-07T16:18:39.923Z] + RAVEN_REPO_NAME=raven +[2024-03-07T16:18:39.923Z] + echo master +[2024-03-07T16:18:39.923Z] + sed s@/@-@g +[2024-03-07T16:18:39.923Z] + RAVENPY_BRANCH=master +[2024-03-07T16:18:39.923Z] + echo CSHS-CWRA/RavenPy +[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g +[2024-03-07T16:18:39.923Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-07T16:18:39.923Z] + echo devel +[2024-03-07T16:18:39.923Z] + sed s@/@-@g +[2024-03-07T16:18:39.923Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-07T16:18:39.923Z] + echo ESGF/esgf-compute-api +[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g +[2024-03-07T16:18:39.923Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-07T16:18:39.923Z] + echo pavics-sdi-master +[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:18:39.924Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-03-07T16:18:39.924Z] + echo finch-master +[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:18:39.924Z] + FINCH_DIR=finch-master +[2024-03-07T16:18:39.924Z] + echo PAVICS-landing-master +[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:18:39.924Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-03-07T16:18:39.924Z] + echo raven-main +[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:18:39.924Z] + RAVEN_DIR=raven-main +[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:18:39.924Z] + echo RavenPy-master +[2024-03-07T16:18:39.924Z] + RAVENPY_DIR=RavenPy-master +[2024-03-07T16:18:39.924Z] + echo esgf-compute-api-devel +[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:18:39.924Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-07T16:18:39.924Z] + echo true +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + VERIFY_SSL=true +[2024-03-07T16:18:39.924Z] + [ xtrue = xfalse ] +[2024-03-07T16:18:39.924Z] + rm -v finch-master/setup.cfg +[2024-03-07T16:18:39.924Z] removed 'finch-master/setup.cfg' +[2024-03-07T16:18:39.924Z] + rm -v raven-main/setup.cfg +[2024-03-07T16:18:39.924Z] removed 'raven-main/setup.cfg' +[2024-03-07T16:18:39.924Z] + rm -v raven-main/pyproject.toml +[2024-03-07T16:18:39.924Z] removed 'raven-main/pyproject.toml' +[2024-03-07T16:18:39.924Z] + rm -v RavenPy-master/setup.cfg +[2024-03-07T16:18:39.924Z] removed 'RavenPy-master/setup.cfg' +[2024-03-07T16:18:39.924Z] + rm -v RavenPy-master/tox.ini +[2024-03-07T16:18:39.924Z] removed 'RavenPy-master/tox.ini' +[2024-03-07T16:18:39.924Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-07T16:18:39.924Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-07T16:18:39.924Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-07T16:18:39.924Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-07T16:18:39.924Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-07T16:18:39.924Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-07T16:18:39.924Z] + echo false +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + TEST_MAGPIE_AUTH=false +[2024-03-07T16:18:39.924Z] + echo false +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + TEST_PAVICS_SDI_REPO=false +[2024-03-07T16:18:39.924Z] + echo false +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-07T16:18:39.924Z] + echo false +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + TEST_FINCH_REPO=false +[2024-03-07T16:18:39.924Z] + echo false +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + TEST_PAVICS_LANDING_REPO=false +[2024-03-07T16:18:39.924Z] + echo true +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + TEST_RAVEN_REPO=true +[2024-03-07T16:18:39.924Z] + echo true +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + TEST_RAVENPY_REPO=true +[2024-03-07T16:18:39.924Z] + echo false +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-07T16:18:39.924Z] + echo true +[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] +[2024-03-07T16:18:39.924Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= +[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] +[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] +[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] +[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] +[2024-03-07T16:18:39.924Z] + [ xtrue = xtrue ] +[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-03-07T16:18:39.924Z] + [ xtrue = xtrue ] +[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] +[2024-03-07T16:18:39.924Z] + [ xtrue = xtrue ] +[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb notebooks/*.ipynb +[2024-03-07T16:18:39.924Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb notebooks/*.ipynb +[2024-03-07T16:18:39.924Z] + [ -n ] +[2024-03-07T16:18:39.924Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-07T16:18:39.924Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-07T16:18:39.924Z] Will run notebooks against pavics.ouranos.ca +[2024-03-07T16:18:39.924Z] + [ -z ] +[2024-03-07T16:18:39.924Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-03-07T16:18:39.924Z] + git diff +[2024-03-07T16:18:39.924Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-07T16:18:39.925Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-03-07T16:18:41.826Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-07T16:18:41.826Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-07T16:18:42.093Z] ============================= test session starts ============================== +[2024-03-07T16:18:42.093Z] platform linux -- Python 3.10.13, pytest-7.4.3, pluggy-1.3.0 +[2024-03-07T16:18:42.093Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 +[2024-03-07T16:18:42.093Z] plugins: anyio-4.0.0, dash-2.14.1, nbval-0.10.0, tornasync-0.6.0.post2, xdist-3.3.1 +[2024-03-07T16:18:42.093Z] collected 260 items +[2024-03-07T16:18:42.093Z] +[2024-03-07T16:18:52.404Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-03-07T16:18:54.350Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 3%] +[2024-03-07T16:19:06.828Z] ...... [ 6%] +[2024-03-07T16:19:08.722Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 8%] +[2024-03-07T16:19:08.722Z] [ 8%] +[2024-03-07T16:19:10.877Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-03-07T16:19:19.096Z] .... [ 11%] +[2024-03-07T16:19:29.063Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 11%] +[2024-03-07T16:19:33.671Z] ....FFFF.FF.F [ 16%] +[2024-03-07T16:20:18.416Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb .......FF [ 20%] +[2024-03-07T16:21:36.886Z] .F [ 21%] +[2024-03-07T16:21:40.744Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 22%] +[2024-03-07T16:21:49.421Z] ..FFFFFFFF....... [ 28%] +[2024-03-07T16:21:56.579Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 29%] +[2024-03-07T16:22:06.651Z] ........... [ 33%] +[2024-03-07T16:22:17.210Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 36%] +[2024-03-07T16:22:22.585Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 36%] +[2024-03-07T16:22:29.730Z] ..... [ 38%] +[2024-03-07T16:22:31.694Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 38%] +[2024-03-07T16:26:37.370Z] ................. [ 45%] +[2024-03-07T16:26:42.627Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 45%] +[2024-03-07T16:26:49.914Z] .... [ 47%] +[2024-03-07T16:27:48.210Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 50%] +[2024-03-07T16:28:01.148Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 51%] +[2024-03-07T16:28:47.066Z] ...... [ 53%] +[2024-03-07T16:28:57.054Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 53%] +[2024-03-07T16:29:07.383Z] ....... [ 56%] +[2024-03-07T16:29:15.304Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 58%] +[2024-03-07T16:29:35.867Z] .... [ 59%] +[2024-03-07T16:29:43.996Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 60%] +[2024-03-07T16:30:08.000Z] ....... [ 62%] +[2024-03-07T16:30:11.284Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 63%] +[2024-03-07T16:30:40.676Z] ....... [ 65%] +[2024-03-07T16:30:43.214Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 67%] +[2024-03-07T16:30:55.526Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 68%] +[2024-03-07T16:31:03.389Z] .... [ 69%] +[2024-03-07T16:32:00.621Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 70%] +[2024-03-07T16:32:26.129Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 73%] +[2024-03-07T16:32:26.129Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 73%] +[2024-03-07T16:32:39.765Z] ............. [ 78%] +[2024-03-07T16:32:57.288Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 80%] +[2024-03-07T16:33:06.431Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 85%] +[2024-03-07T16:33:18.620Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 85%] +[2024-03-07T16:34:35.719Z] ......FFFFFFFFFFFFFF [ 93%] +[2024-03-07T16:34:38.285Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-03-07T16:36:33.237Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] =================================== FAILURES =================================== +[2024-03-07T16:36:33.237Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ +[2024-03-07T16:36:33.237Z] Notebook cell execution failed +[2024-03-07T16:36:33.237Z] Cell 5: Cell execution caused an exception +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] Input: +[2024-03-07T16:36:33.237Z] features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-07T16:36:33.237Z] grid = raster[0] +[2024-03-07T16:36:33.237Z] grid.plot() +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] Traceback: +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.237Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:36:33.237Z] Cell In[1], line 1 +[2024-03-07T16:36:33.237Z] ----> 1 features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-07T16:36:33.237Z]  2 grid = raster[0] +[2024-03-07T16:36:33.237Z]  3 grid.plot() +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-07T16:36:33.237Z]  38 if not self.isSucceded(): +[2024-03-07T16:36:33.237Z]  39 # TODO: add reason for failure +[2024-03-07T16:36:33.237Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-07T16:36:33.237Z] ---> 41 return self._make_output(asobj) +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-07T16:36:33.237Z]  44 Output = namedtuple( +[2024-03-07T16:36:33.237Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:36:33.237Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:36:33.237Z]  47 ) +[2024-03-07T16:36:33.237Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:36:33.237Z]  49 return Output( +[2024-03-07T16:36:33.237Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:36:33.237Z]  51 ) +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-07T16:36:33.237Z]  44 Output = namedtuple( +[2024-03-07T16:36:33.237Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:36:33.237Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:36:33.237Z]  47 ) +[2024-03-07T16:36:33.237Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:36:33.237Z]  49 return Output( +[2024-03-07T16:36:33.237Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:36:33.237Z]  51 ) +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-07T16:36:33.237Z]  68 return delist(data) +[2024-03-07T16:36:33.237Z]  70 if convert_objects: +[2024-03-07T16:36:33.237Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-07T16:36:33.237Z]  72 else: +[2024-03-07T16:36:33.237Z]  73 return output.reference +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) +[2024-03-07T16:36:33.237Z]  374 out = converter.convert() +[2024-03-07T16:36:33.237Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:36:33.237Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-07T16:36:33.237Z]  377 return out +[2024-03-07T16:36:33.237Z]  379 except (ImportError, NotImplementedError): +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) +[2024-03-07T16:36:33.237Z]  374 out = converter.convert() +[2024-03-07T16:36:33.237Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:36:33.237Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-07T16:36:33.237Z]  377 return out +[2024-03-07T16:36:33.237Z]  379 except (ImportError, NotImplementedError): +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-07T16:36:33.237Z]  372 try: +[2024-03-07T16:36:33.237Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-07T16:36:33.237Z] --> 374 out = converter.convert() +[2024-03-07T16:36:33.237Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:36:33.237Z]  376 out = [convert(o, path) for o in out] +[2024-03-07T16:36:33.237Z] +[2024-03-07T16:36:33.238Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-07T16:36:33.238Z]  263 import xarray # isort: skip +[2024-03-07T16:36:33.238Z]  264 import rioxarray # noqa +[2024-03-07T16:36:33.238Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 _ +[2024-03-07T16:36:33.238Z] Notebook cell execution failed +[2024-03-07T16:36:33.238Z] Cell 6: Cell execution caused an exception +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] Input: +[2024-03-07T16:36:33.238Z] lu = statistics[0] +[2024-03-07T16:36:33.238Z] total = sum(lu.values()) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] land_use = {k: (v / total) for (k, v) in lu.items()} +[2024-03-07T16:36:33.238Z] display("Land use ratios", land_use) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} +[2024-03-07T16:36:33.238Z] display("Land use percentages", land_use_pct) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] Traceback: +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.238Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.238Z] Cell In[1], line 1 +[2024-03-07T16:36:33.238Z] ----> 1 lu = statistics[0] +[2024-03-07T16:36:33.238Z]  2 total = sum(lu.values()) +[2024-03-07T16:36:33.238Z]  4 land_use = {k: (v / total) for (k, v) in lu.items()} +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] NameError: name 'statistics' is not defined +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ +[2024-03-07T16:36:33.238Z] Notebook cell execution failed +[2024-03-07T16:36:33.238Z] Cell 7: Cell execution caused an exception +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] Input: +[2024-03-07T16:36:33.238Z] unique, counts = np.unique(grid, return_counts=True) +[2024-03-07T16:36:33.238Z] print("The land-use categories available are: " + str(unique)) +[2024-03-07T16:36:33.238Z] print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] # Pixels values at '127' are NaN and can be ignored. +[2024-03-07T16:36:33.238Z] from matplotlib.colors import Normalize +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] norm = Normalize() +[2024-03-07T16:36:33.238Z] norm.autoscale(unique[:-1]) +[2024-03-07T16:36:33.238Z] cm = mpl.colormaps["tab20"] +[2024-03-07T16:36:33.238Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] # plt.bar(unique[:-1], counts[:-1]) +[2024-03-07T16:36:33.238Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) +[2024-03-07T16:36:33.238Z] plt.xlabel("Land-use categories") +[2024-03-07T16:36:33.238Z] plt.ylabel("Number of pixels") +[2024-03-07T16:36:33.238Z] plt.show() +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") +[2024-03-07T16:36:33.238Z] grid.name = "Land-use categories" +[2024-03-07T16:36:33.238Z] plt.show() +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] Traceback: +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.238Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.238Z] Cell In[1], line 1 +[2024-03-07T16:36:33.238Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) +[2024-03-07T16:36:33.238Z]  2 print("The land-use categories available are: " + str(unique)) +[2024-03-07T16:36:33.238Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] NameError: name 'grid' is not defined +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ +[2024-03-07T16:36:33.238Z] Notebook cell execution failed +[2024-03-07T16:36:33.238Z] Cell 8: Cell execution caused an exception +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] Input: +[2024-03-07T16:36:33.238Z] import cartopy.crs as ccrs +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] # Set a CRS transformation: +[2024-03-07T16:36:33.238Z] crs = ccrs.LambertConformal( +[2024-03-07T16:36:33.238Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-07T16:36:33.238Z] ) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] ax = plt.subplot(projection=crs) +[2024-03-07T16:36:33.238Z] grid.name = "Land-use categories" +[2024-03-07T16:36:33.238Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-07T16:36:33.238Z] plt.show() +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] Traceback: +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.238Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.238Z] Cell In[1], line 9 +[2024-03-07T16:36:33.238Z]  4 crs = ccrs.LambertConformal( +[2024-03-07T16:36:33.238Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-07T16:36:33.238Z]  6 ) +[2024-03-07T16:36:33.238Z]  8 ax = plt.subplot(projection=crs) +[2024-03-07T16:36:33.238Z] ----> 9 grid.name = "Land-use categories" +[2024-03-07T16:36:33.238Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-07T16:36:33.238Z]  11 plt.show() +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] NameError: name 'grid' is not defined +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 _ +[2024-03-07T16:36:33.238Z] Notebook cell execution failed +[2024-03-07T16:36:33.238Z] Cell 10: Cell execution caused an exception +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] Input: +[2024-03-07T16:36:33.238Z] properties, dem = terrain_resp.get(asobj=True) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] elevation = properties[0]["elevation"] +[2024-03-07T16:36:33.238Z] slope = properties[0]["slope"] +[2024-03-07T16:36:33.238Z] aspect = properties[0]["aspect"] +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} +[2024-03-07T16:36:33.238Z] display(terrain) +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] Traceback: +[2024-03-07T16:36:33.238Z] +[2024-03-07T16:36:33.238Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.238Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:36:33.238Z] Cell In[1], line 1 +[2024-03-07T16:36:33.239Z] ----> 1 properties, dem = terrain_resp.get(asobj=True) +[2024-03-07T16:36:33.239Z]  3 elevation = properties[0]["elevation"] +[2024-03-07T16:36:33.239Z]  4 slope = properties[0]["slope"] +[2024-03-07T16:36:33.239Z] +[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-07T16:36:33.239Z]  38 if not self.isSucceded(): +[2024-03-07T16:36:33.239Z]  39 # TODO: add reason for failure +[2024-03-07T16:36:33.239Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-07T16:36:33.239Z] ---> 41 return self._make_output(asobj) +[2024-03-07T16:36:33.239Z] +[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-07T16:36:33.239Z]  44 Output = namedtuple( +[2024-03-07T16:36:33.239Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:36:33.239Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:36:33.239Z]  47 ) +[2024-03-07T16:36:33.239Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:36:33.239Z]  49 return Output( +[2024-03-07T16:36:33.239Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:36:33.239Z]  51 ) +[2024-03-07T16:36:33.239Z] +[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-07T16:36:33.239Z]  44 Output = namedtuple( +[2024-03-07T16:36:33.239Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:36:33.239Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:36:33.239Z]  47 ) +[2024-03-07T16:36:33.239Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:36:33.239Z]  49 return Output( +[2024-03-07T16:36:33.239Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:36:33.239Z]  51 ) +[2024-03-07T16:36:33.239Z] +[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-07T16:36:33.239Z]  68 return delist(data) +[2024-03-07T16:36:33.239Z]  70 if convert_objects: +[2024-03-07T16:36:33.239Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-07T16:36:33.239Z]  72 else: +[2024-03-07T16:36:33.239Z]  73 return output.reference +[2024-03-07T16:36:33.239Z] +[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-07T16:36:33.239Z]  372 try: +[2024-03-07T16:36:33.239Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-07T16:36:33.239Z] --> 374 out = converter.convert() +[2024-03-07T16:36:33.239Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:36:33.239Z]  376 out = [convert(o, path) for o in out] +[2024-03-07T16:36:33.239Z] +[2024-03-07T16:36:33.240Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-07T16:36:33.240Z]  263 import xarray # isort: skip +[2024-03-07T16:36:33.240Z]  264 import rioxarray # noqa +[2024-03-07T16:36:33.240Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ +[2024-03-07T16:36:33.240Z] Notebook cell execution failed +[2024-03-07T16:36:33.240Z] Cell 11: Cell execution caused an exception +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] Input: +[2024-03-07T16:36:33.240Z] crs = ccrs.LambertConformal( +[2024-03-07T16:36:33.240Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-07T16:36:33.240Z] ) +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] dem.name = "Elevation" +[2024-03-07T16:36:33.240Z] dem.attrs["units"] = "m" +[2024-03-07T16:36:33.240Z] ax = plt.subplot(projection=crs) +[2024-03-07T16:36:33.240Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") +[2024-03-07T16:36:33.240Z] plt.show() +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] Traceback: +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.240Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.240Z] Cell In[1], line 5 +[2024-03-07T16:36:33.240Z]  1 crs = ccrs.LambertConformal( +[2024-03-07T16:36:33.240Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-07T16:36:33.240Z]  3 ) +[2024-03-07T16:36:33.240Z] ----> 5 dem.name = "Elevation" +[2024-03-07T16:36:33.240Z]  6 dem.attrs["units"] = "m" +[2024-03-07T16:36:33.240Z]  7 ax = plt.subplot(projection=crs) +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] NameError: name 'dem' is not defined +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 _ +[2024-03-07T16:36:33.240Z] Notebook cell execution failed +[2024-03-07T16:36:33.240Z] Cell 13: Cell execution caused an exception +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] Input: +[2024-03-07T16:36:33.240Z] all_properties = {**shape_info, **land_use, **terrain} +[2024-03-07T16:36:33.240Z] display(all_properties) +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] Traceback: +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.240Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.240Z] Cell In[1], line 1 +[2024-03-07T16:36:33.240Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} +[2024-03-07T16:36:33.240Z]  2 display(all_properties) +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] NameError: name 'land_use' is not defined +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] ____ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 7 ____ +[2024-03-07T16:36:33.240Z] Notebook cell execution failed +[2024-03-07T16:36:33.240Z] Cell 7: Cell execution caused an exception +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] Input: +[2024-03-07T16:36:33.240Z] with xr.set_options(keep_attrs=True): +[2024-03-07T16:36:33.240Z] # Average the variables +[2024-03-07T16:36:33.240Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-03-07T16:36:33.240Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-03-07T16:36:33.240Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-07T16:36:33.240Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-07T16:36:33.240Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-07T16:36:33.240Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-03-07T16:36:33.240Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] Traceback: +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.240Z] KeyError Traceback (most recent call last) +[2024-03-07T16:36:33.240Z] Cell In[1], line 8 +[2024-03-07T16:36:33.240Z]  5 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-07T16:36:33.240Z]  7 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-07T16:36:33.240Z] ----> 8 ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-07T16:36:33.240Z]  10 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-07T16:36:33.240Z]  11 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-07T16:36:33.240Z] +[2024-03-07T16:36:33.240Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-03-07T16:36:33.240Z]  851 self.coords[key] = value +[2024-03-07T16:36:33.240Z]  852 else: +[2024-03-07T16:36:33.240Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-03-07T16:36:33.240Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-03-07T16:36:33.241Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-03-07T16:36:33.241Z] --> 856 obj = self[key] +[2024-03-07T16:36:33.241Z]  857 if isinstance(value, DataArray): +[2024-03-07T16:36:33.241Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-03-07T16:36:33.241Z] +[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-03-07T16:36:33.241Z]  844 return self._getitem_coord(key) +[2024-03-07T16:36:33.241Z]  845 else: +[2024-03-07T16:36:33.241Z]  846 # xarray-style array indexing +[2024-03-07T16:36:33.241Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-03-07T16:36:33.241Z] +[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-03-07T16:36:33.241Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-03-07T16:36:33.241Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-03-07T16:36:33.241Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-03-07T16:36:33.241Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-03-07T16:36:33.241Z]  1447  ) +[2024-03-07T16:36:33.241Z]  1448 return self._from_temp_dataset(ds) +[2024-03-07T16:36:33.241Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-03-07T16:36:33.241Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-03-07T16:36:33.241Z] +[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-03-07T16:36:33.241Z]  2926 var_indexers = { +[2024-03-07T16:36:33.241Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-03-07T16:36:33.241Z]  2928 } +[2024-03-07T16:36:33.241Z]  2929 if var_indexers: +[2024-03-07T16:36:33.241Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-03-07T16:36:33.241Z]  2931 # drop scalar coordinates +[2024-03-07T16:36:33.241Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-03-07T16:36:33.241Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-03-07T16:36:33.241Z] +[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-03-07T16:36:33.241Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-03-07T16:36:33.241Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-03-07T16:36:33.241Z] -> 1368 return self[key] +[2024-03-07T16:36:33.241Z] +[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-03-07T16:36:33.241Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-03-07T16:36:33.241Z]  879  """Return a new Variable object whose contents are consistent with +[2024-03-07T16:36:33.241Z]  880  getting the provided key from the underlying data. +[2024-03-07T16:36:33.241Z]  881 +[2024-03-07T16:36:33.241Z]  (...) +[2024-03-07T16:36:33.241Z]  889  array `x.values` directly. +[2024-03-07T16:36:33.241Z]  890  """ +[2024-03-07T16:36:33.241Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-03-07T16:36:33.241Z]  892 data = as_indexable(self._data)[indexer] +[2024-03-07T16:36:33.241Z]  893 if new_order: +[2024-03-07T16:36:33.241Z] +[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-03-07T16:36:33.241Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-03-07T16:36:33.241Z]  722 return self._broadcast_indexes_basic(key) +[2024-03-07T16:36:33.241Z] --> 724 self._validate_indexers(key) +[2024-03-07T16:36:33.241Z]  725 # Detect it can be mapped as an outer indexer +[2024-03-07T16:36:33.241Z]  726 # If all key is unlabeled, or +[2024-03-07T16:36:33.241Z]  727 # key can be mapped as an OuterIndexer. +[2024-03-07T16:36:33.241Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-03-07T16:36:33.241Z] +[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-03-07T16:36:33.241Z]  771 raise IndexError( +[2024-03-07T16:36:33.241Z]  772 "{}-dimensional boolean indexing is " +[2024-03-07T16:36:33.241Z]  773 "not supported. ".format(k.ndim) +[2024-03-07T16:36:33.241Z]  774 ) +[2024-03-07T16:36:33.241Z]  775 if is_duck_dask_array(k.data): +[2024-03-07T16:36:33.241Z] --> 776 raise KeyError( +[2024-03-07T16:36:33.241Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-03-07T16:36:33.242Z]  778 "This will result in a dask array of unknown shape. " +[2024-03-07T16:36:33.242Z]  779 "Such arrays are unsupported by Xarray." +[2024-03-07T16:36:33.242Z]  780 "Please compute the indexer first using .compute()" +[2024-03-07T16:36:33.242Z]  781 ) +[2024-03-07T16:36:33.242Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-03-07T16:36:33.242Z]  783 raise IndexError( +[2024-03-07T16:36:33.242Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-03-07T16:36:33.242Z]  785 "same dimension to the indexed array. Indexer is " +[2024-03-07T16:36:33.242Z]  (...) +[2024-03-07T16:36:33.242Z]  788 ) +[2024-03-07T16:36:33.242Z]  789 ) +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] ____ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 8 ____ +[2024-03-07T16:36:33.242Z] Notebook cell execution failed +[2024-03-07T16:36:33.242Z] Cell 8: Cell execution caused an exception +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] Input: +[2024-03-07T16:36:33.242Z] # Check and see if the precipitation makes sense: +[2024-03-07T16:36:33.242Z] ERA5_pr.pr.plot() +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] Traceback: +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.242Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:36:33.242Z] Cell In[1], line 2 +[2024-03-07T16:36:33.242Z]  1 # Check and see if the precipitation makes sense: +[2024-03-07T16:36:33.242Z] ----> 2 ERA5_pr.pr.plot() +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-03-07T16:36:33.242Z]  275 with suppress(KeyError): +[2024-03-07T16:36:33.242Z]  276 return source[name] +[2024-03-07T16:36:33.242Z] --> 277 raise AttributeError( +[2024-03-07T16:36:33.242Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-03-07T16:36:33.242Z]  279 ) +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] AttributeError: 'DataArray' object has no attribute 'pr' +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] ___ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 10 ____ +[2024-03-07T16:36:33.242Z] Notebook cell execution failed +[2024-03-07T16:36:33.242Z] Cell 10: Cell execution caused an exception +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] Input: +[2024-03-07T16:36:33.242Z] # Option 2, which is recommended, in which we prepare a single file that merges all three variables into one netcdf file: +[2024-03-07T16:36:33.242Z] with xr.set_options(keep_attrs=True): +[2024-03-07T16:36:33.242Z] xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]).to_netcdf(tmp / "ERA5_weather_data.nc") +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] Traceback: +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.242Z] MergeError Traceback (most recent call last) +[2024-03-07T16:36:33.242Z] Cell In[1], line 3 +[2024-03-07T16:36:33.242Z]  1 # Option 2, which is recommended, in which we prepare a single file that merges all three variables into one netcdf file: +[2024-03-07T16:36:33.242Z]  2 with xr.set_options(keep_attrs=True): +[2024-03-07T16:36:33.242Z] ----> 3 xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]).to_netcdf(tmp / "ERA5_weather_data.nc") +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:992, in merge(objects, compat, join, fill_value, combine_attrs) +[2024-03-07T16:36:33.242Z]  989 obj = obj.to_dataset() +[2024-03-07T16:36:33.242Z]  990 dict_like_objects.append(obj) +[2024-03-07T16:36:33.242Z] --> 992 merge_result = merge_core( +[2024-03-07T16:36:33.242Z]  993  dict_like_objects, +[2024-03-07T16:36:33.242Z]  994  compat, +[2024-03-07T16:36:33.242Z]  995  join, +[2024-03-07T16:36:33.242Z]  996  combine_attrs=combine_attrs, +[2024-03-07T16:36:33.242Z]  997  fill_value=fill_value, +[2024-03-07T16:36:33.242Z]  998 ) +[2024-03-07T16:36:33.242Z]  999 return Dataset._construct_direct(**merge_result._asdict()) +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:719, in merge_core(objects, compat, join, combine_attrs, priority_arg, explicit_coords, indexes, fill_value, skip_align_args) +[2024-03-07T16:36:33.242Z]  717 collected = collect_variables_and_indexes(aligned, indexes=indexes) +[2024-03-07T16:36:33.242Z]  718 prioritized = _get_priority_vars_and_indexes(aligned, priority_arg, compat=compat) +[2024-03-07T16:36:33.242Z] --> 719 variables, out_indexes = merge_collected( +[2024-03-07T16:36:33.242Z]  720  collected, prioritized, compat=compat, combine_attrs=combine_attrs +[2024-03-07T16:36:33.242Z]  721 ) +[2024-03-07T16:36:33.242Z]  723 dims = calculate_dimensions(variables) +[2024-03-07T16:36:33.242Z]  725 coord_names, noncoord_names = determine_coords(coerced) +[2024-03-07T16:36:33.242Z] +[2024-03-07T16:36:33.242Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:290, in merge_collected(grouped, prioritized, compat, combine_attrs, equals) +[2024-03-07T16:36:33.242Z]  288 variables = [variable for variable, _ in elements_list] +[2024-03-07T16:36:33.242Z]  289 try: +[2024-03-07T16:36:33.242Z] --> 290 merged_vars[name] = unique_variable( +[2024-03-07T16:36:33.242Z]  291  name, variables, compat, equals.get(name, None) +[2024-03-07T16:36:33.242Z]  292  ) +[2024-03-07T16:36:33.243Z]  293 except MergeError: +[2024-03-07T16:36:33.243Z]  294 if compat != "minimal": +[2024-03-07T16:36:33.243Z]  295 # we need more than "minimal" compatibility (for which +[2024-03-07T16:36:33.243Z]  296 # we drop conflicting coordinates) +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:144, in unique_variable(name, variables, compat, equals) +[2024-03-07T16:36:33.243Z]  141 break +[2024-03-07T16:36:33.243Z]  143 if not equals: +[2024-03-07T16:36:33.243Z] --> 144 raise MergeError( +[2024-03-07T16:36:33.243Z]  145 f"conflicting values for variable {name!r} on objects to be combined. " +[2024-03-07T16:36:33.243Z]  146 "You can skip this check by specifying compat='override'." +[2024-03-07T16:36:33.243Z]  147 ) +[2024-03-07T16:36:33.243Z]  149 if combine_method: +[2024-03-07T16:36:33.243Z]  150 for var in variables[1:]: +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] MergeError: conflicting values for variable 't2m' on objects to be combined. You can skip this check by specifying compat='override'. +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-03-07T16:36:33.243Z] Notebook cell execution failed +[2024-03-07T16:36:33.243Z] Cell 5: Cell execution caused an exception +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] Input: +[2024-03-07T16:36:33.243Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-03-07T16:36:33.243Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-03-07T16:36:33.243Z] from ravenpy import OutputReader +[2024-03-07T16:36:33.243Z] from ravenpy.ravenpy import run +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-03-07T16:36:33.243Z] run_name = run_name +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-03-07T16:36:33.243Z] # subfolder called "outputs" +[2024-03-07T16:36:33.243Z] configdir = workdir +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-07T16:36:33.243Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] # Get the outputs using the Output Reader object. +[2024-03-07T16:36:33.243Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] Traceback: +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.243Z] RavenError Traceback (most recent call last) +[2024-03-07T16:36:33.243Z] Cell In[1], line 14 +[2024-03-07T16:36:33.243Z]  11 configdir = workdir +[2024-03-07T16:36:33.243Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-07T16:36:33.243Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-07T16:36:33.243Z]  16 # Get the outputs using the Output Reader object. +[2024-03-07T16:36:33.243Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-07T16:36:33.243Z]  320 warn(msg, category=RavenWarning) +[2024-03-07T16:36:33.243Z]  322 if messages["ERROR"]: +[2024-03-07T16:36:33.243Z] --> 323 raise RavenError( +[2024-03-07T16:36:33.243Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-07T16:36:33.243Z]  325 ) +[2024-03-07T16:36:33.243Z]  327 if returncode != 0: +[2024-03-07T16:36:33.243Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] RavenError: Config directory: /tmp/NB4bks_mu30 +[2024-03-07T16:36:33.243Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-03-07T16:36:33.243Z] Notebook cell execution failed +[2024-03-07T16:36:33.243Z] Cell 6: Cell execution caused an exception +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] Input: +[2024-03-07T16:36:33.243Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-03-07T16:36:33.243Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-03-07T16:36:33.243Z] from ravenpy import Emulator +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] # Prepare the emulator by writing files on disk +[2024-03-07T16:36:33.243Z] e = Emulator(config=m) +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] # Run the model and get the outputs. +[2024-03-07T16:36:33.243Z] outputs = e.run() +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] Traceback: +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.243Z] RavenError Traceback (most recent call last) +[2024-03-07T16:36:33.243Z] Cell In[1], line 9 +[2024-03-07T16:36:33.243Z]  6 e = Emulator(config=m) +[2024-03-07T16:36:33.243Z]  8 # Run the model and get the outputs. +[2024-03-07T16:36:33.243Z] ----> 9 outputs = e.run() +[2024-03-07T16:36:33.243Z] +[2024-03-07T16:36:33.243Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-03-07T16:36:33.243Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-03-07T16:36:33.243Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-03-07T16:36:33.243Z]  66 self.write_rv(overwrite=overwrite) +[2024-03-07T16:36:33.243Z] ---> 68 self._output_path = run( +[2024-03-07T16:36:33.244Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-03-07T16:36:33.244Z]  70 ) +[2024-03-07T16:36:33.244Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-03-07T16:36:33.244Z]  72 return self._output +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-07T16:36:33.244Z]  320 warn(msg, category=RavenWarning) +[2024-03-07T16:36:33.244Z]  322 if messages["ERROR"]: +[2024-03-07T16:36:33.244Z] --> 323 raise RavenError( +[2024-03-07T16:36:33.244Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-07T16:36:33.244Z]  325 ) +[2024-03-07T16:36:33.244Z]  327 if returncode != 0: +[2024-03-07T16:36:33.244Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] RavenError: Config directory: /tmp/tmpdnqk_sqj +[2024-03-07T16:36:33.244Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-03-07T16:36:33.244Z] Notebook cell execution failed +[2024-03-07T16:36:33.244Z] Cell 7: Cell execution caused an exception +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Input: +[2024-03-07T16:36:33.244Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-07T16:36:33.244Z] outputs.files +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Traceback: +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.244Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.244Z] Cell In[1], line 2 +[2024-03-07T16:36:33.244Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-07T16:36:33.244Z] ----> 2 outputs.files +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] NameError: name 'outputs' is not defined +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-03-07T16:36:33.244Z] Notebook cell execution failed +[2024-03-07T16:36:33.244Z] Cell 8: Cell execution caused an exception +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Input: +[2024-03-07T16:36:33.244Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-07T16:36:33.244Z] print("----------------HYDROGRAPH----------------") +[2024-03-07T16:36:33.244Z] display(outputs.hydrograph) +[2024-03-07T16:36:33.244Z] print("") +[2024-03-07T16:36:33.244Z] print("-----------------STORAGE------------------") +[2024-03-07T16:36:33.244Z] display(outputs.storage) +[2024-03-07T16:36:33.244Z] print("") +[2024-03-07T16:36:33.244Z] print("-----------------SOLUTION-----------------") +[2024-03-07T16:36:33.244Z] display(outputs.solution) +[2024-03-07T16:36:33.244Z] print("") +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Traceback: +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.244Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.244Z] Cell In[1], line 3 +[2024-03-07T16:36:33.244Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-07T16:36:33.244Z]  2 print("----------------HYDROGRAPH----------------") +[2024-03-07T16:36:33.244Z] ----> 3 display(outputs.hydrograph) +[2024-03-07T16:36:33.244Z]  4 print("") +[2024-03-07T16:36:33.244Z]  5 print("-----------------STORAGE------------------") +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] NameError: name 'outputs' is not defined +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-03-07T16:36:33.244Z] Notebook cell execution failed +[2024-03-07T16:36:33.244Z] Cell 9: Cell execution caused an exception +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Input: +[2024-03-07T16:36:33.244Z] # Import the graphing utility built to handle Raven model outputs +[2024-03-07T16:36:33.244Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] hydrograph_objects = outputs.hydrograph +[2024-03-07T16:36:33.244Z] hydrographs(hydrograph_objects) +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Traceback: +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.244Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.244Z] Cell In[1], line 4 +[2024-03-07T16:36:33.244Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-03-07T16:36:33.244Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-07T16:36:33.244Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-03-07T16:36:33.244Z]  5 hydrographs(hydrograph_objects) +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] NameError: name 'outputs' is not defined +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-03-07T16:36:33.244Z] Notebook cell execution failed +[2024-03-07T16:36:33.244Z] Cell 10: Cell execution caused an exception +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Input: +[2024-03-07T16:36:33.244Z] outputs.hydrograph.q_sim.plot() +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Traceback: +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.244Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.244Z] Cell In[1], line 1 +[2024-03-07T16:36:33.244Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] NameError: name 'outputs' is not defined +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-03-07T16:36:33.244Z] Notebook cell execution failed +[2024-03-07T16:36:33.244Z] Cell 11: Cell execution caused an exception +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Input: +[2024-03-07T16:36:33.244Z] print(list(outputs.storage.keys())) +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] Traceback: +[2024-03-07T16:36:33.244Z] +[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.245Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.245Z] Cell In[1], line 1 +[2024-03-07T16:36:33.245Z] ----> 1 print(list(outputs.storage.keys())) +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] NameError: name 'outputs' is not defined +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-03-07T16:36:33.245Z] Notebook cell execution failed +[2024-03-07T16:36:33.245Z] Cell 12: Cell execution caused an exception +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] Input: +[2024-03-07T16:36:33.245Z] # Plot the "Snow" variable +[2024-03-07T16:36:33.245Z] outputs.storage["Snow"].plot() +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] Traceback: +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.245Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.245Z] Cell In[1], line 2 +[2024-03-07T16:36:33.245Z]  1 # Plot the "Snow" variable +[2024-03-07T16:36:33.245Z] ----> 2 outputs.storage["Snow"].plot() +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] NameError: name 'outputs' is not defined +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ +[2024-03-07T16:36:33.245Z] Notebook cell execution failed +[2024-03-07T16:36:33.245Z] Cell 0: Cell execution caused an exception +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] Input: +[2024-03-07T16:36:33.245Z] import os +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] from hsclient import HydroShare, Token +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] # Authentication method using username and password +[2024-03-07T16:36:33.245Z] """ +[2024-03-07T16:36:33.245Z] username = 'XXXXX' +[2024-03-07T16:36:33.245Z] password = 'XXXXX' +[2024-03-07T16:36:33.245Z] hs = HydroShare(username=username, password=password) +[2024-03-07T16:36:33.245Z] """ +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-03-07T16:36:33.245Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] token = Token(access_token=access_token, token_type="bearer") +[2024-03-07T16:36:33.245Z] hs = HydroShare(client_id=client_id, token=token) +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] Traceback: +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.245Z] PydanticUserError Traceback (most recent call last) +[2024-03-07T16:36:33.245Z] Cell In[1], line 3 +[2024-03-07T16:36:33.245Z]  1 import os +[2024-03-07T16:36:33.245Z] ----> 3 from hsclient import HydroShare, Token +[2024-03-07T16:36:33.245Z]  5 # Authentication method using username and password +[2024-03-07T16:36:33.245Z]  6 """ +[2024-03-07T16:36:33.245Z]  7 username = 'XXXXX' +[2024-03-07T16:36:33.245Z]  8 password = 'XXXXX' +[2024-03-07T16:36:33.245Z]  9 hs = HydroShare(username=username, password=password) +[2024-03-07T16:36:33.245Z]  10 """ +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsclient/__init__.py:1 +[2024-03-07T16:36:33.245Z] ----> 1 from hsclient.hydroshare import ( +[2024-03-07T16:36:33.245Z]  2 Aggregation, +[2024-03-07T16:36:33.245Z]  3 File, +[2024-03-07T16:36:33.245Z]  4 HydroShare, +[2024-03-07T16:36:33.245Z]  5 Resource, +[2024-03-07T16:36:33.245Z]  6 NetCDFAggregation, +[2024-03-07T16:36:33.245Z]  7 TimeseriesAggregation, +[2024-03-07T16:36:33.245Z]  8 GeoRasterAggregation, +[2024-03-07T16:36:33.245Z]  9 GeoFeatureAggregation, +[2024-03-07T16:36:33.245Z]  10 ) +[2024-03-07T16:36:33.245Z]  11 from hsclient.oauth2_model import Token +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsclient/hydroshare.py:46 +[2024-03-07T16:36:33.245Z]  42 xarray = None +[2024-03-07T16:36:33.245Z]  44 import requests +[2024-03-07T16:36:33.245Z] ---> 46 from hsmodels.schemas import load_rdf, rdf_string +[2024-03-07T16:36:33.245Z]  47 from hsmodels.schemas.base_models import BaseMetadata +[2024-03-07T16:36:33.245Z]  48 from hsmodels.schemas.enums import AggregationType +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsmodels/schemas/__init__.py:8 +[2024-03-07T16:36:33.245Z]  5 from rdflib import Graph, Literal, URIRef +[2024-03-07T16:36:33.245Z]  7 from hsmodels.namespaces import DC, HSTERMS, ORE, RDF, RDFS1 +[2024-03-07T16:36:33.245Z] ----> 8 from hsmodels.schemas.aggregations import ( +[2024-03-07T16:36:33.245Z]  9 FileSetMetadata, +[2024-03-07T16:36:33.245Z]  10 GeographicFeatureMetadata, +[2024-03-07T16:36:33.245Z]  11 GeographicRasterMetadata, +[2024-03-07T16:36:33.245Z]  12 ModelInstanceMetadata, +[2024-03-07T16:36:33.245Z]  13 ModelProgramMetadata, +[2024-03-07T16:36:33.245Z]  14 MultidimensionalMetadata, +[2024-03-07T16:36:33.245Z]  15 ReferencedTimeSeriesMetadata, +[2024-03-07T16:36:33.245Z]  16 SingleFileMetadata, +[2024-03-07T16:36:33.245Z]  17 TimeSeriesMetadata, +[2024-03-07T16:36:33.245Z]  18 ) +[2024-03-07T16:36:33.245Z]  19 from hsmodels.schemas.enums import TermEnum +[2024-03-07T16:36:33.245Z]  20 from hsmodels.schemas.rdf.aggregations import ( +[2024-03-07T16:36:33.245Z]  21 FileSetMetadataInRDF, +[2024-03-07T16:36:33.245Z]  22 GeographicFeatureMetadataInRDF, +[2024-03-07T16:36:33.245Z]  (...) +[2024-03-07T16:36:33.245Z]  29 TimeSeriesMetadataInRDF, +[2024-03-07T16:36:33.245Z]  30 ) +[2024-03-07T16:36:33.245Z] +[2024-03-07T16:36:33.245Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsmodels/schemas/aggregations.py:8 +[2024-03-07T16:36:33.245Z]  6 from hsmodels.schemas.base_models import BaseMetadata +[2024-03-07T16:36:33.245Z]  7 from hsmodels.schemas.enums import AggregationType +[2024-03-07T16:36:33.245Z] ----> 8 from hsmodels.schemas.fields import ( +[2024-03-07T16:36:33.245Z]  9 BandInformation, +[2024-03-07T16:36:33.245Z]  10 BoxCoverage, +[2024-03-07T16:36:33.246Z]  11 BoxSpatialReference, +[2024-03-07T16:36:33.246Z]  12 CellInformation, +[2024-03-07T16:36:33.246Z]  13 FieldInformation, +[2024-03-07T16:36:33.246Z]  14 GeometryInformation, +[2024-03-07T16:36:33.246Z]  15 ModelProgramFile, +[2024-03-07T16:36:33.246Z]  16 MultidimensionalBoxSpatialReference, +[2024-03-07T16:36:33.246Z]  17 MultidimensionalPointSpatialReference, +[2024-03-07T16:36:33.246Z]  18 PeriodCoverage, +[2024-03-07T16:36:33.246Z]  19 PointCoverage, +[2024-03-07T16:36:33.246Z]  20 PointSpatialReference, +[2024-03-07T16:36:33.246Z]  21 Rights, +[2024-03-07T16:36:33.246Z]  22 TimeSeriesResult, +[2024-03-07T16:36:33.246Z]  23 Variable, +[2024-03-07T16:36:33.246Z]  24 ) +[2024-03-07T16:36:33.246Z]  25 from hsmodels.schemas.rdf.validators import language_constraint, subjects_constraint +[2024-03-07T16:36:33.246Z]  26 from hsmodels.schemas.root_validators import ( +[2024-03-07T16:36:33.246Z]  27 normalize_additional_metadata, +[2024-03-07T16:36:33.246Z]  28 parse_abstract, +[2024-03-07T16:36:33.246Z]  (...) +[2024-03-07T16:36:33.246Z]  32 split_coverages, +[2024-03-07T16:36:33.246Z]  33 ) +[2024-03-07T16:36:33.246Z] +[2024-03-07T16:36:33.246Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsmodels/schemas/fields.py:677 +[2024-03-07T16:36:33.246Z]  669 utc_offset: float = Field( +[2024-03-07T16:36:33.246Z]  670 default=None, +[2024-03-07T16:36:33.246Z]  671 title="UTC Offset", +[2024-03-07T16:36:33.246Z]  672 description="A floating point value that represents the time offset from UTC time in hours associated with the time series result value timestamps", +[2024-03-07T16:36:33.246Z]  673 ) +[2024-03-07T16:36:33.246Z]  674 _parse_utc_offset = root_validator(pre=True, allow_reuse=True)(parse_utc_offset_value) +[2024-03-07T16:36:33.246Z] --> 677 class BoxCoverage(base_models.BaseCoverage): +[2024-03-07T16:36:33.246Z]  678  """ +[2024-03-07T16:36:33.246Z]  679  A class used to represent geographic coverage metadata for a resource or aggregation expressed as a +[2024-03-07T16:36:33.246Z]  680  latitude-longitude bounding box +[2024-03-07T16:36:33.246Z]  681  """ +[2024-03-07T16:36:33.246Z]  683 class Config: +[2024-03-07T16:36:33.246Z] +[2024-03-07T16:36:33.246Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsmodels/schemas/fields.py:688, in BoxCoverage() +[2024-03-07T16:36:33.246Z]  684 title = 'Box Coverage Metadata' +[2024-03-07T16:36:33.246Z]  686 schema_config = {'read_only': ['type']} +[2024-03-07T16:36:33.246Z] --> 688 type: str = Field( +[2024-03-07T16:36:33.246Z]  689  default="box", +[2024-03-07T16:36:33.246Z]  690  const=True, +[2024-03-07T16:36:33.246Z]  691  title="Geographic coverage type", +[2024-03-07T16:36:33.246Z]  692  description="A string containing the type of geographic coverage", +[2024-03-07T16:36:33.246Z]  693  allow_mutation=False, +[2024-03-07T16:36:33.246Z]  694 ) +[2024-03-07T16:36:33.246Z]  695 name: str = Field( +[2024-03-07T16:36:33.246Z]  696 default=None, +[2024-03-07T16:36:33.246Z]  697 title="Name", +[2024-03-07T16:36:33.246Z]  698 description="A string containing a name for the place associated with the geographic coverage", +[2024-03-07T16:36:33.246Z]  699 ) +[2024-03-07T16:36:33.246Z]  700 northlimit: float = Field( +[2024-03-07T16:36:33.246Z]  701 gt=-90, +[2024-03-07T16:36:33.246Z]  702 lt=90, +[2024-03-07T16:36:33.246Z]  703 title="North limit", +[2024-03-07T16:36:33.246Z]  704 description="A floating point value containing the constant coordinate for the northernmost face or edge of the bounding box", +[2024-03-07T16:36:33.246Z]  705 ) +[2024-03-07T16:36:33.246Z] +[2024-03-07T16:36:33.246Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/fields.py:719, in Field(default, default_factory, alias, alias_priority, validation_alias, serialization_alias, title, description, examples, exclude, discriminator, json_schema_extra, frozen, validate_default, repr, init, init_var, kw_only, pattern, strict, gt, ge, lt, le, multiple_of, allow_inf_nan, max_digits, decimal_places, min_length, max_length, union_mode, **extra) +[2024-03-07T16:36:33.246Z]  717 const = extra.pop('const', None) # type: ignore +[2024-03-07T16:36:33.246Z]  718 if const is not None: +[2024-03-07T16:36:33.246Z] --> 719 raise PydanticUserError('`const` is removed, use `Literal` instead', code='removed-kwargs') +[2024-03-07T16:36:33.246Z]  721 min_items = extra.pop('min_items', None) # type: ignore +[2024-03-07T16:36:33.247Z]  722 if min_items is not None: +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] PydanticUserError: `const` is removed, use `Literal` instead +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] For further information visit https://errors.pydantic.dev/2.6/u/removed-kwargs +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 ______ +[2024-03-07T16:36:33.247Z] Notebook cell execution failed +[2024-03-07T16:36:33.247Z] Cell 1: Cell execution caused an exception +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] Input: +[2024-03-07T16:36:33.247Z] results = hs.search(subject=["Harvey"]) +[2024-03-07T16:36:33.247Z] for r in results: +[2024-03-07T16:36:33.247Z] print(r.resource_title, ": ", r.resource_id) +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] Traceback: +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.247Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.247Z] Cell In[1], line 1 +[2024-03-07T16:36:33.247Z] ----> 1 results = hs.search(subject=["Harvey"]) +[2024-03-07T16:36:33.247Z]  2 for r in results: +[2024-03-07T16:36:33.247Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] NameError: name 'hs' is not defined +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ +[2024-03-07T16:36:33.247Z] Notebook cell execution failed +[2024-03-07T16:36:33.247Z] Cell 2: Cell execution caused an exception +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] Input: +[2024-03-07T16:36:33.247Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-07T16:36:33.247Z] res.files() +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] Traceback: +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.247Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.247Z] Cell In[1], line 1 +[2024-03-07T16:36:33.247Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-07T16:36:33.247Z]  2 res.files() +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] NameError: name 'hs' is not defined +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ +[2024-03-07T16:36:33.247Z] Notebook cell execution failed +[2024-03-07T16:36:33.247Z] Cell 3: Cell execution caused an exception +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] Input: +[2024-03-07T16:36:33.247Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] Traceback: +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.247Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.247Z] Cell In[1], line 1 +[2024-03-07T16:36:33.247Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] NameError: name 'res' is not defined +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 _ +[2024-03-07T16:36:33.247Z] Notebook cell execution failed +[2024-03-07T16:36:33.247Z] Cell 7: Cell execution caused an exception +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] Input: +[2024-03-07T16:36:33.247Z] features, statistics, grid0 = stats_resp.get(asobj=True) +[2024-03-07T16:36:33.247Z] lu = statistics[0] +[2024-03-07T16:36:33.247Z] total = sum(lu.values()) +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] land_use = {k: (v / total) for (k, v) in lu.items()} +[2024-03-07T16:36:33.247Z] display("Land use ratios", land_use) +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} +[2024-03-07T16:36:33.247Z] display("Land use percentages", land_use_pct) +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] Traceback: +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.247Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:36:33.247Z] Cell In[1], line 1 +[2024-03-07T16:36:33.247Z] ----> 1 features, statistics, grid0 = stats_resp.get(asobj=True) +[2024-03-07T16:36:33.247Z]  2 lu = statistics[0] +[2024-03-07T16:36:33.247Z]  3 total = sum(lu.values()) +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-07T16:36:33.247Z]  38 if not self.isSucceded(): +[2024-03-07T16:36:33.247Z]  39 # TODO: add reason for failure +[2024-03-07T16:36:33.247Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-07T16:36:33.247Z] ---> 41 return self._make_output(asobj) +[2024-03-07T16:36:33.247Z] +[2024-03-07T16:36:33.247Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-07T16:36:33.247Z]  44 Output = namedtuple( +[2024-03-07T16:36:33.247Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:36:33.247Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:36:33.247Z]  47 ) +[2024-03-07T16:36:33.247Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:36:33.247Z]  49 return Output( +[2024-03-07T16:36:33.248Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:36:33.248Z]  51 ) +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-07T16:36:33.248Z]  44 Output = namedtuple( +[2024-03-07T16:36:33.248Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:36:33.248Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:36:33.248Z]  47 ) +[2024-03-07T16:36:33.248Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:36:33.248Z]  49 return Output( +[2024-03-07T16:36:33.248Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:36:33.248Z]  51 ) +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-07T16:36:33.248Z]  68 return delist(data) +[2024-03-07T16:36:33.248Z]  70 if convert_objects: +[2024-03-07T16:36:33.248Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-07T16:36:33.248Z]  72 else: +[2024-03-07T16:36:33.248Z]  73 return output.reference +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) +[2024-03-07T16:36:33.248Z]  374 out = converter.convert() +[2024-03-07T16:36:33.248Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:36:33.248Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-07T16:36:33.248Z]  377 return out +[2024-03-07T16:36:33.248Z]  379 except (ImportError, NotImplementedError): +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) +[2024-03-07T16:36:33.248Z]  374 out = converter.convert() +[2024-03-07T16:36:33.248Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:36:33.248Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-07T16:36:33.248Z]  377 return out +[2024-03-07T16:36:33.248Z]  379 except (ImportError, NotImplementedError): +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-07T16:36:33.248Z]  372 try: +[2024-03-07T16:36:33.248Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-07T16:36:33.248Z] --> 374 out = converter.convert() +[2024-03-07T16:36:33.248Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:36:33.248Z]  376 out = [convert(o, path) for o in out] +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-07T16:36:33.248Z]  263 import xarray # isort: skip +[2024-03-07T16:36:33.248Z]  264 import rioxarray # noqa +[2024-03-07T16:36:33.248Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 _ +[2024-03-07T16:36:33.248Z] Notebook cell execution failed +[2024-03-07T16:36:33.248Z] Cell 8: Cell execution caused an exception +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] Input: +[2024-03-07T16:36:33.248Z] terrain_resp = wps.terrain_analysis( +[2024-03-07T16:36:33.248Z] shape=basin_contour, select_all_touching=True, projected_crs=3978 +[2024-03-07T16:36:33.248Z] ) +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] properties, dem0 = terrain_resp.get(asobj=True) +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] elevation = properties[0]["elevation"] +[2024-03-07T16:36:33.248Z] slope = properties[0]["slope"] +[2024-03-07T16:36:33.248Z] aspect = properties[0]["aspect"] +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} +[2024-03-07T16:36:33.248Z] display(terrain) +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] Traceback: +[2024-03-07T16:36:33.248Z] +[2024-03-07T16:36:33.248Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.248Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:36:33.248Z] Cell In[1], line 5 +[2024-03-07T16:36:33.248Z]  1 terrain_resp = wps.terrain_analysis( +[2024-03-07T16:36:33.249Z]  2 shape=basin_contour, select_all_touching=True, projected_crs=3978 +[2024-03-07T16:36:33.249Z]  3 ) +[2024-03-07T16:36:33.249Z] ----> 5 properties, dem0 = terrain_resp.get(asobj=True) +[2024-03-07T16:36:33.249Z]  7 elevation = properties[0]["elevation"] +[2024-03-07T16:36:33.249Z]  8 slope = properties[0]["slope"] +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-07T16:36:33.249Z]  38 if not self.isSucceded(): +[2024-03-07T16:36:33.249Z]  39 # TODO: add reason for failure +[2024-03-07T16:36:33.249Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-07T16:36:33.249Z] ---> 41 return self._make_output(asobj) +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-07T16:36:33.249Z]  44 Output = namedtuple( +[2024-03-07T16:36:33.249Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:36:33.249Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:36:33.249Z]  47 ) +[2024-03-07T16:36:33.249Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:36:33.249Z]  49 return Output( +[2024-03-07T16:36:33.249Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:36:33.249Z]  51 ) +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-07T16:36:33.249Z]  44 Output = namedtuple( +[2024-03-07T16:36:33.249Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:36:33.249Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:36:33.249Z]  47 ) +[2024-03-07T16:36:33.249Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:36:33.249Z]  49 return Output( +[2024-03-07T16:36:33.249Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:36:33.249Z]  51 ) +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-07T16:36:33.249Z]  68 return delist(data) +[2024-03-07T16:36:33.249Z]  70 if convert_objects: +[2024-03-07T16:36:33.249Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-07T16:36:33.249Z]  72 else: +[2024-03-07T16:36:33.249Z]  73 return output.reference +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-07T16:36:33.249Z]  372 try: +[2024-03-07T16:36:33.249Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-07T16:36:33.249Z] --> 374 out = converter.convert() +[2024-03-07T16:36:33.249Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:36:33.249Z]  376 out = [convert(o, path) for o in out] +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-07T16:36:33.249Z]  263 import xarray # isort: skip +[2024-03-07T16:36:33.249Z]  264 import rioxarray # noqa +[2024-03-07T16:36:33.249Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.249Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.249Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 _ +[2024-03-07T16:36:33.249Z] Notebook cell execution failed +[2024-03-07T16:36:33.249Z] Cell 9: Cell execution caused an exception +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.249Z] Input: +[2024-03-07T16:36:33.249Z] all_properties = {**shape_info, **land_use, **terrain} +[2024-03-07T16:36:33.249Z] display(all_properties) +[2024-03-07T16:36:33.249Z] +[2024-03-07T16:36:33.250Z] Traceback: +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.250Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.250Z] Cell In[1], line 1 +[2024-03-07T16:36:33.250Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} +[2024-03-07T16:36:33.250Z]  2 display(all_properties) +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] NameError: name 'land_use' is not defined +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ +[2024-03-07T16:36:33.250Z] Notebook cell execution failed +[2024-03-07T16:36:33.250Z] Cell 10: Cell execution caused an exception +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] Input: +[2024-03-07T16:36:33.250Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. +[2024-03-07T16:36:33.250Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" +[2024-03-07T16:36:33.250Z] cat = intake.open_catalog(catalog_name) +[2024-03-07T16:36:33.250Z] ds = cat.era5_reanalysis_single_levels.to_dask() +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] """ +[2024-03-07T16:36:33.250Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, +[2024-03-07T16:36:33.250Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total +[2024-03-07T16:36:33.250Z] precipitation. +[2024-03-07T16:36:33.250Z] """ +[2024-03-07T16:36:33.250Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, +[2024-03-07T16:36:33.250Z] # such as units and variable names. +[2024-03-07T16:36:33.250Z] with xr.set_options(keep_attrs=True): +[2024-03-07T16:36:33.250Z] ERA5_reference = subset.subset_shape( +[2024-03-07T16:36:33.250Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour +[2024-03-07T16:36:33.250Z] ) +[2024-03-07T16:36:33.250Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) +[2024-03-07T16:36:33.250Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) +[2024-03-07T16:36:33.250Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] # Change the units +[2024-03-07T16:36:33.250Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C +[2024-03-07T16:36:33.250Z] ERA5_tmin.attrs["units"] = "degC" +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C +[2024-03-07T16:36:33.250Z] ERA5_tmax.attrs["units"] = "degC" +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] ERA5_pr = ERA5_pr * 1000 # m to mm +[2024-03-07T16:36:33.250Z] ERA5_pr.attrs["units"] = "mm" +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] # Average the variables spatially +[2024-03-07T16:36:33.250Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-03-07T16:36:33.250Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-03-07T16:36:33.250Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-07T16:36:33.250Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-07T16:36:33.250Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-07T16:36:33.250Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-03-07T16:36:33.250Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the +[2024-03-07T16:36:33.250Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. +[2024-03-07T16:36:33.250Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) +[2024-03-07T16:36:33.250Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] Traceback: +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.250Z] KeyError Traceback (most recent call last) +[2024-03-07T16:36:33.250Z] Cell In[1], line 37 +[2024-03-07T16:36:33.250Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-07T16:36:33.250Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-07T16:36:33.250Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-07T16:36:33.250Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-07T16:36:33.250Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-03-07T16:36:33.250Z]  851 self.coords[key] = value +[2024-03-07T16:36:33.250Z]  852 else: +[2024-03-07T16:36:33.250Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-03-07T16:36:33.250Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-03-07T16:36:33.250Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-03-07T16:36:33.250Z] --> 856 obj = self[key] +[2024-03-07T16:36:33.250Z]  857 if isinstance(value, DataArray): +[2024-03-07T16:36:33.250Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-03-07T16:36:33.250Z]  844 return self._getitem_coord(key) +[2024-03-07T16:36:33.250Z]  845 else: +[2024-03-07T16:36:33.250Z]  846 # xarray-style array indexing +[2024-03-07T16:36:33.250Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-03-07T16:36:33.250Z] +[2024-03-07T16:36:33.250Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-03-07T16:36:33.250Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-03-07T16:36:33.250Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-03-07T16:36:33.250Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-03-07T16:36:33.251Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-03-07T16:36:33.251Z]  1447  ) +[2024-03-07T16:36:33.251Z]  1448 return self._from_temp_dataset(ds) +[2024-03-07T16:36:33.251Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-03-07T16:36:33.251Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-03-07T16:36:33.251Z] +[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-03-07T16:36:33.251Z]  2926 var_indexers = { +[2024-03-07T16:36:33.251Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-03-07T16:36:33.251Z]  2928 } +[2024-03-07T16:36:33.251Z]  2929 if var_indexers: +[2024-03-07T16:36:33.251Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-03-07T16:36:33.251Z]  2931 # drop scalar coordinates +[2024-03-07T16:36:33.251Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-03-07T16:36:33.251Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-03-07T16:36:33.251Z] +[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-03-07T16:36:33.251Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-03-07T16:36:33.251Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-03-07T16:36:33.251Z] -> 1368 return self[key] +[2024-03-07T16:36:33.251Z] +[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-03-07T16:36:33.251Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-03-07T16:36:33.251Z]  879  """Return a new Variable object whose contents are consistent with +[2024-03-07T16:36:33.251Z]  880  getting the provided key from the underlying data. +[2024-03-07T16:36:33.251Z]  881 +[2024-03-07T16:36:33.251Z]  (...) +[2024-03-07T16:36:33.251Z]  889  array `x.values` directly. +[2024-03-07T16:36:33.251Z]  890  """ +[2024-03-07T16:36:33.251Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-03-07T16:36:33.251Z]  892 data = as_indexable(self._data)[indexer] +[2024-03-07T16:36:33.251Z]  893 if new_order: +[2024-03-07T16:36:33.251Z] +[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-03-07T16:36:33.251Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-03-07T16:36:33.251Z]  722 return self._broadcast_indexes_basic(key) +[2024-03-07T16:36:33.251Z] --> 724 self._validate_indexers(key) +[2024-03-07T16:36:33.251Z]  725 # Detect it can be mapped as an outer indexer +[2024-03-07T16:36:33.251Z]  726 # If all key is unlabeled, or +[2024-03-07T16:36:33.251Z]  727 # key can be mapped as an OuterIndexer. +[2024-03-07T16:36:33.251Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-03-07T16:36:33.251Z] +[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-03-07T16:36:33.251Z]  771 raise IndexError( +[2024-03-07T16:36:33.251Z]  772 "{}-dimensional boolean indexing is " +[2024-03-07T16:36:33.251Z]  773 "not supported. ".format(k.ndim) +[2024-03-07T16:36:33.251Z]  774 ) +[2024-03-07T16:36:33.251Z]  775 if is_duck_dask_array(k.data): +[2024-03-07T16:36:33.251Z] --> 776 raise KeyError( +[2024-03-07T16:36:33.251Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-03-07T16:36:33.251Z]  778 "This will result in a dask array of unknown shape. " +[2024-03-07T16:36:33.251Z]  779 "Such arrays are unsupported by Xarray." +[2024-03-07T16:36:33.251Z]  780 "Please compute the indexer first using .compute()" +[2024-03-07T16:36:33.251Z]  781 ) +[2024-03-07T16:36:33.251Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-03-07T16:36:33.251Z]  783 raise IndexError( +[2024-03-07T16:36:33.251Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-03-07T16:36:33.251Z]  785 "same dimension to the indexed array. Indexer is " +[2024-03-07T16:36:33.251Z]  (...) +[2024-03-07T16:36:33.251Z]  788 ) +[2024-03-07T16:36:33.251Z]  789 ) +[2024-03-07T16:36:33.251Z] +[2024-03-07T16:36:33.251Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-03-07T16:36:33.251Z] +[2024-03-07T16:36:33.251Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ +[2024-03-07T16:36:33.251Z] Notebook cell execution failed +[2024-03-07T16:36:33.252Z] Cell 11: Cell execution caused an exception +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] Input: +[2024-03-07T16:36:33.252Z] # Climate model to use +[2024-03-07T16:36:33.252Z] climate_model = "MIROC6" +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. +[2024-03-07T16:36:33.252Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") +[2024-03-07T16:36:33.252Z] col = intake.open_esm_datastore( +[2024-03-07T16:36:33.252Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" +[2024-03-07T16:36:33.252Z] ) +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. +[2024-03-07T16:36:33.252Z] with xr.set_options(keep_attrs=True): +[2024-03-07T16:36:33.252Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. +[2024-03-07T16:36:33.252Z] out = {} +[2024-03-07T16:36:33.252Z] for exp in ["historical", "ssp585"]: +[2024-03-07T16:36:33.252Z] if exp == "historical": +[2024-03-07T16:36:33.252Z] period_start = reference_start_day +[2024-03-07T16:36:33.252Z] period_end = reference_end_day +[2024-03-07T16:36:33.252Z] else: +[2024-03-07T16:36:33.252Z] period_start = future_start_day +[2024-03-07T16:36:33.252Z] period_end = future_end_day +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] out[exp] = {} +[2024-03-07T16:36:33.252Z] for variable in ["tasmin", "tasmax", "pr"]: +[2024-03-07T16:36:33.252Z] print(exp, variable) +[2024-03-07T16:36:33.252Z] query = dict( +[2024-03-07T16:36:33.252Z] experiment_id=exp, +[2024-03-07T16:36:33.252Z] table_id="day", +[2024-03-07T16:36:33.252Z] variable_id=variable, +[2024-03-07T16:36:33.252Z] member_id="r1i1p1f1", +[2024-03-07T16:36:33.252Z] source_id=climate_model, +[2024-03-07T16:36:33.252Z] ) +[2024-03-07T16:36:33.252Z] col_subset = col.search(require_all_on=["source_id"], **query) +[2024-03-07T16:36:33.252Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. +[2024-03-07T16:36:33.252Z] if variable == "pr": +[2024-03-07T16:36:33.252Z] out[exp][variable] = average.average_shape( +[2024-03-07T16:36:33.252Z] xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-07T16:36:33.252Z] time=slice(period_start, period_end) +[2024-03-07T16:36:33.252Z] )[variable], +[2024-03-07T16:36:33.252Z] basin_contour, +[2024-03-07T16:36:33.252Z] ).chunk(-1) +[2024-03-07T16:36:33.252Z] else: +[2024-03-07T16:36:33.252Z] out[exp][variable] = average.average_shape( +[2024-03-07T16:36:33.252Z] xr.open_zarr(mapper, consolidated=True) +[2024-03-07T16:36:33.252Z] .sel(time=slice(period_start, period_end)) +[2024-03-07T16:36:33.252Z] .reset_coords("height", drop=True)[variable], +[2024-03-07T16:36:33.252Z] basin_contour, +[2024-03-07T16:36:33.252Z] ).chunk(-1) +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] # We can now extract the variables that we will need later: +[2024-03-07T16:36:33.252Z] historical_tasmax = out["historical"]["tasmax"] +[2024-03-07T16:36:33.252Z] historical_tasmin = out["historical"]["tasmin"] +[2024-03-07T16:36:33.252Z] historical_pr = out["historical"]["pr"] +[2024-03-07T16:36:33.252Z] future_tasmax = out["ssp585"]["tasmax"] +[2024-03-07T16:36:33.252Z] future_tasmin = out["ssp585"]["tasmin"] +[2024-03-07T16:36:33.252Z] future_pr = out["ssp585"]["pr"] +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] Traceback: +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.252Z] KeyError Traceback (most recent call last) +[2024-03-07T16:36:33.252Z] Cell In[1], line 44 +[2024-03-07T16:36:33.252Z]  37 out[exp][variable] = average.average_shape( +[2024-03-07T16:36:33.252Z]  38 xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-07T16:36:33.252Z]  39 time=slice(period_start, period_end) +[2024-03-07T16:36:33.252Z]  40 )[variable], +[2024-03-07T16:36:33.252Z]  41 basin_contour, +[2024-03-07T16:36:33.252Z]  42 ).chunk(-1) +[2024-03-07T16:36:33.252Z]  43 else: +[2024-03-07T16:36:33.252Z] ---> 44 out[exp][variable] = average.average_shape( +[2024-03-07T16:36:33.252Z]  45  xr.open_zarr(mapper, consolidated=True) +[2024-03-07T16:36:33.252Z]  46  .sel(time=slice(period_start, period_end)) +[2024-03-07T16:36:33.252Z]  47  .reset_coords("height", drop=True)[variable], +[2024-03-07T16:36:33.252Z]  48  basin_contour, +[2024-03-07T16:36:33.252Z]  49  ).chunk(-1) +[2024-03-07T16:36:33.252Z]  51 # We can now extract the variables that we will need later: +[2024-03-07T16:36:33.252Z]  52 historical_tasmax = out["historical"]["tasmax"] +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:104, in average_shape(ds, shape, variable) +[2024-03-07T16:36:33.252Z]  101 ds_sub = ds_copy.isel(indexer) +[2024-03-07T16:36:33.252Z]  103 # Compute the weights +[2024-03-07T16:36:33.252Z] --> 104 savger = SpatialAverager(ds_sub, poly.geometry) +[2024-03-07T16:36:33.252Z]  106 # Check that some weights are not null. Handle both sparse and scipy weights. +[2024-03-07T16:36:33.252Z]  107 nonnull = ( +[2024-03-07T16:36:33.252Z]  108 savger.weights.data.nnz +[2024-03-07T16:36:33.252Z]  109 if isinstance(savger.weights, xr.DataArray) +[2024-03-07T16:36:33.252Z]  110 else savger.weights.nnz +[2024-03-07T16:36:33.252Z]  111 ) +[2024-03-07T16:36:33.252Z] +[2024-03-07T16:36:33.252Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1180, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) +[2024-03-07T16:36:33.252Z]  1177 if isinstance(ds_in, xr.DataArray): +[2024-03-07T16:36:33.252Z]  1178 ds_in = ds_in._to_temp_dataset() +[2024-03-07T16:36:33.253Z] -> 1180 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) +[2024-03-07T16:36:33.253Z]  1182 # Create an output locstream so that the regridder knows the output shape and coords. +[2024-03-07T16:36:33.253Z]  1183 # Latitude and longitude coordinates are the polygon centroid. +[2024-03-07T16:36:33.253Z]  1184 lon_out, lat_out = _get_lon_lat(ds_in) +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) +[2024-03-07T16:36:33.253Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) +[2024-03-07T16:36:33.253Z]  166 if need_bounds: +[2024-03-07T16:36:33.253Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) +[2024-03-07T16:36:33.253Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) +[2024-03-07T16:36:33.253Z]  169 add_corner(grid, lon_b.T, lat_b.T) +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) +[2024-03-07T16:36:33.253Z]  105 lat_bnds = ds.cf.get_bounds('latitude') +[2024-03-07T16:36:33.253Z]  107 # Convert from CF bounds to xESMF bounds. +[2024-03-07T16:36:33.253Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. +[2024-03-07T16:36:33.253Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) +[2024-03-07T16:36:33.253Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) +[2024-03-07T16:36:33.253Z]  111 return lon_b, lat_b +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2308, in CFDatasetAccessor.get_bounds_dim_name(self, key) +[2024-03-07T16:36:33.253Z]  2304 filtered = [ +[2024-03-07T16:36:33.253Z]  2305 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs +[2024-03-07T16:36:33.253Z]  2306 ] +[2024-03-07T16:36:33.253Z]  2307 if len(filtered) > 1: +[2024-03-07T16:36:33.253Z] -> 2308 raise KeyError( +[2024-03-07T16:36:33.253Z]  2309 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " +[2024-03-07T16:36:33.253Z]  2310 ) +[2024-03-07T16:36:33.253Z]  2312 (crd_name,) = filtered +[2024-03-07T16:36:33.253Z]  2313 crd = variables[crd_name] +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ +[2024-03-07T16:36:33.253Z] Notebook cell execution failed +[2024-03-07T16:36:33.253Z] Cell 12: Cell execution caused an exception +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] Input: +[2024-03-07T16:36:33.253Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-07T16:36:33.253Z] # and make sure everything is consistent. +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] # Let's start with precipitation: +[2024-03-07T16:36:33.253Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-07T16:36:33.253Z] historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-07T16:36:33.253Z] future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] # Now we can actually convert units in absolute terms. +[2024-03-07T16:36:33.253Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") +[2024-03-07T16:36:33.253Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] # Now let's do temperature: +[2024-03-07T16:36:33.253Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") +[2024-03-07T16:36:33.253Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") +[2024-03-07T16:36:33.253Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") +[2024-03-07T16:36:33.253Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] Traceback: +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.253Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.253Z] Cell In[1], line 6 +[2024-03-07T16:36:33.253Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-07T16:36:33.253Z]  2 # and make sure everything is consistent. +[2024-03-07T16:36:33.253Z]  3 +[2024-03-07T16:36:33.253Z]  4 # Let's start with precipitation: +[2024-03-07T16:36:33.253Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-07T16:36:33.253Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-07T16:36:33.253Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-07T16:36:33.253Z]  9 # Now we can actually convert units in absolute terms. +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] NameError: name 'historical_pr' is not defined +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ +[2024-03-07T16:36:33.253Z] Notebook cell execution failed +[2024-03-07T16:36:33.253Z] Cell 13: Cell execution caused an exception +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] Input: +[2024-03-07T16:36:33.253Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. +[2024-03-07T16:36:33.253Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-07T16:36:33.253Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-07T16:36:33.253Z] ref=ERA5_weather.pr, +[2024-03-07T16:36:33.253Z] hist=historical_pr, +[2024-03-07T16:36:33.253Z] nquantiles=50, +[2024-03-07T16:36:33.253Z] kind="+", +[2024-03-07T16:36:33.253Z] group=group_month_window, +[2024-03-07T16:36:33.253Z] ) +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] # Apply the correction factors on the reference period +[2024-03-07T16:36:33.253Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-07T16:36:33.253Z] +[2024-03-07T16:36:33.253Z] # Apply the correction factors on the future period +[2024-03-07T16:36:33.254Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Ensure that the precipitation is non-negative, which can happen with some climate models +[2024-03-07T16:36:33.254Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) +[2024-03-07T16:36:33.254Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data +[2024-03-07T16:36:33.254Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-07T16:36:33.254Z] ref=ERA5_weather.tmax, +[2024-03-07T16:36:33.254Z] hist=historical_tasmax, +[2024-03-07T16:36:33.254Z] nquantiles=50, +[2024-03-07T16:36:33.254Z] kind="+", +[2024-03-07T16:36:33.254Z] group=group_month_window, +[2024-03-07T16:36:33.254Z] ) +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Apply the correction factors on the reference period +[2024-03-07T16:36:33.254Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Apply the correction factors on the future period +[2024-03-07T16:36:33.254Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data +[2024-03-07T16:36:33.254Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-07T16:36:33.254Z] ref=ERA5_weather.tmin, +[2024-03-07T16:36:33.254Z] hist=historical_tasmin, +[2024-03-07T16:36:33.254Z] nquantiles=50, +[2024-03-07T16:36:33.254Z] kind="+", +[2024-03-07T16:36:33.254Z] group=group_month_window, +[2024-03-07T16:36:33.254Z] ) +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Apply the correction factors on the reference period +[2024-03-07T16:36:33.254Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Apply the correction factors on the future period +[2024-03-07T16:36:33.254Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] Traceback: +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.254Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.254Z] Cell In[1], line 6 +[2024-03-07T16:36:33.254Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-07T16:36:33.254Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-07T16:36:33.254Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-07T16:36:33.254Z] ----> 6 ref=ERA5_weather.pr, +[2024-03-07T16:36:33.254Z]  7 hist=historical_pr, +[2024-03-07T16:36:33.254Z]  8 nquantiles=50, +[2024-03-07T16:36:33.254Z]  9 kind="+", +[2024-03-07T16:36:33.254Z]  10 group=group_month_window, +[2024-03-07T16:36:33.254Z]  11 ) +[2024-03-07T16:36:33.254Z]  13 # Apply the correction factors on the reference period +[2024-03-07T16:36:33.254Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] NameError: name 'ERA5_weather' is not defined +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ +[2024-03-07T16:36:33.254Z] Notebook cell execution failed +[2024-03-07T16:36:33.254Z] Cell 14: Cell execution caused an exception +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] Input: +[2024-03-07T16:36:33.254Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-07T16:36:33.254Z] ref_dataset = xr.merge( +[2024-03-07T16:36:33.254Z] [ +[2024-03-07T16:36:33.254Z] corrected_ref_precip.to_dataset(name="pr"), +[2024-03-07T16:36:33.254Z] corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-07T16:36:33.254Z] corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-07T16:36:33.254Z] ] +[2024-03-07T16:36:33.254Z] ) +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Write to temporary folder +[2024-03-07T16:36:33.254Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-07T16:36:33.254Z] ref_dataset.to_netcdf(fn_tmp_ref) +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Convert the future corrected data into netCDF file +[2024-03-07T16:36:33.254Z] fut_dataset = xr.merge( +[2024-03-07T16:36:33.254Z] [ +[2024-03-07T16:36:33.254Z] corrected_fut_precip.to_dataset(name="pr"), +[2024-03-07T16:36:33.254Z] corrected_fut_tasmax.to_dataset(name="tasmax"), +[2024-03-07T16:36:33.254Z] corrected_fut_tasmin.to_dataset(name="tasmin"), +[2024-03-07T16:36:33.254Z] ] +[2024-03-07T16:36:33.254Z] ) +[2024-03-07T16:36:33.254Z] # Write to temporary folder +[2024-03-07T16:36:33.254Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" +[2024-03-07T16:36:33.254Z] fut_dataset.to_netcdf(fn_tmp_fut) +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Write the data to disk to a temporary location for future use. +[2024-03-07T16:36:33.254Z] ref_dataset = xr.open_dataset(fn_tmp_ref) +[2024-03-07T16:36:33.254Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] fut_dataset = xr.open_dataset(fn_tmp_fut) +[2024-03-07T16:36:33.254Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] Traceback: +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.254Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.254Z] Cell In[1], line 4 +[2024-03-07T16:36:33.254Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-07T16:36:33.254Z]  2 ref_dataset = xr.merge( +[2024-03-07T16:36:33.254Z]  3 [ +[2024-03-07T16:36:33.254Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), +[2024-03-07T16:36:33.254Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-07T16:36:33.254Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-07T16:36:33.254Z]  7 ] +[2024-03-07T16:36:33.254Z]  8 ) +[2024-03-07T16:36:33.254Z]  10 # Write to temporary folder +[2024-03-07T16:36:33.254Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] NameError: name 'corrected_ref_precip' is not defined +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ +[2024-03-07T16:36:33.254Z] Notebook cell execution failed +[2024-03-07T16:36:33.254Z] Cell 15: Cell execution caused an exception +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] Input: +[2024-03-07T16:36:33.254Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-03-07T16:36:33.254Z] # populate the fields for the HRU. +[2024-03-07T16:36:33.254Z] hru = {} +[2024-03-07T16:36:33.254Z] hru = dict( +[2024-03-07T16:36:33.254Z] area=all_properties["area"], +[2024-03-07T16:36:33.254Z] elevation=all_properties["elevation"], +[2024-03-07T16:36:33.254Z] latitude=all_properties["latitude"], +[2024-03-07T16:36:33.254Z] longitude=all_properties["longitude"], +[2024-03-07T16:36:33.254Z] hru_type="land", +[2024-03-07T16:36:33.254Z] ) +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-03-07T16:36:33.254Z] # will simply execute the model which has been pre-configured to run on this period. +[2024-03-07T16:36:33.254Z] start_date = dt.datetime(1981, 1, 1) +[2024-03-07T16:36:33.254Z] end_date = dt.datetime(1985, 12, 31) +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. +[2024-03-07T16:36:33.254Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # Alternative variable names as described in the tutorial. +[2024-03-07T16:36:33.254Z] alt_names = { +[2024-03-07T16:36:33.254Z] "TEMP_MIN": "tmin", +[2024-03-07T16:36:33.254Z] "TEMP_MAX": "tmax", +[2024-03-07T16:36:33.254Z] "PRECIP": "pr", +[2024-03-07T16:36:33.254Z] } +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.254Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here +[2024-03-07T16:36:33.254Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. +[2024-03-07T16:36:33.254Z] data_kwds = { +[2024-03-07T16:36:33.254Z] "ALL": { +[2024-03-07T16:36:33.254Z] "elevation": hru["elevation"], +[2024-03-07T16:36:33.254Z] "latitude": hru["latitude"], +[2024-03-07T16:36:33.254Z] "longitude": hru["longitude"], +[2024-03-07T16:36:33.254Z] } +[2024-03-07T16:36:33.254Z] } +[2024-03-07T16:36:33.254Z] +[2024-03-07T16:36:33.255Z] # Give a name to the simulation +[2024-03-07T16:36:33.255Z] run_name = "Paper_example_simulation" +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Setup the gauge object that includes meteorological data from ERA5 +[2024-03-07T16:36:33.255Z] gauge = [ +[2024-03-07T16:36:33.255Z] rc.Gauge.from_nc( +[2024-03-07T16:36:33.255Z] tmp +[2024-03-07T16:36:33.255Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-03-07T16:36:33.255Z] data_type=data_type, # Note that this is the list of all the variables +[2024-03-07T16:36:33.255Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-03-07T16:36:33.255Z] data_kwds=data_kwds, +[2024-03-07T16:36:33.255Z] ) +[2024-03-07T16:36:33.255Z] ] +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Read the streamflow from the HYSETS catchment data for this basin +[2024-03-07T16:36:33.255Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, +[2024-03-07T16:36:33.255Z] # and the optimizer will read it directly to calibrate. +[2024-03-07T16:36:33.255Z] eval_metrics = ("NASH_SUTCLIFFE",) +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Build the model configuration according to user preferences and inputs +[2024-03-07T16:36:33.255Z] model_config = GR4JCN( +[2024-03-07T16:36:33.255Z] ObservationData=discharge_data, +[2024-03-07T16:36:33.255Z] Gauge=gauge, +[2024-03-07T16:36:33.255Z] HRUs=[hru], +[2024-03-07T16:36:33.255Z] StartDate=start_date, +[2024-03-07T16:36:33.255Z] EndDate=end_date, +[2024-03-07T16:36:33.255Z] RunName=run_name, +[2024-03-07T16:36:33.255Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. +[2024-03-07T16:36:33.255Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. +[2024-03-07T16:36:33.255Z] ) +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] Traceback: +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.255Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.255Z] Cell In[1], line 5 +[2024-03-07T16:36:33.255Z]  1 # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-03-07T16:36:33.255Z]  2 # populate the fields for the HRU. +[2024-03-07T16:36:33.255Z]  3 hru = {} +[2024-03-07T16:36:33.255Z]  4 hru = dict( +[2024-03-07T16:36:33.255Z] ----> 5 area=all_properties["area"], +[2024-03-07T16:36:33.255Z]  6 elevation=all_properties["elevation"], +[2024-03-07T16:36:33.255Z]  7 latitude=all_properties["latitude"], +[2024-03-07T16:36:33.255Z]  8 longitude=all_properties["longitude"], +[2024-03-07T16:36:33.255Z]  9 hru_type="land", +[2024-03-07T16:36:33.255Z]  10 ) +[2024-03-07T16:36:33.255Z]  12 # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-03-07T16:36:33.255Z]  13 # will simply execute the model which has been pre-configured to run on this period. +[2024-03-07T16:36:33.255Z]  14 start_date = dt.datetime(1981, 1, 1) +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] NameError: name 'all_properties' is not defined +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ +[2024-03-07T16:36:33.255Z] Notebook cell execution failed +[2024-03-07T16:36:33.255Z] Cell 16: Cell execution caused an exception +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] Input: +[2024-03-07T16:36:33.255Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, +[2024-03-07T16:36:33.255Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. +[2024-03-07T16:36:33.255Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) +[2024-03-07T16:36:33.255Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. +[2024-03-07T16:36:33.255Z] random_seed = 42 +[2024-03-07T16:36:33.255Z] np.random.seed(random_seed) +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Build the optimizer object +[2024-03-07T16:36:33.255Z] spot_setup = SpotSetup( +[2024-03-07T16:36:33.255Z] config=model_config, +[2024-03-07T16:36:33.255Z] low=low, +[2024-03-07T16:36:33.255Z] high=high, +[2024-03-07T16:36:33.255Z] ) +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-07T16:36:33.255Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-07T16:36:33.255Z] max_iterations = 200 +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer +[2024-03-07T16:36:33.255Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most +[2024-03-07T16:36:33.255Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation +[2024-03-07T16:36:33.255Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small +[2024-03-07T16:36:33.255Z] # evaluation budgets. For more details on DDS, see: +[2024-03-07T16:36:33.255Z] # +[2024-03-07T16:36:33.255Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water +[2024-03-07T16:36:33.255Z] # Resources Research, 43(1) +[2024-03-07T16:36:33.255Z] sampler = spotpy.algorithms.dds( +[2024-03-07T16:36:33.255Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False +[2024-03-07T16:36:33.255Z] ) +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and +[2024-03-07T16:36:33.255Z] # the best overall value from all trials is returned. +[2024-03-07T16:36:33.255Z] sampler.sample(max_iterations, trials=1) +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Get the model diagnostics +[2024-03-07T16:36:33.255Z] diag = spot_setup.diagnostics +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Get all the values of each iteration +[2024-03-07T16:36:33.255Z] results = sampler.getdata() +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Get the raw resutlts directly in an array +[2024-03-07T16:36:33.255Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( +[2024-03-07T16:36:33.255Z] results +[2024-03-07T16:36:33.255Z] ) # Want to get the MAX NSE (change for min for RMSE) +[2024-03-07T16:36:33.255Z] best_model_run = list( +[2024-03-07T16:36:33.255Z] results[bestindex][0] +[2024-03-07T16:36:33.255Z] ) # Get the parameter set returning the best NSE +[2024-03-07T16:36:33.255Z] optimized_parameters = best_model_run[ +[2024-03-07T16:36:33.255Z] 1:-1 +[2024-03-07T16:36:33.255Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] # Display the parameter set ready to use in a future run: +[2024-03-07T16:36:33.255Z] print(optimized_parameters) +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] Traceback: +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.255Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.255Z] Cell In[1], line 12 +[2024-03-07T16:36:33.255Z]  8 np.random.seed(random_seed) +[2024-03-07T16:36:33.255Z]  10 # Build the optimizer object +[2024-03-07T16:36:33.255Z]  11 spot_setup = SpotSetup( +[2024-03-07T16:36:33.255Z] ---> 12 config=model_config, +[2024-03-07T16:36:33.255Z]  13 low=low, +[2024-03-07T16:36:33.255Z]  14 high=high, +[2024-03-07T16:36:33.255Z]  15 ) +[2024-03-07T16:36:33.255Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-07T16:36:33.255Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-07T16:36:33.255Z]  19 max_iterations = 200 +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] NameError: name 'model_config' is not defined +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ +[2024-03-07T16:36:33.255Z] Notebook cell execution failed +[2024-03-07T16:36:33.255Z] Cell 17: Cell execution caused an exception +[2024-03-07T16:36:33.255Z] +[2024-03-07T16:36:33.255Z] Input: +[2024-03-07T16:36:33.256Z] # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-07T16:36:33.256Z] model_validation = model_config.duplicate( +[2024-03-07T16:36:33.256Z] params=optimized_parameters, +[2024-03-07T16:36:33.256Z] StartDate=dt.datetime(1986, 1, 1), +[2024-03-07T16:36:33.256Z] EndDate=dt.datetime(1990, 12, 31), +[2024-03-07T16:36:33.256Z] SuppressOutput=False, +[2024-03-07T16:36:33.256Z] ) +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] sim_output = Emulator(config=model_validation).run() +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-07T16:36:33.256Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] # Plot the model output +[2024-03-07T16:36:33.256Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") +[2024-03-07T16:36:33.256Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-07T16:36:33.256Z] plt.legend() +[2024-03-07T16:36:33.256Z] plt.title("Validation period - NSE=" + str(NSE[0])) +[2024-03-07T16:36:33.256Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-07T16:36:33.256Z] plt.grid() +[2024-03-07T16:36:33.256Z] plt.show() +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] Traceback: +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.256Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.256Z] Cell In[1], line 2 +[2024-03-07T16:36:33.256Z]  1 # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-07T16:36:33.256Z] ----> 2 model_validation = model_config.duplicate( +[2024-03-07T16:36:33.256Z]  3 params=optimized_parameters, +[2024-03-07T16:36:33.256Z]  4 StartDate=dt.datetime(1986, 1, 1), +[2024-03-07T16:36:33.256Z]  5 EndDate=dt.datetime(1990, 12, 31), +[2024-03-07T16:36:33.256Z]  6 SuppressOutput=False, +[2024-03-07T16:36:33.256Z]  7 ) +[2024-03-07T16:36:33.256Z]  9 sim_output = Emulator(config=model_validation).run() +[2024-03-07T16:36:33.256Z]  11 # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] NameError: name 'model_config' is not defined +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ +[2024-03-07T16:36:33.256Z] Notebook cell execution failed +[2024-03-07T16:36:33.256Z] Cell 18: Cell execution caused an exception +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] Input: +[2024-03-07T16:36:33.256Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-07T16:36:33.256Z] gauge_ref = [ +[2024-03-07T16:36:33.256Z] rc.Gauge.from_nc( +[2024-03-07T16:36:33.256Z] tmp +[2024-03-07T16:36:33.256Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-07T16:36:33.256Z] data_type=data_type, +[2024-03-07T16:36:33.256Z] alt_names=alt_names, +[2024-03-07T16:36:33.256Z] data_kwds=data_kwds, +[2024-03-07T16:36:33.256Z] ) +[2024-03-07T16:36:33.256Z] ] +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-07T16:36:33.256Z] model_config_reference = model_validation.duplicate( +[2024-03-07T16:36:33.256Z] Gauge=gauge_ref, +[2024-03-07T16:36:33.256Z] StartDate=reference_start_day +[2024-03-07T16:36:33.256Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-07T16:36:33.256Z] EndDate=reference_end_day, +[2024-03-07T16:36:33.256Z] ) +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] # Run the model from the configuration and get the outputs. +[2024-03-07T16:36:33.256Z] ref_output = Emulator(config=model_config_reference).run() +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] # Plot the model output. Note that both simulations should have similar hydrological +[2024-03-07T16:36:33.256Z] # regime but day-to-day variability is not expected to match. +[2024-03-07T16:36:33.256Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") +[2024-03-07T16:36:33.256Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-07T16:36:33.256Z] plt.legend() +[2024-03-07T16:36:33.256Z] plt.title("Reference period") +[2024-03-07T16:36:33.256Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-07T16:36:33.256Z] plt.grid() +[2024-03-07T16:36:33.256Z] plt.show() +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] Traceback: +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.256Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.256Z] Cell In[1], line 6 +[2024-03-07T16:36:33.256Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-07T16:36:33.256Z]  2 gauge_ref = [ +[2024-03-07T16:36:33.256Z]  3 rc.Gauge.from_nc( +[2024-03-07T16:36:33.256Z]  4 tmp +[2024-03-07T16:36:33.256Z]  5 / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-07T16:36:33.256Z] ----> 6 data_type=data_type, +[2024-03-07T16:36:33.256Z]  7 alt_names=alt_names, +[2024-03-07T16:36:33.256Z]  8 data_kwds=data_kwds, +[2024-03-07T16:36:33.256Z]  9 ) +[2024-03-07T16:36:33.256Z]  10 ] +[2024-03-07T16:36:33.256Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-07T16:36:33.256Z]  13 model_config_reference = model_validation.duplicate( +[2024-03-07T16:36:33.256Z]  14 Gauge=gauge_ref, +[2024-03-07T16:36:33.256Z]  15 StartDate=reference_start_day +[2024-03-07T16:36:33.256Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-07T16:36:33.256Z]  17 EndDate=reference_end_day, +[2024-03-07T16:36:33.256Z]  18 ) +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] NameError: name 'data_type' is not defined +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ +[2024-03-07T16:36:33.256Z] Notebook cell execution failed +[2024-03-07T16:36:33.256Z] Cell 19: Cell execution caused an exception +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] Input: +[2024-03-07T16:36:33.256Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-07T16:36:33.256Z] gauge_fut = [ +[2024-03-07T16:36:33.256Z] rc.Gauge.from_nc( +[2024-03-07T16:36:33.256Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-07T16:36:33.256Z] data_type=data_type, +[2024-03-07T16:36:33.256Z] alt_names=alt_names, +[2024-03-07T16:36:33.256Z] data_kwds=data_kwds, +[2024-03-07T16:36:33.256Z] ) +[2024-03-07T16:36:33.256Z] ] +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-07T16:36:33.256Z] model_config_future = model_validation.duplicate( +[2024-03-07T16:36:33.256Z] Gauge=gauge_fut, +[2024-03-07T16:36:33.256Z] StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-07T16:36:33.256Z] EndDate=future_end_day, +[2024-03-07T16:36:33.256Z] ObservationData=None, # There are no observations for the future period. +[2024-03-07T16:36:33.256Z] ) +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] # Run the model and get the outputs and hydrographs. +[2024-03-07T16:36:33.256Z] fut_output = Emulator(config=model_config_future).run() +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] # Plot the model output +[2024-03-07T16:36:33.256Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") +[2024-03-07T16:36:33.256Z] plt.legend() +[2024-03-07T16:36:33.256Z] plt.title("Future period") +[2024-03-07T16:36:33.256Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-07T16:36:33.256Z] plt.grid() +[2024-03-07T16:36:33.256Z] plt.show() +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] Traceback: +[2024-03-07T16:36:33.256Z] +[2024-03-07T16:36:33.256Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.256Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.256Z] Cell In[1], line 5 +[2024-03-07T16:36:33.256Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-07T16:36:33.256Z]  2 gauge_fut = [ +[2024-03-07T16:36:33.256Z]  3 rc.Gauge.from_nc( +[2024-03-07T16:36:33.256Z]  4 tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-07T16:36:33.256Z] ----> 5 data_type=data_type, +[2024-03-07T16:36:33.257Z]  6 alt_names=alt_names, +[2024-03-07T16:36:33.257Z]  7 data_kwds=data_kwds, +[2024-03-07T16:36:33.257Z]  8 ) +[2024-03-07T16:36:33.257Z]  9 ] +[2024-03-07T16:36:33.257Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-07T16:36:33.257Z]  12 model_config_future = model_validation.duplicate( +[2024-03-07T16:36:33.257Z]  13 Gauge=gauge_fut, +[2024-03-07T16:36:33.257Z]  14 StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-07T16:36:33.257Z]  15 EndDate=future_end_day, +[2024-03-07T16:36:33.257Z]  16 ObservationData=None, # There are no observations for the future period. +[2024-03-07T16:36:33.257Z]  17 ) +[2024-03-07T16:36:33.257Z] +[2024-03-07T16:36:33.257Z] NameError: name 'data_type' is not defined +[2024-03-07T16:36:33.257Z] +[2024-03-07T16:36:33.257Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ +[2024-03-07T16:36:33.257Z] Notebook cell execution failed +[2024-03-07T16:36:33.257Z] Cell 20: Cell execution caused an exception +[2024-03-07T16:36:33.257Z] +[2024-03-07T16:36:33.257Z] Input: +[2024-03-07T16:36:33.257Z] # Extract the mean annual hydrograph for each simulation. +[2024-03-07T16:36:33.257Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-07T16:36:33.257Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-07T16:36:33.257Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-07T16:36:33.257Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-07T16:36:33.257Z] +[2024-03-07T16:36:33.257Z] # Plot the model output +[2024-03-07T16:36:33.257Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") +[2024-03-07T16:36:33.257Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") +[2024-03-07T16:36:33.257Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") +[2024-03-07T16:36:33.257Z] future_flows.plot(color="red", label="Future", x="dayofyear") +[2024-03-07T16:36:33.257Z] plt.legend() +[2024-03-07T16:36:33.257Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-07T16:36:33.257Z] plt.xlabel("Day of year") +[2024-03-07T16:36:33.257Z] plt.xlim([0, 365]) +[2024-03-07T16:36:33.257Z] plt.title("Comparison of mean annual hydrographs") +[2024-03-07T16:36:33.257Z] plt.grid() +[2024-03-07T16:36:33.257Z] plt.show() +[2024-03-07T16:36:33.257Z] +[2024-03-07T16:36:33.257Z] Traceback: +[2024-03-07T16:36:33.257Z] +[2024-03-07T16:36:33.257Z] --------------------------------------------------------------------------- +[2024-03-07T16:36:33.257Z] NameError Traceback (most recent call last) +[2024-03-07T16:36:33.257Z] Cell In[1], line 2 +[2024-03-07T16:36:33.257Z]  1 # Extract the mean annual hydrograph for each simulation. +[2024-03-07T16:36:33.257Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-07T16:36:33.257Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-07T16:36:33.257Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-07T16:36:33.257Z] +[2024-03-07T16:36:33.257Z] NameError: name 'ref_output' is not defined +[2024-03-07T16:36:33.257Z] +[2024-03-07T16:36:33.257Z] =========================== short test summary info ============================ +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 7 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 8 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 10 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 +[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 +[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 +[2024-03-07T16:36:33.258Z] ================= 36 failed, 224 passed in 1068.88s (0:17:48) ================== +[2024-03-07T16:36:33.258Z] + EXIT_CODE=1 +[2024-03-07T16:36:33.258Z] + echo true +[2024-03-07T16:36:33.258Z] + tr [:upper:] [:lower:] +[2024-03-07T16:36:33.258Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-07T16:36:33.258Z] + [ xtrue = xtrue ] +[2024-03-07T16:36:33.258Z] + mkdir -p buildout +[2024-03-07T16:36:33.258Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-07T16:36:33.258Z] + filename=Region_selection.ipynb +[2024-03-07T16:36:33.258Z] + echo Region_selection.ipynb +[2024-03-07T16:36:33.258Z] + sed s/.ipynb$// +[2024-03-07T16:36:33.258Z] + filename=Region_selection +[2024-03-07T16:36:33.258Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-03-07T16:36:33.258Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-07T16:36:33.258Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-03-07T16:36:45.482Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb +[2024-03-07T16:36:45.482Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-07T16:36:45.482Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-03-07T16:36:45.482Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-03-07T16:36:45.482Z] + sed s/.ipynb$// +[2024-03-07T16:36:45.482Z] + filename=Subset_climate_data_over_watershed +[2024-03-07T16:36:45.482Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-03-07T16:36:45.482Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-07T16:36:45.482Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-03-07T16:37:00.367Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-03-07T16:37:00.367Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-07T16:37:00.367Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-03-07T16:37:00.367Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-03-07T16:37:00.367Z] + sed s/.ipynb$// +[2024-03-07T16:37:00.367Z] + filename=00_Introduction_to_JupyterLab +[2024-03-07T16:37:00.367Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-03-07T16:37:00.367Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-07T16:37:01.314Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-03-07T16:37:03.923Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-03-07T16:37:04.184Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-07T16:37:04.184Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-03-07T16:37:04.184Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-03-07T16:37:04.184Z] + sed s/.ipynb$// +[2024-03-07T16:37:04.184Z] + filename=01_Getting_watershed_boundaries +[2024-03-07T16:37:04.184Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-03-07T16:37:04.184Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-07T16:37:06.089Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-03-07T16:37:18.289Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-03-07T16:37:18.289Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-07T16:37:18.289Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-03-07T16:37:18.289Z] + sed s/.ipynb$// +[2024-03-07T16:37:18.289Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-03-07T16:37:18.289Z] + filename=02_Extract_geographical_watershed_properties +[2024-03-07T16:37:18.289Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-03-07T16:37:18.289Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-07T16:37:18.290Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-03-07T16:37:36.377Z] [NbConvertApp] Writing 95487 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-03-07T16:37:36.377Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-07T16:37:36.377Z] + filename=03_Extracting_forcing_data.ipynb +[2024-03-07T16:37:36.377Z] + + sed s/.ipynb$// +[2024-03-07T16:37:36.377Z] echo 03_Extracting_forcing_data.ipynb +[2024-03-07T16:37:36.377Z] + filename=03_Extracting_forcing_data +[2024-03-07T16:37:36.377Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-03-07T16:37:36.377Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-07T16:37:36.377Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-03-07T16:39:27.956Z] [NbConvertApp] Writing 63069 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-03-07T16:39:27.956Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-07T16:39:27.956Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-03-07T16:39:27.956Z] + + sed s/.ipynb$// +[2024-03-07T16:39:27.956Z] echo 04_Emulating_hydrological_models.ipynb +[2024-03-07T16:39:27.956Z] + filename=04_Emulating_hydrological_models +[2024-03-07T16:39:27.957Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-03-07T16:39:27.957Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-07T16:39:29.867Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-03-07T16:39:47.956Z] [NbConvertApp] Writing 159319 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-03-07T16:39:47.956Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-07T16:39:47.956Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-03-07T16:39:47.956Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-03-07T16:39:47.956Z] + sed s/.ipynb$// +[2024-03-07T16:39:47.956Z] + filename=05_Advanced_RavenPy_configuration +[2024-03-07T16:39:47.956Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-03-07T16:39:47.956Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-07T16:39:47.956Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-03-07T16:40:06.115Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-03-07T16:40:06.115Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-07T16:40:06.115Z] + filename=06_Raven_calibration.ipynb +[2024-03-07T16:40:06.115Z] + echo 06_Raven_calibration.ipynb +[2024-03-07T16:40:06.115Z] + sed s/.ipynb$// +[2024-03-07T16:40:06.115Z] + filename=06_Raven_calibration +[2024-03-07T16:40:06.115Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-03-07T16:40:06.115Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-07T16:40:07.485Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-03-07T16:40:22.341Z] [NbConvertApp] Writing 24180 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-03-07T16:40:22.342Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-07T16:40:22.342Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-03-07T16:40:22.342Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-03-07T16:40:22.342Z] + sed s/.ipynb$// +[2024-03-07T16:40:22.342Z] + filename=07_Making_and_using_hotstart_files +[2024-03-07T16:40:22.342Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-03-07T16:40:22.342Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-07T16:40:22.342Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-03-07T16:40:34.540Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-03-07T16:40:34.540Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-07T16:40:34.540Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-07T16:40:34.540Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-07T16:40:34.540Z] + sed s/.ipynb$// +[2024-03-07T16:40:34.540Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-03-07T16:40:34.540Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-03-07T16:40:34.540Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-07T16:40:36.430Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-03-07T16:44:27.906Z] [NbConvertApp] Writing 248648 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-03-07T16:44:27.906Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-07T16:44:27.906Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-07T16:44:27.906Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-07T16:44:27.906Z] + sed s/.ipynb$// +[2024-03-07T16:44:27.906Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-03-07T16:44:27.906Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-03-07T16:44:27.906Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-07T16:44:27.906Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-03-07T16:44:37.906Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-03-07T16:44:37.906Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-07T16:44:37.906Z] + filename=10_Data_assimilation.ipynb +[2024-03-07T16:44:37.906Z] + + echo 10_Data_assimilation.ipynbsed +[2024-03-07T16:44:37.906Z] s/.ipynb$// +[2024-03-07T16:44:37.906Z] + filename=10_Data_assimilation +[2024-03-07T16:44:37.906Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-03-07T16:44:37.906Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-07T16:44:39.821Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-03-07T16:46:01.307Z] [NbConvertApp] Writing 687320 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-03-07T16:46:01.307Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-07T16:46:01.307Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-03-07T16:46:01.307Z] + sed s/.ipynb$// +[2024-03-07T16:46:01.307Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-03-07T16:46:01.307Z] + filename=11_Climatological_ESP_forecasting +[2024-03-07T16:46:01.307Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-03-07T16:46:01.307Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-07T16:46:01.307Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-03-07T16:46:40.030Z] [NbConvertApp] Writing 552432 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-03-07T16:46:40.030Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-07T16:46:40.030Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-03-07T16:46:40.030Z] + + echo 12_Performing_hindcasting_experiments.ipynb +[2024-03-07T16:46:40.030Z] sed s/.ipynb$// +[2024-03-07T16:46:40.030Z] + filename=12_Performing_hindcasting_experiments +[2024-03-07T16:46:40.030Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-03-07T16:46:40.030Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-07T16:46:40.030Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-03-07T16:46:58.273Z] [NbConvertApp] Writing 297532 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-03-07T16:46:58.273Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-07T16:46:58.273Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-03-07T16:46:58.273Z] + sed s/.ipynb$// +[2024-03-07T16:46:58.273Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-03-07T16:46:58.273Z] + filename=Assess_probabilistic_flood_risk +[2024-03-07T16:46:58.273Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-03-07T16:46:58.273Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-07T16:46:58.273Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-03-07T16:47:30.417Z] [NbConvertApp] Writing 546467 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-03-07T16:47:30.417Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-07T16:47:30.417Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-07T16:47:30.417Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-07T16:47:30.417Z] + sed s/.ipynb$// +[2024-03-07T16:47:30.417Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-03-07T16:47:30.418Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-03-07T16:47:30.418Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-07T16:47:31.356Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-03-07T16:48:03.446Z] [NbConvertApp] Writing 745147 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-03-07T16:48:03.446Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-07T16:48:03.446Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-03-07T16:48:03.446Z] + sed s/.ipynb$// +[2024-03-07T16:48:03.446Z] + echo Distributed_hydrological_modelling.ipynb +[2024-03-07T16:48:03.446Z] + filename=Distributed_hydrological_modelling +[2024-03-07T16:48:03.446Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-03-07T16:48:03.446Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-07T16:48:04.390Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-03-07T16:48:43.101Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-03-07T16:48:43.101Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-07T16:48:43.101Z] + filename=HydroShare_integration.ipynb +[2024-03-07T16:48:43.101Z] + echo HydroShare_integration.ipynb +[2024-03-07T16:48:43.101Z] + sed s/.ipynb$// +[2024-03-07T16:48:43.101Z] + filename=HydroShare_integration +[2024-03-07T16:48:43.101Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-03-07T16:48:43.101Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-07T16:48:43.101Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-03-07T16:48:43.101Z] [NbConvertApp] Writing 23262 bytes to buildout/HydroShare_integration.output.ipynb +[2024-03-07T16:48:43.101Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-07T16:48:43.101Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-03-07T16:48:43.101Z] + echo Hydrological_realtime_forecasting.ipynb +[2024-03-07T16:48:43.101Z] + sed s/.ipynb$// +[2024-03-07T16:48:43.101Z] + filename=Hydrological_realtime_forecasting +[2024-03-07T16:48:43.101Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-03-07T16:48:43.101Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-07T16:48:45.005Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-03-07T16:49:07.028Z] [NbConvertApp] Writing 311830 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-03-07T16:49:07.028Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-07T16:49:07.028Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-03-07T16:49:07.028Z] + sed s/.ipynb$// +[2024-03-07T16:49:07.028Z] + echo Managing_Jupyter_Environments.ipynb +[2024-03-07T16:49:07.028Z] + filename=Managing_Jupyter_Environments +[2024-03-07T16:49:07.028Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-03-07T16:49:07.028Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-07T16:49:08.408Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-03-07T16:49:20.616Z] [NbConvertApp] Writing 7561 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-03-07T16:49:20.616Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-07T16:49:20.616Z] + filename=Perform_Regionalization.ipynb +[2024-03-07T16:49:20.616Z] + echo Perform_Regionalization.ipynb +[2024-03-07T16:49:20.616Z] + sed s/.ipynb$// +[2024-03-07T16:49:20.616Z] + filename=Perform_Regionalization +[2024-03-07T16:49:20.616Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-03-07T16:49:20.616Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-07T16:49:21.182Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-03-07T16:49:59.960Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-03-07T16:49:59.960Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-07T16:49:59.960Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-07T16:49:59.960Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-07T16:49:59.960Z] + sed s/.ipynb$// +[2024-03-07T16:49:59.960Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-03-07T16:49:59.960Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-03-07T16:49:59.960Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-07T16:49:59.960Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-03-07T16:50:18.094Z] [NbConvertApp] Writing 118113 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-03-07T16:50:18.367Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-07T16:50:18.367Z] + filename=Sensitivity_analysis.ipynb +[2024-03-07T16:50:18.367Z] + echo Sensitivity_analysis.ipynb +[2024-03-07T16:50:18.367Z] + sed s/.ipynb$// +[2024-03-07T16:50:18.367Z] + filename=Sensitivity_analysis +[2024-03-07T16:50:18.367Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-03-07T16:50:18.367Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-07T16:50:20.279Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-03-07T16:50:42.266Z] [NbConvertApp] Writing 35352 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-03-07T16:50:42.266Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-07T16:50:42.266Z] + filename=time_series_analysis.ipynb +[2024-03-07T16:50:42.266Z] + echo time_series_analysis.ipynb +[2024-03-07T16:50:42.266Z] + sed s/.ipynb$// +[2024-03-07T16:50:42.266Z] + filename=time_series_analysis +[2024-03-07T16:50:42.266Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-03-07T16:50:42.266Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-07T16:50:43.217Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-03-07T16:50:58.197Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb +[2024-03-07T16:50:58.458Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-07T16:50:58.458Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-07T16:50:58.458Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-07T16:50:58.458Z] + sed s/.ipynb$// +[2024-03-07T16:50:58.458Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-03-07T16:50:58.458Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-03-07T16:50:58.459Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-07T16:51:00.366Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-03-07T16:52:21.822Z] [NbConvertApp] Writing 131058 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-03-07T16:52:21.822Z] + basename notebooks/hummingbird.ipynb +[2024-03-07T16:52:21.822Z] + filename=hummingbird.ipynb +[2024-03-07T16:52:21.822Z] + echo hummingbird.ipynb +[2024-03-07T16:52:21.822Z] + sed s/.ipynb$// +[2024-03-07T16:52:21.822Z] + filename=hummingbird +[2024-03-07T16:52:21.822Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-03-07T16:52:21.822Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-03-07T16:52:23.196Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-03-07T16:52:27.400Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb +[2024-03-07T16:52:27.400Z] + basename notebooks/stress-tests.ipynb +[2024-03-07T16:52:27.400Z] + filename=stress-tests.ipynb +[2024-03-07T16:52:27.400Z] + + echo stress-tests.ipynb +[2024-03-07T16:52:27.400Z] sed s/.ipynb$// +[2024-03-07T16:52:27.400Z] + filename=stress-tests +[2024-03-07T16:52:27.400Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-03-07T16:52:27.400Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-03-07T16:52:28.343Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-03-07T16:54:19.834Z] [NbConvertApp] Writing 424213 bytes to buildout/stress-tests.output.ipynb +[2024-03-07T16:54:19.834Z] + exit 1 +[2024-03-07T16:54:19.834Z] + EXIT_CODE=1 +[2024-03-07T16:54:19.834Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-07T16:54:19.834Z] + mkdir -p buildout/env-dump +[2024-03-07T16:54:19.834Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-07T16:54:19.834Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-07T16:54:19.834Z] + conda env export -n birdy +[2024-03-07T16:54:37.912Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-07T16:54:37.912Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-07T16:54:37.912Z] + conda list -n birdy --explicit +[2024-03-07T16:54:44.483Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-07T16:54:44.483Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-07T16:54:44.483Z] + pip freeze +[2024-03-07T16:54:46.399Z] + exit 1 +[Pipeline] } +[Pipeline] // withCredentials +[Pipeline] } +[Pipeline] // script +[Pipeline] } +[Pipeline] // stage +[Pipeline] stage +[Pipeline] { (Declarative: Post Actions) +[Pipeline] archiveArtifacts +[2024-03-07T16:54:48.791Z] Archiving artifacts +[2024-03-07T16:54:48.809Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:49.284Z] Archiving artifacts +[2024-03-07T16:54:51.523Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:52.994Z] Archiving artifacts +[2024-03-07T16:54:53.027Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:53.382Z] Archiving artifacts +[2024-03-07T16:54:53.417Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:53.452Z] Archiving artifacts +[2024-03-07T16:54:53.484Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:53.526Z] Archiving artifacts +[2024-03-07T16:54:53.566Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:54.580Z] Archiving artifacts +[2024-03-07T16:54:54.725Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:54.820Z] Archiving artifacts +[2024-03-07T16:54:54.947Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:55.066Z] Archiving artifacts +[2024-03-07T16:54:55.449Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:55.729Z] Archiving artifacts +[2024-03-07T16:54:56.262Z] Recording fingerprints +[Pipeline] archiveArtifacts +[2024-03-07T16:54:58.640Z] Archiving artifacts +[2024-03-07T16:54:58.740Z] Recording fingerprints +[Pipeline] emailextrecipients +[Pipeline] step +[2024-03-07T16:54:59.544Z] Sending e-mails to: vu.long@ouranos.ca +[Pipeline] } +[Pipeline] // stage +[Pipeline] } +[Pipeline] // timeout +[Pipeline] } +[Pipeline] // timestamps +[Pipeline] } +[Pipeline] // ansiColor +[Pipeline] } +$ docker stop --time=1 afee8048e2b4deaf0609277fd962ea28b5c30bfa175abfd9c040c3676602ff2d +$ docker rm -f afee8048e2b4deaf0609277fd962ea28b5c30bfa175abfd9c040c3676602ff2d +[Pipeline] // withDockerContainer +[Pipeline] } +[Pipeline] // withEnv +[Pipeline] } +[Pipeline] // node +[Pipeline] End of Pipeline +ERROR: script returned exit code 1 +Finished: FAILURE From e7946d13c2f43716ba51d25f97c13a47ca40f9d4 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 7 Mar 2024 13:29:23 -0500 Subject: [PATCH 035/104] docker: py310-240306 env export, build log, initial jenkins --- docker/saved_buildout/conda-env-export.yml | 579 +- docker/saved_buildout/docker-buildlogs.txt | 6409 ++++- .../jenkins-buildlogs-default.txt | 3578 +-- .../jenkins-buildlogs-raven.txt | 20405 ++++++++++++++-- 4 files changed, 26067 insertions(+), 4904 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index 978441c..6f78c3e 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -7,78 +7,78 @@ dependencies: - _libgcc_mutex=0.1=conda_forge - _openmp_mutex=4.5=2_gnu - affine=2.4.0=pyhd8ed1ab_0 - - aiobotocore=2.7.0=pyhd8ed1ab_1 + - aiobotocore=2.12.1=pyhd8ed1ab_0 - aiofiles=22.1.0=pyhd8ed1ab_0 - - aiohttp=3.8.6=py310h2372a71_1 + - aiohttp=3.9.3=py310h2372a71_0 - aioitertools=0.11.0=pyhd8ed1ab_0 - aiosignal=1.3.1=pyhd8ed1ab_0 - aiosqlite=0.19.0=pyhd8ed1ab_0 - - alembic=1.12.1=pyhd8ed1ab_0 + - alembic=1.13.1=pyhd8ed1ab_1 - alsa-lib=1.2.8=h166bdaf_0 - - altair=5.1.2=pyhd8ed1ab_0 + - altair=5.2.0=pyhd8ed1ab_0 - annotated-types=0.6.0=pyhd8ed1ab_0 - - ansi2html=1.8.0=py310hff52083_2 - - anyio=4.0.0=pyhd8ed1ab_0 + - ansi2html=1.9.1=py310hff52083_0 + - anyio=4.3.0=pyhd8ed1ab_0 - aom=3.5.0=h27087fc_0 - appdirs=1.4.4=pyh9f0ad1d_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h2372a71_4 - arrow=1.3.0=pyhd8ed1ab_0 + - arrow-cpp=11.0.0=ha770c72_14_cpu - asciitree=0.3.3=py_2 - asttokens=2.4.1=pyhd8ed1ab_0 - async-timeout=4.0.3=pyhd8ed1ab_0 - async_generator=1.10=py_0 - attr=2.5.1=h166bdaf_1 - - attrs=23.1.0=pyh71513ae_1 - - aws-c-auth=0.7.0=hf8751d9_2 - - aws-c-cal=0.6.0=h93469e0_0 - - aws-c-common=0.8.23=hd590300_0 - - aws-c-compression=0.2.17=h862ab75_1 - - aws-c-event-stream=0.3.1=h9599702_1 - - aws-c-http=0.7.11=hbe98c3e_0 - - aws-c-io=0.13.28=h3870b5a_0 - - aws-c-mqtt=0.8.14=h2e270ba_2 - - aws-c-s3=0.3.13=heb0bb06_2 - - aws-c-sdkutils=0.1.11=h862ab75_1 - - aws-checksums=0.1.16=h862ab75_1 - - aws-crt-cpp=0.20.3=he9c0e7f_4 - - aws-sdk-cpp=1.10.57=hbc2ea52_17 - - babel=2.13.1=pyhd8ed1ab_0 - - backports=1.0=pyhd8ed1ab_3 - - backports.functools_lru_cache=1.6.5=pyhd8ed1ab_0 - - bcrypt=4.0.1=py310hcb5633a_1 - - beautifulsoup4=4.12.2=pyha770c72_0 + - attrs=23.2.0=pyh71513ae_0 + - aws-c-auth=0.6.26=h987a71b_2 + - aws-c-cal=0.5.21=h48707d8_2 + - aws-c-common=0.8.14=h0b41bf4_0 + - aws-c-compression=0.2.16=h03acc5a_5 + - aws-c-event-stream=0.2.20=h00877a2_4 + - aws-c-http=0.7.6=hf342b9f_0 + - aws-c-io=0.13.19=h5b20300_3 + - aws-c-mqtt=0.8.6=hc4349f7_12 + - aws-c-s3=0.2.7=h909e904_1 + - aws-c-sdkutils=0.1.9=h03acc5a_0 + - aws-checksums=0.1.14=h03acc5a_5 + - aws-crt-cpp=0.19.8=hf7fbfca_12 + - aws-sdk-cpp=1.10.57=h17c43bd_8 + - azure-core-cpp=1.10.3=h22d5011_0 + - babel=2.14.0=pyhd8ed1ab_0 + - bcrypt=4.1.2=py310hcb5633a_0 + - beautifulsoup4=4.12.3=pyha770c72_0 - bias_correction=0.4=pyhd8ed1ab_0 - birdy=0.8.4=pyh1a96a4e_0 - bleach=6.1.0=pyhd8ed1ab_0 - blinker=1.7.0=pyhd8ed1ab_0 - blosc=1.21.5=h0f2a231_0 - - bokeh=3.3.0=pyhd8ed1ab_0 - - boltons=23.0.0=pyhd8ed1ab_0 + - bokeh=3.3.4=pyhd8ed1ab_0 + - boltons=23.1.1=pyhd8ed1ab_0 - boost-cpp=1.78.0=h5adbc97_2 - - botocore=1.31.64=pyhd8ed1ab_0 - - bottleneck=1.3.7=py310h1f7b6fc_1 - - branca=0.7.0=pyhd8ed1ab_1 + - botocore=1.34.51=pyge310_1234567_0 + - bottleneck=1.3.8=py310h1f7b6fc_0 + - branca=0.7.1=pyhd8ed1ab_0 - brotli=1.0.9=h166bdaf_9 - brotli-bin=1.0.9=h166bdaf_9 - brotli-python=1.0.9=py310hd8f1fbe_9 - brunsli=0.1=h9c3ff4c_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.21.0=hd590300_0 - - c-blosc2=2.11.1=hb4ffafa_0 + - c-ares=1.27.0=hd590300_0 + - c-blosc2=2.13.2=hb4ffafa_0 - ca-certificates=2024.2.2=hbcca054_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - - cachetools=5.3.2=pyhd8ed1ab_0 + - cachetools=5.3.3=pyhd8ed1ab_0 - cairo=1.16.0=ha61ee94_1014 - cartopy=0.22.0=py310hcc13569_1 - - cattrs=23.1.2=pyhd8ed1ab_0 + - cattrs=23.2.3=pyhd8ed1ab_0 - cdat_info=8.2.1=pyhd8ed1ab_2 - cdms2=3.1.5=py310h5f4584e_15 - cdtime=3.1.4=py310h1a17f1e_7 - certifi=2024.2.2=pyhd8ed1ab_0 - certipy=0.1.3=py_0 - - cf_xarray=0.8.6=pyhd8ed1ab_0 + - cf_xarray=0.9.0=pyhd8ed1ab_0 - cffi=1.16.0=py310h2fee648_0 - cfgrib=0.9.10.4=pyhd8ed1ab_0 - cfgv=3.3.1=pyhd8ed1ab_0 @@ -90,153 +90,152 @@ dependencies: - click-plugins=1.1.1=py_0 - cligj=0.7.2=pyhd8ed1ab_1 - climpred=2.4.0=pyhd8ed1ab_0 - - clisops=0.11.0=pyh1a96a4e_0 + - clisops=0.13.0=pyhca7485f_0 - cloudpickle=3.0.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - - colorcet=3.0.1=pyhd8ed1ab_0 - - comm=0.1.4=pyhd8ed1ab_0 + - colorcet=3.1.0=pyhd8ed1ab_0 + - comm=0.2.1=pyhd8ed1ab_0 - configurable-http-proxy=4.5.4=he2f69ee_2 - contourpy=1.2.0=py310hd41b1e2_0 - - coverage=7.3.2=py310h2372a71_0 - - cryptography=41.0.5=py310h75e40e8_0 - - curl=8.1.2=h409715c_0 + - coverage=7.4.3=py310h2372a71_1 + - cryptography=42.0.2=py310hb8475ec_0 + - curl=7.88.1=hdc1c0ab_1 - cycler=0.12.1=pyhd8ed1ab_0 - - cytoolz=0.12.2=py310h2372a71_1 - - dash=2.14.1=pyhd8ed1ab_0 - - dask=2023.10.1=pyhd8ed1ab_0 - - dask-core=2023.10.1=pyhd8ed1ab_0 + - cytoolz=0.12.3=py310h2372a71_0 + - dash=2.16.0=pyhd8ed1ab_0 + - dask=2024.2.1=pyhd8ed1ab_0 + - dask-core=2024.2.1=pyhd8ed1ab_0 - dask-labextension=6.2.0=pyhd8ed1ab_0 - dataclasses=0.8=pyhc8e2a94_3 - datashader=0.16.0=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - dbus=1.13.6=h5008d03_3 - - debugpy=1.8.0=py310hc6cd4ac_1 + - debugpy=1.8.1=py310hc6cd4ac_0 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - descartes=1.1.0=py_4 - - dill=0.3.7=pyhd8ed1ab_0 + - dill=0.3.8=pyhd8ed1ab_0 - distarray=2.12.2=pyh050c7b8_4 - - distlib=0.3.7=pyhd8ed1ab_0 - - distributed=2023.10.1=pyhd8ed1ab_0 + - distlib=0.3.8=pyhd8ed1ab_0 + - distributed=2024.2.1=pyhd8ed1ab_0 - docopt=0.6.2=py_1 - docrep=0.3.2=pyh44b312d_0 - eccodes=2.28.0=h7513371_1 - elfutils=0.189=hde5d1a3_0 - entrypoints=0.4=pyhd8ed1ab_0 - - eofs=1.4.0=py_0 + - eofs=1.4.1=pyhd8ed1ab_1 - esgf-compute-api=2.3.9=0_h1234567_ - - esgf-pyclient=0.3.1=pyh1a96a4e_2 - - esmf=8.4.0=mpi_mpich_hc592774_104 - - esmpy=8.4.0=mpi_mpich_py310h515c5ea_102 - - exceptiongroup=1.1.3=pyhd8ed1ab_0 + - esgf-pyclient=0.3.1=pyhca7485f_3 + - esmf=8.4.0=nompi_hdb2cfa9_4 + - esmpy=8.4.0=nompi_py310h4c636dd_2 + - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - expat=2.5.0=hcb278e6_1 + - expat=2.6.1=h59595ed_0 - fasteners=0.17.3=pyhd8ed1ab_0 - fastprogress=1.0.3=pyhd8ed1ab_0 - fftw=3.3.10=nompi_hc118613_108 - filelock=3.13.1=pyhd8ed1ab_0 - findlibs=0.0.5=pyhd8ed1ab_0 - fiona=1.9.1=py310ha325b7b_0 - - flask=3.0.0=pyhd8ed1ab_0 - - flox=0.8.1=pyhd8ed1ab_0 - - folium=0.15.0=pyhd8ed1ab_0 + - flask=3.0.2=pyhd8ed1ab_0 + - flox=0.9.2=pyhd8ed1ab_0 + - folium=0.16.0=pyhd8ed1ab_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - - font-ttf-ubuntu=0.83=hab24e00_0 + - font-ttf-ubuntu=0.83=h77eed37_1 - fontconfig=2.14.2=h14ed4e7_0 - fonts-conda-ecosystem=1=0 - fonts-conda-forge=1=0 - - fonttools=4.44.0=py310h2372a71_0 + - fonttools=4.49.0=py310h2372a71_0 - fqdn=1.5.1=pyhd8ed1ab_0 - freeglut=3.2.2=h9c3ff4c_1 - freetype=2.12.1=h267a509_2 - freexl=1.0.6=h166bdaf_1 - - frozenlist=1.4.0=py310h2372a71_1 - - fsspec=2023.10.0=pyhca7485f_0 + - frozenlist=1.4.1=py310h2372a71_0 + - fsspec=2024.2.0=pyhca7485f_0 - funcsigs=1.0.2=py_3 - - future=0.18.3=pyhd8ed1ab_0 - - g2clib=1.6.3=hbecde78_1 - - gcsfs=2023.10.0=pyhd8ed1ab_0 + - future=1.0.0=pyhd8ed1ab_0 + - g2clib=1.8.0=ha770c72_6 + - gcsfs=2024.2.0=pyhd8ed1ab_0 - gdal=3.6.2=py310hc1b7723_6 - - geckodriver=0.33.0=h0e8d75e_1 - - geographiclib=1.52=pyhd8ed1ab_0 - - geopandas=0.14.0=pyhd8ed1ab_1 - - geopandas-base=0.14.0=pyha770c72_1 - - geopy=2.4.0=pyhd8ed1ab_0 + - geckodriver=0.34.0=h2b8f863_0 + - geographiclib=2.0=pyhd8ed1ab_0 + - geopandas=0.14.3=pyhd8ed1ab_0 + - geopandas-base=0.14.3=pyha770c72_0 + - geopy=2.4.1=pyhd8ed1ab_1 - geos=3.11.1=h27087fc_0 - geotiff=1.7.1=h7a142b4_6 - - geoviews=1.11.0=pyhd8ed1ab_0 - - geoviews-core=1.11.0=pyha770c72_0 + - geoviews=1.11.1=pyhd8ed1ab_0 + - geoviews-core=1.11.1=pyha770c72_0 - gettext=0.21.1=h27087fc_0 - gflags=2.2.2=he1b5a44_1004 - giflib=5.2.1=h0b41bf4_3 - gitdb=4.0.11=pyhd8ed1ab_0 - - gitpython=3.1.40=pyhd8ed1ab_0 + - gitpython=3.1.42=pyhd8ed1ab_0 - glib=2.78.1=hfc55251_0 - glib-tools=2.78.1=hfc55251_0 - glog=0.6.0=h6f12383_0 - - gmp=6.2.1=h58526e2_0 - - gnutls=3.7.8=hf3e180e_0 - - google-api-core=2.12.0=pyhd8ed1ab_0 - - google-auth=2.23.4=pyhca7485f_0 - - google-auth-oauthlib=1.1.0=pyhd8ed1ab_0 - - google-cloud-core=2.3.3=pyhd8ed1ab_0 - - google-cloud-storage=2.13.0=pyhca7485f_0 + - gnutls=3.7.9=hb077bed_0 + - google-api-core=2.17.1=pyhd8ed1ab_0 + - google-auth=2.28.1=pyhca7485f_0 + - google-auth-oauthlib=1.2.0=pyhd8ed1ab_0 + - google-cloud-core=2.4.1=pyhd8ed1ab_0 + - google-cloud-storage=2.14.0=pyhca7485f_0 - google-crc32c=1.1.2=py310hc5c09a0_5 - - google-resumable-media=2.6.0=pyhd8ed1ab_0 - - googleapis-common-protos=1.61.0=pyhd8ed1ab_0 + - google-resumable-media=2.7.0=pyhd8ed1ab_0 + - googleapis-common-protos=1.62.0=pyhd8ed1ab_0 - graphite2=1.3.13=h58526e2_1001 - - greenlet=3.0.1=py310hc6cd4ac_0 - - grpcio=1.56.2=py310h1b8f574_1 + - greenlet=3.0.3=py310hc6cd4ac_0 + - grpcio=1.52.1=py310heca2aa9_1 - gst-plugins-base=1.22.0=h4243ec0_2 - gstreamer=1.22.0=h25f0c4b_2 - - gstreamer-orc=0.4.34=hd590300_0 + - gstreamer-orc=0.4.38=hd590300_0 - h11=0.14.0=pyhd8ed1ab_0 - - h5netcdf=1.2.0=pyhd8ed1ab_0 + - h5netcdf=1.3.0=pyhd8ed1ab_0 - h5py=3.8.0=nompi_py310h0311031_100 - harfbuzz=6.0.0=h8e241bc_0 - - haversine=2.8.0=pyhd8ed1ab_0 + - haversine=2.8.1=pyhd8ed1ab_0 - hdf4=4.2.15=h9772cbc_5 - - hdf5=1.12.2=mpi_mpich_h5d83325_1 - - holoviews=1.18.0=pyhd8ed1ab_0 - - hvplot=0.9.0=pyhd8ed1ab_0 + - hdf5=1.12.2=nompi_h4df4325_101 + - holoviews=1.18.3=pyhd8ed1ab_0 + - hvplot=0.9.2=pyhd8ed1ab_0 - icu=70.1=h27087fc_0 - - identify=2.5.31=pyhd8ed1ab_0 - - idna=3.4=pyhd8ed1ab_0 + - identify=2.5.35=pyhd8ed1ab_0 + - idna=3.6=pyhd8ed1ab_0 - imagecodecs=2023.1.23=py310ha3ed6a1_0 - - imageio=2.31.5=pyh8c1a49c_0 - - importlib-metadata=6.8.0=pyha770c72_0 - - importlib_metadata=6.8.0=hd8ed1ab_0 - - importlib_resources=6.1.1=pyhd8ed1ab_0 + - imageio=2.34.0=pyh4b66e23_0 + - importlib-metadata=7.0.1=pyha770c72_0 + - importlib_metadata=7.0.1=hd8ed1ab_0 + - importlib_resources=6.1.2=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - intake=0.7.0=pyhd8ed1ab_0 - intake-esm=2024.2.6=pyhd8ed1ab_1 - intake-geopandas=0.4.0=pyhd8ed1ab_0 - - intake-thredds=2022.8.19=pyhd8ed1ab_0 + - intake-thredds=2024.3.1=pyhd8ed1ab_0 - intake-xarray=0.7.0=pyhd8ed1ab_0 - - ipykernel=6.26.0=pyhf8b6a83_0 - - ipyleaflet=0.17.4=pyhd8ed1ab_0 - - ipython=8.17.2=pyh41d4057_0 + - ipykernel=6.29.3=pyhd33586a_0 + - ipyleaflet=0.18.2=pyhd8ed1ab_0 + - ipython=8.22.2=pyh707e725_0 - ipython_genutils=0.2.0=py_1 - - ipywidgets=8.1.1=pyhd8ed1ab_0 + - ipywidgets=8.1.2=pyhd8ed1ab_0 - isoduration=20.11.0=pyhd8ed1ab_0 - itsdangerous=2.1.2=pyhd8ed1ab_0 - jack=1.9.22=h11f4161_0 - jasper=2.0.33=h0ff4b12_1 - jedi=0.19.1=pyhd8ed1ab_0 - - jinja2=3.1.2=pyhd8ed1ab_1 + - jinja2=3.1.3=pyhd8ed1ab_0 - jmespath=1.0.1=pyhd8ed1ab_0 - joblib=1.3.2=pyhd8ed1ab_0 - - jpeg=9e=h0b41bf4_3 + - jpeg=9e=h166bdaf_2 - json-c=0.16=hc379101_0 - - json5=0.9.14=pyhd8ed1ab_0 + - json5=0.9.22=pyhd8ed1ab_0 - jsonpickle=3.0.2=pyhd8ed1ab_1 - jsonpointer=2.4=py310hff52083_3 - - jsonschema=4.19.2=pyhd8ed1ab_0 - - jsonschema-specifications=2023.7.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.19.2=pyhd8ed1ab_0 + - jsonschema=4.21.1=pyhd8ed1ab_0 + - jsonschema-specifications=2023.12.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.21.1=pyhd8ed1ab_0 - jupyter=1.0.0=pyhd8ed1ab_10 - jupyter-archive=3.4.0=pyhd8ed1ab_0 - jupyter-dash=0.4.2=pyhd8ed1ab_1 @@ -246,102 +245,104 @@ dependencies: - jupyter_bokeh=3.0.7=pyhd8ed1ab_0 - jupyter_client=7.4.9=pyhd8ed1ab_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - - jupyter_core=5.5.0=py310hff52083_0 + - jupyter_core=5.7.1=py310hff52083_0 - jupyter_events=0.9.0=pyhd8ed1ab_0 - - jupyter_server=2.10.0=pyhd8ed1ab_0 - - jupyter_server_fileid=0.9.0=pyhd8ed1ab_0 - - jupyter_server_terminals=0.4.4=pyhd8ed1ab_1 + - jupyter_server=2.13.0=pyhd8ed1ab_0 + - jupyter_server_fileid=0.9.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.2=pyhd8ed1ab_0 - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 - jupyter_telemetry=0.1.0=pyhd8ed1ab_1 - jupyter_ydoc=0.2.4=pyhd8ed1ab_0 - jupyterhub=4.0.2=pyh31011fe_0 - jupyterhub-base=4.0.2=pyh31011fe_0 - - jupyterlab=3.6.6=pyhd8ed1ab_0 - - jupyterlab-git=0.44.0=pyhd8ed1ab_0 + - jupyterlab=3.6.7=pyhd8ed1ab_0 + - jupyterlab-git=0.8.2=py_0 - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 - jupyterlab-topbar=0.6.1=pyhd8ed1ab_2 - - jupyterlab_pygments=0.2.2=pyhd8ed1ab_0 - - jupyterlab_server=2.25.0=pyhd8ed1ab_0 - - jupyterlab_widgets=3.0.9=pyhd8ed1ab_0 - - jupytext=1.15.2=pyh5da7574_0 - - jxrlib=1.1=h7f98852_2 + - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 + - jupyterlab_server=2.25.3=pyhd8ed1ab_0 + - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 + - jupytext=1.16.1=pyhd8ed1ab_0 + - jxrlib=1.1=hd590300_3 - kealib=1.5.0=ha7026e8_0 - keyutils=1.6.1=h166bdaf_0 - kiwisolver=1.4.5=py310hd41b1e2_1 - krb5=1.20.1=h81ceb04_0 - lame=3.100=h166bdaf_1003 - - lazy-object-proxy=1.9.0=py310h2372a71_1 + - lazy-object-proxy=1.10.0=py310h2372a71_0 - lazy_loader=0.3=pyhd8ed1ab_0 - lcms2=2.15=hfd0df8a_0 - ld_impl_linux-64=2.40=h41732ed_0 - lerc=4.0.0=h27087fc_0 - - libabseil=20230125.3=cxx17_h59595ed_0 + - libabseil=20230125.0=cxx17_hcb278e6_1 - libaec=1.1.2=h59595ed_1 - libarchive=3.6.2=h3d51595_0 - - libarrow=12.0.1=h657c46f_7_cpu + - libarrow=11.0.0=h93537a5_14_cpu - libavif=0.11.1=h8182462_2 - - libblas=3.9.0=19_linux64_openblas + - libblas=3.9.0=21_linux64_openblas - libbrotlicommon=1.0.9=h166bdaf_9 - libbrotlidec=1.0.9=h166bdaf_9 - libbrotlienc=1.0.9=h166bdaf_9 - libcap=2.67=he9d0100_0 - - libcblas=3.9.0=19_linux64_openblas + - libcblas=3.9.0=21_linux64_openblas - libcdms=3.1.2=hf94f14b_119 - libcf=1.0.3=py310hbc577d2_115 - - libclang=15.0.7=default_h7634d5b_3 - - libclang13=15.0.7=default_h9986a30_3 + - libclang=15.0.7=default_hb11cfb5_4 + - libclang13=15.0.7=default_ha2b6cf4_4 - libcrc32c=1.1.2=h9c3ff4c_0 - libcups=2.3.3=h36d4200_3 - - libcurl=8.1.2=h409715c_0 + - libcurl=7.88.1=hdc1c0ab_1 - libdb=6.2.32=h9c3ff4c_0 - libdeflate=1.17=h0b41bf4_0 - - libdrm=2.4.114=h166bdaf_0 + - libdrm=2.4.120=hd590300_0 - libdrs=3.1.2=hf593df3_118 - libdrs_f=3.1.2=h7e76ec7_114 - libedit=3.1.20191231=he28a2e2_2 - - libev=4.33=h516909a_1 + - libev=4.33=hd590300_2 - libevent=2.1.10=h28343ad_4 - - libexpat=2.5.0=hcb278e6_1 + - libexpat=2.6.1=h59595ed_0 - libffi=3.4.2=h7f98852_5 - libflac=1.4.3=h59595ed_0 - - libgcc-ng=13.2.0=h807b86a_2 - - libgcrypt=1.10.2=hd590300_0 + - libgcc-ng=13.2.0=h807b86a_5 + - libgcrypt=1.10.3=hd590300_0 - libgdal=3.6.2=h8c90c07_6 - - libgfortran-ng=13.2.0=h69a702a_2 - - libgfortran5=13.2.0=ha4646dd_2 + - libgfortran-ng=13.2.0=h69a702a_5 + - libgfortran5=13.2.0=ha4646dd_5 - libglib=2.78.1=hebfc3b9_0 - libglu=9.0.0=he1b5a44_1001 - - libgomp=13.2.0=h807b86a_2 - - libgoogle-cloud=2.12.0=h840a212_1 - - libgpg-error=1.47=h71f35ed_0 - - libgrpc=1.56.2=h3905398_1 - - libiconv=1.17=h166bdaf_0 - - libidn2=2.3.4=h166bdaf_0 + - libgomp=13.2.0=h807b86a_5 + - libgoogle-cloud=2.8.0=h0bc5f78_1 + - libgpg-error=1.48=h71f35ed_0 + - libgrpc=1.52.1=hcf146ea_1 + - libiconv=1.17=hd590300_2 + - libidn2=2.3.7=hd590300_0 + - libjpeg-turbo=2.1.4=h166bdaf_0 - libkml=1.3.0=h01aab08_1016 - - liblapack=3.9.0=19_linux64_openblas + - liblapack=3.9.0=21_linux64_openblas - libllvm14=14.0.6=hcd5def8_4 - libllvm15=15.0.7=hadd5161_1 - libllvm16=16.0.1=hadd5161_0 - libmicrohttpd=0.9.77=h97afed2_0 - - libnetcdf=4.8.1=mpi_mpich_hcd871d9_6 - - libnghttp2=1.55.1=h47da74e_0 + - libnetcdf=4.8.1=nompi_h261ec11_106 + - libnghttp2=1.58.0=h47da74e_0 + - libnl=3.9.0=hd590300_0 - libnsl=2.0.1=hd590300_0 - libnuma=2.0.16=h0b41bf4_1 - libogg=1.3.4=h7f98852_1 - - libopenblas=0.3.24=pthreads_h413a1c8_0 + - libopenblas=0.3.26=pthreads_h413a1c8_0 - libopus=1.3.1=h7f98852_1 - - libpciaccess=0.17=h166bdaf_0 - - libpng=1.6.39=h753d276_0 + - libpciaccess=0.18=hd590300_0 + - libpng=1.6.43=h2797004_0 - libpq=15.2=hb675445_0 - - libprotobuf=4.23.3=hd1fb520_1 + - libprotobuf=3.21.12=hfc55251_2 - librttopo=1.1.0=ha49c73b_12 - libsndfile=1.2.2=hc60ed4a_1 - libsodium=1.0.18=h36c2ea0_1 - libspatialindex=1.9.3=h9c3ff4c_4 - libspatialite=5.0.1=h221c8f1_23 - - libsqlite=3.44.0=h2797004_0 + - libsqlite=3.45.1=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libstdcxx-ng=13.2.0=h7e041cc_2 + - libstdcxx-ng=13.2.0=h7e041cc_5 - libsystemd0=253=h8c4010b_1 - libtasn1=4.19.0=h166bdaf_0 - libthrift=0.18.1=h5e4af38_0 @@ -355,214 +356,218 @@ dependencies: - libvorbis=1.3.7=h9c3ff4c_0 - libwebp-base=1.3.2=hd590300_0 - libxcb=1.13=h7f98852_1004 + - libxcrypt=4.4.36=hd590300_1 - libxkbcommon=1.5.0=h79f4944_1 - libxml2=2.10.3=hca2bb57_4 - libxslt=1.1.37=h873f0b0_0 - libzip=1.10.1=h2629f0a_3 - libzlib=1.2.13=hd590300_5 - libzopfli=1.0.3=h9c3ff4c_0 - - linkify-it-py=2.0.0=pyhd8ed1ab_0 - - llvmlite=0.40.1=py310h1b8f574_0 + - linkify-it-py=2.0.3=pyhd8ed1ab_0 + - llvmlite=0.42.0=py310h1b8f574_1 - lmoments3=1.0.6=pyhd8ed1ab_0 - locket=1.0.0=pyhd8ed1ab_0 - loguru=0.7.2=py310hff52083_1 - lxml=4.9.2=py310hbdc0903_0 - - lz4=4.3.2=py310h350c4a5_1 + - lz4=4.3.3=py310h350c4a5_0 - lz4-c=1.9.4=hcb278e6_0 - lzo=2.10=h516909a_1000 - - mako=1.2.4=pyhd8ed1ab_0 + - mako=1.3.2=pyhd8ed1ab_0 - mamba_gator=5.2.1=pyhd8ed1ab_0 - mapclassify=2.6.1=pyhd8ed1ab_0 - - markdown=3.5.1=pyhd8ed1ab_0 + - markdown=3.5.2=pyhd8ed1ab_0 - markdown-it-py=3.0.0=pyhd8ed1ab_0 - - markupsafe=2.1.3=py310h2372a71_1 - - matplotlib=3.8.1=py310hff52083_0 - - matplotlib-base=3.8.1=py310h62c0568_0 + - markupsafe=2.1.5=py310h2372a71_0 + - matplotlib=3.8.3=py310hff52083_0 + - matplotlib-base=3.8.3=py310h62c0568_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - mdit-py-plugins=0.4.0=pyhd8ed1ab_0 - - mdurl=0.1.0=pyhd8ed1ab_0 + - mdurl=0.1.2=pyhd8ed1ab_0 - memory_profiler=0.61.0=pyhd8ed1ab_0 - mesalib=23.0.2=h3855f93_0 + - minizip=4.0.3=h0ab5242_0 - mistune=3.0.2=pyhd8ed1ab_0 - - mpg123=1.32.3=h59595ed_0 - - mpi=1.0=mpich - - mpi4py=3.1.4=py310h37cc914_0 - - mpich=4.0.3=h846660c_100 - - msgpack-python=1.0.6=py310hd41b1e2_0 - - multidict=6.0.4=py310h2372a71_1 + - mpg123=1.32.4=h59595ed_0 + - mpi=1.0=openmpi + - mpi4py=3.1.5=py310h2a790f2_1 + - msgpack-python=1.0.7=py310hd41b1e2_0 + - multidict=6.0.5=py310h2372a71_0 - multipledispatch=0.6.0=py_0 - - multiprocess=0.70.15=py310h2372a71_1 + - multiprocess=0.70.16=py310h2372a71_0 - munch=4.0.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - - myproxyclient=2.1.0=pyhd8ed1ab_2 + - myproxyclient=2.1.1=pyhd8ed1ab_0 - mypy_extensions=1.0.0=pyha770c72_0 - mysql-common=8.0.33=hf1915f5_6 - mysql-libs=8.0.33=hca2cd23_6 - nbclassic=1.0.0=pyhb4ecaf3_1 - nbclient=0.7.4=pyhd8ed1ab_0 - - nbconvert=7.11.0=pyhd8ed1ab_0 - - nbconvert-core=7.11.0=pyhd8ed1ab_0 - - nbconvert-pandoc=7.11.0=pyhd8ed1ab_0 - - nbdime=3.2.1=pyhd8ed1ab_0 + - nbconvert=7.16.2=pyhd8ed1ab_0 + - nbconvert-core=7.16.2=pyhd8ed1ab_0 + - nbconvert-pandoc=7.16.2=pyhd8ed1ab_0 + - nbdime=4.0.1=pyhd8ed1ab_0 - nbformat=5.9.2=pyhd8ed1ab_0 - nbresuse=0.4.0=pyhd8ed1ab_0 - - nbval=0.10.0=pyhd8ed1ab_0 + - nbval=0.11.0=pyhd8ed1ab_0 - nc-time-axis=1.4.1=pyhd8ed1ab_0 + - nceplibs-g2c=1.8.0=h4a0a8e2_6 - ncurses=6.4=h59595ed_2 - - nest-asyncio=1.5.8=pyhd8ed1ab_0 + - nest-asyncio=1.6.0=pyhd8ed1ab_0 - nested_dict=1.61=pyhd3deb0d_0 - - netcdf-fortran=4.6.0=mpi_mpich_h1e13492_2 + - netcdf-fortran=4.6.0=nompi_he1eeb6f_102 - netcdf4=1.6.2=nompi_py310h55e1e36_100 - - nettle=3.8.1=hc379101_1 + - nettle=3.9.1=h7ab15ed_0 - networkx=3.2.1=pyhd8ed1ab_0 - nodeenv=1.8.0=pyhd8ed1ab_0 - nodejs=18.15.0=h8d033a5_0 - notebook=6.5.6=pyha770c72_0 - - notebook-shim=0.2.3=pyhd8ed1ab_0 + - notebook-shim=0.2.4=pyhd8ed1ab_0 - nspr=4.35=h27087fc_0 - - nss=3.94=h1d7d5a4_0 - - numba=0.57.1=py310h0f6aa51_0 + - nss=3.98=h1d7d5a4_0 + - numba=0.59.0=py310h7dc5dd1_1 - numcodecs=0.12.1=py310hc6cd4ac_0 - numpy=1.24.4=py310ha4c1d20_0 - numpy_groupies=0.10.2=pyhd8ed1ab_0 - oauthlib=3.2.2=pyhd8ed1ab_0 - - openblas=0.3.24=pthreads_h7a3da1a_0 + - openblas=0.3.26=pthreads_h7a3da1a_0 - openjpeg=2.5.0=hfec8fc6_2 - - openssl=3.2.1=hd590300_0 - - orc=1.9.0=h385abfd_1 + - openmpi=4.1.6=h336e698_100 + - openssl=3.1.5=hd590300_0 + - orc=1.8.3=h2f23424_1 - outcome=1.3.0.post0=pyhd8ed1ab_0 - - overrides=7.4.0=pyhd8ed1ab_0 + - overrides=7.7.0=pyhd8ed1ab_0 - owslib=0.28.1=pyhd8ed1ab_0 - p11-kit=0.24.1=hc5aa10d_0 - packaging=23.2=pyhd8ed1ab_0 - pamela=1.1.0=pyh1a96a4e_0 - - pandas=2.1.2=py310hcc13569_0 - - pandoc=3.1.3=h32600fe_0 + - pandas=2.1.4=py310hcc13569_0 + - pandoc=3.1.12.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - panel=1.3.1=pyhd8ed1ab_0 - - parallelio=2.5.10=mpi_mpich_h862c5c2_100 - - param=2.0.0=pyhca7485f_0 - - paramiko=3.3.1=pyhd8ed1ab_0 + - panel=1.3.8=pyhd8ed1ab_0 + - param=2.0.2=pyhca7485f_0 + - paramiko=3.4.0=pyhd8ed1ab_0 + - parquet-cpp=1.5.1=2 - parse=1.20.1=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - partd=1.4.1=pyhd8ed1ab_0 - - pathos=0.3.1=pyhd8ed1ab_0 - - patsy=0.5.3=pyhd8ed1ab_0 + - pathos=0.3.2=pyhd8ed1ab_1 + - patsy=0.5.6=pyhd8ed1ab_0 - pcre2=10.40=hc3806b6_0 - - pexpect=4.8.0=pyh1a96a4e_2 + - pexpect=4.9.0=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - pillow=9.4.0=py310h023d228_1 - - pint=0.22=pyhd8ed1ab_1 - - pip=23.3.1=pyhd8ed1ab_0 - - pixman=0.42.2=h59595ed_0 + - pint=0.23=pyhd8ed1ab_0 + - pip=24.0=pyhd8ed1ab_0 + - pixman=0.43.2=h59595ed_0 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=3.11.0=pyhd8ed1ab_0 - - plotly=5.18.0=pyhd8ed1ab_0 - - pluggy=1.3.0=pyhd8ed1ab_0 + - platformdirs=4.2.0=pyhd8ed1ab_0 + - plotly=5.19.0=pyhd8ed1ab_0 + - pluggy=1.4.0=pyhd8ed1ab_0 - ply=3.11=py_1 - - pooch=1.8.0=pyhd8ed1ab_0 + - pooch=1.8.1=pyhd8ed1ab_0 - poppler=23.01.0=h091648b_0 - poppler-data=0.4.12=hd8ed1ab_0 - postgresql=15.2=h3248436_0 - - pox=0.3.3=pyhd8ed1ab_0 - - ppft=1.7.6.7=pyhd8ed1ab_0 - - pre-commit=3.5.0=pyha770c72_0 + - pox=0.3.4=pyhd8ed1ab_0 + - ppft=1.7.6.8=pyhd8ed1ab_0 + - pre-commit=3.6.2=pyha770c72_0 - proj=9.1.1=h8ffa02c_2 - - prometheus_client=0.18.0=pyhd8ed1ab_0 - - prompt-toolkit=3.0.39=pyha770c72_0 - - prompt_toolkit=3.0.39=hd8ed1ab_0 + - prometheus_client=0.20.0=pyhd8ed1ab_0 + - prompt-toolkit=3.0.42=pyha770c72_0 + - prompt_toolkit=3.0.42=hd8ed1ab_0 - properscoring=0.1=py_0 - - protobuf=4.23.3=py310hb875b13_0 + - protobuf=4.21.12=py310heca2aa9_0 - pscript=0.7.7=pyhd8ed1ab_0 - - psutil=5.9.5=py310h2372a71_1 + - psutil=5.9.8=py310h2372a71_0 - pthread-stubs=0.4=h36c2ea0_1001 - ptyprocess=0.7.0=pyhd3deb0d_0 - pulseaudio=16.1=hcb278e6_3 - pulseaudio-client=16.1=h5195f5e_3 - pulseaudio-daemon=16.1=ha8d29e2_3 - pure_eval=0.2.2=pyhd8ed1ab_0 - - pyarrow=12.0.1=py310h0576679_7_cpu - - pyasn1=0.5.0=pyhd8ed1ab_0 + - pyarrow=11.0.0=py310h633f555_14_cpu + - pyarrow-hotfix=0.6=pyhd8ed1ab_0 + - pyasn1=0.5.1=pyhd8ed1ab_0 - pyasn1-modules=0.3.0=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - - pyct=0.4.6=py_0 - - pyct-core=0.4.6=py_0 + - pyct=0.5.0=pyhd8ed1ab_0 - pycurl=7.45.1=py310h60f9ec7_3 - pydantic=2.6.3=pyhd8ed1ab_0 - pydantic-core=2.16.3=py310hcb5633a_0 - pydap=3.4.0=pyhd8ed1ab_0 - pydeck=0.8.0=pyhd8ed1ab_0 - - pygments=2.16.1=pyhd8ed1ab_0 - - pyjwt=2.8.0=pyhd8ed1ab_0 - - pykdtree=1.3.9=py310h1f7b6fc_1 + - pygments=2.17.2=pyhd8ed1ab_0 + - pyjwt=2.8.0=pyhd8ed1ab_1 + - pykdtree=1.3.11=py310h1f7b6fc_0 - pymbolic=2022.2=pyhd8ed1ab_0 - pymetalink=6.4=pyhd8ed1ab_0 - pynacl=1.5.0=py310h2372a71_3 - pyogrio=0.5.1=py310ha325b7b_0 - - pyopenssl=23.3.0=pyhd8ed1ab_0 - - pyparsing=3.1.1=pyhd8ed1ab_0 + - pyopenssl=24.0.0=pyhd8ed1ab_0 + - pyparsing=3.1.2=pyhd8ed1ab_0 - pyproj=3.5.0=py310h15e2413_0 - pyqt=5.15.9=py310h04931ad_5 - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - pyshp=2.3.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 - - pytest=7.4.3=pyhd8ed1ab_0 - - pytest-xdist=3.3.1=pyhd8ed1ab_0 + - pytest=8.0.2=pyhd8ed1ab_0 + - pytest-xdist=3.5.0=pyhd8ed1ab_0 - python=3.10.13=hd12c33a_0_cpython - - python-dateutil=2.8.2=pyhd8ed1ab_0 + - python-dateutil=2.9.0=pyhd8ed1ab_0 - python-eccodes=1.5.1=py310h0a54255_0 - - python-fastjsonschema=2.18.1=pyhd8ed1ab_0 + - python-fastjsonschema=2.19.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-pptx=0.6.23=pyhd8ed1ab_0 - - python-tzdata=2023.3=pyhd8ed1ab_0 + - python-tzdata=2024.1=pyhd8ed1ab_0 - python_abi=3.10=4_cp310 - pytools=2023.1.1=pyhd8ed1ab_0 - - pytz=2023.3.post1=pyhd8ed1ab_0 + - pytz=2024.1=pyhd8ed1ab_0 - pyu2f=0.1.5=pyhd8ed1ab_0 - pyviz_comms=2.3.2=pyhd8ed1ab_0 - pywavelets=1.4.1=py310h1f7b6fc_1 - pyyaml=6.0.1=py310h2372a71_1 - pyzmq=24.0.1=py310h330234f_1 - qt-main=5.15.8=h5d23da1_6 - - qtconsole-base=5.5.0=pyha770c72_0 + - qtconsole-base=5.5.1=pyha770c72_0 - qtpy=2.4.1=pyhd8ed1ab_0 - rasterio=1.3.6=py310h3e853a9_0 - raven-hydro=0.2.4=py310hee4f699_0 - ravenpy=0.13.0=py310hff52083_0 - - rdma-core=28.9=h59595ed_1 - - re2=2023.03.02=h8c504da_0 + - rdma-core=50.0=hd3aeb46_0 + - re2=2023.02.02=hcb278e6_0 - readline=8.2=h8228510_1 - rechunker=0.5.2=pyhd8ed1ab_1 - - referencing=0.30.2=pyhd8ed1ab_0 + - referencing=0.33.0=pyhd8ed1ab_0 - regionmask=0.11.0=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - requests-cache=1.1.0=pyhd8ed1ab_0 + - requests-cache=1.2.0=pyhd8ed1ab_0 - requests-magpie=0.2.0=pyhd8ed1ab_0 - requests-oauthlib=1.3.1=pyhd8ed1ab_0 - retrying=1.3.3=py_2 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - - rich=13.6.0=pyhd8ed1ab_0 - - rioxarray=0.15.0=pyhd8ed1ab_0 - - roocs-utils=0.6.4=pyh1a96a4e_0 - - rpds-py=0.12.0=py310hcb5633a_0 + - rich=13.7.1=pyhd8ed1ab_0 + - rioxarray=0.15.1=pyhd8ed1ab_0 + - roocs-grids=0.1.2=pyhd8ed1ab_0 + - roocs-utils=0.6.7=pyhca7485f_0 + - rpds-py=0.18.0=py310hcb5633a_0 - rsa=4.9=pyhd8ed1ab_0 - - rtree=1.1.0=py310hbdcdc62_0 - - ruamel.yaml=0.18.5=py310h2372a71_0 - - ruamel.yaml.clib=0.2.7=py310h2372a71_2 - - s2n=1.3.46=h06160fa_0 - - s3fs=2023.10.0=pyhd8ed1ab_0 - - salib=1.4.7=pyhd8ed1ab_0 + - rtree=1.2.0=py310hbdcdc62_0 + - ruamel.yaml=0.18.6=py310h2372a71_0 + - ruamel.yaml.clib=0.2.8=py310h2372a71_0 + - s2n=1.3.41=h3358134_0 + - s3fs=2024.2.0=pyhd8ed1ab_0 + - salib=1.4.8=pyhd8ed1ab_0 - scikit-image=0.22.0=py310hcc13569_2 - - scikit-learn=1.3.2=py310h1fdf081_1 - - scipy=1.11.3=py310hb13e2d6_1 + - scikit-learn=1.4.1.post1=py310h1fdf081_0 + - scipy=1.12.0=py310hb13e2d6_2 - scp=0.14.5=pyhd8ed1ab_0 - - seaborn=0.13.0=hd8ed1ab_0 - - seaborn-base=0.13.0=pyhd8ed1ab_0 - - selenium=4.15.1=pyhd8ed1ab_0 - - selenium-manager=4.15.0=he8a937b_0 + - seaborn=0.13.2=hd8ed1ab_0 + - seaborn-base=0.13.2=pyhd8ed1ab_0 + - selenium=4.18.1=pyhd8ed1ab_0 + - selenium-manager=4.18.1=he8a937b_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=68.2.2=pyhd8ed1ab_0 + - setuptools=69.1.1=pyhd8ed1ab_0 - shapely=2.0.1=py310h8b84c32_0 - simpervisor=1.0.0=pyhd8ed1ab_0 - sip=6.7.12=py310hc6cd4ac_0 @@ -570,21 +575,21 @@ dependencies: - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - snappy=1.1.10=h9fff704_0 - - sniffio=1.3.0=pyhd8ed1ab_0 + - sniffio=1.3.1=pyhd8ed1ab_0 - snuggs=1.4.7=py_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - - sparse=0.14.0=pyhd8ed1ab_0 + - sparse=0.15.1=pyhd8ed1ab_1 - spotpy=1.6.2=pyhd8ed1ab_0 - - sqlalchemy=2.0.23=py310h2372a71_0 - - sqlite=3.44.0=h2c6b66d_0 + - sqlalchemy=2.0.28=py310h2372a71_0 + - sqlite=3.45.1=h2c6b66d_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - statsmodels=0.14.0=py310h1f7b6fc_2 - - streamlit=1.28.1=pyhd8ed1ab_0 - - tblib=2.0.0=pyhd8ed1ab_0 + - statsmodels=0.14.1=py310h1f7b6fc_0 + - streamlit=1.31.1=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_0 - tenacity=8.2.3=pyhd8ed1ab_0 - - terminado=0.17.1=pyh41d4057_0 - - threadpoolctl=3.2.0=pyha21a80b_0 + - terminado=0.18.0=pyh0d859eb_0 + - threadpoolctl=3.3.0=pyhc1e730c_0 - threddsclient=0.4.5=pyhca7485f_0 - tifffile=2023.8.12=pyhd8ed1ab_0 - tiledb=2.13.2=hd532e3d_0 @@ -592,45 +597,45 @@ dependencies: - tk=8.6.13=noxft_h4845f30_101 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - - toolz=0.12.0=pyhd8ed1ab_0 - - tornado=6.3.3=py310h2372a71_1 - - tqdm=4.66.1=pyhd8ed1ab_0 - - traitlets=5.13.0=pyhd8ed1ab_0 + - toolz=0.12.1=pyhd8ed1ab_0 + - tornado=6.4=py310h2372a71_0 + - tqdm=4.66.2=pyhd8ed1ab_0 + - traitlets=5.14.1=pyhd8ed1ab_0 - traittypes=0.2.1=pyh9f0ad1d_2 - - trio=0.23.1=py310hff52083_1 + - trio=0.24.0=py310hff52083_0 - trio-websocket=0.11.1=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.14=pyhd8ed1ab_0 - - typing-extensions=4.8.0=hd8ed1ab_0 - - typing_extensions=4.8.0=pyha770c72_0 + - types-python-dateutil=2.8.19.20240106=pyhd8ed1ab_0 + - typing-extensions=4.10.0=hd8ed1ab_0 + - typing_extensions=4.10.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - - tzcode=2023c=h0b41bf4_0 - - tzdata=2023c=h71feb2d_0 + - tzcode=2024a=h3f72095_0 + - tzdata=2024a=h0c530f3_0 - tzlocal=5.2=py310hff52083_0 - - uc-micro-py=1.0.1=pyhd8ed1ab_0 - - ucx=1.14.1=h64cca9d_5 - - ujson=5.8.0=py310hc6cd4ac_0 + - uc-micro-py=1.0.3=pyhd8ed1ab_0 + - ucx=1.14.1=h0aa22dc_2 + - ujson=5.9.0=py310hc6cd4ac_0 - ukkonen=1.0.1=py310hd41b1e2_4 - unicodedata2=15.1.0=py310h2372a71_0 - uri-template=1.3.0=pyhd8ed1ab_0 - - uriparser=0.9.7=hcb278e6_1 + - uriparser=0.9.7=h59595ed_1 - url-normalize=1.4.3=pyhd8ed1ab_0 - - urllib3=1.26.18=pyhd8ed1ab_0 + - urllib3=2.0.7=pyhd8ed1ab_0 - urlpath=1.2.0=pyhd8ed1ab_0 - validators=0.22.0=pyhd8ed1ab_0 - - virtualenv=20.24.6=pyhd8ed1ab_0 + - virtualenv=20.25.1=pyhd8ed1ab_0 - voila=0.5.5=pyhd8ed1ab_0 - - watchdog=3.0.0=py310hff52083_1 - - wcwidth=0.2.9=pyhd8ed1ab_0 + - watchdog=4.0.0=py310hff52083_0 + - wcwidth=0.2.13=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - webob=1.8.7=pyhd8ed1ab_0 - - websocket-client=1.6.4=pyhd8ed1ab_0 + - websocket-client=1.7.0=pyhd8ed1ab_0 - websockets=12.0=py310h2372a71_0 - werkzeug=3.0.1=pyhd8ed1ab_0 - wget=1.20.3=ha35d2d1_1 - - wheel=0.41.3=pyhd8ed1ab_0 - - widgetsnbextension=4.0.9=pyhd8ed1ab_0 - - wrapt=1.15.0=py310h2372a71_1 + - wheel=0.42.0=pyhd8ed1ab_0 + - widgetsnbextension=4.0.10=pyhd8ed1ab_0 + - wrapt=1.16.0=py310h2372a71_0 - wsproto=1.2.0=pyhd8ed1ab_0 - xarray=2023.8.0=pyhd8ed1ab_0 - xcb-util=0.4.0=h516909a_0 @@ -640,9 +645,9 @@ dependencies: - xcb-util-wm=0.4.1=h516909a_0 - xclim=0.47.0=py310hff52083_0 - xerces-c=3.2.4=h55805fa_1 - - xesmf=0.8.2=pyhd8ed1ab_0 - - xeus=3.1.3=h06414e2_0 - - xeus-python=0.15.10=py310hd41b1e2_1 + - xesmf=0.8.4=pyhd8ed1ab_1 + - xeus=3.1.5=h06414e2_0 + - xeus-python=0.15.12=py310hd41b1e2_0 - xeus-python-shell=0.5.0=pyhd8ed1ab_0 - xeus-python-shell-raw=0.5.0=pyhd8ed1ab_0 - xeus-zmq=1.1.1=h6b5a882_1 @@ -678,16 +683,18 @@ dependencies: - xyzservices=2023.10.1=pyhd8ed1ab_0 - xz=5.2.6=h166bdaf_0 - y-py=0.5.9=py310h4426083_0 + - yamale=4.0.4=pyh6c4a22f_0 - yaml=0.2.5=h7f98852_2 - - yarl=1.9.2=py310h2372a71_1 + - yarl=1.9.4=py310h2372a71_0 - ypy-websocket=0.8.2=pyhd8ed1ab_0 - - zarr=2.16.1=pyhd8ed1ab_0 - - zeromq=4.3.5=h59595ed_0 - - zfp=1.0.0=h59595ed_4 + - zarr=2.17.0=pyhd8ed1ab_0 + - zeromq=4.3.5=h59595ed_1 + - zfp=1.0.1=h59595ed_0 - zict=3.0.0=pyhd8ed1ab_0 - zipp=3.17.0=pyhd8ed1ab_0 - zlib=1.2.13=hd590300_5 - zlib-ng=2.0.7=h0b41bf4_0 + - zstandard=0.22.0=py310h1275a96_0 - zstd=1.5.5=hfc55251_0 - pip: - astunparse==1.6.3 @@ -695,14 +702,14 @@ dependencies: - cairosvg==2.7.1 - colour==0.1.5 - cssselect2==0.7.0 - - dnspython==2.4.2 - - email-validator==2.1.0.post1 + - dnspython==2.6.1 + - email-validator==2.1.1 - figanos==0.3.0 - - fstd2nc==0.20231105.1 + - fstd2nc==0.20231105.2 - fstd2nc-deps==0.20200304.6 - geojson==3.1.0 - - hsclient==0.3.4 - - hsmodels==0.5.8 + - hsclient==1.0.0 + - hsmodels==1.0.0 - ipython-blocking==0.3.1 - isodate==0.6.1 - jupyterlab-logout==0.5.0 @@ -713,6 +720,6 @@ dependencies: - pytest-tornasync==0.6.0.post2 - rdflib==5.0.0 - xmltodict==0.13.0 - - xncml==0.3 - - xsdata==23.8 + - xncml==0.4.0 + - xsdata==24.2.1 prefix: /opt/conda/envs/birdy diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index b42ed95..f765eef 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,454 +1,5955 @@ -2024-03-06T23:56:40Z Building in Docker Cloud's infrastructure... -2024-03-06T23:56:40Z Cloning into '.'... -2024-03-06T23:56:41Z Warning: Permanently added the RSA host key for IP address '140.82.113.3' to the list of known hosts. -2024-03-06T23:56:42Z Switched to a new branch 'dockerupdate-py310-231107-update240306' -2024-03-06T23:56:42Z KernelVersion: 5.4.0-1068-aws -2024-03-06T23:56:42Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-03-06T23:56:42Z Arch: amd64 -2024-03-06T23:56:42Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-03-06T23:56:42Z ApiVersion: 1.41 -2024-03-06T23:56:42Z Platform: {u'Name': u'Docker Engine - Community'} -2024-03-06T23:56:42Z Version: 20.10.15 -2024-03-06T23:56:42Z MinAPIVersion: 1.12 -2024-03-06T23:56:42Z GitCommit: 4433bf6 -2024-03-06T23:56:42Z Os: linux -2024-03-06T23:56:42Z GoVersion: go1.17.9 -2024-03-06T23:56:42Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-231107-update240306... -2024-03-06T23:56:48Z #1 [internal] load build definition from Dockerfile.testing -2024-03-06T23:56:48Z #1 transferring dockerfile: 1.22kB done -2024-03-06T23:56:48Z #1 DONE 0.1s -2024-03-06T23:56:48Z -2024-03-06T23:56:48Z #2 [internal] load .dockerignore -2024-03-06T23:56:48Z #2 transferring context: 2B done -2024-03-06T23:56:48Z #2 DONE 0.1s -2024-03-06T23:56:48Z -2024-03-06T23:56:48Z #3 [internal] load metadata for docker.io/pavics/workflow-tests:py310-231107-update240130 -2024-03-06T23:56:48Z #3 ... -2024-03-06T23:56:48Z -2024-03-06T23:56:48Z #4 [auth] pavics/workflow-tests:pull token for registry-1.docker.io -2024-03-06T23:56:48Z #4 DONE 0.0s -2024-03-06T23:56:48Z -2024-03-06T23:56:48Z #3 [internal] load metadata for docker.io/pavics/workflow-tests:py310-231107-update240130 -2024-03-06T23:56:49Z #3 DONE 0.7s -2024-03-06T23:56:49Z -2024-03-06T23:56:49Z #5 [1/2] FROM docker.io/pavics/workflow-tests:py310-231107-update240130@sha256:7aea23606b9210a3aeba7fc4cf93f185f53c3ea244de48562e9f4f9038135fee -2024-03-06T23:56:49Z #5 resolve docker.io/pavics/workflow-tests:py310-231107-update240130@sha256:7aea23606b9210a3aeba7fc4cf93f185f53c3ea244de48562e9f4f9038135fee 0.0s done -2024-03-06T23:56:49Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 0B / 50.08MB 0.2s -2024-03-06T23:56:49Z #5 sha256:9504f052271b0c755905e9c4d2becee916349f319be1ec77f56ba0fdb0d22f92 12.04kB / 12.04kB done -2024-03-06T23:56:49Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 11.53MB / 31.42MB 0.2s -2024-03-06T23:56:49Z #5 sha256:7aea23606b9210a3aeba7fc4cf93f185f53c3ea244de48562e9f4f9038135fee 3.07kB / 3.07kB done -2024-03-06T23:56:49Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 0B / 114.31MB 0.2s -2024-03-06T23:56:49Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 8.39MB / 50.08MB 0.3s -2024-03-06T23:56:49Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 18.94MB / 31.42MB 0.4s -2024-03-06T23:56:49Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 13.63MB / 50.08MB 0.5s -2024-03-06T23:56:49Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 20.97MB / 31.42MB 0.5s -2024-03-06T23:56:49Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 6.29MB / 114.31MB 0.5s -2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 23.07MB / 50.08MB 0.8s -2024-03-06T23:56:50Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 27.53MB / 31.42MB 0.8s -2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 18.87MB / 114.31MB 0.8s -2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 31.46MB / 50.08MB 1.0s -2024-03-06T23:56:50Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 31.42MB / 31.42MB 1.0s -2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 26.57MB / 114.31MB 1.0s -2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 41.94MB / 50.08MB 1.2s -2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 35.18MB / 114.31MB 1.2s -2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 46.14MB / 50.08MB 1.3s -2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 40.89MB / 114.31MB 1.3s -2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 50.08MB / 50.08MB 1.4s -2024-03-06T23:56:50Z #5 sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 31.42MB / 31.42MB 1.3s done -2024-03-06T23:56:50Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 0B / 49.85MB 1.4s -2024-03-06T23:56:50Z #5 sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 50.08MB / 50.08MB 1.5s done -2024-03-06T23:56:50Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 52.43MB / 114.31MB 1.6s -2024-03-06T23:56:50Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 0B / 315.55MB 1.6s -2024-03-06T23:56:51Z #5 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b -2024-03-06T23:56:51Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 4.19MB / 49.85MB 1.8s -2024-03-06T23:56:51Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 58.72MB / 114.31MB 2.1s -2024-03-06T23:56:51Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 9.44MB / 49.85MB 2.1s -2024-03-06T23:56:51Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 14.07MB / 49.85MB 2.4s -2024-03-06T23:56:51Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 19.92MB / 49.85MB 2.6s -2024-03-06T23:56:52Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 17.83MB / 315.55MB 2.8s -2024-03-06T23:56:52Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 67.11MB / 114.31MB 3.0s -2024-03-06T23:56:52Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 25.17MB / 49.85MB 3.0s -2024-03-06T23:56:52Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 73.40MB / 114.31MB 3.1s -2024-03-06T23:56:52Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 30.98MB / 49.85MB 3.4s -2024-03-06T23:56:52Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 34.60MB / 49.85MB 3.5s -2024-03-06T23:56:52Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 36.70MB / 315.55MB 3.5s -2024-03-06T23:56:53Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 85.98MB / 114.31MB 3.9s -2024-03-06T23:56:53Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 41.94MB / 49.85MB 3.9s -2024-03-06T23:56:53Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 45.95MB / 49.85MB 4.0s -2024-03-06T23:56:53Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 93.32MB / 114.31MB 4.4s -2024-03-06T23:56:54Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 100.66MB / 114.31MB 4.6s -2024-03-06T23:56:54Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 49.85MB / 49.85MB 4.8s -2024-03-06T23:56:54Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 53.83MB / 315.55MB 4.8s -2024-03-06T23:56:54Z #5 sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 49.85MB / 49.85MB 4.9s done -2024-03-06T23:56:54Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 0B / 147.61MB 5.0s -2024-03-06T23:56:54Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 108.00MB / 114.31MB 5.2s -2024-03-06T23:56:54Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 10.49MB / 147.61MB 5.4s -2024-03-06T23:56:54Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 71.30MB / 315.55MB 5.6s -2024-03-06T23:56:55Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 114.31MB / 114.31MB 5.7s -2024-03-06T23:56:55Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 19.07MB / 147.61MB 5.9s -2024-03-06T23:56:55Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 95.42MB / 315.55MB 6.4s -2024-03-06T23:56:56Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 30.41MB / 147.61MB 6.6s -2024-03-06T23:56:56Z #5 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 5.1s -2024-03-06T23:56:56Z #5 sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 114.31MB / 114.31MB 6.8s done -2024-03-06T23:56:56Z #5 sha256:8459c54be37455a967f4b2773fd452a268d172f34742655bf3581db7baf59133 0B / 3.56kB 6.9s -2024-03-06T23:56:56Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 42.99MB / 147.61MB 7.1s -2024-03-06T23:56:56Z #5 sha256:8459c54be37455a967f4b2773fd452a268d172f34742655bf3581db7baf59133 3.56kB / 3.56kB 7.0s done -2024-03-06T23:56:56Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 0B / 1.62GB 7.1s -2024-03-06T23:56:56Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 114.29MB / 315.55MB 7.3s -2024-03-06T23:56:56Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 52.43MB / 147.61MB 7.5s -2024-03-06T23:56:57Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 62.91MB / 147.61MB 8.1s -2024-03-06T23:56:57Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 71.34MB / 147.61MB 8.5s -2024-03-06T23:56:58Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 81.79MB / 147.61MB 8.8s -2024-03-06T23:56:58Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 133.17MB / 315.55MB 8.9s -2024-03-06T23:56:58Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 94.37MB / 147.61MB 9.2s -2024-03-06T23:56:59Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 106.95MB / 147.61MB 9.7s -2024-03-06T23:56:59Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 156.24MB / 315.55MB 10.2s -2024-03-06T23:56:59Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 115.34MB / 147.61MB 10.5s -2024-03-06T23:57:00Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 174.06MB / 315.55MB 11.0s -2024-03-06T23:57:00Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 126.88MB / 147.61MB 11.2s -2024-03-06T23:57:00Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 137.36MB / 147.61MB 11.5s -2024-03-06T23:57:00Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 82.84MB / 1.62GB 11.5s -2024-03-06T23:57:01Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 189.90MB / 315.55MB 11.9s -2024-03-06T23:57:01Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 147.61MB / 147.61MB 12.1s -2024-03-06T23:57:01Z #5 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 10.5s -2024-03-06T23:57:02Z #5 extracting sha256:e67fdae3559346105027c63e7fb032bba57e62b1fe9f2da23e6fdfb56384e00b 11.1s done -2024-03-06T23:57:02Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 213.91MB / 315.55MB 13.1s -2024-03-06T23:57:02Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 233.83MB / 315.55MB 13.5s -2024-03-06T23:57:02Z #5 sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 147.61MB / 147.61MB 13.5s done -2024-03-06T23:57:02Z #5 sha256:e1051cee58a022704fdd1610b1a0bbba1e4016cb1fb76a3bc664ce1b824131c4 0B / 6.74kB 13.6s -2024-03-06T23:57:03Z #5 sha256:e1051cee58a022704fdd1610b1a0bbba1e4016cb1fb76a3bc664ce1b824131c4 6.74kB / 6.74kB 13.7s done -2024-03-06T23:57:03Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 0B / 200.47MB 13.7s -2024-03-06T23:57:03Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 165.68MB / 1.62GB 14.2s -2024-03-06T23:57:03Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 251.66MB / 315.55MB 14.4s -2024-03-06T23:57:03Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 11.53MB / 200.47MB 14.5s -2024-03-06T23:57:03Z #5 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f -2024-03-06T23:57:04Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 24.12MB / 200.47MB 14.8s -2024-03-06T23:57:04Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 270.53MB / 315.55MB 15.2s -2024-03-06T23:57:05Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 288.40MB / 315.55MB 15.9s -2024-03-06T23:57:05Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 39.86MB / 200.47MB 15.9s -2024-03-06T23:57:05Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 306.90MB / 315.55MB 16.5s -2024-03-06T23:57:05Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 50.33MB / 200.47MB 16.6s -2024-03-06T23:57:06Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 60.38MB / 200.47MB 17.1s -2024-03-06T23:57:07Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 73.40MB / 200.47MB 17.9s -2024-03-06T23:57:07Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 84.93MB / 200.47MB 18.4s -2024-03-06T23:57:08Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 247.46MB / 1.62GB 18.9s -2024-03-06T23:57:08Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 96.47MB / 200.47MB 19.1s -2024-03-06T23:57:08Z #5 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 5.0s -2024-03-06T23:57:08Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 111.15MB / 200.47MB 19.6s -2024-03-06T23:57:09Z #5 sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 315.55MB / 315.55MB 20.0s done -2024-03-06T23:57:09Z #5 sha256:043fc5acd7e177b5ee535ff0acb9a8affdbc7887d9f53f993c8364b668f6351c 0B / 3.09kB 20.0s -2024-03-06T23:57:09Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 127.93MB / 200.47MB 20.3s -2024-03-06T23:57:09Z #5 sha256:043fc5acd7e177b5ee535ff0acb9a8affdbc7887d9f53f993c8364b668f6351c 3.09kB / 3.09kB 20.2s done -2024-03-06T23:57:09Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 0B / 136.79MB 20.3s -2024-03-06T23:57:09Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 140.36MB / 200.47MB 20.5s -2024-03-06T23:57:10Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 150.99MB / 200.47MB 20.8s -2024-03-06T23:57:10Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 7.14MB / 136.79MB 20.9s -2024-03-06T23:57:10Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 167.77MB / 200.47MB 21.2s -2024-03-06T23:57:10Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 17.83MB / 136.79MB 21.2s -2024-03-06T23:57:10Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 178.26MB / 200.47MB 21.6s -2024-03-06T23:57:11Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 25.17MB / 136.79MB 21.9s -2024-03-06T23:57:11Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 336.24MB / 1.62GB 22.1s -2024-03-06T23:57:11Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 190.84MB / 200.47MB 22.5s -2024-03-06T23:57:11Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 32.99MB / 136.79MB 22.6s -2024-03-06T23:57:12Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 43.41MB / 136.79MB 23.0s -2024-03-06T23:57:12Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 50.33MB / 136.79MB 23.1s -2024-03-06T23:57:12Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 58.79MB / 136.79MB 23.6s -2024-03-06T23:57:13Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 69.21MB / 136.79MB 23.9s -2024-03-06T23:57:13Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 76.89MB / 136.79MB 24.5s -2024-03-06T23:57:14Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 85.98MB / 136.79MB 24.9s -2024-03-06T23:57:14Z #5 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 10.6s -2024-03-06T23:57:14Z #5 sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 200.47MB / 200.47MB 25.3s done -2024-03-06T23:57:14Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 95.42MB / 136.79MB 25.4s -2024-03-06T23:57:14Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 0B / 32.78MB 25.4s -2024-03-06T23:57:14Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 103.87MB / 136.79MB 25.6s -2024-03-06T23:57:14Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 3.15MB / 32.78MB 25.6s -2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 9.44MB / 32.78MB 25.7s -2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 12.58MB / 32.78MB 25.9s -2024-03-06T23:57:15Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 115.34MB / 136.79MB 26.0s -2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 15.73MB / 32.78MB 26.0s -2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 19.92MB / 32.78MB 26.1s -2024-03-06T23:57:15Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 123.73MB / 136.79MB 26.2s -2024-03-06T23:57:15Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 23.07MB / 32.78MB 26.2s -2024-03-06T23:57:16Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 422.58MB / 1.62GB 26.6s -2024-03-06T23:57:16Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 26.21MB / 32.78MB 26.9s -2024-03-06T23:57:16Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 136.79MB / 136.79MB 27.1s -2024-03-06T23:57:16Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 28.31MB / 32.78MB 27.2s -2024-03-06T23:57:16Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 31.46MB / 32.78MB 27.4s -2024-03-06T23:57:17Z #5 extracting sha256:62aa66a9c405da603a06d242539b8f0dd178ae4179bf52584bbcce7a0471795f 13.3s done -2024-03-06T23:57:17Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 511.71MB / 1.62GB 28.4s -2024-03-06T23:57:17Z #5 sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 136.79MB / 136.79MB 28.6s done -2024-03-06T23:57:18Z #5 sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 32.78MB / 32.78MB 28.9s done -2024-03-06T23:57:18Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 -2024-03-06T23:57:19Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 594.54MB / 1.62GB 30.2s -2024-03-06T23:57:21Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 676.33MB / 1.62GB 32.3s -2024-03-06T23:57:23Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 5.0s -2024-03-06T23:57:24Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 762.71MB / 1.62GB 34.9s -2024-03-06T23:57:26Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 853.54MB / 1.62GB 37.2s -2024-03-06T23:57:28Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 936.38MB / 1.62GB 38.9s -2024-03-06T23:57:28Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 10.0s -2024-03-06T23:57:31Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.02GB / 1.62GB 41.7s -2024-03-06T23:57:33Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.10GB / 1.62GB 43.8s -2024-03-06T23:57:33Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 15.1s -2024-03-06T23:57:35Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.18GB / 1.62GB 46.4s -2024-03-06T23:57:37Z #5 extracting sha256:129bc9a4304fe3a6ef0435e6698ab6bc2728b6f92078718fb28cb4b54ac59e96 18.8s done -2024-03-06T23:57:37Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.27GB / 1.62GB 48.5s -2024-03-06T23:57:38Z #5 extracting sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a -2024-03-06T23:57:40Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.35GB / 1.62GB 50.9s -2024-03-06T23:57:43Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.44GB / 1.62GB 53.9s -2024-03-06T23:57:43Z #5 extracting sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 5.2s -2024-03-06T23:57:45Z #5 extracting sha256:0ddacba29fe0cfefb993c35bb764f0c0e2978dc6123d57c3c1b6d5232a1cc04a 6.7s done -2024-03-06T23:57:45Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.52GB / 1.62GB 56.4s -2024-03-06T23:57:45Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 -2024-03-06T23:57:48Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.61GB / 1.62GB 59.2s -2024-03-06T23:57:50Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 5.0s -2024-03-06T23:57:50Z #5 sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 1.62GB / 1.62GB 61.6s done -2024-03-06T23:57:55Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 10.1s -2024-03-06T23:58:00Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 15.1s -2024-03-06T23:58:05Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 20.2s -2024-03-06T23:58:11Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 25.9s -2024-03-06T23:58:13Z #5 extracting sha256:dfd48180726ce8e48927e4c351dc55e75bb641be45ad24f13f6532fc0133d137 27.6s done -2024-03-06T23:58:13Z #5 extracting sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 -2024-03-06T23:58:18Z #5 extracting sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 5.0s -2024-03-06T23:58:24Z #5 extracting sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 10.1s -2024-03-06T23:58:28Z #5 extracting sha256:50cb7caec7ab02eea132f5fb7bf7c0723a3df56f1bad0f8abf7a40fb9d8ff918 14.7s done -2024-03-06T23:58:28Z #5 extracting sha256:8459c54be37455a967f4b2773fd452a268d172f34742655bf3581db7baf59133 done -2024-03-06T23:58:29Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d -2024-03-06T23:58:34Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 5.0s -2024-03-06T23:58:39Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 10.0s -2024-03-06T23:58:44Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 15.1s -2024-03-06T23:58:49Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 20.2s -2024-03-06T23:58:54Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 25.5s -2024-03-06T23:59:00Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 30.9s -2024-03-06T23:59:05Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 36.1s -2024-03-06T23:59:11Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 41.9s -2024-03-06T23:59:16Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 46.9s -2024-03-06T23:59:21Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 52.0s -2024-03-06T23:59:26Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 57.1s -2024-03-06T23:59:31Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 62.1s -2024-03-06T23:59:36Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 67.2s -2024-03-06T23:59:41Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 72.2s -2024-03-06T23:59:46Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 77.3s -2024-03-06T23:59:51Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 82.4s -2024-03-06T23:59:56Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 87.5s -2024-03-07T00:00:01Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 92.6s -2024-03-07T00:00:07Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 97.7s -2024-03-07T00:00:11Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 102.8s -2024-03-07T00:00:17Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 108.0s -2024-03-07T00:00:22Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 113.0s -2024-03-07T00:00:27Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 118.1s -2024-03-07T00:00:32Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 123.4s -2024-03-07T00:00:37Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 128.7s -2024-03-07T00:00:43Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 134.0s -2024-03-07T00:00:48Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 139.1s -2024-03-07T00:00:53Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 144.1s -2024-03-07T00:00:58Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 149.2s -2024-03-07T00:01:03Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 154.4s -2024-03-07T00:01:11Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 161.9s -2024-03-07T00:01:16Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 167.0s -2024-03-07T00:01:21Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 172.2s -2024-03-07T00:01:26Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 177.4s -2024-03-07T00:01:31Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 182.6s -2024-03-07T00:01:36Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 187.7s -2024-03-07T00:01:42Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 192.9s -2024-03-07T00:01:47Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 198.0s -2024-03-07T00:01:53Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 203.7s -2024-03-07T00:01:58Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 209.1s -2024-03-07T00:02:03Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 214.2s -2024-03-07T00:02:08Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 219.3s -2024-03-07T00:02:13Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 224.5s -2024-03-07T00:02:20Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 231.6s -2024-03-07T00:02:26Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 237.1s -2024-03-07T00:02:31Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 242.2s -2024-03-07T00:02:36Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 247.2s -2024-03-07T00:02:42Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 253.2s -2024-03-07T00:02:47Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 258.4s -2024-03-07T00:02:52Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 263.5s -2024-03-07T00:02:58Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 269.3s -2024-03-07T00:03:03Z #5 extracting sha256:66e47aa8b57b156f289ba82c1a6c25cbfd014fc6860f82080615e2fcaf23fa5d 274.4s done -2024-03-07T00:03:08Z #5 extracting sha256:e1051cee58a022704fdd1610b1a0bbba1e4016cb1fb76a3bc664ce1b824131c4 done -2024-03-07T00:03:09Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 -2024-03-07T00:03:14Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 5.3s -2024-03-07T00:03:21Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 12.1s -2024-03-07T00:03:26Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 17.3s -2024-03-07T00:03:31Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 22.4s -2024-03-07T00:03:36Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 27.4s -2024-03-07T00:03:41Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 32.6s -2024-03-07T00:03:47Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 38.4s -2024-03-07T00:03:53Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 44.0s -2024-03-07T00:03:58Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 49.1s -2024-03-07T00:04:03Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 54.1s -2024-03-07T00:04:05Z #5 extracting sha256:59919fbc16db3abdc3a3c954f5956cfad71f59e8192d1262f39da14edbc8bad9 56.0s done -2024-03-07T00:04:07Z #5 extracting sha256:043fc5acd7e177b5ee535ff0acb9a8affdbc7887d9f53f993c8364b668f6351c done -2024-03-07T00:04:08Z #5 extracting sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 -2024-03-07T00:04:12Z #5 extracting sha256:b9ad0629118eaa14568f19cb7b47b554853a7fe68d60d5d34e0018b786fb3e27 4.3s done -2024-03-07T00:04:12Z #5 extracting sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 -2024-03-07T00:04:14Z #5 extracting sha256:b34355233be9d464660d5f1bc98a24253ac3a4d0a8a0bbd8964ac135ae629172 2.0s done -2024-03-07T00:04:14Z #5 DONE 445.6s -2024-03-07T00:04:15Z -2024-03-07T00:04:15Z #6 [2/2] RUN umask 0000 && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.2 ravenpy==0.13.0 pydantic==2.6.3 && mamba clean --all --yes && pip install --no-cache-dir --upgrade figanos -2024-03-07T00:05:30Z #6 75.93 Transaction -2024-03-07T00:05:30Z #6 75.93 -2024-03-07T00:05:30Z #6 75.93 Prefix: /opt/conda/envs/birdy -2024-03-07T00:05:30Z #6 75.93 -2024-03-07T00:05:30Z #6 75.93 Updating specs: -2024-03-07T00:05:30Z #6 75.93 -2024-03-07T00:05:30Z #6 75.93 - xscen==0.8.2 -2024-03-07T00:05:30Z #6 75.93 - ravenpy==0.13.0 -2024-03-07T00:05:30Z #6 75.93 - pydantic==2.6.3 -2024-03-07T00:05:30Z #6 75.93 - ca-certificates -2024-03-07T00:05:30Z #6 75.93 - certifi -2024-03-07T00:05:30Z #6 75.93 - openssl -2024-03-07T00:05:30Z #6 75.93 -2024-03-07T00:05:30Z #6 75.93 -2024-03-07T00:05:31Z #6 75.95 Package Version Build Channel Size -2024-03-07T00:05:31Z #6 75.95 ────────────────────────────────────────────────────────────────────────── -2024-03-07T00:05:31Z #6 75.95 Install: -2024-03-07T00:05:31Z #6 75.95 ────────────────────────────────────────────────────────────────────────── -2024-03-07T00:05:31Z #6 75.95 -2024-03-07T00:05:31Z #6 75.95 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB -2024-03-07T00:05:31Z #6 75.95 + parse 1.20.1 pyhd8ed1ab_0 conda-forge 24kB -2024-03-07T00:05:31Z #6 75.95 + mypy_extensions 1.0.0 pyha770c72_0 conda-forge 10kB -2024-03-07T00:05:31Z #6 75.95 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB -2024-03-07T00:05:31Z #6 75.95 + rechunker 0.5.2 pyhd8ed1ab_1 conda-forge 25kB -2024-03-07T00:05:31Z #6 75.95 + xscen 0.8.2 pyhd8ed1ab_0 conda-forge 395kB -2024-03-07T00:05:31Z #6 75.95 -2024-03-07T00:05:31Z #6 75.95 Upgrade: -2024-03-07T00:05:31Z #6 75.95 ────────────────────────────────────────────────────────────────────────── -2024-03-07T00:05:31Z #6 75.95 -2024-03-07T00:05:31Z #6 75.95 - ca-certificates 2023.11.17 hbcca054_0 conda-forge Cached -2024-03-07T00:05:31Z #6 75.95 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB -2024-03-07T00:05:31Z #6 75.95 - climpred 2.3.0 pyhd8ed1ab_0 conda-forge Cached -2024-03-07T00:05:31Z #6 75.95 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-03-07T00:05:31Z #6 75.95 - certifi 2023.11.17 pyhd8ed1ab_0 conda-forge Cached -2024-03-07T00:05:31Z #6 75.95 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge 161kB -2024-03-07T00:05:31Z #6 75.95 - pydantic 1.10.13 py310h2372a71_1 conda-forge Cached -2024-03-07T00:05:31Z #6 75.95 + pydantic 2.6.3 pyhd8ed1ab_0 conda-forge 272kB -2024-03-07T00:05:31Z #6 75.95 - intake-esm 2023.6.14 pyhd8ed1ab_0 conda-forge Cached -2024-03-07T00:05:31Z #6 75.95 + intake-esm 2024.2.6 pyhd8ed1ab_1 conda-forge 31kB -2024-03-07T00:05:31Z #6 75.95 - ravenpy 0.12.3 py310hff52083_0 conda-forge Cached -2024-03-07T00:05:31Z #6 75.95 + ravenpy 0.13.0 py310hff52083_0 conda-forge 6MB -2024-03-07T00:05:31Z #6 75.95 -2024-03-07T00:05:31Z #6 75.95 Summary: -2024-03-07T00:05:31Z #6 75.95 -2024-03-07T00:05:31Z #6 75.95 Install: 6 packages -2024-03-07T00:05:31Z #6 75.95 Upgrade: 6 packages -2024-03-07T00:05:31Z #6 75.95 -2024-03-07T00:05:31Z #6 75.95 Total download: 9MB -2024-03-07T00:05:31Z #6 75.95 -2024-03-07T00:05:31Z #6 75.95 ────────────────────────────────────────────────────────────────────────── -2024-03-07T00:05:31Z #6 75.95 -2024-03-07T00:05:31Z #6 75.95 -2024-03-07T00:05:54Z #6 75.95 Confirm changes: [Y/n] -2024-03-07T00:05:54Z #6 99.12 Looking for: ['xscen==0.8.2', 'ravenpy==0.13.0', 'pydantic==2.6.3'] -2024-03-07T00:05:54Z #6 99.12 -2024-03-07T00:05:54Z #6 99.12 -2024-03-07T00:05:54Z #6 99.12 Pinned packages: -2024-03-07T00:05:54Z #6 99.12 - python 3.10.* -2024-03-07T00:05:54Z #6 99.12 -2024-03-07T00:05:54Z #6 99.12 -2024-03-07T00:05:54Z #6 99.12 -2024-03-07T00:05:54Z #6 99.12 Downloading and Extracting Packages: ...working... done -2024-03-07T00:05:54Z #6 99.12 Preparing transaction: ...working... done -2024-03-07T00:05:54Z #6 99.18 Verifying transaction: ...working... done -2024-03-07T00:06:00Z #6 99.41 Executing transaction: ...working... done -2024-03-07T00:06:04Z #6 109.5 Will remove 12 (8.5 MB) tarball(s). -2024-03-07T00:06:04Z #6 109.5 Will remove 1 index cache(s). -2024-03-07T00:06:04Z #6 109.5 There are no unused package(s) to remove. -2024-03-07T00:06:04Z #6 109.5 There are no tempfile(s) to remove. -2024-03-07T00:06:04Z #6 109.5 There are no logfile(s) to remove. -2024-03-07T00:06:06Z #6 111.2 Collecting figanos -2024-03-07T00:06:06Z #6 111.2 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-03-07T00:06:06Z #6 111.3 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.22.0) -2024-03-07T00:06:06Z #6 111.3 Collecting cairosvg (from figanos) -2024-03-07T00:06:06Z #6 111.3 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-03-07T00:06:06Z #6 111.3 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.14.0) -2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (3.8.1) -2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: numpy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (1.24.4) -2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (2.1.2) -2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (3.11.0) -2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (6.0.1) -2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.13.0) -2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.22.0) -2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (2023.8.0) -2024-03-07T00:06:06Z #6 111.4 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos) (0.47.0) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (23.0.0) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.3.7) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (0.8.6) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: cftime>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.6.3) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (8.1.7) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: dask>=2.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask[array]>=2.6->xclim>=0.38->figanos) (2023.10.1) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (3.0.2) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.0.6) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (0.57.1) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (0.22) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.3.2) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (1.11.3) -2024-03-07T00:06:06Z #6 111.5 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos) (0.14.0) -2024-03-07T00:06:06Z #6 111.7 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos) (2.8.2) -2024-03-07T00:06:06Z #6 111.7 Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos) (2023.3.post1) -2024-03-07T00:06:06Z #6 111.7 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos) (2023.3) -2024-03-07T00:06:06Z #6 111.8 Requirement already satisfied: packaging>=21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xarray->figanos) (23.2) -2024-03-07T00:06:06Z #6 111.9 Collecting cairocffi (from cairosvg->figanos) -2024-03-07T00:06:06Z #6 111.9 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) -2024-03-07T00:06:06Z #6 111.9 Collecting cssselect2 (from cairosvg->figanos) -2024-03-07T00:06:06Z #6 111.9 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-03-07T00:06:06Z #6 111.9 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos) (0.7.1) -2024-03-07T00:06:06Z #6 111.9 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos) (9.4.0) -2024-03-07T00:06:06Z #6 111.9 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos) (1.2.1) -2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos) (2.0.1) -2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos) (2.3.1) -2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos) (3.5.0) -2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (1.2.0) -2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (0.12.1) -2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (4.44.0) -2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (1.4.5) -2024-03-07T00:06:06Z #6 112.0 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos) (3.1.1) -2024-03-07T00:06:07Z #6 112.0 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos) (1.9.1) -2024-03-07T00:06:07Z #6 112.2 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos) (3.2.1) -2024-03-07T00:06:07Z #6 112.2 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos) (2.31.5) -2024-03-07T00:06:07Z #6 112.2 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos) (2023.8.12) -2024-03-07T00:06:07Z #6 112.2 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos) (0.3) -2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (3.0.0) -2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (2023.10.0) -2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (1.4.1) -2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (0.12.0) -2024-03-07T00:06:07Z #6 112.4 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (6.8.0) -2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (23.1.0) -2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: certifi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (2024.2.2) -2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (1.1.1) -2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (0.7.2) -2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (4.0.0) -2024-03-07T00:06:07Z #6 112.5 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos) (68.2.2) -2024-03-07T00:06:07Z #6 112.9 Requirement already satisfied: typing-extensions in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pint>=0.10->xclim>=0.38->figanos) (4.8.0) -2024-03-07T00:06:07Z #6 112.9 Requirement already satisfied: six>=1.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from python-dateutil>=2.8.2->pandas->figanos) (1.16.0) -2024-03-07T00:06:07Z #6 113.0 Requirement already satisfied: joblib>=1.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos) (1.3.2) -2024-03-07T00:06:08Z #6 113.0 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos) (3.2.0) -2024-03-07T00:06:08Z #6 113.1 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos) (1.16.0) -2024-03-07T00:06:08Z #6 113.1 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos) (0.5.1) -2024-03-07T00:06:08Z #6 113.2 Requirement already satisfied: llvmlite<0.41,>=0.40.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos) (0.40.1) -2024-03-07T00:06:08Z #6 113.3 Requirement already satisfied: patsy>=0.5.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos) (0.5.3) -2024-03-07T00:06:08Z #6 113.4 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos) (2.21) -2024-03-07T00:06:08Z #6 113.6 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (3.17.0) -2024-03-07T00:06:08Z #6 113.7 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask>=2.6->dask[array]>=2.6->xclim>=0.38->figanos) (1.0.0) -2024-03-07T00:06:08Z #6 113.9 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-03-07T00:06:08Z #6 113.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 20.8 MB/s eta 0:00:00 -2024-03-07T00:06:08Z #6 113.9 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-03-07T00:06:08Z #6 113.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 108.5 MB/s eta 0:00:00 -2024-03-07T00:06:08Z #6 113.9 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) -2024-03-07T00:06:08Z #6 113.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 118.8 MB/s eta 0:00:00 -2024-03-07T00:06:08Z #6 113.9 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-03-07T00:06:15Z #6 120.2 Installing collected packages: cssselect2, cairocffi, cairosvg, figanos -2024-03-07T00:06:15Z #6 120.7 Successfully installed cairocffi-1.6.1 cairosvg-2.7.1 cssselect2-0.7.0 figanos-0.3.0 -2024-03-07T00:06:15Z #6 120.7 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv -2024-03-07T00:06:16Z #6 DONE 121.7s -2024-03-07T00:06:16Z -2024-03-07T00:06:16Z #7 exporting to image -2024-03-07T00:06:16Z #7 exporting layers -2024-03-07T00:06:17Z #7 exporting layers 0.7s done -2024-03-07T00:06:17Z #7 writing image sha256:4458fd6669bec887c0d34b1ab79404510b5da5679c32c60f8ed0751a5518738e -2024-03-07T00:06:17Z #7 writing image sha256:4458fd6669bec887c0d34b1ab79404510b5da5679c32c60f8ed0751a5518738e done -2024-03-07T00:06:17Z #7 naming to docker.io/pavics/workflow-tests:py310-231107-update240306 done -2024-03-07T00:06:17Z #7 DONE 0.7s -2024-03-07T00:06:17Z Pushing index.docker.io/pavics/workflow-tests:py310-231107-update240306... -2024-03-07T00:06:22Z Done! -2024-03-07T00:06:22Z Build finished +2024-03-07T00:48:03Z Building in Docker Cloud's infrastructure... +2024-03-07T00:48:03Z Cloning into '.'... +2024-03-07T00:48:04Z Warning: Permanently added the RSA host key for IP address '140.82.114.4' to the list of known hosts. +2024-03-07T00:48:05Z Switched to a new branch 'docker-py310-240306' +2024-03-07T00:48:05Z KernelVersion: 5.4.0-1068-aws +2024-03-07T00:48:05Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-03-07T00:48:05Z Arch: amd64 +2024-03-07T00:48:05Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-03-07T00:48:05Z ApiVersion: 1.41 +2024-03-07T00:48:05Z Platform: {u'Name': u'Docker Engine - Community'} +2024-03-07T00:48:05Z Version: 20.10.15 +2024-03-07T00:48:05Z MinAPIVersion: 1.12 +2024-03-07T00:48:05Z GitCommit: 4433bf6 +2024-03-07T00:48:05Z Os: linux +2024-03-07T00:48:05Z GoVersion: go1.17.9 +2024-03-07T00:48:05Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240306... +2024-03-07T00:48:11Z #1 [internal] load build definition from Dockerfile +2024-03-07T00:48:11Z #1 transferring dockerfile: 6.98kB done +2024-03-07T00:48:11Z #1 DONE 0.1s +2024-03-07T00:48:11Z +2024-03-07T00:48:11Z #2 [internal] load .dockerignore +2024-03-07T00:48:11Z #2 transferring context: 2B done +2024-03-07T00:48:11Z #2 DONE 0.0s +2024-03-07T00:48:11Z +2024-03-07T00:48:11Z #3 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-03-07T00:48:11Z #3 DONE 0.0s +2024-03-07T00:48:11Z +2024-03-07T00:48:11Z #4 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-03-07T00:48:12Z #4 DONE 0.6s +2024-03-07T00:48:12Z +2024-03-07T00:48:12Z #5 [internal] load build context +2024-03-07T00:48:12Z #5 transferring context: 9.52kB done +2024-03-07T00:48:12Z #5 DONE 0.0s +2024-03-07T00:48:12Z +2024-03-07T00:48:12Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-03-07T00:48:12Z #6 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done +2024-03-07T00:48:12Z #6 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done +2024-03-07T00:48:12Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 3.19MB / 31.42MB 0.1s +2024-03-07T00:48:12Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s +2024-03-07T00:48:12Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.1s +2024-03-07T00:48:12Z #6 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done +2024-03-07T00:48:12Z #6 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done +2024-03-07T00:48:12Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 7.34MB / 31.42MB 0.2s +2024-03-07T00:48:12Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.24MB / 50.08MB 0.2s +2024-03-07T00:48:12Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 12.58MB / 31.42MB 0.4s +2024-03-07T00:48:12Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 10.49MB / 50.08MB 0.4s +2024-03-07T00:48:12Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 19.92MB / 31.42MB 0.6s +2024-03-07T00:48:12Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 15.73MB / 50.08MB 0.6s +2024-03-07T00:48:12Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 13.63MB / 147.31MB 0.6s +2024-03-07T00:48:13Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 24.12MB / 31.42MB 0.7s +2024-03-07T00:48:13Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 28.31MB / 31.42MB 0.8s +2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 22.02MB / 50.08MB 0.8s +2024-03-07T00:48:13Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 22.02MB / 147.31MB 0.8s +2024-03-07T00:48:13Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 0.9s +2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 27.13MB / 50.08MB 1.0s +2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 36.70MB / 50.08MB 1.2s +2024-03-07T00:48:13Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 42.00MB / 147.31MB 1.2s +2024-03-07T00:48:13Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.2s done +2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 42.99MB / 50.08MB 1.3s +2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.5s +2024-03-07T00:48:13Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 53.48MB / 147.31MB 1.5s +2024-03-07T00:48:14Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.6s done +2024-03-07T00:48:14Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 +2024-03-07T00:48:14Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 65.01MB / 147.31MB 1.8s +2024-03-07T00:48:14Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 74.45MB / 147.31MB 2.3s +2024-03-07T00:48:14Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 82.84MB / 147.31MB 2.5s +2024-03-07T00:48:15Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 91.23MB / 147.31MB 2.7s +2024-03-07T00:48:15Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 105.10MB / 147.31MB 3.1s +2024-03-07T00:48:15Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 116.39MB / 147.31MB 3.4s +2024-03-07T00:48:16Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 125.83MB / 147.31MB 3.7s +2024-03-07T00:48:16Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 139.46MB / 147.31MB 3.9s +2024-03-07T00:48:16Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 4.2s +2024-03-07T00:48:17Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 5.5s done +2024-03-07T00:48:19Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.2s done +2024-03-07T00:48:19Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 +2024-03-07T00:48:24Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.0s +2024-03-07T00:48:25Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.2s done +2024-03-07T00:48:26Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c +2024-03-07T00:48:31Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.1s +2024-03-07T00:48:36Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.1s +2024-03-07T00:48:40Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.1s done +2024-03-07T00:48:40Z #6 DONE 28.2s +2024-03-07T00:48:40Z +2024-03-07T00:48:40Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-03-07T00:48:42Z #7 1.573 Channels: +2024-03-07T00:48:42Z #7 1.573 - defaults +2024-03-07T00:48:42Z #7 1.573 Platform: linux-64 +2024-03-07T00:48:46Z #7 1.573 Collecting package metadata (repodata.json): ...working... done +2024-03-07T00:48:46Z #7 5.784 Solving environment: ...working... done +2024-03-07T00:48:46Z #7 6.076 +2024-03-07T00:48:46Z #7 6.076 # All requested packages already installed. +2024-03-07T00:48:46Z #7 6.076 +2024-03-07T00:48:47Z #7 7.283 Channels: +2024-03-07T00:48:47Z #7 7.283 - conda-forge +2024-03-07T00:48:47Z #7 7.283 - defaults +2024-03-07T00:48:47Z #7 7.283 Platform: linux-64 +2024-03-07T00:49:13Z #7 7.283 Collecting package metadata (repodata.json): ...working... done +2024-03-07T00:49:15Z #7 32.85 Solving environment: ...working... done +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 ## Package Plan ## +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 environment location: /opt/conda +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 added / updated specs: +2024-03-07T00:49:15Z #7 34.83 - mamba +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 The following packages will be downloaded: +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 package | build +2024-03-07T00:49:15Z #7 34.83 ---------------------------|----------------- +2024-03-07T00:49:15Z #7 34.83 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 ca-certificates-2024.2.2 | hbcca054_0 152 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 conda-24.1.2 | py311h38be061_0 1.2 MB conda-forge +2024-03-07T00:49:15Z #7 34.83 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-03-07T00:49:15Z #7 34.83 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 libmamba-1.5.7 | had39da4_0 1.6 MB conda-forge +2024-03-07T00:49:15Z #7 34.83 libmambapy-1.5.7 | py311hf2555c7_0 305 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge +2024-03-07T00:49:15Z #7 34.83 libxml2-2.12.5 | h232c23b_0 688 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 lzo-2.10 | h516909a_1000 314 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 mamba-1.5.7 | py311h3072747_0 65 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 openssl-3.2.1 | hd590300_0 2.7 MB conda-forge +2024-03-07T00:49:15Z #7 34.83 python_abi-3.11 | 2_cp311 5 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-03-07T00:49:15Z #7 34.83 ------------------------------------------------------------ +2024-03-07T00:49:15Z #7 34.83 Total: 25.3 MB +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 The following NEW packages will be INSTALLED: +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-03-07T00:49:15Z #7 34.83 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-03-07T00:49:15Z #7 34.83 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 +2024-03-07T00:49:15Z #7 34.83 mamba conda-forge/linux-64::mamba-1.5.7-py311h3072747_0 +2024-03-07T00:49:15Z #7 34.83 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 The following packages will be UPDATED: +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 ca-certificates pkgs/main::ca-certificates-2023.12.12~ --> conda-forge::ca-certificates-2024.2.2-hbcca054_0 +2024-03-07T00:49:15Z #7 34.83 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-03-07T00:49:15Z #7 34.83 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-03-07T00:49:15Z #7 34.83 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-03-07T00:49:15Z #7 34.83 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 +2024-03-07T00:49:15Z #7 34.83 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 +2024-03-07T00:49:15Z #7 34.83 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.7-had39da4_0 +2024-03-07T00:49:15Z #7 34.83 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.7-py311hf2555c7_0 +2024-03-07T00:49:15Z #7 34.83 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 +2024-03-07T00:49:15Z #7 34.83 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.5-h232c23b_0 +2024-03-07T00:49:15Z #7 34.83 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_0 +2024-03-07T00:49:15Z #7 34.83 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 The following packages will be SUPERSEDED by a higher-priority channel: +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-03-07T00:49:15Z #7 34.83 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-03-07T00:49:15Z #7 34.83 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-03-07T00:49:15Z #7 34.83 conda pkgs/main::conda-24.1.2-py311h06a4308~ --> conda-forge::conda-24.1.2-py311h38be061_0 +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 +2024-03-07T00:49:15Z #7 34.83 Proceed ([y]/n)? +2024-03-07T00:49:17Z #7 36.94 +2024-03-07T00:49:17Z #7 36.94 Downloading and Extracting Packages: ...working... done +2024-03-07T00:49:17Z #7 36.94 Preparing transaction: ...working... done +2024-03-07T00:49:18Z #7 37.03 Verifying transaction: ...working... done +2024-03-07T00:49:26Z #7 37.45 Executing transaction: ...working... done +2024-03-07T00:49:28Z #7 47.36 Will remove 21 (25.3 MB) tarball(s). +2024-03-07T00:49:28Z #7 47.36 Will remove 1 index cache(s). +2024-03-07T00:49:28Z #7 47.36 Will remove 3 (118 KB) package(s). +2024-03-07T00:49:28Z #7 47.36 There are no tempfile(s) to remove. +2024-03-07T00:49:28Z #7 47.36 There are no logfile(s) to remove. +2024-03-07T00:49:29Z #7 48.81 bin/micromamba +2024-03-07T00:49:32Z #7 DONE 51.5s +2024-03-07T00:49:32Z +2024-03-07T00:49:32Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-03-07T00:49:32Z #8 0.551 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-03-07T00:49:32Z #8 0.572 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-03-07T00:49:32Z #8 0.573 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-03-07T00:49:32Z #8 0.725 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-03-07T00:49:33Z #8 1.040 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [269 kB] +2024-03-07T00:49:33Z #8 1.042 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-03-07T00:49:34Z #8 2.784 Fetched 8564 kB in 2s (3809 kB/s) +2024-03-07T00:49:35Z #8 2.784 Reading package lists... +2024-03-07T00:49:36Z #8 3.737 Reading package lists... +2024-03-07T00:49:37Z #8 4.640 Building dependency tree... +2024-03-07T00:49:37Z #8 4.872 Reading state information... +2024-03-07T00:49:37Z #8 5.179 git is already the newest version (1:2.30.2-1+deb11u2). +2024-03-07T00:49:37Z #8 5.179 mercurial is already the newest version (5.6.1-4). +2024-03-07T00:49:37Z #8 5.179 The following additional packages will be installed: +2024-03-07T00:49:37Z #8 5.179 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-03-07T00:49:37Z #8 5.180 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-03-07T00:49:37Z #8 5.180 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-03-07T00:49:37Z #8 5.181 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-03-07T00:49:37Z #8 5.181 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-03-07T00:49:37Z #8 5.182 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-03-07T00:49:37Z #8 5.187 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-03-07T00:49:37Z #8 5.187 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-03-07T00:49:37Z #8 5.187 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-03-07T00:49:37Z #8 5.187 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-03-07T00:49:37Z #8 5.187 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-03-07T00:49:37Z #8 5.187 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-03-07T00:49:37Z #8 5.187 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-03-07T00:49:37Z #8 5.187 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-03-07T00:49:37Z #8 5.187 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-03-07T00:49:37Z #8 5.187 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-03-07T00:49:37Z #8 5.187 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-03-07T00:49:37Z #8 5.187 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-03-07T00:49:37Z #8 5.187 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-03-07T00:49:37Z #8 5.187 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-03-07T00:49:37Z #8 5.187 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-03-07T00:49:37Z #8 5.187 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-03-07T00:49:37Z #8 5.187 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-03-07T00:49:37Z #8 5.187 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-03-07T00:49:37Z #8 5.187 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-03-07T00:49:37Z #8 5.187 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-03-07T00:49:37Z #8 5.187 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-03-07T00:49:37Z #8 5.187 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-03-07T00:49:37Z #8 5.187 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-03-07T00:49:37Z #8 5.187 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-03-07T00:49:37Z #8 5.187 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-03-07T00:49:37Z #8 5.187 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-03-07T00:49:37Z #8 5.187 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-03-07T00:49:37Z #8 5.187 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-03-07T00:49:37Z #8 5.187 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-03-07T00:49:37Z #8 5.187 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-03-07T00:49:37Z #8 5.187 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-03-07T00:49:37Z #8 5.187 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv +2024-03-07T00:49:37Z #8 5.187 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data +2024-03-07T00:49:37Z #8 5.187 Suggested packages: +2024-03-07T00:49:37Z #8 5.187 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-03-07T00:49:37Z #8 5.187 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-03-07T00:49:37Z #8 5.187 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-03-07T00:49:37Z #8 5.187 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs +2024-03-07T00:49:37Z #8 5.187 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser +2024-03-07T00:49:37Z #8 5.187 opencl-icd ed diffutils-doc systemd-container policykit-1 zip +2024-03-07T00:49:37Z #8 5.187 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-03-07T00:49:37Z #8 5.187 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-03-07T00:49:37Z #8 5.187 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-03-07T00:49:38Z #8 6.753 The following NEW packages will be installed: +2024-03-07T00:49:38Z #8 6.754 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-03-07T00:49:38Z #8 6.754 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-03-07T00:49:38Z #8 6.754 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-03-07T00:49:38Z #8 6.754 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-03-07T00:49:38Z #8 6.754 glib-networking glib-networking-common glib-networking-services +2024-03-07T00:49:38Z #8 6.754 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-03-07T00:49:38Z #8 6.755 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-03-07T00:49:38Z #8 6.755 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-03-07T00:49:38Z #8 6.755 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-03-07T00:49:38Z #8 6.755 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-03-07T00:49:38Z #8 6.755 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-03-07T00:49:38Z #8 6.755 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-03-07T00:49:38Z #8 6.755 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-03-07T00:49:38Z #8 6.755 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-03-07T00:49:38Z #8 6.755 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-03-07T00:49:38Z #8 6.755 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-03-07T00:49:38Z #8 6.755 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-03-07T00:49:38Z #8 6.755 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-03-07T00:49:38Z #8 6.755 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-03-07T00:49:38Z #8 6.755 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-03-07T00:49:38Z #8 6.756 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-03-07T00:49:38Z #8 6.756 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-03-07T00:49:38Z #8 6.756 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-03-07T00:49:38Z #8 6.756 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-03-07T00:49:38Z #8 6.756 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-03-07T00:49:38Z #8 6.756 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-03-07T00:49:38Z #8 6.756 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-03-07T00:49:38Z #8 6.756 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-03-07T00:49:38Z #8 6.756 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-03-07T00:49:38Z #8 6.756 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-03-07T00:49:38Z #8 6.757 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-03-07T00:49:38Z #8 6.757 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-03-07T00:49:38Z #8 6.757 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-03-07T00:49:38Z #8 6.757 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-03-07T00:49:38Z #8 6.757 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-03-07T00:49:38Z #8 6.757 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-03-07T00:49:38Z #8 6.757 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-03-07T00:49:38Z #8 6.757 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-03-07T00:49:38Z #8 6.757 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-03-07T00:49:38Z #8 6.763 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-03-07T00:49:38Z #8 6.763 x11-utils xkb-data +2024-03-07T00:49:38Z #8 6.794 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. +2024-03-07T00:49:38Z #8 6.794 Need to get 236 MB of archives. +2024-03-07T00:49:38Z #8 6.794 After this operation, 891 MB of additional disk space will be used. +2024-03-07T00:49:38Z #8 6.794 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-03-07T00:49:39Z #8 6.808 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-03-07T00:49:39Z #8 6.810 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-03-07T00:49:39Z #8 6.814 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-03-07T00:49:39Z #8 6.817 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-03-07T00:49:39Z #8 6.820 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-03-07T00:49:39Z #8 6.821 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-03-07T00:49:39Z #8 6.827 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-03-07T00:49:39Z #8 6.828 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-03-07T00:49:39Z #8 6.830 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-03-07T00:49:39Z #8 6.957 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-03-07T00:49:39Z #8 6.959 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-03-07T00:49:39Z #8 6.963 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-03-07T00:49:39Z #8 6.967 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-03-07T00:49:39Z #8 6.971 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-03-07T00:49:39Z #8 6.976 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-03-07T00:49:39Z #8 6.994 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-03-07T00:49:39Z #8 7.011 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-03-07T00:49:39Z #8 7.013 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-03-07T00:49:39Z #8 7.018 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-03-07T00:49:39Z #8 7.261 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-03-07T00:49:39Z #8 7.285 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-03-07T00:49:39Z #8 7.310 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-03-07T00:49:39Z #8 7.316 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-03-07T00:49:39Z #8 7.328 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-03-07T00:49:39Z #8 7.333 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-03-07T00:49:39Z #8 7.345 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-03-07T00:49:39Z #8 7.348 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-03-07T00:49:39Z #8 7.364 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-03-07T00:49:39Z #8 7.379 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-03-07T00:49:39Z #8 7.381 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-03-07T00:49:39Z #8 7.579 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-03-07T00:49:39Z #8 7.598 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-03-07T00:49:39Z #8 7.600 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-03-07T00:49:39Z #8 7.606 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-03-07T00:49:39Z #8 7.608 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-03-07T00:49:39Z #8 7.610 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-03-07T00:49:39Z #8 7.612 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-03-07T00:49:39Z #8 7.613 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-03-07T00:49:39Z #8 7.616 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-03-07T00:49:39Z #8 7.646 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-03-07T00:49:39Z #8 7.654 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-03-07T00:49:39Z #8 7.673 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-03-07T00:49:39Z #8 7.679 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-03-07T00:49:40Z #8 7.752 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-03-07T00:49:40Z #8 7.756 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-03-07T00:49:40Z #8 7.778 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-03-07T00:49:40Z #8 7.842 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-03-07T00:49:40Z #8 7.865 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-03-07T00:49:40Z #8 8.058 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-03-07T00:49:40Z #8 8.059 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-03-07T00:49:40Z #8 8.061 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-03-07T00:49:40Z #8 8.063 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-03-07T00:49:40Z #8 8.064 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-03-07T00:49:40Z #8 8.065 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-03-07T00:49:40Z #8 8.080 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-03-07T00:49:40Z #8 8.082 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-03-07T00:49:40Z #8 8.087 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-03-07T00:49:40Z #8 8.112 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-03-07T00:49:40Z #8 8.117 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-03-07T00:49:40Z #8 8.137 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-03-07T00:49:40Z #8 8.173 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-03-07T00:49:40Z #8 8.177 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-03-07T00:49:40Z #8 8.189 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-03-07T00:49:40Z #8 8.220 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-03-07T00:49:40Z #8 8.227 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-03-07T00:49:40Z #8 8.230 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-03-07T00:49:40Z #8 8.244 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-03-07T00:49:40Z #8 8.263 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-03-07T00:49:40Z #8 8.274 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-03-07T00:49:40Z #8 8.296 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-03-07T00:49:40Z #8 8.300 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-03-07T00:49:40Z #8 8.316 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-03-07T00:49:40Z #8 8.323 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-03-07T00:49:40Z #8 8.367 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-03-07T00:49:40Z #8 8.376 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-03-07T00:49:40Z #8 8.376 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-03-07T00:49:40Z #8 8.376 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-03-07T00:49:40Z #8 8.391 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-03-07T00:49:40Z #8 8.393 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-03-07T00:49:40Z #8 8.397 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-03-07T00:49:40Z #8 8.401 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-03-07T00:49:40Z #8 8.404 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-03-07T00:49:40Z #8 8.405 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-03-07T00:49:40Z #8 8.406 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-03-07T00:49:40Z #8 8.409 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-03-07T00:49:40Z #8 8.423 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-03-07T00:49:40Z #8 8.429 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-03-07T00:49:40Z #8 8.451 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-03-07T00:49:40Z #8 8.452 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-03-07T00:49:40Z #8 8.453 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-03-07T00:49:40Z #8 8.460 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-03-07T00:49:40Z #8 8.461 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-03-07T00:49:40Z #8 8.483 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-03-07T00:49:40Z #8 8.484 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-03-07T00:49:40Z #8 8.485 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-03-07T00:49:40Z #8 8.486 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-03-07T00:49:40Z #8 8.494 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-03-07T00:49:40Z #8 8.495 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-03-07T00:49:40Z #8 8.496 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-03-07T00:49:40Z #8 8.498 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-03-07T00:49:40Z #8 8.499 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-03-07T00:49:40Z #8 8.500 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-03-07T00:49:40Z #8 8.501 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-03-07T00:49:40Z #8 8.510 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-03-07T00:49:40Z #8 8.512 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-03-07T00:49:40Z #8 8.513 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-03-07T00:49:40Z #8 8.608 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-03-07T00:49:40Z #8 8.695 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-03-07T00:49:40Z #8 8.712 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.8.0esr-1~deb11u1 [63.7 MB] +2024-03-07T00:49:42Z #8 10.54 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-03-07T00:49:42Z #8 10.54 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-03-07T00:49:42Z #8 10.54 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-03-07T00:49:42Z #8 10.54 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-03-07T00:49:42Z #8 10.54 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-03-07T00:49:42Z #8 10.54 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-03-07T00:49:42Z #8 10.59 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-03-07T00:49:42Z #8 10.60 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-03-07T00:49:42Z #8 10.64 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-03-07T00:49:42Z #8 10.65 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-03-07T00:49:42Z #8 10.66 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-03-07T00:49:42Z #8 10.73 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-03-07T00:49:43Z #8 11.19 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-03-07T00:49:43Z #8 11.19 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-03-07T00:49:43Z #8 11.20 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-03-07T00:49:43Z #8 11.20 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-03-07T00:49:43Z #8 11.20 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-03-07T00:49:43Z #8 11.20 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-03-07T00:49:43Z #8 11.21 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-03-07T00:49:43Z #8 11.21 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-03-07T00:49:43Z #8 11.22 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-03-07T00:49:43Z #8 11.25 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-03-07T00:49:43Z #8 11.27 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-03-07T00:49:43Z #8 11.36 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-03-07T00:49:43Z #8 11.36 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-03-07T00:49:43Z #8 11.37 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-03-07T00:49:43Z #8 11.37 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-03-07T00:49:43Z #8 11.37 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-03-07T00:49:43Z #8 11.38 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-03-07T00:49:43Z #8 11.57 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-03-07T00:49:43Z #8 11.58 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-03-07T00:49:43Z #8 11.58 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-03-07T00:49:43Z #8 11.59 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-03-07T00:49:43Z #8 11.60 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-03-07T00:49:43Z #8 11.60 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-03-07T00:49:43Z #8 11.65 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-03-07T00:49:43Z #8 11.65 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-03-07T00:49:43Z #8 11.65 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-03-07T00:49:43Z #8 11.66 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-03-07T00:49:43Z #8 11.66 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-03-07T00:49:43Z #8 11.66 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-03-07T00:49:43Z #8 11.67 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-03-07T00:49:43Z #8 11.67 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-03-07T00:49:43Z #8 11.67 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-03-07T00:49:43Z #8 11.67 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-03-07T00:49:43Z #8 11.68 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-03-07T00:49:43Z #8 11.69 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-03-07T00:49:43Z #8 11.69 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-03-07T00:49:43Z #8 11.69 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-03-07T00:49:43Z #8 11.70 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-03-07T00:49:43Z #8 11.71 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-03-07T00:49:43Z #8 11.74 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-03-07T00:49:43Z #8 11.74 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-03-07T00:49:43Z #8 11.75 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-03-07T00:49:43Z #8 11.75 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-03-07T00:49:43Z #8 11.84 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] +2024-03-07T00:49:44Z #8 11.85 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-03-07T00:49:44Z #8 11.86 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-03-07T00:49:44Z #8 11.86 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] +2024-03-07T00:49:44Z #8 11.87 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-03-07T00:49:44Z #8 11.90 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-03-07T00:49:44Z #8 11.90 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-03-07T00:49:44Z #8 11.91 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-03-07T00:49:44Z #8 11.91 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] +2024-03-07T00:49:44Z #8 11.96 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-03-07T00:49:44Z #8 11.96 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-03-07T00:49:44Z #8 11.97 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-03-07T00:49:44Z #8 11.97 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-03-07T00:49:44Z #8 11.97 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-03-07T00:49:44Z #8 11.97 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-03-07T00:49:44Z #8 11.97 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-03-07T00:49:44Z #8 11.98 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-03-07T00:49:44Z #8 12.15 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-03-07T00:49:44Z #8 12.69 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-03-07T00:49:44Z #8 12.69 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-03-07T00:49:44Z #8 12.69 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-03-07T00:49:44Z #8 12.70 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-03-07T00:49:45Z #8 12.95 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-03-07T00:49:45Z #8 12.96 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-03-07T00:49:45Z #8 12.96 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-03-07T00:49:45Z #8 12.96 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-03-07T00:49:45Z #8 12.96 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-03-07T00:49:45Z #8 12.96 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-03-07T00:49:45Z #8 12.97 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-03-07T00:49:45Z #8 12.97 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-03-07T00:49:45Z #8 12.97 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-03-07T00:49:45Z #8 12.98 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-03-07T00:49:45Z #8 12.98 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-03-07T00:49:45Z #8 12.98 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-03-07T00:49:45Z #8 12.99 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-03-07T00:49:45Z #8 12.99 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-03-07T00:49:45Z #8 12.99 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-03-07T00:49:45Z #8 12.99 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-03-07T00:49:45Z #8 12.99 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-03-07T00:49:45Z #8 13.00 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-03-07T00:49:45Z #8 13.00 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-03-07T00:49:45Z #8 13.00 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-03-07T00:49:45Z #8 13.00 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-03-07T00:49:45Z #8 13.01 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-03-07T00:49:45Z #8 13.01 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-03-07T00:49:45Z #8 13.01 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-03-07T00:49:45Z #8 13.01 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-03-07T00:49:45Z #8 13.01 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-03-07T00:49:45Z #8 13.06 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-03-07T00:49:45Z #8 13.13 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-03-07T00:49:45Z #8 13.18 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-03-07T00:49:45Z #8 13.31 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-03-07T00:49:45Z #8 13.31 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-03-07T00:49:45Z #8 13.31 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-03-07T00:49:45Z #8 13.31 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-03-07T00:49:45Z #8 13.32 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-03-07T00:49:45Z #8 13.59 debconf: delaying package configuration, since apt-utils is not installed +2024-03-07T00:49:45Z #8 13.64 Fetched 236 MB in 7s (36.0 MB/s) +2024-03-07T00:49:45Z #8 13.67 Selecting previously unselected package libapparmor1:amd64. +2024-03-07T00:49:45Z #8 13.67 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-03-07T00:49:45Z #8 13.69 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-03-07T00:49:45Z #8 13.70 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-03-07T00:49:45Z #8 13.74 Selecting previously unselected package libcap2:amd64. +2024-03-07T00:49:45Z #8 13.74 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-03-07T00:49:45Z #8 13.75 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-03-07T00:49:45Z #8 13.79 Selecting previously unselected package libargon2-1:amd64. +2024-03-07T00:49:45Z #8 13.79 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-03-07T00:49:45Z #8 13.79 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-03-07T00:49:45Z #8 13.83 Selecting previously unselected package dmsetup. +2024-03-07T00:49:46Z #8 13.83 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-03-07T00:49:46Z #8 13.83 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-03-07T00:49:46Z #8 13.88 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-03-07T00:49:46Z #8 13.89 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-03-07T00:49:46Z #8 13.89 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-03-07T00:49:46Z #8 13.95 Selecting previously unselected package libjson-c5:amd64. +2024-03-07T00:49:46Z #8 13.95 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-03-07T00:49:46Z #8 13.96 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-03-07T00:49:46Z #8 14.00 Selecting previously unselected package libcryptsetup12:amd64. +2024-03-07T00:49:46Z #8 14.00 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-03-07T00:49:46Z #8 14.01 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-03-07T00:49:46Z #8 14.07 Selecting previously unselected package libip4tc2:amd64. +2024-03-07T00:49:46Z #8 14.07 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-03-07T00:49:46Z #8 14.08 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-03-07T00:49:46Z #8 14.11 Selecting previously unselected package libkmod2:amd64. +2024-03-07T00:49:46Z #8 14.12 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-03-07T00:49:46Z #8 14.12 Unpacking libkmod2:amd64 (28-1) ... +2024-03-07T00:49:46Z #8 14.17 Selecting previously unselected package systemd. +2024-03-07T00:49:46Z #8 14.17 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-07T00:49:46Z #8 14.23 Unpacking systemd (247.3-7+deb11u4) ... +2024-03-07T00:49:47Z #8 15.04 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-03-07T00:49:47Z #8 15.05 Setting up libcap2:amd64 (1:2.44-1) ... +2024-03-07T00:49:47Z #8 15.06 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-03-07T00:49:47Z #8 15.07 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-03-07T00:49:47Z #8 15.08 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-03-07T00:49:47Z #8 15.09 Setting up libkmod2:amd64 (28-1) ... +2024-03-07T00:49:47Z #8 15.10 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-03-07T00:49:47Z #8 15.11 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-03-07T00:49:47Z #8 15.13 Setting up systemd (247.3-7+deb11u4) ... +2024-03-07T00:49:47Z #8 15.16 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-03-07T00:49:47Z #8 15.17 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-03-07T00:49:47Z #8 15.17 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-03-07T00:49:47Z #8 15.20 Initializing machine ID from KVM UUID. +2024-03-07T00:49:47Z #8 15.57 Setting up dmsetup (2:1.02.175-2.1) ... +2024-03-07T00:49:47Z #8 15.66 Selecting previously unselected package systemd-sysv. +2024-03-07T00:49:47Z #8 15.67 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-03-07T00:49:47Z #8 15.69 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-03-07T00:49:47Z #8 15.69 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-03-07T00:49:47Z #8 15.74 Selecting previously unselected package libdbus-1-3:amd64. +2024-03-07T00:49:47Z #8 15.75 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-03-07T00:49:47Z #8 15.75 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-03-07T00:49:48Z #8 15.82 Selecting previously unselected package dbus. +2024-03-07T00:49:48Z #8 15.82 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-03-07T00:49:48Z #8 15.83 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-03-07T00:49:48Z #8 15.91 Selecting previously unselected package libnss-systemd:amd64. +2024-03-07T00:49:48Z #8 15.91 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-07T00:49:48Z #8 15.92 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-07T00:49:48Z #8 15.97 Selecting previously unselected package libpam-systemd:amd64. +2024-03-07T00:49:48Z #8 15.97 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-07T00:49:48Z #8 15.98 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-07T00:49:48Z #8 16.04 Selecting previously unselected package manpages. +2024-03-07T00:49:48Z #8 16.04 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-03-07T00:49:48Z #8 16.05 Unpacking manpages (5.10-1) ... +2024-03-07T00:49:48Z #8 16.23 Selecting previously unselected package systemd-timesyncd. +2024-03-07T00:49:48Z #8 16.23 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-03-07T00:49:48Z #8 16.24 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-03-07T00:49:48Z #8 16.28 Selecting previously unselected package hicolor-icon-theme. +2024-03-07T00:49:48Z #8 16.29 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-03-07T00:49:48Z #8 16.29 Unpacking hicolor-icon-theme (0.17-2) ... +2024-03-07T00:49:48Z #8 16.40 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-03-07T00:49:48Z #8 16.40 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-03-07T00:49:48Z #8 16.40 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-03-07T00:49:48Z #8 16.50 Selecting previously unselected package libicu67:amd64. +2024-03-07T00:49:48Z #8 16.51 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-03-07T00:49:48Z #8 16.51 Unpacking libicu67:amd64 (67.1-7) ... +2024-03-07T00:49:50Z #8 17.90 Selecting previously unselected package libxml2:amd64. +2024-03-07T00:49:50Z #8 17.90 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-03-07T00:49:50Z #8 17.91 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-03-07T00:49:50Z #8 18.04 Selecting previously unselected package shared-mime-info. +2024-03-07T00:49:50Z #8 18.04 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-03-07T00:49:50Z #8 18.05 Unpacking shared-mime-info (2.0-1) ... +2024-03-07T00:49:50Z #8 18.21 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-03-07T00:49:50Z #8 18.21 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-03-07T00:49:50Z #8 18.22 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-03-07T00:49:50Z #8 18.27 Selecting previously unselected package libpng16-16:amd64. +2024-03-07T00:49:50Z #8 18.27 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-03-07T00:49:50Z #8 18.28 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-03-07T00:49:50Z #8 18.35 Selecting previously unselected package libdeflate0:amd64. +2024-03-07T00:49:50Z #8 18.35 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-03-07T00:49:50Z #8 18.35 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-03-07T00:49:50Z #8 18.39 Selecting previously unselected package libjbig0:amd64. +2024-03-07T00:49:50Z #8 18.40 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-03-07T00:49:50Z #8 18.40 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-03-07T00:49:50Z #8 18.44 Selecting previously unselected package libwebp6:amd64. +2024-03-07T00:49:50Z #8 18.44 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-03-07T00:49:50Z #8 18.45 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-07T00:49:50Z #8 18.54 Selecting previously unselected package libtiff5:amd64. +2024-03-07T00:49:50Z #8 18.55 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-03-07T00:49:50Z #8 18.55 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-03-07T00:49:50Z #8 18.63 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-03-07T00:49:50Z #8 18.63 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-03-07T00:49:50Z #8 18.64 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-07T00:49:50Z #8 18.71 Selecting previously unselected package gtk-update-icon-cache. +2024-03-07T00:49:50Z #8 18.71 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-03-07T00:49:50Z #8 18.72 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-03-07T00:49:51Z #8 18.84 Selecting previously unselected package adwaita-icon-theme. +2024-03-07T00:49:51Z #8 18.85 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-03-07T00:49:51Z #8 18.85 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-03-07T00:49:53Z #8 21.55 Selecting previously unselected package alsa-topology-conf. +2024-03-07T00:49:53Z #8 21.56 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-03-07T00:49:53Z #8 21.56 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-03-07T00:49:53Z #8 21.60 Selecting previously unselected package libasound2-data. +2024-03-07T00:49:53Z #8 21.60 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-03-07T00:49:53Z #8 21.61 Unpacking libasound2-data (1.2.4-1.1) ... +2024-03-07T00:49:53Z #8 21.67 Selecting previously unselected package libasound2:amd64. +2024-03-07T00:49:53Z #8 21.67 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-03-07T00:49:53Z #8 21.68 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-03-07T00:49:53Z #8 21.77 Selecting previously unselected package alsa-ucm-conf. +2024-03-07T00:49:53Z #8 21.77 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-03-07T00:49:54Z #8 21.78 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-03-07T00:49:54Z #8 21.87 Selecting previously unselected package libatspi2.0-0:amd64. +2024-03-07T00:49:54Z #8 21.87 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-03-07T00:49:54Z #8 21.88 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-03-07T00:49:54Z #8 21.94 Selecting previously unselected package libxi6:amd64. +2024-03-07T00:49:54Z #8 21.94 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-03-07T00:49:54Z #8 21.94 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-03-07T00:49:54Z #8 22.00 Selecting previously unselected package libxtst6:amd64. +2024-03-07T00:49:54Z #8 22.00 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-03-07T00:49:54Z #8 22.00 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-03-07T00:49:54Z #8 22.04 Selecting previously unselected package at-spi2-core. +2024-03-07T00:49:54Z #8 22.04 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-03-07T00:49:54Z #8 22.04 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-03-07T00:49:54Z #8 22.10 Selecting previously unselected package binutils-common:amd64. +2024-03-07T00:49:54Z #8 22.11 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-03-07T00:49:54Z #8 22.12 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-03-07T00:49:54Z #8 22.56 Selecting previously unselected package libbinutils:amd64. +2024-03-07T00:49:54Z #8 22.56 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-03-07T00:49:54Z #8 22.57 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-03-07T00:49:54Z #8 22.73 Selecting previously unselected package libctf-nobfd0:amd64. +2024-03-07T00:49:54Z #8 22.74 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-03-07T00:49:54Z #8 22.75 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-03-07T00:49:55Z #8 22.81 Selecting previously unselected package libctf0:amd64. +2024-03-07T00:49:55Z #8 22.81 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-03-07T00:49:55Z #8 22.82 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-03-07T00:49:55Z #8 22.86 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-03-07T00:49:55Z #8 22.86 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-03-07T00:49:55Z #8 22.87 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-03-07T00:49:55Z #8 23.31 Selecting previously unselected package binutils. +2024-03-07T00:49:55Z #8 23.31 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-03-07T00:49:55Z #8 23.32 Unpacking binutils (2.35.2-2) ... +2024-03-07T00:49:55Z #8 23.37 Selecting previously unselected package libisl23:amd64. +2024-03-07T00:49:55Z #8 23.38 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-03-07T00:49:55Z #8 23.38 Unpacking libisl23:amd64 (0.23-1) ... +2024-03-07T00:49:55Z #8 23.53 Selecting previously unselected package libmpfr6:amd64. +2024-03-07T00:49:55Z #8 23.54 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-03-07T00:49:55Z #8 23.54 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-03-07T00:49:55Z #8 23.74 Selecting previously unselected package libmpc3:amd64. +2024-03-07T00:49:55Z #8 23.75 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-03-07T00:49:55Z #8 23.75 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-03-07T00:49:56Z #8 23.79 Selecting previously unselected package cpp-10. +2024-03-07T00:49:56Z #8 23.80 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-03-07T00:49:56Z #8 23.80 Unpacking cpp-10 (10.2.1-6) ... +2024-03-07T00:49:57Z #8 25.32 Selecting previously unselected package cpp. +2024-03-07T00:49:57Z #8 25.33 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-03-07T00:49:57Z #8 25.33 Unpacking cpp (4:10.2.1-1) ... +2024-03-07T00:49:57Z #8 25.37 Selecting previously unselected package dbus-user-session. +2024-03-07T00:49:57Z #8 25.38 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-03-07T00:49:57Z #8 25.38 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-03-07T00:49:57Z #8 25.44 Selecting previously unselected package libdconf1:amd64. +2024-03-07T00:49:57Z #8 25.45 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-03-07T00:49:57Z #8 25.45 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-03-07T00:49:57Z #8 25.49 Selecting previously unselected package dconf-service. +2024-03-07T00:49:57Z #8 25.50 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-03-07T00:49:57Z #8 25.50 Unpacking dconf-service (0.38.0-2) ... +2024-03-07T00:49:57Z #8 25.54 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-03-07T00:49:57Z #8 25.55 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-03-07T00:49:57Z #8 25.55 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-03-07T00:49:57Z #8 25.59 Selecting previously unselected package libatk1.0-data. +2024-03-07T00:49:57Z #8 25.60 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-03-07T00:49:57Z #8 25.60 Unpacking libatk1.0-data (2.36.0-2) ... +2024-03-07T00:49:57Z #8 25.69 Selecting previously unselected package libatk1.0-0:amd64. +2024-03-07T00:49:57Z #8 25.69 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-03-07T00:49:57Z #8 25.70 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-03-07T00:49:57Z #8 25.74 Selecting previously unselected package libfreetype6:amd64. +2024-03-07T00:49:57Z #8 25.75 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-03-07T00:49:57Z #8 25.75 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-03-07T00:49:58Z #8 25.86 Selecting previously unselected package fonts-dejavu-core. +2024-03-07T00:49:58Z #8 25.86 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-03-07T00:49:58Z #8 25.87 Unpacking fonts-dejavu-core (2.37-2) ... +2024-03-07T00:49:58Z #8 26.12 Selecting previously unselected package fontconfig-config. +2024-03-07T00:49:58Z #8 26.12 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-03-07T00:49:58Z #8 26.29 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-03-07T00:49:58Z #8 26.37 Selecting previously unselected package libfontconfig1:amd64. +2024-03-07T00:49:58Z #8 26.37 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-03-07T00:49:58Z #8 26.37 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-03-07T00:49:58Z #8 26.43 Selecting previously unselected package libpixman-1-0:amd64. +2024-03-07T00:49:58Z #8 26.44 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-03-07T00:49:58Z #8 26.44 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-03-07T00:49:58Z #8 26.54 Selecting previously unselected package libxcb-render0:amd64. +2024-03-07T00:49:58Z #8 26.55 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-03-07T00:49:58Z #8 26.55 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-03-07T00:49:58Z #8 26.60 Selecting previously unselected package libxcb-shm0:amd64. +2024-03-07T00:49:58Z #8 26.60 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-03-07T00:49:58Z #8 26.61 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-03-07T00:49:58Z #8 26.66 Selecting previously unselected package libcairo2:amd64. +2024-03-07T00:49:58Z #8 26.66 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-03-07T00:49:58Z #8 26.67 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-03-07T00:49:59Z #8 26.79 Selecting previously unselected package libcairo-gobject2:amd64. +2024-03-07T00:49:59Z #8 26.80 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-03-07T00:49:59Z #8 26.80 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-03-07T00:49:59Z #8 26.86 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-03-07T00:49:59Z #8 26.87 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-03-07T00:49:59Z #8 26.87 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-03-07T00:49:59Z #8 26.93 Selecting previously unselected package libevent-2.1-7:amd64. +2024-03-07T00:49:59Z #8 26.93 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-03-07T00:49:59Z #8 26.93 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-03-07T00:49:59Z #8 27.01 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-03-07T00:49:59Z #8 27.01 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-03-07T00:49:59Z #8 27.02 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-03-07T00:49:59Z #8 27.07 Selecting previously unselected package liblcms2-2:amd64. +2024-03-07T00:49:59Z #8 27.07 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-03-07T00:49:59Z #8 27.08 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-03-07T00:49:59Z #8 27.14 Selecting previously unselected package libcolord2:amd64. +2024-03-07T00:49:59Z #8 27.15 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-03-07T00:49:59Z #8 27.15 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-03-07T00:49:59Z #8 27.22 Selecting previously unselected package libavahi-common-data:amd64. +2024-03-07T00:49:59Z #8 27.22 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-03-07T00:49:59Z #8 27.23 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-03-07T00:49:59Z #8 27.29 Selecting previously unselected package libavahi-common3:amd64. +2024-03-07T00:49:59Z #8 27.29 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-03-07T00:49:59Z #8 27.30 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-03-07T00:49:59Z #8 27.35 Selecting previously unselected package libavahi-client3:amd64. +2024-03-07T00:49:59Z #8 27.36 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-03-07T00:49:59Z #8 27.36 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-03-07T00:49:59Z #8 27.42 Selecting previously unselected package libcups2:amd64. +2024-03-07T00:49:59Z #8 27.42 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-03-07T00:49:59Z #8 27.43 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-03-07T00:49:59Z #8 27.52 Selecting previously unselected package libepoxy0:amd64. +2024-03-07T00:49:59Z #8 27.52 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-03-07T00:49:59Z #8 27.53 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-03-07T00:49:59Z #8 27.60 Selecting previously unselected package libfribidi0:amd64. +2024-03-07T00:49:59Z #8 27.61 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-03-07T00:49:59Z #8 27.61 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-03-07T00:49:59Z #8 27.66 Selecting previously unselected package libgraphite2-3:amd64. +2024-03-07T00:49:59Z #8 27.66 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-03-07T00:49:59Z #8 27.67 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-03-07T00:49:59Z #8 27.72 Selecting previously unselected package libharfbuzz0b:amd64. +2024-03-07T00:49:59Z #8 27.73 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-03-07T00:49:59Z #8 27.73 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-03-07T00:50:00Z #8 27.84 Selecting previously unselected package libjson-glib-1.0-common. +2024-03-07T00:50:00Z #8 27.85 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-03-07T00:50:00Z #8 27.85 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-03-07T00:50:00Z #8 27.91 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-03-07T00:50:00Z #8 27.92 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-03-07T00:50:00Z #8 27.92 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-03-07T00:50:00Z #8 27.97 Selecting previously unselected package fontconfig. +2024-03-07T00:50:00Z #8 27.97 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-03-07T00:50:00Z #8 27.97 Unpacking fontconfig (2.13.1-4.2) ... +2024-03-07T00:50:00Z #8 28.05 Selecting previously unselected package libthai-data. +2024-03-07T00:50:00Z #8 28.05 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-03-07T00:50:00Z #8 28.06 Unpacking libthai-data (0.1.28-3) ... +2024-03-07T00:50:00Z #8 28.12 Selecting previously unselected package libdatrie1:amd64. +2024-03-07T00:50:00Z #8 28.12 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-03-07T00:50:00Z #8 28.13 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-03-07T00:50:00Z #8 28.17 Selecting previously unselected package libthai0:amd64. +2024-03-07T00:50:00Z #8 28.17 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-03-07T00:50:00Z #8 28.17 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-03-07T00:50:00Z #8 28.22 Selecting previously unselected package libpango-1.0-0:amd64. +2024-03-07T00:50:00Z #8 28.22 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-03-07T00:50:00Z #8 28.23 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-03-07T00:50:00Z #8 28.29 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-03-07T00:50:00Z #8 28.30 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-03-07T00:50:00Z #8 28.30 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-03-07T00:50:00Z #8 28.36 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-03-07T00:50:00Z #8 28.36 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-03-07T00:50:00Z #8 28.37 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-03-07T00:50:00Z #8 28.42 Selecting previously unselected package libproxy1v5:amd64. +2024-03-07T00:50:00Z #8 28.42 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-03-07T00:50:00Z #8 28.43 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-03-07T00:50:00Z #8 28.47 Selecting previously unselected package glib-networking-common. +2024-03-07T00:50:00Z #8 28.47 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-03-07T00:50:00Z #8 28.48 Unpacking glib-networking-common (2.66.0-2) ... +2024-03-07T00:50:00Z #8 28.54 Selecting previously unselected package glib-networking-services. +2024-03-07T00:50:00Z #8 28.54 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-03-07T00:50:00Z #8 28.54 Unpacking glib-networking-services (2.66.0-2) ... +2024-03-07T00:50:00Z #8 28.58 Selecting previously unselected package gsettings-desktop-schemas. +2024-03-07T00:50:00Z #8 28.58 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-03-07T00:50:00Z #8 28.59 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-03-07T00:50:01Z #8 28.75 Selecting previously unselected package glib-networking:amd64. +2024-03-07T00:50:01Z #8 28.76 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-03-07T00:50:01Z #8 28.76 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-03-07T00:50:01Z #8 28.81 Selecting previously unselected package libsoup2.4-1:amd64. +2024-03-07T00:50:01Z #8 28.82 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-03-07T00:50:01Z #8 28.82 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-03-07T00:50:01Z #8 28.97 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-03-07T00:50:01Z #8 28.97 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-03-07T00:50:01Z #8 28.98 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-03-07T00:50:01Z #8 29.02 Selecting previously unselected package librest-0.7-0:amd64. +2024-03-07T00:50:01Z #8 29.03 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-03-07T00:50:01Z #8 29.03 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-03-07T00:50:01Z #8 29.08 Selecting previously unselected package libwayland-client0:amd64. +2024-03-07T00:50:01Z #8 29.08 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-03-07T00:50:01Z #8 29.10 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-03-07T00:50:01Z #8 29.13 Selecting previously unselected package libwayland-cursor0:amd64. +2024-03-07T00:50:01Z #8 29.14 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-03-07T00:50:01Z #8 29.15 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-03-07T00:50:01Z #8 29.19 Selecting previously unselected package libwayland-egl1:amd64. +2024-03-07T00:50:01Z #8 29.20 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-03-07T00:50:01Z #8 29.20 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-03-07T00:50:01Z #8 29.24 Selecting previously unselected package libxcomposite1:amd64. +2024-03-07T00:50:01Z #8 29.24 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-03-07T00:50:01Z #8 29.24 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-03-07T00:50:01Z #8 29.29 Selecting previously unselected package libxfixes3:amd64. +2024-03-07T00:50:01Z #8 29.29 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-03-07T00:50:01Z #8 29.30 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-03-07T00:50:01Z #8 29.34 Selecting previously unselected package libxcursor1:amd64. +2024-03-07T00:50:01Z #8 29.35 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-03-07T00:50:01Z #8 29.35 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-03-07T00:50:01Z #8 29.40 Selecting previously unselected package libxdamage1:amd64. +2024-03-07T00:50:01Z #8 29.40 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-03-07T00:50:01Z #8 29.41 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-03-07T00:50:01Z #8 29.45 Selecting previously unselected package libxinerama1:amd64. +2024-03-07T00:50:01Z #8 29.45 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-03-07T00:50:01Z #8 29.46 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-03-07T00:50:01Z #8 29.50 Selecting previously unselected package xkb-data. +2024-03-07T00:50:01Z #8 29.50 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-03-07T00:50:01Z #8 29.51 Unpacking xkb-data (2.29-2) ... +2024-03-07T00:50:02Z #8 29.76 Selecting previously unselected package libxkbcommon0:amd64. +2024-03-07T00:50:02Z #8 29.77 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-03-07T00:50:02Z #8 29.77 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-03-07T00:50:02Z #8 29.84 Selecting previously unselected package libxrandr2:amd64. +2024-03-07T00:50:02Z #8 29.84 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-03-07T00:50:02Z #8 29.85 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-03-07T00:50:02Z #8 29.90 Selecting previously unselected package libgtk-3-common. +2024-03-07T00:50:02Z #8 29.90 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-03-07T00:50:02Z #8 29.91 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-03-07T00:50:02Z #8 30.72 Selecting previously unselected package libgtk-3-0:amd64. +2024-03-07T00:50:02Z #8 30.73 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-03-07T00:50:02Z #8 30.73 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-03-07T00:50:03Z #8 31.27 Selecting previously unselected package libx11-xcb1:amd64. +2024-03-07T00:50:03Z #8 31.27 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-03-07T00:50:03Z #8 31.28 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-03-07T00:50:03Z #8 31.34 Selecting previously unselected package firefox-esr. +2024-03-07T00:50:03Z #8 31.34 Preparing to unpack .../099-firefox-esr_115.8.0esr-1~deb11u1_amd64.deb ... +2024-03-07T00:50:03Z #8 31.36 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-03-07T00:50:03Z #8 31.37 Unpacking firefox-esr (115.8.0esr-1~deb11u1) ... +2024-03-07T00:50:14Z #8 42.52 Selecting previously unselected package fonts-humor-sans. +2024-03-07T00:50:14Z #8 42.52 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-03-07T00:50:14Z #8 42.53 Unpacking fonts-humor-sans (1.0-4) ... +2024-03-07T00:50:14Z #8 42.57 Selecting previously unselected package libcc1-0:amd64. +2024-03-07T00:50:14Z #8 42.58 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-03-07T00:50:14Z #8 42.58 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-03-07T00:50:14Z #8 42.63 Selecting previously unselected package libgomp1:amd64. +2024-03-07T00:50:14Z #8 42.64 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-03-07T00:50:14Z #8 42.64 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-03-07T00:50:14Z #8 42.72 Selecting previously unselected package libitm1:amd64. +2024-03-07T00:50:14Z #8 42.73 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-03-07T00:50:14Z #8 42.74 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-03-07T00:50:14Z #8 42.78 Selecting previously unselected package libatomic1:amd64. +2024-03-07T00:50:14Z #8 42.79 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-03-07T00:50:14Z #8 42.79 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-03-07T00:50:15Z #8 42.83 Selecting previously unselected package libasan6:amd64. +2024-03-07T00:50:15Z #8 42.84 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-03-07T00:50:15Z #8 42.84 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-03-07T00:50:15Z #8 43.33 Selecting previously unselected package liblsan0:amd64. +2024-03-07T00:50:15Z #8 43.33 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-03-07T00:50:15Z #8 43.34 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-03-07T00:50:15Z #8 43.54 Selecting previously unselected package libtsan0:amd64. +2024-03-07T00:50:15Z #8 43.54 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-03-07T00:50:15Z #8 43.55 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-03-07T00:50:16Z #8 43.98 Selecting previously unselected package libubsan1:amd64. +2024-03-07T00:50:16Z #8 43.98 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-03-07T00:50:16Z #8 43.99 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-03-07T00:50:16Z #8 44.16 Selecting previously unselected package libquadmath0:amd64. +2024-03-07T00:50:16Z #8 44.16 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-03-07T00:50:16Z #8 44.17 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-03-07T00:50:16Z #8 44.23 Selecting previously unselected package libgcc-10-dev:amd64. +2024-03-07T00:50:16Z #8 44.23 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-03-07T00:50:16Z #8 44.24 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-03-07T00:50:16Z #8 44.72 Selecting previously unselected package gcc-10. +2024-03-07T00:50:16Z #8 44.72 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-03-07T00:50:16Z #8 44.73 Unpacking gcc-10 (10.2.1-6) ... +2024-03-07T00:50:19Z #8 47.67 Selecting previously unselected package gcc. +2024-03-07T00:50:19Z #8 47.68 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-03-07T00:50:19Z #8 47.68 Unpacking gcc (4:10.2.1-1) ... +2024-03-07T00:50:19Z #8 47.72 Selecting previously unselected package libva2:amd64. +2024-03-07T00:50:19Z #8 47.73 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-03-07T00:50:19Z #8 47.73 Unpacking libva2:amd64 (2.10.0-1) ... +2024-03-07T00:50:20Z #8 47.78 Selecting previously unselected package libdrm-common. +2024-03-07T00:50:20Z #8 47.79 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-03-07T00:50:20Z #8 47.79 Unpacking libdrm-common (2.4.104-1) ... +2024-03-07T00:50:20Z #8 47.83 Selecting previously unselected package libdrm2:amd64. +2024-03-07T00:50:20Z #8 47.84 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-03-07T00:50:20Z #8 47.84 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-03-07T00:50:20Z #8 47.88 Selecting previously unselected package libpciaccess0:amd64. +2024-03-07T00:50:20Z #8 47.89 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-03-07T00:50:20Z #8 47.90 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-03-07T00:50:20Z #8 47.94 Selecting previously unselected package libdrm-intel1:amd64. +2024-03-07T00:50:20Z #8 47.95 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-03-07T00:50:20Z #8 47.95 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-03-07T00:50:20Z #8 48.00 Selecting previously unselected package i965-va-driver:amd64. +2024-03-07T00:50:20Z #8 48.00 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-03-07T00:50:20Z #8 48.01 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-03-07T00:50:20Z #8 48.11 Selecting previously unselected package libigdgmm11:amd64. +2024-03-07T00:50:20Z #8 48.11 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-03-07T00:50:20Z #8 48.12 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-03-07T00:50:20Z #8 48.17 Selecting previously unselected package intel-media-va-driver:amd64. +2024-03-07T00:50:20Z #8 48.18 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-03-07T00:50:20Z #8 48.18 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-03-07T00:50:20Z #8 48.57 Selecting previously unselected package libaom0:amd64. +2024-03-07T00:50:20Z #8 48.57 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-03-07T00:50:20Z #8 48.58 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-03-07T00:50:20Z #8 48.82 Selecting previously unselected package libmfx1:amd64. +2024-03-07T00:50:21Z #8 48.82 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-03-07T00:50:21Z #8 48.82 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-03-07T00:50:21Z #8 49.64 Selecting previously unselected package libva-drm2:amd64. +2024-03-07T00:50:21Z #8 49.65 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-03-07T00:50:21Z #8 49.65 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-03-07T00:50:21Z #8 49.69 Selecting previously unselected package libva-x11-2:amd64. +2024-03-07T00:50:21Z #8 49.70 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-03-07T00:50:21Z #8 49.70 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-03-07T00:50:21Z #8 49.74 Selecting previously unselected package libvdpau1:amd64. +2024-03-07T00:50:21Z #8 49.75 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-03-07T00:50:21Z #8 49.75 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-03-07T00:50:22Z #8 49.80 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-03-07T00:50:22Z #8 49.80 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-03-07T00:50:22Z #8 49.81 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-03-07T00:50:22Z #8 49.86 Selecting previously unselected package libavutil56:amd64. +2024-03-07T00:50:22Z #8 49.86 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-07T00:50:22Z #8 49.87 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-07T00:50:22Z #8 49.96 Selecting previously unselected package libcodec2-0.9:amd64. +2024-03-07T00:50:22Z #8 49.96 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-03-07T00:50:22Z #8 49.96 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-03-07T00:50:23Z #8 51.22 Selecting previously unselected package libdav1d4:amd64. +2024-03-07T00:50:23Z #8 51.22 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-03-07T00:50:23Z #8 51.23 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-03-07T00:50:23Z #8 51.33 Selecting previously unselected package libgsm1:amd64. +2024-03-07T00:50:23Z #8 51.33 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-03-07T00:50:23Z #8 51.34 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-03-07T00:50:23Z #8 51.38 Selecting previously unselected package libmp3lame0:amd64. +2024-03-07T00:50:23Z #8 51.39 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-03-07T00:50:23Z #8 51.39 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-03-07T00:50:24Z #8 51.80 Selecting previously unselected package libopenjp2-7:amd64. +2024-03-07T00:50:24Z #8 51.80 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-03-07T00:50:24Z #8 51.82 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-03-07T00:50:24Z #8 51.93 Selecting previously unselected package libopus0:amd64. +2024-03-07T00:50:24Z #8 51.93 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-03-07T00:50:24Z #8 51.93 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-03-07T00:50:24Z #8 52.00 Selecting previously unselected package librsvg2-2:amd64. +2024-03-07T00:50:24Z #8 52.00 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-03-07T00:50:24Z #8 52.00 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-07T00:50:24Z #8 52.54 Selecting previously unselected package libshine3:amd64. +2024-03-07T00:50:24Z #8 52.54 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-03-07T00:50:24Z #8 52.55 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-03-07T00:50:24Z #8 52.59 Selecting previously unselected package libsnappy1v5:amd64. +2024-03-07T00:50:24Z #8 52.59 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-03-07T00:50:24Z #8 52.60 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-03-07T00:50:24Z #8 52.64 Selecting previously unselected package libspeex1:amd64. +2024-03-07T00:50:24Z #8 52.64 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-03-07T00:50:24Z #8 52.65 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-03-07T00:50:24Z #8 52.70 Selecting previously unselected package libsoxr0:amd64. +2024-03-07T00:50:24Z #8 52.70 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-03-07T00:50:24Z #8 52.71 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-03-07T00:50:25Z #8 52.76 Selecting previously unselected package libswresample3:amd64. +2024-03-07T00:50:25Z #8 52.76 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-07T00:50:25Z #8 52.77 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-07T00:50:25Z #8 52.82 Selecting previously unselected package libogg0:amd64. +2024-03-07T00:50:25Z #8 52.83 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-03-07T00:50:25Z #8 52.83 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-03-07T00:50:25Z #8 52.87 Selecting previously unselected package libtheora0:amd64. +2024-03-07T00:50:25Z #8 52.88 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-03-07T00:50:25Z #8 52.88 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-03-07T00:50:25Z #8 52.96 Selecting previously unselected package libtwolame0:amd64. +2024-03-07T00:50:25Z #8 52.96 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-03-07T00:50:25Z #8 52.96 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-03-07T00:50:25Z #8 53.01 Selecting previously unselected package libvorbis0a:amd64. +2024-03-07T00:50:25Z #8 53.02 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-03-07T00:50:25Z #8 53.02 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-03-07T00:50:25Z #8 53.08 Selecting previously unselected package libvorbisenc2:amd64. +2024-03-07T00:50:25Z #8 53.08 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-03-07T00:50:25Z #8 53.09 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-03-07T00:50:25Z #8 53.17 Selecting previously unselected package libvpx6:amd64. +2024-03-07T00:50:25Z #8 53.18 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-03-07T00:50:25Z #8 53.18 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-03-07T00:50:25Z #8 53.36 Selecting previously unselected package libwavpack1:amd64. +2024-03-07T00:50:25Z #8 53.37 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-03-07T00:50:25Z #8 53.37 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-03-07T00:50:25Z #8 53.42 Selecting previously unselected package libwebpmux3:amd64. +2024-03-07T00:50:25Z #8 53.43 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-03-07T00:50:25Z #8 53.43 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-07T00:50:25Z #8 53.48 Selecting previously unselected package libx264-160:amd64. +2024-03-07T00:50:25Z #8 53.48 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-03-07T00:50:25Z #8 53.49 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-03-07T00:50:25Z #8 53.61 Selecting previously unselected package libnuma1:amd64. +2024-03-07T00:50:25Z #8 53.62 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-03-07T00:50:25Z #8 53.62 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-03-07T00:50:25Z #8 53.69 Selecting previously unselected package libx265-192:amd64. +2024-03-07T00:50:25Z #8 53.70 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-03-07T00:50:25Z #8 53.70 Unpacking libx265-192:amd64 (3.4-2) ... +2024-03-07T00:50:26Z #8 54.06 Selecting previously unselected package libxvidcore4:amd64. +2024-03-07T00:50:26Z #8 54.07 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-03-07T00:50:26Z #8 54.07 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-03-07T00:50:26Z #8 54.15 Selecting previously unselected package libzvbi-common. +2024-03-07T00:50:26Z #8 54.16 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-03-07T00:50:26Z #8 54.16 Unpacking libzvbi-common (0.2.35-18) ... +2024-03-07T00:50:26Z #8 54.21 Selecting previously unselected package libzvbi0:amd64. +2024-03-07T00:50:26Z #8 54.22 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-03-07T00:50:26Z #8 54.22 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-03-07T00:50:26Z #8 54.31 Selecting previously unselected package libavcodec58:amd64. +2024-03-07T00:50:26Z #8 54.32 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-07T00:50:26Z #8 54.32 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-07T00:50:27Z #8 55.22 Selecting previously unselected package libc-dev-bin. +2024-03-07T00:50:27Z #8 55.22 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... +2024-03-07T00:50:27Z #8 55.22 Unpacking libc-dev-bin (2.31-13+deb11u8) ... +2024-03-07T00:50:27Z #8 55.28 Selecting previously unselected package libxpm4:amd64. +2024-03-07T00:50:27Z #8 55.28 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-03-07T00:50:27Z #8 55.28 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-03-07T00:50:27Z #8 55.34 Selecting previously unselected package libgd3:amd64. +2024-03-07T00:50:27Z #8 55.34 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-03-07T00:50:27Z #8 55.34 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-03-07T00:50:27Z #8 55.42 Selecting previously unselected package libc-devtools. +2024-03-07T00:50:27Z #8 55.42 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... +2024-03-07T00:50:27Z #8 55.42 Unpacking libc-devtools (2.31-13+deb11u8) ... +2024-03-07T00:50:27Z #8 55.48 Selecting previously unselected package linux-libc-dev:amd64. +2024-03-07T00:50:27Z #8 55.48 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-03-07T00:50:27Z #8 55.49 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-03-07T00:50:28Z #8 55.90 Selecting previously unselected package libcrypt-dev:amd64. +2024-03-07T00:50:28Z #8 55.90 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-03-07T00:50:28Z #8 55.91 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-03-07T00:50:28Z #8 55.96 Selecting previously unselected package libtirpc-dev:amd64. +2024-03-07T00:50:28Z #8 55.96 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-03-07T00:50:28Z #8 55.97 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-03-07T00:50:28Z #8 56.05 Selecting previously unselected package libnsl-dev:amd64. +2024-03-07T00:50:28Z #8 56.05 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-03-07T00:50:28Z #8 56.06 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-03-07T00:50:28Z #8 56.11 Selecting previously unselected package libc6-dev:amd64. +2024-03-07T00:50:28Z #8 56.11 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... +2024-03-07T00:50:28Z #8 56.12 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-03-07T00:50:28Z #8 56.72 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-03-07T00:50:28Z #8 56.73 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-03-07T00:50:28Z #8 56.73 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-03-07T00:50:29Z #8 56.77 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-03-07T00:50:29Z #8 56.78 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-03-07T00:50:29Z #8 56.78 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-03-07T00:50:29Z #8 56.86 Selecting previously unselected package libdrm-radeon1:amd64. +2024-03-07T00:50:29Z #8 56.87 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-03-07T00:50:29Z #8 56.87 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-03-07T00:50:29Z #8 56.92 Selecting previously unselected package libelf1:amd64. +2024-03-07T00:50:29Z #8 56.93 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-03-07T00:50:29Z #8 56.93 Unpacking libelf1:amd64 (0.183-1) ... +2024-03-07T00:50:29Z #8 57.01 Selecting previously unselected package libfontenc1:amd64. +2024-03-07T00:50:29Z #8 57.01 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-03-07T00:50:29Z #8 57.02 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-03-07T00:50:29Z #8 57.41 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-03-07T00:50:29Z #8 57.41 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-03-07T00:50:29Z #8 57.42 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-03-07T00:50:29Z #8 57.46 Selecting previously unselected package libglapi-mesa:amd64. +2024-03-07T00:50:29Z #8 57.47 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-03-07T00:50:29Z #8 57.47 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-03-07T00:50:29Z #8 57.53 Selecting previously unselected package libz3-4:amd64. +2024-03-07T00:50:29Z #8 57.53 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-03-07T00:50:29Z #8 57.54 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-03-07T00:50:30Z #8 58.72 Selecting previously unselected package libllvm11:amd64. +2024-03-07T00:50:31Z #8 58.73 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-03-07T00:50:31Z #8 58.73 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-03-07T00:50:34Z #8 61.98 Selecting previously unselected package libsensors-config. +2024-03-07T00:50:34Z #8 61.98 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-03-07T00:50:34Z #8 61.98 Unpacking libsensors-config (1:3.6.0-7) ... +2024-03-07T00:50:34Z #8 62.04 Selecting previously unselected package libsensors5:amd64. +2024-03-07T00:50:34Z #8 62.04 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-03-07T00:50:34Z #8 62.08 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-03-07T00:50:34Z #8 62.14 Selecting previously unselected package libvulkan1:amd64. +2024-03-07T00:50:34Z #8 62.14 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-03-07T00:50:34Z #8 62.15 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-03-07T00:50:34Z #8 62.22 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-03-07T00:50:34Z #8 62.22 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-03-07T00:50:34Z #8 62.24 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-03-07T00:50:36Z #8 63.83 Selecting previously unselected package libglvnd0:amd64. +2024-03-07T00:50:36Z #8 63.83 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-03-07T00:50:36Z #8 63.84 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-03-07T00:50:36Z #8 63.89 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-03-07T00:50:36Z #8 63.90 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-03-07T00:50:36Z #8 63.90 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-03-07T00:50:36Z #8 63.95 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-03-07T00:50:36Z #8 63.96 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-03-07T00:50:36Z #8 63.96 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-03-07T00:50:36Z #8 64.01 Selecting previously unselected package libxcb-glx0:amd64. +2024-03-07T00:50:36Z #8 64.02 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-03-07T00:50:36Z #8 64.02 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-03-07T00:50:36Z #8 64.08 Selecting previously unselected package libxcb-present0:amd64. +2024-03-07T00:50:36Z #8 64.09 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-03-07T00:50:36Z #8 64.09 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-03-07T00:50:36Z #8 64.14 Selecting previously unselected package libxcb-sync1:amd64. +2024-03-07T00:50:36Z #8 64.14 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-03-07T00:50:36Z #8 64.15 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-03-07T00:50:36Z #8 64.20 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-03-07T00:50:36Z #8 64.20 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-03-07T00:50:36Z #8 64.21 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-03-07T00:50:36Z #8 64.25 Selecting previously unselected package libxshmfence1:amd64. +2024-03-07T00:50:36Z #8 64.26 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-03-07T00:50:36Z #8 64.26 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-03-07T00:50:36Z #8 64.30 Selecting previously unselected package libxxf86vm1:amd64. +2024-03-07T00:50:36Z #8 64.30 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-03-07T00:50:36Z #8 64.31 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-03-07T00:50:36Z #8 64.35 Selecting previously unselected package libglx-mesa0:amd64. +2024-03-07T00:50:36Z #8 64.36 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-03-07T00:50:36Z #8 64.37 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-03-07T00:50:36Z #8 64.45 Selecting previously unselected package libgtk-3-bin. +2024-03-07T00:50:36Z #8 64.45 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-03-07T00:50:36Z #8 64.45 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-03-07T00:50:36Z #8 64.51 Selecting previously unselected package librsvg2-common:amd64. +2024-03-07T00:50:36Z #8 64.51 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-03-07T00:50:36Z #8 64.52 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-07T00:50:36Z #8 64.56 Selecting previously unselected package libglx0:amd64. +2024-03-07T00:50:36Z #8 64.56 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-03-07T00:50:36Z #8 64.56 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-03-07T00:50:36Z #8 64.61 Selecting previously unselected package libgl1:amd64. +2024-03-07T00:50:36Z #8 64.61 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-03-07T00:50:36Z #8 64.62 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-03-07T00:50:36Z #8 64.67 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-03-07T00:50:36Z #8 64.67 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-03-07T00:50:36Z #8 64.68 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-03-07T00:50:36Z #8 64.73 Selecting previously unselected package libxt6:amd64. +2024-03-07T00:50:36Z #8 64.73 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-03-07T00:50:36Z #8 64.74 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-03-07T00:50:36Z #8 64.80 Selecting previously unselected package libxmu6:amd64. +2024-03-07T00:50:37Z #8 64.81 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-03-07T00:50:37Z #8 64.81 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-03-07T00:50:37Z #8 64.85 Selecting previously unselected package libxaw7:amd64. +2024-03-07T00:50:37Z #8 64.85 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-03-07T00:50:37Z #8 64.86 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-03-07T00:50:37Z #8 64.92 Selecting previously unselected package libxcb-randr0:amd64. +2024-03-07T00:50:37Z #8 64.93 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-03-07T00:50:37Z #8 64.93 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-03-07T00:50:37Z #8 64.98 Selecting previously unselected package libxcb-shape0:amd64. +2024-03-07T00:50:37Z #8 64.99 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-03-07T00:50:37Z #8 64.99 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-03-07T00:50:37Z #8 65.05 Selecting previously unselected package libxft2:amd64. +2024-03-07T00:50:37Z #8 65.05 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-03-07T00:50:37Z #8 65.06 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-03-07T00:50:37Z #8 65.10 Selecting previously unselected package libxkbfile1:amd64. +2024-03-07T00:50:37Z #8 65.10 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-03-07T00:50:37Z #8 65.10 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-03-07T00:50:37Z #8 65.15 Selecting previously unselected package libxmuu1:amd64. +2024-03-07T00:50:37Z #8 65.15 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-03-07T00:50:37Z #8 65.16 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-03-07T00:50:37Z #8 65.20 Selecting previously unselected package libxv1:amd64. +2024-03-07T00:50:37Z #8 65.20 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-03-07T00:50:37Z #8 65.21 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-03-07T00:50:37Z #8 65.25 Selecting previously unselected package libxxf86dga1:amd64. +2024-03-07T00:50:37Z #8 65.25 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-03-07T00:50:37Z #8 65.26 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-03-07T00:50:37Z #8 65.30 Selecting previously unselected package manpages-dev. +2024-03-07T00:50:37Z #8 65.30 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-03-07T00:50:37Z #8 65.30 Unpacking manpages-dev (5.10-1) ... +2024-03-07T00:50:37Z #8 65.72 Selecting previously unselected package mesa-va-drivers:amd64. +2024-03-07T00:50:37Z #8 65.72 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-03-07T00:50:37Z #8 65.73 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-03-07T00:50:38Z #8 66.16 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-03-07T00:50:38Z #8 66.17 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-03-07T00:50:38Z #8 66.17 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-03-07T00:50:38Z #8 66.63 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-03-07T00:50:38Z #8 66.64 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-03-07T00:50:38Z #8 66.64 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-03-07T00:50:39Z #8 67.34 Selecting previously unselected package patch. +2024-03-07T00:50:39Z #8 67.34 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-03-07T00:50:39Z #8 67.35 Unpacking patch (2.7.6-7) ... +2024-03-07T00:50:39Z #8 67.40 Selecting previously unselected package unzip. +2024-03-07T00:50:39Z #8 67.40 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-03-07T00:50:39Z #8 67.40 Unpacking unzip (6.0-26+deb11u1) ... +2024-03-07T00:50:39Z #8 67.46 Selecting previously unselected package va-driver-all:amd64. +2024-03-07T00:50:39Z #8 67.47 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-03-07T00:50:39Z #8 67.48 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-03-07T00:50:39Z #8 67.51 Selecting previously unselected package vdpau-driver-all:amd64. +2024-03-07T00:50:39Z #8 67.52 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-03-07T00:50:39Z #8 67.52 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-03-07T00:50:39Z #8 67.56 Selecting previously unselected package x11-utils. +2024-03-07T00:50:39Z #8 67.56 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-03-07T00:50:39Z #8 67.57 Unpacking x11-utils (7.7+5) ... +2024-03-07T00:50:39Z #8 67.73 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-03-07T00:50:39Z #8 67.74 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-03-07T00:50:39Z #8 67.75 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-03-07T00:50:39Z #8 67.76 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-03-07T00:50:39Z #8 67.77 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-03-07T00:50:39Z #8 67.78 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-03-07T00:50:39Z #8 67.80 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-03-07T00:50:39Z #8 67.81 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-03-07T00:50:40Z #8 67.82 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-03-07T00:50:40Z #8 67.83 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-03-07T00:50:40Z #8 67.84 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-03-07T00:50:40Z #8 67.85 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-03-07T00:50:40Z #8 67.86 Setting up libshine3:amd64 (3.1.1-2) ... +2024-03-07T00:50:40Z #8 67.87 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-03-07T00:50:40Z #8 67.88 Setting up hicolor-icon-theme (0.17-2) ... +2024-03-07T00:50:40Z #8 67.91 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-03-07T00:50:40Z #8 67.92 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-03-07T00:50:40Z #8 67.93 Setting up libicu67:amd64 (67.1-7) ... +2024-03-07T00:50:40Z #8 67.94 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-03-07T00:50:40Z #8 67.95 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-03-07T00:50:40Z #8 67.97 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-03-07T00:50:40Z #8 67.98 Setting up manpages (5.10-1) ... +2024-03-07T00:50:40Z #8 67.99 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-03-07T00:50:40Z #8 68.00 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-03-07T00:50:40Z #8 68.01 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-03-07T00:50:40Z #8 68.02 Setting up unzip (6.0-26+deb11u1) ... +2024-03-07T00:50:40Z #8 68.03 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-03-07T00:50:40Z #8 68.04 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-03-07T00:50:40Z #8 68.06 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-03-07T00:50:40Z #8 68.07 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-03-07T00:50:40Z #8 68.08 Setting up libsensors-config (1:3.6.0-7) ... +2024-03-07T00:50:40Z #8 68.10 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-03-07T00:50:40Z #8 68.11 Setting up libdeflate0:amd64 (1.7-1) ... +2024-03-07T00:50:40Z #8 68.12 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-03-07T00:50:40Z #8 68.13 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-03-07T00:50:40Z #8 68.15 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-07T00:50:40Z #8 68.15 First installation detected... +2024-03-07T00:50:40Z #8 68.16 Checking NSS setup... +2024-03-07T00:50:40Z #8 68.16 Setting up xkb-data (2.29-2) ... +2024-03-07T00:50:40Z #8 68.17 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-03-07T00:50:40Z #8 68.18 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-03-07T00:50:40Z #8 68.20 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-03-07T00:50:40Z #8 68.21 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-03-07T00:50:40Z #8 68.22 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-03-07T00:50:40Z #8 68.23 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-03-07T00:50:40Z #8 68.24 Setting up libasan6:amd64 (10.2.1-6) ... +2024-03-07T00:50:40Z #8 68.25 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-03-07T00:50:40Z #8 68.27 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-03-07T00:50:40Z #8 68.28 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-03-07T00:50:40Z #8 68.29 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-03-07T00:50:40Z #8 68.58 Setting up libasound2-data (1.2.4-1.1) ... +2024-03-07T00:50:41Z #8 69.37 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-03-07T00:50:42Z #8 70.24 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-03-07T00:50:43Z #8 71.02 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-03-07T00:50:43Z #8 71.03 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-03-07T00:50:43Z #8 71.04 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-03-07T00:50:43Z #8 71.06 Setting up libva2:amd64 (2.10.0-1) ... +2024-03-07T00:50:43Z #8 71.07 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-03-07T00:50:43Z #8 71.08 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-03-07T00:50:43Z #8 71.09 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-03-07T00:50:43Z #8 71.10 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-03-07T00:50:43Z #8 71.11 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-03-07T00:50:43Z #8 71.13 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-03-07T00:50:43Z #8 71.14 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-03-07T00:50:43Z #8 71.15 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-03-07T00:50:43Z #8 71.16 Setting up dbus (1.12.28-0+deb11u1) ... +2024-03-07T00:50:43Z #8 71.32 invoke-rc.d: could not determine current runlevel +2024-03-07T00:50:43Z #8 71.33 invoke-rc.d: policy-rc.d denied execution of start. +2024-03-07T00:50:43Z #8 71.33 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-03-07T00:50:43Z #8 71.34 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-03-07T00:50:43Z #8 71.36 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-03-07T00:50:43Z #8 71.37 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-03-07T00:50:43Z #8 71.38 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-03-07T00:50:43Z #8 71.39 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-03-07T00:50:43Z #8 71.40 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-03-07T00:50:43Z #8 71.42 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-03-07T00:50:43Z #8 71.43 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-03-07T00:50:43Z #8 71.78 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-03-07T00:50:43Z #8 71.78 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-03-07T00:50:43Z #8 71.78 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-03-07T00:50:43Z #8 71.80 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-03-07T00:50:43Z #8 71.81 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-03-07T00:50:44Z #8 71.82 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-03-07T00:50:44Z #8 71.83 Setting up patch (2.7.6-7) ... +2024-03-07T00:50:44Z #8 71.85 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-07T00:50:44Z #8 71.86 Setting up fonts-dejavu-core (2.37-2) ... +2024-03-07T00:50:44Z #8 71.99 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-03-07T00:50:44Z #8 72.00 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-03-07T00:50:44Z #8 72.01 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-03-07T00:50:44Z #8 72.02 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-03-07T00:50:44Z #8 72.04 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-03-07T00:50:44Z #8 72.05 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-03-07T00:50:44Z #8 72.06 Setting up libatk1.0-data (2.36.0-2) ... +2024-03-07T00:50:44Z #8 72.07 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-03-07T00:50:44Z #8 72.09 Setting up alsa-topology-conf (1.2.4-1) ... +2024-03-07T00:50:44Z #8 72.10 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-03-07T00:50:44Z #8 72.11 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-03-07T00:50:44Z #8 72.12 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-03-07T00:50:44Z #8 72.13 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-03-07T00:50:44Z #8 72.15 Setting up libvdpau1:amd64 (1.4-3) ... +2024-03-07T00:50:44Z #8 72.16 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-03-07T00:50:44Z #8 72.17 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-03-07T00:50:44Z #8 72.19 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-03-07T00:50:44Z #8 72.20 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-03-07T00:50:44Z #8 72.21 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-07T00:50:44Z #8 72.49 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-03-07T00:50:44Z #8 72.50 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-03-07T00:50:44Z #8 72.51 Setting up libthai-data (0.1.28-3) ... +2024-03-07T00:50:44Z #8 72.53 Setting up fonts-humor-sans (1.0-4) ... +2024-03-07T00:50:44Z #8 72.54 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-03-07T00:50:44Z #8 72.55 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-03-07T00:50:44Z #8 72.56 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-03-07T00:50:44Z #8 72.57 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-03-07T00:50:44Z #8 72.59 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-03-07T00:50:44Z #8 72.60 Setting up glib-networking-common (2.66.0-2) ... +2024-03-07T00:50:44Z #8 72.61 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-03-07T00:50:44Z #8 72.62 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-03-07T00:50:44Z #8 72.63 Setting up libisl23:amd64 (0.23-1) ... +2024-03-07T00:50:44Z #8 72.65 Setting up libc-dev-bin (2.31-13+deb11u8) ... +2024-03-07T00:50:44Z #8 72.66 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-07T00:50:44Z #8 72.68 Setting up libdrm-common (2.4.104-1) ... +2024-03-07T00:50:44Z #8 72.69 Setting up libelf1:amd64 (0.183-1) ... +2024-03-07T00:50:44Z #8 72.71 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-03-07T00:50:44Z #8 72.72 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-03-07T00:50:44Z #8 72.74 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-03-07T00:50:44Z #8 72.75 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-03-07T00:50:44Z #8 72.76 Setting up libzvbi-common (0.2.35-18) ... +2024-03-07T00:50:44Z #8 72.77 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-03-07T00:50:44Z #8 72.79 Setting up cpp-10 (10.2.1-6) ... +2024-03-07T00:50:45Z #8 72.80 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-03-07T00:50:45Z #8 72.81 Setting up libitm1:amd64 (10.2.1-6) ... +2024-03-07T00:50:45Z #8 72.83 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-03-07T00:50:45Z #8 72.84 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-03-07T00:50:45Z #8 72.85 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-03-07T00:50:45Z #8 72.86 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-03-07T00:50:45Z #8 72.87 Setting up libctf0:amd64 (2.35.2-2) ... +2024-03-07T00:50:45Z #8 72.88 Setting up glib-networking-services (2.66.0-2) ... +2024-03-07T00:50:45Z #8 72.90 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-03-07T00:50:45Z #8 72.91 Setting up manpages-dev (5.10-1) ... +2024-03-07T00:50:45Z #8 72.92 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-03-07T00:50:45Z #8 72.94 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-03-07T00:50:45Z #8 72.95 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-03-07T00:50:45Z #8 72.96 Setting up fontconfig-config (2.13.1-4.2) ... +2024-03-07T00:50:45Z #8 73.38 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-03-07T00:50:45Z #8 73.39 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-03-07T00:50:45Z #8 73.41 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-03-07T00:50:45Z #8 73.42 Setting up libx265-192:amd64 (3.4-2) ... +2024-03-07T00:50:45Z #8 73.43 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-03-07T00:50:45Z #8 73.44 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-03-07T00:50:45Z #8 73.46 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-03-07T00:50:45Z #8 73.47 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-03-07T00:50:45Z #8 73.48 Setting up libthai0:amd64 (0.1.28-3) ... +2024-03-07T00:50:45Z #8 73.50 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-03-07T00:50:45Z #8 73.51 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-03-07T00:50:45Z #8 73.52 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-03-07T00:50:45Z #8 73.53 Setting up shared-mime-info (2.0-1) ... +2024-03-07T00:50:47Z #8 75.74 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-03-07T00:50:47Z #8 75.75 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-03-07T00:50:47Z #8 75.76 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-03-07T00:50:47Z #8 75.78 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-03-07T00:50:47Z #8 75.80 Setting up cpp (4:10.2.1-1) ... +2024-03-07T00:50:47Z #8 75.82 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-03-07T00:50:47Z #8 75.83 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-03-07T00:50:48Z #8 75.84 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-07T00:50:48Z #8 75.88 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-03-07T00:50:48Z #8 75.95 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-03-07T00:50:48Z #8 75.97 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-03-07T00:50:48Z #8 76.18 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-03-07T00:50:49Z #8 77.02 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-03-07T00:50:50Z #8 77.97 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-03-07T00:50:50Z #8 77.98 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-03-07T00:50:50Z #8 77.99 Setting up fontconfig (2.13.1-4.2) ... +2024-03-07T00:50:52Z #8 78.00 Regenerating fonts cache... done. +2024-03-07T00:50:52Z #8 80.03 Setting up libxft2:amd64 (2.3.2-2) ... +2024-03-07T00:50:52Z #8 80.04 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-03-07T00:50:52Z #8 80.05 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-03-07T00:50:52Z #8 80.06 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-03-07T00:50:52Z #8 80.07 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-03-07T00:50:52Z #8 80.08 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-03-07T00:50:52Z #8 80.10 Setting up dconf-service (0.38.0-2) ... +2024-03-07T00:50:52Z #8 80.11 Setting up binutils (2.35.2-2) ... +2024-03-07T00:50:52Z #8 80.12 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-03-07T00:50:52Z #8 80.14 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-07T00:50:52Z #8 80.15 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-03-07T00:50:52Z #8 80.23 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-03-07T00:50:52Z #8 80.24 Setting up libgd3:amd64 (2.3.0-2) ... +2024-03-07T00:50:52Z #8 80.25 Setting up gcc-10 (10.2.1-6) ... +2024-03-07T00:50:52Z #8 80.26 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-03-07T00:50:52Z #8 80.27 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-03-07T00:50:52Z #8 80.29 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-03-07T00:50:52Z #8 80.30 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-03-07T00:50:52Z #8 80.31 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-03-07T00:50:52Z #8 80.32 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-03-07T00:50:52Z #8 80.33 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-03-07T00:50:52Z #8 80.35 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-03-07T00:50:52Z #8 80.36 Setting up libc-devtools (2.31-13+deb11u8) ... +2024-03-07T00:50:52Z #8 80.37 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-03-07T00:50:52Z #8 80.38 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-03-07T00:50:52Z #8 80.39 Setting up libglx0:amd64 (1.3.2-1) ... +2024-03-07T00:50:52Z #8 80.40 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-03-07T00:50:52Z #8 80.41 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-07T00:50:52Z #8 80.42 Setting up gcc (4:10.2.1-1) ... +2024-03-07T00:50:52Z #8 80.45 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-07T00:50:52Z #8 80.46 Setting up libgl1:amd64 (1.3.2-1) ... +2024-03-07T00:50:52Z #8 80.47 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-03-07T00:50:52Z #8 80.48 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-07T00:50:52Z #8 80.50 Setting up x11-utils (7.7+5) ... +2024-03-07T00:50:52Z #8 80.54 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-07T00:50:52Z #8 80.56 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-03-07T00:50:52Z #8 80.57 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-03-07T00:50:52Z #8 80.59 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-03-07T00:50:52Z #8 80.60 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-03-07T00:50:52Z #8 80.62 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-03-07T00:50:52Z #8 80.65 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-03-07T00:50:52Z #8 80.70 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-03-07T00:50:52Z #8 80.71 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-03-07T00:50:52Z #8 80.73 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-03-07T00:50:52Z #8 80.74 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-03-07T00:50:52Z #8 80.75 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-03-07T00:50:52Z #8 80.79 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-03-07T00:50:53Z #8 80.80 Setting up firefox-esr (115.8.0esr-1~deb11u1) ... +2024-03-07T00:50:53Z #8 80.81 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-03-07T00:50:53Z #8 80.81 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-03-07T00:50:53Z #8 80.82 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-03-07T00:50:53Z #8 80.82 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-03-07T00:50:53Z #8 80.83 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-07T00:50:53Z #8 80.86 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-03-07T00:50:58Z #8 DONE 86.0s +2024-03-07T00:50:58Z +2024-03-07T00:50:58Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-03-07T00:51:51Z #9 DONE 53.1s +2024-03-07T00:51:51Z +2024-03-07T00:51:51Z #10 [ 5/10] COPY environment.yml /environment.yml +2024-03-07T00:51:51Z #10 DONE 0.1s +2024-03-07T00:51:51Z +2024-03-07T00:51:51Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-03-07T00:54:23Z #11 152.5 Transaction +2024-03-07T00:54:23Z #11 152.5 +2024-03-07T00:54:23Z #11 152.5 Prefix: /opt/conda/envs/birdy +2024-03-07T00:54:23Z #11 152.5 +2024-03-07T00:54:23Z #11 152.5 Updating specs: +2024-03-07T00:54:23Z #11 152.5 +2024-03-07T00:54:23Z #11 152.5 - xclim +2024-03-07T00:54:23Z #11 152.5 - ravenpy +2024-03-07T00:54:23Z #11 152.5 - python=3.10 +2024-03-07T00:54:23Z #11 152.5 +2024-03-07T00:54:23Z #11 152.5 +2024-03-07T00:54:23Z #11 152.5 Package Version Build Channel Size +2024-03-07T00:54:23Z #11 152.5 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-07T00:54:23Z #11 152.5 Install: +2024-03-07T00:54:23Z #11 152.5 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-07T00:54:23Z #11 152.5 +2024-03-07T00:54:23Z #11 152.5 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-03-07T00:54:23Z #11 152.5 + python_abi 3.10 4_cp310 conda-forge 6kB +2024-03-07T00:54:23Z #11 152.5 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB +2024-03-07T00:54:23Z #11 152.5 + ca-certificates 2024.2.2 hbcca054_0 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + libboost-headers 1.84.0 ha770c72_1 conda-forge 14MB +2024-03-07T00:54:23Z #11 152.5 + mpi 1.0 openmpi conda-forge 4kB +2024-03-07T00:54:23Z #11 152.5 + libgomp 13.2.0 h807b86a_5 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-03-07T00:54:23Z #11 152.5 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-03-07T00:54:23Z #11 152.5 + libnuma 2.0.16 h0b41bf4_1 conda-forge 41kB +2024-03-07T00:54:23Z #11 152.5 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-03-07T00:54:23Z #11 152.5 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-03-07T00:54:23Z #11 152.5 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-03-07T00:54:23Z #11 152.5 + lzo 2.10 h516909a_1000 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-03-07T00:54:23Z #11 152.5 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-03-07T00:54:23Z #11 152.5 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-03-07T00:54:23Z #11 152.5 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-03-07T00:54:23Z #11 152.5 + c-ares 1.27.0 hd590300_0 conda-forge 164kB +2024-03-07T00:54:23Z #11 152.5 + libev 4.33 hd590300_2 conda-forge 113kB +2024-03-07T00:54:23Z #11 152.5 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-03-07T00:54:23Z #11 152.5 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-03-07T00:54:23Z #11 152.5 + aws-c-common 0.9.13 hd590300_0 conda-forge 226kB +2024-03-07T00:54:23Z #11 152.5 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-03-07T00:54:23Z #11 152.5 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB +2024-03-07T00:54:23Z #11 152.5 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-03-07T00:54:23Z #11 152.5 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-03-07T00:54:23Z #11 152.5 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-03-07T00:54:23Z #11 152.5 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-03-07T00:54:23Z #11 152.5 + libexpat 2.6.1 h59595ed_0 conda-forge 74kB +2024-03-07T00:54:23Z #11 152.5 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-03-07T00:54:23Z #11 152.5 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB +2024-03-07T00:54:23Z #11 152.5 + libaec 1.1.2 h59595ed_1 conda-forge 35kB +2024-03-07T00:54:23Z #11 152.5 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB +2024-03-07T00:54:23Z #11 152.5 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-03-07T00:54:23Z #11 152.5 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-03-07T00:54:23Z #11 152.5 + gettext 0.21.1 h27087fc_0 conda-forge 4MB +2024-03-07T00:54:23Z #11 152.5 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-03-07T00:54:23Z #11 152.5 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB +2024-03-07T00:54:23Z #11 152.5 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-03-07T00:54:23Z #11 152.5 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-03-07T00:54:23Z #11 152.5 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-03-07T00:54:23Z #11 152.5 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB +2024-03-07T00:54:23Z #11 152.5 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-03-07T00:54:23Z #11 152.5 + snappy 1.1.10 h9fff704_0 conda-forge 39kB +2024-03-07T00:54:23Z #11 152.5 + icu 73.2 h59595ed_0 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB +2024-03-07T00:54:23Z #11 152.5 + libdeflate 1.19 hd590300_0 conda-forge 67kB +2024-03-07T00:54:23Z #11 152.5 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-03-07T00:54:23Z #11 152.5 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-03-07T00:54:23Z #11 152.5 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-03-07T00:54:23Z #11 152.5 + openssl 3.2.1 hd590300_0 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + ncurses 6.4 h59595ed_2 conda-forge 884kB +2024-03-07T00:54:23Z #11 152.5 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB +2024-03-07T00:54:23Z #11 152.5 + libnsl 2.0.1 hd590300_0 conda-forge 33kB +2024-03-07T00:54:23Z #11 152.5 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-03-07T00:54:23Z #11 152.5 + rdma-core 50.0 hd3aeb46_0 conda-forge 5MB +2024-03-07T00:54:23Z #11 152.5 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-03-07T00:54:23Z #11 152.5 + aws-c-compression 0.2.18 hecc5fa9_1 conda-forge 19kB +2024-03-07T00:54:23Z #11 152.5 + aws-c-sdkutils 0.1.15 hecc5fa9_1 conda-forge 55kB +2024-03-07T00:54:23Z #11 152.5 + aws-checksums 0.1.18 hecc5fa9_1 conda-forge 50kB +2024-03-07T00:54:23Z #11 152.5 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-03-07T00:54:23Z #11 152.5 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-03-07T00:54:23Z #11 152.5 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-03-07T00:54:23Z #11 152.5 + expat 2.6.1 h59595ed_0 conda-forge 137kB +2024-03-07T00:54:23Z #11 152.5 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB +2024-03-07T00:54:23Z #11 152.5 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-03-07T00:54:23Z #11 152.5 + libprotobuf 4.25.2 h08a7969_1 conda-forge 3MB +2024-03-07T00:54:23Z #11 152.5 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-03-07T00:54:23Z #11 152.5 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-03-07T00:54:23Z #11 152.5 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-03-07T00:54:23Z #11 152.5 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-03-07T00:54:23Z #11 152.5 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB +2024-03-07T00:54:23Z #11 152.5 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2024-03-07T00:54:23Z #11 152.5 + libsqlite 3.45.1 h2797004_0 conda-forge 859kB +2024-03-07T00:54:23Z #11 152.5 + pcre2 10.42 hcad00b1_0 conda-forge 1MB +2024-03-07T00:54:23Z #11 152.5 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-03-07T00:54:23Z #11 152.5 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-03-07T00:54:23Z #11 152.5 + s2n 1.4.5 h06160fa_0 conda-forge 338kB +2024-03-07T00:54:23Z #11 152.5 + aws-c-cal 0.6.10 hb29e0c7_1 conda-forge 55kB +2024-03-07T00:54:23Z #11 152.5 + libnghttp2 1.58.0 h47da74e_1 conda-forge 632kB +2024-03-07T00:54:23Z #11 152.5 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-03-07T00:54:23Z #11 152.5 + libssh2 1.11.0 h0841786_0 conda-forge 271kB +2024-03-07T00:54:23Z #11 152.5 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-03-07T00:54:23Z #11 152.5 + readline 8.2 h8228510_1 conda-forge 281kB +2024-03-07T00:54:23Z #11 152.5 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-03-07T00:54:23Z #11 152.5 + libxml2 2.12.5 h232c23b_0 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + ucx 1.15.0 h75e419f_3 conda-forge 15MB +2024-03-07T00:54:23Z #11 152.5 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-03-07T00:54:23Z #11 152.5 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-03-07T00:54:23Z #11 152.5 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB +2024-03-07T00:54:23Z #11 152.5 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB +2024-03-07T00:54:23Z #11 152.5 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-03-07T00:54:23Z #11 152.5 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB +2024-03-07T00:54:23Z #11 152.5 + orc 1.9.2 h00e871a_2 conda-forge 1MB +2024-03-07T00:54:23Z #11 152.5 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-03-07T00:54:23Z #11 152.5 + libtiff 4.6.0 ha9c0a0a_2 conda-forge 283kB +2024-03-07T00:54:23Z #11 152.5 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB +2024-03-07T00:54:23Z #11 152.5 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-03-07T00:54:23Z #11 152.5 + libglib 2.78.4 h783c2da_0 conda-forge 3MB +2024-03-07T00:54:23Z #11 152.5 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-03-07T00:54:23Z #11 152.5 + aws-c-io 0.14.5 h50678d4_1 conda-forge 157kB +2024-03-07T00:54:23Z #11 152.5 + krb5 1.21.2 h659d440_0 conda-forge 1MB +2024-03-07T00:54:23Z #11 152.5 + sqlite 3.45.1 h2c6b66d_0 conda-forge 848kB +2024-03-07T00:54:23Z #11 152.5 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-03-07T00:54:23Z #11 152.5 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-03-07T00:54:23Z #11 152.5 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-03-07T00:54:23Z #11 152.5 + libgrpc 1.61.1 h42401df_1 conda-forge 7MB +2024-03-07T00:54:23Z #11 152.5 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-03-07T00:54:23Z #11 152.5 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-07T00:54:23Z #11 152.5 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-03-07T00:54:23Z #11 152.5 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-03-07T00:54:23Z #11 152.5 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-03-07T00:54:23Z #11 152.5 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-03-07T00:54:23Z #11 152.5 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-03-07T00:54:23Z #11 152.5 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-03-07T00:54:23Z #11 152.5 + aws-c-http 0.8.1 h5d7533a_5 conda-forge 195kB +2024-03-07T00:54:23Z #11 152.5 + aws-c-event-stream 0.4.2 hf9b2f7b_4 conda-forge 54kB +2024-03-07T00:54:23Z #11 152.5 + libpq 16.2 h33b98f1_0 conda-forge 2MB +2024-03-07T00:54:23Z #11 152.5 + libcurl 8.5.0 hca28451_0 conda-forge 389kB +2024-03-07T00:54:23Z #11 152.5 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-07T00:54:23Z #11 152.5 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-07T00:54:23Z #11 152.5 + aws-c-mqtt 0.10.2 hf479d2b_4 conda-forge 164kB +2024-03-07T00:54:23Z #11 152.5 + aws-c-auth 0.7.16 h79b3bcb_6 conda-forge 103kB +2024-03-07T00:54:23Z #11 152.5 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB +2024-03-07T00:54:23Z #11 152.5 + libgoogle-cloud 2.21.0 h72bcb37_2 conda-forge 1MB +2024-03-07T00:54:23Z #11 152.5 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB +2024-03-07T00:54:23Z #11 152.5 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-03-07T00:54:23Z #11 152.5 + proj 9.3.1 h1d62c97_0 conda-forge 3MB +2024-03-07T00:54:23Z #11 152.5 + cfitsio 4.3.1 hbdc6101_0 conda-forge 875kB +2024-03-07T00:54:23Z #11 152.5 + aws-c-s3 0.5.2 h4ad9680_0 conda-forge 105kB +2024-03-07T00:54:23Z #11 152.5 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB +2024-03-07T00:54:23Z #11 152.5 + libgoogle-cloud-storage 2.21.0 hc7a4891_2 conda-forge 750kB +2024-03-07T00:54:23Z #11 152.5 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-03-07T00:54:23Z #11 152.5 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-03-07T00:54:23Z #11 152.5 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB +2024-03-07T00:54:23Z #11 152.5 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB +2024-03-07T00:54:23Z #11 152.5 + aws-crt-cpp 0.26.2 h19f5d62_7 conda-forge 334kB +2024-03-07T00:54:23Z #11 152.5 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB +2024-03-07T00:54:23Z #11 152.5 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-03-07T00:54:23Z #11 152.5 + aws-sdk-cpp 1.11.267 h5606698_1 conda-forge 4MB +2024-03-07T00:54:23Z #11 152.5 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB +2024-03-07T00:54:23Z #11 152.5 + libarrow 15.0.0 h5001e6d_7_cpu conda-forge 8MB +2024-03-07T00:54:23Z #11 152.5 + tiledb 2.20.1 h6997b71_2 conda-forge 5MB +2024-03-07T00:54:23Z #11 152.5 + libparquet 15.0.0 h352af49_7_cpu conda-forge 1MB +2024-03-07T00:54:23Z #11 152.5 + libarrow-gandiva 15.0.0 h3f306ff_7_cpu conda-forge 896kB +2024-03-07T00:54:23Z #11 152.5 + libarrow-flight 15.0.0 hf334d8d_7_cpu conda-forge 505kB +2024-03-07T00:54:23Z #11 152.5 + libarrow-acero 15.0.0 h59595ed_7_cpu conda-forge 598kB +2024-03-07T00:54:23Z #11 152.5 + libarrow-flight-sql 15.0.0 h469e5c9_7_cpu conda-forge 195kB +2024-03-07T00:54:23Z #11 152.5 + libarrow-dataset 15.0.0 h59595ed_7_cpu conda-forge 585kB +2024-03-07T00:54:23Z #11 152.5 + libarrow-substrait 15.0.0 h469e5c9_7_cpu conda-forge 519kB +2024-03-07T00:54:23Z #11 152.5 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-03-07T00:54:24Z #11 152.5 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-03-07T00:54:24Z #11 152.5 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-03-07T00:54:24Z #11 152.5 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-03-07T00:54:24Z #11 152.5 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-03-07T00:54:24Z #11 152.5 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB +2024-03-07T00:54:24Z #11 152.5 + fonts-conda-forge 1 0 conda-forge 4kB +2024-03-07T00:54:24Z #11 152.5 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-03-07T00:54:24Z #11 152.5 + postgresql 16.2 h7387d8b_0 conda-forge 5MB +2024-03-07T00:54:24Z #11 152.5 + python 3.10.13 hd12c33a_1_cpython conda-forge 26MB +2024-03-07T00:54:24Z #11 152.5 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-03-07T00:54:24Z #11 152.5 + poppler 24.02.0 h590f24d_0 conda-forge 2MB +2024-03-07T00:54:24Z #11 152.5 + libgdal 3.8.4 h9323651_0 conda-forge 11MB +2024-03-07T00:54:24Z #11 152.5 + wheel 0.42.0 pyhd8ed1ab_0 conda-forge 58kB +2024-03-07T00:54:24Z #11 152.5 + setuptools 69.1.1 pyhd8ed1ab_0 conda-forge 470kB +2024-03-07T00:54:24Z #11 152.5 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-03-07T00:54:24Z #11 152.5 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB +2024-03-07T00:54:24Z #11 152.5 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB +2024-03-07T00:54:24Z #11 152.5 + appdirs 1.4.4 pyh9f0ad1d_0 conda-forge 13kB +2024-03-07T00:54:24Z #11 152.5 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-03-07T00:54:24Z #11 152.5 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-03-07T00:54:24Z #11 152.5 + threadpoolctl 3.3.0 pyhc1e730c_0 conda-forge 23kB +2024-03-07T00:54:24Z #11 152.5 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB +2024-03-07T00:54:24Z #11 152.5 + fsspec 2024.2.0 pyhca7485f_0 conda-forge 129kB +2024-03-07T00:54:24Z #11 152.5 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-03-07T00:54:24Z #11 152.5 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-03-07T00:54:24Z #11 152.5 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-03-07T00:54:24Z #11 152.5 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-03-07T00:54:24Z #11 152.5 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB +2024-03-07T00:54:24Z #11 152.5 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-03-07T00:54:24Z #11 152.5 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-03-07T00:54:24Z #11 152.5 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB +2024-03-07T00:54:24Z #11 152.5 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-03-07T00:54:24Z #11 152.5 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-03-07T00:54:24Z #11 152.5 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-03-07T00:54:24Z #11 152.5 + boltons 23.1.1 pyhd8ed1ab_0 conda-forge 304kB +2024-03-07T00:54:24Z #11 152.5 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-03-07T00:54:24Z #11 152.5 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-03-07T00:54:24Z #11 152.5 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-03-07T00:54:24Z #11 152.5 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-03-07T00:54:24Z #11 152.5 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-03-07T00:54:24Z #11 152.5 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-03-07T00:54:24Z #11 152.5 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB +2024-03-07T00:54:24Z #11 152.5 + packaging 23.2 pyhd8ed1ab_0 conda-forge 49kB +2024-03-07T00:54:24Z #11 152.5 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-03-07T00:54:24Z #11 152.5 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-03-07T00:54:24Z #11 152.5 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-03-07T00:54:24Z #11 152.5 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-03-07T00:54:24Z #11 152.5 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-03-07T00:54:24Z #11 152.5 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-03-07T00:54:24Z #11 152.5 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-03-07T00:54:24Z #11 152.5 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-03-07T00:54:24Z #11 152.5 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-03-07T00:54:24Z #11 152.5 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-03-07T00:54:24Z #11 152.5 + pytools 2023.1.1 pyhd8ed1ab_0 conda-forge 71kB +2024-03-07T00:54:24Z #11 152.5 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB +2024-03-07T00:54:24Z #11 152.5 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-03-07T00:54:24Z #11 152.5 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-03-07T00:54:24Z #11 152.5 + importlib-metadata 7.0.1 pyha770c72_0 conda-forge 26kB +2024-03-07T00:54:24Z #11 152.5 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-03-07T00:54:24Z #11 152.5 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-03-07T00:54:24Z #11 152.5 + importlib_metadata 7.0.1 hd8ed1ab_0 conda-forge 10kB +2024-03-07T00:54:24Z #11 152.5 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB +2024-03-07T00:54:24Z #11 152.5 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB +2024-03-07T00:54:24Z #11 152.5 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB +2024-03-07T00:54:24Z #11 152.5 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB +2024-03-07T00:54:24Z #11 152.5 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB +2024-03-07T00:54:24Z #11 152.5 + tornado 6.4 py310h2372a71_0 conda-forge 651kB +2024-03-07T00:54:24Z #11 152.5 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB +2024-03-07T00:54:24Z #11 152.5 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB +2024-03-07T00:54:24Z #11 152.5 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB +2024-03-07T00:54:24Z #11 152.5 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB +2024-03-07T00:54:24Z #11 152.5 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB +2024-03-07T00:54:24Z #11 152.5 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB +2024-03-07T00:54:24Z #11 152.5 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB +2024-03-07T00:54:24Z #11 152.5 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB +2024-03-07T00:54:24Z #11 152.5 + raven-hydro 0.2.3 py310h3ce4ad4_0 conda-forge 787kB +2024-03-07T00:54:24Z #11 152.5 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB +2024-03-07T00:54:24Z #11 152.5 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB +2024-03-07T00:54:24Z #11 152.5 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB +2024-03-07T00:54:24Z #11 152.5 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB +2024-03-07T00:54:24Z #11 152.5 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB +2024-03-07T00:54:24Z #11 152.5 + pydantic 1.10.13 py310h2372a71_1 conda-forge 2MB +2024-03-07T00:54:24Z #11 152.5 + fonttools 4.49.0 py310h2372a71_0 conda-forge 2MB +2024-03-07T00:54:24Z #11 152.5 + pyarrow 15.0.0 py310hf9e7431_7_cpu conda-forge 4MB +2024-03-07T00:54:24Z #11 152.5 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB +2024-03-07T00:54:24Z #11 152.5 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB +2024-03-07T00:54:24Z #11 152.5 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB +2024-03-07T00:54:24Z #11 152.5 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB +2024-03-07T00:54:24Z #11 152.5 + gdal 3.8.4 py310he073c5f_0 conda-forge 1MB +2024-03-07T00:54:24Z #11 152.5 + numba 0.59.0 py310h7dc5dd1_1 conda-forge 4MB +2024-03-07T00:54:24Z #11 152.5 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB +2024-03-07T00:54:24Z #11 152.5 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB +2024-03-07T00:54:24Z #11 152.5 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB +2024-03-07T00:54:24Z #11 152.5 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB +2024-03-07T00:54:24Z #11 152.5 + fiona 1.9.5 py310h0a1e91f_3 conda-forge 958kB +2024-03-07T00:54:24Z #11 152.5 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB +2024-03-07T00:54:24Z #11 152.5 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB +2024-03-07T00:54:24Z #11 152.5 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-03-07T00:54:24Z #11 152.5 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-03-07T00:54:24Z #11 152.5 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB +2024-03-07T00:54:24Z #11 152.5 + dask-core 2024.2.1 pyhd8ed1ab_0 conda-forge 880kB +2024-03-07T00:54:24Z #11 152.5 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB +2024-03-07T00:54:24Z #11 152.5 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-03-07T00:54:24Z #11 152.5 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-03-07T00:54:24Z #11 152.5 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-03-07T00:54:24Z #11 152.5 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-03-07T00:54:24Z #11 152.5 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-03-07T00:54:24Z #11 152.5 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-03-07T00:54:24Z #11 152.5 + properscoring 0.1 py_0 conda-forge 22kB +2024-03-07T00:54:24Z #11 152.5 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB +2024-03-07T00:54:24Z #11 152.5 + xarray 2024.2.0 pyhd8ed1ab_0 conda-forge 742kB +2024-03-07T00:54:24Z #11 152.5 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-03-07T00:54:24Z #11 152.5 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-03-07T00:54:24Z #11 152.5 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-03-07T00:54:24Z #11 152.5 + bokeh 3.3.4 pyhd8ed1ab_0 conda-forge 5MB +2024-03-07T00:54:24Z #11 152.5 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB +2024-03-07T00:54:24Z #11 152.5 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-03-07T00:54:24Z #11 152.5 + distributed 2024.2.1 pyhd8ed1ab_0 conda-forge 794kB +2024-03-07T00:54:24Z #11 152.5 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-03-07T00:54:24Z #11 152.5 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-03-07T00:54:24Z #11 152.5 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-03-07T00:54:24Z #11 152.5 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-03-07T00:54:24Z #11 152.5 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-03-07T00:54:24Z #11 152.5 + dask 2024.2.1 pyhd8ed1ab_0 conda-forge 7kB +2024-03-07T00:54:24Z #11 152.5 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB +2024-03-07T00:54:24Z #11 152.5 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB +2024-03-07T00:54:24Z #11 152.5 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-03-07T00:54:24Z #11 152.5 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-03-07T00:54:24Z #11 152.5 + xskillscore 0.0.24 pyhd8ed1ab_0 conda-forge 59kB +2024-03-07T00:54:24Z #11 152.5 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB +2024-03-07T00:54:24Z #11 152.5 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB +2024-03-07T00:54:24Z #11 152.5 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-03-07T00:54:24Z #11 152.5 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB +2024-03-07T00:54:24Z #11 152.5 + rioxarray 0.15.1 pyhd8ed1ab_0 conda-forge 48kB +2024-03-07T00:54:24Z #11 152.5 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-03-07T00:54:24Z #11 152.5 + ravenpy 0.12.2 py310hff52083_0 conda-forge 6MB +2024-03-07T00:54:24Z #11 152.5 +2024-03-07T00:54:24Z #11 152.5 Summary: +2024-03-07T00:54:24Z #11 152.5 +2024-03-07T00:54:24Z #11 152.5 Install: 293 packages +2024-03-07T00:54:24Z #11 152.5 +2024-03-07T00:54:24Z #11 152.5 Total download: 451MB +2024-03-07T00:54:24Z #11 152.5 +2024-03-07T00:54:24Z #11 152.5 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-07T00:54:24Z #11 152.5 +2024-03-07T00:54:24Z #11 152.5 +2024-03-07T00:55:58Z #11 247.4 +2024-03-07T00:55:58Z #11 247.4 Looking for: ['xclim', 'ravenpy', 'python=3.10'] +2024-03-07T00:55:58Z #11 247.4 +2024-03-07T00:55:58Z #11 247.4 +2024-03-07T00:55:58Z #11 247.4 Downloading and Extracting Packages: ...working... done +2024-03-07T00:56:02Z #11 247.4 Preparing transaction: ...working... done +2024-03-07T00:56:16Z #11 251.2 Verifying transaction: ...working... done +2024-03-07T00:56:47Z #11 265.1 Executing transaction: ...working... +2024-03-07T00:56:47Z #11 295.9 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-03-07T00:56:47Z #11 295.9 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-03-07T00:56:47Z #11 295.9 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-03-07T00:56:47Z #11 295.9 mpiexec --mca opal_cuda_support 1 ... +2024-03-07T00:56:47Z #11 295.9 +2024-03-07T00:56:47Z #11 295.9 In addition, the UCX support is also built but disabled by default. +2024-03-07T00:56:47Z #11 295.9 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-03-07T00:56:47Z #11 295.9 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-03-07T00:56:47Z #11 295.9 Equivalently, you can set the MCA parameters in the command line: +2024-03-07T00:56:47Z #11 295.9 mpiexec --mca pml ucx --mca osc ucx ... +2024-03-07T00:56:47Z #11 295.9 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-03-07T00:56:47Z #11 295.9 Please consult UCX's documentation for detail. +2024-03-07T00:56:47Z #11 295.9 +2024-03-07T00:56:47Z #11 295.9 +2024-03-07T00:56:47Z #11 295.9 done +2024-03-07T00:56:47Z #11 296.1 +2024-03-07T00:56:47Z #11 296.1 To activate this environment, use +2024-03-07T00:56:47Z #11 296.1 +2024-03-07T00:56:47Z #11 296.1 $ mamba activate birdy +2024-03-07T00:56:47Z #11 296.1 +2024-03-07T00:56:47Z #11 296.1 To deactivate an active environment, use +2024-03-07T00:56:47Z #11 296.1 +2024-03-07T00:56:47Z #11 296.1 $ mamba deactivate +2024-03-07T00:56:47Z #11 296.1 +2024-03-07T00:56:50Z #11 299.5 Channels: +2024-03-07T00:56:50Z #11 299.5 - conda-forge +2024-03-07T00:56:50Z #11 299.5 - cdat +2024-03-07T00:56:50Z #11 299.5 - bokeh +2024-03-07T00:56:50Z #11 299.5 - plotly +2024-03-07T00:56:50Z #11 299.5 - pyviz/label/dev +2024-03-07T00:56:50Z #11 299.5 - defaults +2024-03-07T00:56:50Z #11 299.5 Platform: linux-64 +2024-03-07T00:57:27Z #11 299.5 Collecting package metadata (repodata.json): ...working... done +2024-03-07T00:58:29Z #11 336.1 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.1 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:23Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-07T01:00:57Z #11 545.9 done +2024-03-07T01:02:51Z #11 660.2 +2024-03-07T01:02:51Z #11 660.2 Downloading and Extracting Packages: ...working... done +2024-03-07T01:03:00Z #11 660.2 Preparing transaction: ...working... done +2024-03-07T01:03:32Z #11 669.6 Verifying transaction: ...working... done +2024-03-07T01:04:27Z #11 701.0 Executing transaction: ...working... +2024-03-07T01:04:27Z #11 756.1 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-03-07T01:04:27Z #11 756.1 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-03-07T01:04:27Z #11 756.1 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-03-07T01:04:27Z #11 756.1 mpiexec --mca opal_cuda_support 1 ... +2024-03-07T01:04:27Z #11 756.1 +2024-03-07T01:04:27Z #11 756.1 In addition, the UCX support is also built but disabled by default. +2024-03-07T01:04:27Z #11 756.1 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-03-07T01:04:27Z #11 756.1 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-03-07T01:04:27Z #11 756.1 Equivalently, you can set the MCA parameters in the command line: +2024-03-07T01:04:27Z #11 756.1 mpiexec --mca pml ucx --mca osc ucx ... +2024-03-07T01:04:27Z #11 756.1 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-03-07T01:04:27Z #11 756.1 Please consult UCX's documentation for detail. +2024-03-07T01:04:27Z #11 756.1 +2024-03-07T01:04:27Z #11 756.1 +2024-03-07T01:04:27Z #11 756.1 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-03-07T01:04:27Z #11 756.1 given by the platformdirs library. To remove this warning and +2024-03-07T01:04:27Z #11 756.1 see the appropriate new directories, set the environment variable +2024-03-07T01:04:27Z #11 756.1 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-03-07T01:04:27Z #11 756.1 The use of platformdirs will be the default in `jupyter_core` v6 +2024-03-07T01:04:27Z #11 756.1 from . import paths +2024-03-07T01:04:27Z #11 756.1 Enabling: jupyterlab_git +2024-03-07T01:04:27Z #11 756.1 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-07T01:04:27Z #11 756.1 - Validating... +2024-03-07T01:04:27Z #11 756.1 jupyterlab_git OK +2024-03-07T01:04:27Z #11 756.1 +2024-03-07T01:04:27Z #11 756.1 done +2024-03-07T01:05:12Z #11 763.3 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-03-07T01:05:12Z #11 801.3 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.ve_22l67.requirements.txt', '--exists-action=b'] +2024-03-07T01:05:12Z #11 801.3 Pip subprocess output: +2024-03-07T01:05:12Z #11 801.3 Collecting xncml (from -r /condaenv.ve_22l67.requirements.txt (line 1)) +2024-03-07T01:05:12Z #11 801.3 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting hsclient (from -r /condaenv.ve_22l67.requirements.txt (line 2)) +2024-03-07T01:05:12Z #11 801.3 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting fstd2nc (from -r /condaenv.ve_22l67.requirements.txt (line 3)) +2024-03-07T01:05:12Z #11 801.3 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 7.6 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Installing build dependencies: started +2024-03-07T01:05:12Z #11 801.3 Installing build dependencies: finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Getting requirements to build wheel: started +2024-03-07T01:05:12Z #11 801.3 Getting requirements to build wheel: finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Installing backend dependencies: started +2024-03-07T01:05:12Z #11 801.3 Installing backend dependencies: finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Preparing metadata (pyproject.toml): started +2024-03-07T01:05:12Z #11 801.3 Preparing metadata (pyproject.toml): finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Collecting figanos (from -r /condaenv.ve_22l67.requirements.txt (line 4)) +2024-03-07T01:05:12Z #11 801.3 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting pixiedust (from -r /condaenv.ve_22l67.requirements.txt (line 5)) +2024-03-07T01:05:12Z #11 801.3 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 24.1 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): started +2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Collecting ipython_blocking (from -r /condaenv.ve_22l67.requirements.txt (line 6)) +2024-03-07T01:05:12Z #11 801.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting jupyternotify (from -r /condaenv.ve_22l67.requirements.txt (line 7)) +2024-03-07T01:05:12Z #11 801.3 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): started +2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Collecting jupyterlab-logout (from -r /condaenv.ve_22l67.requirements.txt (line 8)) +2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.ve_22l67.requirements.txt (line 9)) +2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting pytest-tornasync (from -r /condaenv.ve_22l67.requirements.txt (line 10)) +2024-03-07T01:05:12Z #11 801.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting xmltodict (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) +2024-03-07T01:05:12Z #11 801.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting xsdata (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) +2024-03-07T01:05:12Z #11 801.3 Downloading xsdata-24.2.1-py3-none-any.whl.metadata (6.1 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (2023.8.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (1.6.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (1.6.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (2024.2.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (5.9.8) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (69.1.1) +2024-03-07T01:05:12Z #11 801.3 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) +2024-03-07T01:05:12Z #11 801.3 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2.31.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (1.3.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.ve_22l67.requirements.txt (line 3)) (1.24.4) +2024-03-07T01:05:12Z #11 801.3 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.ve_22l67.requirements.txt (line 3)) +2024-03-07T01:05:12Z #11 801.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-03-07T01:05:12Z #11 801.3 Collecting progress (from fstd2nc->-r /condaenv.ve_22l67.requirements.txt (line 3)) +2024-03-07T01:05:12Z #11 801.3 Downloading progress-1.6.tar.gz (7.8 kB) +2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): started +2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.22.0) +2024-03-07T01:05:12Z #11 801.3 Collecting cairosvg (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) +2024-03-07T01:05:12Z #11 801.3 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.14.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.8.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.1.4) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (4.2.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (6.0.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.13.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.22.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.47.0) +2024-03-07T01:05:12Z #11 801.3 Collecting geojson (from pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) +2024-03-07T01:05:12Z #11 801.3 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting astunparse (from pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) +2024-03-07T01:05:12Z #11 801.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) (3.5.2) +2024-03-07T01:05:12Z #11 801.3 Collecting colour (from pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) +2024-03-07T01:05:12Z #11 801.3 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (8.22.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (8.1.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.7.4) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (1.0.0) +2024-03-07T01:05:12Z #11 801.3 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) +2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab-4.1.3-py3-none-any.whl.metadata (15 kB) +2024-03-07T01:05:12Z #11 801.3 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-03-07T01:05:12Z #11 801.3 Collecting jupyterlab-logout (from -r /condaenv.ve_22l67.requirements.txt (line 8)) +2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.6.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (3.6.7) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (23.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (6.4) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (5.7.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.25.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.13.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.2.4) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.8.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.0.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (6.5.6) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (3.1.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.0.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.ve_22l67.requirements.txt (line 10)) (8.0.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.ve_22l67.requirements.txt (line 3)) (2024.1) +2024-03-07T01:05:12Z #11 801.3 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) +2024-03-07T01:05:12Z #11 801.3 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2.6.3) +2024-03-07T01:05:12Z #11 801.3 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) +2024-03-07T01:05:12Z #11 801.3 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (0.6.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2.16.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (4.10.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.ve_22l67.requirements.txt (line 10)) (2.0.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pluggy<2.0,>=1.3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.ve_22l67.requirements.txt (line 10)) (1.4.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.ve_22l67.requirements.txt (line 10)) (1.2.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (23.1.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.3.8) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.9.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (8.1.7) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.0.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.0.6) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.59.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.23) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.4.1.post1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.12.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.14.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (3.0.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (2024.2.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (1.4.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (0.12.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (7.0.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.9.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2024.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) (0.42.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) (1.16.0) +2024-03-07T01:05:12Z #11 801.3 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) +2024-03-07T01:05:12Z #11 801.3 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) +2024-03-07T01:05:12Z #11 801.3 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) +2024-03-07T01:05:12Z #11 801.3 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.7.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (9.4.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.2.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.0.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.3.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.5.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.2.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.12.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (4.49.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.4.5) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.1.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.9.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (5.1.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.19.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.1.6) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (3.0.42) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (2.17.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.6.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (5.14.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (4.9.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.2.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (4.0.10) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (3.0.10) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (5.5.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (6.6.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (7.16.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (6.29.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (7.4.9) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (5.9.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (3.3.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (3.6) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2.0.7) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2024.2.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (3.2.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.2.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.34.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2023.8.12) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (23.2.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.1.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.7.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (4.0.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (3.17.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.8.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.1.5) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.4) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (1.6.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (24.0.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (4.3.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (23.1.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.9.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.5.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (7.7.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.20.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.8.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.18.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.7.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.9.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.8.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.5.9) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.14.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.9.22) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (4.21.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (4.12.3) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (6.1.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (0.3.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (3.0.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (1.5.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (2.19.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.2.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.2.4) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (1.0.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.7.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.2.13) +2024-03-07T01:05:12Z #11 801.3 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) +2024-03-07T01:05:12Z #11 801.3 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.3.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.3.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.16.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.5.1) +2024-03-07T01:05:12Z #11 801.3 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) +2024-03-07T01:05:12Z #11 801.3 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (1.8.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.42.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (2.4.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (2.0.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (2.4.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.2.2) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.5.6) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.3.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.21) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2023.12.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.33.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.18.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.0.7) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.1.4) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.1.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (22.1.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.19.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (21.2.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (2.5) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.5.1) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (20.11.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.4) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.3.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.13) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.3.0) +2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.8.19.20240106) +2024-03-07T01:05:12Z #11 801.3 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 42.2 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 9.9 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 33.4 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 61.6 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 6.0 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading xsdata-24.2.1-py3-none-any.whl (219 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 219.6/219.6 kB 26.6 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 23.1 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 9.4 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-03-07T01:05:12Z #11 801.3 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 28.3 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.4 MB/s eta 0:00:00 +2024-03-07T01:05:12Z #11 801.3 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress +2024-03-07T01:05:12Z #11 801.3 Building wheel for fstd2nc (pyproject.toml): started +2024-03-07T01:05:12Z #11 801.3 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=6f912ba4da579a3f681252356974153a1cec307ccb4506c70bc610ee3ef6803d +2024-03-07T01:05:12Z #11 801.3 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a +2024-03-07T01:05:12Z #11 801.3 Building wheel for pixiedust (setup.py): started +2024-03-07T01:05:12Z #11 801.3 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=2ad6a784bc0de14611dbf9fcd467f6f65560aba1f82ac682a8b6fa1942704544 +2024-03-07T01:05:12Z #11 801.3 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 +2024-03-07T01:05:12Z #11 801.3 Building wheel for jupyternotify (setup.py): started +2024-03-07T01:05:12Z #11 801.3 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=d03aa544614c3a2b8d1a13aefefe90029e892f6200012ce66a19dfa30016da2f +2024-03-07T01:05:12Z #11 801.3 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 +2024-03-07T01:05:12Z #11 801.3 Building wheel for progress (setup.py): started +2024-03-07T01:05:12Z #11 801.3 Building wheel for progress (setup.py): finished with status 'done' +2024-03-07T01:05:12Z #11 801.3 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9612 sha256=d8426dc17effa605aa28571af88a3f1bc4abf78ff019c9a512ae26b231a2b927 +2024-03-07T01:05:12Z #11 801.3 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 +2024-03-07T01:05:12Z #11 801.3 Successfully built fstd2nc pixiedust jupyternotify progress +2024-03-07T01:05:12Z #11 801.3 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-03-07T01:05:12Z #11 801.3 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.2.1 +2024-03-07T01:05:12Z #11 801.3 +2024-03-07T01:05:12Z #11 801.3 done +2024-03-07T01:05:12Z #11 801.3 # +2024-03-07T01:05:12Z #11 801.3 # To activate this environment, use +2024-03-07T01:05:12Z #11 801.3 # +2024-03-07T01:05:12Z #11 801.3 # $ conda activate birdy +2024-03-07T01:05:12Z #11 801.3 # +2024-03-07T01:05:12Z #11 801.3 # To deactivate an active environment, use +2024-03-07T01:05:12Z #11 801.3 # +2024-03-07T01:05:12Z #11 801.3 # $ conda deactivate +2024-03-07T01:05:12Z #11 801.3 +2024-03-07T01:05:32Z #11 821.3 Will remove 785 (1.20 GB) tarball(s). +2024-03-07T01:05:32Z #11 821.3 Will remove 1 index cache(s). +2024-03-07T01:05:32Z #11 821.3 Will remove 144 (1.21 GB) package(s). +2024-03-07T01:05:32Z #11 821.3 There are no tempfile(s) to remove. +2024-03-07T01:05:32Z #11 821.3 There are no logfile(s) to remove. +2024-03-07T01:05:33Z #11 DONE 822.2s +2024-03-07T01:05:33Z +2024-03-07T01:05:33Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2024-03-07T01:05:34Z #12 1.237 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-03-07T01:05:34Z #12 DONE 1.4s +2024-03-07T01:05:34Z +2024-03-07T01:05:34Z #13 [ 8/10] RUN jupyter lab build +2024-03-07T01:05:36Z #13 1.944 [LabBuildApp] JupyterLab 3.6.7 +2024-03-07T01:05:36Z #13 1.946 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2024-03-07T01:05:37Z #13 2.589 [LabBuildApp] Building jupyterlab assets (production, minimized) +2024-03-07T01:05:37Z #13 2.608 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. +2024-03-07T01:05:37Z #13 2.608 +2024-03-07T01:07:55Z #13 2.614 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ +2024-03-07T01:07:55Z #13 DONE 140.7s +2024-03-07T01:07:55Z +2024-03-07T01:07:55Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-03-07T01:07:56Z #14 0.556 Enabling: voila +2024-03-07T01:07:56Z #14 0.556 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-07T01:07:56Z #14 0.559 - Validating... +2024-03-07T01:07:56Z #14 1.258 voila 0.5.5 OK +2024-03-07T01:07:57Z #14 1.640 Enabling: panel.io.jupyter_server_extension +2024-03-07T01:07:57Z #14 1.640 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-07T01:07:57Z #14 1.642 - Validating... +2024-03-07T01:07:59Z #14 3.393 panel.io.jupyter_server_extension OK +2024-03-07T01:07:59Z #14 3.888 - Validating... +2024-03-07T01:08:00Z #14 4.740 dask_labextension 6.2.0 OK +2024-03-07T01:08:00Z #14 4.740 - Validating... +2024-03-07T01:08:00Z #14 4.740 jupyter_server_proxy OK +2024-03-07T01:08:00Z #14 4.740 - Validating... +2024-03-07T01:08:00Z #14 4.913 jupyter_resource_usage 0.7.1 OK +2024-03-07T01:08:00Z #14 4.913 - Validating... +2024-03-07T01:08:00Z #14 4.972  X is jupyter_server_ydoc importable? +2024-03-07T01:08:00Z #14 4.972 - Validating... +2024-03-07T01:08:00Z #14 5.046 jupyterlab 3.6.7 OK +2024-03-07T01:08:00Z #14 5.046 - Validating... +2024-03-07T01:08:00Z #14 5.222 jupyterlab_jupytext OK +2024-03-07T01:08:00Z #14 5.222 - Validating... +2024-03-07T01:08:00Z #14 5.226 mamba_gator 5.2.1 OK +2024-03-07T01:08:00Z #14 5.226 - Validating... +2024-03-07T01:08:00Z #14 5.243 nbdime 4.0.1 OK +2024-03-07T01:08:00Z #14 5.244 - Validating... +2024-03-07T01:08:01Z #14 6.312 panel.io.jupyter_server_extension OK +2024-03-07T01:08:01Z #14 6.312 - Validating... +2024-03-07T01:08:01Z #14 6.381 nbresuse OK +2024-03-07T01:08:02Z #14 6.381 - Validating... +2024-03-07T01:08:02Z #14 6.637 voila.server_extension OK +2024-03-07T01:08:02Z #14 6.637 - Validating... +2024-03-07T01:08:02Z #14 6.639 jupyterlab_git OK +2024-03-07T01:08:02Z #14 6.639 - Validating... +2024-03-07T01:08:02Z #14 6.640 voila 0.5.5 OK +2024-03-07T01:08:02Z #14 6.640 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-03-07T01:08:02Z #14 6.640 dask_labextension  enabled  +2024-03-07T01:08:02Z #14 6.640 jupyter_server_proxy  enabled  +2024-03-07T01:08:02Z #14 6.640 jupyter_resource_usage  enabled  +2024-03-07T01:08:02Z #14 6.640 jupyter_server_ydoc  enabled  +2024-03-07T01:08:02Z #14 6.640 jupyterlab  enabled  +2024-03-07T01:08:02Z #14 6.640 jupyterlab_jupytext  enabled  +2024-03-07T01:08:02Z #14 6.640 mamba_gator  enabled  +2024-03-07T01:08:02Z #14 6.640 nbdime  enabled  +2024-03-07T01:08:02Z #14 6.640 panel.io.jupyter_server_extension  enabled  +2024-03-07T01:08:02Z #14 6.640 nbresuse  enabled  +2024-03-07T01:08:02Z #14 6.640 voila.server_extension  enabled  +2024-03-07T01:08:02Z #14 6.640 jupyterlab_git  enabled  +2024-03-07T01:08:02Z #14 6.640 voila  enabled  +2024-03-07T01:08:02Z #14 DONE 7.1s +2024-03-07T01:08:02Z +2024-03-07T01:08:02Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-03-07T01:08:03Z #15 0.450 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-03-07T01:08:03Z #15 0.476 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ... +2024-03-07T01:08:03Z #15 0.479 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-03-07T01:08:03Z #15 0.483 HTTP request sent, awaiting response... 200 OK +2024-03-07T01:08:03Z #15 0.593 Length: 9769 (9.5K) [text/plain] +2024-03-07T01:08:03Z #15 0.593 Saving to: ‘/usr/local/bin/start.sh’ +2024-03-07T01:08:03Z #15 0.594 +2024-03-07T01:08:03Z #15 0.594 0K ......... 100% 6.65M=0.001s +2024-03-07T01:08:03Z #15 0.595 +2024-03-07T01:08:03Z #15 0.595 2024-03-07 01:08:03 (6.65 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-03-07T01:08:03Z #15 0.595 +2024-03-07T01:08:03Z #15 0.599 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-03-07T01:08:03Z #15 0.623 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2024-03-07T01:08:03Z #15 0.624 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-03-07T01:08:03Z #15 0.629 HTTP request sent, awaiting response... 200 OK +2024-03-07T01:08:03Z #15 0.692 Length: 359 [text/plain] +2024-03-07T01:08:03Z #15 0.693 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-03-07T01:08:03Z #15 0.693 +2024-03-07T01:08:03Z #15 0.693 0K 100% 6.03M=0s +2024-03-07T01:08:03Z #15 0.694 +2024-03-07T01:08:03Z #15 0.694 2024-03-07 01:08:03 (6.03 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-03-07T01:08:03Z #15 0.694 +2024-03-07T01:08:03Z #15 0.698 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-03-07T01:08:03Z #15 0.723 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2024-03-07T01:08:03Z #15 0.724 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-03-07T01:08:03Z #15 0.737 HTTP request sent, awaiting response... 200 OK +2024-03-07T01:08:03Z #15 0.837 Length: 852 [text/plain] +2024-03-07T01:08:03Z #15 0.837 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-03-07T01:08:03Z #15 0.838 +2024-03-07T01:08:03Z #15 0.838 0K 100% 33.0M=0s +2024-03-07T01:08:03Z #15 0.839 +2024-03-07T01:08:03Z #15 0.839 2024-03-07 01:08:03 (33.0 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-03-07T01:08:03Z #15 0.839 +2024-03-07T01:08:03Z #15 0.843 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-03-07T01:08:03Z #15 0.868 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2024-03-07T01:08:03Z #15 0.869 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-03-07T01:08:03Z #15 0.876 HTTP request sent, awaiting response... 200 OK +2024-03-07T01:08:03Z #15 0.937 Length: 1034 (1.0K) [text/plain] +2024-03-07T01:08:03Z #15 0.937 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-03-07T01:08:03Z #15 0.937 +2024-03-07T01:08:03Z #15 0.937 0K . 100% 38.9M=0s +2024-03-07T01:08:03Z #15 0.938 +2024-03-07T01:08:03Z #15 0.938 2024-03-07 01:08:03 (38.9 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-03-07T01:08:03Z #15 0.938 +2024-03-07T01:08:03Z #15 0.943 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-03-07T01:08:03Z #15 0.967 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2024-03-07T01:08:03Z #15 0.969 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-03-07T01:08:03Z #15 0.974 HTTP request sent, awaiting response... 200 OK +2024-03-07T01:08:03Z #15 1.070 Length: 1836 (1.8K) [text/plain] +2024-03-07T01:08:03Z #15 1.070 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-03-07T01:08:03Z #15 1.070 +2024-03-07T01:08:03Z #15 1.070 0K . 100% 6.63M=0s +2024-03-07T01:08:03Z #15 1.071 +2024-03-07T01:08:03Z #15 1.071 2024-03-07 01:08:03 (6.63 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-03-07T01:08:03Z #15 1.071 +2024-03-07T01:08:03Z #15 1.255 --2024-03-07 01:08:03-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-03-07T01:08:03Z #15 1.278 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.63, 3.162.103.84, 3.162.103.35, ... +2024-03-07T01:08:03Z #15 1.283 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.63|:443... connected. +2024-03-07T01:08:04Z #15 1.289 HTTP request sent, awaiting response... 200 OK +2024-03-07T01:08:04Z #15 1.496 Length: 129825343 (124M) [application/x-tar] +2024-03-07T01:08:04Z #15 1.496 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-03-07T01:08:04Z #15 1.496 +2024-03-07T01:08:04Z #15 1.496 0K .......... .......... .......... .......... .......... 0% 29.5M 4s +2024-03-07T01:08:04Z #15 1.498 50K .......... .......... .......... .......... .......... 0% 13.6M 7s +2024-03-07T01:08:04Z #15 1.502 100K .......... .......... .......... .......... .......... 0% 17.0M 7s +2024-03-07T01:08:04Z #15 1.504 150K .......... .......... .......... .......... .......... 0% 24.8M 6s +2024-03-07T01:08:04Z #15 1.506 200K .......... .......... .......... .......... .......... 0% 22.7M 6s +2024-03-07T01:08:04Z #15 1.508 250K .......... .......... .......... .......... .......... 0% 81.8M 5s +2024-03-07T01:08:04Z #15 1.511 300K .......... .......... .......... .......... .......... 0% 45.8M 5s +2024-03-07T01:08:04Z #15 1.511 350K .......... .......... .......... .......... .......... 0% 56.3M 5s +2024-03-07T01:08:04Z #15 1.511 400K .......... .......... .......... .......... .......... 0% 57.5M 4s +2024-03-07T01:08:04Z #15 1.514 450K .......... .......... .......... .......... .......... 0% 166M 4s +2024-03-07T01:08:04Z #15 1.514 500K .......... .......... .......... .......... .......... 0% 173M 4s +2024-03-07T01:08:04Z #15 1.514 550K .......... .......... .......... .......... .......... 0% 151M 3s +2024-03-07T01:08:04Z #15 1.514 600K .......... .......... .......... .......... .......... 0% 77.9M 3s +2024-03-07T01:08:04Z #15 1.514 650K .......... .......... .......... .......... .......... 0% 28.8M 3s +2024-03-07T01:08:04Z #15 1.515 700K .......... .......... .......... .......... .......... 0% 34.2M 3s +2024-03-07T01:08:04Z #15 1.516 750K .......... .......... .......... .......... .......... 0% 48.0M 3s +2024-03-07T01:08:04Z #15 1.518 800K .......... .......... .......... .......... .......... 0% 29.2M 3s +2024-03-07T01:08:04Z #15 1.520 850K .......... .......... .......... .......... .......... 0% 29.1M 3s +2024-03-07T01:08:04Z #15 1.521 900K .......... .......... .......... .......... .......... 0% 18.4M 4s +2024-03-07T01:08:04Z #15 1.524 950K .......... .......... .......... .......... .......... 0% 46.3M 4s +2024-03-07T01:08:04Z #15 1.527 1000K .......... .......... .......... .......... .......... 0% 172M 3s +2024-03-07T01:08:04Z #15 1.527 1050K .......... .......... .......... .......... .......... 0% 233M 3s +2024-03-07T01:08:04Z #15 1.527 1100K .......... .......... .......... .......... .......... 0% 183M 3s +2024-03-07T01:08:04Z #15 1.527 1150K .......... .......... .......... .......... .......... 0% 151M 3s +2024-03-07T01:08:04Z #15 1.527 1200K .......... .......... .......... .......... .......... 0% 253M 3s +2024-03-07T01:08:04Z #15 1.527 1250K .......... .......... .......... .......... .......... 1% 222M 3s +2024-03-07T01:08:04Z #15 1.527 1300K .......... .......... .......... .......... .......... 1% 152M 3s +2024-03-07T01:08:04Z #15 1.527 1350K .......... .......... .......... .......... .......... 1% 218M 3s +2024-03-07T01:08:04Z #15 1.527 1400K .......... .......... .......... .......... .......... 1% 159M 3s +2024-03-07T01:08:04Z #15 1.527 1450K .......... .......... .......... .......... .......... 1% 188M 3s +2024-03-07T01:08:04Z #15 1.527 1500K .......... .......... .......... .......... .......... 1% 69.7M 3s +2024-03-07T01:08:04Z #15 1.528 1550K .......... .......... .......... .......... .......... 1% 16.6M 3s +2024-03-07T01:08:04Z #15 1.535 1600K .......... .......... .......... .......... .......... 1% 132M 3s +2024-03-07T01:08:04Z #15 1.535 1650K .......... .......... .......... .......... .......... 1% 99.9M 3s +2024-03-07T01:08:04Z #15 1.535 1700K .......... .......... .......... .......... .......... 1% 121M 3s +2024-03-07T01:08:04Z #15 1.535 1750K .......... .......... .......... .......... .......... 1% 132M 3s +2024-03-07T01:08:04Z #15 1.535 1800K .......... .......... .......... .......... .......... 1% 121M 2s +2024-03-07T01:08:04Z #15 1.535 1850K .......... .......... .......... .......... .......... 1% 124M 2s +2024-03-07T01:08:04Z #15 1.535 1900K .......... .......... .......... .......... .......... 1% 130M 2s +2024-03-07T01:08:04Z #15 1.535 1950K .......... .......... .......... .......... .......... 1% 144M 2s +2024-03-07T01:08:04Z #15 1.535 2000K .......... .......... .......... .......... .......... 1% 120M 2s +2024-03-07T01:08:04Z #15 1.535 2050K .......... .......... .......... .......... .......... 1% 117M 2s +2024-03-07T01:08:04Z #15 1.535 2100K .......... .......... .......... .......... .......... 1% 121M 2s +2024-03-07T01:08:04Z #15 1.535 2150K .......... .......... .......... .......... .......... 1% 21.0M 2s +2024-03-07T01:08:04Z #15 1.543 2200K .......... .......... .......... .......... .......... 1% 109M 2s +2024-03-07T01:08:04Z #15 1.543 2250K .......... .......... .......... .......... .......... 1% 109M 2s +2024-03-07T01:08:04Z #15 1.543 2300K .......... .......... .......... .......... .......... 1% 120M 2s +2024-03-07T01:08:04Z #15 1.543 2350K .......... .......... .......... .......... .......... 1% 128M 2s +2024-03-07T01:08:04Z #15 1.543 2400K .......... .......... .......... .......... .......... 1% 107M 2s +2024-03-07T01:08:04Z #15 1.543 2450K .......... .......... .......... .......... .......... 1% 131M 2s +2024-03-07T01:08:04Z #15 1.543 2500K .......... .......... .......... .......... .......... 2% 106M 2s +2024-03-07T01:08:04Z #15 1.543 2550K .......... .......... .......... .......... .......... 2% 139M 2s +2024-03-07T01:08:04Z #15 1.543 2600K .......... .......... .......... .......... .......... 2% 134M 2s +2024-03-07T01:08:04Z #15 1.543 2650K .......... .......... .......... .......... .......... 2% 114M 2s +2024-03-07T01:08:04Z #15 1.543 2700K .......... .......... .......... .......... .......... 2% 112M 2s +2024-03-07T01:08:04Z #15 1.543 2750K .......... .......... .......... .......... .......... 2% 122M 2s +2024-03-07T01:08:04Z #15 1.543 2800K .......... .......... .......... .......... .......... 2% 111M 2s +2024-03-07T01:08:04Z #15 1.543 2850K .......... .......... .......... .......... .......... 2% 134M 2s +2024-03-07T01:08:04Z #15 1.543 2900K .......... .......... .......... .......... .......... 2% 26.1M 2s +2024-03-07T01:08:04Z #15 1.547 2950K .......... .......... .......... .......... .......... 2% 134M 2s +2024-03-07T01:08:04Z #15 1.547 3000K .......... .......... .......... .......... .......... 2% 118M 2s +2024-03-07T01:08:04Z #15 1.547 3050K .......... .......... .......... .......... .......... 2% 102M 2s +2024-03-07T01:08:04Z #15 1.547 3100K .......... .......... .......... .......... .......... 2% 117M 2s +2024-03-07T01:08:04Z #15 1.547 3150K .......... .......... .......... .......... .......... 2% 125M 2s +2024-03-07T01:08:04Z #15 1.547 3200K .......... .......... .......... .......... .......... 2% 65.3M 2s +2024-03-07T01:08:04Z #15 1.548 3250K .......... .......... .......... .......... .......... 2% 38.0M 2s +2024-03-07T01:08:04Z #15 1.549 3300K .......... .......... .......... .......... .......... 2% 23.6M 2s +2024-03-07T01:08:04Z #15 1.555 3350K .......... .......... .......... .......... .......... 2% 115M 2s +2024-03-07T01:08:04Z #15 1.555 3400K .......... .......... .......... .......... .......... 2% 119M 2s +2024-03-07T01:08:04Z #15 1.555 3450K .......... .......... .......... .......... .......... 2% 129M 2s +2024-03-07T01:08:04Z #15 1.555 3500K .......... .......... .......... .......... .......... 2% 147M 2s +2024-03-07T01:08:04Z #15 1.555 3550K .......... .......... .......... .......... .......... 2% 110M 2s +2024-03-07T01:08:04Z #15 1.555 3600K .......... .......... .......... .......... .......... 2% 134M 2s +2024-03-07T01:08:04Z #15 1.555 3650K .......... .......... .......... .......... .......... 2% 135M 2s +2024-03-07T01:08:04Z #15 1.555 3700K .......... .......... .......... .......... .......... 2% 158M 2s +2024-03-07T01:08:04Z #15 1.555 3750K .......... .......... .......... .......... .......... 2% 116M 2s +2024-03-07T01:08:04Z #15 1.555 3800K .......... .......... .......... .......... .......... 3% 118M 2s +2024-03-07T01:08:04Z #15 1.555 3850K .......... .......... .......... .......... .......... 3% 79.3M 2s +2024-03-07T01:08:04Z #15 1.556 3900K .......... .......... .......... .......... .......... 3% 50.0M 2s +2024-03-07T01:08:04Z #15 1.557 3950K .......... .......... .......... .......... .......... 3% 43.4M 2s +2024-03-07T01:08:04Z #15 1.558 4000K .......... .......... .......... .......... .......... 3% 44.2M 2s +2024-03-07T01:08:04Z #15 1.559 4050K .......... .......... .......... .......... .......... 3% 49.6M 2s +2024-03-07T01:08:04Z #15 1.561 4100K .......... .......... .......... .......... .......... 3% 47.0M 2s +2024-03-07T01:08:04Z #15 1.561 4150K .......... .......... .......... .......... .......... 3% 45.7M 2s +2024-03-07T01:08:04Z #15 1.562 4200K .......... .......... .......... .......... .......... 3% 53.0M 2s +2024-03-07T01:08:04Z #15 1.563 4250K .......... .......... .......... .......... .......... 3% 49.5M 2s +2024-03-07T01:08:04Z #15 1.564 4300K .......... .......... .......... .......... .......... 3% 35.6M 2s +2024-03-07T01:08:04Z #15 1.565 4350K .......... .......... .......... .......... .......... 3% 50.8M 2s +2024-03-07T01:08:04Z #15 1.566 4400K .......... .......... .......... .......... .......... 3% 58.9M 2s +2024-03-07T01:08:04Z #15 1.571 4450K .......... .......... .......... .......... .......... 3% 115M 2s +2024-03-07T01:08:04Z #15 1.571 4500K .......... .......... .......... .......... .......... 3% 172M 2s +2024-03-07T01:08:04Z #15 1.571 4550K .......... .......... .......... .......... .......... 3% 106M 2s +2024-03-07T01:08:04Z #15 1.571 4600K .......... .......... .......... .......... .......... 3% 142M 2s +2024-03-07T01:08:04Z #15 1.571 4650K .......... .......... .......... .......... .......... 3% 131M 2s +2024-03-07T01:08:04Z #15 1.571 4700K .......... .......... .......... .......... .......... 3% 127M 2s +2024-03-07T01:08:04Z #15 1.571 4750K .......... .......... .......... .......... .......... 3% 104M 2s +2024-03-07T01:08:04Z #15 1.571 4800K .......... .......... .......... .......... .......... 3% 133M 2s +2024-03-07T01:08:04Z #15 1.571 4850K .......... .......... .......... .......... .......... 3% 129M 2s +2024-03-07T01:08:04Z #15 1.571 4900K .......... .......... .......... .......... .......... 3% 135M 2s +2024-03-07T01:08:04Z #15 1.571 4950K .......... .......... .......... .......... .......... 3% 102M 2s +2024-03-07T01:08:04Z #15 1.575 5000K .......... .......... .......... .......... .......... 3% 159M 2s +2024-03-07T01:08:04Z #15 1.575 5050K .......... .......... .......... .......... .......... 4% 165M 2s +2024-03-07T01:08:04Z #15 1.575 5100K .......... .......... .......... .......... .......... 4% 146M 2s +2024-03-07T01:08:04Z #15 1.575 5150K .......... .......... .......... .......... .......... 4% 110M 2s +2024-03-07T01:08:04Z #15 1.575 5200K .......... .......... .......... .......... .......... 4% 134M 2s +2024-03-07T01:08:04Z #15 1.575 5250K .......... .......... .......... .......... .......... 4% 142M 2s +2024-03-07T01:08:04Z #15 1.575 5300K .......... .......... .......... .......... .......... 4% 129M 2s +2024-03-07T01:08:04Z #15 1.575 5350K .......... .......... .......... .......... .......... 4% 121M 2s +2024-03-07T01:08:04Z #15 1.575 5400K .......... .......... .......... .......... .......... 4% 118M 2s +2024-03-07T01:08:04Z #15 1.575 5450K .......... .......... .......... .......... .......... 4% 103M 2s +2024-03-07T01:08:04Z #15 1.575 5500K .......... .......... .......... .......... .......... 4% 105M 2s +2024-03-07T01:08:04Z #15 1.579 5550K .......... .......... .......... .......... .......... 4% 160M 2s +2024-03-07T01:08:04Z #15 1.579 5600K .......... .......... .......... .......... .......... 4% 151M 2s +2024-03-07T01:08:04Z #15 1.579 5650K .......... .......... .......... .......... .......... 4% 119M 2s +2024-03-07T01:08:04Z #15 1.579 5700K .......... .......... .......... .......... .......... 4% 112M 2s +2024-03-07T01:08:04Z #15 1.579 5750K .......... .......... .......... .......... .......... 4% 137M 2s +2024-03-07T01:08:04Z #15 1.579 5800K .......... .......... .......... .......... .......... 4% 132M 2s +2024-03-07T01:08:04Z #15 1.579 5850K .......... .......... .......... .......... .......... 4% 118M 2s +2024-03-07T01:08:04Z #15 1.579 5900K .......... .......... .......... .......... .......... 4% 131M 2s +2024-03-07T01:08:04Z #15 1.579 5950K .......... .......... .......... .......... .......... 4% 123M 2s +2024-03-07T01:08:04Z #15 1.579 6000K .......... .......... .......... .......... .......... 4% 77.2M 2s +2024-03-07T01:08:04Z #15 1.583 6050K .......... .......... .......... .......... .......... 4% 128M 2s +2024-03-07T01:08:04Z #15 1.583 6100K .......... .......... .......... .......... .......... 4% 142M 2s +2024-03-07T01:08:04Z #15 1.583 6150K .......... .......... .......... .......... .......... 4% 156M 2s +2024-03-07T01:08:04Z #15 1.583 6200K .......... .......... .......... .......... .......... 4% 172M 2s +2024-03-07T01:08:04Z #15 1.583 6250K .......... .......... .......... .......... .......... 4% 104M 2s +2024-03-07T01:08:04Z #15 1.583 6300K .......... .......... .......... .......... .......... 5% 139M 2s +2024-03-07T01:08:04Z #15 1.583 6350K .......... .......... .......... .......... .......... 5% 125M 2s +2024-03-07T01:08:04Z #15 1.583 6400K .......... .......... .......... .......... .......... 5% 118M 2s +2024-03-07T01:08:04Z #15 1.583 6450K .......... .......... .......... .......... .......... 5% 124M 2s +2024-03-07T01:08:04Z #15 1.583 6500K .......... .......... .......... .......... .......... 5% 124M 2s +2024-03-07T01:08:04Z #15 1.583 6550K .......... .......... .......... .......... .......... 5% 74.1M 2s +2024-03-07T01:08:04Z #15 1.587 6600K .......... .......... .......... .......... .......... 5% 121M 2s +2024-03-07T01:08:04Z #15 1.587 6650K .......... .......... .......... .......... .......... 5% 154M 2s +2024-03-07T01:08:04Z #15 1.587 6700K .......... .......... .......... .......... .......... 5% 130M 2s +2024-03-07T01:08:04Z #15 1.587 6750K .......... .......... .......... .......... .......... 5% 121M 2s +2024-03-07T01:08:04Z #15 1.587 6800K .......... .......... .......... .......... .......... 5% 131M 2s +2024-03-07T01:08:04Z #15 1.587 6850K .......... .......... .......... .......... .......... 5% 117M 2s +2024-03-07T01:08:04Z #15 1.587 6900K .......... .......... .......... .......... .......... 5% 134M 2s +2024-03-07T01:08:04Z #15 1.587 6950K .......... .......... .......... .......... .......... 5% 110M 2s +2024-03-07T01:08:04Z #15 1.587 7000K .......... .......... .......... .......... .......... 5% 58.1M 2s +2024-03-07T01:08:04Z #15 1.591 7050K .......... .......... .......... .......... .......... 5% 138M 2s +2024-03-07T01:08:04Z #15 1.591 7100K .......... .......... .......... .......... .......... 5% 132M 2s +2024-03-07T01:08:04Z #15 1.591 7150K .......... .......... .......... .......... .......... 5% 126M 2s +2024-03-07T01:08:04Z #15 1.591 7200K .......... .......... .......... .......... .......... 5% 111M 2s +2024-03-07T01:08:04Z #15 1.591 7250K .......... .......... .......... .......... .......... 5% 147M 2s +2024-03-07T01:08:04Z #15 1.591 7300K .......... .......... .......... .......... .......... 5% 126M 2s +2024-03-07T01:08:04Z #15 1.591 7350K .......... .......... .......... .......... .......... 5% 111M 2s +2024-03-07T01:08:04Z #15 1.591 7400K .......... .......... .......... .......... .......... 5% 145M 2s +2024-03-07T01:08:04Z #15 1.591 7450K .......... .......... .......... .......... .......... 5% 101M 2s +2024-03-07T01:08:04Z #15 1.592 7500K .......... .......... .......... .......... .......... 5% 58.3M 2s +2024-03-07T01:08:04Z #15 1.595 7550K .......... .......... .......... .......... .......... 5% 166M 2s +2024-03-07T01:08:04Z #15 1.595 7600K .......... .......... .......... .......... .......... 6% 147M 2s +2024-03-07T01:08:04Z #15 1.595 7650K .......... .......... .......... .......... .......... 6% 134M 2s +2024-03-07T01:08:04Z #15 1.595 7700K .......... .......... .......... .......... .......... 6% 120M 1s +2024-03-07T01:08:04Z #15 1.595 7750K .......... .......... .......... .......... .......... 6% 117M 1s +2024-03-07T01:08:04Z #15 1.595 7800K .......... .......... .......... .......... .......... 6% 111M 1s +2024-03-07T01:08:04Z #15 1.595 7850K .......... .......... .......... .......... .......... 6% 131M 1s +2024-03-07T01:08:04Z #15 1.595 7900K .......... .......... .......... .......... .......... 6% 85.3M 1s +2024-03-07T01:08:04Z #15 1.598 7950K .......... .......... .......... .......... .......... 6% 48.6M 1s +2024-03-07T01:08:04Z #15 1.598 8000K .......... .......... .......... .......... .......... 6% 53.6M 1s +2024-03-07T01:08:04Z #15 1.604 8050K .......... .......... .......... .......... .......... 6% 106M 1s +2024-03-07T01:08:04Z #15 1.604 8100K .......... .......... .......... .......... .......... 6% 146M 1s +2024-03-07T01:08:04Z #15 1.604 8150K .......... .......... .......... .......... .......... 6% 158M 1s +2024-03-07T01:08:04Z #15 1.604 8200K .......... .......... .......... .......... .......... 6% 160M 1s +2024-03-07T01:08:04Z #15 1.604 8250K .......... .......... .......... .......... .......... 6% 121M 1s +2024-03-07T01:08:04Z #15 1.604 8300K .......... .......... .......... .......... .......... 6% 10.8M 2s +2024-03-07T01:08:04Z #15 1.604 8350K .......... .......... .......... .......... .......... 6% 133M 2s +2024-03-07T01:08:04Z #15 1.607 8400K .......... .......... .......... .......... .......... 6% 142M 2s +2024-03-07T01:08:04Z #15 1.607 8450K .......... .......... .......... .......... .......... 6% 129M 2s +2024-03-07T01:08:04Z #15 1.607 8500K .......... .......... .......... .......... .......... 6% 107M 2s +2024-03-07T01:08:04Z #15 1.607 8550K .......... .......... .......... .......... .......... 6% 135M 2s +2024-03-07T01:08:04Z #15 1.607 8600K .......... .......... .......... .......... .......... 6% 121M 2s +2024-03-07T01:08:04Z #15 1.607 8650K .......... .......... .......... .......... .......... 6% 112M 1s +2024-03-07T01:08:04Z #15 1.607 8700K .......... .......... .......... .......... .......... 6% 157M 1s +2024-03-07T01:08:04Z #15 1.607 8750K .......... .......... .......... .......... .......... 6% 119M 1s +2024-03-07T01:08:04Z #15 1.607 8800K .......... .......... .......... .......... .......... 6% 19.5M 2s +2024-03-07T01:08:04Z #15 1.611 8850K .......... .......... .......... .......... .......... 7% 119M 2s +2024-03-07T01:08:04Z #15 1.611 8900K .......... .......... .......... .......... .......... 7% 41.6M 2s +2024-03-07T01:08:04Z #15 1.611 8950K .......... .......... .......... .......... .......... 7% 117M 2s +2024-03-07T01:08:04Z #15 1.615 9000K .......... .......... .......... .......... .......... 7% 114M 2s +2024-03-07T01:08:04Z #15 1.615 9050K .......... .......... .......... .......... .......... 7% 100M 2s +2024-03-07T01:08:04Z #15 1.615 9100K .......... .......... .......... .......... .......... 7% 119M 2s +2024-03-07T01:08:04Z #15 1.615 9150K .......... .......... .......... .......... .......... 7% 112M 2s +2024-03-07T01:08:04Z #15 1.615 9200K .......... .......... .......... .......... .......... 7% 112M 1s +2024-03-07T01:08:04Z #15 1.615 9250K .......... .......... .......... .......... .......... 7% 100M 1s +2024-03-07T01:08:04Z #15 1.615 9300K .......... .......... .......... .......... .......... 7% 129M 1s +2024-03-07T01:08:04Z #15 1.615 9350K .......... .......... .......... .......... .......... 7% 114M 1s +2024-03-07T01:08:04Z #15 1.615 9400K .......... .......... .......... .......... .......... 7% 14.5M 2s +2024-03-07T01:08:04Z #15 1.619 9450K .......... .......... .......... .......... .......... 7% 113M 2s +2024-03-07T01:08:04Z #15 1.619 9500K .......... .......... .......... .......... .......... 7% 33.2M 2s +2024-03-07T01:08:04Z #15 1.621 9550K .......... .......... .......... .......... .......... 7% 113M 2s +2024-03-07T01:08:04Z #15 1.623 9600K .......... .......... .......... .......... .......... 7% 125M 2s +2024-03-07T01:08:04Z #15 1.623 9650K .......... .......... .......... .......... .......... 7% 105M 2s +2024-03-07T01:08:04Z #15 1.623 9700K .......... .......... .......... .......... .......... 7% 120M 2s +2024-03-07T01:08:04Z #15 1.623 9750K .......... .......... .......... .......... .......... 7% 106M 2s +2024-03-07T01:08:04Z #15 1.623 9800K .......... .......... .......... .......... .......... 7% 112M 2s +2024-03-07T01:08:04Z #15 1.623 9850K .......... .......... .......... .......... .......... 7% 17.3M 2s +2024-03-07T01:08:04Z #15 1.627 9900K .......... .......... .......... .......... .......... 7% 121M 2s +2024-03-07T01:08:04Z #15 1.627 9950K .......... .......... .......... .......... .......... 7% 119M 2s +2024-03-07T01:08:04Z #15 1.627 10000K .......... .......... .......... .......... .......... 7% 129M 2s +2024-03-07T01:08:04Z #15 1.627 10050K .......... .......... .......... .......... .......... 7% 20.5M 2s +2024-03-07T01:08:04Z #15 1.630 10100K .......... .......... .......... .......... .......... 8% 39.7M 2s +2024-03-07T01:08:04Z #15 1.631 10150K .......... .......... .......... .......... .......... 8% 99.3M 2s +2024-03-07T01:08:04Z #15 1.635 10200K .......... .......... .......... .......... .......... 8% 131M 2s +2024-03-07T01:08:04Z #15 1.635 10250K .......... .......... .......... .......... .......... 8% 101M 2s +2024-03-07T01:08:04Z #15 1.635 10300K .......... .......... .......... .......... .......... 8% 126M 2s +2024-03-07T01:08:04Z #15 1.635 10350K .......... .......... .......... .......... .......... 8% 124M 2s +2024-03-07T01:08:04Z #15 1.635 10400K .......... .......... .......... .......... .......... 8% 110M 2s +2024-03-07T01:08:04Z #15 1.635 10450K .......... .......... .......... .......... .......... 8% 99.8M 2s +2024-03-07T01:08:04Z #15 1.635 10500K .......... .......... .......... .......... .......... 8% 108M 2s +2024-03-07T01:08:04Z #15 1.635 10550K .......... .......... .......... .......... .......... 8% 112M 2s +2024-03-07T01:08:04Z #15 1.635 10600K .......... .......... .......... .......... .......... 8% 113M 2s +2024-03-07T01:08:04Z #15 1.635 10650K .......... .......... .......... .......... .......... 8% 12.5M 2s +2024-03-07T01:08:04Z #15 1.639 10700K .......... .......... .......... .......... .......... 8% 39.4M 2s +2024-03-07T01:08:04Z #15 1.641 10750K .......... .......... .......... .......... .......... 8% 56.3M 2s +2024-03-07T01:08:04Z #15 1.643 10800K .......... .......... .......... .......... .......... 8% 124M 2s +2024-03-07T01:08:04Z #15 1.643 10850K .......... .......... .......... .......... .......... 8% 104M 2s +2024-03-07T01:08:04Z #15 1.643 10900K .......... .......... .......... .......... .......... 8% 121M 2s +2024-03-07T01:08:04Z #15 1.643 10950K .......... .......... .......... .......... .......... 8% 132M 2s +2024-03-07T01:08:04Z #15 1.643 11000K .......... .......... .......... .......... .......... 8% 129M 2s +2024-03-07T01:08:04Z #15 1.643 11050K .......... .......... .......... .......... .......... 8% 25.1M 2s +2024-03-07T01:08:04Z #15 1.645 11100K .......... .......... .......... .......... .......... 8% 54.2M 2s +2024-03-07T01:08:04Z #15 1.647 11150K .......... .......... .......... .......... .......... 8% 148M 2s +2024-03-07T01:08:04Z #15 1.647 11200K .......... .......... .......... .......... .......... 8% 134M 2s +2024-03-07T01:08:04Z #15 1.647 11250K .......... .......... .......... .......... .......... 8% 99.6M 2s +2024-03-07T01:08:04Z #15 1.647 11300K .......... .......... .......... .......... .......... 8% 30.1M 2s +2024-03-07T01:08:04Z #15 1.651 11350K .......... .......... .......... .......... .......... 8% 130M 2s +2024-03-07T01:08:04Z #15 1.651 11400K .......... .......... .......... .......... .......... 9% 134M 2s +2024-03-07T01:08:04Z #15 1.651 11450K .......... .......... .......... .......... .......... 9% 100M 2s +2024-03-07T01:08:04Z #15 1.651 11500K .......... .......... .......... .......... .......... 9% 117M 2s +2024-03-07T01:08:04Z #15 1.651 11550K .......... .......... .......... .......... .......... 9% 113M 2s +2024-03-07T01:08:04Z #15 1.651 11600K .......... .......... .......... .......... .......... 9% 135M 2s +2024-03-07T01:08:04Z #15 1.651 11650K .......... .......... .......... .......... .......... 9% 18.8M 2s +2024-03-07T01:08:04Z #15 1.654 11700K .......... .......... .......... .......... .......... 9% 39.2M 2s +2024-03-07T01:08:04Z #15 1.655 11750K .......... .......... .......... .......... .......... 9% 105M 2s +2024-03-07T01:08:04Z #15 1.659 11800K .......... .......... .......... .......... .......... 9% 120M 2s +2024-03-07T01:08:04Z #15 1.659 11850K .......... .......... .......... .......... .......... 9% 104M 2s +2024-03-07T01:08:04Z #15 1.659 11900K .......... .......... .......... .......... .......... 9% 113M 2s +2024-03-07T01:08:04Z #15 1.659 11950K .......... .......... .......... .......... .......... 9% 111M 2s +2024-03-07T01:08:04Z #15 1.659 12000K .......... .......... .......... .......... .......... 9% 111M 2s +2024-03-07T01:08:04Z #15 1.659 12050K .......... .......... .......... .......... .......... 9% 107M 2s +2024-03-07T01:08:04Z #15 1.659 12100K .......... .......... .......... .......... .......... 9% 128M 2s +2024-03-07T01:08:04Z #15 1.659 12150K .......... .......... .......... .......... .......... 9% 125M 2s +2024-03-07T01:08:04Z #15 1.659 12200K .......... .......... .......... .......... .......... 9% 16.3M 2s +2024-03-07T01:08:04Z #15 1.662 12250K .......... .......... .......... .......... .......... 9% 74.1M 2s +2024-03-07T01:08:04Z #15 1.668 12300K .......... .......... .......... .......... .......... 9% 104M 2s +2024-03-07T01:08:04Z #15 1.668 12350K .......... .......... .......... .......... .......... 9% 108M 2s +2024-03-07T01:08:04Z #15 1.668 12400K .......... .......... .......... .......... .......... 9% 111M 2s +2024-03-07T01:08:04Z #15 1.668 12450K .......... .......... .......... .......... .......... 9% 124M 2s +2024-03-07T01:08:04Z #15 1.668 12500K .......... .......... .......... .......... .......... 9% 115M 2s +2024-03-07T01:08:04Z #15 1.668 12550K .......... .......... .......... .......... .......... 9% 123M 2s +2024-03-07T01:08:04Z #15 1.668 12600K .......... .......... .......... .......... .......... 9% 116M 2s +2024-03-07T01:08:04Z #15 1.668 12650K .......... .......... .......... .......... .......... 10% 94.5M 2s +2024-03-07T01:08:04Z #15 1.668 12700K .......... .......... .......... .......... .......... 10% 121M 2s +2024-03-07T01:08:04Z #15 1.668 12750K .......... .......... .......... .......... .......... 10% 101M 2s +2024-03-07T01:08:04Z #15 1.668 12800K .......... .......... .......... .......... .......... 10% 14.8M 2s +2024-03-07T01:08:04Z #15 1.670 12850K .......... .......... .......... .......... .......... 10% 53.2M 2s +2024-03-07T01:08:04Z #15 1.672 12900K .......... .......... .......... .......... .......... 10% 34.9M 2s +2024-03-07T01:08:04Z #15 1.673 12950K .......... .......... .......... .......... .......... 10% 111M 2s +2024-03-07T01:08:04Z #15 1.675 13000K .......... .......... .......... .......... .......... 10% 155M 2s +2024-03-07T01:08:04Z #15 1.675 13050K .......... .......... .......... .......... .......... 10% 130M 2s +2024-03-07T01:08:04Z #15 1.675 13100K .......... .......... .......... .......... .......... 10% 117M 2s +2024-03-07T01:08:04Z #15 1.675 13150K .......... .......... .......... .......... .......... 10% 117M 2s +2024-03-07T01:08:04Z #15 1.675 13200K .......... .......... .......... .......... .......... 10% 113M 2s +2024-03-07T01:08:04Z #15 1.675 13250K .......... .......... .......... .......... .......... 10% 23.0M 2s +2024-03-07T01:08:04Z #15 1.677 13300K .......... .......... .......... .......... .......... 10% 52.2M 2s +2024-03-07T01:08:04Z #15 1.679 13350K .......... .......... .......... .......... .......... 10% 113M 2s +2024-03-07T01:08:04Z #15 1.679 13400K .......... .......... .......... .......... .......... 10% 119M 2s +2024-03-07T01:08:04Z #15 1.679 13450K .......... .......... .......... .......... .......... 10% 46.0M 2s +2024-03-07T01:08:04Z #15 1.680 13500K .......... .......... .......... .......... .......... 10% 34.8M 2s +2024-03-07T01:08:04Z #15 1.681 13550K .......... .......... .......... .......... .......... 10% 79.8M 2s +2024-03-07T01:08:04Z #15 1.684 13600K .......... .......... .......... .......... .......... 10% 155M 2s +2024-03-07T01:08:04Z #15 1.684 13650K .......... .......... .......... .......... .......... 10% 162M 2s +2024-03-07T01:08:04Z #15 1.684 13700K .......... .......... .......... .......... .......... 10% 148M 2s +2024-03-07T01:08:04Z #15 1.684 13750K .......... .......... .......... .......... .......... 10% 177M 2s +2024-03-07T01:08:04Z #15 1.684 13800K .......... .......... .......... .......... .......... 10% 29.7M 2s +2024-03-07T01:08:04Z #15 1.685 13850K .......... .......... .......... .......... .......... 10% 105M 2s +2024-03-07T01:08:04Z #15 1.687 13900K .......... .......... .......... .......... .......... 11% 101M 2s +2024-03-07T01:08:04Z #15 1.687 13950K .......... .......... .......... .......... .......... 11% 124M 2s +2024-03-07T01:08:04Z #15 1.687 14000K .......... .......... .......... .......... .......... 11% 125M 2s +2024-03-07T01:08:04Z #15 1.687 14050K .......... .......... .......... .......... .......... 11% 113M 2s +2024-03-07T01:08:04Z #15 1.687 14100K .......... .......... .......... .......... .......... 11% 23.3M 2s +2024-03-07T01:08:04Z #15 1.689 14150K .......... .......... .......... .......... .......... 11% 39.6M 2s +2024-03-07T01:08:04Z #15 1.690 14200K .......... .......... .......... .......... .......... 11% 89.1M 2s +2024-03-07T01:08:04Z #15 1.691 14250K .......... .......... .......... .......... .......... 11% 136M 2s +2024-03-07T01:08:04Z #15 1.692 14300K .......... .......... .......... .......... .......... 11% 55.1M 2s +2024-03-07T01:08:04Z #15 1.696 14350K .......... .......... .......... .......... .......... 11% 130M 2s +2024-03-07T01:08:04Z #15 1.696 14400K .......... .......... .......... .......... .......... 11% 144M 2s +2024-03-07T01:08:04Z #15 1.696 14450K .......... .......... .......... .......... .......... 11% 97.9M 2s +2024-03-07T01:08:04Z #15 1.696 14500K .......... .......... .......... .......... .......... 11% 116M 2s +2024-03-07T01:08:04Z #15 1.696 14550K .......... .......... .......... .......... .......... 11% 137M 2s +2024-03-07T01:08:04Z #15 1.696 14600K .......... .......... .......... .......... .......... 11% 119M 2s +2024-03-07T01:08:04Z #15 1.696 14650K .......... .......... .......... .......... .......... 11% 113M 2s +2024-03-07T01:08:04Z #15 1.696 14700K .......... .......... .......... .......... .......... 11% 21.5M 2s +2024-03-07T01:08:04Z #15 1.699 14750K .......... .......... .......... .......... .......... 11% 112M 2s +2024-03-07T01:08:04Z #15 1.699 14800K .......... .......... .......... .......... .......... 11% 108M 2s +2024-03-07T01:08:04Z #15 1.699 14850K .......... .......... .......... .......... .......... 11% 122M 2s +2024-03-07T01:08:04Z #15 1.699 14900K .......... .......... .......... .......... .......... 11% 137M 2s +2024-03-07T01:08:04Z #15 1.699 14950K .......... .......... .......... .......... .......... 11% 37.1M 2s +2024-03-07T01:08:04Z #15 1.703 15000K .......... .......... .......... .......... .......... 11% 100M 2s +2024-03-07T01:08:04Z #15 1.703 15050K .......... .......... .......... .......... .......... 11% 105M 2s +2024-03-07T01:08:04Z #15 1.703 15100K .......... .......... .......... .......... .......... 11% 128M 2s +2024-03-07T01:08:04Z #15 1.703 15150K .......... .......... .......... .......... .......... 11% 123M 2s +2024-03-07T01:08:04Z #15 1.703 15200K .......... .......... .......... .......... .......... 12% 122M 2s +2024-03-07T01:08:04Z #15 1.703 15250K .......... .......... .......... .......... .......... 12% 100M 2s +2024-03-07T01:08:04Z #15 1.703 15300K .......... .......... .......... .......... .......... 12% 117M 2s +2024-03-07T01:08:04Z #15 1.703 15350K .......... .......... .......... .......... .......... 12% 26.0M 2s +2024-03-07T01:08:04Z #15 1.707 15400K .......... .......... .......... .......... .......... 12% 122M 2s +2024-03-07T01:08:04Z #15 1.707 15450K .......... .......... .......... .......... .......... 12% 114M 2s +2024-03-07T01:08:04Z #15 1.707 15500K .......... .......... .......... .......... .......... 12% 119M 2s +2024-03-07T01:08:04Z #15 1.707 15550K .......... .......... .......... .......... .......... 12% 120M 2s +2024-03-07T01:08:04Z #15 1.707 15600K .......... .......... .......... .......... .......... 12% 93.4M 1s +2024-03-07T01:08:04Z #15 1.710 15650K .......... .......... .......... .......... .......... 12% 116M 1s +2024-03-07T01:08:04Z #15 1.710 15700K .......... .......... .......... .......... .......... 12% 110M 1s +2024-03-07T01:08:04Z #15 1.710 15750K .......... .......... .......... .......... .......... 12% 140M 1s +2024-03-07T01:08:04Z #15 1.710 15800K .......... .......... .......... .......... .......... 12% 92.5M 1s +2024-03-07T01:08:04Z #15 1.710 15850K .......... .......... .......... .......... .......... 12% 132M 1s +2024-03-07T01:08:04Z #15 1.710 15900K .......... .......... .......... .......... .......... 12% 79.1M 1s +2024-03-07T01:08:04Z #15 1.714 15950K .......... .......... .......... .......... .......... 12% 136M 1s +2024-03-07T01:08:04Z #15 1.714 16000K .......... .......... .......... .......... .......... 12% 110M 1s +2024-03-07T01:08:04Z #15 1.714 16050K .......... .......... .......... .......... .......... 12% 126M 1s +2024-03-07T01:08:04Z #15 1.714 16100K .......... .......... .......... .......... .......... 12% 121M 1s +2024-03-07T01:08:04Z #15 1.714 16150K .......... .......... .......... .......... .......... 12% 121M 1s +2024-03-07T01:08:04Z #15 1.714 16200K .......... .......... .......... .......... .......... 12% 110M 1s +2024-03-07T01:08:04Z #15 1.714 16250K .......... .......... .......... .......... .......... 12% 143M 1s +2024-03-07T01:08:04Z #15 1.714 16300K .......... .......... .......... .......... .......... 12% 107M 1s +2024-03-07T01:08:04Z #15 1.714 16350K .......... .......... .......... .......... .......... 12% 78.0M 1s +2024-03-07T01:08:04Z #15 1.714 16400K .......... .......... .......... .......... .......... 12% 142M 1s +2024-03-07T01:08:04Z #15 1.715 16450K .......... .......... .......... .......... .......... 13% 133M 1s +2024-03-07T01:08:04Z #15 1.715 16500K .......... .......... .......... .......... .......... 13% 106M 1s +2024-03-07T01:08:04Z #15 1.715 16550K .......... .......... .......... .......... .......... 13% 121M 1s +2024-03-07T01:08:04Z #15 1.717 16600K .......... .......... .......... .......... .......... 13% 118M 1s +2024-03-07T01:08:04Z #15 1.717 16650K .......... .......... .......... .......... .......... 13% 123M 1s +2024-03-07T01:08:04Z #15 1.717 16700K .......... .......... .......... .......... .......... 13% 112M 1s +2024-03-07T01:08:04Z #15 1.717 16750K .......... .......... .......... .......... .......... 13% 55.8M 1s +2024-03-07T01:08:04Z #15 1.718 16800K .......... .......... .......... .......... .......... 13% 24.3M 1s +2024-03-07T01:08:04Z #15 1.720 16850K .......... .......... .......... .......... .......... 13% 41.9M 1s +2024-03-07T01:08:04Z #15 1.721 16900K .......... .......... .......... .......... .......... 13% 112M 1s +2024-03-07T01:08:04Z #15 1.721 16950K .......... .......... .......... .......... .......... 13% 32.7M 1s +2024-03-07T01:08:04Z #15 1.724 17000K .......... .......... .......... .......... .......... 13% 117M 1s +2024-03-07T01:08:04Z #15 1.724 17050K .......... .......... .......... .......... .......... 13% 21.3M 1s +2024-03-07T01:08:04Z #15 1.726 17100K .......... .......... .......... .......... .......... 13% 41.0M 1s +2024-03-07T01:08:04Z #15 1.727 17150K .......... .......... .......... .......... .......... 13% 117M 1s +2024-03-07T01:08:04Z #15 1.727 17200K .......... .......... .......... .......... .......... 13% 37.2M 1s +2024-03-07T01:08:04Z #15 1.729 17250K .......... .......... .......... .......... .......... 13% 105M 1s +2024-03-07T01:08:04Z #15 1.729 17300K .......... .......... .......... .......... .......... 13% 688K 2s +2024-03-07T01:08:04Z #15 1.802 17350K .......... .......... .......... .......... .......... 13% 46.6M 2s +2024-03-07T01:08:04Z #15 1.803 17400K .......... .......... .......... .......... .......... 13% 46.8M 2s +2024-03-07T01:08:04Z #15 1.804 17450K .......... .......... .......... .......... .......... 13% 50.4M 2s +2024-03-07T01:08:04Z #15 1.805 17500K .......... .......... .......... .......... .......... 13% 43.4M 2s +2024-03-07T01:08:04Z #15 1.806 17550K .......... .......... .......... .......... .......... 13% 49.7M 2s +2024-03-07T01:08:04Z #15 1.807 17600K .......... .......... .......... .......... .......... 13% 49.9M 2s +2024-03-07T01:08:04Z #15 1.808 17650K .......... .......... .......... .......... .......... 13% 44.7M 2s +2024-03-07T01:08:04Z #15 1.809 17700K .......... .......... .......... .......... .......... 14% 50.0M 2s +2024-03-07T01:08:04Z #15 1.810 17750K .......... .......... .......... .......... .......... 14% 48.7M 2s +2024-03-07T01:08:04Z #15 1.811 17800K .......... .......... .......... .......... .......... 14% 122M 2s +2024-03-07T01:08:04Z #15 1.811 17850K .......... .......... .......... .......... .......... 14% 153M 2s +2024-03-07T01:08:04Z #15 1.812 17900K .......... .......... .......... .......... .......... 14% 133M 2s +2024-03-07T01:08:04Z #15 1.812 17950K .......... .......... .......... .......... .......... 14% 151M 2s +2024-03-07T01:08:04Z #15 1.812 18000K .......... .......... .......... .......... .......... 14% 123M 2s +2024-03-07T01:08:04Z #15 1.813 18050K .......... .......... .......... .......... .......... 14% 147M 2s +2024-03-07T01:08:04Z #15 1.813 18100K .......... .......... .......... .......... .......... 14% 163M 2s +2024-03-07T01:08:04Z #15 1.813 18150K .......... .......... .......... .......... .......... 14% 143M 2s +2024-03-07T01:08:04Z #15 1.814 18200K .......... .......... .......... .......... .......... 14% 129M 2s +2024-03-07T01:08:04Z #15 1.814 18250K .......... .......... .......... .......... .......... 14% 150M 2s +2024-03-07T01:08:04Z #15 1.814 18300K .......... .......... .......... .......... .......... 14% 161M 2s +2024-03-07T01:08:04Z #15 1.815 18350K .......... .......... .......... .......... .......... 14% 125M 2s +2024-03-07T01:08:04Z #15 1.815 18400K .......... .......... .......... .......... .......... 14% 159M 2s +2024-03-07T01:08:04Z #15 1.816 18450K .......... .......... .......... .......... .......... 14% 13.3M 2s +2024-03-07T01:08:04Z #15 1.828 18500K .......... .......... .......... .......... .......... 14% 61.7M 2s +2024-03-07T01:08:04Z #15 1.828 18550K .......... .......... .......... .......... .......... 14% 74.2M 2s +2024-03-07T01:08:04Z #15 1.828 18600K .......... .......... .......... .......... .......... 14% 68.6M 2s +2024-03-07T01:08:04Z #15 1.828 18650K .......... .......... .......... .......... .......... 14% 60.0M 2s +2024-03-07T01:08:04Z #15 1.828 18700K .......... .......... .......... .......... .......... 14% 111M 2s +2024-03-07T01:08:04Z #15 1.828 18750K .......... .......... .......... .......... .......... 14% 114M 2s +2024-03-07T01:08:04Z #15 1.828 18800K .......... .......... .......... .......... .......... 14% 108M 2s +2024-03-07T01:08:04Z #15 1.828 18850K .......... .......... .......... .......... .......... 14% 105M 2s +2024-03-07T01:08:04Z #15 1.828 18900K .......... .......... .......... .......... .......... 14% 108M 2s +2024-03-07T01:08:04Z #15 1.828 18950K .......... .......... .......... .......... .......... 14% 121M 2s +2024-03-07T01:08:04Z #15 1.828 19000K .......... .......... .......... .......... .......... 15% 118M 2s +2024-03-07T01:08:04Z #15 1.828 19050K .......... .......... .......... .......... .......... 15% 50.3M 2s +2024-03-07T01:08:04Z #15 1.828 19100K .......... .......... .......... .......... .......... 15% 96.5M 2s +2024-03-07T01:08:04Z #15 1.828 19150K .......... .......... .......... .......... .......... 15% 58.0M 2s +2024-03-07T01:08:04Z #15 1.828 19200K .......... .......... .......... .......... .......... 15% 8.82M 2s +2024-03-07T01:08:04Z #15 1.833 19250K .......... .......... .......... .......... .......... 15% 99.5M 2s +2024-03-07T01:08:04Z #15 1.833 19300K .......... .......... .......... .......... .......... 15% 122M 2s +2024-03-07T01:08:04Z #15 1.834 19350K .......... .......... .......... .......... .......... 15% 59.6M 2s +2024-03-07T01:08:04Z #15 1.839 19400K .......... .......... .......... .......... .......... 15% 112M 2s +2024-03-07T01:08:04Z #15 1.839 19450K .......... .......... .......... .......... .......... 15% 128M 2s +2024-03-07T01:08:04Z #15 1.839 19500K .......... .......... .......... .......... .......... 15% 81.0M 2s +2024-03-07T01:08:04Z #15 1.839 19550K .......... .......... .......... .......... .......... 15% 82.8M 2s +2024-03-07T01:08:04Z #15 1.839 19600K .......... .......... .......... .......... .......... 15% 112M 2s +2024-03-07T01:08:04Z #15 1.839 19650K .......... .......... .......... .......... .......... 15% 70.9M 2s +2024-03-07T01:08:04Z #15 1.839 19700K .......... .......... .......... .......... .......... 15% 79.1M 2s +2024-03-07T01:08:04Z #15 1.839 19750K .......... .......... .......... .......... .......... 15% 110M 2s +2024-03-07T01:08:04Z #15 1.839 19800K .......... .......... .......... .......... .......... 15% 121M 2s +2024-03-07T01:08:04Z #15 1.839 19850K .......... .......... .......... .......... .......... 15% 50.5M 2s +2024-03-07T01:08:04Z #15 1.843 19900K .......... .......... .......... .......... .......... 15% 132M 2s +2024-03-07T01:08:04Z #15 1.843 19950K .......... .......... .......... .......... .......... 15% 87.9M 2s +2024-03-07T01:08:04Z #15 1.843 20000K .......... .......... .......... .......... .......... 15% 82.8M 2s +2024-03-07T01:08:04Z #15 1.843 20050K .......... .......... .......... .......... .......... 15% 117M 2s +2024-03-07T01:08:04Z #15 1.843 20100K .......... .......... .......... .......... .......... 15% 71.6M 2s +2024-03-07T01:08:04Z #15 1.843 20150K .......... .......... .......... .......... .......... 15% 96.2M 2s +2024-03-07T01:08:04Z #15 1.843 20200K .......... .......... .......... .......... .......... 15% 47.9M 2s +2024-03-07T01:08:04Z #15 1.844 20250K .......... .......... .......... .......... .......... 16% 162M 2s +2024-03-07T01:08:04Z #15 1.844 20300K .......... .......... .......... .......... .......... 16% 149M 2s +2024-03-07T01:08:04Z #15 1.845 20350K .......... .......... .......... .......... .......... 16% 151M 2s +2024-03-07T01:08:04Z #15 1.845 20400K .......... .......... .......... .......... .......... 16% 33.9M 2s +2024-03-07T01:08:04Z #15 1.847 20450K .......... .......... .......... .......... .......... 16% 34.7M 2s +2024-03-07T01:08:04Z #15 1.851 20500K .......... .......... .......... .......... .......... 16% 142M 2s +2024-03-07T01:08:04Z #15 1.851 20550K .......... .......... .......... .......... .......... 16% 169M 2s +2024-03-07T01:08:04Z #15 1.851 20600K .......... .......... .......... .......... .......... 16% 123M 2s +2024-03-07T01:08:04Z #15 1.851 20650K .......... .......... .......... .......... .......... 16% 114M 2s +2024-03-07T01:08:04Z #15 1.851 20700K .......... .......... .......... .......... .......... 16% 156M 2s +2024-03-07T01:08:04Z #15 1.851 20750K .......... .......... .......... .......... .......... 16% 149M 2s +2024-03-07T01:08:04Z #15 1.851 20800K .......... .......... .......... .......... .......... 16% 78.4M 2s +2024-03-07T01:08:04Z #15 1.851 20850K .......... .......... .......... .......... .......... 16% 17.5M 2s +2024-03-07T01:08:04Z #15 1.854 20900K .......... .......... .......... .......... .......... 16% 54.4M 2s +2024-03-07T01:08:04Z #15 1.854 20950K .......... .......... .......... .......... .......... 16% 115M 2s +2024-03-07T01:08:04Z #15 1.855 21000K .......... .......... .......... .......... .......... 16% 81.7M 2s +2024-03-07T01:08:04Z #15 1.856 21050K .......... .......... .......... .......... .......... 16% 81.0M 2s +2024-03-07T01:08:04Z #15 1.856 21100K .......... .......... .......... .......... .......... 16% 88.8M 2s +2024-03-07T01:08:04Z #15 1.857 21150K .......... .......... .......... .......... .......... 16% 46.3M 2s +2024-03-07T01:08:04Z #15 1.858 21200K .......... .......... .......... .......... .......... 16% 18.6M 2s +2024-03-07T01:08:04Z #15 1.860 21250K .......... .......... .......... .......... .......... 16% 74.8M 2s +2024-03-07T01:08:04Z #15 1.861 21300K .......... .......... .......... .......... .......... 16% 58.6M 2s +2024-03-07T01:08:04Z #15 1.862 21350K .......... .......... .......... .......... .......... 16% 78.0M 2s +2024-03-07T01:08:04Z #15 1.862 21400K .......... .......... .......... .......... .......... 16% 32.7M 2s +2024-03-07T01:08:04Z #15 1.864 21450K .......... .......... .......... .......... .......... 16% 92.2M 2s +2024-03-07T01:08:04Z #15 1.864 21500K .......... .......... .......... .......... .......... 16% 28.6M 2s +2024-03-07T01:08:04Z #15 1.871 21550K .......... .......... .......... .......... .......... 17% 126M 2s +2024-03-07T01:08:04Z #15 1.871 21600K .......... .......... .......... .......... .......... 17% 106M 2s +2024-03-07T01:08:04Z #15 1.871 21650K .......... .......... .......... .......... .......... 17% 116M 2s +2024-03-07T01:08:04Z #15 1.871 21700K .......... .......... .......... .......... .......... 17% 120M 2s +2024-03-07T01:08:04Z #15 1.871 21750K .......... .......... .......... .......... .......... 17% 119M 2s +2024-03-07T01:08:04Z #15 1.871 21800K .......... .......... .......... .......... .......... 17% 117M 2s +2024-03-07T01:08:04Z #15 1.871 21850K .......... .......... .......... .......... .......... 17% 115M 2s +2024-03-07T01:08:04Z #15 1.871 21900K .......... .......... .......... .......... .......... 17% 64.5M 2s +2024-03-07T01:08:04Z #15 1.871 21950K .......... .......... .......... .......... .......... 17% 78.9M 2s +2024-03-07T01:08:04Z #15 1.871 22000K .......... .......... .......... .......... .......... 17% 78.4M 2s +2024-03-07T01:08:04Z #15 1.871 22050K .......... .......... .......... .......... .......... 17% 61.3M 2s +2024-03-07T01:08:04Z #15 1.872 22100K .......... .......... .......... .......... .......... 17% 57.2M 2s +2024-03-07T01:08:04Z #15 1.873 22150K .......... .......... .......... .......... .......... 17% 148M 2s +2024-03-07T01:08:04Z #15 1.873 22200K .......... .......... .......... .......... .......... 17% 145M 2s +2024-03-07T01:08:04Z #15 1.874 22250K .......... .......... .......... .......... .......... 17% 156M 2s +2024-03-07T01:08:04Z #15 1.874 22300K .......... .......... .......... .......... .......... 17% 126M 2s +2024-03-07T01:08:04Z #15 1.874 22350K .......... .......... .......... .......... .......... 17% 79.1M 2s +2024-03-07T01:08:04Z #15 1.875 22400K .......... .......... .......... .......... .......... 17% 106M 2s +2024-03-07T01:08:04Z #15 1.875 22450K .......... .......... .......... .......... .......... 17% 84.0M 2s +2024-03-07T01:08:04Z #15 1.876 22500K .......... .......... .......... .......... .......... 17% 68.3M 2s +2024-03-07T01:08:04Z #15 1.877 22550K .......... .......... .......... .......... .......... 17% 151M 2s +2024-03-07T01:08:04Z #15 1.877 22600K .......... .......... .......... .......... .......... 17% 111M 2s +2024-03-07T01:08:04Z #15 1.877 22650K .......... .......... .......... .......... .......... 17% 159M 2s +2024-03-07T01:08:04Z #15 1.878 22700K .......... .......... .......... .......... .......... 17% 110M 2s +2024-03-07T01:08:04Z #15 1.878 22750K .......... .......... .......... .......... .......... 17% 151M 2s +2024-03-07T01:08:04Z #15 1.879 22800K .......... .......... .......... .......... .......... 18% 162M 2s +2024-03-07T01:08:04Z #15 1.879 22850K .......... .......... .......... .......... .......... 18% 168M 2s +2024-03-07T01:08:04Z #15 1.879 22900K .......... .......... .......... .......... .......... 18% 137M 2s +2024-03-07T01:08:04Z #15 1.879 22950K .......... .......... .......... .......... .......... 18% 58.8M 2s +2024-03-07T01:08:04Z #15 1.880 23000K .......... .......... .......... .......... .......... 18% 165M 2s +2024-03-07T01:08:04Z #15 1.881 23050K .......... .......... .......... .......... .......... 18% 56.2M 2s +2024-03-07T01:08:04Z #15 1.881 23100K .......... .......... .......... .......... .......... 18% 126M 2s +2024-03-07T01:08:04Z #15 1.882 23150K .......... .......... .......... .......... .......... 18% 161M 2s +2024-03-07T01:08:04Z #15 1.882 23200K .......... .......... .......... .......... .......... 18% 119M 2s +2024-03-07T01:08:04Z #15 1.883 23250K .......... .......... .......... .......... .......... 18% 143M 2s +2024-03-07T01:08:04Z #15 1.883 23300K .......... .......... .......... .......... .......... 18% 96.5M 2s +2024-03-07T01:08:04Z #15 1.884 23350K .......... .......... .......... .......... .......... 18% 128M 2s +2024-03-07T01:08:04Z #15 1.884 23400K .......... .......... .......... .......... .......... 18% 173M 2s +2024-03-07T01:08:04Z #15 1.884 23450K .......... .......... .......... .......... .......... 18% 90.7M 2s +2024-03-07T01:08:04Z #15 1.884 23500K .......... .......... .......... .......... .......... 18% 93.9M 2s +2024-03-07T01:08:04Z #15 1.885 23550K .......... .......... .......... .......... .......... 18% 138M 2s +2024-03-07T01:08:04Z #15 1.885 23600K .......... .......... .......... .......... .......... 18% 96.6M 2s +2024-03-07T01:08:04Z #15 1.886 23650K .......... .......... .......... .......... .......... 18% 59.7M 2s +2024-03-07T01:08:04Z #15 1.887 23700K .......... .......... .......... .......... .......... 18% 162M 2s +2024-03-07T01:08:04Z #15 1.887 23750K .......... .......... .......... .......... .......... 18% 106M 2s +2024-03-07T01:08:04Z #15 1.888 23800K .......... .......... .......... .......... .......... 18% 145M 2s +2024-03-07T01:08:04Z #15 1.888 23850K .......... .......... .......... .......... .......... 18% 138M 2s +2024-03-07T01:08:04Z #15 1.888 23900K .......... .......... .......... .......... .......... 18% 147M 2s +2024-03-07T01:08:04Z #15 1.889 23950K .......... .......... .......... .......... .......... 18% 132M 2s +2024-03-07T01:08:04Z #15 1.889 24000K .......... .......... .......... .......... .......... 18% 155M 2s +2024-03-07T01:08:04Z #15 1.889 24050K .......... .......... .......... .......... .......... 19% 61.4M 2s +2024-03-07T01:08:04Z #15 1.890 24100K .......... .......... .......... .......... .......... 19% 96.6M 2s +2024-03-07T01:08:04Z #15 1.891 24150K .......... .......... .......... .......... .......... 19% 99.2M 2s +2024-03-07T01:08:04Z #15 1.891 24200K .......... .......... .......... .......... .......... 19% 153M 2s +2024-03-07T01:08:04Z #15 1.891 24250K .......... .......... .......... .......... .......... 19% 134M 2s +2024-03-07T01:08:04Z #15 1.892 24300K .......... .......... .......... .......... .......... 19% 87.0M 2s +2024-03-07T01:08:04Z #15 1.892 24350K .......... .......... .......... .......... .......... 19% 162M 2s +2024-03-07T01:08:04Z #15 1.892 24400K .......... .......... .......... .......... .......... 19% 148M 2s +2024-03-07T01:08:04Z #15 1.893 24450K .......... .......... .......... .......... .......... 19% 111M 2s +2024-03-07T01:08:04Z #15 1.893 24500K .......... .......... .......... .......... .......... 19% 83.4M 2s +2024-03-07T01:08:04Z #15 1.894 24550K .......... .......... .......... .......... .......... 19% 164M 2s +2024-03-07T01:08:04Z #15 1.894 24600K .......... .......... .......... .......... .......... 19% 168M 2s +2024-03-07T01:08:04Z #15 1.894 24650K .......... .......... .......... .......... .......... 19% 65.6M 2s +2024-03-07T01:08:04Z #15 1.895 24700K .......... .......... .......... .......... .......... 19% 104M 2s +2024-03-07T01:08:04Z #15 1.896 24750K .......... .......... .......... .......... .......... 19% 155M 2s +2024-03-07T01:08:04Z #15 1.897 24800K .......... .......... .......... .......... .......... 19% 84.5M 2s +2024-03-07T01:08:04Z #15 1.898 24850K .......... .......... .......... .......... .......... 19% 110M 2s +2024-03-07T01:08:04Z #15 1.898 24900K .......... .......... .......... .......... .......... 19% 124M 2s +2024-03-07T01:08:04Z #15 1.898 24950K .......... .......... .......... .......... .......... 19% 108M 2s +2024-03-07T01:08:04Z #15 1.898 25000K .......... .......... .......... .......... .......... 19% 93.8M 2s +2024-03-07T01:08:04Z #15 1.898 25050K .......... .......... .......... .......... .......... 19% 147M 2s +2024-03-07T01:08:04Z #15 1.899 25100K .......... .......... .......... .......... .......... 19% 65.0M 2s +2024-03-07T01:08:04Z #15 1.900 25150K .......... .......... .......... .......... .......... 19% 73.3M 2s +2024-03-07T01:08:04Z #15 1.901 25200K .......... .......... .......... .......... .......... 19% 41.9M 2s +2024-03-07T01:08:04Z #15 1.901 25250K .......... .......... .......... .......... .......... 19% 108M 2s +2024-03-07T01:08:04Z #15 1.902 25300K .......... .......... .......... .......... .......... 19% 122M 2s +2024-03-07T01:08:04Z #15 1.902 25350K .......... .......... .......... .......... .......... 20% 143M 2s +2024-03-07T01:08:04Z #15 1.903 25400K .......... .......... .......... .......... .......... 20% 110M 2s +2024-03-07T01:08:04Z #15 1.903 25450K .......... .......... .......... .......... .......... 20% 160M 2s +2024-03-07T01:08:04Z #15 1.903 25500K .......... .......... .......... .......... .......... 20% 146M 2s +2024-03-07T01:08:04Z #15 1.904 25550K .......... .......... .......... .......... .......... 20% 124M 2s +2024-03-07T01:08:04Z #15 1.904 25600K .......... .......... .......... .......... .......... 20% 147M 2s +2024-03-07T01:08:04Z #15 1.905 25650K .......... .......... .......... .......... .......... 20% 69.0M 2s +2024-03-07T01:08:04Z #15 1.905 25700K .......... .......... .......... .......... .......... 20% 64.5M 2s +2024-03-07T01:08:04Z #15 1.906 25750K .......... .......... .......... .......... .......... 20% 92.1M 2s +2024-03-07T01:08:04Z #15 1.906 25800K .......... .......... .......... .......... .......... 20% 135M 2s +2024-03-07T01:08:04Z #15 1.906 25850K .......... .......... .......... .......... .......... 20% 166M 2s +2024-03-07T01:08:04Z #15 1.907 25900K .......... .......... .......... .......... .......... 20% 116M 2s +2024-03-07T01:08:04Z #15 1.907 25950K .......... .......... .......... .......... .......... 20% 124M 2s +2024-03-07T01:08:04Z #15 1.908 26000K .......... .......... .......... .......... .......... 20% 154M 2s +2024-03-07T01:08:04Z #15 1.908 26050K .......... .......... .......... .......... .......... 20% 88.0M 2s +2024-03-07T01:08:04Z #15 1.908 26100K .......... .......... .......... .......... .......... 20% 66.8M 2s +2024-03-07T01:08:04Z #15 1.909 26150K .......... .......... .......... .......... .......... 20% 140M 2s +2024-03-07T01:08:04Z #15 1.910 26200K .......... .......... .......... .......... .......... 20% 112M 2s +2024-03-07T01:08:04Z #15 1.910 26250K .......... .......... .......... .......... .......... 20% 63.1M 2s +2024-03-07T01:08:04Z #15 1.911 26300K .......... .......... .......... .......... .......... 20% 164M 2s +2024-03-07T01:08:04Z #15 1.911 26350K .......... .......... .......... .......... .......... 20% 126M 2s +2024-03-07T01:08:04Z #15 1.912 26400K .......... .......... .......... .......... .......... 20% 117M 2s +2024-03-07T01:08:04Z #15 1.912 26450K .......... .......... .......... .......... .......... 20% 134M 2s +2024-03-07T01:08:04Z #15 1.912 26500K .......... .......... .......... .......... .......... 20% 60.8M 2s +2024-03-07T01:08:04Z #15 1.914 26550K .......... .......... .......... .......... .......... 20% 28.0M 2s +2024-03-07T01:08:04Z #15 1.915 26600K .......... .......... .......... .......... .......... 21% 19.2M 2s +2024-03-07T01:08:04Z #15 1.919 26650K .......... .......... .......... .......... .......... 21% 174M 2s +2024-03-07T01:08:04Z #15 1.919 26700K .......... .......... .......... .......... .......... 21% 157M 2s +2024-03-07T01:08:04Z #15 1.919 26750K .......... .......... .......... .......... .......... 21% 183M 2s +2024-03-07T01:08:04Z #15 1.919 26800K .......... .......... .......... .......... .......... 21% 152M 2s +2024-03-07T01:08:04Z #15 1.919 26850K .......... .......... .......... .......... .......... 21% 171M 2s +2024-03-07T01:08:04Z #15 1.919 26900K .......... .......... .......... .......... .......... 21% 141M 2s +2024-03-07T01:08:04Z #15 1.919 26950K .......... .......... .......... .......... .......... 21% 38.4M 2s +2024-03-07T01:08:04Z #15 1.920 27000K .......... .......... .......... .......... .......... 21% 23.7M 2s +2024-03-07T01:08:04Z #15 1.923 27050K .......... .......... .......... .......... .......... 21% 100M 2s +2024-03-07T01:08:04Z #15 1.927 27100K .......... .......... .......... .......... .......... 21% 162M 2s +2024-03-07T01:08:04Z #15 1.927 27150K .......... .......... .......... .......... .......... 21% 142M 2s +2024-03-07T01:08:04Z #15 1.927 27200K .......... .......... .......... .......... .......... 21% 132M 2s +2024-03-07T01:08:04Z #15 1.927 27250K .......... .......... .......... .......... .......... 21% 172M 2s +2024-03-07T01:08:04Z #15 1.927 27300K .......... .......... .......... .......... .......... 21% 173M 2s +2024-03-07T01:08:04Z #15 1.927 27350K .......... .......... .......... .......... .......... 21% 144M 2s +2024-03-07T01:08:04Z #15 1.927 27400K .......... .......... .......... .......... .......... 21% 64.1M 2s +2024-03-07T01:08:04Z #15 1.927 27450K .......... .......... .......... .......... .......... 21% 169M 2s +2024-03-07T01:08:04Z #15 1.927 27500K .......... .......... .......... .......... .......... 21% 123M 2s +2024-03-07T01:08:04Z #15 1.927 27550K .......... .......... .......... .......... .......... 21% 55.7M 2s +2024-03-07T01:08:04Z #15 1.927 27600K .......... .......... .......... .......... .......... 21% 46.0M 2s +2024-03-07T01:08:04Z #15 1.928 27650K .......... .......... .......... .......... .......... 21% 43.8M 2s +2024-03-07T01:08:04Z #15 1.930 27700K .......... .......... .......... .......... .......... 21% 38.4M 2s +2024-03-07T01:08:04Z #15 1.931 27750K .......... .......... .......... .......... .......... 21% 42.4M 2s +2024-03-07T01:08:04Z #15 1.935 27800K .......... .......... .......... .......... .......... 21% 134M 2s +2024-03-07T01:08:04Z #15 1.935 27850K .......... .......... .......... .......... .......... 22% 162M 2s +2024-03-07T01:08:04Z #15 1.935 27900K .......... .......... .......... .......... .......... 22% 171M 2s +2024-03-07T01:08:04Z #15 1.935 27950K .......... .......... .......... .......... .......... 22% 156M 2s +2024-03-07T01:08:04Z #15 1.935 28000K .......... .......... .......... .......... .......... 22% 148M 2s +2024-03-07T01:08:04Z #15 1.935 28050K .......... .......... .......... .......... .......... 22% 67.1M 2s +2024-03-07T01:08:04Z #15 1.935 28100K .......... .......... .......... .......... .......... 22% 170M 2s +2024-03-07T01:08:04Z #15 1.935 28150K .......... .......... .......... .......... .......... 22% 52.8M 2s +2024-03-07T01:08:04Z #15 1.936 28200K .......... .......... .......... .......... .......... 22% 33.3M 2s +2024-03-07T01:08:04Z #15 1.937 28250K .......... .......... .......... .......... .......... 22% 40.7M 2s +2024-03-07T01:08:04Z #15 1.938 28300K .......... .......... .......... .......... .......... 22% 44.4M 2s +2024-03-07T01:08:04Z #15 1.939 28350K .......... .......... .......... .......... .......... 22% 17.6M 2s +2024-03-07T01:08:04Z #15 1.948 28400K .......... .......... .......... .......... .......... 22% 148M 2s +2024-03-07T01:08:04Z #15 1.948 28450K .......... .......... .......... .......... .......... 22% 174M 2s +2024-03-07T01:08:04Z #15 1.948 28500K .......... .......... .......... .......... .......... 22% 154M 2s +2024-03-07T01:08:04Z #15 1.948 28550K .......... .......... .......... .......... .......... 22% 170M 2s +2024-03-07T01:08:04Z #15 1.948 28600K .......... .......... .......... .......... .......... 22% 60.7M 2s +2024-03-07T01:08:04Z #15 1.948 28650K .......... .......... .......... .......... .......... 22% 181M 2s +2024-03-07T01:08:04Z #15 1.948 28700K .......... .......... .......... .......... .......... 22% 57.0M 2s +2024-03-07T01:08:04Z #15 1.948 28750K .......... .......... .......... .......... .......... 22% 171M 2s +2024-03-07T01:08:04Z #15 1.948 28800K .......... .......... .......... .......... .......... 22% 156M 2s +2024-03-07T01:08:04Z #15 1.948 28850K .......... .......... .......... .......... .......... 22% 122M 2s +2024-03-07T01:08:04Z #15 1.948 28900K .......... .......... .......... .......... .......... 22% 122M 2s +2024-03-07T01:08:04Z #15 1.948 28950K .......... .......... .......... .......... .......... 22% 160M 2s +2024-03-07T01:08:04Z #15 1.948 29000K .......... .......... .......... .......... .......... 22% 108M 2s +2024-03-07T01:08:04Z #15 1.948 29050K .......... .......... .......... .......... .......... 22% 43.6M 2s +2024-03-07T01:08:04Z #15 1.948 29100K .......... .......... .......... .......... .......... 22% 31.9M 2s +2024-03-07T01:08:04Z #15 1.950 29150K .......... .......... .......... .......... .......... 23% 42.3M 2s +2024-03-07T01:08:04Z #15 1.955 29200K .......... .......... .......... .......... .......... 23% 167M 2s +2024-03-07T01:08:04Z #15 1.955 29250K .......... .......... .......... .......... .......... 23% 146M 2s +2024-03-07T01:08:04Z #15 1.955 29300K .......... .......... .......... .......... .......... 23% 133M 2s +2024-03-07T01:08:04Z #15 1.955 29350K .......... .......... .......... .......... .......... 23% 160M 2s +2024-03-07T01:08:04Z #15 1.955 29400K .......... .......... .......... .......... .......... 23% 172M 2s +2024-03-07T01:08:04Z #15 1.955 29450K .......... .......... .......... .......... .......... 23% 129M 2s +2024-03-07T01:08:04Z #15 1.955 29500K .......... .......... .......... .......... .......... 23% 85.5M 2s +2024-03-07T01:08:04Z #15 1.955 29550K .......... .......... .......... .......... .......... 23% 97.2M 2s +2024-03-07T01:08:04Z #15 1.955 29600K .......... .......... .......... .......... .......... 23% 159M 2s +2024-03-07T01:08:04Z #15 1.955 29650K .......... .......... .......... .......... .......... 23% 59.9M 2s +2024-03-07T01:08:04Z #15 1.955 29700K .......... .......... .......... .......... .......... 23% 83.6M 1s +2024-03-07T01:08:04Z #15 1.956 29750K .......... .......... .......... .......... .......... 23% 27.6M 2s +2024-03-07T01:08:04Z #15 1.958 29800K .......... .......... .......... .......... .......... 23% 43.7M 2s +2024-03-07T01:08:04Z #15 1.959 29850K .......... .......... .......... .......... .......... 23% 43.9M 2s +2024-03-07T01:08:04Z #15 1.960 29900K .......... .......... .......... .......... .......... 23% 37.5M 2s +2024-03-07T01:08:04Z #15 1.961 29950K .......... .......... .......... .......... .......... 23% 83.2M 2s +2024-03-07T01:08:04Z #15 1.963 30000K .......... .......... .......... .......... .......... 23% 159M 1s +2024-03-07T01:08:04Z #15 1.963 30050K .......... .......... .......... .......... .......... 23% 164M 1s +2024-03-07T01:08:04Z #15 1.963 30100K .......... .......... .......... .......... .......... 23% 52.8M 1s +2024-03-07T01:08:04Z #15 1.963 30150K .......... .......... .......... .......... .......... 23% 76.9M 1s +2024-03-07T01:08:04Z #15 1.964 30200K .......... .......... .......... .......... .......... 23% 30.0M 1s +2024-03-07T01:08:04Z #15 1.967 30250K .......... .......... .......... .......... .......... 23% 161M 1s +2024-03-07T01:08:04Z #15 1.967 30300K .......... .......... .......... .......... .......... 23% 169M 1s +2024-03-07T01:08:04Z #15 1.967 30350K .......... .......... .......... .......... .......... 23% 115M 1s +2024-03-07T01:08:04Z #15 1.967 30400K .......... .......... .......... .......... .......... 24% 158M 1s +2024-03-07T01:08:04Z #15 1.967 30450K .......... .......... .......... .......... .......... 24% 169M 1s +2024-03-07T01:08:04Z #15 1.967 30500K .......... .......... .......... .......... .......... 24% 157M 1s +2024-03-07T01:08:04Z #15 1.967 30550K .......... .......... .......... .......... .......... 24% 30.6M 1s +2024-03-07T01:08:04Z #15 1.969 30600K .......... .......... .......... .......... .......... 24% 31.0M 1s +2024-03-07T01:08:04Z #15 1.971 30650K .......... .......... .......... .......... .......... 24% 41.2M 1s +2024-03-07T01:08:04Z #15 1.972 30700K .......... .......... .......... .......... .......... 24% 38.1M 1s +2024-03-07T01:08:04Z #15 1.973 30750K .......... .......... .......... .......... .......... 24% 45.9M 1s +2024-03-07T01:08:04Z #15 1.974 30800K .......... .......... .......... .......... .......... 24% 36.8M 1s +2024-03-07T01:08:04Z #15 1.976 30850K .......... .......... .......... .......... .......... 24% 15.0M 1s +2024-03-07T01:08:04Z #15 1.979 30900K .......... .......... .......... .......... .......... 24% 9.58M 2s +2024-03-07T01:08:04Z #15 1.984 30950K .......... .......... .......... .......... .......... 24% 156M 2s +2024-03-07T01:08:04Z #15 1.984 31000K .......... .......... .......... .......... .......... 24% 55.6M 2s +2024-03-07T01:08:04Z #15 1.985 31050K .......... .......... .......... .......... .......... 24% 66.5M 2s +2024-03-07T01:08:04Z #15 1.986 31100K .......... .......... .......... .......... .......... 24% 93.3M 2s +2024-03-07T01:08:04Z #15 1.986 31150K .......... .......... .......... .......... .......... 24% 65.8M 2s +2024-03-07T01:08:04Z #15 1.987 31200K .......... .......... .......... .......... .......... 24% 10.3M 2s +2024-03-07T01:08:04Z #15 1.992 31250K .......... .......... .......... .......... .......... 24% 160M 2s +2024-03-07T01:08:04Z #15 1.992 31300K .......... .......... .......... .......... .......... 24% 155M 2s +2024-03-07T01:08:04Z #15 1.992 31350K .......... .......... .......... .......... .......... 24% 175M 2s +2024-03-07T01:08:04Z #15 1.993 31400K .......... .......... .......... .......... .......... 24% 172M 2s +2024-03-07T01:08:04Z #15 1.993 31450K .......... .......... .......... .......... .......... 24% 107M 2s +2024-03-07T01:08:04Z #15 1.993 31500K .......... .......... .......... .......... .......... 24% 147M 2s +2024-03-07T01:08:04Z #15 1.994 31550K .......... .......... .......... .......... .......... 24% 170M 1s +2024-03-07T01:08:04Z #15 1.994 31600K .......... .......... .......... .......... .......... 24% 159M 1s +2024-03-07T01:08:04Z #15 1.994 31650K .......... .......... .......... .......... .......... 25% 174M 1s +2024-03-07T01:08:04Z #15 1.994 31700K .......... .......... .......... .......... .......... 25% 168M 1s +2024-03-07T01:08:04Z #15 1.995 31750K .......... .......... .......... .......... .......... 25% 150M 1s +2024-03-07T01:08:04Z #15 1.995 31800K .......... .......... .......... .......... .......... 25% 135M 1s +2024-03-07T01:08:04Z #15 1.995 31850K .......... .......... .......... .......... .......... 25% 168M 1s +2024-03-07T01:08:04Z #15 1.996 31900K .......... .......... .......... .......... .......... 25% 152M 1s +2024-03-07T01:08:04Z #15 1.996 31950K .......... .......... .......... .......... .......... 25% 153M 1s +2024-03-07T01:08:04Z #15 1.997 32000K .......... .......... .......... .......... .......... 25% 156M 1s +2024-03-07T01:08:04Z #15 1.997 32050K .......... .......... .......... .......... .......... 25% 165M 1s +2024-03-07T01:08:04Z #15 1.997 32100K .......... .......... .......... .......... .......... 25% 181M 1s +2024-03-07T01:08:04Z #15 1.997 32150K .......... .......... .......... .......... .......... 25% 150M 1s +2024-03-07T01:08:04Z #15 1.998 32200K .......... .......... .......... .......... .......... 25% 176M 1s +2024-03-07T01:08:04Z #15 1.998 32250K .......... .......... .......... .......... .......... 25% 177M 1s +2024-03-07T01:08:04Z #15 1.998 32300K .......... .......... .......... .......... .......... 25% 174M 1s +2024-03-07T01:08:04Z #15 1.999 32350K .......... .......... .......... .......... .......... 25% 155M 1s +2024-03-07T01:08:04Z #15 1.999 32400K .......... .......... .......... .......... .......... 25% 175M 1s +2024-03-07T01:08:04Z #15 1.999 32450K .......... .......... .......... .......... .......... 25% 162M 1s +2024-03-07T01:08:04Z #15 2.000 32500K .......... .......... .......... .......... .......... 25% 137M 1s +2024-03-07T01:08:04Z #15 2.000 32550K .......... .......... .......... .......... .......... 25% 142M 1s +2024-03-07T01:08:04Z #15 2.000 32600K .......... .......... .......... .......... .......... 25% 178M 1s +2024-03-07T01:08:04Z #15 2.000 32650K .......... .......... .......... .......... .......... 25% 176M 1s +2024-03-07T01:08:04Z #15 2.001 32700K .......... .......... .......... .......... .......... 25% 148M 1s +2024-03-07T01:08:04Z #15 2.001 32750K .......... .......... .......... .......... .......... 25% 176M 1s +2024-03-07T01:08:04Z #15 2.001 32800K .......... .......... .......... .......... .......... 25% 175M 1s +2024-03-07T01:08:04Z #15 2.002 32850K .......... .......... .......... .......... .......... 25% 174M 1s +2024-03-07T01:08:04Z #15 2.002 32900K .......... .......... .......... .......... .......... 25% 151M 1s +2024-03-07T01:08:04Z #15 2.002 32950K .......... .......... .......... .......... .......... 26% 167M 1s +2024-03-07T01:08:04Z #15 2.002 33000K .......... .......... .......... .......... .......... 26% 154M 1s +2024-03-07T01:08:04Z #15 2.003 33050K .......... .......... .......... .......... .......... 26% 173M 1s +2024-03-07T01:08:04Z #15 2.003 33100K .......... .......... .......... .......... .......... 26% 171M 1s +2024-03-07T01:08:04Z #15 2.003 33150K .......... .......... .......... .......... .......... 26% 11.1M 1s +2024-03-07T01:08:04Z #15 2.008 33200K .......... .......... .......... .......... .......... 26% 156M 1s +2024-03-07T01:08:04Z #15 2.008 33250K .......... .......... .......... .......... .......... 26% 174M 1s +2024-03-07T01:08:04Z #15 2.008 33300K .......... .......... .......... .......... .......... 26% 177M 1s +2024-03-07T01:08:04Z #15 2.009 33350K .......... .......... .......... .......... .......... 26% 141M 1s +2024-03-07T01:08:04Z #15 2.009 33400K .......... .......... .......... .......... .......... 26% 173M 1s +2024-03-07T01:08:04Z #15 2.009 33450K .......... .......... .......... .......... .......... 26% 171M 1s +2024-03-07T01:08:04Z #15 2.010 33500K .......... .......... .......... .......... .......... 26% 174M 1s +2024-03-07T01:08:04Z #15 2.010 33550K .......... .......... .......... .......... .......... 26% 160M 1s +2024-03-07T01:08:04Z #15 2.010 33600K .......... .......... .......... .......... .......... 26% 177M 1s +2024-03-07T01:08:04Z #15 2.010 33650K .......... .......... .......... .......... .......... 26% 147M 1s +2024-03-07T01:08:04Z #15 2.011 33700K .......... .......... .......... .......... .......... 26% 177M 1s +2024-03-07T01:08:04Z #15 2.011 33750K .......... .......... .......... .......... .......... 26% 175M 1s +2024-03-07T01:08:04Z #15 2.011 33800K .......... .......... .......... .......... .......... 26% 153M 1s +2024-03-07T01:08:04Z #15 2.012 33850K .......... .......... .......... .......... .......... 26% 162M 1s +2024-03-07T01:08:04Z #15 2.012 33900K .......... .......... .......... .......... .......... 26% 164M 1s +2024-03-07T01:08:04Z #15 2.012 33950K .......... .......... .......... .......... .......... 26% 164M 1s +2024-03-07T01:08:04Z #15 2.013 34000K .......... .......... .......... .......... .......... 26% 157M 1s +2024-03-07T01:08:04Z #15 2.013 34050K .......... .......... .......... .......... .......... 26% 176M 1s +2024-03-07T01:08:04Z #15 2.013 34100K .......... .......... .......... .......... .......... 26% 176M 1s +2024-03-07T01:08:04Z #15 2.013 34150K .......... .......... .......... .......... .......... 26% 165M 1s +2024-03-07T01:08:04Z #15 2.014 34200K .......... .......... .......... .......... .......... 27% 154M 1s +2024-03-07T01:08:04Z #15 2.014 34250K .......... .......... .......... .......... .......... 27% 174M 1s +2024-03-07T01:08:04Z #15 2.014 34300K .......... .......... .......... .......... .......... 27% 176M 1s +2024-03-07T01:08:04Z #15 2.015 34350K .......... .......... .......... .......... .......... 27% 164M 1s +2024-03-07T01:08:04Z #15 2.015 34400K .......... .......... .......... .......... .......... 27% 153M 1s +2024-03-07T01:08:04Z #15 2.015 34450K .......... .......... .......... .......... .......... 27% 11.2M 1s +2024-03-07T01:08:04Z #15 2.020 34500K .......... .......... .......... .......... .......... 27% 127M 1s +2024-03-07T01:08:04Z #15 2.020 34550K .......... .......... .......... .......... .......... 27% 137M 1s +2024-03-07T01:08:04Z #15 2.021 34600K .......... .......... .......... .......... .......... 27% 119M 1s +2024-03-07T01:08:04Z #15 2.021 34650K .......... .......... .......... .......... .......... 27% 134M 1s +2024-03-07T01:08:04Z #15 2.021 34700K .......... .......... .......... .......... .......... 27% 228K 2s +2024-03-07T01:08:04Z #15 2.241 34750K .......... .......... .......... .......... .......... 27% 16.7M 2s +2024-03-07T01:08:04Z #15 2.244 34800K .......... .......... .......... .......... .......... 27% 48.8M 2s +2024-03-07T01:08:04Z #15 2.245 34850K .......... .......... .......... .......... .......... 27% 62.5M 2s +2024-03-07T01:08:04Z #15 2.246 34900K .......... .......... .......... .......... .......... 27% 136M 2s +2024-03-07T01:08:04Z #15 2.246 34950K .......... .......... .......... .......... .......... 27% 117M 2s +2024-03-07T01:08:04Z #15 2.246 35000K .......... .......... .......... .......... .......... 27% 146M 2s +2024-03-07T01:08:04Z #15 2.246 35050K .......... .......... .......... .......... .......... 27% 136M 2s +2024-03-07T01:08:04Z #15 2.247 35100K .......... .......... .......... .......... .......... 27% 101M 2s +2024-03-07T01:08:04Z #15 2.248 35150K .......... .......... .......... .......... .......... 27% 77.1M 2s +2024-03-07T01:08:04Z #15 2.248 35200K .......... .......... .......... .......... .......... 27% 154M 2s +2024-03-07T01:08:04Z #15 2.249 35250K .......... .......... .......... .......... .......... 27% 132M 2s +2024-03-07T01:08:04Z #15 2.249 35300K .......... .......... .......... .......... .......... 27% 120M 2s +2024-03-07T01:08:04Z #15 2.249 35350K .......... .......... .......... .......... .......... 27% 143M 2s +2024-03-07T01:08:04Z #15 2.250 35400K .......... .......... .......... .......... .......... 27% 116M 2s +2024-03-07T01:08:04Z #15 2.250 35450K .......... .......... .......... .......... .......... 28% 140M 2s +2024-03-07T01:08:04Z #15 2.250 35500K .......... .......... .......... .......... .......... 28% 126M 2s +2024-03-07T01:08:04Z #15 2.251 35550K .......... .......... .......... .......... .......... 28% 143M 2s +2024-03-07T01:08:04Z #15 2.251 35600K .......... .......... .......... .......... .......... 28% 111M 2s +2024-03-07T01:08:04Z #15 2.252 35650K .......... .......... .......... .......... .......... 28% 135M 2s +2024-03-07T01:08:04Z #15 2.252 35700K .......... .......... .......... .......... .......... 28% 133M 2s +2024-03-07T01:08:04Z #15 2.252 35750K .......... .......... .......... .......... .......... 28% 127M 2s +2024-03-07T01:08:04Z #15 2.253 35800K .......... .......... .......... .......... .......... 28% 127M 2s +2024-03-07T01:08:04Z #15 2.253 35850K .......... .......... .......... .......... .......... 28% 117M 2s +2024-03-07T01:08:04Z #15 2.254 35900K .......... .......... .......... .......... .......... 28% 115M 2s +2024-03-07T01:08:04Z #15 2.254 35950K .......... .......... .......... .......... .......... 28% 83.3M 2s +2024-03-07T01:08:04Z #15 2.254 36000K .......... .......... .......... .......... .......... 28% 142M 2s +2024-03-07T01:08:04Z #15 2.255 36050K .......... .......... .......... .......... .......... 28% 35.3M 2s +2024-03-07T01:08:04Z #15 2.256 36100K .......... .......... .......... .......... .......... 28% 54.1M 2s +2024-03-07T01:08:04Z #15 2.257 36150K .......... .......... .......... .......... .......... 28% 41.1M 2s +2024-03-07T01:08:04Z #15 2.258 36200K .......... .......... .......... .......... .......... 28% 60.7M 2s +2024-03-07T01:08:04Z #15 2.259 36250K .......... .......... .......... .......... .......... 28% 64.7M 2s +2024-03-07T01:08:05Z #15 2.260 36300K .......... .......... .......... .......... .......... 28% 1.77M 2s +2024-03-07T01:08:05Z #15 2.291 36350K .......... .......... .......... .......... .......... 28% 7.95M 2s +2024-03-07T01:08:05Z #15 2.294 36400K .......... .......... .......... .......... .......... 28% 17.8M 2s +2024-03-07T01:08:05Z #15 2.296 36450K .......... .......... .......... .......... .......... 28% 175M 2s +2024-03-07T01:08:05Z #15 2.297 36500K .......... .......... .......... .......... .......... 28% 143M 2s +2024-03-07T01:08:05Z #15 2.297 36550K .......... .......... .......... .......... .......... 28% 36.4M 2s +2024-03-07T01:08:05Z #15 2.298 36600K .......... .......... .......... .......... .......... 28% 14.4M 2s +2024-03-07T01:08:05Z #15 2.302 36650K .......... .......... .......... .......... .......... 28% 119M 2s +2024-03-07T01:08:05Z #15 2.302 36700K .......... .......... .......... .......... .......... 28% 111M 2s +2024-03-07T01:08:05Z #15 2.302 36750K .......... .......... .......... .......... .......... 29% 107M 2s +2024-03-07T01:08:05Z #15 2.303 36800K .......... .......... .......... .......... .......... 29% 30.4M 2s +2024-03-07T01:08:05Z #15 2.304 36850K .......... .......... .......... .......... .......... 29% 22.4M 2s +2024-03-07T01:08:05Z #15 2.306 36900K .......... .......... .......... .......... .......... 29% 79.7M 2s +2024-03-07T01:08:05Z #15 2.308 36950K .......... .......... .......... .......... .......... 29% 117M 2s +2024-03-07T01:08:05Z #15 2.308 37000K .......... .......... .......... .......... .......... 29% 45.9M 2s +2024-03-07T01:08:05Z #15 2.309 37050K .......... .......... .......... .......... .......... 29% 147M 2s +2024-03-07T01:08:05Z #15 2.309 37100K .......... .......... .......... .......... .......... 29% 76.8M 2s +2024-03-07T01:08:05Z #15 2.310 37150K .......... .......... .......... .......... .......... 29% 111M 2s +2024-03-07T01:08:05Z #15 2.310 37200K .......... .......... .......... .......... .......... 29% 127M 2s +2024-03-07T01:08:05Z #15 2.311 37250K .......... .......... .......... .......... .......... 29% 95.6M 2s +2024-03-07T01:08:05Z #15 2.311 37300K .......... .......... .......... .......... .......... 29% 163M 2s +2024-03-07T01:08:05Z #15 2.311 37350K .......... .......... .......... .......... .......... 29% 126M 2s +2024-03-07T01:08:05Z #15 2.312 37400K .......... .......... .......... .......... .......... 29% 115M 2s +2024-03-07T01:08:05Z #15 2.312 37450K .......... .......... .......... .......... .......... 29% 142M 2s +2024-03-07T01:08:05Z #15 2.312 37500K .......... .......... .......... .......... .......... 29% 126M 2s +2024-03-07T01:08:05Z #15 2.313 37550K .......... .......... .......... .......... .......... 29% 144M 2s +2024-03-07T01:08:05Z #15 2.314 37600K .......... .......... .......... .......... .......... 29% 129M 2s +2024-03-07T01:08:05Z #15 2.314 37650K .......... .......... .......... .......... .......... 29% 123M 2s +2024-03-07T01:08:05Z #15 2.314 37700K .......... .......... .......... .......... .......... 29% 136M 2s +2024-03-07T01:08:05Z #15 2.314 37750K .......... .......... .......... .......... .......... 29% 125M 2s +2024-03-07T01:08:05Z #15 2.315 37800K .......... .......... .......... .......... .......... 29% 69.3M 2s +2024-03-07T01:08:05Z #15 2.315 37850K .......... .......... .......... .......... .......... 29% 133M 2s +2024-03-07T01:08:05Z #15 2.316 37900K .......... .......... .......... .......... .......... 29% 135M 2s +2024-03-07T01:08:05Z #15 2.316 37950K .......... .......... .......... .......... .......... 29% 63.9M 2s +2024-03-07T01:08:05Z #15 2.317 38000K .......... .......... .......... .......... .......... 30% 143M 2s +2024-03-07T01:08:05Z #15 2.318 38050K .......... .......... .......... .......... .......... 30% 149M 2s +2024-03-07T01:08:05Z #15 2.318 38100K .......... .......... .......... .......... .......... 30% 140M 2s +2024-03-07T01:08:05Z #15 2.318 38150K .......... .......... .......... .......... .......... 30% 134M 2s +2024-03-07T01:08:05Z #15 2.318 38200K .......... .......... .......... .......... .......... 30% 146M 2s +2024-03-07T01:08:05Z #15 2.319 38250K .......... .......... .......... .......... .......... 30% 130M 2s +2024-03-07T01:08:05Z #15 2.319 38300K .......... .......... .......... .......... .......... 30% 148M 2s +2024-03-07T01:08:05Z #15 2.319 38350K .......... .......... .......... .......... .......... 30% 114M 2s +2024-03-07T01:08:05Z #15 2.320 38400K .......... .......... .......... .......... .......... 30% 123M 2s +2024-03-07T01:08:05Z #15 2.320 38450K .......... .......... .......... .......... .......... 30% 149M 2s +2024-03-07T01:08:05Z #15 2.321 38500K .......... .......... .......... .......... .......... 30% 122M 2s +2024-03-07T01:08:05Z #15 2.321 38550K .......... .......... .......... .......... .......... 30% 106M 2s +2024-03-07T01:08:05Z #15 2.322 38600K .......... .......... .......... .......... .......... 30% 83.7M 2s +2024-03-07T01:08:05Z #15 2.322 38650K .......... .......... .......... .......... .......... 30% 137M 2s +2024-03-07T01:08:05Z #15 2.322 38700K .......... .......... .......... .......... .......... 30% 114M 2s +2024-03-07T01:08:05Z #15 2.323 38750K .......... .......... .......... .......... .......... 30% 118M 2s +2024-03-07T01:08:05Z #15 2.323 38800K .......... .......... .......... .......... .......... 30% 97.9M 2s +2024-03-07T01:08:05Z #15 2.324 38850K .......... .......... .......... .......... .......... 30% 145M 2s +2024-03-07T01:08:05Z #15 2.324 38900K .......... .......... .......... .......... .......... 30% 141M 2s +2024-03-07T01:08:05Z #15 2.325 38950K .......... .......... .......... .......... .......... 30% 138M 2s +2024-03-07T01:08:05Z #15 2.325 39000K .......... .......... .......... .......... .......... 30% 118M 2s +2024-03-07T01:08:05Z #15 2.325 39050K .......... .......... .......... .......... .......... 30% 151M 2s +2024-03-07T01:08:05Z #15 2.326 39100K .......... .......... .......... .......... .......... 30% 138M 2s +2024-03-07T01:08:05Z #15 2.326 39150K .......... .......... .......... .......... .......... 30% 110M 2s +2024-03-07T01:08:05Z #15 2.327 39200K .......... .......... .......... .......... .......... 30% 153M 2s +2024-03-07T01:08:05Z #15 2.327 39250K .......... .......... .......... .......... .......... 30% 124M 2s +2024-03-07T01:08:05Z #15 2.327 39300K .......... .......... .......... .......... .......... 31% 152M 2s +2024-03-07T01:08:05Z #15 2.327 39350K .......... .......... .......... .......... .......... 31% 52.6M 2s +2024-03-07T01:08:05Z #15 2.328 39400K .......... .......... .......... .......... .......... 31% 158M 2s +2024-03-07T01:08:05Z #15 2.328 39450K .......... .......... .......... .......... .......... 31% 133M 2s +2024-03-07T01:08:05Z #15 2.329 39500K .......... .......... .......... .......... .......... 31% 68.2M 2s +2024-03-07T01:08:05Z #15 2.330 39550K .......... .......... .......... .......... .......... 31% 152M 2s +2024-03-07T01:08:05Z #15 2.330 39600K .......... .......... .......... .......... .......... 31% 177M 2s +2024-03-07T01:08:05Z #15 2.330 39650K .......... .......... .......... .......... .......... 31% 154M 2s +2024-03-07T01:08:05Z #15 2.330 39700K .......... .......... .......... .......... .......... 31% 161M 2s +2024-03-07T01:08:05Z #15 2.331 39750K .......... .......... .......... .......... .......... 31% 177M 2s +2024-03-07T01:08:05Z #15 2.331 39800K .......... .......... .......... .......... .......... 31% 175M 2s +2024-03-07T01:08:05Z #15 2.331 39850K .......... .......... .......... .......... .......... 31% 138M 2s +2024-03-07T01:08:05Z #15 2.332 39900K .......... .......... .......... .......... .......... 31% 161M 2s +2024-03-07T01:08:05Z #15 2.332 39950K .......... .......... .......... .......... .......... 31% 148M 2s +2024-03-07T01:08:05Z #15 2.332 40000K .......... .......... .......... .......... .......... 31% 176M 2s +2024-03-07T01:08:05Z #15 2.332 40050K .......... .......... .......... .......... .......... 31% 181M 2s +2024-03-07T01:08:05Z #15 2.333 40100K .......... .......... .......... .......... .......... 31% 178M 2s +2024-03-07T01:08:05Z #15 2.333 40150K .......... .......... .......... .......... .......... 31% 79.6M 2s +2024-03-07T01:08:05Z #15 2.334 40200K .......... .......... .......... .......... .......... 31% 125M 2s +2024-03-07T01:08:05Z #15 2.334 40250K .......... .......... .......... .......... .......... 31% 158M 2s +2024-03-07T01:08:05Z #15 2.334 40300K .......... .......... .......... .......... .......... 31% 176M 2s +2024-03-07T01:08:05Z #15 2.335 40350K .......... .......... .......... .......... .......... 31% 120M 2s +2024-03-07T01:08:05Z #15 2.335 40400K .......... .......... .......... .......... .......... 31% 91.1M 2s +2024-03-07T01:08:05Z #15 2.336 40450K .......... .......... .......... .......... .......... 31% 174M 2s +2024-03-07T01:08:05Z #15 2.336 40500K .......... .......... .......... .......... .......... 31% 166M 2s +2024-03-07T01:08:05Z #15 2.336 40550K .......... .......... .......... .......... .......... 32% 156M 2s +2024-03-07T01:08:05Z #15 2.336 40600K .......... .......... .......... .......... .......... 32% 172M 2s +2024-03-07T01:08:05Z #15 2.337 40650K .......... .......... .......... .......... .......... 32% 160M 2s +2024-03-07T01:08:05Z #15 2.337 40700K .......... .......... .......... .......... .......... 32% 175M 2s +2024-03-07T01:08:05Z #15 2.337 40750K .......... .......... .......... .......... .......... 32% 153M 2s +2024-03-07T01:08:05Z #15 2.338 40800K .......... .......... .......... .......... .......... 32% 147M 2s +2024-03-07T01:08:05Z #15 2.338 40850K .......... .......... .......... .......... .......... 32% 169M 2s +2024-03-07T01:08:05Z #15 2.338 40900K .......... .......... .......... .......... .......... 32% 143M 2s +2024-03-07T01:08:05Z #15 2.339 40950K .......... .......... .......... .......... .......... 32% 110M 2s +2024-03-07T01:08:05Z #15 2.339 41000K .......... .......... .......... .......... .......... 32% 73.1M 2s +2024-03-07T01:08:05Z #15 2.340 41050K .......... .......... .......... .......... .......... 32% 72.7M 2s +2024-03-07T01:08:05Z #15 2.341 41100K .......... .......... .......... .......... .......... 32% 116M 2s +2024-03-07T01:08:05Z #15 2.341 41150K .......... .......... .......... .......... .......... 32% 148M 2s +2024-03-07T01:08:05Z #15 2.341 41200K .......... .......... .......... .......... .......... 32% 134M 2s +2024-03-07T01:08:05Z #15 2.342 41250K .......... .......... .......... .......... .......... 32% 125M 2s +2024-03-07T01:08:05Z #15 2.342 41300K .......... .......... .......... .......... .......... 32% 170M 2s +2024-03-07T01:08:05Z #15 2.342 41350K .......... .......... .......... .......... .......... 32% 169M 2s +2024-03-07T01:08:05Z #15 2.342 41400K .......... .......... .......... .......... .......... 32% 69.4M 2s +2024-03-07T01:08:05Z #15 2.343 41450K .......... .......... .......... .......... .......... 32% 127M 2s +2024-03-07T01:08:05Z #15 2.344 41500K .......... .......... .......... .......... .......... 32% 169M 2s +2024-03-07T01:08:05Z #15 2.344 41550K .......... .......... .......... .......... .......... 32% 61.8M 2s +2024-03-07T01:08:05Z #15 2.345 41600K .......... .......... .......... .......... .......... 32% 131M 2s +2024-03-07T01:08:05Z #15 2.345 41650K .......... .......... .......... .......... .......... 32% 144M 2s +2024-03-07T01:08:05Z #15 2.345 41700K .......... .......... .......... .......... .......... 32% 92.4M 2s +2024-03-07T01:08:05Z #15 2.346 41750K .......... .......... .......... .......... .......... 32% 145M 2s +2024-03-07T01:08:05Z #15 2.346 41800K .......... .......... .......... .......... .......... 33% 163M 2s +2024-03-07T01:08:05Z #15 2.346 41850K .......... .......... .......... .......... .......... 33% 149M 2s +2024-03-07T01:08:05Z #15 2.347 41900K .......... .......... .......... .......... .......... 33% 151M 2s +2024-03-07T01:08:05Z #15 2.347 41950K .......... .......... .......... .......... .......... 33% 123M 2s +2024-03-07T01:08:05Z #15 2.348 42000K .......... .......... .......... .......... .......... 33% 67.3M 2s +2024-03-07T01:08:05Z #15 2.348 42050K .......... .......... .......... .......... .......... 33% 165M 2s +2024-03-07T01:08:05Z #15 2.349 42100K .......... .......... .......... .......... .......... 33% 64.8M 2s +2024-03-07T01:08:05Z #15 2.350 42150K .......... .......... .......... .......... .......... 33% 136M 2s +2024-03-07T01:08:05Z #15 2.350 42200K .......... .......... .......... .......... .......... 33% 148M 2s +2024-03-07T01:08:05Z #15 2.350 42250K .......... .......... .......... .......... .......... 33% 164M 2s +2024-03-07T01:08:05Z #15 2.350 42300K .......... .......... .......... .......... .......... 33% 102M 2s +2024-03-07T01:08:05Z #15 2.351 42350K .......... .......... .......... .......... .......... 33% 164M 2s +2024-03-07T01:08:05Z #15 2.351 42400K .......... .......... .......... .......... .......... 33% 73.2M 2s +2024-03-07T01:08:05Z #15 2.352 42450K .......... .......... .......... .......... .......... 33% 80.6M 2s +2024-03-07T01:08:05Z #15 2.352 42500K .......... .......... .......... .......... .......... 33% 134M 2s +2024-03-07T01:08:05Z #15 2.353 42550K .......... .......... .......... .......... .......... 33% 83.0M 2s +2024-03-07T01:08:05Z #15 2.353 42600K .......... .......... .......... .......... .......... 33% 145M 2s +2024-03-07T01:08:05Z #15 2.354 42650K .......... .......... .......... .......... .......... 33% 125M 2s +2024-03-07T01:08:05Z #15 2.354 42700K .......... .......... .......... .......... .......... 33% 106M 2s +2024-03-07T01:08:05Z #15 2.355 42750K .......... .......... .......... .......... .......... 33% 145M 2s +2024-03-07T01:08:05Z #15 2.355 42800K .......... .......... .......... .......... .......... 33% 134M 2s +2024-03-07T01:08:05Z #15 2.355 42850K .......... .......... .......... .......... .......... 33% 93.3M 2s +2024-03-07T01:08:05Z #15 2.356 42900K .......... .......... .......... .......... .......... 33% 71.8M 2s +2024-03-07T01:08:05Z #15 2.357 42950K .......... .......... .......... .......... .......... 33% 88.7M 2s +2024-03-07T01:08:05Z #15 2.357 43000K .......... .......... .......... .......... .......... 33% 83.5M 2s +2024-03-07T01:08:05Z #15 2.358 43050K .......... .......... .......... .......... .......... 33% 138M 2s +2024-03-07T01:08:05Z #15 2.359 43100K .......... .......... .......... .......... .......... 34% 98.8M 2s +2024-03-07T01:08:05Z #15 2.359 43150K .......... .......... .......... .......... .......... 34% 103M 2s +2024-03-07T01:08:05Z #15 2.360 43200K .......... .......... .......... .......... .......... 34% 142M 2s +2024-03-07T01:08:05Z #15 2.360 43250K .......... .......... .......... .......... .......... 34% 80.2M 2s +2024-03-07T01:08:05Z #15 2.361 43300K .......... .......... .......... .......... .......... 34% 106M 2s +2024-03-07T01:08:05Z #15 2.361 43350K .......... .......... .......... .......... .......... 34% 99.0M 2s +2024-03-07T01:08:05Z #15 2.361 43400K .......... .......... .......... .......... .......... 34% 89.7M 2s +2024-03-07T01:08:05Z #15 2.362 43450K .......... .......... .......... .......... .......... 34% 122M 2s +2024-03-07T01:08:05Z #15 2.363 43500K .......... .......... .......... .......... .......... 34% 73.8M 2s +2024-03-07T01:08:05Z #15 2.363 43550K .......... .......... .......... .......... .......... 34% 82.6M 2s +2024-03-07T01:08:05Z #15 2.364 43600K .......... .......... .......... .......... .......... 34% 127M 2s +2024-03-07T01:08:05Z #15 2.364 43650K .......... .......... .......... .......... .......... 34% 78.2M 2s +2024-03-07T01:08:05Z #15 2.364 43700K .......... .......... .......... .......... .......... 34% 131M 2s +2024-03-07T01:08:05Z #15 2.365 43750K .......... .......... .......... .......... .......... 34% 144M 2s +2024-03-07T01:08:05Z #15 2.365 43800K .......... .......... .......... .......... .......... 34% 62.8M 2s +2024-03-07T01:08:05Z #15 2.365 43850K .......... .......... .......... .......... .......... 34% 133M 2s +2024-03-07T01:08:05Z #15 2.366 43900K .......... .......... .......... .......... .......... 34% 144M 2s +2024-03-07T01:08:05Z #15 2.367 43950K .......... .......... .......... .......... .......... 34% 56.7M 2s +2024-03-07T01:08:05Z #15 2.367 44000K .......... .......... .......... .......... .......... 34% 150M 2s +2024-03-07T01:08:05Z #15 2.368 44050K .......... .......... .......... .......... .......... 34% 128M 2s +2024-03-07T01:08:05Z #15 2.368 44100K .......... .......... .......... .......... .......... 34% 67.2M 2s +2024-03-07T01:08:05Z #15 2.369 44150K .......... .......... .......... .......... .......... 34% 121M 2s +2024-03-07T01:08:05Z #15 2.369 44200K .......... .......... .......... .......... .......... 34% 107M 2s +2024-03-07T01:08:05Z #15 2.369 44250K .......... .......... .......... .......... .......... 34% 84.9M 2s +2024-03-07T01:08:05Z #15 2.370 44300K .......... .......... .......... .......... .......... 34% 141M 2s +2024-03-07T01:08:05Z #15 2.370 44350K .......... .......... .......... .......... .......... 35% 77.9M 2s +2024-03-07T01:08:05Z #15 2.371 44400K .......... .......... .......... .......... .......... 35% 88.7M 2s +2024-03-07T01:08:05Z #15 2.372 44450K .......... .......... .......... .......... .......... 35% 143M 2s +2024-03-07T01:08:05Z #15 2.372 44500K .......... .......... .......... .......... .......... 35% 74.7M 2s +2024-03-07T01:08:05Z #15 2.373 44550K .......... .......... .......... .......... .......... 35% 111M 2s +2024-03-07T01:08:05Z #15 2.373 44600K .......... .......... .......... .......... .......... 35% 115M 2s +2024-03-07T01:08:05Z #15 2.374 44650K .......... .......... .......... .......... .......... 35% 89.3M 2s +2024-03-07T01:08:05Z #15 2.374 44700K .......... .......... .......... .......... .......... 35% 118M 2s +2024-03-07T01:08:05Z #15 2.375 44750K .......... .......... .......... .......... .......... 35% 69.1M 2s +2024-03-07T01:08:05Z #15 2.376 44800K .......... .......... .......... .......... .......... 35% 96.4M 2s +2024-03-07T01:08:05Z #15 2.376 44850K .......... .......... .......... .......... .......... 35% 82.0M 2s +2024-03-07T01:08:05Z #15 2.377 44900K .......... .......... .......... .......... .......... 35% 141M 2s +2024-03-07T01:08:05Z #15 2.377 44950K .......... .......... .......... .......... .......... 35% 88.8M 2s +2024-03-07T01:08:05Z #15 2.377 45000K .......... .......... .......... .......... .......... 35% 99.9M 2s +2024-03-07T01:08:05Z #15 2.377 45050K .......... .......... .......... .......... .......... 35% 118M 2s +2024-03-07T01:08:05Z #15 2.378 45100K .......... .......... .......... .......... .......... 35% 68.5M 2s +2024-03-07T01:08:05Z #15 2.379 45150K .......... .......... .......... .......... .......... 35% 103M 2s +2024-03-07T01:08:05Z #15 2.379 45200K .......... .......... .......... .......... .......... 35% 141M 2s +2024-03-07T01:08:05Z #15 2.383 45250K .......... .......... .......... .......... .......... 35% 71.2M 2s +2024-03-07T01:08:05Z #15 2.383 45300K .......... .......... .......... .......... .......... 35% 122M 2s +2024-03-07T01:08:05Z #15 2.383 45350K .......... .......... .......... .......... .......... 35% 98.1M 2s +2024-03-07T01:08:05Z #15 2.383 45400K .......... .......... .......... .......... .......... 35% 69.9M 2s +2024-03-07T01:08:05Z #15 2.383 45450K .......... .......... .......... .......... .......... 35% 137M 2s +2024-03-07T01:08:05Z #15 2.383 45500K .......... .......... .......... .......... .......... 35% 83.2M 2s +2024-03-07T01:08:05Z #15 2.383 45550K .......... .......... .......... .......... .......... 35% 85.5M 2s +2024-03-07T01:08:05Z #15 2.383 45600K .......... .......... .......... .......... .......... 36% 95.6M 2s +2024-03-07T01:08:05Z #15 2.384 45650K .......... .......... .......... .......... .......... 36% 77.6M 2s +2024-03-07T01:08:05Z #15 2.385 45700K .......... .......... .......... .......... .......... 36% 117M 2s +2024-03-07T01:08:05Z #15 2.385 45750K .......... .......... .......... .......... .......... 36% 132M 2s +2024-03-07T01:08:05Z #15 2.385 45800K .......... .......... .......... .......... .......... 36% 102M 2s +2024-03-07T01:08:05Z #15 2.395 45850K .......... .......... .......... .......... .......... 36% 174M 2s +2024-03-07T01:08:05Z #15 2.395 45900K .......... .......... .......... .......... .......... 36% 167M 2s +2024-03-07T01:08:05Z #15 2.395 45950K .......... .......... .......... .......... .......... 36% 152M 2s +2024-03-07T01:08:05Z #15 2.395 46000K .......... .......... .......... .......... .......... 36% 75.0M 2s +2024-03-07T01:08:05Z #15 2.395 46050K .......... .......... .......... .......... .......... 36% 87.7M 2s +2024-03-07T01:08:05Z #15 2.395 46100K .......... .......... .......... .......... .......... 36% 92.2M 2s +2024-03-07T01:08:05Z #15 2.395 46150K .......... .......... .......... .......... .......... 36% 98.5M 2s +2024-03-07T01:08:05Z #15 2.395 46200K .......... .......... .......... .......... .......... 36% 85.4M 2s +2024-03-07T01:08:05Z #15 2.395 46250K .......... .......... .......... .......... .......... 36% 117M 2s +2024-03-07T01:08:05Z #15 2.395 46300K .......... .......... .......... .......... .......... 36% 178M 2s +2024-03-07T01:08:05Z #15 2.395 46350K .......... .......... .......... .......... .......... 36% 153M 2s +2024-03-07T01:08:05Z #15 2.395 46400K .......... .......... .......... .......... .......... 36% 157M 2s +2024-03-07T01:08:05Z #15 2.395 46450K .......... .......... .......... .......... .......... 36% 143M 2s +2024-03-07T01:08:05Z #15 2.395 46500K .......... .......... .......... .......... .......... 36% 145M 2s +2024-03-07T01:08:05Z #15 2.395 46550K .......... .......... .......... .......... .......... 36% 81.7M 2s +2024-03-07T01:08:05Z #15 2.395 46600K .......... .......... .......... .......... .......... 36% 65.8M 2s +2024-03-07T01:08:05Z #15 2.395 46650K .......... .......... .......... .......... .......... 36% 127M 2s +2024-03-07T01:08:05Z #15 2.395 46700K .......... .......... .......... .......... .......... 36% 62.2M 2s +2024-03-07T01:08:05Z #15 2.395 46750K .......... .......... .......... .......... .......... 36% 132M 2s +2024-03-07T01:08:05Z #15 2.395 46800K .......... .......... .......... .......... .......... 36% 94.1M 2s +2024-03-07T01:08:05Z #15 2.395 46850K .......... .......... .......... .......... .......... 36% 81.7M 2s +2024-03-07T01:08:05Z #15 2.395 46900K .......... .......... .......... .......... .......... 37% 45.6M 2s +2024-03-07T01:08:05Z #15 2.396 46950K .......... .......... .......... .......... .......... 37% 124M 2s +2024-03-07T01:08:05Z #15 2.397 47000K .......... .......... .......... .......... .......... 37% 135M 2s +2024-03-07T01:08:05Z #15 2.397 47050K .......... .......... .......... .......... .......... 37% 63.7M 2s +2024-03-07T01:08:05Z #15 2.398 47100K .......... .......... .......... .......... .......... 37% 134M 2s +2024-03-07T01:08:05Z #15 2.398 47150K .......... .......... .......... .......... .......... 37% 64.6M 2s +2024-03-07T01:08:05Z #15 2.399 47200K .......... .......... .......... .......... .......... 37% 115M 2s +2024-03-07T01:08:05Z #15 2.399 47250K .......... .......... .......... .......... .......... 37% 73.6M 2s +2024-03-07T01:08:05Z #15 2.400 47300K .......... .......... .......... .......... .......... 37% 132M 2s +2024-03-07T01:08:05Z #15 2.400 47350K .......... .......... .......... .......... .......... 37% 113M 2s +2024-03-07T01:08:05Z #15 2.401 47400K .......... .......... .......... .......... .......... 37% 141M 2s +2024-03-07T01:08:05Z #15 2.401 47450K .......... .......... .......... .......... .......... 37% 148M 2s +2024-03-07T01:08:05Z #15 2.401 47500K .......... .......... .......... .......... .......... 37% 62.8M 2s +2024-03-07T01:08:05Z #15 2.403 47550K .......... .......... .......... .......... .......... 37% 104M 2s +2024-03-07T01:08:05Z #15 2.403 47600K .......... .......... .......... .......... .......... 37% 65.3M 2s +2024-03-07T01:08:05Z #15 2.407 47650K .......... .......... .......... .......... .......... 37% 108M 2s +2024-03-07T01:08:05Z #15 2.407 47700K .......... .......... .......... .......... .......... 37% 122M 2s +2024-03-07T01:08:05Z #15 2.407 47750K .......... .......... .......... .......... .......... 37% 79.4M 2s +2024-03-07T01:08:05Z #15 2.407 47800K .......... .......... .......... .......... .......... 37% 92.6M 1s +2024-03-07T01:08:05Z #15 2.407 47850K .......... .......... .......... .......... .......... 37% 125M 1s +2024-03-07T01:08:05Z #15 2.407 47900K .......... .......... .......... .......... .......... 37% 124M 1s +2024-03-07T01:08:05Z #15 2.407 47950K .......... .......... .......... .......... .......... 37% 58.3M 1s +2024-03-07T01:08:05Z #15 2.407 48000K .......... .......... .......... .......... .......... 37% 89.7M 1s +2024-03-07T01:08:05Z #15 2.411 48050K .......... .......... .......... .......... .......... 37% 78.2M 1s +2024-03-07T01:08:05Z #15 2.411 48100K .......... .......... .......... .......... .......... 37% 82.4M 1s +2024-03-07T01:08:05Z #15 2.411 48150K .......... .......... .......... .......... .......... 38% 98.4M 1s +2024-03-07T01:08:05Z #15 2.411 48200K .......... .......... .......... .......... .......... 38% 103M 1s +2024-03-07T01:08:05Z #15 2.411 48250K .......... .......... .......... .......... .......... 38% 86.7M 1s +2024-03-07T01:08:05Z #15 2.411 48300K .......... .......... .......... .......... .......... 38% 72.5M 1s +2024-03-07T01:08:05Z #15 2.411 48350K .......... .......... .......... .......... .......... 38% 71.0M 1s +2024-03-07T01:08:05Z #15 2.415 48400K .......... .......... .......... .......... .......... 38% 59.3M 1s +2024-03-07T01:08:05Z #15 2.415 48450K .......... .......... .......... .......... .......... 38% 123M 1s +2024-03-07T01:08:05Z #15 2.415 48500K .......... .......... .......... .......... .......... 38% 125M 1s +2024-03-07T01:08:05Z #15 2.415 48550K .......... .......... .......... .......... .......... 38% 96.3M 1s +2024-03-07T01:08:05Z #15 2.415 48600K .......... .......... .......... .......... .......... 38% 125M 1s +2024-03-07T01:08:05Z #15 2.415 48650K .......... .......... .......... .......... .......... 38% 109M 1s +2024-03-07T01:08:05Z #15 2.415 48700K .......... .......... .......... .......... .......... 38% 76.6M 1s +2024-03-07T01:08:05Z #15 2.416 48750K .......... .......... .......... .......... .......... 38% 58.6M 1s +2024-03-07T01:08:05Z #15 2.416 48800K .......... .......... .......... .......... .......... 38% 80.7M 1s +2024-03-07T01:08:05Z #15 2.417 48850K .......... .......... .......... .......... .......... 38% 62.6M 1s +2024-03-07T01:08:05Z #15 2.418 48900K .......... .......... .......... .......... .......... 38% 103M 1s +2024-03-07T01:08:05Z #15 2.418 48950K .......... .......... .......... .......... .......... 38% 108M 1s +2024-03-07T01:08:05Z #15 2.419 49000K .......... .......... .......... .......... .......... 38% 95.8M 1s +2024-03-07T01:08:05Z #15 2.419 49050K .......... .......... .......... .......... .......... 38% 106M 1s +2024-03-07T01:08:05Z #15 2.423 49100K .......... .......... .......... .......... .......... 38% 136M 1s +2024-03-07T01:08:05Z #15 2.423 49150K .......... .......... .......... .......... .......... 38% 98.6M 1s +2024-03-07T01:08:05Z #15 2.423 49200K .......... .......... .......... .......... .......... 38% 54.0M 1s +2024-03-07T01:08:05Z #15 2.423 49250K .......... .......... .......... .......... .......... 38% 74.7M 1s +2024-03-07T01:08:05Z #15 2.423 49300K .......... .......... .......... .......... .......... 38% 73.8M 1s +2024-03-07T01:08:05Z #15 2.423 49350K .......... .......... .......... .......... .......... 38% 113M 1s +2024-03-07T01:08:05Z #15 2.423 49400K .......... .......... .......... .......... .......... 39% 75.8M 1s +2024-03-07T01:08:05Z #15 2.424 49450K .......... .......... .......... .......... .......... 39% 99.8M 1s +2024-03-07T01:08:05Z #15 2.424 49500K .......... .......... .......... .......... .......... 39% 98.0M 1s +2024-03-07T01:08:05Z #15 2.425 49550K .......... .......... .......... .......... .......... 39% 69.0M 1s +2024-03-07T01:08:05Z #15 2.425 49600K .......... .......... .......... .......... .......... 39% 102M 1s +2024-03-07T01:08:05Z #15 2.426 49650K .......... .......... .......... .......... .......... 39% 65.1M 1s +2024-03-07T01:08:05Z #15 2.427 49700K .......... .......... .......... .......... .......... 39% 106M 1s +2024-03-07T01:08:05Z #15 2.427 49750K .......... .......... .......... .......... .......... 39% 102M 1s +2024-03-07T01:08:05Z #15 2.428 49800K .......... .......... .......... .......... .......... 39% 94.8M 1s +2024-03-07T01:08:05Z #15 2.428 49850K .......... .......... .......... .......... .......... 39% 128M 1s +2024-03-07T01:08:05Z #15 2.429 49900K .......... .......... .......... .......... .......... 39% 59.0M 1s +2024-03-07T01:08:05Z #15 2.432 49950K .......... .......... .......... .......... .......... 39% 101M 1s +2024-03-07T01:08:05Z #15 2.432 50000K .......... .......... .......... .......... .......... 39% 180M 1s +2024-03-07T01:08:05Z #15 2.432 50050K .......... .......... .......... .......... .......... 39% 133M 1s +2024-03-07T01:08:05Z #15 2.432 50100K .......... .......... .......... .......... .......... 39% 175M 1s +2024-03-07T01:08:05Z #15 2.432 50150K .......... .......... .......... .......... .......... 39% 128M 1s +2024-03-07T01:08:05Z #15 2.432 50200K .......... .......... .......... .......... .......... 39% 165M 1s +2024-03-07T01:08:05Z #15 2.432 50250K .......... .......... .......... .......... .......... 39% 84.2M 1s +2024-03-07T01:08:05Z #15 2.432 50300K .......... .......... .......... .......... .......... 39% 123M 1s +2024-03-07T01:08:05Z #15 2.432 50350K .......... .......... .......... .......... .......... 39% 106M 1s +2024-03-07T01:08:05Z #15 2.433 50400K .......... .......... .......... .......... .......... 39% 135M 1s +2024-03-07T01:08:05Z #15 2.433 50450K .......... .......... .......... .......... .......... 39% 116M 1s +2024-03-07T01:08:05Z #15 2.434 50500K .......... .......... .......... .......... .......... 39% 129M 1s +2024-03-07T01:08:05Z #15 2.434 50550K .......... .......... .......... .......... .......... 39% 127M 1s +2024-03-07T01:08:05Z #15 2.435 50600K .......... .......... .......... .......... .......... 39% 120M 1s +2024-03-07T01:08:05Z #15 2.435 50650K .......... .......... .......... .......... .......... 39% 130M 1s +2024-03-07T01:08:05Z #15 2.435 50700K .......... .......... .......... .......... .......... 40% 136M 1s +2024-03-07T01:08:05Z #15 2.436 50750K .......... .......... .......... .......... .......... 40% 137M 1s +2024-03-07T01:08:05Z #15 2.436 50800K .......... .......... .......... .......... .......... 40% 110M 1s +2024-03-07T01:08:05Z #15 2.437 50850K .......... .......... .......... .......... .......... 40% 154M 1s +2024-03-07T01:08:05Z #15 2.437 50900K .......... .......... .......... .......... .......... 40% 124M 1s +2024-03-07T01:08:05Z #15 2.437 50950K .......... .......... .......... .......... .......... 40% 17.5M 1s +2024-03-07T01:08:05Z #15 2.443 51000K .......... .......... .......... .......... .......... 40% 157M 1s +2024-03-07T01:08:05Z #15 2.443 51050K .......... .......... .......... .......... .......... 40% 151M 1s +2024-03-07T01:08:05Z #15 2.443 51100K .......... .......... .......... .......... .......... 40% 175M 1s +2024-03-07T01:08:05Z #15 2.443 51150K .......... .......... .......... .......... .......... 40% 172M 1s +2024-03-07T01:08:05Z #15 2.443 51200K .......... .......... .......... .......... .......... 40% 146M 1s +2024-03-07T01:08:05Z #15 2.443 51250K .......... .......... .......... .......... .......... 40% 183M 1s +2024-03-07T01:08:05Z #15 2.443 51300K .......... .......... .......... .......... .......... 40% 169M 1s +2024-03-07T01:08:05Z #15 2.443 51350K .......... .......... .......... .......... .......... 40% 173M 1s +2024-03-07T01:08:05Z #15 2.443 51400K .......... .......... .......... .......... .......... 40% 143M 1s +2024-03-07T01:08:05Z #15 2.443 51450K .......... .......... .......... .......... .......... 40% 176M 1s +2024-03-07T01:08:05Z #15 2.443 51500K .......... .......... .......... .......... .......... 40% 159M 1s +2024-03-07T01:08:05Z #15 2.443 51550K .......... .......... .......... .......... .......... 40% 170M 1s +2024-03-07T01:08:05Z #15 2.443 51600K .......... .......... .......... .......... .......... 40% 11.2M 1s +2024-03-07T01:08:05Z #15 2.448 51650K .......... .......... .......... .......... .......... 40% 40.8M 1s +2024-03-07T01:08:05Z #15 2.456 51700K .......... .......... .......... .......... .......... 40% 162M 1s +2024-03-07T01:08:05Z #15 2.456 51750K .......... .......... .......... .......... .......... 40% 177M 1s +2024-03-07T01:08:05Z #15 2.456 51800K .......... .......... .......... .......... .......... 40% 185M 1s +2024-03-07T01:08:05Z #15 2.456 51850K .......... .......... .......... .......... .......... 40% 149M 1s +2024-03-07T01:08:05Z #15 2.456 51900K .......... .......... .......... .......... .......... 40% 168M 1s +2024-03-07T01:08:05Z #15 2.456 51950K .......... .......... .......... .......... .......... 41% 176M 1s +2024-03-07T01:08:05Z #15 2.456 52000K .......... .......... .......... .......... .......... 41% 148M 1s +2024-03-07T01:08:05Z #15 2.456 52050K .......... .......... .......... .......... .......... 41% 177M 1s +2024-03-07T01:08:05Z #15 2.456 52100K .......... .......... .......... .......... .......... 41% 665K 1s +2024-03-07T01:08:05Z #15 2.527 52150K .......... .......... .......... .......... .......... 41% 130M 1s +2024-03-07T01:08:05Z #15 2.527 52200K .......... .......... .......... .......... .......... 41% 135M 1s +2024-03-07T01:08:05Z #15 2.527 52250K .......... .......... .......... .......... .......... 41% 119M 1s +2024-03-07T01:08:05Z #15 2.528 52300K .......... .......... .......... .......... .......... 41% 142M 1s +2024-03-07T01:08:05Z #15 2.528 52350K .......... .......... .......... .......... .......... 41% 121M 1s +2024-03-07T01:08:05Z #15 2.529 52400K .......... .......... .......... .......... .......... 41% 133M 1s +2024-03-07T01:08:05Z #15 2.529 52450K .......... .......... .......... .......... .......... 41% 133M 1s +2024-03-07T01:08:05Z #15 2.529 52500K .......... .......... .......... .......... .......... 41% 131M 1s +2024-03-07T01:08:05Z #15 2.530 52550K .......... .......... .......... .......... .......... 41% 155M 1s +2024-03-07T01:08:05Z #15 2.530 52600K .......... .......... .......... .......... .......... 41% 114M 1s +2024-03-07T01:08:05Z #15 2.531 52650K .......... .......... .......... .......... .......... 41% 161M 1s +2024-03-07T01:08:05Z #15 2.531 52700K .......... .......... .......... .......... .......... 41% 134M 1s +2024-03-07T01:08:05Z #15 2.531 52750K .......... .......... .......... .......... .......... 41% 138M 1s +2024-03-07T01:08:05Z #15 2.532 52800K .......... .......... .......... .......... .......... 41% 31.1M 1s +2024-03-07T01:08:05Z #15 2.535 52850K .......... .......... .......... .......... .......... 41% 149M 1s +2024-03-07T01:08:05Z #15 2.535 52900K .......... .......... .......... .......... .......... 41% 113M 1s +2024-03-07T01:08:05Z #15 2.535 52950K .......... .......... .......... .......... .......... 41% 124M 1s +2024-03-07T01:08:05Z #15 2.535 53000K .......... .......... .......... .......... .......... 41% 132M 1s +2024-03-07T01:08:05Z #15 2.535 53050K .......... .......... .......... .......... .......... 41% 118M 1s +2024-03-07T01:08:05Z #15 2.535 53100K .......... .......... .......... .......... .......... 41% 147M 1s +2024-03-07T01:08:05Z #15 2.535 53150K .......... .......... .......... .......... .......... 41% 128M 1s +2024-03-07T01:08:05Z #15 2.535 53200K .......... .......... .......... .......... .......... 42% 23.8M 1s +2024-03-07T01:08:05Z #15 2.544 53250K .......... .......... .......... .......... .......... 42% 83.3M 1s +2024-03-07T01:08:05Z #15 2.544 53300K .......... .......... .......... .......... .......... 42% 145M 1s +2024-03-07T01:08:05Z #15 2.544 53350K .......... .......... .......... .......... .......... 42% 130M 1s +2024-03-07T01:08:05Z #15 2.544 53400K .......... .......... .......... .......... .......... 42% 137M 1s +2024-03-07T01:08:05Z #15 2.544 53450K .......... .......... .......... .......... .......... 42% 148M 1s +2024-03-07T01:08:05Z #15 2.544 53500K .......... .......... .......... .......... .......... 42% 109M 1s +2024-03-07T01:08:05Z #15 2.544 53550K .......... .......... .......... .......... .......... 42% 139M 1s +2024-03-07T01:08:05Z #15 2.544 53600K .......... .......... .......... .......... .......... 42% 153M 1s +2024-03-07T01:08:05Z #15 2.544 53650K .......... .......... .......... .......... .......... 42% 140M 1s +2024-03-07T01:08:05Z #15 2.544 53700K .......... .......... .......... .......... .......... 42% 127M 1s +2024-03-07T01:08:05Z #15 2.544 53750K .......... .......... .......... .......... .......... 42% 142M 1s +2024-03-07T01:08:05Z #15 2.544 53800K .......... .......... .......... .......... .......... 42% 142M 1s +2024-03-07T01:08:05Z #15 2.544 53850K .......... .......... .......... .......... .......... 42% 155M 1s +2024-03-07T01:08:05Z #15 2.544 53900K .......... .......... .......... .......... .......... 42% 176M 1s +2024-03-07T01:08:05Z #15 2.544 53950K .......... .......... .......... .......... .......... 42% 151M 1s +2024-03-07T01:08:05Z #15 2.544 54000K .......... .......... .......... .......... .......... 42% 153M 1s +2024-03-07T01:08:05Z #15 2.544 54050K .......... .......... .......... .......... .......... 42% 43.6M 1s +2024-03-07T01:08:05Z #15 2.544 54100K .......... .......... .......... .......... .......... 42% 18.0M 1s +2024-03-07T01:08:05Z #15 2.547 54150K .......... .......... .......... .......... .......... 42% 10.3M 1s +2024-03-07T01:08:05Z #15 2.552 54200K .......... .......... .......... .......... .......... 42% 62.4M 1s +2024-03-07T01:08:05Z #15 2.555 54250K .......... .......... .......... .......... .......... 42% 23.6M 1s +2024-03-07T01:08:05Z #15 2.556 54300K .......... .......... .......... .......... .......... 42% 116M 1s +2024-03-07T01:08:05Z #15 2.556 54350K .......... .......... .......... .......... .......... 42% 160M 1s +2024-03-07T01:08:05Z #15 2.556 54400K .......... .......... .......... .......... .......... 42% 168M 1s +2024-03-07T01:08:05Z #15 2.556 54450K .......... .......... .......... .......... .......... 42% 206M 1s +2024-03-07T01:08:05Z #15 2.556 54500K .......... .......... .......... .......... .......... 43% 103M 1s +2024-03-07T01:08:05Z #15 2.556 54550K .......... .......... .......... .......... .......... 43% 98.2M 1s +2024-03-07T01:08:05Z #15 2.557 54600K .......... .......... .......... .......... .......... 43% 139M 1s +2024-03-07T01:08:05Z #15 2.560 54650K .......... .......... .......... .......... .......... 43% 74.7M 1s +2024-03-07T01:08:05Z #15 2.560 54700K .......... .......... .......... .......... .......... 43% 170M 1s +2024-03-07T01:08:05Z #15 2.560 54750K .......... .......... .......... .......... .......... 43% 156M 1s +2024-03-07T01:08:05Z #15 2.560 54800K .......... .......... .......... .......... .......... 43% 185M 1s +2024-03-07T01:08:05Z #15 2.560 54850K .......... .......... .......... .......... .......... 43% 11.1M 1s +2024-03-07T01:08:05Z #15 2.564 54900K .......... .......... .......... .......... .......... 43% 65.9M 1s +2024-03-07T01:08:05Z #15 2.567 54950K .......... .......... .......... .......... .......... 43% 137M 1s +2024-03-07T01:08:05Z #15 2.567 55000K .......... .......... .......... .......... .......... 43% 28.9M 1s +2024-03-07T01:08:05Z #15 2.567 55050K .......... .......... .......... .......... .......... 43% 124M 1s +2024-03-07T01:08:05Z #15 2.567 55100K .......... .......... .......... .......... .......... 43% 162M 1s +2024-03-07T01:08:05Z #15 2.568 55150K .......... .......... .......... .......... .......... 43% 10.6M 1s +2024-03-07T01:08:05Z #15 2.571 55200K .......... .......... .......... .......... .......... 43% 10.3M 1s +2024-03-07T01:08:05Z #15 2.576 55250K .......... .......... .......... .......... .......... 43% 22.4M 1s +2024-03-07T01:08:05Z #15 2.578 55300K .......... .......... .......... .......... .......... 43% 54.0M 1s +2024-03-07T01:08:05Z #15 2.579 55350K .......... .......... .......... .......... .......... 43% 39.0M 1s +2024-03-07T01:08:05Z #15 2.581 55400K .......... .......... .......... .......... .......... 43% 53.5M 1s +2024-03-07T01:08:05Z #15 2.583 55450K .......... .......... .......... .......... .......... 43% 94.5M 1s +2024-03-07T01:08:05Z #15 2.583 55500K .......... .......... .......... .......... .......... 43% 170M 1s +2024-03-07T01:08:05Z #15 2.583 55550K .......... .......... .......... .......... .......... 43% 119M 1s +2024-03-07T01:08:05Z #15 2.583 55600K .......... .......... .......... .......... .......... 43% 128M 1s +2024-03-07T01:08:05Z #15 2.583 55650K .......... .......... .......... .......... .......... 43% 126M 1s +2024-03-07T01:08:05Z #15 2.583 55700K .......... .......... .......... .......... .......... 43% 17.6M 1s +2024-03-07T01:08:05Z #15 2.587 55750K .......... .......... .......... .......... .......... 44% 40.8M 1s +2024-03-07T01:08:05Z #15 2.587 55800K .......... .......... .......... .......... .......... 44% 48.4M 1s +2024-03-07T01:08:05Z #15 2.591 55850K .......... .......... .......... .......... .......... 44% 63.2M 1s +2024-03-07T01:08:05Z #15 2.591 55900K .......... .......... .......... .......... .......... 44% 137M 1s +2024-03-07T01:08:05Z #15 2.591 55950K .......... .......... .......... .......... .......... 44% 174M 1s +2024-03-07T01:08:05Z #15 2.591 56000K .......... .......... .......... .......... .......... 44% 150M 1s +2024-03-07T01:08:05Z #15 2.591 56050K .......... .......... .......... .......... .......... 44% 131M 1s +2024-03-07T01:08:05Z #15 2.591 56100K .......... .......... .......... .......... .......... 44% 150M 1s +2024-03-07T01:08:05Z #15 2.591 56150K .......... .......... .......... .......... .......... 44% 163M 1s +2024-03-07T01:08:05Z #15 2.591 56200K .......... .......... .......... .......... .......... 44% 152M 1s +2024-03-07T01:08:05Z #15 2.591 56250K .......... .......... .......... .......... .......... 44% 24.2M 1s +2024-03-07T01:08:05Z #15 2.593 56300K .......... .......... .......... .......... .......... 44% 31.8M 1s +2024-03-07T01:08:05Z #15 2.596 56350K .......... .......... .......... .......... .......... 44% 28.6M 1s +2024-03-07T01:08:05Z #15 2.597 56400K .......... .......... .......... .......... .......... 44% 37.5M 1s +2024-03-07T01:08:05Z #15 2.598 56450K .......... .......... .......... .......... .......... 44% 79.5M 1s +2024-03-07T01:08:05Z #15 2.599 56500K .......... .......... .......... .......... .......... 44% 182M 1s +2024-03-07T01:08:05Z #15 2.599 56550K .......... .......... .......... .......... .......... 44% 38.3M 1s +2024-03-07T01:08:05Z #15 2.601 56600K .......... .......... .......... .......... .......... 44% 48.5M 1s +2024-03-07T01:08:05Z #15 2.601 56650K .......... .......... .......... .......... .......... 44% 20.9M 1s +2024-03-07T01:08:05Z #15 2.603 56700K .......... .......... .......... .......... .......... 44% 51.7M 1s +2024-03-07T01:08:05Z #15 2.607 56750K .......... .......... .......... .......... .......... 44% 123M 1s +2024-03-07T01:08:05Z #15 2.607 56800K .......... .......... .......... .......... .......... 44% 184M 1s +2024-03-07T01:08:05Z #15 2.607 56850K .......... .......... .......... .......... .......... 44% 140M 1s +2024-03-07T01:08:05Z #15 2.607 56900K .......... .......... .......... .......... .......... 44% 174M 1s +2024-03-07T01:08:05Z #15 2.607 56950K .......... .......... .......... .......... .......... 44% 153M 1s +2024-03-07T01:08:05Z #15 2.607 57000K .......... .......... .......... .......... .......... 44% 126M 1s +2024-03-07T01:08:05Z #15 2.607 57050K .......... .......... .......... .......... .......... 45% 152M 1s +2024-03-07T01:08:05Z #15 2.607 57100K .......... .......... .......... .......... .......... 45% 151M 1s +2024-03-07T01:08:05Z #15 2.607 57150K .......... .......... .......... .......... .......... 45% 141M 1s +2024-03-07T01:08:05Z #15 2.607 57200K .......... .......... .......... .......... .......... 45% 84.9M 1s +2024-03-07T01:08:05Z #15 2.608 57250K .......... .......... .......... .......... .......... 45% 12.2M 1s +2024-03-07T01:08:05Z #15 2.612 57300K .......... .......... .......... .......... .......... 45% 28.0M 1s +2024-03-07T01:08:05Z #15 2.614 57350K .......... .......... .......... .......... .......... 45% 26.7M 1s +2024-03-07T01:08:05Z #15 2.615 57400K .......... .......... .......... .......... .......... 45% 98.1M 1s +2024-03-07T01:08:05Z #15 2.616 57450K .......... .......... .......... .......... .......... 45% 48.5M 1s +2024-03-07T01:08:05Z #15 2.617 57500K .......... .......... .......... .......... .......... 45% 71.6M 1s +2024-03-07T01:08:05Z #15 2.618 57550K .......... .......... .......... .......... .......... 45% 122M 1s +2024-03-07T01:08:05Z #15 2.618 57600K .......... .......... .......... .......... .......... 45% 53.9M 1s +2024-03-07T01:08:05Z #15 2.624 57650K .......... .......... .......... .......... .......... 45% 153M 1s +2024-03-07T01:08:05Z #15 2.624 57700K .......... .......... .......... .......... .......... 45% 139M 1s +2024-03-07T01:08:05Z #15 2.624 57750K .......... .......... .......... .......... .......... 45% 105M 1s +2024-03-07T01:08:05Z #15 2.624 57800K .......... .......... .......... .......... .......... 45% 142M 1s +2024-03-07T01:08:05Z #15 2.624 57850K .......... .......... .......... .......... .......... 45% 134M 1s +2024-03-07T01:08:05Z #15 2.624 57900K .......... .......... .......... .......... .......... 45% 148M 1s +2024-03-07T01:08:05Z #15 2.624 57950K .......... .......... .......... .......... .......... 45% 133M 1s +2024-03-07T01:08:05Z #15 2.624 58000K .......... .......... .......... .......... .......... 45% 145M 1s +2024-03-07T01:08:05Z #15 2.624 58050K .......... .......... .......... .......... .......... 45% 168M 1s +2024-03-07T01:08:05Z #15 2.624 58100K .......... .......... .......... .......... .......... 45% 125M 1s +2024-03-07T01:08:05Z #15 2.624 58150K .......... .......... .......... .......... .......... 45% 136M 1s +2024-03-07T01:08:05Z #15 2.624 58200K .......... .......... .......... .......... .......... 45% 143M 1s +2024-03-07T01:08:05Z #15 2.624 58250K .......... .......... .......... .......... .......... 45% 158M 1s +2024-03-07T01:08:05Z #15 2.624 58300K .......... .......... .......... .......... .......... 46% 29.7M 1s +2024-03-07T01:08:05Z #15 2.625 58350K .......... .......... .......... .......... .......... 46% 20.6M 1s +2024-03-07T01:08:05Z #15 2.632 58400K .......... .......... .......... .......... .......... 46% 129M 1s +2024-03-07T01:08:05Z #15 2.632 58450K .......... .......... .......... .......... .......... 46% 163M 1s +2024-03-07T01:08:05Z #15 2.632 58500K .......... .......... .......... .......... .......... 46% 160M 1s +2024-03-07T01:08:05Z #15 2.632 58550K .......... .......... .......... .......... .......... 46% 187M 1s +2024-03-07T01:08:05Z #15 2.632 58600K .......... .......... .......... .......... .......... 46% 152M 1s +2024-03-07T01:08:05Z #15 2.632 58650K .......... .......... .......... .......... .......... 46% 173M 1s +2024-03-07T01:08:05Z #15 2.632 58700K .......... .......... .......... .......... .......... 46% 149M 1s +2024-03-07T01:08:05Z #15 2.632 58750K .......... .......... .......... .......... .......... 46% 186M 1s +2024-03-07T01:08:05Z #15 2.632 58800K .......... .......... .......... .......... .......... 46% 174M 1s +2024-03-07T01:08:05Z #15 2.632 58850K .......... .......... .......... .......... .......... 46% 167M 1s +2024-03-07T01:08:05Z #15 2.632 58900K .......... .......... .......... .......... .......... 46% 159M 1s +2024-03-07T01:08:05Z #15 2.632 58950K .......... .......... .......... .......... .......... 46% 179M 1s +2024-03-07T01:08:05Z #15 2.632 59000K .......... .......... .......... .......... .......... 46% 174M 1s +2024-03-07T01:08:05Z #15 2.632 59050K .......... .......... .......... .......... .......... 46% 44.7M 1s +2024-03-07T01:08:05Z #15 2.633 59100K .......... .......... .......... .......... .......... 46% 35.5M 1s +2024-03-07T01:08:05Z #15 2.635 59150K .......... .......... .......... .......... .......... 46% 137M 1s +2024-03-07T01:08:05Z #15 2.635 59200K .......... .......... .......... .......... .......... 46% 175M 1s +2024-03-07T01:08:05Z #15 2.635 59250K .......... .......... .......... .......... .......... 46% 160M 1s +2024-03-07T01:08:05Z #15 2.635 59300K .......... .......... .......... .......... .......... 46% 9.77M 1s +2024-03-07T01:08:05Z #15 2.652 59350K .......... .......... .......... .......... .......... 46% 200M 1s +2024-03-07T01:08:05Z #15 2.652 59400K .......... .......... .......... .......... .......... 46% 187M 1s +2024-03-07T01:08:05Z #15 2.652 59450K .......... .......... .......... .......... .......... 46% 201M 1s +2024-03-07T01:08:05Z #15 2.652 59500K .......... .......... .......... .......... .......... 46% 214M 1s +2024-03-07T01:08:05Z #15 2.652 59550K .......... .......... .......... .......... .......... 47% 179M 1s +2024-03-07T01:08:05Z #15 2.652 59600K .......... .......... .......... .......... .......... 47% 207M 1s +2024-03-07T01:08:05Z #15 2.652 59650K .......... .......... .......... .......... .......... 47% 156M 1s +2024-03-07T01:08:05Z #15 2.652 59700K .......... .......... .......... .......... .......... 47% 227M 1s +2024-03-07T01:08:05Z #15 2.652 59750K .......... .......... .......... .......... .......... 47% 182M 1s +2024-03-07T01:08:05Z #15 2.652 59800K .......... .......... .......... .......... .......... 47% 180M 1s +2024-03-07T01:08:05Z #15 2.652 59850K .......... .......... .......... .......... .......... 47% 224M 1s +2024-03-07T01:08:05Z #15 2.652 59900K .......... .......... .......... .......... .......... 47% 178M 1s +2024-03-07T01:08:05Z #15 2.652 59950K .......... .......... .......... .......... .......... 47% 185M 1s +2024-03-07T01:08:05Z #15 2.652 60000K .......... .......... .......... .......... .......... 47% 219M 1s +2024-03-07T01:08:05Z #15 2.652 60050K .......... .......... .......... .......... .......... 47% 12.8M 1s +2024-03-07T01:08:05Z #15 2.652 60100K .......... .......... .......... .......... .......... 47% 115M 1s +2024-03-07T01:08:05Z #15 2.652 60150K .......... .......... .......... .......... .......... 47% 120M 1s +2024-03-07T01:08:05Z #15 2.652 60200K .......... .......... .......... .......... .......... 47% 138M 1s +2024-03-07T01:08:05Z #15 2.652 60250K .......... .......... .......... .......... .......... 47% 141M 1s +2024-03-07T01:08:05Z #15 2.652 60300K .......... .......... .......... .......... .......... 47% 27.7M 1s +2024-03-07T01:08:05Z #15 2.652 60350K .......... .......... .......... .......... .......... 47% 127M 1s +2024-03-07T01:08:05Z #15 2.652 60400K .......... .......... .......... .......... .......... 47% 154M 1s +2024-03-07T01:08:05Z #15 2.652 60450K .......... .......... .......... .......... .......... 47% 8.58M 1s +2024-03-07T01:08:05Z #15 2.664 60500K .......... .......... .......... .......... .......... 47% 110M 1s +2024-03-07T01:08:05Z #15 2.664 60550K .......... .......... .......... .......... .......... 47% 170M 1s +2024-03-07T01:08:05Z #15 2.664 60600K .......... .......... .......... .......... .......... 47% 185M 1s +2024-03-07T01:08:05Z #15 2.664 60650K .......... .......... .......... .......... .......... 47% 159M 1s +2024-03-07T01:08:05Z #15 2.664 60700K .......... .......... .......... .......... .......... 47% 184M 1s +2024-03-07T01:08:05Z #15 2.664 60750K .......... .......... .......... .......... .......... 47% 163M 1s +2024-03-07T01:08:05Z #15 2.664 60800K .......... .......... .......... .......... .......... 47% 187M 1s +2024-03-07T01:08:05Z #15 2.664 60850K .......... .......... .......... .......... .......... 48% 157M 1s +2024-03-07T01:08:05Z #15 2.664 60900K .......... .......... .......... .......... .......... 48% 139M 1s +2024-03-07T01:08:05Z #15 2.664 60950K .......... .......... .......... .......... .......... 48% 165M 1s +2024-03-07T01:08:05Z #15 2.664 61000K .......... .......... .......... .......... .......... 48% 136M 1s +2024-03-07T01:08:05Z #15 2.664 61050K .......... .......... .......... .......... .......... 48% 162M 1s +2024-03-07T01:08:05Z #15 2.664 61100K .......... .......... .......... .......... .......... 48% 181M 1s +2024-03-07T01:08:05Z #15 2.664 61150K .......... .......... .......... .......... .......... 48% 144M 1s +2024-03-07T01:08:05Z #15 2.664 61200K .......... .......... .......... .......... .......... 48% 186M 1s +2024-03-07T01:08:05Z #15 2.664 61250K .......... .......... .......... .......... .......... 48% 163M 1s +2024-03-07T01:08:05Z #15 2.664 61300K .......... .......... .......... .......... .......... 48% 149M 1s +2024-03-07T01:08:05Z #15 2.664 61350K .......... .......... .......... .......... .......... 48% 181M 1s +2024-03-07T01:08:05Z #15 2.664 61400K .......... .......... .......... .......... .......... 48% 170M 1s +2024-03-07T01:08:05Z #15 2.664 61450K .......... .......... .......... .......... .......... 48% 187M 1s +2024-03-07T01:08:05Z #15 2.664 61500K .......... .......... .......... .......... .......... 48% 139M 1s +2024-03-07T01:08:05Z #15 2.664 61550K .......... .......... .......... .......... .......... 48% 182M 1s +2024-03-07T01:08:05Z #15 2.683 61600K .......... .......... .......... .......... .......... 48% 11.9M 1s +2024-03-07T01:08:05Z #15 2.683 61650K .......... .......... .......... .......... .......... 48% 139M 1s +2024-03-07T01:08:05Z #15 2.683 61700K .......... .......... .......... .......... .......... 48% 130M 1s +2024-03-07T01:08:05Z #15 2.683 61750K .......... .......... .......... .......... .......... 48% 112M 1s +2024-03-07T01:08:05Z #15 2.683 61800K .......... .......... .......... .......... .......... 48% 121M 1s +2024-03-07T01:08:05Z #15 2.683 61850K .......... .......... .......... .......... .......... 48% 131M 1s +2024-03-07T01:08:05Z #15 2.683 61900K .......... .......... .......... .......... .......... 48% 113M 1s +2024-03-07T01:08:05Z #15 2.683 61950K .......... .......... .......... .......... .......... 48% 131M 1s +2024-03-07T01:08:05Z #15 2.683 62000K .......... .......... .......... .......... .......... 48% 132M 1s +2024-03-07T01:08:05Z #15 2.683 62050K .......... .......... .......... .......... .......... 48% 107M 1s +2024-03-07T01:08:05Z #15 2.683 62100K .......... .......... .......... .......... .......... 49% 132M 1s +2024-03-07T01:08:05Z #15 2.683 62150K .......... .......... .......... .......... .......... 49% 143M 1s +2024-03-07T01:08:05Z #15 2.683 62200K .......... .......... .......... .......... .......... 49% 131M 1s +2024-03-07T01:08:05Z #15 2.683 62250K .......... .......... .......... .......... .......... 49% 127M 1s +2024-03-07T01:08:05Z #15 2.683 62300K .......... .......... .......... .......... .......... 49% 132M 1s +2024-03-07T01:08:05Z #15 2.683 62350K .......... .......... .......... .......... .......... 49% 121M 1s +2024-03-07T01:08:05Z #15 2.683 62400K .......... .......... .......... .......... .......... 49% 66.6M 1s +2024-03-07T01:08:05Z #15 2.683 62450K .......... .......... .......... .......... .......... 49% 96.9M 1s +2024-03-07T01:08:05Z #15 2.683 62500K .......... .......... .......... .......... .......... 49% 138M 1s +2024-03-07T01:08:05Z #15 2.683 62550K .......... .......... .......... .......... .......... 49% 166M 1s +2024-03-07T01:08:05Z #15 2.683 62600K .......... .......... .......... .......... .......... 49% 116M 1s +2024-03-07T01:08:05Z #15 2.683 62650K .......... .......... .......... .......... .......... 49% 55.3M 1s +2024-03-07T01:08:05Z #15 2.683 62700K .......... .......... .......... .......... .......... 49% 45.5M 1s +2024-03-07T01:08:05Z #15 2.683 62750K .......... .......... .......... .......... .......... 49% 23.7M 1s +2024-03-07T01:08:05Z #15 2.683 62800K .......... .......... .......... .......... .......... 49% 121M 1s +2024-03-07T01:08:05Z #15 2.683 62850K .......... .......... .......... .......... .......... 49% 146M 1s +2024-03-07T01:08:05Z #15 2.683 62900K .......... .......... .......... .......... .......... 49% 142M 1s +2024-03-07T01:08:05Z #15 2.683 62950K .......... .......... .......... .......... .......... 49% 117M 1s +2024-03-07T01:08:05Z #15 2.683 63000K .......... .......... .......... .......... .......... 49% 143M 1s +2024-03-07T01:08:05Z #15 2.683 63050K .......... .......... .......... .......... .......... 49% 143M 1s +2024-03-07T01:08:05Z #15 2.683 63100K .......... .......... .......... .......... .......... 49% 142M 1s +2024-03-07T01:08:05Z #15 2.683 63150K .......... .......... .......... .......... .......... 49% 114M 1s +2024-03-07T01:08:05Z #15 2.683 63200K .......... .......... .......... .......... .......... 49% 138M 1s +2024-03-07T01:08:05Z #15 2.683 63250K .......... .......... .......... .......... .......... 49% 130M 1s +2024-03-07T01:08:05Z #15 2.683 63300K .......... .......... .......... .......... .......... 49% 34.9M 1s +2024-03-07T01:08:05Z #15 2.690 63350K .......... .......... .......... .......... .......... 50% 47.0M 1s +2024-03-07T01:08:05Z #15 2.690 63400K .......... .......... .......... .......... .......... 50% 52.4M 1s +2024-03-07T01:08:05Z #15 2.690 63450K .......... .......... .......... .......... .......... 50% 20.5M 1s +2024-03-07T01:08:05Z #15 2.690 63500K .......... .......... .......... .......... .......... 50% 41.0M 1s +2024-03-07T01:08:05Z #15 2.693 63550K .......... .......... .......... .......... .......... 50% 135M 1s +2024-03-07T01:08:05Z #15 2.693 63600K .......... .......... .......... .......... .......... 50% 130M 1s +2024-03-07T01:08:05Z #15 2.693 63650K .......... .......... .......... .......... .......... 50% 123M 1s +2024-03-07T01:08:05Z #15 2.693 63700K .......... .......... .......... .......... .......... 50% 123M 1s +2024-03-07T01:08:05Z #15 2.693 63750K .......... .......... .......... .......... .......... 50% 103M 1s +2024-03-07T01:08:05Z #15 2.693 63800K .......... .......... .......... .......... .......... 50% 156M 1s +2024-03-07T01:08:05Z #15 2.693 63850K .......... .......... .......... .......... .......... 50% 10.6M 1s +2024-03-07T01:08:05Z #15 2.697 63900K .......... .......... .......... .......... .......... 50% 67.5M 1s +2024-03-07T01:08:05Z #15 2.699 63950K .......... .......... .......... .......... .......... 50% 140M 1s +2024-03-07T01:08:05Z #15 2.699 64000K .......... .......... .......... .......... .......... 50% 159M 1s +2024-03-07T01:08:05Z #15 2.699 64050K .......... .......... .......... .......... .......... 50% 139M 1s +2024-03-07T01:08:05Z #15 2.699 64100K .......... .......... .......... .......... .......... 50% 174M 1s +2024-03-07T01:08:05Z #15 2.699 64150K .......... .......... .......... .......... .......... 50% 11.9M 1s +2024-03-07T01:08:05Z #15 2.704 64200K .......... .......... .......... .......... .......... 50% 34.0M 1s +2024-03-07T01:08:05Z #15 2.707 64250K .......... .......... .......... .......... .......... 50% 135M 1s +2024-03-07T01:08:05Z #15 2.707 64300K .......... .......... .......... .......... .......... 50% 125M 1s +2024-03-07T01:08:05Z #15 2.707 64350K .......... .......... .......... .......... .......... 50% 158M 1s +2024-03-07T01:08:05Z #15 2.707 64400K .......... .......... .......... .......... .......... 50% 123M 1s +2024-03-07T01:08:05Z #15 2.707 64450K .......... .......... .......... .......... .......... 50% 139M 1s +2024-03-07T01:08:05Z #15 2.707 64500K .......... .......... .......... .......... .......... 50% 126M 1s +2024-03-07T01:08:05Z #15 2.707 64550K .......... .......... .......... .......... .......... 50% 166M 1s +2024-03-07T01:08:05Z #15 2.707 64600K .......... .......... .......... .......... .......... 50% 14.6M 1s +2024-03-07T01:08:05Z #15 2.711 64650K .......... .......... .......... .......... .......... 51% 93.5M 1s +2024-03-07T01:08:05Z #15 2.711 64700K .......... .......... .......... .......... .......... 51% 173M 1s +2024-03-07T01:08:05Z #15 2.711 64750K .......... .......... .......... .......... .......... 51% 29.1M 1s +2024-03-07T01:08:05Z #15 2.715 64800K .......... .......... .......... .......... .......... 51% 146M 1s +2024-03-07T01:08:05Z #15 2.715 64850K .......... .......... .......... .......... .......... 51% 160M 1s +2024-03-07T01:08:05Z #15 2.715 64900K .......... .......... .......... .......... .......... 51% 170M 1s +2024-03-07T01:08:05Z #15 2.715 64950K .......... .......... .......... .......... .......... 51% 173M 1s +2024-03-07T01:08:05Z #15 2.715 65000K .......... .......... .......... .......... .......... 51% 174M 1s +2024-03-07T01:08:05Z #15 2.715 65050K .......... .......... .......... .......... .......... 51% 177M 1s +2024-03-07T01:08:05Z #15 2.715 65100K .......... .......... .......... .......... .......... 51% 148M 1s +2024-03-07T01:08:05Z #15 2.715 65150K .......... .......... .......... .......... .......... 51% 66.7M 1s +2024-03-07T01:08:05Z #15 2.717 65200K .......... .......... .......... .......... .......... 51% 12.9M 1s +2024-03-07T01:08:05Z #15 2.723 65250K .......... .......... .......... .......... .......... 51% 181M 1s +2024-03-07T01:08:05Z #15 2.723 65300K .......... .......... .......... .......... .......... 51% 174M 1s +2024-03-07T01:08:05Z #15 2.723 65350K .......... .......... .......... .......... .......... 51% 155M 1s +2024-03-07T01:08:05Z #15 2.723 65400K .......... .......... .......... .......... .......... 51% 170M 1s +2024-03-07T01:08:05Z #15 2.723 65450K .......... .......... .......... .......... .......... 51% 182M 1s +2024-03-07T01:08:05Z #15 2.723 65500K .......... .......... .......... .......... .......... 51% 163M 1s +2024-03-07T01:08:05Z #15 2.723 65550K .......... .......... .......... .......... .......... 51% 178M 1s +2024-03-07T01:08:05Z #15 2.723 65600K .......... .......... .......... .......... .......... 51% 165M 1s +2024-03-07T01:08:05Z #15 2.723 65650K .......... .......... .......... .......... .......... 51% 178M 1s +2024-03-07T01:08:05Z #15 2.723 65700K .......... .......... .......... .......... .......... 51% 187M 1s +2024-03-07T01:08:05Z #15 2.723 65750K .......... .......... .......... .......... .......... 51% 178M 1s +2024-03-07T01:08:05Z #15 2.723 65800K .......... .......... .......... .......... .......... 51% 168M 1s +2024-03-07T01:08:05Z #15 2.723 65850K .......... .......... .......... .......... .......... 51% 183M 1s +2024-03-07T01:08:05Z #15 2.723 65900K .......... .......... .......... .......... .......... 52% 13.3M 1s +2024-03-07T01:08:05Z #15 2.731 65950K .......... .......... .......... .......... .......... 52% 137M 1s +2024-03-07T01:08:05Z #15 2.731 66000K .......... .......... .......... .......... .......... 52% 130M 1s +2024-03-07T01:08:05Z #15 2.731 66050K .......... .......... .......... .......... .......... 52% 135M 1s +2024-03-07T01:08:05Z #15 2.731 66100K .......... .......... .......... .......... .......... 52% 145M 1s +2024-03-07T01:08:05Z #15 2.731 66150K .......... .......... .......... .......... .......... 52% 145M 1s +2024-03-07T01:08:05Z #15 2.731 66200K .......... .......... .......... .......... .......... 52% 141M 1s +2024-03-07T01:08:05Z #15 2.731 66250K .......... .......... .......... .......... .......... 52% 153M 1s +2024-03-07T01:08:05Z #15 2.731 66300K .......... .......... .......... .......... .......... 52% 136M 1s +2024-03-07T01:08:05Z #15 2.731 66350K .......... .......... .......... .......... .......... 52% 145M 1s +2024-03-07T01:08:05Z #15 2.731 66400K .......... .......... .......... .......... .......... 52% 138M 1s +2024-03-07T01:08:05Z #15 2.731 66450K .......... .......... .......... .......... .......... 52% 154M 1s +2024-03-07T01:08:05Z #15 2.731 66500K .......... .......... .......... .......... .......... 52% 148M 1s +2024-03-07T01:08:05Z #15 2.731 66550K .......... .......... .......... .......... .......... 52% 19.1M 1s +2024-03-07T01:08:05Z #15 2.734 66600K .......... .......... .......... .......... .......... 52% 30.9M 1s +2024-03-07T01:08:05Z #15 2.735 66650K .......... .......... .......... .......... .......... 52% 42.9M 1s +2024-03-07T01:08:05Z #15 2.739 66700K .......... .......... .......... .......... .......... 52% 166M 1s +2024-03-07T01:08:05Z #15 2.739 66750K .......... .......... .......... .......... .......... 52% 158M 1s +2024-03-07T01:08:05Z #15 2.739 66800K .......... .......... .......... .......... .......... 52% 179M 1s +2024-03-07T01:08:05Z #15 2.739 66850K .......... .......... .......... .......... .......... 52% 174M 1s +2024-03-07T01:08:05Z #15 2.739 66900K .......... .......... .......... .......... .......... 52% 149M 1s +2024-03-07T01:08:05Z #15 2.739 66950K .......... .......... .......... .......... .......... 52% 183M 1s +2024-03-07T01:08:05Z #15 2.739 67000K .......... .......... .......... .......... .......... 52% 154M 1s +2024-03-07T01:08:05Z #15 2.739 67050K .......... .......... .......... .......... .......... 52% 174M 1s +2024-03-07T01:08:05Z #15 2.739 67100K .......... .......... .......... .......... .......... 52% 154M 1s +2024-03-07T01:08:05Z #15 2.739 67150K .......... .......... .......... .......... .......... 53% 176M 1s +2024-03-07T01:08:05Z #15 2.739 67200K .......... .......... .......... .......... .......... 53% 17.0M 1s +2024-03-07T01:08:05Z #15 2.743 67250K .......... .......... .......... .......... .......... 53% 121M 1s +2024-03-07T01:08:05Z #15 2.743 67300K .......... .......... .......... .......... .......... 53% 117M 1s +2024-03-07T01:08:05Z #15 2.743 67350K .......... .......... .......... .......... .......... 53% 124M 1s +2024-03-07T01:08:05Z #15 2.743 67400K .......... .......... .......... .......... .......... 53% 73.0M 1s +2024-03-07T01:08:05Z #15 2.744 67450K .......... .......... .......... .......... .......... 53% 75.2M 1s +2024-03-07T01:08:05Z #15 2.745 67500K .......... .......... .......... .......... .......... 53% 66.1M 1s +2024-03-07T01:08:05Z #15 2.747 67550K .......... .......... .......... .......... .......... 53% 113M 1s +2024-03-07T01:08:05Z #15 2.747 67600K .......... .......... .......... .......... .......... 53% 127M 1s +2024-03-07T01:08:05Z #15 2.747 67650K .......... .......... .......... .......... .......... 53% 131M 1s +2024-03-07T01:08:05Z #15 2.747 67700K .......... .......... .......... .......... .......... 53% 126M 1s +2024-03-07T01:08:05Z #15 2.747 67750K .......... .......... .......... .......... .......... 53% 64.1M 1s +2024-03-07T01:08:05Z #15 2.751 67800K .......... .......... .......... .......... .......... 53% 128M 1s +2024-03-07T01:08:05Z #15 2.751 67850K .......... .......... .......... .......... .......... 53% 127M 1s +2024-03-07T01:08:05Z #15 2.751 67900K .......... .......... .......... .......... .......... 53% 140M 1s +2024-03-07T01:08:05Z #15 2.751 67950K .......... .......... .......... .......... .......... 53% 113M 1s +2024-03-07T01:08:05Z #15 2.751 68000K .......... .......... .......... .......... .......... 53% 124M 1s +2024-03-07T01:08:05Z #15 2.751 68050K .......... .......... .......... .......... .......... 53% 132M 1s +2024-03-07T01:08:05Z #15 2.751 68100K .......... .......... .......... .......... .......... 53% 132M 1s +2024-03-07T01:08:05Z #15 2.751 68150K .......... .......... .......... .......... .......... 53% 105M 1s +2024-03-07T01:08:05Z #15 2.751 68200K .......... .......... .......... .......... .......... 53% 135M 1s +2024-03-07T01:08:05Z #15 2.751 68250K .......... .......... .......... .......... .......... 53% 54.3M 1s +2024-03-07T01:08:05Z #15 2.755 68300K .......... .......... .......... .......... .......... 53% 133M 1s +2024-03-07T01:08:05Z #15 2.755 68350K .......... .......... .......... .......... .......... 53% 133M 1s +2024-03-07T01:08:05Z #15 2.755 68400K .......... .......... .......... .......... .......... 53% 129M 1s +2024-03-07T01:08:05Z #15 2.755 68450K .......... .......... .......... .......... .......... 54% 112M 1s +2024-03-07T01:08:05Z #15 2.755 68500K .......... .......... .......... .......... .......... 54% 136M 1s +2024-03-07T01:08:05Z #15 2.755 68550K .......... .......... .......... .......... .......... 54% 126M 1s +2024-03-07T01:08:05Z #15 2.755 68600K .......... .......... .......... .......... .......... 54% 136M 1s +2024-03-07T01:08:05Z #15 2.755 68650K .......... .......... .......... .......... .......... 54% 135M 1s +2024-03-07T01:08:05Z #15 2.755 68700K .......... .......... .......... .......... .......... 54% 29.7M 1s +2024-03-07T01:08:05Z #15 2.759 68750K .......... .......... .......... .......... .......... 54% 87.8M 1s +2024-03-07T01:08:05Z #15 2.759 68800K .......... .......... .......... .......... .......... 54% 119M 1s +2024-03-07T01:08:05Z #15 2.759 68850K .......... .......... .......... .......... .......... 54% 131M 1s +2024-03-07T01:08:05Z #15 2.759 68900K .......... .......... .......... .......... .......... 54% 142M 1s +2024-03-07T01:08:05Z #15 2.759 68950K .......... .......... .......... .......... .......... 54% 134M 1s +2024-03-07T01:08:05Z #15 2.759 69000K .......... .......... .......... .......... .......... 54% 113M 1s +2024-03-07T01:08:05Z #15 2.759 69050K .......... .......... .......... .......... .......... 54% 28.2M 1s +2024-03-07T01:08:05Z #15 2.761 69100K .......... .......... .......... .......... .......... 54% 33.2M 1s +2024-03-07T01:08:05Z #15 2.763 69150K .......... .......... .......... .......... .......... 54% 114M 1s +2024-03-07T01:08:05Z #15 2.763 69200K .......... .......... .......... .......... .......... 54% 134M 1s +2024-03-07T01:08:05Z #15 2.763 69250K .......... .......... .......... .......... .......... 54% 120M 1s +2024-03-07T01:08:05Z #15 2.764 69300K .......... .......... .......... .......... .......... 54% 71.3M 1s +2024-03-07T01:08:05Z #15 2.765 69350K .......... .......... .......... .......... .......... 54% 28.6M 1s +2024-03-07T01:08:05Z #15 2.766 69400K .......... .......... .......... .......... .......... 54% 63.7M 1s +2024-03-07T01:08:05Z #15 2.767 69450K .......... .......... .......... .......... .......... 54% 48.8M 1s +2024-03-07T01:08:05Z #15 2.768 69500K .......... .......... .......... .......... .......... 54% 9.34M 1s +2024-03-07T01:08:05Z #15 2.773 69550K .......... .......... .......... .......... .......... 54% 135M 1s +2024-03-07T01:08:05Z #15 2.774 69600K .......... .......... .......... .......... .......... 54% 128M 1s +2024-03-07T01:08:05Z #15 2.774 69650K .......... .......... .......... .......... .......... 54% 89.1M 1s +2024-03-07T01:08:05Z #15 2.775 69700K .......... .......... .......... .......... .......... 55% 116M 1s +2024-03-07T01:08:05Z #15 2.775 69750K .......... .......... .......... .......... .......... 55% 114M 1s +2024-03-07T01:08:05Z #15 2.775 69800K .......... .......... .......... .......... .......... 55% 24.5M 1s +2024-03-07T01:08:05Z #15 2.777 69850K .......... .......... .......... .......... .......... 55% 33.0M 1s +2024-03-07T01:08:05Z #15 2.779 69900K .......... .......... .......... .......... .......... 55% 48.2M 1s +2024-03-07T01:08:05Z #15 2.780 69950K .......... .......... .......... .......... .......... 55% 48.5M 1s +2024-03-07T01:08:05Z #15 2.788 70000K .......... .......... .......... .......... .......... 55% 47.2M 1s +2024-03-07T01:08:05Z #15 2.788 70050K .......... .......... .......... .......... .......... 55% 45.5M 1s +2024-03-07T01:08:05Z #15 2.788 70100K .......... .......... .......... .......... .......... 55% 47.9M 1s +2024-03-07T01:08:05Z #15 2.788 70150K .......... .......... .......... .......... .......... 55% 42.6M 1s +2024-03-07T01:08:05Z #15 2.788 70200K .......... .......... .......... .......... .......... 55% 75.6M 1s +2024-03-07T01:08:05Z #15 2.788 70250K .......... .......... .......... .......... .......... 55% 47.0M 1s +2024-03-07T01:08:05Z #15 2.788 70300K .......... .......... .......... .......... .......... 55% 51.5M 1s +2024-03-07T01:08:05Z #15 2.788 70350K .......... .......... .......... .......... .......... 55% 116M 1s +2024-03-07T01:08:05Z #15 2.788 70400K .......... .......... .......... .......... .......... 55% 132M 1s +2024-03-07T01:08:05Z #15 2.789 70450K .......... .......... .......... .......... .......... 55% 128M 1s +2024-03-07T01:08:05Z #15 2.789 70500K .......... .......... .......... .......... .......... 55% 115M 1s +2024-03-07T01:08:05Z #15 2.789 70550K .......... .......... .......... .......... .......... 55% 113M 1s +2024-03-07T01:08:05Z #15 2.790 70600K .......... .......... .......... .......... .......... 55% 123M 1s +2024-03-07T01:08:05Z #15 2.790 70650K .......... .......... .......... .......... .......... 55% 100M 1s +2024-03-07T01:08:05Z #15 2.790 70700K .......... .......... .......... .......... .......... 55% 123M 1s +2024-03-07T01:08:05Z #15 2.791 70750K .......... .......... .......... .......... .......... 55% 140M 1s +2024-03-07T01:08:05Z #15 2.791 70800K .......... .......... .......... .......... .......... 55% 100M 1s +2024-03-07T01:08:05Z #15 2.792 70850K .......... .......... .......... .......... .......... 55% 105M 1s +2024-03-07T01:08:05Z #15 2.792 70900K .......... .......... .......... .......... .......... 55% 114M 1s +2024-03-07T01:08:05Z #15 2.793 70950K .......... .......... .......... .......... .......... 56% 136M 1s +2024-03-07T01:08:05Z #15 2.793 71000K .......... .......... .......... .......... .......... 56% 93.9M 1s +2024-03-07T01:08:05Z #15 2.793 71050K .......... .......... .......... .......... .......... 56% 133M 1s +2024-03-07T01:08:05Z #15 2.794 71100K .......... .......... .......... .......... .......... 56% 148M 1s +2024-03-07T01:08:05Z #15 2.794 71150K .......... .......... .......... .......... .......... 56% 126M 1s +2024-03-07T01:08:05Z #15 2.795 71200K .......... .......... .......... .......... .......... 56% 131M 1s +2024-03-07T01:08:05Z #15 2.797 71250K .......... .......... .......... .......... .......... 56% 153M 1s +2024-03-07T01:08:05Z #15 2.797 71300K .......... .......... .......... .......... .......... 56% 129M 1s +2024-03-07T01:08:05Z #15 2.797 71350K .......... .......... .......... .......... .......... 56% 111M 1s +2024-03-07T01:08:05Z #15 2.797 71400K .......... .......... .......... .......... .......... 56% 143M 1s +2024-03-07T01:08:05Z #15 2.797 71450K .......... .......... .......... .......... .......... 56% 145M 1s +2024-03-07T01:08:05Z #15 2.797 71500K .......... .......... .......... .......... .......... 56% 155M 1s +2024-03-07T01:08:05Z #15 2.797 71550K .......... .......... .......... .......... .......... 56% 143M 1s +2024-03-07T01:08:05Z #15 2.797 71600K .......... .......... .......... .......... .......... 56% 128M 1s +2024-03-07T01:08:05Z #15 2.798 71650K .......... .......... .......... .......... .......... 56% 170M 1s +2024-03-07T01:08:05Z #15 2.798 71700K .......... .......... .......... .......... .......... 56% 159M 1s +2024-03-07T01:08:05Z #15 2.799 71750K .......... .......... .......... .......... .......... 56% 128M 1s +2024-03-07T01:08:05Z #15 2.799 71800K .......... .......... .......... .......... .......... 56% 145M 1s +2024-03-07T01:08:05Z #15 2.799 71850K .......... .......... .......... .......... .......... 56% 121M 1s +2024-03-07T01:08:05Z #15 2.804 71900K .......... .......... .......... .......... .......... 56% 158M 1s +2024-03-07T01:08:05Z #15 2.804 71950K .......... .......... .......... .......... .......... 56% 123M 1s +2024-03-07T01:08:05Z #15 2.804 72000K .......... .......... .......... .......... .......... 56% 149M 1s +2024-03-07T01:08:05Z #15 2.804 72050K .......... .......... .......... .......... .......... 56% 175M 1s +2024-03-07T01:08:05Z #15 2.804 72100K .......... .......... .......... .......... .......... 56% 155M 1s +2024-03-07T01:08:05Z #15 2.804 72150K .......... .......... .......... .......... .......... 56% 148M 1s +2024-03-07T01:08:05Z #15 2.804 72200K .......... .......... .......... .......... .......... 56% 119M 1s +2024-03-07T01:08:05Z #15 2.804 72250K .......... .......... .......... .......... .......... 57% 161M 1s +2024-03-07T01:08:05Z #15 2.804 72300K .......... .......... .......... .......... .......... 57% 169M 1s +2024-03-07T01:08:05Z #15 2.804 72350K .......... .......... .......... .......... .......... 57% 169M 1s +2024-03-07T01:08:05Z #15 2.804 72400K .......... .......... .......... .......... .......... 57% 130M 1s +2024-03-07T01:08:05Z #15 2.804 72450K .......... .......... .......... .......... .......... 57% 84.5M 1s +2024-03-07T01:08:05Z #15 2.804 72500K .......... .......... .......... .......... .......... 57% 167M 1s +2024-03-07T01:08:05Z #15 2.804 72550K .......... .......... .......... .......... .......... 57% 142M 1s +2024-03-07T01:08:05Z #15 2.804 72600K .......... .......... .......... .......... .......... 57% 138M 1s +2024-03-07T01:08:05Z #15 2.805 72650K .......... .......... .......... .......... .......... 57% 171M 1s +2024-03-07T01:08:05Z #15 2.805 72700K .......... .......... .......... .......... .......... 57% 142M 1s +2024-03-07T01:08:05Z #15 2.805 72750K .......... .......... .......... .......... .......... 57% 144M 1s +2024-03-07T01:08:05Z #15 2.806 72800K .......... .......... .......... .......... .......... 57% 110M 1s +2024-03-07T01:08:05Z #15 2.806 72850K .......... .......... .......... .......... .......... 57% 168M 1s +2024-03-07T01:08:05Z #15 2.806 72900K .......... .......... .......... .......... .......... 57% 164M 1s +2024-03-07T01:08:05Z #15 2.807 72950K .......... .......... .......... .......... .......... 57% 146M 1s +2024-03-07T01:08:05Z #15 2.807 73000K .......... .......... .......... .......... .......... 57% 137M 1s +2024-03-07T01:08:05Z #15 2.807 73050K .......... .......... .......... .......... .......... 57% 121M 1s +2024-03-07T01:08:05Z #15 2.808 73100K .......... .......... .......... .......... .......... 57% 142M 1s +2024-03-07T01:08:05Z #15 2.808 73150K .......... .......... .......... .......... .......... 57% 174M 1s +2024-03-07T01:08:05Z #15 2.808 73200K .......... .......... .......... .......... .......... 57% 158M 1s +2024-03-07T01:08:05Z #15 2.809 73250K .......... .......... .......... .......... .......... 57% 130M 1s +2024-03-07T01:08:05Z #15 2.809 73300K .......... .......... .......... .......... .......... 57% 170M 1s +2024-03-07T01:08:05Z #15 2.809 73350K .......... .......... .......... .......... .......... 57% 166M 1s +2024-03-07T01:08:05Z #15 2.810 73400K .......... .......... .......... .......... .......... 57% 142M 1s +2024-03-07T01:08:05Z #15 2.810 73450K .......... .......... .......... .......... .......... 57% 162M 1s +2024-03-07T01:08:05Z #15 2.810 73500K .......... .......... .......... .......... .......... 58% 125M 1s +2024-03-07T01:08:05Z #15 2.811 73550K .......... .......... .......... .......... .......... 58% 162M 1s +2024-03-07T01:08:05Z #15 2.811 73600K .......... .......... .......... .......... .......... 58% 11.5M 1s +2024-03-07T01:08:05Z #15 2.815 73650K .......... .......... .......... .......... .......... 58% 100M 1s +2024-03-07T01:08:05Z #15 2.816 73700K .......... .......... .......... .......... .......... 58% 148M 1s +2024-03-07T01:08:05Z #15 2.816 73750K .......... .......... .......... .......... .......... 58% 98.9M 1s +2024-03-07T01:08:05Z #15 2.817 73800K .......... .......... .......... .......... .......... 58% 139M 1s +2024-03-07T01:08:05Z #15 2.817 73850K .......... .......... .......... .......... .......... 58% 171M 1s +2024-03-07T01:08:05Z #15 2.817 73900K .......... .......... .......... .......... .......... 58% 114M 1s +2024-03-07T01:08:05Z #15 2.818 73950K .......... .......... .......... .......... .......... 58% 155M 1s +2024-03-07T01:08:05Z #15 2.818 74000K .......... .......... .......... .......... .......... 58% 170M 1s +2024-03-07T01:08:05Z #15 2.818 74050K .......... .......... .......... .......... .......... 58% 156M 1s +2024-03-07T01:08:05Z #15 2.819 74100K .......... .......... .......... .......... .......... 58% 153M 1s +2024-03-07T01:08:05Z #15 2.819 74150K .......... .......... .......... .......... .......... 58% 125M 1s +2024-03-07T01:08:05Z #15 2.819 74200K .......... .......... .......... .......... .......... 58% 16.6M 1s +2024-03-07T01:08:05Z #15 2.823 74250K .......... .......... .......... .......... .......... 58% 17.7M 1s +2024-03-07T01:08:05Z #15 2.825 74300K .......... .......... .......... .......... .......... 58% 122M 1s +2024-03-07T01:08:05Z #15 2.825 74350K .......... .......... .......... .......... .......... 58% 161M 1s +2024-03-07T01:08:05Z #15 2.826 74400K .......... .......... .......... .......... .......... 58% 159M 1s +2024-03-07T01:08:05Z #15 2.826 74450K .......... .......... .......... .......... .......... 58% 93.1M 1s +2024-03-07T01:08:05Z #15 2.827 74500K .......... .......... .......... .......... .......... 58% 139M 1s +2024-03-07T01:08:05Z #15 2.827 74550K .......... .......... .......... .......... .......... 58% 136M 1s +2024-03-07T01:08:05Z #15 2.827 74600K .......... .......... .......... .......... .......... 58% 104M 1s +2024-03-07T01:08:05Z #15 2.828 74650K .......... .......... .......... .......... .......... 58% 115M 1s +2024-03-07T01:08:05Z #15 2.828 74700K .......... .......... .......... .......... .......... 58% 146M 1s +2024-03-07T01:08:05Z #15 2.829 74750K .......... .......... .......... .......... .......... 58% 121M 1s +2024-03-07T01:08:05Z #15 2.829 74800K .......... .......... .......... .......... .......... 59% 153M 1s +2024-03-07T01:08:05Z #15 2.829 74850K .......... .......... .......... .......... .......... 59% 148M 1s +2024-03-07T01:08:05Z #15 2.830 74900K .......... .......... .......... .......... .......... 59% 112M 1s +2024-03-07T01:08:05Z #15 2.830 74950K .......... .......... .......... .......... .......... 59% 120M 1s +2024-03-07T01:08:05Z #15 2.830 75000K .......... .......... .......... .......... .......... 59% 134M 1s +2024-03-07T01:08:05Z #15 2.831 75050K .......... .......... .......... .......... .......... 59% 132M 1s +2024-03-07T01:08:05Z #15 2.831 75100K .......... .......... .......... .......... .......... 59% 21.2M 1s +2024-03-07T01:08:05Z #15 2.834 75150K .......... .......... .......... .......... .......... 59% 78.3M 1s +2024-03-07T01:08:05Z #15 2.834 75200K .......... .......... .......... .......... .......... 59% 63.3M 1s +2024-03-07T01:08:05Z #15 2.835 75250K .......... .......... .......... .......... .......... 59% 66.1M 1s +2024-03-07T01:08:05Z #15 2.836 75300K .......... .......... .......... .......... .......... 59% 112M 1s +2024-03-07T01:08:05Z #15 2.836 75350K .......... .......... .......... .......... .......... 59% 49.1M 1s +2024-03-07T01:08:05Z #15 2.837 75400K .......... .......... .......... .......... .......... 59% 150M 1s +2024-03-07T01:08:05Z #15 2.837 75450K .......... .......... .......... .......... .......... 59% 147M 1s +2024-03-07T01:08:05Z #15 2.838 75500K .......... .......... .......... .......... .......... 59% 141M 1s +2024-03-07T01:08:05Z #15 2.838 75550K .......... .......... .......... .......... .......... 59% 71.8M 1s +2024-03-07T01:08:05Z #15 2.839 75600K .......... .......... .......... .......... .......... 59% 161M 1s +2024-03-07T01:08:05Z #15 2.839 75650K .......... .......... .......... .......... .......... 59% 127M 1s +2024-03-07T01:08:05Z #15 2.839 75700K .......... .......... .......... .......... .......... 59% 124M 1s +2024-03-07T01:08:05Z #15 2.840 75750K .......... .......... .......... .......... .......... 59% 117M 1s +2024-03-07T01:08:05Z #15 2.840 75800K .......... .......... .......... .......... .......... 59% 124M 1s +2024-03-07T01:08:05Z #15 2.840 75850K .......... .......... .......... .......... .......... 59% 27.4M 1s +2024-03-07T01:08:05Z #15 2.842 75900K .......... .......... .......... .......... .......... 59% 119M 1s +2024-03-07T01:08:05Z #15 2.843 75950K .......... .......... .......... .......... .......... 59% 129M 1s +2024-03-07T01:08:05Z #15 2.843 76000K .......... .......... .......... .......... .......... 59% 40.6M 1s +2024-03-07T01:08:05Z #15 2.844 76050K .......... .......... .......... .......... .......... 60% 127M 1s +2024-03-07T01:08:05Z #15 2.845 76100K .......... .......... .......... .......... .......... 60% 139M 1s +2024-03-07T01:08:05Z #15 2.845 76150K .......... .......... .......... .......... .......... 60% 157M 1s +2024-03-07T01:08:05Z #15 2.845 76200K .......... .......... .......... .......... .......... 60% 105M 1s +2024-03-07T01:08:05Z #15 2.846 76250K .......... .......... .......... .......... .......... 60% 33.5M 1s +2024-03-07T01:08:05Z #15 2.848 76300K .......... .......... .......... .......... .......... 60% 138M 1s +2024-03-07T01:08:05Z #15 2.848 76350K .......... .......... .......... .......... .......... 60% 129M 1s +2024-03-07T01:08:05Z #15 2.848 76400K .......... .......... .......... .......... .......... 60% 140M 1s +2024-03-07T01:08:05Z #15 2.848 76450K .......... .......... .......... .......... .......... 60% 155M 1s +2024-03-07T01:08:05Z #15 2.849 76500K .......... .......... .......... .......... .......... 60% 130M 1s +2024-03-07T01:08:05Z #15 2.849 76550K .......... .......... .......... .......... .......... 60% 120M 1s +2024-03-07T01:08:05Z #15 2.849 76600K .......... .......... .......... .......... .......... 60% 139M 1s +2024-03-07T01:08:05Z #15 2.850 76650K .......... .......... .......... .......... .......... 60% 132M 1s +2024-03-07T01:08:05Z #15 2.851 76700K .......... .......... .......... .......... .......... 60% 170M 1s +2024-03-07T01:08:05Z #15 2.851 76750K .......... .......... .......... .......... .......... 60% 149M 1s +2024-03-07T01:08:05Z #15 2.851 76800K .......... .......... .......... .......... .......... 60% 137M 1s +2024-03-07T01:08:05Z #15 2.851 76850K .......... .......... .......... .......... .......... 60% 32.3M 1s +2024-03-07T01:08:05Z #15 2.853 76900K .......... .......... .......... .......... .......... 60% 108M 1s +2024-03-07T01:08:05Z #15 2.853 76950K .......... .......... .......... .......... .......... 60% 123M 1s +2024-03-07T01:08:05Z #15 2.853 77000K .......... .......... .......... .......... .......... 60% 130M 1s +2024-03-07T01:08:05Z #15 2.854 77050K .......... .......... .......... .......... .......... 60% 153M 1s +2024-03-07T01:08:05Z #15 2.854 77100K .......... .......... .......... .......... .......... 60% 122M 1s +2024-03-07T01:08:05Z #15 2.855 77150K .......... .......... .......... .......... .......... 60% 165M 1s +2024-03-07T01:08:05Z #15 2.855 77200K .......... .......... .......... .......... .......... 60% 169M 1s +2024-03-07T01:08:05Z #15 2.856 77250K .......... .......... .......... .......... .......... 60% 30.6M 1s +2024-03-07T01:08:05Z #15 2.857 77300K .......... .......... .......... .......... .......... 61% 48.3M 1s +2024-03-07T01:08:05Z #15 2.858 77350K .......... .......... .......... .......... .......... 61% 124M 1s +2024-03-07T01:08:05Z #15 2.858 77400K .......... .......... .......... .......... .......... 61% 137M 1s +2024-03-07T01:08:05Z #15 2.859 77450K .......... .......... .......... .......... .......... 61% 149M 1s +2024-03-07T01:08:05Z #15 2.859 77500K .......... .......... .......... .......... .......... 61% 145M 1s +2024-03-07T01:08:05Z #15 2.859 77550K .......... .......... .......... .......... .......... 61% 29.8M 1s +2024-03-07T01:08:05Z #15 2.861 77600K .......... .......... .......... .......... .......... 61% 70.5M 1s +2024-03-07T01:08:05Z #15 2.862 77650K .......... .......... .......... .......... .......... 61% 52.8M 1s +2024-03-07T01:08:05Z #15 2.863 77700K .......... .......... .......... .......... .......... 61% 73.5M 1s +2024-03-07T01:08:05Z #15 2.863 77750K .......... .......... .......... .......... .......... 61% 64.4M 1s +2024-03-07T01:08:05Z #15 2.864 77800K .......... .......... .......... .......... .......... 61% 150M 1s +2024-03-07T01:08:05Z #15 2.864 77850K .......... .......... .......... .......... .......... 61% 158M 1s +2024-03-07T01:08:05Z #15 2.864 77900K .......... .......... .......... .......... .......... 61% 143M 1s +2024-03-07T01:08:05Z #15 2.865 77950K .......... .......... .......... .......... .......... 61% 171M 1s +2024-03-07T01:08:05Z #15 2.865 78000K .......... .......... .......... .......... .......... 61% 125M 1s +2024-03-07T01:08:05Z #15 2.866 78050K .......... .......... .......... .......... .......... 61% 149M 1s +2024-03-07T01:08:05Z #15 2.866 78100K .......... .......... .......... .......... .......... 61% 121M 1s +2024-03-07T01:08:05Z #15 2.866 78150K .......... .......... .......... .......... .......... 61% 151M 1s +2024-03-07T01:08:05Z #15 2.868 78200K .......... .......... .......... .......... .......... 61% 135M 1s +2024-03-07T01:08:05Z #15 2.868 78250K .......... .......... .......... .......... .......... 61% 142M 1s +2024-03-07T01:08:05Z #15 2.868 78300K .......... .......... .......... .......... .......... 61% 26.3M 1s +2024-03-07T01:08:05Z #15 2.875 78350K .......... .......... .......... .......... .......... 61% 116M 1s +2024-03-07T01:08:05Z #15 2.875 78400K .......... .......... .......... .......... .......... 61% 153M 1s +2024-03-07T01:08:05Z #15 2.875 78450K .......... .......... .......... .......... .......... 61% 139M 1s +2024-03-07T01:08:05Z #15 2.875 78500K .......... .......... .......... .......... .......... 61% 134M 1s +2024-03-07T01:08:05Z #15 2.875 78550K .......... .......... .......... .......... .......... 61% 164M 1s +2024-03-07T01:08:05Z #15 2.875 78600K .......... .......... .......... .......... .......... 62% 164M 1s +2024-03-07T01:08:05Z #15 2.875 78650K .......... .......... .......... .......... .......... 62% 80.0M 1s +2024-03-07T01:08:05Z #15 2.875 78700K .......... .......... .......... .......... .......... 62% 74.0M 1s +2024-03-07T01:08:05Z #15 2.875 78750K .......... .......... .......... .......... .......... 62% 91.5M 1s +2024-03-07T01:08:05Z #15 2.875 78800K .......... .......... .......... .......... .......... 62% 60.8M 1s +2024-03-07T01:08:05Z #15 2.875 78850K .......... .......... .......... .......... .......... 62% 122M 1s +2024-03-07T01:08:05Z #15 2.875 78900K .......... .......... .......... .......... .......... 62% 130M 1s +2024-03-07T01:08:05Z #15 2.875 78950K .......... .......... .......... .......... .......... 62% 106M 1s +2024-03-07T01:08:05Z #15 2.875 79000K .......... .......... .......... .......... .......... 62% 125M 1s +2024-03-07T01:08:05Z #15 2.875 79050K .......... .......... .......... .......... .......... 62% 150M 1s +2024-03-07T01:08:05Z #15 2.876 79100K .......... .......... .......... .......... .......... 62% 111M 1s +2024-03-07T01:08:05Z #15 2.876 79150K .......... .......... .......... .......... .......... 62% 63.9M 1s +2024-03-07T01:08:05Z #15 2.877 79200K .......... .......... .......... .......... .......... 62% 64.2M 1s +2024-03-07T01:08:05Z #15 2.878 79250K .......... .......... .......... .......... .......... 62% 81.0M 1s +2024-03-07T01:08:05Z #15 2.878 79300K .......... .......... .......... .......... .......... 62% 151M 1s +2024-03-07T01:08:05Z #15 2.879 79350K .......... .......... .......... .......... .......... 62% 152M 1s +2024-03-07T01:08:05Z #15 2.879 79400K .......... .......... .......... .......... .......... 62% 35.3M 1s +2024-03-07T01:08:05Z #15 2.881 79450K .......... .......... .......... .......... .......... 62% 152M 1s +2024-03-07T01:08:05Z #15 2.881 79500K .......... .......... .......... .......... .......... 62% 139M 1s +2024-03-07T01:08:05Z #15 2.882 79550K .......... .......... .......... .......... .......... 62% 135M 1s +2024-03-07T01:08:05Z #15 2.882 79600K .......... .......... .......... .......... .......... 62% 130M 1s +2024-03-07T01:08:05Z #15 2.882 79650K .......... .......... .......... .......... .......... 62% 61.1M 1s +2024-03-07T01:08:05Z #15 2.883 79700K .......... .......... .......... .......... .......... 62% 133M 1s +2024-03-07T01:08:05Z #15 2.883 79750K .......... .......... .......... .......... .......... 62% 34.3M 1s +2024-03-07T01:08:05Z #15 2.884 79800K .......... .......... .......... .......... .......... 62% 74.9M 1s +2024-03-07T01:08:05Z #15 2.885 79850K .......... .......... .......... .......... .......... 63% 143M 1s +2024-03-07T01:08:05Z #15 2.885 79900K .......... .......... .......... .......... .......... 63% 91.1M 1s +2024-03-07T01:08:05Z #15 2.886 79950K .......... .......... .......... .......... .......... 63% 121M 1s +2024-03-07T01:08:05Z #15 2.886 80000K .......... .......... .......... .......... .......... 63% 115M 1s +2024-03-07T01:08:05Z #15 2.887 80050K .......... .......... .......... .......... .......... 63% 127M 1s +2024-03-07T01:08:05Z #15 2.887 80100K .......... .......... .......... .......... .......... 63% 70.8M 1s +2024-03-07T01:08:05Z #15 2.892 80150K .......... .......... .......... .......... .......... 63% 86.5M 1s +2024-03-07T01:08:05Z #15 2.892 80200K .......... .......... .......... .......... .......... 63% 175M 1s +2024-03-07T01:08:05Z #15 2.892 80250K .......... .......... .......... .......... .......... 63% 178M 1s +2024-03-07T01:08:05Z #15 2.892 80300K .......... .......... .......... .......... .......... 63% 69.1M 1s +2024-03-07T01:08:05Z #15 2.892 80350K .......... .......... .......... .......... .......... 63% 134M 1s +2024-03-07T01:08:05Z #15 2.892 80400K .......... .......... .......... .......... .......... 63% 177M 1s +2024-03-07T01:08:05Z #15 2.892 80450K .......... .......... .......... .......... .......... 63% 81.1M 1s +2024-03-07T01:08:05Z #15 2.892 80500K .......... .......... .......... .......... .......... 63% 113M 1s +2024-03-07T01:08:05Z #15 2.892 80550K .......... .......... .......... .......... .......... 63% 122M 1s +2024-03-07T01:08:05Z #15 2.892 80600K .......... .......... .......... .......... .......... 63% 65.1M 1s +2024-03-07T01:08:05Z #15 2.892 80650K .......... .......... .......... .......... .......... 63% 108M 1s +2024-03-07T01:08:05Z #15 2.893 80700K .......... .......... .......... .......... .......... 63% 79.9M 1s +2024-03-07T01:08:05Z #15 2.894 80750K .......... .......... .......... .......... .......... 63% 106M 1s +2024-03-07T01:08:05Z #15 2.894 80800K .......... .......... .......... .......... .......... 63% 132M 1s +2024-03-07T01:08:05Z #15 2.894 80850K .......... .......... .......... .......... .......... 63% 60.0M 1s +2024-03-07T01:08:05Z #15 2.895 80900K .......... .......... .......... .......... .......... 63% 90.4M 1s +2024-03-07T01:08:05Z #15 2.896 80950K .......... .......... .......... .......... .......... 63% 88.4M 1s +2024-03-07T01:08:05Z #15 2.897 81000K .......... .......... .......... .......... .......... 63% 110M 1s +2024-03-07T01:08:05Z #15 2.897 81050K .......... .......... .......... .......... .......... 63% 105M 1s +2024-03-07T01:08:05Z #15 2.897 81100K .......... .......... .......... .......... .......... 64% 80.8M 1s +2024-03-07T01:08:05Z #15 2.898 81150K .......... .......... .......... .......... .......... 64% 126M 1s +2024-03-07T01:08:05Z #15 2.898 81200K .......... .......... .......... .......... .......... 64% 116M 1s +2024-03-07T01:08:05Z #15 2.899 81250K .......... .......... .......... .......... .......... 64% 75.5M 1s +2024-03-07T01:08:05Z #15 2.899 81300K .......... .......... .......... .......... .......... 64% 85.5M 1s +2024-03-07T01:08:05Z #15 2.900 81350K .......... .......... .......... .......... .......... 64% 81.2M 1s +2024-03-07T01:08:05Z #15 2.900 81400K .......... .......... .......... .......... .......... 64% 139M 1s +2024-03-07T01:08:05Z #15 2.901 81450K .......... .......... .......... .......... .......... 64% 94.9M 1s +2024-03-07T01:08:05Z #15 2.903 81500K .......... .......... .......... .......... .......... 64% 169M 1s +2024-03-07T01:08:05Z #15 2.903 81550K .......... .......... .......... .......... .......... 64% 95.6M 1s +2024-03-07T01:08:05Z #15 2.903 81600K .......... .......... .......... .......... .......... 64% 171M 1s +2024-03-07T01:08:05Z #15 2.903 81650K .......... .......... .......... .......... .......... 64% 114M 1s +2024-03-07T01:08:05Z #15 2.903 81700K .......... .......... .......... .......... .......... 64% 177M 1s +2024-03-07T01:08:05Z #15 2.903 81750K .......... .......... .......... .......... .......... 64% 81.8M 1s +2024-03-07T01:08:05Z #15 2.904 81800K .......... .......... .......... .......... .......... 64% 76.0M 1s +2024-03-07T01:08:05Z #15 2.904 81850K .......... .......... .......... .......... .......... 64% 152M 1s +2024-03-07T01:08:05Z #15 2.905 81900K .......... .......... .......... .......... .......... 64% 57.2M 1s +2024-03-07T01:08:05Z #15 2.905 81950K .......... .......... .......... .......... .......... 64% 108M 1s +2024-03-07T01:08:05Z #15 2.906 82000K .......... .......... .......... .......... .......... 64% 77.3M 1s +2024-03-07T01:08:05Z #15 2.907 82050K .......... .......... .......... .......... .......... 64% 107M 1s +2024-03-07T01:08:05Z #15 2.907 82100K .......... .......... .......... .......... .......... 64% 70.5M 1s +2024-03-07T01:08:05Z #15 2.908 82150K .......... .......... .......... .......... .......... 64% 120M 1s +2024-03-07T01:08:05Z #15 2.908 82200K .......... .......... .......... .......... .......... 64% 139M 1s +2024-03-07T01:08:05Z #15 2.908 82250K .......... .......... .......... .......... .......... 64% 113M 1s +2024-03-07T01:08:05Z #15 2.909 82300K .......... .......... .......... .......... .......... 64% 124M 1s +2024-03-07T01:08:05Z #15 2.909 82350K .......... .......... .......... .......... .......... 64% 72.3M 1s +2024-03-07T01:08:05Z #15 2.910 82400K .......... .......... .......... .......... .......... 65% 70.0M 1s +2024-03-07T01:08:05Z #15 2.911 82450K .......... .......... .......... .......... .......... 65% 88.0M 1s +2024-03-07T01:08:05Z #15 2.911 82500K .......... .......... .......... .......... .......... 65% 99.7M 1s +2024-03-07T01:08:05Z #15 2.912 82550K .......... .......... .......... .......... .......... 65% 90.4M 1s +2024-03-07T01:08:05Z #15 2.912 82600K .......... .......... .......... .......... .......... 65% 103M 1s +2024-03-07T01:08:05Z #15 2.913 82650K .......... .......... .......... .......... .......... 65% 123M 1s +2024-03-07T01:08:05Z #15 2.913 82700K .......... .......... .......... .......... .......... 65% 130M 1s +2024-03-07T01:08:05Z #15 2.914 82750K .......... .......... .......... .......... .......... 65% 134M 1s +2024-03-07T01:08:05Z #15 2.914 82800K .......... .......... .......... .......... .......... 65% 107M 1s +2024-03-07T01:08:05Z #15 2.914 82850K .......... .......... .......... .......... .......... 65% 63.9M 1s +2024-03-07T01:08:05Z #15 2.915 82900K .......... .......... .......... .......... .......... 65% 105M 1s +2024-03-07T01:08:05Z #15 2.916 82950K .......... .......... .......... .......... .......... 65% 79.8M 1s +2024-03-07T01:08:05Z #15 2.916 83000K .......... .......... .......... .......... .......... 65% 98.7M 1s +2024-03-07T01:08:05Z #15 2.917 83050K .......... .......... .......... .......... .......... 65% 169M 1s +2024-03-07T01:08:05Z #15 2.917 83100K .......... .......... .......... .......... .......... 65% 132M 1s +2024-03-07T01:08:05Z #15 2.918 83150K .......... .......... .......... .......... .......... 65% 61.4M 1s +2024-03-07T01:08:05Z #15 2.918 83200K .......... .......... .......... .......... .......... 65% 115M 1s +2024-03-07T01:08:05Z #15 2.919 83250K .......... .......... .......... .......... .......... 65% 102M 1s +2024-03-07T01:08:05Z #15 2.919 83300K .......... .......... .......... .......... .......... 65% 165M 1s +2024-03-07T01:08:05Z #15 2.920 83350K .......... .......... .......... .......... .......... 65% 55.5M 1s +2024-03-07T01:08:05Z #15 2.921 83400K .......... .......... .......... .......... .......... 65% 166M 1s +2024-03-07T01:08:05Z #15 2.921 83450K .......... .......... .......... .......... .......... 65% 177M 1s +2024-03-07T01:08:05Z #15 2.921 83500K .......... .......... .......... .......... .......... 65% 72.1M 1s +2024-03-07T01:08:05Z #15 2.922 83550K .......... .......... .......... .......... .......... 65% 87.9M 1s +2024-03-07T01:08:05Z #15 2.922 83600K .......... .......... .......... .......... .......... 65% 79.6M 1s +2024-03-07T01:08:05Z #15 2.923 83650K .......... .......... .......... .......... .......... 66% 130M 1s +2024-03-07T01:08:05Z #15 2.923 83700K .......... .......... .......... .......... .......... 66% 43.9M 1s +2024-03-07T01:08:05Z #15 2.929 83750K .......... .......... .......... .......... .......... 66% 176M 1s +2024-03-07T01:08:05Z #15 2.929 83800K .......... .......... .......... .......... .......... 66% 137M 1s +2024-03-07T01:08:05Z #15 2.929 83850K .......... .......... .......... .......... .......... 66% 169M 1s +2024-03-07T01:08:05Z #15 2.929 83900K .......... .......... .......... .......... .......... 66% 145M 1s +2024-03-07T01:08:05Z #15 2.929 83950K .......... .......... .......... .......... .......... 66% 135M 1s +2024-03-07T01:08:05Z #15 2.929 84000K .......... .......... .......... .......... .......... 66% 71.4M 1s +2024-03-07T01:08:05Z #15 2.929 84050K .......... .......... .......... .......... .......... 66% 80.8M 1s +2024-03-07T01:08:05Z #15 2.929 84100K .......... .......... .......... .......... .......... 66% 76.9M 1s +2024-03-07T01:08:05Z #15 2.929 84150K .......... .......... .......... .......... .......... 66% 127M 1s +2024-03-07T01:08:05Z #15 2.929 84200K .......... .......... .......... .......... .......... 66% 102M 1s +2024-03-07T01:08:05Z #15 2.929 84250K .......... .......... .......... .......... .......... 66% 93.1M 1s +2024-03-07T01:08:05Z #15 2.929 84300K .......... .......... .......... .......... .......... 66% 69.0M 1s +2024-03-07T01:08:05Z #15 2.930 84350K .......... .......... .......... .......... .......... 66% 57.5M 1s +2024-03-07T01:08:05Z #15 2.931 84400K .......... .......... .......... .......... .......... 66% 120M 1s +2024-03-07T01:08:05Z #15 2.931 84450K .......... .......... .......... .......... .......... 66% 37.2M 1s +2024-03-07T01:08:05Z #15 2.932 84500K .......... .......... .......... .......... .......... 66% 67.8M 1s +2024-03-07T01:08:05Z #15 2.933 84550K .......... .......... .......... .......... .......... 66% 122M 1s +2024-03-07T01:08:05Z #15 2.934 84600K .......... .......... .......... .......... .......... 66% 69.4M 1s +2024-03-07T01:08:05Z #15 2.934 84650K .......... .......... .......... .......... .......... 66% 109M 1s +2024-03-07T01:08:05Z #15 2.935 84700K .......... .......... .......... .......... .......... 66% 118M 1s +2024-03-07T01:08:05Z #15 2.935 84750K .......... .......... .......... .......... .......... 66% 25.5M 1s +2024-03-07T01:08:05Z #15 2.937 84800K .......... .......... .......... .......... .......... 66% 54.0M 1s +2024-03-07T01:08:05Z #15 2.938 84850K .......... .......... .......... .......... .......... 66% 119M 1s +2024-03-07T01:08:05Z #15 2.938 84900K .......... .......... .......... .......... .......... 67% 98.1M 1s +2024-03-07T01:08:05Z #15 2.939 84950K .......... .......... .......... .......... .......... 67% 102M 1s +2024-03-07T01:08:05Z #15 2.939 85000K .......... .......... .......... .......... .......... 67% 74.5M 1s +2024-03-07T01:08:05Z #15 2.940 85050K .......... .......... .......... .......... .......... 67% 128M 1s +2024-03-07T01:08:05Z #15 2.940 85100K .......... .......... .......... .......... .......... 67% 110M 1s +2024-03-07T01:08:05Z #15 2.943 85150K .......... .......... .......... .......... .......... 67% 109M 1s +2024-03-07T01:08:05Z #15 2.943 85200K .......... .......... .......... .......... .......... 67% 172M 1s +2024-03-07T01:08:05Z #15 2.943 85250K .......... .......... .......... .......... .......... 67% 154M 1s +2024-03-07T01:08:05Z #15 2.943 85300K .......... .......... .......... .......... .......... 67% 175M 1s +2024-03-07T01:08:05Z #15 2.943 85350K .......... .......... .......... .......... .......... 67% 150M 1s +2024-03-07T01:08:05Z #15 2.943 85400K .......... .......... .......... .......... .......... 67% 147M 1s +2024-03-07T01:08:05Z #15 2.943 85450K .......... .......... .......... .......... .......... 67% 173M 1s +2024-03-07T01:08:05Z #15 2.943 85500K .......... .......... .......... .......... .......... 67% 171M 1s +2024-03-07T01:08:05Z #15 2.943 85550K .......... .......... .......... .......... .......... 67% 91.2M 1s +2024-03-07T01:08:05Z #15 2.944 85600K .......... .......... .......... .......... .......... 67% 59.3M 1s +2024-03-07T01:08:05Z #15 2.945 85650K .......... .......... .......... .......... .......... 67% 87.7M 1s +2024-03-07T01:08:05Z #15 2.945 85700K .......... .......... .......... .......... .......... 67% 116M 1s +2024-03-07T01:08:05Z #15 2.946 85750K .......... .......... .......... .......... .......... 67% 92.3M 1s +2024-03-07T01:08:05Z #15 2.946 85800K .......... .......... .......... .......... .......... 67% 120M 1s +2024-03-07T01:08:05Z #15 2.947 85850K .......... .......... .......... .......... .......... 67% 107M 1s +2024-03-07T01:08:05Z #15 2.947 85900K .......... .......... .......... .......... .......... 67% 116M 1s +2024-03-07T01:08:05Z #15 2.947 85950K .......... .......... .......... .......... .......... 67% 98.1M 1s +2024-03-07T01:08:05Z #15 2.948 86000K .......... .......... .......... .......... .......... 67% 112M 1s +2024-03-07T01:08:05Z #15 2.948 86050K .......... .......... .......... .......... .......... 67% 93.5M 1s +2024-03-07T01:08:05Z #15 2.949 86100K .......... .......... .......... .......... .......... 67% 120M 1s +2024-03-07T01:08:05Z #15 2.949 86150K .......... .......... .......... .......... .......... 67% 103M 1s +2024-03-07T01:08:05Z #15 2.950 86200K .......... .......... .......... .......... .......... 68% 111M 1s +2024-03-07T01:08:05Z #15 2.950 86250K .......... .......... .......... .......... .......... 68% 125M 1s +2024-03-07T01:08:05Z #15 2.950 86300K .......... .......... .......... .......... .......... 68% 103M 1s +2024-03-07T01:08:05Z #15 2.951 86350K .......... .......... .......... .......... .......... 68% 106M 1s +2024-03-07T01:08:05Z #15 2.952 86400K .......... .......... .......... .......... .......... 68% 124M 1s +2024-03-07T01:08:05Z #15 2.952 86450K .......... .......... .......... .......... .......... 68% 94.4M 1s +2024-03-07T01:08:05Z #15 2.952 86500K .......... .......... .......... .......... .......... 68% 138M 1s +2024-03-07T01:08:05Z #15 2.953 86550K .......... .......... .......... .......... .......... 68% 120M 1s +2024-03-07T01:08:05Z #15 2.955 86600K .......... .......... .......... .......... .......... 68% 121M 1s +2024-03-07T01:08:05Z #15 2.956 86650K .......... .......... .......... .......... .......... 68% 156M 1s +2024-03-07T01:08:05Z #15 2.956 86700K .......... .......... .......... .......... .......... 68% 151M 1s +2024-03-07T01:08:05Z #15 2.956 86750K .......... .......... .......... .......... .......... 68% 154M 1s +2024-03-07T01:08:05Z #15 2.956 86800K .......... .......... .......... .......... .......... 68% 151M 1s +2024-03-07T01:08:05Z #15 2.956 86850K .......... .......... .......... .......... .......... 68% 233K 1s +2024-03-07T01:08:05Z #15 3.170 86900K .......... .......... .......... .......... .......... 68% 38.1M 1s +2024-03-07T01:08:05Z #15 3.171 86950K .......... .......... .......... .......... .......... 68% 46.5M 1s +2024-03-07T01:08:05Z #15 3.173 87000K .......... .......... .......... .......... .......... 68% 17.5M 1s +2024-03-07T01:08:05Z #15 3.175 87050K .......... .......... .......... .......... .......... 68% 27.9M 1s +2024-03-07T01:08:05Z #15 3.177 87100K .......... .......... .......... .......... .......... 68% 46.2M 1s +2024-03-07T01:08:05Z #15 3.178 87150K .......... .......... .......... .......... .......... 68% 112M 1s +2024-03-07T01:08:05Z #15 3.178 87200K .......... .......... .......... .......... .......... 68% 37.3M 1s +2024-03-07T01:08:05Z #15 3.180 87250K .......... .......... .......... .......... .......... 68% 46.9M 1s +2024-03-07T01:08:05Z #15 3.181 87300K .......... .......... .......... .......... .......... 68% 56.9M 1s +2024-03-07T01:08:05Z #15 3.181 87350K .......... .......... .......... .......... .......... 68% 53.2M 1s +2024-03-07T01:08:05Z #15 3.183 87400K .......... .......... .......... .......... .......... 68% 61.4M 1s +2024-03-07T01:08:05Z #15 3.184 87450K .......... .......... .......... .......... .......... 69% 157M 1s +2024-03-07T01:08:05Z #15 3.184 87500K .......... .......... .......... .......... .......... 69% 37.8M 1s +2024-03-07T01:08:05Z #15 3.185 87550K .......... .......... .......... .......... .......... 69% 61.2M 1s +2024-03-07T01:08:05Z #15 3.186 87600K .......... .......... .......... .......... .......... 69% 31.4M 1s +2024-03-07T01:08:05Z #15 3.193 87650K .......... .......... .......... .......... .......... 69% 97.0M 1s +2024-03-07T01:08:05Z #15 3.193 87700K .......... .......... .......... .......... .......... 69% 97.7M 1s +2024-03-07T01:08:05Z #15 3.193 87750K .......... .......... .......... .......... .......... 69% 123M 1s +2024-03-07T01:08:05Z #15 3.193 87800K .......... .......... .......... .......... .......... 69% 123M 1s +2024-03-07T01:08:05Z #15 3.193 87850K .......... .......... .......... .......... .......... 69% 123M 1s +2024-03-07T01:08:05Z #15 3.193 87900K .......... .......... .......... .......... .......... 69% 94.6M 1s +2024-03-07T01:08:05Z #15 3.193 87950K .......... .......... .......... .......... .......... 69% 119M 1s +2024-03-07T01:08:05Z #15 3.193 88000K .......... .......... .......... .......... .......... 69% 121M 1s +2024-03-07T01:08:05Z #15 3.193 88050K .......... .......... .......... .......... .......... 69% 106M 1s +2024-03-07T01:08:05Z #15 3.193 88100K .......... .......... .......... .......... .......... 69% 97.5M 1s +2024-03-07T01:08:05Z #15 3.193 88150K .......... .......... .......... .......... .......... 69% 117M 1s +2024-03-07T01:08:05Z #15 3.193 88200K .......... .......... .......... .......... .......... 69% 115M 1s +2024-03-07T01:08:05Z #15 3.193 88250K .......... .......... .......... .......... .......... 69% 108M 1s +2024-03-07T01:08:05Z #15 3.193 88300K .......... .......... .......... .......... .......... 69% 125M 1s +2024-03-07T01:08:05Z #15 3.193 88350K .......... .......... .......... .......... .......... 69% 139M 1s +2024-03-07T01:08:05Z #15 3.194 88400K .......... .......... .......... .......... .......... 69% 69.8M 1s +2024-03-07T01:08:05Z #15 3.199 88450K .......... .......... .......... .......... .......... 69% 126M 1s +2024-03-07T01:08:05Z #15 3.199 88500K .......... .......... .......... .......... .......... 69% 107M 1s +2024-03-07T01:08:05Z #15 3.199 88550K .......... .......... .......... .......... .......... 69% 122M 1s +2024-03-07T01:08:05Z #15 3.199 88600K .......... .......... .......... .......... .......... 69% 121M 1s +2024-03-07T01:08:05Z #15 3.199 88650K .......... .......... .......... .......... .......... 69% 115M 1s +2024-03-07T01:08:05Z #15 3.199 88700K .......... .......... .......... .......... .......... 70% 135M 1s +2024-03-07T01:08:05Z #15 3.199 88750K .......... .......... .......... .......... .......... 70% 121M 1s +2024-03-07T01:08:05Z #15 3.199 88800K .......... .......... .......... .......... .......... 70% 146M 1s +2024-03-07T01:08:05Z #15 3.199 88850K .......... .......... .......... .......... .......... 70% 105M 1s +2024-03-07T01:08:05Z #15 3.199 88900K .......... .......... .......... .......... .......... 70% 121M 1s +2024-03-07T01:08:05Z #15 3.199 88950K .......... .......... .......... .......... .......... 70% 109M 1s +2024-03-07T01:08:05Z #15 3.199 89000K .......... .......... .......... .......... .......... 70% 140M 1s +2024-03-07T01:08:05Z #15 3.199 89050K .......... .......... .......... .......... .......... 70% 52.4M 1s +2024-03-07T01:08:05Z #15 3.201 89100K .......... .......... .......... .......... .......... 70% 117M 1s +2024-03-07T01:08:05Z #15 3.201 89150K .......... .......... .......... .......... .......... 70% 1.17M 1s +2024-03-07T01:08:05Z #15 3.242 89200K .......... .......... .......... .......... .......... 70% 21.3M 1s +2024-03-07T01:08:05Z #15 3.245 89250K .......... .......... .......... .......... .......... 70% 26.4M 1s +2024-03-07T01:08:05Z #15 3.247 89300K .......... .......... .......... .......... .......... 70% 13.2M 1s +2024-03-07T01:08:05Z #15 3.250 89350K .......... .......... .......... .......... .......... 70% 127M 1s +2024-03-07T01:08:05Z #15 3.250 89400K .......... .......... .......... .......... .......... 70% 128M 1s +2024-03-07T01:08:05Z #15 3.251 89450K .......... .......... .......... .......... .......... 70% 20.0M 1s +2024-03-07T01:08:05Z #15 3.253 89500K .......... .......... .......... .......... .......... 70% 18.8M 1s +2024-03-07T01:08:05Z #15 3.256 89550K .......... .......... .......... .......... .......... 70% 111M 1s +2024-03-07T01:08:05Z #15 3.257 89600K .......... .......... .......... .......... .......... 70% 115M 1s +2024-03-07T01:08:05Z #15 3.257 89650K .......... .......... .......... .......... .......... 70% 58.6M 1s +2024-03-07T01:08:05Z #15 3.258 89700K .......... .......... .......... .......... .......... 70% 14.8M 1s +2024-03-07T01:08:05Z #15 3.265 89750K .......... .......... .......... .......... .......... 70% 128M 1s +2024-03-07T01:08:05Z #15 3.265 89800K .......... .......... .......... .......... .......... 70% 120M 1s +2024-03-07T01:08:05Z #15 3.265 89850K .......... .......... .......... .......... .......... 70% 51.5M 1s +2024-03-07T01:08:05Z #15 3.265 89900K .......... .......... .......... .......... .......... 70% 70.1M 1s +2024-03-07T01:08:05Z #15 3.265 89950K .......... .......... .......... .......... .......... 70% 21.1M 1s +2024-03-07T01:08:05Z #15 3.266 90000K .......... .......... .......... .......... .......... 71% 115M 1s +2024-03-07T01:08:05Z #15 3.266 90050K .......... .......... .......... .......... .......... 71% 138M 1s +2024-03-07T01:08:05Z #15 3.266 90100K .......... .......... .......... .......... .......... 71% 64.9M 1s +2024-03-07T01:08:05Z #15 3.268 90150K .......... .......... .......... .......... .......... 71% 115M 1s +2024-03-07T01:08:05Z #15 3.268 90200K .......... .......... .......... .......... .......... 71% 128M 1s +2024-03-07T01:08:05Z #15 3.268 90250K .......... .......... .......... .......... .......... 71% 70.6M 1s +2024-03-07T01:08:05Z #15 3.269 90300K .......... .......... .......... .......... .......... 71% 91.3M 1s +2024-03-07T01:08:05Z #15 3.269 90350K .......... .......... .......... .......... .......... 71% 112M 1s +2024-03-07T01:08:05Z #15 3.270 90400K .......... .......... .......... .......... .......... 71% 126M 1s +2024-03-07T01:08:05Z #15 3.270 90450K .......... .......... .......... .......... .......... 71% 104M 1s +2024-03-07T01:08:05Z #15 3.271 90500K .......... .......... .......... .......... .......... 71% 150M 1s +2024-03-07T01:08:05Z #15 3.271 90550K .......... .......... .......... .......... .......... 71% 119M 1s +2024-03-07T01:08:05Z #15 3.271 90600K .......... .......... .......... .......... .......... 71% 96.7M 1s +2024-03-07T01:08:05Z #15 3.272 90650K .......... .......... .......... .......... .......... 71% 91.3M 1s +2024-03-07T01:08:05Z #15 3.272 90700K .......... .......... .......... .......... .......... 71% 132M 1s +2024-03-07T01:08:05Z #15 3.273 90750K .......... .......... .......... .......... .......... 71% 115M 1s +2024-03-07T01:08:05Z #15 3.273 90800K .......... .......... .......... .......... .......... 71% 81.1M 1s +2024-03-07T01:08:05Z #15 3.274 90850K .......... .......... .......... .......... .......... 71% 124M 1s +2024-03-07T01:08:05Z #15 3.274 90900K .......... .......... .......... .......... .......... 71% 58.1M 1s +2024-03-07T01:08:05Z #15 3.275 90950K .......... .......... .......... .......... .......... 71% 73.5M 1s +2024-03-07T01:08:05Z #15 3.275 91000K .......... .......... .......... .......... .......... 71% 57.9M 1s +2024-03-07T01:08:05Z #15 3.278 91050K .......... .......... .......... .......... .......... 71% 160M 1s +2024-03-07T01:08:05Z #15 3.278 91100K .......... .......... .......... .......... .......... 71% 153M 1s +2024-03-07T01:08:05Z #15 3.278 91150K .......... .......... .......... .......... .......... 71% 133M 1s +2024-03-07T01:08:05Z #15 3.278 91200K .......... .......... .......... .......... .......... 71% 142M 1s +2024-03-07T01:08:05Z #15 3.278 91250K .......... .......... .......... .......... .......... 72% 98.0M 1s +2024-03-07T01:08:05Z #15 3.278 91300K .......... .......... .......... .......... .......... 72% 82.6M 1s +2024-03-07T01:08:05Z #15 3.279 91350K .......... .......... .......... .......... .......... 72% 102M 1s +2024-03-07T01:08:05Z #15 3.279 91400K .......... .......... .......... .......... .......... 72% 135M 1s +2024-03-07T01:08:05Z #15 3.280 91450K .......... .......... .......... .......... .......... 72% 118M 1s +2024-03-07T01:08:05Z #15 3.280 91500K .......... .......... .......... .......... .......... 72% 161M 1s +2024-03-07T01:08:05Z #15 3.280 91550K .......... .......... .......... .......... .......... 72% 115M 1s +2024-03-07T01:08:05Z #15 3.281 91600K .......... .......... .......... .......... .......... 72% 142M 1s +2024-03-07T01:08:05Z #15 3.282 91650K .......... .......... .......... .......... .......... 72% 68.3M 1s +2024-03-07T01:08:05Z #15 3.282 91700K .......... .......... .......... .......... .......... 72% 104M 1s +2024-03-07T01:08:05Z #15 3.282 91750K .......... .......... .......... .......... .......... 72% 160M 1s +2024-03-07T01:08:05Z #15 3.283 91800K .......... .......... .......... .......... .......... 72% 94.2M 1s +2024-03-07T01:08:05Z #15 3.283 91850K .......... .......... .......... .......... .......... 72% 92.5M 1s +2024-03-07T01:08:05Z #15 3.284 91900K .......... .......... .......... .......... .......... 72% 163M 1s +2024-03-07T01:08:05Z #15 3.284 91950K .......... .......... .......... .......... .......... 72% 130M 1s +2024-03-07T01:08:05Z #15 3.285 92000K .......... .......... .......... .......... .......... 72% 145M 1s +2024-03-07T01:08:05Z #15 3.285 92050K .......... .......... .......... .......... .......... 72% 105M 1s +2024-03-07T01:08:05Z #15 3.286 92100K .......... .......... .......... .......... .......... 72% 137M 1s +2024-03-07T01:08:06Z #15 3.286 92150K .......... .......... .......... .......... .......... 72% 123M 1s +2024-03-07T01:08:06Z #15 3.286 92200K .......... .......... .......... .......... .......... 72% 124M 1s +2024-03-07T01:08:06Z #15 3.291 92250K .......... .......... .......... .......... .......... 72% 147M 1s +2024-03-07T01:08:06Z #15 3.291 92300K .......... .......... .......... .......... .......... 72% 182M 1s +2024-03-07T01:08:06Z #15 3.291 92350K .......... .......... .......... .......... .......... 72% 159M 1s +2024-03-07T01:08:06Z #15 3.291 92400K .......... .......... .......... .......... .......... 72% 164M 1s +2024-03-07T01:08:06Z #15 3.291 92450K .......... .......... .......... .......... .......... 72% 59.3M 1s +2024-03-07T01:08:06Z #15 3.291 92500K .......... .......... .......... .......... .......... 72% 177M 1s +2024-03-07T01:08:06Z #15 3.291 92550K .......... .......... .......... .......... .......... 73% 185M 1s +2024-03-07T01:08:06Z #15 3.291 92600K .......... .......... .......... .......... .......... 73% 83.2M 1s +2024-03-07T01:08:06Z #15 3.291 92650K .......... .......... .......... .......... .......... 73% 148M 1s +2024-03-07T01:08:06Z #15 3.291 92700K .......... .......... .......... .......... .......... 73% 156M 1s +2024-03-07T01:08:06Z #15 3.291 92750K .......... .......... .......... .......... .......... 73% 161M 1s +2024-03-07T01:08:06Z #15 3.291 92800K .......... .......... .......... .......... .......... 73% 173M 1s +2024-03-07T01:08:06Z #15 3.291 92850K .......... .......... .......... .......... .......... 73% 183M 1s +2024-03-07T01:08:06Z #15 3.291 92900K .......... .......... .......... .......... .......... 73% 154M 1s +2024-03-07T01:08:06Z #15 3.291 92950K .......... .......... .......... .......... .......... 73% 93.0M 1s +2024-03-07T01:08:06Z #15 3.292 93000K .......... .......... .......... .......... .......... 73% 124M 1s +2024-03-07T01:08:06Z #15 3.292 93050K .......... .......... .......... .......... .......... 73% 123M 1s +2024-03-07T01:08:06Z #15 3.293 93100K .......... .......... .......... .......... .......... 73% 129M 1s +2024-03-07T01:08:06Z #15 3.293 93150K .......... .......... .......... .......... .......... 73% 138M 1s +2024-03-07T01:08:06Z #15 3.293 93200K .......... .......... .......... .......... .......... 73% 64.1M 1s +2024-03-07T01:08:06Z #15 3.295 93250K .......... .......... .......... .......... .......... 73% 88.2M 1s +2024-03-07T01:08:06Z #15 3.295 93300K .......... .......... .......... .......... .......... 73% 138M 1s +2024-03-07T01:08:06Z #15 3.295 93350K .......... .......... .......... .......... .......... 73% 83.8M 1s +2024-03-07T01:08:06Z #15 3.299 93400K .......... .......... .......... .......... .......... 73% 96.5M 1s +2024-03-07T01:08:06Z #15 3.299 93450K .......... .......... .......... .......... .......... 73% 175M 1s +2024-03-07T01:08:06Z #15 3.299 93500K .......... .......... .......... .......... .......... 73% 169M 1s +2024-03-07T01:08:06Z #15 3.299 93550K .......... .......... .......... .......... .......... 73% 159M 1s +2024-03-07T01:08:06Z #15 3.299 93600K .......... .......... .......... .......... .......... 73% 180M 1s +2024-03-07T01:08:06Z #15 3.299 93650K .......... .......... .......... .......... .......... 73% 182M 1s +2024-03-07T01:08:06Z #15 3.299 93700K .......... .......... .......... .......... .......... 73% 161M 1s +2024-03-07T01:08:06Z #15 3.299 93750K .......... .......... .......... .......... .......... 73% 159M 1s +2024-03-07T01:08:06Z #15 3.299 93800K .......... .......... .......... .......... .......... 74% 157M 1s +2024-03-07T01:08:06Z #15 3.299 93850K .......... .......... .......... .......... .......... 74% 179M 1s +2024-03-07T01:08:06Z #15 3.299 93900K .......... .......... .......... .......... .......... 74% 185M 1s +2024-03-07T01:08:06Z #15 3.299 93950K .......... .......... .......... .......... .......... 74% 178M 1s +2024-03-07T01:08:06Z #15 3.299 94000K .......... .......... .......... .......... .......... 74% 46.4M 1s +2024-03-07T01:08:06Z #15 3.300 94050K .......... .......... .......... .......... .......... 74% 130M 1s +2024-03-07T01:08:06Z #15 3.301 94100K .......... .......... .......... .......... .......... 74% 90.8M 1s +2024-03-07T01:08:06Z #15 3.301 94150K .......... .......... .......... .......... .......... 74% 106M 1s +2024-03-07T01:08:06Z #15 3.302 94200K .......... .......... .......... .......... .......... 74% 123M 1s +2024-03-07T01:08:06Z #15 3.302 94250K .......... .......... .......... .......... .......... 74% 118M 1s +2024-03-07T01:08:06Z #15 3.302 94300K .......... .......... .......... .......... .......... 74% 118M 1s +2024-03-07T01:08:06Z #15 3.303 94350K .......... .......... .......... .......... .......... 74% 111M 1s +2024-03-07T01:08:06Z #15 3.303 94400K .......... .......... .......... .......... .......... 74% 103M 1s +2024-03-07T01:08:06Z #15 3.307 94450K .......... .......... .......... .......... .......... 74% 157M 1s +2024-03-07T01:08:06Z #15 3.307 94500K .......... .......... .......... .......... .......... 74% 171M 1s +2024-03-07T01:08:06Z #15 3.307 94550K .......... .......... .......... .......... .......... 74% 174M 1s +2024-03-07T01:08:06Z #15 3.307 94600K .......... .......... .......... .......... .......... 74% 146M 1s +2024-03-07T01:08:06Z #15 3.307 94650K .......... .......... .......... .......... .......... 74% 78.4M 1s +2024-03-07T01:08:06Z #15 3.307 94700K .......... .......... .......... .......... .......... 74% 115M 1s +2024-03-07T01:08:06Z #15 3.307 94750K .......... .......... .......... .......... .......... 74% 179M 1s +2024-03-07T01:08:06Z #15 3.307 94800K .......... .......... .......... .......... .......... 74% 88.1M 1s +2024-03-07T01:08:06Z #15 3.307 94850K .......... .......... .......... .......... .......... 74% 85.6M 1s +2024-03-07T01:08:06Z #15 3.307 94900K .......... .......... .......... .......... .......... 74% 37.8M 1s +2024-03-07T01:08:06Z #15 3.309 94950K .......... .......... .......... .......... .......... 74% 124M 1s +2024-03-07T01:08:06Z #15 3.309 95000K .......... .......... .......... .......... .......... 74% 126M 1s +2024-03-07T01:08:06Z #15 3.309 95050K .......... .......... .......... .......... .......... 75% 82.9M 1s +2024-03-07T01:08:06Z #15 3.310 95100K .......... .......... .......... .......... .......... 75% 117M 1s +2024-03-07T01:08:06Z #15 3.310 95150K .......... .......... .......... .......... .......... 75% 127M 1s +2024-03-07T01:08:06Z #15 3.311 95200K .......... .......... .......... .......... .......... 75% 104M 1s +2024-03-07T01:08:06Z #15 3.311 95250K .......... .......... .......... .......... .......... 75% 5.89M 1s +2024-03-07T01:08:06Z #15 3.320 95300K .......... .......... .......... .......... .......... 75% 104M 1s +2024-03-07T01:08:06Z #15 3.320 95350K .......... .......... .......... .......... .......... 75% 114M 1s +2024-03-07T01:08:06Z #15 3.321 95400K .......... .......... .......... .......... .......... 75% 114M 1s +2024-03-07T01:08:06Z #15 3.321 95450K .......... .......... .......... .......... .......... 75% 57.0M 1s +2024-03-07T01:08:06Z #15 3.322 95500K .......... .......... .......... .......... .......... 75% 69.5M 1s +2024-03-07T01:08:06Z #15 3.322 95550K .......... .......... .......... .......... .......... 75% 80.6M 1s +2024-03-07T01:08:06Z #15 3.323 95600K .......... .......... .......... .......... .......... 75% 105M 1s +2024-03-07T01:08:06Z #15 3.327 95650K .......... .......... .......... .......... .......... 75% 89.3M 1s +2024-03-07T01:08:06Z #15 3.327 95700K .......... .......... .......... .......... .......... 75% 116M 1s +2024-03-07T01:08:06Z #15 3.327 95750K .......... .......... .......... .......... .......... 75% 110M 1s +2024-03-07T01:08:06Z #15 3.327 95800K .......... .......... .......... .......... .......... 75% 126M 1s +2024-03-07T01:08:06Z #15 3.327 95850K .......... .......... .......... .......... .......... 75% 111M 1s +2024-03-07T01:08:06Z #15 3.327 95900K .......... .......... .......... .......... .......... 75% 57.4M 1s +2024-03-07T01:08:06Z #15 3.327 95950K .......... .......... .......... .......... .......... 75% 111M 1s +2024-03-07T01:08:06Z #15 3.327 96000K .......... .......... .......... .......... .......... 75% 58.8M 1s +2024-03-07T01:08:06Z #15 3.331 96050K .......... .......... .......... .......... .......... 75% 78.0M 1s +2024-03-07T01:08:06Z #15 3.331 96100K .......... .......... .......... .......... .......... 75% 130M 1s +2024-03-07T01:08:06Z #15 3.331 96150K .......... .......... .......... .......... .......... 75% 75.2M 1s +2024-03-07T01:08:06Z #15 3.331 96200K .......... .......... .......... .......... .......... 75% 121M 1s +2024-03-07T01:08:06Z #15 3.331 96250K .......... .......... .......... .......... .......... 75% 110M 1s +2024-03-07T01:08:06Z #15 3.331 96300K .......... .......... .......... .......... .......... 75% 123M 1s +2024-03-07T01:08:06Z #15 3.331 96350K .......... .......... .......... .......... .......... 76% 60.0M 1s +2024-03-07T01:08:06Z #15 3.332 96400K .......... .......... .......... .......... .......... 76% 129M 1s +2024-03-07T01:08:06Z #15 3.332 96450K .......... .......... .......... .......... .......... 76% 96.8M 1s +2024-03-07T01:08:06Z #15 3.333 96500K .......... .......... .......... .......... .......... 76% 89.5M 1s +2024-03-07T01:08:06Z #15 3.333 96550K .......... .......... .......... .......... .......... 76% 161M 1s +2024-03-07T01:08:06Z #15 3.333 96600K .......... .......... .......... .......... .......... 76% 115M 1s +2024-03-07T01:08:06Z #15 3.334 96650K .......... .......... .......... .......... .......... 76% 138M 1s +2024-03-07T01:08:06Z #15 3.334 96700K .......... .......... .......... .......... .......... 76% 108M 1s +2024-03-07T01:08:06Z #15 3.334 96750K .......... .......... .......... .......... .......... 76% 164M 1s +2024-03-07T01:08:06Z #15 3.335 96800K .......... .......... .......... .......... .......... 76% 76.1M 1s +2024-03-07T01:08:06Z #15 3.336 96850K .......... .......... .......... .......... .......... 76% 77.2M 1s +2024-03-07T01:08:06Z #15 3.336 96900K .......... .......... .......... .......... .......... 76% 99.1M 1s +2024-03-07T01:08:06Z #15 3.337 96950K .......... .......... .......... .......... .......... 76% 167M 1s +2024-03-07T01:08:06Z #15 3.337 97000K .......... .......... .......... .......... .......... 76% 110M 1s +2024-03-07T01:08:06Z #15 3.337 97050K .......... .......... .......... .......... .......... 76% 75.0M 1s +2024-03-07T01:08:06Z #15 3.338 97100K .......... .......... .......... .......... .......... 76% 137M 1s +2024-03-07T01:08:06Z #15 3.338 97150K .......... .......... .......... .......... .......... 76% 101M 1s +2024-03-07T01:08:06Z #15 3.339 97200K .......... .......... .......... .......... .......... 76% 115M 1s +2024-03-07T01:08:06Z #15 3.339 97250K .......... .......... .......... .......... .......... 76% 125M 1s +2024-03-07T01:08:06Z #15 3.340 97300K .......... .......... .......... .......... .......... 76% 108M 1s +2024-03-07T01:08:06Z #15 3.340 97350K .......... .......... .......... .......... .......... 76% 78.4M 1s +2024-03-07T01:08:06Z #15 3.341 97400K .......... .......... .......... .......... .......... 76% 167M 1s +2024-03-07T01:08:06Z #15 3.341 97450K .......... .......... .......... .......... .......... 76% 73.7M 1s +2024-03-07T01:08:06Z #15 3.342 97500K .......... .......... .......... .......... .......... 76% 144M 1s +2024-03-07T01:08:06Z #15 3.342 97550K .......... .......... .......... .......... .......... 76% 162M 1s +2024-03-07T01:08:06Z #15 3.342 97600K .......... .......... .......... .......... .......... 77% 143M 1s +2024-03-07T01:08:06Z #15 3.343 97650K .......... .......... .......... .......... .......... 77% 65.9M 1s +2024-03-07T01:08:06Z #15 3.343 97700K .......... .......... .......... .......... .......... 77% 157M 1s +2024-03-07T01:08:06Z #15 3.344 97750K .......... .......... .......... .......... .......... 77% 73.6M 1s +2024-03-07T01:08:06Z #15 3.345 97800K .......... .......... .......... .......... .......... 77% 77.4M 1s +2024-03-07T01:08:06Z #15 3.345 97850K .......... .......... .......... .......... .......... 77% 134M 1s +2024-03-07T01:08:06Z #15 3.345 97900K .......... .......... .......... .......... .......... 77% 148M 1s +2024-03-07T01:08:06Z #15 3.346 97950K .......... .......... .......... .......... .......... 77% 157M 1s +2024-03-07T01:08:06Z #15 3.346 98000K .......... .......... .......... .......... .......... 77% 115M 1s +2024-03-07T01:08:06Z #15 3.346 98050K .......... .......... .......... .......... .......... 77% 136M 1s +2024-03-07T01:08:06Z #15 3.347 98100K .......... .......... .......... .......... .......... 77% 89.1M 1s +2024-03-07T01:08:06Z #15 3.347 98150K .......... .......... .......... .......... .......... 77% 83.3M 1s +2024-03-07T01:08:06Z #15 3.348 98200K .......... .......... .......... .......... .......... 77% 99.3M 1s +2024-03-07T01:08:06Z #15 3.349 98250K .......... .......... .......... .......... .......... 77% 67.2M 1s +2024-03-07T01:08:06Z #15 3.349 98300K .......... .......... .......... .......... .......... 77% 141M 1s +2024-03-07T01:08:06Z #15 3.350 98350K .......... .......... .......... .......... .......... 77% 130M 1s +2024-03-07T01:08:06Z #15 3.350 98400K .......... .......... .......... .......... .......... 77% 82.8M 1s +2024-03-07T01:08:06Z #15 3.351 98450K .......... .......... .......... .......... .......... 77% 92.5M 1s +2024-03-07T01:08:06Z #15 3.351 98500K .......... .......... .......... .......... .......... 77% 84.3M 1s +2024-03-07T01:08:06Z #15 3.352 98550K .......... .......... .......... .......... .......... 77% 126M 1s +2024-03-07T01:08:06Z #15 3.352 98600K .......... .......... .......... .......... .......... 77% 120M 1s +2024-03-07T01:08:06Z #15 3.353 98650K .......... .......... .......... .......... .......... 77% 78.5M 1s +2024-03-07T01:08:06Z #15 3.353 98700K .......... .......... .......... .......... .......... 77% 98.8M 1s +2024-03-07T01:08:06Z #15 3.354 98750K .......... .......... .......... .......... .......... 77% 79.4M 1s +2024-03-07T01:08:06Z #15 3.354 98800K .......... .......... .......... .......... .......... 77% 143M 1s +2024-03-07T01:08:06Z #15 3.355 98850K .......... .......... .......... .......... .......... 78% 85.4M 1s +2024-03-07T01:08:06Z #15 3.355 98900K .......... .......... .......... .......... .......... 78% 92.0M 1s +2024-03-07T01:08:06Z #15 3.356 98950K .......... .......... .......... .......... .......... 78% 121M 1s +2024-03-07T01:08:06Z #15 3.356 99000K .......... .......... .......... .......... .......... 78% 79.8M 1s +2024-03-07T01:08:06Z #15 3.356 99050K .......... .......... .......... .......... .......... 78% 123M 1s +2024-03-07T01:08:06Z #15 3.357 99100K .......... .......... .......... .......... .......... 78% 134M 1s +2024-03-07T01:08:06Z #15 3.357 99150K .......... .......... .......... .......... .......... 78% 102M 1s +2024-03-07T01:08:06Z #15 3.358 99200K .......... .......... .......... .......... .......... 78% 75.3M 1s +2024-03-07T01:08:06Z #15 3.359 99250K .......... .......... .......... .......... .......... 78% 83.4M 1s +2024-03-07T01:08:06Z #15 3.359 99300K .......... .......... .......... .......... .......... 78% 55.6M 1s +2024-03-07T01:08:06Z #15 3.360 99350K .......... .......... .......... .......... .......... 78% 127M 1s +2024-03-07T01:08:06Z #15 3.361 99400K .......... .......... .......... .......... .......... 78% 101M 1s +2024-03-07T01:08:06Z #15 3.361 99450K .......... .......... .......... .......... .......... 78% 136M 1s +2024-03-07T01:08:06Z #15 3.361 99500K .......... .......... .......... .......... .......... 78% 99.9M 1s +2024-03-07T01:08:06Z #15 3.362 99550K .......... .......... .......... .......... .......... 78% 148M 1s +2024-03-07T01:08:06Z #15 3.362 99600K .......... .......... .......... .......... .......... 78% 109M 1s +2024-03-07T01:08:06Z #15 3.363 99650K .......... .......... .......... .......... .......... 78% 79.4M 1s +2024-03-07T01:08:06Z #15 3.363 99700K .......... .......... .......... .......... .......... 78% 80.5M 1s +2024-03-07T01:08:06Z #15 3.364 99750K .......... .......... .......... .......... .......... 78% 115M 1s +2024-03-07T01:08:06Z #15 3.364 99800K .......... .......... .......... .......... .......... 78% 64.2M 1s +2024-03-07T01:08:06Z #15 3.365 99850K .......... .......... .......... .......... .......... 78% 103M 1s +2024-03-07T01:08:06Z #15 3.365 99900K .......... .......... .......... .......... .......... 78% 84.8M 1s +2024-03-07T01:08:06Z #15 3.366 99950K .......... .......... .......... .......... .......... 78% 102M 1s +2024-03-07T01:08:06Z #15 3.367 100000K .......... .......... .......... .......... .......... 78% 130M 0s +2024-03-07T01:08:06Z #15 3.367 100050K .......... .......... .......... .......... .......... 78% 83.2M 0s +2024-03-07T01:08:06Z #15 3.367 100100K .......... .......... .......... .......... .......... 78% 92.6M 0s +2024-03-07T01:08:06Z #15 3.368 100150K .......... .......... .......... .......... .......... 79% 103M 0s +2024-03-07T01:08:06Z #15 3.368 100200K .......... .......... .......... .......... .......... 79% 83.9M 0s +2024-03-07T01:08:06Z #15 3.369 100250K .......... .......... .......... .......... .......... 79% 72.1M 0s +2024-03-07T01:08:06Z #15 3.370 100300K .......... .......... .......... .......... .......... 79% 139M 0s +2024-03-07T01:08:06Z #15 3.370 100350K .......... .......... .......... .......... .......... 79% 66.1M 0s +2024-03-07T01:08:06Z #15 3.371 100400K .......... .......... .......... .......... .......... 79% 126M 0s +2024-03-07T01:08:06Z #15 3.371 100450K .......... .......... .......... .......... .......... 79% 85.2M 0s +2024-03-07T01:08:06Z #15 3.372 100500K .......... .......... .......... .......... .......... 79% 123M 0s +2024-03-07T01:08:06Z #15 3.372 100550K .......... .......... .......... .......... .......... 79% 67.1M 0s +2024-03-07T01:08:06Z #15 3.373 100600K .......... .......... .......... .......... .......... 79% 123M 0s +2024-03-07T01:08:06Z #15 3.373 100650K .......... .......... .......... .......... .......... 79% 132M 0s +2024-03-07T01:08:06Z #15 3.374 100700K .......... .......... .......... .......... .......... 79% 64.0M 0s +2024-03-07T01:08:06Z #15 3.374 100750K .......... .......... .......... .......... .......... 79% 115M 0s +2024-03-07T01:08:06Z #15 3.375 100800K .......... .......... .......... .......... .......... 79% 128M 0s +2024-03-07T01:08:06Z #15 3.376 100850K .......... .......... .......... .......... .......... 79% 76.5M 0s +2024-03-07T01:08:06Z #15 3.376 100900K .......... .......... .......... .......... .......... 79% 86.3M 0s +2024-03-07T01:08:06Z #15 3.377 100950K .......... .......... .......... .......... .......... 79% 90.8M 0s +2024-03-07T01:08:06Z #15 3.377 101000K .......... .......... .......... .......... .......... 79% 135M 0s +2024-03-07T01:08:06Z #15 3.377 101050K .......... .......... .......... .......... .......... 79% 70.9M 0s +2024-03-07T01:08:06Z #15 3.378 101100K .......... .......... .......... .......... .......... 79% 102M 0s +2024-03-07T01:08:06Z #15 3.379 101150K .......... .......... .......... .......... .......... 79% 146M 0s +2024-03-07T01:08:06Z #15 3.379 101200K .......... .......... .......... .......... .......... 79% 89.7M 0s +2024-03-07T01:08:06Z #15 3.379 101250K .......... .......... .......... .......... .......... 79% 87.7M 0s +2024-03-07T01:08:06Z #15 3.380 101300K .......... .......... .......... .......... .......... 79% 142M 0s +2024-03-07T01:08:06Z #15 3.380 101350K .......... .......... .......... .......... .......... 79% 70.5M 0s +2024-03-07T01:08:06Z #15 3.381 101400K .......... .......... .......... .......... .......... 80% 73.9M 0s +2024-03-07T01:08:06Z #15 3.382 101450K .......... .......... .......... .......... .......... 80% 112M 0s +2024-03-07T01:08:06Z #15 3.382 101500K .......... .......... .......... .......... .......... 80% 116M 0s +2024-03-07T01:08:06Z #15 3.382 101550K .......... .......... .......... .......... .......... 80% 104M 0s +2024-03-07T01:08:06Z #15 3.383 101600K .......... .......... .......... .......... .......... 80% 126M 0s +2024-03-07T01:08:06Z #15 3.383 101650K .......... .......... .......... .......... .......... 80% 111M 0s +2024-03-07T01:08:06Z #15 3.384 101700K .......... .......... .......... .......... .......... 80% 72.5M 0s +2024-03-07T01:08:06Z #15 3.384 101750K .......... .......... .......... .......... .......... 80% 96.8M 0s +2024-03-07T01:08:06Z #15 3.385 101800K .......... .......... .......... .......... .......... 80% 102M 0s +2024-03-07T01:08:06Z #15 3.386 101850K .......... .......... .......... .......... .......... 80% 75.1M 0s +2024-03-07T01:08:06Z #15 3.386 101900K .......... .......... .......... .......... .......... 80% 99.7M 0s +2024-03-07T01:08:06Z #15 3.392 101950K .......... .......... .......... .......... .......... 80% 9.30M 0s +2024-03-07T01:08:06Z #15 3.400 102000K .......... .......... .......... .......... .......... 80% 145M 0s +2024-03-07T01:08:06Z #15 3.400 102050K .......... .......... .......... .......... .......... 80% 153M 0s +2024-03-07T01:08:06Z #15 3.400 102100K .......... .......... .......... .......... .......... 80% 154M 0s +2024-03-07T01:08:06Z #15 3.400 102150K .......... .......... .......... .......... .......... 80% 154M 0s +2024-03-07T01:08:06Z #15 3.400 102200K .......... .......... .......... .......... .......... 80% 156M 0s +2024-03-07T01:08:06Z #15 3.400 102250K .......... .......... .......... .......... .......... 80% 144M 0s +2024-03-07T01:08:06Z #15 3.400 102300K .......... .......... .......... .......... .......... 80% 151M 0s +2024-03-07T01:08:06Z #15 3.400 102350K .......... .......... .......... .......... .......... 80% 125M 0s +2024-03-07T01:08:06Z #15 3.400 102400K .......... .......... .......... .......... .......... 80% 182M 0s +2024-03-07T01:08:06Z #15 3.400 102450K .......... .......... .......... .......... .......... 80% 143M 0s +2024-03-07T01:08:06Z #15 3.400 102500K .......... .......... .......... .......... .......... 80% 159M 0s +2024-03-07T01:08:06Z #15 3.400 102550K .......... .......... .......... .......... .......... 80% 123M 0s +2024-03-07T01:08:06Z #15 3.400 102600K .......... .......... .......... .......... .......... 80% 159M 0s +2024-03-07T01:08:06Z #15 3.400 102650K .......... .......... .......... .......... .......... 81% 169M 0s +2024-03-07T01:08:06Z #15 3.400 102700K .......... .......... .......... .......... .......... 81% 159M 0s +2024-03-07T01:08:06Z #15 3.400 102750K .......... .......... .......... .......... .......... 81% 180M 0s +2024-03-07T01:08:06Z #15 3.400 102800K .......... .......... .......... .......... .......... 81% 167M 0s +2024-03-07T01:08:06Z #15 3.400 102850K .......... .......... .......... .......... .......... 81% 145M 0s +2024-03-07T01:08:06Z #15 3.400 102900K .......... .......... .......... .......... .......... 81% 170M 0s +2024-03-07T01:08:06Z #15 3.400 102950K .......... .......... .......... .......... .......... 81% 173M 0s +2024-03-07T01:08:06Z #15 3.400 103000K .......... .......... .......... .......... .......... 81% 152M 0s +2024-03-07T01:08:06Z #15 3.400 103050K .......... .......... .......... .......... .......... 81% 179M 0s +2024-03-07T01:08:06Z #15 3.400 103100K .......... .......... .......... .......... .......... 81% 164M 0s +2024-03-07T01:08:06Z #15 3.400 103150K .......... .......... .......... .......... .......... 81% 177M 0s +2024-03-07T01:08:06Z #15 3.400 103200K .......... .......... .......... .......... .......... 81% 36.8M 0s +2024-03-07T01:08:06Z #15 3.401 103250K .......... .......... .......... .......... .......... 81% 143M 0s +2024-03-07T01:08:06Z #15 3.401 103300K .......... .......... .......... .......... .......... 81% 104M 0s +2024-03-07T01:08:06Z #15 3.402 103350K .......... .......... .......... .......... .......... 81% 166M 0s +2024-03-07T01:08:06Z #15 3.402 103400K .......... .......... .......... .......... .......... 81% 50.3M 0s +2024-03-07T01:08:06Z #15 3.403 103450K .......... .......... .......... .......... .......... 81% 42.8M 0s +2024-03-07T01:08:06Z #15 3.404 103500K .......... .......... .......... .......... .......... 81% 38.5M 0s +2024-03-07T01:08:06Z #15 3.405 103550K .......... .......... .......... .......... .......... 81% 40.2M 0s +2024-03-07T01:08:06Z #15 3.407 103600K .......... .......... .......... .......... .......... 81% 42.4M 0s +2024-03-07T01:08:06Z #15 3.408 103650K .......... .......... .......... .......... .......... 81% 32.9M 0s +2024-03-07T01:08:06Z #15 3.409 103700K .......... .......... .......... .......... .......... 81% 40.4M 0s +2024-03-07T01:08:06Z #15 3.410 103750K .......... .......... .......... .......... .......... 81% 43.8M 0s +2024-03-07T01:08:06Z #15 3.412 103800K .......... .......... .......... .......... .......... 81% 38.4M 0s +2024-03-07T01:08:06Z #15 3.413 103850K .......... .......... .......... .......... .......... 81% 48.3M 0s +2024-03-07T01:08:06Z #15 3.413 103900K .......... .......... .......... .......... .......... 81% 52.1M 0s +2024-03-07T01:08:06Z #15 3.414 103950K .......... .......... .......... .......... .......... 82% 29.0M 0s +2024-03-07T01:08:06Z #15 3.416 104000K .......... .......... .......... .......... .......... 82% 46.6M 0s +2024-03-07T01:08:06Z #15 3.418 104050K .......... .......... .......... .......... .......... 82% 38.4M 0s +2024-03-07T01:08:06Z #15 3.419 104100K .......... .......... .......... .......... .......... 82% 29.6M 0s +2024-03-07T01:08:06Z #15 3.420 104150K .......... .......... .......... .......... .......... 82% 68.2M 0s +2024-03-07T01:08:06Z #15 3.421 104200K .......... .......... .......... .......... .......... 82% 47.9M 0s +2024-03-07T01:08:06Z #15 3.422 104250K .......... .......... .......... .......... .......... 82% 34.8M 0s +2024-03-07T01:08:06Z #15 3.424 104300K .......... .......... .......... .......... .......... 82% 644K 0s +2024-03-07T01:08:06Z #15 3.501 104350K .......... .......... .......... .......... .......... 82% 54.8M 0s +2024-03-07T01:08:06Z #15 3.511 104400K .......... .......... .......... .......... .......... 82% 149M 0s +2024-03-07T01:08:06Z #15 3.511 104450K .......... .......... .......... .......... .......... 82% 108M 0s +2024-03-07T01:08:06Z #15 3.511 104500K .......... .......... .......... .......... .......... 82% 132M 0s +2024-03-07T01:08:06Z #15 3.511 104550K .......... .......... .......... .......... .......... 82% 125M 0s +2024-03-07T01:08:06Z #15 3.511 104600K .......... .......... .......... .......... .......... 82% 121M 0s +2024-03-07T01:08:06Z #15 3.511 104650K .......... .......... .......... .......... .......... 82% 132M 0s +2024-03-07T01:08:06Z #15 3.511 104700K .......... .......... .......... .......... .......... 82% 115M 0s +2024-03-07T01:08:06Z #15 3.511 104750K .......... .......... .......... .......... .......... 82% 127M 0s +2024-03-07T01:08:06Z #15 3.511 104800K .......... .......... .......... .......... .......... 82% 153M 0s +2024-03-07T01:08:06Z #15 3.511 104850K .......... .......... .......... .......... .......... 82% 107M 0s +2024-03-07T01:08:06Z #15 3.511 104900K .......... .......... .......... .......... .......... 82% 142M 0s +2024-03-07T01:08:06Z #15 3.511 104950K .......... .......... .......... .......... .......... 82% 128M 0s +2024-03-07T01:08:06Z #15 3.511 105000K .......... .......... .......... .......... .......... 82% 124M 0s +2024-03-07T01:08:06Z #15 3.511 105050K .......... .......... .......... .......... .......... 82% 120M 0s +2024-03-07T01:08:06Z #15 3.511 105100K .......... .......... .......... .......... .......... 82% 143M 0s +2024-03-07T01:08:06Z #15 3.511 105150K .......... .......... .......... .......... .......... 82% 158M 0s +2024-03-07T01:08:06Z #15 3.511 105200K .......... .......... .......... .......... .......... 83% 145M 0s +2024-03-07T01:08:06Z #15 3.511 105250K .......... .......... .......... .......... .......... 83% 144M 0s +2024-03-07T01:08:06Z #15 3.511 105300K .......... .......... .......... .......... .......... 83% 166M 0s +2024-03-07T01:08:06Z #15 3.511 105350K .......... .......... .......... .......... .......... 83% 164M 0s +2024-03-07T01:08:06Z #15 3.511 105400K .......... .......... .......... .......... .......... 83% 159M 0s +2024-03-07T01:08:06Z #15 3.511 105450K .......... .......... .......... .......... .......... 83% 135M 0s +2024-03-07T01:08:06Z #15 3.511 105500K .......... .......... .......... .......... .......... 83% 161M 0s +2024-03-07T01:08:06Z #15 3.511 105550K .......... .......... .......... .......... .......... 83% 157M 0s +2024-03-07T01:08:06Z #15 3.511 105600K .......... .......... .......... .......... .......... 83% 164M 0s +2024-03-07T01:08:06Z #15 3.511 105650K .......... .......... .......... .......... .......... 83% 146M 0s +2024-03-07T01:08:06Z #15 3.511 105700K .......... .......... .......... .......... .......... 83% 158M 0s +2024-03-07T01:08:06Z #15 3.511 105750K .......... .......... .......... .......... .......... 83% 4.70M 0s +2024-03-07T01:08:06Z #15 3.522 105800K .......... .......... .......... .......... .......... 83% 112M 0s +2024-03-07T01:08:06Z #15 3.522 105850K .......... .......... .......... .......... .......... 83% 17.6M 0s +2024-03-07T01:08:06Z #15 3.525 105900K .......... .......... .......... .......... .......... 83% 125M 0s +2024-03-07T01:08:06Z #15 3.525 105950K .......... .......... .......... .......... .......... 83% 68.2M 0s +2024-03-07T01:08:06Z #15 3.526 106000K .......... .......... .......... .......... .......... 83% 80.4M 0s +2024-03-07T01:08:06Z #15 3.527 106050K .......... .......... .......... .......... .......... 83% 75.7M 0s +2024-03-07T01:08:06Z #15 3.527 106100K .......... .......... .......... .......... .......... 83% 32.1M 0s +2024-03-07T01:08:06Z #15 3.530 106150K .......... .......... .......... .......... .......... 83% 156M 0s +2024-03-07T01:08:06Z #15 3.530 106200K .......... .......... .......... .......... .......... 83% 85.4M 0s +2024-03-07T01:08:06Z #15 3.532 106250K .......... .......... .......... .......... .......... 83% 18.9M 0s +2024-03-07T01:08:06Z #15 3.532 106300K .......... .......... .......... .......... .......... 83% 91.5M 0s +2024-03-07T01:08:06Z #15 3.534 106350K .......... .......... .......... .......... .......... 83% 66.9M 0s +2024-03-07T01:08:06Z #15 3.534 106400K .......... .......... .......... .......... .......... 83% 129M 0s +2024-03-07T01:08:06Z #15 3.534 106450K .......... .......... .......... .......... .......... 84% 64.7M 0s +2024-03-07T01:08:06Z #15 3.540 106500K .......... .......... .......... .......... .......... 84% 79.8M 0s +2024-03-07T01:08:06Z #15 3.540 106550K .......... .......... .......... .......... .......... 84% 90.2M 0s +2024-03-07T01:08:06Z #15 3.540 106600K .......... .......... .......... .......... .......... 84% 25.3M 0s +2024-03-07T01:08:06Z #15 3.540 106650K .......... .......... .......... .......... .......... 84% 153M 0s +2024-03-07T01:08:06Z #15 3.540 106700K .......... .......... .......... .......... .......... 84% 186M 0s +2024-03-07T01:08:06Z #15 3.540 106750K .......... .......... .......... .......... .......... 84% 190M 0s +2024-03-07T01:08:06Z #15 3.540 106800K .......... .......... .......... .......... .......... 84% 167M 0s +2024-03-07T01:08:06Z #15 3.540 106850K .......... .......... .......... .......... .......... 84% 115M 0s +2024-03-07T01:08:06Z #15 3.540 106900K .......... .......... .......... .......... .......... 84% 137M 0s +2024-03-07T01:08:06Z #15 3.540 106950K .......... .......... .......... .......... .......... 84% 117M 0s +2024-03-07T01:08:06Z #15 3.540 107000K .......... .......... .......... .......... .......... 84% 101M 0s +2024-03-07T01:08:06Z #15 3.542 107050K .......... .......... .......... .......... .......... 84% 106M 0s +2024-03-07T01:08:06Z #15 3.542 107100K .......... .......... .......... .......... .......... 84% 85.0M 0s +2024-03-07T01:08:06Z #15 3.542 107150K .......... .......... .......... .......... .......... 84% 123M 0s +2024-03-07T01:08:06Z #15 3.544 107200K .......... .......... .......... .......... .......... 84% 18.3M 0s +2024-03-07T01:08:06Z #15 3.545 107250K .......... .......... .......... .......... .......... 84% 61.4M 0s +2024-03-07T01:08:06Z #15 3.546 107300K .......... .......... .......... .......... .......... 84% 48.2M 0s +2024-03-07T01:08:06Z #15 3.548 107350K .......... .......... .......... .......... .......... 84% 99.8M 0s +2024-03-07T01:08:06Z #15 3.548 107400K .......... .......... .......... .......... .......... 84% 126M 0s +2024-03-07T01:08:06Z #15 3.548 107450K .......... .......... .......... .......... .......... 84% 50.1M 0s +2024-03-07T01:08:06Z #15 3.548 107500K .......... .......... .......... .......... .......... 84% 55.4M 0s +2024-03-07T01:08:06Z #15 3.549 107550K .......... .......... .......... .......... .......... 84% 49.7M 0s +2024-03-07T01:08:06Z #15 3.551 107600K .......... .......... .......... .......... .......... 84% 30.9M 0s +2024-03-07T01:08:06Z #15 3.552 107650K .......... .......... .......... .......... .......... 84% 89.4M 0s +2024-03-07T01:08:06Z #15 3.552 107700K .......... .......... .......... .......... .......... 84% 76.0M 0s +2024-03-07T01:08:06Z #15 3.555 107750K .......... .......... .......... .......... .......... 85% 106M 0s +2024-03-07T01:08:06Z #15 3.555 107800K .......... .......... .......... .......... .......... 85% 132M 0s +2024-03-07T01:08:06Z #15 3.555 107850K .......... .......... .......... .......... .......... 85% 126M 0s +2024-03-07T01:08:06Z #15 3.555 107900K .......... .......... .......... .......... .......... 85% 114M 0s +2024-03-07T01:08:06Z #15 3.555 107950K .......... .......... .......... .......... .......... 85% 132M 0s +2024-03-07T01:08:06Z #15 3.555 108000K .......... .......... .......... .......... .......... 85% 126M 0s +2024-03-07T01:08:06Z #15 3.556 108050K .......... .......... .......... .......... .......... 85% 47.0M 0s +2024-03-07T01:08:06Z #15 3.557 108100K .......... .......... .......... .......... .......... 85% 114M 0s +2024-03-07T01:08:06Z #15 3.557 108150K .......... .......... .......... .......... .......... 85% 135M 0s +2024-03-07T01:08:06Z #15 3.557 108200K .......... .......... .......... .......... .......... 85% 84.9M 0s +2024-03-07T01:08:06Z #15 3.558 108250K .......... .......... .......... .......... .......... 85% 119M 0s +2024-03-07T01:08:06Z #15 3.558 108300K .......... .......... .......... .......... .......... 85% 125M 0s +2024-03-07T01:08:06Z #15 3.559 108350K .......... .......... .......... .......... .......... 85% 108M 0s +2024-03-07T01:08:06Z #15 3.559 108400K .......... .......... .......... .......... .......... 85% 99.5M 0s +2024-03-07T01:08:06Z #15 3.560 108450K .......... .......... .......... .......... .......... 85% 94.6M 0s +2024-03-07T01:08:06Z #15 3.560 108500K .......... .......... .......... .......... .......... 85% 125M 0s +2024-03-07T01:08:06Z #15 3.560 108550K .......... .......... .......... .......... .......... 85% 103M 0s +2024-03-07T01:08:06Z #15 3.561 108600K .......... .......... .......... .......... .......... 85% 69.6M 0s +2024-03-07T01:08:06Z #15 3.563 108650K .......... .......... .......... .......... .......... 85% 148M 0s +2024-03-07T01:08:06Z #15 3.563 108700K .......... .......... .......... .......... .......... 85% 117M 0s +2024-03-07T01:08:06Z #15 3.563 108750K .......... .......... .......... .......... .......... 85% 142M 0s +2024-03-07T01:08:06Z #15 3.563 108800K .......... .......... .......... .......... .......... 85% 144M 0s +2024-03-07T01:08:06Z #15 3.563 108850K .......... .......... .......... .......... .......... 85% 125M 0s +2024-03-07T01:08:06Z #15 3.567 108900K .......... .......... .......... .......... .......... 85% 67.9M 0s +2024-03-07T01:08:06Z #15 3.567 108950K .......... .......... .......... .......... .......... 85% 151M 0s +2024-03-07T01:08:06Z #15 3.567 109000K .......... .......... .......... .......... .......... 86% 116M 0s +2024-03-07T01:08:06Z #15 3.567 109050K .......... .......... .......... .......... .......... 86% 131M 0s +2024-03-07T01:08:06Z #15 3.567 109100K .......... .......... .......... .......... .......... 86% 130M 0s +2024-03-07T01:08:06Z #15 3.567 109150K .......... .......... .......... .......... .......... 86% 145M 0s +2024-03-07T01:08:06Z #15 3.567 109200K .......... .......... .......... .......... .......... 86% 123M 0s +2024-03-07T01:08:06Z #15 3.567 109250K .......... .......... .......... .......... .......... 86% 149M 0s +2024-03-07T01:08:06Z #15 3.567 109300K .......... .......... .......... .......... .......... 86% 130M 0s +2024-03-07T01:08:06Z #15 3.567 109350K .......... .......... .......... .......... .......... 86% 103M 0s +2024-03-07T01:08:06Z #15 3.568 109400K .......... .......... .......... .......... .......... 86% 86.9M 0s +2024-03-07T01:08:06Z #15 3.571 109450K .......... .......... .......... .......... .......... 86% 105M 0s +2024-03-07T01:08:06Z #15 3.571 109500K .......... .......... .......... .......... .......... 86% 110M 0s +2024-03-07T01:08:06Z #15 3.571 109550K .......... .......... .......... .......... .......... 86% 141M 0s +2024-03-07T01:08:06Z #15 3.571 109600K .......... .......... .......... .......... .......... 86% 111M 0s +2024-03-07T01:08:06Z #15 3.571 109650K .......... .......... .......... .......... .......... 86% 142M 0s +2024-03-07T01:08:06Z #15 3.571 109700K .......... .......... .......... .......... .......... 86% 134M 0s +2024-03-07T01:08:06Z #15 3.571 109750K .......... .......... .......... .......... .......... 86% 112M 0s +2024-03-07T01:08:06Z #15 3.571 109800K .......... .......... .......... .......... .......... 86% 138M 0s +2024-03-07T01:08:06Z #15 3.571 109850K .......... .......... .......... .......... .......... 86% 67.4M 0s +2024-03-07T01:08:06Z #15 3.575 109900K .......... .......... .......... .......... .......... 86% 134M 0s +2024-03-07T01:08:06Z #15 3.575 109950K .......... .......... .......... .......... .......... 86% 138M 0s +2024-03-07T01:08:06Z #15 3.575 110000K .......... .......... .......... .......... .......... 86% 125M 0s +2024-03-07T01:08:06Z #15 3.575 110050K .......... .......... .......... .......... .......... 86% 142M 0s +2024-03-07T01:08:06Z #15 3.575 110100K .......... .......... .......... .......... .......... 86% 116M 0s +2024-03-07T01:08:06Z #15 3.575 110150K .......... .......... .......... .......... .......... 86% 141M 0s +2024-03-07T01:08:06Z #15 3.575 110200K .......... .......... .......... .......... .......... 86% 141M 0s +2024-03-07T01:08:06Z #15 3.575 110250K .......... .......... .......... .......... .......... 86% 122M 0s +2024-03-07T01:08:06Z #15 3.575 110300K .......... .......... .......... .......... .......... 87% 123M 0s +2024-03-07T01:08:06Z #15 3.576 110350K .......... .......... .......... .......... .......... 87% 52.7M 0s +2024-03-07T01:08:06Z #15 3.577 110400K .......... .......... .......... .......... .......... 87% 138M 0s +2024-03-07T01:08:06Z #15 3.577 110450K .......... .......... .......... .......... .......... 87% 91.1M 0s +2024-03-07T01:08:06Z #15 3.577 110500K .......... .......... .......... .......... .......... 87% 118M 0s +2024-03-07T01:08:06Z #15 3.578 110550K .......... .......... .......... .......... .......... 87% 87.8M 0s +2024-03-07T01:08:06Z #15 3.578 110600K .......... .......... .......... .......... .......... 87% 58.2M 0s +2024-03-07T01:08:06Z #15 3.580 110650K .......... .......... .......... .......... .......... 87% 73.9M 0s +2024-03-07T01:08:06Z #15 3.580 110700K .......... .......... .......... .......... .......... 87% 90.1M 0s +2024-03-07T01:08:06Z #15 3.581 110750K .......... .......... .......... .......... .......... 87% 76.8M 0s +2024-03-07T01:08:06Z #15 3.581 110800K .......... .......... .......... .......... .......... 87% 89.7M 0s +2024-03-07T01:08:06Z #15 3.582 110850K .......... .......... .......... .......... .......... 87% 85.6M 0s +2024-03-07T01:08:06Z #15 3.582 110900K .......... .......... .......... .......... .......... 87% 67.0M 0s +2024-03-07T01:08:06Z #15 3.583 110950K .......... .......... .......... .......... .......... 87% 69.2M 0s +2024-03-07T01:08:06Z #15 3.584 111000K .......... .......... .......... .......... .......... 87% 142M 0s +2024-03-07T01:08:06Z #15 3.584 111050K .......... .......... .......... .......... .......... 87% 79.2M 0s +2024-03-07T01:08:06Z #15 3.585 111100K .......... .......... .......... .......... .......... 87% 66.3M 0s +2024-03-07T01:08:06Z #15 3.586 111150K .......... .......... .......... .......... .......... 87% 78.4M 0s +2024-03-07T01:08:06Z #15 3.586 111200K .......... .......... .......... .......... .......... 87% 71.5M 0s +2024-03-07T01:08:06Z #15 3.587 111250K .......... .......... .......... .......... .......... 87% 75.8M 0s +2024-03-07T01:08:06Z #15 3.588 111300K .......... .......... .......... .......... .......... 87% 66.6M 0s +2024-03-07T01:08:06Z #15 3.588 111350K .......... .......... .......... .......... .......... 87% 69.5M 0s +2024-03-07T01:08:06Z #15 3.589 111400K .......... .......... .......... .......... .......... 87% 68.5M 0s +2024-03-07T01:08:06Z #15 3.589 111450K .......... .......... .......... .......... .......... 87% 75.0M 0s +2024-03-07T01:08:06Z #15 3.590 111500K .......... .......... .......... .......... .......... 87% 89.7M 0s +2024-03-07T01:08:06Z #15 3.591 111550K .......... .......... .......... .......... .......... 88% 97.7M 0s +2024-03-07T01:08:06Z #15 3.591 111600K .......... .......... .......... .......... .......... 88% 75.6M 0s +2024-03-07T01:08:06Z #15 3.592 111650K .......... .......... .......... .......... .......... 88% 114M 0s +2024-03-07T01:08:06Z #15 3.592 111700K .......... .......... .......... .......... .......... 88% 108M 0s +2024-03-07T01:08:06Z #15 3.593 111750K .......... .......... .......... .......... .......... 88% 94.4M 0s +2024-03-07T01:08:06Z #15 3.593 111800K .......... .......... .......... .......... .......... 88% 128M 0s +2024-03-07T01:08:06Z #15 3.593 111850K .......... .......... .......... .......... .......... 88% 57.2M 0s +2024-03-07T01:08:06Z #15 3.594 111900K .......... .......... .......... .......... .......... 88% 92.4M 0s +2024-03-07T01:08:06Z #15 3.595 111950K .......... .......... .......... .......... .......... 88% 128M 0s +2024-03-07T01:08:06Z #15 3.595 112000K .......... .......... .......... .......... .......... 88% 52.3M 0s +2024-03-07T01:08:06Z #15 3.596 112050K .......... .......... .......... .......... .......... 88% 48.2M 0s +2024-03-07T01:08:06Z #15 3.598 112100K .......... .......... .......... .......... .......... 88% 57.2M 0s +2024-03-07T01:08:06Z #15 3.598 112150K .......... .......... .......... .......... .......... 88% 71.4M 0s +2024-03-07T01:08:06Z #15 3.599 112200K .......... .......... .......... .......... .......... 88% 118M 0s +2024-03-07T01:08:06Z #15 3.599 112250K .......... .......... .......... .......... .......... 88% 65.7M 0s +2024-03-07T01:08:06Z #15 3.600 112300K .......... .......... .......... .......... .......... 88% 82.2M 0s +2024-03-07T01:08:06Z #15 3.601 112350K .......... .......... .......... .......... .......... 88% 85.0M 0s +2024-03-07T01:08:06Z #15 3.601 112400K .......... .......... .......... .......... .......... 88% 4.58M 0s +2024-03-07T01:08:06Z #15 3.612 112450K .......... .......... .......... .......... .......... 88% 123M 0s +2024-03-07T01:08:06Z #15 3.612 112500K .......... .......... .......... .......... .......... 88% 121M 0s +2024-03-07T01:08:06Z #15 3.614 112550K .......... .......... .......... .......... .......... 88% 113M 0s +2024-03-07T01:08:06Z #15 3.614 112600K .......... .......... .......... .......... .......... 88% 135M 0s +2024-03-07T01:08:06Z #15 3.615 112650K .......... .......... .......... .......... .......... 88% 131M 0s +2024-03-07T01:08:06Z #15 3.615 112700K .......... .......... .......... .......... .......... 88% 138M 0s +2024-03-07T01:08:06Z #15 3.616 112750K .......... .......... .......... .......... .......... 88% 112M 0s +2024-03-07T01:08:06Z #15 3.616 112800K .......... .......... .......... .......... .......... 89% 142M 0s +2024-03-07T01:08:06Z #15 3.617 112850K .......... .......... .......... .......... .......... 89% 144M 0s +2024-03-07T01:08:06Z #15 3.617 112900K .......... .......... .......... .......... .......... 89% 118M 0s +2024-03-07T01:08:06Z #15 3.617 112950K .......... .......... .......... .......... .......... 89% 116M 0s +2024-03-07T01:08:06Z #15 3.618 113000K .......... .......... .......... .......... .......... 89% 113M 0s +2024-03-07T01:08:06Z #15 3.618 113050K .......... .......... .......... .......... .......... 89% 136M 0s +2024-03-07T01:08:06Z #15 3.618 113100K .......... .......... .......... .......... .......... 89% 121M 0s +2024-03-07T01:08:06Z #15 3.618 113150K .......... .......... .......... .......... .......... 89% 132M 0s +2024-03-07T01:08:06Z #15 3.618 113200K .......... .......... .......... .......... .......... 89% 101M 0s +2024-03-07T01:08:06Z #15 3.618 113250K .......... .......... .......... .......... .......... 89% 129M 0s +2024-03-07T01:08:06Z #15 3.619 113300K .......... .......... .......... .......... .......... 89% 143M 0s +2024-03-07T01:08:06Z #15 3.619 113350K .......... .......... .......... .......... .......... 89% 135M 0s +2024-03-07T01:08:06Z #15 3.619 113400K .......... .......... .......... .......... .......... 89% 109M 0s +2024-03-07T01:08:06Z #15 3.623 113450K .......... .......... .......... .......... .......... 89% 11.1M 0s +2024-03-07T01:08:06Z #15 3.624 113500K .......... .......... .......... .......... .......... 89% 147M 0s +2024-03-07T01:08:06Z #15 3.624 113550K .......... .......... .......... .......... .......... 89% 126M 0s +2024-03-07T01:08:06Z #15 3.625 113600K .......... .......... .......... .......... .......... 89% 152M 0s +2024-03-07T01:08:06Z #15 3.625 113650K .......... .......... .......... .......... .......... 89% 153M 0s +2024-03-07T01:08:06Z #15 3.625 113700K .......... .......... .......... .......... .......... 89% 156M 0s +2024-03-07T01:08:06Z #15 3.625 113750K .......... .......... .......... .......... .......... 89% 155M 0s +2024-03-07T01:08:06Z #15 3.626 113800K .......... .......... .......... .......... .......... 89% 133M 0s +2024-03-07T01:08:06Z #15 3.626 113850K .......... .......... .......... .......... .......... 89% 133M 0s +2024-03-07T01:08:06Z #15 3.627 113900K .......... .......... .......... .......... .......... 89% 137M 0s +2024-03-07T01:08:06Z #15 3.628 113950K .......... .......... .......... .......... .......... 89% 141M 0s +2024-03-07T01:08:06Z #15 3.628 114000K .......... .......... .......... .......... .......... 89% 11.1M 0s +2024-03-07T01:08:06Z #15 3.632 114050K .......... .......... .......... .......... .......... 89% 167M 0s +2024-03-07T01:08:06Z #15 3.632 114100K .......... .......... .......... .......... .......... 90% 163M 0s +2024-03-07T01:08:06Z #15 3.632 114150K .......... .......... .......... .......... .......... 90% 140M 0s +2024-03-07T01:08:06Z #15 3.632 114200K .......... .......... .......... .......... .......... 90% 147M 0s +2024-03-07T01:08:06Z #15 3.633 114250K .......... .......... .......... .......... .......... 90% 150M 0s +2024-03-07T01:08:06Z #15 3.634 114300K .......... .......... .......... .......... .......... 90% 168M 0s +2024-03-07T01:08:06Z #15 3.634 114350K .......... .......... .......... .......... .......... 90% 157M 0s +2024-03-07T01:08:06Z #15 3.634 114400K .......... .......... .......... .......... .......... 90% 140M 0s +2024-03-07T01:08:06Z #15 3.634 114450K .......... .......... .......... .......... .......... 90% 167M 0s +2024-03-07T01:08:06Z #15 3.634 114500K .......... .......... .......... .......... .......... 90% 159M 0s +2024-03-07T01:08:06Z #15 3.635 114550K .......... .......... .......... .......... .......... 90% 168M 0s +2024-03-07T01:08:06Z #15 3.635 114600K .......... .......... .......... .......... .......... 90% 155M 0s +2024-03-07T01:08:06Z #15 3.635 114650K .......... .......... .......... .......... .......... 90% 129M 0s +2024-03-07T01:08:06Z #15 3.636 114700K .......... .......... .......... .......... .......... 90% 159M 0s +2024-03-07T01:08:06Z #15 3.636 114750K .......... .......... .......... .......... .......... 90% 171M 0s +2024-03-07T01:08:06Z #15 3.637 114800K .......... .......... .......... .......... .......... 90% 144M 0s +2024-03-07T01:08:06Z #15 3.637 114850K .......... .......... .......... .......... .......... 90% 182M 0s +2024-03-07T01:08:06Z #15 3.637 114900K .......... .......... .......... .......... .......... 90% 133M 0s +2024-03-07T01:08:06Z #15 3.637 114950K .......... .......... .......... .......... .......... 90% 148M 0s +2024-03-07T01:08:06Z #15 3.638 115000K .......... .......... .......... .......... .......... 90% 127M 0s +2024-03-07T01:08:06Z #15 3.638 115050K .......... .......... .......... .......... .......... 90% 158M 0s +2024-03-07T01:08:06Z #15 3.638 115100K .......... .......... .......... .......... .......... 90% 156M 0s +2024-03-07T01:08:06Z #15 3.639 115150K .......... .......... .......... .......... .......... 90% 164M 0s +2024-03-07T01:08:06Z #15 3.639 115200K .......... .......... .......... .......... .......... 90% 152M 0s +2024-03-07T01:08:06Z #15 3.639 115250K .......... .......... .......... .......... .......... 90% 11.2M 0s +2024-03-07T01:08:06Z #15 3.644 115300K .......... .......... .......... .......... .......... 90% 167M 0s +2024-03-07T01:08:06Z #15 3.644 115350K .......... .......... .......... .......... .......... 91% 131M 0s +2024-03-07T01:08:06Z #15 3.644 115400K .......... .......... .......... .......... .......... 91% 171M 0s +2024-03-07T01:08:06Z #15 3.645 115450K .......... .......... .......... .......... .......... 91% 176M 0s +2024-03-07T01:08:06Z #15 3.645 115500K .......... .......... .......... .......... .......... 91% 175M 0s +2024-03-07T01:08:06Z #15 3.645 115550K .......... .......... .......... .......... .......... 91% 141M 0s +2024-03-07T01:08:06Z #15 3.645 115600K .......... .......... .......... .......... .......... 91% 171M 0s +2024-03-07T01:08:06Z #15 3.646 115650K .......... .......... .......... .......... .......... 91% 170M 0s +2024-03-07T01:08:06Z #15 3.646 115700K .......... .......... .......... .......... .......... 91% 160M 0s +2024-03-07T01:08:06Z #15 3.646 115750K .......... .......... .......... .......... .......... 91% 136M 0s +2024-03-07T01:08:06Z #15 3.647 115800K .......... .......... .......... .......... .......... 91% 158M 0s +2024-03-07T01:08:06Z #15 3.647 115850K .......... .......... .......... .......... .......... 91% 161M 0s +2024-03-07T01:08:06Z #15 3.650 115900K .......... .......... .......... .......... .......... 91% 15.8M 0s +2024-03-07T01:08:06Z #15 3.650 115950K .......... .......... .......... .......... .......... 91% 150M 0s +2024-03-07T01:08:06Z #15 3.651 116000K .......... .......... .......... .......... .......... 91% 171M 0s +2024-03-07T01:08:06Z #15 3.651 116050K .......... .......... .......... .......... .......... 91% 139M 0s +2024-03-07T01:08:06Z #15 3.651 116100K .......... .......... .......... .......... .......... 91% 118M 0s +2024-03-07T01:08:06Z #15 3.653 116150K .......... .......... .......... .......... .......... 91% 169M 0s +2024-03-07T01:08:06Z #15 3.653 116200K .......... .......... .......... .......... .......... 91% 156M 0s +2024-03-07T01:08:06Z #15 3.653 116250K .......... .......... .......... .......... .......... 91% 168M 0s +2024-03-07T01:08:06Z #15 3.653 116300K .......... .......... .......... .......... .......... 91% 166M 0s +2024-03-07T01:08:06Z #15 3.653 116350K .......... .......... .......... .......... .......... 91% 165M 0s +2024-03-07T01:08:06Z #15 3.653 116400K .......... .......... .......... .......... .......... 91% 138M 0s +2024-03-07T01:08:06Z #15 3.654 116450K .......... .......... .......... .......... .......... 91% 173M 0s +2024-03-07T01:08:06Z #15 3.654 116500K .......... .......... .......... .......... .......... 91% 149M 0s +2024-03-07T01:08:06Z #15 3.656 116550K .......... .......... .......... .......... .......... 91% 183M 0s +2024-03-07T01:08:06Z #15 3.658 116600K .......... .......... .......... .......... .......... 92% 172M 0s +2024-03-07T01:08:06Z #15 3.658 116650K .......... .......... .......... .......... .......... 92% 180M 0s +2024-03-07T01:08:06Z #15 3.658 116700K .......... .......... .......... .......... .......... 92% 11.8M 0s +2024-03-07T01:08:06Z #15 3.659 116750K .......... .......... .......... .......... .......... 92% 119M 0s +2024-03-07T01:08:06Z #15 3.659 116800K .......... .......... .......... .......... .......... 92% 169M 0s +2024-03-07T01:08:06Z #15 3.660 116850K .......... .......... .......... .......... .......... 92% 143M 0s +2024-03-07T01:08:06Z #15 3.660 116900K .......... .......... .......... .......... .......... 92% 168M 0s +2024-03-07T01:08:06Z #15 3.660 116950K .......... .......... .......... .......... .......... 92% 146M 0s +2024-03-07T01:08:06Z #15 3.661 117000K .......... .......... .......... .......... .......... 92% 170M 0s +2024-03-07T01:08:06Z #15 3.661 117050K .......... .......... .......... .......... .......... 92% 184M 0s +2024-03-07T01:08:06Z #15 3.661 117100K .......... .......... .......... .......... .......... 92% 164M 0s +2024-03-07T01:08:06Z #15 3.662 117150K .......... .......... .......... .......... .......... 92% 144M 0s +2024-03-07T01:08:06Z #15 3.663 117200K .......... .......... .......... .......... .......... 92% 170M 0s +2024-03-07T01:08:06Z #15 3.663 117250K .......... .......... .......... .......... .......... 92% 168M 0s +2024-03-07T01:08:06Z #15 3.663 117300K .......... .......... .......... .......... .......... 92% 126M 0s +2024-03-07T01:08:06Z #15 3.663 117350K .......... .......... .......... .......... .......... 92% 162M 0s +2024-03-07T01:08:06Z #15 3.663 117400K .......... .......... .......... .......... .......... 92% 70.3M 0s +2024-03-07T01:08:06Z #15 3.666 117450K .......... .......... .......... .......... .......... 92% 27.2M 0s +2024-03-07T01:08:06Z #15 3.666 117500K .......... .......... .......... .......... .......... 92% 169M 0s +2024-03-07T01:08:06Z #15 3.666 117550K .......... .......... .......... .......... .......... 92% 178M 0s +2024-03-07T01:08:06Z #15 3.666 117600K .......... .......... .......... .......... .......... 92% 146M 0s +2024-03-07T01:08:06Z #15 3.667 117650K .......... .......... .......... .......... .......... 92% 172M 0s +2024-03-07T01:08:06Z #15 3.667 117700K .......... .......... .......... .......... .......... 92% 166M 0s +2024-03-07T01:08:06Z #15 3.667 117750K .......... .......... .......... .......... .......... 92% 11.2M 0s +2024-03-07T01:08:06Z #15 3.672 117800K .......... .......... .......... .......... .......... 92% 168M 0s +2024-03-07T01:08:06Z #15 3.672 117850K .......... .......... .......... .......... .......... 92% 157M 0s +2024-03-07T01:08:06Z #15 3.672 117900K .......... .......... .......... .......... .......... 93% 141M 0s +2024-03-07T01:08:06Z #15 3.672 117950K .......... .......... .......... .......... .......... 93% 164M 0s +2024-03-07T01:08:06Z #15 3.673 118000K .......... .......... .......... .......... .......... 93% 176M 0s +2024-03-07T01:08:06Z #15 3.673 118050K .......... .......... .......... .......... .......... 93% 150M 0s +2024-03-07T01:08:06Z #15 3.673 118100K .......... .......... .......... .......... .......... 93% 164M 0s +2024-03-07T01:08:06Z #15 3.674 118150K .......... .......... .......... .......... .......... 93% 158M 0s +2024-03-07T01:08:06Z #15 3.674 118200K .......... .......... .......... .......... .......... 93% 171M 0s +2024-03-07T01:08:06Z #15 3.674 118250K .......... .......... .......... .......... .......... 93% 141M 0s +2024-03-07T01:08:06Z #15 3.675 118300K .......... .......... .......... .......... .......... 93% 169M 0s +2024-03-07T01:08:06Z #15 3.675 118350K .......... .......... .......... .......... .......... 93% 168M 0s +2024-03-07T01:08:06Z #15 3.675 118400K .......... .......... .......... .......... .......... 93% 122M 0s +2024-03-07T01:08:06Z #15 3.676 118450K .......... .......... .......... .......... .......... 93% 156M 0s +2024-03-07T01:08:06Z #15 3.676 118500K .......... .......... .......... .......... .......... 93% 163M 0s +2024-03-07T01:08:06Z #15 3.676 118550K .......... .......... .......... .......... .......... 93% 145M 0s +2024-03-07T01:08:06Z #15 3.677 118600K .......... .......... .......... .......... .......... 93% 165M 0s +2024-03-07T01:08:06Z #15 3.677 118650K .......... .......... .......... .......... .......... 93% 144M 0s +2024-03-07T01:08:06Z #15 3.677 118700K .......... .......... .......... .......... .......... 93% 166M 0s +2024-03-07T01:08:06Z #15 3.677 118750K .......... .......... .......... .......... .......... 93% 169M 0s +2024-03-07T01:08:06Z #15 3.678 118800K .......... .......... .......... .......... .......... 93% 169M 0s +2024-03-07T01:08:06Z #15 3.678 118850K .......... .......... .......... .......... .......... 93% 146M 0s +2024-03-07T01:08:06Z #15 3.678 118900K .......... .......... .......... .......... .......... 93% 170M 0s +2024-03-07T01:08:06Z #15 3.679 118950K .......... .......... .......... .......... .......... 93% 167M 0s +2024-03-07T01:08:06Z #15 3.679 119000K .......... .......... .......... .......... .......... 93% 20.4M 0s +2024-03-07T01:08:06Z #15 3.681 119050K .......... .......... .......... .......... .......... 93% 160M 0s +2024-03-07T01:08:06Z #15 3.682 119100K .......... .......... .......... .......... .......... 93% 145M 0s +2024-03-07T01:08:06Z #15 3.682 119150K .......... .......... .......... .......... .......... 94% 169M 0s +2024-03-07T01:08:06Z #15 3.682 119200K .......... .......... .......... .......... .......... 94% 173M 0s +2024-03-07T01:08:06Z #15 3.683 119250K .......... .......... .......... .......... .......... 94% 167M 0s +2024-03-07T01:08:06Z #15 3.683 119300K .......... .......... .......... .......... .......... 94% 144M 0s +2024-03-07T01:08:06Z #15 3.683 119350K .......... .......... .......... .......... .......... 94% 137M 0s +2024-03-07T01:08:06Z #15 3.684 119400K .......... .......... .......... .......... .......... 94% 142M 0s +2024-03-07T01:08:06Z #15 3.684 119450K .......... .......... .......... .......... .......... 94% 164M 0s +2024-03-07T01:08:06Z #15 3.684 119500K .......... .......... .......... .......... .......... 94% 161M 0s +2024-03-07T01:08:06Z #15 3.685 119550K .......... .......... .......... .......... .......... 94% 145M 0s +2024-03-07T01:08:06Z #15 3.685 119600K .......... .......... .......... .......... .......... 94% 163M 0s +2024-03-07T01:08:06Z #15 3.685 119650K .......... .......... .......... .......... .......... 94% 161M 0s +2024-03-07T01:08:06Z #15 3.686 119700K .......... .......... .......... .......... .......... 94% 152M 0s +2024-03-07T01:08:06Z #15 3.686 119750K .......... .......... .......... .......... .......... 94% 165M 0s +2024-03-07T01:08:06Z #15 3.686 119800K .......... .......... .......... .......... .......... 94% 165M 0s +2024-03-07T01:08:06Z #15 3.686 119850K .......... .......... .......... .......... .......... 94% 170M 0s +2024-03-07T01:08:06Z #15 3.687 119900K .......... .......... .......... .......... .......... 94% 144M 0s +2024-03-07T01:08:06Z #15 3.687 119950K .......... .......... .......... .......... .......... 94% 165M 0s +2024-03-07T01:08:06Z #15 3.687 120000K .......... .......... .......... .......... .......... 94% 140M 0s +2024-03-07T01:08:06Z #15 3.688 120050K .......... .......... .......... .......... .......... 94% 162M 0s +2024-03-07T01:08:06Z #15 3.688 120100K .......... .......... .......... .......... .......... 94% 140M 0s +2024-03-07T01:08:06Z #15 3.688 120150K .......... .......... .......... .......... .......... 94% 170M 0s +2024-03-07T01:08:06Z #15 3.689 120200K .......... .......... .......... .......... .......... 94% 169M 0s +2024-03-07T01:08:06Z #15 3.689 120250K .......... .......... .......... .......... .......... 94% 165M 0s +2024-03-07T01:08:06Z #15 3.689 120300K .......... .......... .......... .......... .......... 94% 141M 0s +2024-03-07T01:08:06Z #15 3.689 120350K .......... .......... .......... .......... .......... 94% 168M 0s +2024-03-07T01:08:06Z #15 3.690 120400K .......... .......... .......... .......... .......... 95% 166M 0s +2024-03-07T01:08:06Z #15 3.690 120450K .......... .......... .......... .......... .......... 95% 167M 0s +2024-03-07T01:08:06Z #15 3.690 120500K .......... .......... .......... .......... .......... 95% 146M 0s +2024-03-07T01:08:06Z #15 3.691 120550K .......... .......... .......... .......... .......... 95% 162M 0s +2024-03-07T01:08:06Z #15 3.691 120600K .......... .......... .......... .......... .......... 95% 136M 0s +2024-03-07T01:08:06Z #15 3.691 120650K .......... .......... .......... .......... .......... 95% 164M 0s +2024-03-07T01:08:06Z #15 3.692 120700K .......... .......... .......... .......... .......... 95% 142M 0s +2024-03-07T01:08:06Z #15 3.692 120750K .......... .......... .......... .......... .......... 95% 168M 0s +2024-03-07T01:08:06Z #15 3.692 120800K .......... .......... .......... .......... .......... 95% 167M 0s +2024-03-07T01:08:06Z #15 3.693 120850K .......... .......... .......... .......... .......... 95% 148M 0s +2024-03-07T01:08:06Z #15 3.693 120900K .......... .......... .......... .......... .......... 95% 168M 0s +2024-03-07T01:08:06Z #15 3.693 120950K .......... .......... .......... .......... .......... 95% 161M 0s +2024-03-07T01:08:06Z #15 3.694 121000K .......... .......... .......... .......... .......... 95% 152M 0s +2024-03-07T01:08:06Z #15 3.694 121050K .......... .......... .......... .......... .......... 95% 170M 0s +2024-03-07T01:08:06Z #15 3.694 121100K .......... .......... .......... .......... .......... 95% 142M 0s +2024-03-07T01:08:06Z #15 3.695 121150K .......... .......... .......... .......... .......... 95% 167M 0s +2024-03-07T01:08:06Z #15 3.695 121200K .......... .......... .......... .......... .......... 95% 165M 0s +2024-03-07T01:08:06Z #15 3.695 121250K .......... .......... .......... .......... .......... 95% 147M 0s +2024-03-07T01:08:06Z #15 3.695 121300K .......... .......... .......... .......... .......... 95% 149M 0s +2024-03-07T01:08:06Z #15 3.696 121350K .......... .......... .......... .......... .......... 95% 152M 0s +2024-03-07T01:08:06Z #15 3.696 121400K .......... .......... .......... .......... .......... 95% 130M 0s +2024-03-07T01:08:06Z #15 3.696 121450K .......... .......... .......... .......... .......... 95% 120M 0s +2024-03-07T01:08:06Z #15 3.697 121500K .......... .......... .......... .......... .......... 95% 123M 0s +2024-03-07T01:08:06Z #15 3.697 121550K .......... .......... .......... .......... .......... 95% 154M 0s +2024-03-07T01:08:06Z #15 3.698 121600K .......... .......... .......... .......... .......... 95% 131M 0s +2024-03-07T01:08:06Z #15 3.698 121650K .......... .......... .......... .......... .......... 95% 459K 0s +2024-03-07T01:08:06Z #15 3.807 121700K .......... .......... .......... .......... .......... 96% 79.2M 0s +2024-03-07T01:08:06Z #15 3.808 121750K .......... .......... .......... .......... .......... 96% 122M 0s +2024-03-07T01:08:06Z #15 3.808 121800K .......... .......... .......... .......... .......... 96% 113M 0s +2024-03-07T01:08:06Z #15 3.808 121850K .......... .......... .......... .......... .......... 96% 137M 0s +2024-03-07T01:08:06Z #15 3.810 121900K .......... .......... .......... .......... .......... 96% 155M 0s +2024-03-07T01:08:06Z #15 3.810 121950K .......... .......... .......... .......... .......... 96% 110M 0s +2024-03-07T01:08:06Z #15 3.810 122000K .......... .......... .......... .......... .......... 96% 152M 0s +2024-03-07T01:08:06Z #15 3.810 122050K .......... .......... .......... .......... .......... 96% 166M 0s +2024-03-07T01:08:06Z #15 3.810 122100K .......... .......... .......... .......... .......... 96% 137M 0s +2024-03-07T01:08:06Z #15 3.810 122150K .......... .......... .......... .......... .......... 96% 157M 0s +2024-03-07T01:08:06Z #15 3.811 122200K .......... .......... .......... .......... .......... 96% 133M 0s +2024-03-07T01:08:06Z #15 3.811 122250K .......... .......... .......... .......... .......... 96% 104M 0s +2024-03-07T01:08:06Z #15 3.813 122300K .......... .......... .......... .......... .......... 96% 142M 0s +2024-03-07T01:08:06Z #15 3.813 122350K .......... .......... .......... .......... .......... 96% 67.5M 0s +2024-03-07T01:08:06Z #15 3.813 122400K .......... .......... .......... .......... .......... 96% 133M 0s +2024-03-07T01:08:06Z #15 3.813 122450K .......... .......... .......... .......... .......... 96% 151M 0s +2024-03-07T01:08:06Z #15 3.813 122500K .......... .......... .......... .......... .......... 96% 113M 0s +2024-03-07T01:08:06Z #15 3.816 122550K .......... .......... .......... .......... .......... 96% 118M 0s +2024-03-07T01:08:06Z #15 3.816 122600K .......... .......... .......... .......... .......... 96% 147M 0s +2024-03-07T01:08:06Z #15 3.816 122650K .......... .......... .......... .......... .......... 96% 99.5M 0s +2024-03-07T01:08:06Z #15 3.816 122700K .......... .......... .......... .......... .......... 96% 122M 0s +2024-03-07T01:08:06Z #15 3.816 122750K .......... .......... .......... .......... .......... 96% 118M 0s +2024-03-07T01:08:06Z #15 3.816 122800K .......... .......... .......... .......... .......... 96% 108M 0s +2024-03-07T01:08:06Z #15 3.817 122850K .......... .......... .......... .......... .......... 96% 115M 0s +2024-03-07T01:08:06Z #15 3.817 122900K .......... .......... .......... .......... .......... 96% 127M 0s +2024-03-07T01:08:06Z #15 3.817 122950K .......... .......... .......... .......... .......... 97% 94.3M 0s +2024-03-07T01:08:06Z #15 3.818 123000K .......... .......... .......... .......... .......... 97% 53.1M 0s +2024-03-07T01:08:06Z #15 3.819 123050K .......... .......... .......... .......... .......... 97% 86.0M 0s +2024-03-07T01:08:06Z #15 3.819 123100K .......... .......... .......... .......... .......... 97% 80.1M 0s +2024-03-07T01:08:06Z #15 3.821 123150K .......... .......... .......... .......... .......... 97% 123M 0s +2024-03-07T01:08:06Z #15 3.821 123200K .......... .......... .......... .......... .......... 97% 102M 0s +2024-03-07T01:08:06Z #15 3.821 123250K .......... .......... .......... .......... .......... 97% 139M 0s +2024-03-07T01:08:06Z #15 3.821 123300K .......... .......... .......... .......... .......... 97% 119M 0s +2024-03-07T01:08:06Z #15 3.821 123350K .......... .......... .......... .......... .......... 97% 74.8M 0s +2024-03-07T01:08:06Z #15 3.823 123400K .......... .......... .......... .......... .......... 97% 117M 0s +2024-03-07T01:08:06Z #15 3.823 123450K .......... .......... .......... .......... .......... 97% 110M 0s +2024-03-07T01:08:06Z #15 3.823 123500K .......... .......... .......... .......... .......... 97% 132M 0s +2024-03-07T01:08:06Z #15 3.823 123550K .......... .......... .......... .......... .......... 97% 54.6M 0s +2024-03-07T01:08:06Z #15 3.824 123600K .......... .......... .......... .......... .......... 97% 59.2M 0s +2024-03-07T01:08:06Z #15 3.825 123650K .......... .......... .......... .......... .......... 97% 80.7M 0s +2024-03-07T01:08:06Z #15 3.826 123700K .......... .......... .......... .......... .......... 97% 85.5M 0s +2024-03-07T01:08:06Z #15 3.829 123750K .......... .......... .......... .......... .......... 97% 124M 0s +2024-03-07T01:08:06Z #15 3.829 123800K .......... .......... .......... .......... .......... 97% 121M 0s +2024-03-07T01:08:06Z #15 3.829 123850K .......... .......... .......... .......... .......... 97% 119M 0s +2024-03-07T01:08:06Z #15 3.829 123900K .......... .......... .......... .......... .......... 97% 92.9M 0s +2024-03-07T01:08:06Z #15 3.829 123950K .......... .......... .......... .......... .......... 97% 101M 0s +2024-03-07T01:08:06Z #15 3.829 124000K .......... .......... .......... .......... .......... 97% 100M 0s +2024-03-07T01:08:06Z #15 3.829 124050K .......... .......... .......... .......... .......... 97% 90.6M 0s +2024-03-07T01:08:06Z #15 3.829 124100K .......... .......... .......... .......... .......... 97% 104M 0s +2024-03-07T01:08:06Z #15 3.835 124150K .......... .......... .......... .......... .......... 97% 79.9M 0s +2024-03-07T01:08:06Z #15 3.835 124200K .......... .......... .......... .......... .......... 98% 115M 0s +2024-03-07T01:08:06Z #15 3.835 124250K .......... .......... .......... .......... .......... 98% 137M 0s +2024-03-07T01:08:06Z #15 3.835 124300K .......... .......... .......... .......... .......... 98% 129M 0s +2024-03-07T01:08:06Z #15 3.835 124350K .......... .......... .......... .......... .......... 98% 121M 0s +2024-03-07T01:08:06Z #15 3.835 124400K .......... .......... .......... .......... .......... 98% 108M 0s +2024-03-07T01:08:06Z #15 3.835 124450K .......... .......... .......... .......... .......... 98% 121M 0s +2024-03-07T01:08:06Z #15 3.835 124500K .......... .......... .......... .......... .......... 98% 111M 0s +2024-03-07T01:08:06Z #15 3.835 124550K .......... .......... .......... .......... .......... 98% 126M 0s +2024-03-07T01:08:06Z #15 3.835 124600K .......... .......... .......... .......... .......... 98% 127M 0s +2024-03-07T01:08:06Z #15 3.835 124650K .......... .......... .......... .......... .......... 98% 110M 0s +2024-03-07T01:08:06Z #15 3.835 124700K .......... .......... .......... .......... .......... 98% 122M 0s +2024-03-07T01:08:06Z #15 3.835 124750K .......... .......... .......... .......... .......... 98% 124M 0s +2024-03-07T01:08:06Z #15 3.835 124800K .......... .......... .......... .......... .......... 98% 73.5M 0s +2024-03-07T01:08:06Z #15 3.839 124850K .......... .......... .......... .......... .......... 98% 106M 0s +2024-03-07T01:08:06Z #15 3.839 124900K .......... .......... .......... .......... .......... 98% 120M 0s +2024-03-07T01:08:06Z #15 3.839 124950K .......... .......... .......... .......... .......... 98% 121M 0s +2024-03-07T01:08:06Z #15 3.839 125000K .......... .......... .......... .......... .......... 98% 108M 0s +2024-03-07T01:08:06Z #15 3.839 125050K .......... .......... .......... .......... .......... 98% 131M 0s +2024-03-07T01:08:06Z #15 3.839 125100K .......... .......... .......... .......... .......... 98% 127M 0s +2024-03-07T01:08:06Z #15 3.839 125150K .......... .......... .......... .......... .......... 98% 113M 0s +2024-03-07T01:08:06Z #15 3.839 125200K .......... .......... .......... .......... .......... 98% 141M 0s +2024-03-07T01:08:06Z #15 3.839 125250K .......... .......... .......... .......... .......... 98% 78.8M 0s +2024-03-07T01:08:06Z #15 3.840 125300K .......... .......... .......... .......... .......... 98% 72.7M 0s +2024-03-07T01:08:06Z #15 3.842 125350K .......... .......... .......... .......... .......... 98% 102M 0s +2024-03-07T01:08:06Z #15 3.842 125400K .......... .......... .......... .......... .......... 98% 123M 0s +2024-03-07T01:08:06Z #15 3.842 125450K .......... .......... .......... .......... .......... 98% 135M 0s +2024-03-07T01:08:06Z #15 3.842 125500K .......... .......... .......... .......... .......... 99% 123M 0s +2024-03-07T01:08:06Z #15 3.847 125550K .......... .......... .......... .......... .......... 99% 142M 0s +2024-03-07T01:08:06Z #15 3.847 125600K .......... .......... .......... .......... .......... 99% 137M 0s +2024-03-07T01:08:06Z #15 3.847 125650K .......... .......... .......... .......... .......... 99% 72.9M 0s +2024-03-07T01:08:06Z #15 3.847 125700K .......... .......... .......... .......... .......... 99% 101M 0s +2024-03-07T01:08:06Z #15 3.847 125750K .......... .......... .......... .......... .......... 99% 126M 0s +2024-03-07T01:08:06Z #15 3.847 125800K .......... .......... .......... .......... .......... 99% 147M 0s +2024-03-07T01:08:06Z #15 3.847 125850K .......... .......... .......... .......... .......... 99% 132M 0s +2024-03-07T01:08:06Z #15 3.847 125900K .......... .......... .......... .......... .......... 99% 126M 0s +2024-03-07T01:08:06Z #15 3.847 125950K .......... .......... .......... .......... .......... 99% 117M 0s +2024-03-07T01:08:06Z #15 3.847 126000K .......... .......... .......... .......... .......... 99% 115M 0s +2024-03-07T01:08:06Z #15 3.847 126050K .......... .......... .......... .......... .......... 99% 140M 0s +2024-03-07T01:08:06Z #15 3.847 126100K .......... .......... .......... .......... .......... 99% 133M 0s +2024-03-07T01:08:06Z #15 3.847 126150K .......... .......... .......... .......... .......... 99% 138M 0s +2024-03-07T01:08:06Z #15 3.848 126200K .......... .......... .......... .......... .......... 99% 62.1M 0s +2024-03-07T01:08:06Z #15 3.851 126250K .......... .......... .......... .......... .......... 99% 95.8M 0s +2024-03-07T01:08:06Z #15 3.851 126300K .......... .......... .......... .......... .......... 99% 95.4M 0s +2024-03-07T01:08:06Z #15 3.851 126350K .......... .......... .......... .......... .......... 99% 134M 0s +2024-03-07T01:08:06Z #15 3.851 126400K .......... .......... .......... .......... .......... 99% 119M 0s +2024-03-07T01:08:06Z #15 3.851 126450K .......... .......... .......... .......... .......... 99% 119M 0s +2024-03-07T01:08:06Z #15 3.851 126500K .......... .......... .......... .......... .......... 99% 142M 0s +2024-03-07T01:08:06Z #15 3.851 126550K .......... .......... .......... .......... .......... 99% 144M 0s +2024-03-07T01:08:06Z #15 3.851 126600K .......... .......... .......... .......... .......... 99% 67.0M 0s +2024-03-07T01:08:06Z #15 3.854 126650K .......... .......... .......... .......... .......... 99% 128M 0s +2024-03-07T01:08:06Z #15 3.854 126700K .......... .......... .......... .......... .......... 99% 141M 0s +2024-03-07T01:08:06Z #15 3.854 126750K .......... .......... .......... .. 100% 103M=2.4s +2024-03-07T01:08:06Z #15 3.854 +2024-03-07T01:08:06Z #15 3.854 2024-03-07 01:08:06 (52.5 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] +2024-03-07T01:08:06Z #15 3.854 +2024-03-07T01:08:07Z #15 5.292 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' +2024-03-07T01:08:07Z #15 5.315 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-03-07T01:08:08Z #15 DONE 5.7s +2024-03-07T01:08:08Z +2024-03-07T01:08:08Z #16 exporting to image +2024-03-07T01:08:08Z #16 exporting layers +2024-03-07T01:10:36Z #16 exporting layers 148.1s done +2024-03-07T01:10:36Z #16 writing image sha256:2c93a1d86a9b13b3995383b4dd7390c5c9bfd85305f287c6b9b24ac8ccc6e04f done +2024-03-07T01:10:36Z #16 naming to docker.io/pavics/workflow-tests:py310-240306 done +2024-03-07T01:10:36Z #16 DONE 148.1s +2024-03-07T01:10:36Z Pushing index.docker.io/pavics/workflow-tests:py310-240306... +2024-03-07T01:18:01Z Done! +2024-03-07T01:18:01Z Build finished diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index c0595c1..91ae612 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -1,5 +1,4 @@ Started by user Long Vu -Replayed #243 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -16,7 +15,7 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 7 remote branches -Obtained Jenkinsfile from daaa4896c7358eff3a7bd6434617b4af06c89e42 +Obtained Jenkinsfile from 4f2c0995711f5b6db82991065a652ea056778a2a Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -26,1603 +25,1998 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu [Pipeline] { (Declarative: Checkout SCM) [Pipeline] checkout No credentials specified -Fetching changes from the remote Git repository -Fetching without tags - > git rev-parse --is-inside-work-tree # timeout=10 - > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Cloning the remote Git repository +Cloning with configured refspecs honoured and without tags +Cloning repository https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git init /home/jenkins/agent/workspace/_workflow-tests_new-docker-build # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Fetching without tags Checking out Revision 4f2c0995711f5b6db82991065a652ea056778a2a (new-docker-build) Commit message: "release: update to use image pavics/workflow-tests:py310-240306" + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 + > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10 + > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 +Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 > git config core.sparsecheckout # timeout=10 > git checkout -f 4f2c0995711f5b6db82991065a652ea056778a2a # timeout=10 - > git rev-list --no-walk daaa4896c7358eff3a7bd6434617b4af06c89e42 # timeout=10 + > git rev-list --no-walk e2d81937cd451d8241fda67a1eec10237b90121e # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-231107-update240306 ++ docker inspect -f . pavics/workflow-tests:py310-240306 -Error: No such object: pavics/workflow-tests:py310-231107-update240306 +Error: No such object: pavics/workflow-tests:py310-240306 [Pipeline] isUnix [Pipeline] sh -+ docker pull pavics/workflow-tests:py310-231107-update240306 -py310-231107-update240306: Pulling from pavics/workflow-tests -e67fdae35593: Already exists -62aa66a9c405: Already exists -129bc9a4304f: Already exists -0ddacba29fe0: Already exists -dfd48180726c: Already exists -50cb7caec7ab: Already exists -8459c54be374: Already exists -66e47aa8b57b: Already exists -e1051cee58a0: Already exists -59919fbc16db: Already exists -043fc5acd7e1: Already exists -b9ad0629118e: Already exists -b34355233be9: Already exists -43c461133eb1: Pulling fs layer -43c461133eb1: Verifying Checksum -43c461133eb1: Download complete -43c461133eb1: Pull complete -Digest: sha256:e7d640b3e25c12aa63d14aa4133152afd0f30bad264aa8589ccc2654461f6dd8 -Status: Downloaded newer image for pavics/workflow-tests:py310-231107-update240306 ++ docker pull pavics/workflow-tests:py310-240306 +py310-240306: Pulling from pavics/workflow-tests +5d0aeceef7ee: Pulling fs layer +c3d69dcd5caa: Pulling fs layer +0bacf10028c5: Pulling fs layer +4a052d6cf676: Pulling fs layer +4b4a7620ca1b: Pulling fs layer +2ff2c14bd1b0: Pulling fs layer +1c9ef54a53ba: Pulling fs layer +5301e1fde7a4: Pulling fs layer +8a260ecff867: Pulling fs layer +9e035e507682: Pulling fs layer +678407803d31: Pulling fs layer +1fcb215c5d63: Pulling fs layer +4a052d6cf676: Waiting +4b4a7620ca1b: Waiting +2ff2c14bd1b0: Waiting +1c9ef54a53ba: Waiting +5301e1fde7a4: Waiting +8a260ecff867: Waiting +9e035e507682: Waiting +678407803d31: Waiting +1fcb215c5d63: Waiting +5d0aeceef7ee: Verifying Checksum +5d0aeceef7ee: Download complete +5d0aeceef7ee: Pull complete +c3d69dcd5caa: Verifying Checksum +c3d69dcd5caa: Download complete +c3d69dcd5caa: Pull complete +4a052d6cf676: Verifying Checksum +4a052d6cf676: Download complete +0bacf10028c5: Retrying in 5 seconds +0bacf10028c5: Retrying in 4 seconds +0bacf10028c5: Retrying in 3 seconds +0bacf10028c5: Retrying in 2 seconds +0bacf10028c5: Retrying in 1 second +0bacf10028c5: Verifying Checksum +0bacf10028c5: Download complete +1c9ef54a53ba: Verifying Checksum +1c9ef54a53ba: Download complete +0bacf10028c5: Pull complete +4a052d6cf676: Pull complete +2ff2c14bd1b0: Verifying Checksum +2ff2c14bd1b0: Download complete +8a260ecff867: Verifying Checksum +8a260ecff867: Download complete +9e035e507682: Verifying Checksum +9e035e507682: Download complete +678407803d31: Download complete +1fcb215c5d63: Verifying Checksum +1fcb215c5d63: Download complete +4b4a7620ca1b: Verifying Checksum +4b4a7620ca1b: Download complete +4b4a7620ca1b: Pull complete +2ff2c14bd1b0: Pull complete +1c9ef54a53ba: Pull complete +5301e1fde7a4: Verifying Checksum +5301e1fde7a4: Download complete +5301e1fde7a4: Pull complete +8a260ecff867: Pull complete +9e035e507682: Pull complete +678407803d31: Pull complete +1fcb215c5d63: Pull complete +Digest: sha256:670b143fd0de2986ee6bc4846fc5cba7d995cb2b138b0bab099ab931a9e4e8b2 +Status: Downloaded newer image for pavics/workflow-tests:py310-240306 [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-231107-update240306 cat -$ docker top ebc4e7303a12c810c96a8434d5c76564d1e50dadf347acfd670d3521f77f648b -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240306 cat +$ docker top 1ad88c247d92c4cfa1d3dabc611c63315f1739785abb52f7068ef9d8ba0d7ee7 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-07T15:57:43.762Z] Timeout set to expire in 2 hr 0 min +[2024-03-07T02:06:52.992Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-07T15:57:43.835Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-03-07T02:06:53.924Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-07T15:57:44.122Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-07T15:57:44.122Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-07T15:57:44.122Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-07T15:57:44.122Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-07T15:57:44.122Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-07T15:57:44.122Z] FINCH_BRANCH has been set to 'master' -[2024-03-07T15:57:44.122Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-07T15:57:44.122Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-07T15:57:44.122Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-07T15:57:44.122Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-07T15:57:44.122Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-07T15:57:44.122Z] RAVEN_BRANCH has been set to 'main' -[2024-03-07T15:57:44.122Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-07T15:57:44.122Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-07T15:57:44.122Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-07T15:57:44.122Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-07T15:57:44.122Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-07T15:57:44.122Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-07T15:57:44.122Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-07T15:57:44.122Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-07T15:57:44.122Z] + git clean -fdx -[2024-03-07T15:57:44.383Z] Removing .pytest_cache/ -[2024-03-07T15:57:44.383Z] Removing PAVICS-landing-master/ -[2024-03-07T15:57:44.383Z] Removing RavenPy-master/ -[2024-03-07T15:57:44.383Z] Removing __pycache__/ -[2024-03-07T15:57:44.383Z] Removing buildout/ -[2024-03-07T15:57:44.383Z] Removing esgf-compute-api-devel/ -[2024-03-07T15:57:44.383Z] Removing finch-master/ -[2024-03-07T15:57:44.383Z] Removing pavics-sdi-master/ -[2024-03-07T15:57:44.383Z] Removing raven-main/ -[2024-03-07T15:57:44.383Z] + ./downloadrepos -[2024-03-07T15:57:44.383Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-07T15:57:44.383Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-07T15:57:44.383Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-07T15:57:44.383Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-07T15:57:44.383Z] FINCH_BRANCH has been set to 'master' -[2024-03-07T15:57:44.383Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-07T15:57:44.383Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-07T15:57:44.383Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-07T15:57:44.383Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-07T15:57:44.383Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-07T15:57:44.383Z] RAVEN_BRANCH has been set to 'main' -[2024-03-07T15:57:44.383Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-07T15:57:44.383Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-07T15:57:44.383Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-07T15:57:44.383Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-07T15:57:44.383Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-07T15:57:44.383Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-07T15:57:44.383Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-07T15:57:44.383Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-07T15:57:44.643Z] + rm -rf pavics-sdi-* -[2024-03-07T15:57:44.643Z] + ls -[2024-03-07T15:57:44.643Z] + grep pavics-sdi -[2024-03-07T15:57:44.643Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-03-07T15:57:44.643Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-07T15:57:44.643Z] + shift -[2024-03-07T15:57:44.643Z] + branch=master -[2024-03-07T15:57:44.643Z] + shift -[2024-03-07T15:57:44.643Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-03-07T15:57:44.643Z] + tar xz -[2024-03-07T15:57:48.803Z] + grep pavics-sdi -[2024-03-07T15:57:48.803Z] + ls -[2024-03-07T15:57:48.803Z] pavics-sdi-master -[2024-03-07T15:57:48.803Z] + set +x -[2024-03-07T15:57:48.803Z] + rm -rf finch-* -[2024-03-07T15:57:48.803Z] + grep finch -[2024-03-07T15:57:48.803Z] + ls -[2024-03-07T15:57:48.803Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-07T15:57:48.803Z] + github_repo=https://github.com/bird-house/finch -[2024-03-07T15:57:48.803Z] + shift -[2024-03-07T15:57:48.803Z] + branch=master -[2024-03-07T15:57:48.803Z] + shift -[2024-03-07T15:57:48.803Z] + tar xz -[2024-03-07T15:57:48.803Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-03-07T15:57:50.172Z] + ls -[2024-03-07T15:57:50.172Z] + grep finch -[2024-03-07T15:57:50.172Z] finch-master -[2024-03-07T15:57:50.172Z] + set +x -[2024-03-07T15:57:50.172Z] + rm -rf PAVICS-landing-* -[2024-03-07T15:57:50.172Z] + ls -[2024-03-07T15:57:50.172Z] + grep PAVICS-landing -[2024-03-07T15:57:50.172Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-03-07T15:57:50.172Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-07T15:57:50.172Z] + shift -[2024-03-07T15:57:50.172Z] + branch=master -[2024-03-07T15:57:50.172Z] + shift -[2024-03-07T15:57:50.172Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-03-07T15:57:50.172Z] + tar xz -[2024-03-07T15:58:00.120Z] + ls -[2024-03-07T15:58:00.120Z] + grep PAVICS-landing -[2024-03-07T15:58:00.120Z] PAVICS-landing-master -[2024-03-07T15:58:00.120Z] + set +x -[2024-03-07T15:58:00.120Z] + rm -rf raven-* -[2024-03-07T15:58:00.120Z] + ls -[2024-03-07T15:58:00.120Z] + grep raven -[2024-03-07T15:58:00.120Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-07T15:58:00.120Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-07T15:58:00.120Z] + shift -[2024-03-07T15:58:00.120Z] + branch=main -[2024-03-07T15:58:00.120Z] + shift -[2024-03-07T15:58:00.120Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-07T15:58:00.120Z] + tar xz -[2024-03-07T15:58:01.493Z] + ls -[2024-03-07T15:58:01.493Z] + grep raven -[2024-03-07T15:58:01.493Z] raven-main -[2024-03-07T15:58:01.493Z] + set +x -[2024-03-07T15:58:01.493Z] + rm -rf RavenPy-* -[2024-03-07T15:58:01.493Z] + ls -[2024-03-07T15:58:01.493Z] + grep RavenPy -[2024-03-07T15:58:01.493Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-07T15:58:01.493Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-07T15:58:01.493Z] + shift -[2024-03-07T15:58:01.493Z] + branch=master -[2024-03-07T15:58:01.493Z] + shift -[2024-03-07T15:58:01.493Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-07T15:58:01.493Z] + tar xz -[2024-03-07T15:58:03.387Z] + + ls -[2024-03-07T15:58:03.387Z] grep RavenPy -[2024-03-07T15:58:03.387Z] RavenPy-master -[2024-03-07T15:58:03.387Z] + set +x -[2024-03-07T15:58:03.387Z] + rm -rf esgf-compute-api-* -[2024-03-07T15:58:03.387Z] + ls -[2024-03-07T15:58:03.387Z] + grep esgf-compute-api -[2024-03-07T15:58:03.387Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-07T15:58:03.387Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-07T15:58:03.387Z] + shift -[2024-03-07T15:58:03.387Z] + branch=devel -[2024-03-07T15:58:03.387Z] + shift -[2024-03-07T15:58:03.387Z] + + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gztar -[2024-03-07T15:58:03.387Z] xz -[2024-03-07T15:58:04.320Z] + grep esgf-compute-api+ -[2024-03-07T15:58:04.320Z] ls -[2024-03-07T15:58:04.320Z] esgf-compute-api-devel -[2024-03-07T15:58:04.320Z] + set +x -[2024-03-07T15:58:04.320Z] + echo master -[2024-03-07T15:58:04.320Z] + sed s@/@-@g -[2024-03-07T15:58:04.320Z] + PAVICS_SDI_BRANCH=master -[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g -[2024-03-07T15:58:04.320Z] + echo Ouranosinc/pavics-sdi -[2024-03-07T15:58:04.320Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-07T15:58:04.320Z] + echo master -[2024-03-07T15:58:04.320Z] + sed s@/@-@g -[2024-03-07T15:58:04.320Z] + FINCH_BRANCH=master -[2024-03-07T15:58:04.320Z] + echo bird-house/finch -[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g -[2024-03-07T15:58:04.320Z] + FINCH_REPO_NAME=finch -[2024-03-07T15:58:04.320Z] + echo master -[2024-03-07T15:58:04.320Z] + sed s@/@-@g -[2024-03-07T15:58:04.320Z] + PAVICS_LANDING_BRANCH=master -[2024-03-07T15:58:04.320Z] + echo Ouranosinc/PAVICS-landing -[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g -[2024-03-07T15:58:04.320Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-07T15:58:04.320Z] + echo main -[2024-03-07T15:58:04.320Z] + sed s@/@-@g -[2024-03-07T15:58:04.320Z] + RAVEN_BRANCH=main -[2024-03-07T15:58:04.320Z] + echo Ouranosinc/raven -[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g -[2024-03-07T15:58:04.320Z] + RAVEN_REPO_NAME=raven -[2024-03-07T15:58:04.320Z] + echo master -[2024-03-07T15:58:04.320Z] + sed s@/@-@g -[2024-03-07T15:58:04.320Z] + RAVENPY_BRANCH=master -[2024-03-07T15:58:04.320Z] + sed+ s@^.*/@@g -[2024-03-07T15:58:04.320Z] echo CSHS-CWRA/RavenPy -[2024-03-07T15:58:04.320Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-07T15:58:04.320Z] + sed s@/@-@g -[2024-03-07T15:58:04.320Z] + echo devel -[2024-03-07T15:58:04.320Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-07T15:58:04.320Z] + echo ESGF/esgf-compute-api -[2024-03-07T15:58:04.320Z] + sed s@^.*/@@g -[2024-03-07T15:58:04.320Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-07T15:58:04.320Z] + sed+ s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T15:58:04.320Z] echo pavics-sdi-master -[2024-03-07T15:58:04.320Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-03-07T15:58:04.320Z] + + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T15:58:04.320Z] echo finch-master -[2024-03-07T15:58:04.320Z] + FINCH_DIR=finch-master -[2024-03-07T15:58:04.320Z] + echo PAVICS-landing-master -[2024-03-07T15:58:04.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T15:58:04.320Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-03-07T15:58:04.320Z] + echo raven-main -[2024-03-07T15:58:04.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T15:58:04.320Z] + RAVEN_DIR=raven-main -[2024-03-07T15:58:04.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T15:58:04.320Z] + echo RavenPy-master -[2024-03-07T15:58:04.320Z] + RAVENPY_DIR=RavenPy-master -[2024-03-07T15:58:04.320Z] + echo esgf-compute-api-devel -[2024-03-07T15:58:04.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T15:58:04.320Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-07T15:58:04.320Z] + echo true -[2024-03-07T15:58:04.883Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.444Z] + VERIFY_SSL=true -[2024-03-07T15:58:05.444Z] + [ xtrue = xfalse ] -[2024-03-07T15:58:05.444Z] + rm -v finch-master/setup.cfg -[2024-03-07T15:58:05.444Z] removed 'finch-master/setup.cfg' -[2024-03-07T15:58:05.444Z] + rm -v raven-main/setup.cfg -[2024-03-07T15:58:05.444Z] removed 'raven-main/setup.cfg' -[2024-03-07T15:58:05.444Z] + rm -v raven-main/pyproject.toml -[2024-03-07T15:58:05.444Z] removed 'raven-main/pyproject.toml' -[2024-03-07T15:58:05.444Z] + rm -v RavenPy-master/setup.cfg -[2024-03-07T15:58:05.444Z] removed 'RavenPy-master/setup.cfg' -[2024-03-07T15:58:05.444Z] + rm -v RavenPy-master/tox.ini -[2024-03-07T15:58:05.444Z] removed 'RavenPy-master/tox.ini' -[2024-03-07T15:58:05.444Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-07T15:58:05.444Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-07T15:58:05.444Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-07T15:58:05.444Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-07T15:58:05.444Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-07T15:58:05.444Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-07T15:58:05.444Z] + echo false -[2024-03-07T15:58:05.444Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.444Z] + TEST_MAGPIE_AUTH=false -[2024-03-07T15:58:05.444Z] + echo true -[2024-03-07T15:58:05.444Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.444Z] + TEST_PAVICS_SDI_REPO=true -[2024-03-07T15:58:05.444Z] + echo false -[2024-03-07T15:58:05.444Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.444Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-07T15:58:05.444Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.444Z] + echo true -[2024-03-07T15:58:05.444Z] + TEST_FINCH_REPO=true -[2024-03-07T15:58:05.444Z] + echo true -[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.445Z] + TEST_PAVICS_LANDING_REPO=true -[2024-03-07T15:58:05.445Z] + echo false -[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.445Z] + TEST_RAVEN_REPO=false -[2024-03-07T15:58:05.445Z] + echo false -[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.445Z] + TEST_RAVENPY_REPO=false -[2024-03-07T15:58:05.445Z] + echo false -[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.445Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-07T15:58:05.445Z] + echo true -[2024-03-07T15:58:05.445Z] + tr [:upper:] [:lower:] -[2024-03-07T15:58:05.445Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-03-07T15:58:05.445Z] + NOTEBOOKS_TO_TEST= -[2024-03-07T15:58:05.445Z] + [ xfalse = xtrue ] -[2024-03-07T15:58:05.445Z] + [ xtrue = xtrue ] -[2024-03-07T15:58:05.445Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb -[2024-03-07T15:58:05.445Z] + [ xfalse = xtrue ] -[2024-03-07T15:58:05.445Z] + [ xtrue = xtrue ] -[2024-03-07T15:58:05.445Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-03-07T15:58:05.445Z] + [ xtrue = xtrue ] -[2024-03-07T15:58:05.445Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb -[2024-03-07T15:58:05.445Z] + SETUP_SCRIPT=PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T15:58:05.445Z] + [ -x PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-03-07T15:58:05.445Z] + PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T15:58:05.445Z] + realpath PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T15:58:05.445Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T15:58:05.445Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T15:58:05.445Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators -[2024-03-07T15:58:05.445Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-07T15:58:05.445Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-07T15:58:05.445Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-03-07T15:58:05.445Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/output.zip -[2024-03-07T15:58:05.445Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.445Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.701Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.702Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.958Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.959Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.959Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.959Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:05.959Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.219Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.478Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T15:58:06.479Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-03-07T15:58:06.479Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-03-07T15:58:06.479Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-03-07T15:58:06.479Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/tutorial_data' -[2024-03-07T15:58:06.479Z] + [ xfalse = xtrue ] -[2024-03-07T15:58:06.479Z] + [ xfalse = xtrue ] -[2024-03-07T15:58:06.479Z] + [ xfalse = xtrue ] -[2024-03-07T15:58:06.479Z] + [ xtrue = xtrue ] -[2024-03-07T15:58:06.479Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-07T15:58:06.479Z] + ./runtest pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-07T15:58:06.479Z] + [ -n ] -[2024-03-07T15:58:06.479Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-07T15:58:06.479Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-07T15:58:06.479Z] Will run notebooks against pavics.ouranos.ca -[2024-03-07T15:58:06.479Z] + [ -z ] -[2024-03-07T15:58:06.479Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-03-07T15:58:06.740Z] + git diff -[2024-03-07T15:58:06.740Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-07T15:58:06.741Z] + py.test --nbval pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-03-07T15:58:33.363Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-07T15:58:33.363Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-07T15:58:33.363Z] ============================= test session starts ============================== -[2024-03-07T15:58:33.363Z] platform linux -- Python 3.10.13, pytest-7.4.3, pluggy-1.3.0 -[2024-03-07T15:58:33.364Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-03-07T15:58:33.364Z] plugins: anyio-4.0.0, dash-2.14.1, nbval-0.10.0, tornasync-0.6.0.post2, xdist-3.3.1 -[2024-03-07T15:58:33.364Z] collected 215 items -[2024-03-07T15:58:33.364Z] -[2024-03-07T15:59:09.434Z] pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb ....... [ 3%] -[2024-03-07T15:59:15.907Z] pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb ...... [ 6%] -[2024-03-07T15:59:26.652Z] pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb ........ [ 9%] -[2024-03-07T16:02:14.703Z] pavics-sdi-master/docs/source/notebooks/climex.ipynb ........F... [ 15%] -[2024-03-07T16:02:14.703Z] pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 15%] -[2024-03-07T16:02:21.311Z] ............... [ 22%] -[2024-03-07T16:02:29.393Z] pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb ..... [ 25%] -[2024-03-07T16:04:25.407Z] pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb ...... [ 27%] -[2024-03-07T16:04:38.268Z] pavics-sdi-master/docs/source/notebooks/forecasts.ipynb ..F... [ 30%] -[2024-03-07T16:04:42.442Z] pavics-sdi-master/docs/source/notebooks/opendap.ipynb ....... [ 33%] -[2024-03-07T16:04:47.002Z] pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb ..... [ 36%] -[2024-03-07T16:05:24.712Z] pavics-sdi-master/docs/source/notebooks/regridding.ipynb ....F..F....... [ 43%] -[2024-03-07T16:06:27.811Z] .....F......F [ 49%] -[2024-03-07T16:06:30.402Z] pavics-sdi-master/docs/source/notebooks/rendering.ipynb .... [ 51%] -[2024-03-07T16:06:33.494Z] pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb ...FFF.F [ 54%] -[2024-03-07T16:06:40.528Z] FF....FFFF.FFFFFF [ 62%] -[2024-03-07T16:06:47.563Z] pavics-sdi-master/docs/source/notebooks/subsetting.ipynb ...... [ 65%] -[2024-03-07T16:06:57.237Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 70%] -[2024-03-07T16:07:05.184Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...F.. [ 73%] -[2024-03-07T16:07:06.119Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 73%] -[2024-03-07T16:07:09.188Z] ...... [ 76%] -[2024-03-07T16:07:15.786Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 77%] -[2024-03-07T16:07:26.208Z] ............. [ 83%] -[2024-03-07T16:07:41.108Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb F [ 83%] -[2024-03-07T16:07:57.384Z] ....s. [ 86%] -[2024-03-07T16:08:05.469Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 86%] -[2024-03-07T16:08:15.514Z] .F. [ 88%] -[2024-03-07T16:08:30.385Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 88%] -[2024-03-07T16:08:55.580Z] .F.... [ 91%] -[2024-03-07T16:08:57.974Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-03-07T16:10:59.488Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] =================================== FAILURES =================================== -[2024-03-07T16:10:59.488Z] _________ pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 8 _________ -[2024-03-07T16:10:59.488Z] Notebook cell execution failed -[2024-03-07T16:10:59.488Z] Cell 8: Cell outputs differ -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] Input: -[2024-03-07T16:10:59.488Z] # Subset over the Montreal gridpoint -[2024-03-07T16:10:59.488Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) -[2024-03-07T16:10:59.488Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) -[2024-03-07T16:10:59.488Z] print("Input dataset for Montreal :") -[2024-03-07T16:10:59.488Z] display(pt) -[2024-03-07T16:10:59.488Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") -[2024-03-07T16:10:59.488Z] print("Maximim 1-day precipitation `lazy` output ..") -[2024-03-07T16:10:59.488Z] out -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] Traceback: -[2024-03-07T16:10:59.488Z]  mismatch 'text/plain' -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] assert reference_output == test_output failed: -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] '>>>>>>>>>>> -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] _______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 4 _______ -[2024-03-07T16:10:59.488Z] Notebook cell execution failed -[2024-03-07T16:10:59.488Z] Cell 4: Cell outputs differ -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] Input: -[2024-03-07T16:10:59.488Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) -[2024-03-07T16:10:59.488Z] plt.title("Target regular grid"); -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] Traceback: -[2024-03-07T16:10:59.488Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-07T16:10:59.488Z]
-[2024-03-07T16:10:59.488Z] ============ disagrees with newly computed (test) output: -[2024-03-07T16:10:59.488Z] Text(0.5, 1.0, 'Target regular grid') -[2024-03-07T16:10:59.488Z]
-[2024-03-07T16:10:59.488Z] >>>>>>>>>>>> -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] _______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 7 _______ -[2024-03-07T16:10:59.488Z] Notebook cell execution failed -[2024-03-07T16:10:59.488Z] Cell 7: Cell outputs differ -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.488Z] Input: -[2024-03-07T16:10:59.488Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. -[2024-03-07T16:10:59.488Z] warnings.filterwarnings("ignore", category=FutureWarning) -[2024-03-07T16:10:59.488Z] -[2024-03-07T16:10:59.489Z] # Apply the regridding weights to the input sea ice concentration data -[2024-03-07T16:10:59.489Z] sic_bil = reg_bil(ds_in.siconc) -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] # Plot the results -[2024-03-07T16:10:59.489Z] sic_bil.isel(time=0).plot(cmap=cmap) -[2024-03-07T16:10:59.489Z] plt.title("Regridded sic data (Jan 2020)"); -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Traceback: -[2024-03-07T16:10:59.489Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-07T16:10:59.489Z]
-[2024-03-07T16:10:59.489Z] ============ disagrees with newly computed (test) output: -[2024-03-07T16:10:59.489Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') -[2024-03-07T16:10:59.489Z]
-[2024-03-07T16:10:59.489Z] >>>>>>>>>>>> -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] ______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 20 _______ -[2024-03-07T16:10:59.489Z] Notebook cell execution failed -[2024-03-07T16:10:59.489Z] Cell 20: Cell outputs differ -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Input: -[2024-03-07T16:10:59.489Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") -[2024-03-07T16:10:59.489Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] fig, ax = plt.subplots(figsize=(6, 4)) -[2024-03-07T16:10:59.489Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) -[2024-03-07T16:10:59.489Z] ax.set_xlim(210, 320) -[2024-03-07T16:10:59.489Z] ax.set_ylim(38, 86) -[2024-03-07T16:10:59.489Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") -[2024-03-07T16:10:59.489Z] ax.annotate( -[2024-03-07T16:10:59.489Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", -[2024-03-07T16:10:59.489Z] (280, 40), -[2024-03-07T16:10:59.489Z] xytext=(1.3, 0.3), -[2024-03-07T16:10:59.489Z] xycoords="data", -[2024-03-07T16:10:59.489Z] textcoords="axes fraction", -[2024-03-07T16:10:59.489Z] fontsize="x-large", -[2024-03-07T16:10:59.489Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), -[2024-03-07T16:10:59.489Z] ); -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Traceback: -[2024-03-07T16:10:59.489Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-07T16:10:59.489Z]
-[2024-03-07T16:10:59.489Z] ============ disagrees with newly computed (test) output: -[2024-03-07T16:10:59.489Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') -[2024-03-07T16:10:59.489Z]
-[2024-03-07T16:10:59.489Z] >>>>>>>>>>>> -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] ______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 27 _______ -[2024-03-07T16:10:59.489Z] Notebook cell execution failed -[2024-03-07T16:10:59.489Z] Cell 27: Cell outputs differ -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Input: -[2024-03-07T16:10:59.489Z] # Now we can plot easily the results as a choropleth map! -[2024-03-07T16:10:59.489Z] ax = shapes_data.plot( -[2024-03-07T16:10:59.489Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} -[2024-03-07T16:10:59.489Z] ) -[2024-03-07T16:10:59.489Z] ax.set_ylabel("Latitude") -[2024-03-07T16:10:59.489Z] ax.set_xlabel("Longitude"); -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Traceback: -[2024-03-07T16:10:59.489Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-07T16:10:59.489Z]
-[2024-03-07T16:10:59.489Z] ============ disagrees with newly computed (test) output: -[2024-03-07T16:10:59.489Z] Text(0.5, 91.20243008191655, 'Longitude') -[2024-03-07T16:10:59.489Z]
-[2024-03-07T16:10:59.489Z] >>>>>>>>>>>> -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 3 ____ -[2024-03-07T16:10:59.489Z] Notebook cell execution failed -[2024-03-07T16:10:59.489Z] Cell 3: Cell execution caused an exception -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Input: -[2024-03-07T16:10:59.489Z] leaflet_map = ipyleaflet.Map( -[2024-03-07T16:10:59.489Z] center=canada_center_lat_lon, -[2024-03-07T16:10:59.489Z] basemap=ipyleaflet.basemaps.Stamen.Terrain, -[2024-03-07T16:10:59.489Z] zoom=4, -[2024-03-07T16:10:59.489Z] ) -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] initial_marker_location = canada_center_lat_lon -[2024-03-07T16:10:59.489Z] marker = ipyleaflet.Marker(location=initial_marker_location, draggable=True) -[2024-03-07T16:10:59.489Z] leaflet_map.add_layer(marker) -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] leaflet_map -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Traceback: -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.489Z] KeyError Traceback (most recent call last) -[2024-03-07T16:10:59.489Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:44, in Bunch.__getattr__(self, key) -[2024-03-07T16:10:59.489Z]  43 try: -[2024-03-07T16:10:59.489Z] ---> 44 return self.__getitem__(key) -[2024-03-07T16:10:59.489Z]  45 except KeyError as err: -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] KeyError: 'Stamen' -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] The above exception was the direct cause of the following exception: -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:10:59.489Z] Cell In[1], line 3 -[2024-03-07T16:10:59.489Z]  1 leaflet_map = ipyleaflet.Map( -[2024-03-07T16:10:59.489Z]  2 center=canada_center_lat_lon, -[2024-03-07T16:10:59.489Z] ----> 3 basemap=ipyleaflet.basemaps.Stamen.Terrain, -[2024-03-07T16:10:59.489Z]  4 zoom=4, -[2024-03-07T16:10:59.489Z]  5 ) -[2024-03-07T16:10:59.489Z]  7 initial_marker_location = canada_center_lat_lon -[2024-03-07T16:10:59.489Z]  8 marker = ipyleaflet.Marker(location=initial_marker_location, draggable=True) -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:46, in Bunch.__getattr__(self, key) -[2024-03-07T16:10:59.489Z]  44 return self.__getitem__(key) -[2024-03-07T16:10:59.489Z]  45 except KeyError as err: -[2024-03-07T16:10:59.489Z] ---> 46 raise AttributeError(key) from err -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] AttributeError: Stamen -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 4 ____ -[2024-03-07T16:10:59.489Z] Notebook cell execution failed -[2024-03-07T16:10:59.489Z] Cell 4: Cell execution caused an exception -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Input: -[2024-03-07T16:10:59.489Z] marker.location = (45.55, -72.44) -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Traceback: -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.489Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.489Z] Cell In[1], line 1 -[2024-03-07T16:10:59.489Z] ----> 1 marker.location = (45.55, -72.44) -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] NameError: name 'marker' is not defined -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 5 ____ -[2024-03-07T16:10:59.489Z] Notebook cell execution failed -[2024-03-07T16:10:59.489Z] Cell 5: Cell execution caused an exception -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Input: -[2024-03-07T16:10:59.489Z] print(initial_marker_location) -[2024-03-07T16:10:59.489Z] print(marker.location) -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Traceback: -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.489Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.489Z] Cell In[1], line 1 -[2024-03-07T16:10:59.489Z] ----> 1 print(initial_marker_location) -[2024-03-07T16:10:59.489Z]  2 print(marker.location) -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] NameError: name 'initial_marker_location' is not defined -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 7 ____ -[2024-03-07T16:10:59.489Z] Notebook cell execution failed -[2024-03-07T16:10:59.489Z] Cell 7: Cell execution caused an exception -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Input: -[2024-03-07T16:10:59.489Z] # NBVAL_IGNORE_OUTPUT -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] rectangle = get_rectangle() -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.489Z] Traceback: -[2024-03-07T16:10:59.489Z] -[2024-03-07T16:10:59.490Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.490Z] KeyError Traceback (most recent call last) -[2024-03-07T16:10:59.490Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:44, in Bunch.__getattr__(self, key) -[2024-03-07T16:10:59.490Z]  43 try: -[2024-03-07T16:10:59.490Z] ---> 44 return self.__getitem__(key) -[2024-03-07T16:10:59.490Z]  45 except KeyError as err: -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] KeyError: 'Stamen' -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] The above exception was the direct cause of the following exception: -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:10:59.490Z] Cell In[1], line 4 -[2024-03-07T16:10:59.490Z]  1 # NBVAL_IGNORE_OUTPUT -[2024-03-07T16:10:59.490Z] ----> 4 rectangle = get_rectangle() -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] Cell In[1], line 10, in get_rectangle() -[2024-03-07T16:10:59.490Z]  6 def get_rectangle(): -[2024-03-07T16:10:59.490Z]  7 canada_center = (52.4292, -93.2959) -[2024-03-07T16:10:59.490Z]  8 m = ipyleaflet.Map( -[2024-03-07T16:10:59.490Z]  9 center=canada_center, -[2024-03-07T16:10:59.490Z] ---> 10 basemap=ipyleaflet.basemaps.Stamen.Terrain, -[2024-03-07T16:10:59.490Z]  11 zoom=4, -[2024-03-07T16:10:59.490Z]  12 ) -[2024-03-07T16:10:59.490Z]  14 # Create a new draw control -[2024-03-07T16:10:59.490Z]  15 draw_control = ipyleaflet.DrawControl() -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:46, in Bunch.__getattr__(self, key) -[2024-03-07T16:10:59.490Z]  44 return self.__getitem__(key) -[2024-03-07T16:10:59.490Z]  45 except KeyError as err: -[2024-03-07T16:10:59.490Z] ---> 46 raise AttributeError(key) from err -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] AttributeError: Stamen -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 8 ____ -[2024-03-07T16:10:59.490Z] Notebook cell execution failed -[2024-03-07T16:10:59.490Z] Cell 8: Cell execution caused an exception -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] Input: -[2024-03-07T16:10:59.490Z] # GeoJSON with custom style properties -[2024-03-07T16:10:59.490Z] if not len(rectangle): -[2024-03-07T16:10:59.490Z] # Use the default region of Greater Montreal Area -[2024-03-07T16:10:59.490Z] rectangle = { -[2024-03-07T16:10:59.490Z] "type": "Feature", -[2024-03-07T16:10:59.490Z] "properties": { -[2024-03-07T16:10:59.490Z] "style": { -[2024-03-07T16:10:59.490Z] "stroke": True, -[2024-03-07T16:10:59.490Z] "color": "#4ae", -[2024-03-07T16:10:59.490Z] "weight": 4, -[2024-03-07T16:10:59.490Z] "opacity": 0.5, -[2024-03-07T16:10:59.490Z] "fill": True, -[2024-03-07T16:10:59.490Z] "fillColor": "#4ae", -[2024-03-07T16:10:59.490Z] "fillOpacity": 0.3, -[2024-03-07T16:10:59.490Z] "clickable": True, -[2024-03-07T16:10:59.490Z] } -[2024-03-07T16:10:59.490Z] }, -[2024-03-07T16:10:59.490Z] "geometry": { -[2024-03-07T16:10:59.490Z] "type": "Polygon", -[2024-03-07T16:10:59.490Z] "coordinates": [ -[2024-03-07T16:10:59.490Z] [ -[2024-03-07T16:10:59.490Z] [-74.511948, 45.202296], -[2024-03-07T16:10:59.490Z] [-74.511948, 45.934852], -[2024-03-07T16:10:59.490Z] [-72.978537, 45.934852], -[2024-03-07T16:10:59.490Z] [-72.978537, 45.202296], -[2024-03-07T16:10:59.490Z] [-74.511948, 45.202296], -[2024-03-07T16:10:59.490Z] ] -[2024-03-07T16:10:59.490Z] ], -[2024-03-07T16:10:59.490Z] }, -[2024-03-07T16:10:59.490Z] } -[2024-03-07T16:10:59.490Z] rectangle -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] Traceback: -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.490Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.490Z] Cell In[1], line 2 -[2024-03-07T16:10:59.490Z]  1 # GeoJSON with custom style properties -[2024-03-07T16:10:59.490Z] ----> 2 if not len(rectangle): -[2024-03-07T16:10:59.490Z]  3 # Use the default region of Greater Montreal Area -[2024-03-07T16:10:59.490Z]  4 rectangle = { -[2024-03-07T16:10:59.490Z]  5 "type": "Feature", -[2024-03-07T16:10:59.490Z]  6 "properties": { -[2024-03-07T16:10:59.490Z]  (...) -[2024-03-07T16:10:59.490Z]  29 }, -[2024-03-07T16:10:59.490Z]  30 } -[2024-03-07T16:10:59.490Z]  31 rectangle -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] NameError: name 'rectangle' is not defined -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 9 ____ -[2024-03-07T16:10:59.490Z] Notebook cell execution failed -[2024-03-07T16:10:59.490Z] Cell 9: Cell execution caused an exception -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] Input: -[2024-03-07T16:10:59.490Z] import geopandas as gpd -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] rect = gpd.GeoDataFrame.from_features([rectangle]) -[2024-03-07T16:10:59.490Z] bounds = rect.bounds -[2024-03-07T16:10:59.490Z] bounds -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] Traceback: -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.490Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.490Z] Cell In[1], line 3 -[2024-03-07T16:10:59.490Z]  1 import geopandas as gpd -[2024-03-07T16:10:59.490Z] ----> 3 rect = gpd.GeoDataFrame.from_features([rectangle]) -[2024-03-07T16:10:59.490Z]  4 bounds = rect.bounds -[2024-03-07T16:10:59.490Z]  5 bounds -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] NameError: name 'rectangle' is not defined -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 14 ___ -[2024-03-07T16:10:59.490Z] Notebook cell execution failed -[2024-03-07T16:10:59.490Z] Cell 14: Cell execution caused an exception -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] Input: -[2024-03-07T16:10:59.490Z] lon0 = float(bounds.minx) -[2024-03-07T16:10:59.490Z] lon1 = float(bounds.maxx) -[2024-03-07T16:10:59.490Z] lat0 = float(bounds.miny) -[2024-03-07T16:10:59.490Z] lat1 = float(bounds.maxy) -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] result_tasmin = finch.subset_bbox( -[2024-03-07T16:10:59.490Z] resource=data, -[2024-03-07T16:10:59.490Z] variable="tasmin", -[2024-03-07T16:10:59.490Z] lon0=lon0, -[2024-03-07T16:10:59.490Z] lon1=lon1, -[2024-03-07T16:10:59.490Z] lat0=lat0, -[2024-03-07T16:10:59.490Z] lat1=lat1, -[2024-03-07T16:10:59.490Z] start_date="1958-01-01", -[2024-03-07T16:10:59.490Z] end_date="1958-12-31", -[2024-03-07T16:10:59.490Z] ) -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] Traceback: -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.490Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.490Z] Cell In[1], line 1 -[2024-03-07T16:10:59.490Z] ----> 1 lon0 = float(bounds.minx) -[2024-03-07T16:10:59.490Z]  2 lon1 = float(bounds.maxx) -[2024-03-07T16:10:59.490Z]  3 lat0 = float(bounds.miny) -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] NameError: name 'bounds' is not defined -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 15 ___ -[2024-03-07T16:10:59.490Z] Notebook cell execution failed -[2024-03-07T16:10:59.490Z] Cell 15: Cell execution caused an exception -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] Input: -[2024-03-07T16:10:59.490Z] # NBVAL_IGNORE_OUTPUT -[2024-03-07T16:10:59.490Z] -[2024-03-07T16:10:59.490Z] # wait for process to complete before running this cell (the process is async) -[2024-03-07T16:10:59.490Z] tasmin_subset = result_tasmin.get().output -[2024-03-07T16:10:59.490Z] tasmin_subset -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Traceback: -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.491Z] Cell In[1], line 4 -[2024-03-07T16:10:59.491Z]  1 # NBVAL_IGNORE_OUTPUT -[2024-03-07T16:10:59.491Z]  2 -[2024-03-07T16:10:59.491Z]  3 # wait for process to complete before running this cell (the process is async) -[2024-03-07T16:10:59.491Z] ----> 4 tasmin_subset = result_tasmin.get().output -[2024-03-07T16:10:59.491Z]  5 tasmin_subset -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] NameError: name 'result_tasmin' is not defined -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 16 ___ -[2024-03-07T16:10:59.491Z] Notebook cell execution failed -[2024-03-07T16:10:59.491Z] Cell 16: Cell execution caused an exception -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Input: -[2024-03-07T16:10:59.491Z] result_tasmax = finch.subset_bbox( -[2024-03-07T16:10:59.491Z] resource=data, -[2024-03-07T16:10:59.491Z] variable="tasmax", -[2024-03-07T16:10:59.491Z] lon0=lon0, -[2024-03-07T16:10:59.491Z] lon1=lon1, -[2024-03-07T16:10:59.491Z] lat0=lat0, -[2024-03-07T16:10:59.491Z] lat1=lat1, -[2024-03-07T16:10:59.491Z] start_date="1958-01-01", -[2024-03-07T16:10:59.491Z] end_date="1958-12-31", -[2024-03-07T16:10:59.491Z] ) -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Traceback: -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.491Z] Cell In[1], line 4 -[2024-03-07T16:10:59.491Z]  1 result_tasmax = finch.subset_bbox( -[2024-03-07T16:10:59.491Z]  2 resource=data, -[2024-03-07T16:10:59.491Z]  3 variable="tasmax", -[2024-03-07T16:10:59.491Z] ----> 4 lon0=lon0, -[2024-03-07T16:10:59.491Z]  5 lon1=lon1, -[2024-03-07T16:10:59.491Z]  6 lat0=lat0, -[2024-03-07T16:10:59.491Z]  7 lat1=lat1, -[2024-03-07T16:10:59.491Z]  8 start_date="1958-01-01", -[2024-03-07T16:10:59.491Z]  9 end_date="1958-12-31", -[2024-03-07T16:10:59.491Z]  10 ) -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] NameError: name 'lon0' is not defined -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 17 ___ -[2024-03-07T16:10:59.491Z] Notebook cell execution failed -[2024-03-07T16:10:59.491Z] Cell 17: Cell execution caused an exception -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Input: -[2024-03-07T16:10:59.491Z] # NBVAL_IGNORE_OUTPUT -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] # wait for process to complete before running this cell (the process is async) -[2024-03-07T16:10:59.491Z] tasmax_subset = result_tasmax.get().output -[2024-03-07T16:10:59.491Z] tasmax_subset -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Traceback: -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.491Z] Cell In[1], line 4 -[2024-03-07T16:10:59.491Z]  1 # NBVAL_IGNORE_OUTPUT -[2024-03-07T16:10:59.491Z]  2 -[2024-03-07T16:10:59.491Z]  3 # wait for process to complete before running this cell (the process is async) -[2024-03-07T16:10:59.491Z] ----> 4 tasmax_subset = result_tasmax.get().output -[2024-03-07T16:10:59.491Z]  5 tasmax_subset -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] NameError: name 'result_tasmax' is not defined -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 19 ___ -[2024-03-07T16:10:59.491Z] Notebook cell execution failed -[2024-03-07T16:10:59.491Z] Cell 19: Cell execution caused an exception -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Input: -[2024-03-07T16:10:59.491Z] result = finch.heat_wave_frequency( -[2024-03-07T16:10:59.491Z] tasmin=tasmin_subset, -[2024-03-07T16:10:59.491Z] tasmax=tasmax_subset, -[2024-03-07T16:10:59.491Z] thresh_tasmin="14 degC", -[2024-03-07T16:10:59.491Z] thresh_tasmax="22 degC", -[2024-03-07T16:10:59.491Z] ) -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Traceback: -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.491Z] Cell In[1], line 2 -[2024-03-07T16:10:59.491Z]  1 result = finch.heat_wave_frequency( -[2024-03-07T16:10:59.491Z] ----> 2 tasmin=tasmin_subset, -[2024-03-07T16:10:59.491Z]  3 tasmax=tasmax_subset, -[2024-03-07T16:10:59.491Z]  4 thresh_tasmin="14 degC", -[2024-03-07T16:10:59.491Z]  5 thresh_tasmax="22 degC", -[2024-03-07T16:10:59.491Z]  6 ) -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] NameError: name 'tasmin_subset' is not defined -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 20 ___ -[2024-03-07T16:10:59.491Z] Notebook cell execution failed -[2024-03-07T16:10:59.491Z] Cell 20: Cell execution caused an exception -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Input: -[2024-03-07T16:10:59.491Z] response = result.get(asobj=True) -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Traceback: -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.491Z] Cell In[1], line 1 -[2024-03-07T16:10:59.491Z] ----> 1 response = result.get(asobj=True) -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] NameError: name 'result' is not defined -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 21 ___ -[2024-03-07T16:10:59.491Z] Notebook cell execution failed -[2024-03-07T16:10:59.491Z] Cell 21: Cell execution caused an exception -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Input: -[2024-03-07T16:10:59.491Z] ds = response.output -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Traceback: -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.491Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.491Z] Cell In[1], line 1 -[2024-03-07T16:10:59.491Z] ----> 1 ds = response.output -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] NameError: name 'response' is not defined -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 22 ___ -[2024-03-07T16:10:59.491Z] Notebook cell execution failed -[2024-03-07T16:10:59.491Z] Cell 22: Cell execution caused an exception -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Input: -[2024-03-07T16:10:59.491Z] ds.heat_wave_frequency.plot() -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] Traceback: -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.491Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:10:59.491Z] Cell In[1], line 1 -[2024-03-07T16:10:59.491Z] ----> 1 ds.heat_wave_frequency.plot() -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-03-07T16:10:59.491Z]  275 with suppress(KeyError): -[2024-03-07T16:10:59.491Z]  276 return source[name] -[2024-03-07T16:10:59.491Z] --> 277 raise AttributeError( -[2024-03-07T16:10:59.491Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-03-07T16:10:59.491Z]  279 ) -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.491Z] AttributeError: 'Dataset' object has no attribute 'heat_wave_frequency' -[2024-03-07T16:10:59.491Z] -[2024-03-07T16:10:59.492Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 23 ___ -[2024-03-07T16:10:59.492Z] Notebook cell execution failed -[2024-03-07T16:10:59.492Z] Cell 23: Cell execution caused an exception -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Input: -[2024-03-07T16:10:59.492Z] from urllib.parse import urlparse -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] output_url = result.get().output -[2024-03-07T16:10:59.492Z] print("output_url = ", output_url) -[2024-03-07T16:10:59.492Z] parsed = urlparse(output_url) -[2024-03-07T16:10:59.492Z] output_path = parsed.path.replace("wpsoutputs", "wps_outputs") -[2024-03-07T16:10:59.492Z] print("output_path = ", output_path) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] output_thredds_url = ( -[2024-03-07T16:10:59.492Z] f"https://{parsed.hostname}/twitcher/ows/proxy/thredds/dodsC/birdhouse{output_path}" -[2024-03-07T16:10:59.492Z] ) -[2024-03-07T16:10:59.492Z] print("output_thredds_url = ", output_thredds_url) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Traceback: -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.492Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.492Z] Cell In[1], line 3 -[2024-03-07T16:10:59.492Z]  1 from urllib.parse import urlparse -[2024-03-07T16:10:59.492Z] ----> 3 output_url = result.get().output -[2024-03-07T16:10:59.492Z]  4 print("output_url = ", output_url) -[2024-03-07T16:10:59.492Z]  5 parsed = urlparse(output_url) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] NameError: name 'result' is not defined -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 24 ___ -[2024-03-07T16:10:59.492Z] Notebook cell execution failed -[2024-03-07T16:10:59.492Z] Cell 24: Cell execution caused an exception -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Input: -[2024-03-07T16:10:59.492Z] # NBVAL_IGNORE_OUTPUT -[2024-03-07T16:10:59.492Z] import hvplot.xarray -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] dsremote = xr.open_dataset(output_thredds_url) -[2024-03-07T16:10:59.492Z] dsremote.hvplot.quadmesh( -[2024-03-07T16:10:59.492Z] "lon", -[2024-03-07T16:10:59.492Z] "lat", -[2024-03-07T16:10:59.492Z] "heat_wave_frequency", -[2024-03-07T16:10:59.492Z] geo=True, -[2024-03-07T16:10:59.492Z] alpha=0.8, -[2024-03-07T16:10:59.492Z] frame_height=540, -[2024-03-07T16:10:59.492Z] cmap="viridis", -[2024-03-07T16:10:59.492Z] tiles="CartoLight", -[2024-03-07T16:10:59.492Z] ) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Traceback: -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.492Z] NameError Traceback (most recent call last) -[2024-03-07T16:10:59.492Z] Cell In[1], line 4 -[2024-03-07T16:10:59.492Z]  1 # NBVAL_IGNORE_OUTPUT -[2024-03-07T16:10:59.492Z]  2 import hvplot.xarray -[2024-03-07T16:10:59.492Z] ----> 4 dsremote = xr.open_dataset(output_thredds_url) -[2024-03-07T16:10:59.492Z]  5 dsremote.hvplot.quadmesh( -[2024-03-07T16:10:59.492Z]  6 "lon", -[2024-03-07T16:10:59.492Z]  7 "lat", -[2024-03-07T16:10:59.492Z]  (...) -[2024-03-07T16:10:59.492Z]  13 tiles="CartoLight", -[2024-03-07T16:10:59.492Z]  14 ) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] NameError: name 'output_thredds_url' is not defined -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] _________ finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 _________ -[2024-03-07T16:10:59.492Z] Notebook cell execution failed -[2024-03-07T16:10:59.492Z] Cell 3: Cell outputs differ -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Input: -[2024-03-07T16:10:59.492Z] print("Process status: ", resp.status) -[2024-03-07T16:10:59.492Z] urls = resp.get() -[2024-03-07T16:10:59.492Z] print("Link to process output: ", urls.output) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Traceback: -[2024-03-07T16:10:59.492Z]  mismatch 'stdout' -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] assert reference_output == test_output failed: -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] 'Process stat...20650101.nc\n' == 'Process stat...20650101.nc\n' -[2024-03-07T16:10:59.492Z] Skipping 49 identical leading characters in diff, use -v to show -[2024-03-07T16:10:59.492Z] - output: https://WPS_HOST/wpsoutputs/STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc -[2024-03-07T16:10:59.492Z] ? --------------------------- -[2024-03-07T16:10:59.492Z] + output: /STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc -[2024-03-07T16:10:59.492Z]  -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 0 _ -[2024-03-07T16:10:59.492Z] Notebook cell execution failed -[2024-03-07T16:10:59.492Z] Cell 0: Cell outputs differ -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Input: -[2024-03-07T16:10:59.492Z] import os -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] os.environ["USE_PYGEOS"] = "0" # force use Shapely with GeoPandas -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] import warnings -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] import numba -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] warnings.simplefilter("ignore", category=numba.core.errors.NumbaDeprecationWarning) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] import geopandas as gpd -[2024-03-07T16:10:59.492Z] import matplotlib.pyplot as plt -[2024-03-07T16:10:59.492Z] import xarray as xr -[2024-03-07T16:10:59.492Z] from clisops.core import subset -[2024-03-07T16:10:59.492Z] from dask.diagnostics import ProgressBar -[2024-03-07T16:10:59.492Z] from siphon.catalog import TDSCatalog -[2024-03-07T16:10:59.492Z] from xclim import atmos -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] warnings.simplefilter("ignore") -[2024-03-07T16:10:59.492Z] # TODO change address -[2024-03-07T16:10:59.492Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] # Create Catalog -[2024-03-07T16:10:59.492Z] cat = TDSCatalog(url) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] # Subset over the Gasp�� peninsula in eastern Quebec -[2024-03-07T16:10:59.492Z] gaspe = gpd.GeoDataFrame.from_file( -[2024-03-07T16:10:59.492Z] "/notebook_dir/pavics-homepage/tutorial_data/gaspesie_mrc.geojson" -[2024-03-07T16:10:59.492Z] ) -[2024-03-07T16:10:59.492Z] ds = subset.subset_shape( -[2024-03-07T16:10:59.492Z] xr.open_dataset(cat.datasets[0].access_urls["OPENDAP"], chunks=dict(time=256)), -[2024-03-07T16:10:59.492Z] shape=gpd.GeoDataFrame(geometry=gaspe.buffer(0.05)), -[2024-03-07T16:10:59.492Z] ) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] # What we see here is only a representation of the full content, the entire data set hasn't been loaded. -[2024-03-07T16:10:59.492Z] display(ds) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] # plot of single day tasmin -[2024-03-07T16:10:59.492Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Traceback: -[2024-03-07T16:10:59.492Z] Missing output fields from running code: {'stderr'} -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ -[2024-03-07T16:10:59.492Z] Notebook cell execution failed -[2024-03-07T16:10:59.492Z] Cell 2: Cell execution caused an exception -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Input: -[2024-03-07T16:10:59.492Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) -[2024-03-07T16:10:59.492Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] chng_f, pos_f = xens.change_significance( -[2024-03-07T16:10:59.492Z] fut.sel(time=fut["time.season"] == "JJA"), -[2024-03-07T16:10:59.492Z] ref.sel(time=ref["time.season"] == "JJA"), -[2024-03-07T16:10:59.492Z] test="ttest", -[2024-03-07T16:10:59.492Z] ) -[2024-03-07T16:10:59.492Z] plt.figure( -[2024-03-07T16:10:59.492Z] figsize=(15, 6), -[2024-03-07T16:10:59.492Z] ) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] plt.subplot(1, 2, 1) -[2024-03-07T16:10:59.492Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] plt.title(chng_f.description.split(".")[0]) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] plt.subplot(1, 2, 2) -[2024-03-07T16:10:59.492Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-03-07T16:10:59.492Z] plt.title(pos_f.description.split(".")[0]) -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] display() -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] Traceback: -[2024-03-07T16:10:59.492Z] -[2024-03-07T16:10:59.492Z] --------------------------------------------------------------------------- -[2024-03-07T16:10:59.492Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:10:59.492Z] Cell In[1], line 20 -[2024-03-07T16:10:59.492Z]  18 plt.subplot(1, 2, 2) -[2024-03-07T16:10:59.492Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-03-07T16:10:59.493Z] ---> 20 plt.title(pos_f.description.split(".")[0]) -[2024-03-07T16:10:59.493Z]  22 display() -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-03-07T16:10:59.493Z]  275 with suppress(KeyError): -[2024-03-07T16:10:59.493Z]  276 return source[name] -[2024-03-07T16:10:59.493Z] --> 277 raise AttributeError( -[2024-03-07T16:10:59.493Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-03-07T16:10:59.493Z]  279 ) -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb::Cell 2 _ -[2024-03-07T16:10:59.493Z] Notebook cell execution failed -[2024-03-07T16:10:59.493Z] Cell 2: Cell outputs differ -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] Input: -[2024-03-07T16:10:59.493Z] import geopandas as gpd -[2024-03-07T16:10:59.493Z] import hvplot.pandas -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] gdf = gpd.GeoDataFrame.from_file( -[2024-03-07T16:10:59.493Z] "/notebook_dir/pavics-homepage/tutorial_data/gaspesie_mrc.geojson" -[2024-03-07T16:10:59.493Z] ) -[2024-03-07T16:10:59.493Z] gdf = gdf.dissolve(by="MUS_NM_MRC") -[2024-03-07T16:10:59.493Z] gdf["region_name"] = gdf.index -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] # TODO replace with clisops average.average_shape() once it can do a 'skipna' -[2024-03-07T16:10:59.493Z] # mask of valid (non-nan) data cells -[2024-03-07T16:10:59.493Z] data_mask = ( -[2024-03-07T16:10:59.493Z] ds_ens.tx_mean.isel(rcp=0, realization=0).mean(dim=["year", "season"]).notnull() -[2024-03-07T16:10:59.493Z] ) -[2024-03-07T16:10:59.493Z] # spatial weights of gridcells interesecting each polygon -[2024-03-07T16:10:59.493Z] weight_masks = subset.create_weight_masks(ds_ens, poly=gdf) -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] def clean_masks(data_mask, masks): -[2024-03-07T16:10:59.493Z] # remove weight values of gridcells that are nan in the actual data. Rescale so total == 1 -[2024-03-07T16:10:59.493Z] return (masks * data_mask) / (masks * data_mask).sum(dim=["lat", "lon"]) -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] weight_masks = clean_masks(data_mask, weight_masks) -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] # Calculate weighted average for each region -[2024-03-07T16:10:59.493Z] with xr.set_options(keep_attrs=True): -[2024-03-07T16:10:59.493Z] reg_ts_sims = (ds_ens * weight_masks).sum(dim=["lat", "lon"]) -[2024-03-07T16:10:59.493Z] reg_ts = xens.ensemble_percentiles(reg_ts_sims) -[2024-03-07T16:10:59.493Z] reg_ts.load() -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] # get only tx_mean percentile variables for this plot -[2024-03-07T16:10:59.493Z] vars1 = [v for v in reg_ts if "tx_mean" in v] -[2024-03-07T16:10:59.493Z] clear_output() -[2024-03-07T16:10:59.493Z] # plot a simple map of the sub-regions -[2024-03-07T16:10:59.493Z] display( -[2024-03-07T16:10:59.493Z] gdf.hvplot( -[2024-03-07T16:10:59.493Z] geo=True, -[2024-03-07T16:10:59.493Z] color="region_name", -[2024-03-07T16:10:59.493Z] tiles="EsriImagery", -[2024-03-07T16:10:59.493Z] legend=False, -[2024-03-07T16:10:59.493Z] frame_width=400, -[2024-03-07T16:10:59.493Z] ) -[2024-03-07T16:10:59.493Z] ) -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] # Interative time-series plot of regional means -[2024-03-07T16:10:59.493Z] reg_ts[vars1].hvplot.line( -[2024-03-07T16:10:59.493Z] x="year", title="time series of regional mean conditions" -[2024-03-07T16:10:59.493Z] ).opts(legend_position="top_left", frame_width=500) -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] Traceback: -[2024-03-07T16:10:59.493Z]  mismatch 'text/plain' -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] assert reference_output == test_output failed: -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] ':Overlay\n ...(region_name)' == ':Overlay\n ...(region_name)' -[2024-03-07T16:10:59.493Z] :Overlay -[2024-03-07T16:10:59.493Z] - .WMTS.I :WMTS [Longitude,Latitude] -[2024-03-07T16:10:59.493Z] + .Tiles.I :Tiles [x,y] -[2024-03-07T16:10:59.493Z] .Polygons.I :Polygons [Longitude,Latitude] (region_name) -[2024-03-07T16:10:59.493Z]  -[2024-03-07T16:10:59.493Z] -[2024-03-07T16:10:59.493Z] ----------------------------- Captured stdout call ----------------------------- -[2024-03-07T16:10:59.493Z] unhandled iopub msg: clear_output -[2024-03-07T16:10:59.493Z] =========================== short test summary info ============================ -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 8 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/forecasts.ipynb::Cell 2 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 4 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 7 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 20 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 27 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 3 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 4 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 5 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 7 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 8 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 9 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 14 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 15 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 16 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 17 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 19 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 20 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 21 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 22 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 23 -[2024-03-07T16:10:59.493Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 24 -[2024-03-07T16:10:59.493Z] FAILED finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 -[2024-03-07T16:10:59.493Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 0 -[2024-03-07T16:10:59.494Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-03-07T16:10:59.494Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb::Cell 2 -[2024-03-07T16:10:59.494Z] ============ 26 failed, 188 passed, 1 skipped in 748.36s (0:12:28) ============= -[2024-03-07T16:10:59.752Z] + EXIT_CODE=1 -[2024-03-07T16:10:59.752Z] + echo true -[2024-03-07T16:10:59.752Z] + tr [:upper:] [:lower:] -[2024-03-07T16:10:59.752Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-07T16:10:59.752Z] + [ xtrue = xtrue ] -[2024-03-07T16:10:59.752Z] + mkdir -p buildout -[2024-03-07T16:10:59.752Z] + basename pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb -[2024-03-07T16:10:59.752Z] + filename=WCS_example.ipynb -[2024-03-07T16:10:59.752Z] + echo WCS_example.ipynb -[2024-03-07T16:10:59.752Z] + sed s/.ipynb$// -[2024-03-07T16:10:59.752Z] + filename=WCS_example -[2024-03-07T16:10:59.752Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-03-07T16:10:59.752Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb -[2024-03-07T16:11:01.661Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-03-07T16:11:11.663Z] [NbConvertApp] Writing 144455 bytes to buildout/WCS_example.output.ipynb -[2024-03-07T16:11:11.663Z] + basename pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb -[2024-03-07T16:11:11.663Z] + filename=WFS_example.ipynb -[2024-03-07T16:11:11.663Z] + echo WFS_example.ipynb -[2024-03-07T16:11:11.663Z] + sed s/.ipynb$// -[2024-03-07T16:11:11.663Z] + filename=WFS_example -[2024-03-07T16:11:11.663Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-03-07T16:11:11.663Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb -[2024-03-07T16:11:12.602Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-03-07T16:11:22.574Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb -[2024-03-07T16:11:22.574Z] + basename pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb -[2024-03-07T16:11:22.574Z] + filename=WMS_example.ipynb -[2024-03-07T16:11:22.574Z] + echo WMS_example.ipynb -[2024-03-07T16:11:22.574Z] + sed s/.ipynb$// -[2024-03-07T16:11:22.574Z] + filename=WMS_example -[2024-03-07T16:11:22.574Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-03-07T16:11:22.574Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb -[2024-03-07T16:11:23.144Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-03-07T16:11:29.800Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb -[2024-03-07T16:11:29.800Z] + basename pavics-sdi-master/docs/source/notebooks/climex.ipynb -[2024-03-07T16:11:29.800Z] + filename=climex.ipynb -[2024-03-07T16:11:29.800Z] + echo climex.ipynb -[2024-03-07T16:11:29.800Z] + sed s/.ipynb$// -[2024-03-07T16:11:29.800Z] + filename=climex -[2024-03-07T16:11:29.800Z] + [ -e buildout/climex.output.ipynb ] -[2024-03-07T16:11:29.800Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb -[2024-03-07T16:11:31.183Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/climex.ipynb to notebook -[2024-03-07T16:14:07.690Z] [NbConvertApp] Writing 1778863 bytes to buildout/climex.output.ipynb -[2024-03-07T16:14:07.690Z] + basename pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-07T16:14:07.690Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-03-07T16:14:07.690Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-03-07T16:14:07.690Z] + sed s/.ipynb$// -[2024-03-07T16:14:07.690Z] + filename=eccc-geoapi-climate-stations -[2024-03-07T16:14:07.690Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-03-07T16:14:07.690Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-07T16:14:07.690Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-03-07T16:14:14.273Z] [NbConvertApp] Writing 280015 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-03-07T16:14:14.273Z] + basename pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-07T16:14:14.273Z] + filename=eccc-geoapi-xclim.ipynb -[2024-03-07T16:14:14.273Z] + + echo eccc-geoapi-xclim.ipynb -[2024-03-07T16:14:14.273Z] sed s/.ipynb$// -[2024-03-07T16:14:14.273Z] + filename=eccc-geoapi-xclim -[2024-03-07T16:14:14.273Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-03-07T16:14:14.273Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-07T16:14:14.847Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-03-07T16:14:24.894Z] [NbConvertApp] Writing 108373 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-03-07T16:14:24.894Z] + basename pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb -[2024-03-07T16:14:24.894Z] + filename=esgf-dap.ipynb -[2024-03-07T16:14:24.894Z] + echo esgf-dap.ipynb -[2024-03-07T16:14:24.894Z] + sed s/.ipynb$// -[2024-03-07T16:14:24.894Z] + filename=esgf-dap -[2024-03-07T16:14:24.894Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-03-07T16:14:24.894Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb -[2024-03-07T16:14:25.837Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-03-07T16:15:22.081Z] [NbConvertApp] Writing 63545 bytes to buildout/esgf-dap.output.ipynb -[2024-03-07T16:15:22.081Z] + basename pavics-sdi-master/docs/source/notebooks/forecasts.ipynb -[2024-03-07T16:15:22.081Z] + filename=forecasts.ipynb -[2024-03-07T16:15:22.081Z] + + sed s/.ipynb$// -[2024-03-07T16:15:22.081Z] echo forecasts.ipynb -[2024-03-07T16:15:22.081Z] + filename=forecasts -[2024-03-07T16:15:22.081Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-03-07T16:15:22.081Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb -[2024-03-07T16:15:22.081Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/forecasts.ipynb to notebook -[2024-03-07T16:15:34.403Z] [NbConvertApp] Writing 179289 bytes to buildout/forecasts.output.ipynb -[2024-03-07T16:15:34.403Z] + basename pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-07T16:15:34.403Z] + filename=jupyter_extensions.ipynb -[2024-03-07T16:15:34.403Z] + + sed s/.ipynb$// -[2024-03-07T16:15:34.403Z] echo jupyter_extensions.ipynb -[2024-03-07T16:15:34.403Z] + filename=jupyter_extensions -[2024-03-07T16:15:34.403Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-03-07T16:15:34.403Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-07T16:15:34.664Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-03-07T16:15:36.579Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb -[2024-03-07T16:15:36.579Z] + basename pavics-sdi-master/docs/source/notebooks/opendap.ipynb -[2024-03-07T16:15:36.579Z] + filename=opendap.ipynb -[2024-03-07T16:15:36.579Z] + echo opendap.ipynb -[2024-03-07T16:15:36.579Z] + sed s/.ipynb$// -[2024-03-07T16:15:36.579Z] + filename=opendap -[2024-03-07T16:15:36.579Z] + [ -e buildout/opendap.output.ipynb ] -[2024-03-07T16:15:36.580Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb -[2024-03-07T16:15:38.493Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/opendap.ipynb to notebook -[2024-03-07T16:15:43.767Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb -[2024-03-07T16:15:43.767Z] + basename pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-07T16:15:43.767Z] + filename=pavics_thredds.ipynb -[2024-03-07T16:15:43.767Z] + echo pavics_thredds.ipynb -[2024-03-07T16:15:43.767Z] + sed s/.ipynb$// -[2024-03-07T16:15:43.767Z] + filename=pavics_thredds -[2024-03-07T16:15:43.767Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-03-07T16:15:43.767Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-07T16:15:45.131Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-03-07T16:15:48.427Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-07T16:15:48.428Z] context: Access to service is forbidden. -[2024-03-07T16:15:48.428Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-07T16:15:48.428Z] context: Access to service is forbidden. -[2024-03-07T16:15:50.345Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb -[2024-03-07T16:15:50.345Z] + basename pavics-sdi-master/docs/source/notebooks/regridding.ipynb -[2024-03-07T16:15:50.345Z] + filename=regridding.ipynb -[2024-03-07T16:15:50.346Z] + + sed s/.ipynb$// -[2024-03-07T16:15:50.346Z] echo regridding.ipynb -[2024-03-07T16:15:50.346Z] + filename=regridding -[2024-03-07T16:15:50.346Z] + [ -e buildout/regridding.output.ipynb ] -[2024-03-07T16:15:50.346Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb -[2024-03-07T16:15:52.241Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/regridding.ipynb to notebook -[2024-03-07T16:17:28.790Z] [NbConvertApp] Writing 1239686 bytes to buildout/regridding.output.ipynb -[2024-03-07T16:17:28.790Z] + basename pavics-sdi-master/docs/source/notebooks/rendering.ipynb -[2024-03-07T16:17:28.790Z] + filename=rendering.ipynb -[2024-03-07T16:17:28.790Z] + sed s/.ipynb$// -[2024-03-07T16:17:28.790Z] + echo rendering.ipynb -[2024-03-07T16:17:28.790Z] + filename=rendering -[2024-03-07T16:17:28.790Z] + [ -e buildout/rendering.output.ipynb ] -[2024-03-07T16:17:28.790Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb -[2024-03-07T16:17:28.790Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/rendering.ipynb to notebook -[2024-03-07T16:17:28.790Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb -[2024-03-07T16:17:28.790Z] + basename pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb -[2024-03-07T16:17:28.790Z] + filename=subset-user-input.ipynb -[2024-03-07T16:17:28.790Z] + echo subset-user-input.ipynb -[2024-03-07T16:17:28.790Z] + sed s/.ipynb$// -[2024-03-07T16:17:28.790Z] + filename=subset-user-input -[2024-03-07T16:17:28.790Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-03-07T16:17:28.791Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb -[2024-03-07T16:17:30.176Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-03-07T16:17:42.393Z] [NbConvertApp] Writing 156075 bytes to buildout/subset-user-input.output.ipynb -[2024-03-07T16:17:42.393Z] + basename pavics-sdi-master/docs/source/notebooks/subsetting.ipynb -[2024-03-07T16:17:42.393Z] + filename=subsetting.ipynb -[2024-03-07T16:17:42.393Z] + + sed s/.ipynb$// -[2024-03-07T16:17:42.393Z] echo subsetting.ipynb -[2024-03-07T16:17:42.393Z] + filename=subsetting -[2024-03-07T16:17:42.393Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-03-07T16:17:42.393Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb -[2024-03-07T16:17:43.325Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/subsetting.ipynb to notebook -[2024-03-07T16:17:53.327Z] [NbConvertApp] Writing 93314 bytes to buildout/subsetting.output.ipynb -[2024-03-07T16:17:53.595Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-07T16:17:53.595Z] + filename=dap_subset.ipynb -[2024-03-07T16:17:53.595Z] + + sed s/.ipynb$// -[2024-03-07T16:17:53.595Z] echo dap_subset.ipynb -[2024-03-07T16:17:53.595Z] + filename=dap_subset -[2024-03-07T16:17:53.595Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-03-07T16:17:53.595Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-07T16:17:54.983Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-03-07T16:18:04.982Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb -[2024-03-07T16:18:04.982Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-07T16:18:04.982Z] + filename=finch-usage.ipynb -[2024-03-07T16:18:04.982Z] + echo finch-usage.ipynb -[2024-03-07T16:18:04.982Z] + sed s/.ipynb$// -[2024-03-07T16:18:04.982Z] + filename=finch-usage -[2024-03-07T16:18:04.982Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-03-07T16:18:04.982Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-07T16:18:06.397Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-03-07T16:18:16.373Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb -[2024-03-07T16:18:16.373Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-07T16:18:16.373Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-07T16:18:16.373Z] + sed s/.ipynb$// -[2024-03-07T16:18:16.373Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-07T16:18:16.373Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-03-07T16:18:16.373Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-03-07T16:18:16.374Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-07T16:18:17.308Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-03-07T16:18:22.578Z] [NbConvertApp] Writing 173043 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-03-07T16:18:22.578Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-07T16:18:22.578Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-07T16:18:22.578Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-07T16:18:22.578Z] + sed s/.ipynb$// -[2024-03-07T16:18:22.578Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-03-07T16:18:22.578Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-03-07T16:18:22.579Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-07T16:18:23.952Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-03-07T16:18:42.036Z] [NbConvertApp] Writing 1481206 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-03-07T16:18:42.295Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-07T16:18:42.295Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-07T16:18:42.295Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-07T16:18:42.295Z] + sed s/.ipynb$// -[2024-03-07T16:18:42.295Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-03-07T16:18:42.295Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-03-07T16:18:42.295Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-07T16:18:43.702Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-03-07T16:23:20.481Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). -[2024-03-07T16:23:20.481Z] Exception ignored in: > -[2024-03-07T16:23:20.481Z] Traceback (most recent call last): -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_perf.py", line 176, in _gc_callback -[2024-03-07T16:23:20.481Z] def _gc_callback(self, phase, info): -[2024-03-07T16:23:20.481Z] KeyboardInterrupt: -[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,471 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,471 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,471 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,471 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,472 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-07T16:23:20.481Z] 2024-03-07 16:23:11,472 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-07T16:23:20.481Z] Traceback (most recent call last): -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply -[2024-03-07T16:23:20.481Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 189, in ensure_async -[2024-03-07T16:23:20.481Z] result = await obj -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg -[2024-03-07T16:23:20.481Z] raise Empty -[2024-03-07T16:23:20.481Z] _queue.Empty -[2024-03-07T16:23:20.481Z] -[2024-03-07T16:23:20.481Z] During handling of the above exception, another exception occurred: -[2024-03-07T16:23:20.481Z] -[2024-03-07T16:23:20.481Z] Traceback (most recent call last): -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-03-07T16:23:20.481Z] sys.exit(main()) -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 280, in launch_instance -[2024-03-07T16:23:20.481Z] super().launch_instance(argv=argv, **kwargs) -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1053, in launch_instance -[2024-03-07T16:23:20.481Z] app.start() -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 412, in start -[2024-03-07T16:23:20.481Z] self.convert_notebooks() -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 590, in convert_notebooks -[2024-03-07T16:23:20.481Z] self.convert_single_notebook(notebook_filename) -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 556, in convert_single_notebook -[2024-03-07T16:23:20.481Z] output, resources = self.export_single_notebook( -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 479, in export_single_notebook -[2024-03-07T16:23:20.481Z] output, resources = self.exporter.from_filename( -[2024-03-07T16:23:20.481Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-03-07T16:23:20.482Z] return self.from_file(f, resources=resources, **kw) -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-03-07T16:23:20.482Z] return self.from_notebook_node( -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-03-07T16:23:20.482Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-03-07T16:23:20.482Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 352, in _preprocess -[2024-03-07T16:23:20.482Z] nbc, resc = preprocessor(nbc, resc) -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-03-07T16:23:20.482Z] return self.preprocess(nb, resources) -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess -[2024-03-07T16:23:20.482Z] self.preprocess_cell(cell, resources, index) -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell -[2024-03-07T16:23:20.482Z] cell = self.execute_cell(cell, index, store_history=True) -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 173, in wrapped -[2024-03-07T16:23:20.482Z] return loop.run_until_complete(inner) -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-03-07T16:23:20.482Z] return future.result() -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell -[2024-03-07T16:23:20.482Z] exec_reply = await self.task_poll_for_reply -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply -[2024-03-07T16:23:20.482Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) -[2024-03-07T16:23:20.482Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout -[2024-03-07T16:23:20.482Z] raise CellTimeoutError.error_from_timeout_and_cell( -[2024-03-07T16:23:20.482Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. -[2024-03-07T16:23:20.482Z] The message was: Cell execution timed out. -[2024-03-07T16:23:20.482Z] Here is a preview of the cell contents: -[2024-03-07T16:23:20.482Z] ------------------- -[2024-03-07T16:23:20.482Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] -[2024-03-07T16:23:20.482Z] ... -[2024-03-07T16:23:20.482Z] [' print("computing with dask client ...")', ' compute(jobs)', ' print("finished")', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()'] -[2024-03-07T16:23:20.482Z] ------------------- -[2024-03-07T16:23:20.482Z] -[2024-03-07T16:23:20.482Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-07T16:23:20.482Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-07T16:23:20.482Z] + + sed s/.ipynb$// -[2024-03-07T16:23:20.482Z] echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-07T16:23:20.482Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-03-07T16:23:20.482Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-03-07T16:23:20.482Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-07T16:23:20.482Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-03-07T16:23:38.689Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-03-07T16:23:38.689Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-07T16:23:38.689Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-07T16:23:38.689Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-07T16:23:38.689Z] + sed s/.ipynb$// -[2024-03-07T16:23:38.689Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-03-07T16:23:38.689Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-03-07T16:23:38.689Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-07T16:23:38.689Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-03-07T16:24:17.438Z] [NbConvertApp] Writing 1093308 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-03-07T16:24:17.438Z] + basename notebooks/hummingbird.ipynb -[2024-03-07T16:24:17.438Z] + filename=hummingbird.ipynb -[2024-03-07T16:24:17.438Z] + echo hummingbird.ipynb -[2024-03-07T16:24:17.438Z] + sed s/.ipynb$// -[2024-03-07T16:24:17.439Z] + filename=hummingbird -[2024-03-07T16:24:17.439Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-03-07T16:24:17.439Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-03-07T16:24:18.382Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-03-07T16:24:23.633Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb -[2024-03-07T16:24:23.633Z] + basename notebooks/stress-tests.ipynb -[2024-03-07T16:24:23.633Z] + filename=stress-tests.ipynb -[2024-03-07T16:24:23.633Z] + echo stress-tests.ipynb -[2024-03-07T16:24:23.633Z] + sed s/.ipynb$// -[2024-03-07T16:24:23.633Z] + filename=stress-tests -[2024-03-07T16:24:23.633Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-03-07T16:24:23.633Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-03-07T16:24:25.008Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-03-07T16:26:31.458Z] [NbConvertApp] Writing 442955 bytes to buildout/stress-tests.output.ipynb -[2024-03-07T16:26:31.458Z] + exit 1 -[2024-03-07T16:26:31.458Z] + EXIT_CODE=1 -[2024-03-07T16:26:31.458Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-07T16:26:31.458Z] + mkdir -p buildout/env-dump -[2024-03-07T16:26:31.458Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-07T16:26:31.458Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-07T16:26:31.458Z] + conda env export -n birdy -[2024-03-07T16:26:49.586Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-07T16:26:49.586Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-07T16:26:49.586Z] + conda list -n birdy --explicit -[2024-03-07T16:26:56.171Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-07T16:26:56.171Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-07T16:26:56.171Z] + pip freeze -[2024-03-07T16:27:04.285Z] + exit 1 +[2024-03-07T02:06:54.535Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-07T02:06:54.535Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-07T02:06:54.535Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-07T02:06:54.535Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-07T02:06:54.535Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-07T02:06:54.535Z] FINCH_BRANCH has been set to 'master' +[2024-03-07T02:06:54.535Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-07T02:06:54.535Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-07T02:06:54.535Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-07T02:06:54.535Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-07T02:06:54.535Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-07T02:06:54.535Z] RAVEN_BRANCH has been set to 'main' +[2024-03-07T02:06:54.535Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-07T02:06:54.535Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-07T02:06:54.535Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-07T02:06:54.535Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-07T02:06:54.535Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-07T02:06:54.535Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-07T02:06:54.535Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-07T02:06:54.535Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-07T02:06:54.535Z] + git clean -fdx +[2024-03-07T02:06:54.535Z] + ./downloadrepos +[2024-03-07T02:06:54.535Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-07T02:06:54.535Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-07T02:06:54.535Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-07T02:06:54.535Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-07T02:06:54.535Z] FINCH_BRANCH has been set to 'master' +[2024-03-07T02:06:54.535Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-07T02:06:54.535Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-07T02:06:54.535Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-07T02:06:54.535Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-07T02:06:54.535Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-07T02:06:54.535Z] RAVEN_BRANCH has been set to 'main' +[2024-03-07T02:06:54.535Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-07T02:06:54.535Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-07T02:06:54.535Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-07T02:06:54.535Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-07T02:06:54.535Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-07T02:06:54.535Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-07T02:06:54.535Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-07T02:06:54.535Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-07T02:06:54.535Z] + rm -rf pavics-sdi-* +[2024-03-07T02:06:54.535Z] + ls +[2024-03-07T02:06:54.535Z] + grep pavics-sdi +[2024-03-07T02:06:54.535Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-03-07T02:06:54.535Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-07T02:06:54.535Z] + shift +[2024-03-07T02:06:54.535Z] + branch=master +[2024-03-07T02:06:54.535Z] + shift +[2024-03-07T02:06:54.535Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-03-07T02:06:54.535Z] + tar xz +[2024-03-07T02:08:02.171Z] + grep pavics-sdi +[2024-03-07T02:08:02.171Z] + ls +[2024-03-07T02:08:02.171Z] pavics-sdi-master +[2024-03-07T02:08:02.171Z] + set +x +[2024-03-07T02:08:02.171Z] + rm -rf finch-* +[2024-03-07T02:08:02.171Z] + grep finch +[2024-03-07T02:08:02.171Z] + ls +[2024-03-07T02:08:02.171Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-07T02:08:02.171Z] + github_repo=https://github.com/bird-house/finch +[2024-03-07T02:08:02.171Z] + shift +[2024-03-07T02:08:02.171Z] + branch=master +[2024-03-07T02:08:02.171Z] + shift +[2024-03-07T02:08:02.171Z] + tar xz +[2024-03-07T02:08:02.171Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-03-07T02:08:07.443Z] + ls +[2024-03-07T02:08:07.443Z] + grep finch +[2024-03-07T02:08:07.443Z] finch-master +[2024-03-07T02:08:07.443Z] + set +x +[2024-03-07T02:08:07.443Z] + rm -rf PAVICS-landing-* +[2024-03-07T02:08:07.443Z] + ls +[2024-03-07T02:08:07.443Z] + grep PAVICS-landing +[2024-03-07T02:08:07.443Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-03-07T02:08:07.443Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-07T02:08:07.443Z] + shift +[2024-03-07T02:08:07.443Z] + branch=master +[2024-03-07T02:08:07.443Z] + shift +[2024-03-07T02:08:07.443Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-03-07T02:08:07.443Z] + tar xz +[2024-03-07T02:12:14.031Z] + ls +[2024-03-07T02:12:14.031Z] + grep PAVICS-landing +[2024-03-07T02:12:14.031Z] PAVICS-landing-master +[2024-03-07T02:12:14.031Z] + set +x +[2024-03-07T02:12:14.031Z] + rm -rf raven-* +[2024-03-07T02:12:14.031Z] + ls +[2024-03-07T02:12:14.031Z] + grep raven +[2024-03-07T02:12:14.031Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-07T02:12:14.031Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-07T02:12:14.031Z] + shift +[2024-03-07T02:12:14.031Z] + branch=main +[2024-03-07T02:12:14.031Z] + shift +[2024-03-07T02:12:14.031Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-07T02:12:14.031Z] + tar xz +[2024-03-07T02:12:18.212Z] + ls +[2024-03-07T02:12:18.212Z] + grep raven +[2024-03-07T02:12:18.212Z] raven-main +[2024-03-07T02:12:18.212Z] + set +x +[2024-03-07T02:12:18.212Z] + rm -rf RavenPy-* +[2024-03-07T02:12:18.212Z] + ls +[2024-03-07T02:12:18.212Z] + grep RavenPy +[2024-03-07T02:12:18.212Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-07T02:12:18.212Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-07T02:12:18.212Z] + shift +[2024-03-07T02:12:18.212Z] + branch=master +[2024-03-07T02:12:18.212Z] + shift +[2024-03-07T02:12:18.212Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-07T02:12:18.212Z] + tar xz +[2024-03-07T02:12:40.118Z] + ls +[2024-03-07T02:12:40.118Z] + grep RavenPy +[2024-03-07T02:12:40.118Z] RavenPy-master +[2024-03-07T02:12:40.118Z] + set +x +[2024-03-07T02:12:40.118Z] + rm -rf esgf-compute-api-* +[2024-03-07T02:12:40.118Z] + ls +[2024-03-07T02:12:40.118Z] + grep esgf-compute-api +[2024-03-07T02:12:40.118Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-07T02:12:40.118Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-07T02:12:40.118Z] + shift +[2024-03-07T02:12:40.118Z] + branch=devel +[2024-03-07T02:12:40.118Z] + shift +[2024-03-07T02:12:40.118Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-03-07T02:12:40.118Z] + tar xz +[2024-03-07T02:12:40.684Z] + ls +[2024-03-07T02:12:40.684Z] + grep esgf-compute-api +[2024-03-07T02:12:40.684Z] esgf-compute-api-devel +[2024-03-07T02:12:40.684Z] + set +x +[2024-03-07T02:12:40.684Z] + echo master +[2024-03-07T02:12:40.684Z] + sed s@/@-@g +[2024-03-07T02:12:40.684Z] + PAVICS_SDI_BRANCH=master +[2024-03-07T02:12:40.684Z] + echo Ouranosinc/pavics-sdi +[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g +[2024-03-07T02:12:40.684Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-07T02:12:40.684Z] + echo master +[2024-03-07T02:12:40.684Z] + sed s@/@-@g +[2024-03-07T02:12:40.684Z] + FINCH_BRANCH=master +[2024-03-07T02:12:40.684Z] + echo bird-house/finch +[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g +[2024-03-07T02:12:40.684Z] + FINCH_REPO_NAME=finch +[2024-03-07T02:12:40.684Z] + echo master +[2024-03-07T02:12:40.684Z] + sed s@/@-@g +[2024-03-07T02:12:40.684Z] + PAVICS_LANDING_BRANCH=master +[2024-03-07T02:12:40.684Z] + echo Ouranosinc/PAVICS-landing +[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g +[2024-03-07T02:12:40.684Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-07T02:12:40.684Z] + echo main +[2024-03-07T02:12:40.684Z] + sed s@/@-@g +[2024-03-07T02:12:40.684Z] + RAVEN_BRANCH=main +[2024-03-07T02:12:40.684Z] + echo Ouranosinc/raven +[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g +[2024-03-07T02:12:40.684Z] + RAVEN_REPO_NAME=raven +[2024-03-07T02:12:40.684Z] + echo master +[2024-03-07T02:12:40.684Z] + sed s@/@-@g +[2024-03-07T02:12:40.684Z] + RAVENPY_BRANCH=master +[2024-03-07T02:12:40.684Z] + echo CSHS-CWRA/RavenPy +[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g +[2024-03-07T02:12:40.684Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-07T02:12:40.684Z] + echo devel +[2024-03-07T02:12:40.684Z] + sed s@/@-@g +[2024-03-07T02:12:40.684Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-07T02:12:40.684Z] + echo ESGF/esgf-compute-api +[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g +[2024-03-07T02:12:40.684Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-07T02:12:40.684Z] + echo pavics-sdi-master +[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T02:12:40.684Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-03-07T02:12:40.684Z] + echo finch-master +[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T02:12:40.684Z] + FINCH_DIR=finch-master +[2024-03-07T02:12:40.684Z] + + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T02:12:40.684Z] echo PAVICS-landing-master +[2024-03-07T02:12:40.684Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-03-07T02:12:40.684Z] + echo raven-main +[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T02:12:40.684Z] + RAVEN_DIR=raven-main +[2024-03-07T02:12:40.684Z] + echo RavenPy-master +[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T02:12:40.684Z] + RAVENPY_DIR=RavenPy-master +[2024-03-07T02:12:40.684Z] + echo esgf-compute-api-devel +[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T02:12:40.684Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-07T02:12:40.684Z] + echo true +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + VERIFY_SSL=true +[2024-03-07T02:12:40.684Z] + [ xtrue = xfalse ] +[2024-03-07T02:12:40.684Z] + rm -v finch-master/setup.cfg +[2024-03-07T02:12:40.684Z] removed 'finch-master/setup.cfg' +[2024-03-07T02:12:40.684Z] + rm -v raven-main/setup.cfg +[2024-03-07T02:12:40.684Z] removed 'raven-main/setup.cfg' +[2024-03-07T02:12:40.684Z] + rm -v raven-main/pyproject.toml +[2024-03-07T02:12:40.684Z] removed 'raven-main/pyproject.toml' +[2024-03-07T02:12:40.684Z] + rm -v RavenPy-master/setup.cfg +[2024-03-07T02:12:40.684Z] removed 'RavenPy-master/setup.cfg' +[2024-03-07T02:12:40.684Z] + rm -v RavenPy-master/tox.ini +[2024-03-07T02:12:40.684Z] removed 'RavenPy-master/tox.ini' +[2024-03-07T02:12:40.684Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-07T02:12:40.684Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-07T02:12:40.684Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-07T02:12:40.684Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-07T02:12:40.684Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-07T02:12:40.684Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-07T02:12:40.684Z] + echo false +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + TEST_MAGPIE_AUTH=false +[2024-03-07T02:12:40.684Z] + echo true +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + TEST_PAVICS_SDI_REPO=true +[2024-03-07T02:12:40.684Z] + echo false +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-07T02:12:40.684Z] + echo true +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + TEST_FINCH_REPO=true +[2024-03-07T02:12:40.684Z] + echo true +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + TEST_PAVICS_LANDING_REPO=true +[2024-03-07T02:12:40.684Z] + echo false +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + TEST_RAVEN_REPO=false +[2024-03-07T02:12:40.684Z] + echo false +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + TEST_RAVENPY_REPO=false +[2024-03-07T02:12:40.684Z] + echo false +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-07T02:12:40.684Z] + echo true +[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] +[2024-03-07T02:12:40.684Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-03-07T02:12:40.684Z] + NOTEBOOKS_TO_TEST= +[2024-03-07T02:12:40.684Z] + [ xfalse = xtrue ] +[2024-03-07T02:12:40.684Z] + [ xtrue = xtrue ] +[2024-03-07T02:12:40.684Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb +[2024-03-07T02:12:40.684Z] + [ xfalse = xtrue ] +[2024-03-07T02:12:40.684Z] + [ xtrue = xtrue ] +[2024-03-07T02:12:40.684Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-03-07T02:12:40.684Z] + [ xtrue = xtrue ] +[2024-03-07T02:12:40.684Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb +[2024-03-07T02:12:40.684Z] + SETUP_SCRIPT=PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T02:12:40.684Z] + [ -x PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-03-07T02:12:40.684Z] + PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T02:12:40.684Z] + realpath PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T02:12:40.684Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T02:12:40.684Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-07T02:12:40.684Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators +[2024-03-07T02:12:40.684Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-07T02:12:40.684Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-07T02:12:40.684Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-03-07T02:12:40.684Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/output.zip +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-07T02:12:41.729Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-03-07T02:12:41.729Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-03-07T02:12:41.729Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-03-07T02:12:41.729Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/tutorial_data' +[2024-03-07T02:12:41.729Z] + [ xfalse = xtrue ] +[2024-03-07T02:12:41.729Z] + [ xfalse = xtrue ] +[2024-03-07T02:12:41.729Z] + [ xfalse = xtrue ] +[2024-03-07T02:12:41.729Z] + [ xtrue = xtrue ] +[2024-03-07T02:12:41.729Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-07T02:12:41.729Z] + ./runtest pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-07T02:12:41.729Z] + [ -n ] +[2024-03-07T02:12:41.729Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-07T02:12:41.729Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-07T02:12:41.729Z] Will run notebooks against pavics.ouranos.ca +[2024-03-07T02:12:41.729Z] + [ -z ] +[2024-03-07T02:12:41.730Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-03-07T02:12:41.987Z] + git diff +[2024-03-07T02:12:41.987Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-07T02:12:41.988Z] + py.test --nbval pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-03-07T02:12:44.515Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-07T02:12:44.515Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-07T02:12:44.776Z] ============================= test session starts ============================== +[2024-03-07T02:12:44.776Z] platform linux -- Python 3.10.13, pytest-8.0.2, pluggy-1.4.0 +[2024-03-07T02:12:44.776Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-03-07T02:12:44.776Z] plugins: anyio-4.3.0, dash-2.16.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-03-07T02:12:44.776Z] collected 215 items +[2024-03-07T02:12:44.776Z] +[2024-03-07T02:13:17.643Z] pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb ....... [ 3%] +[2024-03-07T02:13:25.935Z] pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb ...... [ 6%] +[2024-03-07T02:13:28.519Z] pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb .FFFFFFF [ 9%] +[2024-03-07T02:20:31.216Z] pavics-sdi-master/docs/source/notebooks/climex.ipynb .....F..F... [ 15%] +[2024-03-07T02:20:35.415Z] pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 15%] +[2024-03-07T02:20:48.091Z] ............... [ 22%] +[2024-03-07T02:20:56.475Z] pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb ..... [ 25%] +[2024-03-07T02:21:08.666Z] pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb ...... [ 27%] +[2024-03-07T02:21:23.536Z] pavics-sdi-master/docs/source/notebooks/forecasts.ipynb ..F... [ 30%] +[2024-03-07T02:22:51.339Z] pavics-sdi-master/docs/source/notebooks/opendap.ipynb ....... [ 33%] +[2024-03-07T02:22:55.827Z] pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb ..... [ 36%] +[2024-03-07T02:23:35.908Z] pavics-sdi-master/docs/source/notebooks/regridding.ipynb ....F..F....... [ 43%] +[2024-03-07T02:24:43.647Z] .....F......F [ 49%] +[2024-03-07T02:24:45.826Z] pavics-sdi-master/docs/source/notebooks/rendering.ipynb .... [ 51%] +[2024-03-07T02:24:48.245Z] pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb ...FFF.F [ 54%] +[2024-03-07T02:24:56.368Z] FF....FFFF.FFFFFF [ 62%] +[2024-03-07T02:25:04.868Z] pavics-sdi-master/docs/source/notebooks/subsetting.ipynb ...... [ 65%] +[2024-03-07T02:25:15.054Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 70%] +[2024-03-07T02:25:24.400Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...F.. [ 73%] +[2024-03-07T02:25:25.385Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 73%] +[2024-03-07T02:25:29.486Z] ...... [ 76%] +[2024-03-07T02:25:51.430Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 77%] +[2024-03-07T02:26:12.152Z] ............. [ 83%] +[2024-03-07T02:26:22.138Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb F [ 83%] +[2024-03-07T02:27:24.396Z] .F..s. [ 86%] +[2024-03-07T02:27:30.965Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 86%] +[2024-03-07T02:27:41.766Z] .F. [ 88%] +[2024-03-07T02:27:51.758Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 88%] +[2024-03-07T02:28:17.247Z] .F.... [ 91%] +[2024-03-07T02:28:20.165Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-03-07T02:30:53.825Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-03-07T02:30:53.825Z] +[2024-03-07T02:30:53.825Z] =================================== FAILURES =================================== +[2024-03-07T02:30:53.825Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 1 _______ +[2024-03-07T02:30:53.825Z] Notebook cell execution failed +[2024-03-07T02:30:53.825Z] Cell 1: Cell execution caused an exception +[2024-03-07T02:30:53.825Z] +[2024-03-07T02:30:53.825Z] Input: +[2024-03-07T02:30:53.825Z] wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") +[2024-03-07T02:30:53.825Z] print("Title: ", wms.identification.title) +[2024-03-07T02:30:53.825Z] print("Type: ", wms.identification.type) +[2024-03-07T02:30:53.825Z] print("Operations: ", [op.name for op in wms.operations]) +[2024-03-07T02:30:53.825Z] print("GetMap options: ", wms.getOperationByName("GetMap").formatOptions) +[2024-03-07T02:30:53.825Z] wms.contents.keys() +[2024-03-07T02:30:53.825Z] +[2024-03-07T02:30:53.825Z] Traceback: +[2024-03-07T02:30:53.825Z] +[2024-03-07T02:30:53.825Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.825Z] HTTPError Traceback (most recent call last) +[2024-03-07T02:30:53.825Z] Cell In[1], line 1 +[2024-03-07T02:30:53.825Z] ----> 1 wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") +[2024-03-07T02:30:53.825Z]  2 print("Title: ", wms.identification.title) +[2024-03-07T02:30:53.825Z]  3 print("Type: ", wms.identification.type) +[2024-03-07T02:30:53.825Z] +[2024-03-07T02:30:53.825Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/wms.py:50, in WebMapService(url, version, xml, username, password, parse_remote_metadata, timeout, headers, auth) +[2024-03-07T02:30:53.825Z]  47 clean_url = clean_ows_url(url) +[2024-03-07T02:30:53.825Z]  49 if version in ['1.1.1']: +[2024-03-07T02:30:53.825Z] ---> 50 return wms111.WebMapService_1_1_1( +[2024-03-07T02:30:53.826Z]  51  clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, +[2024-03-07T02:30:53.826Z]  52  timeout=timeout, headers=headers, auth=auth) +[2024-03-07T02:30:53.826Z]  53 elif version in ['1.3.0']: +[2024-03-07T02:30:53.826Z]  54 return wms130.WebMapService_1_3_0( +[2024-03-07T02:30:53.826Z]  55 clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, +[2024-03-07T02:30:53.826Z]  56 timeout=timeout, headers=headers, auth=auth) +[2024-03-07T02:30:53.826Z] +[2024-03-07T02:30:53.826Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/wms111.py:75, in WebMapService_1_1_1.__init__(self, url, version, xml, username, password, parse_remote_metadata, headers, timeout, auth) +[2024-03-07T02:30:53.826Z]  73 self._capabilities = reader.readString(xml) +[2024-03-07T02:30:53.826Z]  74 else: # read from server +[2024-03-07T02:30:53.826Z] ---> 75 self._capabilities = reader.read(self.url, timeout=self.timeout) +[2024-03-07T02:30:53.826Z]  77 self.request = reader.request +[2024-03-07T02:30:53.826Z]  79 # avoid building capabilities metadata if the +[2024-03-07T02:30:53.826Z]  80 # response is a ServiceExceptionReport +[2024-03-07T02:30:53.826Z] +[2024-03-07T02:30:53.826Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/common.py:65, in WMSCapabilitiesReader.read(self, service_url, timeout) +[2024-03-07T02:30:53.826Z]  63 # now split it up again to use the generic openURL function... +[2024-03-07T02:30:53.826Z]  64 spliturl = self.request.split('?') +[2024-03-07T02:30:53.826Z] ---> 65 u = openURL(spliturl[0], spliturl[1], method='Get', +[2024-03-07T02:30:53.826Z]  66  timeout=timeout, headers=self.headers, auth=self.auth) +[2024-03-07T02:30:53.826Z]  68 raw_text = strip_bom(u.read()) +[2024-03-07T02:30:53.826Z]  69 return etree.fromstring(raw_text) +[2024-03-07T02:30:53.826Z] +[2024-03-07T02:30:53.826Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/util.py:214, in openURL(url_base, data, method, cookies, username, password, timeout, headers, verify, cert, auth) +[2024-03-07T02:30:53.826Z]  211 raise ServiceException(req.text) +[2024-03-07T02:30:53.826Z]  213 if req.status_code in [404, 500, 502, 503, 504]: # add more if needed +[2024-03-07T02:30:53.826Z] --> 214 req.raise_for_status() +[2024-03-07T02:30:53.826Z]  216 # check for service exceptions without the http header set +[2024-03-07T02:30:53.826Z]  217 if 'Content-Type' in req.headers and \ +[2024-03-07T02:30:53.826Z]  218 req.headers['Content-Type'] in ['text/xml', 'application/xml', 'application/vnd.ogc.se_xml']: +[2024-03-07T02:30:53.826Z]  219 # just in case 400 headers were not set, going to have to read the xml to see if it's an exception report. +[2024-03-07T02:30:53.826Z] +[2024-03-07T02:30:53.826Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/models.py:1021, in Response.raise_for_status(self) +[2024-03-07T02:30:53.826Z]  1016 http_error_msg = ( +[2024-03-07T02:30:53.826Z]  1017 f"{self.status_code} Server Error: {reason} for url: {self.url}" +[2024-03-07T02:30:53.826Z]  1018 ) +[2024-03-07T02:30:53.826Z]  1020 if http_error_msg: +[2024-03-07T02:30:53.826Z] -> 1021 raise HTTPError(http_error_msg, response=self) +[2024-03-07T02:30:53.826Z] +[2024-03-07T02:30:53.826Z] HTTPError: 500 Server Error: Internal Server Error for url: https://neo.gsfc.nasa.gov/wms/wms?service=WMS&request=GetCapabilities&version=1.1.1 +[2024-03-07T02:30:53.826Z] +[2024-03-07T02:30:53.826Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 2 _______ +[2024-03-07T02:30:53.826Z] Notebook cell execution failed +[2024-03-07T02:30:53.826Z] Cell 2: Cell execution caused an exception +[2024-03-07T02:30:53.826Z] +[2024-03-07T02:30:53.826Z] Input: +[2024-03-07T02:30:53.826Z] for key in [ +[2024-03-07T02:30:53.826Z] "MOD14A1_M_FIRE", +[2024-03-07T02:30:53.826Z] "CERES_LWFLUX_M", +[2024-03-07T02:30:53.826Z] "ICESAT_ELEV_G", +[2024-03-07T02:30:53.826Z] "MODAL2_M_CLD_WP", +[2024-03-07T02:30:53.826Z] "MOD_143D_RR", +[2024-03-07T02:30:53.826Z] ]: +[2024-03-07T02:30:53.826Z] print(wms.contents[key].title) +[2024-03-07T02:30:53.826Z] +[2024-03-07T02:30:53.826Z] Traceback: +[2024-03-07T02:30:53.826Z] +[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.827Z] Cell In[1], line 8 +[2024-03-07T02:30:53.827Z]  1 for key in [ +[2024-03-07T02:30:53.827Z]  2 "MOD14A1_M_FIRE", +[2024-03-07T02:30:53.827Z]  3 "CERES_LWFLUX_M", +[2024-03-07T02:30:53.827Z]  (...) +[2024-03-07T02:30:53.827Z]  6 "MOD_143D_RR", +[2024-03-07T02:30:53.827Z]  7 ]: +[2024-03-07T02:30:53.827Z] ----> 8 print(wms.contents[key].title) +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] NameError: name 'wms' is not defined +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 3 _______ +[2024-03-07T02:30:53.827Z] Notebook cell execution failed +[2024-03-07T02:30:53.827Z] Cell 3: Cell execution caused an exception +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] Input: +[2024-03-07T02:30:53.827Z] # NBVAL_IGNORE_OUTPUT +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] from IPython.core.display import HTML +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] name = "MOD_143D_RR" +[2024-03-07T02:30:53.827Z] layer = wms.contents[name] +[2024-03-07T02:30:53.827Z] print("Abstract: ", layer.abstract) +[2024-03-07T02:30:53.827Z] print("BBox: ", layer.boundingBoxWGS84) +[2024-03-07T02:30:53.827Z] print("CRS: ", layer.crsOptions) +[2024-03-07T02:30:53.827Z] print("Styles: ", layer.styles) +[2024-03-07T02:30:53.827Z] print("Timestamps: ", layer.timepositions) +[2024-03-07T02:30:53.827Z] HTML(layer.parent.abstract) +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] Traceback: +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.827Z] Cell In[1], line 6 +[2024-03-07T02:30:53.827Z]  3 from IPython.core.display import HTML +[2024-03-07T02:30:53.827Z]  5 name = "MOD_143D_RR" +[2024-03-07T02:30:53.827Z] ----> 6 layer = wms.contents[name] +[2024-03-07T02:30:53.827Z]  7 print("Abstract: ", layer.abstract) +[2024-03-07T02:30:53.827Z]  8 print("BBox: ", layer.boundingBoxWGS84) +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] NameError: name 'wms' is not defined +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 4 _______ +[2024-03-07T02:30:53.827Z] Notebook cell execution failed +[2024-03-07T02:30:53.827Z] Cell 4: Cell execution caused an exception +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] Input: +[2024-03-07T02:30:53.827Z] response = wms.getmap( +[2024-03-07T02:30:53.827Z] layers=[ +[2024-03-07T02:30:53.827Z] name, +[2024-03-07T02:30:53.827Z] ], +[2024-03-07T02:30:53.827Z] styles=["rgb"], +[2024-03-07T02:30:53.827Z] bbox=(-180, -90, 180, 90), # Left, bottom, right, top +[2024-03-07T02:30:53.827Z] format="image/png", +[2024-03-07T02:30:53.827Z] size=(600, 600), +[2024-03-07T02:30:53.827Z] srs="EPSG:4326", +[2024-03-07T02:30:53.827Z] time="2018-09-16", +[2024-03-07T02:30:53.827Z] transparent=True, +[2024-03-07T02:30:53.827Z] ) +[2024-03-07T02:30:53.827Z] response +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] Traceback: +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.827Z] Cell In[1], line 1 +[2024-03-07T02:30:53.827Z] ----> 1 response = wms.getmap( +[2024-03-07T02:30:53.827Z]  2 layers=[ +[2024-03-07T02:30:53.827Z]  3 name, +[2024-03-07T02:30:53.827Z]  4 ], +[2024-03-07T02:30:53.827Z]  5 styles=["rgb"], +[2024-03-07T02:30:53.827Z]  6 bbox=(-180, -90, 180, 90), # Left, bottom, right, top +[2024-03-07T02:30:53.827Z]  7 format="image/png", +[2024-03-07T02:30:53.827Z]  8 size=(600, 600), +[2024-03-07T02:30:53.827Z]  9 srs="EPSG:4326", +[2024-03-07T02:30:53.827Z]  10 time="2018-09-16", +[2024-03-07T02:30:53.827Z]  11 transparent=True, +[2024-03-07T02:30:53.827Z]  12 ) +[2024-03-07T02:30:53.827Z]  13 response +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] NameError: name 'wms' is not defined +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 5 _______ +[2024-03-07T02:30:53.827Z] Notebook cell execution failed +[2024-03-07T02:30:53.827Z] Cell 5: Cell execution caused an exception +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] Input: +[2024-03-07T02:30:53.827Z] from IPython.display import Image +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] Image(response.read()) +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] Traceback: +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.827Z] Cell In[1], line 3 +[2024-03-07T02:30:53.827Z]  1 from IPython.display import Image +[2024-03-07T02:30:53.827Z] ----> 3 Image(response.read()) +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] NameError: name 'response' is not defined +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 6 _______ +[2024-03-07T02:30:53.827Z] Notebook cell execution failed +[2024-03-07T02:30:53.827Z] Cell 6: Cell execution caused an exception +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] Input: +[2024-03-07T02:30:53.827Z] import io +[2024-03-07T02:30:53.827Z] import warnings +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] import cartopy +[2024-03-07T02:30:53.827Z] import matplotlib.pyplot as plt +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] image = io.BytesIO(response.read()) +[2024-03-07T02:30:53.827Z] data = plt.imread(image) +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] Traceback: +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.827Z] Cell In[1], line 7 +[2024-03-07T02:30:53.827Z]  4 import cartopy +[2024-03-07T02:30:53.827Z]  5 import matplotlib.pyplot as plt +[2024-03-07T02:30:53.827Z] ----> 7 image = io.BytesIO(response.read()) +[2024-03-07T02:30:53.827Z]  8 data = plt.imread(image) +[2024-03-07T02:30:53.827Z] +[2024-03-07T02:30:53.828Z] NameError: name 'response' is not defined +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 7 _______ +[2024-03-07T02:30:53.828Z] Notebook cell execution failed +[2024-03-07T02:30:53.828Z] Cell 7: Cell execution caused an exception +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Input: +[2024-03-07T02:30:53.828Z] warnings.filterwarnings("ignore", category=cartopy.io.DownloadWarning) +[2024-03-07T02:30:53.828Z] fig = plt.figure(figsize=(8, 6)) +[2024-03-07T02:30:53.828Z] ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) +[2024-03-07T02:30:53.828Z] ax.imshow( +[2024-03-07T02:30:53.828Z] data, +[2024-03-07T02:30:53.828Z] origin="upper", +[2024-03-07T02:30:53.828Z] extent=(-180, 180, -90, 90), +[2024-03-07T02:30:53.828Z] transform=cartopy.crs.PlateCarree(), +[2024-03-07T02:30:53.828Z] ) +[2024-03-07T02:30:53.828Z] ax.coastlines() +[2024-03-07T02:30:53.828Z] plt.show() +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Traceback: +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.828Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.828Z] Cell In[1], line 5 +[2024-03-07T02:30:53.828Z]  2 fig = plt.figure(figsize=(8, 6)) +[2024-03-07T02:30:53.828Z]  3 ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) +[2024-03-07T02:30:53.828Z]  4 ax.imshow( +[2024-03-07T02:30:53.828Z] ----> 5 data, +[2024-03-07T02:30:53.828Z]  6 origin="upper", +[2024-03-07T02:30:53.828Z]  7 extent=(-180, 180, -90, 90), +[2024-03-07T02:30:53.828Z]  8 transform=cartopy.crs.PlateCarree(), +[2024-03-07T02:30:53.828Z]  9 ) +[2024-03-07T02:30:53.828Z]  10 ax.coastlines() +[2024-03-07T02:30:53.828Z]  11 plt.show() +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] NameError: name 'data' is not defined +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] _________ pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 5 _________ +[2024-03-07T02:30:53.828Z] Notebook cell execution failed +[2024-03-07T02:30:53.828Z] Cell 5: Cell outputs differ +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Input: +[2024-03-07T02:30:53.828Z] ds = xr.open_dataset( +[2024-03-07T02:30:53.828Z] url, chunks=dict(realization=1, time=365, rlat=50 * 3, rlon=50 * 3) +[2024-03-07T02:30:53.828Z] ) +[2024-03-07T02:30:53.828Z] xclim.set_options(check_missing="pct", missing_options={"pct": {"tolerance": 0.05}}) +[2024-03-07T02:30:53.828Z] sdii = xclim.atmos.daily_pr_intensity(pr=ds.pr.sel(time="2000")) +[2024-03-07T02:30:53.828Z] sdii +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Traceback: +[2024-03-07T02:30:53.828Z] Unexpected output fields from running code: {'stderr'} +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] _________ pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 8 _________ +[2024-03-07T02:30:53.828Z] Notebook cell execution failed +[2024-03-07T02:30:53.828Z] Cell 8: Cell outputs differ +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Input: +[2024-03-07T02:30:53.828Z] # Subset over the Montreal gridpoint +[2024-03-07T02:30:53.828Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) +[2024-03-07T02:30:53.828Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) +[2024-03-07T02:30:53.828Z] print("Input dataset for Montreal :") +[2024-03-07T02:30:53.828Z] display(pt) +[2024-03-07T02:30:53.828Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") +[2024-03-07T02:30:53.828Z] print("Maximim 1-day precipitation `lazy` output ..") +[2024-03-07T02:30:53.828Z] out +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Traceback: +[2024-03-07T02:30:53.828Z] Unexpected output fields from running code: {'stderr'} +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] _______ pavics-sdi-master/docs/source/notebooks/forecasts.ipynb::Cell 2 ________ +[2024-03-07T02:30:53.828Z] Notebook cell execution failed +[2024-03-07T02:30:53.828Z] Cell 2: Cell outputs differ +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Input: +[2024-03-07T02:30:53.828Z] import hvplot.xarray +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] mtl = ds.sel(lon=45.5, lat=360 - 73.5, method="nearest") +[2024-03-07T02:30:53.828Z] mtl.pr.hvplot(x="time", width=300) + mtl.tas.hvplot(x="time", width=300) +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Traceback: +[2024-03-07T02:30:53.828Z] dissimilar number of outputs for key "application/vnd.holoviews_exec.v0+json"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] ============ disagrees with newly computed (test) output: +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] >>>>>>>>>>>> +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] _______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 4 _______ +[2024-03-07T02:30:53.828Z] Notebook cell execution failed +[2024-03-07T02:30:53.828Z] Cell 4: Cell outputs differ +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Input: +[2024-03-07T02:30:53.828Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) +[2024-03-07T02:30:53.828Z] plt.title("Target regular grid"); +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Traceback: +[2024-03-07T02:30:53.828Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-07T02:30:53.828Z]
+[2024-03-07T02:30:53.828Z] ============ disagrees with newly computed (test) output: +[2024-03-07T02:30:53.828Z] Text(0.5, 1.0, 'Target regular grid') +[2024-03-07T02:30:53.828Z]
+[2024-03-07T02:30:53.828Z] >>>>>>>>>>>> +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] _______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 7 _______ +[2024-03-07T02:30:53.828Z] Notebook cell execution failed +[2024-03-07T02:30:53.828Z] Cell 7: Cell outputs differ +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Input: +[2024-03-07T02:30:53.828Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. +[2024-03-07T02:30:53.828Z] warnings.filterwarnings("ignore", category=FutureWarning) +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] # Apply the regridding weights to the input sea ice concentration data +[2024-03-07T02:30:53.828Z] sic_bil = reg_bil(ds_in.siconc) +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] # Plot the results +[2024-03-07T02:30:53.828Z] sic_bil.isel(time=0).plot(cmap=cmap) +[2024-03-07T02:30:53.828Z] plt.title("Regridded sic data (Jan 2020)"); +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Traceback: +[2024-03-07T02:30:53.828Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-07T02:30:53.828Z]
+[2024-03-07T02:30:53.828Z] ============ disagrees with newly computed (test) output: +[2024-03-07T02:30:53.828Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') +[2024-03-07T02:30:53.828Z]
+[2024-03-07T02:30:53.828Z] >>>>>>>>>>>> +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] ______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 20 _______ +[2024-03-07T02:30:53.828Z] Notebook cell execution failed +[2024-03-07T02:30:53.828Z] Cell 20: Cell outputs differ +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] Input: +[2024-03-07T02:30:53.828Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") +[2024-03-07T02:30:53.828Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) +[2024-03-07T02:30:53.828Z] +[2024-03-07T02:30:53.828Z] fig, ax = plt.subplots(figsize=(6, 4)) +[2024-03-07T02:30:53.828Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) +[2024-03-07T02:30:53.828Z] ax.set_xlim(210, 320) +[2024-03-07T02:30:53.828Z] ax.set_ylim(38, 86) +[2024-03-07T02:30:53.828Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") +[2024-03-07T02:30:53.828Z] ax.annotate( +[2024-03-07T02:30:53.829Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", +[2024-03-07T02:30:53.829Z] (280, 40), +[2024-03-07T02:30:53.829Z] xytext=(1.3, 0.3), +[2024-03-07T02:30:53.829Z] xycoords="data", +[2024-03-07T02:30:53.829Z] textcoords="axes fraction", +[2024-03-07T02:30:53.829Z] fontsize="x-large", +[2024-03-07T02:30:53.829Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), +[2024-03-07T02:30:53.829Z] ); +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] Traceback: +[2024-03-07T02:30:53.829Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-07T02:30:53.829Z]
+[2024-03-07T02:30:53.829Z] ============ disagrees with newly computed (test) output: +[2024-03-07T02:30:53.829Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') +[2024-03-07T02:30:53.829Z]
+[2024-03-07T02:30:53.829Z] >>>>>>>>>>>> +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] ______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 27 _______ +[2024-03-07T02:30:53.829Z] Notebook cell execution failed +[2024-03-07T02:30:53.829Z] Cell 27: Cell outputs differ +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] Input: +[2024-03-07T02:30:53.829Z] # Now we can plot easily the results as a choropleth map! +[2024-03-07T02:30:53.829Z] ax = shapes_data.plot( +[2024-03-07T02:30:53.829Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} +[2024-03-07T02:30:53.829Z] ) +[2024-03-07T02:30:53.829Z] ax.set_ylabel("Latitude") +[2024-03-07T02:30:53.829Z] ax.set_xlabel("Longitude"); +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] Traceback: +[2024-03-07T02:30:53.829Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-07T02:30:53.829Z]
+[2024-03-07T02:30:53.829Z] ============ disagrees with newly computed (test) output: +[2024-03-07T02:30:53.829Z] Text(0.5, 91.20243008191655, 'Longitude') +[2024-03-07T02:30:53.829Z]
+[2024-03-07T02:30:53.829Z] >>>>>>>>>>>> +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 3 ____ +[2024-03-07T02:30:53.829Z] Notebook cell execution failed +[2024-03-07T02:30:53.829Z] Cell 3: Cell execution caused an exception +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] Input: +[2024-03-07T02:30:53.829Z] leaflet_map = ipyleaflet.Map( +[2024-03-07T02:30:53.829Z] center=canada_center_lat_lon, +[2024-03-07T02:30:53.829Z] basemap=ipyleaflet.basemaps.Stamen.Terrain, +[2024-03-07T02:30:53.829Z] zoom=4, +[2024-03-07T02:30:53.829Z] ) +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] initial_marker_location = canada_center_lat_lon +[2024-03-07T02:30:53.829Z] marker = ipyleaflet.Marker(location=initial_marker_location, draggable=True) +[2024-03-07T02:30:53.829Z] leaflet_map.add_layer(marker) +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] leaflet_map +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] Traceback: +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.829Z] KeyError Traceback (most recent call last) +[2024-03-07T02:30:53.829Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:44, in Bunch.__getattr__(self, key) +[2024-03-07T02:30:53.829Z]  43 try: +[2024-03-07T02:30:53.829Z] ---> 44 return self.__getitem__(key) +[2024-03-07T02:30:53.829Z]  45 except KeyError as err: +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] KeyError: 'Stamen' +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] The above exception was the direct cause of the following exception: +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] AttributeError Traceback (most recent call last) +[2024-03-07T02:30:53.829Z] Cell In[1], line 3 +[2024-03-07T02:30:53.829Z]  1 leaflet_map = ipyleaflet.Map( +[2024-03-07T02:30:53.829Z]  2 center=canada_center_lat_lon, +[2024-03-07T02:30:53.829Z] ----> 3 basemap=ipyleaflet.basemaps.Stamen.Terrain, +[2024-03-07T02:30:53.829Z]  4 zoom=4, +[2024-03-07T02:30:53.829Z]  5 ) +[2024-03-07T02:30:53.829Z]  7 initial_marker_location = canada_center_lat_lon +[2024-03-07T02:30:53.829Z]  8 marker = ipyleaflet.Marker(location=initial_marker_location, draggable=True) +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:46, in Bunch.__getattr__(self, key) +[2024-03-07T02:30:53.829Z]  44 return self.__getitem__(key) +[2024-03-07T02:30:53.829Z]  45 except KeyError as err: +[2024-03-07T02:30:53.829Z] ---> 46 raise AttributeError(key) from err +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] AttributeError: Stamen +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 4 ____ +[2024-03-07T02:30:53.829Z] Notebook cell execution failed +[2024-03-07T02:30:53.829Z] Cell 4: Cell execution caused an exception +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] Input: +[2024-03-07T02:30:53.829Z] marker.location = (45.55, -72.44) +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] Traceback: +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.829Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.829Z] Cell In[1], line 1 +[2024-03-07T02:30:53.829Z] ----> 1 marker.location = (45.55, -72.44) +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] NameError: name 'marker' is not defined +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 5 ____ +[2024-03-07T02:30:53.829Z] Notebook cell execution failed +[2024-03-07T02:30:53.829Z] Cell 5: Cell execution caused an exception +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] Input: +[2024-03-07T02:30:53.829Z] print(initial_marker_location) +[2024-03-07T02:30:53.829Z] print(marker.location) +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] Traceback: +[2024-03-07T02:30:53.829Z] +[2024-03-07T02:30:53.829Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.829Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.829Z] Cell In[1], line 1 +[2024-03-07T02:30:53.829Z] ----> 1 print(initial_marker_location) +[2024-03-07T02:30:53.829Z]  2 print(marker.location) +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] NameError: name 'initial_marker_location' is not defined +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 7 ____ +[2024-03-07T02:30:53.830Z] Notebook cell execution failed +[2024-03-07T02:30:53.830Z] Cell 7: Cell execution caused an exception +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] Input: +[2024-03-07T02:30:53.830Z] # NBVAL_IGNORE_OUTPUT +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] rectangle = get_rectangle() +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] Traceback: +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.830Z] KeyError Traceback (most recent call last) +[2024-03-07T02:30:53.830Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:44, in Bunch.__getattr__(self, key) +[2024-03-07T02:30:53.830Z]  43 try: +[2024-03-07T02:30:53.830Z] ---> 44 return self.__getitem__(key) +[2024-03-07T02:30:53.830Z]  45 except KeyError as err: +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] KeyError: 'Stamen' +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] The above exception was the direct cause of the following exception: +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] AttributeError Traceback (most recent call last) +[2024-03-07T02:30:53.830Z] Cell In[1], line 4 +[2024-03-07T02:30:53.830Z]  1 # NBVAL_IGNORE_OUTPUT +[2024-03-07T02:30:53.830Z] ----> 4 rectangle = get_rectangle() +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] Cell In[1], line 10, in get_rectangle() +[2024-03-07T02:30:53.830Z]  6 def get_rectangle(): +[2024-03-07T02:30:53.830Z]  7 canada_center = (52.4292, -93.2959) +[2024-03-07T02:30:53.830Z]  8 m = ipyleaflet.Map( +[2024-03-07T02:30:53.830Z]  9 center=canada_center, +[2024-03-07T02:30:53.830Z] ---> 10 basemap=ipyleaflet.basemaps.Stamen.Terrain, +[2024-03-07T02:30:53.830Z]  11 zoom=4, +[2024-03-07T02:30:53.830Z]  12 ) +[2024-03-07T02:30:53.830Z]  14 # Create a new draw control +[2024-03-07T02:30:53.830Z]  15 draw_control = ipyleaflet.DrawControl() +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:46, in Bunch.__getattr__(self, key) +[2024-03-07T02:30:53.830Z]  44 return self.__getitem__(key) +[2024-03-07T02:30:53.830Z]  45 except KeyError as err: +[2024-03-07T02:30:53.830Z] ---> 46 raise AttributeError(key) from err +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] AttributeError: Stamen +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 8 ____ +[2024-03-07T02:30:53.830Z] Notebook cell execution failed +[2024-03-07T02:30:53.830Z] Cell 8: Cell execution caused an exception +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] Input: +[2024-03-07T02:30:53.830Z] # GeoJSON with custom style properties +[2024-03-07T02:30:53.830Z] if not len(rectangle): +[2024-03-07T02:30:53.830Z] # Use the default region of Greater Montreal Area +[2024-03-07T02:30:53.830Z] rectangle = { +[2024-03-07T02:30:53.830Z] "type": "Feature", +[2024-03-07T02:30:53.830Z] "properties": { +[2024-03-07T02:30:53.830Z] "style": { +[2024-03-07T02:30:53.830Z] "stroke": True, +[2024-03-07T02:30:53.830Z] "color": "#4ae", +[2024-03-07T02:30:53.830Z] "weight": 4, +[2024-03-07T02:30:53.830Z] "opacity": 0.5, +[2024-03-07T02:30:53.830Z] "fill": True, +[2024-03-07T02:30:53.830Z] "fillColor": "#4ae", +[2024-03-07T02:30:53.830Z] "fillOpacity": 0.3, +[2024-03-07T02:30:53.830Z] "clickable": True, +[2024-03-07T02:30:53.830Z] } +[2024-03-07T02:30:53.830Z] }, +[2024-03-07T02:30:53.830Z] "geometry": { +[2024-03-07T02:30:53.830Z] "type": "Polygon", +[2024-03-07T02:30:53.830Z] "coordinates": [ +[2024-03-07T02:30:53.830Z] [ +[2024-03-07T02:30:53.830Z] [-74.511948, 45.202296], +[2024-03-07T02:30:53.830Z] [-74.511948, 45.934852], +[2024-03-07T02:30:53.830Z] [-72.978537, 45.934852], +[2024-03-07T02:30:53.830Z] [-72.978537, 45.202296], +[2024-03-07T02:30:53.830Z] [-74.511948, 45.202296], +[2024-03-07T02:30:53.830Z] ] +[2024-03-07T02:30:53.830Z] ], +[2024-03-07T02:30:53.830Z] }, +[2024-03-07T02:30:53.830Z] } +[2024-03-07T02:30:53.830Z] rectangle +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] Traceback: +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.830Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.830Z] Cell In[1], line 2 +[2024-03-07T02:30:53.830Z]  1 # GeoJSON with custom style properties +[2024-03-07T02:30:53.830Z] ----> 2 if not len(rectangle): +[2024-03-07T02:30:53.830Z]  3 # Use the default region of Greater Montreal Area +[2024-03-07T02:30:53.830Z]  4 rectangle = { +[2024-03-07T02:30:53.830Z]  5 "type": "Feature", +[2024-03-07T02:30:53.830Z]  6 "properties": { +[2024-03-07T02:30:53.830Z]  (...) +[2024-03-07T02:30:53.830Z]  29 }, +[2024-03-07T02:30:53.830Z]  30 } +[2024-03-07T02:30:53.830Z]  31 rectangle +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] NameError: name 'rectangle' is not defined +[2024-03-07T02:30:53.830Z] +[2024-03-07T02:30:53.830Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 9 ____ +[2024-03-07T02:30:53.830Z] Notebook cell execution failed +[2024-03-07T02:30:53.831Z] Cell 9: Cell execution caused an exception +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Input: +[2024-03-07T02:30:53.831Z] import geopandas as gpd +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] rect = gpd.GeoDataFrame.from_features([rectangle]) +[2024-03-07T02:30:53.831Z] bounds = rect.bounds +[2024-03-07T02:30:53.831Z] bounds +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Traceback: +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.831Z] Cell In[1], line 3 +[2024-03-07T02:30:53.831Z]  1 import geopandas as gpd +[2024-03-07T02:30:53.831Z] ----> 3 rect = gpd.GeoDataFrame.from_features([rectangle]) +[2024-03-07T02:30:53.831Z]  4 bounds = rect.bounds +[2024-03-07T02:30:53.831Z]  5 bounds +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] NameError: name 'rectangle' is not defined +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 14 ___ +[2024-03-07T02:30:53.831Z] Notebook cell execution failed +[2024-03-07T02:30:53.831Z] Cell 14: Cell execution caused an exception +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Input: +[2024-03-07T02:30:53.831Z] lon0 = float(bounds.minx) +[2024-03-07T02:30:53.831Z] lon1 = float(bounds.maxx) +[2024-03-07T02:30:53.831Z] lat0 = float(bounds.miny) +[2024-03-07T02:30:53.831Z] lat1 = float(bounds.maxy) +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] result_tasmin = finch.subset_bbox( +[2024-03-07T02:30:53.831Z] resource=data, +[2024-03-07T02:30:53.831Z] variable="tasmin", +[2024-03-07T02:30:53.831Z] lon0=lon0, +[2024-03-07T02:30:53.831Z] lon1=lon1, +[2024-03-07T02:30:53.831Z] lat0=lat0, +[2024-03-07T02:30:53.831Z] lat1=lat1, +[2024-03-07T02:30:53.831Z] start_date="1958-01-01", +[2024-03-07T02:30:53.831Z] end_date="1958-12-31", +[2024-03-07T02:30:53.831Z] ) +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Traceback: +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.831Z] Cell In[1], line 1 +[2024-03-07T02:30:53.831Z] ----> 1 lon0 = float(bounds.minx) +[2024-03-07T02:30:53.831Z]  2 lon1 = float(bounds.maxx) +[2024-03-07T02:30:53.831Z]  3 lat0 = float(bounds.miny) +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] NameError: name 'bounds' is not defined +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 15 ___ +[2024-03-07T02:30:53.831Z] Notebook cell execution failed +[2024-03-07T02:30:53.831Z] Cell 15: Cell execution caused an exception +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Input: +[2024-03-07T02:30:53.831Z] # NBVAL_IGNORE_OUTPUT +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] # wait for process to complete before running this cell (the process is async) +[2024-03-07T02:30:53.831Z] tasmin_subset = result_tasmin.get().output +[2024-03-07T02:30:53.831Z] tasmin_subset +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Traceback: +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.831Z] Cell In[1], line 4 +[2024-03-07T02:30:53.831Z]  1 # NBVAL_IGNORE_OUTPUT +[2024-03-07T02:30:53.831Z]  2 +[2024-03-07T02:30:53.831Z]  3 # wait for process to complete before running this cell (the process is async) +[2024-03-07T02:30:53.831Z] ----> 4 tasmin_subset = result_tasmin.get().output +[2024-03-07T02:30:53.831Z]  5 tasmin_subset +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] NameError: name 'result_tasmin' is not defined +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 16 ___ +[2024-03-07T02:30:53.831Z] Notebook cell execution failed +[2024-03-07T02:30:53.831Z] Cell 16: Cell execution caused an exception +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Input: +[2024-03-07T02:30:53.831Z] result_tasmax = finch.subset_bbox( +[2024-03-07T02:30:53.831Z] resource=data, +[2024-03-07T02:30:53.831Z] variable="tasmax", +[2024-03-07T02:30:53.831Z] lon0=lon0, +[2024-03-07T02:30:53.831Z] lon1=lon1, +[2024-03-07T02:30:53.831Z] lat0=lat0, +[2024-03-07T02:30:53.831Z] lat1=lat1, +[2024-03-07T02:30:53.831Z] start_date="1958-01-01", +[2024-03-07T02:30:53.831Z] end_date="1958-12-31", +[2024-03-07T02:30:53.831Z] ) +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Traceback: +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.831Z] Cell In[1], line 4 +[2024-03-07T02:30:53.831Z]  1 result_tasmax = finch.subset_bbox( +[2024-03-07T02:30:53.831Z]  2 resource=data, +[2024-03-07T02:30:53.831Z]  3 variable="tasmax", +[2024-03-07T02:30:53.831Z] ----> 4 lon0=lon0, +[2024-03-07T02:30:53.831Z]  5 lon1=lon1, +[2024-03-07T02:30:53.831Z]  6 lat0=lat0, +[2024-03-07T02:30:53.831Z]  7 lat1=lat1, +[2024-03-07T02:30:53.831Z]  8 start_date="1958-01-01", +[2024-03-07T02:30:53.831Z]  9 end_date="1958-12-31", +[2024-03-07T02:30:53.831Z]  10 ) +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] NameError: name 'lon0' is not defined +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 17 ___ +[2024-03-07T02:30:53.831Z] Notebook cell execution failed +[2024-03-07T02:30:53.831Z] Cell 17: Cell execution caused an exception +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Input: +[2024-03-07T02:30:53.831Z] # NBVAL_IGNORE_OUTPUT +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] # wait for process to complete before running this cell (the process is async) +[2024-03-07T02:30:53.831Z] tasmax_subset = result_tasmax.get().output +[2024-03-07T02:30:53.831Z] tasmax_subset +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Traceback: +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.831Z] Cell In[1], line 4 +[2024-03-07T02:30:53.831Z]  1 # NBVAL_IGNORE_OUTPUT +[2024-03-07T02:30:53.831Z]  2 +[2024-03-07T02:30:53.831Z]  3 # wait for process to complete before running this cell (the process is async) +[2024-03-07T02:30:53.831Z] ----> 4 tasmax_subset = result_tasmax.get().output +[2024-03-07T02:30:53.831Z]  5 tasmax_subset +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] NameError: name 'result_tasmax' is not defined +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 19 ___ +[2024-03-07T02:30:53.831Z] Notebook cell execution failed +[2024-03-07T02:30:53.831Z] Cell 19: Cell execution caused an exception +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Input: +[2024-03-07T02:30:53.831Z] result = finch.heat_wave_frequency( +[2024-03-07T02:30:53.831Z] tasmin=tasmin_subset, +[2024-03-07T02:30:53.831Z] tasmax=tasmax_subset, +[2024-03-07T02:30:53.831Z] thresh_tasmin="14 degC", +[2024-03-07T02:30:53.831Z] thresh_tasmax="22 degC", +[2024-03-07T02:30:53.831Z] ) +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Traceback: +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.831Z] Cell In[1], line 2 +[2024-03-07T02:30:53.831Z]  1 result = finch.heat_wave_frequency( +[2024-03-07T02:30:53.831Z] ----> 2 tasmin=tasmin_subset, +[2024-03-07T02:30:53.831Z]  3 tasmax=tasmax_subset, +[2024-03-07T02:30:53.831Z]  4 thresh_tasmin="14 degC", +[2024-03-07T02:30:53.831Z]  5 thresh_tasmax="22 degC", +[2024-03-07T02:30:53.831Z]  6 ) +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] NameError: name 'tasmin_subset' is not defined +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 20 ___ +[2024-03-07T02:30:53.831Z] Notebook cell execution failed +[2024-03-07T02:30:53.831Z] Cell 20: Cell execution caused an exception +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Input: +[2024-03-07T02:30:53.831Z] response = result.get(asobj=True) +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] Traceback: +[2024-03-07T02:30:53.831Z] +[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.831Z] Cell In[1], line 1 +[2024-03-07T02:30:53.832Z] ----> 1 response = result.get(asobj=True) +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] NameError: name 'result' is not defined +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 21 ___ +[2024-03-07T02:30:53.832Z] Notebook cell execution failed +[2024-03-07T02:30:53.832Z] Cell 21: Cell execution caused an exception +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Input: +[2024-03-07T02:30:53.832Z] ds = response.output +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Traceback: +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.832Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.832Z] Cell In[1], line 1 +[2024-03-07T02:30:53.832Z] ----> 1 ds = response.output +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] NameError: name 'response' is not defined +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 22 ___ +[2024-03-07T02:30:53.832Z] Notebook cell execution failed +[2024-03-07T02:30:53.832Z] Cell 22: Cell execution caused an exception +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Input: +[2024-03-07T02:30:53.832Z] ds.heat_wave_frequency.plot() +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Traceback: +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.832Z] AttributeError Traceback (most recent call last) +[2024-03-07T02:30:53.832Z] Cell In[1], line 1 +[2024-03-07T02:30:53.832Z] ----> 1 ds.heat_wave_frequency.plot() +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-03-07T02:30:53.832Z]  275 with suppress(KeyError): +[2024-03-07T02:30:53.832Z]  276 return source[name] +[2024-03-07T02:30:53.832Z] --> 277 raise AttributeError( +[2024-03-07T02:30:53.832Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-03-07T02:30:53.832Z]  279 ) +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] AttributeError: 'Dataset' object has no attribute 'heat_wave_frequency' +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 23 ___ +[2024-03-07T02:30:53.832Z] Notebook cell execution failed +[2024-03-07T02:30:53.832Z] Cell 23: Cell execution caused an exception +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Input: +[2024-03-07T02:30:53.832Z] from urllib.parse import urlparse +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] output_url = result.get().output +[2024-03-07T02:30:53.832Z] print("output_url = ", output_url) +[2024-03-07T02:30:53.832Z] parsed = urlparse(output_url) +[2024-03-07T02:30:53.832Z] output_path = parsed.path.replace("wpsoutputs", "wps_outputs") +[2024-03-07T02:30:53.832Z] print("output_path = ", output_path) +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] output_thredds_url = ( +[2024-03-07T02:30:53.832Z] f"https://{parsed.hostname}/twitcher/ows/proxy/thredds/dodsC/birdhouse{output_path}" +[2024-03-07T02:30:53.832Z] ) +[2024-03-07T02:30:53.832Z] print("output_thredds_url = ", output_thredds_url) +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Traceback: +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.832Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.832Z] Cell In[1], line 3 +[2024-03-07T02:30:53.832Z]  1 from urllib.parse import urlparse +[2024-03-07T02:30:53.832Z] ----> 3 output_url = result.get().output +[2024-03-07T02:30:53.832Z]  4 print("output_url = ", output_url) +[2024-03-07T02:30:53.832Z]  5 parsed = urlparse(output_url) +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] NameError: name 'result' is not defined +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 24 ___ +[2024-03-07T02:30:53.832Z] Notebook cell execution failed +[2024-03-07T02:30:53.832Z] Cell 24: Cell execution caused an exception +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Input: +[2024-03-07T02:30:53.832Z] # NBVAL_IGNORE_OUTPUT +[2024-03-07T02:30:53.832Z] import hvplot.xarray +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] dsremote = xr.open_dataset(output_thredds_url) +[2024-03-07T02:30:53.832Z] dsremote.hvplot.quadmesh( +[2024-03-07T02:30:53.832Z] "lon", +[2024-03-07T02:30:53.832Z] "lat", +[2024-03-07T02:30:53.832Z] "heat_wave_frequency", +[2024-03-07T02:30:53.832Z] geo=True, +[2024-03-07T02:30:53.832Z] alpha=0.8, +[2024-03-07T02:30:53.832Z] frame_height=540, +[2024-03-07T02:30:53.832Z] cmap="viridis", +[2024-03-07T02:30:53.832Z] tiles="CartoLight", +[2024-03-07T02:30:53.832Z] ) +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Traceback: +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.832Z] NameError Traceback (most recent call last) +[2024-03-07T02:30:53.832Z] Cell In[1], line 4 +[2024-03-07T02:30:53.832Z]  1 # NBVAL_IGNORE_OUTPUT +[2024-03-07T02:30:53.832Z]  2 import hvplot.xarray +[2024-03-07T02:30:53.832Z] ----> 4 dsremote = xr.open_dataset(output_thredds_url) +[2024-03-07T02:30:53.832Z]  5 dsremote.hvplot.quadmesh( +[2024-03-07T02:30:53.832Z]  6 "lon", +[2024-03-07T02:30:53.832Z]  7 "lat", +[2024-03-07T02:30:53.832Z]  (...) +[2024-03-07T02:30:53.832Z]  13 tiles="CartoLight", +[2024-03-07T02:30:53.832Z]  14 ) +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] NameError: name 'output_thredds_url' is not defined +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] _________ finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 _________ +[2024-03-07T02:30:53.832Z] Notebook cell execution failed +[2024-03-07T02:30:53.832Z] Cell 3: Cell outputs differ +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Input: +[2024-03-07T02:30:53.832Z] print("Process status: ", resp.status) +[2024-03-07T02:30:53.832Z] urls = resp.get() +[2024-03-07T02:30:53.832Z] print("Link to process output: ", urls.output) +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Traceback: +[2024-03-07T02:30:53.832Z]  mismatch 'stdout' +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] assert reference_output == test_output failed: +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] 'Process stat...20650101.nc\n' == 'Process stat...20650101.nc\n' +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] Skipping 49 identical leading characters in diff, use -v to show +[2024-03-07T02:30:53.832Z] - output: https://WPS_HOST/wpsoutputs/STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc +[2024-03-07T02:30:53.832Z] ? --------------------------- +[2024-03-07T02:30:53.832Z] + output: /STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc +[2024-03-07T02:30:53.832Z]  +[2024-03-07T02:30:53.832Z] +[2024-03-07T02:30:53.832Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 0 _ +[2024-03-07T02:30:53.832Z] Notebook cell execution failed +[2024-03-07T02:30:53.833Z] Cell 0: Cell outputs differ +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] Input: +[2024-03-07T02:30:53.833Z] import os +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] os.environ["USE_PYGEOS"] = "0" # force use Shapely with GeoPandas +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] import warnings +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] import numba +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] warnings.simplefilter("ignore", category=numba.core.errors.NumbaDeprecationWarning) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] import geopandas as gpd +[2024-03-07T02:30:53.833Z] import matplotlib.pyplot as plt +[2024-03-07T02:30:53.833Z] import xarray as xr +[2024-03-07T02:30:53.833Z] from clisops.core import subset +[2024-03-07T02:30:53.833Z] from dask.diagnostics import ProgressBar +[2024-03-07T02:30:53.833Z] from siphon.catalog import TDSCatalog +[2024-03-07T02:30:53.833Z] from xclim import atmos +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] warnings.simplefilter("ignore") +[2024-03-07T02:30:53.833Z] # TODO change address +[2024-03-07T02:30:53.833Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] # Create Catalog +[2024-03-07T02:30:53.833Z] cat = TDSCatalog(url) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] # Subset over the Gasp�� peninsula in eastern Quebec +[2024-03-07T02:30:53.833Z] gaspe = gpd.GeoDataFrame.from_file( +[2024-03-07T02:30:53.833Z] "/notebook_dir/pavics-homepage/tutorial_data/gaspesie_mrc.geojson" +[2024-03-07T02:30:53.833Z] ) +[2024-03-07T02:30:53.833Z] ds = subset.subset_shape( +[2024-03-07T02:30:53.833Z] xr.open_dataset(cat.datasets[0].access_urls["OPENDAP"], chunks=dict(time=256)), +[2024-03-07T02:30:53.833Z] shape=gpd.GeoDataFrame(geometry=gaspe.buffer(0.05)), +[2024-03-07T02:30:53.833Z] ) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] # What we see here is only a representation of the full content, the entire data set hasn't been loaded. +[2024-03-07T02:30:53.833Z] display(ds) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] # plot of single day tasmin +[2024-03-07T02:30:53.833Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] Traceback: +[2024-03-07T02:30:53.833Z] Missing output fields from running code: {'stderr'} +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 _ +[2024-03-07T02:30:53.833Z] Notebook cell execution failed +[2024-03-07T02:30:53.833Z] Cell 2: Cell outputs differ +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] Input: +[2024-03-07T02:30:53.833Z] import xclim +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] # Access some station data +[2024-03-07T02:30:53.833Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/dodsC/datasets/station_obs/ECCC_AHCCD_gen3_temperature.ncml" +[2024-03-07T02:30:53.833Z] ds_stat = xr.open_dataset(url, chunks=dict(station=1)) +[2024-03-07T02:30:53.833Z] istat = 115 +[2024-03-07T02:30:53.833Z] # Compare use of differernt percent tolerance levels (tolerance == 0.1) +[2024-03-07T02:30:53.833Z] plt.figure(figsize=(15, 10)) +[2024-03-07T02:30:53.833Z] color = ["blue", "green", "orange"] +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] for i, tol in enumerate([0.25, 0.1, 0.05]): +[2024-03-07T02:30:53.833Z] plt.subplot(3, 1, i + 1) +[2024-03-07T02:30:53.833Z] with xclim.set_options( +[2024-03-07T02:30:53.833Z] check_missing="pct", missing_options={"pct": {"tolerance": tol}} +[2024-03-07T02:30:53.833Z] ): +[2024-03-07T02:30:53.833Z] # compute yearly max tasmax +[2024-03-07T02:30:53.833Z] tx_mean = xclim.atmos.tx_mean( +[2024-03-07T02:30:53.833Z] tasmax=ds_stat.isel(station=istat).tasmax, freq="YS" +[2024-03-07T02:30:53.833Z] ) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] tx_mean.plot( +[2024-03-07T02:30:53.833Z] marker="o", +[2024-03-07T02:30:53.833Z] color=color[i], +[2024-03-07T02:30:53.833Z] label=f"{len(tx_mean.dropna('time').values)} \ +[2024-03-07T02:30:53.833Z] valid years w/ <={tol*100}% missing data", +[2024-03-07T02:30:53.833Z] ) +[2024-03-07T02:30:53.833Z] plt.title("") +[2024-03-07T02:30:53.833Z] plt.xlabel("") +[2024-03-07T02:30:53.833Z] if i == 0: +[2024-03-07T02:30:53.833Z] name = str(ds_stat.isel(station=istat).station_name.values) +[2024-03-07T02:30:53.833Z] plt.title(f"{name.capitalize().replace('_',' ')} Station") +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] elif i == 2: +[2024-03-07T02:30:53.833Z] plt.xlabel("time") +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] plt.legend(loc="lower right") +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] Traceback: +[2024-03-07T02:30:53.833Z] Unexpected output fields from running code: {'stderr'} +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ +[2024-03-07T02:30:53.833Z] Notebook cell execution failed +[2024-03-07T02:30:53.833Z] Cell 2: Cell execution caused an exception +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] Input: +[2024-03-07T02:30:53.833Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) +[2024-03-07T02:30:53.833Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] chng_f, pos_f = xens.change_significance( +[2024-03-07T02:30:53.833Z] fut.sel(time=fut["time.season"] == "JJA"), +[2024-03-07T02:30:53.833Z] ref.sel(time=ref["time.season"] == "JJA"), +[2024-03-07T02:30:53.833Z] test="ttest", +[2024-03-07T02:30:53.833Z] ) +[2024-03-07T02:30:53.833Z] plt.figure( +[2024-03-07T02:30:53.833Z] figsize=(15, 6), +[2024-03-07T02:30:53.833Z] ) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] plt.subplot(1, 2, 1) +[2024-03-07T02:30:53.833Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] plt.title(chng_f.description.split(".")[0]) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] plt.subplot(1, 2, 2) +[2024-03-07T02:30:53.833Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-03-07T02:30:53.833Z] plt.title(pos_f.description.split(".")[0]) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] display() +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] Traceback: +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] --------------------------------------------------------------------------- +[2024-03-07T02:30:53.833Z] AttributeError Traceback (most recent call last) +[2024-03-07T02:30:53.833Z] Cell In[1], line 20 +[2024-03-07T02:30:53.833Z]  18 plt.subplot(1, 2, 2) +[2024-03-07T02:30:53.833Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-03-07T02:30:53.833Z] ---> 20 plt.title(pos_f.description.split(".")[0]) +[2024-03-07T02:30:53.833Z]  22 display() +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-03-07T02:30:53.833Z]  275 with suppress(KeyError): +[2024-03-07T02:30:53.833Z]  276 return source[name] +[2024-03-07T02:30:53.833Z] --> 277 raise AttributeError( +[2024-03-07T02:30:53.833Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-03-07T02:30:53.833Z]  279 ) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb::Cell 2 _ +[2024-03-07T02:30:53.833Z] Notebook cell execution failed +[2024-03-07T02:30:53.833Z] Cell 2: Cell outputs differ +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] Input: +[2024-03-07T02:30:53.833Z] import geopandas as gpd +[2024-03-07T02:30:53.833Z] import hvplot.pandas +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] gdf = gpd.GeoDataFrame.from_file( +[2024-03-07T02:30:53.833Z] "/notebook_dir/pavics-homepage/tutorial_data/gaspesie_mrc.geojson" +[2024-03-07T02:30:53.833Z] ) +[2024-03-07T02:30:53.833Z] gdf = gdf.dissolve(by="MUS_NM_MRC") +[2024-03-07T02:30:53.833Z] gdf["region_name"] = gdf.index +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] # TODO replace with clisops average.average_shape() once it can do a 'skipna' +[2024-03-07T02:30:53.833Z] # mask of valid (non-nan) data cells +[2024-03-07T02:30:53.833Z] data_mask = ( +[2024-03-07T02:30:53.833Z] ds_ens.tx_mean.isel(rcp=0, realization=0).mean(dim=["year", "season"]).notnull() +[2024-03-07T02:30:53.833Z] ) +[2024-03-07T02:30:53.833Z] # spatial weights of gridcells interesecting each polygon +[2024-03-07T02:30:53.833Z] weight_masks = subset.create_weight_masks(ds_ens, poly=gdf) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] def clean_masks(data_mask, masks): +[2024-03-07T02:30:53.833Z] # remove weight values of gridcells that are nan in the actual data. Rescale so total == 1 +[2024-03-07T02:30:53.833Z] return (masks * data_mask) / (masks * data_mask).sum(dim=["lat", "lon"]) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] weight_masks = clean_masks(data_mask, weight_masks) +[2024-03-07T02:30:53.833Z] +[2024-03-07T02:30:53.833Z] # Calculate weighted average for each region +[2024-03-07T02:30:53.833Z] with xr.set_options(keep_attrs=True): +[2024-03-07T02:30:53.834Z] reg_ts_sims = (ds_ens * weight_masks).sum(dim=["lat", "lon"]) +[2024-03-07T02:30:53.834Z] reg_ts = xens.ensemble_percentiles(reg_ts_sims) +[2024-03-07T02:30:53.834Z] reg_ts.load() +[2024-03-07T02:30:53.834Z] +[2024-03-07T02:30:53.834Z] # get only tx_mean percentile variables for this plot +[2024-03-07T02:30:53.834Z] vars1 = [v for v in reg_ts if "tx_mean" in v] +[2024-03-07T02:30:53.834Z] clear_output() +[2024-03-07T02:30:53.834Z] # plot a simple map of the sub-regions +[2024-03-07T02:30:53.834Z] display( +[2024-03-07T02:30:53.834Z] gdf.hvplot( +[2024-03-07T02:30:53.834Z] geo=True, +[2024-03-07T02:30:53.834Z] color="region_name", +[2024-03-07T02:30:53.834Z] tiles="EsriImagery", +[2024-03-07T02:30:53.834Z] legend=False, +[2024-03-07T02:30:53.834Z] frame_width=400, +[2024-03-07T02:30:53.834Z] ) +[2024-03-07T02:30:53.834Z] ) +[2024-03-07T02:30:53.834Z] +[2024-03-07T02:30:53.834Z] # Interative time-series plot of regional means +[2024-03-07T02:30:53.834Z] reg_ts[vars1].hvplot.line( +[2024-03-07T02:30:53.834Z] x="year", title="time series of regional mean conditions" +[2024-03-07T02:30:53.834Z] ).opts(legend_position="top_left", frame_width=500) +[2024-03-07T02:30:53.834Z] +[2024-03-07T02:30:53.834Z] Traceback: +[2024-03-07T02:30:53.834Z]  mismatch 'text/plain' +[2024-03-07T02:30:53.834Z] +[2024-03-07T02:30:53.834Z] assert reference_output == test_output failed: +[2024-03-07T02:30:53.834Z] +[2024-03-07T02:30:53.834Z] ':Overlay\n ...(region_name)' == ':Overlay\n ...(region_name)' +[2024-03-07T02:30:53.834Z] +[2024-03-07T02:30:53.834Z] :Overlay +[2024-03-07T02:30:53.834Z] - .WMTS.I :WMTS [Longitude,Latitude] +[2024-03-07T02:30:53.834Z] + .Tiles.I :Tiles [x,y] +[2024-03-07T02:30:53.834Z] .Polygons.I :Polygons [Longitude,Latitude] (region_name) +[2024-03-07T02:30:53.834Z]  +[2024-03-07T02:30:53.834Z] +[2024-03-07T02:30:53.835Z] ----------------------------- Captured stdout call ----------------------------- +[2024-03-07T02:30:53.835Z] unhandled iopub msg: clear_output +[2024-03-07T02:30:53.835Z] =========================== short test summary info ============================ +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 1 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 2 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 3 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 4 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 5 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 6 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 7 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 5 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 8 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/forecasts.ipynb::Cell 2 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 4 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 7 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 20 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 27 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 3 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 4 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 5 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 7 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 8 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 9 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 14 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 15 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 16 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 17 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 19 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 20 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 21 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 22 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 23 +[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 24 +[2024-03-07T02:30:53.835Z] FAILED finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 +[2024-03-07T02:30:53.835Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 0 +[2024-03-07T02:30:53.835Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 +[2024-03-07T02:30:53.835Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-03-07T02:30:53.835Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb::Cell 2 +[2024-03-07T02:30:53.835Z] ============ 35 failed, 179 passed, 1 skipped in 1082.74s (0:18:02) ============ +[2024-03-07T02:30:53.835Z] + EXIT_CODE=1 +[2024-03-07T02:30:53.835Z] + echo true +[2024-03-07T02:30:53.835Z] + tr [:upper:] [:lower:] +[2024-03-07T02:30:53.835Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-07T02:30:53.835Z] + [ xtrue = xtrue ] +[2024-03-07T02:30:53.835Z] + mkdir -p buildout +[2024-03-07T02:30:53.835Z] + basename pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb +[2024-03-07T02:30:53.835Z] + filename=WCS_example.ipynb +[2024-03-07T02:30:53.835Z] + echo WCS_example.ipynb +[2024-03-07T02:30:53.835Z] + sed s/.ipynb$// +[2024-03-07T02:30:53.835Z] + filename=WCS_example +[2024-03-07T02:30:53.835Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-03-07T02:30:53.835Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb +[2024-03-07T02:30:53.835Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-03-07T02:31:00.402Z] [NbConvertApp] Writing 145666 bytes to buildout/WCS_example.output.ipynb +[2024-03-07T02:31:00.665Z] + basename pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb +[2024-03-07T02:31:00.665Z] + filename=WFS_example.ipynb +[2024-03-07T02:31:00.665Z] + echo WFS_example.ipynb +[2024-03-07T02:31:00.665Z] + sed s/.ipynb$// +[2024-03-07T02:31:00.665Z] + filename=WFS_example +[2024-03-07T02:31:00.665Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-03-07T02:31:00.665Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb +[2024-03-07T02:31:02.574Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-03-07T02:31:12.555Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb +[2024-03-07T02:31:12.555Z] + basename pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb +[2024-03-07T02:31:12.555Z] + filename=WMS_example.ipynb +[2024-03-07T02:31:12.555Z] + echo WMS_example.ipynb+ +[2024-03-07T02:31:12.555Z] sed s/.ipynb$// +[2024-03-07T02:31:12.555Z] + filename=WMS_example +[2024-03-07T02:31:12.555Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-03-07T02:31:12.555Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb +[2024-03-07T02:31:13.145Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-03-07T02:31:28.053Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb +[2024-03-07T02:31:28.053Z] + basename pavics-sdi-master/docs/source/notebooks/climex.ipynb +[2024-03-07T02:31:28.053Z] + filename=climex.ipynb +[2024-03-07T02:31:28.053Z] + echo climex.ipynb +[2024-03-07T02:31:28.053Z] + sed s/.ipynb$// +[2024-03-07T02:31:28.053Z] + filename=climex +[2024-03-07T02:31:28.053Z] + [ -e buildout/climex.output.ipynb ] +[2024-03-07T02:31:28.053Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb +[2024-03-07T02:31:29.965Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/climex.ipynb to notebook +[2024-03-07T02:35:51.520Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). +[2024-03-07T02:35:51.520Z] Traceback (most recent call last): +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply +[2024-03-07T02:35:51.520Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async +[2024-03-07T02:35:51.520Z] result = await obj +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg +[2024-03-07T02:35:51.520Z] raise Empty +[2024-03-07T02:35:51.520Z] _queue.Empty +[2024-03-07T02:35:51.520Z] +[2024-03-07T02:35:51.520Z] During handling of the above exception, another exception occurred: +[2024-03-07T02:35:51.520Z] +[2024-03-07T02:35:51.520Z] Traceback (most recent call last): +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-03-07T02:35:51.520Z] sys.exit(main()) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance +[2024-03-07T02:35:51.520Z] super().launch_instance(argv=argv, **kwargs) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance +[2024-03-07T02:35:51.520Z] app.start() +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start +[2024-03-07T02:35:51.520Z] self.convert_notebooks() +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks +[2024-03-07T02:35:51.520Z] self.convert_single_notebook(notebook_filename) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook +[2024-03-07T02:35:51.520Z] output, resources = self.export_single_notebook( +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook +[2024-03-07T02:35:51.520Z] output, resources = self.exporter.from_filename( +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-03-07T02:35:51.520Z] return self.from_file(f, resources=resources, **kw) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-03-07T02:35:51.520Z] return self.from_notebook_node( +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-03-07T02:35:51.520Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-03-07T02:35:51.520Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess +[2024-03-07T02:35:51.520Z] nbc, resc = preprocessor(nbc, resc) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-03-07T02:35:51.520Z] return self.preprocess(nb, resources) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess +[2024-03-07T02:35:51.520Z] self.preprocess_cell(cell, resources, index) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell +[2024-03-07T02:35:51.520Z] cell = self.execute_cell(cell, index, store_history=True) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped +[2024-03-07T02:35:51.520Z] return loop.run_until_complete(inner) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-03-07T02:35:51.520Z] return future.result() +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell +[2024-03-07T02:35:51.520Z] exec_reply = await self.task_poll_for_reply +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply +[2024-03-07T02:35:51.520Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) +[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout +[2024-03-07T02:35:51.520Z] raise CellTimeoutError.error_from_timeout_and_cell( +[2024-03-07T02:35:51.520Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. +[2024-03-07T02:35:51.520Z] The message was: Cell execution timed out. +[2024-03-07T02:35:51.520Z] Here is a preview of the cell contents: +[2024-03-07T02:35:51.520Z] ------------------- +[2024-03-07T02:35:51.520Z] ['# NBVAL_IGNORE_OUTPUT', '', '# Create a local client with 6 workers processes.', 'dask_kwargs = dict(', ' n_workers=6,'] +[2024-03-07T02:35:51.520Z] ... +[2024-03-07T02:35:51.520Z] [' )', ' out = xens.ensemble_mean_std_max_min(sdii.to_dataset())', ' out = out.load()', '', 'clear_output()'] +[2024-03-07T02:35:51.520Z] ------------------- +[2024-03-07T02:35:51.520Z] +[2024-03-07T02:35:51.520Z] + basename pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-07T02:35:51.520Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-03-07T02:35:51.520Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-03-07T02:35:51.520Z] + sed s/.ipynb$// +[2024-03-07T02:35:51.520Z] + filename=eccc-geoapi-climate-stations +[2024-03-07T02:35:51.520Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-03-07T02:35:51.520Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-07T02:35:51.520Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-03-07T02:36:03.823Z] [NbConvertApp] Writing 279427 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-03-07T02:36:03.823Z] + basename pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-07T02:36:03.823Z] + filename=eccc-geoapi-xclim.ipynb +[2024-03-07T02:36:03.823Z] + echo eccc-geoapi-xclim.ipynb +[2024-03-07T02:36:03.823Z] + sed s/.ipynb$// +[2024-03-07T02:36:03.823Z] + filename=eccc-geoapi-xclim +[2024-03-07T02:36:03.823Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-03-07T02:36:03.823Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-07T02:36:03.823Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-03-07T02:36:13.818Z] [NbConvertApp] Writing 108240 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-03-07T02:36:13.818Z] + basename pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb +[2024-03-07T02:36:13.818Z] + filename=esgf-dap.ipynb +[2024-03-07T02:36:13.818Z] + + sed s/.ipynb$// +[2024-03-07T02:36:13.818Z] echo esgf-dap.ipynb +[2024-03-07T02:36:13.818Z] + filename=esgf-dap +[2024-03-07T02:36:13.818Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-03-07T02:36:13.819Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb +[2024-03-07T02:36:15.195Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-03-07T02:36:25.187Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb +[2024-03-07T02:36:25.187Z] + basename pavics-sdi-master/docs/source/notebooks/forecasts.ipynb +[2024-03-07T02:36:25.187Z] + filename=forecasts.ipynb +[2024-03-07T02:36:25.187Z] + echo forecasts.ipynb +[2024-03-07T02:36:25.187Z] + sed s/.ipynb$// +[2024-03-07T02:36:25.187Z] + filename=forecasts +[2024-03-07T02:36:25.187Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-03-07T02:36:25.187Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb +[2024-03-07T02:36:26.125Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/forecasts.ipynb to notebook +[2024-03-07T02:36:44.227Z] [NbConvertApp] Writing 181105 bytes to buildout/forecasts.output.ipynb +[2024-03-07T02:36:44.227Z] + basename pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-07T02:36:44.227Z] + filename=jupyter_extensions.ipynb +[2024-03-07T02:36:44.227Z] + echo jupyter_extensions.ipynb +[2024-03-07T02:36:44.227Z] + sed s/.ipynb$// +[2024-03-07T02:36:44.227Z] + filename=jupyter_extensions +[2024-03-07T02:36:44.227Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-03-07T02:36:44.227Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-07T02:36:45.171Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-03-07T02:36:50.455Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb +[2024-03-07T02:36:50.455Z] + basename pavics-sdi-master/docs/source/notebooks/opendap.ipynb +[2024-03-07T02:36:50.455Z] + filename=opendap.ipynb +[2024-03-07T02:36:50.455Z] + echo+ opendap.ipynb +[2024-03-07T02:36:50.455Z] sed s/.ipynb$// +[2024-03-07T02:36:50.455Z] + filename=opendap +[2024-03-07T02:36:50.455Z] + [ -e buildout/opendap.output.ipynb ] +[2024-03-07T02:36:50.455Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb +[2024-03-07T02:36:51.846Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/opendap.ipynb to notebook +[2024-03-07T02:38:28.319Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb +[2024-03-07T02:38:28.319Z] + basename pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-07T02:38:28.319Z] + filename=pavics_thredds.ipynb +[2024-03-07T02:38:28.319Z] + sed s/.ipynb$// +[2024-03-07T02:38:28.319Z] + echo pavics_thredds.ipynb +[2024-03-07T02:38:28.319Z] + filename=pavics_thredds +[2024-03-07T02:38:28.319Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-03-07T02:38:28.319Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-07T02:38:28.319Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-03-07T02:38:28.319Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-07T02:38:28.320Z] context: Access to service is forbidden. +[2024-03-07T02:38:28.320Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-07T02:38:28.320Z] context: Access to service is forbidden. +[2024-03-07T02:38:28.320Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb +[2024-03-07T02:38:28.320Z] + basename pavics-sdi-master/docs/source/notebooks/regridding.ipynb +[2024-03-07T02:38:28.320Z] + filename=regridding.ipynb +[2024-03-07T02:38:28.320Z] + + echo regridding.ipynb +[2024-03-07T02:38:28.320Z] sed s/.ipynb$// +[2024-03-07T02:38:28.320Z] + filename=regridding +[2024-03-07T02:38:28.320Z] + [ -e buildout/regridding.output.ipynb ] +[2024-03-07T02:38:28.320Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb +[2024-03-07T02:38:29.265Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/regridding.ipynb to notebook +[2024-03-07T02:40:05.715Z] [NbConvertApp] Writing 1239773 bytes to buildout/regridding.output.ipynb +[2024-03-07T02:40:05.715Z] + basename pavics-sdi-master/docs/source/notebooks/rendering.ipynb +[2024-03-07T02:40:05.715Z] + filename=rendering.ipynb +[2024-03-07T02:40:05.715Z] + echo rendering.ipynb +[2024-03-07T02:40:05.715Z] + sed s/.ipynb$// +[2024-03-07T02:40:05.715Z] + filename=rendering +[2024-03-07T02:40:05.715Z] + [ -e buildout/rendering.output.ipynb ] +[2024-03-07T02:40:05.715Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb +[2024-03-07T02:40:05.715Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/rendering.ipynb to notebook +[2024-03-07T02:40:09.920Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb +[2024-03-07T02:40:09.920Z] + basename pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb +[2024-03-07T02:40:09.920Z] + filename=subset-user-input.ipynb +[2024-03-07T02:40:09.920Z] + sed s/.ipynb$// +[2024-03-07T02:40:09.920Z] + echo subset-user-input.ipynb +[2024-03-07T02:40:09.920Z] + filename=subset-user-input +[2024-03-07T02:40:09.920Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-03-07T02:40:09.920Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb +[2024-03-07T02:40:10.863Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-03-07T02:40:23.115Z] [NbConvertApp] Writing 155164 bytes to buildout/subset-user-input.output.ipynb +[2024-03-07T02:40:23.115Z] + basename pavics-sdi-master/docs/source/notebooks/subsetting.ipynb +[2024-03-07T02:40:23.115Z] + filename=subsetting.ipynb +[2024-03-07T02:40:23.115Z] + echo subsetting.ipynb +[2024-03-07T02:40:23.115Z] + sed s/.ipynb$// +[2024-03-07T02:40:23.115Z] + filename=subsetting +[2024-03-07T02:40:23.115Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-03-07T02:40:23.115Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb +[2024-03-07T02:40:24.056Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/subsetting.ipynb to notebook +[2024-03-07T02:40:36.296Z] [NbConvertApp] Writing 93401 bytes to buildout/subsetting.output.ipynb +[2024-03-07T02:40:36.296Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-07T02:40:36.296Z] + filename=dap_subset.ipynb +[2024-03-07T02:40:36.296Z] + echo dap_subset.ipynb +[2024-03-07T02:40:36.297Z] + sed s/.ipynb$// +[2024-03-07T02:40:36.297Z] + filename=dap_subset +[2024-03-07T02:40:36.297Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-03-07T02:40:36.297Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-07T02:40:36.297Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-03-07T02:40:51.199Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb +[2024-03-07T02:40:51.199Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-07T02:40:51.199Z] + filename=finch-usage.ipynb +[2024-03-07T02:40:51.199Z] + echo finch-usage.ipynb +[2024-03-07T02:40:51.199Z] + sed s/.ipynb$// +[2024-03-07T02:40:51.199Z] + filename=finch-usage +[2024-03-07T02:40:51.199Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-03-07T02:40:51.199Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-07T02:40:51.199Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-03-07T02:41:03.428Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb +[2024-03-07T02:41:03.428Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-07T02:41:03.428Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-07T02:41:03.428Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-07T02:41:03.428Z] + sed s/.ipynb$// +[2024-03-07T02:41:03.428Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-03-07T02:41:03.428Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-03-07T02:41:03.428Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-07T02:41:03.686Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-03-07T02:41:10.255Z] [NbConvertApp] Writing 173043 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-03-07T02:41:10.255Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-07T02:41:10.255Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-07T02:41:10.255Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-07T02:41:10.255Z] + sed s/.ipynb$// +[2024-03-07T02:41:10.255Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-03-07T02:41:10.255Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-03-07T02:41:10.255Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-07T02:41:10.826Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-03-07T02:42:07.126Z] [NbConvertApp] Writing 1481293 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-03-07T02:42:07.126Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-07T02:42:07.126Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-07T02:42:07.126Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-07T02:42:07.126Z] + sed s/.ipynb$// +[2024-03-07T02:42:07.126Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-03-07T02:42:07.126Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-03-07T02:42:07.126Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-07T02:42:07.126Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-03-07T02:46:43.607Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). +[2024-03-07T02:46:46.134Z] Traceback (most recent call last): +[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply +[2024-03-07T02:46:46.134Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) +[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async +[2024-03-07T02:46:46.134Z] result = await obj +[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg +[2024-03-07T02:46:46.134Z] raise Empty +[2024-03-07T02:46:46.134Z] _queue.Empty +[2024-03-07T02:46:46.134Z] +[2024-03-07T02:46:46.134Z] During handling of the above exception, another exception occurred: +[2024-03-07T02:46:46.134Z] +[2024-03-07T02:46:46.134Z] Traceback (most recent call last): +[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-03-07T02:46:46.134Z] sys.exit(main()) +[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance +[2024-03-07T02:46:46.134Z] super().launch_instance(argv=argv, **kwargs) +[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance +[2024-03-07T02:46:46.134Z] app.start() +[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start +[2024-03-07T02:46:46.134Z] self.convert_notebooks() +[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks +[2024-03-07T02:46:46.134Z] self.convert_single_notebook(notebook_filename) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook +[2024-03-07T02:46:46.135Z] output, resources = self.export_single_notebook( +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook +[2024-03-07T02:46:46.135Z] output, resources = self.exporter.from_filename( +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-03-07T02:46:46.135Z] return self.from_file(f, resources=resources, **kw) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-03-07T02:46:46.135Z] return self.from_notebook_node( +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-03-07T02:46:46.135Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-03-07T02:46:46.135Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess +[2024-03-07T02:46:46.135Z] nbc, resc = preprocessor(nbc, resc) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-03-07T02:46:46.135Z] return self.preprocess(nb, resources) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess +[2024-03-07T02:46:46.135Z] self.preprocess_cell(cell, resources, index) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell +[2024-03-07T02:46:46.135Z] cell = self.execute_cell(cell, index, store_history=True) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped +[2024-03-07T02:46:46.135Z] return loop.run_until_complete(inner) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-03-07T02:46:46.135Z] return future.result() +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell +[2024-03-07T02:46:46.135Z] exec_reply = await self.task_poll_for_reply +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply +[2024-03-07T02:46:46.135Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) +[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout +[2024-03-07T02:46:46.135Z] raise CellTimeoutError.error_from_timeout_and_cell( +[2024-03-07T02:46:46.135Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. +[2024-03-07T02:46:46.135Z] The message was: Cell execution timed out. +[2024-03-07T02:46:46.135Z] Here is a preview of the cell contents: +[2024-03-07T02:46:46.135Z] ------------------- +[2024-03-07T02:46:46.135Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] +[2024-03-07T02:46:46.135Z] ... +[2024-03-07T02:46:46.135Z] [' print("computing with dask client ...")', ' compute(jobs)', ' print("finished")', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()'] +[2024-03-07T02:46:46.135Z] ------------------- +[2024-03-07T02:46:46.135Z] +[2024-03-07T02:46:46.135Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-07T02:46:46.135Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-07T02:46:46.135Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-07T02:46:46.135Z] + sed s/.ipynb$// +[2024-03-07T02:46:46.135Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-03-07T02:46:46.135Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-03-07T02:46:46.135Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-07T02:46:48.040Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-03-07T02:47:06.208Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-03-07T02:47:06.208Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-07T02:47:06.208Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-07T02:47:06.208Z] + + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-07T02:47:06.208Z] sed s/.ipynb$// +[2024-03-07T02:47:06.208Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-03-07T02:47:06.208Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-03-07T02:47:06.208Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-07T02:47:07.583Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-03-07T02:47:46.311Z] [NbConvertApp] Writing 1091398 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-03-07T02:47:46.311Z] + basename notebooks/hummingbird.ipynb +[2024-03-07T02:47:46.311Z] + filename=hummingbird.ipynb +[2024-03-07T02:47:46.311Z] + echo hummingbird.ipynb +[2024-03-07T02:47:46.311Z] + sed s/.ipynb$// +[2024-03-07T02:47:46.311Z] + filename=hummingbird +[2024-03-07T02:47:46.311Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-03-07T02:47:46.311Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-03-07T02:47:47.697Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-03-07T02:47:51.903Z] [NbConvertApp] Writing 15951 bytes to buildout/hummingbird.output.ipynb +[2024-03-07T02:47:51.903Z] + basename notebooks/stress-tests.ipynb +[2024-03-07T02:47:51.903Z] + filename=stress-tests.ipynb +[2024-03-07T02:47:51.903Z] + sed s/.ipynb$// +[2024-03-07T02:47:51.903Z] + echo stress-tests.ipynb +[2024-03-07T02:47:51.903Z] + filename=stress-tests +[2024-03-07T02:47:51.903Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-03-07T02:47:51.903Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-03-07T02:47:53.818Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-03-07T02:51:15.394Z] [NbConvertApp] Writing 429955 bytes to buildout/stress-tests.output.ipynb +[2024-03-07T02:51:15.395Z] + exit 1 +[2024-03-07T02:51:15.395Z] + EXIT_CODE=1 +[2024-03-07T02:51:15.395Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-07T02:51:15.395Z] + mkdir -p buildout/env-dump +[2024-03-07T02:51:15.395Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-07T02:51:15.395Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-07T02:51:15.395Z] + conda env export -n birdy +[2024-03-07T02:51:23.532Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-07T02:51:23.532Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-07T02:51:23.532Z] + conda list -n birdy --explicit +[2024-03-07T02:51:33.513Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-07T02:51:33.513Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-07T02:51:33.513Z] + pip freeze +[2024-03-07T02:51:33.513Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -1632,41 +2026,41 @@ $ docker top ebc4e7303a12c810c96a8434d5c76564d1e50dadf347acfd670d3521f77f648b -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-07T16:27:05.872Z] Archiving artifacts -[2024-03-07T16:27:05.908Z] Recording fingerprints +[2024-03-07T02:51:34.877Z] Archiving artifacts +[2024-03-07T02:51:34.995Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:05.959Z] Archiving artifacts -[2024-03-07T16:27:08.035Z] Recording fingerprints +[2024-03-07T02:51:35.535Z] Archiving artifacts +[2024-03-07T02:51:37.824Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:08.256Z] Archiving artifacts -[2024-03-07T16:27:08.275Z] Recording fingerprints +[2024-03-07T02:51:39.358Z] Archiving artifacts +[2024-03-07T02:51:39.580Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:08.308Z] Archiving artifacts -[2024-03-07T16:27:08.365Z] Recording fingerprints +[2024-03-07T02:51:39.858Z] Archiving artifacts +[2024-03-07T02:51:39.878Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:08.429Z] Archiving artifacts -[2024-03-07T16:27:08.449Z] Recording fingerprints +[2024-03-07T02:51:39.910Z] Archiving artifacts +[2024-03-07T02:51:40.052Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:08.484Z] Archiving artifacts -[2024-03-07T16:27:08.546Z] Recording fingerprints +[2024-03-07T02:51:40.301Z] Archiving artifacts +[2024-03-07T02:51:40.347Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:08.948Z] Archiving artifacts -[2024-03-07T16:27:08.967Z] Recording fingerprints +[2024-03-07T02:51:41.320Z] Archiving artifacts +[2024-03-07T02:51:41.580Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:08.994Z] Archiving artifacts -[2024-03-07T16:27:09.029Z] Recording fingerprints +[2024-03-07T02:51:41.683Z] Archiving artifacts +[2024-03-07T02:51:41.722Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:09.093Z] Archiving artifacts -[2024-03-07T16:27:09.453Z] Recording fingerprints +[2024-03-07T02:51:42.227Z] Archiving artifacts +[2024-03-07T02:51:42.613Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:09.542Z] Archiving artifacts -[2024-03-07T16:27:10.517Z] Recording fingerprints +[2024-03-07T02:51:43.004Z] Archiving artifacts +[2024-03-07T02:51:43.753Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:27:11.079Z] Archiving artifacts -[2024-03-07T16:27:11.106Z] Recording fingerprints +[2024-03-07T02:51:46.078Z] Archiving artifacts +[2024-03-07T02:51:46.217Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-07T16:27:11.238Z] Sending e-mails to: vu.long@ouranos.ca +[2024-03-07T02:51:46.920Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -1676,8 +2070,8 @@ $ docker top ebc4e7303a12c810c96a8434d5c76564d1e50dadf347acfd670d3521f77f648b -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 ebc4e7303a12c810c96a8434d5c76564d1e50dadf347acfd670d3521f77f648b -$ docker rm -f ebc4e7303a12c810c96a8434d5c76564d1e50dadf347acfd670d3521f77f648b +$ docker stop --time=1 1ad88c247d92c4cfa1d3dabc611c63315f1739785abb52f7068ef9d8ba0d7ee7 +$ docker rm -f 1ad88c247d92c4cfa1d3dabc611c63315f1739785abb52f7068ef9d8ba0d7ee7 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index e162b7c..780eae9 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -1,5 +1,4 @@ Started by user Long Vu -Replayed #246 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -20,7 +19,7 @@ Obtained Jenkinsfile from daaa4896c7358eff3a7bd6434617b4af06c89e42 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -37,2574 +36,17836 @@ Checking out Revision daaa4896c7358eff3a7bd6434617b4af06c89e42 (new-docker-build Commit message: "docker: attempt to fix "Plugin 'jupyterlab_dash' is already registered."" > git config core.sparsecheckout # timeout=10 > git checkout -f daaa4896c7358eff3a7bd6434617b4af06c89e42 # timeout=10 - > git rev-list --no-walk daaa4896c7358eff3a7bd6434617b4af06c89e42 # timeout=10 + > git rev-list --no-walk 4f2c0995711f5b6db82991065a652ea056778a2a # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-231107-update240306 ++ docker inspect -f . pavics/workflow-tests:py310-240306 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-231107-update240306 cat -$ docker top afee8048e2b4deaf0609277fd962ea28b5c30bfa175abfd9c040c3676602ff2d -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240306 cat +$ docker top b411d488c542a4bdbdc744f27a68a543433da316133264e74a522e46b73d9a9b -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-07T16:18:10.123Z] Timeout set to expire in 2 hr 0 min +[2024-03-07T16:13:25.647Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-07T16:18:10.906Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-03-07T16:13:26.356Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-07T16:18:11.356Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-07T16:18:11.356Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-07T16:18:11.356Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-07T16:18:11.356Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-07T16:18:11.356Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-07T16:18:11.356Z] FINCH_BRANCH has been set to 'master' -[2024-03-07T16:18:11.356Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-07T16:18:11.356Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-07T16:18:11.356Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-07T16:18:11.356Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-07T16:18:11.356Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-07T16:18:11.356Z] RAVEN_BRANCH has been set to 'main' -[2024-03-07T16:18:11.356Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-07T16:18:11.356Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-07T16:18:11.356Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-07T16:18:11.356Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-07T16:18:11.356Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-07T16:18:11.356Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-07T16:18:11.356Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-07T16:18:11.356Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-07T16:18:11.356Z] + git clean -fdx -[2024-03-07T16:18:11.922Z] Removing .pytest_cache/ -[2024-03-07T16:18:11.922Z] Removing PAVICS-landing-master/ -[2024-03-07T16:18:11.922Z] Removing RavenPy-fix_docs/ -[2024-03-07T16:18:11.922Z] Removing __pycache__/ -[2024-03-07T16:18:11.922Z] Removing buildout/ -[2024-03-07T16:18:11.922Z] Removing esgf-compute-api-devel/ -[2024-03-07T16:18:11.922Z] Removing finch-master/ -[2024-03-07T16:18:11.922Z] Removing pavics-sdi-master/ -[2024-03-07T16:18:11.922Z] Removing raven-master/ -[2024-03-07T16:18:11.922Z] + ./downloadrepos -[2024-03-07T16:18:11.922Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-07T16:18:11.922Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-07T16:18:11.922Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-07T16:18:11.922Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-07T16:18:11.922Z] FINCH_BRANCH has been set to 'master' -[2024-03-07T16:18:11.922Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-07T16:18:11.922Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-07T16:18:11.922Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-07T16:18:11.922Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-07T16:18:11.922Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-07T16:18:11.922Z] RAVEN_BRANCH has been set to 'main' -[2024-03-07T16:18:11.922Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-07T16:18:11.922Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-07T16:18:11.922Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-07T16:18:11.922Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-07T16:18:11.922Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-07T16:18:11.922Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-07T16:18:11.922Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-07T16:18:11.922Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-07T16:18:11.922Z] + rm -rf pavics-sdi-* -[2024-03-07T16:18:11.922Z] + ls -[2024-03-07T16:18:11.922Z] + grep pavics-sdi -[2024-03-07T16:18:11.922Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-03-07T16:18:11.922Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-07T16:18:11.922Z] + shift -[2024-03-07T16:18:11.922Z] + branch=master -[2024-03-07T16:18:11.922Z] + shift -[2024-03-07T16:18:11.922Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-03-07T16:18:11.922Z] + tar xz -[2024-03-07T16:18:15.266Z] + ls -[2024-03-07T16:18:15.266Z] + grep pavics-sdi -[2024-03-07T16:18:15.266Z] pavics-sdi-master -[2024-03-07T16:18:15.266Z] + set +x -[2024-03-07T16:18:15.266Z] + rm -rf finch-* -[2024-03-07T16:18:15.266Z] + ls -[2024-03-07T16:18:15.266Z] + grep finch -[2024-03-07T16:18:15.266Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-07T16:18:15.266Z] + github_repo=https://github.com/bird-house/finch -[2024-03-07T16:18:15.266Z] + shift -[2024-03-07T16:18:15.266Z] + branch=master -[2024-03-07T16:18:15.266Z] + shift -[2024-03-07T16:18:15.266Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-03-07T16:18:15.266Z] + tar xz -[2024-03-07T16:18:16.633Z] + ls -[2024-03-07T16:18:16.633Z] + grep finch -[2024-03-07T16:18:16.633Z] finch-master -[2024-03-07T16:18:16.633Z] + set +x -[2024-03-07T16:18:16.633Z] + rm -rf PAVICS-landing-* -[2024-03-07T16:18:16.633Z] + ls -[2024-03-07T16:18:16.633Z] + grep PAVICS-landing -[2024-03-07T16:18:16.633Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-03-07T16:18:16.633Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-07T16:18:16.633Z] + shift -[2024-03-07T16:18:16.633Z] + branch=master -[2024-03-07T16:18:16.633Z] + shift -[2024-03-07T16:18:16.633Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-03-07T16:18:16.633Z] + tar xz -[2024-03-07T16:18:38.543Z] + ls -[2024-03-07T16:18:38.543Z] + grep PAVICS-landing -[2024-03-07T16:18:38.543Z] PAVICS-landing-master -[2024-03-07T16:18:38.543Z] + set +x -[2024-03-07T16:18:38.543Z] + rm -rf raven-* -[2024-03-07T16:18:38.543Z] + ls -[2024-03-07T16:18:38.543Z] + grep raven -[2024-03-07T16:18:38.543Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-07T16:18:38.543Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-07T16:18:38.543Z] + shift -[2024-03-07T16:18:38.543Z] + branch=main -[2024-03-07T16:18:38.543Z] + shift -[2024-03-07T16:18:38.543Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-07T16:18:38.543Z] + tar xz -[2024-03-07T16:18:38.543Z] + ls -[2024-03-07T16:18:38.543Z] + grep raven -[2024-03-07T16:18:38.543Z] raven-main -[2024-03-07T16:18:38.543Z] + set +x -[2024-03-07T16:18:38.543Z] + rm -rf RavenPy-* -[2024-03-07T16:18:38.543Z] + ls -[2024-03-07T16:18:38.543Z] + grep RavenPy -[2024-03-07T16:18:38.543Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-07T16:18:38.543Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-07T16:18:38.543Z] + shift -[2024-03-07T16:18:38.543Z] + branch=master -[2024-03-07T16:18:38.543Z] + shift -[2024-03-07T16:18:38.543Z] + + tar xz -[2024-03-07T16:18:38.543Z] wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-07T16:18:38.543Z] + ls -[2024-03-07T16:18:38.543Z] + grep RavenPy -[2024-03-07T16:18:38.543Z] RavenPy-master -[2024-03-07T16:18:38.543Z] + set +x -[2024-03-07T16:18:38.543Z] + rm -rf esgf-compute-api-* -[2024-03-07T16:18:38.543Z] + ls -[2024-03-07T16:18:38.543Z] + grep esgf-compute-api -[2024-03-07T16:18:38.543Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-07T16:18:38.543Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-07T16:18:38.543Z] + shift -[2024-03-07T16:18:38.543Z] + branch=devel -[2024-03-07T16:18:38.543Z] + shift -[2024-03-07T16:18:38.543Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-03-07T16:18:38.543Z] + tar xz -[2024-03-07T16:18:39.923Z] + ls -[2024-03-07T16:18:39.923Z] + grep esgf-compute-api -[2024-03-07T16:18:39.923Z] esgf-compute-api-devel -[2024-03-07T16:18:39.923Z] + set +x -[2024-03-07T16:18:39.923Z] + echo master -[2024-03-07T16:18:39.923Z] + sed s@/@-@g -[2024-03-07T16:18:39.923Z] + PAVICS_SDI_BRANCH=master -[2024-03-07T16:18:39.923Z] + echo Ouranosinc/pavics-sdi -[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g -[2024-03-07T16:18:39.923Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-07T16:18:39.923Z] + echo master -[2024-03-07T16:18:39.923Z] + sed s@/@-@g -[2024-03-07T16:18:39.923Z] + FINCH_BRANCH=master -[2024-03-07T16:18:39.923Z] + echo bird-house/finch -[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g -[2024-03-07T16:18:39.923Z] + FINCH_REPO_NAME=finch -[2024-03-07T16:18:39.923Z] + echo master -[2024-03-07T16:18:39.923Z] + sed s@/@-@g -[2024-03-07T16:18:39.923Z] + PAVICS_LANDING_BRANCH=master -[2024-03-07T16:18:39.923Z] + echo Ouranosinc/PAVICS-landing -[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g -[2024-03-07T16:18:39.923Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-07T16:18:39.923Z] + echo main -[2024-03-07T16:18:39.923Z] + sed s@/@-@g -[2024-03-07T16:18:39.923Z] + RAVEN_BRANCH=main -[2024-03-07T16:18:39.923Z] + echo Ouranosinc/raven -[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g -[2024-03-07T16:18:39.923Z] + RAVEN_REPO_NAME=raven -[2024-03-07T16:18:39.923Z] + echo master -[2024-03-07T16:18:39.923Z] + sed s@/@-@g -[2024-03-07T16:18:39.923Z] + RAVENPY_BRANCH=master -[2024-03-07T16:18:39.923Z] + echo CSHS-CWRA/RavenPy -[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g -[2024-03-07T16:18:39.923Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-07T16:18:39.923Z] + echo devel -[2024-03-07T16:18:39.923Z] + sed s@/@-@g -[2024-03-07T16:18:39.923Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-07T16:18:39.923Z] + echo ESGF/esgf-compute-api -[2024-03-07T16:18:39.923Z] + sed s@^.*/@@g -[2024-03-07T16:18:39.923Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-07T16:18:39.923Z] + echo pavics-sdi-master -[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:18:39.924Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-03-07T16:18:39.924Z] + echo finch-master -[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:18:39.924Z] + FINCH_DIR=finch-master -[2024-03-07T16:18:39.924Z] + echo PAVICS-landing-master -[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:18:39.924Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-03-07T16:18:39.924Z] + echo raven-main -[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:18:39.924Z] + RAVEN_DIR=raven-main -[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:18:39.924Z] + echo RavenPy-master -[2024-03-07T16:18:39.924Z] + RAVENPY_DIR=RavenPy-master -[2024-03-07T16:18:39.924Z] + echo esgf-compute-api-devel -[2024-03-07T16:18:39.924Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:18:39.924Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-07T16:18:39.924Z] + echo true -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + VERIFY_SSL=true -[2024-03-07T16:18:39.924Z] + [ xtrue = xfalse ] -[2024-03-07T16:18:39.924Z] + rm -v finch-master/setup.cfg -[2024-03-07T16:18:39.924Z] removed 'finch-master/setup.cfg' -[2024-03-07T16:18:39.924Z] + rm -v raven-main/setup.cfg -[2024-03-07T16:18:39.924Z] removed 'raven-main/setup.cfg' -[2024-03-07T16:18:39.924Z] + rm -v raven-main/pyproject.toml -[2024-03-07T16:18:39.924Z] removed 'raven-main/pyproject.toml' -[2024-03-07T16:18:39.924Z] + rm -v RavenPy-master/setup.cfg -[2024-03-07T16:18:39.924Z] removed 'RavenPy-master/setup.cfg' -[2024-03-07T16:18:39.924Z] + rm -v RavenPy-master/tox.ini -[2024-03-07T16:18:39.924Z] removed 'RavenPy-master/tox.ini' -[2024-03-07T16:18:39.924Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-07T16:18:39.924Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-07T16:18:39.924Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-07T16:18:39.924Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-07T16:18:39.924Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-07T16:18:39.924Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-07T16:18:39.924Z] + echo false -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + TEST_MAGPIE_AUTH=false -[2024-03-07T16:18:39.924Z] + echo false -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + TEST_PAVICS_SDI_REPO=false -[2024-03-07T16:18:39.924Z] + echo false -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-07T16:18:39.924Z] + echo false -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + TEST_FINCH_REPO=false -[2024-03-07T16:18:39.924Z] + echo false -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + TEST_PAVICS_LANDING_REPO=false -[2024-03-07T16:18:39.924Z] + echo true -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + TEST_RAVEN_REPO=true -[2024-03-07T16:18:39.924Z] + echo true -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + TEST_RAVENPY_REPO=true -[2024-03-07T16:18:39.924Z] + echo false -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-07T16:18:39.924Z] + echo true -[2024-03-07T16:18:39.924Z] + tr [:upper:] [:lower:] -[2024-03-07T16:18:39.924Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= -[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] -[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] -[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] -[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] -[2024-03-07T16:18:39.924Z] + [ xtrue = xtrue ] -[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-03-07T16:18:39.924Z] + [ xtrue = xtrue ] -[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-03-07T16:18:39.924Z] + [ xfalse = xtrue ] -[2024-03-07T16:18:39.924Z] + [ xtrue = xtrue ] -[2024-03-07T16:18:39.924Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb notebooks/*.ipynb -[2024-03-07T16:18:39.924Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb notebooks/*.ipynb -[2024-03-07T16:18:39.924Z] + [ -n ] -[2024-03-07T16:18:39.924Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-07T16:18:39.924Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-07T16:18:39.924Z] Will run notebooks against pavics.ouranos.ca -[2024-03-07T16:18:39.924Z] + [ -z ] -[2024-03-07T16:18:39.924Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-03-07T16:18:39.924Z] + git diff -[2024-03-07T16:18:39.924Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-07T16:18:39.925Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-03-07T16:18:41.826Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-07T16:18:41.826Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-07T16:18:42.093Z] ============================= test session starts ============================== -[2024-03-07T16:18:42.093Z] platform linux -- Python 3.10.13, pytest-7.4.3, pluggy-1.3.0 -[2024-03-07T16:18:42.093Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 -[2024-03-07T16:18:42.093Z] plugins: anyio-4.0.0, dash-2.14.1, nbval-0.10.0, tornasync-0.6.0.post2, xdist-3.3.1 -[2024-03-07T16:18:42.093Z] collected 260 items -[2024-03-07T16:18:42.093Z] -[2024-03-07T16:18:52.404Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-03-07T16:18:54.350Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 3%] -[2024-03-07T16:19:06.828Z] ...... [ 6%] -[2024-03-07T16:19:08.722Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 8%] -[2024-03-07T16:19:08.722Z] [ 8%] -[2024-03-07T16:19:10.877Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-03-07T16:19:19.096Z] .... [ 11%] -[2024-03-07T16:19:29.063Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 11%] -[2024-03-07T16:19:33.671Z] ....FFFF.FF.F [ 16%] -[2024-03-07T16:20:18.416Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb .......FF [ 20%] -[2024-03-07T16:21:36.886Z] .F [ 21%] -[2024-03-07T16:21:40.744Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 22%] -[2024-03-07T16:21:49.421Z] ..FFFFFFFF....... [ 28%] -[2024-03-07T16:21:56.579Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 29%] -[2024-03-07T16:22:06.651Z] ........... [ 33%] -[2024-03-07T16:22:17.210Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 36%] -[2024-03-07T16:22:22.585Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 36%] -[2024-03-07T16:22:29.730Z] ..... [ 38%] -[2024-03-07T16:22:31.694Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 38%] -[2024-03-07T16:26:37.370Z] ................. [ 45%] -[2024-03-07T16:26:42.627Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 45%] -[2024-03-07T16:26:49.914Z] .... [ 47%] -[2024-03-07T16:27:48.210Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 50%] -[2024-03-07T16:28:01.148Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 51%] -[2024-03-07T16:28:47.066Z] ...... [ 53%] -[2024-03-07T16:28:57.054Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 53%] -[2024-03-07T16:29:07.383Z] ....... [ 56%] -[2024-03-07T16:29:15.304Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 58%] -[2024-03-07T16:29:35.867Z] .... [ 59%] -[2024-03-07T16:29:43.996Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 60%] -[2024-03-07T16:30:08.000Z] ....... [ 62%] -[2024-03-07T16:30:11.284Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 63%] -[2024-03-07T16:30:40.676Z] ....... [ 65%] -[2024-03-07T16:30:43.214Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 67%] -[2024-03-07T16:30:55.526Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 68%] -[2024-03-07T16:31:03.389Z] .... [ 69%] -[2024-03-07T16:32:00.621Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 70%] -[2024-03-07T16:32:26.129Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 73%] -[2024-03-07T16:32:26.129Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 73%] -[2024-03-07T16:32:39.765Z] ............. [ 78%] -[2024-03-07T16:32:57.288Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 80%] -[2024-03-07T16:33:06.431Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 85%] -[2024-03-07T16:33:18.620Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 85%] -[2024-03-07T16:34:35.719Z] ......FFFFFFFFFFFFFF [ 93%] -[2024-03-07T16:34:38.285Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-03-07T16:36:33.237Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] =================================== FAILURES =================================== -[2024-03-07T16:36:33.237Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ -[2024-03-07T16:36:33.237Z] Notebook cell execution failed -[2024-03-07T16:36:33.237Z] Cell 5: Cell execution caused an exception -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] Input: -[2024-03-07T16:36:33.237Z] features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-07T16:36:33.237Z] grid = raster[0] -[2024-03-07T16:36:33.237Z] grid.plot() -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] Traceback: -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.237Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:36:33.237Z] Cell In[1], line 1 -[2024-03-07T16:36:33.237Z] ----> 1 features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-07T16:36:33.237Z]  2 grid = raster[0] -[2024-03-07T16:36:33.237Z]  3 grid.plot() -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-07T16:36:33.237Z]  38 if not self.isSucceded(): -[2024-03-07T16:36:33.237Z]  39 # TODO: add reason for failure -[2024-03-07T16:36:33.237Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-07T16:36:33.237Z] ---> 41 return self._make_output(asobj) -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-07T16:36:33.237Z]  44 Output = namedtuple( -[2024-03-07T16:36:33.237Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:36:33.237Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:36:33.237Z]  47 ) -[2024-03-07T16:36:33.237Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:36:33.237Z]  49 return Output( -[2024-03-07T16:36:33.237Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:36:33.237Z]  51 ) -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-07T16:36:33.237Z]  44 Output = namedtuple( -[2024-03-07T16:36:33.237Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:36:33.237Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:36:33.237Z]  47 ) -[2024-03-07T16:36:33.237Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:36:33.237Z]  49 return Output( -[2024-03-07T16:36:33.237Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:36:33.237Z]  51 ) -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-07T16:36:33.237Z]  68 return delist(data) -[2024-03-07T16:36:33.237Z]  70 if convert_objects: -[2024-03-07T16:36:33.237Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-07T16:36:33.237Z]  72 else: -[2024-03-07T16:36:33.237Z]  73 return output.reference -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) -[2024-03-07T16:36:33.237Z]  374 out = converter.convert() -[2024-03-07T16:36:33.237Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:36:33.237Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-07T16:36:33.237Z]  377 return out -[2024-03-07T16:36:33.237Z]  379 except (ImportError, NotImplementedError): -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) -[2024-03-07T16:36:33.237Z]  374 out = converter.convert() -[2024-03-07T16:36:33.237Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:36:33.237Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-07T16:36:33.237Z]  377 return out -[2024-03-07T16:36:33.237Z]  379 except (ImportError, NotImplementedError): -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.237Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-07T16:36:33.237Z]  372 try: -[2024-03-07T16:36:33.237Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-07T16:36:33.237Z] --> 374 out = converter.convert() -[2024-03-07T16:36:33.237Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:36:33.237Z]  376 out = [convert(o, path) for o in out] -[2024-03-07T16:36:33.237Z] -[2024-03-07T16:36:33.238Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-07T16:36:33.238Z]  263 import xarray # isort: skip -[2024-03-07T16:36:33.238Z]  264 import rioxarray # noqa -[2024-03-07T16:36:33.238Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 _ -[2024-03-07T16:36:33.238Z] Notebook cell execution failed -[2024-03-07T16:36:33.238Z] Cell 6: Cell execution caused an exception -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] Input: -[2024-03-07T16:36:33.238Z] lu = statistics[0] -[2024-03-07T16:36:33.238Z] total = sum(lu.values()) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] land_use = {k: (v / total) for (k, v) in lu.items()} -[2024-03-07T16:36:33.238Z] display("Land use ratios", land_use) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} -[2024-03-07T16:36:33.238Z] display("Land use percentages", land_use_pct) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] Traceback: -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.238Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.238Z] Cell In[1], line 1 -[2024-03-07T16:36:33.238Z] ----> 1 lu = statistics[0] -[2024-03-07T16:36:33.238Z]  2 total = sum(lu.values()) -[2024-03-07T16:36:33.238Z]  4 land_use = {k: (v / total) for (k, v) in lu.items()} -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] NameError: name 'statistics' is not defined -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ -[2024-03-07T16:36:33.238Z] Notebook cell execution failed -[2024-03-07T16:36:33.238Z] Cell 7: Cell execution caused an exception -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] Input: -[2024-03-07T16:36:33.238Z] unique, counts = np.unique(grid, return_counts=True) -[2024-03-07T16:36:33.238Z] print("The land-use categories available are: " + str(unique)) -[2024-03-07T16:36:33.238Z] print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] # Pixels values at '127' are NaN and can be ignored. -[2024-03-07T16:36:33.238Z] from matplotlib.colors import Normalize -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] norm = Normalize() -[2024-03-07T16:36:33.238Z] norm.autoscale(unique[:-1]) -[2024-03-07T16:36:33.238Z] cm = mpl.colormaps["tab20"] -[2024-03-07T16:36:33.238Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] # plt.bar(unique[:-1], counts[:-1]) -[2024-03-07T16:36:33.238Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) -[2024-03-07T16:36:33.238Z] plt.xlabel("Land-use categories") -[2024-03-07T16:36:33.238Z] plt.ylabel("Number of pixels") -[2024-03-07T16:36:33.238Z] plt.show() -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") -[2024-03-07T16:36:33.238Z] grid.name = "Land-use categories" -[2024-03-07T16:36:33.238Z] plt.show() -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] Traceback: -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.238Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.238Z] Cell In[1], line 1 -[2024-03-07T16:36:33.238Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) -[2024-03-07T16:36:33.238Z]  2 print("The land-use categories available are: " + str(unique)) -[2024-03-07T16:36:33.238Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] NameError: name 'grid' is not defined -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ -[2024-03-07T16:36:33.238Z] Notebook cell execution failed -[2024-03-07T16:36:33.238Z] Cell 8: Cell execution caused an exception -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] Input: -[2024-03-07T16:36:33.238Z] import cartopy.crs as ccrs -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] # Set a CRS transformation: -[2024-03-07T16:36:33.238Z] crs = ccrs.LambertConformal( -[2024-03-07T16:36:33.238Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-07T16:36:33.238Z] ) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] ax = plt.subplot(projection=crs) -[2024-03-07T16:36:33.238Z] grid.name = "Land-use categories" -[2024-03-07T16:36:33.238Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-07T16:36:33.238Z] plt.show() -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] Traceback: -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.238Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.238Z] Cell In[1], line 9 -[2024-03-07T16:36:33.238Z]  4 crs = ccrs.LambertConformal( -[2024-03-07T16:36:33.238Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-07T16:36:33.238Z]  6 ) -[2024-03-07T16:36:33.238Z]  8 ax = plt.subplot(projection=crs) -[2024-03-07T16:36:33.238Z] ----> 9 grid.name = "Land-use categories" -[2024-03-07T16:36:33.238Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-07T16:36:33.238Z]  11 plt.show() -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] NameError: name 'grid' is not defined -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 _ -[2024-03-07T16:36:33.238Z] Notebook cell execution failed -[2024-03-07T16:36:33.238Z] Cell 10: Cell execution caused an exception -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] Input: -[2024-03-07T16:36:33.238Z] properties, dem = terrain_resp.get(asobj=True) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] elevation = properties[0]["elevation"] -[2024-03-07T16:36:33.238Z] slope = properties[0]["slope"] -[2024-03-07T16:36:33.238Z] aspect = properties[0]["aspect"] -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} -[2024-03-07T16:36:33.238Z] display(terrain) -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] Traceback: -[2024-03-07T16:36:33.238Z] -[2024-03-07T16:36:33.238Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.238Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:36:33.238Z] Cell In[1], line 1 -[2024-03-07T16:36:33.239Z] ----> 1 properties, dem = terrain_resp.get(asobj=True) -[2024-03-07T16:36:33.239Z]  3 elevation = properties[0]["elevation"] -[2024-03-07T16:36:33.239Z]  4 slope = properties[0]["slope"] -[2024-03-07T16:36:33.239Z] -[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-07T16:36:33.239Z]  38 if not self.isSucceded(): -[2024-03-07T16:36:33.239Z]  39 # TODO: add reason for failure -[2024-03-07T16:36:33.239Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-07T16:36:33.239Z] ---> 41 return self._make_output(asobj) -[2024-03-07T16:36:33.239Z] -[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-07T16:36:33.239Z]  44 Output = namedtuple( -[2024-03-07T16:36:33.239Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:36:33.239Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:36:33.239Z]  47 ) -[2024-03-07T16:36:33.239Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:36:33.239Z]  49 return Output( -[2024-03-07T16:36:33.239Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:36:33.239Z]  51 ) -[2024-03-07T16:36:33.239Z] -[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-07T16:36:33.239Z]  44 Output = namedtuple( -[2024-03-07T16:36:33.239Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:36:33.239Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:36:33.239Z]  47 ) -[2024-03-07T16:36:33.239Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:36:33.239Z]  49 return Output( -[2024-03-07T16:36:33.239Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:36:33.239Z]  51 ) -[2024-03-07T16:36:33.239Z] -[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-07T16:36:33.239Z]  68 return delist(data) -[2024-03-07T16:36:33.239Z]  70 if convert_objects: -[2024-03-07T16:36:33.239Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-07T16:36:33.239Z]  72 else: -[2024-03-07T16:36:33.239Z]  73 return output.reference -[2024-03-07T16:36:33.239Z] -[2024-03-07T16:36:33.239Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-07T16:36:33.239Z]  372 try: -[2024-03-07T16:36:33.239Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-07T16:36:33.239Z] --> 374 out = converter.convert() -[2024-03-07T16:36:33.239Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:36:33.239Z]  376 out = [convert(o, path) for o in out] -[2024-03-07T16:36:33.239Z] -[2024-03-07T16:36:33.240Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-07T16:36:33.240Z]  263 import xarray # isort: skip -[2024-03-07T16:36:33.240Z]  264 import rioxarray # noqa -[2024-03-07T16:36:33.240Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ -[2024-03-07T16:36:33.240Z] Notebook cell execution failed -[2024-03-07T16:36:33.240Z] Cell 11: Cell execution caused an exception -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] Input: -[2024-03-07T16:36:33.240Z] crs = ccrs.LambertConformal( -[2024-03-07T16:36:33.240Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-07T16:36:33.240Z] ) -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] dem.name = "Elevation" -[2024-03-07T16:36:33.240Z] dem.attrs["units"] = "m" -[2024-03-07T16:36:33.240Z] ax = plt.subplot(projection=crs) -[2024-03-07T16:36:33.240Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") -[2024-03-07T16:36:33.240Z] plt.show() -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] Traceback: -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.240Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.240Z] Cell In[1], line 5 -[2024-03-07T16:36:33.240Z]  1 crs = ccrs.LambertConformal( -[2024-03-07T16:36:33.240Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-07T16:36:33.240Z]  3 ) -[2024-03-07T16:36:33.240Z] ----> 5 dem.name = "Elevation" -[2024-03-07T16:36:33.240Z]  6 dem.attrs["units"] = "m" -[2024-03-07T16:36:33.240Z]  7 ax = plt.subplot(projection=crs) -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] NameError: name 'dem' is not defined -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 _ -[2024-03-07T16:36:33.240Z] Notebook cell execution failed -[2024-03-07T16:36:33.240Z] Cell 13: Cell execution caused an exception -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] Input: -[2024-03-07T16:36:33.240Z] all_properties = {**shape_info, **land_use, **terrain} -[2024-03-07T16:36:33.240Z] display(all_properties) -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] Traceback: -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.240Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.240Z] Cell In[1], line 1 -[2024-03-07T16:36:33.240Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} -[2024-03-07T16:36:33.240Z]  2 display(all_properties) -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] NameError: name 'land_use' is not defined -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] ____ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 7 ____ -[2024-03-07T16:36:33.240Z] Notebook cell execution failed -[2024-03-07T16:36:33.240Z] Cell 7: Cell execution caused an exception -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] Input: -[2024-03-07T16:36:33.240Z] with xr.set_options(keep_attrs=True): -[2024-03-07T16:36:33.240Z] # Average the variables -[2024-03-07T16:36:33.240Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-03-07T16:36:33.240Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-03-07T16:36:33.240Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-07T16:36:33.240Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-07T16:36:33.240Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-07T16:36:33.240Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-03-07T16:36:33.240Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] Traceback: -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.240Z] KeyError Traceback (most recent call last) -[2024-03-07T16:36:33.240Z] Cell In[1], line 8 -[2024-03-07T16:36:33.240Z]  5 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-07T16:36:33.240Z]  7 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-07T16:36:33.240Z] ----> 8 ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-07T16:36:33.240Z]  10 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-07T16:36:33.240Z]  11 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-07T16:36:33.240Z] -[2024-03-07T16:36:33.240Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-03-07T16:36:33.240Z]  851 self.coords[key] = value -[2024-03-07T16:36:33.240Z]  852 else: -[2024-03-07T16:36:33.240Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-03-07T16:36:33.240Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-03-07T16:36:33.241Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-03-07T16:36:33.241Z] --> 856 obj = self[key] -[2024-03-07T16:36:33.241Z]  857 if isinstance(value, DataArray): -[2024-03-07T16:36:33.241Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-03-07T16:36:33.241Z] -[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-03-07T16:36:33.241Z]  844 return self._getitem_coord(key) -[2024-03-07T16:36:33.241Z]  845 else: -[2024-03-07T16:36:33.241Z]  846 # xarray-style array indexing -[2024-03-07T16:36:33.241Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-03-07T16:36:33.241Z] -[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-03-07T16:36:33.241Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-03-07T16:36:33.241Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-03-07T16:36:33.241Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-03-07T16:36:33.241Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-03-07T16:36:33.241Z]  1447  ) -[2024-03-07T16:36:33.241Z]  1448 return self._from_temp_dataset(ds) -[2024-03-07T16:36:33.241Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-03-07T16:36:33.241Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-03-07T16:36:33.241Z] -[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-03-07T16:36:33.241Z]  2926 var_indexers = { -[2024-03-07T16:36:33.241Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-03-07T16:36:33.241Z]  2928 } -[2024-03-07T16:36:33.241Z]  2929 if var_indexers: -[2024-03-07T16:36:33.241Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-03-07T16:36:33.241Z]  2931 # drop scalar coordinates -[2024-03-07T16:36:33.241Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-03-07T16:36:33.241Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-03-07T16:36:33.241Z] -[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-03-07T16:36:33.241Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-03-07T16:36:33.241Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-03-07T16:36:33.241Z] -> 1368 return self[key] -[2024-03-07T16:36:33.241Z] -[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-03-07T16:36:33.241Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-03-07T16:36:33.241Z]  879  """Return a new Variable object whose contents are consistent with -[2024-03-07T16:36:33.241Z]  880  getting the provided key from the underlying data. -[2024-03-07T16:36:33.241Z]  881 -[2024-03-07T16:36:33.241Z]  (...) -[2024-03-07T16:36:33.241Z]  889  array `x.values` directly. -[2024-03-07T16:36:33.241Z]  890  """ -[2024-03-07T16:36:33.241Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-03-07T16:36:33.241Z]  892 data = as_indexable(self._data)[indexer] -[2024-03-07T16:36:33.241Z]  893 if new_order: -[2024-03-07T16:36:33.241Z] -[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-03-07T16:36:33.241Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-03-07T16:36:33.241Z]  722 return self._broadcast_indexes_basic(key) -[2024-03-07T16:36:33.241Z] --> 724 self._validate_indexers(key) -[2024-03-07T16:36:33.241Z]  725 # Detect it can be mapped as an outer indexer -[2024-03-07T16:36:33.241Z]  726 # If all key is unlabeled, or -[2024-03-07T16:36:33.241Z]  727 # key can be mapped as an OuterIndexer. -[2024-03-07T16:36:33.241Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-03-07T16:36:33.241Z] -[2024-03-07T16:36:33.241Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-03-07T16:36:33.241Z]  771 raise IndexError( -[2024-03-07T16:36:33.241Z]  772 "{}-dimensional boolean indexing is " -[2024-03-07T16:36:33.241Z]  773 "not supported. ".format(k.ndim) -[2024-03-07T16:36:33.241Z]  774 ) -[2024-03-07T16:36:33.241Z]  775 if is_duck_dask_array(k.data): -[2024-03-07T16:36:33.241Z] --> 776 raise KeyError( -[2024-03-07T16:36:33.241Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-03-07T16:36:33.242Z]  778 "This will result in a dask array of unknown shape. " -[2024-03-07T16:36:33.242Z]  779 "Such arrays are unsupported by Xarray." -[2024-03-07T16:36:33.242Z]  780 "Please compute the indexer first using .compute()" -[2024-03-07T16:36:33.242Z]  781 ) -[2024-03-07T16:36:33.242Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-03-07T16:36:33.242Z]  783 raise IndexError( -[2024-03-07T16:36:33.242Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-03-07T16:36:33.242Z]  785 "same dimension to the indexed array. Indexer is " -[2024-03-07T16:36:33.242Z]  (...) -[2024-03-07T16:36:33.242Z]  788 ) -[2024-03-07T16:36:33.242Z]  789 ) -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] ____ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 8 ____ -[2024-03-07T16:36:33.242Z] Notebook cell execution failed -[2024-03-07T16:36:33.242Z] Cell 8: Cell execution caused an exception -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] Input: -[2024-03-07T16:36:33.242Z] # Check and see if the precipitation makes sense: -[2024-03-07T16:36:33.242Z] ERA5_pr.pr.plot() -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] Traceback: -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.242Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:36:33.242Z] Cell In[1], line 2 -[2024-03-07T16:36:33.242Z]  1 # Check and see if the precipitation makes sense: -[2024-03-07T16:36:33.242Z] ----> 2 ERA5_pr.pr.plot() -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-03-07T16:36:33.242Z]  275 with suppress(KeyError): -[2024-03-07T16:36:33.242Z]  276 return source[name] -[2024-03-07T16:36:33.242Z] --> 277 raise AttributeError( -[2024-03-07T16:36:33.242Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-03-07T16:36:33.242Z]  279 ) -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] AttributeError: 'DataArray' object has no attribute 'pr' -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] ___ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 10 ____ -[2024-03-07T16:36:33.242Z] Notebook cell execution failed -[2024-03-07T16:36:33.242Z] Cell 10: Cell execution caused an exception -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] Input: -[2024-03-07T16:36:33.242Z] # Option 2, which is recommended, in which we prepare a single file that merges all three variables into one netcdf file: -[2024-03-07T16:36:33.242Z] with xr.set_options(keep_attrs=True): -[2024-03-07T16:36:33.242Z] xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]).to_netcdf(tmp / "ERA5_weather_data.nc") -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] Traceback: -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.242Z] MergeError Traceback (most recent call last) -[2024-03-07T16:36:33.242Z] Cell In[1], line 3 -[2024-03-07T16:36:33.242Z]  1 # Option 2, which is recommended, in which we prepare a single file that merges all three variables into one netcdf file: -[2024-03-07T16:36:33.242Z]  2 with xr.set_options(keep_attrs=True): -[2024-03-07T16:36:33.242Z] ----> 3 xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]).to_netcdf(tmp / "ERA5_weather_data.nc") -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:992, in merge(objects, compat, join, fill_value, combine_attrs) -[2024-03-07T16:36:33.242Z]  989 obj = obj.to_dataset() -[2024-03-07T16:36:33.242Z]  990 dict_like_objects.append(obj) -[2024-03-07T16:36:33.242Z] --> 992 merge_result = merge_core( -[2024-03-07T16:36:33.242Z]  993  dict_like_objects, -[2024-03-07T16:36:33.242Z]  994  compat, -[2024-03-07T16:36:33.242Z]  995  join, -[2024-03-07T16:36:33.242Z]  996  combine_attrs=combine_attrs, -[2024-03-07T16:36:33.242Z]  997  fill_value=fill_value, -[2024-03-07T16:36:33.242Z]  998 ) -[2024-03-07T16:36:33.242Z]  999 return Dataset._construct_direct(**merge_result._asdict()) -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:719, in merge_core(objects, compat, join, combine_attrs, priority_arg, explicit_coords, indexes, fill_value, skip_align_args) -[2024-03-07T16:36:33.242Z]  717 collected = collect_variables_and_indexes(aligned, indexes=indexes) -[2024-03-07T16:36:33.242Z]  718 prioritized = _get_priority_vars_and_indexes(aligned, priority_arg, compat=compat) -[2024-03-07T16:36:33.242Z] --> 719 variables, out_indexes = merge_collected( -[2024-03-07T16:36:33.242Z]  720  collected, prioritized, compat=compat, combine_attrs=combine_attrs -[2024-03-07T16:36:33.242Z]  721 ) -[2024-03-07T16:36:33.242Z]  723 dims = calculate_dimensions(variables) -[2024-03-07T16:36:33.242Z]  725 coord_names, noncoord_names = determine_coords(coerced) -[2024-03-07T16:36:33.242Z] -[2024-03-07T16:36:33.242Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:290, in merge_collected(grouped, prioritized, compat, combine_attrs, equals) -[2024-03-07T16:36:33.242Z]  288 variables = [variable for variable, _ in elements_list] -[2024-03-07T16:36:33.242Z]  289 try: -[2024-03-07T16:36:33.242Z] --> 290 merged_vars[name] = unique_variable( -[2024-03-07T16:36:33.242Z]  291  name, variables, compat, equals.get(name, None) -[2024-03-07T16:36:33.242Z]  292  ) -[2024-03-07T16:36:33.243Z]  293 except MergeError: -[2024-03-07T16:36:33.243Z]  294 if compat != "minimal": -[2024-03-07T16:36:33.243Z]  295 # we need more than "minimal" compatibility (for which -[2024-03-07T16:36:33.243Z]  296 # we drop conflicting coordinates) -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:144, in unique_variable(name, variables, compat, equals) -[2024-03-07T16:36:33.243Z]  141 break -[2024-03-07T16:36:33.243Z]  143 if not equals: -[2024-03-07T16:36:33.243Z] --> 144 raise MergeError( -[2024-03-07T16:36:33.243Z]  145 f"conflicting values for variable {name!r} on objects to be combined. " -[2024-03-07T16:36:33.243Z]  146 "You can skip this check by specifying compat='override'." -[2024-03-07T16:36:33.243Z]  147 ) -[2024-03-07T16:36:33.243Z]  149 if combine_method: -[2024-03-07T16:36:33.243Z]  150 for var in variables[1:]: -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] MergeError: conflicting values for variable 't2m' on objects to be combined. You can skip this check by specifying compat='override'. -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-03-07T16:36:33.243Z] Notebook cell execution failed -[2024-03-07T16:36:33.243Z] Cell 5: Cell execution caused an exception -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] Input: -[2024-03-07T16:36:33.243Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-03-07T16:36:33.243Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-03-07T16:36:33.243Z] from ravenpy import OutputReader -[2024-03-07T16:36:33.243Z] from ravenpy.ravenpy import run -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-03-07T16:36:33.243Z] run_name = run_name -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-03-07T16:36:33.243Z] # subfolder called "outputs" -[2024-03-07T16:36:33.243Z] configdir = workdir -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-07T16:36:33.243Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] # Get the outputs using the Output Reader object. -[2024-03-07T16:36:33.243Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] Traceback: -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.243Z] RavenError Traceback (most recent call last) -[2024-03-07T16:36:33.243Z] Cell In[1], line 14 -[2024-03-07T16:36:33.243Z]  11 configdir = workdir -[2024-03-07T16:36:33.243Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-07T16:36:33.243Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-07T16:36:33.243Z]  16 # Get the outputs using the Output Reader object. -[2024-03-07T16:36:33.243Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-07T16:36:33.243Z]  320 warn(msg, category=RavenWarning) -[2024-03-07T16:36:33.243Z]  322 if messages["ERROR"]: -[2024-03-07T16:36:33.243Z] --> 323 raise RavenError( -[2024-03-07T16:36:33.243Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-07T16:36:33.243Z]  325 ) -[2024-03-07T16:36:33.243Z]  327 if returncode != 0: -[2024-03-07T16:36:33.243Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] RavenError: Config directory: /tmp/NB4bks_mu30 -[2024-03-07T16:36:33.243Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-03-07T16:36:33.243Z] Notebook cell execution failed -[2024-03-07T16:36:33.243Z] Cell 6: Cell execution caused an exception -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] Input: -[2024-03-07T16:36:33.243Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-03-07T16:36:33.243Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-03-07T16:36:33.243Z] from ravenpy import Emulator -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] # Prepare the emulator by writing files on disk -[2024-03-07T16:36:33.243Z] e = Emulator(config=m) -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] # Run the model and get the outputs. -[2024-03-07T16:36:33.243Z] outputs = e.run() -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] Traceback: -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.243Z] RavenError Traceback (most recent call last) -[2024-03-07T16:36:33.243Z] Cell In[1], line 9 -[2024-03-07T16:36:33.243Z]  6 e = Emulator(config=m) -[2024-03-07T16:36:33.243Z]  8 # Run the model and get the outputs. -[2024-03-07T16:36:33.243Z] ----> 9 outputs = e.run() -[2024-03-07T16:36:33.243Z] -[2024-03-07T16:36:33.243Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-03-07T16:36:33.243Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-03-07T16:36:33.243Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-03-07T16:36:33.243Z]  66 self.write_rv(overwrite=overwrite) -[2024-03-07T16:36:33.243Z] ---> 68 self._output_path = run( -[2024-03-07T16:36:33.244Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-03-07T16:36:33.244Z]  70 ) -[2024-03-07T16:36:33.244Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-03-07T16:36:33.244Z]  72 return self._output -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-07T16:36:33.244Z]  320 warn(msg, category=RavenWarning) -[2024-03-07T16:36:33.244Z]  322 if messages["ERROR"]: -[2024-03-07T16:36:33.244Z] --> 323 raise RavenError( -[2024-03-07T16:36:33.244Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-07T16:36:33.244Z]  325 ) -[2024-03-07T16:36:33.244Z]  327 if returncode != 0: -[2024-03-07T16:36:33.244Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] RavenError: Config directory: /tmp/tmpdnqk_sqj -[2024-03-07T16:36:33.244Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-03-07T16:36:33.244Z] Notebook cell execution failed -[2024-03-07T16:36:33.244Z] Cell 7: Cell execution caused an exception -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Input: -[2024-03-07T16:36:33.244Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-07T16:36:33.244Z] outputs.files -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Traceback: -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.244Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.244Z] Cell In[1], line 2 -[2024-03-07T16:36:33.244Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-07T16:36:33.244Z] ----> 2 outputs.files -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] NameError: name 'outputs' is not defined -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-03-07T16:36:33.244Z] Notebook cell execution failed -[2024-03-07T16:36:33.244Z] Cell 8: Cell execution caused an exception -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Input: -[2024-03-07T16:36:33.244Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-07T16:36:33.244Z] print("----------------HYDROGRAPH----------------") -[2024-03-07T16:36:33.244Z] display(outputs.hydrograph) -[2024-03-07T16:36:33.244Z] print("") -[2024-03-07T16:36:33.244Z] print("-----------------STORAGE------------------") -[2024-03-07T16:36:33.244Z] display(outputs.storage) -[2024-03-07T16:36:33.244Z] print("") -[2024-03-07T16:36:33.244Z] print("-----------------SOLUTION-----------------") -[2024-03-07T16:36:33.244Z] display(outputs.solution) -[2024-03-07T16:36:33.244Z] print("") -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Traceback: -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.244Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.244Z] Cell In[1], line 3 -[2024-03-07T16:36:33.244Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-07T16:36:33.244Z]  2 print("----------------HYDROGRAPH----------------") -[2024-03-07T16:36:33.244Z] ----> 3 display(outputs.hydrograph) -[2024-03-07T16:36:33.244Z]  4 print("") -[2024-03-07T16:36:33.244Z]  5 print("-----------------STORAGE------------------") -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] NameError: name 'outputs' is not defined -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-03-07T16:36:33.244Z] Notebook cell execution failed -[2024-03-07T16:36:33.244Z] Cell 9: Cell execution caused an exception -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Input: -[2024-03-07T16:36:33.244Z] # Import the graphing utility built to handle Raven model outputs -[2024-03-07T16:36:33.244Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] hydrograph_objects = outputs.hydrograph -[2024-03-07T16:36:33.244Z] hydrographs(hydrograph_objects) -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Traceback: -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.244Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.244Z] Cell In[1], line 4 -[2024-03-07T16:36:33.244Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-03-07T16:36:33.244Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-07T16:36:33.244Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-03-07T16:36:33.244Z]  5 hydrographs(hydrograph_objects) -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] NameError: name 'outputs' is not defined -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-03-07T16:36:33.244Z] Notebook cell execution failed -[2024-03-07T16:36:33.244Z] Cell 10: Cell execution caused an exception -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Input: -[2024-03-07T16:36:33.244Z] outputs.hydrograph.q_sim.plot() -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Traceback: -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.244Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.244Z] Cell In[1], line 1 -[2024-03-07T16:36:33.244Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] NameError: name 'outputs' is not defined -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-03-07T16:36:33.244Z] Notebook cell execution failed -[2024-03-07T16:36:33.244Z] Cell 11: Cell execution caused an exception -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Input: -[2024-03-07T16:36:33.244Z] print(list(outputs.storage.keys())) -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] Traceback: -[2024-03-07T16:36:33.244Z] -[2024-03-07T16:36:33.244Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.245Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.245Z] Cell In[1], line 1 -[2024-03-07T16:36:33.245Z] ----> 1 print(list(outputs.storage.keys())) -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] NameError: name 'outputs' is not defined -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-03-07T16:36:33.245Z] Notebook cell execution failed -[2024-03-07T16:36:33.245Z] Cell 12: Cell execution caused an exception -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] Input: -[2024-03-07T16:36:33.245Z] # Plot the "Snow" variable -[2024-03-07T16:36:33.245Z] outputs.storage["Snow"].plot() -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] Traceback: -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.245Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.245Z] Cell In[1], line 2 -[2024-03-07T16:36:33.245Z]  1 # Plot the "Snow" variable -[2024-03-07T16:36:33.245Z] ----> 2 outputs.storage["Snow"].plot() -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] NameError: name 'outputs' is not defined -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ -[2024-03-07T16:36:33.245Z] Notebook cell execution failed -[2024-03-07T16:36:33.245Z] Cell 0: Cell execution caused an exception -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] Input: -[2024-03-07T16:36:33.245Z] import os -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] from hsclient import HydroShare, Token -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] # Authentication method using username and password -[2024-03-07T16:36:33.245Z] """ -[2024-03-07T16:36:33.245Z] username = 'XXXXX' -[2024-03-07T16:36:33.245Z] password = 'XXXXX' -[2024-03-07T16:36:33.245Z] hs = HydroShare(username=username, password=password) -[2024-03-07T16:36:33.245Z] """ -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-03-07T16:36:33.245Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] token = Token(access_token=access_token, token_type="bearer") -[2024-03-07T16:36:33.245Z] hs = HydroShare(client_id=client_id, token=token) -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] Traceback: -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.245Z] PydanticUserError Traceback (most recent call last) -[2024-03-07T16:36:33.245Z] Cell In[1], line 3 -[2024-03-07T16:36:33.245Z]  1 import os -[2024-03-07T16:36:33.245Z] ----> 3 from hsclient import HydroShare, Token -[2024-03-07T16:36:33.245Z]  5 # Authentication method using username and password -[2024-03-07T16:36:33.245Z]  6 """ -[2024-03-07T16:36:33.245Z]  7 username = 'XXXXX' -[2024-03-07T16:36:33.245Z]  8 password = 'XXXXX' -[2024-03-07T16:36:33.245Z]  9 hs = HydroShare(username=username, password=password) -[2024-03-07T16:36:33.245Z]  10 """ -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsclient/__init__.py:1 -[2024-03-07T16:36:33.245Z] ----> 1 from hsclient.hydroshare import ( -[2024-03-07T16:36:33.245Z]  2 Aggregation, -[2024-03-07T16:36:33.245Z]  3 File, -[2024-03-07T16:36:33.245Z]  4 HydroShare, -[2024-03-07T16:36:33.245Z]  5 Resource, -[2024-03-07T16:36:33.245Z]  6 NetCDFAggregation, -[2024-03-07T16:36:33.245Z]  7 TimeseriesAggregation, -[2024-03-07T16:36:33.245Z]  8 GeoRasterAggregation, -[2024-03-07T16:36:33.245Z]  9 GeoFeatureAggregation, -[2024-03-07T16:36:33.245Z]  10 ) -[2024-03-07T16:36:33.245Z]  11 from hsclient.oauth2_model import Token -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsclient/hydroshare.py:46 -[2024-03-07T16:36:33.245Z]  42 xarray = None -[2024-03-07T16:36:33.245Z]  44 import requests -[2024-03-07T16:36:33.245Z] ---> 46 from hsmodels.schemas import load_rdf, rdf_string -[2024-03-07T16:36:33.245Z]  47 from hsmodels.schemas.base_models import BaseMetadata -[2024-03-07T16:36:33.245Z]  48 from hsmodels.schemas.enums import AggregationType -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsmodels/schemas/__init__.py:8 -[2024-03-07T16:36:33.245Z]  5 from rdflib import Graph, Literal, URIRef -[2024-03-07T16:36:33.245Z]  7 from hsmodels.namespaces import DC, HSTERMS, ORE, RDF, RDFS1 -[2024-03-07T16:36:33.245Z] ----> 8 from hsmodels.schemas.aggregations import ( -[2024-03-07T16:36:33.245Z]  9 FileSetMetadata, -[2024-03-07T16:36:33.245Z]  10 GeographicFeatureMetadata, -[2024-03-07T16:36:33.245Z]  11 GeographicRasterMetadata, -[2024-03-07T16:36:33.245Z]  12 ModelInstanceMetadata, -[2024-03-07T16:36:33.245Z]  13 ModelProgramMetadata, -[2024-03-07T16:36:33.245Z]  14 MultidimensionalMetadata, -[2024-03-07T16:36:33.245Z]  15 ReferencedTimeSeriesMetadata, -[2024-03-07T16:36:33.245Z]  16 SingleFileMetadata, -[2024-03-07T16:36:33.245Z]  17 TimeSeriesMetadata, -[2024-03-07T16:36:33.245Z]  18 ) -[2024-03-07T16:36:33.245Z]  19 from hsmodels.schemas.enums import TermEnum -[2024-03-07T16:36:33.245Z]  20 from hsmodels.schemas.rdf.aggregations import ( -[2024-03-07T16:36:33.245Z]  21 FileSetMetadataInRDF, -[2024-03-07T16:36:33.245Z]  22 GeographicFeatureMetadataInRDF, -[2024-03-07T16:36:33.245Z]  (...) -[2024-03-07T16:36:33.245Z]  29 TimeSeriesMetadataInRDF, -[2024-03-07T16:36:33.245Z]  30 ) -[2024-03-07T16:36:33.245Z] -[2024-03-07T16:36:33.245Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsmodels/schemas/aggregations.py:8 -[2024-03-07T16:36:33.245Z]  6 from hsmodels.schemas.base_models import BaseMetadata -[2024-03-07T16:36:33.245Z]  7 from hsmodels.schemas.enums import AggregationType -[2024-03-07T16:36:33.245Z] ----> 8 from hsmodels.schemas.fields import ( -[2024-03-07T16:36:33.245Z]  9 BandInformation, -[2024-03-07T16:36:33.245Z]  10 BoxCoverage, -[2024-03-07T16:36:33.246Z]  11 BoxSpatialReference, -[2024-03-07T16:36:33.246Z]  12 CellInformation, -[2024-03-07T16:36:33.246Z]  13 FieldInformation, -[2024-03-07T16:36:33.246Z]  14 GeometryInformation, -[2024-03-07T16:36:33.246Z]  15 ModelProgramFile, -[2024-03-07T16:36:33.246Z]  16 MultidimensionalBoxSpatialReference, -[2024-03-07T16:36:33.246Z]  17 MultidimensionalPointSpatialReference, -[2024-03-07T16:36:33.246Z]  18 PeriodCoverage, -[2024-03-07T16:36:33.246Z]  19 PointCoverage, -[2024-03-07T16:36:33.246Z]  20 PointSpatialReference, -[2024-03-07T16:36:33.246Z]  21 Rights, -[2024-03-07T16:36:33.246Z]  22 TimeSeriesResult, -[2024-03-07T16:36:33.246Z]  23 Variable, -[2024-03-07T16:36:33.246Z]  24 ) -[2024-03-07T16:36:33.246Z]  25 from hsmodels.schemas.rdf.validators import language_constraint, subjects_constraint -[2024-03-07T16:36:33.246Z]  26 from hsmodels.schemas.root_validators import ( -[2024-03-07T16:36:33.246Z]  27 normalize_additional_metadata, -[2024-03-07T16:36:33.246Z]  28 parse_abstract, -[2024-03-07T16:36:33.246Z]  (...) -[2024-03-07T16:36:33.246Z]  32 split_coverages, -[2024-03-07T16:36:33.246Z]  33 ) -[2024-03-07T16:36:33.246Z] -[2024-03-07T16:36:33.246Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsmodels/schemas/fields.py:677 -[2024-03-07T16:36:33.246Z]  669 utc_offset: float = Field( -[2024-03-07T16:36:33.246Z]  670 default=None, -[2024-03-07T16:36:33.246Z]  671 title="UTC Offset", -[2024-03-07T16:36:33.246Z]  672 description="A floating point value that represents the time offset from UTC time in hours associated with the time series result value timestamps", -[2024-03-07T16:36:33.246Z]  673 ) -[2024-03-07T16:36:33.246Z]  674 _parse_utc_offset = root_validator(pre=True, allow_reuse=True)(parse_utc_offset_value) -[2024-03-07T16:36:33.246Z] --> 677 class BoxCoverage(base_models.BaseCoverage): -[2024-03-07T16:36:33.246Z]  678  """ -[2024-03-07T16:36:33.246Z]  679  A class used to represent geographic coverage metadata for a resource or aggregation expressed as a -[2024-03-07T16:36:33.246Z]  680  latitude-longitude bounding box -[2024-03-07T16:36:33.246Z]  681  """ -[2024-03-07T16:36:33.246Z]  683 class Config: -[2024-03-07T16:36:33.246Z] -[2024-03-07T16:36:33.246Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/hsmodels/schemas/fields.py:688, in BoxCoverage() -[2024-03-07T16:36:33.246Z]  684 title = 'Box Coverage Metadata' -[2024-03-07T16:36:33.246Z]  686 schema_config = {'read_only': ['type']} -[2024-03-07T16:36:33.246Z] --> 688 type: str = Field( -[2024-03-07T16:36:33.246Z]  689  default="box", -[2024-03-07T16:36:33.246Z]  690  const=True, -[2024-03-07T16:36:33.246Z]  691  title="Geographic coverage type", -[2024-03-07T16:36:33.246Z]  692  description="A string containing the type of geographic coverage", -[2024-03-07T16:36:33.246Z]  693  allow_mutation=False, -[2024-03-07T16:36:33.246Z]  694 ) -[2024-03-07T16:36:33.246Z]  695 name: str = Field( -[2024-03-07T16:36:33.246Z]  696 default=None, -[2024-03-07T16:36:33.246Z]  697 title="Name", -[2024-03-07T16:36:33.246Z]  698 description="A string containing a name for the place associated with the geographic coverage", -[2024-03-07T16:36:33.246Z]  699 ) -[2024-03-07T16:36:33.246Z]  700 northlimit: float = Field( -[2024-03-07T16:36:33.246Z]  701 gt=-90, -[2024-03-07T16:36:33.246Z]  702 lt=90, -[2024-03-07T16:36:33.246Z]  703 title="North limit", -[2024-03-07T16:36:33.246Z]  704 description="A floating point value containing the constant coordinate for the northernmost face or edge of the bounding box", -[2024-03-07T16:36:33.246Z]  705 ) -[2024-03-07T16:36:33.246Z] -[2024-03-07T16:36:33.246Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/fields.py:719, in Field(default, default_factory, alias, alias_priority, validation_alias, serialization_alias, title, description, examples, exclude, discriminator, json_schema_extra, frozen, validate_default, repr, init, init_var, kw_only, pattern, strict, gt, ge, lt, le, multiple_of, allow_inf_nan, max_digits, decimal_places, min_length, max_length, union_mode, **extra) -[2024-03-07T16:36:33.246Z]  717 const = extra.pop('const', None) # type: ignore -[2024-03-07T16:36:33.246Z]  718 if const is not None: -[2024-03-07T16:36:33.246Z] --> 719 raise PydanticUserError('`const` is removed, use `Literal` instead', code='removed-kwargs') -[2024-03-07T16:36:33.246Z]  721 min_items = extra.pop('min_items', None) # type: ignore -[2024-03-07T16:36:33.247Z]  722 if min_items is not None: -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] PydanticUserError: `const` is removed, use `Literal` instead -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] For further information visit https://errors.pydantic.dev/2.6/u/removed-kwargs -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 ______ -[2024-03-07T16:36:33.247Z] Notebook cell execution failed -[2024-03-07T16:36:33.247Z] Cell 1: Cell execution caused an exception -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] Input: -[2024-03-07T16:36:33.247Z] results = hs.search(subject=["Harvey"]) -[2024-03-07T16:36:33.247Z] for r in results: -[2024-03-07T16:36:33.247Z] print(r.resource_title, ": ", r.resource_id) -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] Traceback: -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.247Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.247Z] Cell In[1], line 1 -[2024-03-07T16:36:33.247Z] ----> 1 results = hs.search(subject=["Harvey"]) -[2024-03-07T16:36:33.247Z]  2 for r in results: -[2024-03-07T16:36:33.247Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] NameError: name 'hs' is not defined -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ -[2024-03-07T16:36:33.247Z] Notebook cell execution failed -[2024-03-07T16:36:33.247Z] Cell 2: Cell execution caused an exception -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] Input: -[2024-03-07T16:36:33.247Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-07T16:36:33.247Z] res.files() -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] Traceback: -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.247Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.247Z] Cell In[1], line 1 -[2024-03-07T16:36:33.247Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-07T16:36:33.247Z]  2 res.files() -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] NameError: name 'hs' is not defined -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ -[2024-03-07T16:36:33.247Z] Notebook cell execution failed -[2024-03-07T16:36:33.247Z] Cell 3: Cell execution caused an exception -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] Input: -[2024-03-07T16:36:33.247Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] Traceback: -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.247Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.247Z] Cell In[1], line 1 -[2024-03-07T16:36:33.247Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] NameError: name 'res' is not defined -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 _ -[2024-03-07T16:36:33.247Z] Notebook cell execution failed -[2024-03-07T16:36:33.247Z] Cell 7: Cell execution caused an exception -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] Input: -[2024-03-07T16:36:33.247Z] features, statistics, grid0 = stats_resp.get(asobj=True) -[2024-03-07T16:36:33.247Z] lu = statistics[0] -[2024-03-07T16:36:33.247Z] total = sum(lu.values()) -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] land_use = {k: (v / total) for (k, v) in lu.items()} -[2024-03-07T16:36:33.247Z] display("Land use ratios", land_use) -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} -[2024-03-07T16:36:33.247Z] display("Land use percentages", land_use_pct) -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] Traceback: -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.247Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:36:33.247Z] Cell In[1], line 1 -[2024-03-07T16:36:33.247Z] ----> 1 features, statistics, grid0 = stats_resp.get(asobj=True) -[2024-03-07T16:36:33.247Z]  2 lu = statistics[0] -[2024-03-07T16:36:33.247Z]  3 total = sum(lu.values()) -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-07T16:36:33.247Z]  38 if not self.isSucceded(): -[2024-03-07T16:36:33.247Z]  39 # TODO: add reason for failure -[2024-03-07T16:36:33.247Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-07T16:36:33.247Z] ---> 41 return self._make_output(asobj) -[2024-03-07T16:36:33.247Z] -[2024-03-07T16:36:33.247Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-07T16:36:33.247Z]  44 Output = namedtuple( -[2024-03-07T16:36:33.247Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:36:33.247Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:36:33.247Z]  47 ) -[2024-03-07T16:36:33.247Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:36:33.247Z]  49 return Output( -[2024-03-07T16:36:33.248Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:36:33.248Z]  51 ) -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-07T16:36:33.248Z]  44 Output = namedtuple( -[2024-03-07T16:36:33.248Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:36:33.248Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:36:33.248Z]  47 ) -[2024-03-07T16:36:33.248Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:36:33.248Z]  49 return Output( -[2024-03-07T16:36:33.248Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:36:33.248Z]  51 ) -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-07T16:36:33.248Z]  68 return delist(data) -[2024-03-07T16:36:33.248Z]  70 if convert_objects: -[2024-03-07T16:36:33.248Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-07T16:36:33.248Z]  72 else: -[2024-03-07T16:36:33.248Z]  73 return output.reference -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) -[2024-03-07T16:36:33.248Z]  374 out = converter.convert() -[2024-03-07T16:36:33.248Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:36:33.248Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-07T16:36:33.248Z]  377 return out -[2024-03-07T16:36:33.248Z]  379 except (ImportError, NotImplementedError): -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) -[2024-03-07T16:36:33.248Z]  374 out = converter.convert() -[2024-03-07T16:36:33.248Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:36:33.248Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-07T16:36:33.248Z]  377 return out -[2024-03-07T16:36:33.248Z]  379 except (ImportError, NotImplementedError): -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-07T16:36:33.248Z]  372 try: -[2024-03-07T16:36:33.248Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-07T16:36:33.248Z] --> 374 out = converter.convert() -[2024-03-07T16:36:33.248Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:36:33.248Z]  376 out = [convert(o, path) for o in out] -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-07T16:36:33.248Z]  263 import xarray # isort: skip -[2024-03-07T16:36:33.248Z]  264 import rioxarray # noqa -[2024-03-07T16:36:33.248Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 _ -[2024-03-07T16:36:33.248Z] Notebook cell execution failed -[2024-03-07T16:36:33.248Z] Cell 8: Cell execution caused an exception -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] Input: -[2024-03-07T16:36:33.248Z] terrain_resp = wps.terrain_analysis( -[2024-03-07T16:36:33.248Z] shape=basin_contour, select_all_touching=True, projected_crs=3978 -[2024-03-07T16:36:33.248Z] ) -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] properties, dem0 = terrain_resp.get(asobj=True) -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] elevation = properties[0]["elevation"] -[2024-03-07T16:36:33.248Z] slope = properties[0]["slope"] -[2024-03-07T16:36:33.248Z] aspect = properties[0]["aspect"] -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} -[2024-03-07T16:36:33.248Z] display(terrain) -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] Traceback: -[2024-03-07T16:36:33.248Z] -[2024-03-07T16:36:33.248Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.248Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:36:33.248Z] Cell In[1], line 5 -[2024-03-07T16:36:33.248Z]  1 terrain_resp = wps.terrain_analysis( -[2024-03-07T16:36:33.249Z]  2 shape=basin_contour, select_all_touching=True, projected_crs=3978 -[2024-03-07T16:36:33.249Z]  3 ) -[2024-03-07T16:36:33.249Z] ----> 5 properties, dem0 = terrain_resp.get(asobj=True) -[2024-03-07T16:36:33.249Z]  7 elevation = properties[0]["elevation"] -[2024-03-07T16:36:33.249Z]  8 slope = properties[0]["slope"] -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-07T16:36:33.249Z]  38 if not self.isSucceded(): -[2024-03-07T16:36:33.249Z]  39 # TODO: add reason for failure -[2024-03-07T16:36:33.249Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-07T16:36:33.249Z] ---> 41 return self._make_output(asobj) -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-07T16:36:33.249Z]  44 Output = namedtuple( -[2024-03-07T16:36:33.249Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:36:33.249Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:36:33.249Z]  47 ) -[2024-03-07T16:36:33.249Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:36:33.249Z]  49 return Output( -[2024-03-07T16:36:33.249Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:36:33.249Z]  51 ) -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-07T16:36:33.249Z]  44 Output = namedtuple( -[2024-03-07T16:36:33.249Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:36:33.249Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:36:33.249Z]  47 ) -[2024-03-07T16:36:33.249Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:36:33.249Z]  49 return Output( -[2024-03-07T16:36:33.249Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:36:33.249Z]  51 ) -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-07T16:36:33.249Z]  68 return delist(data) -[2024-03-07T16:36:33.249Z]  70 if convert_objects: -[2024-03-07T16:36:33.249Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-07T16:36:33.249Z]  72 else: -[2024-03-07T16:36:33.249Z]  73 return output.reference -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-07T16:36:33.249Z]  372 try: -[2024-03-07T16:36:33.249Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-07T16:36:33.249Z] --> 374 out = converter.convert() -[2024-03-07T16:36:33.249Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:36:33.249Z]  376 out = [convert(o, path) for o in out] -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.249Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-07T16:36:33.249Z]  263 import xarray # isort: skip -[2024-03-07T16:36:33.249Z]  264 import rioxarray # noqa -[2024-03-07T16:36:33.249Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.249Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.249Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 _ -[2024-03-07T16:36:33.249Z] Notebook cell execution failed -[2024-03-07T16:36:33.249Z] Cell 9: Cell execution caused an exception -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.249Z] Input: -[2024-03-07T16:36:33.249Z] all_properties = {**shape_info, **land_use, **terrain} -[2024-03-07T16:36:33.249Z] display(all_properties) -[2024-03-07T16:36:33.249Z] -[2024-03-07T16:36:33.250Z] Traceback: -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.250Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.250Z] Cell In[1], line 1 -[2024-03-07T16:36:33.250Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} -[2024-03-07T16:36:33.250Z]  2 display(all_properties) -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] NameError: name 'land_use' is not defined -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ -[2024-03-07T16:36:33.250Z] Notebook cell execution failed -[2024-03-07T16:36:33.250Z] Cell 10: Cell execution caused an exception -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] Input: -[2024-03-07T16:36:33.250Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. -[2024-03-07T16:36:33.250Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" -[2024-03-07T16:36:33.250Z] cat = intake.open_catalog(catalog_name) -[2024-03-07T16:36:33.250Z] ds = cat.era5_reanalysis_single_levels.to_dask() -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] """ -[2024-03-07T16:36:33.250Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, -[2024-03-07T16:36:33.250Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total -[2024-03-07T16:36:33.250Z] precipitation. -[2024-03-07T16:36:33.250Z] """ -[2024-03-07T16:36:33.250Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, -[2024-03-07T16:36:33.250Z] # such as units and variable names. -[2024-03-07T16:36:33.250Z] with xr.set_options(keep_attrs=True): -[2024-03-07T16:36:33.250Z] ERA5_reference = subset.subset_shape( -[2024-03-07T16:36:33.250Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour -[2024-03-07T16:36:33.250Z] ) -[2024-03-07T16:36:33.250Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) -[2024-03-07T16:36:33.250Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) -[2024-03-07T16:36:33.250Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] # Change the units -[2024-03-07T16:36:33.250Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C -[2024-03-07T16:36:33.250Z] ERA5_tmin.attrs["units"] = "degC" -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C -[2024-03-07T16:36:33.250Z] ERA5_tmax.attrs["units"] = "degC" -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] ERA5_pr = ERA5_pr * 1000 # m to mm -[2024-03-07T16:36:33.250Z] ERA5_pr.attrs["units"] = "mm" -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] # Average the variables spatially -[2024-03-07T16:36:33.250Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-03-07T16:36:33.250Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-03-07T16:36:33.250Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-07T16:36:33.250Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-07T16:36:33.250Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-07T16:36:33.250Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-03-07T16:36:33.250Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the -[2024-03-07T16:36:33.250Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. -[2024-03-07T16:36:33.250Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) -[2024-03-07T16:36:33.250Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] Traceback: -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.250Z] KeyError Traceback (most recent call last) -[2024-03-07T16:36:33.250Z] Cell In[1], line 37 -[2024-03-07T16:36:33.250Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-07T16:36:33.250Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-07T16:36:33.250Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-07T16:36:33.250Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-07T16:36:33.250Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-03-07T16:36:33.250Z]  851 self.coords[key] = value -[2024-03-07T16:36:33.250Z]  852 else: -[2024-03-07T16:36:33.250Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-03-07T16:36:33.250Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-03-07T16:36:33.250Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-03-07T16:36:33.250Z] --> 856 obj = self[key] -[2024-03-07T16:36:33.250Z]  857 if isinstance(value, DataArray): -[2024-03-07T16:36:33.250Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-03-07T16:36:33.250Z]  844 return self._getitem_coord(key) -[2024-03-07T16:36:33.250Z]  845 else: -[2024-03-07T16:36:33.250Z]  846 # xarray-style array indexing -[2024-03-07T16:36:33.250Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-03-07T16:36:33.250Z] -[2024-03-07T16:36:33.250Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-03-07T16:36:33.250Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-03-07T16:36:33.250Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-03-07T16:36:33.250Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-03-07T16:36:33.251Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-03-07T16:36:33.251Z]  1447  ) -[2024-03-07T16:36:33.251Z]  1448 return self._from_temp_dataset(ds) -[2024-03-07T16:36:33.251Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-03-07T16:36:33.251Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-03-07T16:36:33.251Z] -[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-03-07T16:36:33.251Z]  2926 var_indexers = { -[2024-03-07T16:36:33.251Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-03-07T16:36:33.251Z]  2928 } -[2024-03-07T16:36:33.251Z]  2929 if var_indexers: -[2024-03-07T16:36:33.251Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-03-07T16:36:33.251Z]  2931 # drop scalar coordinates -[2024-03-07T16:36:33.251Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-03-07T16:36:33.251Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-03-07T16:36:33.251Z] -[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-03-07T16:36:33.251Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-03-07T16:36:33.251Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-03-07T16:36:33.251Z] -> 1368 return self[key] -[2024-03-07T16:36:33.251Z] -[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-03-07T16:36:33.251Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-03-07T16:36:33.251Z]  879  """Return a new Variable object whose contents are consistent with -[2024-03-07T16:36:33.251Z]  880  getting the provided key from the underlying data. -[2024-03-07T16:36:33.251Z]  881 -[2024-03-07T16:36:33.251Z]  (...) -[2024-03-07T16:36:33.251Z]  889  array `x.values` directly. -[2024-03-07T16:36:33.251Z]  890  """ -[2024-03-07T16:36:33.251Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-03-07T16:36:33.251Z]  892 data = as_indexable(self._data)[indexer] -[2024-03-07T16:36:33.251Z]  893 if new_order: -[2024-03-07T16:36:33.251Z] -[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-03-07T16:36:33.251Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-03-07T16:36:33.251Z]  722 return self._broadcast_indexes_basic(key) -[2024-03-07T16:36:33.251Z] --> 724 self._validate_indexers(key) -[2024-03-07T16:36:33.251Z]  725 # Detect it can be mapped as an outer indexer -[2024-03-07T16:36:33.251Z]  726 # If all key is unlabeled, or -[2024-03-07T16:36:33.251Z]  727 # key can be mapped as an OuterIndexer. -[2024-03-07T16:36:33.251Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-03-07T16:36:33.251Z] -[2024-03-07T16:36:33.251Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-03-07T16:36:33.251Z]  771 raise IndexError( -[2024-03-07T16:36:33.251Z]  772 "{}-dimensional boolean indexing is " -[2024-03-07T16:36:33.251Z]  773 "not supported. ".format(k.ndim) -[2024-03-07T16:36:33.251Z]  774 ) -[2024-03-07T16:36:33.251Z]  775 if is_duck_dask_array(k.data): -[2024-03-07T16:36:33.251Z] --> 776 raise KeyError( -[2024-03-07T16:36:33.251Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-03-07T16:36:33.251Z]  778 "This will result in a dask array of unknown shape. " -[2024-03-07T16:36:33.251Z]  779 "Such arrays are unsupported by Xarray." -[2024-03-07T16:36:33.251Z]  780 "Please compute the indexer first using .compute()" -[2024-03-07T16:36:33.251Z]  781 ) -[2024-03-07T16:36:33.251Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-03-07T16:36:33.251Z]  783 raise IndexError( -[2024-03-07T16:36:33.251Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-03-07T16:36:33.251Z]  785 "same dimension to the indexed array. Indexer is " -[2024-03-07T16:36:33.251Z]  (...) -[2024-03-07T16:36:33.251Z]  788 ) -[2024-03-07T16:36:33.251Z]  789 ) -[2024-03-07T16:36:33.251Z] -[2024-03-07T16:36:33.251Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-03-07T16:36:33.251Z] -[2024-03-07T16:36:33.251Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ -[2024-03-07T16:36:33.251Z] Notebook cell execution failed -[2024-03-07T16:36:33.252Z] Cell 11: Cell execution caused an exception -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] Input: -[2024-03-07T16:36:33.252Z] # Climate model to use -[2024-03-07T16:36:33.252Z] climate_model = "MIROC6" -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. -[2024-03-07T16:36:33.252Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") -[2024-03-07T16:36:33.252Z] col = intake.open_esm_datastore( -[2024-03-07T16:36:33.252Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" -[2024-03-07T16:36:33.252Z] ) -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. -[2024-03-07T16:36:33.252Z] with xr.set_options(keep_attrs=True): -[2024-03-07T16:36:33.252Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. -[2024-03-07T16:36:33.252Z] out = {} -[2024-03-07T16:36:33.252Z] for exp in ["historical", "ssp585"]: -[2024-03-07T16:36:33.252Z] if exp == "historical": -[2024-03-07T16:36:33.252Z] period_start = reference_start_day -[2024-03-07T16:36:33.252Z] period_end = reference_end_day -[2024-03-07T16:36:33.252Z] else: -[2024-03-07T16:36:33.252Z] period_start = future_start_day -[2024-03-07T16:36:33.252Z] period_end = future_end_day -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] out[exp] = {} -[2024-03-07T16:36:33.252Z] for variable in ["tasmin", "tasmax", "pr"]: -[2024-03-07T16:36:33.252Z] print(exp, variable) -[2024-03-07T16:36:33.252Z] query = dict( -[2024-03-07T16:36:33.252Z] experiment_id=exp, -[2024-03-07T16:36:33.252Z] table_id="day", -[2024-03-07T16:36:33.252Z] variable_id=variable, -[2024-03-07T16:36:33.252Z] member_id="r1i1p1f1", -[2024-03-07T16:36:33.252Z] source_id=climate_model, -[2024-03-07T16:36:33.252Z] ) -[2024-03-07T16:36:33.252Z] col_subset = col.search(require_all_on=["source_id"], **query) -[2024-03-07T16:36:33.252Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. -[2024-03-07T16:36:33.252Z] if variable == "pr": -[2024-03-07T16:36:33.252Z] out[exp][variable] = average.average_shape( -[2024-03-07T16:36:33.252Z] xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-07T16:36:33.252Z] time=slice(period_start, period_end) -[2024-03-07T16:36:33.252Z] )[variable], -[2024-03-07T16:36:33.252Z] basin_contour, -[2024-03-07T16:36:33.252Z] ).chunk(-1) -[2024-03-07T16:36:33.252Z] else: -[2024-03-07T16:36:33.252Z] out[exp][variable] = average.average_shape( -[2024-03-07T16:36:33.252Z] xr.open_zarr(mapper, consolidated=True) -[2024-03-07T16:36:33.252Z] .sel(time=slice(period_start, period_end)) -[2024-03-07T16:36:33.252Z] .reset_coords("height", drop=True)[variable], -[2024-03-07T16:36:33.252Z] basin_contour, -[2024-03-07T16:36:33.252Z] ).chunk(-1) -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] # We can now extract the variables that we will need later: -[2024-03-07T16:36:33.252Z] historical_tasmax = out["historical"]["tasmax"] -[2024-03-07T16:36:33.252Z] historical_tasmin = out["historical"]["tasmin"] -[2024-03-07T16:36:33.252Z] historical_pr = out["historical"]["pr"] -[2024-03-07T16:36:33.252Z] future_tasmax = out["ssp585"]["tasmax"] -[2024-03-07T16:36:33.252Z] future_tasmin = out["ssp585"]["tasmin"] -[2024-03-07T16:36:33.252Z] future_pr = out["ssp585"]["pr"] -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] Traceback: -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.252Z] KeyError Traceback (most recent call last) -[2024-03-07T16:36:33.252Z] Cell In[1], line 44 -[2024-03-07T16:36:33.252Z]  37 out[exp][variable] = average.average_shape( -[2024-03-07T16:36:33.252Z]  38 xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-07T16:36:33.252Z]  39 time=slice(period_start, period_end) -[2024-03-07T16:36:33.252Z]  40 )[variable], -[2024-03-07T16:36:33.252Z]  41 basin_contour, -[2024-03-07T16:36:33.252Z]  42 ).chunk(-1) -[2024-03-07T16:36:33.252Z]  43 else: -[2024-03-07T16:36:33.252Z] ---> 44 out[exp][variable] = average.average_shape( -[2024-03-07T16:36:33.252Z]  45  xr.open_zarr(mapper, consolidated=True) -[2024-03-07T16:36:33.252Z]  46  .sel(time=slice(period_start, period_end)) -[2024-03-07T16:36:33.252Z]  47  .reset_coords("height", drop=True)[variable], -[2024-03-07T16:36:33.252Z]  48  basin_contour, -[2024-03-07T16:36:33.252Z]  49  ).chunk(-1) -[2024-03-07T16:36:33.252Z]  51 # We can now extract the variables that we will need later: -[2024-03-07T16:36:33.252Z]  52 historical_tasmax = out["historical"]["tasmax"] -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:104, in average_shape(ds, shape, variable) -[2024-03-07T16:36:33.252Z]  101 ds_sub = ds_copy.isel(indexer) -[2024-03-07T16:36:33.252Z]  103 # Compute the weights -[2024-03-07T16:36:33.252Z] --> 104 savger = SpatialAverager(ds_sub, poly.geometry) -[2024-03-07T16:36:33.252Z]  106 # Check that some weights are not null. Handle both sparse and scipy weights. -[2024-03-07T16:36:33.252Z]  107 nonnull = ( -[2024-03-07T16:36:33.252Z]  108 savger.weights.data.nnz -[2024-03-07T16:36:33.252Z]  109 if isinstance(savger.weights, xr.DataArray) -[2024-03-07T16:36:33.252Z]  110 else savger.weights.nnz -[2024-03-07T16:36:33.252Z]  111 ) -[2024-03-07T16:36:33.252Z] -[2024-03-07T16:36:33.252Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1180, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) -[2024-03-07T16:36:33.252Z]  1177 if isinstance(ds_in, xr.DataArray): -[2024-03-07T16:36:33.252Z]  1178 ds_in = ds_in._to_temp_dataset() -[2024-03-07T16:36:33.253Z] -> 1180 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) -[2024-03-07T16:36:33.253Z]  1182 # Create an output locstream so that the regridder knows the output shape and coords. -[2024-03-07T16:36:33.253Z]  1183 # Latitude and longitude coordinates are the polygon centroid. -[2024-03-07T16:36:33.253Z]  1184 lon_out, lat_out = _get_lon_lat(ds_in) -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) -[2024-03-07T16:36:33.253Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) -[2024-03-07T16:36:33.253Z]  166 if need_bounds: -[2024-03-07T16:36:33.253Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) -[2024-03-07T16:36:33.253Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) -[2024-03-07T16:36:33.253Z]  169 add_corner(grid, lon_b.T, lat_b.T) -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) -[2024-03-07T16:36:33.253Z]  105 lat_bnds = ds.cf.get_bounds('latitude') -[2024-03-07T16:36:33.253Z]  107 # Convert from CF bounds to xESMF bounds. -[2024-03-07T16:36:33.253Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. -[2024-03-07T16:36:33.253Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) -[2024-03-07T16:36:33.253Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) -[2024-03-07T16:36:33.253Z]  111 return lon_b, lat_b -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2308, in CFDatasetAccessor.get_bounds_dim_name(self, key) -[2024-03-07T16:36:33.253Z]  2304 filtered = [ -[2024-03-07T16:36:33.253Z]  2305 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs -[2024-03-07T16:36:33.253Z]  2306 ] -[2024-03-07T16:36:33.253Z]  2307 if len(filtered) > 1: -[2024-03-07T16:36:33.253Z] -> 2308 raise KeyError( -[2024-03-07T16:36:33.253Z]  2309 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " -[2024-03-07T16:36:33.253Z]  2310 ) -[2024-03-07T16:36:33.253Z]  2312 (crd_name,) = filtered -[2024-03-07T16:36:33.253Z]  2313 crd = variables[crd_name] -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ -[2024-03-07T16:36:33.253Z] Notebook cell execution failed -[2024-03-07T16:36:33.253Z] Cell 12: Cell execution caused an exception -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] Input: -[2024-03-07T16:36:33.253Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-07T16:36:33.253Z] # and make sure everything is consistent. -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] # Let's start with precipitation: -[2024-03-07T16:36:33.253Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-07T16:36:33.253Z] historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-07T16:36:33.253Z] future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] # Now we can actually convert units in absolute terms. -[2024-03-07T16:36:33.253Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") -[2024-03-07T16:36:33.253Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] # Now let's do temperature: -[2024-03-07T16:36:33.253Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") -[2024-03-07T16:36:33.253Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") -[2024-03-07T16:36:33.253Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") -[2024-03-07T16:36:33.253Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] Traceback: -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.253Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.253Z] Cell In[1], line 6 -[2024-03-07T16:36:33.253Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-07T16:36:33.253Z]  2 # and make sure everything is consistent. -[2024-03-07T16:36:33.253Z]  3 -[2024-03-07T16:36:33.253Z]  4 # Let's start with precipitation: -[2024-03-07T16:36:33.253Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-07T16:36:33.253Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-07T16:36:33.253Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-07T16:36:33.253Z]  9 # Now we can actually convert units in absolute terms. -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] NameError: name 'historical_pr' is not defined -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ -[2024-03-07T16:36:33.253Z] Notebook cell execution failed -[2024-03-07T16:36:33.253Z] Cell 13: Cell execution caused an exception -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] Input: -[2024-03-07T16:36:33.253Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. -[2024-03-07T16:36:33.253Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-07T16:36:33.253Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-07T16:36:33.253Z] ref=ERA5_weather.pr, -[2024-03-07T16:36:33.253Z] hist=historical_pr, -[2024-03-07T16:36:33.253Z] nquantiles=50, -[2024-03-07T16:36:33.253Z] kind="+", -[2024-03-07T16:36:33.253Z] group=group_month_window, -[2024-03-07T16:36:33.253Z] ) -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] # Apply the correction factors on the reference period -[2024-03-07T16:36:33.253Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-07T16:36:33.253Z] -[2024-03-07T16:36:33.253Z] # Apply the correction factors on the future period -[2024-03-07T16:36:33.254Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Ensure that the precipitation is non-negative, which can happen with some climate models -[2024-03-07T16:36:33.254Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) -[2024-03-07T16:36:33.254Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data -[2024-03-07T16:36:33.254Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-07T16:36:33.254Z] ref=ERA5_weather.tmax, -[2024-03-07T16:36:33.254Z] hist=historical_tasmax, -[2024-03-07T16:36:33.254Z] nquantiles=50, -[2024-03-07T16:36:33.254Z] kind="+", -[2024-03-07T16:36:33.254Z] group=group_month_window, -[2024-03-07T16:36:33.254Z] ) -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Apply the correction factors on the reference period -[2024-03-07T16:36:33.254Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Apply the correction factors on the future period -[2024-03-07T16:36:33.254Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data -[2024-03-07T16:36:33.254Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-07T16:36:33.254Z] ref=ERA5_weather.tmin, -[2024-03-07T16:36:33.254Z] hist=historical_tasmin, -[2024-03-07T16:36:33.254Z] nquantiles=50, -[2024-03-07T16:36:33.254Z] kind="+", -[2024-03-07T16:36:33.254Z] group=group_month_window, -[2024-03-07T16:36:33.254Z] ) -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Apply the correction factors on the reference period -[2024-03-07T16:36:33.254Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Apply the correction factors on the future period -[2024-03-07T16:36:33.254Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] Traceback: -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.254Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.254Z] Cell In[1], line 6 -[2024-03-07T16:36:33.254Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-07T16:36:33.254Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-07T16:36:33.254Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-07T16:36:33.254Z] ----> 6 ref=ERA5_weather.pr, -[2024-03-07T16:36:33.254Z]  7 hist=historical_pr, -[2024-03-07T16:36:33.254Z]  8 nquantiles=50, -[2024-03-07T16:36:33.254Z]  9 kind="+", -[2024-03-07T16:36:33.254Z]  10 group=group_month_window, -[2024-03-07T16:36:33.254Z]  11 ) -[2024-03-07T16:36:33.254Z]  13 # Apply the correction factors on the reference period -[2024-03-07T16:36:33.254Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] NameError: name 'ERA5_weather' is not defined -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ -[2024-03-07T16:36:33.254Z] Notebook cell execution failed -[2024-03-07T16:36:33.254Z] Cell 14: Cell execution caused an exception -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] Input: -[2024-03-07T16:36:33.254Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-07T16:36:33.254Z] ref_dataset = xr.merge( -[2024-03-07T16:36:33.254Z] [ -[2024-03-07T16:36:33.254Z] corrected_ref_precip.to_dataset(name="pr"), -[2024-03-07T16:36:33.254Z] corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-07T16:36:33.254Z] corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-07T16:36:33.254Z] ] -[2024-03-07T16:36:33.254Z] ) -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Write to temporary folder -[2024-03-07T16:36:33.254Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-07T16:36:33.254Z] ref_dataset.to_netcdf(fn_tmp_ref) -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Convert the future corrected data into netCDF file -[2024-03-07T16:36:33.254Z] fut_dataset = xr.merge( -[2024-03-07T16:36:33.254Z] [ -[2024-03-07T16:36:33.254Z] corrected_fut_precip.to_dataset(name="pr"), -[2024-03-07T16:36:33.254Z] corrected_fut_tasmax.to_dataset(name="tasmax"), -[2024-03-07T16:36:33.254Z] corrected_fut_tasmin.to_dataset(name="tasmin"), -[2024-03-07T16:36:33.254Z] ] -[2024-03-07T16:36:33.254Z] ) -[2024-03-07T16:36:33.254Z] # Write to temporary folder -[2024-03-07T16:36:33.254Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" -[2024-03-07T16:36:33.254Z] fut_dataset.to_netcdf(fn_tmp_fut) -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Write the data to disk to a temporary location for future use. -[2024-03-07T16:36:33.254Z] ref_dataset = xr.open_dataset(fn_tmp_ref) -[2024-03-07T16:36:33.254Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] fut_dataset = xr.open_dataset(fn_tmp_fut) -[2024-03-07T16:36:33.254Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] Traceback: -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.254Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.254Z] Cell In[1], line 4 -[2024-03-07T16:36:33.254Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-07T16:36:33.254Z]  2 ref_dataset = xr.merge( -[2024-03-07T16:36:33.254Z]  3 [ -[2024-03-07T16:36:33.254Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), -[2024-03-07T16:36:33.254Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-07T16:36:33.254Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-07T16:36:33.254Z]  7 ] -[2024-03-07T16:36:33.254Z]  8 ) -[2024-03-07T16:36:33.254Z]  10 # Write to temporary folder -[2024-03-07T16:36:33.254Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] NameError: name 'corrected_ref_precip' is not defined -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ -[2024-03-07T16:36:33.254Z] Notebook cell execution failed -[2024-03-07T16:36:33.254Z] Cell 15: Cell execution caused an exception -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] Input: -[2024-03-07T16:36:33.254Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-03-07T16:36:33.254Z] # populate the fields for the HRU. -[2024-03-07T16:36:33.254Z] hru = {} -[2024-03-07T16:36:33.254Z] hru = dict( -[2024-03-07T16:36:33.254Z] area=all_properties["area"], -[2024-03-07T16:36:33.254Z] elevation=all_properties["elevation"], -[2024-03-07T16:36:33.254Z] latitude=all_properties["latitude"], -[2024-03-07T16:36:33.254Z] longitude=all_properties["longitude"], -[2024-03-07T16:36:33.254Z] hru_type="land", -[2024-03-07T16:36:33.254Z] ) -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-03-07T16:36:33.254Z] # will simply execute the model which has been pre-configured to run on this period. -[2024-03-07T16:36:33.254Z] start_date = dt.datetime(1981, 1, 1) -[2024-03-07T16:36:33.254Z] end_date = dt.datetime(1985, 12, 31) -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. -[2024-03-07T16:36:33.254Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # Alternative variable names as described in the tutorial. -[2024-03-07T16:36:33.254Z] alt_names = { -[2024-03-07T16:36:33.254Z] "TEMP_MIN": "tmin", -[2024-03-07T16:36:33.254Z] "TEMP_MAX": "tmax", -[2024-03-07T16:36:33.254Z] "PRECIP": "pr", -[2024-03-07T16:36:33.254Z] } -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.254Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here -[2024-03-07T16:36:33.254Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. -[2024-03-07T16:36:33.254Z] data_kwds = { -[2024-03-07T16:36:33.254Z] "ALL": { -[2024-03-07T16:36:33.254Z] "elevation": hru["elevation"], -[2024-03-07T16:36:33.254Z] "latitude": hru["latitude"], -[2024-03-07T16:36:33.254Z] "longitude": hru["longitude"], -[2024-03-07T16:36:33.254Z] } -[2024-03-07T16:36:33.254Z] } -[2024-03-07T16:36:33.254Z] -[2024-03-07T16:36:33.255Z] # Give a name to the simulation -[2024-03-07T16:36:33.255Z] run_name = "Paper_example_simulation" -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Setup the gauge object that includes meteorological data from ERA5 -[2024-03-07T16:36:33.255Z] gauge = [ -[2024-03-07T16:36:33.255Z] rc.Gauge.from_nc( -[2024-03-07T16:36:33.255Z] tmp -[2024-03-07T16:36:33.255Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-03-07T16:36:33.255Z] data_type=data_type, # Note that this is the list of all the variables -[2024-03-07T16:36:33.255Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-03-07T16:36:33.255Z] data_kwds=data_kwds, -[2024-03-07T16:36:33.255Z] ) -[2024-03-07T16:36:33.255Z] ] -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Read the streamflow from the HYSETS catchment data for this basin -[2024-03-07T16:36:33.255Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, -[2024-03-07T16:36:33.255Z] # and the optimizer will read it directly to calibrate. -[2024-03-07T16:36:33.255Z] eval_metrics = ("NASH_SUTCLIFFE",) -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Build the model configuration according to user preferences and inputs -[2024-03-07T16:36:33.255Z] model_config = GR4JCN( -[2024-03-07T16:36:33.255Z] ObservationData=discharge_data, -[2024-03-07T16:36:33.255Z] Gauge=gauge, -[2024-03-07T16:36:33.255Z] HRUs=[hru], -[2024-03-07T16:36:33.255Z] StartDate=start_date, -[2024-03-07T16:36:33.255Z] EndDate=end_date, -[2024-03-07T16:36:33.255Z] RunName=run_name, -[2024-03-07T16:36:33.255Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. -[2024-03-07T16:36:33.255Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. -[2024-03-07T16:36:33.255Z] ) -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] Traceback: -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.255Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.255Z] Cell In[1], line 5 -[2024-03-07T16:36:33.255Z]  1 # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-03-07T16:36:33.255Z]  2 # populate the fields for the HRU. -[2024-03-07T16:36:33.255Z]  3 hru = {} -[2024-03-07T16:36:33.255Z]  4 hru = dict( -[2024-03-07T16:36:33.255Z] ----> 5 area=all_properties["area"], -[2024-03-07T16:36:33.255Z]  6 elevation=all_properties["elevation"], -[2024-03-07T16:36:33.255Z]  7 latitude=all_properties["latitude"], -[2024-03-07T16:36:33.255Z]  8 longitude=all_properties["longitude"], -[2024-03-07T16:36:33.255Z]  9 hru_type="land", -[2024-03-07T16:36:33.255Z]  10 ) -[2024-03-07T16:36:33.255Z]  12 # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-03-07T16:36:33.255Z]  13 # will simply execute the model which has been pre-configured to run on this period. -[2024-03-07T16:36:33.255Z]  14 start_date = dt.datetime(1981, 1, 1) -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] NameError: name 'all_properties' is not defined -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ -[2024-03-07T16:36:33.255Z] Notebook cell execution failed -[2024-03-07T16:36:33.255Z] Cell 16: Cell execution caused an exception -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] Input: -[2024-03-07T16:36:33.255Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, -[2024-03-07T16:36:33.255Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. -[2024-03-07T16:36:33.255Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) -[2024-03-07T16:36:33.255Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. -[2024-03-07T16:36:33.255Z] random_seed = 42 -[2024-03-07T16:36:33.255Z] np.random.seed(random_seed) -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Build the optimizer object -[2024-03-07T16:36:33.255Z] spot_setup = SpotSetup( -[2024-03-07T16:36:33.255Z] config=model_config, -[2024-03-07T16:36:33.255Z] low=low, -[2024-03-07T16:36:33.255Z] high=high, -[2024-03-07T16:36:33.255Z] ) -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-07T16:36:33.255Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-07T16:36:33.255Z] max_iterations = 200 -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer -[2024-03-07T16:36:33.255Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most -[2024-03-07T16:36:33.255Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation -[2024-03-07T16:36:33.255Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small -[2024-03-07T16:36:33.255Z] # evaluation budgets. For more details on DDS, see: -[2024-03-07T16:36:33.255Z] # -[2024-03-07T16:36:33.255Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water -[2024-03-07T16:36:33.255Z] # Resources Research, 43(1) -[2024-03-07T16:36:33.255Z] sampler = spotpy.algorithms.dds( -[2024-03-07T16:36:33.255Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False -[2024-03-07T16:36:33.255Z] ) -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and -[2024-03-07T16:36:33.255Z] # the best overall value from all trials is returned. -[2024-03-07T16:36:33.255Z] sampler.sample(max_iterations, trials=1) -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Get the model diagnostics -[2024-03-07T16:36:33.255Z] diag = spot_setup.diagnostics -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Get all the values of each iteration -[2024-03-07T16:36:33.255Z] results = sampler.getdata() -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Get the raw resutlts directly in an array -[2024-03-07T16:36:33.255Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( -[2024-03-07T16:36:33.255Z] results -[2024-03-07T16:36:33.255Z] ) # Want to get the MAX NSE (change for min for RMSE) -[2024-03-07T16:36:33.255Z] best_model_run = list( -[2024-03-07T16:36:33.255Z] results[bestindex][0] -[2024-03-07T16:36:33.255Z] ) # Get the parameter set returning the best NSE -[2024-03-07T16:36:33.255Z] optimized_parameters = best_model_run[ -[2024-03-07T16:36:33.255Z] 1:-1 -[2024-03-07T16:36:33.255Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] # Display the parameter set ready to use in a future run: -[2024-03-07T16:36:33.255Z] print(optimized_parameters) -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] Traceback: -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.255Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.255Z] Cell In[1], line 12 -[2024-03-07T16:36:33.255Z]  8 np.random.seed(random_seed) -[2024-03-07T16:36:33.255Z]  10 # Build the optimizer object -[2024-03-07T16:36:33.255Z]  11 spot_setup = SpotSetup( -[2024-03-07T16:36:33.255Z] ---> 12 config=model_config, -[2024-03-07T16:36:33.255Z]  13 low=low, -[2024-03-07T16:36:33.255Z]  14 high=high, -[2024-03-07T16:36:33.255Z]  15 ) -[2024-03-07T16:36:33.255Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-07T16:36:33.255Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-07T16:36:33.255Z]  19 max_iterations = 200 -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] NameError: name 'model_config' is not defined -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ -[2024-03-07T16:36:33.255Z] Notebook cell execution failed -[2024-03-07T16:36:33.255Z] Cell 17: Cell execution caused an exception -[2024-03-07T16:36:33.255Z] -[2024-03-07T16:36:33.255Z] Input: -[2024-03-07T16:36:33.256Z] # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-07T16:36:33.256Z] model_validation = model_config.duplicate( -[2024-03-07T16:36:33.256Z] params=optimized_parameters, -[2024-03-07T16:36:33.256Z] StartDate=dt.datetime(1986, 1, 1), -[2024-03-07T16:36:33.256Z] EndDate=dt.datetime(1990, 12, 31), -[2024-03-07T16:36:33.256Z] SuppressOutput=False, -[2024-03-07T16:36:33.256Z] ) -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] sim_output = Emulator(config=model_validation).run() -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-07T16:36:33.256Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] # Plot the model output -[2024-03-07T16:36:33.256Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") -[2024-03-07T16:36:33.256Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-07T16:36:33.256Z] plt.legend() -[2024-03-07T16:36:33.256Z] plt.title("Validation period - NSE=" + str(NSE[0])) -[2024-03-07T16:36:33.256Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-07T16:36:33.256Z] plt.grid() -[2024-03-07T16:36:33.256Z] plt.show() -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] Traceback: -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.256Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.256Z] Cell In[1], line 2 -[2024-03-07T16:36:33.256Z]  1 # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-07T16:36:33.256Z] ----> 2 model_validation = model_config.duplicate( -[2024-03-07T16:36:33.256Z]  3 params=optimized_parameters, -[2024-03-07T16:36:33.256Z]  4 StartDate=dt.datetime(1986, 1, 1), -[2024-03-07T16:36:33.256Z]  5 EndDate=dt.datetime(1990, 12, 31), -[2024-03-07T16:36:33.256Z]  6 SuppressOutput=False, -[2024-03-07T16:36:33.256Z]  7 ) -[2024-03-07T16:36:33.256Z]  9 sim_output = Emulator(config=model_validation).run() -[2024-03-07T16:36:33.256Z]  11 # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] NameError: name 'model_config' is not defined -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ -[2024-03-07T16:36:33.256Z] Notebook cell execution failed -[2024-03-07T16:36:33.256Z] Cell 18: Cell execution caused an exception -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] Input: -[2024-03-07T16:36:33.256Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-07T16:36:33.256Z] gauge_ref = [ -[2024-03-07T16:36:33.256Z] rc.Gauge.from_nc( -[2024-03-07T16:36:33.256Z] tmp -[2024-03-07T16:36:33.256Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-07T16:36:33.256Z] data_type=data_type, -[2024-03-07T16:36:33.256Z] alt_names=alt_names, -[2024-03-07T16:36:33.256Z] data_kwds=data_kwds, -[2024-03-07T16:36:33.256Z] ) -[2024-03-07T16:36:33.256Z] ] -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-07T16:36:33.256Z] model_config_reference = model_validation.duplicate( -[2024-03-07T16:36:33.256Z] Gauge=gauge_ref, -[2024-03-07T16:36:33.256Z] StartDate=reference_start_day -[2024-03-07T16:36:33.256Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-07T16:36:33.256Z] EndDate=reference_end_day, -[2024-03-07T16:36:33.256Z] ) -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] # Run the model from the configuration and get the outputs. -[2024-03-07T16:36:33.256Z] ref_output = Emulator(config=model_config_reference).run() -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] # Plot the model output. Note that both simulations should have similar hydrological -[2024-03-07T16:36:33.256Z] # regime but day-to-day variability is not expected to match. -[2024-03-07T16:36:33.256Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") -[2024-03-07T16:36:33.256Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-07T16:36:33.256Z] plt.legend() -[2024-03-07T16:36:33.256Z] plt.title("Reference period") -[2024-03-07T16:36:33.256Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-07T16:36:33.256Z] plt.grid() -[2024-03-07T16:36:33.256Z] plt.show() -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] Traceback: -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.256Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.256Z] Cell In[1], line 6 -[2024-03-07T16:36:33.256Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-07T16:36:33.256Z]  2 gauge_ref = [ -[2024-03-07T16:36:33.256Z]  3 rc.Gauge.from_nc( -[2024-03-07T16:36:33.256Z]  4 tmp -[2024-03-07T16:36:33.256Z]  5 / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-07T16:36:33.256Z] ----> 6 data_type=data_type, -[2024-03-07T16:36:33.256Z]  7 alt_names=alt_names, -[2024-03-07T16:36:33.256Z]  8 data_kwds=data_kwds, -[2024-03-07T16:36:33.256Z]  9 ) -[2024-03-07T16:36:33.256Z]  10 ] -[2024-03-07T16:36:33.256Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-07T16:36:33.256Z]  13 model_config_reference = model_validation.duplicate( -[2024-03-07T16:36:33.256Z]  14 Gauge=gauge_ref, -[2024-03-07T16:36:33.256Z]  15 StartDate=reference_start_day -[2024-03-07T16:36:33.256Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-07T16:36:33.256Z]  17 EndDate=reference_end_day, -[2024-03-07T16:36:33.256Z]  18 ) -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] NameError: name 'data_type' is not defined -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ -[2024-03-07T16:36:33.256Z] Notebook cell execution failed -[2024-03-07T16:36:33.256Z] Cell 19: Cell execution caused an exception -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] Input: -[2024-03-07T16:36:33.256Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-07T16:36:33.256Z] gauge_fut = [ -[2024-03-07T16:36:33.256Z] rc.Gauge.from_nc( -[2024-03-07T16:36:33.256Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-07T16:36:33.256Z] data_type=data_type, -[2024-03-07T16:36:33.256Z] alt_names=alt_names, -[2024-03-07T16:36:33.256Z] data_kwds=data_kwds, -[2024-03-07T16:36:33.256Z] ) -[2024-03-07T16:36:33.256Z] ] -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-07T16:36:33.256Z] model_config_future = model_validation.duplicate( -[2024-03-07T16:36:33.256Z] Gauge=gauge_fut, -[2024-03-07T16:36:33.256Z] StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-07T16:36:33.256Z] EndDate=future_end_day, -[2024-03-07T16:36:33.256Z] ObservationData=None, # There are no observations for the future period. -[2024-03-07T16:36:33.256Z] ) -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] # Run the model and get the outputs and hydrographs. -[2024-03-07T16:36:33.256Z] fut_output = Emulator(config=model_config_future).run() -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] # Plot the model output -[2024-03-07T16:36:33.256Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") -[2024-03-07T16:36:33.256Z] plt.legend() -[2024-03-07T16:36:33.256Z] plt.title("Future period") -[2024-03-07T16:36:33.256Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-07T16:36:33.256Z] plt.grid() -[2024-03-07T16:36:33.256Z] plt.show() -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] Traceback: -[2024-03-07T16:36:33.256Z] -[2024-03-07T16:36:33.256Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.256Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.256Z] Cell In[1], line 5 -[2024-03-07T16:36:33.256Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-07T16:36:33.256Z]  2 gauge_fut = [ -[2024-03-07T16:36:33.256Z]  3 rc.Gauge.from_nc( -[2024-03-07T16:36:33.256Z]  4 tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-07T16:36:33.256Z] ----> 5 data_type=data_type, -[2024-03-07T16:36:33.257Z]  6 alt_names=alt_names, -[2024-03-07T16:36:33.257Z]  7 data_kwds=data_kwds, -[2024-03-07T16:36:33.257Z]  8 ) -[2024-03-07T16:36:33.257Z]  9 ] -[2024-03-07T16:36:33.257Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-07T16:36:33.257Z]  12 model_config_future = model_validation.duplicate( -[2024-03-07T16:36:33.257Z]  13 Gauge=gauge_fut, -[2024-03-07T16:36:33.257Z]  14 StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-07T16:36:33.257Z]  15 EndDate=future_end_day, -[2024-03-07T16:36:33.257Z]  16 ObservationData=None, # There are no observations for the future period. -[2024-03-07T16:36:33.257Z]  17 ) -[2024-03-07T16:36:33.257Z] -[2024-03-07T16:36:33.257Z] NameError: name 'data_type' is not defined -[2024-03-07T16:36:33.257Z] -[2024-03-07T16:36:33.257Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ -[2024-03-07T16:36:33.257Z] Notebook cell execution failed -[2024-03-07T16:36:33.257Z] Cell 20: Cell execution caused an exception -[2024-03-07T16:36:33.257Z] -[2024-03-07T16:36:33.257Z] Input: -[2024-03-07T16:36:33.257Z] # Extract the mean annual hydrograph for each simulation. -[2024-03-07T16:36:33.257Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-07T16:36:33.257Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-07T16:36:33.257Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-07T16:36:33.257Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-07T16:36:33.257Z] -[2024-03-07T16:36:33.257Z] # Plot the model output -[2024-03-07T16:36:33.257Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") -[2024-03-07T16:36:33.257Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") -[2024-03-07T16:36:33.257Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") -[2024-03-07T16:36:33.257Z] future_flows.plot(color="red", label="Future", x="dayofyear") -[2024-03-07T16:36:33.257Z] plt.legend() -[2024-03-07T16:36:33.257Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-07T16:36:33.257Z] plt.xlabel("Day of year") -[2024-03-07T16:36:33.257Z] plt.xlim([0, 365]) -[2024-03-07T16:36:33.257Z] plt.title("Comparison of mean annual hydrographs") -[2024-03-07T16:36:33.257Z] plt.grid() -[2024-03-07T16:36:33.257Z] plt.show() -[2024-03-07T16:36:33.257Z] -[2024-03-07T16:36:33.257Z] Traceback: -[2024-03-07T16:36:33.257Z] -[2024-03-07T16:36:33.257Z] --------------------------------------------------------------------------- -[2024-03-07T16:36:33.257Z] NameError Traceback (most recent call last) -[2024-03-07T16:36:33.257Z] Cell In[1], line 2 -[2024-03-07T16:36:33.257Z]  1 # Extract the mean annual hydrograph for each simulation. -[2024-03-07T16:36:33.257Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-07T16:36:33.257Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-07T16:36:33.257Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-07T16:36:33.257Z] -[2024-03-07T16:36:33.257Z] NameError: name 'ref_output' is not defined -[2024-03-07T16:36:33.257Z] -[2024-03-07T16:36:33.257Z] =========================== short test summary info ============================ -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 7 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 8 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 10 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 -[2024-03-07T16:36:33.257Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 -[2024-03-07T16:36:33.258Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 -[2024-03-07T16:36:33.258Z] ================= 36 failed, 224 passed in 1068.88s (0:17:48) ================== -[2024-03-07T16:36:33.258Z] + EXIT_CODE=1 -[2024-03-07T16:36:33.258Z] + echo true -[2024-03-07T16:36:33.258Z] + tr [:upper:] [:lower:] -[2024-03-07T16:36:33.258Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-07T16:36:33.258Z] + [ xtrue = xtrue ] -[2024-03-07T16:36:33.258Z] + mkdir -p buildout -[2024-03-07T16:36:33.258Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-07T16:36:33.258Z] + filename=Region_selection.ipynb -[2024-03-07T16:36:33.258Z] + echo Region_selection.ipynb -[2024-03-07T16:36:33.258Z] + sed s/.ipynb$// -[2024-03-07T16:36:33.258Z] + filename=Region_selection -[2024-03-07T16:36:33.258Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-03-07T16:36:33.258Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-07T16:36:33.258Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-03-07T16:36:45.482Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb -[2024-03-07T16:36:45.482Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-07T16:36:45.482Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-03-07T16:36:45.482Z] + echo Subset_climate_data_over_watershed.ipynb -[2024-03-07T16:36:45.482Z] + sed s/.ipynb$// -[2024-03-07T16:36:45.482Z] + filename=Subset_climate_data_over_watershed -[2024-03-07T16:36:45.482Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-03-07T16:36:45.482Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-07T16:36:45.482Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-03-07T16:37:00.367Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-03-07T16:37:00.367Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-07T16:37:00.367Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-03-07T16:37:00.367Z] + echo 00_Introduction_to_JupyterLab.ipynb -[2024-03-07T16:37:00.367Z] + sed s/.ipynb$// -[2024-03-07T16:37:00.367Z] + filename=00_Introduction_to_JupyterLab -[2024-03-07T16:37:00.367Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-03-07T16:37:00.367Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-07T16:37:01.314Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-03-07T16:37:03.923Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-03-07T16:37:04.184Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-07T16:37:04.184Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-03-07T16:37:04.184Z] + echo 01_Getting_watershed_boundaries.ipynb -[2024-03-07T16:37:04.184Z] + sed s/.ipynb$// -[2024-03-07T16:37:04.184Z] + filename=01_Getting_watershed_boundaries -[2024-03-07T16:37:04.184Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-03-07T16:37:04.184Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-07T16:37:06.089Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-03-07T16:37:18.289Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-03-07T16:37:18.289Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-07T16:37:18.289Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-03-07T16:37:18.289Z] + sed s/.ipynb$// -[2024-03-07T16:37:18.289Z] + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-03-07T16:37:18.289Z] + filename=02_Extract_geographical_watershed_properties -[2024-03-07T16:37:18.289Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-03-07T16:37:18.289Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-07T16:37:18.290Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-03-07T16:37:36.377Z] [NbConvertApp] Writing 95487 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-03-07T16:37:36.377Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-07T16:37:36.377Z] + filename=03_Extracting_forcing_data.ipynb -[2024-03-07T16:37:36.377Z] + + sed s/.ipynb$// -[2024-03-07T16:37:36.377Z] echo 03_Extracting_forcing_data.ipynb -[2024-03-07T16:37:36.377Z] + filename=03_Extracting_forcing_data -[2024-03-07T16:37:36.377Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-03-07T16:37:36.377Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-07T16:37:36.377Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-03-07T16:39:27.956Z] [NbConvertApp] Writing 63069 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-03-07T16:39:27.956Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-07T16:39:27.956Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-03-07T16:39:27.956Z] + + sed s/.ipynb$// -[2024-03-07T16:39:27.956Z] echo 04_Emulating_hydrological_models.ipynb -[2024-03-07T16:39:27.956Z] + filename=04_Emulating_hydrological_models -[2024-03-07T16:39:27.957Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-03-07T16:39:27.957Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-07T16:39:29.867Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-03-07T16:39:47.956Z] [NbConvertApp] Writing 159319 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-03-07T16:39:47.956Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-07T16:39:47.956Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-03-07T16:39:47.956Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-03-07T16:39:47.956Z] + sed s/.ipynb$// -[2024-03-07T16:39:47.956Z] + filename=05_Advanced_RavenPy_configuration -[2024-03-07T16:39:47.956Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-03-07T16:39:47.956Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-07T16:39:47.956Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-03-07T16:40:06.115Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-03-07T16:40:06.115Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-07T16:40:06.115Z] + filename=06_Raven_calibration.ipynb -[2024-03-07T16:40:06.115Z] + echo 06_Raven_calibration.ipynb -[2024-03-07T16:40:06.115Z] + sed s/.ipynb$// -[2024-03-07T16:40:06.115Z] + filename=06_Raven_calibration -[2024-03-07T16:40:06.115Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-03-07T16:40:06.115Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-07T16:40:07.485Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-03-07T16:40:22.341Z] [NbConvertApp] Writing 24180 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-03-07T16:40:22.342Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-07T16:40:22.342Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-03-07T16:40:22.342Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-03-07T16:40:22.342Z] + sed s/.ipynb$// -[2024-03-07T16:40:22.342Z] + filename=07_Making_and_using_hotstart_files -[2024-03-07T16:40:22.342Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-03-07T16:40:22.342Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-07T16:40:22.342Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-03-07T16:40:34.540Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-03-07T16:40:34.540Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-07T16:40:34.540Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-07T16:40:34.540Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-07T16:40:34.540Z] + sed s/.ipynb$// -[2024-03-07T16:40:34.540Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-03-07T16:40:34.540Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-03-07T16:40:34.540Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-07T16:40:36.430Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-03-07T16:44:27.906Z] [NbConvertApp] Writing 248648 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb -[2024-03-07T16:44:27.906Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-07T16:44:27.906Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-07T16:44:27.906Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-07T16:44:27.906Z] + sed s/.ipynb$// -[2024-03-07T16:44:27.906Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-03-07T16:44:27.906Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-03-07T16:44:27.906Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-07T16:44:27.906Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-03-07T16:44:37.906Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-03-07T16:44:37.906Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-07T16:44:37.906Z] + filename=10_Data_assimilation.ipynb -[2024-03-07T16:44:37.906Z] + + echo 10_Data_assimilation.ipynbsed -[2024-03-07T16:44:37.906Z] s/.ipynb$// -[2024-03-07T16:44:37.906Z] + filename=10_Data_assimilation -[2024-03-07T16:44:37.906Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-03-07T16:44:37.906Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-07T16:44:39.821Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-03-07T16:46:01.307Z] [NbConvertApp] Writing 687320 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-03-07T16:46:01.307Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-07T16:46:01.307Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-03-07T16:46:01.307Z] + sed s/.ipynb$// -[2024-03-07T16:46:01.307Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-03-07T16:46:01.307Z] + filename=11_Climatological_ESP_forecasting -[2024-03-07T16:46:01.307Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-03-07T16:46:01.307Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-07T16:46:01.307Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-03-07T16:46:40.030Z] [NbConvertApp] Writing 552432 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-03-07T16:46:40.030Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-07T16:46:40.030Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-03-07T16:46:40.030Z] + + echo 12_Performing_hindcasting_experiments.ipynb -[2024-03-07T16:46:40.030Z] sed s/.ipynb$// -[2024-03-07T16:46:40.030Z] + filename=12_Performing_hindcasting_experiments -[2024-03-07T16:46:40.030Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-03-07T16:46:40.030Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-07T16:46:40.030Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-03-07T16:46:58.273Z] [NbConvertApp] Writing 297532 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-03-07T16:46:58.273Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-07T16:46:58.273Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-03-07T16:46:58.273Z] + sed s/.ipynb$// -[2024-03-07T16:46:58.273Z] + echo Assess_probabilistic_flood_risk.ipynb -[2024-03-07T16:46:58.273Z] + filename=Assess_probabilistic_flood_risk -[2024-03-07T16:46:58.273Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-03-07T16:46:58.273Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-07T16:46:58.273Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-03-07T16:47:30.417Z] [NbConvertApp] Writing 546467 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-03-07T16:47:30.417Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-07T16:47:30.417Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-07T16:47:30.417Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-07T16:47:30.417Z] + sed s/.ipynb$// -[2024-03-07T16:47:30.417Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-03-07T16:47:30.418Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-03-07T16:47:30.418Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-07T16:47:31.356Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-03-07T16:48:03.446Z] [NbConvertApp] Writing 745147 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-03-07T16:48:03.446Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-07T16:48:03.446Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-03-07T16:48:03.446Z] + sed s/.ipynb$// -[2024-03-07T16:48:03.446Z] + echo Distributed_hydrological_modelling.ipynb -[2024-03-07T16:48:03.446Z] + filename=Distributed_hydrological_modelling -[2024-03-07T16:48:03.446Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-03-07T16:48:03.446Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-07T16:48:04.390Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-03-07T16:48:43.101Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-03-07T16:48:43.101Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-07T16:48:43.101Z] + filename=HydroShare_integration.ipynb -[2024-03-07T16:48:43.101Z] + echo HydroShare_integration.ipynb -[2024-03-07T16:48:43.101Z] + sed s/.ipynb$// -[2024-03-07T16:48:43.101Z] + filename=HydroShare_integration -[2024-03-07T16:48:43.101Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-03-07T16:48:43.101Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-07T16:48:43.101Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-03-07T16:48:43.101Z] [NbConvertApp] Writing 23262 bytes to buildout/HydroShare_integration.output.ipynb -[2024-03-07T16:48:43.101Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-07T16:48:43.101Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-03-07T16:48:43.101Z] + echo Hydrological_realtime_forecasting.ipynb -[2024-03-07T16:48:43.101Z] + sed s/.ipynb$// -[2024-03-07T16:48:43.101Z] + filename=Hydrological_realtime_forecasting -[2024-03-07T16:48:43.101Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-03-07T16:48:43.101Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-07T16:48:45.005Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-03-07T16:49:07.028Z] [NbConvertApp] Writing 311830 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-03-07T16:49:07.028Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-07T16:49:07.028Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-03-07T16:49:07.028Z] + sed s/.ipynb$// -[2024-03-07T16:49:07.028Z] + echo Managing_Jupyter_Environments.ipynb -[2024-03-07T16:49:07.028Z] + filename=Managing_Jupyter_Environments -[2024-03-07T16:49:07.028Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-03-07T16:49:07.028Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-07T16:49:08.408Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-03-07T16:49:20.616Z] [NbConvertApp] Writing 7561 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-03-07T16:49:20.616Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-07T16:49:20.616Z] + filename=Perform_Regionalization.ipynb -[2024-03-07T16:49:20.616Z] + echo Perform_Regionalization.ipynb -[2024-03-07T16:49:20.616Z] + sed s/.ipynb$// -[2024-03-07T16:49:20.616Z] + filename=Perform_Regionalization -[2024-03-07T16:49:20.616Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-03-07T16:49:20.616Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-07T16:49:21.182Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-03-07T16:49:59.960Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-03-07T16:49:59.960Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-07T16:49:59.960Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-07T16:49:59.960Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-07T16:49:59.960Z] + sed s/.ipynb$// -[2024-03-07T16:49:59.960Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-03-07T16:49:59.960Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-03-07T16:49:59.960Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-07T16:49:59.960Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-03-07T16:50:18.094Z] [NbConvertApp] Writing 118113 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-03-07T16:50:18.367Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-07T16:50:18.367Z] + filename=Sensitivity_analysis.ipynb -[2024-03-07T16:50:18.367Z] + echo Sensitivity_analysis.ipynb -[2024-03-07T16:50:18.367Z] + sed s/.ipynb$// -[2024-03-07T16:50:18.367Z] + filename=Sensitivity_analysis -[2024-03-07T16:50:18.367Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-03-07T16:50:18.367Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-07T16:50:20.279Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-03-07T16:50:42.266Z] [NbConvertApp] Writing 35352 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-03-07T16:50:42.266Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-07T16:50:42.266Z] + filename=time_series_analysis.ipynb -[2024-03-07T16:50:42.266Z] + echo time_series_analysis.ipynb -[2024-03-07T16:50:42.266Z] + sed s/.ipynb$// -[2024-03-07T16:50:42.266Z] + filename=time_series_analysis -[2024-03-07T16:50:42.266Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-03-07T16:50:42.266Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-07T16:50:43.217Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-03-07T16:50:58.197Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb -[2024-03-07T16:50:58.458Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-07T16:50:58.458Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-07T16:50:58.458Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-07T16:50:58.458Z] + sed s/.ipynb$// -[2024-03-07T16:50:58.458Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-03-07T16:50:58.458Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-03-07T16:50:58.459Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-07T16:51:00.366Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-03-07T16:52:21.822Z] [NbConvertApp] Writing 131058 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-03-07T16:52:21.822Z] + basename notebooks/hummingbird.ipynb -[2024-03-07T16:52:21.822Z] + filename=hummingbird.ipynb -[2024-03-07T16:52:21.822Z] + echo hummingbird.ipynb -[2024-03-07T16:52:21.822Z] + sed s/.ipynb$// -[2024-03-07T16:52:21.822Z] + filename=hummingbird -[2024-03-07T16:52:21.822Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-03-07T16:52:21.822Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-03-07T16:52:23.196Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-03-07T16:52:27.400Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb -[2024-03-07T16:52:27.400Z] + basename notebooks/stress-tests.ipynb -[2024-03-07T16:52:27.400Z] + filename=stress-tests.ipynb -[2024-03-07T16:52:27.400Z] + + echo stress-tests.ipynb -[2024-03-07T16:52:27.400Z] sed s/.ipynb$// -[2024-03-07T16:52:27.400Z] + filename=stress-tests -[2024-03-07T16:52:27.400Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-03-07T16:52:27.400Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-03-07T16:52:28.343Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-03-07T16:54:19.834Z] [NbConvertApp] Writing 424213 bytes to buildout/stress-tests.output.ipynb -[2024-03-07T16:54:19.834Z] + exit 1 -[2024-03-07T16:54:19.834Z] + EXIT_CODE=1 -[2024-03-07T16:54:19.834Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-07T16:54:19.834Z] + mkdir -p buildout/env-dump -[2024-03-07T16:54:19.834Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-07T16:54:19.834Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-07T16:54:19.834Z] + conda env export -n birdy -[2024-03-07T16:54:37.912Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-07T16:54:37.912Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-07T16:54:37.912Z] + conda list -n birdy --explicit -[2024-03-07T16:54:44.483Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-07T16:54:44.483Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-07T16:54:44.483Z] + pip freeze -[2024-03-07T16:54:46.399Z] + exit 1 +[2024-03-07T16:13:26.938Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-07T16:13:26.938Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-07T16:13:26.938Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-07T16:13:26.938Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-07T16:13:26.938Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-07T16:13:26.938Z] FINCH_BRANCH has been set to 'master' +[2024-03-07T16:13:26.938Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-07T16:13:26.938Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-07T16:13:26.938Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-07T16:13:26.938Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-07T16:13:26.938Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-07T16:13:26.938Z] RAVEN_BRANCH has been set to 'main' +[2024-03-07T16:13:26.938Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-07T16:13:26.938Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-07T16:13:26.938Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-07T16:13:26.938Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-07T16:13:26.938Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-07T16:13:26.938Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-07T16:13:26.938Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-07T16:13:26.938Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-07T16:13:26.938Z] + git clean -fdx +[2024-03-07T16:13:27.874Z] Removing .pytest_cache/ +[2024-03-07T16:13:27.874Z] Removing PAVICS-landing-master/ +[2024-03-07T16:13:27.874Z] Removing RavenPy-master/ +[2024-03-07T16:13:27.874Z] Removing __pycache__/ +[2024-03-07T16:13:27.874Z] Removing buildout/ +[2024-03-07T16:13:27.874Z] Removing esgf-compute-api-devel/ +[2024-03-07T16:13:27.874Z] Removing finch-master/ +[2024-03-07T16:13:27.874Z] Removing pavics-sdi-master/ +[2024-03-07T16:13:27.874Z] Removing raven-master/ +[2024-03-07T16:13:27.874Z] + ./downloadrepos +[2024-03-07T16:13:28.135Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-07T16:13:28.135Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-07T16:13:28.135Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-07T16:13:28.135Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-07T16:13:28.135Z] FINCH_BRANCH has been set to 'master' +[2024-03-07T16:13:28.135Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-07T16:13:28.135Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-07T16:13:28.135Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-07T16:13:28.135Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-07T16:13:28.135Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-07T16:13:28.135Z] RAVEN_BRANCH has been set to 'main' +[2024-03-07T16:13:28.135Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-07T16:13:28.135Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-07T16:13:28.135Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-07T16:13:28.135Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-07T16:13:28.135Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-07T16:13:28.135Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-07T16:13:28.135Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-07T16:13:28.135Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-07T16:13:28.135Z] + rm -rf pavics-sdi-* +[2024-03-07T16:13:28.135Z] + ls +[2024-03-07T16:13:28.135Z] + grep pavics-sdi +[2024-03-07T16:13:28.135Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-03-07T16:13:28.135Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-07T16:13:28.135Z] + shift +[2024-03-07T16:13:28.135Z] + branch=master +[2024-03-07T16:13:28.135Z] + shift +[2024-03-07T16:13:28.135Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-03-07T16:13:28.135Z] + tar xz +[2024-03-07T16:13:32.315Z] + ls +[2024-03-07T16:13:32.315Z] + grep pavics-sdi +[2024-03-07T16:13:32.315Z] pavics-sdi-master +[2024-03-07T16:13:32.315Z] + set +x +[2024-03-07T16:13:32.315Z] + rm -rf finch-* +[2024-03-07T16:13:32.315Z] + ls +[2024-03-07T16:13:32.315Z] + grep finch +[2024-03-07T16:13:32.315Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-07T16:13:32.315Z] + github_repo=https://github.com/bird-house/finch +[2024-03-07T16:13:32.315Z] + shift +[2024-03-07T16:13:32.315Z] + branch=master +[2024-03-07T16:13:32.315Z] + shift +[2024-03-07T16:13:32.315Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-03-07T16:13:32.315Z] + tar xz +[2024-03-07T16:13:34.205Z] + ls +[2024-03-07T16:13:34.205Z] + grep finch +[2024-03-07T16:13:34.205Z] finch-master +[2024-03-07T16:13:34.205Z] + set +x +[2024-03-07T16:13:34.205Z] + rm -rf PAVICS-landing-* +[2024-03-07T16:13:34.205Z] + ls +[2024-03-07T16:13:34.205Z] + grep PAVICS-landing +[2024-03-07T16:13:34.205Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-03-07T16:13:34.205Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-07T16:13:34.205Z] + shift +[2024-03-07T16:13:34.205Z] + branch=master +[2024-03-07T16:13:34.205Z] + shift +[2024-03-07T16:13:34.205Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-03-07T16:13:34.205Z] + tar xz +[2024-03-07T16:13:49.067Z] + grep PAVICS-landing +[2024-03-07T16:13:49.067Z] + ls +[2024-03-07T16:13:49.067Z] PAVICS-landing-master +[2024-03-07T16:13:49.067Z] + set +x +[2024-03-07T16:13:49.067Z] + rm -rf raven-* +[2024-03-07T16:13:49.067Z] + ls +[2024-03-07T16:13:49.067Z] + grep raven +[2024-03-07T16:13:49.067Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-07T16:13:49.067Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-07T16:13:49.067Z] + shift +[2024-03-07T16:13:49.067Z] + branch=main +[2024-03-07T16:13:49.067Z] + shift +[2024-03-07T16:13:49.067Z] + tar xz +[2024-03-07T16:13:49.067Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-07T16:13:49.067Z] + ls +[2024-03-07T16:13:49.067Z] + grep raven +[2024-03-07T16:13:49.067Z] raven-main +[2024-03-07T16:13:49.067Z] + set +x +[2024-03-07T16:13:49.067Z] + rm -rf RavenPy-* +[2024-03-07T16:13:49.067Z] + ls +[2024-03-07T16:13:49.067Z] + grep RavenPy +[2024-03-07T16:13:49.068Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-07T16:13:49.068Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-07T16:13:49.068Z] + shift +[2024-03-07T16:13:49.068Z] + branch=master +[2024-03-07T16:13:49.068Z] + shift +[2024-03-07T16:13:49.068Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-07T16:13:49.068Z] + tar xz +[2024-03-07T16:13:50.994Z] + ls +[2024-03-07T16:13:50.994Z] + grep RavenPy +[2024-03-07T16:13:50.994Z] RavenPy-master +[2024-03-07T16:13:50.994Z] + set +x +[2024-03-07T16:13:50.994Z] + rm -rf esgf-compute-api-* +[2024-03-07T16:13:50.994Z] + ls +[2024-03-07T16:13:50.994Z] + grep esgf-compute-api +[2024-03-07T16:13:50.994Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-07T16:13:50.994Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-07T16:13:50.994Z] + shift +[2024-03-07T16:13:50.994Z] + branch=devel +[2024-03-07T16:13:50.994Z] + shift +[2024-03-07T16:13:50.994Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-03-07T16:13:50.994Z] + tar xz +[2024-03-07T16:13:51.927Z] + ls +[2024-03-07T16:13:51.927Z] + grep esgf-compute-api +[2024-03-07T16:13:51.927Z] esgf-compute-api-devel +[2024-03-07T16:13:51.927Z] + set +x +[2024-03-07T16:13:51.927Z] + echo master +[2024-03-07T16:13:51.927Z] + sed s@/@-@g +[2024-03-07T16:13:51.927Z] + PAVICS_SDI_BRANCH=master +[2024-03-07T16:13:51.927Z] + echo Ouranosinc/pavics-sdi +[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g +[2024-03-07T16:13:51.927Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-07T16:13:51.927Z] + echo master +[2024-03-07T16:13:51.927Z] + sed s@/@-@g +[2024-03-07T16:13:51.927Z] + FINCH_BRANCH=master +[2024-03-07T16:13:51.927Z] + echo bird-house/finch +[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g +[2024-03-07T16:13:51.927Z] + FINCH_REPO_NAME=finch +[2024-03-07T16:13:51.927Z] + echo master +[2024-03-07T16:13:51.927Z] + sed s@/@-@g +[2024-03-07T16:13:51.927Z] + PAVICS_LANDING_BRANCH=master +[2024-03-07T16:13:51.927Z] + echo Ouranosinc/PAVICS-landing +[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g +[2024-03-07T16:13:51.927Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-07T16:13:51.927Z] + echo main +[2024-03-07T16:13:51.927Z] + sed s@/@-@g +[2024-03-07T16:13:51.927Z] + RAVEN_BRANCH=main +[2024-03-07T16:13:51.927Z] + echo Ouranosinc/raven +[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g +[2024-03-07T16:13:51.927Z] + RAVEN_REPO_NAME=raven +[2024-03-07T16:13:51.927Z] + echo master +[2024-03-07T16:13:51.927Z] + sed s@/@-@g +[2024-03-07T16:13:51.927Z] + RAVENPY_BRANCH=master +[2024-03-07T16:13:51.927Z] + echo CSHS-CWRA/RavenPy +[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g +[2024-03-07T16:13:51.927Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-07T16:13:51.927Z] + echo devel +[2024-03-07T16:13:51.927Z] + sed s@/@-@g +[2024-03-07T16:13:51.927Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-07T16:13:51.927Z] + echo ESGF/esgf-compute-api +[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g +[2024-03-07T16:13:51.927Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-07T16:13:51.927Z] + echo pavics-sdi-master +[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:13:51.927Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-03-07T16:13:51.927Z] + echo finch-master +[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:13:51.927Z] + FINCH_DIR=finch-master +[2024-03-07T16:13:51.927Z] + echo PAVICS-landing-master +[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:13:51.927Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-03-07T16:13:51.927Z] + echo raven-main +[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:13:51.927Z] + RAVEN_DIR=raven-main +[2024-03-07T16:13:51.927Z] + echo RavenPy-master +[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:13:51.927Z] + RAVENPY_DIR=RavenPy-master +[2024-03-07T16:13:51.927Z] + echo esgf-compute-api-devel +[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-07T16:13:51.927Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-07T16:13:51.927Z] + echo true +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + VERIFY_SSL=true +[2024-03-07T16:13:51.928Z] + [ xtrue = xfalse ] +[2024-03-07T16:13:51.928Z] + rm -v finch-master/setup.cfg +[2024-03-07T16:13:51.928Z] removed 'finch-master/setup.cfg' +[2024-03-07T16:13:51.928Z] + rm -v raven-main/setup.cfg +[2024-03-07T16:13:51.928Z] removed 'raven-main/setup.cfg' +[2024-03-07T16:13:51.928Z] + rm -v raven-main/pyproject.toml +[2024-03-07T16:13:51.928Z] removed 'raven-main/pyproject.toml' +[2024-03-07T16:13:51.928Z] + rm -v RavenPy-master/setup.cfg +[2024-03-07T16:13:51.928Z] removed 'RavenPy-master/setup.cfg' +[2024-03-07T16:13:51.928Z] + rm -v RavenPy-master/tox.ini +[2024-03-07T16:13:51.928Z] removed 'RavenPy-master/tox.ini' +[2024-03-07T16:13:51.928Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-07T16:13:51.928Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-07T16:13:51.928Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-07T16:13:51.928Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-07T16:13:51.928Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-07T16:13:51.928Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-07T16:13:51.928Z] + echo false +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + TEST_MAGPIE_AUTH=false +[2024-03-07T16:13:51.928Z] + echo false +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + TEST_PAVICS_SDI_REPO=false +[2024-03-07T16:13:51.928Z] + echo false +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-07T16:13:51.928Z] + echo false +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + TEST_FINCH_REPO=false +[2024-03-07T16:13:51.928Z] + echo false +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + TEST_PAVICS_LANDING_REPO=false +[2024-03-07T16:13:51.928Z] + echo true +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + TEST_RAVEN_REPO=true +[2024-03-07T16:13:51.928Z] + echo true +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + TEST_RAVENPY_REPO=true +[2024-03-07T16:13:51.928Z] + echo false +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-07T16:13:51.928Z] + echo true +[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] +[2024-03-07T16:13:51.928Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= +[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] +[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] +[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] +[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] +[2024-03-07T16:13:51.928Z] + [ xtrue = xtrue ] +[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-03-07T16:13:51.928Z] + [ xtrue = xtrue ] +[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] +[2024-03-07T16:13:51.928Z] + [ xtrue = xtrue ] +[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb notebooks/*.ipynb +[2024-03-07T16:13:51.929Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb notebooks/*.ipynb +[2024-03-07T16:13:52.868Z] + [ -n ] +[2024-03-07T16:13:52.869Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-07T16:13:52.869Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-07T16:13:52.869Z] Will run notebooks against pavics.ouranos.ca +[2024-03-07T16:13:52.869Z] + [ -z ] +[2024-03-07T16:13:52.869Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-03-07T16:13:52.869Z] + git diff +[2024-03-07T16:13:52.869Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-07T16:13:52.869Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-03-07T16:13:55.397Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-07T16:13:55.397Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-07T16:13:55.657Z] ============================= test session starts ============================== +[2024-03-07T16:13:55.657Z] platform linux -- Python 3.10.13, pytest-8.0.2, pluggy-1.4.0 +[2024-03-07T16:13:55.658Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-03-07T16:13:55.658Z] plugins: anyio-4.3.0, dash-2.16.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-03-07T16:13:55.658Z] collected 260 items +[2024-03-07T16:13:55.658Z] +[2024-03-07T16:14:08.222Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-03-07T16:14:08.787Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 3%] +[2024-03-07T16:14:25.264Z] ...... [ 6%] +[2024-03-07T16:14:27.176Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 8%] +[2024-03-07T16:14:27.176Z] [ 8%] +[2024-03-07T16:14:29.340Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-03-07T16:14:37.490Z] .... [ 11%] +[2024-03-07T16:14:42.769Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 11%] +[2024-03-07T16:15:02.732Z] ....FFFF.FF.F [ 16%] +[2024-03-07T16:15:44.192Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb .......FF [ 20%] +[2024-03-07T16:16:53.095Z] .F [ 21%] +[2024-03-07T16:16:57.313Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 22%] +[2024-03-07T16:17:06.117Z] ..FFFFFFFF....... [ 28%] +[2024-03-07T16:17:12.852Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 29%] +[2024-03-07T16:17:23.593Z] ........... [ 33%] +[2024-03-07T16:18:31.320Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb EEEEEE [ 36%] +[2024-03-07T16:18:33.849Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 36%] +[2024-03-07T16:18:39.401Z] ..... [ 38%] +[2024-03-07T16:18:40.792Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 38%] +[2024-03-07T16:23:23.421Z] ................. [ 45%] +[2024-03-07T16:23:28.684Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 45%] +[2024-03-07T16:23:36.774Z] .... [ 47%] +[2024-03-07T16:24:43.383Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 50%] +[2024-03-07T16:24:53.347Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 51%] +[2024-03-07T16:25:25.528Z] ...... [ 53%] +[2024-03-07T16:25:33.698Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 53%] +[2024-03-07T16:25:42.619Z] ....... [ 56%] +[2024-03-07T16:25:50.216Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 58%] +[2024-03-07T16:26:10.180Z] .... [ 59%] +[2024-03-07T16:26:18.296Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 60%] +[2024-03-07T16:26:37.635Z] ....... [ 62%] +[2024-03-07T16:26:40.917Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 63%] +[2024-03-07T16:27:07.198Z] ....... [ 65%] +[2024-03-07T16:27:11.406Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 67%] +[2024-03-07T16:27:22.067Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 68%] +[2024-03-07T16:27:29.300Z] .... [ 69%] +[2024-03-07T16:28:22.345Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 70%] +[2024-03-07T16:28:52.833Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 73%] +[2024-03-07T16:28:52.833Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 73%] +[2024-03-07T16:29:06.683Z] ............. [ 78%] +[2024-03-07T16:29:26.895Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 80%] +[2024-03-07T16:29:33.984Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 85%] +[2024-03-07T16:29:43.961Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 85%] +[2024-03-07T16:31:04.765Z] ......FFFFFFFFFFFFFF [ 93%] +[2024-03-07T16:31:07.197Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-03-07T16:33:08.625Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] ==================================== ERRORS ==================================== +[2024-03-07T16:33:08.625Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 0 _ +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] cls = +[2024-03-07T16:33:08.625Z] func = . at 0x7f0abbb0b520> +[2024-03-07T16:33:08.625Z] when = 'setup' +[2024-03-07T16:33:08.625Z] reraise = (, ) +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] @classmethod +[2024-03-07T16:33:08.625Z] def from_call( +[2024-03-07T16:33:08.625Z] cls, +[2024-03-07T16:33:08.625Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.625Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.625Z] reraise: Optional[ +[2024-03-07T16:33:08.625Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.625Z] ] = None, +[2024-03-07T16:33:08.625Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.625Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] :param func: +[2024-03-07T16:33:08.625Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.625Z] :param when: +[2024-03-07T16:33:08.625Z] The phase in which the function is called. +[2024-03-07T16:33:08.625Z] :param reraise: +[2024-03-07T16:33:08.625Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.625Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.625Z] """ +[2024-03-07T16:33:08.625Z] excinfo = None +[2024-03-07T16:33:08.625Z] start = timing.time() +[2024-03-07T16:33:08.625Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.625Z] try: +[2024-03-07T16:33:08.625Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.625Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.625Z] ) +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.625Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] self = +[2024-03-07T16:33:08.625Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.625Z] """Call the hook. +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.625Z] specification. +[2024-03-07T16:33:08.625Z] +[2024-03-07T16:33:08.625Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.625Z] :ref:`calling`. +[2024-03-07T16:33:08.625Z] """ +[2024-03-07T16:33:08.625Z] assert ( +[2024-03-07T16:33:08.626Z] not self.is_historic() +[2024-03-07T16:33:08.626Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.626Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.626Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.626Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.626Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.626Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.626Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.626Z] methods = [>, >, ...] +[2024-03-07T16:33:08.626Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] def _hookexec( +[2024-03-07T16:33:08.626Z] self, +[2024-03-07T16:33:08.626Z] hook_name: str, +[2024-03-07T16:33:08.626Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.626Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.626Z] firstresult: bool, +[2024-03-07T16:33:08.626Z] ) -> object | list[object]: +[2024-03-07T16:33:08.626Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.626Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.626Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.626Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.626Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.626Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] def _multicall( +[2024-03-07T16:33:08.626Z] hook_name: str, +[2024-03-07T16:33:08.626Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.626Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.626Z] firstresult: bool, +[2024-03-07T16:33:08.626Z] ) -> object | list[object]: +[2024-03-07T16:33:08.626Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.626Z] result(s). +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.626Z] """ +[2024-03-07T16:33:08.626Z] __tracebackhide__ = True +[2024-03-07T16:33:08.626Z] results: list[object] = [] +[2024-03-07T16:33:08.626Z] exception = None +[2024-03-07T16:33:08.626Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.626Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.626Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.626Z] try: +[2024-03-07T16:33:08.626Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.626Z] try: +[2024-03-07T16:33:08.626Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.626Z] except KeyError: +[2024-03-07T16:33:08.626Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.626Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.626Z] raise HookCallError( +[2024-03-07T16:33:08.626Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.626Z] ) +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.626Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.626Z] try: +[2024-03-07T16:33:08.626Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.626Z] # which is the desired response. +[2024-03-07T16:33:08.626Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.626Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.626Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.626Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.626Z] except StopIteration: +[2024-03-07T16:33:08.626Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.626Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.626Z] try: +[2024-03-07T16:33:08.626Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.626Z] # which is the desired response. +[2024-03-07T16:33:08.626Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.626Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.626Z] next(function_gen) # first yield +[2024-03-07T16:33:08.626Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.626Z] except StopIteration: +[2024-03-07T16:33:08.626Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.626Z] else: +[2024-03-07T16:33:08.626Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.626Z] if res is not None: +[2024-03-07T16:33:08.626Z] results.append(res) +[2024-03-07T16:33:08.626Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.626Z] break +[2024-03-07T16:33:08.626Z] except BaseException as exc: +[2024-03-07T16:33:08.626Z] exception = exc +[2024-03-07T16:33:08.626Z] finally: +[2024-03-07T16:33:08.626Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.626Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.626Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.626Z] result = results[0] if results else None +[2024-03-07T16:33:08.626Z] else: +[2024-03-07T16:33:08.626Z] result = results +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.626Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.626Z] try: +[2024-03-07T16:33:08.626Z] if exception is not None: +[2024-03-07T16:33:08.626Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.626Z] else: +[2024-03-07T16:33:08.626Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.626Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.626Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.626Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.626Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.626Z] except StopIteration as si: +[2024-03-07T16:33:08.626Z] result = si.value +[2024-03-07T16:33:08.626Z] exception = None +[2024-03-07T16:33:08.626Z] continue +[2024-03-07T16:33:08.626Z] except BaseException as e: +[2024-03-07T16:33:08.626Z] exception = e +[2024-03-07T16:33:08.626Z] continue +[2024-03-07T16:33:08.626Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] if exception is not None: +[2024-03-07T16:33:08.626Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.626Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.626Z] +[2024-03-07T16:33:08.626Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.627Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.627Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] def _multicall( +[2024-03-07T16:33:08.627Z] hook_name: str, +[2024-03-07T16:33:08.627Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.627Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.627Z] firstresult: bool, +[2024-03-07T16:33:08.627Z] ) -> object | list[object]: +[2024-03-07T16:33:08.627Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.627Z] result(s). +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.627Z] """ +[2024-03-07T16:33:08.627Z] __tracebackhide__ = True +[2024-03-07T16:33:08.627Z] results: list[object] = [] +[2024-03-07T16:33:08.627Z] exception = None +[2024-03-07T16:33:08.627Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.627Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.627Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.627Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.627Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.627Z] except KeyError: +[2024-03-07T16:33:08.627Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.627Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.627Z] raise HookCallError( +[2024-03-07T16:33:08.627Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.627Z] ) +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.627Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.627Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.627Z] # which is the desired response. +[2024-03-07T16:33:08.627Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.627Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.627Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.627Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.627Z] except StopIteration: +[2024-03-07T16:33:08.627Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.627Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.627Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.627Z] # which is the desired response. +[2024-03-07T16:33:08.627Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.627Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.627Z] next(function_gen) # first yield +[2024-03-07T16:33:08.627Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.627Z] except StopIteration: +[2024-03-07T16:33:08.627Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.627Z] else: +[2024-03-07T16:33:08.627Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.627Z] if res is not None: +[2024-03-07T16:33:08.627Z] results.append(res) +[2024-03-07T16:33:08.627Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.627Z] break +[2024-03-07T16:33:08.627Z] except BaseException as exc: +[2024-03-07T16:33:08.627Z] exception = exc +[2024-03-07T16:33:08.627Z] finally: +[2024-03-07T16:33:08.627Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.627Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.627Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.627Z] result = results[0] if results else None +[2024-03-07T16:33:08.627Z] else: +[2024-03-07T16:33:08.627Z] result = results +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.627Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.627Z] if exception is not None: +[2024-03-07T16:33:08.627Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.627Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.627Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.627Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.627Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.627Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.627Z] > yield +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.627Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.627Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.627Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] def _multicall( +[2024-03-07T16:33:08.627Z] hook_name: str, +[2024-03-07T16:33:08.627Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.627Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.627Z] firstresult: bool, +[2024-03-07T16:33:08.627Z] ) -> object | list[object]: +[2024-03-07T16:33:08.627Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.627Z] result(s). +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.627Z] """ +[2024-03-07T16:33:08.627Z] __tracebackhide__ = True +[2024-03-07T16:33:08.627Z] results: list[object] = [] +[2024-03-07T16:33:08.627Z] exception = None +[2024-03-07T16:33:08.627Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.627Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.627Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.627Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.627Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.627Z] except KeyError: +[2024-03-07T16:33:08.627Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.627Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.627Z] raise HookCallError( +[2024-03-07T16:33:08.627Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.627Z] ) +[2024-03-07T16:33:08.627Z] +[2024-03-07T16:33:08.627Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.627Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.627Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.627Z] # which is the desired response. +[2024-03-07T16:33:08.627Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.627Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.627Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.627Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.627Z] except StopIteration: +[2024-03-07T16:33:08.627Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.627Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.627Z] try: +[2024-03-07T16:33:08.628Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.628Z] # which is the desired response. +[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.628Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.628Z] next(function_gen) # first yield +[2024-03-07T16:33:08.628Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.628Z] except StopIteration: +[2024-03-07T16:33:08.628Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.628Z] else: +[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.628Z] if res is not None: +[2024-03-07T16:33:08.628Z] results.append(res) +[2024-03-07T16:33:08.628Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.628Z] break +[2024-03-07T16:33:08.628Z] except BaseException as exc: +[2024-03-07T16:33:08.628Z] exception = exc +[2024-03-07T16:33:08.628Z] finally: +[2024-03-07T16:33:08.628Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.628Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.628Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.628Z] result = results[0] if results else None +[2024-03-07T16:33:08.628Z] else: +[2024-03-07T16:33:08.628Z] result = results +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.628Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.628Z] try: +[2024-03-07T16:33:08.628Z] if exception is not None: +[2024-03-07T16:33:08.628Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.628Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.628Z] item = +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.628Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.628Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.628Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.628Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.628Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.628Z] item = , when = 'setup' +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.628Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.628Z] with catching_logs( +[2024-03-07T16:33:08.628Z] self.caplog_handler, +[2024-03-07T16:33:08.628Z] level=self.log_level, +[2024-03-07T16:33:08.628Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.628Z] self.report_handler, +[2024-03-07T16:33:08.628Z] level=self.log_level, +[2024-03-07T16:33:08.628Z] ) as report_handler: +[2024-03-07T16:33:08.628Z] caplog_handler.reset() +[2024-03-07T16:33:08.628Z] report_handler.reset() +[2024-03-07T16:33:08.628Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.628Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] try: +[2024-03-07T16:33:08.628Z] > yield +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.628Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.628Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.628Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] def _multicall( +[2024-03-07T16:33:08.628Z] hook_name: str, +[2024-03-07T16:33:08.628Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.628Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.628Z] firstresult: bool, +[2024-03-07T16:33:08.628Z] ) -> object | list[object]: +[2024-03-07T16:33:08.628Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.628Z] result(s). +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.628Z] """ +[2024-03-07T16:33:08.628Z] __tracebackhide__ = True +[2024-03-07T16:33:08.628Z] results: list[object] = [] +[2024-03-07T16:33:08.628Z] exception = None +[2024-03-07T16:33:08.628Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.628Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.628Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.628Z] try: +[2024-03-07T16:33:08.628Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.628Z] try: +[2024-03-07T16:33:08.628Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.628Z] except KeyError: +[2024-03-07T16:33:08.628Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.628Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.628Z] raise HookCallError( +[2024-03-07T16:33:08.628Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.628Z] ) +[2024-03-07T16:33:08.628Z] +[2024-03-07T16:33:08.628Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.628Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.628Z] try: +[2024-03-07T16:33:08.628Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.628Z] # which is the desired response. +[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.628Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.628Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.628Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.628Z] except StopIteration: +[2024-03-07T16:33:08.628Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.628Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.628Z] try: +[2024-03-07T16:33:08.628Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.628Z] # which is the desired response. +[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.628Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.628Z] next(function_gen) # first yield +[2024-03-07T16:33:08.628Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.628Z] except StopIteration: +[2024-03-07T16:33:08.628Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.628Z] else: +[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.628Z] if res is not None: +[2024-03-07T16:33:08.628Z] results.append(res) +[2024-03-07T16:33:08.628Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.628Z] break +[2024-03-07T16:33:08.628Z] except BaseException as exc: +[2024-03-07T16:33:08.628Z] exception = exc +[2024-03-07T16:33:08.628Z] finally: +[2024-03-07T16:33:08.628Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.628Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.628Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.628Z] result = results[0] if results else None +[2024-03-07T16:33:08.628Z] else: +[2024-03-07T16:33:08.629Z] result = results +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.629Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.629Z] try: +[2024-03-07T16:33:08.629Z] if exception is not None: +[2024-03-07T16:33:08.629Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.629Z] item = +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.629Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.629Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.629Z] > return (yield) +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.629Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.629Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] def _multicall( +[2024-03-07T16:33:08.629Z] hook_name: str, +[2024-03-07T16:33:08.629Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.629Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.629Z] firstresult: bool, +[2024-03-07T16:33:08.629Z] ) -> object | list[object]: +[2024-03-07T16:33:08.629Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.629Z] result(s). +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.629Z] """ +[2024-03-07T16:33:08.629Z] __tracebackhide__ = True +[2024-03-07T16:33:08.629Z] results: list[object] = [] +[2024-03-07T16:33:08.629Z] exception = None +[2024-03-07T16:33:08.629Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.629Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.629Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.629Z] try: +[2024-03-07T16:33:08.629Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.629Z] try: +[2024-03-07T16:33:08.629Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.629Z] except KeyError: +[2024-03-07T16:33:08.629Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.629Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.629Z] raise HookCallError( +[2024-03-07T16:33:08.629Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.629Z] ) +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.629Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.629Z] try: +[2024-03-07T16:33:08.629Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.629Z] # which is the desired response. +[2024-03-07T16:33:08.629Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.629Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.629Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.629Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.629Z] except StopIteration: +[2024-03-07T16:33:08.629Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.629Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.629Z] try: +[2024-03-07T16:33:08.629Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.629Z] # which is the desired response. +[2024-03-07T16:33:08.629Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.629Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.629Z] next(function_gen) # first yield +[2024-03-07T16:33:08.629Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.629Z] except StopIteration: +[2024-03-07T16:33:08.629Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.629Z] else: +[2024-03-07T16:33:08.629Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.629Z] if res is not None: +[2024-03-07T16:33:08.629Z] results.append(res) +[2024-03-07T16:33:08.629Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.629Z] break +[2024-03-07T16:33:08.629Z] except BaseException as exc: +[2024-03-07T16:33:08.629Z] exception = exc +[2024-03-07T16:33:08.629Z] finally: +[2024-03-07T16:33:08.629Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.629Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.629Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.629Z] result = results[0] if results else None +[2024-03-07T16:33:08.629Z] else: +[2024-03-07T16:33:08.629Z] result = results +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.629Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.629Z] try: +[2024-03-07T16:33:08.629Z] if exception is not None: +[2024-03-07T16:33:08.629Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.629Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.629Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.629Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.629Z] try: +[2024-03-07T16:33:08.629Z] > yield +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.629Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.629Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] def _multicall( +[2024-03-07T16:33:08.629Z] hook_name: str, +[2024-03-07T16:33:08.629Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.629Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.629Z] firstresult: bool, +[2024-03-07T16:33:08.629Z] ) -> object | list[object]: +[2024-03-07T16:33:08.629Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.629Z] result(s). +[2024-03-07T16:33:08.629Z] +[2024-03-07T16:33:08.629Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.629Z] """ +[2024-03-07T16:33:08.629Z] __tracebackhide__ = True +[2024-03-07T16:33:08.629Z] results: list[object] = [] +[2024-03-07T16:33:08.630Z] exception = None +[2024-03-07T16:33:08.630Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.630Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.630Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.630Z] try: +[2024-03-07T16:33:08.630Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.630Z] try: +[2024-03-07T16:33:08.630Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.630Z] except KeyError: +[2024-03-07T16:33:08.630Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.630Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.630Z] raise HookCallError( +[2024-03-07T16:33:08.630Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.630Z] ) +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.630Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.630Z] try: +[2024-03-07T16:33:08.630Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.630Z] # which is the desired response. +[2024-03-07T16:33:08.630Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.630Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.630Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.630Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.630Z] except StopIteration: +[2024-03-07T16:33:08.630Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.630Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.630Z] try: +[2024-03-07T16:33:08.630Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.630Z] # which is the desired response. +[2024-03-07T16:33:08.630Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.630Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.630Z] next(function_gen) # first yield +[2024-03-07T16:33:08.630Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.630Z] except StopIteration: +[2024-03-07T16:33:08.630Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.630Z] else: +[2024-03-07T16:33:08.630Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] item = +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.630Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.630Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.630Z] item = +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.630Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.630Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.630Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.630Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.630Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.630Z] if exc: +[2024-03-07T16:33:08.630Z] raise exc +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.630Z] assert col not in self.stack +[2024-03-07T16:33:08.630Z] # Push onto the stack. +[2024-03-07T16:33:08.630Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.630Z] try: +[2024-03-07T16:33:08.630Z] col.setup() +[2024-03-07T16:33:08.630Z] except TEST_OUTCOME as exc: +[2024-03-07T16:33:08.630Z] self.stack[col] = (self.stack[col][0], exc) +[2024-03-07T16:33:08.630Z] > raise exc +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: +[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.630Z] item = +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.630Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.630Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.630Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.630Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.630Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.630Z] if exc: +[2024-03-07T16:33:08.630Z] raise exc +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.630Z] assert col not in self.stack +[2024-03-07T16:33:08.630Z] # Push onto the stack. +[2024-03-07T16:33:08.630Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.630Z] try: +[2024-03-07T16:33:08.630Z] > col.setup() +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: +[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] self = +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] def setup(self): +[2024-03-07T16:33:08.630Z] """ +[2024-03-07T16:33:08.630Z] Called by pytest to setup the collector cells in . +[2024-03-07T16:33:08.630Z] Here we start a kernel and setup the sanitize patterns. +[2024-03-07T16:33:08.630Z] """ +[2024-03-07T16:33:08.630Z] # we've already checked that --nbval-current-env and +[2024-03-07T16:33:08.630Z] # --nbval-kernel-name were not both supplied +[2024-03-07T16:33:08.630Z] if self.parent.config.option.nbval_current_env: +[2024-03-07T16:33:08.630Z] kernel_name = CURRENT_ENV_KERNEL_NAME +[2024-03-07T16:33:08.630Z] elif self.parent.config.option.nbval_kernel_name: +[2024-03-07T16:33:08.630Z] kernel_name = self.parent.config.option.nbval_kernel_name +[2024-03-07T16:33:08.630Z] else: +[2024-03-07T16:33:08.630Z] kernel_name = self.nb.metadata.get( +[2024-03-07T16:33:08.630Z] 'kernelspec', {}).get('name', 'python') +[2024-03-07T16:33:08.630Z] > self.kernel = RunningKernel( +[2024-03-07T16:33:08.630Z] kernel_name, +[2024-03-07T16:33:08.630Z] cwd=str(self.fspath.dirname), +[2024-03-07T16:33:08.630Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, +[2024-03-07T16:33:08.630Z] ) +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: +[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] self = +[2024-03-07T16:33:08.630Z] kernel_name = 'python' +[2024-03-07T16:33:08.630Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' +[2024-03-07T16:33:08.630Z] startup_timeout = 60 +[2024-03-07T16:33:08.630Z] +[2024-03-07T16:33:08.630Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): +[2024-03-07T16:33:08.630Z] """ +[2024-03-07T16:33:08.630Z] Initialise a new kernel +[2024-03-07T16:33:08.630Z] specify that matplotlib is inline and connect the stderr. +[2024-03-07T16:33:08.630Z] Stores the active kernel process and its manager. +[2024-03-07T16:33:08.631Z] """ +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] > self.km, self.kc = start_new_kernel( +[2024-03-07T16:33:08.631Z] startup_timeout=startup_timeout, +[2024-03-07T16:33:08.631Z] kernel_name=kernel_name, +[2024-03-07T16:33:08.631Z] stderr=open(os.devnull, 'w'), +[2024-03-07T16:33:08.631Z] cwd=cwd, +[2024-03-07T16:33:08.631Z] ) +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: +[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] startup_timeout = 60, kernel_name = 'python' +[2024-03-07T16:33:08.631Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} +[2024-03-07T16:33:08.631Z] km = +[2024-03-07T16:33:08.631Z] kc = +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): +[2024-03-07T16:33:08.631Z] """Start a new kernel, and return its Manager and Client""" +[2024-03-07T16:33:08.631Z] logger.debug('Starting new kernel: "%s"' % kernel_name) +[2024-03-07T16:33:08.631Z] km = KernelManager(kernel_name=kernel_name, +[2024-03-07T16:33:08.631Z] kernel_spec_manager=NbvalKernelspecManager()) +[2024-03-07T16:33:08.631Z] km.start_kernel(**kwargs) +[2024-03-07T16:33:08.631Z] kc = km.client() +[2024-03-07T16:33:08.631Z] kc.start_channels() +[2024-03-07T16:33:08.631Z] try: +[2024-03-07T16:33:08.631Z] > kc.wait_for_ready(timeout=startup_timeout) +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: +[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] args = (,) +[2024-03-07T16:33:08.631Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.631Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.631Z] nest_asyncio = +[2024-03-07T16:33:08.631Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.631Z] try: +[2024-03-07T16:33:08.631Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.631Z] except RuntimeError: +[2024-03-07T16:33:08.631Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.631Z] try: +[2024-03-07T16:33:08.631Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.631Z] except RuntimeError: +[2024-03-07T16:33:08.631Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.631Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.631Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.631Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.631Z] try: +[2024-03-07T16:33:08.631Z] return loop.run_until_complete(future) +[2024-03-07T16:33:08.631Z] except BaseException as e: +[2024-03-07T16:33:08.631Z] future.cancel() +[2024-03-07T16:33:08.631Z] > raise e +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: +[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] args = (,) +[2024-03-07T16:33:08.631Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.631Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.631Z] nest_asyncio = +[2024-03-07T16:33:08.631Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.631Z] try: +[2024-03-07T16:33:08.631Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.631Z] except RuntimeError: +[2024-03-07T16:33:08.631Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.631Z] try: +[2024-03-07T16:33:08.631Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.631Z] except RuntimeError: +[2024-03-07T16:33:08.631Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.631Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.631Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.631Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.631Z] try: +[2024-03-07T16:33:08.631Z] > return loop.run_until_complete(future) +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: +[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.631Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] def run_until_complete(self, future): +[2024-03-07T16:33:08.631Z] with manage_run(self): +[2024-03-07T16:33:08.631Z] f = asyncio.ensure_future(future, loop=self) +[2024-03-07T16:33:08.631Z] if f is not future: +[2024-03-07T16:33:08.631Z] f._log_destroy_pending = False +[2024-03-07T16:33:08.631Z] while not f.done(): +[2024-03-07T16:33:08.631Z] self._run_once() +[2024-03-07T16:33:08.631Z] if self._stopping: +[2024-03-07T16:33:08.631Z] break +[2024-03-07T16:33:08.631Z] if not f.done(): +[2024-03-07T16:33:08.631Z] raise RuntimeError( +[2024-03-07T16:33:08.631Z] 'Event loop stopped before Future completed.') +[2024-03-07T16:33:08.631Z] > return f.result() +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: +[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] def result(self): +[2024-03-07T16:33:08.631Z] """Return the result this future represents. +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] If the future has been cancelled, raises CancelledError. If the +[2024-03-07T16:33:08.631Z] future's result isn't yet available, raises InvalidStateError. If +[2024-03-07T16:33:08.631Z] the future is done and has an exception set, this exception is raised. +[2024-03-07T16:33:08.631Z] """ +[2024-03-07T16:33:08.631Z] if self._state == _CANCELLED: +[2024-03-07T16:33:08.631Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.631Z] raise exc +[2024-03-07T16:33:08.631Z] if self._state != _FINISHED: +[2024-03-07T16:33:08.631Z] raise exceptions.InvalidStateError('Result is not ready.') +[2024-03-07T16:33:08.631Z] self.__log_traceback = False +[2024-03-07T16:33:08.631Z] if self._exception is not None: +[2024-03-07T16:33:08.631Z] > raise self._exception.with_traceback(self._exception_tb) +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: +[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] self = None +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] def __step(self, exc=None): +[2024-03-07T16:33:08.631Z] if self.done(): +[2024-03-07T16:33:08.631Z] raise exceptions.InvalidStateError( +[2024-03-07T16:33:08.631Z] f'_step(): already done: {self!r}, {exc!r}') +[2024-03-07T16:33:08.631Z] if self._must_cancel: +[2024-03-07T16:33:08.631Z] if not isinstance(exc, exceptions.CancelledError): +[2024-03-07T16:33:08.631Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.631Z] self._must_cancel = False +[2024-03-07T16:33:08.631Z] coro = self._coro +[2024-03-07T16:33:08.631Z] self._fut_waiter = None +[2024-03-07T16:33:08.631Z] +[2024-03-07T16:33:08.631Z] _enter_task(self._loop, self) +[2024-03-07T16:33:08.631Z] # Call either coro.throw(exc) or coro.send(None). +[2024-03-07T16:33:08.631Z] try: +[2024-03-07T16:33:08.631Z] if exc is None: +[2024-03-07T16:33:08.632Z] # We use the `send` method directly, because coroutines +[2024-03-07T16:33:08.632Z] # don't have `__iter__` and `__next__` methods. +[2024-03-07T16:33:08.632Z] > result = coro.send(None) +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: +[2024-03-07T16:33:08.632Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] self = +[2024-03-07T16:33:08.632Z] timeout = 60 +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: +[2024-03-07T16:33:08.632Z] """Waits for a response when a client is blocked +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] - Sets future time for timeout +[2024-03-07T16:33:08.632Z] - Blocks on shell channel until a message is received +[2024-03-07T16:33:08.632Z] - Exit if the kernel has died +[2024-03-07T16:33:08.632Z] - If client times out before receiving a message from the kernel, send RuntimeError +[2024-03-07T16:33:08.632Z] - Flush the IOPub channel +[2024-03-07T16:33:08.632Z] """ +[2024-03-07T16:33:08.632Z] if timeout is None: +[2024-03-07T16:33:08.632Z] timeout = float("inf") +[2024-03-07T16:33:08.632Z] abs_timeout = time.time() + timeout +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] from .manager import KernelManager +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] if not isinstance(self.parent, KernelManager): +[2024-03-07T16:33:08.632Z] # This Client was not created by a KernelManager, +[2024-03-07T16:33:08.632Z] # so wait for kernel to become responsive to heartbeats +[2024-03-07T16:33:08.632Z] # before checking for kernel_info reply +[2024-03-07T16:33:08.632Z] while not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.632Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.632Z] raise RuntimeError( +[2024-03-07T16:33:08.632Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout +[2024-03-07T16:33:08.632Z] ) +[2024-03-07T16:33:08.632Z] await asyncio.sleep(0.2) +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] # Wait for kernel info reply on shell channel +[2024-03-07T16:33:08.632Z] while True: +[2024-03-07T16:33:08.632Z] self.kernel_info() +[2024-03-07T16:33:08.632Z] try: +[2024-03-07T16:33:08.632Z] msg = await self.shell_channel.get_msg(timeout=1) +[2024-03-07T16:33:08.632Z] except Empty: +[2024-03-07T16:33:08.632Z] pass +[2024-03-07T16:33:08.632Z] else: +[2024-03-07T16:33:08.632Z] if msg["msg_type"] == "kernel_info_reply": +[2024-03-07T16:33:08.632Z] # Checking that IOPub is connected. If it is not connected, start over. +[2024-03-07T16:33:08.632Z] try: +[2024-03-07T16:33:08.632Z] await self.iopub_channel.get_msg(timeout=0.2) +[2024-03-07T16:33:08.632Z] except Empty: +[2024-03-07T16:33:08.632Z] pass +[2024-03-07T16:33:08.632Z] else: +[2024-03-07T16:33:08.632Z] self._handle_kernel_info_reply(msg) +[2024-03-07T16:33:08.632Z] break +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] if not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.632Z] raise RuntimeError("Kernel died before replying to kernel_info") +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] # Check if current time is ready check time plus timeout +[2024-03-07T16:33:08.632Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.632Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) +[2024-03-07T16:33:08.632Z] E RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError +[2024-03-07T16:33:08.632Z] ------------------------------ Captured log setup ------------------------------ +[2024-03-07T16:33:08.632Z] ERROR nbval:kernel.py:59 Failure starting kernel "python" +[2024-03-07T16:33:08.632Z] Traceback (most recent call last): +[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py", line 57, in start_new_kernel +[2024-03-07T16:33:08.632Z] kc.wait_for_ready(timeout=startup_timeout) +[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py", line 30, in wrapped +[2024-03-07T16:33:08.632Z] raise e +[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py", line 27, in wrapped +[2024-03-07T16:33:08.632Z] return loop.run_until_complete(future) +[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py", line 98, in run_until_complete +[2024-03-07T16:33:08.632Z] return f.result() +[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py", line 201, in result +[2024-03-07T16:33:08.632Z] raise self._exception.with_traceback(self._exception_tb) +[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py", line 232, in __step +[2024-03-07T16:33:08.632Z] result = coro.send(None) +[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py", line 206, in _async_wait_for_ready +[2024-03-07T16:33:08.632Z] raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) +[2024-03-07T16:33:08.632Z] RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.632Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 1 _ +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] cls = +[2024-03-07T16:33:08.632Z] func = . at 0x7f0abc051900> +[2024-03-07T16:33:08.632Z] when = 'setup' +[2024-03-07T16:33:08.632Z] reraise = (, ) +[2024-03-07T16:33:08.632Z] +[2024-03-07T16:33:08.632Z] @classmethod +[2024-03-07T16:33:08.632Z] def from_call( +[2024-03-07T16:33:08.632Z] cls, +[2024-03-07T16:33:08.632Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.632Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.633Z] reraise: Optional[ +[2024-03-07T16:33:08.633Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.633Z] ] = None, +[2024-03-07T16:33:08.633Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.633Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] :param func: +[2024-03-07T16:33:08.633Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.633Z] :param when: +[2024-03-07T16:33:08.633Z] The phase in which the function is called. +[2024-03-07T16:33:08.633Z] :param reraise: +[2024-03-07T16:33:08.633Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.633Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.633Z] """ +[2024-03-07T16:33:08.633Z] excinfo = None +[2024-03-07T16:33:08.633Z] start = timing.time() +[2024-03-07T16:33:08.633Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.633Z] try: +[2024-03-07T16:33:08.633Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.633Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.633Z] ) +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.633Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] self = +[2024-03-07T16:33:08.633Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.633Z] """Call the hook. +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.633Z] specification. +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.633Z] :ref:`calling`. +[2024-03-07T16:33:08.633Z] """ +[2024-03-07T16:33:08.633Z] assert ( +[2024-03-07T16:33:08.633Z] not self.is_historic() +[2024-03-07T16:33:08.633Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.633Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.633Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.633Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.633Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.633Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.633Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.633Z] methods = [>, >, ...] +[2024-03-07T16:33:08.633Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.633Z] +[2024-03-07T16:33:08.633Z] def _hookexec( +[2024-03-07T16:33:08.633Z] self, +[2024-03-07T16:33:08.633Z] hook_name: str, +[2024-03-07T16:33:08.633Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.633Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.633Z] firstresult: bool, +[2024-03-07T16:33:08.633Z] ) -> object | list[object]: +[2024-03-07T16:33:08.633Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.634Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.634Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.634Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.634Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.634Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] def _multicall( +[2024-03-07T16:33:08.634Z] hook_name: str, +[2024-03-07T16:33:08.634Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.634Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.634Z] firstresult: bool, +[2024-03-07T16:33:08.634Z] ) -> object | list[object]: +[2024-03-07T16:33:08.634Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.634Z] result(s). +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.634Z] """ +[2024-03-07T16:33:08.634Z] __tracebackhide__ = True +[2024-03-07T16:33:08.634Z] results: list[object] = [] +[2024-03-07T16:33:08.634Z] exception = None +[2024-03-07T16:33:08.634Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.634Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.634Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.634Z] try: +[2024-03-07T16:33:08.634Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.634Z] try: +[2024-03-07T16:33:08.634Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.634Z] except KeyError: +[2024-03-07T16:33:08.634Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.634Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.634Z] raise HookCallError( +[2024-03-07T16:33:08.634Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.634Z] ) +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.634Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.634Z] try: +[2024-03-07T16:33:08.634Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.634Z] # which is the desired response. +[2024-03-07T16:33:08.634Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.634Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.634Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.634Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.634Z] except StopIteration: +[2024-03-07T16:33:08.634Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.634Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.634Z] try: +[2024-03-07T16:33:08.634Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.634Z] # which is the desired response. +[2024-03-07T16:33:08.634Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.634Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.634Z] next(function_gen) # first yield +[2024-03-07T16:33:08.634Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.634Z] except StopIteration: +[2024-03-07T16:33:08.634Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.634Z] else: +[2024-03-07T16:33:08.634Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.634Z] if res is not None: +[2024-03-07T16:33:08.634Z] results.append(res) +[2024-03-07T16:33:08.634Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.634Z] break +[2024-03-07T16:33:08.634Z] except BaseException as exc: +[2024-03-07T16:33:08.634Z] exception = exc +[2024-03-07T16:33:08.634Z] finally: +[2024-03-07T16:33:08.634Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.634Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.634Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.634Z] result = results[0] if results else None +[2024-03-07T16:33:08.634Z] else: +[2024-03-07T16:33:08.634Z] result = results +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.634Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.634Z] try: +[2024-03-07T16:33:08.634Z] if exception is not None: +[2024-03-07T16:33:08.634Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.634Z] else: +[2024-03-07T16:33:08.634Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.634Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.634Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.634Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.634Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.634Z] except StopIteration as si: +[2024-03-07T16:33:08.634Z] result = si.value +[2024-03-07T16:33:08.634Z] exception = None +[2024-03-07T16:33:08.634Z] continue +[2024-03-07T16:33:08.634Z] except BaseException as e: +[2024-03-07T16:33:08.634Z] exception = e +[2024-03-07T16:33:08.634Z] continue +[2024-03-07T16:33:08.634Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] if exception is not None: +[2024-03-07T16:33:08.634Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.634Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.634Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.634Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] def _multicall( +[2024-03-07T16:33:08.634Z] hook_name: str, +[2024-03-07T16:33:08.634Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.634Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.634Z] firstresult: bool, +[2024-03-07T16:33:08.634Z] ) -> object | list[object]: +[2024-03-07T16:33:08.634Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.634Z] result(s). +[2024-03-07T16:33:08.634Z] +[2024-03-07T16:33:08.634Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.634Z] """ +[2024-03-07T16:33:08.634Z] __tracebackhide__ = True +[2024-03-07T16:33:08.634Z] results: list[object] = [] +[2024-03-07T16:33:08.634Z] exception = None +[2024-03-07T16:33:08.634Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.634Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.634Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.634Z] try: +[2024-03-07T16:33:08.635Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.635Z] try: +[2024-03-07T16:33:08.635Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.635Z] except KeyError: +[2024-03-07T16:33:08.635Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.635Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.635Z] raise HookCallError( +[2024-03-07T16:33:08.635Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.635Z] ) +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.635Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.635Z] try: +[2024-03-07T16:33:08.635Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.635Z] # which is the desired response. +[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.635Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.635Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.635Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.635Z] except StopIteration: +[2024-03-07T16:33:08.635Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.635Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.635Z] try: +[2024-03-07T16:33:08.635Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.635Z] # which is the desired response. +[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.635Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.635Z] next(function_gen) # first yield +[2024-03-07T16:33:08.635Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.635Z] except StopIteration: +[2024-03-07T16:33:08.635Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.635Z] else: +[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.635Z] if res is not None: +[2024-03-07T16:33:08.635Z] results.append(res) +[2024-03-07T16:33:08.635Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.635Z] break +[2024-03-07T16:33:08.635Z] except BaseException as exc: +[2024-03-07T16:33:08.635Z] exception = exc +[2024-03-07T16:33:08.635Z] finally: +[2024-03-07T16:33:08.635Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.635Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.635Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.635Z] result = results[0] if results else None +[2024-03-07T16:33:08.635Z] else: +[2024-03-07T16:33:08.635Z] result = results +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.635Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.635Z] try: +[2024-03-07T16:33:08.635Z] if exception is not None: +[2024-03-07T16:33:08.635Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.635Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.635Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.635Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.635Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.635Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.635Z] try: +[2024-03-07T16:33:08.635Z] > yield +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.635Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.635Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.635Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] def _multicall( +[2024-03-07T16:33:08.635Z] hook_name: str, +[2024-03-07T16:33:08.635Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.635Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.635Z] firstresult: bool, +[2024-03-07T16:33:08.635Z] ) -> object | list[object]: +[2024-03-07T16:33:08.635Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.635Z] result(s). +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.635Z] """ +[2024-03-07T16:33:08.635Z] __tracebackhide__ = True +[2024-03-07T16:33:08.635Z] results: list[object] = [] +[2024-03-07T16:33:08.635Z] exception = None +[2024-03-07T16:33:08.635Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.635Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.635Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.635Z] try: +[2024-03-07T16:33:08.635Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.635Z] try: +[2024-03-07T16:33:08.635Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.635Z] except KeyError: +[2024-03-07T16:33:08.635Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.635Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.635Z] raise HookCallError( +[2024-03-07T16:33:08.635Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.635Z] ) +[2024-03-07T16:33:08.635Z] +[2024-03-07T16:33:08.635Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.635Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.635Z] try: +[2024-03-07T16:33:08.635Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.635Z] # which is the desired response. +[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.635Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.635Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.635Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.635Z] except StopIteration: +[2024-03-07T16:33:08.635Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.635Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.635Z] try: +[2024-03-07T16:33:08.635Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.635Z] # which is the desired response. +[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.635Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.635Z] next(function_gen) # first yield +[2024-03-07T16:33:08.635Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.635Z] except StopIteration: +[2024-03-07T16:33:08.635Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.635Z] else: +[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.635Z] if res is not None: +[2024-03-07T16:33:08.635Z] results.append(res) +[2024-03-07T16:33:08.635Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.636Z] break +[2024-03-07T16:33:08.636Z] except BaseException as exc: +[2024-03-07T16:33:08.636Z] exception = exc +[2024-03-07T16:33:08.636Z] finally: +[2024-03-07T16:33:08.636Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.636Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.636Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.636Z] result = results[0] if results else None +[2024-03-07T16:33:08.636Z] else: +[2024-03-07T16:33:08.636Z] result = results +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.636Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.636Z] try: +[2024-03-07T16:33:08.636Z] if exception is not None: +[2024-03-07T16:33:08.636Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.636Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.636Z] item = +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.636Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.636Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.636Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.636Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.636Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.636Z] item = , when = 'setup' +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.636Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.636Z] with catching_logs( +[2024-03-07T16:33:08.636Z] self.caplog_handler, +[2024-03-07T16:33:08.636Z] level=self.log_level, +[2024-03-07T16:33:08.636Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.636Z] self.report_handler, +[2024-03-07T16:33:08.636Z] level=self.log_level, +[2024-03-07T16:33:08.636Z] ) as report_handler: +[2024-03-07T16:33:08.636Z] caplog_handler.reset() +[2024-03-07T16:33:08.636Z] report_handler.reset() +[2024-03-07T16:33:08.636Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.636Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] try: +[2024-03-07T16:33:08.636Z] > yield +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.636Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.636Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.636Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] def _multicall( +[2024-03-07T16:33:08.636Z] hook_name: str, +[2024-03-07T16:33:08.636Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.636Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.636Z] firstresult: bool, +[2024-03-07T16:33:08.636Z] ) -> object | list[object]: +[2024-03-07T16:33:08.636Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.636Z] result(s). +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.636Z] """ +[2024-03-07T16:33:08.636Z] __tracebackhide__ = True +[2024-03-07T16:33:08.636Z] results: list[object] = [] +[2024-03-07T16:33:08.636Z] exception = None +[2024-03-07T16:33:08.636Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.636Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.636Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.636Z] try: +[2024-03-07T16:33:08.636Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.636Z] try: +[2024-03-07T16:33:08.636Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.636Z] except KeyError: +[2024-03-07T16:33:08.636Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.636Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.636Z] raise HookCallError( +[2024-03-07T16:33:08.636Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.636Z] ) +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.636Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.636Z] try: +[2024-03-07T16:33:08.636Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.636Z] # which is the desired response. +[2024-03-07T16:33:08.636Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.636Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.636Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.636Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.636Z] except StopIteration: +[2024-03-07T16:33:08.636Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.636Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.636Z] try: +[2024-03-07T16:33:08.636Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.636Z] # which is the desired response. +[2024-03-07T16:33:08.636Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.636Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.636Z] next(function_gen) # first yield +[2024-03-07T16:33:08.636Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.636Z] except StopIteration: +[2024-03-07T16:33:08.636Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.636Z] else: +[2024-03-07T16:33:08.636Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.636Z] if res is not None: +[2024-03-07T16:33:08.636Z] results.append(res) +[2024-03-07T16:33:08.636Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.636Z] break +[2024-03-07T16:33:08.636Z] except BaseException as exc: +[2024-03-07T16:33:08.636Z] exception = exc +[2024-03-07T16:33:08.636Z] finally: +[2024-03-07T16:33:08.636Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.636Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.636Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.636Z] result = results[0] if results else None +[2024-03-07T16:33:08.636Z] else: +[2024-03-07T16:33:08.636Z] result = results +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.636Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.636Z] try: +[2024-03-07T16:33:08.636Z] if exception is not None: +[2024-03-07T16:33:08.636Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.636Z] +[2024-03-07T16:33:08.636Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.636Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.637Z] item = +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.637Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.637Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.637Z] > return (yield) +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.637Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.637Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.637Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] def _multicall( +[2024-03-07T16:33:08.637Z] hook_name: str, +[2024-03-07T16:33:08.637Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.637Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.637Z] firstresult: bool, +[2024-03-07T16:33:08.637Z] ) -> object | list[object]: +[2024-03-07T16:33:08.637Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.637Z] result(s). +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.637Z] """ +[2024-03-07T16:33:08.637Z] __tracebackhide__ = True +[2024-03-07T16:33:08.637Z] results: list[object] = [] +[2024-03-07T16:33:08.637Z] exception = None +[2024-03-07T16:33:08.637Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.637Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.637Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.637Z] try: +[2024-03-07T16:33:08.637Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.637Z] try: +[2024-03-07T16:33:08.637Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.637Z] except KeyError: +[2024-03-07T16:33:08.637Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.637Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.637Z] raise HookCallError( +[2024-03-07T16:33:08.637Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.637Z] ) +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.637Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.637Z] try: +[2024-03-07T16:33:08.637Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.637Z] # which is the desired response. +[2024-03-07T16:33:08.637Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.637Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.637Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.637Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.637Z] except StopIteration: +[2024-03-07T16:33:08.637Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.637Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.637Z] try: +[2024-03-07T16:33:08.637Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.637Z] # which is the desired response. +[2024-03-07T16:33:08.637Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.637Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.637Z] next(function_gen) # first yield +[2024-03-07T16:33:08.637Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.637Z] except StopIteration: +[2024-03-07T16:33:08.637Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.637Z] else: +[2024-03-07T16:33:08.637Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.637Z] if res is not None: +[2024-03-07T16:33:08.637Z] results.append(res) +[2024-03-07T16:33:08.637Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.637Z] break +[2024-03-07T16:33:08.637Z] except BaseException as exc: +[2024-03-07T16:33:08.637Z] exception = exc +[2024-03-07T16:33:08.637Z] finally: +[2024-03-07T16:33:08.637Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.637Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.637Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.637Z] result = results[0] if results else None +[2024-03-07T16:33:08.637Z] else: +[2024-03-07T16:33:08.637Z] result = results +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.637Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.637Z] try: +[2024-03-07T16:33:08.637Z] if exception is not None: +[2024-03-07T16:33:08.637Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.637Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.637Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.637Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.637Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.637Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.637Z] try: +[2024-03-07T16:33:08.637Z] > yield +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.637Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.637Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.637Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] def _multicall( +[2024-03-07T16:33:08.637Z] hook_name: str, +[2024-03-07T16:33:08.637Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.637Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.637Z] firstresult: bool, +[2024-03-07T16:33:08.637Z] ) -> object | list[object]: +[2024-03-07T16:33:08.637Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.637Z] result(s). +[2024-03-07T16:33:08.637Z] +[2024-03-07T16:33:08.637Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.637Z] """ +[2024-03-07T16:33:08.637Z] __tracebackhide__ = True +[2024-03-07T16:33:08.637Z] results: list[object] = [] +[2024-03-07T16:33:08.637Z] exception = None +[2024-03-07T16:33:08.637Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.637Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.637Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.637Z] try: +[2024-03-07T16:33:08.637Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.637Z] try: +[2024-03-07T16:33:08.637Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.637Z] except KeyError: +[2024-03-07T16:33:08.637Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.637Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.637Z] raise HookCallError( +[2024-03-07T16:33:08.638Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.638Z] ) +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.638Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.638Z] try: +[2024-03-07T16:33:08.638Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.638Z] # which is the desired response. +[2024-03-07T16:33:08.638Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.638Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.638Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.638Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.638Z] except StopIteration: +[2024-03-07T16:33:08.638Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.638Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.638Z] try: +[2024-03-07T16:33:08.638Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.638Z] # which is the desired response. +[2024-03-07T16:33:08.638Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.638Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.638Z] next(function_gen) # first yield +[2024-03-07T16:33:08.638Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.638Z] except StopIteration: +[2024-03-07T16:33:08.638Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.638Z] else: +[2024-03-07T16:33:08.638Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] item = +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.638Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.638Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.638Z] item = +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.638Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.638Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.638Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.638Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.638Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.638Z] if exc: +[2024-03-07T16:33:08.638Z] > raise exc +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] cls = +[2024-03-07T16:33:08.638Z] func = . at 0x7f0abbb0b520> +[2024-03-07T16:33:08.638Z] when = 'setup' +[2024-03-07T16:33:08.638Z] reraise = (, ) +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] @classmethod +[2024-03-07T16:33:08.638Z] def from_call( +[2024-03-07T16:33:08.638Z] cls, +[2024-03-07T16:33:08.638Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.638Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.638Z] reraise: Optional[ +[2024-03-07T16:33:08.638Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.638Z] ] = None, +[2024-03-07T16:33:08.638Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.638Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] :param func: +[2024-03-07T16:33:08.638Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.638Z] :param when: +[2024-03-07T16:33:08.638Z] The phase in which the function is called. +[2024-03-07T16:33:08.638Z] :param reraise: +[2024-03-07T16:33:08.638Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.638Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.638Z] """ +[2024-03-07T16:33:08.638Z] excinfo = None +[2024-03-07T16:33:08.638Z] start = timing.time() +[2024-03-07T16:33:08.638Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.638Z] try: +[2024-03-07T16:33:08.638Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.638Z] ) +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] self = +[2024-03-07T16:33:08.638Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.638Z] """Call the hook. +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.638Z] specification. +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.638Z] :ref:`calling`. +[2024-03-07T16:33:08.638Z] """ +[2024-03-07T16:33:08.638Z] assert ( +[2024-03-07T16:33:08.638Z] not self.is_historic() +[2024-03-07T16:33:08.638Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.638Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.638Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.638Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.638Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.638Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.638Z] methods = [>, >, ...] +[2024-03-07T16:33:08.638Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] def _hookexec( +[2024-03-07T16:33:08.638Z] self, +[2024-03-07T16:33:08.638Z] hook_name: str, +[2024-03-07T16:33:08.638Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.638Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.638Z] firstresult: bool, +[2024-03-07T16:33:08.638Z] ) -> object | list[object]: +[2024-03-07T16:33:08.638Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.638Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.638Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.638Z] +[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.639Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.639Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.639Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] def _multicall( +[2024-03-07T16:33:08.639Z] hook_name: str, +[2024-03-07T16:33:08.639Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.639Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.639Z] firstresult: bool, +[2024-03-07T16:33:08.639Z] ) -> object | list[object]: +[2024-03-07T16:33:08.639Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.639Z] result(s). +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.639Z] """ +[2024-03-07T16:33:08.639Z] __tracebackhide__ = True +[2024-03-07T16:33:08.639Z] results: list[object] = [] +[2024-03-07T16:33:08.639Z] exception = None +[2024-03-07T16:33:08.639Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.639Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.639Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.639Z] try: +[2024-03-07T16:33:08.639Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.639Z] try: +[2024-03-07T16:33:08.639Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.639Z] except KeyError: +[2024-03-07T16:33:08.639Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.639Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.639Z] raise HookCallError( +[2024-03-07T16:33:08.639Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.639Z] ) +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.639Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.639Z] try: +[2024-03-07T16:33:08.639Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.639Z] # which is the desired response. +[2024-03-07T16:33:08.639Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.639Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.639Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.639Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.639Z] except StopIteration: +[2024-03-07T16:33:08.639Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.639Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.639Z] try: +[2024-03-07T16:33:08.639Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.639Z] # which is the desired response. +[2024-03-07T16:33:08.639Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.639Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.639Z] next(function_gen) # first yield +[2024-03-07T16:33:08.639Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.639Z] except StopIteration: +[2024-03-07T16:33:08.639Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.639Z] else: +[2024-03-07T16:33:08.639Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.639Z] if res is not None: +[2024-03-07T16:33:08.639Z] results.append(res) +[2024-03-07T16:33:08.639Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.639Z] break +[2024-03-07T16:33:08.639Z] except BaseException as exc: +[2024-03-07T16:33:08.639Z] exception = exc +[2024-03-07T16:33:08.639Z] finally: +[2024-03-07T16:33:08.639Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.639Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.639Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.639Z] result = results[0] if results else None +[2024-03-07T16:33:08.639Z] else: +[2024-03-07T16:33:08.639Z] result = results +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.639Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.639Z] try: +[2024-03-07T16:33:08.639Z] if exception is not None: +[2024-03-07T16:33:08.639Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.639Z] else: +[2024-03-07T16:33:08.639Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.639Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.639Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.639Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.639Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.639Z] except StopIteration as si: +[2024-03-07T16:33:08.639Z] result = si.value +[2024-03-07T16:33:08.639Z] exception = None +[2024-03-07T16:33:08.639Z] continue +[2024-03-07T16:33:08.639Z] except BaseException as e: +[2024-03-07T16:33:08.639Z] exception = e +[2024-03-07T16:33:08.639Z] continue +[2024-03-07T16:33:08.639Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] if exception is not None: +[2024-03-07T16:33:08.639Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.639Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.639Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.639Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] def _multicall( +[2024-03-07T16:33:08.639Z] hook_name: str, +[2024-03-07T16:33:08.639Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.639Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.639Z] firstresult: bool, +[2024-03-07T16:33:08.639Z] ) -> object | list[object]: +[2024-03-07T16:33:08.639Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.639Z] result(s). +[2024-03-07T16:33:08.639Z] +[2024-03-07T16:33:08.639Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.639Z] """ +[2024-03-07T16:33:08.639Z] __tracebackhide__ = True +[2024-03-07T16:33:08.639Z] results: list[object] = [] +[2024-03-07T16:33:08.639Z] exception = None +[2024-03-07T16:33:08.639Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.639Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.639Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.639Z] try: +[2024-03-07T16:33:08.639Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.639Z] try: +[2024-03-07T16:33:08.640Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.640Z] except KeyError: +[2024-03-07T16:33:08.640Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.640Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.640Z] raise HookCallError( +[2024-03-07T16:33:08.640Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.640Z] ) +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.640Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.640Z] try: +[2024-03-07T16:33:08.640Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.640Z] # which is the desired response. +[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.640Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.640Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.640Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.640Z] except StopIteration: +[2024-03-07T16:33:08.640Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.640Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.640Z] try: +[2024-03-07T16:33:08.640Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.640Z] # which is the desired response. +[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.640Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.640Z] next(function_gen) # first yield +[2024-03-07T16:33:08.640Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.640Z] except StopIteration: +[2024-03-07T16:33:08.640Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.640Z] else: +[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.640Z] if res is not None: +[2024-03-07T16:33:08.640Z] results.append(res) +[2024-03-07T16:33:08.640Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.640Z] break +[2024-03-07T16:33:08.640Z] except BaseException as exc: +[2024-03-07T16:33:08.640Z] exception = exc +[2024-03-07T16:33:08.640Z] finally: +[2024-03-07T16:33:08.640Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.640Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.640Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.640Z] result = results[0] if results else None +[2024-03-07T16:33:08.640Z] else: +[2024-03-07T16:33:08.640Z] result = results +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.640Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.640Z] try: +[2024-03-07T16:33:08.640Z] if exception is not None: +[2024-03-07T16:33:08.640Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.640Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.640Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.640Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.640Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.640Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.640Z] try: +[2024-03-07T16:33:08.640Z] > yield +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.640Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.640Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.640Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] def _multicall( +[2024-03-07T16:33:08.640Z] hook_name: str, +[2024-03-07T16:33:08.640Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.640Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.640Z] firstresult: bool, +[2024-03-07T16:33:08.640Z] ) -> object | list[object]: +[2024-03-07T16:33:08.640Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.640Z] result(s). +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.640Z] """ +[2024-03-07T16:33:08.640Z] __tracebackhide__ = True +[2024-03-07T16:33:08.640Z] results: list[object] = [] +[2024-03-07T16:33:08.640Z] exception = None +[2024-03-07T16:33:08.640Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.640Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.640Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.640Z] try: +[2024-03-07T16:33:08.640Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.640Z] try: +[2024-03-07T16:33:08.640Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.640Z] except KeyError: +[2024-03-07T16:33:08.640Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.640Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.640Z] raise HookCallError( +[2024-03-07T16:33:08.640Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.640Z] ) +[2024-03-07T16:33:08.640Z] +[2024-03-07T16:33:08.640Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.640Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.640Z] try: +[2024-03-07T16:33:08.640Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.640Z] # which is the desired response. +[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.640Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.640Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.640Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.640Z] except StopIteration: +[2024-03-07T16:33:08.640Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.640Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.640Z] try: +[2024-03-07T16:33:08.640Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.640Z] # which is the desired response. +[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.640Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.640Z] next(function_gen) # first yield +[2024-03-07T16:33:08.640Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.640Z] except StopIteration: +[2024-03-07T16:33:08.640Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.640Z] else: +[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.640Z] if res is not None: +[2024-03-07T16:33:08.640Z] results.append(res) +[2024-03-07T16:33:08.640Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.640Z] break +[2024-03-07T16:33:08.640Z] except BaseException as exc: +[2024-03-07T16:33:08.640Z] exception = exc +[2024-03-07T16:33:08.640Z] finally: +[2024-03-07T16:33:08.640Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.640Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.641Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.641Z] result = results[0] if results else None +[2024-03-07T16:33:08.641Z] else: +[2024-03-07T16:33:08.641Z] result = results +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.641Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.641Z] try: +[2024-03-07T16:33:08.641Z] if exception is not None: +[2024-03-07T16:33:08.641Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.641Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.641Z] item = +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.641Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.641Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.641Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.641Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.641Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.641Z] item = , when = 'setup' +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.641Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.641Z] with catching_logs( +[2024-03-07T16:33:08.641Z] self.caplog_handler, +[2024-03-07T16:33:08.641Z] level=self.log_level, +[2024-03-07T16:33:08.641Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.641Z] self.report_handler, +[2024-03-07T16:33:08.641Z] level=self.log_level, +[2024-03-07T16:33:08.641Z] ) as report_handler: +[2024-03-07T16:33:08.641Z] caplog_handler.reset() +[2024-03-07T16:33:08.641Z] report_handler.reset() +[2024-03-07T16:33:08.641Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.641Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] try: +[2024-03-07T16:33:08.641Z] > yield +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.641Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.641Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.641Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] def _multicall( +[2024-03-07T16:33:08.641Z] hook_name: str, +[2024-03-07T16:33:08.641Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.641Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.641Z] firstresult: bool, +[2024-03-07T16:33:08.641Z] ) -> object | list[object]: +[2024-03-07T16:33:08.641Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.641Z] result(s). +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.641Z] """ +[2024-03-07T16:33:08.641Z] __tracebackhide__ = True +[2024-03-07T16:33:08.641Z] results: list[object] = [] +[2024-03-07T16:33:08.641Z] exception = None +[2024-03-07T16:33:08.641Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.641Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.641Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.641Z] try: +[2024-03-07T16:33:08.641Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.641Z] try: +[2024-03-07T16:33:08.641Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.641Z] except KeyError: +[2024-03-07T16:33:08.641Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.641Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.641Z] raise HookCallError( +[2024-03-07T16:33:08.641Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.641Z] ) +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.641Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.641Z] try: +[2024-03-07T16:33:08.641Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.641Z] # which is the desired response. +[2024-03-07T16:33:08.641Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.641Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.641Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.641Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.641Z] except StopIteration: +[2024-03-07T16:33:08.641Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.641Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.641Z] try: +[2024-03-07T16:33:08.641Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.641Z] # which is the desired response. +[2024-03-07T16:33:08.641Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.641Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.641Z] next(function_gen) # first yield +[2024-03-07T16:33:08.641Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.641Z] except StopIteration: +[2024-03-07T16:33:08.641Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.641Z] else: +[2024-03-07T16:33:08.641Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.641Z] if res is not None: +[2024-03-07T16:33:08.641Z] results.append(res) +[2024-03-07T16:33:08.641Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.641Z] break +[2024-03-07T16:33:08.641Z] except BaseException as exc: +[2024-03-07T16:33:08.641Z] exception = exc +[2024-03-07T16:33:08.641Z] finally: +[2024-03-07T16:33:08.641Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.641Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.641Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.641Z] result = results[0] if results else None +[2024-03-07T16:33:08.641Z] else: +[2024-03-07T16:33:08.641Z] result = results +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.641Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.641Z] try: +[2024-03-07T16:33:08.641Z] if exception is not None: +[2024-03-07T16:33:08.641Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.641Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.641Z] +[2024-03-07T16:33:08.641Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.642Z] item = +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.642Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.642Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.642Z] > return (yield) +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.642Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.642Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.642Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] def _multicall( +[2024-03-07T16:33:08.642Z] hook_name: str, +[2024-03-07T16:33:08.642Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.642Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.642Z] firstresult: bool, +[2024-03-07T16:33:08.642Z] ) -> object | list[object]: +[2024-03-07T16:33:08.642Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.642Z] result(s). +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.642Z] """ +[2024-03-07T16:33:08.642Z] __tracebackhide__ = True +[2024-03-07T16:33:08.642Z] results: list[object] = [] +[2024-03-07T16:33:08.642Z] exception = None +[2024-03-07T16:33:08.642Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.642Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.642Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.642Z] try: +[2024-03-07T16:33:08.642Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.642Z] try: +[2024-03-07T16:33:08.642Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.642Z] except KeyError: +[2024-03-07T16:33:08.642Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.642Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.642Z] raise HookCallError( +[2024-03-07T16:33:08.642Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.642Z] ) +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.642Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.642Z] try: +[2024-03-07T16:33:08.642Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.642Z] # which is the desired response. +[2024-03-07T16:33:08.642Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.642Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.642Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.642Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.642Z] except StopIteration: +[2024-03-07T16:33:08.642Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.642Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.642Z] try: +[2024-03-07T16:33:08.642Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.642Z] # which is the desired response. +[2024-03-07T16:33:08.642Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.642Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.642Z] next(function_gen) # first yield +[2024-03-07T16:33:08.642Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.642Z] except StopIteration: +[2024-03-07T16:33:08.642Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.642Z] else: +[2024-03-07T16:33:08.642Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.642Z] if res is not None: +[2024-03-07T16:33:08.642Z] results.append(res) +[2024-03-07T16:33:08.642Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.642Z] break +[2024-03-07T16:33:08.642Z] except BaseException as exc: +[2024-03-07T16:33:08.642Z] exception = exc +[2024-03-07T16:33:08.642Z] finally: +[2024-03-07T16:33:08.642Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.642Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.642Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.642Z] result = results[0] if results else None +[2024-03-07T16:33:08.642Z] else: +[2024-03-07T16:33:08.642Z] result = results +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.642Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.642Z] try: +[2024-03-07T16:33:08.642Z] if exception is not None: +[2024-03-07T16:33:08.642Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.642Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.642Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.642Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.642Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.642Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.642Z] try: +[2024-03-07T16:33:08.642Z] > yield +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.642Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.642Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.642Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] def _multicall( +[2024-03-07T16:33:08.642Z] hook_name: str, +[2024-03-07T16:33:08.642Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.642Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.642Z] firstresult: bool, +[2024-03-07T16:33:08.642Z] ) -> object | list[object]: +[2024-03-07T16:33:08.642Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.642Z] result(s). +[2024-03-07T16:33:08.642Z] +[2024-03-07T16:33:08.642Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.642Z] """ +[2024-03-07T16:33:08.642Z] __tracebackhide__ = True +[2024-03-07T16:33:08.642Z] results: list[object] = [] +[2024-03-07T16:33:08.642Z] exception = None +[2024-03-07T16:33:08.642Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.642Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.642Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.642Z] try: +[2024-03-07T16:33:08.642Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.642Z] try: +[2024-03-07T16:33:08.642Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.642Z] except KeyError: +[2024-03-07T16:33:08.642Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.642Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.643Z] raise HookCallError( +[2024-03-07T16:33:08.643Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.643Z] ) +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.643Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.643Z] try: +[2024-03-07T16:33:08.643Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.643Z] # which is the desired response. +[2024-03-07T16:33:08.643Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.643Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.643Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.643Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.643Z] except StopIteration: +[2024-03-07T16:33:08.643Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.643Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.643Z] try: +[2024-03-07T16:33:08.643Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.643Z] # which is the desired response. +[2024-03-07T16:33:08.643Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.643Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.643Z] next(function_gen) # first yield +[2024-03-07T16:33:08.643Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.643Z] except StopIteration: +[2024-03-07T16:33:08.643Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.643Z] else: +[2024-03-07T16:33:08.643Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] item = +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.643Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.643Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.643Z] item = +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.643Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.643Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.643Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.643Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.643Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.643Z] if exc: +[2024-03-07T16:33:08.643Z] raise exc +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.643Z] assert col not in self.stack +[2024-03-07T16:33:08.643Z] # Push onto the stack. +[2024-03-07T16:33:08.643Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.643Z] try: +[2024-03-07T16:33:08.643Z] col.setup() +[2024-03-07T16:33:08.643Z] except TEST_OUTCOME as exc: +[2024-03-07T16:33:08.643Z] self.stack[col] = (self.stack[col][0], exc) +[2024-03-07T16:33:08.643Z] > raise exc +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: +[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.643Z] item = +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.643Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.643Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.643Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.643Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.643Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.643Z] if exc: +[2024-03-07T16:33:08.643Z] raise exc +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.643Z] assert col not in self.stack +[2024-03-07T16:33:08.643Z] # Push onto the stack. +[2024-03-07T16:33:08.643Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.643Z] try: +[2024-03-07T16:33:08.643Z] > col.setup() +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: +[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] self = +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] def setup(self): +[2024-03-07T16:33:08.643Z] """ +[2024-03-07T16:33:08.643Z] Called by pytest to setup the collector cells in . +[2024-03-07T16:33:08.643Z] Here we start a kernel and setup the sanitize patterns. +[2024-03-07T16:33:08.643Z] """ +[2024-03-07T16:33:08.643Z] # we've already checked that --nbval-current-env and +[2024-03-07T16:33:08.643Z] # --nbval-kernel-name were not both supplied +[2024-03-07T16:33:08.643Z] if self.parent.config.option.nbval_current_env: +[2024-03-07T16:33:08.643Z] kernel_name = CURRENT_ENV_KERNEL_NAME +[2024-03-07T16:33:08.643Z] elif self.parent.config.option.nbval_kernel_name: +[2024-03-07T16:33:08.643Z] kernel_name = self.parent.config.option.nbval_kernel_name +[2024-03-07T16:33:08.643Z] else: +[2024-03-07T16:33:08.643Z] kernel_name = self.nb.metadata.get( +[2024-03-07T16:33:08.643Z] 'kernelspec', {}).get('name', 'python') +[2024-03-07T16:33:08.643Z] > self.kernel = RunningKernel( +[2024-03-07T16:33:08.643Z] kernel_name, +[2024-03-07T16:33:08.643Z] cwd=str(self.fspath.dirname), +[2024-03-07T16:33:08.643Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, +[2024-03-07T16:33:08.643Z] ) +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: +[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] self = +[2024-03-07T16:33:08.643Z] kernel_name = 'python' +[2024-03-07T16:33:08.643Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' +[2024-03-07T16:33:08.643Z] startup_timeout = 60 +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): +[2024-03-07T16:33:08.643Z] """ +[2024-03-07T16:33:08.643Z] Initialise a new kernel +[2024-03-07T16:33:08.643Z] specify that matplotlib is inline and connect the stderr. +[2024-03-07T16:33:08.643Z] Stores the active kernel process and its manager. +[2024-03-07T16:33:08.643Z] """ +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] > self.km, self.kc = start_new_kernel( +[2024-03-07T16:33:08.643Z] startup_timeout=startup_timeout, +[2024-03-07T16:33:08.643Z] kernel_name=kernel_name, +[2024-03-07T16:33:08.643Z] stderr=open(os.devnull, 'w'), +[2024-03-07T16:33:08.643Z] cwd=cwd, +[2024-03-07T16:33:08.643Z] ) +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: +[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] startup_timeout = 60, kernel_name = 'python' +[2024-03-07T16:33:08.643Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} +[2024-03-07T16:33:08.643Z] km = +[2024-03-07T16:33:08.643Z] kc = +[2024-03-07T16:33:08.643Z] +[2024-03-07T16:33:08.643Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): +[2024-03-07T16:33:08.643Z] """Start a new kernel, and return its Manager and Client""" +[2024-03-07T16:33:08.643Z] logger.debug('Starting new kernel: "%s"' % kernel_name) +[2024-03-07T16:33:08.643Z] km = KernelManager(kernel_name=kernel_name, +[2024-03-07T16:33:08.644Z] kernel_spec_manager=NbvalKernelspecManager()) +[2024-03-07T16:33:08.644Z] km.start_kernel(**kwargs) +[2024-03-07T16:33:08.644Z] kc = km.client() +[2024-03-07T16:33:08.644Z] kc.start_channels() +[2024-03-07T16:33:08.644Z] try: +[2024-03-07T16:33:08.644Z] > kc.wait_for_ready(timeout=startup_timeout) +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: +[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] args = (,) +[2024-03-07T16:33:08.644Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.644Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.644Z] nest_asyncio = +[2024-03-07T16:33:08.644Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.644Z] try: +[2024-03-07T16:33:08.644Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.644Z] except RuntimeError: +[2024-03-07T16:33:08.644Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.644Z] try: +[2024-03-07T16:33:08.644Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.644Z] except RuntimeError: +[2024-03-07T16:33:08.644Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.644Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.644Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.644Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.644Z] try: +[2024-03-07T16:33:08.644Z] return loop.run_until_complete(future) +[2024-03-07T16:33:08.644Z] except BaseException as e: +[2024-03-07T16:33:08.644Z] future.cancel() +[2024-03-07T16:33:08.644Z] > raise e +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: +[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] args = (,) +[2024-03-07T16:33:08.644Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.644Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.644Z] nest_asyncio = +[2024-03-07T16:33:08.644Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.644Z] try: +[2024-03-07T16:33:08.644Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.644Z] except RuntimeError: +[2024-03-07T16:33:08.644Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.644Z] try: +[2024-03-07T16:33:08.644Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.644Z] except RuntimeError: +[2024-03-07T16:33:08.644Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.644Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.644Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.644Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.644Z] try: +[2024-03-07T16:33:08.644Z] > return loop.run_until_complete(future) +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: +[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.644Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] def run_until_complete(self, future): +[2024-03-07T16:33:08.644Z] with manage_run(self): +[2024-03-07T16:33:08.644Z] f = asyncio.ensure_future(future, loop=self) +[2024-03-07T16:33:08.644Z] if f is not future: +[2024-03-07T16:33:08.644Z] f._log_destroy_pending = False +[2024-03-07T16:33:08.644Z] while not f.done(): +[2024-03-07T16:33:08.644Z] self._run_once() +[2024-03-07T16:33:08.644Z] if self._stopping: +[2024-03-07T16:33:08.644Z] break +[2024-03-07T16:33:08.644Z] if not f.done(): +[2024-03-07T16:33:08.644Z] raise RuntimeError( +[2024-03-07T16:33:08.644Z] 'Event loop stopped before Future completed.') +[2024-03-07T16:33:08.644Z] > return f.result() +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: +[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] def result(self): +[2024-03-07T16:33:08.644Z] """Return the result this future represents. +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] If the future has been cancelled, raises CancelledError. If the +[2024-03-07T16:33:08.644Z] future's result isn't yet available, raises InvalidStateError. If +[2024-03-07T16:33:08.644Z] the future is done and has an exception set, this exception is raised. +[2024-03-07T16:33:08.644Z] """ +[2024-03-07T16:33:08.644Z] if self._state == _CANCELLED: +[2024-03-07T16:33:08.644Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.644Z] raise exc +[2024-03-07T16:33:08.644Z] if self._state != _FINISHED: +[2024-03-07T16:33:08.644Z] raise exceptions.InvalidStateError('Result is not ready.') +[2024-03-07T16:33:08.644Z] self.__log_traceback = False +[2024-03-07T16:33:08.644Z] if self._exception is not None: +[2024-03-07T16:33:08.644Z] > raise self._exception.with_traceback(self._exception_tb) +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: +[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] self = None +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] def __step(self, exc=None): +[2024-03-07T16:33:08.644Z] if self.done(): +[2024-03-07T16:33:08.644Z] raise exceptions.InvalidStateError( +[2024-03-07T16:33:08.644Z] f'_step(): already done: {self!r}, {exc!r}') +[2024-03-07T16:33:08.644Z] if self._must_cancel: +[2024-03-07T16:33:08.644Z] if not isinstance(exc, exceptions.CancelledError): +[2024-03-07T16:33:08.644Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.644Z] self._must_cancel = False +[2024-03-07T16:33:08.644Z] coro = self._coro +[2024-03-07T16:33:08.644Z] self._fut_waiter = None +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] _enter_task(self._loop, self) +[2024-03-07T16:33:08.644Z] # Call either coro.throw(exc) or coro.send(None). +[2024-03-07T16:33:08.644Z] try: +[2024-03-07T16:33:08.644Z] if exc is None: +[2024-03-07T16:33:08.644Z] # We use the `send` method directly, because coroutines +[2024-03-07T16:33:08.644Z] # don't have `__iter__` and `__next__` methods. +[2024-03-07T16:33:08.644Z] > result = coro.send(None) +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: +[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] self = +[2024-03-07T16:33:08.644Z] timeout = 60 +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: +[2024-03-07T16:33:08.644Z] """Waits for a response when a client is blocked +[2024-03-07T16:33:08.644Z] +[2024-03-07T16:33:08.644Z] - Sets future time for timeout +[2024-03-07T16:33:08.644Z] - Blocks on shell channel until a message is received +[2024-03-07T16:33:08.644Z] - Exit if the kernel has died +[2024-03-07T16:33:08.644Z] - If client times out before receiving a message from the kernel, send RuntimeError +[2024-03-07T16:33:08.644Z] - Flush the IOPub channel +[2024-03-07T16:33:08.644Z] """ +[2024-03-07T16:33:08.644Z] if timeout is None: +[2024-03-07T16:33:08.644Z] timeout = float("inf") +[2024-03-07T16:33:08.644Z] abs_timeout = time.time() + timeout +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] from .manager import KernelManager +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] if not isinstance(self.parent, KernelManager): +[2024-03-07T16:33:08.645Z] # This Client was not created by a KernelManager, +[2024-03-07T16:33:08.645Z] # so wait for kernel to become responsive to heartbeats +[2024-03-07T16:33:08.645Z] # before checking for kernel_info reply +[2024-03-07T16:33:08.645Z] while not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.645Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.645Z] raise RuntimeError( +[2024-03-07T16:33:08.645Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout +[2024-03-07T16:33:08.645Z] ) +[2024-03-07T16:33:08.645Z] await asyncio.sleep(0.2) +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] # Wait for kernel info reply on shell channel +[2024-03-07T16:33:08.645Z] while True: +[2024-03-07T16:33:08.645Z] self.kernel_info() +[2024-03-07T16:33:08.645Z] try: +[2024-03-07T16:33:08.645Z] msg = await self.shell_channel.get_msg(timeout=1) +[2024-03-07T16:33:08.645Z] except Empty: +[2024-03-07T16:33:08.645Z] pass +[2024-03-07T16:33:08.645Z] else: +[2024-03-07T16:33:08.645Z] if msg["msg_type"] == "kernel_info_reply": +[2024-03-07T16:33:08.645Z] # Checking that IOPub is connected. If it is not connected, start over. +[2024-03-07T16:33:08.645Z] try: +[2024-03-07T16:33:08.645Z] await self.iopub_channel.get_msg(timeout=0.2) +[2024-03-07T16:33:08.645Z] except Empty: +[2024-03-07T16:33:08.645Z] pass +[2024-03-07T16:33:08.645Z] else: +[2024-03-07T16:33:08.645Z] self._handle_kernel_info_reply(msg) +[2024-03-07T16:33:08.645Z] break +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] if not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.645Z] raise RuntimeError("Kernel died before replying to kernel_info") +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] # Check if current time is ready check time plus timeout +[2024-03-07T16:33:08.645Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.645Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) +[2024-03-07T16:33:08.645Z] E RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError +[2024-03-07T16:33:08.645Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 2 _ +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] cls = +[2024-03-07T16:33:08.645Z] func = . at 0x7f0abbb08550> +[2024-03-07T16:33:08.645Z] when = 'setup' +[2024-03-07T16:33:08.645Z] reraise = (, ) +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] @classmethod +[2024-03-07T16:33:08.645Z] def from_call( +[2024-03-07T16:33:08.645Z] cls, +[2024-03-07T16:33:08.645Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.645Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.645Z] reraise: Optional[ +[2024-03-07T16:33:08.645Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.645Z] ] = None, +[2024-03-07T16:33:08.645Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.645Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] :param func: +[2024-03-07T16:33:08.645Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.645Z] :param when: +[2024-03-07T16:33:08.645Z] The phase in which the function is called. +[2024-03-07T16:33:08.645Z] :param reraise: +[2024-03-07T16:33:08.645Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.645Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.645Z] """ +[2024-03-07T16:33:08.645Z] excinfo = None +[2024-03-07T16:33:08.645Z] start = timing.time() +[2024-03-07T16:33:08.645Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.645Z] try: +[2024-03-07T16:33:08.645Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.645Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.645Z] ) +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.645Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] self = +[2024-03-07T16:33:08.645Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.645Z] """Call the hook. +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.645Z] specification. +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.645Z] :ref:`calling`. +[2024-03-07T16:33:08.645Z] """ +[2024-03-07T16:33:08.645Z] assert ( +[2024-03-07T16:33:08.645Z] not self.is_historic() +[2024-03-07T16:33:08.645Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.645Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.645Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.645Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.645Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.645Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.645Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.645Z] methods = [>, >, ...] +[2024-03-07T16:33:08.645Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] def _hookexec( +[2024-03-07T16:33:08.645Z] self, +[2024-03-07T16:33:08.645Z] hook_name: str, +[2024-03-07T16:33:08.645Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.645Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.645Z] firstresult: bool, +[2024-03-07T16:33:08.645Z] ) -> object | list[object]: +[2024-03-07T16:33:08.645Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.645Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.645Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.645Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.645Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.645Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] def _multicall( +[2024-03-07T16:33:08.645Z] hook_name: str, +[2024-03-07T16:33:08.645Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.645Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.645Z] firstresult: bool, +[2024-03-07T16:33:08.645Z] ) -> object | list[object]: +[2024-03-07T16:33:08.645Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.645Z] result(s). +[2024-03-07T16:33:08.645Z] +[2024-03-07T16:33:08.645Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.645Z] """ +[2024-03-07T16:33:08.645Z] __tracebackhide__ = True +[2024-03-07T16:33:08.645Z] results: list[object] = [] +[2024-03-07T16:33:08.646Z] exception = None +[2024-03-07T16:33:08.646Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.646Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.646Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.646Z] try: +[2024-03-07T16:33:08.646Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.646Z] try: +[2024-03-07T16:33:08.646Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.646Z] except KeyError: +[2024-03-07T16:33:08.646Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.646Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.646Z] raise HookCallError( +[2024-03-07T16:33:08.646Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.646Z] ) +[2024-03-07T16:33:08.646Z] +[2024-03-07T16:33:08.646Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.646Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.646Z] try: +[2024-03-07T16:33:08.646Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.646Z] # which is the desired response. +[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.646Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.646Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.646Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.646Z] except StopIteration: +[2024-03-07T16:33:08.646Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.646Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.646Z] try: +[2024-03-07T16:33:08.646Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.646Z] # which is the desired response. +[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.646Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.646Z] next(function_gen) # first yield +[2024-03-07T16:33:08.646Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.646Z] except StopIteration: +[2024-03-07T16:33:08.646Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.646Z] else: +[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.646Z] if res is not None: +[2024-03-07T16:33:08.646Z] results.append(res) +[2024-03-07T16:33:08.646Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.646Z] break +[2024-03-07T16:33:08.646Z] except BaseException as exc: +[2024-03-07T16:33:08.646Z] exception = exc +[2024-03-07T16:33:08.646Z] finally: +[2024-03-07T16:33:08.646Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.646Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.646Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.646Z] result = results[0] if results else None +[2024-03-07T16:33:08.646Z] else: +[2024-03-07T16:33:08.646Z] result = results +[2024-03-07T16:33:08.646Z] +[2024-03-07T16:33:08.646Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.646Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.646Z] try: +[2024-03-07T16:33:08.646Z] if exception is not None: +[2024-03-07T16:33:08.646Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.646Z] else: +[2024-03-07T16:33:08.646Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.646Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.646Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.646Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.646Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.646Z] except StopIteration as si: +[2024-03-07T16:33:08.646Z] result = si.value +[2024-03-07T16:33:08.646Z] exception = None +[2024-03-07T16:33:08.646Z] continue +[2024-03-07T16:33:08.646Z] except BaseException as e: +[2024-03-07T16:33:08.646Z] exception = e +[2024-03-07T16:33:08.646Z] continue +[2024-03-07T16:33:08.646Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.646Z] +[2024-03-07T16:33:08.646Z] if exception is not None: +[2024-03-07T16:33:08.646Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.646Z] +[2024-03-07T16:33:08.646Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.646Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.646Z] +[2024-03-07T16:33:08.646Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.646Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.646Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.646Z] +[2024-03-07T16:33:08.646Z] def _multicall( +[2024-03-07T16:33:08.646Z] hook_name: str, +[2024-03-07T16:33:08.646Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.646Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.646Z] firstresult: bool, +[2024-03-07T16:33:08.646Z] ) -> object | list[object]: +[2024-03-07T16:33:08.646Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.646Z] result(s). +[2024-03-07T16:33:08.646Z] +[2024-03-07T16:33:08.646Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.646Z] """ +[2024-03-07T16:33:08.646Z] __tracebackhide__ = True +[2024-03-07T16:33:08.646Z] results: list[object] = [] +[2024-03-07T16:33:08.646Z] exception = None +[2024-03-07T16:33:08.646Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.646Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.646Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.646Z] try: +[2024-03-07T16:33:08.646Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.646Z] try: +[2024-03-07T16:33:08.646Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.646Z] except KeyError: +[2024-03-07T16:33:08.646Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.646Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.646Z] raise HookCallError( +[2024-03-07T16:33:08.646Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.646Z] ) +[2024-03-07T16:33:08.646Z] +[2024-03-07T16:33:08.646Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.646Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.646Z] try: +[2024-03-07T16:33:08.646Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.646Z] # which is the desired response. +[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.646Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.646Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.646Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.646Z] except StopIteration: +[2024-03-07T16:33:08.646Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.646Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.646Z] try: +[2024-03-07T16:33:08.646Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.646Z] # which is the desired response. +[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.646Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.646Z] next(function_gen) # first yield +[2024-03-07T16:33:08.646Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.646Z] except StopIteration: +[2024-03-07T16:33:08.646Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.646Z] else: +[2024-03-07T16:33:08.647Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.647Z] if res is not None: +[2024-03-07T16:33:08.647Z] results.append(res) +[2024-03-07T16:33:08.647Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.647Z] break +[2024-03-07T16:33:08.647Z] except BaseException as exc: +[2024-03-07T16:33:08.647Z] exception = exc +[2024-03-07T16:33:08.647Z] finally: +[2024-03-07T16:33:08.647Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.647Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.647Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.647Z] result = results[0] if results else None +[2024-03-07T16:33:08.647Z] else: +[2024-03-07T16:33:08.647Z] result = results +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.647Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.647Z] try: +[2024-03-07T16:33:08.647Z] if exception is not None: +[2024-03-07T16:33:08.647Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.647Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.647Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.647Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.647Z] try: +[2024-03-07T16:33:08.647Z] > yield +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.647Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.647Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] def _multicall( +[2024-03-07T16:33:08.647Z] hook_name: str, +[2024-03-07T16:33:08.647Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.647Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.647Z] firstresult: bool, +[2024-03-07T16:33:08.647Z] ) -> object | list[object]: +[2024-03-07T16:33:08.647Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.647Z] result(s). +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.647Z] """ +[2024-03-07T16:33:08.647Z] __tracebackhide__ = True +[2024-03-07T16:33:08.647Z] results: list[object] = [] +[2024-03-07T16:33:08.647Z] exception = None +[2024-03-07T16:33:08.647Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.647Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.647Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.647Z] try: +[2024-03-07T16:33:08.647Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.647Z] try: +[2024-03-07T16:33:08.647Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.647Z] except KeyError: +[2024-03-07T16:33:08.647Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.647Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.647Z] raise HookCallError( +[2024-03-07T16:33:08.647Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.647Z] ) +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.647Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.647Z] try: +[2024-03-07T16:33:08.647Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.647Z] # which is the desired response. +[2024-03-07T16:33:08.647Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.647Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.647Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.647Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.647Z] except StopIteration: +[2024-03-07T16:33:08.647Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.647Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.647Z] try: +[2024-03-07T16:33:08.647Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.647Z] # which is the desired response. +[2024-03-07T16:33:08.647Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.647Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.647Z] next(function_gen) # first yield +[2024-03-07T16:33:08.647Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.647Z] except StopIteration: +[2024-03-07T16:33:08.647Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.647Z] else: +[2024-03-07T16:33:08.647Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.647Z] if res is not None: +[2024-03-07T16:33:08.647Z] results.append(res) +[2024-03-07T16:33:08.647Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.647Z] break +[2024-03-07T16:33:08.647Z] except BaseException as exc: +[2024-03-07T16:33:08.647Z] exception = exc +[2024-03-07T16:33:08.647Z] finally: +[2024-03-07T16:33:08.647Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.647Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.647Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.647Z] result = results[0] if results else None +[2024-03-07T16:33:08.647Z] else: +[2024-03-07T16:33:08.647Z] result = results +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.647Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.647Z] try: +[2024-03-07T16:33:08.647Z] if exception is not None: +[2024-03-07T16:33:08.647Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.647Z] item = +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.647Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.647Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.647Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.647Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.647Z] item = , when = 'setup' +[2024-03-07T16:33:08.647Z] +[2024-03-07T16:33:08.647Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.647Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.647Z] with catching_logs( +[2024-03-07T16:33:08.647Z] self.caplog_handler, +[2024-03-07T16:33:08.647Z] level=self.log_level, +[2024-03-07T16:33:08.647Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.647Z] self.report_handler, +[2024-03-07T16:33:08.647Z] level=self.log_level, +[2024-03-07T16:33:08.647Z] ) as report_handler: +[2024-03-07T16:33:08.647Z] caplog_handler.reset() +[2024-03-07T16:33:08.647Z] report_handler.reset() +[2024-03-07T16:33:08.647Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.648Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.648Z] > yield +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.648Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.648Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.648Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] def _multicall( +[2024-03-07T16:33:08.648Z] hook_name: str, +[2024-03-07T16:33:08.648Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.648Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.648Z] firstresult: bool, +[2024-03-07T16:33:08.648Z] ) -> object | list[object]: +[2024-03-07T16:33:08.648Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.648Z] result(s). +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.648Z] """ +[2024-03-07T16:33:08.648Z] __tracebackhide__ = True +[2024-03-07T16:33:08.648Z] results: list[object] = [] +[2024-03-07T16:33:08.648Z] exception = None +[2024-03-07T16:33:08.648Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.648Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.648Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.648Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.648Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.648Z] except KeyError: +[2024-03-07T16:33:08.648Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.648Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.648Z] raise HookCallError( +[2024-03-07T16:33:08.648Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.648Z] ) +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.648Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.648Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.648Z] # which is the desired response. +[2024-03-07T16:33:08.648Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.648Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.648Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.648Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.648Z] except StopIteration: +[2024-03-07T16:33:08.648Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.648Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.648Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.648Z] # which is the desired response. +[2024-03-07T16:33:08.648Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.648Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.648Z] next(function_gen) # first yield +[2024-03-07T16:33:08.648Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.648Z] except StopIteration: +[2024-03-07T16:33:08.648Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.648Z] else: +[2024-03-07T16:33:08.648Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.648Z] if res is not None: +[2024-03-07T16:33:08.648Z] results.append(res) +[2024-03-07T16:33:08.648Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.648Z] break +[2024-03-07T16:33:08.648Z] except BaseException as exc: +[2024-03-07T16:33:08.648Z] exception = exc +[2024-03-07T16:33:08.648Z] finally: +[2024-03-07T16:33:08.648Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.648Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.648Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.648Z] result = results[0] if results else None +[2024-03-07T16:33:08.648Z] else: +[2024-03-07T16:33:08.648Z] result = results +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.648Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.648Z] if exception is not None: +[2024-03-07T16:33:08.648Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.648Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.648Z] item = +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.648Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.648Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.648Z] > return (yield) +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.648Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.648Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.648Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] def _multicall( +[2024-03-07T16:33:08.648Z] hook_name: str, +[2024-03-07T16:33:08.648Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.648Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.648Z] firstresult: bool, +[2024-03-07T16:33:08.648Z] ) -> object | list[object]: +[2024-03-07T16:33:08.648Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.648Z] result(s). +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.648Z] """ +[2024-03-07T16:33:08.648Z] __tracebackhide__ = True +[2024-03-07T16:33:08.648Z] results: list[object] = [] +[2024-03-07T16:33:08.648Z] exception = None +[2024-03-07T16:33:08.648Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.648Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.648Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.648Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.648Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.648Z] except KeyError: +[2024-03-07T16:33:08.648Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.648Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.648Z] raise HookCallError( +[2024-03-07T16:33:08.648Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.648Z] ) +[2024-03-07T16:33:08.648Z] +[2024-03-07T16:33:08.648Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.648Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.648Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.648Z] # which is the desired response. +[2024-03-07T16:33:08.648Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.648Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.648Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.648Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.648Z] except StopIteration: +[2024-03-07T16:33:08.648Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.648Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.648Z] try: +[2024-03-07T16:33:08.649Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.649Z] # which is the desired response. +[2024-03-07T16:33:08.649Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.649Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.649Z] next(function_gen) # first yield +[2024-03-07T16:33:08.649Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.649Z] except StopIteration: +[2024-03-07T16:33:08.649Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.649Z] else: +[2024-03-07T16:33:08.649Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.649Z] if res is not None: +[2024-03-07T16:33:08.649Z] results.append(res) +[2024-03-07T16:33:08.649Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.649Z] break +[2024-03-07T16:33:08.649Z] except BaseException as exc: +[2024-03-07T16:33:08.649Z] exception = exc +[2024-03-07T16:33:08.649Z] finally: +[2024-03-07T16:33:08.649Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.649Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.649Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.649Z] result = results[0] if results else None +[2024-03-07T16:33:08.649Z] else: +[2024-03-07T16:33:08.649Z] result = results +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.649Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.649Z] try: +[2024-03-07T16:33:08.649Z] if exception is not None: +[2024-03-07T16:33:08.649Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.649Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.649Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.649Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.649Z] try: +[2024-03-07T16:33:08.649Z] > yield +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.649Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.649Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] def _multicall( +[2024-03-07T16:33:08.649Z] hook_name: str, +[2024-03-07T16:33:08.649Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.649Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.649Z] firstresult: bool, +[2024-03-07T16:33:08.649Z] ) -> object | list[object]: +[2024-03-07T16:33:08.649Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.649Z] result(s). +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.649Z] """ +[2024-03-07T16:33:08.649Z] __tracebackhide__ = True +[2024-03-07T16:33:08.649Z] results: list[object] = [] +[2024-03-07T16:33:08.649Z] exception = None +[2024-03-07T16:33:08.649Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.649Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.649Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.649Z] try: +[2024-03-07T16:33:08.649Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.649Z] try: +[2024-03-07T16:33:08.649Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.649Z] except KeyError: +[2024-03-07T16:33:08.649Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.649Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.649Z] raise HookCallError( +[2024-03-07T16:33:08.649Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.649Z] ) +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.649Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.649Z] try: +[2024-03-07T16:33:08.649Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.649Z] # which is the desired response. +[2024-03-07T16:33:08.649Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.649Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.649Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.649Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.649Z] except StopIteration: +[2024-03-07T16:33:08.649Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.649Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.649Z] try: +[2024-03-07T16:33:08.649Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.649Z] # which is the desired response. +[2024-03-07T16:33:08.649Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.649Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.649Z] next(function_gen) # first yield +[2024-03-07T16:33:08.649Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.649Z] except StopIteration: +[2024-03-07T16:33:08.649Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.649Z] else: +[2024-03-07T16:33:08.649Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] item = +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.649Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.649Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.649Z] item = +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.649Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.649Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.649Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.649Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.649Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.649Z] if exc: +[2024-03-07T16:33:08.649Z] > raise exc +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] cls = +[2024-03-07T16:33:08.649Z] func = . at 0x7f0abc051900> +[2024-03-07T16:33:08.649Z] when = 'setup' +[2024-03-07T16:33:08.649Z] reraise = (, ) +[2024-03-07T16:33:08.649Z] +[2024-03-07T16:33:08.649Z] @classmethod +[2024-03-07T16:33:08.649Z] def from_call( +[2024-03-07T16:33:08.649Z] cls, +[2024-03-07T16:33:08.649Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.649Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.649Z] reraise: Optional[ +[2024-03-07T16:33:08.650Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.650Z] ] = None, +[2024-03-07T16:33:08.650Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.650Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] :param func: +[2024-03-07T16:33:08.650Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.650Z] :param when: +[2024-03-07T16:33:08.650Z] The phase in which the function is called. +[2024-03-07T16:33:08.650Z] :param reraise: +[2024-03-07T16:33:08.650Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.650Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.650Z] """ +[2024-03-07T16:33:08.650Z] excinfo = None +[2024-03-07T16:33:08.650Z] start = timing.time() +[2024-03-07T16:33:08.650Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.650Z] try: +[2024-03-07T16:33:08.650Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.650Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.650Z] ) +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.650Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] self = +[2024-03-07T16:33:08.650Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.650Z] """Call the hook. +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.650Z] specification. +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.650Z] :ref:`calling`. +[2024-03-07T16:33:08.650Z] """ +[2024-03-07T16:33:08.650Z] assert ( +[2024-03-07T16:33:08.650Z] not self.is_historic() +[2024-03-07T16:33:08.650Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.650Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.650Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.650Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.650Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.650Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.650Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.650Z] methods = [>, >, ...] +[2024-03-07T16:33:08.650Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] def _hookexec( +[2024-03-07T16:33:08.650Z] self, +[2024-03-07T16:33:08.650Z] hook_name: str, +[2024-03-07T16:33:08.650Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.650Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.650Z] firstresult: bool, +[2024-03-07T16:33:08.650Z] ) -> object | list[object]: +[2024-03-07T16:33:08.650Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.650Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.650Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.650Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.650Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.650Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] def _multicall( +[2024-03-07T16:33:08.650Z] hook_name: str, +[2024-03-07T16:33:08.650Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.650Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.650Z] firstresult: bool, +[2024-03-07T16:33:08.650Z] ) -> object | list[object]: +[2024-03-07T16:33:08.650Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.650Z] result(s). +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.650Z] """ +[2024-03-07T16:33:08.650Z] __tracebackhide__ = True +[2024-03-07T16:33:08.650Z] results: list[object] = [] +[2024-03-07T16:33:08.650Z] exception = None +[2024-03-07T16:33:08.650Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.650Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.650Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.650Z] try: +[2024-03-07T16:33:08.650Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.650Z] try: +[2024-03-07T16:33:08.650Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.650Z] except KeyError: +[2024-03-07T16:33:08.650Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.650Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.650Z] raise HookCallError( +[2024-03-07T16:33:08.650Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.650Z] ) +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.650Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.650Z] try: +[2024-03-07T16:33:08.650Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.650Z] # which is the desired response. +[2024-03-07T16:33:08.650Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.650Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.650Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.650Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.650Z] except StopIteration: +[2024-03-07T16:33:08.650Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.650Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.650Z] try: +[2024-03-07T16:33:08.650Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.650Z] # which is the desired response. +[2024-03-07T16:33:08.650Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.650Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.650Z] next(function_gen) # first yield +[2024-03-07T16:33:08.650Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.650Z] except StopIteration: +[2024-03-07T16:33:08.650Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.650Z] else: +[2024-03-07T16:33:08.650Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.650Z] if res is not None: +[2024-03-07T16:33:08.650Z] results.append(res) +[2024-03-07T16:33:08.650Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.650Z] break +[2024-03-07T16:33:08.650Z] except BaseException as exc: +[2024-03-07T16:33:08.650Z] exception = exc +[2024-03-07T16:33:08.650Z] finally: +[2024-03-07T16:33:08.650Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.650Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.650Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.650Z] result = results[0] if results else None +[2024-03-07T16:33:08.650Z] else: +[2024-03-07T16:33:08.650Z] result = results +[2024-03-07T16:33:08.650Z] +[2024-03-07T16:33:08.650Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.650Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.650Z] try: +[2024-03-07T16:33:08.650Z] if exception is not None: +[2024-03-07T16:33:08.650Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.650Z] else: +[2024-03-07T16:33:08.650Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.650Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.651Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.651Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.651Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.651Z] except StopIteration as si: +[2024-03-07T16:33:08.651Z] result = si.value +[2024-03-07T16:33:08.651Z] exception = None +[2024-03-07T16:33:08.651Z] continue +[2024-03-07T16:33:08.651Z] except BaseException as e: +[2024-03-07T16:33:08.651Z] exception = e +[2024-03-07T16:33:08.651Z] continue +[2024-03-07T16:33:08.651Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] if exception is not None: +[2024-03-07T16:33:08.651Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.651Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.651Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.651Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] def _multicall( +[2024-03-07T16:33:08.651Z] hook_name: str, +[2024-03-07T16:33:08.651Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.651Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.651Z] firstresult: bool, +[2024-03-07T16:33:08.651Z] ) -> object | list[object]: +[2024-03-07T16:33:08.651Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.651Z] result(s). +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.651Z] """ +[2024-03-07T16:33:08.651Z] __tracebackhide__ = True +[2024-03-07T16:33:08.651Z] results: list[object] = [] +[2024-03-07T16:33:08.651Z] exception = None +[2024-03-07T16:33:08.651Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.651Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.651Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.651Z] try: +[2024-03-07T16:33:08.651Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.651Z] try: +[2024-03-07T16:33:08.651Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.651Z] except KeyError: +[2024-03-07T16:33:08.651Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.651Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.651Z] raise HookCallError( +[2024-03-07T16:33:08.651Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.651Z] ) +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.651Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.651Z] try: +[2024-03-07T16:33:08.651Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.651Z] # which is the desired response. +[2024-03-07T16:33:08.651Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.651Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.651Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.651Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.651Z] except StopIteration: +[2024-03-07T16:33:08.651Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.651Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.651Z] try: +[2024-03-07T16:33:08.651Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.651Z] # which is the desired response. +[2024-03-07T16:33:08.651Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.651Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.651Z] next(function_gen) # first yield +[2024-03-07T16:33:08.651Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.651Z] except StopIteration: +[2024-03-07T16:33:08.651Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.651Z] else: +[2024-03-07T16:33:08.651Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.651Z] if res is not None: +[2024-03-07T16:33:08.651Z] results.append(res) +[2024-03-07T16:33:08.651Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.651Z] break +[2024-03-07T16:33:08.651Z] except BaseException as exc: +[2024-03-07T16:33:08.651Z] exception = exc +[2024-03-07T16:33:08.651Z] finally: +[2024-03-07T16:33:08.651Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.651Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.651Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.651Z] result = results[0] if results else None +[2024-03-07T16:33:08.651Z] else: +[2024-03-07T16:33:08.651Z] result = results +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.651Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.651Z] try: +[2024-03-07T16:33:08.651Z] if exception is not None: +[2024-03-07T16:33:08.651Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.651Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.651Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.651Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.651Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.651Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.651Z] try: +[2024-03-07T16:33:08.651Z] > yield +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.651Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.651Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.651Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] def _multicall( +[2024-03-07T16:33:08.651Z] hook_name: str, +[2024-03-07T16:33:08.651Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.651Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.651Z] firstresult: bool, +[2024-03-07T16:33:08.651Z] ) -> object | list[object]: +[2024-03-07T16:33:08.651Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.651Z] result(s). +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.651Z] """ +[2024-03-07T16:33:08.651Z] __tracebackhide__ = True +[2024-03-07T16:33:08.651Z] results: list[object] = [] +[2024-03-07T16:33:08.651Z] exception = None +[2024-03-07T16:33:08.651Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.651Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.651Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.651Z] try: +[2024-03-07T16:33:08.651Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.651Z] try: +[2024-03-07T16:33:08.651Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.651Z] except KeyError: +[2024-03-07T16:33:08.651Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.651Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.651Z] raise HookCallError( +[2024-03-07T16:33:08.651Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.651Z] ) +[2024-03-07T16:33:08.651Z] +[2024-03-07T16:33:08.651Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.652Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.652Z] try: +[2024-03-07T16:33:08.652Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.652Z] # which is the desired response. +[2024-03-07T16:33:08.652Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.652Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.652Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.652Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.652Z] except StopIteration: +[2024-03-07T16:33:08.652Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.652Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.652Z] try: +[2024-03-07T16:33:08.652Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.652Z] # which is the desired response. +[2024-03-07T16:33:08.652Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.652Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.652Z] next(function_gen) # first yield +[2024-03-07T16:33:08.652Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.652Z] except StopIteration: +[2024-03-07T16:33:08.652Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.652Z] else: +[2024-03-07T16:33:08.652Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.652Z] if res is not None: +[2024-03-07T16:33:08.652Z] results.append(res) +[2024-03-07T16:33:08.652Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.652Z] break +[2024-03-07T16:33:08.652Z] except BaseException as exc: +[2024-03-07T16:33:08.652Z] exception = exc +[2024-03-07T16:33:08.652Z] finally: +[2024-03-07T16:33:08.652Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.652Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.652Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.652Z] result = results[0] if results else None +[2024-03-07T16:33:08.652Z] else: +[2024-03-07T16:33:08.652Z] result = results +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.652Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.652Z] try: +[2024-03-07T16:33:08.652Z] if exception is not None: +[2024-03-07T16:33:08.652Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.652Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.652Z] item = +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.652Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.652Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.652Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.652Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.652Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.652Z] item = , when = 'setup' +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.652Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.652Z] with catching_logs( +[2024-03-07T16:33:08.652Z] self.caplog_handler, +[2024-03-07T16:33:08.652Z] level=self.log_level, +[2024-03-07T16:33:08.652Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.652Z] self.report_handler, +[2024-03-07T16:33:08.652Z] level=self.log_level, +[2024-03-07T16:33:08.652Z] ) as report_handler: +[2024-03-07T16:33:08.652Z] caplog_handler.reset() +[2024-03-07T16:33:08.652Z] report_handler.reset() +[2024-03-07T16:33:08.652Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.652Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] try: +[2024-03-07T16:33:08.652Z] > yield +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.652Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.652Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.652Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] def _multicall( +[2024-03-07T16:33:08.652Z] hook_name: str, +[2024-03-07T16:33:08.652Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.652Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.652Z] firstresult: bool, +[2024-03-07T16:33:08.652Z] ) -> object | list[object]: +[2024-03-07T16:33:08.652Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.652Z] result(s). +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.652Z] """ +[2024-03-07T16:33:08.652Z] __tracebackhide__ = True +[2024-03-07T16:33:08.652Z] results: list[object] = [] +[2024-03-07T16:33:08.652Z] exception = None +[2024-03-07T16:33:08.652Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.652Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.652Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.652Z] try: +[2024-03-07T16:33:08.652Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.652Z] try: +[2024-03-07T16:33:08.652Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.652Z] except KeyError: +[2024-03-07T16:33:08.652Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.652Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.652Z] raise HookCallError( +[2024-03-07T16:33:08.652Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.652Z] ) +[2024-03-07T16:33:08.652Z] +[2024-03-07T16:33:08.652Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.652Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.652Z] try: +[2024-03-07T16:33:08.652Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.652Z] # which is the desired response. +[2024-03-07T16:33:08.652Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.652Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.652Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.652Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.652Z] except StopIteration: +[2024-03-07T16:33:08.652Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.652Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.652Z] try: +[2024-03-07T16:33:08.653Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.653Z] # which is the desired response. +[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.653Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.653Z] next(function_gen) # first yield +[2024-03-07T16:33:08.653Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.653Z] except StopIteration: +[2024-03-07T16:33:08.653Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.653Z] else: +[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.653Z] if res is not None: +[2024-03-07T16:33:08.653Z] results.append(res) +[2024-03-07T16:33:08.653Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.653Z] break +[2024-03-07T16:33:08.653Z] except BaseException as exc: +[2024-03-07T16:33:08.653Z] exception = exc +[2024-03-07T16:33:08.653Z] finally: +[2024-03-07T16:33:08.653Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.653Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.653Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.653Z] result = results[0] if results else None +[2024-03-07T16:33:08.653Z] else: +[2024-03-07T16:33:08.653Z] result = results +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.653Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.653Z] try: +[2024-03-07T16:33:08.653Z] if exception is not None: +[2024-03-07T16:33:08.653Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.653Z] item = +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.653Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.653Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.653Z] > return (yield) +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.653Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.653Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] def _multicall( +[2024-03-07T16:33:08.653Z] hook_name: str, +[2024-03-07T16:33:08.653Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.653Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.653Z] firstresult: bool, +[2024-03-07T16:33:08.653Z] ) -> object | list[object]: +[2024-03-07T16:33:08.653Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.653Z] result(s). +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.653Z] """ +[2024-03-07T16:33:08.653Z] __tracebackhide__ = True +[2024-03-07T16:33:08.653Z] results: list[object] = [] +[2024-03-07T16:33:08.653Z] exception = None +[2024-03-07T16:33:08.653Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.653Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.653Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.653Z] try: +[2024-03-07T16:33:08.653Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.653Z] try: +[2024-03-07T16:33:08.653Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.653Z] except KeyError: +[2024-03-07T16:33:08.653Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.653Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.653Z] raise HookCallError( +[2024-03-07T16:33:08.653Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.653Z] ) +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.653Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.653Z] try: +[2024-03-07T16:33:08.653Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.653Z] # which is the desired response. +[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.653Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.653Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.653Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.653Z] except StopIteration: +[2024-03-07T16:33:08.653Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.653Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.653Z] try: +[2024-03-07T16:33:08.653Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.653Z] # which is the desired response. +[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.653Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.653Z] next(function_gen) # first yield +[2024-03-07T16:33:08.653Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.653Z] except StopIteration: +[2024-03-07T16:33:08.653Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.653Z] else: +[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.653Z] if res is not None: +[2024-03-07T16:33:08.653Z] results.append(res) +[2024-03-07T16:33:08.653Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.653Z] break +[2024-03-07T16:33:08.653Z] except BaseException as exc: +[2024-03-07T16:33:08.653Z] exception = exc +[2024-03-07T16:33:08.653Z] finally: +[2024-03-07T16:33:08.653Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.653Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.653Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.653Z] result = results[0] if results else None +[2024-03-07T16:33:08.653Z] else: +[2024-03-07T16:33:08.653Z] result = results +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.653Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.653Z] try: +[2024-03-07T16:33:08.653Z] if exception is not None: +[2024-03-07T16:33:08.653Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.653Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.653Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.653Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.653Z] try: +[2024-03-07T16:33:08.653Z] > yield +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.653Z] +[2024-03-07T16:33:08.653Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.654Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.654Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] def _multicall( +[2024-03-07T16:33:08.654Z] hook_name: str, +[2024-03-07T16:33:08.654Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.654Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.654Z] firstresult: bool, +[2024-03-07T16:33:08.654Z] ) -> object | list[object]: +[2024-03-07T16:33:08.654Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.654Z] result(s). +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.654Z] """ +[2024-03-07T16:33:08.654Z] __tracebackhide__ = True +[2024-03-07T16:33:08.654Z] results: list[object] = [] +[2024-03-07T16:33:08.654Z] exception = None +[2024-03-07T16:33:08.654Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.654Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.654Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.654Z] try: +[2024-03-07T16:33:08.654Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.654Z] try: +[2024-03-07T16:33:08.654Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.654Z] except KeyError: +[2024-03-07T16:33:08.654Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.654Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.654Z] raise HookCallError( +[2024-03-07T16:33:08.654Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.654Z] ) +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.654Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.654Z] try: +[2024-03-07T16:33:08.654Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.654Z] # which is the desired response. +[2024-03-07T16:33:08.654Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.654Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.654Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.654Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.654Z] except StopIteration: +[2024-03-07T16:33:08.654Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.654Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.654Z] try: +[2024-03-07T16:33:08.654Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.654Z] # which is the desired response. +[2024-03-07T16:33:08.654Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.654Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.654Z] next(function_gen) # first yield +[2024-03-07T16:33:08.654Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.654Z] except StopIteration: +[2024-03-07T16:33:08.654Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.654Z] else: +[2024-03-07T16:33:08.654Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] item = +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.654Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.654Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.654Z] item = +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.654Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.654Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.654Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.654Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.654Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.654Z] if exc: +[2024-03-07T16:33:08.654Z] > raise exc +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] cls = +[2024-03-07T16:33:08.654Z] func = . at 0x7f0abbb0b520> +[2024-03-07T16:33:08.654Z] when = 'setup' +[2024-03-07T16:33:08.654Z] reraise = (, ) +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] @classmethod +[2024-03-07T16:33:08.654Z] def from_call( +[2024-03-07T16:33:08.654Z] cls, +[2024-03-07T16:33:08.654Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.654Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.654Z] reraise: Optional[ +[2024-03-07T16:33:08.654Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.654Z] ] = None, +[2024-03-07T16:33:08.654Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.654Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] :param func: +[2024-03-07T16:33:08.654Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.654Z] :param when: +[2024-03-07T16:33:08.654Z] The phase in which the function is called. +[2024-03-07T16:33:08.654Z] :param reraise: +[2024-03-07T16:33:08.654Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.654Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.654Z] """ +[2024-03-07T16:33:08.654Z] excinfo = None +[2024-03-07T16:33:08.654Z] start = timing.time() +[2024-03-07T16:33:08.654Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.654Z] try: +[2024-03-07T16:33:08.654Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.654Z] ) +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] self = +[2024-03-07T16:33:08.654Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.654Z] """Call the hook. +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.654Z] specification. +[2024-03-07T16:33:08.654Z] +[2024-03-07T16:33:08.654Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.654Z] :ref:`calling`. +[2024-03-07T16:33:08.654Z] """ +[2024-03-07T16:33:08.654Z] assert ( +[2024-03-07T16:33:08.654Z] not self.is_historic() +[2024-03-07T16:33:08.654Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.654Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.655Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.655Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.655Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.655Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.655Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.655Z] methods = [>, >, ...] +[2024-03-07T16:33:08.655Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] def _hookexec( +[2024-03-07T16:33:08.655Z] self, +[2024-03-07T16:33:08.655Z] hook_name: str, +[2024-03-07T16:33:08.655Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.655Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.655Z] firstresult: bool, +[2024-03-07T16:33:08.655Z] ) -> object | list[object]: +[2024-03-07T16:33:08.655Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.655Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.655Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.655Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.655Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.655Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] def _multicall( +[2024-03-07T16:33:08.655Z] hook_name: str, +[2024-03-07T16:33:08.655Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.655Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.655Z] firstresult: bool, +[2024-03-07T16:33:08.655Z] ) -> object | list[object]: +[2024-03-07T16:33:08.655Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.655Z] result(s). +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.655Z] """ +[2024-03-07T16:33:08.655Z] __tracebackhide__ = True +[2024-03-07T16:33:08.655Z] results: list[object] = [] +[2024-03-07T16:33:08.655Z] exception = None +[2024-03-07T16:33:08.655Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.655Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.655Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.655Z] try: +[2024-03-07T16:33:08.655Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.655Z] try: +[2024-03-07T16:33:08.655Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.655Z] except KeyError: +[2024-03-07T16:33:08.655Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.655Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.655Z] raise HookCallError( +[2024-03-07T16:33:08.655Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.655Z] ) +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.655Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.655Z] try: +[2024-03-07T16:33:08.655Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.655Z] # which is the desired response. +[2024-03-07T16:33:08.655Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.655Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.655Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.655Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.655Z] except StopIteration: +[2024-03-07T16:33:08.655Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.655Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.655Z] try: +[2024-03-07T16:33:08.655Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.655Z] # which is the desired response. +[2024-03-07T16:33:08.655Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.655Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.655Z] next(function_gen) # first yield +[2024-03-07T16:33:08.655Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.655Z] except StopIteration: +[2024-03-07T16:33:08.655Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.655Z] else: +[2024-03-07T16:33:08.655Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.655Z] if res is not None: +[2024-03-07T16:33:08.655Z] results.append(res) +[2024-03-07T16:33:08.655Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.655Z] break +[2024-03-07T16:33:08.655Z] except BaseException as exc: +[2024-03-07T16:33:08.655Z] exception = exc +[2024-03-07T16:33:08.655Z] finally: +[2024-03-07T16:33:08.655Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.655Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.655Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.655Z] result = results[0] if results else None +[2024-03-07T16:33:08.655Z] else: +[2024-03-07T16:33:08.655Z] result = results +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.655Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.655Z] try: +[2024-03-07T16:33:08.655Z] if exception is not None: +[2024-03-07T16:33:08.655Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.655Z] else: +[2024-03-07T16:33:08.655Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.655Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.655Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.655Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.655Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.655Z] except StopIteration as si: +[2024-03-07T16:33:08.655Z] result = si.value +[2024-03-07T16:33:08.655Z] exception = None +[2024-03-07T16:33:08.655Z] continue +[2024-03-07T16:33:08.655Z] except BaseException as e: +[2024-03-07T16:33:08.655Z] exception = e +[2024-03-07T16:33:08.655Z] continue +[2024-03-07T16:33:08.655Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] if exception is not None: +[2024-03-07T16:33:08.655Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.655Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.655Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.655Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] def _multicall( +[2024-03-07T16:33:08.655Z] hook_name: str, +[2024-03-07T16:33:08.655Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.655Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.655Z] firstresult: bool, +[2024-03-07T16:33:08.655Z] ) -> object | list[object]: +[2024-03-07T16:33:08.655Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.655Z] result(s). +[2024-03-07T16:33:08.655Z] +[2024-03-07T16:33:08.655Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.655Z] """ +[2024-03-07T16:33:08.655Z] __tracebackhide__ = True +[2024-03-07T16:33:08.655Z] results: list[object] = [] +[2024-03-07T16:33:08.655Z] exception = None +[2024-03-07T16:33:08.656Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.656Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.656Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.656Z] except KeyError: +[2024-03-07T16:33:08.656Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.656Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.656Z] raise HookCallError( +[2024-03-07T16:33:08.656Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.656Z] ) +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.656Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.656Z] # which is the desired response. +[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.656Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.656Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.656Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.656Z] except StopIteration: +[2024-03-07T16:33:08.656Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.656Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.656Z] # which is the desired response. +[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.656Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.656Z] next(function_gen) # first yield +[2024-03-07T16:33:08.656Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.656Z] except StopIteration: +[2024-03-07T16:33:08.656Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.656Z] else: +[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.656Z] if res is not None: +[2024-03-07T16:33:08.656Z] results.append(res) +[2024-03-07T16:33:08.656Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.656Z] break +[2024-03-07T16:33:08.656Z] except BaseException as exc: +[2024-03-07T16:33:08.656Z] exception = exc +[2024-03-07T16:33:08.656Z] finally: +[2024-03-07T16:33:08.656Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.656Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.656Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.656Z] result = results[0] if results else None +[2024-03-07T16:33:08.656Z] else: +[2024-03-07T16:33:08.656Z] result = results +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.656Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] if exception is not None: +[2024-03-07T16:33:08.656Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.656Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.656Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.656Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.656Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.656Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] > yield +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.656Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.656Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.656Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] def _multicall( +[2024-03-07T16:33:08.656Z] hook_name: str, +[2024-03-07T16:33:08.656Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.656Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.656Z] firstresult: bool, +[2024-03-07T16:33:08.656Z] ) -> object | list[object]: +[2024-03-07T16:33:08.656Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.656Z] result(s). +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.656Z] """ +[2024-03-07T16:33:08.656Z] __tracebackhide__ = True +[2024-03-07T16:33:08.656Z] results: list[object] = [] +[2024-03-07T16:33:08.656Z] exception = None +[2024-03-07T16:33:08.656Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.656Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.656Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.656Z] except KeyError: +[2024-03-07T16:33:08.656Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.656Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.656Z] raise HookCallError( +[2024-03-07T16:33:08.656Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.656Z] ) +[2024-03-07T16:33:08.656Z] +[2024-03-07T16:33:08.656Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.656Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.656Z] # which is the desired response. +[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.656Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.656Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.656Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.656Z] except StopIteration: +[2024-03-07T16:33:08.656Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.656Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.656Z] try: +[2024-03-07T16:33:08.656Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.656Z] # which is the desired response. +[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.656Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.656Z] next(function_gen) # first yield +[2024-03-07T16:33:08.656Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.656Z] except StopIteration: +[2024-03-07T16:33:08.656Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.656Z] else: +[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.656Z] if res is not None: +[2024-03-07T16:33:08.656Z] results.append(res) +[2024-03-07T16:33:08.656Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.656Z] break +[2024-03-07T16:33:08.656Z] except BaseException as exc: +[2024-03-07T16:33:08.656Z] exception = exc +[2024-03-07T16:33:08.656Z] finally: +[2024-03-07T16:33:08.656Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.656Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.656Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.657Z] result = results[0] if results else None +[2024-03-07T16:33:08.657Z] else: +[2024-03-07T16:33:08.657Z] result = results +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.657Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.657Z] try: +[2024-03-07T16:33:08.657Z] if exception is not None: +[2024-03-07T16:33:08.657Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.657Z] item = +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.657Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.657Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.657Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.657Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.657Z] item = , when = 'setup' +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.657Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.657Z] with catching_logs( +[2024-03-07T16:33:08.657Z] self.caplog_handler, +[2024-03-07T16:33:08.657Z] level=self.log_level, +[2024-03-07T16:33:08.657Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.657Z] self.report_handler, +[2024-03-07T16:33:08.657Z] level=self.log_level, +[2024-03-07T16:33:08.657Z] ) as report_handler: +[2024-03-07T16:33:08.657Z] caplog_handler.reset() +[2024-03-07T16:33:08.657Z] report_handler.reset() +[2024-03-07T16:33:08.657Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.657Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] try: +[2024-03-07T16:33:08.657Z] > yield +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.657Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.657Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] def _multicall( +[2024-03-07T16:33:08.657Z] hook_name: str, +[2024-03-07T16:33:08.657Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.657Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.657Z] firstresult: bool, +[2024-03-07T16:33:08.657Z] ) -> object | list[object]: +[2024-03-07T16:33:08.657Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.657Z] result(s). +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.657Z] """ +[2024-03-07T16:33:08.657Z] __tracebackhide__ = True +[2024-03-07T16:33:08.657Z] results: list[object] = [] +[2024-03-07T16:33:08.657Z] exception = None +[2024-03-07T16:33:08.657Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.657Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.657Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.657Z] try: +[2024-03-07T16:33:08.657Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.657Z] try: +[2024-03-07T16:33:08.657Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.657Z] except KeyError: +[2024-03-07T16:33:08.657Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.657Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.657Z] raise HookCallError( +[2024-03-07T16:33:08.657Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.657Z] ) +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.657Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.657Z] try: +[2024-03-07T16:33:08.657Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.657Z] # which is the desired response. +[2024-03-07T16:33:08.657Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.657Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.657Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.657Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.657Z] except StopIteration: +[2024-03-07T16:33:08.657Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.657Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.657Z] try: +[2024-03-07T16:33:08.657Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.657Z] # which is the desired response. +[2024-03-07T16:33:08.657Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.657Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.657Z] next(function_gen) # first yield +[2024-03-07T16:33:08.657Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.657Z] except StopIteration: +[2024-03-07T16:33:08.657Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.657Z] else: +[2024-03-07T16:33:08.657Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.657Z] if res is not None: +[2024-03-07T16:33:08.657Z] results.append(res) +[2024-03-07T16:33:08.657Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.657Z] break +[2024-03-07T16:33:08.657Z] except BaseException as exc: +[2024-03-07T16:33:08.657Z] exception = exc +[2024-03-07T16:33:08.657Z] finally: +[2024-03-07T16:33:08.657Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.657Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.657Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.657Z] result = results[0] if results else None +[2024-03-07T16:33:08.657Z] else: +[2024-03-07T16:33:08.657Z] result = results +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.657Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.657Z] try: +[2024-03-07T16:33:08.657Z] if exception is not None: +[2024-03-07T16:33:08.657Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.657Z] item = +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.657Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.657Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.657Z] > return (yield) +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.657Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.657Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.657Z] +[2024-03-07T16:33:08.657Z] def _multicall( +[2024-03-07T16:33:08.657Z] hook_name: str, +[2024-03-07T16:33:08.657Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.658Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.658Z] firstresult: bool, +[2024-03-07T16:33:08.658Z] ) -> object | list[object]: +[2024-03-07T16:33:08.658Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.658Z] result(s). +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.658Z] """ +[2024-03-07T16:33:08.658Z] __tracebackhide__ = True +[2024-03-07T16:33:08.658Z] results: list[object] = [] +[2024-03-07T16:33:08.658Z] exception = None +[2024-03-07T16:33:08.658Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.658Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.658Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.658Z] except KeyError: +[2024-03-07T16:33:08.658Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.658Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.658Z] raise HookCallError( +[2024-03-07T16:33:08.658Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.658Z] ) +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.658Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.658Z] # which is the desired response. +[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.658Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.658Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.658Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.658Z] except StopIteration: +[2024-03-07T16:33:08.658Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.658Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.658Z] # which is the desired response. +[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.658Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.658Z] next(function_gen) # first yield +[2024-03-07T16:33:08.658Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.658Z] except StopIteration: +[2024-03-07T16:33:08.658Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.658Z] else: +[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.658Z] if res is not None: +[2024-03-07T16:33:08.658Z] results.append(res) +[2024-03-07T16:33:08.658Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.658Z] break +[2024-03-07T16:33:08.658Z] except BaseException as exc: +[2024-03-07T16:33:08.658Z] exception = exc +[2024-03-07T16:33:08.658Z] finally: +[2024-03-07T16:33:08.658Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.658Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.658Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.658Z] result = results[0] if results else None +[2024-03-07T16:33:08.658Z] else: +[2024-03-07T16:33:08.658Z] result = results +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.658Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] if exception is not None: +[2024-03-07T16:33:08.658Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.658Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.658Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.658Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.658Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.658Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] > yield +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.658Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.658Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.658Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] def _multicall( +[2024-03-07T16:33:08.658Z] hook_name: str, +[2024-03-07T16:33:08.658Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.658Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.658Z] firstresult: bool, +[2024-03-07T16:33:08.658Z] ) -> object | list[object]: +[2024-03-07T16:33:08.658Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.658Z] result(s). +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.658Z] """ +[2024-03-07T16:33:08.658Z] __tracebackhide__ = True +[2024-03-07T16:33:08.658Z] results: list[object] = [] +[2024-03-07T16:33:08.658Z] exception = None +[2024-03-07T16:33:08.658Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.658Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.658Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.658Z] except KeyError: +[2024-03-07T16:33:08.658Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.658Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.658Z] raise HookCallError( +[2024-03-07T16:33:08.658Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.658Z] ) +[2024-03-07T16:33:08.658Z] +[2024-03-07T16:33:08.658Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.658Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.658Z] # which is the desired response. +[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.658Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.658Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.658Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.658Z] except StopIteration: +[2024-03-07T16:33:08.658Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.658Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.658Z] try: +[2024-03-07T16:33:08.658Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.658Z] # which is the desired response. +[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.658Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.658Z] next(function_gen) # first yield +[2024-03-07T16:33:08.658Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.658Z] except StopIteration: +[2024-03-07T16:33:08.659Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.659Z] else: +[2024-03-07T16:33:08.659Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] item = +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.659Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.659Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.659Z] item = +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.659Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.659Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.659Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.659Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.659Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.659Z] if exc: +[2024-03-07T16:33:08.659Z] raise exc +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.659Z] assert col not in self.stack +[2024-03-07T16:33:08.659Z] # Push onto the stack. +[2024-03-07T16:33:08.659Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.659Z] try: +[2024-03-07T16:33:08.659Z] col.setup() +[2024-03-07T16:33:08.659Z] except TEST_OUTCOME as exc: +[2024-03-07T16:33:08.659Z] self.stack[col] = (self.stack[col][0], exc) +[2024-03-07T16:33:08.659Z] > raise exc +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: +[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.659Z] item = +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.659Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.659Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.659Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.659Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.659Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.659Z] if exc: +[2024-03-07T16:33:08.659Z] raise exc +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.659Z] assert col not in self.stack +[2024-03-07T16:33:08.659Z] # Push onto the stack. +[2024-03-07T16:33:08.659Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.659Z] try: +[2024-03-07T16:33:08.659Z] > col.setup() +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: +[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] self = +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] def setup(self): +[2024-03-07T16:33:08.659Z] """ +[2024-03-07T16:33:08.659Z] Called by pytest to setup the collector cells in . +[2024-03-07T16:33:08.659Z] Here we start a kernel and setup the sanitize patterns. +[2024-03-07T16:33:08.659Z] """ +[2024-03-07T16:33:08.659Z] # we've already checked that --nbval-current-env and +[2024-03-07T16:33:08.659Z] # --nbval-kernel-name were not both supplied +[2024-03-07T16:33:08.659Z] if self.parent.config.option.nbval_current_env: +[2024-03-07T16:33:08.659Z] kernel_name = CURRENT_ENV_KERNEL_NAME +[2024-03-07T16:33:08.659Z] elif self.parent.config.option.nbval_kernel_name: +[2024-03-07T16:33:08.659Z] kernel_name = self.parent.config.option.nbval_kernel_name +[2024-03-07T16:33:08.659Z] else: +[2024-03-07T16:33:08.659Z] kernel_name = self.nb.metadata.get( +[2024-03-07T16:33:08.659Z] 'kernelspec', {}).get('name', 'python') +[2024-03-07T16:33:08.659Z] > self.kernel = RunningKernel( +[2024-03-07T16:33:08.659Z] kernel_name, +[2024-03-07T16:33:08.659Z] cwd=str(self.fspath.dirname), +[2024-03-07T16:33:08.659Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, +[2024-03-07T16:33:08.659Z] ) +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: +[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] self = +[2024-03-07T16:33:08.659Z] kernel_name = 'python' +[2024-03-07T16:33:08.659Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' +[2024-03-07T16:33:08.659Z] startup_timeout = 60 +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): +[2024-03-07T16:33:08.659Z] """ +[2024-03-07T16:33:08.659Z] Initialise a new kernel +[2024-03-07T16:33:08.659Z] specify that matplotlib is inline and connect the stderr. +[2024-03-07T16:33:08.659Z] Stores the active kernel process and its manager. +[2024-03-07T16:33:08.659Z] """ +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] > self.km, self.kc = start_new_kernel( +[2024-03-07T16:33:08.659Z] startup_timeout=startup_timeout, +[2024-03-07T16:33:08.659Z] kernel_name=kernel_name, +[2024-03-07T16:33:08.659Z] stderr=open(os.devnull, 'w'), +[2024-03-07T16:33:08.659Z] cwd=cwd, +[2024-03-07T16:33:08.659Z] ) +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: +[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] startup_timeout = 60, kernel_name = 'python' +[2024-03-07T16:33:08.659Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} +[2024-03-07T16:33:08.659Z] km = +[2024-03-07T16:33:08.659Z] kc = +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): +[2024-03-07T16:33:08.659Z] """Start a new kernel, and return its Manager and Client""" +[2024-03-07T16:33:08.659Z] logger.debug('Starting new kernel: "%s"' % kernel_name) +[2024-03-07T16:33:08.659Z] km = KernelManager(kernel_name=kernel_name, +[2024-03-07T16:33:08.659Z] kernel_spec_manager=NbvalKernelspecManager()) +[2024-03-07T16:33:08.659Z] km.start_kernel(**kwargs) +[2024-03-07T16:33:08.659Z] kc = km.client() +[2024-03-07T16:33:08.659Z] kc.start_channels() +[2024-03-07T16:33:08.659Z] try: +[2024-03-07T16:33:08.659Z] > kc.wait_for_ready(timeout=startup_timeout) +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: +[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] args = (,) +[2024-03-07T16:33:08.659Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.659Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.659Z] nest_asyncio = +[2024-03-07T16:33:08.659Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.659Z] try: +[2024-03-07T16:33:08.659Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.659Z] except RuntimeError: +[2024-03-07T16:33:08.659Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.659Z] try: +[2024-03-07T16:33:08.659Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.659Z] except RuntimeError: +[2024-03-07T16:33:08.659Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.659Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.659Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.659Z] +[2024-03-07T16:33:08.659Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.659Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.659Z] try: +[2024-03-07T16:33:08.660Z] return loop.run_until_complete(future) +[2024-03-07T16:33:08.660Z] except BaseException as e: +[2024-03-07T16:33:08.660Z] future.cancel() +[2024-03-07T16:33:08.660Z] > raise e +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: +[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] args = (,) +[2024-03-07T16:33:08.660Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.660Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.660Z] nest_asyncio = +[2024-03-07T16:33:08.660Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.660Z] try: +[2024-03-07T16:33:08.660Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.660Z] except RuntimeError: +[2024-03-07T16:33:08.660Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.660Z] try: +[2024-03-07T16:33:08.660Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.660Z] except RuntimeError: +[2024-03-07T16:33:08.660Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.660Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.660Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.660Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.660Z] try: +[2024-03-07T16:33:08.660Z] > return loop.run_until_complete(future) +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: +[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.660Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] def run_until_complete(self, future): +[2024-03-07T16:33:08.660Z] with manage_run(self): +[2024-03-07T16:33:08.660Z] f = asyncio.ensure_future(future, loop=self) +[2024-03-07T16:33:08.660Z] if f is not future: +[2024-03-07T16:33:08.660Z] f._log_destroy_pending = False +[2024-03-07T16:33:08.660Z] while not f.done(): +[2024-03-07T16:33:08.660Z] self._run_once() +[2024-03-07T16:33:08.660Z] if self._stopping: +[2024-03-07T16:33:08.660Z] break +[2024-03-07T16:33:08.660Z] if not f.done(): +[2024-03-07T16:33:08.660Z] raise RuntimeError( +[2024-03-07T16:33:08.660Z] 'Event loop stopped before Future completed.') +[2024-03-07T16:33:08.660Z] > return f.result() +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: +[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] def result(self): +[2024-03-07T16:33:08.660Z] """Return the result this future represents. +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] If the future has been cancelled, raises CancelledError. If the +[2024-03-07T16:33:08.660Z] future's result isn't yet available, raises InvalidStateError. If +[2024-03-07T16:33:08.660Z] the future is done and has an exception set, this exception is raised. +[2024-03-07T16:33:08.660Z] """ +[2024-03-07T16:33:08.660Z] if self._state == _CANCELLED: +[2024-03-07T16:33:08.660Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.660Z] raise exc +[2024-03-07T16:33:08.660Z] if self._state != _FINISHED: +[2024-03-07T16:33:08.660Z] raise exceptions.InvalidStateError('Result is not ready.') +[2024-03-07T16:33:08.660Z] self.__log_traceback = False +[2024-03-07T16:33:08.660Z] if self._exception is not None: +[2024-03-07T16:33:08.660Z] > raise self._exception.with_traceback(self._exception_tb) +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: +[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] self = None +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] def __step(self, exc=None): +[2024-03-07T16:33:08.660Z] if self.done(): +[2024-03-07T16:33:08.660Z] raise exceptions.InvalidStateError( +[2024-03-07T16:33:08.660Z] f'_step(): already done: {self!r}, {exc!r}') +[2024-03-07T16:33:08.660Z] if self._must_cancel: +[2024-03-07T16:33:08.660Z] if not isinstance(exc, exceptions.CancelledError): +[2024-03-07T16:33:08.660Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.660Z] self._must_cancel = False +[2024-03-07T16:33:08.660Z] coro = self._coro +[2024-03-07T16:33:08.660Z] self._fut_waiter = None +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] _enter_task(self._loop, self) +[2024-03-07T16:33:08.660Z] # Call either coro.throw(exc) or coro.send(None). +[2024-03-07T16:33:08.660Z] try: +[2024-03-07T16:33:08.660Z] if exc is None: +[2024-03-07T16:33:08.660Z] # We use the `send` method directly, because coroutines +[2024-03-07T16:33:08.660Z] # don't have `__iter__` and `__next__` methods. +[2024-03-07T16:33:08.660Z] > result = coro.send(None) +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: +[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] self = +[2024-03-07T16:33:08.660Z] timeout = 60 +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: +[2024-03-07T16:33:08.660Z] """Waits for a response when a client is blocked +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] - Sets future time for timeout +[2024-03-07T16:33:08.660Z] - Blocks on shell channel until a message is received +[2024-03-07T16:33:08.660Z] - Exit if the kernel has died +[2024-03-07T16:33:08.660Z] - If client times out before receiving a message from the kernel, send RuntimeError +[2024-03-07T16:33:08.660Z] - Flush the IOPub channel +[2024-03-07T16:33:08.660Z] """ +[2024-03-07T16:33:08.660Z] if timeout is None: +[2024-03-07T16:33:08.660Z] timeout = float("inf") +[2024-03-07T16:33:08.660Z] abs_timeout = time.time() + timeout +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] from .manager import KernelManager +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] if not isinstance(self.parent, KernelManager): +[2024-03-07T16:33:08.660Z] # This Client was not created by a KernelManager, +[2024-03-07T16:33:08.660Z] # so wait for kernel to become responsive to heartbeats +[2024-03-07T16:33:08.660Z] # before checking for kernel_info reply +[2024-03-07T16:33:08.660Z] while not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.660Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.660Z] raise RuntimeError( +[2024-03-07T16:33:08.660Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout +[2024-03-07T16:33:08.660Z] ) +[2024-03-07T16:33:08.660Z] await asyncio.sleep(0.2) +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] # Wait for kernel info reply on shell channel +[2024-03-07T16:33:08.660Z] while True: +[2024-03-07T16:33:08.660Z] self.kernel_info() +[2024-03-07T16:33:08.660Z] try: +[2024-03-07T16:33:08.660Z] msg = await self.shell_channel.get_msg(timeout=1) +[2024-03-07T16:33:08.660Z] except Empty: +[2024-03-07T16:33:08.660Z] pass +[2024-03-07T16:33:08.660Z] else: +[2024-03-07T16:33:08.660Z] if msg["msg_type"] == "kernel_info_reply": +[2024-03-07T16:33:08.660Z] # Checking that IOPub is connected. If it is not connected, start over. +[2024-03-07T16:33:08.660Z] try: +[2024-03-07T16:33:08.660Z] await self.iopub_channel.get_msg(timeout=0.2) +[2024-03-07T16:33:08.660Z] except Empty: +[2024-03-07T16:33:08.660Z] pass +[2024-03-07T16:33:08.660Z] else: +[2024-03-07T16:33:08.660Z] self._handle_kernel_info_reply(msg) +[2024-03-07T16:33:08.660Z] break +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] if not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.660Z] raise RuntimeError("Kernel died before replying to kernel_info") +[2024-03-07T16:33:08.660Z] +[2024-03-07T16:33:08.660Z] # Check if current time is ready check time plus timeout +[2024-03-07T16:33:08.660Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.661Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) +[2024-03-07T16:33:08.661Z] E RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError +[2024-03-07T16:33:08.661Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 3 _ +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] cls = +[2024-03-07T16:33:08.661Z] func = . at 0x7f0ab86f15a0> +[2024-03-07T16:33:08.661Z] when = 'setup' +[2024-03-07T16:33:08.661Z] reraise = (, ) +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] @classmethod +[2024-03-07T16:33:08.661Z] def from_call( +[2024-03-07T16:33:08.661Z] cls, +[2024-03-07T16:33:08.661Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.661Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.661Z] reraise: Optional[ +[2024-03-07T16:33:08.661Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.661Z] ] = None, +[2024-03-07T16:33:08.661Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.661Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] :param func: +[2024-03-07T16:33:08.661Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.661Z] :param when: +[2024-03-07T16:33:08.661Z] The phase in which the function is called. +[2024-03-07T16:33:08.661Z] :param reraise: +[2024-03-07T16:33:08.661Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.661Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.661Z] """ +[2024-03-07T16:33:08.661Z] excinfo = None +[2024-03-07T16:33:08.661Z] start = timing.time() +[2024-03-07T16:33:08.661Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.661Z] try: +[2024-03-07T16:33:08.661Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.661Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.661Z] ) +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.661Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] self = +[2024-03-07T16:33:08.661Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.661Z] """Call the hook. +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.661Z] specification. +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.661Z] :ref:`calling`. +[2024-03-07T16:33:08.661Z] """ +[2024-03-07T16:33:08.661Z] assert ( +[2024-03-07T16:33:08.661Z] not self.is_historic() +[2024-03-07T16:33:08.661Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.661Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.661Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.661Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.661Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.661Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.661Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.661Z] methods = [>, >, ...] +[2024-03-07T16:33:08.661Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] def _hookexec( +[2024-03-07T16:33:08.661Z] self, +[2024-03-07T16:33:08.661Z] hook_name: str, +[2024-03-07T16:33:08.661Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.661Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.661Z] firstresult: bool, +[2024-03-07T16:33:08.661Z] ) -> object | list[object]: +[2024-03-07T16:33:08.661Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.661Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.661Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.661Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.661Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.661Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] def _multicall( +[2024-03-07T16:33:08.661Z] hook_name: str, +[2024-03-07T16:33:08.661Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.661Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.661Z] firstresult: bool, +[2024-03-07T16:33:08.661Z] ) -> object | list[object]: +[2024-03-07T16:33:08.661Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.661Z] result(s). +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.661Z] """ +[2024-03-07T16:33:08.661Z] __tracebackhide__ = True +[2024-03-07T16:33:08.661Z] results: list[object] = [] +[2024-03-07T16:33:08.661Z] exception = None +[2024-03-07T16:33:08.661Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.661Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.661Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.661Z] try: +[2024-03-07T16:33:08.661Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.661Z] try: +[2024-03-07T16:33:08.661Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.661Z] except KeyError: +[2024-03-07T16:33:08.661Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.661Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.661Z] raise HookCallError( +[2024-03-07T16:33:08.661Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.661Z] ) +[2024-03-07T16:33:08.661Z] +[2024-03-07T16:33:08.661Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.661Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.661Z] try: +[2024-03-07T16:33:08.661Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.661Z] # which is the desired response. +[2024-03-07T16:33:08.661Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.661Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.661Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.661Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.661Z] except StopIteration: +[2024-03-07T16:33:08.661Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.661Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.661Z] try: +[2024-03-07T16:33:08.661Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.661Z] # which is the desired response. +[2024-03-07T16:33:08.661Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.661Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.661Z] next(function_gen) # first yield +[2024-03-07T16:33:08.661Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.661Z] except StopIteration: +[2024-03-07T16:33:08.661Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.661Z] else: +[2024-03-07T16:33:08.661Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.661Z] if res is not None: +[2024-03-07T16:33:08.661Z] results.append(res) +[2024-03-07T16:33:08.661Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.661Z] break +[2024-03-07T16:33:08.661Z] except BaseException as exc: +[2024-03-07T16:33:08.661Z] exception = exc +[2024-03-07T16:33:08.661Z] finally: +[2024-03-07T16:33:08.661Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.662Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.662Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.662Z] result = results[0] if results else None +[2024-03-07T16:33:08.662Z] else: +[2024-03-07T16:33:08.662Z] result = results +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.662Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.662Z] try: +[2024-03-07T16:33:08.662Z] if exception is not None: +[2024-03-07T16:33:08.662Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.662Z] else: +[2024-03-07T16:33:08.662Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.662Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.662Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.662Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.662Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.662Z] except StopIteration as si: +[2024-03-07T16:33:08.662Z] result = si.value +[2024-03-07T16:33:08.662Z] exception = None +[2024-03-07T16:33:08.662Z] continue +[2024-03-07T16:33:08.662Z] except BaseException as e: +[2024-03-07T16:33:08.662Z] exception = e +[2024-03-07T16:33:08.662Z] continue +[2024-03-07T16:33:08.662Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] if exception is not None: +[2024-03-07T16:33:08.662Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.662Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.662Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.662Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] def _multicall( +[2024-03-07T16:33:08.662Z] hook_name: str, +[2024-03-07T16:33:08.662Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.662Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.662Z] firstresult: bool, +[2024-03-07T16:33:08.662Z] ) -> object | list[object]: +[2024-03-07T16:33:08.662Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.662Z] result(s). +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.662Z] """ +[2024-03-07T16:33:08.662Z] __tracebackhide__ = True +[2024-03-07T16:33:08.662Z] results: list[object] = [] +[2024-03-07T16:33:08.662Z] exception = None +[2024-03-07T16:33:08.662Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.662Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.662Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.662Z] try: +[2024-03-07T16:33:08.662Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.662Z] try: +[2024-03-07T16:33:08.662Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.662Z] except KeyError: +[2024-03-07T16:33:08.662Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.662Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.662Z] raise HookCallError( +[2024-03-07T16:33:08.662Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.662Z] ) +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.662Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.662Z] try: +[2024-03-07T16:33:08.662Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.662Z] # which is the desired response. +[2024-03-07T16:33:08.662Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.662Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.662Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.662Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.662Z] except StopIteration: +[2024-03-07T16:33:08.662Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.662Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.662Z] try: +[2024-03-07T16:33:08.662Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.662Z] # which is the desired response. +[2024-03-07T16:33:08.662Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.662Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.662Z] next(function_gen) # first yield +[2024-03-07T16:33:08.662Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.662Z] except StopIteration: +[2024-03-07T16:33:08.662Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.662Z] else: +[2024-03-07T16:33:08.662Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.662Z] if res is not None: +[2024-03-07T16:33:08.662Z] results.append(res) +[2024-03-07T16:33:08.662Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.662Z] break +[2024-03-07T16:33:08.662Z] except BaseException as exc: +[2024-03-07T16:33:08.662Z] exception = exc +[2024-03-07T16:33:08.662Z] finally: +[2024-03-07T16:33:08.662Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.662Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.662Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.662Z] result = results[0] if results else None +[2024-03-07T16:33:08.662Z] else: +[2024-03-07T16:33:08.662Z] result = results +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.662Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.662Z] try: +[2024-03-07T16:33:08.662Z] if exception is not None: +[2024-03-07T16:33:08.662Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.662Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.662Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.662Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.662Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.662Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.662Z] try: +[2024-03-07T16:33:08.662Z] > yield +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.662Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.662Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.662Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.662Z] +[2024-03-07T16:33:08.662Z] def _multicall( +[2024-03-07T16:33:08.662Z] hook_name: str, +[2024-03-07T16:33:08.662Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.662Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.662Z] firstresult: bool, +[2024-03-07T16:33:08.662Z] ) -> object | list[object]: +[2024-03-07T16:33:08.663Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.663Z] result(s). +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.663Z] """ +[2024-03-07T16:33:08.663Z] __tracebackhide__ = True +[2024-03-07T16:33:08.663Z] results: list[object] = [] +[2024-03-07T16:33:08.663Z] exception = None +[2024-03-07T16:33:08.663Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.663Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.663Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.663Z] try: +[2024-03-07T16:33:08.663Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.663Z] try: +[2024-03-07T16:33:08.663Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.663Z] except KeyError: +[2024-03-07T16:33:08.663Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.663Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.663Z] raise HookCallError( +[2024-03-07T16:33:08.663Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.663Z] ) +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.663Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.663Z] try: +[2024-03-07T16:33:08.663Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.663Z] # which is the desired response. +[2024-03-07T16:33:08.663Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.663Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.663Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.663Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.663Z] except StopIteration: +[2024-03-07T16:33:08.663Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.663Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.663Z] try: +[2024-03-07T16:33:08.663Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.663Z] # which is the desired response. +[2024-03-07T16:33:08.663Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.663Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.663Z] next(function_gen) # first yield +[2024-03-07T16:33:08.663Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.663Z] except StopIteration: +[2024-03-07T16:33:08.663Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.663Z] else: +[2024-03-07T16:33:08.663Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.663Z] if res is not None: +[2024-03-07T16:33:08.663Z] results.append(res) +[2024-03-07T16:33:08.663Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.663Z] break +[2024-03-07T16:33:08.663Z] except BaseException as exc: +[2024-03-07T16:33:08.663Z] exception = exc +[2024-03-07T16:33:08.663Z] finally: +[2024-03-07T16:33:08.663Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.663Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.663Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.663Z] result = results[0] if results else None +[2024-03-07T16:33:08.663Z] else: +[2024-03-07T16:33:08.663Z] result = results +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.663Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.663Z] try: +[2024-03-07T16:33:08.663Z] if exception is not None: +[2024-03-07T16:33:08.663Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.663Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.663Z] item = +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.663Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.663Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.663Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.663Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.663Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.663Z] item = , when = 'setup' +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.663Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.663Z] with catching_logs( +[2024-03-07T16:33:08.663Z] self.caplog_handler, +[2024-03-07T16:33:08.663Z] level=self.log_level, +[2024-03-07T16:33:08.663Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.663Z] self.report_handler, +[2024-03-07T16:33:08.663Z] level=self.log_level, +[2024-03-07T16:33:08.663Z] ) as report_handler: +[2024-03-07T16:33:08.663Z] caplog_handler.reset() +[2024-03-07T16:33:08.663Z] report_handler.reset() +[2024-03-07T16:33:08.663Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.663Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] try: +[2024-03-07T16:33:08.663Z] > yield +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.663Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.663Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.663Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] def _multicall( +[2024-03-07T16:33:08.663Z] hook_name: str, +[2024-03-07T16:33:08.663Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.663Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.663Z] firstresult: bool, +[2024-03-07T16:33:08.663Z] ) -> object | list[object]: +[2024-03-07T16:33:08.663Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.663Z] result(s). +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.663Z] """ +[2024-03-07T16:33:08.663Z] __tracebackhide__ = True +[2024-03-07T16:33:08.663Z] results: list[object] = [] +[2024-03-07T16:33:08.663Z] exception = None +[2024-03-07T16:33:08.663Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.663Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.663Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.663Z] try: +[2024-03-07T16:33:08.663Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.663Z] try: +[2024-03-07T16:33:08.663Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.663Z] except KeyError: +[2024-03-07T16:33:08.663Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.663Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.663Z] raise HookCallError( +[2024-03-07T16:33:08.663Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.663Z] ) +[2024-03-07T16:33:08.663Z] +[2024-03-07T16:33:08.663Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.663Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.663Z] try: +[2024-03-07T16:33:08.663Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.663Z] # which is the desired response. +[2024-03-07T16:33:08.663Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.664Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.664Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.664Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.664Z] except StopIteration: +[2024-03-07T16:33:08.664Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.664Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.664Z] try: +[2024-03-07T16:33:08.664Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.664Z] # which is the desired response. +[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.664Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.664Z] next(function_gen) # first yield +[2024-03-07T16:33:08.664Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.664Z] except StopIteration: +[2024-03-07T16:33:08.664Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.664Z] else: +[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.664Z] if res is not None: +[2024-03-07T16:33:08.664Z] results.append(res) +[2024-03-07T16:33:08.664Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.664Z] break +[2024-03-07T16:33:08.664Z] except BaseException as exc: +[2024-03-07T16:33:08.664Z] exception = exc +[2024-03-07T16:33:08.664Z] finally: +[2024-03-07T16:33:08.664Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.664Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.664Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.664Z] result = results[0] if results else None +[2024-03-07T16:33:08.664Z] else: +[2024-03-07T16:33:08.664Z] result = results +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.664Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.664Z] try: +[2024-03-07T16:33:08.664Z] if exception is not None: +[2024-03-07T16:33:08.664Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.664Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.664Z] item = +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.664Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.664Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.664Z] > return (yield) +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.664Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.664Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.664Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] def _multicall( +[2024-03-07T16:33:08.664Z] hook_name: str, +[2024-03-07T16:33:08.664Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.664Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.664Z] firstresult: bool, +[2024-03-07T16:33:08.664Z] ) -> object | list[object]: +[2024-03-07T16:33:08.664Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.664Z] result(s). +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.664Z] """ +[2024-03-07T16:33:08.664Z] __tracebackhide__ = True +[2024-03-07T16:33:08.664Z] results: list[object] = [] +[2024-03-07T16:33:08.664Z] exception = None +[2024-03-07T16:33:08.664Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.664Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.664Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.664Z] try: +[2024-03-07T16:33:08.664Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.664Z] try: +[2024-03-07T16:33:08.664Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.664Z] except KeyError: +[2024-03-07T16:33:08.664Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.664Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.664Z] raise HookCallError( +[2024-03-07T16:33:08.664Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.664Z] ) +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.664Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.664Z] try: +[2024-03-07T16:33:08.664Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.664Z] # which is the desired response. +[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.664Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.664Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.664Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.664Z] except StopIteration: +[2024-03-07T16:33:08.664Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.664Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.664Z] try: +[2024-03-07T16:33:08.664Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.664Z] # which is the desired response. +[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.664Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.664Z] next(function_gen) # first yield +[2024-03-07T16:33:08.664Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.664Z] except StopIteration: +[2024-03-07T16:33:08.664Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.664Z] else: +[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.664Z] if res is not None: +[2024-03-07T16:33:08.664Z] results.append(res) +[2024-03-07T16:33:08.664Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.664Z] break +[2024-03-07T16:33:08.664Z] except BaseException as exc: +[2024-03-07T16:33:08.664Z] exception = exc +[2024-03-07T16:33:08.664Z] finally: +[2024-03-07T16:33:08.664Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.664Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.664Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.664Z] result = results[0] if results else None +[2024-03-07T16:33:08.664Z] else: +[2024-03-07T16:33:08.664Z] result = results +[2024-03-07T16:33:08.664Z] +[2024-03-07T16:33:08.664Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.664Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.664Z] try: +[2024-03-07T16:33:08.665Z] if exception is not None: +[2024-03-07T16:33:08.665Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.665Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.665Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.665Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.665Z] try: +[2024-03-07T16:33:08.665Z] > yield +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.665Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.665Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] def _multicall( +[2024-03-07T16:33:08.665Z] hook_name: str, +[2024-03-07T16:33:08.665Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.665Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.665Z] firstresult: bool, +[2024-03-07T16:33:08.665Z] ) -> object | list[object]: +[2024-03-07T16:33:08.665Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.665Z] result(s). +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.665Z] """ +[2024-03-07T16:33:08.665Z] __tracebackhide__ = True +[2024-03-07T16:33:08.665Z] results: list[object] = [] +[2024-03-07T16:33:08.665Z] exception = None +[2024-03-07T16:33:08.665Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.665Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.665Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.665Z] try: +[2024-03-07T16:33:08.665Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.665Z] try: +[2024-03-07T16:33:08.665Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.665Z] except KeyError: +[2024-03-07T16:33:08.665Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.665Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.665Z] raise HookCallError( +[2024-03-07T16:33:08.665Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.665Z] ) +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.665Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.665Z] try: +[2024-03-07T16:33:08.665Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.665Z] # which is the desired response. +[2024-03-07T16:33:08.665Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.665Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.665Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.665Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.665Z] except StopIteration: +[2024-03-07T16:33:08.665Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.665Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.665Z] try: +[2024-03-07T16:33:08.665Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.665Z] # which is the desired response. +[2024-03-07T16:33:08.665Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.665Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.665Z] next(function_gen) # first yield +[2024-03-07T16:33:08.665Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.665Z] except StopIteration: +[2024-03-07T16:33:08.665Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.665Z] else: +[2024-03-07T16:33:08.665Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] item = +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.665Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.665Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.665Z] item = +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.665Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.665Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.665Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.665Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.665Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.665Z] if exc: +[2024-03-07T16:33:08.665Z] > raise exc +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] cls = +[2024-03-07T16:33:08.665Z] func = . at 0x7f0abbb08550> +[2024-03-07T16:33:08.665Z] when = 'setup' +[2024-03-07T16:33:08.665Z] reraise = (, ) +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] @classmethod +[2024-03-07T16:33:08.665Z] def from_call( +[2024-03-07T16:33:08.665Z] cls, +[2024-03-07T16:33:08.665Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.665Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.665Z] reraise: Optional[ +[2024-03-07T16:33:08.665Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.665Z] ] = None, +[2024-03-07T16:33:08.665Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.665Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] :param func: +[2024-03-07T16:33:08.665Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.665Z] :param when: +[2024-03-07T16:33:08.665Z] The phase in which the function is called. +[2024-03-07T16:33:08.665Z] :param reraise: +[2024-03-07T16:33:08.665Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.665Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.665Z] """ +[2024-03-07T16:33:08.665Z] excinfo = None +[2024-03-07T16:33:08.665Z] start = timing.time() +[2024-03-07T16:33:08.665Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.665Z] try: +[2024-03-07T16:33:08.665Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.665Z] ) +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] self = +[2024-03-07T16:33:08.665Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.665Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.665Z] """Call the hook. +[2024-03-07T16:33:08.665Z] +[2024-03-07T16:33:08.666Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.666Z] specification. +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.666Z] :ref:`calling`. +[2024-03-07T16:33:08.666Z] """ +[2024-03-07T16:33:08.666Z] assert ( +[2024-03-07T16:33:08.666Z] not self.is_historic() +[2024-03-07T16:33:08.666Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.666Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.666Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.666Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.666Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.666Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.666Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.666Z] methods = [>, >, ...] +[2024-03-07T16:33:08.666Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] def _hookexec( +[2024-03-07T16:33:08.666Z] self, +[2024-03-07T16:33:08.666Z] hook_name: str, +[2024-03-07T16:33:08.666Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.666Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.666Z] firstresult: bool, +[2024-03-07T16:33:08.666Z] ) -> object | list[object]: +[2024-03-07T16:33:08.666Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.666Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.666Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.666Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.666Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.666Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] def _multicall( +[2024-03-07T16:33:08.666Z] hook_name: str, +[2024-03-07T16:33:08.666Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.666Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.666Z] firstresult: bool, +[2024-03-07T16:33:08.666Z] ) -> object | list[object]: +[2024-03-07T16:33:08.666Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.666Z] result(s). +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.666Z] """ +[2024-03-07T16:33:08.666Z] __tracebackhide__ = True +[2024-03-07T16:33:08.666Z] results: list[object] = [] +[2024-03-07T16:33:08.666Z] exception = None +[2024-03-07T16:33:08.666Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.666Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.666Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.666Z] try: +[2024-03-07T16:33:08.666Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.666Z] try: +[2024-03-07T16:33:08.666Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.666Z] except KeyError: +[2024-03-07T16:33:08.666Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.666Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.666Z] raise HookCallError( +[2024-03-07T16:33:08.666Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.666Z] ) +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.666Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.666Z] try: +[2024-03-07T16:33:08.666Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.666Z] # which is the desired response. +[2024-03-07T16:33:08.666Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.666Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.666Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.666Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.666Z] except StopIteration: +[2024-03-07T16:33:08.666Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.666Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.666Z] try: +[2024-03-07T16:33:08.666Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.666Z] # which is the desired response. +[2024-03-07T16:33:08.666Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.666Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.666Z] next(function_gen) # first yield +[2024-03-07T16:33:08.666Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.666Z] except StopIteration: +[2024-03-07T16:33:08.666Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.666Z] else: +[2024-03-07T16:33:08.666Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.666Z] if res is not None: +[2024-03-07T16:33:08.666Z] results.append(res) +[2024-03-07T16:33:08.666Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.666Z] break +[2024-03-07T16:33:08.666Z] except BaseException as exc: +[2024-03-07T16:33:08.666Z] exception = exc +[2024-03-07T16:33:08.666Z] finally: +[2024-03-07T16:33:08.666Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.666Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.666Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.666Z] result = results[0] if results else None +[2024-03-07T16:33:08.666Z] else: +[2024-03-07T16:33:08.666Z] result = results +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.666Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.666Z] try: +[2024-03-07T16:33:08.666Z] if exception is not None: +[2024-03-07T16:33:08.666Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.666Z] else: +[2024-03-07T16:33:08.666Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.666Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.666Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.666Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.666Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.666Z] except StopIteration as si: +[2024-03-07T16:33:08.666Z] result = si.value +[2024-03-07T16:33:08.666Z] exception = None +[2024-03-07T16:33:08.666Z] continue +[2024-03-07T16:33:08.666Z] except BaseException as e: +[2024-03-07T16:33:08.666Z] exception = e +[2024-03-07T16:33:08.666Z] continue +[2024-03-07T16:33:08.666Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] if exception is not None: +[2024-03-07T16:33:08.666Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.666Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.666Z] +[2024-03-07T16:33:08.666Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.667Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.667Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] def _multicall( +[2024-03-07T16:33:08.667Z] hook_name: str, +[2024-03-07T16:33:08.667Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.667Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.667Z] firstresult: bool, +[2024-03-07T16:33:08.667Z] ) -> object | list[object]: +[2024-03-07T16:33:08.667Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.667Z] result(s). +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.667Z] """ +[2024-03-07T16:33:08.667Z] __tracebackhide__ = True +[2024-03-07T16:33:08.667Z] results: list[object] = [] +[2024-03-07T16:33:08.667Z] exception = None +[2024-03-07T16:33:08.667Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.667Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.667Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.667Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.667Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.667Z] except KeyError: +[2024-03-07T16:33:08.667Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.667Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.667Z] raise HookCallError( +[2024-03-07T16:33:08.667Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.667Z] ) +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.667Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.667Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.667Z] # which is the desired response. +[2024-03-07T16:33:08.667Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.667Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.667Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.667Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.667Z] except StopIteration: +[2024-03-07T16:33:08.667Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.667Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.667Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.667Z] # which is the desired response. +[2024-03-07T16:33:08.667Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.667Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.667Z] next(function_gen) # first yield +[2024-03-07T16:33:08.667Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.667Z] except StopIteration: +[2024-03-07T16:33:08.667Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.667Z] else: +[2024-03-07T16:33:08.667Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.667Z] if res is not None: +[2024-03-07T16:33:08.667Z] results.append(res) +[2024-03-07T16:33:08.667Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.667Z] break +[2024-03-07T16:33:08.667Z] except BaseException as exc: +[2024-03-07T16:33:08.667Z] exception = exc +[2024-03-07T16:33:08.667Z] finally: +[2024-03-07T16:33:08.667Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.667Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.667Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.667Z] result = results[0] if results else None +[2024-03-07T16:33:08.667Z] else: +[2024-03-07T16:33:08.667Z] result = results +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.667Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.667Z] if exception is not None: +[2024-03-07T16:33:08.667Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.667Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.667Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.667Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.667Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.667Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.667Z] > yield +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.667Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.667Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.667Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] def _multicall( +[2024-03-07T16:33:08.667Z] hook_name: str, +[2024-03-07T16:33:08.667Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.667Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.667Z] firstresult: bool, +[2024-03-07T16:33:08.667Z] ) -> object | list[object]: +[2024-03-07T16:33:08.667Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.667Z] result(s). +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.667Z] """ +[2024-03-07T16:33:08.667Z] __tracebackhide__ = True +[2024-03-07T16:33:08.667Z] results: list[object] = [] +[2024-03-07T16:33:08.667Z] exception = None +[2024-03-07T16:33:08.667Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.667Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.667Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.667Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.667Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.667Z] except KeyError: +[2024-03-07T16:33:08.667Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.667Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.667Z] raise HookCallError( +[2024-03-07T16:33:08.667Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.667Z] ) +[2024-03-07T16:33:08.667Z] +[2024-03-07T16:33:08.667Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.667Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.667Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.667Z] # which is the desired response. +[2024-03-07T16:33:08.667Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.667Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.667Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.667Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.667Z] except StopIteration: +[2024-03-07T16:33:08.667Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.667Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.667Z] try: +[2024-03-07T16:33:08.668Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.668Z] # which is the desired response. +[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.668Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.668Z] next(function_gen) # first yield +[2024-03-07T16:33:08.668Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.668Z] except StopIteration: +[2024-03-07T16:33:08.668Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.668Z] else: +[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.668Z] if res is not None: +[2024-03-07T16:33:08.668Z] results.append(res) +[2024-03-07T16:33:08.668Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.668Z] break +[2024-03-07T16:33:08.668Z] except BaseException as exc: +[2024-03-07T16:33:08.668Z] exception = exc +[2024-03-07T16:33:08.668Z] finally: +[2024-03-07T16:33:08.668Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.668Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.668Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.668Z] result = results[0] if results else None +[2024-03-07T16:33:08.668Z] else: +[2024-03-07T16:33:08.668Z] result = results +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.668Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.668Z] try: +[2024-03-07T16:33:08.668Z] if exception is not None: +[2024-03-07T16:33:08.668Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.668Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.668Z] item = +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.668Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.668Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.668Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.668Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.668Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.668Z] item = , when = 'setup' +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.668Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.668Z] with catching_logs( +[2024-03-07T16:33:08.668Z] self.caplog_handler, +[2024-03-07T16:33:08.668Z] level=self.log_level, +[2024-03-07T16:33:08.668Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.668Z] self.report_handler, +[2024-03-07T16:33:08.668Z] level=self.log_level, +[2024-03-07T16:33:08.668Z] ) as report_handler: +[2024-03-07T16:33:08.668Z] caplog_handler.reset() +[2024-03-07T16:33:08.668Z] report_handler.reset() +[2024-03-07T16:33:08.668Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.668Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] try: +[2024-03-07T16:33:08.668Z] > yield +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.668Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.668Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.668Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] def _multicall( +[2024-03-07T16:33:08.668Z] hook_name: str, +[2024-03-07T16:33:08.668Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.668Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.668Z] firstresult: bool, +[2024-03-07T16:33:08.668Z] ) -> object | list[object]: +[2024-03-07T16:33:08.668Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.668Z] result(s). +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.668Z] """ +[2024-03-07T16:33:08.668Z] __tracebackhide__ = True +[2024-03-07T16:33:08.668Z] results: list[object] = [] +[2024-03-07T16:33:08.668Z] exception = None +[2024-03-07T16:33:08.668Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.668Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.668Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.668Z] try: +[2024-03-07T16:33:08.668Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.668Z] try: +[2024-03-07T16:33:08.668Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.668Z] except KeyError: +[2024-03-07T16:33:08.668Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.668Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.668Z] raise HookCallError( +[2024-03-07T16:33:08.668Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.668Z] ) +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.668Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.668Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.668Z] try: +[2024-03-07T16:33:08.668Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.668Z] # which is the desired response. +[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.668Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.668Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.668Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.668Z] except StopIteration: +[2024-03-07T16:33:08.668Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.668Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.668Z] try: +[2024-03-07T16:33:08.668Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.668Z] # which is the desired response. +[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.668Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.668Z] next(function_gen) # first yield +[2024-03-07T16:33:08.668Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.668Z] except StopIteration: +[2024-03-07T16:33:08.668Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.668Z] else: +[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.668Z] if res is not None: +[2024-03-07T16:33:08.668Z] results.append(res) +[2024-03-07T16:33:08.668Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.668Z] break +[2024-03-07T16:33:08.668Z] except BaseException as exc: +[2024-03-07T16:33:08.668Z] exception = exc +[2024-03-07T16:33:08.668Z] finally: +[2024-03-07T16:33:08.668Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.668Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.668Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.668Z] result = results[0] if results else None +[2024-03-07T16:33:08.668Z] else: +[2024-03-07T16:33:08.668Z] result = results +[2024-03-07T16:33:08.668Z] +[2024-03-07T16:33:08.669Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.669Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.669Z] try: +[2024-03-07T16:33:08.669Z] if exception is not None: +[2024-03-07T16:33:08.669Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.669Z] item = +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.669Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.669Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.669Z] > return (yield) +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.669Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.669Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] def _multicall( +[2024-03-07T16:33:08.669Z] hook_name: str, +[2024-03-07T16:33:08.669Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.669Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.669Z] firstresult: bool, +[2024-03-07T16:33:08.669Z] ) -> object | list[object]: +[2024-03-07T16:33:08.669Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.669Z] result(s). +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.669Z] """ +[2024-03-07T16:33:08.669Z] __tracebackhide__ = True +[2024-03-07T16:33:08.669Z] results: list[object] = [] +[2024-03-07T16:33:08.669Z] exception = None +[2024-03-07T16:33:08.669Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.669Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.669Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.669Z] try: +[2024-03-07T16:33:08.669Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.669Z] try: +[2024-03-07T16:33:08.669Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.669Z] except KeyError: +[2024-03-07T16:33:08.669Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.669Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.669Z] raise HookCallError( +[2024-03-07T16:33:08.669Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.669Z] ) +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.669Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.669Z] try: +[2024-03-07T16:33:08.669Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.669Z] # which is the desired response. +[2024-03-07T16:33:08.669Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.669Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.669Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.669Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.669Z] except StopIteration: +[2024-03-07T16:33:08.669Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.669Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.669Z] try: +[2024-03-07T16:33:08.669Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.669Z] # which is the desired response. +[2024-03-07T16:33:08.669Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.669Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.669Z] next(function_gen) # first yield +[2024-03-07T16:33:08.669Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.669Z] except StopIteration: +[2024-03-07T16:33:08.669Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.669Z] else: +[2024-03-07T16:33:08.669Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.669Z] if res is not None: +[2024-03-07T16:33:08.669Z] results.append(res) +[2024-03-07T16:33:08.669Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.669Z] break +[2024-03-07T16:33:08.669Z] except BaseException as exc: +[2024-03-07T16:33:08.669Z] exception = exc +[2024-03-07T16:33:08.669Z] finally: +[2024-03-07T16:33:08.669Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.669Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.669Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.669Z] result = results[0] if results else None +[2024-03-07T16:33:08.669Z] else: +[2024-03-07T16:33:08.669Z] result = results +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.669Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.669Z] try: +[2024-03-07T16:33:08.669Z] if exception is not None: +[2024-03-07T16:33:08.669Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.669Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.669Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.669Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.669Z] try: +[2024-03-07T16:33:08.669Z] > yield +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.669Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.669Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] def _multicall( +[2024-03-07T16:33:08.669Z] hook_name: str, +[2024-03-07T16:33:08.669Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.669Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.669Z] firstresult: bool, +[2024-03-07T16:33:08.669Z] ) -> object | list[object]: +[2024-03-07T16:33:08.669Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.669Z] result(s). +[2024-03-07T16:33:08.669Z] +[2024-03-07T16:33:08.669Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.669Z] """ +[2024-03-07T16:33:08.669Z] __tracebackhide__ = True +[2024-03-07T16:33:08.669Z] results: list[object] = [] +[2024-03-07T16:33:08.669Z] exception = None +[2024-03-07T16:33:08.669Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.669Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.669Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.669Z] try: +[2024-03-07T16:33:08.669Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.669Z] try: +[2024-03-07T16:33:08.669Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.669Z] except KeyError: +[2024-03-07T16:33:08.669Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.669Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.669Z] raise HookCallError( +[2024-03-07T16:33:08.670Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.670Z] ) +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.670Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.670Z] try: +[2024-03-07T16:33:08.670Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.670Z] # which is the desired response. +[2024-03-07T16:33:08.670Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.670Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.670Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.670Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.670Z] except StopIteration: +[2024-03-07T16:33:08.670Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.670Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.670Z] try: +[2024-03-07T16:33:08.670Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.670Z] # which is the desired response. +[2024-03-07T16:33:08.670Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.670Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.670Z] next(function_gen) # first yield +[2024-03-07T16:33:08.670Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.670Z] except StopIteration: +[2024-03-07T16:33:08.670Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.670Z] else: +[2024-03-07T16:33:08.670Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] item = +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.670Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.670Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.670Z] item = +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.670Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.670Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.670Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.670Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.670Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.670Z] if exc: +[2024-03-07T16:33:08.670Z] > raise exc +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] cls = +[2024-03-07T16:33:08.670Z] func = . at 0x7f0abc051900> +[2024-03-07T16:33:08.670Z] when = 'setup' +[2024-03-07T16:33:08.670Z] reraise = (, ) +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] @classmethod +[2024-03-07T16:33:08.670Z] def from_call( +[2024-03-07T16:33:08.670Z] cls, +[2024-03-07T16:33:08.670Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.670Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.670Z] reraise: Optional[ +[2024-03-07T16:33:08.670Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.670Z] ] = None, +[2024-03-07T16:33:08.670Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.670Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] :param func: +[2024-03-07T16:33:08.670Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.670Z] :param when: +[2024-03-07T16:33:08.670Z] The phase in which the function is called. +[2024-03-07T16:33:08.670Z] :param reraise: +[2024-03-07T16:33:08.670Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.670Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.670Z] """ +[2024-03-07T16:33:08.670Z] excinfo = None +[2024-03-07T16:33:08.670Z] start = timing.time() +[2024-03-07T16:33:08.670Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.670Z] try: +[2024-03-07T16:33:08.670Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.670Z] ) +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] self = +[2024-03-07T16:33:08.670Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.670Z] """Call the hook. +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.670Z] specification. +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.670Z] :ref:`calling`. +[2024-03-07T16:33:08.670Z] """ +[2024-03-07T16:33:08.670Z] assert ( +[2024-03-07T16:33:08.670Z] not self.is_historic() +[2024-03-07T16:33:08.670Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.670Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.670Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.670Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.670Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.670Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.670Z] methods = [>, >, ...] +[2024-03-07T16:33:08.670Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] def _hookexec( +[2024-03-07T16:33:08.670Z] self, +[2024-03-07T16:33:08.670Z] hook_name: str, +[2024-03-07T16:33:08.670Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.670Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.670Z] firstresult: bool, +[2024-03-07T16:33:08.670Z] ) -> object | list[object]: +[2024-03-07T16:33:08.670Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.670Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.670Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.670Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.670Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.670Z] +[2024-03-07T16:33:08.670Z] def _multicall( +[2024-03-07T16:33:08.670Z] hook_name: str, +[2024-03-07T16:33:08.670Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.670Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.670Z] firstresult: bool, +[2024-03-07T16:33:08.671Z] ) -> object | list[object]: +[2024-03-07T16:33:08.671Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.671Z] result(s). +[2024-03-07T16:33:08.671Z] +[2024-03-07T16:33:08.671Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.671Z] """ +[2024-03-07T16:33:08.671Z] __tracebackhide__ = True +[2024-03-07T16:33:08.671Z] results: list[object] = [] +[2024-03-07T16:33:08.671Z] exception = None +[2024-03-07T16:33:08.671Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.671Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.671Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.671Z] try: +[2024-03-07T16:33:08.671Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.671Z] try: +[2024-03-07T16:33:08.671Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.671Z] except KeyError: +[2024-03-07T16:33:08.671Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.671Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.671Z] raise HookCallError( +[2024-03-07T16:33:08.671Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.671Z] ) +[2024-03-07T16:33:08.671Z] +[2024-03-07T16:33:08.671Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.671Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.671Z] try: +[2024-03-07T16:33:08.671Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.671Z] # which is the desired response. +[2024-03-07T16:33:08.671Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.671Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.671Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.671Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.671Z] except StopIteration: +[2024-03-07T16:33:08.671Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.671Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.671Z] try: +[2024-03-07T16:33:08.671Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.671Z] # which is the desired response. +[2024-03-07T16:33:08.671Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.671Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.671Z] next(function_gen) # first yield +[2024-03-07T16:33:08.671Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.671Z] except StopIteration: +[2024-03-07T16:33:08.671Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.671Z] else: +[2024-03-07T16:33:08.671Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.671Z] if res is not None: +[2024-03-07T16:33:08.671Z] results.append(res) +[2024-03-07T16:33:08.671Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.671Z] break +[2024-03-07T16:33:08.671Z] except BaseException as exc: +[2024-03-07T16:33:08.671Z] exception = exc +[2024-03-07T16:33:08.671Z] finally: +[2024-03-07T16:33:08.671Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.671Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.671Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.671Z] result = results[0] if results else None +[2024-03-07T16:33:08.671Z] else: +[2024-03-07T16:33:08.671Z] result = results +[2024-03-07T16:33:08.671Z] +[2024-03-07T16:33:08.671Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.671Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.671Z] try: +[2024-03-07T16:33:08.671Z] if exception is not None: +[2024-03-07T16:33:08.671Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.671Z] else: +[2024-03-07T16:33:08.671Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.671Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.671Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.671Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.671Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.671Z] except StopIteration as si: +[2024-03-07T16:33:08.671Z] result = si.value +[2024-03-07T16:33:08.671Z] exception = None +[2024-03-07T16:33:08.671Z] continue +[2024-03-07T16:33:08.671Z] except BaseException as e: +[2024-03-07T16:33:08.671Z] exception = e +[2024-03-07T16:33:08.671Z] continue +[2024-03-07T16:33:08.671Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.671Z] +[2024-03-07T16:33:08.671Z] if exception is not None: +[2024-03-07T16:33:08.671Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.671Z] +[2024-03-07T16:33:08.671Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.671Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.671Z] +[2024-03-07T16:33:08.671Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.671Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.671Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.671Z] +[2024-03-07T16:33:08.671Z] def _multicall( +[2024-03-07T16:33:08.671Z] hook_name: str, +[2024-03-07T16:33:08.671Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.671Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.671Z] firstresult: bool, +[2024-03-07T16:33:08.671Z] ) -> object | list[object]: +[2024-03-07T16:33:08.671Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.671Z] result(s). +[2024-03-07T16:33:08.671Z] +[2024-03-07T16:33:08.671Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.671Z] """ +[2024-03-07T16:33:08.671Z] __tracebackhide__ = True +[2024-03-07T16:33:08.671Z] results: list[object] = [] +[2024-03-07T16:33:08.671Z] exception = None +[2024-03-07T16:33:08.671Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.671Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.671Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.671Z] try: +[2024-03-07T16:33:08.671Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.671Z] try: +[2024-03-07T16:33:08.671Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.671Z] except KeyError: +[2024-03-07T16:33:08.671Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.671Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.671Z] raise HookCallError( +[2024-03-07T16:33:08.671Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.671Z] ) +[2024-03-07T16:33:08.671Z] +[2024-03-07T16:33:08.671Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.671Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.671Z] try: +[2024-03-07T16:33:08.671Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.671Z] # which is the desired response. +[2024-03-07T16:33:08.671Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.671Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.671Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.671Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.671Z] except StopIteration: +[2024-03-07T16:33:08.671Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.672Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.672Z] try: +[2024-03-07T16:33:08.672Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.672Z] # which is the desired response. +[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.672Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.672Z] next(function_gen) # first yield +[2024-03-07T16:33:08.672Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.672Z] except StopIteration: +[2024-03-07T16:33:08.672Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.672Z] else: +[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.672Z] if res is not None: +[2024-03-07T16:33:08.672Z] results.append(res) +[2024-03-07T16:33:08.672Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.672Z] break +[2024-03-07T16:33:08.672Z] except BaseException as exc: +[2024-03-07T16:33:08.672Z] exception = exc +[2024-03-07T16:33:08.672Z] finally: +[2024-03-07T16:33:08.672Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.672Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.672Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.672Z] result = results[0] if results else None +[2024-03-07T16:33:08.672Z] else: +[2024-03-07T16:33:08.672Z] result = results +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.672Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.672Z] try: +[2024-03-07T16:33:08.672Z] if exception is not None: +[2024-03-07T16:33:08.672Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.672Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.672Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.672Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.672Z] try: +[2024-03-07T16:33:08.672Z] > yield +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.672Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.672Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] def _multicall( +[2024-03-07T16:33:08.672Z] hook_name: str, +[2024-03-07T16:33:08.672Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.672Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.672Z] firstresult: bool, +[2024-03-07T16:33:08.672Z] ) -> object | list[object]: +[2024-03-07T16:33:08.672Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.672Z] result(s). +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.672Z] """ +[2024-03-07T16:33:08.672Z] __tracebackhide__ = True +[2024-03-07T16:33:08.672Z] results: list[object] = [] +[2024-03-07T16:33:08.672Z] exception = None +[2024-03-07T16:33:08.672Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.672Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.672Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.672Z] try: +[2024-03-07T16:33:08.672Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.672Z] try: +[2024-03-07T16:33:08.672Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.672Z] except KeyError: +[2024-03-07T16:33:08.672Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.672Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.672Z] raise HookCallError( +[2024-03-07T16:33:08.672Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.672Z] ) +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.672Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.672Z] try: +[2024-03-07T16:33:08.672Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.672Z] # which is the desired response. +[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.672Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.672Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.672Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.672Z] except StopIteration: +[2024-03-07T16:33:08.672Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.672Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.672Z] try: +[2024-03-07T16:33:08.672Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.672Z] # which is the desired response. +[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.672Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.672Z] next(function_gen) # first yield +[2024-03-07T16:33:08.672Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.672Z] except StopIteration: +[2024-03-07T16:33:08.672Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.672Z] else: +[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.672Z] if res is not None: +[2024-03-07T16:33:08.672Z] results.append(res) +[2024-03-07T16:33:08.672Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.672Z] break +[2024-03-07T16:33:08.672Z] except BaseException as exc: +[2024-03-07T16:33:08.672Z] exception = exc +[2024-03-07T16:33:08.672Z] finally: +[2024-03-07T16:33:08.672Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.672Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.672Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.672Z] result = results[0] if results else None +[2024-03-07T16:33:08.672Z] else: +[2024-03-07T16:33:08.672Z] result = results +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.672Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.672Z] try: +[2024-03-07T16:33:08.672Z] if exception is not None: +[2024-03-07T16:33:08.672Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.672Z] item = +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.672Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.672Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.672Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.672Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.672Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.672Z] item = , when = 'setup' +[2024-03-07T16:33:08.672Z] +[2024-03-07T16:33:08.673Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.673Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.673Z] with catching_logs( +[2024-03-07T16:33:08.673Z] self.caplog_handler, +[2024-03-07T16:33:08.673Z] level=self.log_level, +[2024-03-07T16:33:08.673Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.673Z] self.report_handler, +[2024-03-07T16:33:08.673Z] level=self.log_level, +[2024-03-07T16:33:08.673Z] ) as report_handler: +[2024-03-07T16:33:08.673Z] caplog_handler.reset() +[2024-03-07T16:33:08.673Z] report_handler.reset() +[2024-03-07T16:33:08.673Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.673Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] try: +[2024-03-07T16:33:08.673Z] > yield +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.673Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.673Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.673Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] def _multicall( +[2024-03-07T16:33:08.673Z] hook_name: str, +[2024-03-07T16:33:08.673Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.673Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.673Z] firstresult: bool, +[2024-03-07T16:33:08.673Z] ) -> object | list[object]: +[2024-03-07T16:33:08.673Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.673Z] result(s). +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.673Z] """ +[2024-03-07T16:33:08.673Z] __tracebackhide__ = True +[2024-03-07T16:33:08.673Z] results: list[object] = [] +[2024-03-07T16:33:08.673Z] exception = None +[2024-03-07T16:33:08.673Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.673Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.673Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.673Z] try: +[2024-03-07T16:33:08.673Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.673Z] try: +[2024-03-07T16:33:08.673Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.673Z] except KeyError: +[2024-03-07T16:33:08.673Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.673Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.673Z] raise HookCallError( +[2024-03-07T16:33:08.673Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.673Z] ) +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.673Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.673Z] try: +[2024-03-07T16:33:08.673Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.673Z] # which is the desired response. +[2024-03-07T16:33:08.673Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.673Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.673Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.673Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.673Z] except StopIteration: +[2024-03-07T16:33:08.673Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.673Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.673Z] try: +[2024-03-07T16:33:08.673Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.673Z] # which is the desired response. +[2024-03-07T16:33:08.673Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.673Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.673Z] next(function_gen) # first yield +[2024-03-07T16:33:08.673Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.673Z] except StopIteration: +[2024-03-07T16:33:08.673Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.673Z] else: +[2024-03-07T16:33:08.673Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.673Z] if res is not None: +[2024-03-07T16:33:08.673Z] results.append(res) +[2024-03-07T16:33:08.673Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.673Z] break +[2024-03-07T16:33:08.673Z] except BaseException as exc: +[2024-03-07T16:33:08.673Z] exception = exc +[2024-03-07T16:33:08.673Z] finally: +[2024-03-07T16:33:08.673Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.673Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.673Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.673Z] result = results[0] if results else None +[2024-03-07T16:33:08.673Z] else: +[2024-03-07T16:33:08.673Z] result = results +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.673Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.673Z] try: +[2024-03-07T16:33:08.673Z] if exception is not None: +[2024-03-07T16:33:08.673Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.673Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.673Z] item = +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.673Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.673Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.673Z] > return (yield) +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.673Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.673Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.673Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] def _multicall( +[2024-03-07T16:33:08.673Z] hook_name: str, +[2024-03-07T16:33:08.673Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.673Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.673Z] firstresult: bool, +[2024-03-07T16:33:08.673Z] ) -> object | list[object]: +[2024-03-07T16:33:08.673Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.673Z] result(s). +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.673Z] """ +[2024-03-07T16:33:08.673Z] __tracebackhide__ = True +[2024-03-07T16:33:08.673Z] results: list[object] = [] +[2024-03-07T16:33:08.673Z] exception = None +[2024-03-07T16:33:08.673Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.673Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.673Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.673Z] try: +[2024-03-07T16:33:08.673Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.673Z] try: +[2024-03-07T16:33:08.673Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.673Z] except KeyError: +[2024-03-07T16:33:08.673Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.673Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.673Z] raise HookCallError( +[2024-03-07T16:33:08.673Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.673Z] ) +[2024-03-07T16:33:08.673Z] +[2024-03-07T16:33:08.673Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.673Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.673Z] try: +[2024-03-07T16:33:08.673Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.674Z] # which is the desired response. +[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.674Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.674Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.674Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.674Z] except StopIteration: +[2024-03-07T16:33:08.674Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.674Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.674Z] try: +[2024-03-07T16:33:08.674Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.674Z] # which is the desired response. +[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.674Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.674Z] next(function_gen) # first yield +[2024-03-07T16:33:08.674Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.674Z] except StopIteration: +[2024-03-07T16:33:08.674Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.674Z] else: +[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.674Z] if res is not None: +[2024-03-07T16:33:08.674Z] results.append(res) +[2024-03-07T16:33:08.674Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.674Z] break +[2024-03-07T16:33:08.674Z] except BaseException as exc: +[2024-03-07T16:33:08.674Z] exception = exc +[2024-03-07T16:33:08.674Z] finally: +[2024-03-07T16:33:08.674Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.674Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.674Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.674Z] result = results[0] if results else None +[2024-03-07T16:33:08.674Z] else: +[2024-03-07T16:33:08.674Z] result = results +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.674Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.674Z] try: +[2024-03-07T16:33:08.674Z] if exception is not None: +[2024-03-07T16:33:08.674Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.674Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.674Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.674Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.674Z] try: +[2024-03-07T16:33:08.674Z] > yield +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.674Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.674Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] def _multicall( +[2024-03-07T16:33:08.674Z] hook_name: str, +[2024-03-07T16:33:08.674Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.674Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.674Z] firstresult: bool, +[2024-03-07T16:33:08.674Z] ) -> object | list[object]: +[2024-03-07T16:33:08.674Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.674Z] result(s). +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.674Z] """ +[2024-03-07T16:33:08.674Z] __tracebackhide__ = True +[2024-03-07T16:33:08.674Z] results: list[object] = [] +[2024-03-07T16:33:08.674Z] exception = None +[2024-03-07T16:33:08.674Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.674Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.674Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.674Z] try: +[2024-03-07T16:33:08.674Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.674Z] try: +[2024-03-07T16:33:08.674Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.674Z] except KeyError: +[2024-03-07T16:33:08.674Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.674Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.674Z] raise HookCallError( +[2024-03-07T16:33:08.674Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.674Z] ) +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.674Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.674Z] try: +[2024-03-07T16:33:08.674Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.674Z] # which is the desired response. +[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.674Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.674Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.674Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.674Z] except StopIteration: +[2024-03-07T16:33:08.674Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.674Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.674Z] try: +[2024-03-07T16:33:08.674Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.674Z] # which is the desired response. +[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.674Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.674Z] next(function_gen) # first yield +[2024-03-07T16:33:08.674Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.674Z] except StopIteration: +[2024-03-07T16:33:08.674Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.674Z] else: +[2024-03-07T16:33:08.674Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] item = +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.674Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.674Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.674Z] item = +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.674Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.674Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.674Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.674Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.674Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.674Z] if exc: +[2024-03-07T16:33:08.674Z] > raise exc +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.674Z] +[2024-03-07T16:33:08.674Z] cls = +[2024-03-07T16:33:08.674Z] func = . at 0x7f0abbb0b520> +[2024-03-07T16:33:08.674Z] when = 'setup' +[2024-03-07T16:33:08.675Z] reraise = (, ) +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] @classmethod +[2024-03-07T16:33:08.675Z] def from_call( +[2024-03-07T16:33:08.675Z] cls, +[2024-03-07T16:33:08.675Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.675Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.675Z] reraise: Optional[ +[2024-03-07T16:33:08.675Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.675Z] ] = None, +[2024-03-07T16:33:08.675Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.675Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] :param func: +[2024-03-07T16:33:08.675Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.675Z] :param when: +[2024-03-07T16:33:08.675Z] The phase in which the function is called. +[2024-03-07T16:33:08.675Z] :param reraise: +[2024-03-07T16:33:08.675Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.675Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.675Z] """ +[2024-03-07T16:33:08.675Z] excinfo = None +[2024-03-07T16:33:08.675Z] start = timing.time() +[2024-03-07T16:33:08.675Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.675Z] try: +[2024-03-07T16:33:08.675Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.675Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.675Z] ) +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.675Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] self = +[2024-03-07T16:33:08.675Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.675Z] """Call the hook. +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.675Z] specification. +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.675Z] :ref:`calling`. +[2024-03-07T16:33:08.675Z] """ +[2024-03-07T16:33:08.675Z] assert ( +[2024-03-07T16:33:08.675Z] not self.is_historic() +[2024-03-07T16:33:08.675Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.675Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.675Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.675Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.675Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.675Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.675Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.675Z] methods = [>, >, ...] +[2024-03-07T16:33:08.675Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] def _hookexec( +[2024-03-07T16:33:08.675Z] self, +[2024-03-07T16:33:08.675Z] hook_name: str, +[2024-03-07T16:33:08.675Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.675Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.675Z] firstresult: bool, +[2024-03-07T16:33:08.675Z] ) -> object | list[object]: +[2024-03-07T16:33:08.675Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.675Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.675Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.675Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.675Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.675Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] def _multicall( +[2024-03-07T16:33:08.675Z] hook_name: str, +[2024-03-07T16:33:08.675Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.675Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.675Z] firstresult: bool, +[2024-03-07T16:33:08.675Z] ) -> object | list[object]: +[2024-03-07T16:33:08.675Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.675Z] result(s). +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.675Z] """ +[2024-03-07T16:33:08.675Z] __tracebackhide__ = True +[2024-03-07T16:33:08.675Z] results: list[object] = [] +[2024-03-07T16:33:08.675Z] exception = None +[2024-03-07T16:33:08.675Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.675Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.675Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.675Z] try: +[2024-03-07T16:33:08.675Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.675Z] try: +[2024-03-07T16:33:08.675Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.675Z] except KeyError: +[2024-03-07T16:33:08.675Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.675Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.675Z] raise HookCallError( +[2024-03-07T16:33:08.675Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.675Z] ) +[2024-03-07T16:33:08.675Z] +[2024-03-07T16:33:08.675Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.675Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.675Z] try: +[2024-03-07T16:33:08.675Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.675Z] # which is the desired response. +[2024-03-07T16:33:08.675Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.675Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.675Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.675Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.675Z] except StopIteration: +[2024-03-07T16:33:08.675Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.675Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.675Z] try: +[2024-03-07T16:33:08.675Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.675Z] # which is the desired response. +[2024-03-07T16:33:08.675Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.675Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.675Z] next(function_gen) # first yield +[2024-03-07T16:33:08.675Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.675Z] except StopIteration: +[2024-03-07T16:33:08.675Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.675Z] else: +[2024-03-07T16:33:08.675Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.675Z] if res is not None: +[2024-03-07T16:33:08.675Z] results.append(res) +[2024-03-07T16:33:08.675Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.675Z] break +[2024-03-07T16:33:08.675Z] except BaseException as exc: +[2024-03-07T16:33:08.675Z] exception = exc +[2024-03-07T16:33:08.675Z] finally: +[2024-03-07T16:33:08.675Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.675Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.675Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.675Z] result = results[0] if results else None +[2024-03-07T16:33:08.675Z] else: +[2024-03-07T16:33:08.676Z] result = results +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.676Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.676Z] try: +[2024-03-07T16:33:08.676Z] if exception is not None: +[2024-03-07T16:33:08.676Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.676Z] else: +[2024-03-07T16:33:08.676Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.676Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.676Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.676Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.676Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.676Z] except StopIteration as si: +[2024-03-07T16:33:08.676Z] result = si.value +[2024-03-07T16:33:08.676Z] exception = None +[2024-03-07T16:33:08.676Z] continue +[2024-03-07T16:33:08.676Z] except BaseException as e: +[2024-03-07T16:33:08.676Z] exception = e +[2024-03-07T16:33:08.676Z] continue +[2024-03-07T16:33:08.676Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] if exception is not None: +[2024-03-07T16:33:08.676Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.676Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.676Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.676Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] def _multicall( +[2024-03-07T16:33:08.676Z] hook_name: str, +[2024-03-07T16:33:08.676Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.676Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.676Z] firstresult: bool, +[2024-03-07T16:33:08.676Z] ) -> object | list[object]: +[2024-03-07T16:33:08.676Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.676Z] result(s). +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.676Z] """ +[2024-03-07T16:33:08.676Z] __tracebackhide__ = True +[2024-03-07T16:33:08.676Z] results: list[object] = [] +[2024-03-07T16:33:08.676Z] exception = None +[2024-03-07T16:33:08.676Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.676Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.676Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.676Z] try: +[2024-03-07T16:33:08.676Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.676Z] try: +[2024-03-07T16:33:08.676Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.676Z] except KeyError: +[2024-03-07T16:33:08.676Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.676Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.676Z] raise HookCallError( +[2024-03-07T16:33:08.676Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.676Z] ) +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.676Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.676Z] try: +[2024-03-07T16:33:08.676Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.676Z] # which is the desired response. +[2024-03-07T16:33:08.676Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.676Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.676Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.676Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.676Z] except StopIteration: +[2024-03-07T16:33:08.676Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.676Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.676Z] try: +[2024-03-07T16:33:08.676Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.676Z] # which is the desired response. +[2024-03-07T16:33:08.676Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.676Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.676Z] next(function_gen) # first yield +[2024-03-07T16:33:08.676Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.676Z] except StopIteration: +[2024-03-07T16:33:08.676Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.676Z] else: +[2024-03-07T16:33:08.676Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.676Z] if res is not None: +[2024-03-07T16:33:08.676Z] results.append(res) +[2024-03-07T16:33:08.676Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.676Z] break +[2024-03-07T16:33:08.676Z] except BaseException as exc: +[2024-03-07T16:33:08.676Z] exception = exc +[2024-03-07T16:33:08.676Z] finally: +[2024-03-07T16:33:08.676Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.676Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.676Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.676Z] result = results[0] if results else None +[2024-03-07T16:33:08.676Z] else: +[2024-03-07T16:33:08.676Z] result = results +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.676Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.676Z] try: +[2024-03-07T16:33:08.676Z] if exception is not None: +[2024-03-07T16:33:08.676Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.676Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.676Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.676Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.676Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.676Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.676Z] try: +[2024-03-07T16:33:08.676Z] > yield +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.676Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.676Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.676Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] def _multicall( +[2024-03-07T16:33:08.676Z] hook_name: str, +[2024-03-07T16:33:08.676Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.676Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.676Z] firstresult: bool, +[2024-03-07T16:33:08.676Z] ) -> object | list[object]: +[2024-03-07T16:33:08.676Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.676Z] result(s). +[2024-03-07T16:33:08.676Z] +[2024-03-07T16:33:08.676Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.676Z] """ +[2024-03-07T16:33:08.676Z] __tracebackhide__ = True +[2024-03-07T16:33:08.676Z] results: list[object] = [] +[2024-03-07T16:33:08.676Z] exception = None +[2024-03-07T16:33:08.676Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.676Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.676Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.676Z] try: +[2024-03-07T16:33:08.676Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.677Z] try: +[2024-03-07T16:33:08.677Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.677Z] except KeyError: +[2024-03-07T16:33:08.677Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.677Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.677Z] raise HookCallError( +[2024-03-07T16:33:08.677Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.677Z] ) +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.677Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.677Z] try: +[2024-03-07T16:33:08.677Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.677Z] # which is the desired response. +[2024-03-07T16:33:08.677Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.677Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.677Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.677Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.677Z] except StopIteration: +[2024-03-07T16:33:08.677Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.677Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.677Z] try: +[2024-03-07T16:33:08.677Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.677Z] # which is the desired response. +[2024-03-07T16:33:08.677Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.677Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.677Z] next(function_gen) # first yield +[2024-03-07T16:33:08.677Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.677Z] except StopIteration: +[2024-03-07T16:33:08.677Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.677Z] else: +[2024-03-07T16:33:08.677Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.677Z] if res is not None: +[2024-03-07T16:33:08.677Z] results.append(res) +[2024-03-07T16:33:08.677Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.677Z] break +[2024-03-07T16:33:08.677Z] except BaseException as exc: +[2024-03-07T16:33:08.677Z] exception = exc +[2024-03-07T16:33:08.677Z] finally: +[2024-03-07T16:33:08.677Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.677Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.677Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.677Z] result = results[0] if results else None +[2024-03-07T16:33:08.677Z] else: +[2024-03-07T16:33:08.677Z] result = results +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.677Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.677Z] try: +[2024-03-07T16:33:08.677Z] if exception is not None: +[2024-03-07T16:33:08.677Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.677Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.677Z] item = +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.677Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.677Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.677Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.677Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.677Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.677Z] item = , when = 'setup' +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.677Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.677Z] with catching_logs( +[2024-03-07T16:33:08.677Z] self.caplog_handler, +[2024-03-07T16:33:08.677Z] level=self.log_level, +[2024-03-07T16:33:08.677Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.677Z] self.report_handler, +[2024-03-07T16:33:08.677Z] level=self.log_level, +[2024-03-07T16:33:08.677Z] ) as report_handler: +[2024-03-07T16:33:08.677Z] caplog_handler.reset() +[2024-03-07T16:33:08.677Z] report_handler.reset() +[2024-03-07T16:33:08.677Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.677Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] try: +[2024-03-07T16:33:08.677Z] > yield +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.677Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.677Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.677Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] def _multicall( +[2024-03-07T16:33:08.677Z] hook_name: str, +[2024-03-07T16:33:08.677Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.677Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.677Z] firstresult: bool, +[2024-03-07T16:33:08.677Z] ) -> object | list[object]: +[2024-03-07T16:33:08.677Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.677Z] result(s). +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.677Z] """ +[2024-03-07T16:33:08.677Z] __tracebackhide__ = True +[2024-03-07T16:33:08.677Z] results: list[object] = [] +[2024-03-07T16:33:08.677Z] exception = None +[2024-03-07T16:33:08.677Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.677Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.677Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.677Z] try: +[2024-03-07T16:33:08.677Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.677Z] try: +[2024-03-07T16:33:08.677Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.677Z] except KeyError: +[2024-03-07T16:33:08.677Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.677Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.677Z] raise HookCallError( +[2024-03-07T16:33:08.677Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.677Z] ) +[2024-03-07T16:33:08.677Z] +[2024-03-07T16:33:08.677Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.677Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.677Z] try: +[2024-03-07T16:33:08.677Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.677Z] # which is the desired response. +[2024-03-07T16:33:08.677Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.677Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.677Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.677Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.677Z] except StopIteration: +[2024-03-07T16:33:08.677Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.677Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.677Z] try: +[2024-03-07T16:33:08.678Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.678Z] # which is the desired response. +[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.678Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.678Z] next(function_gen) # first yield +[2024-03-07T16:33:08.678Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.678Z] except StopIteration: +[2024-03-07T16:33:08.678Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.678Z] else: +[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.678Z] if res is not None: +[2024-03-07T16:33:08.678Z] results.append(res) +[2024-03-07T16:33:08.678Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.678Z] break +[2024-03-07T16:33:08.678Z] except BaseException as exc: +[2024-03-07T16:33:08.678Z] exception = exc +[2024-03-07T16:33:08.678Z] finally: +[2024-03-07T16:33:08.678Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.678Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.678Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.678Z] result = results[0] if results else None +[2024-03-07T16:33:08.678Z] else: +[2024-03-07T16:33:08.678Z] result = results +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.678Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.678Z] try: +[2024-03-07T16:33:08.678Z] if exception is not None: +[2024-03-07T16:33:08.678Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.678Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.678Z] item = +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.678Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.678Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.678Z] > return (yield) +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.678Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.678Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.678Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] def _multicall( +[2024-03-07T16:33:08.678Z] hook_name: str, +[2024-03-07T16:33:08.678Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.678Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.678Z] firstresult: bool, +[2024-03-07T16:33:08.678Z] ) -> object | list[object]: +[2024-03-07T16:33:08.678Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.678Z] result(s). +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.678Z] """ +[2024-03-07T16:33:08.678Z] __tracebackhide__ = True +[2024-03-07T16:33:08.678Z] results: list[object] = [] +[2024-03-07T16:33:08.678Z] exception = None +[2024-03-07T16:33:08.678Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.678Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.678Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.678Z] try: +[2024-03-07T16:33:08.678Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.678Z] try: +[2024-03-07T16:33:08.678Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.678Z] except KeyError: +[2024-03-07T16:33:08.678Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.678Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.678Z] raise HookCallError( +[2024-03-07T16:33:08.678Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.678Z] ) +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.678Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.678Z] try: +[2024-03-07T16:33:08.678Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.678Z] # which is the desired response. +[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.678Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.678Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.678Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.678Z] except StopIteration: +[2024-03-07T16:33:08.678Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.678Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.678Z] try: +[2024-03-07T16:33:08.678Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.678Z] # which is the desired response. +[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.678Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.678Z] next(function_gen) # first yield +[2024-03-07T16:33:08.678Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.678Z] except StopIteration: +[2024-03-07T16:33:08.678Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.678Z] else: +[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.678Z] if res is not None: +[2024-03-07T16:33:08.678Z] results.append(res) +[2024-03-07T16:33:08.678Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.678Z] break +[2024-03-07T16:33:08.678Z] except BaseException as exc: +[2024-03-07T16:33:08.678Z] exception = exc +[2024-03-07T16:33:08.678Z] finally: +[2024-03-07T16:33:08.678Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.678Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.678Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.678Z] result = results[0] if results else None +[2024-03-07T16:33:08.678Z] else: +[2024-03-07T16:33:08.678Z] result = results +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.678Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.678Z] try: +[2024-03-07T16:33:08.678Z] if exception is not None: +[2024-03-07T16:33:08.678Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.678Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.678Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.678Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.678Z] +[2024-03-07T16:33:08.678Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.679Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.679Z] try: +[2024-03-07T16:33:08.679Z] > yield +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.679Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.679Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] def _multicall( +[2024-03-07T16:33:08.679Z] hook_name: str, +[2024-03-07T16:33:08.679Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.679Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.679Z] firstresult: bool, +[2024-03-07T16:33:08.679Z] ) -> object | list[object]: +[2024-03-07T16:33:08.679Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.679Z] result(s). +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.679Z] """ +[2024-03-07T16:33:08.679Z] __tracebackhide__ = True +[2024-03-07T16:33:08.679Z] results: list[object] = [] +[2024-03-07T16:33:08.679Z] exception = None +[2024-03-07T16:33:08.679Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.679Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.679Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.679Z] try: +[2024-03-07T16:33:08.679Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.679Z] try: +[2024-03-07T16:33:08.679Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.679Z] except KeyError: +[2024-03-07T16:33:08.679Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.679Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.679Z] raise HookCallError( +[2024-03-07T16:33:08.679Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.679Z] ) +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.679Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.679Z] try: +[2024-03-07T16:33:08.679Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.679Z] # which is the desired response. +[2024-03-07T16:33:08.679Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.679Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.679Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.679Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.679Z] except StopIteration: +[2024-03-07T16:33:08.679Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.679Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.679Z] try: +[2024-03-07T16:33:08.679Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.679Z] # which is the desired response. +[2024-03-07T16:33:08.679Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.679Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.679Z] next(function_gen) # first yield +[2024-03-07T16:33:08.679Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.679Z] except StopIteration: +[2024-03-07T16:33:08.679Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.679Z] else: +[2024-03-07T16:33:08.679Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] item = +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.679Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.679Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.679Z] item = +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.679Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.679Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.679Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.679Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.679Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.679Z] if exc: +[2024-03-07T16:33:08.679Z] raise exc +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.679Z] assert col not in self.stack +[2024-03-07T16:33:08.679Z] # Push onto the stack. +[2024-03-07T16:33:08.679Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.679Z] try: +[2024-03-07T16:33:08.679Z] col.setup() +[2024-03-07T16:33:08.679Z] except TEST_OUTCOME as exc: +[2024-03-07T16:33:08.679Z] self.stack[col] = (self.stack[col][0], exc) +[2024-03-07T16:33:08.679Z] > raise exc +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: +[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.679Z] item = +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.679Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.679Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.679Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.679Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.679Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.679Z] if exc: +[2024-03-07T16:33:08.679Z] raise exc +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.679Z] assert col not in self.stack +[2024-03-07T16:33:08.679Z] # Push onto the stack. +[2024-03-07T16:33:08.679Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.679Z] try: +[2024-03-07T16:33:08.679Z] > col.setup() +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: +[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] self = +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.679Z] def setup(self): +[2024-03-07T16:33:08.679Z] """ +[2024-03-07T16:33:08.679Z] Called by pytest to setup the collector cells in . +[2024-03-07T16:33:08.679Z] Here we start a kernel and setup the sanitize patterns. +[2024-03-07T16:33:08.679Z] """ +[2024-03-07T16:33:08.679Z] # we've already checked that --nbval-current-env and +[2024-03-07T16:33:08.679Z] # --nbval-kernel-name were not both supplied +[2024-03-07T16:33:08.679Z] if self.parent.config.option.nbval_current_env: +[2024-03-07T16:33:08.679Z] kernel_name = CURRENT_ENV_KERNEL_NAME +[2024-03-07T16:33:08.679Z] elif self.parent.config.option.nbval_kernel_name: +[2024-03-07T16:33:08.679Z] kernel_name = self.parent.config.option.nbval_kernel_name +[2024-03-07T16:33:08.679Z] else: +[2024-03-07T16:33:08.679Z] kernel_name = self.nb.metadata.get( +[2024-03-07T16:33:08.679Z] 'kernelspec', {}).get('name', 'python') +[2024-03-07T16:33:08.679Z] > self.kernel = RunningKernel( +[2024-03-07T16:33:08.679Z] kernel_name, +[2024-03-07T16:33:08.679Z] cwd=str(self.fspath.dirname), +[2024-03-07T16:33:08.679Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, +[2024-03-07T16:33:08.679Z] ) +[2024-03-07T16:33:08.679Z] +[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: +[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] self = +[2024-03-07T16:33:08.680Z] kernel_name = 'python' +[2024-03-07T16:33:08.680Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' +[2024-03-07T16:33:08.680Z] startup_timeout = 60 +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): +[2024-03-07T16:33:08.680Z] """ +[2024-03-07T16:33:08.680Z] Initialise a new kernel +[2024-03-07T16:33:08.680Z] specify that matplotlib is inline and connect the stderr. +[2024-03-07T16:33:08.680Z] Stores the active kernel process and its manager. +[2024-03-07T16:33:08.680Z] """ +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] > self.km, self.kc = start_new_kernel( +[2024-03-07T16:33:08.680Z] startup_timeout=startup_timeout, +[2024-03-07T16:33:08.680Z] kernel_name=kernel_name, +[2024-03-07T16:33:08.680Z] stderr=open(os.devnull, 'w'), +[2024-03-07T16:33:08.680Z] cwd=cwd, +[2024-03-07T16:33:08.680Z] ) +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: +[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] startup_timeout = 60, kernel_name = 'python' +[2024-03-07T16:33:08.680Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} +[2024-03-07T16:33:08.680Z] km = +[2024-03-07T16:33:08.680Z] kc = +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): +[2024-03-07T16:33:08.680Z] """Start a new kernel, and return its Manager and Client""" +[2024-03-07T16:33:08.680Z] logger.debug('Starting new kernel: "%s"' % kernel_name) +[2024-03-07T16:33:08.680Z] km = KernelManager(kernel_name=kernel_name, +[2024-03-07T16:33:08.680Z] kernel_spec_manager=NbvalKernelspecManager()) +[2024-03-07T16:33:08.680Z] km.start_kernel(**kwargs) +[2024-03-07T16:33:08.680Z] kc = km.client() +[2024-03-07T16:33:08.680Z] kc.start_channels() +[2024-03-07T16:33:08.680Z] try: +[2024-03-07T16:33:08.680Z] > kc.wait_for_ready(timeout=startup_timeout) +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: +[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] args = (,) +[2024-03-07T16:33:08.680Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.680Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.680Z] nest_asyncio = +[2024-03-07T16:33:08.680Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.680Z] try: +[2024-03-07T16:33:08.680Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.680Z] except RuntimeError: +[2024-03-07T16:33:08.680Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.680Z] try: +[2024-03-07T16:33:08.680Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.680Z] except RuntimeError: +[2024-03-07T16:33:08.680Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.680Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.680Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.680Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.680Z] try: +[2024-03-07T16:33:08.680Z] return loop.run_until_complete(future) +[2024-03-07T16:33:08.680Z] except BaseException as e: +[2024-03-07T16:33:08.680Z] future.cancel() +[2024-03-07T16:33:08.680Z] > raise e +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: +[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] args = (,) +[2024-03-07T16:33:08.680Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.680Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.680Z] nest_asyncio = +[2024-03-07T16:33:08.680Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.680Z] try: +[2024-03-07T16:33:08.680Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.680Z] except RuntimeError: +[2024-03-07T16:33:08.680Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.680Z] try: +[2024-03-07T16:33:08.680Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.680Z] except RuntimeError: +[2024-03-07T16:33:08.680Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.680Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.680Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.680Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.680Z] try: +[2024-03-07T16:33:08.680Z] > return loop.run_until_complete(future) +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: +[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.680Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] def run_until_complete(self, future): +[2024-03-07T16:33:08.680Z] with manage_run(self): +[2024-03-07T16:33:08.680Z] f = asyncio.ensure_future(future, loop=self) +[2024-03-07T16:33:08.680Z] if f is not future: +[2024-03-07T16:33:08.680Z] f._log_destroy_pending = False +[2024-03-07T16:33:08.680Z] while not f.done(): +[2024-03-07T16:33:08.680Z] self._run_once() +[2024-03-07T16:33:08.680Z] if self._stopping: +[2024-03-07T16:33:08.680Z] break +[2024-03-07T16:33:08.680Z] if not f.done(): +[2024-03-07T16:33:08.680Z] raise RuntimeError( +[2024-03-07T16:33:08.680Z] 'Event loop stopped before Future completed.') +[2024-03-07T16:33:08.680Z] > return f.result() +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: +[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] def result(self): +[2024-03-07T16:33:08.680Z] """Return the result this future represents. +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] If the future has been cancelled, raises CancelledError. If the +[2024-03-07T16:33:08.680Z] future's result isn't yet available, raises InvalidStateError. If +[2024-03-07T16:33:08.680Z] the future is done and has an exception set, this exception is raised. +[2024-03-07T16:33:08.680Z] """ +[2024-03-07T16:33:08.680Z] if self._state == _CANCELLED: +[2024-03-07T16:33:08.680Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.680Z] raise exc +[2024-03-07T16:33:08.680Z] if self._state != _FINISHED: +[2024-03-07T16:33:08.680Z] raise exceptions.InvalidStateError('Result is not ready.') +[2024-03-07T16:33:08.680Z] self.__log_traceback = False +[2024-03-07T16:33:08.680Z] if self._exception is not None: +[2024-03-07T16:33:08.680Z] > raise self._exception.with_traceback(self._exception_tb) +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: +[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] self = None +[2024-03-07T16:33:08.680Z] +[2024-03-07T16:33:08.680Z] def __step(self, exc=None): +[2024-03-07T16:33:08.680Z] if self.done(): +[2024-03-07T16:33:08.680Z] raise exceptions.InvalidStateError( +[2024-03-07T16:33:08.680Z] f'_step(): already done: {self!r}, {exc!r}') +[2024-03-07T16:33:08.680Z] if self._must_cancel: +[2024-03-07T16:33:08.681Z] if not isinstance(exc, exceptions.CancelledError): +[2024-03-07T16:33:08.681Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.681Z] self._must_cancel = False +[2024-03-07T16:33:08.681Z] coro = self._coro +[2024-03-07T16:33:08.681Z] self._fut_waiter = None +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] _enter_task(self._loop, self) +[2024-03-07T16:33:08.681Z] # Call either coro.throw(exc) or coro.send(None). +[2024-03-07T16:33:08.681Z] try: +[2024-03-07T16:33:08.681Z] if exc is None: +[2024-03-07T16:33:08.681Z] # We use the `send` method directly, because coroutines +[2024-03-07T16:33:08.681Z] # don't have `__iter__` and `__next__` methods. +[2024-03-07T16:33:08.681Z] > result = coro.send(None) +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: +[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] self = +[2024-03-07T16:33:08.681Z] timeout = 60 +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: +[2024-03-07T16:33:08.681Z] """Waits for a response when a client is blocked +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] - Sets future time for timeout +[2024-03-07T16:33:08.681Z] - Blocks on shell channel until a message is received +[2024-03-07T16:33:08.681Z] - Exit if the kernel has died +[2024-03-07T16:33:08.681Z] - If client times out before receiving a message from the kernel, send RuntimeError +[2024-03-07T16:33:08.681Z] - Flush the IOPub channel +[2024-03-07T16:33:08.681Z] """ +[2024-03-07T16:33:08.681Z] if timeout is None: +[2024-03-07T16:33:08.681Z] timeout = float("inf") +[2024-03-07T16:33:08.681Z] abs_timeout = time.time() + timeout +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] from .manager import KernelManager +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] if not isinstance(self.parent, KernelManager): +[2024-03-07T16:33:08.681Z] # This Client was not created by a KernelManager, +[2024-03-07T16:33:08.681Z] # so wait for kernel to become responsive to heartbeats +[2024-03-07T16:33:08.681Z] # before checking for kernel_info reply +[2024-03-07T16:33:08.681Z] while not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.681Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.681Z] raise RuntimeError( +[2024-03-07T16:33:08.681Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout +[2024-03-07T16:33:08.681Z] ) +[2024-03-07T16:33:08.681Z] await asyncio.sleep(0.2) +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] # Wait for kernel info reply on shell channel +[2024-03-07T16:33:08.681Z] while True: +[2024-03-07T16:33:08.681Z] self.kernel_info() +[2024-03-07T16:33:08.681Z] try: +[2024-03-07T16:33:08.681Z] msg = await self.shell_channel.get_msg(timeout=1) +[2024-03-07T16:33:08.681Z] except Empty: +[2024-03-07T16:33:08.681Z] pass +[2024-03-07T16:33:08.681Z] else: +[2024-03-07T16:33:08.681Z] if msg["msg_type"] == "kernel_info_reply": +[2024-03-07T16:33:08.681Z] # Checking that IOPub is connected. If it is not connected, start over. +[2024-03-07T16:33:08.681Z] try: +[2024-03-07T16:33:08.681Z] await self.iopub_channel.get_msg(timeout=0.2) +[2024-03-07T16:33:08.681Z] except Empty: +[2024-03-07T16:33:08.681Z] pass +[2024-03-07T16:33:08.681Z] else: +[2024-03-07T16:33:08.681Z] self._handle_kernel_info_reply(msg) +[2024-03-07T16:33:08.681Z] break +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] if not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.681Z] raise RuntimeError("Kernel died before replying to kernel_info") +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] # Check if current time is ready check time plus timeout +[2024-03-07T16:33:08.681Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.681Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) +[2024-03-07T16:33:08.681Z] E RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError +[2024-03-07T16:33:08.681Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 4 _ +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] cls = +[2024-03-07T16:33:08.681Z] func = . at 0x7f0ab86cab00> +[2024-03-07T16:33:08.681Z] when = 'setup' +[2024-03-07T16:33:08.681Z] reraise = (, ) +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] @classmethod +[2024-03-07T16:33:08.681Z] def from_call( +[2024-03-07T16:33:08.681Z] cls, +[2024-03-07T16:33:08.681Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.681Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.681Z] reraise: Optional[ +[2024-03-07T16:33:08.681Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.681Z] ] = None, +[2024-03-07T16:33:08.681Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.681Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] :param func: +[2024-03-07T16:33:08.681Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.681Z] :param when: +[2024-03-07T16:33:08.681Z] The phase in which the function is called. +[2024-03-07T16:33:08.681Z] :param reraise: +[2024-03-07T16:33:08.681Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.681Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.681Z] """ +[2024-03-07T16:33:08.681Z] excinfo = None +[2024-03-07T16:33:08.681Z] start = timing.time() +[2024-03-07T16:33:08.681Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.681Z] try: +[2024-03-07T16:33:08.681Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.681Z] ) +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] self = +[2024-03-07T16:33:08.681Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.681Z] """Call the hook. +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.681Z] specification. +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.681Z] :ref:`calling`. +[2024-03-07T16:33:08.681Z] """ +[2024-03-07T16:33:08.681Z] assert ( +[2024-03-07T16:33:08.681Z] not self.is_historic() +[2024-03-07T16:33:08.681Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.681Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.681Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.681Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.681Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.681Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.681Z] methods = [>, >, ...] +[2024-03-07T16:33:08.681Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] def _hookexec( +[2024-03-07T16:33:08.681Z] self, +[2024-03-07T16:33:08.681Z] hook_name: str, +[2024-03-07T16:33:08.681Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.681Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.681Z] firstresult: bool, +[2024-03-07T16:33:08.681Z] ) -> object | list[object]: +[2024-03-07T16:33:08.681Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.681Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.681Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.681Z] +[2024-03-07T16:33:08.681Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.682Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.682Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] def _multicall( +[2024-03-07T16:33:08.682Z] hook_name: str, +[2024-03-07T16:33:08.682Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.682Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.682Z] firstresult: bool, +[2024-03-07T16:33:08.682Z] ) -> object | list[object]: +[2024-03-07T16:33:08.682Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.682Z] result(s). +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.682Z] """ +[2024-03-07T16:33:08.682Z] __tracebackhide__ = True +[2024-03-07T16:33:08.682Z] results: list[object] = [] +[2024-03-07T16:33:08.682Z] exception = None +[2024-03-07T16:33:08.682Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.682Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.682Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.682Z] try: +[2024-03-07T16:33:08.682Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.682Z] try: +[2024-03-07T16:33:08.682Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.682Z] except KeyError: +[2024-03-07T16:33:08.682Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.682Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.682Z] raise HookCallError( +[2024-03-07T16:33:08.682Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.682Z] ) +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.682Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.682Z] try: +[2024-03-07T16:33:08.682Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.682Z] # which is the desired response. +[2024-03-07T16:33:08.682Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.682Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.682Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.682Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.682Z] except StopIteration: +[2024-03-07T16:33:08.682Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.682Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.682Z] try: +[2024-03-07T16:33:08.682Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.682Z] # which is the desired response. +[2024-03-07T16:33:08.682Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.682Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.682Z] next(function_gen) # first yield +[2024-03-07T16:33:08.682Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.682Z] except StopIteration: +[2024-03-07T16:33:08.682Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.682Z] else: +[2024-03-07T16:33:08.682Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.682Z] if res is not None: +[2024-03-07T16:33:08.682Z] results.append(res) +[2024-03-07T16:33:08.682Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.682Z] break +[2024-03-07T16:33:08.682Z] except BaseException as exc: +[2024-03-07T16:33:08.682Z] exception = exc +[2024-03-07T16:33:08.682Z] finally: +[2024-03-07T16:33:08.682Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.682Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.682Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.682Z] result = results[0] if results else None +[2024-03-07T16:33:08.682Z] else: +[2024-03-07T16:33:08.682Z] result = results +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.682Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.682Z] try: +[2024-03-07T16:33:08.682Z] if exception is not None: +[2024-03-07T16:33:08.682Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.682Z] else: +[2024-03-07T16:33:08.682Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.682Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.682Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.682Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.682Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.682Z] except StopIteration as si: +[2024-03-07T16:33:08.682Z] result = si.value +[2024-03-07T16:33:08.682Z] exception = None +[2024-03-07T16:33:08.682Z] continue +[2024-03-07T16:33:08.682Z] except BaseException as e: +[2024-03-07T16:33:08.682Z] exception = e +[2024-03-07T16:33:08.682Z] continue +[2024-03-07T16:33:08.682Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] if exception is not None: +[2024-03-07T16:33:08.682Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.682Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.682Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.682Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] def _multicall( +[2024-03-07T16:33:08.682Z] hook_name: str, +[2024-03-07T16:33:08.682Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.682Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.682Z] firstresult: bool, +[2024-03-07T16:33:08.682Z] ) -> object | list[object]: +[2024-03-07T16:33:08.682Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.682Z] result(s). +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.682Z] """ +[2024-03-07T16:33:08.682Z] __tracebackhide__ = True +[2024-03-07T16:33:08.682Z] results: list[object] = [] +[2024-03-07T16:33:08.682Z] exception = None +[2024-03-07T16:33:08.682Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.682Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.682Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.682Z] try: +[2024-03-07T16:33:08.682Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.682Z] try: +[2024-03-07T16:33:08.682Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.682Z] except KeyError: +[2024-03-07T16:33:08.682Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.682Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.682Z] raise HookCallError( +[2024-03-07T16:33:08.682Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.682Z] ) +[2024-03-07T16:33:08.682Z] +[2024-03-07T16:33:08.682Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.682Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.682Z] try: +[2024-03-07T16:33:08.682Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.682Z] # which is the desired response. +[2024-03-07T16:33:08.682Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.682Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.682Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.682Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.682Z] except StopIteration: +[2024-03-07T16:33:08.682Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.682Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.682Z] try: +[2024-03-07T16:33:08.683Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.683Z] # which is the desired response. +[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.683Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.683Z] next(function_gen) # first yield +[2024-03-07T16:33:08.683Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.683Z] except StopIteration: +[2024-03-07T16:33:08.683Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.683Z] else: +[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.683Z] if res is not None: +[2024-03-07T16:33:08.683Z] results.append(res) +[2024-03-07T16:33:08.683Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.683Z] break +[2024-03-07T16:33:08.683Z] except BaseException as exc: +[2024-03-07T16:33:08.683Z] exception = exc +[2024-03-07T16:33:08.683Z] finally: +[2024-03-07T16:33:08.683Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.683Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.683Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.683Z] result = results[0] if results else None +[2024-03-07T16:33:08.683Z] else: +[2024-03-07T16:33:08.683Z] result = results +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.683Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.683Z] try: +[2024-03-07T16:33:08.683Z] if exception is not None: +[2024-03-07T16:33:08.683Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.683Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.683Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.683Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.683Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.683Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.683Z] try: +[2024-03-07T16:33:08.683Z] > yield +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.683Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.683Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.683Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] def _multicall( +[2024-03-07T16:33:08.683Z] hook_name: str, +[2024-03-07T16:33:08.683Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.683Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.683Z] firstresult: bool, +[2024-03-07T16:33:08.683Z] ) -> object | list[object]: +[2024-03-07T16:33:08.683Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.683Z] result(s). +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.683Z] """ +[2024-03-07T16:33:08.683Z] __tracebackhide__ = True +[2024-03-07T16:33:08.683Z] results: list[object] = [] +[2024-03-07T16:33:08.683Z] exception = None +[2024-03-07T16:33:08.683Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.683Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.683Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.683Z] try: +[2024-03-07T16:33:08.683Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.683Z] try: +[2024-03-07T16:33:08.683Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.683Z] except KeyError: +[2024-03-07T16:33:08.683Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.683Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.683Z] raise HookCallError( +[2024-03-07T16:33:08.683Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.683Z] ) +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.683Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.683Z] try: +[2024-03-07T16:33:08.683Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.683Z] # which is the desired response. +[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.683Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.683Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.683Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.683Z] except StopIteration: +[2024-03-07T16:33:08.683Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.683Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.683Z] try: +[2024-03-07T16:33:08.683Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.683Z] # which is the desired response. +[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.683Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.683Z] next(function_gen) # first yield +[2024-03-07T16:33:08.683Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.683Z] except StopIteration: +[2024-03-07T16:33:08.683Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.683Z] else: +[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.683Z] if res is not None: +[2024-03-07T16:33:08.683Z] results.append(res) +[2024-03-07T16:33:08.683Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.683Z] break +[2024-03-07T16:33:08.683Z] except BaseException as exc: +[2024-03-07T16:33:08.683Z] exception = exc +[2024-03-07T16:33:08.683Z] finally: +[2024-03-07T16:33:08.683Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.683Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.683Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.683Z] result = results[0] if results else None +[2024-03-07T16:33:08.683Z] else: +[2024-03-07T16:33:08.683Z] result = results +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.683Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.683Z] try: +[2024-03-07T16:33:08.683Z] if exception is not None: +[2024-03-07T16:33:08.683Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.683Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.683Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.683Z] item = +[2024-03-07T16:33:08.683Z] +[2024-03-07T16:33:08.684Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.684Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.684Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.684Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.684Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.684Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.684Z] item = , when = 'setup' +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.684Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.684Z] with catching_logs( +[2024-03-07T16:33:08.684Z] self.caplog_handler, +[2024-03-07T16:33:08.684Z] level=self.log_level, +[2024-03-07T16:33:08.684Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.684Z] self.report_handler, +[2024-03-07T16:33:08.684Z] level=self.log_level, +[2024-03-07T16:33:08.684Z] ) as report_handler: +[2024-03-07T16:33:08.684Z] caplog_handler.reset() +[2024-03-07T16:33:08.684Z] report_handler.reset() +[2024-03-07T16:33:08.684Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.684Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] try: +[2024-03-07T16:33:08.684Z] > yield +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.684Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.684Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.684Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] def _multicall( +[2024-03-07T16:33:08.684Z] hook_name: str, +[2024-03-07T16:33:08.684Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.684Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.684Z] firstresult: bool, +[2024-03-07T16:33:08.684Z] ) -> object | list[object]: +[2024-03-07T16:33:08.684Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.684Z] result(s). +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.684Z] """ +[2024-03-07T16:33:08.684Z] __tracebackhide__ = True +[2024-03-07T16:33:08.684Z] results: list[object] = [] +[2024-03-07T16:33:08.684Z] exception = None +[2024-03-07T16:33:08.684Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.684Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.684Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.684Z] try: +[2024-03-07T16:33:08.684Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.684Z] try: +[2024-03-07T16:33:08.684Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.684Z] except KeyError: +[2024-03-07T16:33:08.684Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.684Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.684Z] raise HookCallError( +[2024-03-07T16:33:08.684Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.684Z] ) +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.684Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.684Z] try: +[2024-03-07T16:33:08.684Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.684Z] # which is the desired response. +[2024-03-07T16:33:08.684Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.684Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.684Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.684Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.684Z] except StopIteration: +[2024-03-07T16:33:08.684Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.684Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.684Z] try: +[2024-03-07T16:33:08.684Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.684Z] # which is the desired response. +[2024-03-07T16:33:08.684Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.684Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.684Z] next(function_gen) # first yield +[2024-03-07T16:33:08.684Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.684Z] except StopIteration: +[2024-03-07T16:33:08.684Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.684Z] else: +[2024-03-07T16:33:08.684Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.684Z] if res is not None: +[2024-03-07T16:33:08.684Z] results.append(res) +[2024-03-07T16:33:08.684Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.684Z] break +[2024-03-07T16:33:08.684Z] except BaseException as exc: +[2024-03-07T16:33:08.684Z] exception = exc +[2024-03-07T16:33:08.684Z] finally: +[2024-03-07T16:33:08.684Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.684Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.684Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.684Z] result = results[0] if results else None +[2024-03-07T16:33:08.684Z] else: +[2024-03-07T16:33:08.684Z] result = results +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.684Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.684Z] try: +[2024-03-07T16:33:08.684Z] if exception is not None: +[2024-03-07T16:33:08.684Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.684Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.684Z] item = +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.684Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.684Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.684Z] > return (yield) +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.684Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.684Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.684Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] def _multicall( +[2024-03-07T16:33:08.684Z] hook_name: str, +[2024-03-07T16:33:08.684Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.684Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.684Z] firstresult: bool, +[2024-03-07T16:33:08.684Z] ) -> object | list[object]: +[2024-03-07T16:33:08.684Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.684Z] result(s). +[2024-03-07T16:33:08.684Z] +[2024-03-07T16:33:08.684Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.684Z] """ +[2024-03-07T16:33:08.684Z] __tracebackhide__ = True +[2024-03-07T16:33:08.685Z] results: list[object] = [] +[2024-03-07T16:33:08.685Z] exception = None +[2024-03-07T16:33:08.685Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.685Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.685Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.685Z] except KeyError: +[2024-03-07T16:33:08.685Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.685Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.685Z] raise HookCallError( +[2024-03-07T16:33:08.685Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.685Z] ) +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.685Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.685Z] # which is the desired response. +[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.685Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.685Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.685Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.685Z] except StopIteration: +[2024-03-07T16:33:08.685Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.685Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.685Z] # which is the desired response. +[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.685Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.685Z] next(function_gen) # first yield +[2024-03-07T16:33:08.685Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.685Z] except StopIteration: +[2024-03-07T16:33:08.685Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.685Z] else: +[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.685Z] if res is not None: +[2024-03-07T16:33:08.685Z] results.append(res) +[2024-03-07T16:33:08.685Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.685Z] break +[2024-03-07T16:33:08.685Z] except BaseException as exc: +[2024-03-07T16:33:08.685Z] exception = exc +[2024-03-07T16:33:08.685Z] finally: +[2024-03-07T16:33:08.685Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.685Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.685Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.685Z] result = results[0] if results else None +[2024-03-07T16:33:08.685Z] else: +[2024-03-07T16:33:08.685Z] result = results +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.685Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] if exception is not None: +[2024-03-07T16:33:08.685Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.685Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.685Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.685Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] > yield +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.685Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.685Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] def _multicall( +[2024-03-07T16:33:08.685Z] hook_name: str, +[2024-03-07T16:33:08.685Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.685Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.685Z] firstresult: bool, +[2024-03-07T16:33:08.685Z] ) -> object | list[object]: +[2024-03-07T16:33:08.685Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.685Z] result(s). +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.685Z] """ +[2024-03-07T16:33:08.685Z] __tracebackhide__ = True +[2024-03-07T16:33:08.685Z] results: list[object] = [] +[2024-03-07T16:33:08.685Z] exception = None +[2024-03-07T16:33:08.685Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.685Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.685Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.685Z] except KeyError: +[2024-03-07T16:33:08.685Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.685Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.685Z] raise HookCallError( +[2024-03-07T16:33:08.685Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.685Z] ) +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.685Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.685Z] # which is the desired response. +[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.685Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.685Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.685Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.685Z] except StopIteration: +[2024-03-07T16:33:08.685Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.685Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.685Z] try: +[2024-03-07T16:33:08.685Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.685Z] # which is the desired response. +[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.685Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.685Z] next(function_gen) # first yield +[2024-03-07T16:33:08.685Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.685Z] except StopIteration: +[2024-03-07T16:33:08.685Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.685Z] else: +[2024-03-07T16:33:08.685Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] item = +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.685Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.685Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.685Z] +[2024-03-07T16:33:08.686Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.686Z] item = +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.686Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.686Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.686Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.686Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.686Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.686Z] if exc: +[2024-03-07T16:33:08.686Z] > raise exc +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] cls = +[2024-03-07T16:33:08.686Z] func = . at 0x7f0ab86f15a0> +[2024-03-07T16:33:08.686Z] when = 'setup' +[2024-03-07T16:33:08.686Z] reraise = (, ) +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] @classmethod +[2024-03-07T16:33:08.686Z] def from_call( +[2024-03-07T16:33:08.686Z] cls, +[2024-03-07T16:33:08.686Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.686Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.686Z] reraise: Optional[ +[2024-03-07T16:33:08.686Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.686Z] ] = None, +[2024-03-07T16:33:08.686Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.686Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] :param func: +[2024-03-07T16:33:08.686Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.686Z] :param when: +[2024-03-07T16:33:08.686Z] The phase in which the function is called. +[2024-03-07T16:33:08.686Z] :param reraise: +[2024-03-07T16:33:08.686Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.686Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.686Z] """ +[2024-03-07T16:33:08.686Z] excinfo = None +[2024-03-07T16:33:08.686Z] start = timing.time() +[2024-03-07T16:33:08.686Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.686Z] try: +[2024-03-07T16:33:08.686Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.686Z] ) +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] self = +[2024-03-07T16:33:08.686Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.686Z] """Call the hook. +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.686Z] specification. +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.686Z] :ref:`calling`. +[2024-03-07T16:33:08.686Z] """ +[2024-03-07T16:33:08.686Z] assert ( +[2024-03-07T16:33:08.686Z] not self.is_historic() +[2024-03-07T16:33:08.686Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.686Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.686Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.686Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.686Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.686Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.686Z] methods = [>, >, ...] +[2024-03-07T16:33:08.686Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] def _hookexec( +[2024-03-07T16:33:08.686Z] self, +[2024-03-07T16:33:08.686Z] hook_name: str, +[2024-03-07T16:33:08.686Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.686Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.686Z] firstresult: bool, +[2024-03-07T16:33:08.686Z] ) -> object | list[object]: +[2024-03-07T16:33:08.686Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.686Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.686Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.686Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.686Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] def _multicall( +[2024-03-07T16:33:08.686Z] hook_name: str, +[2024-03-07T16:33:08.686Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.686Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.686Z] firstresult: bool, +[2024-03-07T16:33:08.686Z] ) -> object | list[object]: +[2024-03-07T16:33:08.686Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.686Z] result(s). +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.686Z] """ +[2024-03-07T16:33:08.686Z] __tracebackhide__ = True +[2024-03-07T16:33:08.686Z] results: list[object] = [] +[2024-03-07T16:33:08.686Z] exception = None +[2024-03-07T16:33:08.686Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.686Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.686Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.686Z] try: +[2024-03-07T16:33:08.686Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.686Z] try: +[2024-03-07T16:33:08.686Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.686Z] except KeyError: +[2024-03-07T16:33:08.686Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.686Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.686Z] raise HookCallError( +[2024-03-07T16:33:08.686Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.686Z] ) +[2024-03-07T16:33:08.686Z] +[2024-03-07T16:33:08.686Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.686Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.686Z] try: +[2024-03-07T16:33:08.686Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.686Z] # which is the desired response. +[2024-03-07T16:33:08.686Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.686Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.686Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.686Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.686Z] except StopIteration: +[2024-03-07T16:33:08.686Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.686Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.686Z] try: +[2024-03-07T16:33:08.686Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.686Z] # which is the desired response. +[2024-03-07T16:33:08.686Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.686Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.686Z] next(function_gen) # first yield +[2024-03-07T16:33:08.686Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.686Z] except StopIteration: +[2024-03-07T16:33:08.687Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.687Z] else: +[2024-03-07T16:33:08.687Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.687Z] if res is not None: +[2024-03-07T16:33:08.687Z] results.append(res) +[2024-03-07T16:33:08.687Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.687Z] break +[2024-03-07T16:33:08.687Z] except BaseException as exc: +[2024-03-07T16:33:08.687Z] exception = exc +[2024-03-07T16:33:08.687Z] finally: +[2024-03-07T16:33:08.687Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.687Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.687Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.687Z] result = results[0] if results else None +[2024-03-07T16:33:08.687Z] else: +[2024-03-07T16:33:08.687Z] result = results +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.687Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.687Z] try: +[2024-03-07T16:33:08.687Z] if exception is not None: +[2024-03-07T16:33:08.687Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.687Z] else: +[2024-03-07T16:33:08.687Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.687Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.687Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.687Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.687Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.687Z] except StopIteration as si: +[2024-03-07T16:33:08.687Z] result = si.value +[2024-03-07T16:33:08.687Z] exception = None +[2024-03-07T16:33:08.687Z] continue +[2024-03-07T16:33:08.687Z] except BaseException as e: +[2024-03-07T16:33:08.687Z] exception = e +[2024-03-07T16:33:08.687Z] continue +[2024-03-07T16:33:08.687Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] if exception is not None: +[2024-03-07T16:33:08.687Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.687Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.687Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.687Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] def _multicall( +[2024-03-07T16:33:08.687Z] hook_name: str, +[2024-03-07T16:33:08.687Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.687Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.687Z] firstresult: bool, +[2024-03-07T16:33:08.687Z] ) -> object | list[object]: +[2024-03-07T16:33:08.687Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.687Z] result(s). +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.687Z] """ +[2024-03-07T16:33:08.687Z] __tracebackhide__ = True +[2024-03-07T16:33:08.687Z] results: list[object] = [] +[2024-03-07T16:33:08.687Z] exception = None +[2024-03-07T16:33:08.687Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.687Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.687Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.687Z] try: +[2024-03-07T16:33:08.687Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.687Z] try: +[2024-03-07T16:33:08.687Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.687Z] except KeyError: +[2024-03-07T16:33:08.687Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.687Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.687Z] raise HookCallError( +[2024-03-07T16:33:08.687Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.687Z] ) +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.687Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.687Z] try: +[2024-03-07T16:33:08.687Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.687Z] # which is the desired response. +[2024-03-07T16:33:08.687Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.687Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.687Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.687Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.687Z] except StopIteration: +[2024-03-07T16:33:08.687Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.687Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.687Z] try: +[2024-03-07T16:33:08.687Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.687Z] # which is the desired response. +[2024-03-07T16:33:08.687Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.687Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.687Z] next(function_gen) # first yield +[2024-03-07T16:33:08.687Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.687Z] except StopIteration: +[2024-03-07T16:33:08.687Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.687Z] else: +[2024-03-07T16:33:08.687Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.687Z] if res is not None: +[2024-03-07T16:33:08.687Z] results.append(res) +[2024-03-07T16:33:08.687Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.687Z] break +[2024-03-07T16:33:08.687Z] except BaseException as exc: +[2024-03-07T16:33:08.687Z] exception = exc +[2024-03-07T16:33:08.687Z] finally: +[2024-03-07T16:33:08.687Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.687Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.687Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.687Z] result = results[0] if results else None +[2024-03-07T16:33:08.687Z] else: +[2024-03-07T16:33:08.687Z] result = results +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.687Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.687Z] try: +[2024-03-07T16:33:08.687Z] if exception is not None: +[2024-03-07T16:33:08.687Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.687Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.687Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.687Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.687Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.687Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.687Z] try: +[2024-03-07T16:33:08.687Z] > yield +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.687Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.687Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.687Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.687Z] +[2024-03-07T16:33:08.687Z] def _multicall( +[2024-03-07T16:33:08.688Z] hook_name: str, +[2024-03-07T16:33:08.688Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.688Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.688Z] firstresult: bool, +[2024-03-07T16:33:08.688Z] ) -> object | list[object]: +[2024-03-07T16:33:08.688Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.688Z] result(s). +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.688Z] """ +[2024-03-07T16:33:08.688Z] __tracebackhide__ = True +[2024-03-07T16:33:08.688Z] results: list[object] = [] +[2024-03-07T16:33:08.688Z] exception = None +[2024-03-07T16:33:08.688Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.688Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.688Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.688Z] try: +[2024-03-07T16:33:08.688Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.688Z] try: +[2024-03-07T16:33:08.688Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.688Z] except KeyError: +[2024-03-07T16:33:08.688Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.688Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.688Z] raise HookCallError( +[2024-03-07T16:33:08.688Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.688Z] ) +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.688Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.688Z] try: +[2024-03-07T16:33:08.688Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.688Z] # which is the desired response. +[2024-03-07T16:33:08.688Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.688Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.688Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.688Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.688Z] except StopIteration: +[2024-03-07T16:33:08.688Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.688Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.688Z] try: +[2024-03-07T16:33:08.688Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.688Z] # which is the desired response. +[2024-03-07T16:33:08.688Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.688Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.688Z] next(function_gen) # first yield +[2024-03-07T16:33:08.688Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.688Z] except StopIteration: +[2024-03-07T16:33:08.688Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.688Z] else: +[2024-03-07T16:33:08.688Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.688Z] if res is not None: +[2024-03-07T16:33:08.688Z] results.append(res) +[2024-03-07T16:33:08.688Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.688Z] break +[2024-03-07T16:33:08.688Z] except BaseException as exc: +[2024-03-07T16:33:08.688Z] exception = exc +[2024-03-07T16:33:08.688Z] finally: +[2024-03-07T16:33:08.688Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.688Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.688Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.688Z] result = results[0] if results else None +[2024-03-07T16:33:08.688Z] else: +[2024-03-07T16:33:08.688Z] result = results +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.688Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.688Z] try: +[2024-03-07T16:33:08.688Z] if exception is not None: +[2024-03-07T16:33:08.688Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.688Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.688Z] item = +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.688Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.688Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.688Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.688Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.688Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.688Z] item = , when = 'setup' +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.688Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.688Z] with catching_logs( +[2024-03-07T16:33:08.688Z] self.caplog_handler, +[2024-03-07T16:33:08.688Z] level=self.log_level, +[2024-03-07T16:33:08.688Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.688Z] self.report_handler, +[2024-03-07T16:33:08.688Z] level=self.log_level, +[2024-03-07T16:33:08.688Z] ) as report_handler: +[2024-03-07T16:33:08.688Z] caplog_handler.reset() +[2024-03-07T16:33:08.688Z] report_handler.reset() +[2024-03-07T16:33:08.688Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.688Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] try: +[2024-03-07T16:33:08.688Z] > yield +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.688Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.688Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.688Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] def _multicall( +[2024-03-07T16:33:08.688Z] hook_name: str, +[2024-03-07T16:33:08.688Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.688Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.688Z] firstresult: bool, +[2024-03-07T16:33:08.688Z] ) -> object | list[object]: +[2024-03-07T16:33:08.688Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.688Z] result(s). +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.688Z] """ +[2024-03-07T16:33:08.688Z] __tracebackhide__ = True +[2024-03-07T16:33:08.688Z] results: list[object] = [] +[2024-03-07T16:33:08.688Z] exception = None +[2024-03-07T16:33:08.688Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.688Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.688Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.688Z] try: +[2024-03-07T16:33:08.688Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.688Z] try: +[2024-03-07T16:33:08.688Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.688Z] except KeyError: +[2024-03-07T16:33:08.688Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.688Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.688Z] raise HookCallError( +[2024-03-07T16:33:08.688Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.688Z] ) +[2024-03-07T16:33:08.688Z] +[2024-03-07T16:33:08.688Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.688Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.688Z] try: +[2024-03-07T16:33:08.688Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.688Z] # which is the desired response. +[2024-03-07T16:33:08.688Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.688Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.689Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.689Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.689Z] except StopIteration: +[2024-03-07T16:33:08.689Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.689Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.689Z] try: +[2024-03-07T16:33:08.689Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.689Z] # which is the desired response. +[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.689Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.689Z] next(function_gen) # first yield +[2024-03-07T16:33:08.689Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.689Z] except StopIteration: +[2024-03-07T16:33:08.689Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.689Z] else: +[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.689Z] if res is not None: +[2024-03-07T16:33:08.689Z] results.append(res) +[2024-03-07T16:33:08.689Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.689Z] break +[2024-03-07T16:33:08.689Z] except BaseException as exc: +[2024-03-07T16:33:08.689Z] exception = exc +[2024-03-07T16:33:08.689Z] finally: +[2024-03-07T16:33:08.689Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.689Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.689Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.689Z] result = results[0] if results else None +[2024-03-07T16:33:08.689Z] else: +[2024-03-07T16:33:08.689Z] result = results +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.689Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.689Z] try: +[2024-03-07T16:33:08.689Z] if exception is not None: +[2024-03-07T16:33:08.689Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.689Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.689Z] item = +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.689Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.689Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.689Z] > return (yield) +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.689Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.689Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.689Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] def _multicall( +[2024-03-07T16:33:08.689Z] hook_name: str, +[2024-03-07T16:33:08.689Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.689Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.689Z] firstresult: bool, +[2024-03-07T16:33:08.689Z] ) -> object | list[object]: +[2024-03-07T16:33:08.689Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.689Z] result(s). +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.689Z] """ +[2024-03-07T16:33:08.689Z] __tracebackhide__ = True +[2024-03-07T16:33:08.689Z] results: list[object] = [] +[2024-03-07T16:33:08.689Z] exception = None +[2024-03-07T16:33:08.689Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.689Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.689Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.689Z] try: +[2024-03-07T16:33:08.689Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.689Z] try: +[2024-03-07T16:33:08.689Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.689Z] except KeyError: +[2024-03-07T16:33:08.689Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.689Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.689Z] raise HookCallError( +[2024-03-07T16:33:08.689Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.689Z] ) +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.689Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.689Z] try: +[2024-03-07T16:33:08.689Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.689Z] # which is the desired response. +[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.689Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.689Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.689Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.689Z] except StopIteration: +[2024-03-07T16:33:08.689Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.689Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.689Z] try: +[2024-03-07T16:33:08.689Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.689Z] # which is the desired response. +[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.689Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.689Z] next(function_gen) # first yield +[2024-03-07T16:33:08.689Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.689Z] except StopIteration: +[2024-03-07T16:33:08.689Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.689Z] else: +[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.689Z] if res is not None: +[2024-03-07T16:33:08.689Z] results.append(res) +[2024-03-07T16:33:08.689Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.689Z] break +[2024-03-07T16:33:08.689Z] except BaseException as exc: +[2024-03-07T16:33:08.689Z] exception = exc +[2024-03-07T16:33:08.689Z] finally: +[2024-03-07T16:33:08.689Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.689Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.689Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.689Z] result = results[0] if results else None +[2024-03-07T16:33:08.689Z] else: +[2024-03-07T16:33:08.689Z] result = results +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.689Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.689Z] try: +[2024-03-07T16:33:08.689Z] if exception is not None: +[2024-03-07T16:33:08.689Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.689Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.689Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.689Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.689Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.689Z] +[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.690Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.690Z] try: +[2024-03-07T16:33:08.690Z] > yield +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.690Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.690Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] def _multicall( +[2024-03-07T16:33:08.690Z] hook_name: str, +[2024-03-07T16:33:08.690Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.690Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.690Z] firstresult: bool, +[2024-03-07T16:33:08.690Z] ) -> object | list[object]: +[2024-03-07T16:33:08.690Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.690Z] result(s). +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.690Z] """ +[2024-03-07T16:33:08.690Z] __tracebackhide__ = True +[2024-03-07T16:33:08.690Z] results: list[object] = [] +[2024-03-07T16:33:08.690Z] exception = None +[2024-03-07T16:33:08.690Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.690Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.690Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.690Z] try: +[2024-03-07T16:33:08.690Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.690Z] try: +[2024-03-07T16:33:08.690Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.690Z] except KeyError: +[2024-03-07T16:33:08.690Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.690Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.690Z] raise HookCallError( +[2024-03-07T16:33:08.690Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.690Z] ) +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.690Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.690Z] try: +[2024-03-07T16:33:08.690Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.690Z] # which is the desired response. +[2024-03-07T16:33:08.690Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.690Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.690Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.690Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.690Z] except StopIteration: +[2024-03-07T16:33:08.690Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.690Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.690Z] try: +[2024-03-07T16:33:08.690Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.690Z] # which is the desired response. +[2024-03-07T16:33:08.690Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.690Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.690Z] next(function_gen) # first yield +[2024-03-07T16:33:08.690Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.690Z] except StopIteration: +[2024-03-07T16:33:08.690Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.690Z] else: +[2024-03-07T16:33:08.690Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] item = +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.690Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.690Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.690Z] item = +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.690Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.690Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.690Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.690Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.690Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.690Z] if exc: +[2024-03-07T16:33:08.690Z] > raise exc +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] cls = +[2024-03-07T16:33:08.690Z] func = . at 0x7f0abbb08550> +[2024-03-07T16:33:08.690Z] when = 'setup' +[2024-03-07T16:33:08.690Z] reraise = (, ) +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] @classmethod +[2024-03-07T16:33:08.690Z] def from_call( +[2024-03-07T16:33:08.690Z] cls, +[2024-03-07T16:33:08.690Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.690Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.690Z] reraise: Optional[ +[2024-03-07T16:33:08.690Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.690Z] ] = None, +[2024-03-07T16:33:08.690Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.690Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] :param func: +[2024-03-07T16:33:08.690Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.690Z] :param when: +[2024-03-07T16:33:08.690Z] The phase in which the function is called. +[2024-03-07T16:33:08.690Z] :param reraise: +[2024-03-07T16:33:08.690Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.690Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.690Z] """ +[2024-03-07T16:33:08.690Z] excinfo = None +[2024-03-07T16:33:08.690Z] start = timing.time() +[2024-03-07T16:33:08.690Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.690Z] try: +[2024-03-07T16:33:08.690Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.690Z] ) +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] self = +[2024-03-07T16:33:08.690Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.690Z] """Call the hook. +[2024-03-07T16:33:08.690Z] +[2024-03-07T16:33:08.690Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.691Z] specification. +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.691Z] :ref:`calling`. +[2024-03-07T16:33:08.691Z] """ +[2024-03-07T16:33:08.691Z] assert ( +[2024-03-07T16:33:08.691Z] not self.is_historic() +[2024-03-07T16:33:08.691Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.691Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.691Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.691Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.691Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.691Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.691Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.691Z] methods = [>, >, ...] +[2024-03-07T16:33:08.691Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] def _hookexec( +[2024-03-07T16:33:08.691Z] self, +[2024-03-07T16:33:08.691Z] hook_name: str, +[2024-03-07T16:33:08.691Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.691Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.691Z] firstresult: bool, +[2024-03-07T16:33:08.691Z] ) -> object | list[object]: +[2024-03-07T16:33:08.691Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.691Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.691Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.691Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.691Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.691Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] def _multicall( +[2024-03-07T16:33:08.691Z] hook_name: str, +[2024-03-07T16:33:08.691Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.691Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.691Z] firstresult: bool, +[2024-03-07T16:33:08.691Z] ) -> object | list[object]: +[2024-03-07T16:33:08.691Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.691Z] result(s). +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.691Z] """ +[2024-03-07T16:33:08.691Z] __tracebackhide__ = True +[2024-03-07T16:33:08.691Z] results: list[object] = [] +[2024-03-07T16:33:08.691Z] exception = None +[2024-03-07T16:33:08.691Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.691Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.691Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.691Z] try: +[2024-03-07T16:33:08.691Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.691Z] try: +[2024-03-07T16:33:08.691Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.691Z] except KeyError: +[2024-03-07T16:33:08.691Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.691Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.691Z] raise HookCallError( +[2024-03-07T16:33:08.691Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.691Z] ) +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.691Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.691Z] try: +[2024-03-07T16:33:08.691Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.691Z] # which is the desired response. +[2024-03-07T16:33:08.691Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.691Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.691Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.691Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.691Z] except StopIteration: +[2024-03-07T16:33:08.691Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.691Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.691Z] try: +[2024-03-07T16:33:08.691Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.691Z] # which is the desired response. +[2024-03-07T16:33:08.691Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.691Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.691Z] next(function_gen) # first yield +[2024-03-07T16:33:08.691Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.691Z] except StopIteration: +[2024-03-07T16:33:08.691Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.691Z] else: +[2024-03-07T16:33:08.691Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.691Z] if res is not None: +[2024-03-07T16:33:08.691Z] results.append(res) +[2024-03-07T16:33:08.691Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.691Z] break +[2024-03-07T16:33:08.691Z] except BaseException as exc: +[2024-03-07T16:33:08.691Z] exception = exc +[2024-03-07T16:33:08.691Z] finally: +[2024-03-07T16:33:08.691Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.691Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.691Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.691Z] result = results[0] if results else None +[2024-03-07T16:33:08.691Z] else: +[2024-03-07T16:33:08.691Z] result = results +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.691Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.691Z] try: +[2024-03-07T16:33:08.691Z] if exception is not None: +[2024-03-07T16:33:08.691Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.691Z] else: +[2024-03-07T16:33:08.691Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.691Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.691Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.691Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.691Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.691Z] except StopIteration as si: +[2024-03-07T16:33:08.691Z] result = si.value +[2024-03-07T16:33:08.691Z] exception = None +[2024-03-07T16:33:08.691Z] continue +[2024-03-07T16:33:08.691Z] except BaseException as e: +[2024-03-07T16:33:08.691Z] exception = e +[2024-03-07T16:33:08.691Z] continue +[2024-03-07T16:33:08.691Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] if exception is not None: +[2024-03-07T16:33:08.691Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.691Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.691Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.691Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] def _multicall( +[2024-03-07T16:33:08.691Z] hook_name: str, +[2024-03-07T16:33:08.691Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.691Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.691Z] firstresult: bool, +[2024-03-07T16:33:08.691Z] ) -> object | list[object]: +[2024-03-07T16:33:08.691Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.691Z] result(s). +[2024-03-07T16:33:08.691Z] +[2024-03-07T16:33:08.691Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.692Z] """ +[2024-03-07T16:33:08.692Z] __tracebackhide__ = True +[2024-03-07T16:33:08.692Z] results: list[object] = [] +[2024-03-07T16:33:08.692Z] exception = None +[2024-03-07T16:33:08.692Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.692Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.692Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.692Z] except KeyError: +[2024-03-07T16:33:08.692Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.692Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.692Z] raise HookCallError( +[2024-03-07T16:33:08.692Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.692Z] ) +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.692Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.692Z] # which is the desired response. +[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.692Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.692Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.692Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.692Z] except StopIteration: +[2024-03-07T16:33:08.692Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.692Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.692Z] # which is the desired response. +[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.692Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.692Z] next(function_gen) # first yield +[2024-03-07T16:33:08.692Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.692Z] except StopIteration: +[2024-03-07T16:33:08.692Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.692Z] else: +[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.692Z] if res is not None: +[2024-03-07T16:33:08.692Z] results.append(res) +[2024-03-07T16:33:08.692Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.692Z] break +[2024-03-07T16:33:08.692Z] except BaseException as exc: +[2024-03-07T16:33:08.692Z] exception = exc +[2024-03-07T16:33:08.692Z] finally: +[2024-03-07T16:33:08.692Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.692Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.692Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.692Z] result = results[0] if results else None +[2024-03-07T16:33:08.692Z] else: +[2024-03-07T16:33:08.692Z] result = results +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.692Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] if exception is not None: +[2024-03-07T16:33:08.692Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.692Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.692Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.692Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.692Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.692Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] > yield +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.692Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.692Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.692Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] def _multicall( +[2024-03-07T16:33:08.692Z] hook_name: str, +[2024-03-07T16:33:08.692Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.692Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.692Z] firstresult: bool, +[2024-03-07T16:33:08.692Z] ) -> object | list[object]: +[2024-03-07T16:33:08.692Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.692Z] result(s). +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.692Z] """ +[2024-03-07T16:33:08.692Z] __tracebackhide__ = True +[2024-03-07T16:33:08.692Z] results: list[object] = [] +[2024-03-07T16:33:08.692Z] exception = None +[2024-03-07T16:33:08.692Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.692Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.692Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.692Z] except KeyError: +[2024-03-07T16:33:08.692Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.692Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.692Z] raise HookCallError( +[2024-03-07T16:33:08.692Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.692Z] ) +[2024-03-07T16:33:08.692Z] +[2024-03-07T16:33:08.692Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.692Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.692Z] # which is the desired response. +[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.692Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.692Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.692Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.692Z] except StopIteration: +[2024-03-07T16:33:08.692Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.692Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.692Z] try: +[2024-03-07T16:33:08.692Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.692Z] # which is the desired response. +[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.692Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.692Z] next(function_gen) # first yield +[2024-03-07T16:33:08.692Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.692Z] except StopIteration: +[2024-03-07T16:33:08.692Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.692Z] else: +[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.692Z] if res is not None: +[2024-03-07T16:33:08.692Z] results.append(res) +[2024-03-07T16:33:08.692Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.692Z] break +[2024-03-07T16:33:08.692Z] except BaseException as exc: +[2024-03-07T16:33:08.693Z] exception = exc +[2024-03-07T16:33:08.693Z] finally: +[2024-03-07T16:33:08.693Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.693Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.693Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.693Z] result = results[0] if results else None +[2024-03-07T16:33:08.693Z] else: +[2024-03-07T16:33:08.693Z] result = results +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.693Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.693Z] try: +[2024-03-07T16:33:08.693Z] if exception is not None: +[2024-03-07T16:33:08.693Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.693Z] item = +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.693Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.693Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.693Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.693Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.693Z] item = , when = 'setup' +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.693Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.693Z] with catching_logs( +[2024-03-07T16:33:08.693Z] self.caplog_handler, +[2024-03-07T16:33:08.693Z] level=self.log_level, +[2024-03-07T16:33:08.693Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.693Z] self.report_handler, +[2024-03-07T16:33:08.693Z] level=self.log_level, +[2024-03-07T16:33:08.693Z] ) as report_handler: +[2024-03-07T16:33:08.693Z] caplog_handler.reset() +[2024-03-07T16:33:08.693Z] report_handler.reset() +[2024-03-07T16:33:08.693Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.693Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] try: +[2024-03-07T16:33:08.693Z] > yield +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.693Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.693Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] def _multicall( +[2024-03-07T16:33:08.693Z] hook_name: str, +[2024-03-07T16:33:08.693Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.693Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.693Z] firstresult: bool, +[2024-03-07T16:33:08.693Z] ) -> object | list[object]: +[2024-03-07T16:33:08.693Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.693Z] result(s). +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.693Z] """ +[2024-03-07T16:33:08.693Z] __tracebackhide__ = True +[2024-03-07T16:33:08.693Z] results: list[object] = [] +[2024-03-07T16:33:08.693Z] exception = None +[2024-03-07T16:33:08.693Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.693Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.693Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.693Z] try: +[2024-03-07T16:33:08.693Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.693Z] try: +[2024-03-07T16:33:08.693Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.693Z] except KeyError: +[2024-03-07T16:33:08.693Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.693Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.693Z] raise HookCallError( +[2024-03-07T16:33:08.693Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.693Z] ) +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.693Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.693Z] try: +[2024-03-07T16:33:08.693Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.693Z] # which is the desired response. +[2024-03-07T16:33:08.693Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.693Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.693Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.693Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.693Z] except StopIteration: +[2024-03-07T16:33:08.693Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.693Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.693Z] try: +[2024-03-07T16:33:08.693Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.693Z] # which is the desired response. +[2024-03-07T16:33:08.693Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.693Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.693Z] next(function_gen) # first yield +[2024-03-07T16:33:08.693Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.693Z] except StopIteration: +[2024-03-07T16:33:08.693Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.693Z] else: +[2024-03-07T16:33:08.693Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.693Z] if res is not None: +[2024-03-07T16:33:08.693Z] results.append(res) +[2024-03-07T16:33:08.693Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.693Z] break +[2024-03-07T16:33:08.693Z] except BaseException as exc: +[2024-03-07T16:33:08.693Z] exception = exc +[2024-03-07T16:33:08.693Z] finally: +[2024-03-07T16:33:08.693Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.693Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.693Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.693Z] result = results[0] if results else None +[2024-03-07T16:33:08.693Z] else: +[2024-03-07T16:33:08.693Z] result = results +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.693Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.693Z] try: +[2024-03-07T16:33:08.693Z] if exception is not None: +[2024-03-07T16:33:08.693Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.693Z] item = +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.693Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.693Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.693Z] > return (yield) +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.693Z] +[2024-03-07T16:33:08.693Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.694Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.694Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] def _multicall( +[2024-03-07T16:33:08.694Z] hook_name: str, +[2024-03-07T16:33:08.694Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.694Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.694Z] firstresult: bool, +[2024-03-07T16:33:08.694Z] ) -> object | list[object]: +[2024-03-07T16:33:08.694Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.694Z] result(s). +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.694Z] """ +[2024-03-07T16:33:08.694Z] __tracebackhide__ = True +[2024-03-07T16:33:08.694Z] results: list[object] = [] +[2024-03-07T16:33:08.694Z] exception = None +[2024-03-07T16:33:08.694Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.694Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.694Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.694Z] except KeyError: +[2024-03-07T16:33:08.694Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.694Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.694Z] raise HookCallError( +[2024-03-07T16:33:08.694Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.694Z] ) +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.694Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.694Z] # which is the desired response. +[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.694Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.694Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.694Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.694Z] except StopIteration: +[2024-03-07T16:33:08.694Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.694Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.694Z] # which is the desired response. +[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.694Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.694Z] next(function_gen) # first yield +[2024-03-07T16:33:08.694Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.694Z] except StopIteration: +[2024-03-07T16:33:08.694Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.694Z] else: +[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.694Z] if res is not None: +[2024-03-07T16:33:08.694Z] results.append(res) +[2024-03-07T16:33:08.694Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.694Z] break +[2024-03-07T16:33:08.694Z] except BaseException as exc: +[2024-03-07T16:33:08.694Z] exception = exc +[2024-03-07T16:33:08.694Z] finally: +[2024-03-07T16:33:08.694Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.694Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.694Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.694Z] result = results[0] if results else None +[2024-03-07T16:33:08.694Z] else: +[2024-03-07T16:33:08.694Z] result = results +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.694Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] if exception is not None: +[2024-03-07T16:33:08.694Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.694Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.694Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.694Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.694Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.694Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] > yield +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.694Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.694Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.694Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] def _multicall( +[2024-03-07T16:33:08.694Z] hook_name: str, +[2024-03-07T16:33:08.694Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.694Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.694Z] firstresult: bool, +[2024-03-07T16:33:08.694Z] ) -> object | list[object]: +[2024-03-07T16:33:08.694Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.694Z] result(s). +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.694Z] """ +[2024-03-07T16:33:08.694Z] __tracebackhide__ = True +[2024-03-07T16:33:08.694Z] results: list[object] = [] +[2024-03-07T16:33:08.694Z] exception = None +[2024-03-07T16:33:08.694Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.694Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.694Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.694Z] except KeyError: +[2024-03-07T16:33:08.694Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.694Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.694Z] raise HookCallError( +[2024-03-07T16:33:08.694Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.694Z] ) +[2024-03-07T16:33:08.694Z] +[2024-03-07T16:33:08.694Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.694Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.694Z] # which is the desired response. +[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.694Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.694Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.694Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.694Z] except StopIteration: +[2024-03-07T16:33:08.694Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.694Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.694Z] try: +[2024-03-07T16:33:08.694Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.694Z] # which is the desired response. +[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.694Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.694Z] next(function_gen) # first yield +[2024-03-07T16:33:08.694Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.694Z] except StopIteration: +[2024-03-07T16:33:08.695Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.695Z] else: +[2024-03-07T16:33:08.695Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] item = +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.695Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.695Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.695Z] item = +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.695Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.695Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.695Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.695Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.695Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.695Z] if exc: +[2024-03-07T16:33:08.695Z] > raise exc +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] cls = +[2024-03-07T16:33:08.695Z] func = . at 0x7f0abc051900> +[2024-03-07T16:33:08.695Z] when = 'setup' +[2024-03-07T16:33:08.695Z] reraise = (, ) +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] @classmethod +[2024-03-07T16:33:08.695Z] def from_call( +[2024-03-07T16:33:08.695Z] cls, +[2024-03-07T16:33:08.695Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.695Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.695Z] reraise: Optional[ +[2024-03-07T16:33:08.695Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.695Z] ] = None, +[2024-03-07T16:33:08.695Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.695Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] :param func: +[2024-03-07T16:33:08.695Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.695Z] :param when: +[2024-03-07T16:33:08.695Z] The phase in which the function is called. +[2024-03-07T16:33:08.695Z] :param reraise: +[2024-03-07T16:33:08.695Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.695Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.695Z] """ +[2024-03-07T16:33:08.695Z] excinfo = None +[2024-03-07T16:33:08.695Z] start = timing.time() +[2024-03-07T16:33:08.695Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.695Z] try: +[2024-03-07T16:33:08.695Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.695Z] ) +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] self = +[2024-03-07T16:33:08.695Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.695Z] """Call the hook. +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.695Z] specification. +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.695Z] :ref:`calling`. +[2024-03-07T16:33:08.695Z] """ +[2024-03-07T16:33:08.695Z] assert ( +[2024-03-07T16:33:08.695Z] not self.is_historic() +[2024-03-07T16:33:08.695Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.695Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.695Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.695Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.695Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.695Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.695Z] methods = [>, >, ...] +[2024-03-07T16:33:08.695Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] def _hookexec( +[2024-03-07T16:33:08.695Z] self, +[2024-03-07T16:33:08.695Z] hook_name: str, +[2024-03-07T16:33:08.695Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.695Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.695Z] firstresult: bool, +[2024-03-07T16:33:08.695Z] ) -> object | list[object]: +[2024-03-07T16:33:08.695Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.695Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.695Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.695Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.695Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] def _multicall( +[2024-03-07T16:33:08.695Z] hook_name: str, +[2024-03-07T16:33:08.695Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.695Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.695Z] firstresult: bool, +[2024-03-07T16:33:08.695Z] ) -> object | list[object]: +[2024-03-07T16:33:08.695Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.695Z] result(s). +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.695Z] """ +[2024-03-07T16:33:08.695Z] __tracebackhide__ = True +[2024-03-07T16:33:08.695Z] results: list[object] = [] +[2024-03-07T16:33:08.695Z] exception = None +[2024-03-07T16:33:08.695Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.695Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.695Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.695Z] try: +[2024-03-07T16:33:08.695Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.695Z] try: +[2024-03-07T16:33:08.695Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.695Z] except KeyError: +[2024-03-07T16:33:08.695Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.695Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.695Z] raise HookCallError( +[2024-03-07T16:33:08.695Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.695Z] ) +[2024-03-07T16:33:08.695Z] +[2024-03-07T16:33:08.695Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.695Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.695Z] try: +[2024-03-07T16:33:08.695Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.696Z] # which is the desired response. +[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.696Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.696Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.696Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.696Z] except StopIteration: +[2024-03-07T16:33:08.696Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.696Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.696Z] try: +[2024-03-07T16:33:08.696Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.696Z] # which is the desired response. +[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.696Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.696Z] next(function_gen) # first yield +[2024-03-07T16:33:08.696Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.696Z] except StopIteration: +[2024-03-07T16:33:08.696Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.696Z] else: +[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.696Z] if res is not None: +[2024-03-07T16:33:08.696Z] results.append(res) +[2024-03-07T16:33:08.696Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.696Z] break +[2024-03-07T16:33:08.696Z] except BaseException as exc: +[2024-03-07T16:33:08.696Z] exception = exc +[2024-03-07T16:33:08.696Z] finally: +[2024-03-07T16:33:08.696Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.696Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.696Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.696Z] result = results[0] if results else None +[2024-03-07T16:33:08.696Z] else: +[2024-03-07T16:33:08.696Z] result = results +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.696Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.696Z] try: +[2024-03-07T16:33:08.696Z] if exception is not None: +[2024-03-07T16:33:08.696Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.696Z] else: +[2024-03-07T16:33:08.696Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.696Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.696Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.696Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.696Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.696Z] except StopIteration as si: +[2024-03-07T16:33:08.696Z] result = si.value +[2024-03-07T16:33:08.696Z] exception = None +[2024-03-07T16:33:08.696Z] continue +[2024-03-07T16:33:08.696Z] except BaseException as e: +[2024-03-07T16:33:08.696Z] exception = e +[2024-03-07T16:33:08.696Z] continue +[2024-03-07T16:33:08.696Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] if exception is not None: +[2024-03-07T16:33:08.696Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.696Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.696Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.696Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] def _multicall( +[2024-03-07T16:33:08.696Z] hook_name: str, +[2024-03-07T16:33:08.696Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.696Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.696Z] firstresult: bool, +[2024-03-07T16:33:08.696Z] ) -> object | list[object]: +[2024-03-07T16:33:08.696Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.696Z] result(s). +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.696Z] """ +[2024-03-07T16:33:08.696Z] __tracebackhide__ = True +[2024-03-07T16:33:08.696Z] results: list[object] = [] +[2024-03-07T16:33:08.696Z] exception = None +[2024-03-07T16:33:08.696Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.696Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.696Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.696Z] try: +[2024-03-07T16:33:08.696Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.696Z] try: +[2024-03-07T16:33:08.696Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.696Z] except KeyError: +[2024-03-07T16:33:08.696Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.696Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.696Z] raise HookCallError( +[2024-03-07T16:33:08.696Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.696Z] ) +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.696Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.696Z] try: +[2024-03-07T16:33:08.696Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.696Z] # which is the desired response. +[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.696Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.696Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.696Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.696Z] except StopIteration: +[2024-03-07T16:33:08.696Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.696Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.696Z] try: +[2024-03-07T16:33:08.696Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.696Z] # which is the desired response. +[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.696Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.696Z] next(function_gen) # first yield +[2024-03-07T16:33:08.696Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.696Z] except StopIteration: +[2024-03-07T16:33:08.696Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.696Z] else: +[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.696Z] if res is not None: +[2024-03-07T16:33:08.696Z] results.append(res) +[2024-03-07T16:33:08.696Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.696Z] break +[2024-03-07T16:33:08.696Z] except BaseException as exc: +[2024-03-07T16:33:08.696Z] exception = exc +[2024-03-07T16:33:08.696Z] finally: +[2024-03-07T16:33:08.696Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.696Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.696Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.696Z] result = results[0] if results else None +[2024-03-07T16:33:08.696Z] else: +[2024-03-07T16:33:08.696Z] result = results +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.696Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.696Z] try: +[2024-03-07T16:33:08.696Z] if exception is not None: +[2024-03-07T16:33:08.696Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.696Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.696Z] +[2024-03-07T16:33:08.696Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.696Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.697Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.697Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.697Z] try: +[2024-03-07T16:33:08.697Z] > yield +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.697Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.697Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] def _multicall( +[2024-03-07T16:33:08.697Z] hook_name: str, +[2024-03-07T16:33:08.697Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.697Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.697Z] firstresult: bool, +[2024-03-07T16:33:08.697Z] ) -> object | list[object]: +[2024-03-07T16:33:08.697Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.697Z] result(s). +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.697Z] """ +[2024-03-07T16:33:08.697Z] __tracebackhide__ = True +[2024-03-07T16:33:08.697Z] results: list[object] = [] +[2024-03-07T16:33:08.697Z] exception = None +[2024-03-07T16:33:08.697Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.697Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.697Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.697Z] try: +[2024-03-07T16:33:08.697Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.697Z] try: +[2024-03-07T16:33:08.697Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.697Z] except KeyError: +[2024-03-07T16:33:08.697Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.697Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.697Z] raise HookCallError( +[2024-03-07T16:33:08.697Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.697Z] ) +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.697Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.697Z] try: +[2024-03-07T16:33:08.697Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.697Z] # which is the desired response. +[2024-03-07T16:33:08.697Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.697Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.697Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.697Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.697Z] except StopIteration: +[2024-03-07T16:33:08.697Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.697Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.697Z] try: +[2024-03-07T16:33:08.697Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.697Z] # which is the desired response. +[2024-03-07T16:33:08.697Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.697Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.697Z] next(function_gen) # first yield +[2024-03-07T16:33:08.697Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.697Z] except StopIteration: +[2024-03-07T16:33:08.697Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.697Z] else: +[2024-03-07T16:33:08.697Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.697Z] if res is not None: +[2024-03-07T16:33:08.697Z] results.append(res) +[2024-03-07T16:33:08.697Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.697Z] break +[2024-03-07T16:33:08.697Z] except BaseException as exc: +[2024-03-07T16:33:08.697Z] exception = exc +[2024-03-07T16:33:08.697Z] finally: +[2024-03-07T16:33:08.697Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.697Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.697Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.697Z] result = results[0] if results else None +[2024-03-07T16:33:08.697Z] else: +[2024-03-07T16:33:08.697Z] result = results +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.697Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.697Z] try: +[2024-03-07T16:33:08.697Z] if exception is not None: +[2024-03-07T16:33:08.697Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.697Z] item = +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.697Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.697Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.697Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.697Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.697Z] item = , when = 'setup' +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.697Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.697Z] with catching_logs( +[2024-03-07T16:33:08.697Z] self.caplog_handler, +[2024-03-07T16:33:08.697Z] level=self.log_level, +[2024-03-07T16:33:08.697Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.697Z] self.report_handler, +[2024-03-07T16:33:08.697Z] level=self.log_level, +[2024-03-07T16:33:08.697Z] ) as report_handler: +[2024-03-07T16:33:08.697Z] caplog_handler.reset() +[2024-03-07T16:33:08.697Z] report_handler.reset() +[2024-03-07T16:33:08.697Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.697Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] try: +[2024-03-07T16:33:08.697Z] > yield +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.697Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.697Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] def _multicall( +[2024-03-07T16:33:08.697Z] hook_name: str, +[2024-03-07T16:33:08.697Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.697Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.697Z] firstresult: bool, +[2024-03-07T16:33:08.697Z] ) -> object | list[object]: +[2024-03-07T16:33:08.697Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.697Z] result(s). +[2024-03-07T16:33:08.697Z] +[2024-03-07T16:33:08.697Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.697Z] """ +[2024-03-07T16:33:08.697Z] __tracebackhide__ = True +[2024-03-07T16:33:08.697Z] results: list[object] = [] +[2024-03-07T16:33:08.697Z] exception = None +[2024-03-07T16:33:08.697Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.697Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.697Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.697Z] try: +[2024-03-07T16:33:08.697Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.697Z] try: +[2024-03-07T16:33:08.698Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.698Z] except KeyError: +[2024-03-07T16:33:08.698Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.698Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.698Z] raise HookCallError( +[2024-03-07T16:33:08.698Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.698Z] ) +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.698Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.698Z] try: +[2024-03-07T16:33:08.698Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.698Z] # which is the desired response. +[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.698Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.698Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.698Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.698Z] except StopIteration: +[2024-03-07T16:33:08.698Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.698Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.698Z] try: +[2024-03-07T16:33:08.698Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.698Z] # which is the desired response. +[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.698Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.698Z] next(function_gen) # first yield +[2024-03-07T16:33:08.698Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.698Z] except StopIteration: +[2024-03-07T16:33:08.698Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.698Z] else: +[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.698Z] if res is not None: +[2024-03-07T16:33:08.698Z] results.append(res) +[2024-03-07T16:33:08.698Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.698Z] break +[2024-03-07T16:33:08.698Z] except BaseException as exc: +[2024-03-07T16:33:08.698Z] exception = exc +[2024-03-07T16:33:08.698Z] finally: +[2024-03-07T16:33:08.698Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.698Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.698Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.698Z] result = results[0] if results else None +[2024-03-07T16:33:08.698Z] else: +[2024-03-07T16:33:08.698Z] result = results +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.698Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.698Z] try: +[2024-03-07T16:33:08.698Z] if exception is not None: +[2024-03-07T16:33:08.698Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.698Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.698Z] item = +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.698Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.698Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.698Z] > return (yield) +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.698Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.698Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.698Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] def _multicall( +[2024-03-07T16:33:08.698Z] hook_name: str, +[2024-03-07T16:33:08.698Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.698Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.698Z] firstresult: bool, +[2024-03-07T16:33:08.698Z] ) -> object | list[object]: +[2024-03-07T16:33:08.698Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.698Z] result(s). +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.698Z] """ +[2024-03-07T16:33:08.698Z] __tracebackhide__ = True +[2024-03-07T16:33:08.698Z] results: list[object] = [] +[2024-03-07T16:33:08.698Z] exception = None +[2024-03-07T16:33:08.698Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.698Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.698Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.698Z] try: +[2024-03-07T16:33:08.698Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.698Z] try: +[2024-03-07T16:33:08.698Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.698Z] except KeyError: +[2024-03-07T16:33:08.698Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.698Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.698Z] raise HookCallError( +[2024-03-07T16:33:08.698Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.698Z] ) +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.698Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.698Z] try: +[2024-03-07T16:33:08.698Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.698Z] # which is the desired response. +[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.698Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.698Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.698Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.698Z] except StopIteration: +[2024-03-07T16:33:08.698Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.698Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.698Z] try: +[2024-03-07T16:33:08.698Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.698Z] # which is the desired response. +[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.698Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.698Z] next(function_gen) # first yield +[2024-03-07T16:33:08.698Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.698Z] except StopIteration: +[2024-03-07T16:33:08.698Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.698Z] else: +[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.698Z] if res is not None: +[2024-03-07T16:33:08.698Z] results.append(res) +[2024-03-07T16:33:08.698Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.698Z] break +[2024-03-07T16:33:08.698Z] except BaseException as exc: +[2024-03-07T16:33:08.698Z] exception = exc +[2024-03-07T16:33:08.698Z] finally: +[2024-03-07T16:33:08.698Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.698Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.698Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.698Z] result = results[0] if results else None +[2024-03-07T16:33:08.698Z] else: +[2024-03-07T16:33:08.698Z] result = results +[2024-03-07T16:33:08.698Z] +[2024-03-07T16:33:08.698Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.699Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.699Z] try: +[2024-03-07T16:33:08.699Z] if exception is not None: +[2024-03-07T16:33:08.699Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.699Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.699Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.699Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.699Z] try: +[2024-03-07T16:33:08.699Z] > yield +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.699Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.699Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] def _multicall( +[2024-03-07T16:33:08.699Z] hook_name: str, +[2024-03-07T16:33:08.699Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.699Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.699Z] firstresult: bool, +[2024-03-07T16:33:08.699Z] ) -> object | list[object]: +[2024-03-07T16:33:08.699Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.699Z] result(s). +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.699Z] """ +[2024-03-07T16:33:08.699Z] __tracebackhide__ = True +[2024-03-07T16:33:08.699Z] results: list[object] = [] +[2024-03-07T16:33:08.699Z] exception = None +[2024-03-07T16:33:08.699Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.699Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.699Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.699Z] try: +[2024-03-07T16:33:08.699Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.699Z] try: +[2024-03-07T16:33:08.699Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.699Z] except KeyError: +[2024-03-07T16:33:08.699Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.699Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.699Z] raise HookCallError( +[2024-03-07T16:33:08.699Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.699Z] ) +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.699Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.699Z] try: +[2024-03-07T16:33:08.699Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.699Z] # which is the desired response. +[2024-03-07T16:33:08.699Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.699Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.699Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.699Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.699Z] except StopIteration: +[2024-03-07T16:33:08.699Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.699Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.699Z] try: +[2024-03-07T16:33:08.699Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.699Z] # which is the desired response. +[2024-03-07T16:33:08.699Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.699Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.699Z] next(function_gen) # first yield +[2024-03-07T16:33:08.699Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.699Z] except StopIteration: +[2024-03-07T16:33:08.699Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.699Z] else: +[2024-03-07T16:33:08.699Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] item = +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.699Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.699Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.699Z] item = +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.699Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.699Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.699Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.699Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.699Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.699Z] if exc: +[2024-03-07T16:33:08.699Z] > raise exc +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] cls = +[2024-03-07T16:33:08.699Z] func = . at 0x7f0abbb0b520> +[2024-03-07T16:33:08.699Z] when = 'setup' +[2024-03-07T16:33:08.699Z] reraise = (, ) +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] @classmethod +[2024-03-07T16:33:08.699Z] def from_call( +[2024-03-07T16:33:08.699Z] cls, +[2024-03-07T16:33:08.699Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.699Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.699Z] reraise: Optional[ +[2024-03-07T16:33:08.699Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.699Z] ] = None, +[2024-03-07T16:33:08.699Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.699Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] :param func: +[2024-03-07T16:33:08.699Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.699Z] :param when: +[2024-03-07T16:33:08.699Z] The phase in which the function is called. +[2024-03-07T16:33:08.699Z] :param reraise: +[2024-03-07T16:33:08.699Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.699Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.699Z] """ +[2024-03-07T16:33:08.699Z] excinfo = None +[2024-03-07T16:33:08.699Z] start = timing.time() +[2024-03-07T16:33:08.699Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.699Z] try: +[2024-03-07T16:33:08.699Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.699Z] +[2024-03-07T16:33:08.699Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.699Z] ) +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.700Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] self = +[2024-03-07T16:33:08.700Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.700Z] """Call the hook. +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.700Z] specification. +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.700Z] :ref:`calling`. +[2024-03-07T16:33:08.700Z] """ +[2024-03-07T16:33:08.700Z] assert ( +[2024-03-07T16:33:08.700Z] not self.is_historic() +[2024-03-07T16:33:08.700Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.700Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.700Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.700Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.700Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.700Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.700Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.700Z] methods = [>, >, ...] +[2024-03-07T16:33:08.700Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] def _hookexec( +[2024-03-07T16:33:08.700Z] self, +[2024-03-07T16:33:08.700Z] hook_name: str, +[2024-03-07T16:33:08.700Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.700Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.700Z] firstresult: bool, +[2024-03-07T16:33:08.700Z] ) -> object | list[object]: +[2024-03-07T16:33:08.700Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.700Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.700Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.700Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.700Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.700Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] def _multicall( +[2024-03-07T16:33:08.700Z] hook_name: str, +[2024-03-07T16:33:08.700Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.700Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.700Z] firstresult: bool, +[2024-03-07T16:33:08.700Z] ) -> object | list[object]: +[2024-03-07T16:33:08.700Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.700Z] result(s). +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.700Z] """ +[2024-03-07T16:33:08.700Z] __tracebackhide__ = True +[2024-03-07T16:33:08.700Z] results: list[object] = [] +[2024-03-07T16:33:08.700Z] exception = None +[2024-03-07T16:33:08.700Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.700Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.700Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.700Z] try: +[2024-03-07T16:33:08.700Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.700Z] try: +[2024-03-07T16:33:08.700Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.700Z] except KeyError: +[2024-03-07T16:33:08.700Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.700Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.700Z] raise HookCallError( +[2024-03-07T16:33:08.700Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.700Z] ) +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.700Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.700Z] try: +[2024-03-07T16:33:08.700Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.700Z] # which is the desired response. +[2024-03-07T16:33:08.700Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.700Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.700Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.700Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.700Z] except StopIteration: +[2024-03-07T16:33:08.700Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.700Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.700Z] try: +[2024-03-07T16:33:08.700Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.700Z] # which is the desired response. +[2024-03-07T16:33:08.700Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.700Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.700Z] next(function_gen) # first yield +[2024-03-07T16:33:08.700Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.700Z] except StopIteration: +[2024-03-07T16:33:08.700Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.700Z] else: +[2024-03-07T16:33:08.700Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.700Z] if res is not None: +[2024-03-07T16:33:08.700Z] results.append(res) +[2024-03-07T16:33:08.700Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.700Z] break +[2024-03-07T16:33:08.700Z] except BaseException as exc: +[2024-03-07T16:33:08.700Z] exception = exc +[2024-03-07T16:33:08.700Z] finally: +[2024-03-07T16:33:08.700Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.700Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.700Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.700Z] result = results[0] if results else None +[2024-03-07T16:33:08.700Z] else: +[2024-03-07T16:33:08.700Z] result = results +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.700Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.700Z] try: +[2024-03-07T16:33:08.700Z] if exception is not None: +[2024-03-07T16:33:08.700Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.700Z] else: +[2024-03-07T16:33:08.700Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.700Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.700Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.700Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.700Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.700Z] except StopIteration as si: +[2024-03-07T16:33:08.700Z] result = si.value +[2024-03-07T16:33:08.700Z] exception = None +[2024-03-07T16:33:08.700Z] continue +[2024-03-07T16:33:08.700Z] except BaseException as e: +[2024-03-07T16:33:08.700Z] exception = e +[2024-03-07T16:33:08.700Z] continue +[2024-03-07T16:33:08.700Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] if exception is not None: +[2024-03-07T16:33:08.700Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.700Z] +[2024-03-07T16:33:08.700Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.701Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.701Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.701Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] def _multicall( +[2024-03-07T16:33:08.701Z] hook_name: str, +[2024-03-07T16:33:08.701Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.701Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.701Z] firstresult: bool, +[2024-03-07T16:33:08.701Z] ) -> object | list[object]: +[2024-03-07T16:33:08.701Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.701Z] result(s). +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.701Z] """ +[2024-03-07T16:33:08.701Z] __tracebackhide__ = True +[2024-03-07T16:33:08.701Z] results: list[object] = [] +[2024-03-07T16:33:08.701Z] exception = None +[2024-03-07T16:33:08.701Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.701Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.701Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.701Z] try: +[2024-03-07T16:33:08.701Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.701Z] try: +[2024-03-07T16:33:08.701Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.701Z] except KeyError: +[2024-03-07T16:33:08.701Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.701Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.701Z] raise HookCallError( +[2024-03-07T16:33:08.701Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.701Z] ) +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.701Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.701Z] try: +[2024-03-07T16:33:08.701Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.701Z] # which is the desired response. +[2024-03-07T16:33:08.701Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.701Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.701Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.701Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.701Z] except StopIteration: +[2024-03-07T16:33:08.701Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.701Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.701Z] try: +[2024-03-07T16:33:08.701Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.701Z] # which is the desired response. +[2024-03-07T16:33:08.701Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.701Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.701Z] next(function_gen) # first yield +[2024-03-07T16:33:08.701Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.701Z] except StopIteration: +[2024-03-07T16:33:08.701Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.701Z] else: +[2024-03-07T16:33:08.701Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.701Z] if res is not None: +[2024-03-07T16:33:08.701Z] results.append(res) +[2024-03-07T16:33:08.701Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.701Z] break +[2024-03-07T16:33:08.701Z] except BaseException as exc: +[2024-03-07T16:33:08.701Z] exception = exc +[2024-03-07T16:33:08.701Z] finally: +[2024-03-07T16:33:08.701Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.701Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.701Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.701Z] result = results[0] if results else None +[2024-03-07T16:33:08.701Z] else: +[2024-03-07T16:33:08.701Z] result = results +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.701Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.701Z] try: +[2024-03-07T16:33:08.701Z] if exception is not None: +[2024-03-07T16:33:08.701Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.701Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.701Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.701Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.701Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.701Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.701Z] try: +[2024-03-07T16:33:08.701Z] > yield +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.701Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.701Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.701Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] def _multicall( +[2024-03-07T16:33:08.701Z] hook_name: str, +[2024-03-07T16:33:08.701Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.701Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.701Z] firstresult: bool, +[2024-03-07T16:33:08.701Z] ) -> object | list[object]: +[2024-03-07T16:33:08.701Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.701Z] result(s). +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.701Z] """ +[2024-03-07T16:33:08.701Z] __tracebackhide__ = True +[2024-03-07T16:33:08.701Z] results: list[object] = [] +[2024-03-07T16:33:08.701Z] exception = None +[2024-03-07T16:33:08.701Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.701Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.701Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.701Z] try: +[2024-03-07T16:33:08.701Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.701Z] try: +[2024-03-07T16:33:08.701Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.701Z] except KeyError: +[2024-03-07T16:33:08.701Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.701Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.701Z] raise HookCallError( +[2024-03-07T16:33:08.701Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.701Z] ) +[2024-03-07T16:33:08.701Z] +[2024-03-07T16:33:08.701Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.701Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.701Z] try: +[2024-03-07T16:33:08.701Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.701Z] # which is the desired response. +[2024-03-07T16:33:08.701Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.701Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.701Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.701Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.701Z] except StopIteration: +[2024-03-07T16:33:08.702Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.702Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.702Z] try: +[2024-03-07T16:33:08.702Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.702Z] # which is the desired response. +[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.702Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.702Z] next(function_gen) # first yield +[2024-03-07T16:33:08.702Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.702Z] except StopIteration: +[2024-03-07T16:33:08.702Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.702Z] else: +[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.702Z] if res is not None: +[2024-03-07T16:33:08.702Z] results.append(res) +[2024-03-07T16:33:08.702Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.702Z] break +[2024-03-07T16:33:08.702Z] except BaseException as exc: +[2024-03-07T16:33:08.702Z] exception = exc +[2024-03-07T16:33:08.702Z] finally: +[2024-03-07T16:33:08.702Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.702Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.702Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.702Z] result = results[0] if results else None +[2024-03-07T16:33:08.702Z] else: +[2024-03-07T16:33:08.702Z] result = results +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.702Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.702Z] try: +[2024-03-07T16:33:08.702Z] if exception is not None: +[2024-03-07T16:33:08.702Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.702Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.702Z] item = +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.702Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.702Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.702Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.702Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.702Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.702Z] item = , when = 'setup' +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.702Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.702Z] with catching_logs( +[2024-03-07T16:33:08.702Z] self.caplog_handler, +[2024-03-07T16:33:08.702Z] level=self.log_level, +[2024-03-07T16:33:08.702Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.702Z] self.report_handler, +[2024-03-07T16:33:08.702Z] level=self.log_level, +[2024-03-07T16:33:08.702Z] ) as report_handler: +[2024-03-07T16:33:08.702Z] caplog_handler.reset() +[2024-03-07T16:33:08.702Z] report_handler.reset() +[2024-03-07T16:33:08.702Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.702Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] try: +[2024-03-07T16:33:08.702Z] > yield +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.702Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.702Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.702Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] def _multicall( +[2024-03-07T16:33:08.702Z] hook_name: str, +[2024-03-07T16:33:08.702Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.702Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.702Z] firstresult: bool, +[2024-03-07T16:33:08.702Z] ) -> object | list[object]: +[2024-03-07T16:33:08.702Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.702Z] result(s). +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.702Z] """ +[2024-03-07T16:33:08.702Z] __tracebackhide__ = True +[2024-03-07T16:33:08.702Z] results: list[object] = [] +[2024-03-07T16:33:08.702Z] exception = None +[2024-03-07T16:33:08.702Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.702Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.702Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.702Z] try: +[2024-03-07T16:33:08.702Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.702Z] try: +[2024-03-07T16:33:08.702Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.702Z] except KeyError: +[2024-03-07T16:33:08.702Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.702Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.702Z] raise HookCallError( +[2024-03-07T16:33:08.702Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.702Z] ) +[2024-03-07T16:33:08.702Z] +[2024-03-07T16:33:08.702Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.702Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.702Z] try: +[2024-03-07T16:33:08.702Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.702Z] # which is the desired response. +[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.702Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.702Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.702Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.702Z] except StopIteration: +[2024-03-07T16:33:08.702Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.702Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.702Z] try: +[2024-03-07T16:33:08.702Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.702Z] # which is the desired response. +[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.702Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.702Z] next(function_gen) # first yield +[2024-03-07T16:33:08.702Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.702Z] except StopIteration: +[2024-03-07T16:33:08.702Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.702Z] else: +[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.702Z] if res is not None: +[2024-03-07T16:33:08.702Z] results.append(res) +[2024-03-07T16:33:08.702Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.702Z] break +[2024-03-07T16:33:08.702Z] except BaseException as exc: +[2024-03-07T16:33:08.702Z] exception = exc +[2024-03-07T16:33:08.702Z] finally: +[2024-03-07T16:33:08.703Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.703Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.703Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.703Z] result = results[0] if results else None +[2024-03-07T16:33:08.703Z] else: +[2024-03-07T16:33:08.703Z] result = results +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.703Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.703Z] try: +[2024-03-07T16:33:08.703Z] if exception is not None: +[2024-03-07T16:33:08.703Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.703Z] item = +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.703Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.703Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.703Z] > return (yield) +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.703Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.703Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] def _multicall( +[2024-03-07T16:33:08.703Z] hook_name: str, +[2024-03-07T16:33:08.703Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.703Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.703Z] firstresult: bool, +[2024-03-07T16:33:08.703Z] ) -> object | list[object]: +[2024-03-07T16:33:08.703Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.703Z] result(s). +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.703Z] """ +[2024-03-07T16:33:08.703Z] __tracebackhide__ = True +[2024-03-07T16:33:08.703Z] results: list[object] = [] +[2024-03-07T16:33:08.703Z] exception = None +[2024-03-07T16:33:08.703Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.703Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.703Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.703Z] try: +[2024-03-07T16:33:08.703Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.703Z] try: +[2024-03-07T16:33:08.703Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.703Z] except KeyError: +[2024-03-07T16:33:08.703Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.703Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.703Z] raise HookCallError( +[2024-03-07T16:33:08.703Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.703Z] ) +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.703Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.703Z] try: +[2024-03-07T16:33:08.703Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.703Z] # which is the desired response. +[2024-03-07T16:33:08.703Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.703Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.703Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.703Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.703Z] except StopIteration: +[2024-03-07T16:33:08.703Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.703Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.703Z] try: +[2024-03-07T16:33:08.703Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.703Z] # which is the desired response. +[2024-03-07T16:33:08.703Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.703Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.703Z] next(function_gen) # first yield +[2024-03-07T16:33:08.703Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.703Z] except StopIteration: +[2024-03-07T16:33:08.703Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.703Z] else: +[2024-03-07T16:33:08.703Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.703Z] if res is not None: +[2024-03-07T16:33:08.703Z] results.append(res) +[2024-03-07T16:33:08.703Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.703Z] break +[2024-03-07T16:33:08.703Z] except BaseException as exc: +[2024-03-07T16:33:08.703Z] exception = exc +[2024-03-07T16:33:08.703Z] finally: +[2024-03-07T16:33:08.703Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.703Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.703Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.703Z] result = results[0] if results else None +[2024-03-07T16:33:08.703Z] else: +[2024-03-07T16:33:08.703Z] result = results +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.703Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.703Z] try: +[2024-03-07T16:33:08.703Z] if exception is not None: +[2024-03-07T16:33:08.703Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.703Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.703Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.703Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.703Z] try: +[2024-03-07T16:33:08.703Z] > yield +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.703Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.703Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] def _multicall( +[2024-03-07T16:33:08.703Z] hook_name: str, +[2024-03-07T16:33:08.703Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.703Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.703Z] firstresult: bool, +[2024-03-07T16:33:08.703Z] ) -> object | list[object]: +[2024-03-07T16:33:08.703Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.703Z] result(s). +[2024-03-07T16:33:08.703Z] +[2024-03-07T16:33:08.703Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.703Z] """ +[2024-03-07T16:33:08.703Z] __tracebackhide__ = True +[2024-03-07T16:33:08.703Z] results: list[object] = [] +[2024-03-07T16:33:08.703Z] exception = None +[2024-03-07T16:33:08.703Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.703Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.703Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.703Z] try: +[2024-03-07T16:33:08.703Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.703Z] try: +[2024-03-07T16:33:08.703Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.703Z] except KeyError: +[2024-03-07T16:33:08.703Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.704Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.704Z] raise HookCallError( +[2024-03-07T16:33:08.704Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.704Z] ) +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.704Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.704Z] try: +[2024-03-07T16:33:08.704Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.704Z] # which is the desired response. +[2024-03-07T16:33:08.704Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.704Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.704Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.704Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.704Z] except StopIteration: +[2024-03-07T16:33:08.704Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.704Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.704Z] try: +[2024-03-07T16:33:08.704Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.704Z] # which is the desired response. +[2024-03-07T16:33:08.704Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.704Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.704Z] next(function_gen) # first yield +[2024-03-07T16:33:08.704Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.704Z] except StopIteration: +[2024-03-07T16:33:08.704Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.704Z] else: +[2024-03-07T16:33:08.704Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.704Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] item = +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.704Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.704Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.704Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.704Z] item = +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.704Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.704Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.704Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.704Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.704Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.704Z] if exc: +[2024-03-07T16:33:08.704Z] raise exc +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.704Z] assert col not in self.stack +[2024-03-07T16:33:08.704Z] # Push onto the stack. +[2024-03-07T16:33:08.704Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.704Z] try: +[2024-03-07T16:33:08.704Z] col.setup() +[2024-03-07T16:33:08.704Z] except TEST_OUTCOME as exc: +[2024-03-07T16:33:08.704Z] self.stack[col] = (self.stack[col][0], exc) +[2024-03-07T16:33:08.704Z] > raise exc +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: +[2024-03-07T16:33:08.704Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.704Z] item = +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.704Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.704Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.704Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.704Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.704Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.704Z] if exc: +[2024-03-07T16:33:08.704Z] raise exc +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.704Z] assert col not in self.stack +[2024-03-07T16:33:08.704Z] # Push onto the stack. +[2024-03-07T16:33:08.704Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.704Z] try: +[2024-03-07T16:33:08.704Z] > col.setup() +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: +[2024-03-07T16:33:08.704Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] self = +[2024-03-07T16:33:08.704Z] +[2024-03-07T16:33:08.704Z] def setup(self): +[2024-03-07T16:33:08.704Z] """ +[2024-03-07T16:33:08.704Z] Called by pytest to setup the collector cells in . +[2024-03-07T16:33:08.704Z] Here we start a kernel and setup the sanitize patterns. +[2024-03-07T16:33:08.704Z] """ +[2024-03-07T16:33:08.704Z] # we've already checked that --nbval-current-env and +[2024-03-07T16:33:08.704Z] # --nbval-kernel-name were not both supplied +[2024-03-07T16:33:08.704Z] if self.parent.config.option.nbval_current_env: +[2024-03-07T16:33:08.704Z] kernel_name = CURRENT_ENV_KERNEL_NAME +[2024-03-07T16:33:08.704Z] elif self.parent.config.option.nbval_kernel_name: +[2024-03-07T16:33:08.704Z] kernel_name = self.parent.config.option.nbval_kernel_name +[2024-03-07T16:33:08.704Z] else: +[2024-03-07T16:33:08.704Z] kernel_name = self.nb.metadata.get( +[2024-03-07T16:33:08.704Z] 'kernelspec', {}).get('name', 'python') +[2024-03-07T16:33:08.704Z] > self.kernel = RunningKernel( +[2024-03-07T16:33:08.704Z] kernel_name, +[2024-03-07T16:33:08.705Z] cwd=str(self.fspath.dirname), +[2024-03-07T16:33:08.705Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, +[2024-03-07T16:33:08.705Z] ) +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: +[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] self = +[2024-03-07T16:33:08.705Z] kernel_name = 'python' +[2024-03-07T16:33:08.705Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' +[2024-03-07T16:33:08.705Z] startup_timeout = 60 +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): +[2024-03-07T16:33:08.705Z] """ +[2024-03-07T16:33:08.705Z] Initialise a new kernel +[2024-03-07T16:33:08.705Z] specify that matplotlib is inline and connect the stderr. +[2024-03-07T16:33:08.705Z] Stores the active kernel process and its manager. +[2024-03-07T16:33:08.705Z] """ +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] > self.km, self.kc = start_new_kernel( +[2024-03-07T16:33:08.705Z] startup_timeout=startup_timeout, +[2024-03-07T16:33:08.705Z] kernel_name=kernel_name, +[2024-03-07T16:33:08.705Z] stderr=open(os.devnull, 'w'), +[2024-03-07T16:33:08.705Z] cwd=cwd, +[2024-03-07T16:33:08.705Z] ) +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: +[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] startup_timeout = 60, kernel_name = 'python' +[2024-03-07T16:33:08.705Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} +[2024-03-07T16:33:08.705Z] km = +[2024-03-07T16:33:08.705Z] kc = +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): +[2024-03-07T16:33:08.705Z] """Start a new kernel, and return its Manager and Client""" +[2024-03-07T16:33:08.705Z] logger.debug('Starting new kernel: "%s"' % kernel_name) +[2024-03-07T16:33:08.705Z] km = KernelManager(kernel_name=kernel_name, +[2024-03-07T16:33:08.705Z] kernel_spec_manager=NbvalKernelspecManager()) +[2024-03-07T16:33:08.705Z] km.start_kernel(**kwargs) +[2024-03-07T16:33:08.705Z] kc = km.client() +[2024-03-07T16:33:08.705Z] kc.start_channels() +[2024-03-07T16:33:08.705Z] try: +[2024-03-07T16:33:08.705Z] > kc.wait_for_ready(timeout=startup_timeout) +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: +[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] args = (,) +[2024-03-07T16:33:08.705Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.705Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.705Z] nest_asyncio = +[2024-03-07T16:33:08.705Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.705Z] try: +[2024-03-07T16:33:08.705Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.705Z] except RuntimeError: +[2024-03-07T16:33:08.705Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.705Z] try: +[2024-03-07T16:33:08.705Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.705Z] except RuntimeError: +[2024-03-07T16:33:08.705Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.705Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.705Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.705Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.705Z] try: +[2024-03-07T16:33:08.705Z] return loop.run_until_complete(future) +[2024-03-07T16:33:08.705Z] except BaseException as e: +[2024-03-07T16:33:08.705Z] future.cancel() +[2024-03-07T16:33:08.705Z] > raise e +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: +[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] args = (,) +[2024-03-07T16:33:08.705Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.705Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.705Z] nest_asyncio = +[2024-03-07T16:33:08.705Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.705Z] try: +[2024-03-07T16:33:08.705Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.705Z] except RuntimeError: +[2024-03-07T16:33:08.705Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.705Z] try: +[2024-03-07T16:33:08.705Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.705Z] except RuntimeError: +[2024-03-07T16:33:08.705Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.705Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.705Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.705Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.705Z] try: +[2024-03-07T16:33:08.705Z] > return loop.run_until_complete(future) +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: +[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.705Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] def run_until_complete(self, future): +[2024-03-07T16:33:08.705Z] with manage_run(self): +[2024-03-07T16:33:08.705Z] f = asyncio.ensure_future(future, loop=self) +[2024-03-07T16:33:08.705Z] if f is not future: +[2024-03-07T16:33:08.705Z] f._log_destroy_pending = False +[2024-03-07T16:33:08.705Z] while not f.done(): +[2024-03-07T16:33:08.705Z] self._run_once() +[2024-03-07T16:33:08.705Z] if self._stopping: +[2024-03-07T16:33:08.705Z] break +[2024-03-07T16:33:08.705Z] if not f.done(): +[2024-03-07T16:33:08.705Z] raise RuntimeError( +[2024-03-07T16:33:08.705Z] 'Event loop stopped before Future completed.') +[2024-03-07T16:33:08.705Z] > return f.result() +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: +[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] def result(self): +[2024-03-07T16:33:08.705Z] """Return the result this future represents. +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] If the future has been cancelled, raises CancelledError. If the +[2024-03-07T16:33:08.705Z] future's result isn't yet available, raises InvalidStateError. If +[2024-03-07T16:33:08.705Z] the future is done and has an exception set, this exception is raised. +[2024-03-07T16:33:08.705Z] """ +[2024-03-07T16:33:08.705Z] if self._state == _CANCELLED: +[2024-03-07T16:33:08.705Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.705Z] raise exc +[2024-03-07T16:33:08.705Z] if self._state != _FINISHED: +[2024-03-07T16:33:08.705Z] raise exceptions.InvalidStateError('Result is not ready.') +[2024-03-07T16:33:08.705Z] self.__log_traceback = False +[2024-03-07T16:33:08.705Z] if self._exception is not None: +[2024-03-07T16:33:08.705Z] > raise self._exception.with_traceback(self._exception_tb) +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: +[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.705Z] +[2024-03-07T16:33:08.706Z] self = None +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] def __step(self, exc=None): +[2024-03-07T16:33:08.706Z] if self.done(): +[2024-03-07T16:33:08.706Z] raise exceptions.InvalidStateError( +[2024-03-07T16:33:08.706Z] f'_step(): already done: {self!r}, {exc!r}') +[2024-03-07T16:33:08.706Z] if self._must_cancel: +[2024-03-07T16:33:08.706Z] if not isinstance(exc, exceptions.CancelledError): +[2024-03-07T16:33:08.706Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.706Z] self._must_cancel = False +[2024-03-07T16:33:08.706Z] coro = self._coro +[2024-03-07T16:33:08.706Z] self._fut_waiter = None +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] _enter_task(self._loop, self) +[2024-03-07T16:33:08.706Z] # Call either coro.throw(exc) or coro.send(None). +[2024-03-07T16:33:08.706Z] try: +[2024-03-07T16:33:08.706Z] if exc is None: +[2024-03-07T16:33:08.706Z] # We use the `send` method directly, because coroutines +[2024-03-07T16:33:08.706Z] # don't have `__iter__` and `__next__` methods. +[2024-03-07T16:33:08.706Z] > result = coro.send(None) +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: +[2024-03-07T16:33:08.706Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] self = +[2024-03-07T16:33:08.706Z] timeout = 60 +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: +[2024-03-07T16:33:08.706Z] """Waits for a response when a client is blocked +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] - Sets future time for timeout +[2024-03-07T16:33:08.706Z] - Blocks on shell channel until a message is received +[2024-03-07T16:33:08.706Z] - Exit if the kernel has died +[2024-03-07T16:33:08.706Z] - If client times out before receiving a message from the kernel, send RuntimeError +[2024-03-07T16:33:08.706Z] - Flush the IOPub channel +[2024-03-07T16:33:08.706Z] """ +[2024-03-07T16:33:08.706Z] if timeout is None: +[2024-03-07T16:33:08.706Z] timeout = float("inf") +[2024-03-07T16:33:08.706Z] abs_timeout = time.time() + timeout +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] from .manager import KernelManager +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] if not isinstance(self.parent, KernelManager): +[2024-03-07T16:33:08.706Z] # This Client was not created by a KernelManager, +[2024-03-07T16:33:08.706Z] # so wait for kernel to become responsive to heartbeats +[2024-03-07T16:33:08.706Z] # before checking for kernel_info reply +[2024-03-07T16:33:08.706Z] while not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.706Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.706Z] raise RuntimeError( +[2024-03-07T16:33:08.706Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout +[2024-03-07T16:33:08.706Z] ) +[2024-03-07T16:33:08.706Z] await asyncio.sleep(0.2) +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] # Wait for kernel info reply on shell channel +[2024-03-07T16:33:08.706Z] while True: +[2024-03-07T16:33:08.706Z] self.kernel_info() +[2024-03-07T16:33:08.706Z] try: +[2024-03-07T16:33:08.706Z] msg = await self.shell_channel.get_msg(timeout=1) +[2024-03-07T16:33:08.706Z] except Empty: +[2024-03-07T16:33:08.706Z] pass +[2024-03-07T16:33:08.706Z] else: +[2024-03-07T16:33:08.706Z] if msg["msg_type"] == "kernel_info_reply": +[2024-03-07T16:33:08.706Z] # Checking that IOPub is connected. If it is not connected, start over. +[2024-03-07T16:33:08.706Z] try: +[2024-03-07T16:33:08.706Z] await self.iopub_channel.get_msg(timeout=0.2) +[2024-03-07T16:33:08.706Z] except Empty: +[2024-03-07T16:33:08.706Z] pass +[2024-03-07T16:33:08.706Z] else: +[2024-03-07T16:33:08.706Z] self._handle_kernel_info_reply(msg) +[2024-03-07T16:33:08.706Z] break +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] if not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.706Z] raise RuntimeError("Kernel died before replying to kernel_info") +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] # Check if current time is ready check time plus timeout +[2024-03-07T16:33:08.706Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.706Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) +[2024-03-07T16:33:08.706Z] E RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError +[2024-03-07T16:33:08.706Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 5 _ +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] cls = +[2024-03-07T16:33:08.706Z] func = . at 0x7f0abc051ea0> +[2024-03-07T16:33:08.706Z] when = 'setup' +[2024-03-07T16:33:08.706Z] reraise = (, ) +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] @classmethod +[2024-03-07T16:33:08.706Z] def from_call( +[2024-03-07T16:33:08.706Z] cls, +[2024-03-07T16:33:08.706Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.706Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.706Z] reraise: Optional[ +[2024-03-07T16:33:08.706Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.706Z] ] = None, +[2024-03-07T16:33:08.706Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.706Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] :param func: +[2024-03-07T16:33:08.706Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.706Z] :param when: +[2024-03-07T16:33:08.706Z] The phase in which the function is called. +[2024-03-07T16:33:08.706Z] :param reraise: +[2024-03-07T16:33:08.706Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.706Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.706Z] """ +[2024-03-07T16:33:08.706Z] excinfo = None +[2024-03-07T16:33:08.706Z] start = timing.time() +[2024-03-07T16:33:08.706Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.706Z] try: +[2024-03-07T16:33:08.706Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.706Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.706Z] ) +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.706Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] self = +[2024-03-07T16:33:08.706Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.706Z] """Call the hook. +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.706Z] specification. +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.706Z] :ref:`calling`. +[2024-03-07T16:33:08.706Z] """ +[2024-03-07T16:33:08.706Z] assert ( +[2024-03-07T16:33:08.706Z] not self.is_historic() +[2024-03-07T16:33:08.706Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.706Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.706Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.706Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.706Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.706Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.706Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.706Z] methods = [>, >, ...] +[2024-03-07T16:33:08.706Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] def _hookexec( +[2024-03-07T16:33:08.706Z] self, +[2024-03-07T16:33:08.706Z] hook_name: str, +[2024-03-07T16:33:08.706Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.706Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.706Z] firstresult: bool, +[2024-03-07T16:33:08.706Z] ) -> object | list[object]: +[2024-03-07T16:33:08.706Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.706Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.706Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.706Z] +[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.707Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.707Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.707Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] def _multicall( +[2024-03-07T16:33:08.707Z] hook_name: str, +[2024-03-07T16:33:08.707Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.707Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.707Z] firstresult: bool, +[2024-03-07T16:33:08.707Z] ) -> object | list[object]: +[2024-03-07T16:33:08.707Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.707Z] result(s). +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.707Z] """ +[2024-03-07T16:33:08.707Z] __tracebackhide__ = True +[2024-03-07T16:33:08.707Z] results: list[object] = [] +[2024-03-07T16:33:08.707Z] exception = None +[2024-03-07T16:33:08.707Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.707Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.707Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.707Z] try: +[2024-03-07T16:33:08.707Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.707Z] try: +[2024-03-07T16:33:08.707Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.707Z] except KeyError: +[2024-03-07T16:33:08.707Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.707Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.707Z] raise HookCallError( +[2024-03-07T16:33:08.707Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.707Z] ) +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.707Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.707Z] try: +[2024-03-07T16:33:08.707Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.707Z] # which is the desired response. +[2024-03-07T16:33:08.707Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.707Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.707Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.707Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.707Z] except StopIteration: +[2024-03-07T16:33:08.707Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.707Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.707Z] try: +[2024-03-07T16:33:08.707Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.707Z] # which is the desired response. +[2024-03-07T16:33:08.707Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.707Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.707Z] next(function_gen) # first yield +[2024-03-07T16:33:08.707Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.707Z] except StopIteration: +[2024-03-07T16:33:08.707Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.707Z] else: +[2024-03-07T16:33:08.707Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.707Z] if res is not None: +[2024-03-07T16:33:08.707Z] results.append(res) +[2024-03-07T16:33:08.707Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.707Z] break +[2024-03-07T16:33:08.707Z] except BaseException as exc: +[2024-03-07T16:33:08.707Z] exception = exc +[2024-03-07T16:33:08.707Z] finally: +[2024-03-07T16:33:08.707Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.707Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.707Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.707Z] result = results[0] if results else None +[2024-03-07T16:33:08.707Z] else: +[2024-03-07T16:33:08.707Z] result = results +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.707Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.707Z] try: +[2024-03-07T16:33:08.707Z] if exception is not None: +[2024-03-07T16:33:08.707Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.707Z] else: +[2024-03-07T16:33:08.707Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.707Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.707Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.707Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.707Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.707Z] except StopIteration as si: +[2024-03-07T16:33:08.707Z] result = si.value +[2024-03-07T16:33:08.707Z] exception = None +[2024-03-07T16:33:08.707Z] continue +[2024-03-07T16:33:08.707Z] except BaseException as e: +[2024-03-07T16:33:08.707Z] exception = e +[2024-03-07T16:33:08.707Z] continue +[2024-03-07T16:33:08.707Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] if exception is not None: +[2024-03-07T16:33:08.707Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.707Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.707Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.707Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] def _multicall( +[2024-03-07T16:33:08.707Z] hook_name: str, +[2024-03-07T16:33:08.707Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.707Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.707Z] firstresult: bool, +[2024-03-07T16:33:08.707Z] ) -> object | list[object]: +[2024-03-07T16:33:08.707Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.707Z] result(s). +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.707Z] """ +[2024-03-07T16:33:08.707Z] __tracebackhide__ = True +[2024-03-07T16:33:08.707Z] results: list[object] = [] +[2024-03-07T16:33:08.707Z] exception = None +[2024-03-07T16:33:08.707Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.707Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.707Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.707Z] try: +[2024-03-07T16:33:08.707Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.707Z] try: +[2024-03-07T16:33:08.707Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.707Z] except KeyError: +[2024-03-07T16:33:08.707Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.707Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.707Z] raise HookCallError( +[2024-03-07T16:33:08.707Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.707Z] ) +[2024-03-07T16:33:08.707Z] +[2024-03-07T16:33:08.707Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.707Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.707Z] try: +[2024-03-07T16:33:08.707Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.707Z] # which is the desired response. +[2024-03-07T16:33:08.707Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.707Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.707Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.707Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.707Z] except StopIteration: +[2024-03-07T16:33:08.708Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.708Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.708Z] try: +[2024-03-07T16:33:08.708Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.708Z] # which is the desired response. +[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.708Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.708Z] next(function_gen) # first yield +[2024-03-07T16:33:08.708Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.708Z] except StopIteration: +[2024-03-07T16:33:08.708Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.708Z] else: +[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.708Z] if res is not None: +[2024-03-07T16:33:08.708Z] results.append(res) +[2024-03-07T16:33:08.708Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.708Z] break +[2024-03-07T16:33:08.708Z] except BaseException as exc: +[2024-03-07T16:33:08.708Z] exception = exc +[2024-03-07T16:33:08.708Z] finally: +[2024-03-07T16:33:08.708Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.708Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.708Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.708Z] result = results[0] if results else None +[2024-03-07T16:33:08.708Z] else: +[2024-03-07T16:33:08.708Z] result = results +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.708Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.708Z] try: +[2024-03-07T16:33:08.708Z] if exception is not None: +[2024-03-07T16:33:08.708Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.708Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.708Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.708Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.708Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.708Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.708Z] try: +[2024-03-07T16:33:08.708Z] > yield +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.708Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.708Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.708Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] def _multicall( +[2024-03-07T16:33:08.708Z] hook_name: str, +[2024-03-07T16:33:08.708Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.708Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.708Z] firstresult: bool, +[2024-03-07T16:33:08.708Z] ) -> object | list[object]: +[2024-03-07T16:33:08.708Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.708Z] result(s). +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.708Z] """ +[2024-03-07T16:33:08.708Z] __tracebackhide__ = True +[2024-03-07T16:33:08.708Z] results: list[object] = [] +[2024-03-07T16:33:08.708Z] exception = None +[2024-03-07T16:33:08.708Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.708Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.708Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.708Z] try: +[2024-03-07T16:33:08.708Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.708Z] try: +[2024-03-07T16:33:08.708Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.708Z] except KeyError: +[2024-03-07T16:33:08.708Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.708Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.708Z] raise HookCallError( +[2024-03-07T16:33:08.708Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.708Z] ) +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.708Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.708Z] try: +[2024-03-07T16:33:08.708Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.708Z] # which is the desired response. +[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.708Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.708Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.708Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.708Z] except StopIteration: +[2024-03-07T16:33:08.708Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.708Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.708Z] try: +[2024-03-07T16:33:08.708Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.708Z] # which is the desired response. +[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.708Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.708Z] next(function_gen) # first yield +[2024-03-07T16:33:08.708Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.708Z] except StopIteration: +[2024-03-07T16:33:08.708Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.708Z] else: +[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.708Z] if res is not None: +[2024-03-07T16:33:08.708Z] results.append(res) +[2024-03-07T16:33:08.708Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.708Z] break +[2024-03-07T16:33:08.708Z] except BaseException as exc: +[2024-03-07T16:33:08.708Z] exception = exc +[2024-03-07T16:33:08.708Z] finally: +[2024-03-07T16:33:08.708Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.708Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.708Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.708Z] result = results[0] if results else None +[2024-03-07T16:33:08.708Z] else: +[2024-03-07T16:33:08.708Z] result = results +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.708Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.708Z] try: +[2024-03-07T16:33:08.708Z] if exception is not None: +[2024-03-07T16:33:08.708Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.708Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.708Z] item = +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.708Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.708Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.708Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.708Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.708Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.708Z] +[2024-03-07T16:33:08.709Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.709Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.709Z] item = , when = 'setup' +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.709Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.709Z] with catching_logs( +[2024-03-07T16:33:08.709Z] self.caplog_handler, +[2024-03-07T16:33:08.709Z] level=self.log_level, +[2024-03-07T16:33:08.709Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.709Z] self.report_handler, +[2024-03-07T16:33:08.709Z] level=self.log_level, +[2024-03-07T16:33:08.709Z] ) as report_handler: +[2024-03-07T16:33:08.709Z] caplog_handler.reset() +[2024-03-07T16:33:08.709Z] report_handler.reset() +[2024-03-07T16:33:08.709Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.709Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] try: +[2024-03-07T16:33:08.709Z] > yield +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.709Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.709Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.709Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] def _multicall( +[2024-03-07T16:33:08.709Z] hook_name: str, +[2024-03-07T16:33:08.709Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.709Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.709Z] firstresult: bool, +[2024-03-07T16:33:08.709Z] ) -> object | list[object]: +[2024-03-07T16:33:08.709Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.709Z] result(s). +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.709Z] """ +[2024-03-07T16:33:08.709Z] __tracebackhide__ = True +[2024-03-07T16:33:08.709Z] results: list[object] = [] +[2024-03-07T16:33:08.709Z] exception = None +[2024-03-07T16:33:08.709Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.709Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.709Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.709Z] try: +[2024-03-07T16:33:08.709Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.709Z] try: +[2024-03-07T16:33:08.709Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.709Z] except KeyError: +[2024-03-07T16:33:08.709Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.709Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.709Z] raise HookCallError( +[2024-03-07T16:33:08.709Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.709Z] ) +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.709Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.709Z] try: +[2024-03-07T16:33:08.709Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.709Z] # which is the desired response. +[2024-03-07T16:33:08.709Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.709Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.709Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.709Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.709Z] except StopIteration: +[2024-03-07T16:33:08.709Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.709Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.709Z] try: +[2024-03-07T16:33:08.709Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.709Z] # which is the desired response. +[2024-03-07T16:33:08.709Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.709Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.709Z] next(function_gen) # first yield +[2024-03-07T16:33:08.709Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.709Z] except StopIteration: +[2024-03-07T16:33:08.709Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.709Z] else: +[2024-03-07T16:33:08.709Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.709Z] if res is not None: +[2024-03-07T16:33:08.709Z] results.append(res) +[2024-03-07T16:33:08.709Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.709Z] break +[2024-03-07T16:33:08.709Z] except BaseException as exc: +[2024-03-07T16:33:08.709Z] exception = exc +[2024-03-07T16:33:08.709Z] finally: +[2024-03-07T16:33:08.709Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.709Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.709Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.709Z] result = results[0] if results else None +[2024-03-07T16:33:08.709Z] else: +[2024-03-07T16:33:08.709Z] result = results +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.709Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.709Z] try: +[2024-03-07T16:33:08.709Z] if exception is not None: +[2024-03-07T16:33:08.709Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.709Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.709Z] item = +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.709Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.709Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.709Z] > return (yield) +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.709Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.709Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.709Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] def _multicall( +[2024-03-07T16:33:08.709Z] hook_name: str, +[2024-03-07T16:33:08.709Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.709Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.709Z] firstresult: bool, +[2024-03-07T16:33:08.709Z] ) -> object | list[object]: +[2024-03-07T16:33:08.709Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.709Z] result(s). +[2024-03-07T16:33:08.709Z] +[2024-03-07T16:33:08.709Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.709Z] """ +[2024-03-07T16:33:08.709Z] __tracebackhide__ = True +[2024-03-07T16:33:08.709Z] results: list[object] = [] +[2024-03-07T16:33:08.709Z] exception = None +[2024-03-07T16:33:08.709Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.709Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.709Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.709Z] try: +[2024-03-07T16:33:08.709Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.709Z] try: +[2024-03-07T16:33:08.709Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.709Z] except KeyError: +[2024-03-07T16:33:08.709Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.709Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.709Z] raise HookCallError( +[2024-03-07T16:33:08.710Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.710Z] ) +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.710Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.710Z] try: +[2024-03-07T16:33:08.710Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.710Z] # which is the desired response. +[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.710Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.710Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.710Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.710Z] except StopIteration: +[2024-03-07T16:33:08.710Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.710Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.710Z] try: +[2024-03-07T16:33:08.710Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.710Z] # which is the desired response. +[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.710Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.710Z] next(function_gen) # first yield +[2024-03-07T16:33:08.710Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.710Z] except StopIteration: +[2024-03-07T16:33:08.710Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.710Z] else: +[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.710Z] if res is not None: +[2024-03-07T16:33:08.710Z] results.append(res) +[2024-03-07T16:33:08.710Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.710Z] break +[2024-03-07T16:33:08.710Z] except BaseException as exc: +[2024-03-07T16:33:08.710Z] exception = exc +[2024-03-07T16:33:08.710Z] finally: +[2024-03-07T16:33:08.710Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.710Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.710Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.710Z] result = results[0] if results else None +[2024-03-07T16:33:08.710Z] else: +[2024-03-07T16:33:08.710Z] result = results +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.710Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.710Z] try: +[2024-03-07T16:33:08.710Z] if exception is not None: +[2024-03-07T16:33:08.710Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.710Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.710Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.710Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.710Z] try: +[2024-03-07T16:33:08.710Z] > yield +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.710Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.710Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] def _multicall( +[2024-03-07T16:33:08.710Z] hook_name: str, +[2024-03-07T16:33:08.710Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.710Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.710Z] firstresult: bool, +[2024-03-07T16:33:08.710Z] ) -> object | list[object]: +[2024-03-07T16:33:08.710Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.710Z] result(s). +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.710Z] """ +[2024-03-07T16:33:08.710Z] __tracebackhide__ = True +[2024-03-07T16:33:08.710Z] results: list[object] = [] +[2024-03-07T16:33:08.710Z] exception = None +[2024-03-07T16:33:08.710Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.710Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.710Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.710Z] try: +[2024-03-07T16:33:08.710Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.710Z] try: +[2024-03-07T16:33:08.710Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.710Z] except KeyError: +[2024-03-07T16:33:08.710Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.710Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.710Z] raise HookCallError( +[2024-03-07T16:33:08.710Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.710Z] ) +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.710Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.710Z] try: +[2024-03-07T16:33:08.710Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.710Z] # which is the desired response. +[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.710Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.710Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.710Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.710Z] except StopIteration: +[2024-03-07T16:33:08.710Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.710Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.710Z] try: +[2024-03-07T16:33:08.710Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.710Z] # which is the desired response. +[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.710Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.710Z] next(function_gen) # first yield +[2024-03-07T16:33:08.710Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.710Z] except StopIteration: +[2024-03-07T16:33:08.710Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.710Z] else: +[2024-03-07T16:33:08.710Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] item = +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.710Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.710Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.710Z] item = +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.710Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.710Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.710Z] +[2024-03-07T16:33:08.710Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.710Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.710Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.711Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.711Z] if exc: +[2024-03-07T16:33:08.711Z] > raise exc +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] cls = +[2024-03-07T16:33:08.711Z] func = . at 0x7f0ab86cab00> +[2024-03-07T16:33:08.711Z] when = 'setup' +[2024-03-07T16:33:08.711Z] reraise = (, ) +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] @classmethod +[2024-03-07T16:33:08.711Z] def from_call( +[2024-03-07T16:33:08.711Z] cls, +[2024-03-07T16:33:08.711Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.711Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.711Z] reraise: Optional[ +[2024-03-07T16:33:08.711Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.711Z] ] = None, +[2024-03-07T16:33:08.711Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.711Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] :param func: +[2024-03-07T16:33:08.711Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.711Z] :param when: +[2024-03-07T16:33:08.711Z] The phase in which the function is called. +[2024-03-07T16:33:08.711Z] :param reraise: +[2024-03-07T16:33:08.711Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.711Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.711Z] """ +[2024-03-07T16:33:08.711Z] excinfo = None +[2024-03-07T16:33:08.711Z] start = timing.time() +[2024-03-07T16:33:08.711Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.711Z] try: +[2024-03-07T16:33:08.711Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.711Z] ) +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] self = +[2024-03-07T16:33:08.711Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.711Z] """Call the hook. +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.711Z] specification. +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.711Z] :ref:`calling`. +[2024-03-07T16:33:08.711Z] """ +[2024-03-07T16:33:08.711Z] assert ( +[2024-03-07T16:33:08.711Z] not self.is_historic() +[2024-03-07T16:33:08.711Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.711Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.711Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.711Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.711Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.711Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.711Z] methods = [>, >, ...] +[2024-03-07T16:33:08.711Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] def _hookexec( +[2024-03-07T16:33:08.711Z] self, +[2024-03-07T16:33:08.711Z] hook_name: str, +[2024-03-07T16:33:08.711Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.711Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.711Z] firstresult: bool, +[2024-03-07T16:33:08.711Z] ) -> object | list[object]: +[2024-03-07T16:33:08.711Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.711Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.711Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.711Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.711Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] def _multicall( +[2024-03-07T16:33:08.711Z] hook_name: str, +[2024-03-07T16:33:08.711Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.711Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.711Z] firstresult: bool, +[2024-03-07T16:33:08.711Z] ) -> object | list[object]: +[2024-03-07T16:33:08.711Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.711Z] result(s). +[2024-03-07T16:33:08.711Z] +[2024-03-07T16:33:08.711Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.711Z] """ +[2024-03-07T16:33:08.711Z] __tracebackhide__ = True +[2024-03-07T16:33:08.711Z] results: list[object] = [] +[2024-03-07T16:33:08.711Z] exception = None +[2024-03-07T16:33:08.711Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.711Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.711Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.711Z] try: +[2024-03-07T16:33:08.711Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.711Z] try: +[2024-03-07T16:33:08.711Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.711Z] except KeyError: +[2024-03-07T16:33:08.711Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.711Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.711Z] raise HookCallError( +[2024-03-07T16:33:08.712Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.712Z] ) +[2024-03-07T16:33:08.712Z] +[2024-03-07T16:33:08.712Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.712Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.712Z] try: +[2024-03-07T16:33:08.712Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.712Z] # which is the desired response. +[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.712Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.712Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.712Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.712Z] except StopIteration: +[2024-03-07T16:33:08.712Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.712Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.712Z] try: +[2024-03-07T16:33:08.712Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.712Z] # which is the desired response. +[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.712Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.712Z] next(function_gen) # first yield +[2024-03-07T16:33:08.712Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.712Z] except StopIteration: +[2024-03-07T16:33:08.712Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.712Z] else: +[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.712Z] if res is not None: +[2024-03-07T16:33:08.712Z] results.append(res) +[2024-03-07T16:33:08.712Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.712Z] break +[2024-03-07T16:33:08.712Z] except BaseException as exc: +[2024-03-07T16:33:08.712Z] exception = exc +[2024-03-07T16:33:08.712Z] finally: +[2024-03-07T16:33:08.712Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.712Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.712Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.712Z] result = results[0] if results else None +[2024-03-07T16:33:08.712Z] else: +[2024-03-07T16:33:08.712Z] result = results +[2024-03-07T16:33:08.712Z] +[2024-03-07T16:33:08.712Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.712Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.712Z] try: +[2024-03-07T16:33:08.712Z] if exception is not None: +[2024-03-07T16:33:08.712Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.712Z] else: +[2024-03-07T16:33:08.712Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.712Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.712Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.712Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.712Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.712Z] except StopIteration as si: +[2024-03-07T16:33:08.712Z] result = si.value +[2024-03-07T16:33:08.712Z] exception = None +[2024-03-07T16:33:08.712Z] continue +[2024-03-07T16:33:08.712Z] except BaseException as e: +[2024-03-07T16:33:08.712Z] exception = e +[2024-03-07T16:33:08.712Z] continue +[2024-03-07T16:33:08.712Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.712Z] +[2024-03-07T16:33:08.712Z] if exception is not None: +[2024-03-07T16:33:08.712Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.712Z] +[2024-03-07T16:33:08.712Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.712Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.712Z] +[2024-03-07T16:33:08.712Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.712Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.712Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.712Z] +[2024-03-07T16:33:08.712Z] def _multicall( +[2024-03-07T16:33:08.712Z] hook_name: str, +[2024-03-07T16:33:08.712Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.712Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.712Z] firstresult: bool, +[2024-03-07T16:33:08.712Z] ) -> object | list[object]: +[2024-03-07T16:33:08.712Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.712Z] result(s). +[2024-03-07T16:33:08.712Z] +[2024-03-07T16:33:08.712Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.712Z] """ +[2024-03-07T16:33:08.712Z] __tracebackhide__ = True +[2024-03-07T16:33:08.712Z] results: list[object] = [] +[2024-03-07T16:33:08.712Z] exception = None +[2024-03-07T16:33:08.712Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.712Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.712Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.712Z] try: +[2024-03-07T16:33:08.712Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.712Z] try: +[2024-03-07T16:33:08.712Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.712Z] except KeyError: +[2024-03-07T16:33:08.712Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.712Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.712Z] raise HookCallError( +[2024-03-07T16:33:08.712Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.712Z] ) +[2024-03-07T16:33:08.712Z] +[2024-03-07T16:33:08.712Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.712Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.712Z] try: +[2024-03-07T16:33:08.712Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.712Z] # which is the desired response. +[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.712Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.712Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.712Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.712Z] except StopIteration: +[2024-03-07T16:33:08.712Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.712Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.712Z] try: +[2024-03-07T16:33:08.712Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.712Z] # which is the desired response. +[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.712Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.712Z] next(function_gen) # first yield +[2024-03-07T16:33:08.712Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.712Z] except StopIteration: +[2024-03-07T16:33:08.712Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.712Z] else: +[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.712Z] if res is not None: +[2024-03-07T16:33:08.712Z] results.append(res) +[2024-03-07T16:33:08.712Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.712Z] break +[2024-03-07T16:33:08.712Z] except BaseException as exc: +[2024-03-07T16:33:08.712Z] exception = exc +[2024-03-07T16:33:08.712Z] finally: +[2024-03-07T16:33:08.712Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.712Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.712Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.713Z] result = results[0] if results else None +[2024-03-07T16:33:08.713Z] else: +[2024-03-07T16:33:08.713Z] result = results +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.713Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.713Z] try: +[2024-03-07T16:33:08.713Z] if exception is not None: +[2024-03-07T16:33:08.713Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.713Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.713Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.713Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.713Z] try: +[2024-03-07T16:33:08.713Z] > yield +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.713Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.713Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] def _multicall( +[2024-03-07T16:33:08.713Z] hook_name: str, +[2024-03-07T16:33:08.713Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.713Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.713Z] firstresult: bool, +[2024-03-07T16:33:08.713Z] ) -> object | list[object]: +[2024-03-07T16:33:08.713Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.713Z] result(s). +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.713Z] """ +[2024-03-07T16:33:08.713Z] __tracebackhide__ = True +[2024-03-07T16:33:08.713Z] results: list[object] = [] +[2024-03-07T16:33:08.713Z] exception = None +[2024-03-07T16:33:08.713Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.713Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.713Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.713Z] try: +[2024-03-07T16:33:08.713Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.713Z] try: +[2024-03-07T16:33:08.713Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.713Z] except KeyError: +[2024-03-07T16:33:08.713Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.713Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.713Z] raise HookCallError( +[2024-03-07T16:33:08.713Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.713Z] ) +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.713Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.713Z] try: +[2024-03-07T16:33:08.713Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.713Z] # which is the desired response. +[2024-03-07T16:33:08.713Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.713Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.713Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.713Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.713Z] except StopIteration: +[2024-03-07T16:33:08.713Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.713Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.713Z] try: +[2024-03-07T16:33:08.713Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.713Z] # which is the desired response. +[2024-03-07T16:33:08.713Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.713Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.713Z] next(function_gen) # first yield +[2024-03-07T16:33:08.713Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.713Z] except StopIteration: +[2024-03-07T16:33:08.713Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.713Z] else: +[2024-03-07T16:33:08.713Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.713Z] if res is not None: +[2024-03-07T16:33:08.713Z] results.append(res) +[2024-03-07T16:33:08.713Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.713Z] break +[2024-03-07T16:33:08.713Z] except BaseException as exc: +[2024-03-07T16:33:08.713Z] exception = exc +[2024-03-07T16:33:08.713Z] finally: +[2024-03-07T16:33:08.713Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.713Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.713Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.713Z] result = results[0] if results else None +[2024-03-07T16:33:08.713Z] else: +[2024-03-07T16:33:08.713Z] result = results +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.713Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.713Z] try: +[2024-03-07T16:33:08.713Z] if exception is not None: +[2024-03-07T16:33:08.713Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.713Z] item = +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.713Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.713Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.713Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.713Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.713Z] item = , when = 'setup' +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.713Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.713Z] with catching_logs( +[2024-03-07T16:33:08.713Z] self.caplog_handler, +[2024-03-07T16:33:08.713Z] level=self.log_level, +[2024-03-07T16:33:08.713Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.713Z] self.report_handler, +[2024-03-07T16:33:08.713Z] level=self.log_level, +[2024-03-07T16:33:08.713Z] ) as report_handler: +[2024-03-07T16:33:08.713Z] caplog_handler.reset() +[2024-03-07T16:33:08.713Z] report_handler.reset() +[2024-03-07T16:33:08.713Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.713Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] try: +[2024-03-07T16:33:08.713Z] > yield +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.713Z] +[2024-03-07T16:33:08.713Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.713Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.714Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] def _multicall( +[2024-03-07T16:33:08.714Z] hook_name: str, +[2024-03-07T16:33:08.714Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.714Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.714Z] firstresult: bool, +[2024-03-07T16:33:08.714Z] ) -> object | list[object]: +[2024-03-07T16:33:08.714Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.714Z] result(s). +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.714Z] """ +[2024-03-07T16:33:08.714Z] __tracebackhide__ = True +[2024-03-07T16:33:08.714Z] results: list[object] = [] +[2024-03-07T16:33:08.714Z] exception = None +[2024-03-07T16:33:08.714Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.714Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.714Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.714Z] try: +[2024-03-07T16:33:08.714Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.714Z] try: +[2024-03-07T16:33:08.714Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.714Z] except KeyError: +[2024-03-07T16:33:08.714Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.714Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.714Z] raise HookCallError( +[2024-03-07T16:33:08.714Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.714Z] ) +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.714Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.714Z] try: +[2024-03-07T16:33:08.714Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.714Z] # which is the desired response. +[2024-03-07T16:33:08.714Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.714Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.714Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.714Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.714Z] except StopIteration: +[2024-03-07T16:33:08.714Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.714Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.714Z] try: +[2024-03-07T16:33:08.714Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.714Z] # which is the desired response. +[2024-03-07T16:33:08.714Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.714Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.714Z] next(function_gen) # first yield +[2024-03-07T16:33:08.714Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.714Z] except StopIteration: +[2024-03-07T16:33:08.714Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.714Z] else: +[2024-03-07T16:33:08.714Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.714Z] if res is not None: +[2024-03-07T16:33:08.714Z] results.append(res) +[2024-03-07T16:33:08.714Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.714Z] break +[2024-03-07T16:33:08.714Z] except BaseException as exc: +[2024-03-07T16:33:08.714Z] exception = exc +[2024-03-07T16:33:08.714Z] finally: +[2024-03-07T16:33:08.714Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.714Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.714Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.714Z] result = results[0] if results else None +[2024-03-07T16:33:08.714Z] else: +[2024-03-07T16:33:08.714Z] result = results +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.714Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.714Z] try: +[2024-03-07T16:33:08.714Z] if exception is not None: +[2024-03-07T16:33:08.714Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.714Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.714Z] item = +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.714Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.714Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.714Z] > return (yield) +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.714Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.714Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.714Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] def _multicall( +[2024-03-07T16:33:08.714Z] hook_name: str, +[2024-03-07T16:33:08.714Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.714Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.714Z] firstresult: bool, +[2024-03-07T16:33:08.714Z] ) -> object | list[object]: +[2024-03-07T16:33:08.714Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.714Z] result(s). +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.714Z] """ +[2024-03-07T16:33:08.714Z] __tracebackhide__ = True +[2024-03-07T16:33:08.714Z] results: list[object] = [] +[2024-03-07T16:33:08.714Z] exception = None +[2024-03-07T16:33:08.714Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.714Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.714Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.714Z] try: +[2024-03-07T16:33:08.714Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.714Z] try: +[2024-03-07T16:33:08.714Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.714Z] except KeyError: +[2024-03-07T16:33:08.714Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.714Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.714Z] raise HookCallError( +[2024-03-07T16:33:08.714Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.714Z] ) +[2024-03-07T16:33:08.714Z] +[2024-03-07T16:33:08.714Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.714Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.714Z] try: +[2024-03-07T16:33:08.714Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.714Z] # which is the desired response. +[2024-03-07T16:33:08.714Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.714Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.714Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.714Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.714Z] except StopIteration: +[2024-03-07T16:33:08.715Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.715Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.715Z] try: +[2024-03-07T16:33:08.715Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.715Z] # which is the desired response. +[2024-03-07T16:33:08.715Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.715Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.715Z] next(function_gen) # first yield +[2024-03-07T16:33:08.715Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.715Z] except StopIteration: +[2024-03-07T16:33:08.715Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.715Z] else: +[2024-03-07T16:33:08.715Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.715Z] if res is not None: +[2024-03-07T16:33:08.715Z] results.append(res) +[2024-03-07T16:33:08.715Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.715Z] break +[2024-03-07T16:33:08.715Z] except BaseException as exc: +[2024-03-07T16:33:08.715Z] exception = exc +[2024-03-07T16:33:08.715Z] finally: +[2024-03-07T16:33:08.715Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.715Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.715Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.715Z] result = results[0] if results else None +[2024-03-07T16:33:08.715Z] else: +[2024-03-07T16:33:08.715Z] result = results +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.715Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.715Z] try: +[2024-03-07T16:33:08.715Z] if exception is not None: +[2024-03-07T16:33:08.715Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.715Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.715Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.715Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.715Z] try: +[2024-03-07T16:33:08.715Z] > yield +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.715Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.715Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] def _multicall( +[2024-03-07T16:33:08.715Z] hook_name: str, +[2024-03-07T16:33:08.715Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.715Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.715Z] firstresult: bool, +[2024-03-07T16:33:08.715Z] ) -> object | list[object]: +[2024-03-07T16:33:08.715Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.715Z] result(s). +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.715Z] """ +[2024-03-07T16:33:08.715Z] __tracebackhide__ = True +[2024-03-07T16:33:08.715Z] results: list[object] = [] +[2024-03-07T16:33:08.715Z] exception = None +[2024-03-07T16:33:08.715Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.715Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.715Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.715Z] try: +[2024-03-07T16:33:08.715Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.715Z] try: +[2024-03-07T16:33:08.715Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.715Z] except KeyError: +[2024-03-07T16:33:08.715Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.715Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.715Z] raise HookCallError( +[2024-03-07T16:33:08.715Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.715Z] ) +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.715Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.715Z] try: +[2024-03-07T16:33:08.715Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.715Z] # which is the desired response. +[2024-03-07T16:33:08.715Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.715Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.715Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.715Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.715Z] except StopIteration: +[2024-03-07T16:33:08.715Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.715Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.715Z] try: +[2024-03-07T16:33:08.715Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.715Z] # which is the desired response. +[2024-03-07T16:33:08.715Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.715Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.715Z] next(function_gen) # first yield +[2024-03-07T16:33:08.715Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.715Z] except StopIteration: +[2024-03-07T16:33:08.715Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.715Z] else: +[2024-03-07T16:33:08.715Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] item = +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.715Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.715Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.715Z] item = +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.715Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.715Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.715Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.715Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.715Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.715Z] if exc: +[2024-03-07T16:33:08.715Z] > raise exc +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.715Z] +[2024-03-07T16:33:08.716Z] cls = +[2024-03-07T16:33:08.716Z] func = . at 0x7f0ab86f15a0> +[2024-03-07T16:33:08.716Z] when = 'setup' +[2024-03-07T16:33:08.716Z] reraise = (, ) +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] @classmethod +[2024-03-07T16:33:08.716Z] def from_call( +[2024-03-07T16:33:08.716Z] cls, +[2024-03-07T16:33:08.716Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.716Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.716Z] reraise: Optional[ +[2024-03-07T16:33:08.716Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.716Z] ] = None, +[2024-03-07T16:33:08.716Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.716Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] :param func: +[2024-03-07T16:33:08.716Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.716Z] :param when: +[2024-03-07T16:33:08.716Z] The phase in which the function is called. +[2024-03-07T16:33:08.716Z] :param reraise: +[2024-03-07T16:33:08.716Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.716Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.716Z] """ +[2024-03-07T16:33:08.716Z] excinfo = None +[2024-03-07T16:33:08.716Z] start = timing.time() +[2024-03-07T16:33:08.716Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.716Z] try: +[2024-03-07T16:33:08.716Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.716Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.716Z] ) +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.716Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] self = +[2024-03-07T16:33:08.716Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.716Z] """Call the hook. +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.716Z] specification. +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.716Z] :ref:`calling`. +[2024-03-07T16:33:08.716Z] """ +[2024-03-07T16:33:08.716Z] assert ( +[2024-03-07T16:33:08.716Z] not self.is_historic() +[2024-03-07T16:33:08.716Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.716Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.716Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.716Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.716Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.716Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.716Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.716Z] methods = [>, >, ...] +[2024-03-07T16:33:08.716Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] def _hookexec( +[2024-03-07T16:33:08.716Z] self, +[2024-03-07T16:33:08.716Z] hook_name: str, +[2024-03-07T16:33:08.716Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.716Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.716Z] firstresult: bool, +[2024-03-07T16:33:08.716Z] ) -> object | list[object]: +[2024-03-07T16:33:08.716Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.716Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.716Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.716Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.716Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.716Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] def _multicall( +[2024-03-07T16:33:08.716Z] hook_name: str, +[2024-03-07T16:33:08.716Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.716Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.716Z] firstresult: bool, +[2024-03-07T16:33:08.716Z] ) -> object | list[object]: +[2024-03-07T16:33:08.716Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.716Z] result(s). +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.716Z] """ +[2024-03-07T16:33:08.716Z] __tracebackhide__ = True +[2024-03-07T16:33:08.716Z] results: list[object] = [] +[2024-03-07T16:33:08.716Z] exception = None +[2024-03-07T16:33:08.716Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.716Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.716Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.716Z] try: +[2024-03-07T16:33:08.716Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.716Z] try: +[2024-03-07T16:33:08.716Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.716Z] except KeyError: +[2024-03-07T16:33:08.716Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.716Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.716Z] raise HookCallError( +[2024-03-07T16:33:08.716Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.716Z] ) +[2024-03-07T16:33:08.716Z] +[2024-03-07T16:33:08.716Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.716Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.716Z] try: +[2024-03-07T16:33:08.716Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.716Z] # which is the desired response. +[2024-03-07T16:33:08.716Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.716Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.716Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.716Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.716Z] except StopIteration: +[2024-03-07T16:33:08.716Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.716Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.716Z] try: +[2024-03-07T16:33:08.716Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.716Z] # which is the desired response. +[2024-03-07T16:33:08.716Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.716Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.716Z] next(function_gen) # first yield +[2024-03-07T16:33:08.716Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.716Z] except StopIteration: +[2024-03-07T16:33:08.716Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.716Z] else: +[2024-03-07T16:33:08.716Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.716Z] if res is not None: +[2024-03-07T16:33:08.716Z] results.append(res) +[2024-03-07T16:33:08.716Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.716Z] break +[2024-03-07T16:33:08.716Z] except BaseException as exc: +[2024-03-07T16:33:08.716Z] exception = exc +[2024-03-07T16:33:08.716Z] finally: +[2024-03-07T16:33:08.716Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.716Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.716Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.716Z] result = results[0] if results else None +[2024-03-07T16:33:08.716Z] else: +[2024-03-07T16:33:08.717Z] result = results +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.717Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.717Z] try: +[2024-03-07T16:33:08.717Z] if exception is not None: +[2024-03-07T16:33:08.717Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.717Z] else: +[2024-03-07T16:33:08.717Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.717Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.717Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.717Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.717Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.717Z] except StopIteration as si: +[2024-03-07T16:33:08.717Z] result = si.value +[2024-03-07T16:33:08.717Z] exception = None +[2024-03-07T16:33:08.717Z] continue +[2024-03-07T16:33:08.717Z] except BaseException as e: +[2024-03-07T16:33:08.717Z] exception = e +[2024-03-07T16:33:08.717Z] continue +[2024-03-07T16:33:08.717Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] if exception is not None: +[2024-03-07T16:33:08.717Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.717Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.717Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.717Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] def _multicall( +[2024-03-07T16:33:08.717Z] hook_name: str, +[2024-03-07T16:33:08.717Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.717Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.717Z] firstresult: bool, +[2024-03-07T16:33:08.717Z] ) -> object | list[object]: +[2024-03-07T16:33:08.717Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.717Z] result(s). +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.717Z] """ +[2024-03-07T16:33:08.717Z] __tracebackhide__ = True +[2024-03-07T16:33:08.717Z] results: list[object] = [] +[2024-03-07T16:33:08.717Z] exception = None +[2024-03-07T16:33:08.717Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.717Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.717Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.717Z] try: +[2024-03-07T16:33:08.717Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.717Z] try: +[2024-03-07T16:33:08.717Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.717Z] except KeyError: +[2024-03-07T16:33:08.717Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.717Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.717Z] raise HookCallError( +[2024-03-07T16:33:08.717Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.717Z] ) +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.717Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.717Z] try: +[2024-03-07T16:33:08.717Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.717Z] # which is the desired response. +[2024-03-07T16:33:08.717Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.717Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.717Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.717Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.717Z] except StopIteration: +[2024-03-07T16:33:08.717Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.717Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.717Z] try: +[2024-03-07T16:33:08.717Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.717Z] # which is the desired response. +[2024-03-07T16:33:08.717Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.717Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.717Z] next(function_gen) # first yield +[2024-03-07T16:33:08.717Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.717Z] except StopIteration: +[2024-03-07T16:33:08.717Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.717Z] else: +[2024-03-07T16:33:08.717Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.717Z] if res is not None: +[2024-03-07T16:33:08.717Z] results.append(res) +[2024-03-07T16:33:08.717Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.717Z] break +[2024-03-07T16:33:08.717Z] except BaseException as exc: +[2024-03-07T16:33:08.717Z] exception = exc +[2024-03-07T16:33:08.717Z] finally: +[2024-03-07T16:33:08.717Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.717Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.717Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.717Z] result = results[0] if results else None +[2024-03-07T16:33:08.717Z] else: +[2024-03-07T16:33:08.717Z] result = results +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.717Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.717Z] try: +[2024-03-07T16:33:08.717Z] if exception is not None: +[2024-03-07T16:33:08.717Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.717Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.717Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.717Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.717Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.717Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.717Z] try: +[2024-03-07T16:33:08.717Z] > yield +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.717Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.717Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.717Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] def _multicall( +[2024-03-07T16:33:08.717Z] hook_name: str, +[2024-03-07T16:33:08.717Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.717Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.717Z] firstresult: bool, +[2024-03-07T16:33:08.717Z] ) -> object | list[object]: +[2024-03-07T16:33:08.717Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.717Z] result(s). +[2024-03-07T16:33:08.717Z] +[2024-03-07T16:33:08.717Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.717Z] """ +[2024-03-07T16:33:08.717Z] __tracebackhide__ = True +[2024-03-07T16:33:08.717Z] results: list[object] = [] +[2024-03-07T16:33:08.717Z] exception = None +[2024-03-07T16:33:08.717Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.718Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.718Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.718Z] except KeyError: +[2024-03-07T16:33:08.718Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.718Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.718Z] raise HookCallError( +[2024-03-07T16:33:08.718Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.718Z] ) +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.718Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.718Z] # which is the desired response. +[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.718Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.718Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.718Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.718Z] except StopIteration: +[2024-03-07T16:33:08.718Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.718Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.718Z] # which is the desired response. +[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.718Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.718Z] next(function_gen) # first yield +[2024-03-07T16:33:08.718Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.718Z] except StopIteration: +[2024-03-07T16:33:08.718Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.718Z] else: +[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.718Z] if res is not None: +[2024-03-07T16:33:08.718Z] results.append(res) +[2024-03-07T16:33:08.718Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.718Z] break +[2024-03-07T16:33:08.718Z] except BaseException as exc: +[2024-03-07T16:33:08.718Z] exception = exc +[2024-03-07T16:33:08.718Z] finally: +[2024-03-07T16:33:08.718Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.718Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.718Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.718Z] result = results[0] if results else None +[2024-03-07T16:33:08.718Z] else: +[2024-03-07T16:33:08.718Z] result = results +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.718Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] if exception is not None: +[2024-03-07T16:33:08.718Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.718Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.718Z] item = +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.718Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.718Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.718Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.718Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.718Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.718Z] item = , when = 'setup' +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.718Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.718Z] with catching_logs( +[2024-03-07T16:33:08.718Z] self.caplog_handler, +[2024-03-07T16:33:08.718Z] level=self.log_level, +[2024-03-07T16:33:08.718Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.718Z] self.report_handler, +[2024-03-07T16:33:08.718Z] level=self.log_level, +[2024-03-07T16:33:08.718Z] ) as report_handler: +[2024-03-07T16:33:08.718Z] caplog_handler.reset() +[2024-03-07T16:33:08.718Z] report_handler.reset() +[2024-03-07T16:33:08.718Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.718Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] > yield +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.718Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.718Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.718Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] def _multicall( +[2024-03-07T16:33:08.718Z] hook_name: str, +[2024-03-07T16:33:08.718Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.718Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.718Z] firstresult: bool, +[2024-03-07T16:33:08.718Z] ) -> object | list[object]: +[2024-03-07T16:33:08.718Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.718Z] result(s). +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.718Z] """ +[2024-03-07T16:33:08.718Z] __tracebackhide__ = True +[2024-03-07T16:33:08.718Z] results: list[object] = [] +[2024-03-07T16:33:08.718Z] exception = None +[2024-03-07T16:33:08.718Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.718Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.718Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.718Z] except KeyError: +[2024-03-07T16:33:08.718Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.718Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.718Z] raise HookCallError( +[2024-03-07T16:33:08.718Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.718Z] ) +[2024-03-07T16:33:08.718Z] +[2024-03-07T16:33:08.718Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.718Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.718Z] # which is the desired response. +[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.718Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.718Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.718Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.718Z] except StopIteration: +[2024-03-07T16:33:08.718Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.718Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.718Z] try: +[2024-03-07T16:33:08.718Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.718Z] # which is the desired response. +[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.718Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.718Z] next(function_gen) # first yield +[2024-03-07T16:33:08.719Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.719Z] except StopIteration: +[2024-03-07T16:33:08.719Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.719Z] else: +[2024-03-07T16:33:08.719Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.719Z] if res is not None: +[2024-03-07T16:33:08.719Z] results.append(res) +[2024-03-07T16:33:08.719Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.719Z] break +[2024-03-07T16:33:08.719Z] except BaseException as exc: +[2024-03-07T16:33:08.719Z] exception = exc +[2024-03-07T16:33:08.719Z] finally: +[2024-03-07T16:33:08.719Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.719Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.719Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.719Z] result = results[0] if results else None +[2024-03-07T16:33:08.719Z] else: +[2024-03-07T16:33:08.719Z] result = results +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.719Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.719Z] try: +[2024-03-07T16:33:08.719Z] if exception is not None: +[2024-03-07T16:33:08.719Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.719Z] item = +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.719Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.719Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.719Z] > return (yield) +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.719Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.719Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] def _multicall( +[2024-03-07T16:33:08.719Z] hook_name: str, +[2024-03-07T16:33:08.719Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.719Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.719Z] firstresult: bool, +[2024-03-07T16:33:08.719Z] ) -> object | list[object]: +[2024-03-07T16:33:08.719Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.719Z] result(s). +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.719Z] """ +[2024-03-07T16:33:08.719Z] __tracebackhide__ = True +[2024-03-07T16:33:08.719Z] results: list[object] = [] +[2024-03-07T16:33:08.719Z] exception = None +[2024-03-07T16:33:08.719Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.719Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.719Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.719Z] try: +[2024-03-07T16:33:08.719Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.719Z] try: +[2024-03-07T16:33:08.719Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.719Z] except KeyError: +[2024-03-07T16:33:08.719Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.719Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.719Z] raise HookCallError( +[2024-03-07T16:33:08.719Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.719Z] ) +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.719Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.719Z] try: +[2024-03-07T16:33:08.719Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.719Z] # which is the desired response. +[2024-03-07T16:33:08.719Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.719Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.719Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.719Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.719Z] except StopIteration: +[2024-03-07T16:33:08.719Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.719Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.719Z] try: +[2024-03-07T16:33:08.719Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.719Z] # which is the desired response. +[2024-03-07T16:33:08.719Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.719Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.719Z] next(function_gen) # first yield +[2024-03-07T16:33:08.719Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.719Z] except StopIteration: +[2024-03-07T16:33:08.719Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.719Z] else: +[2024-03-07T16:33:08.719Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.719Z] if res is not None: +[2024-03-07T16:33:08.719Z] results.append(res) +[2024-03-07T16:33:08.719Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.719Z] break +[2024-03-07T16:33:08.719Z] except BaseException as exc: +[2024-03-07T16:33:08.719Z] exception = exc +[2024-03-07T16:33:08.719Z] finally: +[2024-03-07T16:33:08.719Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.719Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.719Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.719Z] result = results[0] if results else None +[2024-03-07T16:33:08.719Z] else: +[2024-03-07T16:33:08.719Z] result = results +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.719Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.719Z] try: +[2024-03-07T16:33:08.719Z] if exception is not None: +[2024-03-07T16:33:08.719Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.719Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.719Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.719Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.719Z] try: +[2024-03-07T16:33:08.719Z] > yield +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.719Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.719Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.719Z] +[2024-03-07T16:33:08.719Z] def _multicall( +[2024-03-07T16:33:08.719Z] hook_name: str, +[2024-03-07T16:33:08.719Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.719Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.719Z] firstresult: bool, +[2024-03-07T16:33:08.720Z] ) -> object | list[object]: +[2024-03-07T16:33:08.720Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.720Z] result(s). +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.720Z] """ +[2024-03-07T16:33:08.720Z] __tracebackhide__ = True +[2024-03-07T16:33:08.720Z] results: list[object] = [] +[2024-03-07T16:33:08.720Z] exception = None +[2024-03-07T16:33:08.720Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.720Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.720Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.720Z] try: +[2024-03-07T16:33:08.720Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.720Z] try: +[2024-03-07T16:33:08.720Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.720Z] except KeyError: +[2024-03-07T16:33:08.720Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.720Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.720Z] raise HookCallError( +[2024-03-07T16:33:08.720Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.720Z] ) +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.720Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.720Z] try: +[2024-03-07T16:33:08.720Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.720Z] # which is the desired response. +[2024-03-07T16:33:08.720Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.720Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.720Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.720Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.720Z] except StopIteration: +[2024-03-07T16:33:08.720Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.720Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.720Z] try: +[2024-03-07T16:33:08.720Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.720Z] # which is the desired response. +[2024-03-07T16:33:08.720Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.720Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.720Z] next(function_gen) # first yield +[2024-03-07T16:33:08.720Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.720Z] except StopIteration: +[2024-03-07T16:33:08.720Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.720Z] else: +[2024-03-07T16:33:08.720Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] item = +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.720Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.720Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.720Z] item = +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.720Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.720Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.720Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.720Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.720Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.720Z] if exc: +[2024-03-07T16:33:08.720Z] > raise exc +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] cls = +[2024-03-07T16:33:08.720Z] func = . at 0x7f0abbb08550> +[2024-03-07T16:33:08.720Z] when = 'setup' +[2024-03-07T16:33:08.720Z] reraise = (, ) +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] @classmethod +[2024-03-07T16:33:08.720Z] def from_call( +[2024-03-07T16:33:08.720Z] cls, +[2024-03-07T16:33:08.720Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.720Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.720Z] reraise: Optional[ +[2024-03-07T16:33:08.720Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.720Z] ] = None, +[2024-03-07T16:33:08.720Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.720Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] :param func: +[2024-03-07T16:33:08.720Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.720Z] :param when: +[2024-03-07T16:33:08.720Z] The phase in which the function is called. +[2024-03-07T16:33:08.720Z] :param reraise: +[2024-03-07T16:33:08.720Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.720Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.720Z] """ +[2024-03-07T16:33:08.720Z] excinfo = None +[2024-03-07T16:33:08.720Z] start = timing.time() +[2024-03-07T16:33:08.720Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.720Z] try: +[2024-03-07T16:33:08.720Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.720Z] ) +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] self = +[2024-03-07T16:33:08.720Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.720Z] """Call the hook. +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.720Z] specification. +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.720Z] :ref:`calling`. +[2024-03-07T16:33:08.720Z] """ +[2024-03-07T16:33:08.720Z] assert ( +[2024-03-07T16:33:08.720Z] not self.is_historic() +[2024-03-07T16:33:08.720Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.720Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.720Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.720Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.720Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.720Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.720Z] methods = [>, >, ...] +[2024-03-07T16:33:08.720Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.720Z] +[2024-03-07T16:33:08.720Z] def _hookexec( +[2024-03-07T16:33:08.720Z] self, +[2024-03-07T16:33:08.720Z] hook_name: str, +[2024-03-07T16:33:08.720Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.721Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.721Z] firstresult: bool, +[2024-03-07T16:33:08.721Z] ) -> object | list[object]: +[2024-03-07T16:33:08.721Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.721Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.721Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.721Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.721Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.721Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] def _multicall( +[2024-03-07T16:33:08.721Z] hook_name: str, +[2024-03-07T16:33:08.721Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.721Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.721Z] firstresult: bool, +[2024-03-07T16:33:08.721Z] ) -> object | list[object]: +[2024-03-07T16:33:08.721Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.721Z] result(s). +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.721Z] """ +[2024-03-07T16:33:08.721Z] __tracebackhide__ = True +[2024-03-07T16:33:08.721Z] results: list[object] = [] +[2024-03-07T16:33:08.721Z] exception = None +[2024-03-07T16:33:08.721Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.721Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.721Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.721Z] try: +[2024-03-07T16:33:08.721Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.721Z] try: +[2024-03-07T16:33:08.721Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.721Z] except KeyError: +[2024-03-07T16:33:08.721Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.721Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.721Z] raise HookCallError( +[2024-03-07T16:33:08.721Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.721Z] ) +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.721Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.721Z] try: +[2024-03-07T16:33:08.721Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.721Z] # which is the desired response. +[2024-03-07T16:33:08.721Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.721Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.721Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.721Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.721Z] except StopIteration: +[2024-03-07T16:33:08.721Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.721Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.721Z] try: +[2024-03-07T16:33:08.721Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.721Z] # which is the desired response. +[2024-03-07T16:33:08.721Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.721Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.721Z] next(function_gen) # first yield +[2024-03-07T16:33:08.721Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.721Z] except StopIteration: +[2024-03-07T16:33:08.721Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.721Z] else: +[2024-03-07T16:33:08.721Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.721Z] if res is not None: +[2024-03-07T16:33:08.721Z] results.append(res) +[2024-03-07T16:33:08.721Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.721Z] break +[2024-03-07T16:33:08.721Z] except BaseException as exc: +[2024-03-07T16:33:08.721Z] exception = exc +[2024-03-07T16:33:08.721Z] finally: +[2024-03-07T16:33:08.721Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.721Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.721Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.721Z] result = results[0] if results else None +[2024-03-07T16:33:08.721Z] else: +[2024-03-07T16:33:08.721Z] result = results +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.721Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.721Z] try: +[2024-03-07T16:33:08.721Z] if exception is not None: +[2024-03-07T16:33:08.721Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.721Z] else: +[2024-03-07T16:33:08.721Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.721Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.721Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.721Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.721Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.721Z] except StopIteration as si: +[2024-03-07T16:33:08.721Z] result = si.value +[2024-03-07T16:33:08.721Z] exception = None +[2024-03-07T16:33:08.721Z] continue +[2024-03-07T16:33:08.721Z] except BaseException as e: +[2024-03-07T16:33:08.721Z] exception = e +[2024-03-07T16:33:08.721Z] continue +[2024-03-07T16:33:08.721Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] if exception is not None: +[2024-03-07T16:33:08.721Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.721Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.721Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.721Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] def _multicall( +[2024-03-07T16:33:08.721Z] hook_name: str, +[2024-03-07T16:33:08.721Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.721Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.721Z] firstresult: bool, +[2024-03-07T16:33:08.721Z] ) -> object | list[object]: +[2024-03-07T16:33:08.721Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.721Z] result(s). +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.721Z] """ +[2024-03-07T16:33:08.721Z] __tracebackhide__ = True +[2024-03-07T16:33:08.721Z] results: list[object] = [] +[2024-03-07T16:33:08.721Z] exception = None +[2024-03-07T16:33:08.721Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.721Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.721Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.721Z] try: +[2024-03-07T16:33:08.721Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.721Z] try: +[2024-03-07T16:33:08.721Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.721Z] except KeyError: +[2024-03-07T16:33:08.721Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.721Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.721Z] raise HookCallError( +[2024-03-07T16:33:08.721Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.721Z] ) +[2024-03-07T16:33:08.721Z] +[2024-03-07T16:33:08.721Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.721Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.721Z] try: +[2024-03-07T16:33:08.721Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.721Z] # which is the desired response. +[2024-03-07T16:33:08.721Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.721Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.721Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.721Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.722Z] except StopIteration: +[2024-03-07T16:33:08.722Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.722Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.722Z] try: +[2024-03-07T16:33:08.722Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.722Z] # which is the desired response. +[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.722Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.722Z] next(function_gen) # first yield +[2024-03-07T16:33:08.722Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.722Z] except StopIteration: +[2024-03-07T16:33:08.722Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.722Z] else: +[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.722Z] if res is not None: +[2024-03-07T16:33:08.722Z] results.append(res) +[2024-03-07T16:33:08.722Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.722Z] break +[2024-03-07T16:33:08.722Z] except BaseException as exc: +[2024-03-07T16:33:08.722Z] exception = exc +[2024-03-07T16:33:08.722Z] finally: +[2024-03-07T16:33:08.722Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.722Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.722Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.722Z] result = results[0] if results else None +[2024-03-07T16:33:08.722Z] else: +[2024-03-07T16:33:08.722Z] result = results +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.722Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.722Z] try: +[2024-03-07T16:33:08.722Z] if exception is not None: +[2024-03-07T16:33:08.722Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.722Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.722Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.722Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.722Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.722Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.722Z] try: +[2024-03-07T16:33:08.722Z] > yield +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.722Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.722Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.722Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] def _multicall( +[2024-03-07T16:33:08.722Z] hook_name: str, +[2024-03-07T16:33:08.722Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.722Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.722Z] firstresult: bool, +[2024-03-07T16:33:08.722Z] ) -> object | list[object]: +[2024-03-07T16:33:08.722Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.722Z] result(s). +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.722Z] """ +[2024-03-07T16:33:08.722Z] __tracebackhide__ = True +[2024-03-07T16:33:08.722Z] results: list[object] = [] +[2024-03-07T16:33:08.722Z] exception = None +[2024-03-07T16:33:08.722Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.722Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.722Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.722Z] try: +[2024-03-07T16:33:08.722Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.722Z] try: +[2024-03-07T16:33:08.722Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.722Z] except KeyError: +[2024-03-07T16:33:08.722Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.722Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.722Z] raise HookCallError( +[2024-03-07T16:33:08.722Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.722Z] ) +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.722Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.722Z] try: +[2024-03-07T16:33:08.722Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.722Z] # which is the desired response. +[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.722Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.722Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.722Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.722Z] except StopIteration: +[2024-03-07T16:33:08.722Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.722Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.722Z] try: +[2024-03-07T16:33:08.722Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.722Z] # which is the desired response. +[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.722Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.722Z] next(function_gen) # first yield +[2024-03-07T16:33:08.722Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.722Z] except StopIteration: +[2024-03-07T16:33:08.722Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.722Z] else: +[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.722Z] if res is not None: +[2024-03-07T16:33:08.722Z] results.append(res) +[2024-03-07T16:33:08.722Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.722Z] break +[2024-03-07T16:33:08.722Z] except BaseException as exc: +[2024-03-07T16:33:08.722Z] exception = exc +[2024-03-07T16:33:08.722Z] finally: +[2024-03-07T16:33:08.722Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.722Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.722Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.722Z] result = results[0] if results else None +[2024-03-07T16:33:08.722Z] else: +[2024-03-07T16:33:08.722Z] result = results +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.722Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.722Z] try: +[2024-03-07T16:33:08.722Z] if exception is not None: +[2024-03-07T16:33:08.722Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.722Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.722Z] item = +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.722Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.722Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.722Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.722Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.722Z] +[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.723Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.723Z] item = , when = 'setup' +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.723Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.723Z] with catching_logs( +[2024-03-07T16:33:08.723Z] self.caplog_handler, +[2024-03-07T16:33:08.723Z] level=self.log_level, +[2024-03-07T16:33:08.723Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.723Z] self.report_handler, +[2024-03-07T16:33:08.723Z] level=self.log_level, +[2024-03-07T16:33:08.723Z] ) as report_handler: +[2024-03-07T16:33:08.723Z] caplog_handler.reset() +[2024-03-07T16:33:08.723Z] report_handler.reset() +[2024-03-07T16:33:08.723Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.723Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] try: +[2024-03-07T16:33:08.723Z] > yield +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.723Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.723Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.723Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] def _multicall( +[2024-03-07T16:33:08.723Z] hook_name: str, +[2024-03-07T16:33:08.723Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.723Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.723Z] firstresult: bool, +[2024-03-07T16:33:08.723Z] ) -> object | list[object]: +[2024-03-07T16:33:08.723Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.723Z] result(s). +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.723Z] """ +[2024-03-07T16:33:08.723Z] __tracebackhide__ = True +[2024-03-07T16:33:08.723Z] results: list[object] = [] +[2024-03-07T16:33:08.723Z] exception = None +[2024-03-07T16:33:08.723Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.723Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.723Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.723Z] try: +[2024-03-07T16:33:08.723Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.723Z] try: +[2024-03-07T16:33:08.723Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.723Z] except KeyError: +[2024-03-07T16:33:08.723Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.723Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.723Z] raise HookCallError( +[2024-03-07T16:33:08.723Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.723Z] ) +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.723Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.723Z] try: +[2024-03-07T16:33:08.723Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.723Z] # which is the desired response. +[2024-03-07T16:33:08.723Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.723Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.723Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.723Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.723Z] except StopIteration: +[2024-03-07T16:33:08.723Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.723Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.723Z] try: +[2024-03-07T16:33:08.723Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.723Z] # which is the desired response. +[2024-03-07T16:33:08.723Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.723Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.723Z] next(function_gen) # first yield +[2024-03-07T16:33:08.723Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.723Z] except StopIteration: +[2024-03-07T16:33:08.723Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.723Z] else: +[2024-03-07T16:33:08.723Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.723Z] if res is not None: +[2024-03-07T16:33:08.723Z] results.append(res) +[2024-03-07T16:33:08.723Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.723Z] break +[2024-03-07T16:33:08.723Z] except BaseException as exc: +[2024-03-07T16:33:08.723Z] exception = exc +[2024-03-07T16:33:08.723Z] finally: +[2024-03-07T16:33:08.723Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.723Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.723Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.723Z] result = results[0] if results else None +[2024-03-07T16:33:08.723Z] else: +[2024-03-07T16:33:08.723Z] result = results +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.723Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.723Z] try: +[2024-03-07T16:33:08.723Z] if exception is not None: +[2024-03-07T16:33:08.723Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.723Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.723Z] item = +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.723Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.723Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.723Z] > return (yield) +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.723Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.723Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.723Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] def _multicall( +[2024-03-07T16:33:08.723Z] hook_name: str, +[2024-03-07T16:33:08.723Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.723Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.723Z] firstresult: bool, +[2024-03-07T16:33:08.723Z] ) -> object | list[object]: +[2024-03-07T16:33:08.723Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.723Z] result(s). +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.723Z] """ +[2024-03-07T16:33:08.723Z] __tracebackhide__ = True +[2024-03-07T16:33:08.723Z] results: list[object] = [] +[2024-03-07T16:33:08.723Z] exception = None +[2024-03-07T16:33:08.723Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.723Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.723Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.723Z] try: +[2024-03-07T16:33:08.723Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.723Z] try: +[2024-03-07T16:33:08.723Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.723Z] except KeyError: +[2024-03-07T16:33:08.723Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.723Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.723Z] raise HookCallError( +[2024-03-07T16:33:08.723Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.723Z] ) +[2024-03-07T16:33:08.723Z] +[2024-03-07T16:33:08.723Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.724Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.724Z] try: +[2024-03-07T16:33:08.724Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.724Z] # which is the desired response. +[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.724Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.724Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.724Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.724Z] except StopIteration: +[2024-03-07T16:33:08.724Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.724Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.724Z] try: +[2024-03-07T16:33:08.724Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.724Z] # which is the desired response. +[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.724Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.724Z] next(function_gen) # first yield +[2024-03-07T16:33:08.724Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.724Z] except StopIteration: +[2024-03-07T16:33:08.724Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.724Z] else: +[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.724Z] if res is not None: +[2024-03-07T16:33:08.724Z] results.append(res) +[2024-03-07T16:33:08.724Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.724Z] break +[2024-03-07T16:33:08.724Z] except BaseException as exc: +[2024-03-07T16:33:08.724Z] exception = exc +[2024-03-07T16:33:08.724Z] finally: +[2024-03-07T16:33:08.724Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.724Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.724Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.724Z] result = results[0] if results else None +[2024-03-07T16:33:08.724Z] else: +[2024-03-07T16:33:08.724Z] result = results +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.724Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.724Z] try: +[2024-03-07T16:33:08.724Z] if exception is not None: +[2024-03-07T16:33:08.724Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.724Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.724Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.724Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.724Z] try: +[2024-03-07T16:33:08.724Z] > yield +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.724Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.724Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] def _multicall( +[2024-03-07T16:33:08.724Z] hook_name: str, +[2024-03-07T16:33:08.724Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.724Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.724Z] firstresult: bool, +[2024-03-07T16:33:08.724Z] ) -> object | list[object]: +[2024-03-07T16:33:08.724Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.724Z] result(s). +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.724Z] """ +[2024-03-07T16:33:08.724Z] __tracebackhide__ = True +[2024-03-07T16:33:08.724Z] results: list[object] = [] +[2024-03-07T16:33:08.724Z] exception = None +[2024-03-07T16:33:08.724Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.724Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.724Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.724Z] try: +[2024-03-07T16:33:08.724Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.724Z] try: +[2024-03-07T16:33:08.724Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.724Z] except KeyError: +[2024-03-07T16:33:08.724Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.724Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.724Z] raise HookCallError( +[2024-03-07T16:33:08.724Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.724Z] ) +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.724Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.724Z] try: +[2024-03-07T16:33:08.724Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.724Z] # which is the desired response. +[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.724Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.724Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.724Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.724Z] except StopIteration: +[2024-03-07T16:33:08.724Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.724Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.724Z] try: +[2024-03-07T16:33:08.724Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.724Z] # which is the desired response. +[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.724Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.724Z] next(function_gen) # first yield +[2024-03-07T16:33:08.724Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.724Z] except StopIteration: +[2024-03-07T16:33:08.724Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.724Z] else: +[2024-03-07T16:33:08.724Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] item = +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.724Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.724Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.724Z] item = +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.724Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.724Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.724Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.724Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.724Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.724Z] if exc: +[2024-03-07T16:33:08.724Z] > raise exc +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] cls = +[2024-03-07T16:33:08.724Z] func = . at 0x7f0abc051900> +[2024-03-07T16:33:08.724Z] when = 'setup' +[2024-03-07T16:33:08.724Z] reraise = (, ) +[2024-03-07T16:33:08.724Z] +[2024-03-07T16:33:08.724Z] @classmethod +[2024-03-07T16:33:08.725Z] def from_call( +[2024-03-07T16:33:08.725Z] cls, +[2024-03-07T16:33:08.725Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.725Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.725Z] reraise: Optional[ +[2024-03-07T16:33:08.725Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.725Z] ] = None, +[2024-03-07T16:33:08.725Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.725Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] :param func: +[2024-03-07T16:33:08.725Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.725Z] :param when: +[2024-03-07T16:33:08.725Z] The phase in which the function is called. +[2024-03-07T16:33:08.725Z] :param reraise: +[2024-03-07T16:33:08.725Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.725Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.725Z] """ +[2024-03-07T16:33:08.725Z] excinfo = None +[2024-03-07T16:33:08.725Z] start = timing.time() +[2024-03-07T16:33:08.725Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.725Z] try: +[2024-03-07T16:33:08.725Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.725Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.725Z] ) +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.725Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] self = +[2024-03-07T16:33:08.725Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.725Z] """Call the hook. +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.725Z] specification. +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.725Z] :ref:`calling`. +[2024-03-07T16:33:08.725Z] """ +[2024-03-07T16:33:08.725Z] assert ( +[2024-03-07T16:33:08.725Z] not self.is_historic() +[2024-03-07T16:33:08.725Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.725Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.725Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.725Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.725Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.725Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.725Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.725Z] methods = [>, >, ...] +[2024-03-07T16:33:08.725Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] def _hookexec( +[2024-03-07T16:33:08.725Z] self, +[2024-03-07T16:33:08.725Z] hook_name: str, +[2024-03-07T16:33:08.725Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.725Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.725Z] firstresult: bool, +[2024-03-07T16:33:08.725Z] ) -> object | list[object]: +[2024-03-07T16:33:08.725Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.725Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.725Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.725Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.725Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.725Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] def _multicall( +[2024-03-07T16:33:08.725Z] hook_name: str, +[2024-03-07T16:33:08.725Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.725Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.725Z] firstresult: bool, +[2024-03-07T16:33:08.725Z] ) -> object | list[object]: +[2024-03-07T16:33:08.725Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.725Z] result(s). +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.725Z] """ +[2024-03-07T16:33:08.725Z] __tracebackhide__ = True +[2024-03-07T16:33:08.725Z] results: list[object] = [] +[2024-03-07T16:33:08.725Z] exception = None +[2024-03-07T16:33:08.725Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.725Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.725Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.725Z] try: +[2024-03-07T16:33:08.725Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.725Z] try: +[2024-03-07T16:33:08.725Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.725Z] except KeyError: +[2024-03-07T16:33:08.725Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.725Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.725Z] raise HookCallError( +[2024-03-07T16:33:08.725Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.725Z] ) +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.725Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.725Z] try: +[2024-03-07T16:33:08.725Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.725Z] # which is the desired response. +[2024-03-07T16:33:08.725Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.725Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.725Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.725Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.725Z] except StopIteration: +[2024-03-07T16:33:08.725Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.725Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.725Z] try: +[2024-03-07T16:33:08.725Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.725Z] # which is the desired response. +[2024-03-07T16:33:08.725Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.725Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.725Z] next(function_gen) # first yield +[2024-03-07T16:33:08.725Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.725Z] except StopIteration: +[2024-03-07T16:33:08.725Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.725Z] else: +[2024-03-07T16:33:08.725Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.725Z] if res is not None: +[2024-03-07T16:33:08.725Z] results.append(res) +[2024-03-07T16:33:08.725Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.725Z] break +[2024-03-07T16:33:08.725Z] except BaseException as exc: +[2024-03-07T16:33:08.725Z] exception = exc +[2024-03-07T16:33:08.725Z] finally: +[2024-03-07T16:33:08.725Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.725Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.725Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.725Z] result = results[0] if results else None +[2024-03-07T16:33:08.725Z] else: +[2024-03-07T16:33:08.725Z] result = results +[2024-03-07T16:33:08.725Z] +[2024-03-07T16:33:08.725Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.725Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.725Z] try: +[2024-03-07T16:33:08.725Z] if exception is not None: +[2024-03-07T16:33:08.725Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.725Z] else: +[2024-03-07T16:33:08.725Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.725Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.725Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.726Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.726Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.726Z] except StopIteration as si: +[2024-03-07T16:33:08.726Z] result = si.value +[2024-03-07T16:33:08.726Z] exception = None +[2024-03-07T16:33:08.726Z] continue +[2024-03-07T16:33:08.726Z] except BaseException as e: +[2024-03-07T16:33:08.726Z] exception = e +[2024-03-07T16:33:08.726Z] continue +[2024-03-07T16:33:08.726Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] if exception is not None: +[2024-03-07T16:33:08.726Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.726Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.726Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.726Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] def _multicall( +[2024-03-07T16:33:08.726Z] hook_name: str, +[2024-03-07T16:33:08.726Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.726Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.726Z] firstresult: bool, +[2024-03-07T16:33:08.726Z] ) -> object | list[object]: +[2024-03-07T16:33:08.726Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.726Z] result(s). +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.726Z] """ +[2024-03-07T16:33:08.726Z] __tracebackhide__ = True +[2024-03-07T16:33:08.726Z] results: list[object] = [] +[2024-03-07T16:33:08.726Z] exception = None +[2024-03-07T16:33:08.726Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.726Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.726Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.726Z] try: +[2024-03-07T16:33:08.726Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.726Z] try: +[2024-03-07T16:33:08.726Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.726Z] except KeyError: +[2024-03-07T16:33:08.726Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.726Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.726Z] raise HookCallError( +[2024-03-07T16:33:08.726Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.726Z] ) +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.726Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.726Z] try: +[2024-03-07T16:33:08.726Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.726Z] # which is the desired response. +[2024-03-07T16:33:08.726Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.726Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.726Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.726Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.726Z] except StopIteration: +[2024-03-07T16:33:08.726Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.726Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.726Z] try: +[2024-03-07T16:33:08.726Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.726Z] # which is the desired response. +[2024-03-07T16:33:08.726Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.726Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.726Z] next(function_gen) # first yield +[2024-03-07T16:33:08.726Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.726Z] except StopIteration: +[2024-03-07T16:33:08.726Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.726Z] else: +[2024-03-07T16:33:08.726Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.726Z] if res is not None: +[2024-03-07T16:33:08.726Z] results.append(res) +[2024-03-07T16:33:08.726Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.726Z] break +[2024-03-07T16:33:08.726Z] except BaseException as exc: +[2024-03-07T16:33:08.726Z] exception = exc +[2024-03-07T16:33:08.726Z] finally: +[2024-03-07T16:33:08.726Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.726Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.726Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.726Z] result = results[0] if results else None +[2024-03-07T16:33:08.726Z] else: +[2024-03-07T16:33:08.726Z] result = results +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.726Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.726Z] try: +[2024-03-07T16:33:08.726Z] if exception is not None: +[2024-03-07T16:33:08.726Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.726Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.726Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.726Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.726Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.726Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.726Z] try: +[2024-03-07T16:33:08.726Z] > yield +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.726Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.726Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.726Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] def _multicall( +[2024-03-07T16:33:08.726Z] hook_name: str, +[2024-03-07T16:33:08.726Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.726Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.726Z] firstresult: bool, +[2024-03-07T16:33:08.726Z] ) -> object | list[object]: +[2024-03-07T16:33:08.726Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.726Z] result(s). +[2024-03-07T16:33:08.726Z] +[2024-03-07T16:33:08.726Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.726Z] """ +[2024-03-07T16:33:08.726Z] __tracebackhide__ = True +[2024-03-07T16:33:08.726Z] results: list[object] = [] +[2024-03-07T16:33:08.726Z] exception = None +[2024-03-07T16:33:08.726Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.726Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.726Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.726Z] try: +[2024-03-07T16:33:08.726Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.726Z] try: +[2024-03-07T16:33:08.726Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.726Z] except KeyError: +[2024-03-07T16:33:08.726Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.726Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.726Z] raise HookCallError( +[2024-03-07T16:33:08.727Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.727Z] ) +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.727Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.727Z] try: +[2024-03-07T16:33:08.727Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.727Z] # which is the desired response. +[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.727Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.727Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.727Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.727Z] except StopIteration: +[2024-03-07T16:33:08.727Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.727Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.727Z] try: +[2024-03-07T16:33:08.727Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.727Z] # which is the desired response. +[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.727Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.727Z] next(function_gen) # first yield +[2024-03-07T16:33:08.727Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.727Z] except StopIteration: +[2024-03-07T16:33:08.727Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.727Z] else: +[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.727Z] if res is not None: +[2024-03-07T16:33:08.727Z] results.append(res) +[2024-03-07T16:33:08.727Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.727Z] break +[2024-03-07T16:33:08.727Z] except BaseException as exc: +[2024-03-07T16:33:08.727Z] exception = exc +[2024-03-07T16:33:08.727Z] finally: +[2024-03-07T16:33:08.727Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.727Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.727Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.727Z] result = results[0] if results else None +[2024-03-07T16:33:08.727Z] else: +[2024-03-07T16:33:08.727Z] result = results +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.727Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.727Z] try: +[2024-03-07T16:33:08.727Z] if exception is not None: +[2024-03-07T16:33:08.727Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.727Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.727Z] item = +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.727Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.727Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.727Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.727Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.727Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.727Z] item = , when = 'setup' +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.727Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.727Z] with catching_logs( +[2024-03-07T16:33:08.727Z] self.caplog_handler, +[2024-03-07T16:33:08.727Z] level=self.log_level, +[2024-03-07T16:33:08.727Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.727Z] self.report_handler, +[2024-03-07T16:33:08.727Z] level=self.log_level, +[2024-03-07T16:33:08.727Z] ) as report_handler: +[2024-03-07T16:33:08.727Z] caplog_handler.reset() +[2024-03-07T16:33:08.727Z] report_handler.reset() +[2024-03-07T16:33:08.727Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.727Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] try: +[2024-03-07T16:33:08.727Z] > yield +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.727Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.727Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.727Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] def _multicall( +[2024-03-07T16:33:08.727Z] hook_name: str, +[2024-03-07T16:33:08.727Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.727Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.727Z] firstresult: bool, +[2024-03-07T16:33:08.727Z] ) -> object | list[object]: +[2024-03-07T16:33:08.727Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.727Z] result(s). +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.727Z] """ +[2024-03-07T16:33:08.727Z] __tracebackhide__ = True +[2024-03-07T16:33:08.727Z] results: list[object] = [] +[2024-03-07T16:33:08.727Z] exception = None +[2024-03-07T16:33:08.727Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.727Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.727Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.727Z] try: +[2024-03-07T16:33:08.727Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.727Z] try: +[2024-03-07T16:33:08.727Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.727Z] except KeyError: +[2024-03-07T16:33:08.727Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.727Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.727Z] raise HookCallError( +[2024-03-07T16:33:08.727Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.727Z] ) +[2024-03-07T16:33:08.727Z] +[2024-03-07T16:33:08.727Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.727Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.727Z] try: +[2024-03-07T16:33:08.727Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.727Z] # which is the desired response. +[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.727Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.727Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.727Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.727Z] except StopIteration: +[2024-03-07T16:33:08.727Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.727Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.727Z] try: +[2024-03-07T16:33:08.727Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.727Z] # which is the desired response. +[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.727Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.727Z] next(function_gen) # first yield +[2024-03-07T16:33:08.727Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.727Z] except StopIteration: +[2024-03-07T16:33:08.727Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.727Z] else: +[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.727Z] if res is not None: +[2024-03-07T16:33:08.727Z] results.append(res) +[2024-03-07T16:33:08.727Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.727Z] break +[2024-03-07T16:33:08.728Z] except BaseException as exc: +[2024-03-07T16:33:08.728Z] exception = exc +[2024-03-07T16:33:08.728Z] finally: +[2024-03-07T16:33:08.728Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.728Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.728Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.728Z] result = results[0] if results else None +[2024-03-07T16:33:08.728Z] else: +[2024-03-07T16:33:08.728Z] result = results +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.728Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.728Z] try: +[2024-03-07T16:33:08.728Z] if exception is not None: +[2024-03-07T16:33:08.728Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.728Z] item = +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.728Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.728Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.728Z] > return (yield) +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.728Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.728Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] def _multicall( +[2024-03-07T16:33:08.728Z] hook_name: str, +[2024-03-07T16:33:08.728Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.728Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.728Z] firstresult: bool, +[2024-03-07T16:33:08.728Z] ) -> object | list[object]: +[2024-03-07T16:33:08.728Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.728Z] result(s). +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.728Z] """ +[2024-03-07T16:33:08.728Z] __tracebackhide__ = True +[2024-03-07T16:33:08.728Z] results: list[object] = [] +[2024-03-07T16:33:08.728Z] exception = None +[2024-03-07T16:33:08.728Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.728Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.728Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.728Z] try: +[2024-03-07T16:33:08.728Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.728Z] try: +[2024-03-07T16:33:08.728Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.728Z] except KeyError: +[2024-03-07T16:33:08.728Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.728Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.728Z] raise HookCallError( +[2024-03-07T16:33:08.728Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.728Z] ) +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.728Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.728Z] try: +[2024-03-07T16:33:08.728Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.728Z] # which is the desired response. +[2024-03-07T16:33:08.728Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.728Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.728Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.728Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.728Z] except StopIteration: +[2024-03-07T16:33:08.728Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.728Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.728Z] try: +[2024-03-07T16:33:08.728Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.728Z] # which is the desired response. +[2024-03-07T16:33:08.728Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.728Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.728Z] next(function_gen) # first yield +[2024-03-07T16:33:08.728Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.728Z] except StopIteration: +[2024-03-07T16:33:08.728Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.728Z] else: +[2024-03-07T16:33:08.728Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.728Z] if res is not None: +[2024-03-07T16:33:08.728Z] results.append(res) +[2024-03-07T16:33:08.728Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.728Z] break +[2024-03-07T16:33:08.728Z] except BaseException as exc: +[2024-03-07T16:33:08.728Z] exception = exc +[2024-03-07T16:33:08.728Z] finally: +[2024-03-07T16:33:08.728Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.728Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.728Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.728Z] result = results[0] if results else None +[2024-03-07T16:33:08.728Z] else: +[2024-03-07T16:33:08.728Z] result = results +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.728Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.728Z] try: +[2024-03-07T16:33:08.728Z] if exception is not None: +[2024-03-07T16:33:08.728Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.728Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.728Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.728Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.728Z] try: +[2024-03-07T16:33:08.728Z] > yield +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.728Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.728Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] def _multicall( +[2024-03-07T16:33:08.728Z] hook_name: str, +[2024-03-07T16:33:08.728Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.728Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.728Z] firstresult: bool, +[2024-03-07T16:33:08.728Z] ) -> object | list[object]: +[2024-03-07T16:33:08.728Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.728Z] result(s). +[2024-03-07T16:33:08.728Z] +[2024-03-07T16:33:08.728Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.729Z] """ +[2024-03-07T16:33:08.729Z] __tracebackhide__ = True +[2024-03-07T16:33:08.729Z] results: list[object] = [] +[2024-03-07T16:33:08.729Z] exception = None +[2024-03-07T16:33:08.729Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.729Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.729Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.729Z] try: +[2024-03-07T16:33:08.729Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.729Z] try: +[2024-03-07T16:33:08.729Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.729Z] except KeyError: +[2024-03-07T16:33:08.729Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.729Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.729Z] raise HookCallError( +[2024-03-07T16:33:08.729Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.729Z] ) +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.729Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.729Z] try: +[2024-03-07T16:33:08.729Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.729Z] # which is the desired response. +[2024-03-07T16:33:08.729Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.729Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.729Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.729Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.729Z] except StopIteration: +[2024-03-07T16:33:08.729Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.729Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.729Z] try: +[2024-03-07T16:33:08.729Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.729Z] # which is the desired response. +[2024-03-07T16:33:08.729Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.729Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.729Z] next(function_gen) # first yield +[2024-03-07T16:33:08.729Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.729Z] except StopIteration: +[2024-03-07T16:33:08.729Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.729Z] else: +[2024-03-07T16:33:08.729Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] item = +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.729Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.729Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.729Z] item = +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.729Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.729Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.729Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.729Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.729Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.729Z] if exc: +[2024-03-07T16:33:08.729Z] > raise exc +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: +[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] cls = +[2024-03-07T16:33:08.729Z] func = . at 0x7f0abbb0b520> +[2024-03-07T16:33:08.729Z] when = 'setup' +[2024-03-07T16:33:08.729Z] reraise = (, ) +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] @classmethod +[2024-03-07T16:33:08.729Z] def from_call( +[2024-03-07T16:33:08.729Z] cls, +[2024-03-07T16:33:08.729Z] func: Callable[[], TResult], +[2024-03-07T16:33:08.729Z] when: Literal["collect", "setup", "call", "teardown"], +[2024-03-07T16:33:08.729Z] reraise: Optional[ +[2024-03-07T16:33:08.729Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] +[2024-03-07T16:33:08.729Z] ] = None, +[2024-03-07T16:33:08.729Z] ) -> "CallInfo[TResult]": +[2024-03-07T16:33:08.729Z] """Call func, wrapping the result in a CallInfo. +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] :param func: +[2024-03-07T16:33:08.729Z] The function to call. Called without arguments. +[2024-03-07T16:33:08.729Z] :param when: +[2024-03-07T16:33:08.729Z] The phase in which the function is called. +[2024-03-07T16:33:08.729Z] :param reraise: +[2024-03-07T16:33:08.729Z] Exception or exceptions that shall propagate if raised by the +[2024-03-07T16:33:08.729Z] function, instead of being wrapped in the CallInfo. +[2024-03-07T16:33:08.729Z] """ +[2024-03-07T16:33:08.729Z] excinfo = None +[2024-03-07T16:33:08.729Z] start = timing.time() +[2024-03-07T16:33:08.729Z] precise_start = timing.perf_counter() +[2024-03-07T16:33:08.729Z] try: +[2024-03-07T16:33:08.729Z] > result: Optional[TResult] = func() +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: +[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise +[2024-03-07T16:33:08.729Z] ) +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: +[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] self = +[2024-03-07T16:33:08.729Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] def __call__(self, **kwargs: object) -> Any: +[2024-03-07T16:33:08.729Z] """Call the hook. +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] Only accepts keyword arguments, which should match the hook +[2024-03-07T16:33:08.729Z] specification. +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] Returns the result(s) of calling all registered plugins, see +[2024-03-07T16:33:08.729Z] :ref:`calling`. +[2024-03-07T16:33:08.729Z] """ +[2024-03-07T16:33:08.729Z] assert ( +[2024-03-07T16:33:08.729Z] not self.is_historic() +[2024-03-07T16:33:08.729Z] ), "Cannot directly call a historic hook - use call_historic instead." +[2024-03-07T16:33:08.729Z] self._verify_all_args_are_provided(kwargs) +[2024-03-07T16:33:08.729Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False +[2024-03-07T16:33:08.729Z] # Copy because plugins may register other plugins during iteration (#438). +[2024-03-07T16:33:08.729Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: +[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> +[2024-03-07T16:33:08.729Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.729Z] methods = [>, >, ...] +[2024-03-07T16:33:08.729Z] kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] def _hookexec( +[2024-03-07T16:33:08.729Z] self, +[2024-03-07T16:33:08.729Z] hook_name: str, +[2024-03-07T16:33:08.729Z] methods: Sequence[HookImpl], +[2024-03-07T16:33:08.729Z] kwargs: Mapping[str, object], +[2024-03-07T16:33:08.729Z] firstresult: bool, +[2024-03-07T16:33:08.729Z] ) -> object | list[object]: +[2024-03-07T16:33:08.729Z] # called from all hookcaller instances. +[2024-03-07T16:33:08.729Z] # enable_tracing will set its own wrapping function at self._inner_hookexec +[2024-03-07T16:33:08.729Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: +[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.729Z] +[2024-03-07T16:33:08.729Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.730Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.730Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] def _multicall( +[2024-03-07T16:33:08.730Z] hook_name: str, +[2024-03-07T16:33:08.730Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.730Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.730Z] firstresult: bool, +[2024-03-07T16:33:08.730Z] ) -> object | list[object]: +[2024-03-07T16:33:08.730Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.730Z] result(s). +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.730Z] """ +[2024-03-07T16:33:08.730Z] __tracebackhide__ = True +[2024-03-07T16:33:08.730Z] results: list[object] = [] +[2024-03-07T16:33:08.730Z] exception = None +[2024-03-07T16:33:08.730Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.730Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.730Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.730Z] try: +[2024-03-07T16:33:08.730Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.730Z] try: +[2024-03-07T16:33:08.730Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.730Z] except KeyError: +[2024-03-07T16:33:08.730Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.730Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.730Z] raise HookCallError( +[2024-03-07T16:33:08.730Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.730Z] ) +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.730Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.730Z] try: +[2024-03-07T16:33:08.730Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.730Z] # which is the desired response. +[2024-03-07T16:33:08.730Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.730Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.730Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.730Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.730Z] except StopIteration: +[2024-03-07T16:33:08.730Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.730Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.730Z] try: +[2024-03-07T16:33:08.730Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.730Z] # which is the desired response. +[2024-03-07T16:33:08.730Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.730Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.730Z] next(function_gen) # first yield +[2024-03-07T16:33:08.730Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.730Z] except StopIteration: +[2024-03-07T16:33:08.730Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.730Z] else: +[2024-03-07T16:33:08.730Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.730Z] if res is not None: +[2024-03-07T16:33:08.730Z] results.append(res) +[2024-03-07T16:33:08.730Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.730Z] break +[2024-03-07T16:33:08.730Z] except BaseException as exc: +[2024-03-07T16:33:08.730Z] exception = exc +[2024-03-07T16:33:08.730Z] finally: +[2024-03-07T16:33:08.730Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.730Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.730Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.730Z] result = results[0] if results else None +[2024-03-07T16:33:08.730Z] else: +[2024-03-07T16:33:08.730Z] result = results +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.730Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.730Z] try: +[2024-03-07T16:33:08.730Z] if exception is not None: +[2024-03-07T16:33:08.730Z] teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.730Z] else: +[2024-03-07T16:33:08.730Z] teardown.send(result) # type: ignore[union-attr] +[2024-03-07T16:33:08.730Z] # Following is unreachable for a well behaved hook wrapper. +[2024-03-07T16:33:08.730Z] # Try to force finalizers otherwise postponed till GC action. +[2024-03-07T16:33:08.730Z] # Note: close() may raise if generator handles GeneratorExit. +[2024-03-07T16:33:08.730Z] teardown.close() # type: ignore[union-attr] +[2024-03-07T16:33:08.730Z] except StopIteration as si: +[2024-03-07T16:33:08.730Z] result = si.value +[2024-03-07T16:33:08.730Z] exception = None +[2024-03-07T16:33:08.730Z] continue +[2024-03-07T16:33:08.730Z] except BaseException as e: +[2024-03-07T16:33:08.730Z] exception = e +[2024-03-07T16:33:08.730Z] continue +[2024-03-07T16:33:08.730Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] if exception is not None: +[2024-03-07T16:33:08.730Z] > raise exception.with_traceback(exception.__traceback__) +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: +[2024-03-07T16:33:08.730Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.730Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.730Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] def _multicall( +[2024-03-07T16:33:08.730Z] hook_name: str, +[2024-03-07T16:33:08.730Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.730Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.730Z] firstresult: bool, +[2024-03-07T16:33:08.730Z] ) -> object | list[object]: +[2024-03-07T16:33:08.730Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.730Z] result(s). +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.730Z] """ +[2024-03-07T16:33:08.730Z] __tracebackhide__ = True +[2024-03-07T16:33:08.730Z] results: list[object] = [] +[2024-03-07T16:33:08.730Z] exception = None +[2024-03-07T16:33:08.730Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.730Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.730Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.730Z] try: +[2024-03-07T16:33:08.730Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.730Z] try: +[2024-03-07T16:33:08.730Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.730Z] except KeyError: +[2024-03-07T16:33:08.730Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.730Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.730Z] raise HookCallError( +[2024-03-07T16:33:08.730Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.730Z] ) +[2024-03-07T16:33:08.730Z] +[2024-03-07T16:33:08.730Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.730Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.730Z] try: +[2024-03-07T16:33:08.731Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.731Z] # which is the desired response. +[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.731Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.731Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.731Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.731Z] except StopIteration: +[2024-03-07T16:33:08.731Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.731Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.731Z] try: +[2024-03-07T16:33:08.731Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.731Z] # which is the desired response. +[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.731Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.731Z] next(function_gen) # first yield +[2024-03-07T16:33:08.731Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.731Z] except StopIteration: +[2024-03-07T16:33:08.731Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.731Z] else: +[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.731Z] if res is not None: +[2024-03-07T16:33:08.731Z] results.append(res) +[2024-03-07T16:33:08.731Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.731Z] break +[2024-03-07T16:33:08.731Z] except BaseException as exc: +[2024-03-07T16:33:08.731Z] exception = exc +[2024-03-07T16:33:08.731Z] finally: +[2024-03-07T16:33:08.731Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.731Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.731Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.731Z] result = results[0] if results else None +[2024-03-07T16:33:08.731Z] else: +[2024-03-07T16:33:08.731Z] result = results +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.731Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.731Z] try: +[2024-03-07T16:33:08.731Z] if exception is not None: +[2024-03-07T16:33:08.731Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.731Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] @pytest.hookimpl(wrapper=True, tryfirst=True) +[2024-03-07T16:33:08.731Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.731Z] > yield from unraisable_exception_runtest_hook() +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: +[2024-03-07T16:33:08.731Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.731Z] with catch_unraisable_exception() as cm: +[2024-03-07T16:33:08.731Z] try: +[2024-03-07T16:33:08.731Z] > yield +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: +[2024-03-07T16:33:08.731Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.731Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.731Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] def _multicall( +[2024-03-07T16:33:08.731Z] hook_name: str, +[2024-03-07T16:33:08.731Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.731Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.731Z] firstresult: bool, +[2024-03-07T16:33:08.731Z] ) -> object | list[object]: +[2024-03-07T16:33:08.731Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.731Z] result(s). +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.731Z] """ +[2024-03-07T16:33:08.731Z] __tracebackhide__ = True +[2024-03-07T16:33:08.731Z] results: list[object] = [] +[2024-03-07T16:33:08.731Z] exception = None +[2024-03-07T16:33:08.731Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.731Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.731Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.731Z] try: +[2024-03-07T16:33:08.731Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.731Z] try: +[2024-03-07T16:33:08.731Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.731Z] except KeyError: +[2024-03-07T16:33:08.731Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.731Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.731Z] raise HookCallError( +[2024-03-07T16:33:08.731Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.731Z] ) +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.731Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.731Z] try: +[2024-03-07T16:33:08.731Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.731Z] # which is the desired response. +[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.731Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.731Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.731Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.731Z] except StopIteration: +[2024-03-07T16:33:08.731Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.731Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.731Z] try: +[2024-03-07T16:33:08.731Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.731Z] # which is the desired response. +[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.731Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.731Z] next(function_gen) # first yield +[2024-03-07T16:33:08.731Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.731Z] except StopIteration: +[2024-03-07T16:33:08.731Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.731Z] else: +[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.731Z] if res is not None: +[2024-03-07T16:33:08.731Z] results.append(res) +[2024-03-07T16:33:08.731Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.731Z] break +[2024-03-07T16:33:08.731Z] except BaseException as exc: +[2024-03-07T16:33:08.731Z] exception = exc +[2024-03-07T16:33:08.731Z] finally: +[2024-03-07T16:33:08.731Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.731Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.731Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.731Z] result = results[0] if results else None +[2024-03-07T16:33:08.731Z] else: +[2024-03-07T16:33:08.731Z] result = results +[2024-03-07T16:33:08.731Z] +[2024-03-07T16:33:08.731Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.731Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.731Z] try: +[2024-03-07T16:33:08.731Z] if exception is not None: +[2024-03-07T16:33:08.732Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.732Z] item = +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.732Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.732Z] self.log_cli_handler.set_when("setup") +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] empty: Dict[str, List[logging.LogRecord]] = {} +[2024-03-07T16:33:08.732Z] item.stash[caplog_records_key] = empty +[2024-03-07T16:33:08.732Z] > yield from self._runtest_for(item, "setup") +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: +[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> +[2024-03-07T16:33:08.732Z] item = , when = 'setup' +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: +[2024-03-07T16:33:08.732Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" +[2024-03-07T16:33:08.732Z] with catching_logs( +[2024-03-07T16:33:08.732Z] self.caplog_handler, +[2024-03-07T16:33:08.732Z] level=self.log_level, +[2024-03-07T16:33:08.732Z] ) as caplog_handler, catching_logs( +[2024-03-07T16:33:08.732Z] self.report_handler, +[2024-03-07T16:33:08.732Z] level=self.log_level, +[2024-03-07T16:33:08.732Z] ) as report_handler: +[2024-03-07T16:33:08.732Z] caplog_handler.reset() +[2024-03-07T16:33:08.732Z] report_handler.reset() +[2024-03-07T16:33:08.732Z] item.stash[caplog_records_key][when] = caplog_handler.records +[2024-03-07T16:33:08.732Z] item.stash[caplog_handler_key] = caplog_handler +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] try: +[2024-03-07T16:33:08.732Z] > yield +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: +[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.732Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.732Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] def _multicall( +[2024-03-07T16:33:08.732Z] hook_name: str, +[2024-03-07T16:33:08.732Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.732Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.732Z] firstresult: bool, +[2024-03-07T16:33:08.732Z] ) -> object | list[object]: +[2024-03-07T16:33:08.732Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.732Z] result(s). +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.732Z] """ +[2024-03-07T16:33:08.732Z] __tracebackhide__ = True +[2024-03-07T16:33:08.732Z] results: list[object] = [] +[2024-03-07T16:33:08.732Z] exception = None +[2024-03-07T16:33:08.732Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.732Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.732Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.732Z] try: +[2024-03-07T16:33:08.732Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.732Z] try: +[2024-03-07T16:33:08.732Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.732Z] except KeyError: +[2024-03-07T16:33:08.732Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.732Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.732Z] raise HookCallError( +[2024-03-07T16:33:08.732Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.732Z] ) +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.732Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.732Z] try: +[2024-03-07T16:33:08.732Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.732Z] # which is the desired response. +[2024-03-07T16:33:08.732Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.732Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.732Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.732Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.732Z] except StopIteration: +[2024-03-07T16:33:08.732Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.732Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.732Z] try: +[2024-03-07T16:33:08.732Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.732Z] # which is the desired response. +[2024-03-07T16:33:08.732Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.732Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.732Z] next(function_gen) # first yield +[2024-03-07T16:33:08.732Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.732Z] except StopIteration: +[2024-03-07T16:33:08.732Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.732Z] else: +[2024-03-07T16:33:08.732Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.732Z] if res is not None: +[2024-03-07T16:33:08.732Z] results.append(res) +[2024-03-07T16:33:08.732Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.732Z] break +[2024-03-07T16:33:08.732Z] except BaseException as exc: +[2024-03-07T16:33:08.732Z] exception = exc +[2024-03-07T16:33:08.732Z] finally: +[2024-03-07T16:33:08.732Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.732Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.732Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.732Z] result = results[0] if results else None +[2024-03-07T16:33:08.732Z] else: +[2024-03-07T16:33:08.732Z] result = results +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.732Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.732Z] try: +[2024-03-07T16:33:08.732Z] if exception is not None: +[2024-03-07T16:33:08.732Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> +[2024-03-07T16:33:08.732Z] item = +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] @hookimpl(wrapper=True) +[2024-03-07T16:33:08.732Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: +[2024-03-07T16:33:08.732Z] with self.item_capture("setup", item): +[2024-03-07T16:33:08.732Z] > return (yield) +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: +[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.732Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.732Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] def _multicall( +[2024-03-07T16:33:08.732Z] hook_name: str, +[2024-03-07T16:33:08.732Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.732Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.732Z] firstresult: bool, +[2024-03-07T16:33:08.732Z] ) -> object | list[object]: +[2024-03-07T16:33:08.732Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.732Z] result(s). +[2024-03-07T16:33:08.732Z] +[2024-03-07T16:33:08.732Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.732Z] """ +[2024-03-07T16:33:08.732Z] __tracebackhide__ = True +[2024-03-07T16:33:08.732Z] results: list[object] = [] +[2024-03-07T16:33:08.732Z] exception = None +[2024-03-07T16:33:08.733Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.733Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.733Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.733Z] except KeyError: +[2024-03-07T16:33:08.733Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.733Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.733Z] raise HookCallError( +[2024-03-07T16:33:08.733Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.733Z] ) +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.733Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.733Z] # which is the desired response. +[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.733Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.733Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.733Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.733Z] except StopIteration: +[2024-03-07T16:33:08.733Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.733Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.733Z] # which is the desired response. +[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.733Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.733Z] next(function_gen) # first yield +[2024-03-07T16:33:08.733Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.733Z] except StopIteration: +[2024-03-07T16:33:08.733Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.733Z] else: +[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.733Z] if res is not None: +[2024-03-07T16:33:08.733Z] results.append(res) +[2024-03-07T16:33:08.733Z] if firstresult: # halt further impl calls +[2024-03-07T16:33:08.733Z] break +[2024-03-07T16:33:08.733Z] except BaseException as exc: +[2024-03-07T16:33:08.733Z] exception = exc +[2024-03-07T16:33:08.733Z] finally: +[2024-03-07T16:33:08.733Z] # Fast path - only new-style wrappers, no Result. +[2024-03-07T16:33:08.733Z] if only_new_style_wrappers: +[2024-03-07T16:33:08.733Z] if firstresult: # first result hooks return a single value +[2024-03-07T16:33:08.733Z] result = results[0] if results else None +[2024-03-07T16:33:08.733Z] else: +[2024-03-07T16:33:08.733Z] result = results +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] # run all wrapper post-yield blocks +[2024-03-07T16:33:08.733Z] for teardown in reversed(teardowns): +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] if exception is not None: +[2024-03-07T16:33:08.733Z] > teardown.throw(exception) # type: ignore[union-attr] +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: +[2024-03-07T16:33:08.733Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] @pytest.hookimpl(wrapper=True, trylast=True) +[2024-03-07T16:33:08.733Z] def pytest_runtest_setup() -> Generator[None, None, None]: +[2024-03-07T16:33:08.733Z] > yield from thread_exception_runtest_hook() +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: +[2024-03-07T16:33:08.733Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: +[2024-03-07T16:33:08.733Z] with catch_threading_exception() as cm: +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] > yield +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: +[2024-03-07T16:33:08.733Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] hook_name = 'pytest_runtest_setup' +[2024-03-07T16:33:08.733Z] hook_impls = [>, >, ...] +[2024-03-07T16:33:08.733Z] caller_kwargs = {'item': }, firstresult = False +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] def _multicall( +[2024-03-07T16:33:08.733Z] hook_name: str, +[2024-03-07T16:33:08.733Z] hook_impls: Sequence[HookImpl], +[2024-03-07T16:33:08.733Z] caller_kwargs: Mapping[str, object], +[2024-03-07T16:33:08.733Z] firstresult: bool, +[2024-03-07T16:33:08.733Z] ) -> object | list[object]: +[2024-03-07T16:33:08.733Z] """Execute a call into multiple python functions/methods and return the +[2024-03-07T16:33:08.733Z] result(s). +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] ``caller_kwargs`` comes from HookCaller.__call__(). +[2024-03-07T16:33:08.733Z] """ +[2024-03-07T16:33:08.733Z] __tracebackhide__ = True +[2024-03-07T16:33:08.733Z] results: list[object] = [] +[2024-03-07T16:33:08.733Z] exception = None +[2024-03-07T16:33:08.733Z] only_new_style_wrappers = True +[2024-03-07T16:33:08.733Z] try: # run impl and wrapper setup functions in a loop +[2024-03-07T16:33:08.733Z] teardowns: list[Teardown] = [] +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] for hook_impl in reversed(hook_impls): +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] +[2024-03-07T16:33:08.733Z] except KeyError: +[2024-03-07T16:33:08.733Z] for argname in hook_impl.argnames: +[2024-03-07T16:33:08.733Z] if argname not in caller_kwargs: +[2024-03-07T16:33:08.733Z] raise HookCallError( +[2024-03-07T16:33:08.733Z] f"hook call must provide argument {argname!r}" +[2024-03-07T16:33:08.733Z] ) +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] if hook_impl.hookwrapper: +[2024-03-07T16:33:08.733Z] only_new_style_wrappers = False +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.733Z] # which is the desired response. +[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.733Z] wrapper_gen = cast(Generator[None, Result[object], None], res) +[2024-03-07T16:33:08.733Z] next(wrapper_gen) # first yield +[2024-03-07T16:33:08.733Z] teardowns.append((wrapper_gen, hook_impl)) +[2024-03-07T16:33:08.733Z] except StopIteration: +[2024-03-07T16:33:08.733Z] _raise_wrapfail(wrapper_gen, "did not yield") +[2024-03-07T16:33:08.733Z] elif hook_impl.wrapper: +[2024-03-07T16:33:08.733Z] try: +[2024-03-07T16:33:08.733Z] # If this cast is not valid, a type error is raised below, +[2024-03-07T16:33:08.733Z] # which is the desired response. +[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) +[2024-03-07T16:33:08.733Z] function_gen = cast(Generator[None, object, object], res) +[2024-03-07T16:33:08.733Z] next(function_gen) # first yield +[2024-03-07T16:33:08.733Z] teardowns.append(function_gen) +[2024-03-07T16:33:08.733Z] except StopIteration: +[2024-03-07T16:33:08.733Z] _raise_wrapfail(function_gen, "did not yield") +[2024-03-07T16:33:08.733Z] else: +[2024-03-07T16:33:08.733Z] > res = hook_impl.function(*args) +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: +[2024-03-07T16:33:08.733Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.733Z] item = +[2024-03-07T16:33:08.733Z] +[2024-03-07T16:33:08.734Z] def pytest_runtest_setup(item: Item) -> None: +[2024-03-07T16:33:08.734Z] _update_current_test_var(item, "setup") +[2024-03-07T16:33:08.734Z] > item.session._setupstate.setup(item) +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: +[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.734Z] item = +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.734Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.734Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.734Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.734Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.734Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.734Z] if exc: +[2024-03-07T16:33:08.734Z] raise exc +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.734Z] assert col not in self.stack +[2024-03-07T16:33:08.734Z] # Push onto the stack. +[2024-03-07T16:33:08.734Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.734Z] try: +[2024-03-07T16:33:08.734Z] col.setup() +[2024-03-07T16:33:08.734Z] except TEST_OUTCOME as exc: +[2024-03-07T16:33:08.734Z] self.stack[col] = (self.stack[col][0], exc) +[2024-03-07T16:33:08.734Z] > raise exc +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: +[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> +[2024-03-07T16:33:08.734Z] item = +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] def setup(self, item: Item) -> None: +[2024-03-07T16:33:08.734Z] """Setup objects along the collector chain to the item.""" +[2024-03-07T16:33:08.734Z] needed_collectors = item.listchain() +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] # If a collector fails its setup, fail its entire subtree of items. +[2024-03-07T16:33:08.734Z] # The setup is not retried for each item - the same exception is used. +[2024-03-07T16:33:08.734Z] for col, (finalizers, exc) in self.stack.items(): +[2024-03-07T16:33:08.734Z] assert col in needed_collectors, "previous item was not torn down properly" +[2024-03-07T16:33:08.734Z] if exc: +[2024-03-07T16:33:08.734Z] raise exc +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] for col in needed_collectors[len(self.stack) :]: +[2024-03-07T16:33:08.734Z] assert col not in self.stack +[2024-03-07T16:33:08.734Z] # Push onto the stack. +[2024-03-07T16:33:08.734Z] self.stack[col] = ([col.teardown], None) +[2024-03-07T16:33:08.734Z] try: +[2024-03-07T16:33:08.734Z] > col.setup() +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: +[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] self = +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] def setup(self): +[2024-03-07T16:33:08.734Z] """ +[2024-03-07T16:33:08.734Z] Called by pytest to setup the collector cells in . +[2024-03-07T16:33:08.734Z] Here we start a kernel and setup the sanitize patterns. +[2024-03-07T16:33:08.734Z] """ +[2024-03-07T16:33:08.734Z] # we've already checked that --nbval-current-env and +[2024-03-07T16:33:08.734Z] # --nbval-kernel-name were not both supplied +[2024-03-07T16:33:08.734Z] if self.parent.config.option.nbval_current_env: +[2024-03-07T16:33:08.734Z] kernel_name = CURRENT_ENV_KERNEL_NAME +[2024-03-07T16:33:08.734Z] elif self.parent.config.option.nbval_kernel_name: +[2024-03-07T16:33:08.734Z] kernel_name = self.parent.config.option.nbval_kernel_name +[2024-03-07T16:33:08.734Z] else: +[2024-03-07T16:33:08.734Z] kernel_name = self.nb.metadata.get( +[2024-03-07T16:33:08.734Z] 'kernelspec', {}).get('name', 'python') +[2024-03-07T16:33:08.734Z] > self.kernel = RunningKernel( +[2024-03-07T16:33:08.734Z] kernel_name, +[2024-03-07T16:33:08.734Z] cwd=str(self.fspath.dirname), +[2024-03-07T16:33:08.734Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, +[2024-03-07T16:33:08.734Z] ) +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: +[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] self = +[2024-03-07T16:33:08.734Z] kernel_name = 'python' +[2024-03-07T16:33:08.734Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' +[2024-03-07T16:33:08.734Z] startup_timeout = 60 +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): +[2024-03-07T16:33:08.734Z] """ +[2024-03-07T16:33:08.734Z] Initialise a new kernel +[2024-03-07T16:33:08.734Z] specify that matplotlib is inline and connect the stderr. +[2024-03-07T16:33:08.734Z] Stores the active kernel process and its manager. +[2024-03-07T16:33:08.734Z] """ +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] > self.km, self.kc = start_new_kernel( +[2024-03-07T16:33:08.734Z] startup_timeout=startup_timeout, +[2024-03-07T16:33:08.734Z] kernel_name=kernel_name, +[2024-03-07T16:33:08.734Z] stderr=open(os.devnull, 'w'), +[2024-03-07T16:33:08.734Z] cwd=cwd, +[2024-03-07T16:33:08.734Z] ) +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: +[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] startup_timeout = 60, kernel_name = 'python' +[2024-03-07T16:33:08.734Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} +[2024-03-07T16:33:08.734Z] km = +[2024-03-07T16:33:08.734Z] kc = +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): +[2024-03-07T16:33:08.734Z] """Start a new kernel, and return its Manager and Client""" +[2024-03-07T16:33:08.734Z] logger.debug('Starting new kernel: "%s"' % kernel_name) +[2024-03-07T16:33:08.734Z] km = KernelManager(kernel_name=kernel_name, +[2024-03-07T16:33:08.734Z] kernel_spec_manager=NbvalKernelspecManager()) +[2024-03-07T16:33:08.734Z] km.start_kernel(**kwargs) +[2024-03-07T16:33:08.734Z] kc = km.client() +[2024-03-07T16:33:08.734Z] kc.start_channels() +[2024-03-07T16:33:08.734Z] try: +[2024-03-07T16:33:08.734Z] > kc.wait_for_ready(timeout=startup_timeout) +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: +[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] args = (,) +[2024-03-07T16:33:08.734Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.734Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.734Z] nest_asyncio = +[2024-03-07T16:33:08.734Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.734Z] try: +[2024-03-07T16:33:08.734Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.734Z] except RuntimeError: +[2024-03-07T16:33:08.734Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.734Z] try: +[2024-03-07T16:33:08.734Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.734Z] except RuntimeError: +[2024-03-07T16:33:08.734Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.734Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.734Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.734Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.734Z] try: +[2024-03-07T16:33:08.734Z] return loop.run_until_complete(future) +[2024-03-07T16:33:08.734Z] except BaseException as e: +[2024-03-07T16:33:08.734Z] future.cancel() +[2024-03-07T16:33:08.734Z] > raise e +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: +[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.734Z] +[2024-03-07T16:33:08.734Z] args = (,) +[2024-03-07T16:33:08.734Z] kwargs = {'timeout': 60} +[2024-03-07T16:33:08.734Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.735Z] nest_asyncio = +[2024-03-07T16:33:08.735Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] def wrapped(*args, **kwargs): +[2024-03-07T16:33:08.735Z] try: +[2024-03-07T16:33:08.735Z] loop = asyncio.get_running_loop() +[2024-03-07T16:33:08.735Z] except RuntimeError: +[2024-03-07T16:33:08.735Z] # Workaround for bugs.python.org/issue39529. +[2024-03-07T16:33:08.735Z] try: +[2024-03-07T16:33:08.735Z] loop = asyncio.get_event_loop_policy().get_event_loop() +[2024-03-07T16:33:08.735Z] except RuntimeError: +[2024-03-07T16:33:08.735Z] loop = asyncio.new_event_loop() +[2024-03-07T16:33:08.735Z] asyncio.set_event_loop(loop) +[2024-03-07T16:33:08.735Z] import nest_asyncio # type: ignore +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] nest_asyncio.apply(loop) +[2024-03-07T16:33:08.735Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) +[2024-03-07T16:33:08.735Z] try: +[2024-03-07T16:33:08.735Z] > return loop.run_until_complete(future) +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: +[2024-03-07T16:33:08.735Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> +[2024-03-07T16:33:08.735Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] def run_until_complete(self, future): +[2024-03-07T16:33:08.735Z] with manage_run(self): +[2024-03-07T16:33:08.735Z] f = asyncio.ensure_future(future, loop=self) +[2024-03-07T16:33:08.735Z] if f is not future: +[2024-03-07T16:33:08.735Z] f._log_destroy_pending = False +[2024-03-07T16:33:08.735Z] while not f.done(): +[2024-03-07T16:33:08.735Z] self._run_once() +[2024-03-07T16:33:08.735Z] if self._stopping: +[2024-03-07T16:33:08.735Z] break +[2024-03-07T16:33:08.735Z] if not f.done(): +[2024-03-07T16:33:08.735Z] raise RuntimeError( +[2024-03-07T16:33:08.735Z] 'Event loop stopped before Future completed.') +[2024-03-07T16:33:08.735Z] > return f.result() +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: +[2024-03-07T16:33:08.735Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] def result(self): +[2024-03-07T16:33:08.735Z] """Return the result this future represents. +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] If the future has been cancelled, raises CancelledError. If the +[2024-03-07T16:33:08.735Z] future's result isn't yet available, raises InvalidStateError. If +[2024-03-07T16:33:08.735Z] the future is done and has an exception set, this exception is raised. +[2024-03-07T16:33:08.735Z] """ +[2024-03-07T16:33:08.735Z] if self._state == _CANCELLED: +[2024-03-07T16:33:08.735Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.735Z] raise exc +[2024-03-07T16:33:08.735Z] if self._state != _FINISHED: +[2024-03-07T16:33:08.735Z] raise exceptions.InvalidStateError('Result is not ready.') +[2024-03-07T16:33:08.735Z] self.__log_traceback = False +[2024-03-07T16:33:08.735Z] if self._exception is not None: +[2024-03-07T16:33:08.735Z] > raise self._exception.with_traceback(self._exception_tb) +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: +[2024-03-07T16:33:08.735Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] self = None +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] def __step(self, exc=None): +[2024-03-07T16:33:08.735Z] if self.done(): +[2024-03-07T16:33:08.735Z] raise exceptions.InvalidStateError( +[2024-03-07T16:33:08.735Z] f'_step(): already done: {self!r}, {exc!r}') +[2024-03-07T16:33:08.735Z] if self._must_cancel: +[2024-03-07T16:33:08.735Z] if not isinstance(exc, exceptions.CancelledError): +[2024-03-07T16:33:08.735Z] exc = self._make_cancelled_error() +[2024-03-07T16:33:08.735Z] self._must_cancel = False +[2024-03-07T16:33:08.735Z] coro = self._coro +[2024-03-07T16:33:08.735Z] self._fut_waiter = None +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] _enter_task(self._loop, self) +[2024-03-07T16:33:08.735Z] # Call either coro.throw(exc) or coro.send(None). +[2024-03-07T16:33:08.735Z] try: +[2024-03-07T16:33:08.735Z] if exc is None: +[2024-03-07T16:33:08.735Z] # We use the `send` method directly, because coroutines +[2024-03-07T16:33:08.735Z] # don't have `__iter__` and `__next__` methods. +[2024-03-07T16:33:08.735Z] > result = coro.send(None) +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: +[2024-03-07T16:33:08.735Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] self = +[2024-03-07T16:33:08.735Z] timeout = 60 +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: +[2024-03-07T16:33:08.735Z] """Waits for a response when a client is blocked +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] - Sets future time for timeout +[2024-03-07T16:33:08.735Z] - Blocks on shell channel until a message is received +[2024-03-07T16:33:08.735Z] - Exit if the kernel has died +[2024-03-07T16:33:08.735Z] - If client times out before receiving a message from the kernel, send RuntimeError +[2024-03-07T16:33:08.735Z] - Flush the IOPub channel +[2024-03-07T16:33:08.735Z] """ +[2024-03-07T16:33:08.735Z] if timeout is None: +[2024-03-07T16:33:08.735Z] timeout = float("inf") +[2024-03-07T16:33:08.735Z] abs_timeout = time.time() + timeout +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] from .manager import KernelManager +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] if not isinstance(self.parent, KernelManager): +[2024-03-07T16:33:08.735Z] # This Client was not created by a KernelManager, +[2024-03-07T16:33:08.735Z] # so wait for kernel to become responsive to heartbeats +[2024-03-07T16:33:08.735Z] # before checking for kernel_info reply +[2024-03-07T16:33:08.735Z] while not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.735Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.735Z] raise RuntimeError( +[2024-03-07T16:33:08.735Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout +[2024-03-07T16:33:08.735Z] ) +[2024-03-07T16:33:08.735Z] await asyncio.sleep(0.2) +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] # Wait for kernel info reply on shell channel +[2024-03-07T16:33:08.735Z] while True: +[2024-03-07T16:33:08.735Z] self.kernel_info() +[2024-03-07T16:33:08.735Z] try: +[2024-03-07T16:33:08.735Z] msg = await self.shell_channel.get_msg(timeout=1) +[2024-03-07T16:33:08.735Z] except Empty: +[2024-03-07T16:33:08.735Z] pass +[2024-03-07T16:33:08.735Z] else: +[2024-03-07T16:33:08.735Z] if msg["msg_type"] == "kernel_info_reply": +[2024-03-07T16:33:08.735Z] # Checking that IOPub is connected. If it is not connected, start over. +[2024-03-07T16:33:08.735Z] try: +[2024-03-07T16:33:08.735Z] await self.iopub_channel.get_msg(timeout=0.2) +[2024-03-07T16:33:08.735Z] except Empty: +[2024-03-07T16:33:08.735Z] pass +[2024-03-07T16:33:08.735Z] else: +[2024-03-07T16:33:08.735Z] self._handle_kernel_info_reply(msg) +[2024-03-07T16:33:08.735Z] break +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] if not await ensure_async(self.is_alive()): +[2024-03-07T16:33:08.735Z] raise RuntimeError("Kernel died before replying to kernel_info") +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] # Check if current time is ready check time plus timeout +[2024-03-07T16:33:08.735Z] if time.time() > abs_timeout: +[2024-03-07T16:33:08.735Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) +[2024-03-07T16:33:08.735Z] E RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError +[2024-03-07T16:33:08.735Z] =================================== FAILURES =================================== +[2024-03-07T16:33:08.735Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ +[2024-03-07T16:33:08.735Z] Notebook cell execution failed +[2024-03-07T16:33:08.735Z] Cell 5: Cell execution caused an exception +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] Input: +[2024-03-07T16:33:08.735Z] features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-07T16:33:08.735Z] grid = raster[0] +[2024-03-07T16:33:08.735Z] grid.plot() +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.735Z] Traceback: +[2024-03-07T16:33:08.735Z] +[2024-03-07T16:33:08.736Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.736Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:33:08.736Z] Cell In[1], line 1 +[2024-03-07T16:33:08.736Z] ----> 1 features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-07T16:33:08.736Z]  2 grid = raster[0] +[2024-03-07T16:33:08.736Z]  3 grid.plot() +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-07T16:33:08.736Z]  38 if not self.isSucceded(): +[2024-03-07T16:33:08.736Z]  39 # TODO: add reason for failure +[2024-03-07T16:33:08.736Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-07T16:33:08.736Z] ---> 41 return self._make_output(asobj) +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-07T16:33:08.736Z]  44 Output = namedtuple( +[2024-03-07T16:33:08.736Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:33:08.736Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:33:08.736Z]  47 ) +[2024-03-07T16:33:08.736Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:33:08.736Z]  49 return Output( +[2024-03-07T16:33:08.736Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:33:08.736Z]  51 ) +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-07T16:33:08.736Z]  44 Output = namedtuple( +[2024-03-07T16:33:08.736Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:33:08.736Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:33:08.736Z]  47 ) +[2024-03-07T16:33:08.736Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:33:08.736Z]  49 return Output( +[2024-03-07T16:33:08.736Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:33:08.736Z]  51 ) +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-07T16:33:08.736Z]  68 return delist(data) +[2024-03-07T16:33:08.736Z]  70 if convert_objects: +[2024-03-07T16:33:08.736Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-07T16:33:08.736Z]  72 else: +[2024-03-07T16:33:08.736Z]  73 return output.reference +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) +[2024-03-07T16:33:08.736Z]  374 out = converter.convert() +[2024-03-07T16:33:08.736Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:33:08.736Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-07T16:33:08.736Z]  377 return out +[2024-03-07T16:33:08.736Z]  379 except (ImportError, NotImplementedError): +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) +[2024-03-07T16:33:08.736Z]  374 out = converter.convert() +[2024-03-07T16:33:08.736Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:33:08.736Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-07T16:33:08.736Z]  377 return out +[2024-03-07T16:33:08.736Z]  379 except (ImportError, NotImplementedError): +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-07T16:33:08.736Z]  372 try: +[2024-03-07T16:33:08.736Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-07T16:33:08.736Z] --> 374 out = converter.convert() +[2024-03-07T16:33:08.736Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:33:08.736Z]  376 out = [convert(o, path) for o in out] +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-07T16:33:08.736Z]  263 import xarray # isort: skip +[2024-03-07T16:33:08.736Z]  264 import rioxarray # noqa +[2024-03-07T16:33:08.736Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 _ +[2024-03-07T16:33:08.736Z] Notebook cell execution failed +[2024-03-07T16:33:08.736Z] Cell 6: Cell execution caused an exception +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] Input: +[2024-03-07T16:33:08.736Z] lu = statistics[0] +[2024-03-07T16:33:08.736Z] total = sum(lu.values()) +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] land_use = {k: (v / total) for (k, v) in lu.items()} +[2024-03-07T16:33:08.736Z] display("Land use ratios", land_use) +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} +[2024-03-07T16:33:08.736Z] display("Land use percentages", land_use_pct) +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] Traceback: +[2024-03-07T16:33:08.736Z] +[2024-03-07T16:33:08.736Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.736Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.737Z] Cell In[1], line 1 +[2024-03-07T16:33:08.737Z] ----> 1 lu = statistics[0] +[2024-03-07T16:33:08.737Z]  2 total = sum(lu.values()) +[2024-03-07T16:33:08.737Z]  4 land_use = {k: (v / total) for (k, v) in lu.items()} +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] NameError: name 'statistics' is not defined +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ +[2024-03-07T16:33:08.737Z] Notebook cell execution failed +[2024-03-07T16:33:08.737Z] Cell 7: Cell execution caused an exception +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] Input: +[2024-03-07T16:33:08.737Z] unique, counts = np.unique(grid, return_counts=True) +[2024-03-07T16:33:08.737Z] print("The land-use categories available are: " + str(unique)) +[2024-03-07T16:33:08.737Z] print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] # Pixels values at '127' are NaN and can be ignored. +[2024-03-07T16:33:08.737Z] from matplotlib.colors import Normalize +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] norm = Normalize() +[2024-03-07T16:33:08.737Z] norm.autoscale(unique[:-1]) +[2024-03-07T16:33:08.737Z] cm = mpl.colormaps["tab20"] +[2024-03-07T16:33:08.737Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] # plt.bar(unique[:-1], counts[:-1]) +[2024-03-07T16:33:08.737Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) +[2024-03-07T16:33:08.737Z] plt.xlabel("Land-use categories") +[2024-03-07T16:33:08.737Z] plt.ylabel("Number of pixels") +[2024-03-07T16:33:08.737Z] plt.show() +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") +[2024-03-07T16:33:08.737Z] grid.name = "Land-use categories" +[2024-03-07T16:33:08.737Z] plt.show() +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] Traceback: +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.737Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.737Z] Cell In[1], line 1 +[2024-03-07T16:33:08.737Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) +[2024-03-07T16:33:08.737Z]  2 print("The land-use categories available are: " + str(unique)) +[2024-03-07T16:33:08.737Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] NameError: name 'grid' is not defined +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ +[2024-03-07T16:33:08.737Z] Notebook cell execution failed +[2024-03-07T16:33:08.737Z] Cell 8: Cell execution caused an exception +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] Input: +[2024-03-07T16:33:08.737Z] import cartopy.crs as ccrs +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] # Set a CRS transformation: +[2024-03-07T16:33:08.737Z] crs = ccrs.LambertConformal( +[2024-03-07T16:33:08.737Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-07T16:33:08.737Z] ) +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] ax = plt.subplot(projection=crs) +[2024-03-07T16:33:08.737Z] grid.name = "Land-use categories" +[2024-03-07T16:33:08.737Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-07T16:33:08.737Z] plt.show() +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] Traceback: +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.737Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.737Z] Cell In[1], line 9 +[2024-03-07T16:33:08.737Z]  4 crs = ccrs.LambertConformal( +[2024-03-07T16:33:08.737Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-07T16:33:08.737Z]  6 ) +[2024-03-07T16:33:08.737Z]  8 ax = plt.subplot(projection=crs) +[2024-03-07T16:33:08.737Z] ----> 9 grid.name = "Land-use categories" +[2024-03-07T16:33:08.737Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-07T16:33:08.737Z]  11 plt.show() +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] NameError: name 'grid' is not defined +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 _ +[2024-03-07T16:33:08.737Z] Notebook cell execution failed +[2024-03-07T16:33:08.737Z] Cell 10: Cell execution caused an exception +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] Input: +[2024-03-07T16:33:08.737Z] properties, dem = terrain_resp.get(asobj=True) +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] elevation = properties[0]["elevation"] +[2024-03-07T16:33:08.737Z] slope = properties[0]["slope"] +[2024-03-07T16:33:08.737Z] aspect = properties[0]["aspect"] +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} +[2024-03-07T16:33:08.737Z] display(terrain) +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] Traceback: +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.737Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:33:08.737Z] Cell In[1], line 1 +[2024-03-07T16:33:08.737Z] ----> 1 properties, dem = terrain_resp.get(asobj=True) +[2024-03-07T16:33:08.737Z]  3 elevation = properties[0]["elevation"] +[2024-03-07T16:33:08.737Z]  4 slope = properties[0]["slope"] +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-07T16:33:08.737Z]  38 if not self.isSucceded(): +[2024-03-07T16:33:08.737Z]  39 # TODO: add reason for failure +[2024-03-07T16:33:08.737Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-07T16:33:08.737Z] ---> 41 return self._make_output(asobj) +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-07T16:33:08.737Z]  44 Output = namedtuple( +[2024-03-07T16:33:08.737Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:33:08.737Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:33:08.737Z]  47 ) +[2024-03-07T16:33:08.737Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:33:08.737Z]  49 return Output( +[2024-03-07T16:33:08.737Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:33:08.737Z]  51 ) +[2024-03-07T16:33:08.737Z] +[2024-03-07T16:33:08.737Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-07T16:33:08.737Z]  44 Output = namedtuple( +[2024-03-07T16:33:08.737Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:33:08.737Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:33:08.737Z]  47 ) +[2024-03-07T16:33:08.738Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:33:08.738Z]  49 return Output( +[2024-03-07T16:33:08.738Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:33:08.738Z]  51 ) +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-07T16:33:08.738Z]  68 return delist(data) +[2024-03-07T16:33:08.738Z]  70 if convert_objects: +[2024-03-07T16:33:08.738Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-07T16:33:08.738Z]  72 else: +[2024-03-07T16:33:08.738Z]  73 return output.reference +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-07T16:33:08.738Z]  372 try: +[2024-03-07T16:33:08.738Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-07T16:33:08.738Z] --> 374 out = converter.convert() +[2024-03-07T16:33:08.738Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:33:08.738Z]  376 out = [convert(o, path) for o in out] +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-07T16:33:08.738Z]  263 import xarray # isort: skip +[2024-03-07T16:33:08.738Z]  264 import rioxarray # noqa +[2024-03-07T16:33:08.738Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ +[2024-03-07T16:33:08.738Z] Notebook cell execution failed +[2024-03-07T16:33:08.738Z] Cell 11: Cell execution caused an exception +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] Input: +[2024-03-07T16:33:08.738Z] crs = ccrs.LambertConformal( +[2024-03-07T16:33:08.738Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-07T16:33:08.738Z] ) +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] dem.name = "Elevation" +[2024-03-07T16:33:08.738Z] dem.attrs["units"] = "m" +[2024-03-07T16:33:08.738Z] ax = plt.subplot(projection=crs) +[2024-03-07T16:33:08.738Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") +[2024-03-07T16:33:08.738Z] plt.show() +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] Traceback: +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.738Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.738Z] Cell In[1], line 5 +[2024-03-07T16:33:08.738Z]  1 crs = ccrs.LambertConformal( +[2024-03-07T16:33:08.738Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-07T16:33:08.738Z]  3 ) +[2024-03-07T16:33:08.738Z] ----> 5 dem.name = "Elevation" +[2024-03-07T16:33:08.738Z]  6 dem.attrs["units"] = "m" +[2024-03-07T16:33:08.738Z]  7 ax = plt.subplot(projection=crs) +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] NameError: name 'dem' is not defined +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 _ +[2024-03-07T16:33:08.738Z] Notebook cell execution failed +[2024-03-07T16:33:08.738Z] Cell 13: Cell execution caused an exception +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] Input: +[2024-03-07T16:33:08.738Z] all_properties = {**shape_info, **land_use, **terrain} +[2024-03-07T16:33:08.738Z] display(all_properties) +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] Traceback: +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.738Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.738Z] Cell In[1], line 1 +[2024-03-07T16:33:08.738Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} +[2024-03-07T16:33:08.738Z]  2 display(all_properties) +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] NameError: name 'land_use' is not defined +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] ____ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 7 ____ +[2024-03-07T16:33:08.738Z] Notebook cell execution failed +[2024-03-07T16:33:08.738Z] Cell 7: Cell execution caused an exception +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] Input: +[2024-03-07T16:33:08.738Z] with xr.set_options(keep_attrs=True): +[2024-03-07T16:33:08.738Z] # Average the variables +[2024-03-07T16:33:08.738Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-03-07T16:33:08.738Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-03-07T16:33:08.738Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-07T16:33:08.738Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-07T16:33:08.738Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-07T16:33:08.738Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-03-07T16:33:08.738Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] Traceback: +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.738Z] KeyError Traceback (most recent call last) +[2024-03-07T16:33:08.738Z] Cell In[1], line 8 +[2024-03-07T16:33:08.738Z]  5 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-07T16:33:08.738Z]  7 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-07T16:33:08.738Z] ----> 8 ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-07T16:33:08.738Z]  10 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-07T16:33:08.738Z]  11 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-07T16:33:08.738Z] +[2024-03-07T16:33:08.738Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-03-07T16:33:08.738Z]  851 self.coords[key] = value +[2024-03-07T16:33:08.738Z]  852 else: +[2024-03-07T16:33:08.738Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-03-07T16:33:08.739Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-03-07T16:33:08.739Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-03-07T16:33:08.739Z] --> 856 obj = self[key] +[2024-03-07T16:33:08.739Z]  857 if isinstance(value, DataArray): +[2024-03-07T16:33:08.739Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-03-07T16:33:08.739Z] +[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-03-07T16:33:08.739Z]  844 return self._getitem_coord(key) +[2024-03-07T16:33:08.739Z]  845 else: +[2024-03-07T16:33:08.739Z]  846 # xarray-style array indexing +[2024-03-07T16:33:08.739Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-03-07T16:33:08.739Z] +[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-03-07T16:33:08.739Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-03-07T16:33:08.739Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-03-07T16:33:08.739Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-03-07T16:33:08.739Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-03-07T16:33:08.739Z]  1447  ) +[2024-03-07T16:33:08.739Z]  1448 return self._from_temp_dataset(ds) +[2024-03-07T16:33:08.739Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-03-07T16:33:08.739Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-03-07T16:33:08.739Z] +[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-03-07T16:33:08.739Z]  2926 var_indexers = { +[2024-03-07T16:33:08.739Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-03-07T16:33:08.739Z]  2928 } +[2024-03-07T16:33:08.739Z]  2929 if var_indexers: +[2024-03-07T16:33:08.739Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-03-07T16:33:08.739Z]  2931 # drop scalar coordinates +[2024-03-07T16:33:08.739Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-03-07T16:33:08.739Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-03-07T16:33:08.739Z] +[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-03-07T16:33:08.739Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-03-07T16:33:08.739Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-03-07T16:33:08.739Z] -> 1368 return self[key] +[2024-03-07T16:33:08.739Z] +[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-03-07T16:33:08.739Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-03-07T16:33:08.739Z]  879  """Return a new Variable object whose contents are consistent with +[2024-03-07T16:33:08.739Z]  880  getting the provided key from the underlying data. +[2024-03-07T16:33:08.739Z]  881 +[2024-03-07T16:33:08.739Z]  (...) +[2024-03-07T16:33:08.739Z]  889  array `x.values` directly. +[2024-03-07T16:33:08.739Z]  890  """ +[2024-03-07T16:33:08.739Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-03-07T16:33:08.739Z]  892 data = as_indexable(self._data)[indexer] +[2024-03-07T16:33:08.739Z]  893 if new_order: +[2024-03-07T16:33:08.739Z] +[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-03-07T16:33:08.739Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-03-07T16:33:08.739Z]  722 return self._broadcast_indexes_basic(key) +[2024-03-07T16:33:08.739Z] --> 724 self._validate_indexers(key) +[2024-03-07T16:33:08.739Z]  725 # Detect it can be mapped as an outer indexer +[2024-03-07T16:33:08.739Z]  726 # If all key is unlabeled, or +[2024-03-07T16:33:08.739Z]  727 # key can be mapped as an OuterIndexer. +[2024-03-07T16:33:08.739Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-03-07T16:33:08.739Z] +[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-03-07T16:33:08.739Z]  771 raise IndexError( +[2024-03-07T16:33:08.739Z]  772 "{}-dimensional boolean indexing is " +[2024-03-07T16:33:08.739Z]  773 "not supported. ".format(k.ndim) +[2024-03-07T16:33:08.739Z]  774 ) +[2024-03-07T16:33:08.739Z]  775 if is_duck_dask_array(k.data): +[2024-03-07T16:33:08.739Z] --> 776 raise KeyError( +[2024-03-07T16:33:08.739Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-03-07T16:33:08.739Z]  778 "This will result in a dask array of unknown shape. " +[2024-03-07T16:33:08.740Z]  779 "Such arrays are unsupported by Xarray." +[2024-03-07T16:33:08.740Z]  780 "Please compute the indexer first using .compute()" +[2024-03-07T16:33:08.740Z]  781 ) +[2024-03-07T16:33:08.740Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-03-07T16:33:08.740Z]  783 raise IndexError( +[2024-03-07T16:33:08.740Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-03-07T16:33:08.740Z]  785 "same dimension to the indexed array. Indexer is " +[2024-03-07T16:33:08.740Z]  (...) +[2024-03-07T16:33:08.740Z]  788 ) +[2024-03-07T16:33:08.740Z]  789 ) +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] ____ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 8 ____ +[2024-03-07T16:33:08.740Z] Notebook cell execution failed +[2024-03-07T16:33:08.740Z] Cell 8: Cell execution caused an exception +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] Input: +[2024-03-07T16:33:08.740Z] # Check and see if the precipitation makes sense: +[2024-03-07T16:33:08.740Z] ERA5_pr.pr.plot() +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] Traceback: +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.740Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:33:08.740Z] Cell In[1], line 2 +[2024-03-07T16:33:08.740Z]  1 # Check and see if the precipitation makes sense: +[2024-03-07T16:33:08.740Z] ----> 2 ERA5_pr.pr.plot() +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-03-07T16:33:08.740Z]  275 with suppress(KeyError): +[2024-03-07T16:33:08.740Z]  276 return source[name] +[2024-03-07T16:33:08.740Z] --> 277 raise AttributeError( +[2024-03-07T16:33:08.740Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-03-07T16:33:08.740Z]  279 ) +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] AttributeError: 'DataArray' object has no attribute 'pr' +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] ___ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 10 ____ +[2024-03-07T16:33:08.740Z] Notebook cell execution failed +[2024-03-07T16:33:08.740Z] Cell 10: Cell execution caused an exception +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] Input: +[2024-03-07T16:33:08.740Z] # Option 2, which is recommended, in which we prepare a single file that merges all three variables into one netcdf file: +[2024-03-07T16:33:08.740Z] with xr.set_options(keep_attrs=True): +[2024-03-07T16:33:08.740Z] xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]).to_netcdf(tmp / "ERA5_weather_data.nc") +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] Traceback: +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.740Z] MergeError Traceback (most recent call last) +[2024-03-07T16:33:08.740Z] Cell In[1], line 3 +[2024-03-07T16:33:08.740Z]  1 # Option 2, which is recommended, in which we prepare a single file that merges all three variables into one netcdf file: +[2024-03-07T16:33:08.740Z]  2 with xr.set_options(keep_attrs=True): +[2024-03-07T16:33:08.740Z] ----> 3 xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]).to_netcdf(tmp / "ERA5_weather_data.nc") +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:992, in merge(objects, compat, join, fill_value, combine_attrs) +[2024-03-07T16:33:08.740Z]  989 obj = obj.to_dataset() +[2024-03-07T16:33:08.740Z]  990 dict_like_objects.append(obj) +[2024-03-07T16:33:08.740Z] --> 992 merge_result = merge_core( +[2024-03-07T16:33:08.740Z]  993  dict_like_objects, +[2024-03-07T16:33:08.740Z]  994  compat, +[2024-03-07T16:33:08.740Z]  995  join, +[2024-03-07T16:33:08.740Z]  996  combine_attrs=combine_attrs, +[2024-03-07T16:33:08.740Z]  997  fill_value=fill_value, +[2024-03-07T16:33:08.740Z]  998 ) +[2024-03-07T16:33:08.740Z]  999 return Dataset._construct_direct(**merge_result._asdict()) +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:719, in merge_core(objects, compat, join, combine_attrs, priority_arg, explicit_coords, indexes, fill_value, skip_align_args) +[2024-03-07T16:33:08.740Z]  717 collected = collect_variables_and_indexes(aligned, indexes=indexes) +[2024-03-07T16:33:08.740Z]  718 prioritized = _get_priority_vars_and_indexes(aligned, priority_arg, compat=compat) +[2024-03-07T16:33:08.740Z] --> 719 variables, out_indexes = merge_collected( +[2024-03-07T16:33:08.740Z]  720  collected, prioritized, compat=compat, combine_attrs=combine_attrs +[2024-03-07T16:33:08.740Z]  721 ) +[2024-03-07T16:33:08.740Z]  723 dims = calculate_dimensions(variables) +[2024-03-07T16:33:08.740Z]  725 coord_names, noncoord_names = determine_coords(coerced) +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:290, in merge_collected(grouped, prioritized, compat, combine_attrs, equals) +[2024-03-07T16:33:08.740Z]  288 variables = [variable for variable, _ in elements_list] +[2024-03-07T16:33:08.740Z]  289 try: +[2024-03-07T16:33:08.740Z] --> 290 merged_vars[name] = unique_variable( +[2024-03-07T16:33:08.740Z]  291  name, variables, compat, equals.get(name, None) +[2024-03-07T16:33:08.740Z]  292  ) +[2024-03-07T16:33:08.740Z]  293 except MergeError: +[2024-03-07T16:33:08.740Z]  294 if compat != "minimal": +[2024-03-07T16:33:08.740Z]  295 # we need more than "minimal" compatibility (for which +[2024-03-07T16:33:08.740Z]  296 # we drop conflicting coordinates) +[2024-03-07T16:33:08.740Z] +[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:144, in unique_variable(name, variables, compat, equals) +[2024-03-07T16:33:08.740Z]  141 break +[2024-03-07T16:33:08.740Z]  143 if not equals: +[2024-03-07T16:33:08.741Z] --> 144 raise MergeError( +[2024-03-07T16:33:08.741Z]  145 f"conflicting values for variable {name!r} on objects to be combined. " +[2024-03-07T16:33:08.741Z]  146 "You can skip this check by specifying compat='override'." +[2024-03-07T16:33:08.741Z]  147 ) +[2024-03-07T16:33:08.741Z]  149 if combine_method: +[2024-03-07T16:33:08.741Z]  150 for var in variables[1:]: +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] MergeError: conflicting values for variable 't2m' on objects to be combined. You can skip this check by specifying compat='override'. +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-03-07T16:33:08.741Z] Notebook cell execution failed +[2024-03-07T16:33:08.741Z] Cell 5: Cell execution caused an exception +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] Input: +[2024-03-07T16:33:08.741Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-03-07T16:33:08.741Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-03-07T16:33:08.741Z] from ravenpy import OutputReader +[2024-03-07T16:33:08.741Z] from ravenpy.ravenpy import run +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-03-07T16:33:08.741Z] run_name = run_name +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-03-07T16:33:08.741Z] # subfolder called "outputs" +[2024-03-07T16:33:08.741Z] configdir = workdir +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-07T16:33:08.741Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] # Get the outputs using the Output Reader object. +[2024-03-07T16:33:08.741Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] Traceback: +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.741Z] RavenError Traceback (most recent call last) +[2024-03-07T16:33:08.741Z] Cell In[1], line 14 +[2024-03-07T16:33:08.741Z]  11 configdir = workdir +[2024-03-07T16:33:08.741Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-07T16:33:08.741Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-07T16:33:08.741Z]  16 # Get the outputs using the Output Reader object. +[2024-03-07T16:33:08.741Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-07T16:33:08.741Z]  320 warn(msg, category=RavenWarning) +[2024-03-07T16:33:08.741Z]  322 if messages["ERROR"]: +[2024-03-07T16:33:08.741Z] --> 323 raise RavenError( +[2024-03-07T16:33:08.741Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-07T16:33:08.741Z]  325 ) +[2024-03-07T16:33:08.741Z]  327 if returncode != 0: +[2024-03-07T16:33:08.741Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] RavenError: Config directory: /tmp/NB48sz4avbe +[2024-03-07T16:33:08.741Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-03-07T16:33:08.741Z] Notebook cell execution failed +[2024-03-07T16:33:08.741Z] Cell 6: Cell execution caused an exception +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] Input: +[2024-03-07T16:33:08.741Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-03-07T16:33:08.741Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-03-07T16:33:08.741Z] from ravenpy import Emulator +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] # Prepare the emulator by writing files on disk +[2024-03-07T16:33:08.741Z] e = Emulator(config=m) +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] # Run the model and get the outputs. +[2024-03-07T16:33:08.741Z] outputs = e.run() +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] Traceback: +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.741Z] RavenError Traceback (most recent call last) +[2024-03-07T16:33:08.741Z] Cell In[1], line 9 +[2024-03-07T16:33:08.741Z]  6 e = Emulator(config=m) +[2024-03-07T16:33:08.741Z]  8 # Run the model and get the outputs. +[2024-03-07T16:33:08.741Z] ----> 9 outputs = e.run() +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-03-07T16:33:08.741Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-03-07T16:33:08.741Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-03-07T16:33:08.741Z]  66 self.write_rv(overwrite=overwrite) +[2024-03-07T16:33:08.741Z] ---> 68 self._output_path = run( +[2024-03-07T16:33:08.741Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-03-07T16:33:08.741Z]  70 ) +[2024-03-07T16:33:08.741Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-03-07T16:33:08.741Z]  72 return self._output +[2024-03-07T16:33:08.741Z] +[2024-03-07T16:33:08.741Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-07T16:33:08.741Z]  320 warn(msg, category=RavenWarning) +[2024-03-07T16:33:08.741Z]  322 if messages["ERROR"]: +[2024-03-07T16:33:08.741Z] --> 323 raise RavenError( +[2024-03-07T16:33:08.741Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-07T16:33:08.741Z]  325 ) +[2024-03-07T16:33:08.742Z]  327 if returncode != 0: +[2024-03-07T16:33:08.742Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] RavenError: Config directory: /tmp/tmp2tn9q4mp +[2024-03-07T16:33:08.742Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-03-07T16:33:08.742Z] Notebook cell execution failed +[2024-03-07T16:33:08.742Z] Cell 7: Cell execution caused an exception +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Input: +[2024-03-07T16:33:08.742Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-07T16:33:08.742Z] outputs.files +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Traceback: +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.742Z] Cell In[1], line 2 +[2024-03-07T16:33:08.742Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-07T16:33:08.742Z] ----> 2 outputs.files +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-03-07T16:33:08.742Z] Notebook cell execution failed +[2024-03-07T16:33:08.742Z] Cell 8: Cell execution caused an exception +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Input: +[2024-03-07T16:33:08.742Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-07T16:33:08.742Z] print("----------------HYDROGRAPH----------------") +[2024-03-07T16:33:08.742Z] display(outputs.hydrograph) +[2024-03-07T16:33:08.742Z] print("") +[2024-03-07T16:33:08.742Z] print("-----------------STORAGE------------------") +[2024-03-07T16:33:08.742Z] display(outputs.storage) +[2024-03-07T16:33:08.742Z] print("") +[2024-03-07T16:33:08.742Z] print("-----------------SOLUTION-----------------") +[2024-03-07T16:33:08.742Z] display(outputs.solution) +[2024-03-07T16:33:08.742Z] print("") +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Traceback: +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.742Z] Cell In[1], line 3 +[2024-03-07T16:33:08.742Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-07T16:33:08.742Z]  2 print("----------------HYDROGRAPH----------------") +[2024-03-07T16:33:08.742Z] ----> 3 display(outputs.hydrograph) +[2024-03-07T16:33:08.742Z]  4 print("") +[2024-03-07T16:33:08.742Z]  5 print("-----------------STORAGE------------------") +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-03-07T16:33:08.742Z] Notebook cell execution failed +[2024-03-07T16:33:08.742Z] Cell 9: Cell execution caused an exception +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Input: +[2024-03-07T16:33:08.742Z] # Import the graphing utility built to handle Raven model outputs +[2024-03-07T16:33:08.742Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] hydrograph_objects = outputs.hydrograph +[2024-03-07T16:33:08.742Z] hydrographs(hydrograph_objects) +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Traceback: +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.742Z] Cell In[1], line 4 +[2024-03-07T16:33:08.742Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-03-07T16:33:08.742Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-07T16:33:08.742Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-03-07T16:33:08.742Z]  5 hydrographs(hydrograph_objects) +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-03-07T16:33:08.742Z] Notebook cell execution failed +[2024-03-07T16:33:08.742Z] Cell 10: Cell execution caused an exception +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Input: +[2024-03-07T16:33:08.742Z] outputs.hydrograph.q_sim.plot() +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Traceback: +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.742Z] Cell In[1], line 1 +[2024-03-07T16:33:08.742Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-03-07T16:33:08.742Z] Notebook cell execution failed +[2024-03-07T16:33:08.742Z] Cell 11: Cell execution caused an exception +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Input: +[2024-03-07T16:33:08.742Z] print(list(outputs.storage.keys())) +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Traceback: +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.742Z] Cell In[1], line 1 +[2024-03-07T16:33:08.742Z] ----> 1 print(list(outputs.storage.keys())) +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-03-07T16:33:08.742Z] Notebook cell execution failed +[2024-03-07T16:33:08.742Z] Cell 12: Cell execution caused an exception +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Input: +[2024-03-07T16:33:08.742Z] # Plot the "Snow" variable +[2024-03-07T16:33:08.742Z] outputs.storage["Snow"].plot() +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Traceback: +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.742Z] Cell In[1], line 2 +[2024-03-07T16:33:08.742Z]  1 # Plot the "Snow" variable +[2024-03-07T16:33:08.742Z] ----> 2 outputs.storage["Snow"].plot() +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ +[2024-03-07T16:33:08.742Z] Notebook cell execution failed +[2024-03-07T16:33:08.742Z] Cell 0: Cell execution caused an exception +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Input: +[2024-03-07T16:33:08.742Z] import os +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] from hsclient import HydroShare, Token +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] # Authentication method using username and password +[2024-03-07T16:33:08.742Z] """ +[2024-03-07T16:33:08.742Z] username = 'XXXXX' +[2024-03-07T16:33:08.742Z] password = 'XXXXX' +[2024-03-07T16:33:08.742Z] hs = HydroShare(username=username, password=password) +[2024-03-07T16:33:08.742Z] """ +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-03-07T16:33:08.742Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] token = Token(access_token=access_token, token_type="bearer") +[2024-03-07T16:33:08.742Z] hs = HydroShare(client_id=client_id, token=token) +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] Traceback: +[2024-03-07T16:33:08.742Z] +[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.742Z] ValidationError Traceback (most recent call last) +[2024-03-07T16:33:08.742Z] Cell In[1], line 15 +[2024-03-07T16:33:08.743Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-03-07T16:33:08.743Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-03-07T16:33:08.743Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-03-07T16:33:08.743Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) +[2024-03-07T16:33:08.743Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-03-07T16:33:08.743Z]  170 __tracebackhide__ = True +[2024-03-07T16:33:08.743Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] ValidationError: 4 validation errors for Token +[2024-03-07T16:33:08.743Z] scope +[2024-03-07T16:33:08.743Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-03-07T16:33:08.743Z]  2 for r in results: +[2024-03-07T16:33:08.743Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] NameError: name 'hs' is not defined +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ +[2024-03-07T16:33:08.743Z] Notebook cell execution failed +[2024-03-07T16:33:08.743Z] Cell 2: Cell execution caused an exception +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] Input: +[2024-03-07T16:33:08.743Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-07T16:33:08.743Z] res.files() +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] Traceback: +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.743Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.743Z] Cell In[1], line 1 +[2024-03-07T16:33:08.743Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-07T16:33:08.743Z]  2 res.files() +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] NameError: name 'hs' is not defined +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ +[2024-03-07T16:33:08.743Z] Notebook cell execution failed +[2024-03-07T16:33:08.743Z] Cell 3: Cell execution caused an exception +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] Input: +[2024-03-07T16:33:08.743Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] Traceback: +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.743Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.743Z] Cell In[1], line 1 +[2024-03-07T16:33:08.743Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] NameError: name 'res' is not defined +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 _ +[2024-03-07T16:33:08.743Z] Notebook cell execution failed +[2024-03-07T16:33:08.743Z] Cell 7: Cell execution caused an exception +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] Input: +[2024-03-07T16:33:08.743Z] features, statistics, grid0 = stats_resp.get(asobj=True) +[2024-03-07T16:33:08.743Z] lu = statistics[0] +[2024-03-07T16:33:08.743Z] total = sum(lu.values()) +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] land_use = {k: (v / total) for (k, v) in lu.items()} +[2024-03-07T16:33:08.743Z] display("Land use ratios", land_use) +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} +[2024-03-07T16:33:08.743Z] display("Land use percentages", land_use_pct) +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] Traceback: +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.743Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:33:08.743Z] Cell In[1], line 1 +[2024-03-07T16:33:08.743Z] ----> 1 features, statistics, grid0 = stats_resp.get(asobj=True) +[2024-03-07T16:33:08.743Z]  2 lu = statistics[0] +[2024-03-07T16:33:08.743Z]  3 total = sum(lu.values()) +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-07T16:33:08.743Z]  38 if not self.isSucceded(): +[2024-03-07T16:33:08.743Z]  39 # TODO: add reason for failure +[2024-03-07T16:33:08.743Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-07T16:33:08.743Z] ---> 41 return self._make_output(asobj) +[2024-03-07T16:33:08.743Z] +[2024-03-07T16:33:08.743Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-07T16:33:08.743Z]  44 Output = namedtuple( +[2024-03-07T16:33:08.743Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:33:08.743Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:33:08.743Z]  47 ) +[2024-03-07T16:33:08.744Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:33:08.744Z]  49 return Output( +[2024-03-07T16:33:08.744Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:33:08.744Z]  51 ) +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-07T16:33:08.744Z]  44 Output = namedtuple( +[2024-03-07T16:33:08.744Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:33:08.744Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:33:08.744Z]  47 ) +[2024-03-07T16:33:08.744Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:33:08.744Z]  49 return Output( +[2024-03-07T16:33:08.744Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:33:08.744Z]  51 ) +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-07T16:33:08.744Z]  68 return delist(data) +[2024-03-07T16:33:08.744Z]  70 if convert_objects: +[2024-03-07T16:33:08.744Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-07T16:33:08.744Z]  72 else: +[2024-03-07T16:33:08.744Z]  73 return output.reference +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) +[2024-03-07T16:33:08.744Z]  374 out = converter.convert() +[2024-03-07T16:33:08.744Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:33:08.744Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-07T16:33:08.744Z]  377 return out +[2024-03-07T16:33:08.744Z]  379 except (ImportError, NotImplementedError): +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) +[2024-03-07T16:33:08.744Z]  374 out = converter.convert() +[2024-03-07T16:33:08.744Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:33:08.744Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-07T16:33:08.744Z]  377 return out +[2024-03-07T16:33:08.744Z]  379 except (ImportError, NotImplementedError): +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-07T16:33:08.744Z]  372 try: +[2024-03-07T16:33:08.744Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-07T16:33:08.744Z] --> 374 out = converter.convert() +[2024-03-07T16:33:08.744Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:33:08.744Z]  376 out = [convert(o, path) for o in out] +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-07T16:33:08.744Z]  263 import xarray # isort: skip +[2024-03-07T16:33:08.744Z]  264 import rioxarray # noqa +[2024-03-07T16:33:08.744Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 _ +[2024-03-07T16:33:08.744Z] Notebook cell execution failed +[2024-03-07T16:33:08.744Z] Cell 8: Cell execution caused an exception +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] Input: +[2024-03-07T16:33:08.744Z] terrain_resp = wps.terrain_analysis( +[2024-03-07T16:33:08.744Z] shape=basin_contour, select_all_touching=True, projected_crs=3978 +[2024-03-07T16:33:08.744Z] ) +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] properties, dem0 = terrain_resp.get(asobj=True) +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] elevation = properties[0]["elevation"] +[2024-03-07T16:33:08.744Z] slope = properties[0]["slope"] +[2024-03-07T16:33:08.744Z] aspect = properties[0]["aspect"] +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} +[2024-03-07T16:33:08.744Z] display(terrain) +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] Traceback: +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.744Z] AttributeError Traceback (most recent call last) +[2024-03-07T16:33:08.744Z] Cell In[1], line 5 +[2024-03-07T16:33:08.744Z]  1 terrain_resp = wps.terrain_analysis( +[2024-03-07T16:33:08.744Z]  2 shape=basin_contour, select_all_touching=True, projected_crs=3978 +[2024-03-07T16:33:08.744Z]  3 ) +[2024-03-07T16:33:08.744Z] ----> 5 properties, dem0 = terrain_resp.get(asobj=True) +[2024-03-07T16:33:08.744Z]  7 elevation = properties[0]["elevation"] +[2024-03-07T16:33:08.744Z]  8 slope = properties[0]["slope"] +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-07T16:33:08.744Z]  38 if not self.isSucceded(): +[2024-03-07T16:33:08.744Z]  39 # TODO: add reason for failure +[2024-03-07T16:33:08.744Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-07T16:33:08.744Z] ---> 41 return self._make_output(asobj) +[2024-03-07T16:33:08.744Z] +[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-07T16:33:08.745Z]  44 Output = namedtuple( +[2024-03-07T16:33:08.745Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:33:08.745Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:33:08.745Z]  47 ) +[2024-03-07T16:33:08.745Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:33:08.745Z]  49 return Output( +[2024-03-07T16:33:08.745Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:33:08.745Z]  51 ) +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-07T16:33:08.745Z]  44 Output = namedtuple( +[2024-03-07T16:33:08.745Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-07T16:33:08.745Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-07T16:33:08.745Z]  47 ) +[2024-03-07T16:33:08.745Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-07T16:33:08.745Z]  49 return Output( +[2024-03-07T16:33:08.745Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-07T16:33:08.745Z]  51 ) +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-07T16:33:08.745Z]  68 return delist(data) +[2024-03-07T16:33:08.745Z]  70 if convert_objects: +[2024-03-07T16:33:08.745Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-07T16:33:08.745Z]  72 else: +[2024-03-07T16:33:08.745Z]  73 return output.reference +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-07T16:33:08.745Z]  372 try: +[2024-03-07T16:33:08.745Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-07T16:33:08.745Z] --> 374 out = converter.convert() +[2024-03-07T16:33:08.745Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-07T16:33:08.745Z]  376 out = [convert(o, path) for o in out] +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-07T16:33:08.745Z]  263 import xarray # isort: skip +[2024-03-07T16:33:08.745Z]  264 import rioxarray # noqa +[2024-03-07T16:33:08.745Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 _ +[2024-03-07T16:33:08.745Z] Notebook cell execution failed +[2024-03-07T16:33:08.745Z] Cell 9: Cell execution caused an exception +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] Input: +[2024-03-07T16:33:08.745Z] all_properties = {**shape_info, **land_use, **terrain} +[2024-03-07T16:33:08.745Z] display(all_properties) +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] Traceback: +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.745Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.745Z] Cell In[1], line 1 +[2024-03-07T16:33:08.745Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} +[2024-03-07T16:33:08.745Z]  2 display(all_properties) +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] NameError: name 'land_use' is not defined +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ +[2024-03-07T16:33:08.745Z] Notebook cell execution failed +[2024-03-07T16:33:08.745Z] Cell 10: Cell execution caused an exception +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] Input: +[2024-03-07T16:33:08.745Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. +[2024-03-07T16:33:08.745Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" +[2024-03-07T16:33:08.745Z] cat = intake.open_catalog(catalog_name) +[2024-03-07T16:33:08.745Z] ds = cat.era5_reanalysis_single_levels.to_dask() +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] """ +[2024-03-07T16:33:08.745Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, +[2024-03-07T16:33:08.745Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total +[2024-03-07T16:33:08.745Z] precipitation. +[2024-03-07T16:33:08.745Z] """ +[2024-03-07T16:33:08.745Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, +[2024-03-07T16:33:08.745Z] # such as units and variable names. +[2024-03-07T16:33:08.745Z] with xr.set_options(keep_attrs=True): +[2024-03-07T16:33:08.745Z] ERA5_reference = subset.subset_shape( +[2024-03-07T16:33:08.745Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour +[2024-03-07T16:33:08.745Z] ) +[2024-03-07T16:33:08.745Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) +[2024-03-07T16:33:08.745Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) +[2024-03-07T16:33:08.745Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] # Change the units +[2024-03-07T16:33:08.745Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C +[2024-03-07T16:33:08.745Z] ERA5_tmin.attrs["units"] = "degC" +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C +[2024-03-07T16:33:08.745Z] ERA5_tmax.attrs["units"] = "degC" +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] ERA5_pr = ERA5_pr * 1000 # m to mm +[2024-03-07T16:33:08.745Z] ERA5_pr.attrs["units"] = "mm" +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] # Average the variables spatially +[2024-03-07T16:33:08.745Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-03-07T16:33:08.745Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-03-07T16:33:08.745Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-07T16:33:08.745Z] +[2024-03-07T16:33:08.745Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-07T16:33:08.746Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-07T16:33:08.746Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-07T16:33:08.746Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-03-07T16:33:08.746Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the +[2024-03-07T16:33:08.746Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. +[2024-03-07T16:33:08.746Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) +[2024-03-07T16:33:08.746Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] Traceback: +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.746Z] KeyError Traceback (most recent call last) +[2024-03-07T16:33:08.746Z] Cell In[1], line 37 +[2024-03-07T16:33:08.746Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-07T16:33:08.746Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-07T16:33:08.746Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-07T16:33:08.746Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-07T16:33:08.746Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-03-07T16:33:08.746Z]  851 self.coords[key] = value +[2024-03-07T16:33:08.746Z]  852 else: +[2024-03-07T16:33:08.746Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-03-07T16:33:08.746Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-03-07T16:33:08.746Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-03-07T16:33:08.746Z] --> 856 obj = self[key] +[2024-03-07T16:33:08.746Z]  857 if isinstance(value, DataArray): +[2024-03-07T16:33:08.746Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-03-07T16:33:08.746Z]  844 return self._getitem_coord(key) +[2024-03-07T16:33:08.746Z]  845 else: +[2024-03-07T16:33:08.746Z]  846 # xarray-style array indexing +[2024-03-07T16:33:08.746Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-03-07T16:33:08.746Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-03-07T16:33:08.746Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-03-07T16:33:08.746Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-03-07T16:33:08.746Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-03-07T16:33:08.746Z]  1447  ) +[2024-03-07T16:33:08.746Z]  1448 return self._from_temp_dataset(ds) +[2024-03-07T16:33:08.746Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-03-07T16:33:08.746Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-03-07T16:33:08.746Z]  2926 var_indexers = { +[2024-03-07T16:33:08.746Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-03-07T16:33:08.746Z]  2928 } +[2024-03-07T16:33:08.746Z]  2929 if var_indexers: +[2024-03-07T16:33:08.746Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-03-07T16:33:08.746Z]  2931 # drop scalar coordinates +[2024-03-07T16:33:08.746Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-03-07T16:33:08.746Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-03-07T16:33:08.746Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-03-07T16:33:08.746Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-03-07T16:33:08.746Z] -> 1368 return self[key] +[2024-03-07T16:33:08.746Z] +[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-03-07T16:33:08.746Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-03-07T16:33:08.747Z]  879  """Return a new Variable object whose contents are consistent with +[2024-03-07T16:33:08.747Z]  880  getting the provided key from the underlying data. +[2024-03-07T16:33:08.747Z]  881 +[2024-03-07T16:33:08.747Z]  (...) +[2024-03-07T16:33:08.747Z]  889  array `x.values` directly. +[2024-03-07T16:33:08.747Z]  890  """ +[2024-03-07T16:33:08.747Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-03-07T16:33:08.747Z]  892 data = as_indexable(self._data)[indexer] +[2024-03-07T16:33:08.747Z]  893 if new_order: +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-03-07T16:33:08.747Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-03-07T16:33:08.747Z]  722 return self._broadcast_indexes_basic(key) +[2024-03-07T16:33:08.747Z] --> 724 self._validate_indexers(key) +[2024-03-07T16:33:08.747Z]  725 # Detect it can be mapped as an outer indexer +[2024-03-07T16:33:08.747Z]  726 # If all key is unlabeled, or +[2024-03-07T16:33:08.747Z]  727 # key can be mapped as an OuterIndexer. +[2024-03-07T16:33:08.747Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-03-07T16:33:08.747Z]  771 raise IndexError( +[2024-03-07T16:33:08.747Z]  772 "{}-dimensional boolean indexing is " +[2024-03-07T16:33:08.747Z]  773 "not supported. ".format(k.ndim) +[2024-03-07T16:33:08.747Z]  774 ) +[2024-03-07T16:33:08.747Z]  775 if is_duck_dask_array(k.data): +[2024-03-07T16:33:08.747Z] --> 776 raise KeyError( +[2024-03-07T16:33:08.747Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-03-07T16:33:08.747Z]  778 "This will result in a dask array of unknown shape. " +[2024-03-07T16:33:08.747Z]  779 "Such arrays are unsupported by Xarray." +[2024-03-07T16:33:08.747Z]  780 "Please compute the indexer first using .compute()" +[2024-03-07T16:33:08.747Z]  781 ) +[2024-03-07T16:33:08.747Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-03-07T16:33:08.747Z]  783 raise IndexError( +[2024-03-07T16:33:08.747Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-03-07T16:33:08.747Z]  785 "same dimension to the indexed array. Indexer is " +[2024-03-07T16:33:08.747Z]  (...) +[2024-03-07T16:33:08.747Z]  788 ) +[2024-03-07T16:33:08.747Z]  789 ) +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ +[2024-03-07T16:33:08.747Z] Notebook cell execution failed +[2024-03-07T16:33:08.747Z] Cell 11: Cell execution caused an exception +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] Input: +[2024-03-07T16:33:08.747Z] # Climate model to use +[2024-03-07T16:33:08.747Z] climate_model = "MIROC6" +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. +[2024-03-07T16:33:08.747Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") +[2024-03-07T16:33:08.747Z] col = intake.open_esm_datastore( +[2024-03-07T16:33:08.747Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" +[2024-03-07T16:33:08.747Z] ) +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. +[2024-03-07T16:33:08.747Z] with xr.set_options(keep_attrs=True): +[2024-03-07T16:33:08.747Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. +[2024-03-07T16:33:08.747Z] out = {} +[2024-03-07T16:33:08.747Z] for exp in ["historical", "ssp585"]: +[2024-03-07T16:33:08.747Z] if exp == "historical": +[2024-03-07T16:33:08.747Z] period_start = reference_start_day +[2024-03-07T16:33:08.747Z] period_end = reference_end_day +[2024-03-07T16:33:08.747Z] else: +[2024-03-07T16:33:08.747Z] period_start = future_start_day +[2024-03-07T16:33:08.747Z] period_end = future_end_day +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] out[exp] = {} +[2024-03-07T16:33:08.747Z] for variable in ["tasmin", "tasmax", "pr"]: +[2024-03-07T16:33:08.747Z] print(exp, variable) +[2024-03-07T16:33:08.747Z] query = dict( +[2024-03-07T16:33:08.747Z] experiment_id=exp, +[2024-03-07T16:33:08.747Z] table_id="day", +[2024-03-07T16:33:08.747Z] variable_id=variable, +[2024-03-07T16:33:08.747Z] member_id="r1i1p1f1", +[2024-03-07T16:33:08.747Z] source_id=climate_model, +[2024-03-07T16:33:08.747Z] ) +[2024-03-07T16:33:08.747Z] col_subset = col.search(require_all_on=["source_id"], **query) +[2024-03-07T16:33:08.747Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. +[2024-03-07T16:33:08.747Z] if variable == "pr": +[2024-03-07T16:33:08.747Z] out[exp][variable] = average.average_shape( +[2024-03-07T16:33:08.747Z] xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-07T16:33:08.747Z] time=slice(period_start, period_end) +[2024-03-07T16:33:08.747Z] )[variable], +[2024-03-07T16:33:08.747Z] basin_contour, +[2024-03-07T16:33:08.747Z] ).chunk(-1) +[2024-03-07T16:33:08.747Z] else: +[2024-03-07T16:33:08.747Z] out[exp][variable] = average.average_shape( +[2024-03-07T16:33:08.747Z] xr.open_zarr(mapper, consolidated=True) +[2024-03-07T16:33:08.747Z] .sel(time=slice(period_start, period_end)) +[2024-03-07T16:33:08.747Z] .reset_coords("height", drop=True)[variable], +[2024-03-07T16:33:08.747Z] basin_contour, +[2024-03-07T16:33:08.747Z] ).chunk(-1) +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] # We can now extract the variables that we will need later: +[2024-03-07T16:33:08.747Z] historical_tasmax = out["historical"]["tasmax"] +[2024-03-07T16:33:08.747Z] historical_tasmin = out["historical"]["tasmin"] +[2024-03-07T16:33:08.747Z] historical_pr = out["historical"]["pr"] +[2024-03-07T16:33:08.747Z] future_tasmax = out["ssp585"]["tasmax"] +[2024-03-07T16:33:08.747Z] future_tasmin = out["ssp585"]["tasmin"] +[2024-03-07T16:33:08.747Z] future_pr = out["ssp585"]["pr"] +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] Traceback: +[2024-03-07T16:33:08.747Z] +[2024-03-07T16:33:08.747Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.747Z] KeyError Traceback (most recent call last) +[2024-03-07T16:33:08.747Z] Cell In[1], line 44 +[2024-03-07T16:33:08.747Z]  37 out[exp][variable] = average.average_shape( +[2024-03-07T16:33:08.748Z]  38 xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-07T16:33:08.748Z]  39 time=slice(period_start, period_end) +[2024-03-07T16:33:08.748Z]  40 )[variable], +[2024-03-07T16:33:08.748Z]  41 basin_contour, +[2024-03-07T16:33:08.748Z]  42 ).chunk(-1) +[2024-03-07T16:33:08.748Z]  43 else: +[2024-03-07T16:33:08.748Z] ---> 44 out[exp][variable] = average.average_shape( +[2024-03-07T16:33:08.748Z]  45  xr.open_zarr(mapper, consolidated=True) +[2024-03-07T16:33:08.748Z]  46  .sel(time=slice(period_start, period_end)) +[2024-03-07T16:33:08.748Z]  47  .reset_coords("height", drop=True)[variable], +[2024-03-07T16:33:08.748Z]  48  basin_contour, +[2024-03-07T16:33:08.748Z]  49  ).chunk(-1) +[2024-03-07T16:33:08.748Z]  51 # We can now extract the variables that we will need later: +[2024-03-07T16:33:08.748Z]  52 historical_tasmax = out["historical"]["tasmax"] +[2024-03-07T16:33:08.748Z] +[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) +[2024-03-07T16:33:08.748Z]  105 ds_sub = ds_copy.isel(indexer) +[2024-03-07T16:33:08.748Z]  107 # Compute the weights +[2024-03-07T16:33:08.748Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) +[2024-03-07T16:33:08.748Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. +[2024-03-07T16:33:08.748Z]  111 nonnull = ( +[2024-03-07T16:33:08.748Z]  112 savger.weights.data.nnz +[2024-03-07T16:33:08.748Z]  113 if isinstance(savger.weights, xr.DataArray) +[2024-03-07T16:33:08.748Z]  114 else savger.weights.nnz +[2024-03-07T16:33:08.748Z]  115 ) +[2024-03-07T16:33:08.748Z] +[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) +[2024-03-07T16:33:08.748Z]  1182 if isinstance(ds_in, xr.DataArray): +[2024-03-07T16:33:08.748Z]  1183 ds_in = ds_in._to_temp_dataset() +[2024-03-07T16:33:08.748Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) +[2024-03-07T16:33:08.748Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. +[2024-03-07T16:33:08.748Z]  1188 # Latitude and longitude coordinates are the polygon centroid. +[2024-03-07T16:33:08.748Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) +[2024-03-07T16:33:08.748Z] +[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) +[2024-03-07T16:33:08.748Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) +[2024-03-07T16:33:08.748Z]  166 if need_bounds: +[2024-03-07T16:33:08.748Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) +[2024-03-07T16:33:08.748Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) +[2024-03-07T16:33:08.748Z]  169 add_corner(grid, lon_b.T, lat_b.T) +[2024-03-07T16:33:08.748Z] +[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) +[2024-03-07T16:33:08.748Z]  105 lat_bnds = ds.cf.get_bounds('latitude') +[2024-03-07T16:33:08.748Z]  107 # Convert from CF bounds to xESMF bounds. +[2024-03-07T16:33:08.748Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. +[2024-03-07T16:33:08.748Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) +[2024-03-07T16:33:08.748Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) +[2024-03-07T16:33:08.748Z]  111 return lon_b, lat_b +[2024-03-07T16:33:08.748Z] +[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) +[2024-03-07T16:33:08.748Z]  2400 filtered = [ +[2024-03-07T16:33:08.748Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs +[2024-03-07T16:33:08.748Z]  2402 ] +[2024-03-07T16:33:08.748Z]  2403 if len(filtered) > 1: +[2024-03-07T16:33:08.748Z] -> 2404 raise KeyError( +[2024-03-07T16:33:08.748Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " +[2024-03-07T16:33:08.748Z]  2406 ) +[2024-03-07T16:33:08.748Z]  2408 (crd_name,) = filtered +[2024-03-07T16:33:08.748Z]  2409 crd = variables[crd_name] +[2024-03-07T16:33:08.748Z] +[2024-03-07T16:33:08.748Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " +[2024-03-07T16:33:08.748Z] +[2024-03-07T16:33:08.748Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ +[2024-03-07T16:33:08.748Z] Notebook cell execution failed +[2024-03-07T16:33:08.748Z] Cell 12: Cell execution caused an exception +[2024-03-07T16:33:08.748Z] +[2024-03-07T16:33:08.748Z] Input: +[2024-03-07T16:33:08.748Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-07T16:33:08.748Z] # and make sure everything is consistent. +[2024-03-07T16:33:08.748Z] +[2024-03-07T16:33:08.748Z] # Let's start with precipitation: +[2024-03-07T16:33:08.749Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-07T16:33:08.749Z] historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-07T16:33:08.749Z] future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Now we can actually convert units in absolute terms. +[2024-03-07T16:33:08.749Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") +[2024-03-07T16:33:08.749Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Now let's do temperature: +[2024-03-07T16:33:08.749Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") +[2024-03-07T16:33:08.749Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") +[2024-03-07T16:33:08.749Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") +[2024-03-07T16:33:08.749Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] Traceback: +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.749Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.749Z] Cell In[1], line 6 +[2024-03-07T16:33:08.749Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-07T16:33:08.749Z]  2 # and make sure everything is consistent. +[2024-03-07T16:33:08.749Z]  3 +[2024-03-07T16:33:08.749Z]  4 # Let's start with precipitation: +[2024-03-07T16:33:08.749Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-07T16:33:08.749Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-07T16:33:08.749Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-07T16:33:08.749Z]  9 # Now we can actually convert units in absolute terms. +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] NameError: name 'historical_pr' is not defined +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ +[2024-03-07T16:33:08.749Z] Notebook cell execution failed +[2024-03-07T16:33:08.749Z] Cell 13: Cell execution caused an exception +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] Input: +[2024-03-07T16:33:08.749Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. +[2024-03-07T16:33:08.749Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-07T16:33:08.749Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-07T16:33:08.749Z] ref=ERA5_weather.pr, +[2024-03-07T16:33:08.749Z] hist=historical_pr, +[2024-03-07T16:33:08.749Z] nquantiles=50, +[2024-03-07T16:33:08.749Z] kind="+", +[2024-03-07T16:33:08.749Z] group=group_month_window, +[2024-03-07T16:33:08.749Z] ) +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Apply the correction factors on the reference period +[2024-03-07T16:33:08.749Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Apply the correction factors on the future period +[2024-03-07T16:33:08.749Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Ensure that the precipitation is non-negative, which can happen with some climate models +[2024-03-07T16:33:08.749Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) +[2024-03-07T16:33:08.749Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data +[2024-03-07T16:33:08.749Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-07T16:33:08.749Z] ref=ERA5_weather.tmax, +[2024-03-07T16:33:08.749Z] hist=historical_tasmax, +[2024-03-07T16:33:08.749Z] nquantiles=50, +[2024-03-07T16:33:08.749Z] kind="+", +[2024-03-07T16:33:08.749Z] group=group_month_window, +[2024-03-07T16:33:08.749Z] ) +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Apply the correction factors on the reference period +[2024-03-07T16:33:08.749Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Apply the correction factors on the future period +[2024-03-07T16:33:08.749Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data +[2024-03-07T16:33:08.749Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-07T16:33:08.749Z] ref=ERA5_weather.tmin, +[2024-03-07T16:33:08.749Z] hist=historical_tasmin, +[2024-03-07T16:33:08.749Z] nquantiles=50, +[2024-03-07T16:33:08.749Z] kind="+", +[2024-03-07T16:33:08.749Z] group=group_month_window, +[2024-03-07T16:33:08.749Z] ) +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Apply the correction factors on the reference period +[2024-03-07T16:33:08.749Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Apply the correction factors on the future period +[2024-03-07T16:33:08.749Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] Traceback: +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.749Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.749Z] Cell In[1], line 6 +[2024-03-07T16:33:08.749Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-07T16:33:08.749Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-07T16:33:08.749Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-07T16:33:08.749Z] ----> 6 ref=ERA5_weather.pr, +[2024-03-07T16:33:08.749Z]  7 hist=historical_pr, +[2024-03-07T16:33:08.749Z]  8 nquantiles=50, +[2024-03-07T16:33:08.749Z]  9 kind="+", +[2024-03-07T16:33:08.749Z]  10 group=group_month_window, +[2024-03-07T16:33:08.749Z]  11 ) +[2024-03-07T16:33:08.749Z]  13 # Apply the correction factors on the reference period +[2024-03-07T16:33:08.749Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] NameError: name 'ERA5_weather' is not defined +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ +[2024-03-07T16:33:08.749Z] Notebook cell execution failed +[2024-03-07T16:33:08.749Z] Cell 14: Cell execution caused an exception +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] Input: +[2024-03-07T16:33:08.749Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-07T16:33:08.749Z] ref_dataset = xr.merge( +[2024-03-07T16:33:08.749Z] [ +[2024-03-07T16:33:08.749Z] corrected_ref_precip.to_dataset(name="pr"), +[2024-03-07T16:33:08.749Z] corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-07T16:33:08.749Z] corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-07T16:33:08.749Z] ] +[2024-03-07T16:33:08.749Z] ) +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Write to temporary folder +[2024-03-07T16:33:08.749Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-07T16:33:08.749Z] ref_dataset.to_netcdf(fn_tmp_ref) +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Convert the future corrected data into netCDF file +[2024-03-07T16:33:08.749Z] fut_dataset = xr.merge( +[2024-03-07T16:33:08.749Z] [ +[2024-03-07T16:33:08.749Z] corrected_fut_precip.to_dataset(name="pr"), +[2024-03-07T16:33:08.749Z] corrected_fut_tasmax.to_dataset(name="tasmax"), +[2024-03-07T16:33:08.749Z] corrected_fut_tasmin.to_dataset(name="tasmin"), +[2024-03-07T16:33:08.749Z] ] +[2024-03-07T16:33:08.749Z] ) +[2024-03-07T16:33:08.749Z] # Write to temporary folder +[2024-03-07T16:33:08.749Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" +[2024-03-07T16:33:08.749Z] fut_dataset.to_netcdf(fn_tmp_fut) +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] # Write the data to disk to a temporary location for future use. +[2024-03-07T16:33:08.749Z] ref_dataset = xr.open_dataset(fn_tmp_ref) +[2024-03-07T16:33:08.749Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] fut_dataset = xr.open_dataset(fn_tmp_fut) +[2024-03-07T16:33:08.749Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.749Z] Traceback: +[2024-03-07T16:33:08.749Z] +[2024-03-07T16:33:08.750Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.750Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.750Z] Cell In[1], line 4 +[2024-03-07T16:33:08.750Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-07T16:33:08.750Z]  2 ref_dataset = xr.merge( +[2024-03-07T16:33:08.750Z]  3 [ +[2024-03-07T16:33:08.750Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), +[2024-03-07T16:33:08.750Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-07T16:33:08.750Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-07T16:33:08.750Z]  7 ] +[2024-03-07T16:33:08.750Z]  8 ) +[2024-03-07T16:33:08.750Z]  10 # Write to temporary folder +[2024-03-07T16:33:08.750Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] NameError: name 'corrected_ref_precip' is not defined +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ +[2024-03-07T16:33:08.750Z] Notebook cell execution failed +[2024-03-07T16:33:08.750Z] Cell 15: Cell execution caused an exception +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] Input: +[2024-03-07T16:33:08.750Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-03-07T16:33:08.750Z] # populate the fields for the HRU. +[2024-03-07T16:33:08.750Z] hru = {} +[2024-03-07T16:33:08.750Z] hru = dict( +[2024-03-07T16:33:08.750Z] area=all_properties["area"], +[2024-03-07T16:33:08.750Z] elevation=all_properties["elevation"], +[2024-03-07T16:33:08.750Z] latitude=all_properties["latitude"], +[2024-03-07T16:33:08.750Z] longitude=all_properties["longitude"], +[2024-03-07T16:33:08.750Z] hru_type="land", +[2024-03-07T16:33:08.750Z] ) +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-03-07T16:33:08.750Z] # will simply execute the model which has been pre-configured to run on this period. +[2024-03-07T16:33:08.750Z] start_date = dt.datetime(1981, 1, 1) +[2024-03-07T16:33:08.750Z] end_date = dt.datetime(1985, 12, 31) +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. +[2024-03-07T16:33:08.750Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Alternative variable names as described in the tutorial. +[2024-03-07T16:33:08.750Z] alt_names = { +[2024-03-07T16:33:08.750Z] "TEMP_MIN": "tmin", +[2024-03-07T16:33:08.750Z] "TEMP_MAX": "tmax", +[2024-03-07T16:33:08.750Z] "PRECIP": "pr", +[2024-03-07T16:33:08.750Z] } +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here +[2024-03-07T16:33:08.750Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. +[2024-03-07T16:33:08.750Z] data_kwds = { +[2024-03-07T16:33:08.750Z] "ALL": { +[2024-03-07T16:33:08.750Z] "elevation": hru["elevation"], +[2024-03-07T16:33:08.750Z] "latitude": hru["latitude"], +[2024-03-07T16:33:08.750Z] "longitude": hru["longitude"], +[2024-03-07T16:33:08.750Z] } +[2024-03-07T16:33:08.750Z] } +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Give a name to the simulation +[2024-03-07T16:33:08.750Z] run_name = "Paper_example_simulation" +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Setup the gauge object that includes meteorological data from ERA5 +[2024-03-07T16:33:08.750Z] gauge = [ +[2024-03-07T16:33:08.750Z] rc.Gauge.from_nc( +[2024-03-07T16:33:08.750Z] tmp +[2024-03-07T16:33:08.750Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-03-07T16:33:08.750Z] data_type=data_type, # Note that this is the list of all the variables +[2024-03-07T16:33:08.750Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-03-07T16:33:08.750Z] data_kwds=data_kwds, +[2024-03-07T16:33:08.750Z] ) +[2024-03-07T16:33:08.750Z] ] +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Read the streamflow from the HYSETS catchment data for this basin +[2024-03-07T16:33:08.750Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, +[2024-03-07T16:33:08.750Z] # and the optimizer will read it directly to calibrate. +[2024-03-07T16:33:08.750Z] eval_metrics = ("NASH_SUTCLIFFE",) +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Build the model configuration according to user preferences and inputs +[2024-03-07T16:33:08.750Z] model_config = GR4JCN( +[2024-03-07T16:33:08.750Z] ObservationData=discharge_data, +[2024-03-07T16:33:08.750Z] Gauge=gauge, +[2024-03-07T16:33:08.750Z] HRUs=[hru], +[2024-03-07T16:33:08.750Z] StartDate=start_date, +[2024-03-07T16:33:08.750Z] EndDate=end_date, +[2024-03-07T16:33:08.750Z] RunName=run_name, +[2024-03-07T16:33:08.750Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. +[2024-03-07T16:33:08.750Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. +[2024-03-07T16:33:08.750Z] ) +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] Traceback: +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.750Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.750Z] Cell In[1], line 5 +[2024-03-07T16:33:08.750Z]  1 # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-03-07T16:33:08.750Z]  2 # populate the fields for the HRU. +[2024-03-07T16:33:08.750Z]  3 hru = {} +[2024-03-07T16:33:08.750Z]  4 hru = dict( +[2024-03-07T16:33:08.750Z] ----> 5 area=all_properties["area"], +[2024-03-07T16:33:08.750Z]  6 elevation=all_properties["elevation"], +[2024-03-07T16:33:08.750Z]  7 latitude=all_properties["latitude"], +[2024-03-07T16:33:08.750Z]  8 longitude=all_properties["longitude"], +[2024-03-07T16:33:08.750Z]  9 hru_type="land", +[2024-03-07T16:33:08.750Z]  10 ) +[2024-03-07T16:33:08.750Z]  12 # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-03-07T16:33:08.750Z]  13 # will simply execute the model which has been pre-configured to run on this period. +[2024-03-07T16:33:08.750Z]  14 start_date = dt.datetime(1981, 1, 1) +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] NameError: name 'all_properties' is not defined +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ +[2024-03-07T16:33:08.750Z] Notebook cell execution failed +[2024-03-07T16:33:08.750Z] Cell 16: Cell execution caused an exception +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] Input: +[2024-03-07T16:33:08.750Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, +[2024-03-07T16:33:08.750Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. +[2024-03-07T16:33:08.750Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) +[2024-03-07T16:33:08.750Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. +[2024-03-07T16:33:08.750Z] random_seed = 42 +[2024-03-07T16:33:08.750Z] np.random.seed(random_seed) +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Build the optimizer object +[2024-03-07T16:33:08.750Z] spot_setup = SpotSetup( +[2024-03-07T16:33:08.750Z] config=model_config, +[2024-03-07T16:33:08.750Z] low=low, +[2024-03-07T16:33:08.750Z] high=high, +[2024-03-07T16:33:08.750Z] ) +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-07T16:33:08.750Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-07T16:33:08.750Z] max_iterations = 200 +[2024-03-07T16:33:08.750Z] +[2024-03-07T16:33:08.750Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer +[2024-03-07T16:33:08.751Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most +[2024-03-07T16:33:08.751Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation +[2024-03-07T16:33:08.751Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small +[2024-03-07T16:33:08.751Z] # evaluation budgets. For more details on DDS, see: +[2024-03-07T16:33:08.751Z] # +[2024-03-07T16:33:08.751Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water +[2024-03-07T16:33:08.751Z] # Resources Research, 43(1) +[2024-03-07T16:33:08.751Z] sampler = spotpy.algorithms.dds( +[2024-03-07T16:33:08.751Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False +[2024-03-07T16:33:08.751Z] ) +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and +[2024-03-07T16:33:08.751Z] # the best overall value from all trials is returned. +[2024-03-07T16:33:08.751Z] sampler.sample(max_iterations, trials=1) +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Get the model diagnostics +[2024-03-07T16:33:08.751Z] diag = spot_setup.diagnostics +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Get all the values of each iteration +[2024-03-07T16:33:08.751Z] results = sampler.getdata() +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Get the raw resutlts directly in an array +[2024-03-07T16:33:08.751Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( +[2024-03-07T16:33:08.751Z] results +[2024-03-07T16:33:08.751Z] ) # Want to get the MAX NSE (change for min for RMSE) +[2024-03-07T16:33:08.751Z] best_model_run = list( +[2024-03-07T16:33:08.751Z] results[bestindex][0] +[2024-03-07T16:33:08.751Z] ) # Get the parameter set returning the best NSE +[2024-03-07T16:33:08.751Z] optimized_parameters = best_model_run[ +[2024-03-07T16:33:08.751Z] 1:-1 +[2024-03-07T16:33:08.751Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Display the parameter set ready to use in a future run: +[2024-03-07T16:33:08.751Z] print(optimized_parameters) +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] Traceback: +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.751Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.751Z] Cell In[1], line 12 +[2024-03-07T16:33:08.751Z]  8 np.random.seed(random_seed) +[2024-03-07T16:33:08.751Z]  10 # Build the optimizer object +[2024-03-07T16:33:08.751Z]  11 spot_setup = SpotSetup( +[2024-03-07T16:33:08.751Z] ---> 12 config=model_config, +[2024-03-07T16:33:08.751Z]  13 low=low, +[2024-03-07T16:33:08.751Z]  14 high=high, +[2024-03-07T16:33:08.751Z]  15 ) +[2024-03-07T16:33:08.751Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-07T16:33:08.751Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-07T16:33:08.751Z]  19 max_iterations = 200 +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] NameError: name 'model_config' is not defined +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ +[2024-03-07T16:33:08.751Z] Notebook cell execution failed +[2024-03-07T16:33:08.751Z] Cell 17: Cell execution caused an exception +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] Input: +[2024-03-07T16:33:08.751Z] # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-07T16:33:08.751Z] model_validation = model_config.duplicate( +[2024-03-07T16:33:08.751Z] params=optimized_parameters, +[2024-03-07T16:33:08.751Z] StartDate=dt.datetime(1986, 1, 1), +[2024-03-07T16:33:08.751Z] EndDate=dt.datetime(1990, 12, 31), +[2024-03-07T16:33:08.751Z] SuppressOutput=False, +[2024-03-07T16:33:08.751Z] ) +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] sim_output = Emulator(config=model_validation).run() +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-07T16:33:08.751Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Plot the model output +[2024-03-07T16:33:08.751Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") +[2024-03-07T16:33:08.751Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-07T16:33:08.751Z] plt.legend() +[2024-03-07T16:33:08.751Z] plt.title("Validation period - NSE=" + str(NSE[0])) +[2024-03-07T16:33:08.751Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-07T16:33:08.751Z] plt.grid() +[2024-03-07T16:33:08.751Z] plt.show() +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] Traceback: +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.751Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.751Z] Cell In[1], line 2 +[2024-03-07T16:33:08.751Z]  1 # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-07T16:33:08.751Z] ----> 2 model_validation = model_config.duplicate( +[2024-03-07T16:33:08.751Z]  3 params=optimized_parameters, +[2024-03-07T16:33:08.751Z]  4 StartDate=dt.datetime(1986, 1, 1), +[2024-03-07T16:33:08.751Z]  5 EndDate=dt.datetime(1990, 12, 31), +[2024-03-07T16:33:08.751Z]  6 SuppressOutput=False, +[2024-03-07T16:33:08.751Z]  7 ) +[2024-03-07T16:33:08.751Z]  9 sim_output = Emulator(config=model_validation).run() +[2024-03-07T16:33:08.751Z]  11 # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] NameError: name 'model_config' is not defined +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ +[2024-03-07T16:33:08.751Z] Notebook cell execution failed +[2024-03-07T16:33:08.751Z] Cell 18: Cell execution caused an exception +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] Input: +[2024-03-07T16:33:08.751Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-07T16:33:08.751Z] gauge_ref = [ +[2024-03-07T16:33:08.751Z] rc.Gauge.from_nc( +[2024-03-07T16:33:08.751Z] tmp +[2024-03-07T16:33:08.751Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-07T16:33:08.751Z] data_type=data_type, +[2024-03-07T16:33:08.751Z] alt_names=alt_names, +[2024-03-07T16:33:08.751Z] data_kwds=data_kwds, +[2024-03-07T16:33:08.751Z] ) +[2024-03-07T16:33:08.751Z] ] +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-07T16:33:08.751Z] model_config_reference = model_validation.duplicate( +[2024-03-07T16:33:08.751Z] Gauge=gauge_ref, +[2024-03-07T16:33:08.751Z] StartDate=reference_start_day +[2024-03-07T16:33:08.751Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-07T16:33:08.751Z] EndDate=reference_end_day, +[2024-03-07T16:33:08.751Z] ) +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Run the model from the configuration and get the outputs. +[2024-03-07T16:33:08.751Z] ref_output = Emulator(config=model_config_reference).run() +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] # Plot the model output. Note that both simulations should have similar hydrological +[2024-03-07T16:33:08.751Z] # regime but day-to-day variability is not expected to match. +[2024-03-07T16:33:08.751Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") +[2024-03-07T16:33:08.751Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-07T16:33:08.751Z] plt.legend() +[2024-03-07T16:33:08.751Z] plt.title("Reference period") +[2024-03-07T16:33:08.751Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-07T16:33:08.751Z] plt.grid() +[2024-03-07T16:33:08.751Z] plt.show() +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] Traceback: +[2024-03-07T16:33:08.751Z] +[2024-03-07T16:33:08.751Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.751Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.751Z] Cell In[1], line 6 +[2024-03-07T16:33:08.751Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-07T16:33:08.751Z]  2 gauge_ref = [ +[2024-03-07T16:33:08.751Z]  3 rc.Gauge.from_nc( +[2024-03-07T16:33:08.751Z]  4 tmp +[2024-03-07T16:33:08.751Z]  5 / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-07T16:33:08.751Z] ----> 6 data_type=data_type, +[2024-03-07T16:33:08.751Z]  7 alt_names=alt_names, +[2024-03-07T16:33:08.752Z]  8 data_kwds=data_kwds, +[2024-03-07T16:33:08.752Z]  9 ) +[2024-03-07T16:33:08.752Z]  10 ] +[2024-03-07T16:33:08.752Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-07T16:33:08.752Z]  13 model_config_reference = model_validation.duplicate( +[2024-03-07T16:33:08.752Z]  14 Gauge=gauge_ref, +[2024-03-07T16:33:08.752Z]  15 StartDate=reference_start_day +[2024-03-07T16:33:08.752Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-07T16:33:08.752Z]  17 EndDate=reference_end_day, +[2024-03-07T16:33:08.752Z]  18 ) +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] NameError: name 'data_type' is not defined +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ +[2024-03-07T16:33:08.752Z] Notebook cell execution failed +[2024-03-07T16:33:08.752Z] Cell 19: Cell execution caused an exception +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] Input: +[2024-03-07T16:33:08.752Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-07T16:33:08.752Z] gauge_fut = [ +[2024-03-07T16:33:08.752Z] rc.Gauge.from_nc( +[2024-03-07T16:33:08.752Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-07T16:33:08.752Z] data_type=data_type, +[2024-03-07T16:33:08.752Z] alt_names=alt_names, +[2024-03-07T16:33:08.752Z] data_kwds=data_kwds, +[2024-03-07T16:33:08.752Z] ) +[2024-03-07T16:33:08.752Z] ] +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-07T16:33:08.752Z] model_config_future = model_validation.duplicate( +[2024-03-07T16:33:08.752Z] Gauge=gauge_fut, +[2024-03-07T16:33:08.752Z] StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-07T16:33:08.752Z] EndDate=future_end_day, +[2024-03-07T16:33:08.752Z] ObservationData=None, # There are no observations for the future period. +[2024-03-07T16:33:08.752Z] ) +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] # Run the model and get the outputs and hydrographs. +[2024-03-07T16:33:08.752Z] fut_output = Emulator(config=model_config_future).run() +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] # Plot the model output +[2024-03-07T16:33:08.752Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") +[2024-03-07T16:33:08.752Z] plt.legend() +[2024-03-07T16:33:08.752Z] plt.title("Future period") +[2024-03-07T16:33:08.752Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-07T16:33:08.752Z] plt.grid() +[2024-03-07T16:33:08.752Z] plt.show() +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] Traceback: +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.752Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.752Z] Cell In[1], line 5 +[2024-03-07T16:33:08.752Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-07T16:33:08.752Z]  2 gauge_fut = [ +[2024-03-07T16:33:08.752Z]  3 rc.Gauge.from_nc( +[2024-03-07T16:33:08.752Z]  4 tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-07T16:33:08.752Z] ----> 5 data_type=data_type, +[2024-03-07T16:33:08.752Z]  6 alt_names=alt_names, +[2024-03-07T16:33:08.752Z]  7 data_kwds=data_kwds, +[2024-03-07T16:33:08.752Z]  8 ) +[2024-03-07T16:33:08.752Z]  9 ] +[2024-03-07T16:33:08.752Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-07T16:33:08.752Z]  12 model_config_future = model_validation.duplicate( +[2024-03-07T16:33:08.752Z]  13 Gauge=gauge_fut, +[2024-03-07T16:33:08.752Z]  14 StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-07T16:33:08.752Z]  15 EndDate=future_end_day, +[2024-03-07T16:33:08.752Z]  16 ObservationData=None, # There are no observations for the future period. +[2024-03-07T16:33:08.752Z]  17 ) +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] NameError: name 'data_type' is not defined +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ +[2024-03-07T16:33:08.752Z] Notebook cell execution failed +[2024-03-07T16:33:08.752Z] Cell 20: Cell execution caused an exception +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] Input: +[2024-03-07T16:33:08.752Z] # Extract the mean annual hydrograph for each simulation. +[2024-03-07T16:33:08.752Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-07T16:33:08.752Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-07T16:33:08.752Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-07T16:33:08.752Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] # Plot the model output +[2024-03-07T16:33:08.752Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") +[2024-03-07T16:33:08.752Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") +[2024-03-07T16:33:08.752Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") +[2024-03-07T16:33:08.752Z] future_flows.plot(color="red", label="Future", x="dayofyear") +[2024-03-07T16:33:08.752Z] plt.legend() +[2024-03-07T16:33:08.752Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-07T16:33:08.752Z] plt.xlabel("Day of year") +[2024-03-07T16:33:08.752Z] plt.xlim([0, 365]) +[2024-03-07T16:33:08.752Z] plt.title("Comparison of mean annual hydrographs") +[2024-03-07T16:33:08.752Z] plt.grid() +[2024-03-07T16:33:08.752Z] plt.show() +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] Traceback: +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] --------------------------------------------------------------------------- +[2024-03-07T16:33:08.752Z] NameError Traceback (most recent call last) +[2024-03-07T16:33:08.752Z] Cell In[1], line 2 +[2024-03-07T16:33:08.752Z]  1 # Extract the mean annual hydrograph for each simulation. +[2024-03-07T16:33:08.752Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-07T16:33:08.752Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-07T16:33:08.752Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] NameError: name 'ref_output' is not defined +[2024-03-07T16:33:08.752Z] +[2024-03-07T16:33:08.752Z] =========================== short test summary info ============================ +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 7 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 8 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 10 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 +[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 +[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 0 - RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 1 - RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 2 - RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 3 - RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 4 - RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 5 - RuntimeError: Kernel didn't respond in 60 seconds +[2024-03-07T16:33:08.753Z] ============ 36 failed, 218 passed, 6 errors in 1149.59s (0:19:09) ============= +[2024-03-07T16:33:08.753Z] + EXIT_CODE=1 +[2024-03-07T16:33:08.753Z] + echo true +[2024-03-07T16:33:08.753Z] + tr [:upper:] [:lower:] +[2024-03-07T16:33:08.753Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-07T16:33:08.753Z] + [ xtrue = xtrue ] +[2024-03-07T16:33:08.753Z] + mkdir -p buildout +[2024-03-07T16:33:08.753Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-07T16:33:08.753Z] + filename=Region_selection.ipynb +[2024-03-07T16:33:08.753Z] + + sed s/.ipynb$// +[2024-03-07T16:33:08.753Z] echo Region_selection.ipynb +[2024-03-07T16:33:08.753Z] + filename=Region_selection +[2024-03-07T16:33:08.753Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-03-07T16:33:08.753Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-07T16:33:08.753Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-03-07T16:33:18.733Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb +[2024-03-07T16:33:18.733Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-07T16:33:18.733Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-03-07T16:33:18.733Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-03-07T16:33:18.733Z] + sed s/.ipynb$// +[2024-03-07T16:33:18.733Z] + filename=Subset_climate_data_over_watershed +[2024-03-07T16:33:18.733Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-03-07T16:33:18.733Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-07T16:33:19.304Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-03-07T16:33:37.463Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-03-07T16:33:37.463Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-07T16:33:37.463Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-03-07T16:33:37.463Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-03-07T16:33:37.463Z] + sed s/.ipynb$// +[2024-03-07T16:33:37.463Z] + filename=00_Introduction_to_JupyterLab +[2024-03-07T16:33:37.463Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-03-07T16:33:37.463Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-07T16:33:37.463Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-03-07T16:33:39.368Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-03-07T16:33:39.368Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-07T16:33:39.368Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-03-07T16:33:39.368Z] + + sed s/.ipynb$// +[2024-03-07T16:33:39.368Z] echo 01_Getting_watershed_boundaries.ipynb +[2024-03-07T16:33:39.368Z] + filename=01_Getting_watershed_boundaries +[2024-03-07T16:33:39.368Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-03-07T16:33:39.368Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-07T16:33:40.753Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-03-07T16:33:53.013Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-03-07T16:33:53.013Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-07T16:33:53.013Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-03-07T16:33:53.013Z] + + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-03-07T16:33:53.013Z] sed s/.ipynb$// +[2024-03-07T16:33:53.013Z] + filename=02_Extract_geographical_watershed_properties +[2024-03-07T16:33:53.013Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-03-07T16:33:53.013Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-07T16:33:53.584Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-03-07T16:34:08.474Z] [NbConvertApp] Writing 95487 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-03-07T16:34:08.474Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-07T16:34:08.474Z] + filename=03_Extracting_forcing_data.ipynb +[2024-03-07T16:34:08.474Z] + echo 03_Extracting_forcing_data.ipynb +[2024-03-07T16:34:08.474Z] + sed s/.ipynb$// +[2024-03-07T16:34:08.474Z] + filename=03_Extracting_forcing_data +[2024-03-07T16:34:08.474Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-03-07T16:34:08.474Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-07T16:34:09.053Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-03-07T16:36:15.534Z] [NbConvertApp] Writing 65772 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-03-07T16:36:15.534Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-07T16:36:15.534Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-03-07T16:36:15.534Z] + + echosed 04_Emulating_hydrological_models.ipynb s/.ipynb$// +[2024-03-07T16:36:15.534Z] +[2024-03-07T16:36:15.534Z] + filename=04_Emulating_hydrological_models +[2024-03-07T16:36:15.534Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-03-07T16:36:15.534Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-07T16:36:15.534Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-03-07T16:36:20.802Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-03-07T16:36:20.802Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-07T16:36:20.802Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-03-07T16:36:20.802Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-03-07T16:36:20.802Z] + sed s/.ipynb$// +[2024-03-07T16:36:20.802Z] + filename=05_Advanced_RavenPy_configuration +[2024-03-07T16:36:20.802Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-03-07T16:36:20.802Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-07T16:36:22.174Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-03-07T16:36:44.224Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-03-07T16:36:44.224Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-07T16:36:44.224Z] + filename=06_Raven_calibration.ipynb +[2024-03-07T16:36:44.224Z] + + sedecho s/.ipynb$// 06_Raven_calibration.ipynb +[2024-03-07T16:36:44.224Z] +[2024-03-07T16:36:44.224Z] + filename=06_Raven_calibration +[2024-03-07T16:36:44.224Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-03-07T16:36:44.224Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-07T16:36:44.224Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-03-07T16:36:54.213Z] [NbConvertApp] Writing 24098 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-03-07T16:36:54.213Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-07T16:36:54.213Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-03-07T16:36:54.213Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-03-07T16:36:54.213Z] + sed s/.ipynb$// +[2024-03-07T16:36:54.213Z] + filename=07_Making_and_using_hotstart_files +[2024-03-07T16:36:54.213Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-03-07T16:36:54.213Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-07T16:36:55.593Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-03-07T16:37:07.851Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-03-07T16:37:07.851Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-07T16:37:07.851Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-07T16:37:07.851Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-07T16:37:07.851Z] + sed s/.ipynb$// +[2024-03-07T16:37:07.851Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-03-07T16:37:07.851Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-03-07T16:37:07.851Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-07T16:37:09.237Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-03-07T16:41:00.773Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-03-07T16:41:00.773Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-07T16:41:00.773Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-07T16:41:00.773Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-07T16:41:00.773Z] + sed s/.ipynb$// +[2024-03-07T16:41:00.773Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-03-07T16:41:00.773Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-03-07T16:41:00.773Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-07T16:41:00.773Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-03-07T16:41:15.655Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-03-07T16:41:15.655Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-07T16:41:15.655Z] + filename=10_Data_assimilation.ipynb +[2024-03-07T16:41:15.655Z] + echo 10_Data_assimilation.ipynb +[2024-03-07T16:41:15.656Z] + sed s/.ipynb$// +[2024-03-07T16:41:15.656Z] + filename=10_Data_assimilation +[2024-03-07T16:41:15.656Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-03-07T16:41:15.656Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-07T16:41:15.656Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-03-07T16:42:37.107Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-03-07T16:42:37.107Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-07T16:42:37.107Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-03-07T16:42:37.107Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-03-07T16:42:37.107Z] + sed s/.ipynb$// +[2024-03-07T16:42:37.107Z] + filename=11_Climatological_ESP_forecasting +[2024-03-07T16:42:37.107Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-03-07T16:42:37.107Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-07T16:42:37.107Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-03-07T16:43:15.814Z] [NbConvertApp] Writing 556956 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-03-07T16:43:15.814Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-07T16:43:15.814Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-03-07T16:43:15.814Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-03-07T16:43:15.814Z] + sed s/.ipynb$// +[2024-03-07T16:43:15.814Z] + filename=12_Performing_hindcasting_experiments +[2024-03-07T16:43:15.814Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-03-07T16:43:15.814Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-07T16:43:15.814Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-03-07T16:43:37.801Z] [NbConvertApp] Writing 298315 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-03-07T16:43:37.801Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-07T16:43:37.801Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-03-07T16:43:37.801Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-03-07T16:43:37.801Z] + sed s/.ipynb$// +[2024-03-07T16:43:37.801Z] + filename=Assess_probabilistic_flood_risk +[2024-03-07T16:43:37.801Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-03-07T16:43:37.801Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-07T16:43:38.062Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-03-07T16:44:10.107Z] [NbConvertApp] Writing 549686 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-03-07T16:44:10.107Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-07T16:44:10.107Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-07T16:44:10.107Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-07T16:44:10.107Z] + sed s/.ipynb$// +[2024-03-07T16:44:10.107Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-03-07T16:44:10.107Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-03-07T16:44:10.107Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-07T16:44:10.107Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-03-07T16:44:42.190Z] [NbConvertApp] Writing 748714 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-03-07T16:44:42.190Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-07T16:44:42.190Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-03-07T16:44:42.190Z] + sed s/.ipynb$// +[2024-03-07T16:44:42.190Z] + echo Distributed_hydrological_modelling.ipynb +[2024-03-07T16:44:42.190Z] + filename=Distributed_hydrological_modelling +[2024-03-07T16:44:42.190Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-03-07T16:44:42.190Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-07T16:44:42.455Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-03-07T16:45:14.554Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-03-07T16:45:14.554Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-07T16:45:14.554Z] + filename=HydroShare_integration.ipynb +[2024-03-07T16:45:14.554Z] + + echo HydroShare_integration.ipynb +[2024-03-07T16:45:14.554Z] sed s/.ipynb$// +[2024-03-07T16:45:14.554Z] + filename=HydroShare_integration +[2024-03-07T16:45:14.554Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-03-07T16:45:14.554Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-07T16:45:15.126Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-03-07T16:45:20.415Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb +[2024-03-07T16:45:20.415Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-07T16:45:20.415Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-03-07T16:45:20.415Z] + echo Hydrological_realtime_forecasting.ipynb +[2024-03-07T16:45:20.415Z] + sed s/.ipynb$// +[2024-03-07T16:45:20.415Z] + filename=Hydrological_realtime_forecasting +[2024-03-07T16:45:20.415Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-03-07T16:45:20.415Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-07T16:45:21.357Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-03-07T16:45:43.309Z] [NbConvertApp] Writing 312700 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-03-07T16:45:43.309Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-07T16:45:43.309Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-03-07T16:45:43.309Z] + echo Managing_Jupyter_Environments.ipynb +[2024-03-07T16:45:43.309Z] + sed s/.ipynb$// +[2024-03-07T16:45:43.309Z] + filename=Managing_Jupyter_Environments +[2024-03-07T16:45:43.309Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-03-07T16:45:43.309Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-07T16:45:43.573Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-03-07T16:45:55.901Z] [NbConvertApp] Writing 8736 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-03-07T16:45:55.901Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-07T16:45:55.901Z] + filename=Perform_Regionalization.ipynb +[2024-03-07T16:45:55.901Z] + + sed s/.ipynb$// +[2024-03-07T16:45:55.901Z] echo Perform_Regionalization.ipynb +[2024-03-07T16:45:55.901Z] + filename=Perform_Regionalization +[2024-03-07T16:45:55.901Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-03-07T16:45:55.901Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-07T16:45:55.901Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-03-07T16:46:27.985Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-03-07T16:46:27.985Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-07T16:46:27.985Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-07T16:46:27.985Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-07T16:46:27.985Z] + sed s/.ipynb$// +[2024-03-07T16:46:27.985Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-03-07T16:46:27.985Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-03-07T16:46:27.985Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-07T16:46:27.985Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-03-07T16:46:42.851Z] [NbConvertApp] Writing 109502 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-03-07T16:46:42.851Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-07T16:46:42.851Z] + filename=Sensitivity_analysis.ipynb +[2024-03-07T16:46:42.851Z] + echo Sensitivity_analysis.ipynb +[2024-03-07T16:46:42.851Z] + sed s/.ipynb$// +[2024-03-07T16:46:42.851Z] + filename=Sensitivity_analysis +[2024-03-07T16:46:42.851Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-03-07T16:46:42.851Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-07T16:46:42.851Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-03-07T16:47:00.948Z] [NbConvertApp] Writing 35261 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-03-07T16:47:00.949Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-07T16:47:00.949Z] + filename=time_series_analysis.ipynb +[2024-03-07T16:47:00.949Z] + echo time_series_analysis.ipynb +[2024-03-07T16:47:00.949Z] + sed s/.ipynb$// +[2024-03-07T16:47:00.949Z] + filename=time_series_analysis +[2024-03-07T16:47:00.949Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-03-07T16:47:00.949Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-07T16:47:01.213Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-03-07T16:47:13.420Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb +[2024-03-07T16:47:13.420Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-07T16:47:13.420Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-07T16:47:13.420Z] + sed s/.ipynb$// +[2024-03-07T16:47:13.420Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-07T16:47:13.421Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-03-07T16:47:13.421Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-03-07T16:47:13.421Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-07T16:47:14.795Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-03-07T16:48:51.344Z] [NbConvertApp] Writing 131058 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-03-07T16:48:51.344Z] + basename notebooks/hummingbird.ipynb +[2024-03-07T16:48:51.344Z] + filename=hummingbird.ipynb +[2024-03-07T16:48:51.344Z] + echo hummingbird.ipynb +[2024-03-07T16:48:51.344Z] + sed s/.ipynb$// +[2024-03-07T16:48:51.344Z] + filename=hummingbird +[2024-03-07T16:48:51.344Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-03-07T16:48:51.344Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-03-07T16:48:51.344Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-03-07T16:48:54.632Z] [NbConvertApp] Writing 15951 bytes to buildout/hummingbird.output.ipynb +[2024-03-07T16:48:54.632Z] + basename notebooks/stress-tests.ipynb +[2024-03-07T16:48:54.632Z] + filename=stress-tests.ipynb +[2024-03-07T16:48:54.632Z] + echo stress-tests.ipynb +[2024-03-07T16:48:54.632Z] + sed s/.ipynb$// +[2024-03-07T16:48:54.633Z] + filename=stress-tests +[2024-03-07T16:48:54.633Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-03-07T16:48:54.633Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-03-07T16:48:56.542Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-03-07T16:51:03.009Z] [NbConvertApp] Writing 428737 bytes to buildout/stress-tests.output.ipynb +[2024-03-07T16:51:03.009Z] + exit 1 +[2024-03-07T16:51:03.009Z] + EXIT_CODE=1 +[2024-03-07T16:51:03.009Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-07T16:51:03.009Z] + mkdir -p buildout/env-dump +[2024-03-07T16:51:03.009Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-07T16:51:03.009Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-07T16:51:03.009Z] + conda env export -n birdy +[2024-03-07T16:51:15.224Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-07T16:51:15.224Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-07T16:51:15.224Z] + conda list -n birdy --explicit +[2024-03-07T16:51:25.207Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-07T16:51:25.207Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-07T16:51:25.207Z] + pip freeze +[2024-03-07T16:51:25.207Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -2614,41 +17875,41 @@ $ docker top afee8048e2b4deaf0609277fd962ea28b5c30bfa175abfd9c040c3676602ff2d -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-07T16:54:48.791Z] Archiving artifacts -[2024-03-07T16:54:48.809Z] Recording fingerprints +[2024-03-07T16:51:25.341Z] Archiving artifacts +[2024-03-07T16:51:25.367Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:49.284Z] Archiving artifacts -[2024-03-07T16:54:51.523Z] Recording fingerprints +[2024-03-07T16:51:25.395Z] Archiving artifacts +[2024-03-07T16:51:27.502Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:52.994Z] Archiving artifacts -[2024-03-07T16:54:53.027Z] Recording fingerprints +[2024-03-07T16:51:28.361Z] Archiving artifacts +[2024-03-07T16:51:28.679Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:53.382Z] Archiving artifacts -[2024-03-07T16:54:53.417Z] Recording fingerprints +[2024-03-07T16:51:29.190Z] Archiving artifacts +[2024-03-07T16:51:29.331Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:53.452Z] Archiving artifacts -[2024-03-07T16:54:53.484Z] Recording fingerprints +[2024-03-07T16:51:29.717Z] Archiving artifacts +[2024-03-07T16:51:29.744Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:53.526Z] Archiving artifacts -[2024-03-07T16:54:53.566Z] Recording fingerprints +[2024-03-07T16:51:30.138Z] Archiving artifacts +[2024-03-07T16:51:30.192Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:54.580Z] Archiving artifacts -[2024-03-07T16:54:54.725Z] Recording fingerprints +[2024-03-07T16:51:31.420Z] Archiving artifacts +[2024-03-07T16:51:31.432Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:54.820Z] Archiving artifacts -[2024-03-07T16:54:54.947Z] Recording fingerprints +[2024-03-07T16:51:31.719Z] Archiving artifacts +[2024-03-07T16:51:31.764Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:55.066Z] Archiving artifacts -[2024-03-07T16:54:55.449Z] Recording fingerprints +[2024-03-07T16:51:32.246Z] Archiving artifacts +[2024-03-07T16:51:32.629Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:55.729Z] Archiving artifacts -[2024-03-07T16:54:56.262Z] Recording fingerprints +[2024-03-07T16:51:32.884Z] Archiving artifacts +[2024-03-07T16:51:33.247Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:54:58.640Z] Archiving artifacts -[2024-03-07T16:54:58.740Z] Recording fingerprints +[2024-03-07T16:51:36.794Z] Archiving artifacts +[2024-03-07T16:51:36.879Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-07T16:54:59.544Z] Sending e-mails to: vu.long@ouranos.ca +[2024-03-07T16:51:37.578Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -2658,8 +17919,8 @@ $ docker top afee8048e2b4deaf0609277fd962ea28b5c30bfa175abfd9c040c3676602ff2d -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 afee8048e2b4deaf0609277fd962ea28b5c30bfa175abfd9c040c3676602ff2d -$ docker rm -f afee8048e2b4deaf0609277fd962ea28b5c30bfa175abfd9c040c3676602ff2d +$ docker stop --time=1 b411d488c542a4bdbdc744f27a68a543433da316133264e74a522e46b73d9a9b +$ docker rm -f b411d488c542a4bdbdc744f27a68a543433da316133264e74a522e46b73d9a9b [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 12 Mar 2024 15:56:29 -0400 Subject: [PATCH 036/104] release: update to use image pavics/workflow-tests:py310-240312 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 98d591f..56344d9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-240306" + image "pavics/workflow-tests:py310-240312" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 5faf28a..409f699 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-240306 +FROM pavics/workflow-tests:py310-240312 USER root diff --git a/launchcontainer b/launchcontainer index 75402c3..61ee137 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240306" + DOCKER_IMAGE="pavics/workflow-tests:py310-240312" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index b8847f4..7bbb1d8 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240306" + DOCKER_IMAGE="pavics/workflow-tests:py310-240312" fi if [ -z "$CONTAINER_NAME" ]; then From 8652af6686774b9c3208fb99d3a4b25a31b42c4a Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 14 Mar 2024 15:14:22 -0400 Subject: [PATCH 037/104] docker: py310-240312 env export, build log --- docker/saved_buildout/conda-env-export.yml | 48 +- docker/saved_buildout/docker-buildlogs.txt | 11921 ++++++++++--------- 2 files changed, 5991 insertions(+), 5978 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index 6f78c3e..337038b 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -102,7 +102,7 @@ dependencies: - curl=7.88.1=hdc1c0ab_1 - cycler=0.12.1=pyhd8ed1ab_0 - cytoolz=0.12.3=py310h2372a71_0 - - dash=2.16.0=pyhd8ed1ab_0 + - dash=2.16.1=pyhd8ed1ab_0 - dask=2024.2.1=pyhd8ed1ab_0 - dask-core=2024.2.1=pyhd8ed1ab_0 - dask-labextension=6.2.0=pyhd8ed1ab_0 @@ -140,6 +140,7 @@ dependencies: - fiona=1.9.1=py310ha325b7b_0 - flask=3.0.2=pyhd8ed1ab_0 - flox=0.9.2=pyhd8ed1ab_0 + - fmt=10.2.1=h00ab1b0_0 - folium=0.16.0=pyhd8ed1ab_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 @@ -179,13 +180,13 @@ dependencies: - glog=0.6.0=h6f12383_0 - gnutls=3.7.9=hb077bed_0 - google-api-core=2.17.1=pyhd8ed1ab_0 - - google-auth=2.28.1=pyhca7485f_0 + - google-auth=2.28.2=pyhca7485f_0 - google-auth-oauthlib=1.2.0=pyhd8ed1ab_0 - google-cloud-core=2.4.1=pyhd8ed1ab_0 - google-cloud-storage=2.14.0=pyhca7485f_0 - google-crc32c=1.1.2=py310hc5c09a0_5 - google-resumable-media=2.7.0=pyhd8ed1ab_0 - - googleapis-common-protos=1.62.0=pyhd8ed1ab_0 + - googleapis-common-protos=1.63.0=pyhd8ed1ab_0 - graphite2=1.3.13=h58526e2_1001 - greenlet=3.0.3=py310hc6cd4ac_0 - grpcio=1.52.1=py310heca2aa9_1 @@ -206,9 +207,9 @@ dependencies: - idna=3.6=pyhd8ed1ab_0 - imagecodecs=2023.1.23=py310ha3ed6a1_0 - imageio=2.34.0=pyh4b66e23_0 - - importlib-metadata=7.0.1=pyha770c72_0 - - importlib_metadata=7.0.1=hd8ed1ab_0 - - importlib_resources=6.1.2=pyhd8ed1ab_0 + - importlib-metadata=7.0.2=pyha770c72_0 + - importlib_metadata=7.0.2=hd8ed1ab_0 + - importlib_resources=6.1.3=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - intake=0.7.0=pyhd8ed1ab_0 - intake-esm=2024.2.6=pyhd8ed1ab_1 @@ -245,11 +246,11 @@ dependencies: - jupyter_bokeh=3.0.7=pyhd8ed1ab_0 - jupyter_client=7.4.9=pyhd8ed1ab_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - - jupyter_core=5.7.1=py310hff52083_0 - - jupyter_events=0.9.0=pyhd8ed1ab_0 + - jupyter_core=5.7.2=py310hff52083_0 + - jupyter_events=0.9.1=pyhd8ed1ab_0 - jupyter_server=2.13.0=pyhd8ed1ab_0 - jupyter_server_fileid=0.9.1=pyhd8ed1ab_0 - - jupyter_server_terminals=0.5.2=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.3=pyhd8ed1ab_0 - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 - jupyter_telemetry=0.1.0=pyhd8ed1ab_1 - jupyter_ydoc=0.2.4=pyhd8ed1ab_0 @@ -260,7 +261,7 @@ dependencies: - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 - jupyterlab-topbar=0.6.1=pyhd8ed1ab_2 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.3=pyhd8ed1ab_0 + - jupyterlab_server=2.25.4=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - jupytext=1.16.1=pyhd8ed1ab_0 - jxrlib=1.1=hd590300_3 @@ -340,7 +341,7 @@ dependencies: - libsodium=1.0.18=h36c2ea0_1 - libspatialindex=1.9.3=h9c3ff4c_4 - libspatialite=5.0.1=h221c8f1_23 - - libsqlite=3.45.1=h2797004_0 + - libsqlite=3.45.2=h2797004_0 - libssh2=1.11.0=h0841786_0 - libstdcxx-ng=13.2.0=h7e041cc_5 - libsystemd0=253=h8c4010b_1 @@ -406,7 +407,7 @@ dependencies: - nbconvert-core=7.16.2=pyhd8ed1ab_0 - nbconvert-pandoc=7.16.2=pyhd8ed1ab_0 - nbdime=4.0.1=pyhd8ed1ab_0 - - nbformat=5.9.2=pyhd8ed1ab_0 + - nbformat=5.10.2=pyhd8ed1ab_0 - nbresuse=0.4.0=pyhd8ed1ab_0 - nbval=0.11.0=pyhd8ed1ab_0 - nc-time-axis=1.4.1=pyhd8ed1ab_0 @@ -510,7 +511,7 @@ dependencies: - pyqt5-sip=12.12.2=py310hc6cd4ac_5 - pyshp=2.3.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 - - pytest=8.0.2=pyhd8ed1ab_0 + - pytest=8.1.1=pyhd8ed1ab_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - python=3.10.13=hd12c33a_0_cpython - python-dateutil=2.9.0=pyhd8ed1ab_0 @@ -533,7 +534,7 @@ dependencies: - rasterio=1.3.6=py310h3e853a9_0 - raven-hydro=0.2.4=py310hee4f699_0 - ravenpy=0.13.0=py310hff52083_0 - - rdma-core=50.0=hd3aeb46_0 + - rdma-core=50.0=hd3aeb46_1 - re2=2023.02.02=hcb278e6_0 - readline=8.2=h8228510_1 - rechunker=0.5.2=pyhd8ed1ab_1 @@ -542,7 +543,7 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - requests-cache=1.2.0=pyhd8ed1ab_0 - requests-magpie=0.2.0=pyhd8ed1ab_0 - - requests-oauthlib=1.3.1=pyhd8ed1ab_0 + - requests-oauthlib=1.4.0=pyhd8ed1ab_0 - retrying=1.3.3=py_2 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 @@ -580,15 +581,16 @@ dependencies: - sortedcontainers=2.4.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sparse=0.15.1=pyhd8ed1ab_1 + - spdlog=1.12.0=hd2e6256_2 - spotpy=1.6.2=pyhd8ed1ab_0 - sqlalchemy=2.0.28=py310h2372a71_0 - - sqlite=3.45.1=h2c6b66d_0 + - sqlite=3.45.2=h2c6b66d_0 - stack_data=0.6.2=pyhd8ed1ab_0 - statsmodels=0.14.1=py310h1f7b6fc_0 - - streamlit=1.31.1=pyhd8ed1ab_0 + - streamlit=1.32.0=pyhd8ed1ab_0 - tblib=3.0.0=pyhd8ed1ab_0 - tenacity=8.2.3=pyhd8ed1ab_0 - - terminado=0.18.0=pyh0d859eb_0 + - terminado=0.18.1=pyh0d859eb_0 - threadpoolctl=3.3.0=pyhc1e730c_0 - threddsclient=0.4.5=pyhca7485f_0 - tifffile=2023.8.12=pyhd8ed1ab_0 @@ -600,11 +602,11 @@ dependencies: - toolz=0.12.1=pyhd8ed1ab_0 - tornado=6.4=py310h2372a71_0 - tqdm=4.66.2=pyhd8ed1ab_0 - - traitlets=5.14.1=pyhd8ed1ab_0 + - traitlets=5.14.2=pyhd8ed1ab_0 - traittypes=0.2.1=pyh9f0ad1d_2 - trio=0.24.0=py310hff52083_0 - trio-websocket=0.11.1=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.20240106=pyhd8ed1ab_0 + - types-python-dateutil=2.8.19.20240311=pyhd8ed1ab_0 - typing-extensions=4.10.0=hd8ed1ab_0 - typing_extensions=4.10.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 @@ -679,7 +681,7 @@ dependencies: - xorg-xproto=7.0.31=h7f98852_1007 - xrft=1.0.1=pyhd8ed1ab_0 - xscen=0.8.2=pyhd8ed1ab_0 - - xskillscore=0.0.24=pyhd8ed1ab_0 + - xskillscore=0.0.26=pyhd8ed1ab_0 - xyzservices=2023.10.1=pyhd8ed1ab_0 - xz=5.2.6=h166bdaf_0 - y-py=0.5.9=py310h4426083_0 @@ -687,7 +689,7 @@ dependencies: - yaml=0.2.5=h7f98852_2 - yarl=1.9.4=py310h2372a71_0 - ypy-websocket=0.8.2=pyhd8ed1ab_0 - - zarr=2.17.0=pyhd8ed1ab_0 + - zarr=2.17.1=pyhd8ed1ab_0 - zeromq=4.3.5=h59595ed_1 - zfp=1.0.1=h59595ed_0 - zict=3.0.0=pyhd8ed1ab_0 @@ -721,5 +723,5 @@ dependencies: - rdflib==5.0.0 - xmltodict==0.13.0 - xncml==0.4.0 - - xsdata==24.2.1 + - xsdata==24.3.1 prefix: /opt/conda/envs/birdy diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index f765eef..ae081a0 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,5955 +1,5966 @@ -2024-03-07T00:48:03Z Building in Docker Cloud's infrastructure... -2024-03-07T00:48:03Z Cloning into '.'... -2024-03-07T00:48:04Z Warning: Permanently added the RSA host key for IP address '140.82.114.4' to the list of known hosts. -2024-03-07T00:48:05Z Switched to a new branch 'docker-py310-240306' -2024-03-07T00:48:05Z KernelVersion: 5.4.0-1068-aws -2024-03-07T00:48:05Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-03-07T00:48:05Z Arch: amd64 -2024-03-07T00:48:05Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-03-07T00:48:05Z ApiVersion: 1.41 -2024-03-07T00:48:05Z Platform: {u'Name': u'Docker Engine - Community'} -2024-03-07T00:48:05Z Version: 20.10.15 -2024-03-07T00:48:05Z MinAPIVersion: 1.12 -2024-03-07T00:48:05Z GitCommit: 4433bf6 -2024-03-07T00:48:05Z Os: linux -2024-03-07T00:48:05Z GoVersion: go1.17.9 -2024-03-07T00:48:05Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240306... -2024-03-07T00:48:11Z #1 [internal] load build definition from Dockerfile -2024-03-07T00:48:11Z #1 transferring dockerfile: 6.98kB done -2024-03-07T00:48:11Z #1 DONE 0.1s -2024-03-07T00:48:11Z -2024-03-07T00:48:11Z #2 [internal] load .dockerignore -2024-03-07T00:48:11Z #2 transferring context: 2B done -2024-03-07T00:48:11Z #2 DONE 0.0s -2024-03-07T00:48:11Z -2024-03-07T00:48:11Z #3 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-03-07T00:48:11Z #3 DONE 0.0s -2024-03-07T00:48:11Z -2024-03-07T00:48:11Z #4 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-03-07T00:48:12Z #4 DONE 0.6s -2024-03-07T00:48:12Z -2024-03-07T00:48:12Z #5 [internal] load build context -2024-03-07T00:48:12Z #5 transferring context: 9.52kB done -2024-03-07T00:48:12Z #5 DONE 0.0s -2024-03-07T00:48:12Z -2024-03-07T00:48:12Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-03-07T00:48:12Z #6 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done -2024-03-07T00:48:12Z #6 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done -2024-03-07T00:48:12Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 3.19MB / 31.42MB 0.1s -2024-03-07T00:48:12Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s -2024-03-07T00:48:12Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.1s -2024-03-07T00:48:12Z #6 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done -2024-03-07T00:48:12Z #6 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done -2024-03-07T00:48:12Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 7.34MB / 31.42MB 0.2s -2024-03-07T00:48:12Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.24MB / 50.08MB 0.2s -2024-03-07T00:48:12Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 12.58MB / 31.42MB 0.4s -2024-03-07T00:48:12Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 10.49MB / 50.08MB 0.4s -2024-03-07T00:48:12Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 19.92MB / 31.42MB 0.6s -2024-03-07T00:48:12Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 15.73MB / 50.08MB 0.6s -2024-03-07T00:48:12Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 13.63MB / 147.31MB 0.6s -2024-03-07T00:48:13Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 24.12MB / 31.42MB 0.7s -2024-03-07T00:48:13Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 28.31MB / 31.42MB 0.8s -2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 22.02MB / 50.08MB 0.8s -2024-03-07T00:48:13Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 22.02MB / 147.31MB 0.8s -2024-03-07T00:48:13Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 0.9s -2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 27.13MB / 50.08MB 1.0s -2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 36.70MB / 50.08MB 1.2s -2024-03-07T00:48:13Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 42.00MB / 147.31MB 1.2s -2024-03-07T00:48:13Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.2s done -2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 42.99MB / 50.08MB 1.3s -2024-03-07T00:48:13Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.5s -2024-03-07T00:48:13Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 53.48MB / 147.31MB 1.5s -2024-03-07T00:48:14Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.6s done -2024-03-07T00:48:14Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 -2024-03-07T00:48:14Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 65.01MB / 147.31MB 1.8s -2024-03-07T00:48:14Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 74.45MB / 147.31MB 2.3s -2024-03-07T00:48:14Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 82.84MB / 147.31MB 2.5s -2024-03-07T00:48:15Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 91.23MB / 147.31MB 2.7s -2024-03-07T00:48:15Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 105.10MB / 147.31MB 3.1s -2024-03-07T00:48:15Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 116.39MB / 147.31MB 3.4s -2024-03-07T00:48:16Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 125.83MB / 147.31MB 3.7s -2024-03-07T00:48:16Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 139.46MB / 147.31MB 3.9s -2024-03-07T00:48:16Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 4.2s -2024-03-07T00:48:17Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 5.5s done -2024-03-07T00:48:19Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.2s done -2024-03-07T00:48:19Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 -2024-03-07T00:48:24Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.0s -2024-03-07T00:48:25Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.2s done -2024-03-07T00:48:26Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c -2024-03-07T00:48:31Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.1s -2024-03-07T00:48:36Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.1s -2024-03-07T00:48:40Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.1s done -2024-03-07T00:48:40Z #6 DONE 28.2s -2024-03-07T00:48:40Z -2024-03-07T00:48:40Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-03-07T00:48:42Z #7 1.573 Channels: -2024-03-07T00:48:42Z #7 1.573 - defaults -2024-03-07T00:48:42Z #7 1.573 Platform: linux-64 -2024-03-07T00:48:46Z #7 1.573 Collecting package metadata (repodata.json): ...working... done -2024-03-07T00:48:46Z #7 5.784 Solving environment: ...working... done -2024-03-07T00:48:46Z #7 6.076 -2024-03-07T00:48:46Z #7 6.076 # All requested packages already installed. -2024-03-07T00:48:46Z #7 6.076 -2024-03-07T00:48:47Z #7 7.283 Channels: -2024-03-07T00:48:47Z #7 7.283 - conda-forge -2024-03-07T00:48:47Z #7 7.283 - defaults -2024-03-07T00:48:47Z #7 7.283 Platform: linux-64 -2024-03-07T00:49:13Z #7 7.283 Collecting package metadata (repodata.json): ...working... done -2024-03-07T00:49:15Z #7 32.85 Solving environment: ...working... done -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 ## Package Plan ## -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 environment location: /opt/conda -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 added / updated specs: -2024-03-07T00:49:15Z #7 34.83 - mamba -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 The following packages will be downloaded: -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 package | build -2024-03-07T00:49:15Z #7 34.83 ---------------------------|----------------- -2024-03-07T00:49:15Z #7 34.83 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 ca-certificates-2024.2.2 | hbcca054_0 152 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 conda-24.1.2 | py311h38be061_0 1.2 MB conda-forge -2024-03-07T00:49:15Z #7 34.83 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-03-07T00:49:15Z #7 34.83 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 libmamba-1.5.7 | had39da4_0 1.6 MB conda-forge -2024-03-07T00:49:15Z #7 34.83 libmambapy-1.5.7 | py311hf2555c7_0 305 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge -2024-03-07T00:49:15Z #7 34.83 libxml2-2.12.5 | h232c23b_0 688 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 lzo-2.10 | h516909a_1000 314 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 mamba-1.5.7 | py311h3072747_0 65 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 openssl-3.2.1 | hd590300_0 2.7 MB conda-forge -2024-03-07T00:49:15Z #7 34.83 python_abi-3.11 | 2_cp311 5 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-03-07T00:49:15Z #7 34.83 ------------------------------------------------------------ -2024-03-07T00:49:15Z #7 34.83 Total: 25.3 MB -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 The following NEW packages will be INSTALLED: -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-03-07T00:49:15Z #7 34.83 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-03-07T00:49:15Z #7 34.83 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 -2024-03-07T00:49:15Z #7 34.83 mamba conda-forge/linux-64::mamba-1.5.7-py311h3072747_0 -2024-03-07T00:49:15Z #7 34.83 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 The following packages will be UPDATED: -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 ca-certificates pkgs/main::ca-certificates-2023.12.12~ --> conda-forge::ca-certificates-2024.2.2-hbcca054_0 -2024-03-07T00:49:15Z #7 34.83 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-03-07T00:49:15Z #7 34.83 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-03-07T00:49:15Z #7 34.83 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-03-07T00:49:15Z #7 34.83 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 -2024-03-07T00:49:15Z #7 34.83 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 -2024-03-07T00:49:15Z #7 34.83 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.7-had39da4_0 -2024-03-07T00:49:15Z #7 34.83 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.7-py311hf2555c7_0 -2024-03-07T00:49:15Z #7 34.83 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 -2024-03-07T00:49:15Z #7 34.83 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.5-h232c23b_0 -2024-03-07T00:49:15Z #7 34.83 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_0 -2024-03-07T00:49:15Z #7 34.83 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 The following packages will be SUPERSEDED by a higher-priority channel: -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-03-07T00:49:15Z #7 34.83 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-03-07T00:49:15Z #7 34.83 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-03-07T00:49:15Z #7 34.83 conda pkgs/main::conda-24.1.2-py311h06a4308~ --> conda-forge::conda-24.1.2-py311h38be061_0 -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 -2024-03-07T00:49:15Z #7 34.83 Proceed ([y]/n)? -2024-03-07T00:49:17Z #7 36.94 -2024-03-07T00:49:17Z #7 36.94 Downloading and Extracting Packages: ...working... done -2024-03-07T00:49:17Z #7 36.94 Preparing transaction: ...working... done -2024-03-07T00:49:18Z #7 37.03 Verifying transaction: ...working... done -2024-03-07T00:49:26Z #7 37.45 Executing transaction: ...working... done -2024-03-07T00:49:28Z #7 47.36 Will remove 21 (25.3 MB) tarball(s). -2024-03-07T00:49:28Z #7 47.36 Will remove 1 index cache(s). -2024-03-07T00:49:28Z #7 47.36 Will remove 3 (118 KB) package(s). -2024-03-07T00:49:28Z #7 47.36 There are no tempfile(s) to remove. -2024-03-07T00:49:28Z #7 47.36 There are no logfile(s) to remove. -2024-03-07T00:49:29Z #7 48.81 bin/micromamba -2024-03-07T00:49:32Z #7 DONE 51.5s -2024-03-07T00:49:32Z -2024-03-07T00:49:32Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-03-07T00:49:32Z #8 0.551 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-03-07T00:49:32Z #8 0.572 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-03-07T00:49:32Z #8 0.573 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-03-07T00:49:32Z #8 0.725 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-03-07T00:49:33Z #8 1.040 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [269 kB] -2024-03-07T00:49:33Z #8 1.042 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-03-07T00:49:34Z #8 2.784 Fetched 8564 kB in 2s (3809 kB/s) -2024-03-07T00:49:35Z #8 2.784 Reading package lists... -2024-03-07T00:49:36Z #8 3.737 Reading package lists... -2024-03-07T00:49:37Z #8 4.640 Building dependency tree... -2024-03-07T00:49:37Z #8 4.872 Reading state information... -2024-03-07T00:49:37Z #8 5.179 git is already the newest version (1:2.30.2-1+deb11u2). -2024-03-07T00:49:37Z #8 5.179 mercurial is already the newest version (5.6.1-4). -2024-03-07T00:49:37Z #8 5.179 The following additional packages will be installed: -2024-03-07T00:49:37Z #8 5.179 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-03-07T00:49:37Z #8 5.180 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-03-07T00:49:37Z #8 5.180 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-03-07T00:49:37Z #8 5.181 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-03-07T00:49:37Z #8 5.181 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-03-07T00:49:37Z #8 5.182 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-03-07T00:49:37Z #8 5.187 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-03-07T00:49:37Z #8 5.187 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-03-07T00:49:37Z #8 5.187 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-03-07T00:49:37Z #8 5.187 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-03-07T00:49:37Z #8 5.187 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-03-07T00:49:37Z #8 5.187 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-03-07T00:49:37Z #8 5.187 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-03-07T00:49:37Z #8 5.187 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-03-07T00:49:37Z #8 5.187 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-03-07T00:49:37Z #8 5.187 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-03-07T00:49:37Z #8 5.187 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-03-07T00:49:37Z #8 5.187 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-03-07T00:49:37Z #8 5.187 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-03-07T00:49:37Z #8 5.187 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-03-07T00:49:37Z #8 5.187 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-03-07T00:49:37Z #8 5.187 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-03-07T00:49:37Z #8 5.187 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-03-07T00:49:37Z #8 5.187 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-03-07T00:49:37Z #8 5.187 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-03-07T00:49:37Z #8 5.187 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-03-07T00:49:37Z #8 5.187 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-03-07T00:49:37Z #8 5.187 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-03-07T00:49:37Z #8 5.187 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-03-07T00:49:37Z #8 5.187 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-03-07T00:49:37Z #8 5.187 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-03-07T00:49:37Z #8 5.187 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-03-07T00:49:37Z #8 5.187 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-03-07T00:49:37Z #8 5.187 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-03-07T00:49:37Z #8 5.187 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-03-07T00:49:37Z #8 5.187 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-03-07T00:49:37Z #8 5.187 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-03-07T00:49:37Z #8 5.187 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv -2024-03-07T00:49:37Z #8 5.187 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data -2024-03-07T00:49:37Z #8 5.187 Suggested packages: -2024-03-07T00:49:37Z #8 5.187 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-03-07T00:49:37Z #8 5.187 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-03-07T00:49:37Z #8 5.187 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-03-07T00:49:37Z #8 5.187 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs -2024-03-07T00:49:37Z #8 5.187 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser -2024-03-07T00:49:37Z #8 5.187 opencl-icd ed diffutils-doc systemd-container policykit-1 zip -2024-03-07T00:49:37Z #8 5.187 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-03-07T00:49:37Z #8 5.187 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-03-07T00:49:37Z #8 5.187 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-03-07T00:49:38Z #8 6.753 The following NEW packages will be installed: -2024-03-07T00:49:38Z #8 6.754 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-03-07T00:49:38Z #8 6.754 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-03-07T00:49:38Z #8 6.754 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-03-07T00:49:38Z #8 6.754 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-03-07T00:49:38Z #8 6.754 glib-networking glib-networking-common glib-networking-services -2024-03-07T00:49:38Z #8 6.754 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-03-07T00:49:38Z #8 6.755 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-03-07T00:49:38Z #8 6.755 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-03-07T00:49:38Z #8 6.755 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-03-07T00:49:38Z #8 6.755 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-03-07T00:49:38Z #8 6.755 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-03-07T00:49:38Z #8 6.755 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-03-07T00:49:38Z #8 6.755 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-03-07T00:49:38Z #8 6.755 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-03-07T00:49:38Z #8 6.755 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-03-07T00:49:38Z #8 6.755 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-03-07T00:49:38Z #8 6.755 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-03-07T00:49:38Z #8 6.755 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-03-07T00:49:38Z #8 6.755 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-03-07T00:49:38Z #8 6.755 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-03-07T00:49:38Z #8 6.756 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-03-07T00:49:38Z #8 6.756 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-03-07T00:49:38Z #8 6.756 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-03-07T00:49:38Z #8 6.756 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-03-07T00:49:38Z #8 6.756 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-03-07T00:49:38Z #8 6.756 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-03-07T00:49:38Z #8 6.756 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-03-07T00:49:38Z #8 6.756 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-03-07T00:49:38Z #8 6.756 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-03-07T00:49:38Z #8 6.756 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-03-07T00:49:38Z #8 6.757 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-03-07T00:49:38Z #8 6.757 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-03-07T00:49:38Z #8 6.757 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-03-07T00:49:38Z #8 6.757 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-03-07T00:49:38Z #8 6.757 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-03-07T00:49:38Z #8 6.757 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-03-07T00:49:38Z #8 6.757 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-03-07T00:49:38Z #8 6.757 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-03-07T00:49:38Z #8 6.757 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-03-07T00:49:38Z #8 6.763 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-03-07T00:49:38Z #8 6.763 x11-utils xkb-data -2024-03-07T00:49:38Z #8 6.794 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. -2024-03-07T00:49:38Z #8 6.794 Need to get 236 MB of archives. -2024-03-07T00:49:38Z #8 6.794 After this operation, 891 MB of additional disk space will be used. -2024-03-07T00:49:38Z #8 6.794 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-03-07T00:49:39Z #8 6.808 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-03-07T00:49:39Z #8 6.810 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-03-07T00:49:39Z #8 6.814 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-03-07T00:49:39Z #8 6.817 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-03-07T00:49:39Z #8 6.820 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-03-07T00:49:39Z #8 6.821 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-03-07T00:49:39Z #8 6.827 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-03-07T00:49:39Z #8 6.828 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-03-07T00:49:39Z #8 6.830 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-03-07T00:49:39Z #8 6.957 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-03-07T00:49:39Z #8 6.959 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-03-07T00:49:39Z #8 6.963 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-03-07T00:49:39Z #8 6.967 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-03-07T00:49:39Z #8 6.971 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-03-07T00:49:39Z #8 6.976 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-03-07T00:49:39Z #8 6.994 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-03-07T00:49:39Z #8 7.011 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-03-07T00:49:39Z #8 7.013 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-03-07T00:49:39Z #8 7.018 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-03-07T00:49:39Z #8 7.261 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-03-07T00:49:39Z #8 7.285 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-03-07T00:49:39Z #8 7.310 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-03-07T00:49:39Z #8 7.316 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-03-07T00:49:39Z #8 7.328 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-03-07T00:49:39Z #8 7.333 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-03-07T00:49:39Z #8 7.345 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-03-07T00:49:39Z #8 7.348 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-03-07T00:49:39Z #8 7.364 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-03-07T00:49:39Z #8 7.379 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-03-07T00:49:39Z #8 7.381 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-03-07T00:49:39Z #8 7.579 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-03-07T00:49:39Z #8 7.598 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-03-07T00:49:39Z #8 7.600 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-03-07T00:49:39Z #8 7.606 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-03-07T00:49:39Z #8 7.608 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-03-07T00:49:39Z #8 7.610 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-03-07T00:49:39Z #8 7.612 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-03-07T00:49:39Z #8 7.613 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-03-07T00:49:39Z #8 7.616 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-03-07T00:49:39Z #8 7.646 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-03-07T00:49:39Z #8 7.654 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-03-07T00:49:39Z #8 7.673 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-03-07T00:49:39Z #8 7.679 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-03-07T00:49:40Z #8 7.752 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-03-07T00:49:40Z #8 7.756 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-03-07T00:49:40Z #8 7.778 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-03-07T00:49:40Z #8 7.842 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-03-07T00:49:40Z #8 7.865 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-03-07T00:49:40Z #8 8.058 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-03-07T00:49:40Z #8 8.059 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-03-07T00:49:40Z #8 8.061 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-03-07T00:49:40Z #8 8.063 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-03-07T00:49:40Z #8 8.064 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-03-07T00:49:40Z #8 8.065 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-03-07T00:49:40Z #8 8.080 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-03-07T00:49:40Z #8 8.082 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-03-07T00:49:40Z #8 8.087 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-03-07T00:49:40Z #8 8.112 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-03-07T00:49:40Z #8 8.117 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-03-07T00:49:40Z #8 8.137 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-03-07T00:49:40Z #8 8.173 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-03-07T00:49:40Z #8 8.177 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-03-07T00:49:40Z #8 8.189 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-03-07T00:49:40Z #8 8.220 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-03-07T00:49:40Z #8 8.227 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-03-07T00:49:40Z #8 8.230 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-03-07T00:49:40Z #8 8.244 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-03-07T00:49:40Z #8 8.263 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-03-07T00:49:40Z #8 8.274 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-03-07T00:49:40Z #8 8.296 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-03-07T00:49:40Z #8 8.300 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-03-07T00:49:40Z #8 8.316 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-03-07T00:49:40Z #8 8.323 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-03-07T00:49:40Z #8 8.367 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-03-07T00:49:40Z #8 8.376 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-03-07T00:49:40Z #8 8.376 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-03-07T00:49:40Z #8 8.376 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-03-07T00:49:40Z #8 8.391 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-03-07T00:49:40Z #8 8.393 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-03-07T00:49:40Z #8 8.397 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-03-07T00:49:40Z #8 8.401 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-03-07T00:49:40Z #8 8.404 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-03-07T00:49:40Z #8 8.405 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-03-07T00:49:40Z #8 8.406 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-03-07T00:49:40Z #8 8.409 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-03-07T00:49:40Z #8 8.423 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-03-07T00:49:40Z #8 8.429 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-03-07T00:49:40Z #8 8.451 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-03-07T00:49:40Z #8 8.452 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-03-07T00:49:40Z #8 8.453 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-03-07T00:49:40Z #8 8.460 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-03-07T00:49:40Z #8 8.461 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-03-07T00:49:40Z #8 8.483 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-03-07T00:49:40Z #8 8.484 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-03-07T00:49:40Z #8 8.485 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-03-07T00:49:40Z #8 8.486 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-03-07T00:49:40Z #8 8.494 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-03-07T00:49:40Z #8 8.495 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-03-07T00:49:40Z #8 8.496 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-03-07T00:49:40Z #8 8.498 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-03-07T00:49:40Z #8 8.499 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-03-07T00:49:40Z #8 8.500 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-03-07T00:49:40Z #8 8.501 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-03-07T00:49:40Z #8 8.510 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-03-07T00:49:40Z #8 8.512 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-03-07T00:49:40Z #8 8.513 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-03-07T00:49:40Z #8 8.608 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-03-07T00:49:40Z #8 8.695 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-03-07T00:49:40Z #8 8.712 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.8.0esr-1~deb11u1 [63.7 MB] -2024-03-07T00:49:42Z #8 10.54 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-03-07T00:49:42Z #8 10.54 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-03-07T00:49:42Z #8 10.54 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-03-07T00:49:42Z #8 10.54 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-03-07T00:49:42Z #8 10.54 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-03-07T00:49:42Z #8 10.54 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-03-07T00:49:42Z #8 10.59 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-03-07T00:49:42Z #8 10.60 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-03-07T00:49:42Z #8 10.64 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-03-07T00:49:42Z #8 10.65 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-03-07T00:49:42Z #8 10.66 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-03-07T00:49:42Z #8 10.73 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-03-07T00:49:43Z #8 11.19 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-03-07T00:49:43Z #8 11.19 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-03-07T00:49:43Z #8 11.20 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-03-07T00:49:43Z #8 11.20 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-03-07T00:49:43Z #8 11.20 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-03-07T00:49:43Z #8 11.20 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-03-07T00:49:43Z #8 11.21 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-03-07T00:49:43Z #8 11.21 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-03-07T00:49:43Z #8 11.22 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-03-07T00:49:43Z #8 11.25 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-03-07T00:49:43Z #8 11.27 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-03-07T00:49:43Z #8 11.36 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-03-07T00:49:43Z #8 11.36 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-03-07T00:49:43Z #8 11.37 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-03-07T00:49:43Z #8 11.37 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-03-07T00:49:43Z #8 11.37 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-03-07T00:49:43Z #8 11.38 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-03-07T00:49:43Z #8 11.57 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-03-07T00:49:43Z #8 11.58 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-03-07T00:49:43Z #8 11.58 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-03-07T00:49:43Z #8 11.59 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-03-07T00:49:43Z #8 11.60 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-03-07T00:49:43Z #8 11.60 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-03-07T00:49:43Z #8 11.65 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-03-07T00:49:43Z #8 11.65 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-03-07T00:49:43Z #8 11.65 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-03-07T00:49:43Z #8 11.66 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-03-07T00:49:43Z #8 11.66 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-03-07T00:49:43Z #8 11.66 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-03-07T00:49:43Z #8 11.67 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-03-07T00:49:43Z #8 11.67 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-03-07T00:49:43Z #8 11.67 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-03-07T00:49:43Z #8 11.67 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-03-07T00:49:43Z #8 11.68 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-03-07T00:49:43Z #8 11.69 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-03-07T00:49:43Z #8 11.69 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-03-07T00:49:43Z #8 11.69 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-03-07T00:49:43Z #8 11.70 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-03-07T00:49:43Z #8 11.71 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-03-07T00:49:43Z #8 11.74 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-03-07T00:49:43Z #8 11.74 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-03-07T00:49:43Z #8 11.75 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-03-07T00:49:43Z #8 11.75 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-03-07T00:49:43Z #8 11.84 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] -2024-03-07T00:49:44Z #8 11.85 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-03-07T00:49:44Z #8 11.86 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-03-07T00:49:44Z #8 11.86 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] -2024-03-07T00:49:44Z #8 11.87 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-03-07T00:49:44Z #8 11.90 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-03-07T00:49:44Z #8 11.90 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-03-07T00:49:44Z #8 11.91 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-03-07T00:49:44Z #8 11.91 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] -2024-03-07T00:49:44Z #8 11.96 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-03-07T00:49:44Z #8 11.96 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-03-07T00:49:44Z #8 11.97 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-03-07T00:49:44Z #8 11.97 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-03-07T00:49:44Z #8 11.97 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-03-07T00:49:44Z #8 11.97 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-03-07T00:49:44Z #8 11.97 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-03-07T00:49:44Z #8 11.98 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-03-07T00:49:44Z #8 12.15 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-03-07T00:49:44Z #8 12.69 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-03-07T00:49:44Z #8 12.69 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-03-07T00:49:44Z #8 12.69 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-03-07T00:49:44Z #8 12.70 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-03-07T00:49:45Z #8 12.95 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-03-07T00:49:45Z #8 12.96 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-03-07T00:49:45Z #8 12.96 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-03-07T00:49:45Z #8 12.96 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-03-07T00:49:45Z #8 12.96 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-03-07T00:49:45Z #8 12.96 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-03-07T00:49:45Z #8 12.97 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-03-07T00:49:45Z #8 12.97 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-03-07T00:49:45Z #8 12.97 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-03-07T00:49:45Z #8 12.98 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-03-07T00:49:45Z #8 12.98 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-03-07T00:49:45Z #8 12.98 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-03-07T00:49:45Z #8 12.99 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-03-07T00:49:45Z #8 12.99 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-03-07T00:49:45Z #8 12.99 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-03-07T00:49:45Z #8 12.99 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-03-07T00:49:45Z #8 12.99 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-03-07T00:49:45Z #8 13.00 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-03-07T00:49:45Z #8 13.00 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-03-07T00:49:45Z #8 13.00 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-03-07T00:49:45Z #8 13.00 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-03-07T00:49:45Z #8 13.01 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-03-07T00:49:45Z #8 13.01 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-03-07T00:49:45Z #8 13.01 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-03-07T00:49:45Z #8 13.01 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-03-07T00:49:45Z #8 13.01 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-03-07T00:49:45Z #8 13.06 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-03-07T00:49:45Z #8 13.13 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-03-07T00:49:45Z #8 13.18 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-03-07T00:49:45Z #8 13.31 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-03-07T00:49:45Z #8 13.31 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-03-07T00:49:45Z #8 13.31 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-03-07T00:49:45Z #8 13.31 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-03-07T00:49:45Z #8 13.32 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-03-07T00:49:45Z #8 13.59 debconf: delaying package configuration, since apt-utils is not installed -2024-03-07T00:49:45Z #8 13.64 Fetched 236 MB in 7s (36.0 MB/s) -2024-03-07T00:49:45Z #8 13.67 Selecting previously unselected package libapparmor1:amd64. -2024-03-07T00:49:45Z #8 13.67 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-03-07T00:49:45Z #8 13.69 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-03-07T00:49:45Z #8 13.70 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-03-07T00:49:45Z #8 13.74 Selecting previously unselected package libcap2:amd64. -2024-03-07T00:49:45Z #8 13.74 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-03-07T00:49:45Z #8 13.75 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-03-07T00:49:45Z #8 13.79 Selecting previously unselected package libargon2-1:amd64. -2024-03-07T00:49:45Z #8 13.79 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-03-07T00:49:45Z #8 13.79 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-03-07T00:49:45Z #8 13.83 Selecting previously unselected package dmsetup. -2024-03-07T00:49:46Z #8 13.83 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-03-07T00:49:46Z #8 13.83 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-03-07T00:49:46Z #8 13.88 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-03-07T00:49:46Z #8 13.89 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-03-07T00:49:46Z #8 13.89 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-03-07T00:49:46Z #8 13.95 Selecting previously unselected package libjson-c5:amd64. -2024-03-07T00:49:46Z #8 13.95 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-03-07T00:49:46Z #8 13.96 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-03-07T00:49:46Z #8 14.00 Selecting previously unselected package libcryptsetup12:amd64. -2024-03-07T00:49:46Z #8 14.00 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-03-07T00:49:46Z #8 14.01 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-03-07T00:49:46Z #8 14.07 Selecting previously unselected package libip4tc2:amd64. -2024-03-07T00:49:46Z #8 14.07 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-03-07T00:49:46Z #8 14.08 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-03-07T00:49:46Z #8 14.11 Selecting previously unselected package libkmod2:amd64. -2024-03-07T00:49:46Z #8 14.12 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-03-07T00:49:46Z #8 14.12 Unpacking libkmod2:amd64 (28-1) ... -2024-03-07T00:49:46Z #8 14.17 Selecting previously unselected package systemd. -2024-03-07T00:49:46Z #8 14.17 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-07T00:49:46Z #8 14.23 Unpacking systemd (247.3-7+deb11u4) ... -2024-03-07T00:49:47Z #8 15.04 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-03-07T00:49:47Z #8 15.05 Setting up libcap2:amd64 (1:2.44-1) ... -2024-03-07T00:49:47Z #8 15.06 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-03-07T00:49:47Z #8 15.07 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-03-07T00:49:47Z #8 15.08 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-03-07T00:49:47Z #8 15.09 Setting up libkmod2:amd64 (28-1) ... -2024-03-07T00:49:47Z #8 15.10 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-03-07T00:49:47Z #8 15.11 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-03-07T00:49:47Z #8 15.13 Setting up systemd (247.3-7+deb11u4) ... -2024-03-07T00:49:47Z #8 15.16 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-03-07T00:49:47Z #8 15.17 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-03-07T00:49:47Z #8 15.17 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-03-07T00:49:47Z #8 15.20 Initializing machine ID from KVM UUID. -2024-03-07T00:49:47Z #8 15.57 Setting up dmsetup (2:1.02.175-2.1) ... -2024-03-07T00:49:47Z #8 15.66 Selecting previously unselected package systemd-sysv. -2024-03-07T00:49:47Z #8 15.67 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-03-07T00:49:47Z #8 15.69 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-03-07T00:49:47Z #8 15.69 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-03-07T00:49:47Z #8 15.74 Selecting previously unselected package libdbus-1-3:amd64. -2024-03-07T00:49:47Z #8 15.75 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-03-07T00:49:47Z #8 15.75 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-03-07T00:49:48Z #8 15.82 Selecting previously unselected package dbus. -2024-03-07T00:49:48Z #8 15.82 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-03-07T00:49:48Z #8 15.83 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-03-07T00:49:48Z #8 15.91 Selecting previously unselected package libnss-systemd:amd64. -2024-03-07T00:49:48Z #8 15.91 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-07T00:49:48Z #8 15.92 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-07T00:49:48Z #8 15.97 Selecting previously unselected package libpam-systemd:amd64. -2024-03-07T00:49:48Z #8 15.97 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-07T00:49:48Z #8 15.98 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-07T00:49:48Z #8 16.04 Selecting previously unselected package manpages. -2024-03-07T00:49:48Z #8 16.04 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-03-07T00:49:48Z #8 16.05 Unpacking manpages (5.10-1) ... -2024-03-07T00:49:48Z #8 16.23 Selecting previously unselected package systemd-timesyncd. -2024-03-07T00:49:48Z #8 16.23 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-03-07T00:49:48Z #8 16.24 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-03-07T00:49:48Z #8 16.28 Selecting previously unselected package hicolor-icon-theme. -2024-03-07T00:49:48Z #8 16.29 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-03-07T00:49:48Z #8 16.29 Unpacking hicolor-icon-theme (0.17-2) ... -2024-03-07T00:49:48Z #8 16.40 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-03-07T00:49:48Z #8 16.40 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-03-07T00:49:48Z #8 16.40 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-03-07T00:49:48Z #8 16.50 Selecting previously unselected package libicu67:amd64. -2024-03-07T00:49:48Z #8 16.51 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-03-07T00:49:48Z #8 16.51 Unpacking libicu67:amd64 (67.1-7) ... -2024-03-07T00:49:50Z #8 17.90 Selecting previously unselected package libxml2:amd64. -2024-03-07T00:49:50Z #8 17.90 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-03-07T00:49:50Z #8 17.91 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-03-07T00:49:50Z #8 18.04 Selecting previously unselected package shared-mime-info. -2024-03-07T00:49:50Z #8 18.04 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-03-07T00:49:50Z #8 18.05 Unpacking shared-mime-info (2.0-1) ... -2024-03-07T00:49:50Z #8 18.21 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-03-07T00:49:50Z #8 18.21 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-03-07T00:49:50Z #8 18.22 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-03-07T00:49:50Z #8 18.27 Selecting previously unselected package libpng16-16:amd64. -2024-03-07T00:49:50Z #8 18.27 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-03-07T00:49:50Z #8 18.28 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-03-07T00:49:50Z #8 18.35 Selecting previously unselected package libdeflate0:amd64. -2024-03-07T00:49:50Z #8 18.35 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-03-07T00:49:50Z #8 18.35 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-03-07T00:49:50Z #8 18.39 Selecting previously unselected package libjbig0:amd64. -2024-03-07T00:49:50Z #8 18.40 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-03-07T00:49:50Z #8 18.40 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-03-07T00:49:50Z #8 18.44 Selecting previously unselected package libwebp6:amd64. -2024-03-07T00:49:50Z #8 18.44 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-03-07T00:49:50Z #8 18.45 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-07T00:49:50Z #8 18.54 Selecting previously unselected package libtiff5:amd64. -2024-03-07T00:49:50Z #8 18.55 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-03-07T00:49:50Z #8 18.55 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-03-07T00:49:50Z #8 18.63 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-03-07T00:49:50Z #8 18.63 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-03-07T00:49:50Z #8 18.64 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-07T00:49:50Z #8 18.71 Selecting previously unselected package gtk-update-icon-cache. -2024-03-07T00:49:50Z #8 18.71 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-03-07T00:49:50Z #8 18.72 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-03-07T00:49:51Z #8 18.84 Selecting previously unselected package adwaita-icon-theme. -2024-03-07T00:49:51Z #8 18.85 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-03-07T00:49:51Z #8 18.85 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-03-07T00:49:53Z #8 21.55 Selecting previously unselected package alsa-topology-conf. -2024-03-07T00:49:53Z #8 21.56 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-03-07T00:49:53Z #8 21.56 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-03-07T00:49:53Z #8 21.60 Selecting previously unselected package libasound2-data. -2024-03-07T00:49:53Z #8 21.60 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-03-07T00:49:53Z #8 21.61 Unpacking libasound2-data (1.2.4-1.1) ... -2024-03-07T00:49:53Z #8 21.67 Selecting previously unselected package libasound2:amd64. -2024-03-07T00:49:53Z #8 21.67 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-03-07T00:49:53Z #8 21.68 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-03-07T00:49:53Z #8 21.77 Selecting previously unselected package alsa-ucm-conf. -2024-03-07T00:49:53Z #8 21.77 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-03-07T00:49:54Z #8 21.78 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-03-07T00:49:54Z #8 21.87 Selecting previously unselected package libatspi2.0-0:amd64. -2024-03-07T00:49:54Z #8 21.87 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-03-07T00:49:54Z #8 21.88 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-03-07T00:49:54Z #8 21.94 Selecting previously unselected package libxi6:amd64. -2024-03-07T00:49:54Z #8 21.94 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-03-07T00:49:54Z #8 21.94 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-03-07T00:49:54Z #8 22.00 Selecting previously unselected package libxtst6:amd64. -2024-03-07T00:49:54Z #8 22.00 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-03-07T00:49:54Z #8 22.00 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-03-07T00:49:54Z #8 22.04 Selecting previously unselected package at-spi2-core. -2024-03-07T00:49:54Z #8 22.04 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-03-07T00:49:54Z #8 22.04 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-03-07T00:49:54Z #8 22.10 Selecting previously unselected package binutils-common:amd64. -2024-03-07T00:49:54Z #8 22.11 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-03-07T00:49:54Z #8 22.12 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-03-07T00:49:54Z #8 22.56 Selecting previously unselected package libbinutils:amd64. -2024-03-07T00:49:54Z #8 22.56 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-03-07T00:49:54Z #8 22.57 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-03-07T00:49:54Z #8 22.73 Selecting previously unselected package libctf-nobfd0:amd64. -2024-03-07T00:49:54Z #8 22.74 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-03-07T00:49:54Z #8 22.75 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-03-07T00:49:55Z #8 22.81 Selecting previously unselected package libctf0:amd64. -2024-03-07T00:49:55Z #8 22.81 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-03-07T00:49:55Z #8 22.82 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-03-07T00:49:55Z #8 22.86 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-03-07T00:49:55Z #8 22.86 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-03-07T00:49:55Z #8 22.87 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-03-07T00:49:55Z #8 23.31 Selecting previously unselected package binutils. -2024-03-07T00:49:55Z #8 23.31 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-03-07T00:49:55Z #8 23.32 Unpacking binutils (2.35.2-2) ... -2024-03-07T00:49:55Z #8 23.37 Selecting previously unselected package libisl23:amd64. -2024-03-07T00:49:55Z #8 23.38 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-03-07T00:49:55Z #8 23.38 Unpacking libisl23:amd64 (0.23-1) ... -2024-03-07T00:49:55Z #8 23.53 Selecting previously unselected package libmpfr6:amd64. -2024-03-07T00:49:55Z #8 23.54 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-03-07T00:49:55Z #8 23.54 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-03-07T00:49:55Z #8 23.74 Selecting previously unselected package libmpc3:amd64. -2024-03-07T00:49:55Z #8 23.75 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-03-07T00:49:55Z #8 23.75 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-03-07T00:49:56Z #8 23.79 Selecting previously unselected package cpp-10. -2024-03-07T00:49:56Z #8 23.80 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-03-07T00:49:56Z #8 23.80 Unpacking cpp-10 (10.2.1-6) ... -2024-03-07T00:49:57Z #8 25.32 Selecting previously unselected package cpp. -2024-03-07T00:49:57Z #8 25.33 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-03-07T00:49:57Z #8 25.33 Unpacking cpp (4:10.2.1-1) ... -2024-03-07T00:49:57Z #8 25.37 Selecting previously unselected package dbus-user-session. -2024-03-07T00:49:57Z #8 25.38 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-03-07T00:49:57Z #8 25.38 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-03-07T00:49:57Z #8 25.44 Selecting previously unselected package libdconf1:amd64. -2024-03-07T00:49:57Z #8 25.45 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-03-07T00:49:57Z #8 25.45 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-03-07T00:49:57Z #8 25.49 Selecting previously unselected package dconf-service. -2024-03-07T00:49:57Z #8 25.50 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-03-07T00:49:57Z #8 25.50 Unpacking dconf-service (0.38.0-2) ... -2024-03-07T00:49:57Z #8 25.54 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-03-07T00:49:57Z #8 25.55 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-03-07T00:49:57Z #8 25.55 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-03-07T00:49:57Z #8 25.59 Selecting previously unselected package libatk1.0-data. -2024-03-07T00:49:57Z #8 25.60 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-03-07T00:49:57Z #8 25.60 Unpacking libatk1.0-data (2.36.0-2) ... -2024-03-07T00:49:57Z #8 25.69 Selecting previously unselected package libatk1.0-0:amd64. -2024-03-07T00:49:57Z #8 25.69 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-03-07T00:49:57Z #8 25.70 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-03-07T00:49:57Z #8 25.74 Selecting previously unselected package libfreetype6:amd64. -2024-03-07T00:49:57Z #8 25.75 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-03-07T00:49:57Z #8 25.75 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-03-07T00:49:58Z #8 25.86 Selecting previously unselected package fonts-dejavu-core. -2024-03-07T00:49:58Z #8 25.86 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-03-07T00:49:58Z #8 25.87 Unpacking fonts-dejavu-core (2.37-2) ... -2024-03-07T00:49:58Z #8 26.12 Selecting previously unselected package fontconfig-config. -2024-03-07T00:49:58Z #8 26.12 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-03-07T00:49:58Z #8 26.29 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-03-07T00:49:58Z #8 26.37 Selecting previously unselected package libfontconfig1:amd64. -2024-03-07T00:49:58Z #8 26.37 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-03-07T00:49:58Z #8 26.37 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-03-07T00:49:58Z #8 26.43 Selecting previously unselected package libpixman-1-0:amd64. -2024-03-07T00:49:58Z #8 26.44 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-03-07T00:49:58Z #8 26.44 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-03-07T00:49:58Z #8 26.54 Selecting previously unselected package libxcb-render0:amd64. -2024-03-07T00:49:58Z #8 26.55 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-03-07T00:49:58Z #8 26.55 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-03-07T00:49:58Z #8 26.60 Selecting previously unselected package libxcb-shm0:amd64. -2024-03-07T00:49:58Z #8 26.60 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-03-07T00:49:58Z #8 26.61 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-03-07T00:49:58Z #8 26.66 Selecting previously unselected package libcairo2:amd64. -2024-03-07T00:49:58Z #8 26.66 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-03-07T00:49:58Z #8 26.67 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-03-07T00:49:59Z #8 26.79 Selecting previously unselected package libcairo-gobject2:amd64. -2024-03-07T00:49:59Z #8 26.80 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-03-07T00:49:59Z #8 26.80 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-03-07T00:49:59Z #8 26.86 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-03-07T00:49:59Z #8 26.87 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-03-07T00:49:59Z #8 26.87 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-03-07T00:49:59Z #8 26.93 Selecting previously unselected package libevent-2.1-7:amd64. -2024-03-07T00:49:59Z #8 26.93 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-03-07T00:49:59Z #8 26.93 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-03-07T00:49:59Z #8 27.01 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-03-07T00:49:59Z #8 27.01 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-03-07T00:49:59Z #8 27.02 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-03-07T00:49:59Z #8 27.07 Selecting previously unselected package liblcms2-2:amd64. -2024-03-07T00:49:59Z #8 27.07 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-03-07T00:49:59Z #8 27.08 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-03-07T00:49:59Z #8 27.14 Selecting previously unselected package libcolord2:amd64. -2024-03-07T00:49:59Z #8 27.15 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-03-07T00:49:59Z #8 27.15 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-03-07T00:49:59Z #8 27.22 Selecting previously unselected package libavahi-common-data:amd64. -2024-03-07T00:49:59Z #8 27.22 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-03-07T00:49:59Z #8 27.23 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-03-07T00:49:59Z #8 27.29 Selecting previously unselected package libavahi-common3:amd64. -2024-03-07T00:49:59Z #8 27.29 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-03-07T00:49:59Z #8 27.30 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-03-07T00:49:59Z #8 27.35 Selecting previously unselected package libavahi-client3:amd64. -2024-03-07T00:49:59Z #8 27.36 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-03-07T00:49:59Z #8 27.36 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-03-07T00:49:59Z #8 27.42 Selecting previously unselected package libcups2:amd64. -2024-03-07T00:49:59Z #8 27.42 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-03-07T00:49:59Z #8 27.43 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-03-07T00:49:59Z #8 27.52 Selecting previously unselected package libepoxy0:amd64. -2024-03-07T00:49:59Z #8 27.52 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-03-07T00:49:59Z #8 27.53 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-03-07T00:49:59Z #8 27.60 Selecting previously unselected package libfribidi0:amd64. -2024-03-07T00:49:59Z #8 27.61 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-03-07T00:49:59Z #8 27.61 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-03-07T00:49:59Z #8 27.66 Selecting previously unselected package libgraphite2-3:amd64. -2024-03-07T00:49:59Z #8 27.66 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-03-07T00:49:59Z #8 27.67 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-03-07T00:49:59Z #8 27.72 Selecting previously unselected package libharfbuzz0b:amd64. -2024-03-07T00:49:59Z #8 27.73 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-03-07T00:49:59Z #8 27.73 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-03-07T00:50:00Z #8 27.84 Selecting previously unselected package libjson-glib-1.0-common. -2024-03-07T00:50:00Z #8 27.85 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-03-07T00:50:00Z #8 27.85 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-03-07T00:50:00Z #8 27.91 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-03-07T00:50:00Z #8 27.92 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-03-07T00:50:00Z #8 27.92 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-03-07T00:50:00Z #8 27.97 Selecting previously unselected package fontconfig. -2024-03-07T00:50:00Z #8 27.97 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-03-07T00:50:00Z #8 27.97 Unpacking fontconfig (2.13.1-4.2) ... -2024-03-07T00:50:00Z #8 28.05 Selecting previously unselected package libthai-data. -2024-03-07T00:50:00Z #8 28.05 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-03-07T00:50:00Z #8 28.06 Unpacking libthai-data (0.1.28-3) ... -2024-03-07T00:50:00Z #8 28.12 Selecting previously unselected package libdatrie1:amd64. -2024-03-07T00:50:00Z #8 28.12 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-03-07T00:50:00Z #8 28.13 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-03-07T00:50:00Z #8 28.17 Selecting previously unselected package libthai0:amd64. -2024-03-07T00:50:00Z #8 28.17 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-03-07T00:50:00Z #8 28.17 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-03-07T00:50:00Z #8 28.22 Selecting previously unselected package libpango-1.0-0:amd64. -2024-03-07T00:50:00Z #8 28.22 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-03-07T00:50:00Z #8 28.23 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-03-07T00:50:00Z #8 28.29 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-03-07T00:50:00Z #8 28.30 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-03-07T00:50:00Z #8 28.30 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-03-07T00:50:00Z #8 28.36 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-03-07T00:50:00Z #8 28.36 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-03-07T00:50:00Z #8 28.37 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-03-07T00:50:00Z #8 28.42 Selecting previously unselected package libproxy1v5:amd64. -2024-03-07T00:50:00Z #8 28.42 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-03-07T00:50:00Z #8 28.43 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-03-07T00:50:00Z #8 28.47 Selecting previously unselected package glib-networking-common. -2024-03-07T00:50:00Z #8 28.47 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-03-07T00:50:00Z #8 28.48 Unpacking glib-networking-common (2.66.0-2) ... -2024-03-07T00:50:00Z #8 28.54 Selecting previously unselected package glib-networking-services. -2024-03-07T00:50:00Z #8 28.54 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-03-07T00:50:00Z #8 28.54 Unpacking glib-networking-services (2.66.0-2) ... -2024-03-07T00:50:00Z #8 28.58 Selecting previously unselected package gsettings-desktop-schemas. -2024-03-07T00:50:00Z #8 28.58 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-03-07T00:50:00Z #8 28.59 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-03-07T00:50:01Z #8 28.75 Selecting previously unselected package glib-networking:amd64. -2024-03-07T00:50:01Z #8 28.76 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-03-07T00:50:01Z #8 28.76 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-03-07T00:50:01Z #8 28.81 Selecting previously unselected package libsoup2.4-1:amd64. -2024-03-07T00:50:01Z #8 28.82 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-03-07T00:50:01Z #8 28.82 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-03-07T00:50:01Z #8 28.97 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-03-07T00:50:01Z #8 28.97 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-03-07T00:50:01Z #8 28.98 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-03-07T00:50:01Z #8 29.02 Selecting previously unselected package librest-0.7-0:amd64. -2024-03-07T00:50:01Z #8 29.03 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-03-07T00:50:01Z #8 29.03 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-03-07T00:50:01Z #8 29.08 Selecting previously unselected package libwayland-client0:amd64. -2024-03-07T00:50:01Z #8 29.08 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-03-07T00:50:01Z #8 29.10 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-03-07T00:50:01Z #8 29.13 Selecting previously unselected package libwayland-cursor0:amd64. -2024-03-07T00:50:01Z #8 29.14 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-03-07T00:50:01Z #8 29.15 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-03-07T00:50:01Z #8 29.19 Selecting previously unselected package libwayland-egl1:amd64. -2024-03-07T00:50:01Z #8 29.20 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-03-07T00:50:01Z #8 29.20 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-03-07T00:50:01Z #8 29.24 Selecting previously unselected package libxcomposite1:amd64. -2024-03-07T00:50:01Z #8 29.24 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-03-07T00:50:01Z #8 29.24 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-03-07T00:50:01Z #8 29.29 Selecting previously unselected package libxfixes3:amd64. -2024-03-07T00:50:01Z #8 29.29 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-03-07T00:50:01Z #8 29.30 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-03-07T00:50:01Z #8 29.34 Selecting previously unselected package libxcursor1:amd64. -2024-03-07T00:50:01Z #8 29.35 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-03-07T00:50:01Z #8 29.35 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-03-07T00:50:01Z #8 29.40 Selecting previously unselected package libxdamage1:amd64. -2024-03-07T00:50:01Z #8 29.40 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-03-07T00:50:01Z #8 29.41 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-03-07T00:50:01Z #8 29.45 Selecting previously unselected package libxinerama1:amd64. -2024-03-07T00:50:01Z #8 29.45 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-03-07T00:50:01Z #8 29.46 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-03-07T00:50:01Z #8 29.50 Selecting previously unselected package xkb-data. -2024-03-07T00:50:01Z #8 29.50 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-03-07T00:50:01Z #8 29.51 Unpacking xkb-data (2.29-2) ... -2024-03-07T00:50:02Z #8 29.76 Selecting previously unselected package libxkbcommon0:amd64. -2024-03-07T00:50:02Z #8 29.77 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-03-07T00:50:02Z #8 29.77 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-03-07T00:50:02Z #8 29.84 Selecting previously unselected package libxrandr2:amd64. -2024-03-07T00:50:02Z #8 29.84 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-03-07T00:50:02Z #8 29.85 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-03-07T00:50:02Z #8 29.90 Selecting previously unselected package libgtk-3-common. -2024-03-07T00:50:02Z #8 29.90 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-03-07T00:50:02Z #8 29.91 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-03-07T00:50:02Z #8 30.72 Selecting previously unselected package libgtk-3-0:amd64. -2024-03-07T00:50:02Z #8 30.73 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-03-07T00:50:02Z #8 30.73 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-03-07T00:50:03Z #8 31.27 Selecting previously unselected package libx11-xcb1:amd64. -2024-03-07T00:50:03Z #8 31.27 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-03-07T00:50:03Z #8 31.28 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-03-07T00:50:03Z #8 31.34 Selecting previously unselected package firefox-esr. -2024-03-07T00:50:03Z #8 31.34 Preparing to unpack .../099-firefox-esr_115.8.0esr-1~deb11u1_amd64.deb ... -2024-03-07T00:50:03Z #8 31.36 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-03-07T00:50:03Z #8 31.37 Unpacking firefox-esr (115.8.0esr-1~deb11u1) ... -2024-03-07T00:50:14Z #8 42.52 Selecting previously unselected package fonts-humor-sans. -2024-03-07T00:50:14Z #8 42.52 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-03-07T00:50:14Z #8 42.53 Unpacking fonts-humor-sans (1.0-4) ... -2024-03-07T00:50:14Z #8 42.57 Selecting previously unselected package libcc1-0:amd64. -2024-03-07T00:50:14Z #8 42.58 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-03-07T00:50:14Z #8 42.58 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-03-07T00:50:14Z #8 42.63 Selecting previously unselected package libgomp1:amd64. -2024-03-07T00:50:14Z #8 42.64 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-03-07T00:50:14Z #8 42.64 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-03-07T00:50:14Z #8 42.72 Selecting previously unselected package libitm1:amd64. -2024-03-07T00:50:14Z #8 42.73 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-03-07T00:50:14Z #8 42.74 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-03-07T00:50:14Z #8 42.78 Selecting previously unselected package libatomic1:amd64. -2024-03-07T00:50:14Z #8 42.79 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-03-07T00:50:14Z #8 42.79 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-03-07T00:50:15Z #8 42.83 Selecting previously unselected package libasan6:amd64. -2024-03-07T00:50:15Z #8 42.84 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-03-07T00:50:15Z #8 42.84 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-03-07T00:50:15Z #8 43.33 Selecting previously unselected package liblsan0:amd64. -2024-03-07T00:50:15Z #8 43.33 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-03-07T00:50:15Z #8 43.34 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-03-07T00:50:15Z #8 43.54 Selecting previously unselected package libtsan0:amd64. -2024-03-07T00:50:15Z #8 43.54 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-03-07T00:50:15Z #8 43.55 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-03-07T00:50:16Z #8 43.98 Selecting previously unselected package libubsan1:amd64. -2024-03-07T00:50:16Z #8 43.98 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-03-07T00:50:16Z #8 43.99 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-03-07T00:50:16Z #8 44.16 Selecting previously unselected package libquadmath0:amd64. -2024-03-07T00:50:16Z #8 44.16 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-03-07T00:50:16Z #8 44.17 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-03-07T00:50:16Z #8 44.23 Selecting previously unselected package libgcc-10-dev:amd64. -2024-03-07T00:50:16Z #8 44.23 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-03-07T00:50:16Z #8 44.24 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-03-07T00:50:16Z #8 44.72 Selecting previously unselected package gcc-10. -2024-03-07T00:50:16Z #8 44.72 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-03-07T00:50:16Z #8 44.73 Unpacking gcc-10 (10.2.1-6) ... -2024-03-07T00:50:19Z #8 47.67 Selecting previously unselected package gcc. -2024-03-07T00:50:19Z #8 47.68 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-03-07T00:50:19Z #8 47.68 Unpacking gcc (4:10.2.1-1) ... -2024-03-07T00:50:19Z #8 47.72 Selecting previously unselected package libva2:amd64. -2024-03-07T00:50:19Z #8 47.73 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-03-07T00:50:19Z #8 47.73 Unpacking libva2:amd64 (2.10.0-1) ... -2024-03-07T00:50:20Z #8 47.78 Selecting previously unselected package libdrm-common. -2024-03-07T00:50:20Z #8 47.79 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-03-07T00:50:20Z #8 47.79 Unpacking libdrm-common (2.4.104-1) ... -2024-03-07T00:50:20Z #8 47.83 Selecting previously unselected package libdrm2:amd64. -2024-03-07T00:50:20Z #8 47.84 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-03-07T00:50:20Z #8 47.84 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-03-07T00:50:20Z #8 47.88 Selecting previously unselected package libpciaccess0:amd64. -2024-03-07T00:50:20Z #8 47.89 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-03-07T00:50:20Z #8 47.90 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-03-07T00:50:20Z #8 47.94 Selecting previously unselected package libdrm-intel1:amd64. -2024-03-07T00:50:20Z #8 47.95 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-03-07T00:50:20Z #8 47.95 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-03-07T00:50:20Z #8 48.00 Selecting previously unselected package i965-va-driver:amd64. -2024-03-07T00:50:20Z #8 48.00 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-03-07T00:50:20Z #8 48.01 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-03-07T00:50:20Z #8 48.11 Selecting previously unselected package libigdgmm11:amd64. -2024-03-07T00:50:20Z #8 48.11 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-03-07T00:50:20Z #8 48.12 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-03-07T00:50:20Z #8 48.17 Selecting previously unselected package intel-media-va-driver:amd64. -2024-03-07T00:50:20Z #8 48.18 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-03-07T00:50:20Z #8 48.18 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-03-07T00:50:20Z #8 48.57 Selecting previously unselected package libaom0:amd64. -2024-03-07T00:50:20Z #8 48.57 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-03-07T00:50:20Z #8 48.58 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-03-07T00:50:20Z #8 48.82 Selecting previously unselected package libmfx1:amd64. -2024-03-07T00:50:21Z #8 48.82 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-03-07T00:50:21Z #8 48.82 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-03-07T00:50:21Z #8 49.64 Selecting previously unselected package libva-drm2:amd64. -2024-03-07T00:50:21Z #8 49.65 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-03-07T00:50:21Z #8 49.65 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-03-07T00:50:21Z #8 49.69 Selecting previously unselected package libva-x11-2:amd64. -2024-03-07T00:50:21Z #8 49.70 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-03-07T00:50:21Z #8 49.70 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-03-07T00:50:21Z #8 49.74 Selecting previously unselected package libvdpau1:amd64. -2024-03-07T00:50:21Z #8 49.75 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-03-07T00:50:21Z #8 49.75 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-03-07T00:50:22Z #8 49.80 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-03-07T00:50:22Z #8 49.80 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-03-07T00:50:22Z #8 49.81 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-03-07T00:50:22Z #8 49.86 Selecting previously unselected package libavutil56:amd64. -2024-03-07T00:50:22Z #8 49.86 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-07T00:50:22Z #8 49.87 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-07T00:50:22Z #8 49.96 Selecting previously unselected package libcodec2-0.9:amd64. -2024-03-07T00:50:22Z #8 49.96 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-03-07T00:50:22Z #8 49.96 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-03-07T00:50:23Z #8 51.22 Selecting previously unselected package libdav1d4:amd64. -2024-03-07T00:50:23Z #8 51.22 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-03-07T00:50:23Z #8 51.23 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-03-07T00:50:23Z #8 51.33 Selecting previously unselected package libgsm1:amd64. -2024-03-07T00:50:23Z #8 51.33 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-03-07T00:50:23Z #8 51.34 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-03-07T00:50:23Z #8 51.38 Selecting previously unselected package libmp3lame0:amd64. -2024-03-07T00:50:23Z #8 51.39 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-03-07T00:50:23Z #8 51.39 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-03-07T00:50:24Z #8 51.80 Selecting previously unselected package libopenjp2-7:amd64. -2024-03-07T00:50:24Z #8 51.80 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-03-07T00:50:24Z #8 51.82 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-03-07T00:50:24Z #8 51.93 Selecting previously unselected package libopus0:amd64. -2024-03-07T00:50:24Z #8 51.93 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-03-07T00:50:24Z #8 51.93 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-03-07T00:50:24Z #8 52.00 Selecting previously unselected package librsvg2-2:amd64. -2024-03-07T00:50:24Z #8 52.00 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-03-07T00:50:24Z #8 52.00 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-07T00:50:24Z #8 52.54 Selecting previously unselected package libshine3:amd64. -2024-03-07T00:50:24Z #8 52.54 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-03-07T00:50:24Z #8 52.55 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-03-07T00:50:24Z #8 52.59 Selecting previously unselected package libsnappy1v5:amd64. -2024-03-07T00:50:24Z #8 52.59 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-03-07T00:50:24Z #8 52.60 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-03-07T00:50:24Z #8 52.64 Selecting previously unselected package libspeex1:amd64. -2024-03-07T00:50:24Z #8 52.64 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-03-07T00:50:24Z #8 52.65 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-03-07T00:50:24Z #8 52.70 Selecting previously unselected package libsoxr0:amd64. -2024-03-07T00:50:24Z #8 52.70 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-03-07T00:50:24Z #8 52.71 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-03-07T00:50:25Z #8 52.76 Selecting previously unselected package libswresample3:amd64. -2024-03-07T00:50:25Z #8 52.76 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-07T00:50:25Z #8 52.77 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-07T00:50:25Z #8 52.82 Selecting previously unselected package libogg0:amd64. -2024-03-07T00:50:25Z #8 52.83 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-03-07T00:50:25Z #8 52.83 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-03-07T00:50:25Z #8 52.87 Selecting previously unselected package libtheora0:amd64. -2024-03-07T00:50:25Z #8 52.88 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-03-07T00:50:25Z #8 52.88 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-03-07T00:50:25Z #8 52.96 Selecting previously unselected package libtwolame0:amd64. -2024-03-07T00:50:25Z #8 52.96 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-03-07T00:50:25Z #8 52.96 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-03-07T00:50:25Z #8 53.01 Selecting previously unselected package libvorbis0a:amd64. -2024-03-07T00:50:25Z #8 53.02 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-03-07T00:50:25Z #8 53.02 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-03-07T00:50:25Z #8 53.08 Selecting previously unselected package libvorbisenc2:amd64. -2024-03-07T00:50:25Z #8 53.08 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-03-07T00:50:25Z #8 53.09 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-03-07T00:50:25Z #8 53.17 Selecting previously unselected package libvpx6:amd64. -2024-03-07T00:50:25Z #8 53.18 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-03-07T00:50:25Z #8 53.18 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-03-07T00:50:25Z #8 53.36 Selecting previously unselected package libwavpack1:amd64. -2024-03-07T00:50:25Z #8 53.37 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-03-07T00:50:25Z #8 53.37 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-03-07T00:50:25Z #8 53.42 Selecting previously unselected package libwebpmux3:amd64. -2024-03-07T00:50:25Z #8 53.43 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-03-07T00:50:25Z #8 53.43 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-07T00:50:25Z #8 53.48 Selecting previously unselected package libx264-160:amd64. -2024-03-07T00:50:25Z #8 53.48 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-03-07T00:50:25Z #8 53.49 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-03-07T00:50:25Z #8 53.61 Selecting previously unselected package libnuma1:amd64. -2024-03-07T00:50:25Z #8 53.62 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-03-07T00:50:25Z #8 53.62 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-03-07T00:50:25Z #8 53.69 Selecting previously unselected package libx265-192:amd64. -2024-03-07T00:50:25Z #8 53.70 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-03-07T00:50:25Z #8 53.70 Unpacking libx265-192:amd64 (3.4-2) ... -2024-03-07T00:50:26Z #8 54.06 Selecting previously unselected package libxvidcore4:amd64. -2024-03-07T00:50:26Z #8 54.07 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-03-07T00:50:26Z #8 54.07 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-03-07T00:50:26Z #8 54.15 Selecting previously unselected package libzvbi-common. -2024-03-07T00:50:26Z #8 54.16 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-03-07T00:50:26Z #8 54.16 Unpacking libzvbi-common (0.2.35-18) ... -2024-03-07T00:50:26Z #8 54.21 Selecting previously unselected package libzvbi0:amd64. -2024-03-07T00:50:26Z #8 54.22 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-03-07T00:50:26Z #8 54.22 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-03-07T00:50:26Z #8 54.31 Selecting previously unselected package libavcodec58:amd64. -2024-03-07T00:50:26Z #8 54.32 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-07T00:50:26Z #8 54.32 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-07T00:50:27Z #8 55.22 Selecting previously unselected package libc-dev-bin. -2024-03-07T00:50:27Z #8 55.22 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... -2024-03-07T00:50:27Z #8 55.22 Unpacking libc-dev-bin (2.31-13+deb11u8) ... -2024-03-07T00:50:27Z #8 55.28 Selecting previously unselected package libxpm4:amd64. -2024-03-07T00:50:27Z #8 55.28 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-03-07T00:50:27Z #8 55.28 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-03-07T00:50:27Z #8 55.34 Selecting previously unselected package libgd3:amd64. -2024-03-07T00:50:27Z #8 55.34 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-03-07T00:50:27Z #8 55.34 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-03-07T00:50:27Z #8 55.42 Selecting previously unselected package libc-devtools. -2024-03-07T00:50:27Z #8 55.42 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... -2024-03-07T00:50:27Z #8 55.42 Unpacking libc-devtools (2.31-13+deb11u8) ... -2024-03-07T00:50:27Z #8 55.48 Selecting previously unselected package linux-libc-dev:amd64. -2024-03-07T00:50:27Z #8 55.48 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-03-07T00:50:27Z #8 55.49 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-03-07T00:50:28Z #8 55.90 Selecting previously unselected package libcrypt-dev:amd64. -2024-03-07T00:50:28Z #8 55.90 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-03-07T00:50:28Z #8 55.91 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-03-07T00:50:28Z #8 55.96 Selecting previously unselected package libtirpc-dev:amd64. -2024-03-07T00:50:28Z #8 55.96 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-03-07T00:50:28Z #8 55.97 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-03-07T00:50:28Z #8 56.05 Selecting previously unselected package libnsl-dev:amd64. -2024-03-07T00:50:28Z #8 56.05 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-03-07T00:50:28Z #8 56.06 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-03-07T00:50:28Z #8 56.11 Selecting previously unselected package libc6-dev:amd64. -2024-03-07T00:50:28Z #8 56.11 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... -2024-03-07T00:50:28Z #8 56.12 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-03-07T00:50:28Z #8 56.72 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-03-07T00:50:28Z #8 56.73 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-03-07T00:50:28Z #8 56.73 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-03-07T00:50:29Z #8 56.77 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-03-07T00:50:29Z #8 56.78 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-03-07T00:50:29Z #8 56.78 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-03-07T00:50:29Z #8 56.86 Selecting previously unselected package libdrm-radeon1:amd64. -2024-03-07T00:50:29Z #8 56.87 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-03-07T00:50:29Z #8 56.87 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-03-07T00:50:29Z #8 56.92 Selecting previously unselected package libelf1:amd64. -2024-03-07T00:50:29Z #8 56.93 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-03-07T00:50:29Z #8 56.93 Unpacking libelf1:amd64 (0.183-1) ... -2024-03-07T00:50:29Z #8 57.01 Selecting previously unselected package libfontenc1:amd64. -2024-03-07T00:50:29Z #8 57.01 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-03-07T00:50:29Z #8 57.02 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-03-07T00:50:29Z #8 57.41 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-03-07T00:50:29Z #8 57.41 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-03-07T00:50:29Z #8 57.42 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-03-07T00:50:29Z #8 57.46 Selecting previously unselected package libglapi-mesa:amd64. -2024-03-07T00:50:29Z #8 57.47 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-03-07T00:50:29Z #8 57.47 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-03-07T00:50:29Z #8 57.53 Selecting previously unselected package libz3-4:amd64. -2024-03-07T00:50:29Z #8 57.53 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-03-07T00:50:29Z #8 57.54 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-03-07T00:50:30Z #8 58.72 Selecting previously unselected package libllvm11:amd64. -2024-03-07T00:50:31Z #8 58.73 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-03-07T00:50:31Z #8 58.73 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-03-07T00:50:34Z #8 61.98 Selecting previously unselected package libsensors-config. -2024-03-07T00:50:34Z #8 61.98 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-03-07T00:50:34Z #8 61.98 Unpacking libsensors-config (1:3.6.0-7) ... -2024-03-07T00:50:34Z #8 62.04 Selecting previously unselected package libsensors5:amd64. -2024-03-07T00:50:34Z #8 62.04 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-03-07T00:50:34Z #8 62.08 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-03-07T00:50:34Z #8 62.14 Selecting previously unselected package libvulkan1:amd64. -2024-03-07T00:50:34Z #8 62.14 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-03-07T00:50:34Z #8 62.15 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-03-07T00:50:34Z #8 62.22 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-03-07T00:50:34Z #8 62.22 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-03-07T00:50:34Z #8 62.24 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-03-07T00:50:36Z #8 63.83 Selecting previously unselected package libglvnd0:amd64. -2024-03-07T00:50:36Z #8 63.83 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-03-07T00:50:36Z #8 63.84 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-03-07T00:50:36Z #8 63.89 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-03-07T00:50:36Z #8 63.90 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-03-07T00:50:36Z #8 63.90 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-03-07T00:50:36Z #8 63.95 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-03-07T00:50:36Z #8 63.96 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-03-07T00:50:36Z #8 63.96 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-03-07T00:50:36Z #8 64.01 Selecting previously unselected package libxcb-glx0:amd64. -2024-03-07T00:50:36Z #8 64.02 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-03-07T00:50:36Z #8 64.02 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-03-07T00:50:36Z #8 64.08 Selecting previously unselected package libxcb-present0:amd64. -2024-03-07T00:50:36Z #8 64.09 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-03-07T00:50:36Z #8 64.09 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-03-07T00:50:36Z #8 64.14 Selecting previously unselected package libxcb-sync1:amd64. -2024-03-07T00:50:36Z #8 64.14 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-03-07T00:50:36Z #8 64.15 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-03-07T00:50:36Z #8 64.20 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-03-07T00:50:36Z #8 64.20 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-03-07T00:50:36Z #8 64.21 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-03-07T00:50:36Z #8 64.25 Selecting previously unselected package libxshmfence1:amd64. -2024-03-07T00:50:36Z #8 64.26 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-03-07T00:50:36Z #8 64.26 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-03-07T00:50:36Z #8 64.30 Selecting previously unselected package libxxf86vm1:amd64. -2024-03-07T00:50:36Z #8 64.30 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-03-07T00:50:36Z #8 64.31 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-03-07T00:50:36Z #8 64.35 Selecting previously unselected package libglx-mesa0:amd64. -2024-03-07T00:50:36Z #8 64.36 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-03-07T00:50:36Z #8 64.37 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-03-07T00:50:36Z #8 64.45 Selecting previously unselected package libgtk-3-bin. -2024-03-07T00:50:36Z #8 64.45 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-03-07T00:50:36Z #8 64.45 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-03-07T00:50:36Z #8 64.51 Selecting previously unselected package librsvg2-common:amd64. -2024-03-07T00:50:36Z #8 64.51 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-03-07T00:50:36Z #8 64.52 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-07T00:50:36Z #8 64.56 Selecting previously unselected package libglx0:amd64. -2024-03-07T00:50:36Z #8 64.56 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-03-07T00:50:36Z #8 64.56 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-03-07T00:50:36Z #8 64.61 Selecting previously unselected package libgl1:amd64. -2024-03-07T00:50:36Z #8 64.61 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-03-07T00:50:36Z #8 64.62 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-03-07T00:50:36Z #8 64.67 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-03-07T00:50:36Z #8 64.67 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-03-07T00:50:36Z #8 64.68 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-03-07T00:50:36Z #8 64.73 Selecting previously unselected package libxt6:amd64. -2024-03-07T00:50:36Z #8 64.73 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-03-07T00:50:36Z #8 64.74 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-03-07T00:50:36Z #8 64.80 Selecting previously unselected package libxmu6:amd64. -2024-03-07T00:50:37Z #8 64.81 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-03-07T00:50:37Z #8 64.81 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-03-07T00:50:37Z #8 64.85 Selecting previously unselected package libxaw7:amd64. -2024-03-07T00:50:37Z #8 64.85 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-03-07T00:50:37Z #8 64.86 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-03-07T00:50:37Z #8 64.92 Selecting previously unselected package libxcb-randr0:amd64. -2024-03-07T00:50:37Z #8 64.93 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-03-07T00:50:37Z #8 64.93 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-03-07T00:50:37Z #8 64.98 Selecting previously unselected package libxcb-shape0:amd64. -2024-03-07T00:50:37Z #8 64.99 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-03-07T00:50:37Z #8 64.99 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-03-07T00:50:37Z #8 65.05 Selecting previously unselected package libxft2:amd64. -2024-03-07T00:50:37Z #8 65.05 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-03-07T00:50:37Z #8 65.06 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-03-07T00:50:37Z #8 65.10 Selecting previously unselected package libxkbfile1:amd64. -2024-03-07T00:50:37Z #8 65.10 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-03-07T00:50:37Z #8 65.10 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-03-07T00:50:37Z #8 65.15 Selecting previously unselected package libxmuu1:amd64. -2024-03-07T00:50:37Z #8 65.15 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-03-07T00:50:37Z #8 65.16 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-03-07T00:50:37Z #8 65.20 Selecting previously unselected package libxv1:amd64. -2024-03-07T00:50:37Z #8 65.20 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-03-07T00:50:37Z #8 65.21 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-03-07T00:50:37Z #8 65.25 Selecting previously unselected package libxxf86dga1:amd64. -2024-03-07T00:50:37Z #8 65.25 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-03-07T00:50:37Z #8 65.26 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-03-07T00:50:37Z #8 65.30 Selecting previously unselected package manpages-dev. -2024-03-07T00:50:37Z #8 65.30 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-03-07T00:50:37Z #8 65.30 Unpacking manpages-dev (5.10-1) ... -2024-03-07T00:50:37Z #8 65.72 Selecting previously unselected package mesa-va-drivers:amd64. -2024-03-07T00:50:37Z #8 65.72 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-03-07T00:50:37Z #8 65.73 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-03-07T00:50:38Z #8 66.16 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-03-07T00:50:38Z #8 66.17 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-03-07T00:50:38Z #8 66.17 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-03-07T00:50:38Z #8 66.63 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-03-07T00:50:38Z #8 66.64 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-03-07T00:50:38Z #8 66.64 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-03-07T00:50:39Z #8 67.34 Selecting previously unselected package patch. -2024-03-07T00:50:39Z #8 67.34 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-03-07T00:50:39Z #8 67.35 Unpacking patch (2.7.6-7) ... -2024-03-07T00:50:39Z #8 67.40 Selecting previously unselected package unzip. -2024-03-07T00:50:39Z #8 67.40 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-03-07T00:50:39Z #8 67.40 Unpacking unzip (6.0-26+deb11u1) ... -2024-03-07T00:50:39Z #8 67.46 Selecting previously unselected package va-driver-all:amd64. -2024-03-07T00:50:39Z #8 67.47 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-03-07T00:50:39Z #8 67.48 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-03-07T00:50:39Z #8 67.51 Selecting previously unselected package vdpau-driver-all:amd64. -2024-03-07T00:50:39Z #8 67.52 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-03-07T00:50:39Z #8 67.52 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-03-07T00:50:39Z #8 67.56 Selecting previously unselected package x11-utils. -2024-03-07T00:50:39Z #8 67.56 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-03-07T00:50:39Z #8 67.57 Unpacking x11-utils (7.7+5) ... -2024-03-07T00:50:39Z #8 67.73 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-03-07T00:50:39Z #8 67.74 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-03-07T00:50:39Z #8 67.75 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-03-07T00:50:39Z #8 67.76 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-03-07T00:50:39Z #8 67.77 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-03-07T00:50:39Z #8 67.78 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-03-07T00:50:39Z #8 67.80 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-03-07T00:50:39Z #8 67.81 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-03-07T00:50:40Z #8 67.82 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-03-07T00:50:40Z #8 67.83 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-03-07T00:50:40Z #8 67.84 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-03-07T00:50:40Z #8 67.85 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-03-07T00:50:40Z #8 67.86 Setting up libshine3:amd64 (3.1.1-2) ... -2024-03-07T00:50:40Z #8 67.87 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-03-07T00:50:40Z #8 67.88 Setting up hicolor-icon-theme (0.17-2) ... -2024-03-07T00:50:40Z #8 67.91 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-03-07T00:50:40Z #8 67.92 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-03-07T00:50:40Z #8 67.93 Setting up libicu67:amd64 (67.1-7) ... -2024-03-07T00:50:40Z #8 67.94 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-03-07T00:50:40Z #8 67.95 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-03-07T00:50:40Z #8 67.97 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-03-07T00:50:40Z #8 67.98 Setting up manpages (5.10-1) ... -2024-03-07T00:50:40Z #8 67.99 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-03-07T00:50:40Z #8 68.00 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-03-07T00:50:40Z #8 68.01 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-03-07T00:50:40Z #8 68.02 Setting up unzip (6.0-26+deb11u1) ... -2024-03-07T00:50:40Z #8 68.03 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-03-07T00:50:40Z #8 68.04 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-03-07T00:50:40Z #8 68.06 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-03-07T00:50:40Z #8 68.07 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-03-07T00:50:40Z #8 68.08 Setting up libsensors-config (1:3.6.0-7) ... -2024-03-07T00:50:40Z #8 68.10 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-03-07T00:50:40Z #8 68.11 Setting up libdeflate0:amd64 (1.7-1) ... -2024-03-07T00:50:40Z #8 68.12 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-03-07T00:50:40Z #8 68.13 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-03-07T00:50:40Z #8 68.15 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-07T00:50:40Z #8 68.15 First installation detected... -2024-03-07T00:50:40Z #8 68.16 Checking NSS setup... -2024-03-07T00:50:40Z #8 68.16 Setting up xkb-data (2.29-2) ... -2024-03-07T00:50:40Z #8 68.17 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-03-07T00:50:40Z #8 68.18 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-03-07T00:50:40Z #8 68.20 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-03-07T00:50:40Z #8 68.21 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-03-07T00:50:40Z #8 68.22 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-03-07T00:50:40Z #8 68.23 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-03-07T00:50:40Z #8 68.24 Setting up libasan6:amd64 (10.2.1-6) ... -2024-03-07T00:50:40Z #8 68.25 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-03-07T00:50:40Z #8 68.27 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-03-07T00:50:40Z #8 68.28 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-03-07T00:50:40Z #8 68.29 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-03-07T00:50:40Z #8 68.58 Setting up libasound2-data (1.2.4-1.1) ... -2024-03-07T00:50:41Z #8 69.37 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-03-07T00:50:42Z #8 70.24 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-03-07T00:50:43Z #8 71.02 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-03-07T00:50:43Z #8 71.03 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-03-07T00:50:43Z #8 71.04 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-03-07T00:50:43Z #8 71.06 Setting up libva2:amd64 (2.10.0-1) ... -2024-03-07T00:50:43Z #8 71.07 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-03-07T00:50:43Z #8 71.08 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-03-07T00:50:43Z #8 71.09 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-03-07T00:50:43Z #8 71.10 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-03-07T00:50:43Z #8 71.11 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-03-07T00:50:43Z #8 71.13 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-03-07T00:50:43Z #8 71.14 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-03-07T00:50:43Z #8 71.15 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-03-07T00:50:43Z #8 71.16 Setting up dbus (1.12.28-0+deb11u1) ... -2024-03-07T00:50:43Z #8 71.32 invoke-rc.d: could not determine current runlevel -2024-03-07T00:50:43Z #8 71.33 invoke-rc.d: policy-rc.d denied execution of start. -2024-03-07T00:50:43Z #8 71.33 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-03-07T00:50:43Z #8 71.34 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-03-07T00:50:43Z #8 71.36 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-03-07T00:50:43Z #8 71.37 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-03-07T00:50:43Z #8 71.38 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-03-07T00:50:43Z #8 71.39 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-03-07T00:50:43Z #8 71.40 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-03-07T00:50:43Z #8 71.42 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-03-07T00:50:43Z #8 71.43 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-03-07T00:50:43Z #8 71.78 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-03-07T00:50:43Z #8 71.78 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-03-07T00:50:43Z #8 71.78 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-03-07T00:50:43Z #8 71.80 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-03-07T00:50:43Z #8 71.81 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-03-07T00:50:44Z #8 71.82 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-03-07T00:50:44Z #8 71.83 Setting up patch (2.7.6-7) ... -2024-03-07T00:50:44Z #8 71.85 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-07T00:50:44Z #8 71.86 Setting up fonts-dejavu-core (2.37-2) ... -2024-03-07T00:50:44Z #8 71.99 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-03-07T00:50:44Z #8 72.00 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-03-07T00:50:44Z #8 72.01 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-03-07T00:50:44Z #8 72.02 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-03-07T00:50:44Z #8 72.04 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-03-07T00:50:44Z #8 72.05 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-03-07T00:50:44Z #8 72.06 Setting up libatk1.0-data (2.36.0-2) ... -2024-03-07T00:50:44Z #8 72.07 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-03-07T00:50:44Z #8 72.09 Setting up alsa-topology-conf (1.2.4-1) ... -2024-03-07T00:50:44Z #8 72.10 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-03-07T00:50:44Z #8 72.11 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-03-07T00:50:44Z #8 72.12 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-03-07T00:50:44Z #8 72.13 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-03-07T00:50:44Z #8 72.15 Setting up libvdpau1:amd64 (1.4-3) ... -2024-03-07T00:50:44Z #8 72.16 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-03-07T00:50:44Z #8 72.17 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-03-07T00:50:44Z #8 72.19 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-03-07T00:50:44Z #8 72.20 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-03-07T00:50:44Z #8 72.21 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-07T00:50:44Z #8 72.49 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-03-07T00:50:44Z #8 72.50 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-03-07T00:50:44Z #8 72.51 Setting up libthai-data (0.1.28-3) ... -2024-03-07T00:50:44Z #8 72.53 Setting up fonts-humor-sans (1.0-4) ... -2024-03-07T00:50:44Z #8 72.54 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-03-07T00:50:44Z #8 72.55 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-03-07T00:50:44Z #8 72.56 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-03-07T00:50:44Z #8 72.57 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-03-07T00:50:44Z #8 72.59 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-03-07T00:50:44Z #8 72.60 Setting up glib-networking-common (2.66.0-2) ... -2024-03-07T00:50:44Z #8 72.61 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-03-07T00:50:44Z #8 72.62 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-03-07T00:50:44Z #8 72.63 Setting up libisl23:amd64 (0.23-1) ... -2024-03-07T00:50:44Z #8 72.65 Setting up libc-dev-bin (2.31-13+deb11u8) ... -2024-03-07T00:50:44Z #8 72.66 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-07T00:50:44Z #8 72.68 Setting up libdrm-common (2.4.104-1) ... -2024-03-07T00:50:44Z #8 72.69 Setting up libelf1:amd64 (0.183-1) ... -2024-03-07T00:50:44Z #8 72.71 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-03-07T00:50:44Z #8 72.72 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-03-07T00:50:44Z #8 72.74 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-03-07T00:50:44Z #8 72.75 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-03-07T00:50:44Z #8 72.76 Setting up libzvbi-common (0.2.35-18) ... -2024-03-07T00:50:44Z #8 72.77 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-03-07T00:50:44Z #8 72.79 Setting up cpp-10 (10.2.1-6) ... -2024-03-07T00:50:45Z #8 72.80 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-03-07T00:50:45Z #8 72.81 Setting up libitm1:amd64 (10.2.1-6) ... -2024-03-07T00:50:45Z #8 72.83 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-03-07T00:50:45Z #8 72.84 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-03-07T00:50:45Z #8 72.85 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-03-07T00:50:45Z #8 72.86 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-03-07T00:50:45Z #8 72.87 Setting up libctf0:amd64 (2.35.2-2) ... -2024-03-07T00:50:45Z #8 72.88 Setting up glib-networking-services (2.66.0-2) ... -2024-03-07T00:50:45Z #8 72.90 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-03-07T00:50:45Z #8 72.91 Setting up manpages-dev (5.10-1) ... -2024-03-07T00:50:45Z #8 72.92 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-03-07T00:50:45Z #8 72.94 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-03-07T00:50:45Z #8 72.95 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-03-07T00:50:45Z #8 72.96 Setting up fontconfig-config (2.13.1-4.2) ... -2024-03-07T00:50:45Z #8 73.38 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-03-07T00:50:45Z #8 73.39 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-03-07T00:50:45Z #8 73.41 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-03-07T00:50:45Z #8 73.42 Setting up libx265-192:amd64 (3.4-2) ... -2024-03-07T00:50:45Z #8 73.43 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-03-07T00:50:45Z #8 73.44 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-03-07T00:50:45Z #8 73.46 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-03-07T00:50:45Z #8 73.47 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-03-07T00:50:45Z #8 73.48 Setting up libthai0:amd64 (0.1.28-3) ... -2024-03-07T00:50:45Z #8 73.50 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-03-07T00:50:45Z #8 73.51 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-03-07T00:50:45Z #8 73.52 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-03-07T00:50:45Z #8 73.53 Setting up shared-mime-info (2.0-1) ... -2024-03-07T00:50:47Z #8 75.74 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-03-07T00:50:47Z #8 75.75 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-03-07T00:50:47Z #8 75.76 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-03-07T00:50:47Z #8 75.78 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-03-07T00:50:47Z #8 75.80 Setting up cpp (4:10.2.1-1) ... -2024-03-07T00:50:47Z #8 75.82 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-03-07T00:50:47Z #8 75.83 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-03-07T00:50:48Z #8 75.84 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-07T00:50:48Z #8 75.88 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-03-07T00:50:48Z #8 75.95 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-03-07T00:50:48Z #8 75.97 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-03-07T00:50:48Z #8 76.18 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-03-07T00:50:49Z #8 77.02 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-03-07T00:50:50Z #8 77.97 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-03-07T00:50:50Z #8 77.98 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-03-07T00:50:50Z #8 77.99 Setting up fontconfig (2.13.1-4.2) ... -2024-03-07T00:50:52Z #8 78.00 Regenerating fonts cache... done. -2024-03-07T00:50:52Z #8 80.03 Setting up libxft2:amd64 (2.3.2-2) ... -2024-03-07T00:50:52Z #8 80.04 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-03-07T00:50:52Z #8 80.05 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-03-07T00:50:52Z #8 80.06 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-03-07T00:50:52Z #8 80.07 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-03-07T00:50:52Z #8 80.08 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-03-07T00:50:52Z #8 80.10 Setting up dconf-service (0.38.0-2) ... -2024-03-07T00:50:52Z #8 80.11 Setting up binutils (2.35.2-2) ... -2024-03-07T00:50:52Z #8 80.12 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-03-07T00:50:52Z #8 80.14 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-07T00:50:52Z #8 80.15 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-03-07T00:50:52Z #8 80.23 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-03-07T00:50:52Z #8 80.24 Setting up libgd3:amd64 (2.3.0-2) ... -2024-03-07T00:50:52Z #8 80.25 Setting up gcc-10 (10.2.1-6) ... -2024-03-07T00:50:52Z #8 80.26 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-03-07T00:50:52Z #8 80.27 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-03-07T00:50:52Z #8 80.29 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-03-07T00:50:52Z #8 80.30 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-03-07T00:50:52Z #8 80.31 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-03-07T00:50:52Z #8 80.32 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-03-07T00:50:52Z #8 80.33 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-03-07T00:50:52Z #8 80.35 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-03-07T00:50:52Z #8 80.36 Setting up libc-devtools (2.31-13+deb11u8) ... -2024-03-07T00:50:52Z #8 80.37 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-03-07T00:50:52Z #8 80.38 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-03-07T00:50:52Z #8 80.39 Setting up libglx0:amd64 (1.3.2-1) ... -2024-03-07T00:50:52Z #8 80.40 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-03-07T00:50:52Z #8 80.41 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-07T00:50:52Z #8 80.42 Setting up gcc (4:10.2.1-1) ... -2024-03-07T00:50:52Z #8 80.45 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-07T00:50:52Z #8 80.46 Setting up libgl1:amd64 (1.3.2-1) ... -2024-03-07T00:50:52Z #8 80.47 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-03-07T00:50:52Z #8 80.48 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-07T00:50:52Z #8 80.50 Setting up x11-utils (7.7+5) ... -2024-03-07T00:50:52Z #8 80.54 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-07T00:50:52Z #8 80.56 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-03-07T00:50:52Z #8 80.57 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-03-07T00:50:52Z #8 80.59 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-03-07T00:50:52Z #8 80.60 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-03-07T00:50:52Z #8 80.62 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-03-07T00:50:52Z #8 80.65 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-03-07T00:50:52Z #8 80.70 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-03-07T00:50:52Z #8 80.71 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-03-07T00:50:52Z #8 80.73 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-03-07T00:50:52Z #8 80.74 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-03-07T00:50:52Z #8 80.75 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-03-07T00:50:52Z #8 80.79 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-03-07T00:50:53Z #8 80.80 Setting up firefox-esr (115.8.0esr-1~deb11u1) ... -2024-03-07T00:50:53Z #8 80.81 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-03-07T00:50:53Z #8 80.81 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-03-07T00:50:53Z #8 80.82 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-03-07T00:50:53Z #8 80.82 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-03-07T00:50:53Z #8 80.83 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-07T00:50:53Z #8 80.86 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-03-07T00:50:58Z #8 DONE 86.0s -2024-03-07T00:50:58Z -2024-03-07T00:50:58Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-03-07T00:51:51Z #9 DONE 53.1s -2024-03-07T00:51:51Z -2024-03-07T00:51:51Z #10 [ 5/10] COPY environment.yml /environment.yml -2024-03-07T00:51:51Z #10 DONE 0.1s -2024-03-07T00:51:51Z -2024-03-07T00:51:51Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-03-07T00:54:23Z #11 152.5 Transaction -2024-03-07T00:54:23Z #11 152.5 -2024-03-07T00:54:23Z #11 152.5 Prefix: /opt/conda/envs/birdy -2024-03-07T00:54:23Z #11 152.5 -2024-03-07T00:54:23Z #11 152.5 Updating specs: -2024-03-07T00:54:23Z #11 152.5 -2024-03-07T00:54:23Z #11 152.5 - xclim -2024-03-07T00:54:23Z #11 152.5 - ravenpy -2024-03-07T00:54:23Z #11 152.5 - python=3.10 -2024-03-07T00:54:23Z #11 152.5 -2024-03-07T00:54:23Z #11 152.5 -2024-03-07T00:54:23Z #11 152.5 Package Version Build Channel Size -2024-03-07T00:54:23Z #11 152.5 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-07T00:54:23Z #11 152.5 Install: -2024-03-07T00:54:23Z #11 152.5 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-07T00:54:23Z #11 152.5 -2024-03-07T00:54:23Z #11 152.5 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-03-07T00:54:23Z #11 152.5 + python_abi 3.10 4_cp310 conda-forge 6kB -2024-03-07T00:54:23Z #11 152.5 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB -2024-03-07T00:54:23Z #11 152.5 + ca-certificates 2024.2.2 hbcca054_0 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + libboost-headers 1.84.0 ha770c72_1 conda-forge 14MB -2024-03-07T00:54:23Z #11 152.5 + mpi 1.0 openmpi conda-forge 4kB -2024-03-07T00:54:23Z #11 152.5 + libgomp 13.2.0 h807b86a_5 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-03-07T00:54:23Z #11 152.5 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-03-07T00:54:23Z #11 152.5 + libnuma 2.0.16 h0b41bf4_1 conda-forge 41kB -2024-03-07T00:54:23Z #11 152.5 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-03-07T00:54:23Z #11 152.5 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-03-07T00:54:23Z #11 152.5 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-03-07T00:54:23Z #11 152.5 + lzo 2.10 h516909a_1000 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-03-07T00:54:23Z #11 152.5 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-03-07T00:54:23Z #11 152.5 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-03-07T00:54:23Z #11 152.5 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-03-07T00:54:23Z #11 152.5 + c-ares 1.27.0 hd590300_0 conda-forge 164kB -2024-03-07T00:54:23Z #11 152.5 + libev 4.33 hd590300_2 conda-forge 113kB -2024-03-07T00:54:23Z #11 152.5 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-03-07T00:54:23Z #11 152.5 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-03-07T00:54:23Z #11 152.5 + aws-c-common 0.9.13 hd590300_0 conda-forge 226kB -2024-03-07T00:54:23Z #11 152.5 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-03-07T00:54:23Z #11 152.5 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB -2024-03-07T00:54:23Z #11 152.5 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-03-07T00:54:23Z #11 152.5 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-03-07T00:54:23Z #11 152.5 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-03-07T00:54:23Z #11 152.5 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-03-07T00:54:23Z #11 152.5 + libexpat 2.6.1 h59595ed_0 conda-forge 74kB -2024-03-07T00:54:23Z #11 152.5 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-03-07T00:54:23Z #11 152.5 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB -2024-03-07T00:54:23Z #11 152.5 + libaec 1.1.2 h59595ed_1 conda-forge 35kB -2024-03-07T00:54:23Z #11 152.5 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB -2024-03-07T00:54:23Z #11 152.5 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-03-07T00:54:23Z #11 152.5 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-03-07T00:54:23Z #11 152.5 + gettext 0.21.1 h27087fc_0 conda-forge 4MB -2024-03-07T00:54:23Z #11 152.5 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-03-07T00:54:23Z #11 152.5 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB -2024-03-07T00:54:23Z #11 152.5 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-03-07T00:54:23Z #11 152.5 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-03-07T00:54:23Z #11 152.5 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-03-07T00:54:23Z #11 152.5 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB -2024-03-07T00:54:23Z #11 152.5 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-03-07T00:54:23Z #11 152.5 + snappy 1.1.10 h9fff704_0 conda-forge 39kB -2024-03-07T00:54:23Z #11 152.5 + icu 73.2 h59595ed_0 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB -2024-03-07T00:54:23Z #11 152.5 + libdeflate 1.19 hd590300_0 conda-forge 67kB -2024-03-07T00:54:23Z #11 152.5 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-03-07T00:54:23Z #11 152.5 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-03-07T00:54:23Z #11 152.5 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-03-07T00:54:23Z #11 152.5 + openssl 3.2.1 hd590300_0 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + ncurses 6.4 h59595ed_2 conda-forge 884kB -2024-03-07T00:54:23Z #11 152.5 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB -2024-03-07T00:54:23Z #11 152.5 + libnsl 2.0.1 hd590300_0 conda-forge 33kB -2024-03-07T00:54:23Z #11 152.5 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-03-07T00:54:23Z #11 152.5 + rdma-core 50.0 hd3aeb46_0 conda-forge 5MB -2024-03-07T00:54:23Z #11 152.5 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-03-07T00:54:23Z #11 152.5 + aws-c-compression 0.2.18 hecc5fa9_1 conda-forge 19kB -2024-03-07T00:54:23Z #11 152.5 + aws-c-sdkutils 0.1.15 hecc5fa9_1 conda-forge 55kB -2024-03-07T00:54:23Z #11 152.5 + aws-checksums 0.1.18 hecc5fa9_1 conda-forge 50kB -2024-03-07T00:54:23Z #11 152.5 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-03-07T00:54:23Z #11 152.5 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-03-07T00:54:23Z #11 152.5 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-03-07T00:54:23Z #11 152.5 + expat 2.6.1 h59595ed_0 conda-forge 137kB -2024-03-07T00:54:23Z #11 152.5 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB -2024-03-07T00:54:23Z #11 152.5 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-03-07T00:54:23Z #11 152.5 + libprotobuf 4.25.2 h08a7969_1 conda-forge 3MB -2024-03-07T00:54:23Z #11 152.5 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-03-07T00:54:23Z #11 152.5 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-03-07T00:54:23Z #11 152.5 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-03-07T00:54:23Z #11 152.5 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-03-07T00:54:23Z #11 152.5 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB -2024-03-07T00:54:23Z #11 152.5 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2024-03-07T00:54:23Z #11 152.5 + libsqlite 3.45.1 h2797004_0 conda-forge 859kB -2024-03-07T00:54:23Z #11 152.5 + pcre2 10.42 hcad00b1_0 conda-forge 1MB -2024-03-07T00:54:23Z #11 152.5 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-03-07T00:54:23Z #11 152.5 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-03-07T00:54:23Z #11 152.5 + s2n 1.4.5 h06160fa_0 conda-forge 338kB -2024-03-07T00:54:23Z #11 152.5 + aws-c-cal 0.6.10 hb29e0c7_1 conda-forge 55kB -2024-03-07T00:54:23Z #11 152.5 + libnghttp2 1.58.0 h47da74e_1 conda-forge 632kB -2024-03-07T00:54:23Z #11 152.5 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-03-07T00:54:23Z #11 152.5 + libssh2 1.11.0 h0841786_0 conda-forge 271kB -2024-03-07T00:54:23Z #11 152.5 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-03-07T00:54:23Z #11 152.5 + readline 8.2 h8228510_1 conda-forge 281kB -2024-03-07T00:54:23Z #11 152.5 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-03-07T00:54:23Z #11 152.5 + libxml2 2.12.5 h232c23b_0 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + ucx 1.15.0 h75e419f_3 conda-forge 15MB -2024-03-07T00:54:23Z #11 152.5 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-03-07T00:54:23Z #11 152.5 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-03-07T00:54:23Z #11 152.5 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB -2024-03-07T00:54:23Z #11 152.5 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB -2024-03-07T00:54:23Z #11 152.5 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-03-07T00:54:23Z #11 152.5 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB -2024-03-07T00:54:23Z #11 152.5 + orc 1.9.2 h00e871a_2 conda-forge 1MB -2024-03-07T00:54:23Z #11 152.5 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-03-07T00:54:23Z #11 152.5 + libtiff 4.6.0 ha9c0a0a_2 conda-forge 283kB -2024-03-07T00:54:23Z #11 152.5 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB -2024-03-07T00:54:23Z #11 152.5 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-03-07T00:54:23Z #11 152.5 + libglib 2.78.4 h783c2da_0 conda-forge 3MB -2024-03-07T00:54:23Z #11 152.5 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-03-07T00:54:23Z #11 152.5 + aws-c-io 0.14.5 h50678d4_1 conda-forge 157kB -2024-03-07T00:54:23Z #11 152.5 + krb5 1.21.2 h659d440_0 conda-forge 1MB -2024-03-07T00:54:23Z #11 152.5 + sqlite 3.45.1 h2c6b66d_0 conda-forge 848kB -2024-03-07T00:54:23Z #11 152.5 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-03-07T00:54:23Z #11 152.5 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-03-07T00:54:23Z #11 152.5 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-03-07T00:54:23Z #11 152.5 + libgrpc 1.61.1 h42401df_1 conda-forge 7MB -2024-03-07T00:54:23Z #11 152.5 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-03-07T00:54:23Z #11 152.5 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-07T00:54:23Z #11 152.5 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-03-07T00:54:23Z #11 152.5 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-03-07T00:54:23Z #11 152.5 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-03-07T00:54:23Z #11 152.5 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-03-07T00:54:23Z #11 152.5 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-03-07T00:54:23Z #11 152.5 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-03-07T00:54:23Z #11 152.5 + aws-c-http 0.8.1 h5d7533a_5 conda-forge 195kB -2024-03-07T00:54:23Z #11 152.5 + aws-c-event-stream 0.4.2 hf9b2f7b_4 conda-forge 54kB -2024-03-07T00:54:23Z #11 152.5 + libpq 16.2 h33b98f1_0 conda-forge 2MB -2024-03-07T00:54:23Z #11 152.5 + libcurl 8.5.0 hca28451_0 conda-forge 389kB -2024-03-07T00:54:23Z #11 152.5 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-07T00:54:23Z #11 152.5 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-07T00:54:23Z #11 152.5 + aws-c-mqtt 0.10.2 hf479d2b_4 conda-forge 164kB -2024-03-07T00:54:23Z #11 152.5 + aws-c-auth 0.7.16 h79b3bcb_6 conda-forge 103kB -2024-03-07T00:54:23Z #11 152.5 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB -2024-03-07T00:54:23Z #11 152.5 + libgoogle-cloud 2.21.0 h72bcb37_2 conda-forge 1MB -2024-03-07T00:54:23Z #11 152.5 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB -2024-03-07T00:54:23Z #11 152.5 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-03-07T00:54:23Z #11 152.5 + proj 9.3.1 h1d62c97_0 conda-forge 3MB -2024-03-07T00:54:23Z #11 152.5 + cfitsio 4.3.1 hbdc6101_0 conda-forge 875kB -2024-03-07T00:54:23Z #11 152.5 + aws-c-s3 0.5.2 h4ad9680_0 conda-forge 105kB -2024-03-07T00:54:23Z #11 152.5 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB -2024-03-07T00:54:23Z #11 152.5 + libgoogle-cloud-storage 2.21.0 hc7a4891_2 conda-forge 750kB -2024-03-07T00:54:23Z #11 152.5 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-03-07T00:54:23Z #11 152.5 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-03-07T00:54:23Z #11 152.5 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB -2024-03-07T00:54:23Z #11 152.5 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB -2024-03-07T00:54:23Z #11 152.5 + aws-crt-cpp 0.26.2 h19f5d62_7 conda-forge 334kB -2024-03-07T00:54:23Z #11 152.5 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB -2024-03-07T00:54:23Z #11 152.5 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-03-07T00:54:23Z #11 152.5 + aws-sdk-cpp 1.11.267 h5606698_1 conda-forge 4MB -2024-03-07T00:54:23Z #11 152.5 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB -2024-03-07T00:54:23Z #11 152.5 + libarrow 15.0.0 h5001e6d_7_cpu conda-forge 8MB -2024-03-07T00:54:23Z #11 152.5 + tiledb 2.20.1 h6997b71_2 conda-forge 5MB -2024-03-07T00:54:23Z #11 152.5 + libparquet 15.0.0 h352af49_7_cpu conda-forge 1MB -2024-03-07T00:54:23Z #11 152.5 + libarrow-gandiva 15.0.0 h3f306ff_7_cpu conda-forge 896kB -2024-03-07T00:54:23Z #11 152.5 + libarrow-flight 15.0.0 hf334d8d_7_cpu conda-forge 505kB -2024-03-07T00:54:23Z #11 152.5 + libarrow-acero 15.0.0 h59595ed_7_cpu conda-forge 598kB -2024-03-07T00:54:23Z #11 152.5 + libarrow-flight-sql 15.0.0 h469e5c9_7_cpu conda-forge 195kB -2024-03-07T00:54:23Z #11 152.5 + libarrow-dataset 15.0.0 h59595ed_7_cpu conda-forge 585kB -2024-03-07T00:54:23Z #11 152.5 + libarrow-substrait 15.0.0 h469e5c9_7_cpu conda-forge 519kB -2024-03-07T00:54:23Z #11 152.5 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-03-07T00:54:24Z #11 152.5 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-03-07T00:54:24Z #11 152.5 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-03-07T00:54:24Z #11 152.5 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-03-07T00:54:24Z #11 152.5 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-03-07T00:54:24Z #11 152.5 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB -2024-03-07T00:54:24Z #11 152.5 + fonts-conda-forge 1 0 conda-forge 4kB -2024-03-07T00:54:24Z #11 152.5 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-03-07T00:54:24Z #11 152.5 + postgresql 16.2 h7387d8b_0 conda-forge 5MB -2024-03-07T00:54:24Z #11 152.5 + python 3.10.13 hd12c33a_1_cpython conda-forge 26MB -2024-03-07T00:54:24Z #11 152.5 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-03-07T00:54:24Z #11 152.5 + poppler 24.02.0 h590f24d_0 conda-forge 2MB -2024-03-07T00:54:24Z #11 152.5 + libgdal 3.8.4 h9323651_0 conda-forge 11MB -2024-03-07T00:54:24Z #11 152.5 + wheel 0.42.0 pyhd8ed1ab_0 conda-forge 58kB -2024-03-07T00:54:24Z #11 152.5 + setuptools 69.1.1 pyhd8ed1ab_0 conda-forge 470kB -2024-03-07T00:54:24Z #11 152.5 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-03-07T00:54:24Z #11 152.5 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB -2024-03-07T00:54:24Z #11 152.5 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB -2024-03-07T00:54:24Z #11 152.5 + appdirs 1.4.4 pyh9f0ad1d_0 conda-forge 13kB -2024-03-07T00:54:24Z #11 152.5 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-03-07T00:54:24Z #11 152.5 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-03-07T00:54:24Z #11 152.5 + threadpoolctl 3.3.0 pyhc1e730c_0 conda-forge 23kB -2024-03-07T00:54:24Z #11 152.5 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB -2024-03-07T00:54:24Z #11 152.5 + fsspec 2024.2.0 pyhca7485f_0 conda-forge 129kB -2024-03-07T00:54:24Z #11 152.5 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-03-07T00:54:24Z #11 152.5 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-03-07T00:54:24Z #11 152.5 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-03-07T00:54:24Z #11 152.5 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-03-07T00:54:24Z #11 152.5 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB -2024-03-07T00:54:24Z #11 152.5 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-03-07T00:54:24Z #11 152.5 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-03-07T00:54:24Z #11 152.5 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB -2024-03-07T00:54:24Z #11 152.5 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-03-07T00:54:24Z #11 152.5 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-03-07T00:54:24Z #11 152.5 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-03-07T00:54:24Z #11 152.5 + boltons 23.1.1 pyhd8ed1ab_0 conda-forge 304kB -2024-03-07T00:54:24Z #11 152.5 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-03-07T00:54:24Z #11 152.5 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-03-07T00:54:24Z #11 152.5 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-03-07T00:54:24Z #11 152.5 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-03-07T00:54:24Z #11 152.5 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-03-07T00:54:24Z #11 152.5 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-03-07T00:54:24Z #11 152.5 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB -2024-03-07T00:54:24Z #11 152.5 + packaging 23.2 pyhd8ed1ab_0 conda-forge 49kB -2024-03-07T00:54:24Z #11 152.5 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-03-07T00:54:24Z #11 152.5 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-03-07T00:54:24Z #11 152.5 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-03-07T00:54:24Z #11 152.5 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-03-07T00:54:24Z #11 152.5 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-03-07T00:54:24Z #11 152.5 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-03-07T00:54:24Z #11 152.5 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-03-07T00:54:24Z #11 152.5 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-03-07T00:54:24Z #11 152.5 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-03-07T00:54:24Z #11 152.5 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-03-07T00:54:24Z #11 152.5 + pytools 2023.1.1 pyhd8ed1ab_0 conda-forge 71kB -2024-03-07T00:54:24Z #11 152.5 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB -2024-03-07T00:54:24Z #11 152.5 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-03-07T00:54:24Z #11 152.5 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-03-07T00:54:24Z #11 152.5 + importlib-metadata 7.0.1 pyha770c72_0 conda-forge 26kB -2024-03-07T00:54:24Z #11 152.5 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-03-07T00:54:24Z #11 152.5 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-03-07T00:54:24Z #11 152.5 + importlib_metadata 7.0.1 hd8ed1ab_0 conda-forge 10kB -2024-03-07T00:54:24Z #11 152.5 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB -2024-03-07T00:54:24Z #11 152.5 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB -2024-03-07T00:54:24Z #11 152.5 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB -2024-03-07T00:54:24Z #11 152.5 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB -2024-03-07T00:54:24Z #11 152.5 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB -2024-03-07T00:54:24Z #11 152.5 + tornado 6.4 py310h2372a71_0 conda-forge 651kB -2024-03-07T00:54:24Z #11 152.5 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB -2024-03-07T00:54:24Z #11 152.5 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB -2024-03-07T00:54:24Z #11 152.5 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB -2024-03-07T00:54:24Z #11 152.5 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB -2024-03-07T00:54:24Z #11 152.5 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB -2024-03-07T00:54:24Z #11 152.5 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB -2024-03-07T00:54:24Z #11 152.5 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB -2024-03-07T00:54:24Z #11 152.5 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB -2024-03-07T00:54:24Z #11 152.5 + raven-hydro 0.2.3 py310h3ce4ad4_0 conda-forge 787kB -2024-03-07T00:54:24Z #11 152.5 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB -2024-03-07T00:54:24Z #11 152.5 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB -2024-03-07T00:54:24Z #11 152.5 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB -2024-03-07T00:54:24Z #11 152.5 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB -2024-03-07T00:54:24Z #11 152.5 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB -2024-03-07T00:54:24Z #11 152.5 + pydantic 1.10.13 py310h2372a71_1 conda-forge 2MB -2024-03-07T00:54:24Z #11 152.5 + fonttools 4.49.0 py310h2372a71_0 conda-forge 2MB -2024-03-07T00:54:24Z #11 152.5 + pyarrow 15.0.0 py310hf9e7431_7_cpu conda-forge 4MB -2024-03-07T00:54:24Z #11 152.5 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB -2024-03-07T00:54:24Z #11 152.5 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB -2024-03-07T00:54:24Z #11 152.5 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB -2024-03-07T00:54:24Z #11 152.5 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB -2024-03-07T00:54:24Z #11 152.5 + gdal 3.8.4 py310he073c5f_0 conda-forge 1MB -2024-03-07T00:54:24Z #11 152.5 + numba 0.59.0 py310h7dc5dd1_1 conda-forge 4MB -2024-03-07T00:54:24Z #11 152.5 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB -2024-03-07T00:54:24Z #11 152.5 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB -2024-03-07T00:54:24Z #11 152.5 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB -2024-03-07T00:54:24Z #11 152.5 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB -2024-03-07T00:54:24Z #11 152.5 + fiona 1.9.5 py310h0a1e91f_3 conda-forge 958kB -2024-03-07T00:54:24Z #11 152.5 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB -2024-03-07T00:54:24Z #11 152.5 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB -2024-03-07T00:54:24Z #11 152.5 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-03-07T00:54:24Z #11 152.5 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-03-07T00:54:24Z #11 152.5 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB -2024-03-07T00:54:24Z #11 152.5 + dask-core 2024.2.1 pyhd8ed1ab_0 conda-forge 880kB -2024-03-07T00:54:24Z #11 152.5 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB -2024-03-07T00:54:24Z #11 152.5 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-03-07T00:54:24Z #11 152.5 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-03-07T00:54:24Z #11 152.5 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-03-07T00:54:24Z #11 152.5 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-03-07T00:54:24Z #11 152.5 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-03-07T00:54:24Z #11 152.5 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-03-07T00:54:24Z #11 152.5 + properscoring 0.1 py_0 conda-forge 22kB -2024-03-07T00:54:24Z #11 152.5 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB -2024-03-07T00:54:24Z #11 152.5 + xarray 2024.2.0 pyhd8ed1ab_0 conda-forge 742kB -2024-03-07T00:54:24Z #11 152.5 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-03-07T00:54:24Z #11 152.5 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-03-07T00:54:24Z #11 152.5 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-03-07T00:54:24Z #11 152.5 + bokeh 3.3.4 pyhd8ed1ab_0 conda-forge 5MB -2024-03-07T00:54:24Z #11 152.5 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB -2024-03-07T00:54:24Z #11 152.5 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-03-07T00:54:24Z #11 152.5 + distributed 2024.2.1 pyhd8ed1ab_0 conda-forge 794kB -2024-03-07T00:54:24Z #11 152.5 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-03-07T00:54:24Z #11 152.5 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-03-07T00:54:24Z #11 152.5 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-03-07T00:54:24Z #11 152.5 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-03-07T00:54:24Z #11 152.5 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-03-07T00:54:24Z #11 152.5 + dask 2024.2.1 pyhd8ed1ab_0 conda-forge 7kB -2024-03-07T00:54:24Z #11 152.5 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB -2024-03-07T00:54:24Z #11 152.5 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB -2024-03-07T00:54:24Z #11 152.5 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-03-07T00:54:24Z #11 152.5 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-03-07T00:54:24Z #11 152.5 + xskillscore 0.0.24 pyhd8ed1ab_0 conda-forge 59kB -2024-03-07T00:54:24Z #11 152.5 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB -2024-03-07T00:54:24Z #11 152.5 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB -2024-03-07T00:54:24Z #11 152.5 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-03-07T00:54:24Z #11 152.5 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB -2024-03-07T00:54:24Z #11 152.5 + rioxarray 0.15.1 pyhd8ed1ab_0 conda-forge 48kB -2024-03-07T00:54:24Z #11 152.5 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-03-07T00:54:24Z #11 152.5 + ravenpy 0.12.2 py310hff52083_0 conda-forge 6MB -2024-03-07T00:54:24Z #11 152.5 -2024-03-07T00:54:24Z #11 152.5 Summary: -2024-03-07T00:54:24Z #11 152.5 -2024-03-07T00:54:24Z #11 152.5 Install: 293 packages -2024-03-07T00:54:24Z #11 152.5 -2024-03-07T00:54:24Z #11 152.5 Total download: 451MB -2024-03-07T00:54:24Z #11 152.5 -2024-03-07T00:54:24Z #11 152.5 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-07T00:54:24Z #11 152.5 -2024-03-07T00:54:24Z #11 152.5 -2024-03-07T00:55:58Z #11 247.4 -2024-03-07T00:55:58Z #11 247.4 Looking for: ['xclim', 'ravenpy', 'python=3.10'] -2024-03-07T00:55:58Z #11 247.4 -2024-03-07T00:55:58Z #11 247.4 -2024-03-07T00:55:58Z #11 247.4 Downloading and Extracting Packages: ...working... done -2024-03-07T00:56:02Z #11 247.4 Preparing transaction: ...working... done -2024-03-07T00:56:16Z #11 251.2 Verifying transaction: ...working... done -2024-03-07T00:56:47Z #11 265.1 Executing transaction: ...working... -2024-03-07T00:56:47Z #11 295.9 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-03-07T00:56:47Z #11 295.9 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-03-07T00:56:47Z #11 295.9 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-03-07T00:56:47Z #11 295.9 mpiexec --mca opal_cuda_support 1 ... -2024-03-07T00:56:47Z #11 295.9 -2024-03-07T00:56:47Z #11 295.9 In addition, the UCX support is also built but disabled by default. -2024-03-07T00:56:47Z #11 295.9 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-03-07T00:56:47Z #11 295.9 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-03-07T00:56:47Z #11 295.9 Equivalently, you can set the MCA parameters in the command line: -2024-03-07T00:56:47Z #11 295.9 mpiexec --mca pml ucx --mca osc ucx ... -2024-03-07T00:56:47Z #11 295.9 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-03-07T00:56:47Z #11 295.9 Please consult UCX's documentation for detail. -2024-03-07T00:56:47Z #11 295.9 -2024-03-07T00:56:47Z #11 295.9 -2024-03-07T00:56:47Z #11 295.9 done -2024-03-07T00:56:47Z #11 296.1 -2024-03-07T00:56:47Z #11 296.1 To activate this environment, use -2024-03-07T00:56:47Z #11 296.1 -2024-03-07T00:56:47Z #11 296.1 $ mamba activate birdy -2024-03-07T00:56:47Z #11 296.1 -2024-03-07T00:56:47Z #11 296.1 To deactivate an active environment, use -2024-03-07T00:56:47Z #11 296.1 -2024-03-07T00:56:47Z #11 296.1 $ mamba deactivate -2024-03-07T00:56:47Z #11 296.1 -2024-03-07T00:56:50Z #11 299.5 Channels: -2024-03-07T00:56:50Z #11 299.5 - conda-forge -2024-03-07T00:56:50Z #11 299.5 - cdat -2024-03-07T00:56:50Z #11 299.5 - bokeh -2024-03-07T00:56:50Z #11 299.5 - plotly -2024-03-07T00:56:50Z #11 299.5 - pyviz/label/dev -2024-03-07T00:56:50Z #11 299.5 - defaults -2024-03-07T00:56:50Z #11 299.5 Platform: linux-64 -2024-03-07T00:57:27Z #11 299.5 Collecting package metadata (repodata.json): ...working... done -2024-03-07T00:58:29Z #11 336.1 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:29Z #11 397.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.1 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:58:30Z #11 399.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:22Z #11 451.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:23Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:24Z #11 452.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:25Z #11 453.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T00:59:26Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-07T01:00:57Z #11 545.9 done -2024-03-07T01:02:51Z #11 660.2 -2024-03-07T01:02:51Z #11 660.2 Downloading and Extracting Packages: ...working... done -2024-03-07T01:03:00Z #11 660.2 Preparing transaction: ...working... done -2024-03-07T01:03:32Z #11 669.6 Verifying transaction: ...working... done -2024-03-07T01:04:27Z #11 701.0 Executing transaction: ...working... -2024-03-07T01:04:27Z #11 756.1 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-03-07T01:04:27Z #11 756.1 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-03-07T01:04:27Z #11 756.1 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-03-07T01:04:27Z #11 756.1 mpiexec --mca opal_cuda_support 1 ... -2024-03-07T01:04:27Z #11 756.1 -2024-03-07T01:04:27Z #11 756.1 In addition, the UCX support is also built but disabled by default. -2024-03-07T01:04:27Z #11 756.1 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-03-07T01:04:27Z #11 756.1 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-03-07T01:04:27Z #11 756.1 Equivalently, you can set the MCA parameters in the command line: -2024-03-07T01:04:27Z #11 756.1 mpiexec --mca pml ucx --mca osc ucx ... -2024-03-07T01:04:27Z #11 756.1 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-03-07T01:04:27Z #11 756.1 Please consult UCX's documentation for detail. -2024-03-07T01:04:27Z #11 756.1 -2024-03-07T01:04:27Z #11 756.1 -2024-03-07T01:04:27Z #11 756.1 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-03-07T01:04:27Z #11 756.1 given by the platformdirs library. To remove this warning and -2024-03-07T01:04:27Z #11 756.1 see the appropriate new directories, set the environment variable -2024-03-07T01:04:27Z #11 756.1 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-03-07T01:04:27Z #11 756.1 The use of platformdirs will be the default in `jupyter_core` v6 -2024-03-07T01:04:27Z #11 756.1 from . import paths -2024-03-07T01:04:27Z #11 756.1 Enabling: jupyterlab_git -2024-03-07T01:04:27Z #11 756.1 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-07T01:04:27Z #11 756.1 - Validating... -2024-03-07T01:04:27Z #11 756.1 jupyterlab_git OK -2024-03-07T01:04:27Z #11 756.1 -2024-03-07T01:04:27Z #11 756.1 done -2024-03-07T01:05:12Z #11 763.3 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-03-07T01:05:12Z #11 801.3 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.ve_22l67.requirements.txt', '--exists-action=b'] -2024-03-07T01:05:12Z #11 801.3 Pip subprocess output: -2024-03-07T01:05:12Z #11 801.3 Collecting xncml (from -r /condaenv.ve_22l67.requirements.txt (line 1)) -2024-03-07T01:05:12Z #11 801.3 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting hsclient (from -r /condaenv.ve_22l67.requirements.txt (line 2)) -2024-03-07T01:05:12Z #11 801.3 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting fstd2nc (from -r /condaenv.ve_22l67.requirements.txt (line 3)) -2024-03-07T01:05:12Z #11 801.3 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 7.6 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Installing build dependencies: started -2024-03-07T01:05:12Z #11 801.3 Installing build dependencies: finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Getting requirements to build wheel: started -2024-03-07T01:05:12Z #11 801.3 Getting requirements to build wheel: finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Installing backend dependencies: started -2024-03-07T01:05:12Z #11 801.3 Installing backend dependencies: finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Preparing metadata (pyproject.toml): started -2024-03-07T01:05:12Z #11 801.3 Preparing metadata (pyproject.toml): finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Collecting figanos (from -r /condaenv.ve_22l67.requirements.txt (line 4)) -2024-03-07T01:05:12Z #11 801.3 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting pixiedust (from -r /condaenv.ve_22l67.requirements.txt (line 5)) -2024-03-07T01:05:12Z #11 801.3 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 24.1 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): started -2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Collecting ipython_blocking (from -r /condaenv.ve_22l67.requirements.txt (line 6)) -2024-03-07T01:05:12Z #11 801.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting jupyternotify (from -r /condaenv.ve_22l67.requirements.txt (line 7)) -2024-03-07T01:05:12Z #11 801.3 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): started -2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Collecting jupyterlab-logout (from -r /condaenv.ve_22l67.requirements.txt (line 8)) -2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.ve_22l67.requirements.txt (line 9)) -2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting pytest-tornasync (from -r /condaenv.ve_22l67.requirements.txt (line 10)) -2024-03-07T01:05:12Z #11 801.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting xmltodict (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) -2024-03-07T01:05:12Z #11 801.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting xsdata (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) -2024-03-07T01:05:12Z #11 801.3 Downloading xsdata-24.2.1-py3-none-any.whl.metadata (6.1 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (2023.8.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (1.6.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (1.6.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (2024.2.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (5.9.8) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (69.1.1) -2024-03-07T01:05:12Z #11 801.3 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) -2024-03-07T01:05:12Z #11 801.3 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2.31.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (1.3.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.ve_22l67.requirements.txt (line 3)) (1.24.4) -2024-03-07T01:05:12Z #11 801.3 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.ve_22l67.requirements.txt (line 3)) -2024-03-07T01:05:12Z #11 801.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-03-07T01:05:12Z #11 801.3 Collecting progress (from fstd2nc->-r /condaenv.ve_22l67.requirements.txt (line 3)) -2024-03-07T01:05:12Z #11 801.3 Downloading progress-1.6.tar.gz (7.8 kB) -2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): started -2024-03-07T01:05:12Z #11 801.3 Preparing metadata (setup.py): finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.22.0) -2024-03-07T01:05:12Z #11 801.3 Collecting cairosvg (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) -2024-03-07T01:05:12Z #11 801.3 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.14.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.8.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.1.4) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (4.2.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (6.0.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.13.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.22.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.47.0) -2024-03-07T01:05:12Z #11 801.3 Collecting geojson (from pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) -2024-03-07T01:05:12Z #11 801.3 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting astunparse (from pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) -2024-03-07T01:05:12Z #11 801.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) (3.5.2) -2024-03-07T01:05:12Z #11 801.3 Collecting colour (from pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) -2024-03-07T01:05:12Z #11 801.3 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (8.22.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (8.1.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.7.4) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (1.0.0) -2024-03-07T01:05:12Z #11 801.3 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) -2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab-4.1.3-py3-none-any.whl.metadata (15 kB) -2024-03-07T01:05:12Z #11 801.3 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-03-07T01:05:12Z #11 801.3 Collecting jupyterlab-logout (from -r /condaenv.ve_22l67.requirements.txt (line 8)) -2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.6.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (3.6.7) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (23.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (6.4) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (5.7.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.25.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.13.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.2.4) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.8.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.0.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (6.5.6) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (3.1.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.0.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.ve_22l67.requirements.txt (line 10)) (8.0.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.ve_22l67.requirements.txt (line 3)) (2024.1) -2024-03-07T01:05:12Z #11 801.3 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) -2024-03-07T01:05:12Z #11 801.3 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2.6.3) -2024-03-07T01:05:12Z #11 801.3 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) -2024-03-07T01:05:12Z #11 801.3 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (0.6.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2.16.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (4.10.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.ve_22l67.requirements.txt (line 10)) (2.0.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pluggy<2.0,>=1.3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.ve_22l67.requirements.txt (line 10)) (1.4.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.ve_22l67.requirements.txt (line 10)) (1.2.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (23.1.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.3.8) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.9.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (8.1.7) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.0.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.0.6) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.59.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.23) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.4.1.post1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.12.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.14.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (3.0.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (2024.2.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (1.4.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (0.12.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (7.0.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.9.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2024.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) (0.42.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.ve_22l67.requirements.txt (line 5)) (1.16.0) -2024-03-07T01:05:12Z #11 801.3 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) -2024-03-07T01:05:12Z #11 801.3 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) -2024-03-07T01:05:12Z #11 801.3 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) -2024-03-07T01:05:12Z #11 801.3 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.7.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (9.4.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.2.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.0.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.3.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.5.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.2.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.12.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (4.49.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.4.5) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.1.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.9.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (5.1.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.19.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.1.6) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (3.0.42) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (2.17.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.6.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (5.14.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (4.9.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.2.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (4.0.10) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (3.0.10) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (5.5.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (6.6.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (7.16.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (6.29.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (7.4.9) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (5.9.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (3.3.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (3.6) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2.0.7) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (2024.2.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) (3.2.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.2.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.34.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2023.8.12) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (23.2.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.1.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.7.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (4.0.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (3.17.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.8.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.1.5) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.4) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (1.6.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (24.0.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (4.3.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (23.1.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.9.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.5.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (7.7.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.20.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.8.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.18.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.7.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.9.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.8.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.5.9) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.14.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.9.22) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (4.21.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (4.12.3) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (6.1.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (0.3.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (3.0.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (1.5.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (2.19.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.2.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.2.4) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.ve_22l67.requirements.txt (line 1)) (1.0.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.7.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.2.13) -2024-03-07T01:05:12Z #11 801.3 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) -2024-03-07T01:05:12Z #11 801.3 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.3.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (3.3.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (1.16.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.5.1) -2024-03-07T01:05:12Z #11 801.3 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.ve_22l67.requirements.txt (line 2)) -2024-03-07T01:05:12Z #11 801.3 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (1.8.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.42.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (2.4.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (2.0.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (2.4.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.ve_22l67.requirements.txt (line 6)) (0.2.2) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (0.5.6) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.3.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.ve_22l67.requirements.txt (line 4)) (2.21) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2023.12.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.33.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.18.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.0.7) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.1.4) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.1.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (22.1.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (0.19.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (21.2.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.ve_22l67.requirements.txt (line 7)) (2.5) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.5.1) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (20.11.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.4) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.3.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.13) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (1.3.0) -2024-03-07T01:05:12Z #11 801.3 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.ve_22l67.requirements.txt (line 8)) (2.8.19.20240106) -2024-03-07T01:05:12Z #11 801.3 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 42.2 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 9.9 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 33.4 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 61.6 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 6.0 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading xsdata-24.2.1-py3-none-any.whl (219 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 219.6/219.6 kB 26.6 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 23.1 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 9.4 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-03-07T01:05:12Z #11 801.3 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 28.3 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-03-07T01:05:12Z #11 801.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.4 MB/s eta 0:00:00 -2024-03-07T01:05:12Z #11 801.3 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress -2024-03-07T01:05:12Z #11 801.3 Building wheel for fstd2nc (pyproject.toml): started -2024-03-07T01:05:12Z #11 801.3 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=6f912ba4da579a3f681252356974153a1cec307ccb4506c70bc610ee3ef6803d -2024-03-07T01:05:12Z #11 801.3 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a -2024-03-07T01:05:12Z #11 801.3 Building wheel for pixiedust (setup.py): started -2024-03-07T01:05:12Z #11 801.3 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=2ad6a784bc0de14611dbf9fcd467f6f65560aba1f82ac682a8b6fa1942704544 -2024-03-07T01:05:12Z #11 801.3 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 -2024-03-07T01:05:12Z #11 801.3 Building wheel for jupyternotify (setup.py): started -2024-03-07T01:05:12Z #11 801.3 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=d03aa544614c3a2b8d1a13aefefe90029e892f6200012ce66a19dfa30016da2f -2024-03-07T01:05:12Z #11 801.3 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 -2024-03-07T01:05:12Z #11 801.3 Building wheel for progress (setup.py): started -2024-03-07T01:05:12Z #11 801.3 Building wheel for progress (setup.py): finished with status 'done' -2024-03-07T01:05:12Z #11 801.3 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9612 sha256=d8426dc17effa605aa28571af88a3f1bc4abf78ff019c9a512ae26b231a2b927 -2024-03-07T01:05:12Z #11 801.3 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 -2024-03-07T01:05:12Z #11 801.3 Successfully built fstd2nc pixiedust jupyternotify progress -2024-03-07T01:05:12Z #11 801.3 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-03-07T01:05:12Z #11 801.3 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.2.1 -2024-03-07T01:05:12Z #11 801.3 -2024-03-07T01:05:12Z #11 801.3 done -2024-03-07T01:05:12Z #11 801.3 # -2024-03-07T01:05:12Z #11 801.3 # To activate this environment, use -2024-03-07T01:05:12Z #11 801.3 # -2024-03-07T01:05:12Z #11 801.3 # $ conda activate birdy -2024-03-07T01:05:12Z #11 801.3 # -2024-03-07T01:05:12Z #11 801.3 # To deactivate an active environment, use -2024-03-07T01:05:12Z #11 801.3 # -2024-03-07T01:05:12Z #11 801.3 # $ conda deactivate -2024-03-07T01:05:12Z #11 801.3 -2024-03-07T01:05:32Z #11 821.3 Will remove 785 (1.20 GB) tarball(s). -2024-03-07T01:05:32Z #11 821.3 Will remove 1 index cache(s). -2024-03-07T01:05:32Z #11 821.3 Will remove 144 (1.21 GB) package(s). -2024-03-07T01:05:32Z #11 821.3 There are no tempfile(s) to remove. -2024-03-07T01:05:32Z #11 821.3 There are no logfile(s) to remove. -2024-03-07T01:05:33Z #11 DONE 822.2s -2024-03-07T01:05:33Z -2024-03-07T01:05:33Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2024-03-07T01:05:34Z #12 1.237 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-03-07T01:05:34Z #12 DONE 1.4s -2024-03-07T01:05:34Z -2024-03-07T01:05:34Z #13 [ 8/10] RUN jupyter lab build -2024-03-07T01:05:36Z #13 1.944 [LabBuildApp] JupyterLab 3.6.7 -2024-03-07T01:05:36Z #13 1.946 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2024-03-07T01:05:37Z #13 2.589 [LabBuildApp] Building jupyterlab assets (production, minimized) -2024-03-07T01:05:37Z #13 2.608 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. -2024-03-07T01:05:37Z #13 2.608 -2024-03-07T01:07:55Z #13 2.614 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ -2024-03-07T01:07:55Z #13 DONE 140.7s -2024-03-07T01:07:55Z -2024-03-07T01:07:55Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-03-07T01:07:56Z #14 0.556 Enabling: voila -2024-03-07T01:07:56Z #14 0.556 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-07T01:07:56Z #14 0.559 - Validating... -2024-03-07T01:07:56Z #14 1.258 voila 0.5.5 OK -2024-03-07T01:07:57Z #14 1.640 Enabling: panel.io.jupyter_server_extension -2024-03-07T01:07:57Z #14 1.640 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-07T01:07:57Z #14 1.642 - Validating... -2024-03-07T01:07:59Z #14 3.393 panel.io.jupyter_server_extension OK -2024-03-07T01:07:59Z #14 3.888 - Validating... -2024-03-07T01:08:00Z #14 4.740 dask_labextension 6.2.0 OK -2024-03-07T01:08:00Z #14 4.740 - Validating... -2024-03-07T01:08:00Z #14 4.740 jupyter_server_proxy OK -2024-03-07T01:08:00Z #14 4.740 - Validating... -2024-03-07T01:08:00Z #14 4.913 jupyter_resource_usage 0.7.1 OK -2024-03-07T01:08:00Z #14 4.913 - Validating... -2024-03-07T01:08:00Z #14 4.972  X is jupyter_server_ydoc importable? -2024-03-07T01:08:00Z #14 4.972 - Validating... -2024-03-07T01:08:00Z #14 5.046 jupyterlab 3.6.7 OK -2024-03-07T01:08:00Z #14 5.046 - Validating... -2024-03-07T01:08:00Z #14 5.222 jupyterlab_jupytext OK -2024-03-07T01:08:00Z #14 5.222 - Validating... -2024-03-07T01:08:00Z #14 5.226 mamba_gator 5.2.1 OK -2024-03-07T01:08:00Z #14 5.226 - Validating... -2024-03-07T01:08:00Z #14 5.243 nbdime 4.0.1 OK -2024-03-07T01:08:00Z #14 5.244 - Validating... -2024-03-07T01:08:01Z #14 6.312 panel.io.jupyter_server_extension OK -2024-03-07T01:08:01Z #14 6.312 - Validating... -2024-03-07T01:08:01Z #14 6.381 nbresuse OK -2024-03-07T01:08:02Z #14 6.381 - Validating... -2024-03-07T01:08:02Z #14 6.637 voila.server_extension OK -2024-03-07T01:08:02Z #14 6.637 - Validating... -2024-03-07T01:08:02Z #14 6.639 jupyterlab_git OK -2024-03-07T01:08:02Z #14 6.639 - Validating... -2024-03-07T01:08:02Z #14 6.640 voila 0.5.5 OK -2024-03-07T01:08:02Z #14 6.640 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-03-07T01:08:02Z #14 6.640 dask_labextension  enabled  -2024-03-07T01:08:02Z #14 6.640 jupyter_server_proxy  enabled  -2024-03-07T01:08:02Z #14 6.640 jupyter_resource_usage  enabled  -2024-03-07T01:08:02Z #14 6.640 jupyter_server_ydoc  enabled  -2024-03-07T01:08:02Z #14 6.640 jupyterlab  enabled  -2024-03-07T01:08:02Z #14 6.640 jupyterlab_jupytext  enabled  -2024-03-07T01:08:02Z #14 6.640 mamba_gator  enabled  -2024-03-07T01:08:02Z #14 6.640 nbdime  enabled  -2024-03-07T01:08:02Z #14 6.640 panel.io.jupyter_server_extension  enabled  -2024-03-07T01:08:02Z #14 6.640 nbresuse  enabled  -2024-03-07T01:08:02Z #14 6.640 voila.server_extension  enabled  -2024-03-07T01:08:02Z #14 6.640 jupyterlab_git  enabled  -2024-03-07T01:08:02Z #14 6.640 voila  enabled  -2024-03-07T01:08:02Z #14 DONE 7.1s -2024-03-07T01:08:02Z -2024-03-07T01:08:02Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-03-07T01:08:03Z #15 0.450 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-03-07T01:08:03Z #15 0.476 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ... -2024-03-07T01:08:03Z #15 0.479 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-03-07T01:08:03Z #15 0.483 HTTP request sent, awaiting response... 200 OK -2024-03-07T01:08:03Z #15 0.593 Length: 9769 (9.5K) [text/plain] -2024-03-07T01:08:03Z #15 0.593 Saving to: ‘/usr/local/bin/start.sh’ -2024-03-07T01:08:03Z #15 0.594 -2024-03-07T01:08:03Z #15 0.594 0K ......... 100% 6.65M=0.001s -2024-03-07T01:08:03Z #15 0.595 -2024-03-07T01:08:03Z #15 0.595 2024-03-07 01:08:03 (6.65 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-03-07T01:08:03Z #15 0.595 -2024-03-07T01:08:03Z #15 0.599 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-03-07T01:08:03Z #15 0.623 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2024-03-07T01:08:03Z #15 0.624 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-03-07T01:08:03Z #15 0.629 HTTP request sent, awaiting response... 200 OK -2024-03-07T01:08:03Z #15 0.692 Length: 359 [text/plain] -2024-03-07T01:08:03Z #15 0.693 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-03-07T01:08:03Z #15 0.693 -2024-03-07T01:08:03Z #15 0.693 0K 100% 6.03M=0s -2024-03-07T01:08:03Z #15 0.694 -2024-03-07T01:08:03Z #15 0.694 2024-03-07 01:08:03 (6.03 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-03-07T01:08:03Z #15 0.694 -2024-03-07T01:08:03Z #15 0.698 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-03-07T01:08:03Z #15 0.723 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2024-03-07T01:08:03Z #15 0.724 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-03-07T01:08:03Z #15 0.737 HTTP request sent, awaiting response... 200 OK -2024-03-07T01:08:03Z #15 0.837 Length: 852 [text/plain] -2024-03-07T01:08:03Z #15 0.837 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-03-07T01:08:03Z #15 0.838 -2024-03-07T01:08:03Z #15 0.838 0K 100% 33.0M=0s -2024-03-07T01:08:03Z #15 0.839 -2024-03-07T01:08:03Z #15 0.839 2024-03-07 01:08:03 (33.0 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-03-07T01:08:03Z #15 0.839 -2024-03-07T01:08:03Z #15 0.843 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-03-07T01:08:03Z #15 0.868 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2024-03-07T01:08:03Z #15 0.869 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-03-07T01:08:03Z #15 0.876 HTTP request sent, awaiting response... 200 OK -2024-03-07T01:08:03Z #15 0.937 Length: 1034 (1.0K) [text/plain] -2024-03-07T01:08:03Z #15 0.937 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-03-07T01:08:03Z #15 0.937 -2024-03-07T01:08:03Z #15 0.937 0K . 100% 38.9M=0s -2024-03-07T01:08:03Z #15 0.938 -2024-03-07T01:08:03Z #15 0.938 2024-03-07 01:08:03 (38.9 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-03-07T01:08:03Z #15 0.938 -2024-03-07T01:08:03Z #15 0.943 --2024-03-07 01:08:03-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-03-07T01:08:03Z #15 0.967 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2024-03-07T01:08:03Z #15 0.969 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-03-07T01:08:03Z #15 0.974 HTTP request sent, awaiting response... 200 OK -2024-03-07T01:08:03Z #15 1.070 Length: 1836 (1.8K) [text/plain] -2024-03-07T01:08:03Z #15 1.070 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-03-07T01:08:03Z #15 1.070 -2024-03-07T01:08:03Z #15 1.070 0K . 100% 6.63M=0s -2024-03-07T01:08:03Z #15 1.071 -2024-03-07T01:08:03Z #15 1.071 2024-03-07 01:08:03 (6.63 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-03-07T01:08:03Z #15 1.071 -2024-03-07T01:08:03Z #15 1.255 --2024-03-07 01:08:03-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-03-07T01:08:03Z #15 1.278 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.63, 3.162.103.84, 3.162.103.35, ... -2024-03-07T01:08:03Z #15 1.283 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.63|:443... connected. -2024-03-07T01:08:04Z #15 1.289 HTTP request sent, awaiting response... 200 OK -2024-03-07T01:08:04Z #15 1.496 Length: 129825343 (124M) [application/x-tar] -2024-03-07T01:08:04Z #15 1.496 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-03-07T01:08:04Z #15 1.496 -2024-03-07T01:08:04Z #15 1.496 0K .......... .......... .......... .......... .......... 0% 29.5M 4s -2024-03-07T01:08:04Z #15 1.498 50K .......... .......... .......... .......... .......... 0% 13.6M 7s -2024-03-07T01:08:04Z #15 1.502 100K .......... .......... .......... .......... .......... 0% 17.0M 7s -2024-03-07T01:08:04Z #15 1.504 150K .......... .......... .......... .......... .......... 0% 24.8M 6s -2024-03-07T01:08:04Z #15 1.506 200K .......... .......... .......... .......... .......... 0% 22.7M 6s -2024-03-07T01:08:04Z #15 1.508 250K .......... .......... .......... .......... .......... 0% 81.8M 5s -2024-03-07T01:08:04Z #15 1.511 300K .......... .......... .......... .......... .......... 0% 45.8M 5s -2024-03-07T01:08:04Z #15 1.511 350K .......... .......... .......... .......... .......... 0% 56.3M 5s -2024-03-07T01:08:04Z #15 1.511 400K .......... .......... .......... .......... .......... 0% 57.5M 4s -2024-03-07T01:08:04Z #15 1.514 450K .......... .......... .......... .......... .......... 0% 166M 4s -2024-03-07T01:08:04Z #15 1.514 500K .......... .......... .......... .......... .......... 0% 173M 4s -2024-03-07T01:08:04Z #15 1.514 550K .......... .......... .......... .......... .......... 0% 151M 3s -2024-03-07T01:08:04Z #15 1.514 600K .......... .......... .......... .......... .......... 0% 77.9M 3s -2024-03-07T01:08:04Z #15 1.514 650K .......... .......... .......... .......... .......... 0% 28.8M 3s -2024-03-07T01:08:04Z #15 1.515 700K .......... .......... .......... .......... .......... 0% 34.2M 3s -2024-03-07T01:08:04Z #15 1.516 750K .......... .......... .......... .......... .......... 0% 48.0M 3s -2024-03-07T01:08:04Z #15 1.518 800K .......... .......... .......... .......... .......... 0% 29.2M 3s -2024-03-07T01:08:04Z #15 1.520 850K .......... .......... .......... .......... .......... 0% 29.1M 3s -2024-03-07T01:08:04Z #15 1.521 900K .......... .......... .......... .......... .......... 0% 18.4M 4s -2024-03-07T01:08:04Z #15 1.524 950K .......... .......... .......... .......... .......... 0% 46.3M 4s -2024-03-07T01:08:04Z #15 1.527 1000K .......... .......... .......... .......... .......... 0% 172M 3s -2024-03-07T01:08:04Z #15 1.527 1050K .......... .......... .......... .......... .......... 0% 233M 3s -2024-03-07T01:08:04Z #15 1.527 1100K .......... .......... .......... .......... .......... 0% 183M 3s -2024-03-07T01:08:04Z #15 1.527 1150K .......... .......... .......... .......... .......... 0% 151M 3s -2024-03-07T01:08:04Z #15 1.527 1200K .......... .......... .......... .......... .......... 0% 253M 3s -2024-03-07T01:08:04Z #15 1.527 1250K .......... .......... .......... .......... .......... 1% 222M 3s -2024-03-07T01:08:04Z #15 1.527 1300K .......... .......... .......... .......... .......... 1% 152M 3s -2024-03-07T01:08:04Z #15 1.527 1350K .......... .......... .......... .......... .......... 1% 218M 3s -2024-03-07T01:08:04Z #15 1.527 1400K .......... .......... .......... .......... .......... 1% 159M 3s -2024-03-07T01:08:04Z #15 1.527 1450K .......... .......... .......... .......... .......... 1% 188M 3s -2024-03-07T01:08:04Z #15 1.527 1500K .......... .......... .......... .......... .......... 1% 69.7M 3s -2024-03-07T01:08:04Z #15 1.528 1550K .......... .......... .......... .......... .......... 1% 16.6M 3s -2024-03-07T01:08:04Z #15 1.535 1600K .......... .......... .......... .......... .......... 1% 132M 3s -2024-03-07T01:08:04Z #15 1.535 1650K .......... .......... .......... .......... .......... 1% 99.9M 3s -2024-03-07T01:08:04Z #15 1.535 1700K .......... .......... .......... .......... .......... 1% 121M 3s -2024-03-07T01:08:04Z #15 1.535 1750K .......... .......... .......... .......... .......... 1% 132M 3s -2024-03-07T01:08:04Z #15 1.535 1800K .......... .......... .......... .......... .......... 1% 121M 2s -2024-03-07T01:08:04Z #15 1.535 1850K .......... .......... .......... .......... .......... 1% 124M 2s -2024-03-07T01:08:04Z #15 1.535 1900K .......... .......... .......... .......... .......... 1% 130M 2s -2024-03-07T01:08:04Z #15 1.535 1950K .......... .......... .......... .......... .......... 1% 144M 2s -2024-03-07T01:08:04Z #15 1.535 2000K .......... .......... .......... .......... .......... 1% 120M 2s -2024-03-07T01:08:04Z #15 1.535 2050K .......... .......... .......... .......... .......... 1% 117M 2s -2024-03-07T01:08:04Z #15 1.535 2100K .......... .......... .......... .......... .......... 1% 121M 2s -2024-03-07T01:08:04Z #15 1.535 2150K .......... .......... .......... .......... .......... 1% 21.0M 2s -2024-03-07T01:08:04Z #15 1.543 2200K .......... .......... .......... .......... .......... 1% 109M 2s -2024-03-07T01:08:04Z #15 1.543 2250K .......... .......... .......... .......... .......... 1% 109M 2s -2024-03-07T01:08:04Z #15 1.543 2300K .......... .......... .......... .......... .......... 1% 120M 2s -2024-03-07T01:08:04Z #15 1.543 2350K .......... .......... .......... .......... .......... 1% 128M 2s -2024-03-07T01:08:04Z #15 1.543 2400K .......... .......... .......... .......... .......... 1% 107M 2s -2024-03-07T01:08:04Z #15 1.543 2450K .......... .......... .......... .......... .......... 1% 131M 2s -2024-03-07T01:08:04Z #15 1.543 2500K .......... .......... .......... .......... .......... 2% 106M 2s -2024-03-07T01:08:04Z #15 1.543 2550K .......... .......... .......... .......... .......... 2% 139M 2s -2024-03-07T01:08:04Z #15 1.543 2600K .......... .......... .......... .......... .......... 2% 134M 2s -2024-03-07T01:08:04Z #15 1.543 2650K .......... .......... .......... .......... .......... 2% 114M 2s -2024-03-07T01:08:04Z #15 1.543 2700K .......... .......... .......... .......... .......... 2% 112M 2s -2024-03-07T01:08:04Z #15 1.543 2750K .......... .......... .......... .......... .......... 2% 122M 2s -2024-03-07T01:08:04Z #15 1.543 2800K .......... .......... .......... .......... .......... 2% 111M 2s -2024-03-07T01:08:04Z #15 1.543 2850K .......... .......... .......... .......... .......... 2% 134M 2s -2024-03-07T01:08:04Z #15 1.543 2900K .......... .......... .......... .......... .......... 2% 26.1M 2s -2024-03-07T01:08:04Z #15 1.547 2950K .......... .......... .......... .......... .......... 2% 134M 2s -2024-03-07T01:08:04Z #15 1.547 3000K .......... .......... .......... .......... .......... 2% 118M 2s -2024-03-07T01:08:04Z #15 1.547 3050K .......... .......... .......... .......... .......... 2% 102M 2s -2024-03-07T01:08:04Z #15 1.547 3100K .......... .......... .......... .......... .......... 2% 117M 2s -2024-03-07T01:08:04Z #15 1.547 3150K .......... .......... .......... .......... .......... 2% 125M 2s -2024-03-07T01:08:04Z #15 1.547 3200K .......... .......... .......... .......... .......... 2% 65.3M 2s -2024-03-07T01:08:04Z #15 1.548 3250K .......... .......... .......... .......... .......... 2% 38.0M 2s -2024-03-07T01:08:04Z #15 1.549 3300K .......... .......... .......... .......... .......... 2% 23.6M 2s -2024-03-07T01:08:04Z #15 1.555 3350K .......... .......... .......... .......... .......... 2% 115M 2s -2024-03-07T01:08:04Z #15 1.555 3400K .......... .......... .......... .......... .......... 2% 119M 2s -2024-03-07T01:08:04Z #15 1.555 3450K .......... .......... .......... .......... .......... 2% 129M 2s -2024-03-07T01:08:04Z #15 1.555 3500K .......... .......... .......... .......... .......... 2% 147M 2s -2024-03-07T01:08:04Z #15 1.555 3550K .......... .......... .......... .......... .......... 2% 110M 2s -2024-03-07T01:08:04Z #15 1.555 3600K .......... .......... .......... .......... .......... 2% 134M 2s -2024-03-07T01:08:04Z #15 1.555 3650K .......... .......... .......... .......... .......... 2% 135M 2s -2024-03-07T01:08:04Z #15 1.555 3700K .......... .......... .......... .......... .......... 2% 158M 2s -2024-03-07T01:08:04Z #15 1.555 3750K .......... .......... .......... .......... .......... 2% 116M 2s -2024-03-07T01:08:04Z #15 1.555 3800K .......... .......... .......... .......... .......... 3% 118M 2s -2024-03-07T01:08:04Z #15 1.555 3850K .......... .......... .......... .......... .......... 3% 79.3M 2s -2024-03-07T01:08:04Z #15 1.556 3900K .......... .......... .......... .......... .......... 3% 50.0M 2s -2024-03-07T01:08:04Z #15 1.557 3950K .......... .......... .......... .......... .......... 3% 43.4M 2s -2024-03-07T01:08:04Z #15 1.558 4000K .......... .......... .......... .......... .......... 3% 44.2M 2s -2024-03-07T01:08:04Z #15 1.559 4050K .......... .......... .......... .......... .......... 3% 49.6M 2s -2024-03-07T01:08:04Z #15 1.561 4100K .......... .......... .......... .......... .......... 3% 47.0M 2s -2024-03-07T01:08:04Z #15 1.561 4150K .......... .......... .......... .......... .......... 3% 45.7M 2s -2024-03-07T01:08:04Z #15 1.562 4200K .......... .......... .......... .......... .......... 3% 53.0M 2s -2024-03-07T01:08:04Z #15 1.563 4250K .......... .......... .......... .......... .......... 3% 49.5M 2s -2024-03-07T01:08:04Z #15 1.564 4300K .......... .......... .......... .......... .......... 3% 35.6M 2s -2024-03-07T01:08:04Z #15 1.565 4350K .......... .......... .......... .......... .......... 3% 50.8M 2s -2024-03-07T01:08:04Z #15 1.566 4400K .......... .......... .......... .......... .......... 3% 58.9M 2s -2024-03-07T01:08:04Z #15 1.571 4450K .......... .......... .......... .......... .......... 3% 115M 2s -2024-03-07T01:08:04Z #15 1.571 4500K .......... .......... .......... .......... .......... 3% 172M 2s -2024-03-07T01:08:04Z #15 1.571 4550K .......... .......... .......... .......... .......... 3% 106M 2s -2024-03-07T01:08:04Z #15 1.571 4600K .......... .......... .......... .......... .......... 3% 142M 2s -2024-03-07T01:08:04Z #15 1.571 4650K .......... .......... .......... .......... .......... 3% 131M 2s -2024-03-07T01:08:04Z #15 1.571 4700K .......... .......... .......... .......... .......... 3% 127M 2s -2024-03-07T01:08:04Z #15 1.571 4750K .......... .......... .......... .......... .......... 3% 104M 2s -2024-03-07T01:08:04Z #15 1.571 4800K .......... .......... .......... .......... .......... 3% 133M 2s -2024-03-07T01:08:04Z #15 1.571 4850K .......... .......... .......... .......... .......... 3% 129M 2s -2024-03-07T01:08:04Z #15 1.571 4900K .......... .......... .......... .......... .......... 3% 135M 2s -2024-03-07T01:08:04Z #15 1.571 4950K .......... .......... .......... .......... .......... 3% 102M 2s -2024-03-07T01:08:04Z #15 1.575 5000K .......... .......... .......... .......... .......... 3% 159M 2s -2024-03-07T01:08:04Z #15 1.575 5050K .......... .......... .......... .......... .......... 4% 165M 2s -2024-03-07T01:08:04Z #15 1.575 5100K .......... .......... .......... .......... .......... 4% 146M 2s -2024-03-07T01:08:04Z #15 1.575 5150K .......... .......... .......... .......... .......... 4% 110M 2s -2024-03-07T01:08:04Z #15 1.575 5200K .......... .......... .......... .......... .......... 4% 134M 2s -2024-03-07T01:08:04Z #15 1.575 5250K .......... .......... .......... .......... .......... 4% 142M 2s -2024-03-07T01:08:04Z #15 1.575 5300K .......... .......... .......... .......... .......... 4% 129M 2s -2024-03-07T01:08:04Z #15 1.575 5350K .......... .......... .......... .......... .......... 4% 121M 2s -2024-03-07T01:08:04Z #15 1.575 5400K .......... .......... .......... .......... .......... 4% 118M 2s -2024-03-07T01:08:04Z #15 1.575 5450K .......... .......... .......... .......... .......... 4% 103M 2s -2024-03-07T01:08:04Z #15 1.575 5500K .......... .......... .......... .......... .......... 4% 105M 2s -2024-03-07T01:08:04Z #15 1.579 5550K .......... .......... .......... .......... .......... 4% 160M 2s -2024-03-07T01:08:04Z #15 1.579 5600K .......... .......... .......... .......... .......... 4% 151M 2s -2024-03-07T01:08:04Z #15 1.579 5650K .......... .......... .......... .......... .......... 4% 119M 2s -2024-03-07T01:08:04Z #15 1.579 5700K .......... .......... .......... .......... .......... 4% 112M 2s -2024-03-07T01:08:04Z #15 1.579 5750K .......... .......... .......... .......... .......... 4% 137M 2s -2024-03-07T01:08:04Z #15 1.579 5800K .......... .......... .......... .......... .......... 4% 132M 2s -2024-03-07T01:08:04Z #15 1.579 5850K .......... .......... .......... .......... .......... 4% 118M 2s -2024-03-07T01:08:04Z #15 1.579 5900K .......... .......... .......... .......... .......... 4% 131M 2s -2024-03-07T01:08:04Z #15 1.579 5950K .......... .......... .......... .......... .......... 4% 123M 2s -2024-03-07T01:08:04Z #15 1.579 6000K .......... .......... .......... .......... .......... 4% 77.2M 2s -2024-03-07T01:08:04Z #15 1.583 6050K .......... .......... .......... .......... .......... 4% 128M 2s -2024-03-07T01:08:04Z #15 1.583 6100K .......... .......... .......... .......... .......... 4% 142M 2s -2024-03-07T01:08:04Z #15 1.583 6150K .......... .......... .......... .......... .......... 4% 156M 2s -2024-03-07T01:08:04Z #15 1.583 6200K .......... .......... .......... .......... .......... 4% 172M 2s -2024-03-07T01:08:04Z #15 1.583 6250K .......... .......... .......... .......... .......... 4% 104M 2s -2024-03-07T01:08:04Z #15 1.583 6300K .......... .......... .......... .......... .......... 5% 139M 2s -2024-03-07T01:08:04Z #15 1.583 6350K .......... .......... .......... .......... .......... 5% 125M 2s -2024-03-07T01:08:04Z #15 1.583 6400K .......... .......... .......... .......... .......... 5% 118M 2s -2024-03-07T01:08:04Z #15 1.583 6450K .......... .......... .......... .......... .......... 5% 124M 2s -2024-03-07T01:08:04Z #15 1.583 6500K .......... .......... .......... .......... .......... 5% 124M 2s -2024-03-07T01:08:04Z #15 1.583 6550K .......... .......... .......... .......... .......... 5% 74.1M 2s -2024-03-07T01:08:04Z #15 1.587 6600K .......... .......... .......... .......... .......... 5% 121M 2s -2024-03-07T01:08:04Z #15 1.587 6650K .......... .......... .......... .......... .......... 5% 154M 2s -2024-03-07T01:08:04Z #15 1.587 6700K .......... .......... .......... .......... .......... 5% 130M 2s -2024-03-07T01:08:04Z #15 1.587 6750K .......... .......... .......... .......... .......... 5% 121M 2s -2024-03-07T01:08:04Z #15 1.587 6800K .......... .......... .......... .......... .......... 5% 131M 2s -2024-03-07T01:08:04Z #15 1.587 6850K .......... .......... .......... .......... .......... 5% 117M 2s -2024-03-07T01:08:04Z #15 1.587 6900K .......... .......... .......... .......... .......... 5% 134M 2s -2024-03-07T01:08:04Z #15 1.587 6950K .......... .......... .......... .......... .......... 5% 110M 2s -2024-03-07T01:08:04Z #15 1.587 7000K .......... .......... .......... .......... .......... 5% 58.1M 2s -2024-03-07T01:08:04Z #15 1.591 7050K .......... .......... .......... .......... .......... 5% 138M 2s -2024-03-07T01:08:04Z #15 1.591 7100K .......... .......... .......... .......... .......... 5% 132M 2s -2024-03-07T01:08:04Z #15 1.591 7150K .......... .......... .......... .......... .......... 5% 126M 2s -2024-03-07T01:08:04Z #15 1.591 7200K .......... .......... .......... .......... .......... 5% 111M 2s -2024-03-07T01:08:04Z #15 1.591 7250K .......... .......... .......... .......... .......... 5% 147M 2s -2024-03-07T01:08:04Z #15 1.591 7300K .......... .......... .......... .......... .......... 5% 126M 2s -2024-03-07T01:08:04Z #15 1.591 7350K .......... .......... .......... .......... .......... 5% 111M 2s -2024-03-07T01:08:04Z #15 1.591 7400K .......... .......... .......... .......... .......... 5% 145M 2s -2024-03-07T01:08:04Z #15 1.591 7450K .......... .......... .......... .......... .......... 5% 101M 2s -2024-03-07T01:08:04Z #15 1.592 7500K .......... .......... .......... .......... .......... 5% 58.3M 2s -2024-03-07T01:08:04Z #15 1.595 7550K .......... .......... .......... .......... .......... 5% 166M 2s -2024-03-07T01:08:04Z #15 1.595 7600K .......... .......... .......... .......... .......... 6% 147M 2s -2024-03-07T01:08:04Z #15 1.595 7650K .......... .......... .......... .......... .......... 6% 134M 2s -2024-03-07T01:08:04Z #15 1.595 7700K .......... .......... .......... .......... .......... 6% 120M 1s -2024-03-07T01:08:04Z #15 1.595 7750K .......... .......... .......... .......... .......... 6% 117M 1s -2024-03-07T01:08:04Z #15 1.595 7800K .......... .......... .......... .......... .......... 6% 111M 1s -2024-03-07T01:08:04Z #15 1.595 7850K .......... .......... .......... .......... .......... 6% 131M 1s -2024-03-07T01:08:04Z #15 1.595 7900K .......... .......... .......... .......... .......... 6% 85.3M 1s -2024-03-07T01:08:04Z #15 1.598 7950K .......... .......... .......... .......... .......... 6% 48.6M 1s -2024-03-07T01:08:04Z #15 1.598 8000K .......... .......... .......... .......... .......... 6% 53.6M 1s -2024-03-07T01:08:04Z #15 1.604 8050K .......... .......... .......... .......... .......... 6% 106M 1s -2024-03-07T01:08:04Z #15 1.604 8100K .......... .......... .......... .......... .......... 6% 146M 1s -2024-03-07T01:08:04Z #15 1.604 8150K .......... .......... .......... .......... .......... 6% 158M 1s -2024-03-07T01:08:04Z #15 1.604 8200K .......... .......... .......... .......... .......... 6% 160M 1s -2024-03-07T01:08:04Z #15 1.604 8250K .......... .......... .......... .......... .......... 6% 121M 1s -2024-03-07T01:08:04Z #15 1.604 8300K .......... .......... .......... .......... .......... 6% 10.8M 2s -2024-03-07T01:08:04Z #15 1.604 8350K .......... .......... .......... .......... .......... 6% 133M 2s -2024-03-07T01:08:04Z #15 1.607 8400K .......... .......... .......... .......... .......... 6% 142M 2s -2024-03-07T01:08:04Z #15 1.607 8450K .......... .......... .......... .......... .......... 6% 129M 2s -2024-03-07T01:08:04Z #15 1.607 8500K .......... .......... .......... .......... .......... 6% 107M 2s -2024-03-07T01:08:04Z #15 1.607 8550K .......... .......... .......... .......... .......... 6% 135M 2s -2024-03-07T01:08:04Z #15 1.607 8600K .......... .......... .......... .......... .......... 6% 121M 2s -2024-03-07T01:08:04Z #15 1.607 8650K .......... .......... .......... .......... .......... 6% 112M 1s -2024-03-07T01:08:04Z #15 1.607 8700K .......... .......... .......... .......... .......... 6% 157M 1s -2024-03-07T01:08:04Z #15 1.607 8750K .......... .......... .......... .......... .......... 6% 119M 1s -2024-03-07T01:08:04Z #15 1.607 8800K .......... .......... .......... .......... .......... 6% 19.5M 2s -2024-03-07T01:08:04Z #15 1.611 8850K .......... .......... .......... .......... .......... 7% 119M 2s -2024-03-07T01:08:04Z #15 1.611 8900K .......... .......... .......... .......... .......... 7% 41.6M 2s -2024-03-07T01:08:04Z #15 1.611 8950K .......... .......... .......... .......... .......... 7% 117M 2s -2024-03-07T01:08:04Z #15 1.615 9000K .......... .......... .......... .......... .......... 7% 114M 2s -2024-03-07T01:08:04Z #15 1.615 9050K .......... .......... .......... .......... .......... 7% 100M 2s -2024-03-07T01:08:04Z #15 1.615 9100K .......... .......... .......... .......... .......... 7% 119M 2s -2024-03-07T01:08:04Z #15 1.615 9150K .......... .......... .......... .......... .......... 7% 112M 2s -2024-03-07T01:08:04Z #15 1.615 9200K .......... .......... .......... .......... .......... 7% 112M 1s -2024-03-07T01:08:04Z #15 1.615 9250K .......... .......... .......... .......... .......... 7% 100M 1s -2024-03-07T01:08:04Z #15 1.615 9300K .......... .......... .......... .......... .......... 7% 129M 1s -2024-03-07T01:08:04Z #15 1.615 9350K .......... .......... .......... .......... .......... 7% 114M 1s -2024-03-07T01:08:04Z #15 1.615 9400K .......... .......... .......... .......... .......... 7% 14.5M 2s -2024-03-07T01:08:04Z #15 1.619 9450K .......... .......... .......... .......... .......... 7% 113M 2s -2024-03-07T01:08:04Z #15 1.619 9500K .......... .......... .......... .......... .......... 7% 33.2M 2s -2024-03-07T01:08:04Z #15 1.621 9550K .......... .......... .......... .......... .......... 7% 113M 2s -2024-03-07T01:08:04Z #15 1.623 9600K .......... .......... .......... .......... .......... 7% 125M 2s -2024-03-07T01:08:04Z #15 1.623 9650K .......... .......... .......... .......... .......... 7% 105M 2s -2024-03-07T01:08:04Z #15 1.623 9700K .......... .......... .......... .......... .......... 7% 120M 2s -2024-03-07T01:08:04Z #15 1.623 9750K .......... .......... .......... .......... .......... 7% 106M 2s -2024-03-07T01:08:04Z #15 1.623 9800K .......... .......... .......... .......... .......... 7% 112M 2s -2024-03-07T01:08:04Z #15 1.623 9850K .......... .......... .......... .......... .......... 7% 17.3M 2s -2024-03-07T01:08:04Z #15 1.627 9900K .......... .......... .......... .......... .......... 7% 121M 2s -2024-03-07T01:08:04Z #15 1.627 9950K .......... .......... .......... .......... .......... 7% 119M 2s -2024-03-07T01:08:04Z #15 1.627 10000K .......... .......... .......... .......... .......... 7% 129M 2s -2024-03-07T01:08:04Z #15 1.627 10050K .......... .......... .......... .......... .......... 7% 20.5M 2s -2024-03-07T01:08:04Z #15 1.630 10100K .......... .......... .......... .......... .......... 8% 39.7M 2s -2024-03-07T01:08:04Z #15 1.631 10150K .......... .......... .......... .......... .......... 8% 99.3M 2s -2024-03-07T01:08:04Z #15 1.635 10200K .......... .......... .......... .......... .......... 8% 131M 2s -2024-03-07T01:08:04Z #15 1.635 10250K .......... .......... .......... .......... .......... 8% 101M 2s -2024-03-07T01:08:04Z #15 1.635 10300K .......... .......... .......... .......... .......... 8% 126M 2s -2024-03-07T01:08:04Z #15 1.635 10350K .......... .......... .......... .......... .......... 8% 124M 2s -2024-03-07T01:08:04Z #15 1.635 10400K .......... .......... .......... .......... .......... 8% 110M 2s -2024-03-07T01:08:04Z #15 1.635 10450K .......... .......... .......... .......... .......... 8% 99.8M 2s -2024-03-07T01:08:04Z #15 1.635 10500K .......... .......... .......... .......... .......... 8% 108M 2s -2024-03-07T01:08:04Z #15 1.635 10550K .......... .......... .......... .......... .......... 8% 112M 2s -2024-03-07T01:08:04Z #15 1.635 10600K .......... .......... .......... .......... .......... 8% 113M 2s -2024-03-07T01:08:04Z #15 1.635 10650K .......... .......... .......... .......... .......... 8% 12.5M 2s -2024-03-07T01:08:04Z #15 1.639 10700K .......... .......... .......... .......... .......... 8% 39.4M 2s -2024-03-07T01:08:04Z #15 1.641 10750K .......... .......... .......... .......... .......... 8% 56.3M 2s -2024-03-07T01:08:04Z #15 1.643 10800K .......... .......... .......... .......... .......... 8% 124M 2s -2024-03-07T01:08:04Z #15 1.643 10850K .......... .......... .......... .......... .......... 8% 104M 2s -2024-03-07T01:08:04Z #15 1.643 10900K .......... .......... .......... .......... .......... 8% 121M 2s -2024-03-07T01:08:04Z #15 1.643 10950K .......... .......... .......... .......... .......... 8% 132M 2s -2024-03-07T01:08:04Z #15 1.643 11000K .......... .......... .......... .......... .......... 8% 129M 2s -2024-03-07T01:08:04Z #15 1.643 11050K .......... .......... .......... .......... .......... 8% 25.1M 2s -2024-03-07T01:08:04Z #15 1.645 11100K .......... .......... .......... .......... .......... 8% 54.2M 2s -2024-03-07T01:08:04Z #15 1.647 11150K .......... .......... .......... .......... .......... 8% 148M 2s -2024-03-07T01:08:04Z #15 1.647 11200K .......... .......... .......... .......... .......... 8% 134M 2s -2024-03-07T01:08:04Z #15 1.647 11250K .......... .......... .......... .......... .......... 8% 99.6M 2s -2024-03-07T01:08:04Z #15 1.647 11300K .......... .......... .......... .......... .......... 8% 30.1M 2s -2024-03-07T01:08:04Z #15 1.651 11350K .......... .......... .......... .......... .......... 8% 130M 2s -2024-03-07T01:08:04Z #15 1.651 11400K .......... .......... .......... .......... .......... 9% 134M 2s -2024-03-07T01:08:04Z #15 1.651 11450K .......... .......... .......... .......... .......... 9% 100M 2s -2024-03-07T01:08:04Z #15 1.651 11500K .......... .......... .......... .......... .......... 9% 117M 2s -2024-03-07T01:08:04Z #15 1.651 11550K .......... .......... .......... .......... .......... 9% 113M 2s -2024-03-07T01:08:04Z #15 1.651 11600K .......... .......... .......... .......... .......... 9% 135M 2s -2024-03-07T01:08:04Z #15 1.651 11650K .......... .......... .......... .......... .......... 9% 18.8M 2s -2024-03-07T01:08:04Z #15 1.654 11700K .......... .......... .......... .......... .......... 9% 39.2M 2s -2024-03-07T01:08:04Z #15 1.655 11750K .......... .......... .......... .......... .......... 9% 105M 2s -2024-03-07T01:08:04Z #15 1.659 11800K .......... .......... .......... .......... .......... 9% 120M 2s -2024-03-07T01:08:04Z #15 1.659 11850K .......... .......... .......... .......... .......... 9% 104M 2s -2024-03-07T01:08:04Z #15 1.659 11900K .......... .......... .......... .......... .......... 9% 113M 2s -2024-03-07T01:08:04Z #15 1.659 11950K .......... .......... .......... .......... .......... 9% 111M 2s -2024-03-07T01:08:04Z #15 1.659 12000K .......... .......... .......... .......... .......... 9% 111M 2s -2024-03-07T01:08:04Z #15 1.659 12050K .......... .......... .......... .......... .......... 9% 107M 2s -2024-03-07T01:08:04Z #15 1.659 12100K .......... .......... .......... .......... .......... 9% 128M 2s -2024-03-07T01:08:04Z #15 1.659 12150K .......... .......... .......... .......... .......... 9% 125M 2s -2024-03-07T01:08:04Z #15 1.659 12200K .......... .......... .......... .......... .......... 9% 16.3M 2s -2024-03-07T01:08:04Z #15 1.662 12250K .......... .......... .......... .......... .......... 9% 74.1M 2s -2024-03-07T01:08:04Z #15 1.668 12300K .......... .......... .......... .......... .......... 9% 104M 2s -2024-03-07T01:08:04Z #15 1.668 12350K .......... .......... .......... .......... .......... 9% 108M 2s -2024-03-07T01:08:04Z #15 1.668 12400K .......... .......... .......... .......... .......... 9% 111M 2s -2024-03-07T01:08:04Z #15 1.668 12450K .......... .......... .......... .......... .......... 9% 124M 2s -2024-03-07T01:08:04Z #15 1.668 12500K .......... .......... .......... .......... .......... 9% 115M 2s -2024-03-07T01:08:04Z #15 1.668 12550K .......... .......... .......... .......... .......... 9% 123M 2s -2024-03-07T01:08:04Z #15 1.668 12600K .......... .......... .......... .......... .......... 9% 116M 2s -2024-03-07T01:08:04Z #15 1.668 12650K .......... .......... .......... .......... .......... 10% 94.5M 2s -2024-03-07T01:08:04Z #15 1.668 12700K .......... .......... .......... .......... .......... 10% 121M 2s -2024-03-07T01:08:04Z #15 1.668 12750K .......... .......... .......... .......... .......... 10% 101M 2s -2024-03-07T01:08:04Z #15 1.668 12800K .......... .......... .......... .......... .......... 10% 14.8M 2s -2024-03-07T01:08:04Z #15 1.670 12850K .......... .......... .......... .......... .......... 10% 53.2M 2s -2024-03-07T01:08:04Z #15 1.672 12900K .......... .......... .......... .......... .......... 10% 34.9M 2s -2024-03-07T01:08:04Z #15 1.673 12950K .......... .......... .......... .......... .......... 10% 111M 2s -2024-03-07T01:08:04Z #15 1.675 13000K .......... .......... .......... .......... .......... 10% 155M 2s -2024-03-07T01:08:04Z #15 1.675 13050K .......... .......... .......... .......... .......... 10% 130M 2s -2024-03-07T01:08:04Z #15 1.675 13100K .......... .......... .......... .......... .......... 10% 117M 2s -2024-03-07T01:08:04Z #15 1.675 13150K .......... .......... .......... .......... .......... 10% 117M 2s -2024-03-07T01:08:04Z #15 1.675 13200K .......... .......... .......... .......... .......... 10% 113M 2s -2024-03-07T01:08:04Z #15 1.675 13250K .......... .......... .......... .......... .......... 10% 23.0M 2s -2024-03-07T01:08:04Z #15 1.677 13300K .......... .......... .......... .......... .......... 10% 52.2M 2s -2024-03-07T01:08:04Z #15 1.679 13350K .......... .......... .......... .......... .......... 10% 113M 2s -2024-03-07T01:08:04Z #15 1.679 13400K .......... .......... .......... .......... .......... 10% 119M 2s -2024-03-07T01:08:04Z #15 1.679 13450K .......... .......... .......... .......... .......... 10% 46.0M 2s -2024-03-07T01:08:04Z #15 1.680 13500K .......... .......... .......... .......... .......... 10% 34.8M 2s -2024-03-07T01:08:04Z #15 1.681 13550K .......... .......... .......... .......... .......... 10% 79.8M 2s -2024-03-07T01:08:04Z #15 1.684 13600K .......... .......... .......... .......... .......... 10% 155M 2s -2024-03-07T01:08:04Z #15 1.684 13650K .......... .......... .......... .......... .......... 10% 162M 2s -2024-03-07T01:08:04Z #15 1.684 13700K .......... .......... .......... .......... .......... 10% 148M 2s -2024-03-07T01:08:04Z #15 1.684 13750K .......... .......... .......... .......... .......... 10% 177M 2s -2024-03-07T01:08:04Z #15 1.684 13800K .......... .......... .......... .......... .......... 10% 29.7M 2s -2024-03-07T01:08:04Z #15 1.685 13850K .......... .......... .......... .......... .......... 10% 105M 2s -2024-03-07T01:08:04Z #15 1.687 13900K .......... .......... .......... .......... .......... 11% 101M 2s -2024-03-07T01:08:04Z #15 1.687 13950K .......... .......... .......... .......... .......... 11% 124M 2s -2024-03-07T01:08:04Z #15 1.687 14000K .......... .......... .......... .......... .......... 11% 125M 2s -2024-03-07T01:08:04Z #15 1.687 14050K .......... .......... .......... .......... .......... 11% 113M 2s -2024-03-07T01:08:04Z #15 1.687 14100K .......... .......... .......... .......... .......... 11% 23.3M 2s -2024-03-07T01:08:04Z #15 1.689 14150K .......... .......... .......... .......... .......... 11% 39.6M 2s -2024-03-07T01:08:04Z #15 1.690 14200K .......... .......... .......... .......... .......... 11% 89.1M 2s -2024-03-07T01:08:04Z #15 1.691 14250K .......... .......... .......... .......... .......... 11% 136M 2s -2024-03-07T01:08:04Z #15 1.692 14300K .......... .......... .......... .......... .......... 11% 55.1M 2s -2024-03-07T01:08:04Z #15 1.696 14350K .......... .......... .......... .......... .......... 11% 130M 2s -2024-03-07T01:08:04Z #15 1.696 14400K .......... .......... .......... .......... .......... 11% 144M 2s -2024-03-07T01:08:04Z #15 1.696 14450K .......... .......... .......... .......... .......... 11% 97.9M 2s -2024-03-07T01:08:04Z #15 1.696 14500K .......... .......... .......... .......... .......... 11% 116M 2s -2024-03-07T01:08:04Z #15 1.696 14550K .......... .......... .......... .......... .......... 11% 137M 2s -2024-03-07T01:08:04Z #15 1.696 14600K .......... .......... .......... .......... .......... 11% 119M 2s -2024-03-07T01:08:04Z #15 1.696 14650K .......... .......... .......... .......... .......... 11% 113M 2s -2024-03-07T01:08:04Z #15 1.696 14700K .......... .......... .......... .......... .......... 11% 21.5M 2s -2024-03-07T01:08:04Z #15 1.699 14750K .......... .......... .......... .......... .......... 11% 112M 2s -2024-03-07T01:08:04Z #15 1.699 14800K .......... .......... .......... .......... .......... 11% 108M 2s -2024-03-07T01:08:04Z #15 1.699 14850K .......... .......... .......... .......... .......... 11% 122M 2s -2024-03-07T01:08:04Z #15 1.699 14900K .......... .......... .......... .......... .......... 11% 137M 2s -2024-03-07T01:08:04Z #15 1.699 14950K .......... .......... .......... .......... .......... 11% 37.1M 2s -2024-03-07T01:08:04Z #15 1.703 15000K .......... .......... .......... .......... .......... 11% 100M 2s -2024-03-07T01:08:04Z #15 1.703 15050K .......... .......... .......... .......... .......... 11% 105M 2s -2024-03-07T01:08:04Z #15 1.703 15100K .......... .......... .......... .......... .......... 11% 128M 2s -2024-03-07T01:08:04Z #15 1.703 15150K .......... .......... .......... .......... .......... 11% 123M 2s -2024-03-07T01:08:04Z #15 1.703 15200K .......... .......... .......... .......... .......... 12% 122M 2s -2024-03-07T01:08:04Z #15 1.703 15250K .......... .......... .......... .......... .......... 12% 100M 2s -2024-03-07T01:08:04Z #15 1.703 15300K .......... .......... .......... .......... .......... 12% 117M 2s -2024-03-07T01:08:04Z #15 1.703 15350K .......... .......... .......... .......... .......... 12% 26.0M 2s -2024-03-07T01:08:04Z #15 1.707 15400K .......... .......... .......... .......... .......... 12% 122M 2s -2024-03-07T01:08:04Z #15 1.707 15450K .......... .......... .......... .......... .......... 12% 114M 2s -2024-03-07T01:08:04Z #15 1.707 15500K .......... .......... .......... .......... .......... 12% 119M 2s -2024-03-07T01:08:04Z #15 1.707 15550K .......... .......... .......... .......... .......... 12% 120M 2s -2024-03-07T01:08:04Z #15 1.707 15600K .......... .......... .......... .......... .......... 12% 93.4M 1s -2024-03-07T01:08:04Z #15 1.710 15650K .......... .......... .......... .......... .......... 12% 116M 1s -2024-03-07T01:08:04Z #15 1.710 15700K .......... .......... .......... .......... .......... 12% 110M 1s -2024-03-07T01:08:04Z #15 1.710 15750K .......... .......... .......... .......... .......... 12% 140M 1s -2024-03-07T01:08:04Z #15 1.710 15800K .......... .......... .......... .......... .......... 12% 92.5M 1s -2024-03-07T01:08:04Z #15 1.710 15850K .......... .......... .......... .......... .......... 12% 132M 1s -2024-03-07T01:08:04Z #15 1.710 15900K .......... .......... .......... .......... .......... 12% 79.1M 1s -2024-03-07T01:08:04Z #15 1.714 15950K .......... .......... .......... .......... .......... 12% 136M 1s -2024-03-07T01:08:04Z #15 1.714 16000K .......... .......... .......... .......... .......... 12% 110M 1s -2024-03-07T01:08:04Z #15 1.714 16050K .......... .......... .......... .......... .......... 12% 126M 1s -2024-03-07T01:08:04Z #15 1.714 16100K .......... .......... .......... .......... .......... 12% 121M 1s -2024-03-07T01:08:04Z #15 1.714 16150K .......... .......... .......... .......... .......... 12% 121M 1s -2024-03-07T01:08:04Z #15 1.714 16200K .......... .......... .......... .......... .......... 12% 110M 1s -2024-03-07T01:08:04Z #15 1.714 16250K .......... .......... .......... .......... .......... 12% 143M 1s -2024-03-07T01:08:04Z #15 1.714 16300K .......... .......... .......... .......... .......... 12% 107M 1s -2024-03-07T01:08:04Z #15 1.714 16350K .......... .......... .......... .......... .......... 12% 78.0M 1s -2024-03-07T01:08:04Z #15 1.714 16400K .......... .......... .......... .......... .......... 12% 142M 1s -2024-03-07T01:08:04Z #15 1.715 16450K .......... .......... .......... .......... .......... 13% 133M 1s -2024-03-07T01:08:04Z #15 1.715 16500K .......... .......... .......... .......... .......... 13% 106M 1s -2024-03-07T01:08:04Z #15 1.715 16550K .......... .......... .......... .......... .......... 13% 121M 1s -2024-03-07T01:08:04Z #15 1.717 16600K .......... .......... .......... .......... .......... 13% 118M 1s -2024-03-07T01:08:04Z #15 1.717 16650K .......... .......... .......... .......... .......... 13% 123M 1s -2024-03-07T01:08:04Z #15 1.717 16700K .......... .......... .......... .......... .......... 13% 112M 1s -2024-03-07T01:08:04Z #15 1.717 16750K .......... .......... .......... .......... .......... 13% 55.8M 1s -2024-03-07T01:08:04Z #15 1.718 16800K .......... .......... .......... .......... .......... 13% 24.3M 1s -2024-03-07T01:08:04Z #15 1.720 16850K .......... .......... .......... .......... .......... 13% 41.9M 1s -2024-03-07T01:08:04Z #15 1.721 16900K .......... .......... .......... .......... .......... 13% 112M 1s -2024-03-07T01:08:04Z #15 1.721 16950K .......... .......... .......... .......... .......... 13% 32.7M 1s -2024-03-07T01:08:04Z #15 1.724 17000K .......... .......... .......... .......... .......... 13% 117M 1s -2024-03-07T01:08:04Z #15 1.724 17050K .......... .......... .......... .......... .......... 13% 21.3M 1s -2024-03-07T01:08:04Z #15 1.726 17100K .......... .......... .......... .......... .......... 13% 41.0M 1s -2024-03-07T01:08:04Z #15 1.727 17150K .......... .......... .......... .......... .......... 13% 117M 1s -2024-03-07T01:08:04Z #15 1.727 17200K .......... .......... .......... .......... .......... 13% 37.2M 1s -2024-03-07T01:08:04Z #15 1.729 17250K .......... .......... .......... .......... .......... 13% 105M 1s -2024-03-07T01:08:04Z #15 1.729 17300K .......... .......... .......... .......... .......... 13% 688K 2s -2024-03-07T01:08:04Z #15 1.802 17350K .......... .......... .......... .......... .......... 13% 46.6M 2s -2024-03-07T01:08:04Z #15 1.803 17400K .......... .......... .......... .......... .......... 13% 46.8M 2s -2024-03-07T01:08:04Z #15 1.804 17450K .......... .......... .......... .......... .......... 13% 50.4M 2s -2024-03-07T01:08:04Z #15 1.805 17500K .......... .......... .......... .......... .......... 13% 43.4M 2s -2024-03-07T01:08:04Z #15 1.806 17550K .......... .......... .......... .......... .......... 13% 49.7M 2s -2024-03-07T01:08:04Z #15 1.807 17600K .......... .......... .......... .......... .......... 13% 49.9M 2s -2024-03-07T01:08:04Z #15 1.808 17650K .......... .......... .......... .......... .......... 13% 44.7M 2s -2024-03-07T01:08:04Z #15 1.809 17700K .......... .......... .......... .......... .......... 14% 50.0M 2s -2024-03-07T01:08:04Z #15 1.810 17750K .......... .......... .......... .......... .......... 14% 48.7M 2s -2024-03-07T01:08:04Z #15 1.811 17800K .......... .......... .......... .......... .......... 14% 122M 2s -2024-03-07T01:08:04Z #15 1.811 17850K .......... .......... .......... .......... .......... 14% 153M 2s -2024-03-07T01:08:04Z #15 1.812 17900K .......... .......... .......... .......... .......... 14% 133M 2s -2024-03-07T01:08:04Z #15 1.812 17950K .......... .......... .......... .......... .......... 14% 151M 2s -2024-03-07T01:08:04Z #15 1.812 18000K .......... .......... .......... .......... .......... 14% 123M 2s -2024-03-07T01:08:04Z #15 1.813 18050K .......... .......... .......... .......... .......... 14% 147M 2s -2024-03-07T01:08:04Z #15 1.813 18100K .......... .......... .......... .......... .......... 14% 163M 2s -2024-03-07T01:08:04Z #15 1.813 18150K .......... .......... .......... .......... .......... 14% 143M 2s -2024-03-07T01:08:04Z #15 1.814 18200K .......... .......... .......... .......... .......... 14% 129M 2s -2024-03-07T01:08:04Z #15 1.814 18250K .......... .......... .......... .......... .......... 14% 150M 2s -2024-03-07T01:08:04Z #15 1.814 18300K .......... .......... .......... .......... .......... 14% 161M 2s -2024-03-07T01:08:04Z #15 1.815 18350K .......... .......... .......... .......... .......... 14% 125M 2s -2024-03-07T01:08:04Z #15 1.815 18400K .......... .......... .......... .......... .......... 14% 159M 2s -2024-03-07T01:08:04Z #15 1.816 18450K .......... .......... .......... .......... .......... 14% 13.3M 2s -2024-03-07T01:08:04Z #15 1.828 18500K .......... .......... .......... .......... .......... 14% 61.7M 2s -2024-03-07T01:08:04Z #15 1.828 18550K .......... .......... .......... .......... .......... 14% 74.2M 2s -2024-03-07T01:08:04Z #15 1.828 18600K .......... .......... .......... .......... .......... 14% 68.6M 2s -2024-03-07T01:08:04Z #15 1.828 18650K .......... .......... .......... .......... .......... 14% 60.0M 2s -2024-03-07T01:08:04Z #15 1.828 18700K .......... .......... .......... .......... .......... 14% 111M 2s -2024-03-07T01:08:04Z #15 1.828 18750K .......... .......... .......... .......... .......... 14% 114M 2s -2024-03-07T01:08:04Z #15 1.828 18800K .......... .......... .......... .......... .......... 14% 108M 2s -2024-03-07T01:08:04Z #15 1.828 18850K .......... .......... .......... .......... .......... 14% 105M 2s -2024-03-07T01:08:04Z #15 1.828 18900K .......... .......... .......... .......... .......... 14% 108M 2s -2024-03-07T01:08:04Z #15 1.828 18950K .......... .......... .......... .......... .......... 14% 121M 2s -2024-03-07T01:08:04Z #15 1.828 19000K .......... .......... .......... .......... .......... 15% 118M 2s -2024-03-07T01:08:04Z #15 1.828 19050K .......... .......... .......... .......... .......... 15% 50.3M 2s -2024-03-07T01:08:04Z #15 1.828 19100K .......... .......... .......... .......... .......... 15% 96.5M 2s -2024-03-07T01:08:04Z #15 1.828 19150K .......... .......... .......... .......... .......... 15% 58.0M 2s -2024-03-07T01:08:04Z #15 1.828 19200K .......... .......... .......... .......... .......... 15% 8.82M 2s -2024-03-07T01:08:04Z #15 1.833 19250K .......... .......... .......... .......... .......... 15% 99.5M 2s -2024-03-07T01:08:04Z #15 1.833 19300K .......... .......... .......... .......... .......... 15% 122M 2s -2024-03-07T01:08:04Z #15 1.834 19350K .......... .......... .......... .......... .......... 15% 59.6M 2s -2024-03-07T01:08:04Z #15 1.839 19400K .......... .......... .......... .......... .......... 15% 112M 2s -2024-03-07T01:08:04Z #15 1.839 19450K .......... .......... .......... .......... .......... 15% 128M 2s -2024-03-07T01:08:04Z #15 1.839 19500K .......... .......... .......... .......... .......... 15% 81.0M 2s -2024-03-07T01:08:04Z #15 1.839 19550K .......... .......... .......... .......... .......... 15% 82.8M 2s -2024-03-07T01:08:04Z #15 1.839 19600K .......... .......... .......... .......... .......... 15% 112M 2s -2024-03-07T01:08:04Z #15 1.839 19650K .......... .......... .......... .......... .......... 15% 70.9M 2s -2024-03-07T01:08:04Z #15 1.839 19700K .......... .......... .......... .......... .......... 15% 79.1M 2s -2024-03-07T01:08:04Z #15 1.839 19750K .......... .......... .......... .......... .......... 15% 110M 2s -2024-03-07T01:08:04Z #15 1.839 19800K .......... .......... .......... .......... .......... 15% 121M 2s -2024-03-07T01:08:04Z #15 1.839 19850K .......... .......... .......... .......... .......... 15% 50.5M 2s -2024-03-07T01:08:04Z #15 1.843 19900K .......... .......... .......... .......... .......... 15% 132M 2s -2024-03-07T01:08:04Z #15 1.843 19950K .......... .......... .......... .......... .......... 15% 87.9M 2s -2024-03-07T01:08:04Z #15 1.843 20000K .......... .......... .......... .......... .......... 15% 82.8M 2s -2024-03-07T01:08:04Z #15 1.843 20050K .......... .......... .......... .......... .......... 15% 117M 2s -2024-03-07T01:08:04Z #15 1.843 20100K .......... .......... .......... .......... .......... 15% 71.6M 2s -2024-03-07T01:08:04Z #15 1.843 20150K .......... .......... .......... .......... .......... 15% 96.2M 2s -2024-03-07T01:08:04Z #15 1.843 20200K .......... .......... .......... .......... .......... 15% 47.9M 2s -2024-03-07T01:08:04Z #15 1.844 20250K .......... .......... .......... .......... .......... 16% 162M 2s -2024-03-07T01:08:04Z #15 1.844 20300K .......... .......... .......... .......... .......... 16% 149M 2s -2024-03-07T01:08:04Z #15 1.845 20350K .......... .......... .......... .......... .......... 16% 151M 2s -2024-03-07T01:08:04Z #15 1.845 20400K .......... .......... .......... .......... .......... 16% 33.9M 2s -2024-03-07T01:08:04Z #15 1.847 20450K .......... .......... .......... .......... .......... 16% 34.7M 2s -2024-03-07T01:08:04Z #15 1.851 20500K .......... .......... .......... .......... .......... 16% 142M 2s -2024-03-07T01:08:04Z #15 1.851 20550K .......... .......... .......... .......... .......... 16% 169M 2s -2024-03-07T01:08:04Z #15 1.851 20600K .......... .......... .......... .......... .......... 16% 123M 2s -2024-03-07T01:08:04Z #15 1.851 20650K .......... .......... .......... .......... .......... 16% 114M 2s -2024-03-07T01:08:04Z #15 1.851 20700K .......... .......... .......... .......... .......... 16% 156M 2s -2024-03-07T01:08:04Z #15 1.851 20750K .......... .......... .......... .......... .......... 16% 149M 2s -2024-03-07T01:08:04Z #15 1.851 20800K .......... .......... .......... .......... .......... 16% 78.4M 2s -2024-03-07T01:08:04Z #15 1.851 20850K .......... .......... .......... .......... .......... 16% 17.5M 2s -2024-03-07T01:08:04Z #15 1.854 20900K .......... .......... .......... .......... .......... 16% 54.4M 2s -2024-03-07T01:08:04Z #15 1.854 20950K .......... .......... .......... .......... .......... 16% 115M 2s -2024-03-07T01:08:04Z #15 1.855 21000K .......... .......... .......... .......... .......... 16% 81.7M 2s -2024-03-07T01:08:04Z #15 1.856 21050K .......... .......... .......... .......... .......... 16% 81.0M 2s -2024-03-07T01:08:04Z #15 1.856 21100K .......... .......... .......... .......... .......... 16% 88.8M 2s -2024-03-07T01:08:04Z #15 1.857 21150K .......... .......... .......... .......... .......... 16% 46.3M 2s -2024-03-07T01:08:04Z #15 1.858 21200K .......... .......... .......... .......... .......... 16% 18.6M 2s -2024-03-07T01:08:04Z #15 1.860 21250K .......... .......... .......... .......... .......... 16% 74.8M 2s -2024-03-07T01:08:04Z #15 1.861 21300K .......... .......... .......... .......... .......... 16% 58.6M 2s -2024-03-07T01:08:04Z #15 1.862 21350K .......... .......... .......... .......... .......... 16% 78.0M 2s -2024-03-07T01:08:04Z #15 1.862 21400K .......... .......... .......... .......... .......... 16% 32.7M 2s -2024-03-07T01:08:04Z #15 1.864 21450K .......... .......... .......... .......... .......... 16% 92.2M 2s -2024-03-07T01:08:04Z #15 1.864 21500K .......... .......... .......... .......... .......... 16% 28.6M 2s -2024-03-07T01:08:04Z #15 1.871 21550K .......... .......... .......... .......... .......... 17% 126M 2s -2024-03-07T01:08:04Z #15 1.871 21600K .......... .......... .......... .......... .......... 17% 106M 2s -2024-03-07T01:08:04Z #15 1.871 21650K .......... .......... .......... .......... .......... 17% 116M 2s -2024-03-07T01:08:04Z #15 1.871 21700K .......... .......... .......... .......... .......... 17% 120M 2s -2024-03-07T01:08:04Z #15 1.871 21750K .......... .......... .......... .......... .......... 17% 119M 2s -2024-03-07T01:08:04Z #15 1.871 21800K .......... .......... .......... .......... .......... 17% 117M 2s -2024-03-07T01:08:04Z #15 1.871 21850K .......... .......... .......... .......... .......... 17% 115M 2s -2024-03-07T01:08:04Z #15 1.871 21900K .......... .......... .......... .......... .......... 17% 64.5M 2s -2024-03-07T01:08:04Z #15 1.871 21950K .......... .......... .......... .......... .......... 17% 78.9M 2s -2024-03-07T01:08:04Z #15 1.871 22000K .......... .......... .......... .......... .......... 17% 78.4M 2s -2024-03-07T01:08:04Z #15 1.871 22050K .......... .......... .......... .......... .......... 17% 61.3M 2s -2024-03-07T01:08:04Z #15 1.872 22100K .......... .......... .......... .......... .......... 17% 57.2M 2s -2024-03-07T01:08:04Z #15 1.873 22150K .......... .......... .......... .......... .......... 17% 148M 2s -2024-03-07T01:08:04Z #15 1.873 22200K .......... .......... .......... .......... .......... 17% 145M 2s -2024-03-07T01:08:04Z #15 1.874 22250K .......... .......... .......... .......... .......... 17% 156M 2s -2024-03-07T01:08:04Z #15 1.874 22300K .......... .......... .......... .......... .......... 17% 126M 2s -2024-03-07T01:08:04Z #15 1.874 22350K .......... .......... .......... .......... .......... 17% 79.1M 2s -2024-03-07T01:08:04Z #15 1.875 22400K .......... .......... .......... .......... .......... 17% 106M 2s -2024-03-07T01:08:04Z #15 1.875 22450K .......... .......... .......... .......... .......... 17% 84.0M 2s -2024-03-07T01:08:04Z #15 1.876 22500K .......... .......... .......... .......... .......... 17% 68.3M 2s -2024-03-07T01:08:04Z #15 1.877 22550K .......... .......... .......... .......... .......... 17% 151M 2s -2024-03-07T01:08:04Z #15 1.877 22600K .......... .......... .......... .......... .......... 17% 111M 2s -2024-03-07T01:08:04Z #15 1.877 22650K .......... .......... .......... .......... .......... 17% 159M 2s -2024-03-07T01:08:04Z #15 1.878 22700K .......... .......... .......... .......... .......... 17% 110M 2s -2024-03-07T01:08:04Z #15 1.878 22750K .......... .......... .......... .......... .......... 17% 151M 2s -2024-03-07T01:08:04Z #15 1.879 22800K .......... .......... .......... .......... .......... 18% 162M 2s -2024-03-07T01:08:04Z #15 1.879 22850K .......... .......... .......... .......... .......... 18% 168M 2s -2024-03-07T01:08:04Z #15 1.879 22900K .......... .......... .......... .......... .......... 18% 137M 2s -2024-03-07T01:08:04Z #15 1.879 22950K .......... .......... .......... .......... .......... 18% 58.8M 2s -2024-03-07T01:08:04Z #15 1.880 23000K .......... .......... .......... .......... .......... 18% 165M 2s -2024-03-07T01:08:04Z #15 1.881 23050K .......... .......... .......... .......... .......... 18% 56.2M 2s -2024-03-07T01:08:04Z #15 1.881 23100K .......... .......... .......... .......... .......... 18% 126M 2s -2024-03-07T01:08:04Z #15 1.882 23150K .......... .......... .......... .......... .......... 18% 161M 2s -2024-03-07T01:08:04Z #15 1.882 23200K .......... .......... .......... .......... .......... 18% 119M 2s -2024-03-07T01:08:04Z #15 1.883 23250K .......... .......... .......... .......... .......... 18% 143M 2s -2024-03-07T01:08:04Z #15 1.883 23300K .......... .......... .......... .......... .......... 18% 96.5M 2s -2024-03-07T01:08:04Z #15 1.884 23350K .......... .......... .......... .......... .......... 18% 128M 2s -2024-03-07T01:08:04Z #15 1.884 23400K .......... .......... .......... .......... .......... 18% 173M 2s -2024-03-07T01:08:04Z #15 1.884 23450K .......... .......... .......... .......... .......... 18% 90.7M 2s -2024-03-07T01:08:04Z #15 1.884 23500K .......... .......... .......... .......... .......... 18% 93.9M 2s -2024-03-07T01:08:04Z #15 1.885 23550K .......... .......... .......... .......... .......... 18% 138M 2s -2024-03-07T01:08:04Z #15 1.885 23600K .......... .......... .......... .......... .......... 18% 96.6M 2s -2024-03-07T01:08:04Z #15 1.886 23650K .......... .......... .......... .......... .......... 18% 59.7M 2s -2024-03-07T01:08:04Z #15 1.887 23700K .......... .......... .......... .......... .......... 18% 162M 2s -2024-03-07T01:08:04Z #15 1.887 23750K .......... .......... .......... .......... .......... 18% 106M 2s -2024-03-07T01:08:04Z #15 1.888 23800K .......... .......... .......... .......... .......... 18% 145M 2s -2024-03-07T01:08:04Z #15 1.888 23850K .......... .......... .......... .......... .......... 18% 138M 2s -2024-03-07T01:08:04Z #15 1.888 23900K .......... .......... .......... .......... .......... 18% 147M 2s -2024-03-07T01:08:04Z #15 1.889 23950K .......... .......... .......... .......... .......... 18% 132M 2s -2024-03-07T01:08:04Z #15 1.889 24000K .......... .......... .......... .......... .......... 18% 155M 2s -2024-03-07T01:08:04Z #15 1.889 24050K .......... .......... .......... .......... .......... 19% 61.4M 2s -2024-03-07T01:08:04Z #15 1.890 24100K .......... .......... .......... .......... .......... 19% 96.6M 2s -2024-03-07T01:08:04Z #15 1.891 24150K .......... .......... .......... .......... .......... 19% 99.2M 2s -2024-03-07T01:08:04Z #15 1.891 24200K .......... .......... .......... .......... .......... 19% 153M 2s -2024-03-07T01:08:04Z #15 1.891 24250K .......... .......... .......... .......... .......... 19% 134M 2s -2024-03-07T01:08:04Z #15 1.892 24300K .......... .......... .......... .......... .......... 19% 87.0M 2s -2024-03-07T01:08:04Z #15 1.892 24350K .......... .......... .......... .......... .......... 19% 162M 2s -2024-03-07T01:08:04Z #15 1.892 24400K .......... .......... .......... .......... .......... 19% 148M 2s -2024-03-07T01:08:04Z #15 1.893 24450K .......... .......... .......... .......... .......... 19% 111M 2s -2024-03-07T01:08:04Z #15 1.893 24500K .......... .......... .......... .......... .......... 19% 83.4M 2s -2024-03-07T01:08:04Z #15 1.894 24550K .......... .......... .......... .......... .......... 19% 164M 2s -2024-03-07T01:08:04Z #15 1.894 24600K .......... .......... .......... .......... .......... 19% 168M 2s -2024-03-07T01:08:04Z #15 1.894 24650K .......... .......... .......... .......... .......... 19% 65.6M 2s -2024-03-07T01:08:04Z #15 1.895 24700K .......... .......... .......... .......... .......... 19% 104M 2s -2024-03-07T01:08:04Z #15 1.896 24750K .......... .......... .......... .......... .......... 19% 155M 2s -2024-03-07T01:08:04Z #15 1.897 24800K .......... .......... .......... .......... .......... 19% 84.5M 2s -2024-03-07T01:08:04Z #15 1.898 24850K .......... .......... .......... .......... .......... 19% 110M 2s -2024-03-07T01:08:04Z #15 1.898 24900K .......... .......... .......... .......... .......... 19% 124M 2s -2024-03-07T01:08:04Z #15 1.898 24950K .......... .......... .......... .......... .......... 19% 108M 2s -2024-03-07T01:08:04Z #15 1.898 25000K .......... .......... .......... .......... .......... 19% 93.8M 2s -2024-03-07T01:08:04Z #15 1.898 25050K .......... .......... .......... .......... .......... 19% 147M 2s -2024-03-07T01:08:04Z #15 1.899 25100K .......... .......... .......... .......... .......... 19% 65.0M 2s -2024-03-07T01:08:04Z #15 1.900 25150K .......... .......... .......... .......... .......... 19% 73.3M 2s -2024-03-07T01:08:04Z #15 1.901 25200K .......... .......... .......... .......... .......... 19% 41.9M 2s -2024-03-07T01:08:04Z #15 1.901 25250K .......... .......... .......... .......... .......... 19% 108M 2s -2024-03-07T01:08:04Z #15 1.902 25300K .......... .......... .......... .......... .......... 19% 122M 2s -2024-03-07T01:08:04Z #15 1.902 25350K .......... .......... .......... .......... .......... 20% 143M 2s -2024-03-07T01:08:04Z #15 1.903 25400K .......... .......... .......... .......... .......... 20% 110M 2s -2024-03-07T01:08:04Z #15 1.903 25450K .......... .......... .......... .......... .......... 20% 160M 2s -2024-03-07T01:08:04Z #15 1.903 25500K .......... .......... .......... .......... .......... 20% 146M 2s -2024-03-07T01:08:04Z #15 1.904 25550K .......... .......... .......... .......... .......... 20% 124M 2s -2024-03-07T01:08:04Z #15 1.904 25600K .......... .......... .......... .......... .......... 20% 147M 2s -2024-03-07T01:08:04Z #15 1.905 25650K .......... .......... .......... .......... .......... 20% 69.0M 2s -2024-03-07T01:08:04Z #15 1.905 25700K .......... .......... .......... .......... .......... 20% 64.5M 2s -2024-03-07T01:08:04Z #15 1.906 25750K .......... .......... .......... .......... .......... 20% 92.1M 2s -2024-03-07T01:08:04Z #15 1.906 25800K .......... .......... .......... .......... .......... 20% 135M 2s -2024-03-07T01:08:04Z #15 1.906 25850K .......... .......... .......... .......... .......... 20% 166M 2s -2024-03-07T01:08:04Z #15 1.907 25900K .......... .......... .......... .......... .......... 20% 116M 2s -2024-03-07T01:08:04Z #15 1.907 25950K .......... .......... .......... .......... .......... 20% 124M 2s -2024-03-07T01:08:04Z #15 1.908 26000K .......... .......... .......... .......... .......... 20% 154M 2s -2024-03-07T01:08:04Z #15 1.908 26050K .......... .......... .......... .......... .......... 20% 88.0M 2s -2024-03-07T01:08:04Z #15 1.908 26100K .......... .......... .......... .......... .......... 20% 66.8M 2s -2024-03-07T01:08:04Z #15 1.909 26150K .......... .......... .......... .......... .......... 20% 140M 2s -2024-03-07T01:08:04Z #15 1.910 26200K .......... .......... .......... .......... .......... 20% 112M 2s -2024-03-07T01:08:04Z #15 1.910 26250K .......... .......... .......... .......... .......... 20% 63.1M 2s -2024-03-07T01:08:04Z #15 1.911 26300K .......... .......... .......... .......... .......... 20% 164M 2s -2024-03-07T01:08:04Z #15 1.911 26350K .......... .......... .......... .......... .......... 20% 126M 2s -2024-03-07T01:08:04Z #15 1.912 26400K .......... .......... .......... .......... .......... 20% 117M 2s -2024-03-07T01:08:04Z #15 1.912 26450K .......... .......... .......... .......... .......... 20% 134M 2s -2024-03-07T01:08:04Z #15 1.912 26500K .......... .......... .......... .......... .......... 20% 60.8M 2s -2024-03-07T01:08:04Z #15 1.914 26550K .......... .......... .......... .......... .......... 20% 28.0M 2s -2024-03-07T01:08:04Z #15 1.915 26600K .......... .......... .......... .......... .......... 21% 19.2M 2s -2024-03-07T01:08:04Z #15 1.919 26650K .......... .......... .......... .......... .......... 21% 174M 2s -2024-03-07T01:08:04Z #15 1.919 26700K .......... .......... .......... .......... .......... 21% 157M 2s -2024-03-07T01:08:04Z #15 1.919 26750K .......... .......... .......... .......... .......... 21% 183M 2s -2024-03-07T01:08:04Z #15 1.919 26800K .......... .......... .......... .......... .......... 21% 152M 2s -2024-03-07T01:08:04Z #15 1.919 26850K .......... .......... .......... .......... .......... 21% 171M 2s -2024-03-07T01:08:04Z #15 1.919 26900K .......... .......... .......... .......... .......... 21% 141M 2s -2024-03-07T01:08:04Z #15 1.919 26950K .......... .......... .......... .......... .......... 21% 38.4M 2s -2024-03-07T01:08:04Z #15 1.920 27000K .......... .......... .......... .......... .......... 21% 23.7M 2s -2024-03-07T01:08:04Z #15 1.923 27050K .......... .......... .......... .......... .......... 21% 100M 2s -2024-03-07T01:08:04Z #15 1.927 27100K .......... .......... .......... .......... .......... 21% 162M 2s -2024-03-07T01:08:04Z #15 1.927 27150K .......... .......... .......... .......... .......... 21% 142M 2s -2024-03-07T01:08:04Z #15 1.927 27200K .......... .......... .......... .......... .......... 21% 132M 2s -2024-03-07T01:08:04Z #15 1.927 27250K .......... .......... .......... .......... .......... 21% 172M 2s -2024-03-07T01:08:04Z #15 1.927 27300K .......... .......... .......... .......... .......... 21% 173M 2s -2024-03-07T01:08:04Z #15 1.927 27350K .......... .......... .......... .......... .......... 21% 144M 2s -2024-03-07T01:08:04Z #15 1.927 27400K .......... .......... .......... .......... .......... 21% 64.1M 2s -2024-03-07T01:08:04Z #15 1.927 27450K .......... .......... .......... .......... .......... 21% 169M 2s -2024-03-07T01:08:04Z #15 1.927 27500K .......... .......... .......... .......... .......... 21% 123M 2s -2024-03-07T01:08:04Z #15 1.927 27550K .......... .......... .......... .......... .......... 21% 55.7M 2s -2024-03-07T01:08:04Z #15 1.927 27600K .......... .......... .......... .......... .......... 21% 46.0M 2s -2024-03-07T01:08:04Z #15 1.928 27650K .......... .......... .......... .......... .......... 21% 43.8M 2s -2024-03-07T01:08:04Z #15 1.930 27700K .......... .......... .......... .......... .......... 21% 38.4M 2s -2024-03-07T01:08:04Z #15 1.931 27750K .......... .......... .......... .......... .......... 21% 42.4M 2s -2024-03-07T01:08:04Z #15 1.935 27800K .......... .......... .......... .......... .......... 21% 134M 2s -2024-03-07T01:08:04Z #15 1.935 27850K .......... .......... .......... .......... .......... 22% 162M 2s -2024-03-07T01:08:04Z #15 1.935 27900K .......... .......... .......... .......... .......... 22% 171M 2s -2024-03-07T01:08:04Z #15 1.935 27950K .......... .......... .......... .......... .......... 22% 156M 2s -2024-03-07T01:08:04Z #15 1.935 28000K .......... .......... .......... .......... .......... 22% 148M 2s -2024-03-07T01:08:04Z #15 1.935 28050K .......... .......... .......... .......... .......... 22% 67.1M 2s -2024-03-07T01:08:04Z #15 1.935 28100K .......... .......... .......... .......... .......... 22% 170M 2s -2024-03-07T01:08:04Z #15 1.935 28150K .......... .......... .......... .......... .......... 22% 52.8M 2s -2024-03-07T01:08:04Z #15 1.936 28200K .......... .......... .......... .......... .......... 22% 33.3M 2s -2024-03-07T01:08:04Z #15 1.937 28250K .......... .......... .......... .......... .......... 22% 40.7M 2s -2024-03-07T01:08:04Z #15 1.938 28300K .......... .......... .......... .......... .......... 22% 44.4M 2s -2024-03-07T01:08:04Z #15 1.939 28350K .......... .......... .......... .......... .......... 22% 17.6M 2s -2024-03-07T01:08:04Z #15 1.948 28400K .......... .......... .......... .......... .......... 22% 148M 2s -2024-03-07T01:08:04Z #15 1.948 28450K .......... .......... .......... .......... .......... 22% 174M 2s -2024-03-07T01:08:04Z #15 1.948 28500K .......... .......... .......... .......... .......... 22% 154M 2s -2024-03-07T01:08:04Z #15 1.948 28550K .......... .......... .......... .......... .......... 22% 170M 2s -2024-03-07T01:08:04Z #15 1.948 28600K .......... .......... .......... .......... .......... 22% 60.7M 2s -2024-03-07T01:08:04Z #15 1.948 28650K .......... .......... .......... .......... .......... 22% 181M 2s -2024-03-07T01:08:04Z #15 1.948 28700K .......... .......... .......... .......... .......... 22% 57.0M 2s -2024-03-07T01:08:04Z #15 1.948 28750K .......... .......... .......... .......... .......... 22% 171M 2s -2024-03-07T01:08:04Z #15 1.948 28800K .......... .......... .......... .......... .......... 22% 156M 2s -2024-03-07T01:08:04Z #15 1.948 28850K .......... .......... .......... .......... .......... 22% 122M 2s -2024-03-07T01:08:04Z #15 1.948 28900K .......... .......... .......... .......... .......... 22% 122M 2s -2024-03-07T01:08:04Z #15 1.948 28950K .......... .......... .......... .......... .......... 22% 160M 2s -2024-03-07T01:08:04Z #15 1.948 29000K .......... .......... .......... .......... .......... 22% 108M 2s -2024-03-07T01:08:04Z #15 1.948 29050K .......... .......... .......... .......... .......... 22% 43.6M 2s -2024-03-07T01:08:04Z #15 1.948 29100K .......... .......... .......... .......... .......... 22% 31.9M 2s -2024-03-07T01:08:04Z #15 1.950 29150K .......... .......... .......... .......... .......... 23% 42.3M 2s -2024-03-07T01:08:04Z #15 1.955 29200K .......... .......... .......... .......... .......... 23% 167M 2s -2024-03-07T01:08:04Z #15 1.955 29250K .......... .......... .......... .......... .......... 23% 146M 2s -2024-03-07T01:08:04Z #15 1.955 29300K .......... .......... .......... .......... .......... 23% 133M 2s -2024-03-07T01:08:04Z #15 1.955 29350K .......... .......... .......... .......... .......... 23% 160M 2s -2024-03-07T01:08:04Z #15 1.955 29400K .......... .......... .......... .......... .......... 23% 172M 2s -2024-03-07T01:08:04Z #15 1.955 29450K .......... .......... .......... .......... .......... 23% 129M 2s -2024-03-07T01:08:04Z #15 1.955 29500K .......... .......... .......... .......... .......... 23% 85.5M 2s -2024-03-07T01:08:04Z #15 1.955 29550K .......... .......... .......... .......... .......... 23% 97.2M 2s -2024-03-07T01:08:04Z #15 1.955 29600K .......... .......... .......... .......... .......... 23% 159M 2s -2024-03-07T01:08:04Z #15 1.955 29650K .......... .......... .......... .......... .......... 23% 59.9M 2s -2024-03-07T01:08:04Z #15 1.955 29700K .......... .......... .......... .......... .......... 23% 83.6M 1s -2024-03-07T01:08:04Z #15 1.956 29750K .......... .......... .......... .......... .......... 23% 27.6M 2s -2024-03-07T01:08:04Z #15 1.958 29800K .......... .......... .......... .......... .......... 23% 43.7M 2s -2024-03-07T01:08:04Z #15 1.959 29850K .......... .......... .......... .......... .......... 23% 43.9M 2s -2024-03-07T01:08:04Z #15 1.960 29900K .......... .......... .......... .......... .......... 23% 37.5M 2s -2024-03-07T01:08:04Z #15 1.961 29950K .......... .......... .......... .......... .......... 23% 83.2M 2s -2024-03-07T01:08:04Z #15 1.963 30000K .......... .......... .......... .......... .......... 23% 159M 1s -2024-03-07T01:08:04Z #15 1.963 30050K .......... .......... .......... .......... .......... 23% 164M 1s -2024-03-07T01:08:04Z #15 1.963 30100K .......... .......... .......... .......... .......... 23% 52.8M 1s -2024-03-07T01:08:04Z #15 1.963 30150K .......... .......... .......... .......... .......... 23% 76.9M 1s -2024-03-07T01:08:04Z #15 1.964 30200K .......... .......... .......... .......... .......... 23% 30.0M 1s -2024-03-07T01:08:04Z #15 1.967 30250K .......... .......... .......... .......... .......... 23% 161M 1s -2024-03-07T01:08:04Z #15 1.967 30300K .......... .......... .......... .......... .......... 23% 169M 1s -2024-03-07T01:08:04Z #15 1.967 30350K .......... .......... .......... .......... .......... 23% 115M 1s -2024-03-07T01:08:04Z #15 1.967 30400K .......... .......... .......... .......... .......... 24% 158M 1s -2024-03-07T01:08:04Z #15 1.967 30450K .......... .......... .......... .......... .......... 24% 169M 1s -2024-03-07T01:08:04Z #15 1.967 30500K .......... .......... .......... .......... .......... 24% 157M 1s -2024-03-07T01:08:04Z #15 1.967 30550K .......... .......... .......... .......... .......... 24% 30.6M 1s -2024-03-07T01:08:04Z #15 1.969 30600K .......... .......... .......... .......... .......... 24% 31.0M 1s -2024-03-07T01:08:04Z #15 1.971 30650K .......... .......... .......... .......... .......... 24% 41.2M 1s -2024-03-07T01:08:04Z #15 1.972 30700K .......... .......... .......... .......... .......... 24% 38.1M 1s -2024-03-07T01:08:04Z #15 1.973 30750K .......... .......... .......... .......... .......... 24% 45.9M 1s -2024-03-07T01:08:04Z #15 1.974 30800K .......... .......... .......... .......... .......... 24% 36.8M 1s -2024-03-07T01:08:04Z #15 1.976 30850K .......... .......... .......... .......... .......... 24% 15.0M 1s -2024-03-07T01:08:04Z #15 1.979 30900K .......... .......... .......... .......... .......... 24% 9.58M 2s -2024-03-07T01:08:04Z #15 1.984 30950K .......... .......... .......... .......... .......... 24% 156M 2s -2024-03-07T01:08:04Z #15 1.984 31000K .......... .......... .......... .......... .......... 24% 55.6M 2s -2024-03-07T01:08:04Z #15 1.985 31050K .......... .......... .......... .......... .......... 24% 66.5M 2s -2024-03-07T01:08:04Z #15 1.986 31100K .......... .......... .......... .......... .......... 24% 93.3M 2s -2024-03-07T01:08:04Z #15 1.986 31150K .......... .......... .......... .......... .......... 24% 65.8M 2s -2024-03-07T01:08:04Z #15 1.987 31200K .......... .......... .......... .......... .......... 24% 10.3M 2s -2024-03-07T01:08:04Z #15 1.992 31250K .......... .......... .......... .......... .......... 24% 160M 2s -2024-03-07T01:08:04Z #15 1.992 31300K .......... .......... .......... .......... .......... 24% 155M 2s -2024-03-07T01:08:04Z #15 1.992 31350K .......... .......... .......... .......... .......... 24% 175M 2s -2024-03-07T01:08:04Z #15 1.993 31400K .......... .......... .......... .......... .......... 24% 172M 2s -2024-03-07T01:08:04Z #15 1.993 31450K .......... .......... .......... .......... .......... 24% 107M 2s -2024-03-07T01:08:04Z #15 1.993 31500K .......... .......... .......... .......... .......... 24% 147M 2s -2024-03-07T01:08:04Z #15 1.994 31550K .......... .......... .......... .......... .......... 24% 170M 1s -2024-03-07T01:08:04Z #15 1.994 31600K .......... .......... .......... .......... .......... 24% 159M 1s -2024-03-07T01:08:04Z #15 1.994 31650K .......... .......... .......... .......... .......... 25% 174M 1s -2024-03-07T01:08:04Z #15 1.994 31700K .......... .......... .......... .......... .......... 25% 168M 1s -2024-03-07T01:08:04Z #15 1.995 31750K .......... .......... .......... .......... .......... 25% 150M 1s -2024-03-07T01:08:04Z #15 1.995 31800K .......... .......... .......... .......... .......... 25% 135M 1s -2024-03-07T01:08:04Z #15 1.995 31850K .......... .......... .......... .......... .......... 25% 168M 1s -2024-03-07T01:08:04Z #15 1.996 31900K .......... .......... .......... .......... .......... 25% 152M 1s -2024-03-07T01:08:04Z #15 1.996 31950K .......... .......... .......... .......... .......... 25% 153M 1s -2024-03-07T01:08:04Z #15 1.997 32000K .......... .......... .......... .......... .......... 25% 156M 1s -2024-03-07T01:08:04Z #15 1.997 32050K .......... .......... .......... .......... .......... 25% 165M 1s -2024-03-07T01:08:04Z #15 1.997 32100K .......... .......... .......... .......... .......... 25% 181M 1s -2024-03-07T01:08:04Z #15 1.997 32150K .......... .......... .......... .......... .......... 25% 150M 1s -2024-03-07T01:08:04Z #15 1.998 32200K .......... .......... .......... .......... .......... 25% 176M 1s -2024-03-07T01:08:04Z #15 1.998 32250K .......... .......... .......... .......... .......... 25% 177M 1s -2024-03-07T01:08:04Z #15 1.998 32300K .......... .......... .......... .......... .......... 25% 174M 1s -2024-03-07T01:08:04Z #15 1.999 32350K .......... .......... .......... .......... .......... 25% 155M 1s -2024-03-07T01:08:04Z #15 1.999 32400K .......... .......... .......... .......... .......... 25% 175M 1s -2024-03-07T01:08:04Z #15 1.999 32450K .......... .......... .......... .......... .......... 25% 162M 1s -2024-03-07T01:08:04Z #15 2.000 32500K .......... .......... .......... .......... .......... 25% 137M 1s -2024-03-07T01:08:04Z #15 2.000 32550K .......... .......... .......... .......... .......... 25% 142M 1s -2024-03-07T01:08:04Z #15 2.000 32600K .......... .......... .......... .......... .......... 25% 178M 1s -2024-03-07T01:08:04Z #15 2.000 32650K .......... .......... .......... .......... .......... 25% 176M 1s -2024-03-07T01:08:04Z #15 2.001 32700K .......... .......... .......... .......... .......... 25% 148M 1s -2024-03-07T01:08:04Z #15 2.001 32750K .......... .......... .......... .......... .......... 25% 176M 1s -2024-03-07T01:08:04Z #15 2.001 32800K .......... .......... .......... .......... .......... 25% 175M 1s -2024-03-07T01:08:04Z #15 2.002 32850K .......... .......... .......... .......... .......... 25% 174M 1s -2024-03-07T01:08:04Z #15 2.002 32900K .......... .......... .......... .......... .......... 25% 151M 1s -2024-03-07T01:08:04Z #15 2.002 32950K .......... .......... .......... .......... .......... 26% 167M 1s -2024-03-07T01:08:04Z #15 2.002 33000K .......... .......... .......... .......... .......... 26% 154M 1s -2024-03-07T01:08:04Z #15 2.003 33050K .......... .......... .......... .......... .......... 26% 173M 1s -2024-03-07T01:08:04Z #15 2.003 33100K .......... .......... .......... .......... .......... 26% 171M 1s -2024-03-07T01:08:04Z #15 2.003 33150K .......... .......... .......... .......... .......... 26% 11.1M 1s -2024-03-07T01:08:04Z #15 2.008 33200K .......... .......... .......... .......... .......... 26% 156M 1s -2024-03-07T01:08:04Z #15 2.008 33250K .......... .......... .......... .......... .......... 26% 174M 1s -2024-03-07T01:08:04Z #15 2.008 33300K .......... .......... .......... .......... .......... 26% 177M 1s -2024-03-07T01:08:04Z #15 2.009 33350K .......... .......... .......... .......... .......... 26% 141M 1s -2024-03-07T01:08:04Z #15 2.009 33400K .......... .......... .......... .......... .......... 26% 173M 1s -2024-03-07T01:08:04Z #15 2.009 33450K .......... .......... .......... .......... .......... 26% 171M 1s -2024-03-07T01:08:04Z #15 2.010 33500K .......... .......... .......... .......... .......... 26% 174M 1s -2024-03-07T01:08:04Z #15 2.010 33550K .......... .......... .......... .......... .......... 26% 160M 1s -2024-03-07T01:08:04Z #15 2.010 33600K .......... .......... .......... .......... .......... 26% 177M 1s -2024-03-07T01:08:04Z #15 2.010 33650K .......... .......... .......... .......... .......... 26% 147M 1s -2024-03-07T01:08:04Z #15 2.011 33700K .......... .......... .......... .......... .......... 26% 177M 1s -2024-03-07T01:08:04Z #15 2.011 33750K .......... .......... .......... .......... .......... 26% 175M 1s -2024-03-07T01:08:04Z #15 2.011 33800K .......... .......... .......... .......... .......... 26% 153M 1s -2024-03-07T01:08:04Z #15 2.012 33850K .......... .......... .......... .......... .......... 26% 162M 1s -2024-03-07T01:08:04Z #15 2.012 33900K .......... .......... .......... .......... .......... 26% 164M 1s -2024-03-07T01:08:04Z #15 2.012 33950K .......... .......... .......... .......... .......... 26% 164M 1s -2024-03-07T01:08:04Z #15 2.013 34000K .......... .......... .......... .......... .......... 26% 157M 1s -2024-03-07T01:08:04Z #15 2.013 34050K .......... .......... .......... .......... .......... 26% 176M 1s -2024-03-07T01:08:04Z #15 2.013 34100K .......... .......... .......... .......... .......... 26% 176M 1s -2024-03-07T01:08:04Z #15 2.013 34150K .......... .......... .......... .......... .......... 26% 165M 1s -2024-03-07T01:08:04Z #15 2.014 34200K .......... .......... .......... .......... .......... 27% 154M 1s -2024-03-07T01:08:04Z #15 2.014 34250K .......... .......... .......... .......... .......... 27% 174M 1s -2024-03-07T01:08:04Z #15 2.014 34300K .......... .......... .......... .......... .......... 27% 176M 1s -2024-03-07T01:08:04Z #15 2.015 34350K .......... .......... .......... .......... .......... 27% 164M 1s -2024-03-07T01:08:04Z #15 2.015 34400K .......... .......... .......... .......... .......... 27% 153M 1s -2024-03-07T01:08:04Z #15 2.015 34450K .......... .......... .......... .......... .......... 27% 11.2M 1s -2024-03-07T01:08:04Z #15 2.020 34500K .......... .......... .......... .......... .......... 27% 127M 1s -2024-03-07T01:08:04Z #15 2.020 34550K .......... .......... .......... .......... .......... 27% 137M 1s -2024-03-07T01:08:04Z #15 2.021 34600K .......... .......... .......... .......... .......... 27% 119M 1s -2024-03-07T01:08:04Z #15 2.021 34650K .......... .......... .......... .......... .......... 27% 134M 1s -2024-03-07T01:08:04Z #15 2.021 34700K .......... .......... .......... .......... .......... 27% 228K 2s -2024-03-07T01:08:04Z #15 2.241 34750K .......... .......... .......... .......... .......... 27% 16.7M 2s -2024-03-07T01:08:04Z #15 2.244 34800K .......... .......... .......... .......... .......... 27% 48.8M 2s -2024-03-07T01:08:04Z #15 2.245 34850K .......... .......... .......... .......... .......... 27% 62.5M 2s -2024-03-07T01:08:04Z #15 2.246 34900K .......... .......... .......... .......... .......... 27% 136M 2s -2024-03-07T01:08:04Z #15 2.246 34950K .......... .......... .......... .......... .......... 27% 117M 2s -2024-03-07T01:08:04Z #15 2.246 35000K .......... .......... .......... .......... .......... 27% 146M 2s -2024-03-07T01:08:04Z #15 2.246 35050K .......... .......... .......... .......... .......... 27% 136M 2s -2024-03-07T01:08:04Z #15 2.247 35100K .......... .......... .......... .......... .......... 27% 101M 2s -2024-03-07T01:08:04Z #15 2.248 35150K .......... .......... .......... .......... .......... 27% 77.1M 2s -2024-03-07T01:08:04Z #15 2.248 35200K .......... .......... .......... .......... .......... 27% 154M 2s -2024-03-07T01:08:04Z #15 2.249 35250K .......... .......... .......... .......... .......... 27% 132M 2s -2024-03-07T01:08:04Z #15 2.249 35300K .......... .......... .......... .......... .......... 27% 120M 2s -2024-03-07T01:08:04Z #15 2.249 35350K .......... .......... .......... .......... .......... 27% 143M 2s -2024-03-07T01:08:04Z #15 2.250 35400K .......... .......... .......... .......... .......... 27% 116M 2s -2024-03-07T01:08:04Z #15 2.250 35450K .......... .......... .......... .......... .......... 28% 140M 2s -2024-03-07T01:08:04Z #15 2.250 35500K .......... .......... .......... .......... .......... 28% 126M 2s -2024-03-07T01:08:04Z #15 2.251 35550K .......... .......... .......... .......... .......... 28% 143M 2s -2024-03-07T01:08:04Z #15 2.251 35600K .......... .......... .......... .......... .......... 28% 111M 2s -2024-03-07T01:08:04Z #15 2.252 35650K .......... .......... .......... .......... .......... 28% 135M 2s -2024-03-07T01:08:04Z #15 2.252 35700K .......... .......... .......... .......... .......... 28% 133M 2s -2024-03-07T01:08:04Z #15 2.252 35750K .......... .......... .......... .......... .......... 28% 127M 2s -2024-03-07T01:08:04Z #15 2.253 35800K .......... .......... .......... .......... .......... 28% 127M 2s -2024-03-07T01:08:04Z #15 2.253 35850K .......... .......... .......... .......... .......... 28% 117M 2s -2024-03-07T01:08:04Z #15 2.254 35900K .......... .......... .......... .......... .......... 28% 115M 2s -2024-03-07T01:08:04Z #15 2.254 35950K .......... .......... .......... .......... .......... 28% 83.3M 2s -2024-03-07T01:08:04Z #15 2.254 36000K .......... .......... .......... .......... .......... 28% 142M 2s -2024-03-07T01:08:04Z #15 2.255 36050K .......... .......... .......... .......... .......... 28% 35.3M 2s -2024-03-07T01:08:04Z #15 2.256 36100K .......... .......... .......... .......... .......... 28% 54.1M 2s -2024-03-07T01:08:04Z #15 2.257 36150K .......... .......... .......... .......... .......... 28% 41.1M 2s -2024-03-07T01:08:04Z #15 2.258 36200K .......... .......... .......... .......... .......... 28% 60.7M 2s -2024-03-07T01:08:04Z #15 2.259 36250K .......... .......... .......... .......... .......... 28% 64.7M 2s -2024-03-07T01:08:05Z #15 2.260 36300K .......... .......... .......... .......... .......... 28% 1.77M 2s -2024-03-07T01:08:05Z #15 2.291 36350K .......... .......... .......... .......... .......... 28% 7.95M 2s -2024-03-07T01:08:05Z #15 2.294 36400K .......... .......... .......... .......... .......... 28% 17.8M 2s -2024-03-07T01:08:05Z #15 2.296 36450K .......... .......... .......... .......... .......... 28% 175M 2s -2024-03-07T01:08:05Z #15 2.297 36500K .......... .......... .......... .......... .......... 28% 143M 2s -2024-03-07T01:08:05Z #15 2.297 36550K .......... .......... .......... .......... .......... 28% 36.4M 2s -2024-03-07T01:08:05Z #15 2.298 36600K .......... .......... .......... .......... .......... 28% 14.4M 2s -2024-03-07T01:08:05Z #15 2.302 36650K .......... .......... .......... .......... .......... 28% 119M 2s -2024-03-07T01:08:05Z #15 2.302 36700K .......... .......... .......... .......... .......... 28% 111M 2s -2024-03-07T01:08:05Z #15 2.302 36750K .......... .......... .......... .......... .......... 29% 107M 2s -2024-03-07T01:08:05Z #15 2.303 36800K .......... .......... .......... .......... .......... 29% 30.4M 2s -2024-03-07T01:08:05Z #15 2.304 36850K .......... .......... .......... .......... .......... 29% 22.4M 2s -2024-03-07T01:08:05Z #15 2.306 36900K .......... .......... .......... .......... .......... 29% 79.7M 2s -2024-03-07T01:08:05Z #15 2.308 36950K .......... .......... .......... .......... .......... 29% 117M 2s -2024-03-07T01:08:05Z #15 2.308 37000K .......... .......... .......... .......... .......... 29% 45.9M 2s -2024-03-07T01:08:05Z #15 2.309 37050K .......... .......... .......... .......... .......... 29% 147M 2s -2024-03-07T01:08:05Z #15 2.309 37100K .......... .......... .......... .......... .......... 29% 76.8M 2s -2024-03-07T01:08:05Z #15 2.310 37150K .......... .......... .......... .......... .......... 29% 111M 2s -2024-03-07T01:08:05Z #15 2.310 37200K .......... .......... .......... .......... .......... 29% 127M 2s -2024-03-07T01:08:05Z #15 2.311 37250K .......... .......... .......... .......... .......... 29% 95.6M 2s -2024-03-07T01:08:05Z #15 2.311 37300K .......... .......... .......... .......... .......... 29% 163M 2s -2024-03-07T01:08:05Z #15 2.311 37350K .......... .......... .......... .......... .......... 29% 126M 2s -2024-03-07T01:08:05Z #15 2.312 37400K .......... .......... .......... .......... .......... 29% 115M 2s -2024-03-07T01:08:05Z #15 2.312 37450K .......... .......... .......... .......... .......... 29% 142M 2s -2024-03-07T01:08:05Z #15 2.312 37500K .......... .......... .......... .......... .......... 29% 126M 2s -2024-03-07T01:08:05Z #15 2.313 37550K .......... .......... .......... .......... .......... 29% 144M 2s -2024-03-07T01:08:05Z #15 2.314 37600K .......... .......... .......... .......... .......... 29% 129M 2s -2024-03-07T01:08:05Z #15 2.314 37650K .......... .......... .......... .......... .......... 29% 123M 2s -2024-03-07T01:08:05Z #15 2.314 37700K .......... .......... .......... .......... .......... 29% 136M 2s -2024-03-07T01:08:05Z #15 2.314 37750K .......... .......... .......... .......... .......... 29% 125M 2s -2024-03-07T01:08:05Z #15 2.315 37800K .......... .......... .......... .......... .......... 29% 69.3M 2s -2024-03-07T01:08:05Z #15 2.315 37850K .......... .......... .......... .......... .......... 29% 133M 2s -2024-03-07T01:08:05Z #15 2.316 37900K .......... .......... .......... .......... .......... 29% 135M 2s -2024-03-07T01:08:05Z #15 2.316 37950K .......... .......... .......... .......... .......... 29% 63.9M 2s -2024-03-07T01:08:05Z #15 2.317 38000K .......... .......... .......... .......... .......... 30% 143M 2s -2024-03-07T01:08:05Z #15 2.318 38050K .......... .......... .......... .......... .......... 30% 149M 2s -2024-03-07T01:08:05Z #15 2.318 38100K .......... .......... .......... .......... .......... 30% 140M 2s -2024-03-07T01:08:05Z #15 2.318 38150K .......... .......... .......... .......... .......... 30% 134M 2s -2024-03-07T01:08:05Z #15 2.318 38200K .......... .......... .......... .......... .......... 30% 146M 2s -2024-03-07T01:08:05Z #15 2.319 38250K .......... .......... .......... .......... .......... 30% 130M 2s -2024-03-07T01:08:05Z #15 2.319 38300K .......... .......... .......... .......... .......... 30% 148M 2s -2024-03-07T01:08:05Z #15 2.319 38350K .......... .......... .......... .......... .......... 30% 114M 2s -2024-03-07T01:08:05Z #15 2.320 38400K .......... .......... .......... .......... .......... 30% 123M 2s -2024-03-07T01:08:05Z #15 2.320 38450K .......... .......... .......... .......... .......... 30% 149M 2s -2024-03-07T01:08:05Z #15 2.321 38500K .......... .......... .......... .......... .......... 30% 122M 2s -2024-03-07T01:08:05Z #15 2.321 38550K .......... .......... .......... .......... .......... 30% 106M 2s -2024-03-07T01:08:05Z #15 2.322 38600K .......... .......... .......... .......... .......... 30% 83.7M 2s -2024-03-07T01:08:05Z #15 2.322 38650K .......... .......... .......... .......... .......... 30% 137M 2s -2024-03-07T01:08:05Z #15 2.322 38700K .......... .......... .......... .......... .......... 30% 114M 2s -2024-03-07T01:08:05Z #15 2.323 38750K .......... .......... .......... .......... .......... 30% 118M 2s -2024-03-07T01:08:05Z #15 2.323 38800K .......... .......... .......... .......... .......... 30% 97.9M 2s -2024-03-07T01:08:05Z #15 2.324 38850K .......... .......... .......... .......... .......... 30% 145M 2s -2024-03-07T01:08:05Z #15 2.324 38900K .......... .......... .......... .......... .......... 30% 141M 2s -2024-03-07T01:08:05Z #15 2.325 38950K .......... .......... .......... .......... .......... 30% 138M 2s -2024-03-07T01:08:05Z #15 2.325 39000K .......... .......... .......... .......... .......... 30% 118M 2s -2024-03-07T01:08:05Z #15 2.325 39050K .......... .......... .......... .......... .......... 30% 151M 2s -2024-03-07T01:08:05Z #15 2.326 39100K .......... .......... .......... .......... .......... 30% 138M 2s -2024-03-07T01:08:05Z #15 2.326 39150K .......... .......... .......... .......... .......... 30% 110M 2s -2024-03-07T01:08:05Z #15 2.327 39200K .......... .......... .......... .......... .......... 30% 153M 2s -2024-03-07T01:08:05Z #15 2.327 39250K .......... .......... .......... .......... .......... 30% 124M 2s -2024-03-07T01:08:05Z #15 2.327 39300K .......... .......... .......... .......... .......... 31% 152M 2s -2024-03-07T01:08:05Z #15 2.327 39350K .......... .......... .......... .......... .......... 31% 52.6M 2s -2024-03-07T01:08:05Z #15 2.328 39400K .......... .......... .......... .......... .......... 31% 158M 2s -2024-03-07T01:08:05Z #15 2.328 39450K .......... .......... .......... .......... .......... 31% 133M 2s -2024-03-07T01:08:05Z #15 2.329 39500K .......... .......... .......... .......... .......... 31% 68.2M 2s -2024-03-07T01:08:05Z #15 2.330 39550K .......... .......... .......... .......... .......... 31% 152M 2s -2024-03-07T01:08:05Z #15 2.330 39600K .......... .......... .......... .......... .......... 31% 177M 2s -2024-03-07T01:08:05Z #15 2.330 39650K .......... .......... .......... .......... .......... 31% 154M 2s -2024-03-07T01:08:05Z #15 2.330 39700K .......... .......... .......... .......... .......... 31% 161M 2s -2024-03-07T01:08:05Z #15 2.331 39750K .......... .......... .......... .......... .......... 31% 177M 2s -2024-03-07T01:08:05Z #15 2.331 39800K .......... .......... .......... .......... .......... 31% 175M 2s -2024-03-07T01:08:05Z #15 2.331 39850K .......... .......... .......... .......... .......... 31% 138M 2s -2024-03-07T01:08:05Z #15 2.332 39900K .......... .......... .......... .......... .......... 31% 161M 2s -2024-03-07T01:08:05Z #15 2.332 39950K .......... .......... .......... .......... .......... 31% 148M 2s -2024-03-07T01:08:05Z #15 2.332 40000K .......... .......... .......... .......... .......... 31% 176M 2s -2024-03-07T01:08:05Z #15 2.332 40050K .......... .......... .......... .......... .......... 31% 181M 2s -2024-03-07T01:08:05Z #15 2.333 40100K .......... .......... .......... .......... .......... 31% 178M 2s -2024-03-07T01:08:05Z #15 2.333 40150K .......... .......... .......... .......... .......... 31% 79.6M 2s -2024-03-07T01:08:05Z #15 2.334 40200K .......... .......... .......... .......... .......... 31% 125M 2s -2024-03-07T01:08:05Z #15 2.334 40250K .......... .......... .......... .......... .......... 31% 158M 2s -2024-03-07T01:08:05Z #15 2.334 40300K .......... .......... .......... .......... .......... 31% 176M 2s -2024-03-07T01:08:05Z #15 2.335 40350K .......... .......... .......... .......... .......... 31% 120M 2s -2024-03-07T01:08:05Z #15 2.335 40400K .......... .......... .......... .......... .......... 31% 91.1M 2s -2024-03-07T01:08:05Z #15 2.336 40450K .......... .......... .......... .......... .......... 31% 174M 2s -2024-03-07T01:08:05Z #15 2.336 40500K .......... .......... .......... .......... .......... 31% 166M 2s -2024-03-07T01:08:05Z #15 2.336 40550K .......... .......... .......... .......... .......... 32% 156M 2s -2024-03-07T01:08:05Z #15 2.336 40600K .......... .......... .......... .......... .......... 32% 172M 2s -2024-03-07T01:08:05Z #15 2.337 40650K .......... .......... .......... .......... .......... 32% 160M 2s -2024-03-07T01:08:05Z #15 2.337 40700K .......... .......... .......... .......... .......... 32% 175M 2s -2024-03-07T01:08:05Z #15 2.337 40750K .......... .......... .......... .......... .......... 32% 153M 2s -2024-03-07T01:08:05Z #15 2.338 40800K .......... .......... .......... .......... .......... 32% 147M 2s -2024-03-07T01:08:05Z #15 2.338 40850K .......... .......... .......... .......... .......... 32% 169M 2s -2024-03-07T01:08:05Z #15 2.338 40900K .......... .......... .......... .......... .......... 32% 143M 2s -2024-03-07T01:08:05Z #15 2.339 40950K .......... .......... .......... .......... .......... 32% 110M 2s -2024-03-07T01:08:05Z #15 2.339 41000K .......... .......... .......... .......... .......... 32% 73.1M 2s -2024-03-07T01:08:05Z #15 2.340 41050K .......... .......... .......... .......... .......... 32% 72.7M 2s -2024-03-07T01:08:05Z #15 2.341 41100K .......... .......... .......... .......... .......... 32% 116M 2s -2024-03-07T01:08:05Z #15 2.341 41150K .......... .......... .......... .......... .......... 32% 148M 2s -2024-03-07T01:08:05Z #15 2.341 41200K .......... .......... .......... .......... .......... 32% 134M 2s -2024-03-07T01:08:05Z #15 2.342 41250K .......... .......... .......... .......... .......... 32% 125M 2s -2024-03-07T01:08:05Z #15 2.342 41300K .......... .......... .......... .......... .......... 32% 170M 2s -2024-03-07T01:08:05Z #15 2.342 41350K .......... .......... .......... .......... .......... 32% 169M 2s -2024-03-07T01:08:05Z #15 2.342 41400K .......... .......... .......... .......... .......... 32% 69.4M 2s -2024-03-07T01:08:05Z #15 2.343 41450K .......... .......... .......... .......... .......... 32% 127M 2s -2024-03-07T01:08:05Z #15 2.344 41500K .......... .......... .......... .......... .......... 32% 169M 2s -2024-03-07T01:08:05Z #15 2.344 41550K .......... .......... .......... .......... .......... 32% 61.8M 2s -2024-03-07T01:08:05Z #15 2.345 41600K .......... .......... .......... .......... .......... 32% 131M 2s -2024-03-07T01:08:05Z #15 2.345 41650K .......... .......... .......... .......... .......... 32% 144M 2s -2024-03-07T01:08:05Z #15 2.345 41700K .......... .......... .......... .......... .......... 32% 92.4M 2s -2024-03-07T01:08:05Z #15 2.346 41750K .......... .......... .......... .......... .......... 32% 145M 2s -2024-03-07T01:08:05Z #15 2.346 41800K .......... .......... .......... .......... .......... 33% 163M 2s -2024-03-07T01:08:05Z #15 2.346 41850K .......... .......... .......... .......... .......... 33% 149M 2s -2024-03-07T01:08:05Z #15 2.347 41900K .......... .......... .......... .......... .......... 33% 151M 2s -2024-03-07T01:08:05Z #15 2.347 41950K .......... .......... .......... .......... .......... 33% 123M 2s -2024-03-07T01:08:05Z #15 2.348 42000K .......... .......... .......... .......... .......... 33% 67.3M 2s -2024-03-07T01:08:05Z #15 2.348 42050K .......... .......... .......... .......... .......... 33% 165M 2s -2024-03-07T01:08:05Z #15 2.349 42100K .......... .......... .......... .......... .......... 33% 64.8M 2s -2024-03-07T01:08:05Z #15 2.350 42150K .......... .......... .......... .......... .......... 33% 136M 2s -2024-03-07T01:08:05Z #15 2.350 42200K .......... .......... .......... .......... .......... 33% 148M 2s -2024-03-07T01:08:05Z #15 2.350 42250K .......... .......... .......... .......... .......... 33% 164M 2s -2024-03-07T01:08:05Z #15 2.350 42300K .......... .......... .......... .......... .......... 33% 102M 2s -2024-03-07T01:08:05Z #15 2.351 42350K .......... .......... .......... .......... .......... 33% 164M 2s -2024-03-07T01:08:05Z #15 2.351 42400K .......... .......... .......... .......... .......... 33% 73.2M 2s -2024-03-07T01:08:05Z #15 2.352 42450K .......... .......... .......... .......... .......... 33% 80.6M 2s -2024-03-07T01:08:05Z #15 2.352 42500K .......... .......... .......... .......... .......... 33% 134M 2s -2024-03-07T01:08:05Z #15 2.353 42550K .......... .......... .......... .......... .......... 33% 83.0M 2s -2024-03-07T01:08:05Z #15 2.353 42600K .......... .......... .......... .......... .......... 33% 145M 2s -2024-03-07T01:08:05Z #15 2.354 42650K .......... .......... .......... .......... .......... 33% 125M 2s -2024-03-07T01:08:05Z #15 2.354 42700K .......... .......... .......... .......... .......... 33% 106M 2s -2024-03-07T01:08:05Z #15 2.355 42750K .......... .......... .......... .......... .......... 33% 145M 2s -2024-03-07T01:08:05Z #15 2.355 42800K .......... .......... .......... .......... .......... 33% 134M 2s -2024-03-07T01:08:05Z #15 2.355 42850K .......... .......... .......... .......... .......... 33% 93.3M 2s -2024-03-07T01:08:05Z #15 2.356 42900K .......... .......... .......... .......... .......... 33% 71.8M 2s -2024-03-07T01:08:05Z #15 2.357 42950K .......... .......... .......... .......... .......... 33% 88.7M 2s -2024-03-07T01:08:05Z #15 2.357 43000K .......... .......... .......... .......... .......... 33% 83.5M 2s -2024-03-07T01:08:05Z #15 2.358 43050K .......... .......... .......... .......... .......... 33% 138M 2s -2024-03-07T01:08:05Z #15 2.359 43100K .......... .......... .......... .......... .......... 34% 98.8M 2s -2024-03-07T01:08:05Z #15 2.359 43150K .......... .......... .......... .......... .......... 34% 103M 2s -2024-03-07T01:08:05Z #15 2.360 43200K .......... .......... .......... .......... .......... 34% 142M 2s -2024-03-07T01:08:05Z #15 2.360 43250K .......... .......... .......... .......... .......... 34% 80.2M 2s -2024-03-07T01:08:05Z #15 2.361 43300K .......... .......... .......... .......... .......... 34% 106M 2s -2024-03-07T01:08:05Z #15 2.361 43350K .......... .......... .......... .......... .......... 34% 99.0M 2s -2024-03-07T01:08:05Z #15 2.361 43400K .......... .......... .......... .......... .......... 34% 89.7M 2s -2024-03-07T01:08:05Z #15 2.362 43450K .......... .......... .......... .......... .......... 34% 122M 2s -2024-03-07T01:08:05Z #15 2.363 43500K .......... .......... .......... .......... .......... 34% 73.8M 2s -2024-03-07T01:08:05Z #15 2.363 43550K .......... .......... .......... .......... .......... 34% 82.6M 2s -2024-03-07T01:08:05Z #15 2.364 43600K .......... .......... .......... .......... .......... 34% 127M 2s -2024-03-07T01:08:05Z #15 2.364 43650K .......... .......... .......... .......... .......... 34% 78.2M 2s -2024-03-07T01:08:05Z #15 2.364 43700K .......... .......... .......... .......... .......... 34% 131M 2s -2024-03-07T01:08:05Z #15 2.365 43750K .......... .......... .......... .......... .......... 34% 144M 2s -2024-03-07T01:08:05Z #15 2.365 43800K .......... .......... .......... .......... .......... 34% 62.8M 2s -2024-03-07T01:08:05Z #15 2.365 43850K .......... .......... .......... .......... .......... 34% 133M 2s -2024-03-07T01:08:05Z #15 2.366 43900K .......... .......... .......... .......... .......... 34% 144M 2s -2024-03-07T01:08:05Z #15 2.367 43950K .......... .......... .......... .......... .......... 34% 56.7M 2s -2024-03-07T01:08:05Z #15 2.367 44000K .......... .......... .......... .......... .......... 34% 150M 2s -2024-03-07T01:08:05Z #15 2.368 44050K .......... .......... .......... .......... .......... 34% 128M 2s -2024-03-07T01:08:05Z #15 2.368 44100K .......... .......... .......... .......... .......... 34% 67.2M 2s -2024-03-07T01:08:05Z #15 2.369 44150K .......... .......... .......... .......... .......... 34% 121M 2s -2024-03-07T01:08:05Z #15 2.369 44200K .......... .......... .......... .......... .......... 34% 107M 2s -2024-03-07T01:08:05Z #15 2.369 44250K .......... .......... .......... .......... .......... 34% 84.9M 2s -2024-03-07T01:08:05Z #15 2.370 44300K .......... .......... .......... .......... .......... 34% 141M 2s -2024-03-07T01:08:05Z #15 2.370 44350K .......... .......... .......... .......... .......... 35% 77.9M 2s -2024-03-07T01:08:05Z #15 2.371 44400K .......... .......... .......... .......... .......... 35% 88.7M 2s -2024-03-07T01:08:05Z #15 2.372 44450K .......... .......... .......... .......... .......... 35% 143M 2s -2024-03-07T01:08:05Z #15 2.372 44500K .......... .......... .......... .......... .......... 35% 74.7M 2s -2024-03-07T01:08:05Z #15 2.373 44550K .......... .......... .......... .......... .......... 35% 111M 2s -2024-03-07T01:08:05Z #15 2.373 44600K .......... .......... .......... .......... .......... 35% 115M 2s -2024-03-07T01:08:05Z #15 2.374 44650K .......... .......... .......... .......... .......... 35% 89.3M 2s -2024-03-07T01:08:05Z #15 2.374 44700K .......... .......... .......... .......... .......... 35% 118M 2s -2024-03-07T01:08:05Z #15 2.375 44750K .......... .......... .......... .......... .......... 35% 69.1M 2s -2024-03-07T01:08:05Z #15 2.376 44800K .......... .......... .......... .......... .......... 35% 96.4M 2s -2024-03-07T01:08:05Z #15 2.376 44850K .......... .......... .......... .......... .......... 35% 82.0M 2s -2024-03-07T01:08:05Z #15 2.377 44900K .......... .......... .......... .......... .......... 35% 141M 2s -2024-03-07T01:08:05Z #15 2.377 44950K .......... .......... .......... .......... .......... 35% 88.8M 2s -2024-03-07T01:08:05Z #15 2.377 45000K .......... .......... .......... .......... .......... 35% 99.9M 2s -2024-03-07T01:08:05Z #15 2.377 45050K .......... .......... .......... .......... .......... 35% 118M 2s -2024-03-07T01:08:05Z #15 2.378 45100K .......... .......... .......... .......... .......... 35% 68.5M 2s -2024-03-07T01:08:05Z #15 2.379 45150K .......... .......... .......... .......... .......... 35% 103M 2s -2024-03-07T01:08:05Z #15 2.379 45200K .......... .......... .......... .......... .......... 35% 141M 2s -2024-03-07T01:08:05Z #15 2.383 45250K .......... .......... .......... .......... .......... 35% 71.2M 2s -2024-03-07T01:08:05Z #15 2.383 45300K .......... .......... .......... .......... .......... 35% 122M 2s -2024-03-07T01:08:05Z #15 2.383 45350K .......... .......... .......... .......... .......... 35% 98.1M 2s -2024-03-07T01:08:05Z #15 2.383 45400K .......... .......... .......... .......... .......... 35% 69.9M 2s -2024-03-07T01:08:05Z #15 2.383 45450K .......... .......... .......... .......... .......... 35% 137M 2s -2024-03-07T01:08:05Z #15 2.383 45500K .......... .......... .......... .......... .......... 35% 83.2M 2s -2024-03-07T01:08:05Z #15 2.383 45550K .......... .......... .......... .......... .......... 35% 85.5M 2s -2024-03-07T01:08:05Z #15 2.383 45600K .......... .......... .......... .......... .......... 36% 95.6M 2s -2024-03-07T01:08:05Z #15 2.384 45650K .......... .......... .......... .......... .......... 36% 77.6M 2s -2024-03-07T01:08:05Z #15 2.385 45700K .......... .......... .......... .......... .......... 36% 117M 2s -2024-03-07T01:08:05Z #15 2.385 45750K .......... .......... .......... .......... .......... 36% 132M 2s -2024-03-07T01:08:05Z #15 2.385 45800K .......... .......... .......... .......... .......... 36% 102M 2s -2024-03-07T01:08:05Z #15 2.395 45850K .......... .......... .......... .......... .......... 36% 174M 2s -2024-03-07T01:08:05Z #15 2.395 45900K .......... .......... .......... .......... .......... 36% 167M 2s -2024-03-07T01:08:05Z #15 2.395 45950K .......... .......... .......... .......... .......... 36% 152M 2s -2024-03-07T01:08:05Z #15 2.395 46000K .......... .......... .......... .......... .......... 36% 75.0M 2s -2024-03-07T01:08:05Z #15 2.395 46050K .......... .......... .......... .......... .......... 36% 87.7M 2s -2024-03-07T01:08:05Z #15 2.395 46100K .......... .......... .......... .......... .......... 36% 92.2M 2s -2024-03-07T01:08:05Z #15 2.395 46150K .......... .......... .......... .......... .......... 36% 98.5M 2s -2024-03-07T01:08:05Z #15 2.395 46200K .......... .......... .......... .......... .......... 36% 85.4M 2s -2024-03-07T01:08:05Z #15 2.395 46250K .......... .......... .......... .......... .......... 36% 117M 2s -2024-03-07T01:08:05Z #15 2.395 46300K .......... .......... .......... .......... .......... 36% 178M 2s -2024-03-07T01:08:05Z #15 2.395 46350K .......... .......... .......... .......... .......... 36% 153M 2s -2024-03-07T01:08:05Z #15 2.395 46400K .......... .......... .......... .......... .......... 36% 157M 2s -2024-03-07T01:08:05Z #15 2.395 46450K .......... .......... .......... .......... .......... 36% 143M 2s -2024-03-07T01:08:05Z #15 2.395 46500K .......... .......... .......... .......... .......... 36% 145M 2s -2024-03-07T01:08:05Z #15 2.395 46550K .......... .......... .......... .......... .......... 36% 81.7M 2s -2024-03-07T01:08:05Z #15 2.395 46600K .......... .......... .......... .......... .......... 36% 65.8M 2s -2024-03-07T01:08:05Z #15 2.395 46650K .......... .......... .......... .......... .......... 36% 127M 2s -2024-03-07T01:08:05Z #15 2.395 46700K .......... .......... .......... .......... .......... 36% 62.2M 2s -2024-03-07T01:08:05Z #15 2.395 46750K .......... .......... .......... .......... .......... 36% 132M 2s -2024-03-07T01:08:05Z #15 2.395 46800K .......... .......... .......... .......... .......... 36% 94.1M 2s -2024-03-07T01:08:05Z #15 2.395 46850K .......... .......... .......... .......... .......... 36% 81.7M 2s -2024-03-07T01:08:05Z #15 2.395 46900K .......... .......... .......... .......... .......... 37% 45.6M 2s -2024-03-07T01:08:05Z #15 2.396 46950K .......... .......... .......... .......... .......... 37% 124M 2s -2024-03-07T01:08:05Z #15 2.397 47000K .......... .......... .......... .......... .......... 37% 135M 2s -2024-03-07T01:08:05Z #15 2.397 47050K .......... .......... .......... .......... .......... 37% 63.7M 2s -2024-03-07T01:08:05Z #15 2.398 47100K .......... .......... .......... .......... .......... 37% 134M 2s -2024-03-07T01:08:05Z #15 2.398 47150K .......... .......... .......... .......... .......... 37% 64.6M 2s -2024-03-07T01:08:05Z #15 2.399 47200K .......... .......... .......... .......... .......... 37% 115M 2s -2024-03-07T01:08:05Z #15 2.399 47250K .......... .......... .......... .......... .......... 37% 73.6M 2s -2024-03-07T01:08:05Z #15 2.400 47300K .......... .......... .......... .......... .......... 37% 132M 2s -2024-03-07T01:08:05Z #15 2.400 47350K .......... .......... .......... .......... .......... 37% 113M 2s -2024-03-07T01:08:05Z #15 2.401 47400K .......... .......... .......... .......... .......... 37% 141M 2s -2024-03-07T01:08:05Z #15 2.401 47450K .......... .......... .......... .......... .......... 37% 148M 2s -2024-03-07T01:08:05Z #15 2.401 47500K .......... .......... .......... .......... .......... 37% 62.8M 2s -2024-03-07T01:08:05Z #15 2.403 47550K .......... .......... .......... .......... .......... 37% 104M 2s -2024-03-07T01:08:05Z #15 2.403 47600K .......... .......... .......... .......... .......... 37% 65.3M 2s -2024-03-07T01:08:05Z #15 2.407 47650K .......... .......... .......... .......... .......... 37% 108M 2s -2024-03-07T01:08:05Z #15 2.407 47700K .......... .......... .......... .......... .......... 37% 122M 2s -2024-03-07T01:08:05Z #15 2.407 47750K .......... .......... .......... .......... .......... 37% 79.4M 2s -2024-03-07T01:08:05Z #15 2.407 47800K .......... .......... .......... .......... .......... 37% 92.6M 1s -2024-03-07T01:08:05Z #15 2.407 47850K .......... .......... .......... .......... .......... 37% 125M 1s -2024-03-07T01:08:05Z #15 2.407 47900K .......... .......... .......... .......... .......... 37% 124M 1s -2024-03-07T01:08:05Z #15 2.407 47950K .......... .......... .......... .......... .......... 37% 58.3M 1s -2024-03-07T01:08:05Z #15 2.407 48000K .......... .......... .......... .......... .......... 37% 89.7M 1s -2024-03-07T01:08:05Z #15 2.411 48050K .......... .......... .......... .......... .......... 37% 78.2M 1s -2024-03-07T01:08:05Z #15 2.411 48100K .......... .......... .......... .......... .......... 37% 82.4M 1s -2024-03-07T01:08:05Z #15 2.411 48150K .......... .......... .......... .......... .......... 38% 98.4M 1s -2024-03-07T01:08:05Z #15 2.411 48200K .......... .......... .......... .......... .......... 38% 103M 1s -2024-03-07T01:08:05Z #15 2.411 48250K .......... .......... .......... .......... .......... 38% 86.7M 1s -2024-03-07T01:08:05Z #15 2.411 48300K .......... .......... .......... .......... .......... 38% 72.5M 1s -2024-03-07T01:08:05Z #15 2.411 48350K .......... .......... .......... .......... .......... 38% 71.0M 1s -2024-03-07T01:08:05Z #15 2.415 48400K .......... .......... .......... .......... .......... 38% 59.3M 1s -2024-03-07T01:08:05Z #15 2.415 48450K .......... .......... .......... .......... .......... 38% 123M 1s -2024-03-07T01:08:05Z #15 2.415 48500K .......... .......... .......... .......... .......... 38% 125M 1s -2024-03-07T01:08:05Z #15 2.415 48550K .......... .......... .......... .......... .......... 38% 96.3M 1s -2024-03-07T01:08:05Z #15 2.415 48600K .......... .......... .......... .......... .......... 38% 125M 1s -2024-03-07T01:08:05Z #15 2.415 48650K .......... .......... .......... .......... .......... 38% 109M 1s -2024-03-07T01:08:05Z #15 2.415 48700K .......... .......... .......... .......... .......... 38% 76.6M 1s -2024-03-07T01:08:05Z #15 2.416 48750K .......... .......... .......... .......... .......... 38% 58.6M 1s -2024-03-07T01:08:05Z #15 2.416 48800K .......... .......... .......... .......... .......... 38% 80.7M 1s -2024-03-07T01:08:05Z #15 2.417 48850K .......... .......... .......... .......... .......... 38% 62.6M 1s -2024-03-07T01:08:05Z #15 2.418 48900K .......... .......... .......... .......... .......... 38% 103M 1s -2024-03-07T01:08:05Z #15 2.418 48950K .......... .......... .......... .......... .......... 38% 108M 1s -2024-03-07T01:08:05Z #15 2.419 49000K .......... .......... .......... .......... .......... 38% 95.8M 1s -2024-03-07T01:08:05Z #15 2.419 49050K .......... .......... .......... .......... .......... 38% 106M 1s -2024-03-07T01:08:05Z #15 2.423 49100K .......... .......... .......... .......... .......... 38% 136M 1s -2024-03-07T01:08:05Z #15 2.423 49150K .......... .......... .......... .......... .......... 38% 98.6M 1s -2024-03-07T01:08:05Z #15 2.423 49200K .......... .......... .......... .......... .......... 38% 54.0M 1s -2024-03-07T01:08:05Z #15 2.423 49250K .......... .......... .......... .......... .......... 38% 74.7M 1s -2024-03-07T01:08:05Z #15 2.423 49300K .......... .......... .......... .......... .......... 38% 73.8M 1s -2024-03-07T01:08:05Z #15 2.423 49350K .......... .......... .......... .......... .......... 38% 113M 1s -2024-03-07T01:08:05Z #15 2.423 49400K .......... .......... .......... .......... .......... 39% 75.8M 1s -2024-03-07T01:08:05Z #15 2.424 49450K .......... .......... .......... .......... .......... 39% 99.8M 1s -2024-03-07T01:08:05Z #15 2.424 49500K .......... .......... .......... .......... .......... 39% 98.0M 1s -2024-03-07T01:08:05Z #15 2.425 49550K .......... .......... .......... .......... .......... 39% 69.0M 1s -2024-03-07T01:08:05Z #15 2.425 49600K .......... .......... .......... .......... .......... 39% 102M 1s -2024-03-07T01:08:05Z #15 2.426 49650K .......... .......... .......... .......... .......... 39% 65.1M 1s -2024-03-07T01:08:05Z #15 2.427 49700K .......... .......... .......... .......... .......... 39% 106M 1s -2024-03-07T01:08:05Z #15 2.427 49750K .......... .......... .......... .......... .......... 39% 102M 1s -2024-03-07T01:08:05Z #15 2.428 49800K .......... .......... .......... .......... .......... 39% 94.8M 1s -2024-03-07T01:08:05Z #15 2.428 49850K .......... .......... .......... .......... .......... 39% 128M 1s -2024-03-07T01:08:05Z #15 2.429 49900K .......... .......... .......... .......... .......... 39% 59.0M 1s -2024-03-07T01:08:05Z #15 2.432 49950K .......... .......... .......... .......... .......... 39% 101M 1s -2024-03-07T01:08:05Z #15 2.432 50000K .......... .......... .......... .......... .......... 39% 180M 1s -2024-03-07T01:08:05Z #15 2.432 50050K .......... .......... .......... .......... .......... 39% 133M 1s -2024-03-07T01:08:05Z #15 2.432 50100K .......... .......... .......... .......... .......... 39% 175M 1s -2024-03-07T01:08:05Z #15 2.432 50150K .......... .......... .......... .......... .......... 39% 128M 1s -2024-03-07T01:08:05Z #15 2.432 50200K .......... .......... .......... .......... .......... 39% 165M 1s -2024-03-07T01:08:05Z #15 2.432 50250K .......... .......... .......... .......... .......... 39% 84.2M 1s -2024-03-07T01:08:05Z #15 2.432 50300K .......... .......... .......... .......... .......... 39% 123M 1s -2024-03-07T01:08:05Z #15 2.432 50350K .......... .......... .......... .......... .......... 39% 106M 1s -2024-03-07T01:08:05Z #15 2.433 50400K .......... .......... .......... .......... .......... 39% 135M 1s -2024-03-07T01:08:05Z #15 2.433 50450K .......... .......... .......... .......... .......... 39% 116M 1s -2024-03-07T01:08:05Z #15 2.434 50500K .......... .......... .......... .......... .......... 39% 129M 1s -2024-03-07T01:08:05Z #15 2.434 50550K .......... .......... .......... .......... .......... 39% 127M 1s -2024-03-07T01:08:05Z #15 2.435 50600K .......... .......... .......... .......... .......... 39% 120M 1s -2024-03-07T01:08:05Z #15 2.435 50650K .......... .......... .......... .......... .......... 39% 130M 1s -2024-03-07T01:08:05Z #15 2.435 50700K .......... .......... .......... .......... .......... 40% 136M 1s -2024-03-07T01:08:05Z #15 2.436 50750K .......... .......... .......... .......... .......... 40% 137M 1s -2024-03-07T01:08:05Z #15 2.436 50800K .......... .......... .......... .......... .......... 40% 110M 1s -2024-03-07T01:08:05Z #15 2.437 50850K .......... .......... .......... .......... .......... 40% 154M 1s -2024-03-07T01:08:05Z #15 2.437 50900K .......... .......... .......... .......... .......... 40% 124M 1s -2024-03-07T01:08:05Z #15 2.437 50950K .......... .......... .......... .......... .......... 40% 17.5M 1s -2024-03-07T01:08:05Z #15 2.443 51000K .......... .......... .......... .......... .......... 40% 157M 1s -2024-03-07T01:08:05Z #15 2.443 51050K .......... .......... .......... .......... .......... 40% 151M 1s -2024-03-07T01:08:05Z #15 2.443 51100K .......... .......... .......... .......... .......... 40% 175M 1s -2024-03-07T01:08:05Z #15 2.443 51150K .......... .......... .......... .......... .......... 40% 172M 1s -2024-03-07T01:08:05Z #15 2.443 51200K .......... .......... .......... .......... .......... 40% 146M 1s -2024-03-07T01:08:05Z #15 2.443 51250K .......... .......... .......... .......... .......... 40% 183M 1s -2024-03-07T01:08:05Z #15 2.443 51300K .......... .......... .......... .......... .......... 40% 169M 1s -2024-03-07T01:08:05Z #15 2.443 51350K .......... .......... .......... .......... .......... 40% 173M 1s -2024-03-07T01:08:05Z #15 2.443 51400K .......... .......... .......... .......... .......... 40% 143M 1s -2024-03-07T01:08:05Z #15 2.443 51450K .......... .......... .......... .......... .......... 40% 176M 1s -2024-03-07T01:08:05Z #15 2.443 51500K .......... .......... .......... .......... .......... 40% 159M 1s -2024-03-07T01:08:05Z #15 2.443 51550K .......... .......... .......... .......... .......... 40% 170M 1s -2024-03-07T01:08:05Z #15 2.443 51600K .......... .......... .......... .......... .......... 40% 11.2M 1s -2024-03-07T01:08:05Z #15 2.448 51650K .......... .......... .......... .......... .......... 40% 40.8M 1s -2024-03-07T01:08:05Z #15 2.456 51700K .......... .......... .......... .......... .......... 40% 162M 1s -2024-03-07T01:08:05Z #15 2.456 51750K .......... .......... .......... .......... .......... 40% 177M 1s -2024-03-07T01:08:05Z #15 2.456 51800K .......... .......... .......... .......... .......... 40% 185M 1s -2024-03-07T01:08:05Z #15 2.456 51850K .......... .......... .......... .......... .......... 40% 149M 1s -2024-03-07T01:08:05Z #15 2.456 51900K .......... .......... .......... .......... .......... 40% 168M 1s -2024-03-07T01:08:05Z #15 2.456 51950K .......... .......... .......... .......... .......... 41% 176M 1s -2024-03-07T01:08:05Z #15 2.456 52000K .......... .......... .......... .......... .......... 41% 148M 1s -2024-03-07T01:08:05Z #15 2.456 52050K .......... .......... .......... .......... .......... 41% 177M 1s -2024-03-07T01:08:05Z #15 2.456 52100K .......... .......... .......... .......... .......... 41% 665K 1s -2024-03-07T01:08:05Z #15 2.527 52150K .......... .......... .......... .......... .......... 41% 130M 1s -2024-03-07T01:08:05Z #15 2.527 52200K .......... .......... .......... .......... .......... 41% 135M 1s -2024-03-07T01:08:05Z #15 2.527 52250K .......... .......... .......... .......... .......... 41% 119M 1s -2024-03-07T01:08:05Z #15 2.528 52300K .......... .......... .......... .......... .......... 41% 142M 1s -2024-03-07T01:08:05Z #15 2.528 52350K .......... .......... .......... .......... .......... 41% 121M 1s -2024-03-07T01:08:05Z #15 2.529 52400K .......... .......... .......... .......... .......... 41% 133M 1s -2024-03-07T01:08:05Z #15 2.529 52450K .......... .......... .......... .......... .......... 41% 133M 1s -2024-03-07T01:08:05Z #15 2.529 52500K .......... .......... .......... .......... .......... 41% 131M 1s -2024-03-07T01:08:05Z #15 2.530 52550K .......... .......... .......... .......... .......... 41% 155M 1s -2024-03-07T01:08:05Z #15 2.530 52600K .......... .......... .......... .......... .......... 41% 114M 1s -2024-03-07T01:08:05Z #15 2.531 52650K .......... .......... .......... .......... .......... 41% 161M 1s -2024-03-07T01:08:05Z #15 2.531 52700K .......... .......... .......... .......... .......... 41% 134M 1s -2024-03-07T01:08:05Z #15 2.531 52750K .......... .......... .......... .......... .......... 41% 138M 1s -2024-03-07T01:08:05Z #15 2.532 52800K .......... .......... .......... .......... .......... 41% 31.1M 1s -2024-03-07T01:08:05Z #15 2.535 52850K .......... .......... .......... .......... .......... 41% 149M 1s -2024-03-07T01:08:05Z #15 2.535 52900K .......... .......... .......... .......... .......... 41% 113M 1s -2024-03-07T01:08:05Z #15 2.535 52950K .......... .......... .......... .......... .......... 41% 124M 1s -2024-03-07T01:08:05Z #15 2.535 53000K .......... .......... .......... .......... .......... 41% 132M 1s -2024-03-07T01:08:05Z #15 2.535 53050K .......... .......... .......... .......... .......... 41% 118M 1s -2024-03-07T01:08:05Z #15 2.535 53100K .......... .......... .......... .......... .......... 41% 147M 1s -2024-03-07T01:08:05Z #15 2.535 53150K .......... .......... .......... .......... .......... 41% 128M 1s -2024-03-07T01:08:05Z #15 2.535 53200K .......... .......... .......... .......... .......... 42% 23.8M 1s -2024-03-07T01:08:05Z #15 2.544 53250K .......... .......... .......... .......... .......... 42% 83.3M 1s -2024-03-07T01:08:05Z #15 2.544 53300K .......... .......... .......... .......... .......... 42% 145M 1s -2024-03-07T01:08:05Z #15 2.544 53350K .......... .......... .......... .......... .......... 42% 130M 1s -2024-03-07T01:08:05Z #15 2.544 53400K .......... .......... .......... .......... .......... 42% 137M 1s -2024-03-07T01:08:05Z #15 2.544 53450K .......... .......... .......... .......... .......... 42% 148M 1s -2024-03-07T01:08:05Z #15 2.544 53500K .......... .......... .......... .......... .......... 42% 109M 1s -2024-03-07T01:08:05Z #15 2.544 53550K .......... .......... .......... .......... .......... 42% 139M 1s -2024-03-07T01:08:05Z #15 2.544 53600K .......... .......... .......... .......... .......... 42% 153M 1s -2024-03-07T01:08:05Z #15 2.544 53650K .......... .......... .......... .......... .......... 42% 140M 1s -2024-03-07T01:08:05Z #15 2.544 53700K .......... .......... .......... .......... .......... 42% 127M 1s -2024-03-07T01:08:05Z #15 2.544 53750K .......... .......... .......... .......... .......... 42% 142M 1s -2024-03-07T01:08:05Z #15 2.544 53800K .......... .......... .......... .......... .......... 42% 142M 1s -2024-03-07T01:08:05Z #15 2.544 53850K .......... .......... .......... .......... .......... 42% 155M 1s -2024-03-07T01:08:05Z #15 2.544 53900K .......... .......... .......... .......... .......... 42% 176M 1s -2024-03-07T01:08:05Z #15 2.544 53950K .......... .......... .......... .......... .......... 42% 151M 1s -2024-03-07T01:08:05Z #15 2.544 54000K .......... .......... .......... .......... .......... 42% 153M 1s -2024-03-07T01:08:05Z #15 2.544 54050K .......... .......... .......... .......... .......... 42% 43.6M 1s -2024-03-07T01:08:05Z #15 2.544 54100K .......... .......... .......... .......... .......... 42% 18.0M 1s -2024-03-07T01:08:05Z #15 2.547 54150K .......... .......... .......... .......... .......... 42% 10.3M 1s -2024-03-07T01:08:05Z #15 2.552 54200K .......... .......... .......... .......... .......... 42% 62.4M 1s -2024-03-07T01:08:05Z #15 2.555 54250K .......... .......... .......... .......... .......... 42% 23.6M 1s -2024-03-07T01:08:05Z #15 2.556 54300K .......... .......... .......... .......... .......... 42% 116M 1s -2024-03-07T01:08:05Z #15 2.556 54350K .......... .......... .......... .......... .......... 42% 160M 1s -2024-03-07T01:08:05Z #15 2.556 54400K .......... .......... .......... .......... .......... 42% 168M 1s -2024-03-07T01:08:05Z #15 2.556 54450K .......... .......... .......... .......... .......... 42% 206M 1s -2024-03-07T01:08:05Z #15 2.556 54500K .......... .......... .......... .......... .......... 43% 103M 1s -2024-03-07T01:08:05Z #15 2.556 54550K .......... .......... .......... .......... .......... 43% 98.2M 1s -2024-03-07T01:08:05Z #15 2.557 54600K .......... .......... .......... .......... .......... 43% 139M 1s -2024-03-07T01:08:05Z #15 2.560 54650K .......... .......... .......... .......... .......... 43% 74.7M 1s -2024-03-07T01:08:05Z #15 2.560 54700K .......... .......... .......... .......... .......... 43% 170M 1s -2024-03-07T01:08:05Z #15 2.560 54750K .......... .......... .......... .......... .......... 43% 156M 1s -2024-03-07T01:08:05Z #15 2.560 54800K .......... .......... .......... .......... .......... 43% 185M 1s -2024-03-07T01:08:05Z #15 2.560 54850K .......... .......... .......... .......... .......... 43% 11.1M 1s -2024-03-07T01:08:05Z #15 2.564 54900K .......... .......... .......... .......... .......... 43% 65.9M 1s -2024-03-07T01:08:05Z #15 2.567 54950K .......... .......... .......... .......... .......... 43% 137M 1s -2024-03-07T01:08:05Z #15 2.567 55000K .......... .......... .......... .......... .......... 43% 28.9M 1s -2024-03-07T01:08:05Z #15 2.567 55050K .......... .......... .......... .......... .......... 43% 124M 1s -2024-03-07T01:08:05Z #15 2.567 55100K .......... .......... .......... .......... .......... 43% 162M 1s -2024-03-07T01:08:05Z #15 2.568 55150K .......... .......... .......... .......... .......... 43% 10.6M 1s -2024-03-07T01:08:05Z #15 2.571 55200K .......... .......... .......... .......... .......... 43% 10.3M 1s -2024-03-07T01:08:05Z #15 2.576 55250K .......... .......... .......... .......... .......... 43% 22.4M 1s -2024-03-07T01:08:05Z #15 2.578 55300K .......... .......... .......... .......... .......... 43% 54.0M 1s -2024-03-07T01:08:05Z #15 2.579 55350K .......... .......... .......... .......... .......... 43% 39.0M 1s -2024-03-07T01:08:05Z #15 2.581 55400K .......... .......... .......... .......... .......... 43% 53.5M 1s -2024-03-07T01:08:05Z #15 2.583 55450K .......... .......... .......... .......... .......... 43% 94.5M 1s -2024-03-07T01:08:05Z #15 2.583 55500K .......... .......... .......... .......... .......... 43% 170M 1s -2024-03-07T01:08:05Z #15 2.583 55550K .......... .......... .......... .......... .......... 43% 119M 1s -2024-03-07T01:08:05Z #15 2.583 55600K .......... .......... .......... .......... .......... 43% 128M 1s -2024-03-07T01:08:05Z #15 2.583 55650K .......... .......... .......... .......... .......... 43% 126M 1s -2024-03-07T01:08:05Z #15 2.583 55700K .......... .......... .......... .......... .......... 43% 17.6M 1s -2024-03-07T01:08:05Z #15 2.587 55750K .......... .......... .......... .......... .......... 44% 40.8M 1s -2024-03-07T01:08:05Z #15 2.587 55800K .......... .......... .......... .......... .......... 44% 48.4M 1s -2024-03-07T01:08:05Z #15 2.591 55850K .......... .......... .......... .......... .......... 44% 63.2M 1s -2024-03-07T01:08:05Z #15 2.591 55900K .......... .......... .......... .......... .......... 44% 137M 1s -2024-03-07T01:08:05Z #15 2.591 55950K .......... .......... .......... .......... .......... 44% 174M 1s -2024-03-07T01:08:05Z #15 2.591 56000K .......... .......... .......... .......... .......... 44% 150M 1s -2024-03-07T01:08:05Z #15 2.591 56050K .......... .......... .......... .......... .......... 44% 131M 1s -2024-03-07T01:08:05Z #15 2.591 56100K .......... .......... .......... .......... .......... 44% 150M 1s -2024-03-07T01:08:05Z #15 2.591 56150K .......... .......... .......... .......... .......... 44% 163M 1s -2024-03-07T01:08:05Z #15 2.591 56200K .......... .......... .......... .......... .......... 44% 152M 1s -2024-03-07T01:08:05Z #15 2.591 56250K .......... .......... .......... .......... .......... 44% 24.2M 1s -2024-03-07T01:08:05Z #15 2.593 56300K .......... .......... .......... .......... .......... 44% 31.8M 1s -2024-03-07T01:08:05Z #15 2.596 56350K .......... .......... .......... .......... .......... 44% 28.6M 1s -2024-03-07T01:08:05Z #15 2.597 56400K .......... .......... .......... .......... .......... 44% 37.5M 1s -2024-03-07T01:08:05Z #15 2.598 56450K .......... .......... .......... .......... .......... 44% 79.5M 1s -2024-03-07T01:08:05Z #15 2.599 56500K .......... .......... .......... .......... .......... 44% 182M 1s -2024-03-07T01:08:05Z #15 2.599 56550K .......... .......... .......... .......... .......... 44% 38.3M 1s -2024-03-07T01:08:05Z #15 2.601 56600K .......... .......... .......... .......... .......... 44% 48.5M 1s -2024-03-07T01:08:05Z #15 2.601 56650K .......... .......... .......... .......... .......... 44% 20.9M 1s -2024-03-07T01:08:05Z #15 2.603 56700K .......... .......... .......... .......... .......... 44% 51.7M 1s -2024-03-07T01:08:05Z #15 2.607 56750K .......... .......... .......... .......... .......... 44% 123M 1s -2024-03-07T01:08:05Z #15 2.607 56800K .......... .......... .......... .......... .......... 44% 184M 1s -2024-03-07T01:08:05Z #15 2.607 56850K .......... .......... .......... .......... .......... 44% 140M 1s -2024-03-07T01:08:05Z #15 2.607 56900K .......... .......... .......... .......... .......... 44% 174M 1s -2024-03-07T01:08:05Z #15 2.607 56950K .......... .......... .......... .......... .......... 44% 153M 1s -2024-03-07T01:08:05Z #15 2.607 57000K .......... .......... .......... .......... .......... 44% 126M 1s -2024-03-07T01:08:05Z #15 2.607 57050K .......... .......... .......... .......... .......... 45% 152M 1s -2024-03-07T01:08:05Z #15 2.607 57100K .......... .......... .......... .......... .......... 45% 151M 1s -2024-03-07T01:08:05Z #15 2.607 57150K .......... .......... .......... .......... .......... 45% 141M 1s -2024-03-07T01:08:05Z #15 2.607 57200K .......... .......... .......... .......... .......... 45% 84.9M 1s -2024-03-07T01:08:05Z #15 2.608 57250K .......... .......... .......... .......... .......... 45% 12.2M 1s -2024-03-07T01:08:05Z #15 2.612 57300K .......... .......... .......... .......... .......... 45% 28.0M 1s -2024-03-07T01:08:05Z #15 2.614 57350K .......... .......... .......... .......... .......... 45% 26.7M 1s -2024-03-07T01:08:05Z #15 2.615 57400K .......... .......... .......... .......... .......... 45% 98.1M 1s -2024-03-07T01:08:05Z #15 2.616 57450K .......... .......... .......... .......... .......... 45% 48.5M 1s -2024-03-07T01:08:05Z #15 2.617 57500K .......... .......... .......... .......... .......... 45% 71.6M 1s -2024-03-07T01:08:05Z #15 2.618 57550K .......... .......... .......... .......... .......... 45% 122M 1s -2024-03-07T01:08:05Z #15 2.618 57600K .......... .......... .......... .......... .......... 45% 53.9M 1s -2024-03-07T01:08:05Z #15 2.624 57650K .......... .......... .......... .......... .......... 45% 153M 1s -2024-03-07T01:08:05Z #15 2.624 57700K .......... .......... .......... .......... .......... 45% 139M 1s -2024-03-07T01:08:05Z #15 2.624 57750K .......... .......... .......... .......... .......... 45% 105M 1s -2024-03-07T01:08:05Z #15 2.624 57800K .......... .......... .......... .......... .......... 45% 142M 1s -2024-03-07T01:08:05Z #15 2.624 57850K .......... .......... .......... .......... .......... 45% 134M 1s -2024-03-07T01:08:05Z #15 2.624 57900K .......... .......... .......... .......... .......... 45% 148M 1s -2024-03-07T01:08:05Z #15 2.624 57950K .......... .......... .......... .......... .......... 45% 133M 1s -2024-03-07T01:08:05Z #15 2.624 58000K .......... .......... .......... .......... .......... 45% 145M 1s -2024-03-07T01:08:05Z #15 2.624 58050K .......... .......... .......... .......... .......... 45% 168M 1s -2024-03-07T01:08:05Z #15 2.624 58100K .......... .......... .......... .......... .......... 45% 125M 1s -2024-03-07T01:08:05Z #15 2.624 58150K .......... .......... .......... .......... .......... 45% 136M 1s -2024-03-07T01:08:05Z #15 2.624 58200K .......... .......... .......... .......... .......... 45% 143M 1s -2024-03-07T01:08:05Z #15 2.624 58250K .......... .......... .......... .......... .......... 45% 158M 1s -2024-03-07T01:08:05Z #15 2.624 58300K .......... .......... .......... .......... .......... 46% 29.7M 1s -2024-03-07T01:08:05Z #15 2.625 58350K .......... .......... .......... .......... .......... 46% 20.6M 1s -2024-03-07T01:08:05Z #15 2.632 58400K .......... .......... .......... .......... .......... 46% 129M 1s -2024-03-07T01:08:05Z #15 2.632 58450K .......... .......... .......... .......... .......... 46% 163M 1s -2024-03-07T01:08:05Z #15 2.632 58500K .......... .......... .......... .......... .......... 46% 160M 1s -2024-03-07T01:08:05Z #15 2.632 58550K .......... .......... .......... .......... .......... 46% 187M 1s -2024-03-07T01:08:05Z #15 2.632 58600K .......... .......... .......... .......... .......... 46% 152M 1s -2024-03-07T01:08:05Z #15 2.632 58650K .......... .......... .......... .......... .......... 46% 173M 1s -2024-03-07T01:08:05Z #15 2.632 58700K .......... .......... .......... .......... .......... 46% 149M 1s -2024-03-07T01:08:05Z #15 2.632 58750K .......... .......... .......... .......... .......... 46% 186M 1s -2024-03-07T01:08:05Z #15 2.632 58800K .......... .......... .......... .......... .......... 46% 174M 1s -2024-03-07T01:08:05Z #15 2.632 58850K .......... .......... .......... .......... .......... 46% 167M 1s -2024-03-07T01:08:05Z #15 2.632 58900K .......... .......... .......... .......... .......... 46% 159M 1s -2024-03-07T01:08:05Z #15 2.632 58950K .......... .......... .......... .......... .......... 46% 179M 1s -2024-03-07T01:08:05Z #15 2.632 59000K .......... .......... .......... .......... .......... 46% 174M 1s -2024-03-07T01:08:05Z #15 2.632 59050K .......... .......... .......... .......... .......... 46% 44.7M 1s -2024-03-07T01:08:05Z #15 2.633 59100K .......... .......... .......... .......... .......... 46% 35.5M 1s -2024-03-07T01:08:05Z #15 2.635 59150K .......... .......... .......... .......... .......... 46% 137M 1s -2024-03-07T01:08:05Z #15 2.635 59200K .......... .......... .......... .......... .......... 46% 175M 1s -2024-03-07T01:08:05Z #15 2.635 59250K .......... .......... .......... .......... .......... 46% 160M 1s -2024-03-07T01:08:05Z #15 2.635 59300K .......... .......... .......... .......... .......... 46% 9.77M 1s -2024-03-07T01:08:05Z #15 2.652 59350K .......... .......... .......... .......... .......... 46% 200M 1s -2024-03-07T01:08:05Z #15 2.652 59400K .......... .......... .......... .......... .......... 46% 187M 1s -2024-03-07T01:08:05Z #15 2.652 59450K .......... .......... .......... .......... .......... 46% 201M 1s -2024-03-07T01:08:05Z #15 2.652 59500K .......... .......... .......... .......... .......... 46% 214M 1s -2024-03-07T01:08:05Z #15 2.652 59550K .......... .......... .......... .......... .......... 47% 179M 1s -2024-03-07T01:08:05Z #15 2.652 59600K .......... .......... .......... .......... .......... 47% 207M 1s -2024-03-07T01:08:05Z #15 2.652 59650K .......... .......... .......... .......... .......... 47% 156M 1s -2024-03-07T01:08:05Z #15 2.652 59700K .......... .......... .......... .......... .......... 47% 227M 1s -2024-03-07T01:08:05Z #15 2.652 59750K .......... .......... .......... .......... .......... 47% 182M 1s -2024-03-07T01:08:05Z #15 2.652 59800K .......... .......... .......... .......... .......... 47% 180M 1s -2024-03-07T01:08:05Z #15 2.652 59850K .......... .......... .......... .......... .......... 47% 224M 1s -2024-03-07T01:08:05Z #15 2.652 59900K .......... .......... .......... .......... .......... 47% 178M 1s -2024-03-07T01:08:05Z #15 2.652 59950K .......... .......... .......... .......... .......... 47% 185M 1s -2024-03-07T01:08:05Z #15 2.652 60000K .......... .......... .......... .......... .......... 47% 219M 1s -2024-03-07T01:08:05Z #15 2.652 60050K .......... .......... .......... .......... .......... 47% 12.8M 1s -2024-03-07T01:08:05Z #15 2.652 60100K .......... .......... .......... .......... .......... 47% 115M 1s -2024-03-07T01:08:05Z #15 2.652 60150K .......... .......... .......... .......... .......... 47% 120M 1s -2024-03-07T01:08:05Z #15 2.652 60200K .......... .......... .......... .......... .......... 47% 138M 1s -2024-03-07T01:08:05Z #15 2.652 60250K .......... .......... .......... .......... .......... 47% 141M 1s -2024-03-07T01:08:05Z #15 2.652 60300K .......... .......... .......... .......... .......... 47% 27.7M 1s -2024-03-07T01:08:05Z #15 2.652 60350K .......... .......... .......... .......... .......... 47% 127M 1s -2024-03-07T01:08:05Z #15 2.652 60400K .......... .......... .......... .......... .......... 47% 154M 1s -2024-03-07T01:08:05Z #15 2.652 60450K .......... .......... .......... .......... .......... 47% 8.58M 1s -2024-03-07T01:08:05Z #15 2.664 60500K .......... .......... .......... .......... .......... 47% 110M 1s -2024-03-07T01:08:05Z #15 2.664 60550K .......... .......... .......... .......... .......... 47% 170M 1s -2024-03-07T01:08:05Z #15 2.664 60600K .......... .......... .......... .......... .......... 47% 185M 1s -2024-03-07T01:08:05Z #15 2.664 60650K .......... .......... .......... .......... .......... 47% 159M 1s -2024-03-07T01:08:05Z #15 2.664 60700K .......... .......... .......... .......... .......... 47% 184M 1s -2024-03-07T01:08:05Z #15 2.664 60750K .......... .......... .......... .......... .......... 47% 163M 1s -2024-03-07T01:08:05Z #15 2.664 60800K .......... .......... .......... .......... .......... 47% 187M 1s -2024-03-07T01:08:05Z #15 2.664 60850K .......... .......... .......... .......... .......... 48% 157M 1s -2024-03-07T01:08:05Z #15 2.664 60900K .......... .......... .......... .......... .......... 48% 139M 1s -2024-03-07T01:08:05Z #15 2.664 60950K .......... .......... .......... .......... .......... 48% 165M 1s -2024-03-07T01:08:05Z #15 2.664 61000K .......... .......... .......... .......... .......... 48% 136M 1s -2024-03-07T01:08:05Z #15 2.664 61050K .......... .......... .......... .......... .......... 48% 162M 1s -2024-03-07T01:08:05Z #15 2.664 61100K .......... .......... .......... .......... .......... 48% 181M 1s -2024-03-07T01:08:05Z #15 2.664 61150K .......... .......... .......... .......... .......... 48% 144M 1s -2024-03-07T01:08:05Z #15 2.664 61200K .......... .......... .......... .......... .......... 48% 186M 1s -2024-03-07T01:08:05Z #15 2.664 61250K .......... .......... .......... .......... .......... 48% 163M 1s -2024-03-07T01:08:05Z #15 2.664 61300K .......... .......... .......... .......... .......... 48% 149M 1s -2024-03-07T01:08:05Z #15 2.664 61350K .......... .......... .......... .......... .......... 48% 181M 1s -2024-03-07T01:08:05Z #15 2.664 61400K .......... .......... .......... .......... .......... 48% 170M 1s -2024-03-07T01:08:05Z #15 2.664 61450K .......... .......... .......... .......... .......... 48% 187M 1s -2024-03-07T01:08:05Z #15 2.664 61500K .......... .......... .......... .......... .......... 48% 139M 1s -2024-03-07T01:08:05Z #15 2.664 61550K .......... .......... .......... .......... .......... 48% 182M 1s -2024-03-07T01:08:05Z #15 2.683 61600K .......... .......... .......... .......... .......... 48% 11.9M 1s -2024-03-07T01:08:05Z #15 2.683 61650K .......... .......... .......... .......... .......... 48% 139M 1s -2024-03-07T01:08:05Z #15 2.683 61700K .......... .......... .......... .......... .......... 48% 130M 1s -2024-03-07T01:08:05Z #15 2.683 61750K .......... .......... .......... .......... .......... 48% 112M 1s -2024-03-07T01:08:05Z #15 2.683 61800K .......... .......... .......... .......... .......... 48% 121M 1s -2024-03-07T01:08:05Z #15 2.683 61850K .......... .......... .......... .......... .......... 48% 131M 1s -2024-03-07T01:08:05Z #15 2.683 61900K .......... .......... .......... .......... .......... 48% 113M 1s -2024-03-07T01:08:05Z #15 2.683 61950K .......... .......... .......... .......... .......... 48% 131M 1s -2024-03-07T01:08:05Z #15 2.683 62000K .......... .......... .......... .......... .......... 48% 132M 1s -2024-03-07T01:08:05Z #15 2.683 62050K .......... .......... .......... .......... .......... 48% 107M 1s -2024-03-07T01:08:05Z #15 2.683 62100K .......... .......... .......... .......... .......... 49% 132M 1s -2024-03-07T01:08:05Z #15 2.683 62150K .......... .......... .......... .......... .......... 49% 143M 1s -2024-03-07T01:08:05Z #15 2.683 62200K .......... .......... .......... .......... .......... 49% 131M 1s -2024-03-07T01:08:05Z #15 2.683 62250K .......... .......... .......... .......... .......... 49% 127M 1s -2024-03-07T01:08:05Z #15 2.683 62300K .......... .......... .......... .......... .......... 49% 132M 1s -2024-03-07T01:08:05Z #15 2.683 62350K .......... .......... .......... .......... .......... 49% 121M 1s -2024-03-07T01:08:05Z #15 2.683 62400K .......... .......... .......... .......... .......... 49% 66.6M 1s -2024-03-07T01:08:05Z #15 2.683 62450K .......... .......... .......... .......... .......... 49% 96.9M 1s -2024-03-07T01:08:05Z #15 2.683 62500K .......... .......... .......... .......... .......... 49% 138M 1s -2024-03-07T01:08:05Z #15 2.683 62550K .......... .......... .......... .......... .......... 49% 166M 1s -2024-03-07T01:08:05Z #15 2.683 62600K .......... .......... .......... .......... .......... 49% 116M 1s -2024-03-07T01:08:05Z #15 2.683 62650K .......... .......... .......... .......... .......... 49% 55.3M 1s -2024-03-07T01:08:05Z #15 2.683 62700K .......... .......... .......... .......... .......... 49% 45.5M 1s -2024-03-07T01:08:05Z #15 2.683 62750K .......... .......... .......... .......... .......... 49% 23.7M 1s -2024-03-07T01:08:05Z #15 2.683 62800K .......... .......... .......... .......... .......... 49% 121M 1s -2024-03-07T01:08:05Z #15 2.683 62850K .......... .......... .......... .......... .......... 49% 146M 1s -2024-03-07T01:08:05Z #15 2.683 62900K .......... .......... .......... .......... .......... 49% 142M 1s -2024-03-07T01:08:05Z #15 2.683 62950K .......... .......... .......... .......... .......... 49% 117M 1s -2024-03-07T01:08:05Z #15 2.683 63000K .......... .......... .......... .......... .......... 49% 143M 1s -2024-03-07T01:08:05Z #15 2.683 63050K .......... .......... .......... .......... .......... 49% 143M 1s -2024-03-07T01:08:05Z #15 2.683 63100K .......... .......... .......... .......... .......... 49% 142M 1s -2024-03-07T01:08:05Z #15 2.683 63150K .......... .......... .......... .......... .......... 49% 114M 1s -2024-03-07T01:08:05Z #15 2.683 63200K .......... .......... .......... .......... .......... 49% 138M 1s -2024-03-07T01:08:05Z #15 2.683 63250K .......... .......... .......... .......... .......... 49% 130M 1s -2024-03-07T01:08:05Z #15 2.683 63300K .......... .......... .......... .......... .......... 49% 34.9M 1s -2024-03-07T01:08:05Z #15 2.690 63350K .......... .......... .......... .......... .......... 50% 47.0M 1s -2024-03-07T01:08:05Z #15 2.690 63400K .......... .......... .......... .......... .......... 50% 52.4M 1s -2024-03-07T01:08:05Z #15 2.690 63450K .......... .......... .......... .......... .......... 50% 20.5M 1s -2024-03-07T01:08:05Z #15 2.690 63500K .......... .......... .......... .......... .......... 50% 41.0M 1s -2024-03-07T01:08:05Z #15 2.693 63550K .......... .......... .......... .......... .......... 50% 135M 1s -2024-03-07T01:08:05Z #15 2.693 63600K .......... .......... .......... .......... .......... 50% 130M 1s -2024-03-07T01:08:05Z #15 2.693 63650K .......... .......... .......... .......... .......... 50% 123M 1s -2024-03-07T01:08:05Z #15 2.693 63700K .......... .......... .......... .......... .......... 50% 123M 1s -2024-03-07T01:08:05Z #15 2.693 63750K .......... .......... .......... .......... .......... 50% 103M 1s -2024-03-07T01:08:05Z #15 2.693 63800K .......... .......... .......... .......... .......... 50% 156M 1s -2024-03-07T01:08:05Z #15 2.693 63850K .......... .......... .......... .......... .......... 50% 10.6M 1s -2024-03-07T01:08:05Z #15 2.697 63900K .......... .......... .......... .......... .......... 50% 67.5M 1s -2024-03-07T01:08:05Z #15 2.699 63950K .......... .......... .......... .......... .......... 50% 140M 1s -2024-03-07T01:08:05Z #15 2.699 64000K .......... .......... .......... .......... .......... 50% 159M 1s -2024-03-07T01:08:05Z #15 2.699 64050K .......... .......... .......... .......... .......... 50% 139M 1s -2024-03-07T01:08:05Z #15 2.699 64100K .......... .......... .......... .......... .......... 50% 174M 1s -2024-03-07T01:08:05Z #15 2.699 64150K .......... .......... .......... .......... .......... 50% 11.9M 1s -2024-03-07T01:08:05Z #15 2.704 64200K .......... .......... .......... .......... .......... 50% 34.0M 1s -2024-03-07T01:08:05Z #15 2.707 64250K .......... .......... .......... .......... .......... 50% 135M 1s -2024-03-07T01:08:05Z #15 2.707 64300K .......... .......... .......... .......... .......... 50% 125M 1s -2024-03-07T01:08:05Z #15 2.707 64350K .......... .......... .......... .......... .......... 50% 158M 1s -2024-03-07T01:08:05Z #15 2.707 64400K .......... .......... .......... .......... .......... 50% 123M 1s -2024-03-07T01:08:05Z #15 2.707 64450K .......... .......... .......... .......... .......... 50% 139M 1s -2024-03-07T01:08:05Z #15 2.707 64500K .......... .......... .......... .......... .......... 50% 126M 1s -2024-03-07T01:08:05Z #15 2.707 64550K .......... .......... .......... .......... .......... 50% 166M 1s -2024-03-07T01:08:05Z #15 2.707 64600K .......... .......... .......... .......... .......... 50% 14.6M 1s -2024-03-07T01:08:05Z #15 2.711 64650K .......... .......... .......... .......... .......... 51% 93.5M 1s -2024-03-07T01:08:05Z #15 2.711 64700K .......... .......... .......... .......... .......... 51% 173M 1s -2024-03-07T01:08:05Z #15 2.711 64750K .......... .......... .......... .......... .......... 51% 29.1M 1s -2024-03-07T01:08:05Z #15 2.715 64800K .......... .......... .......... .......... .......... 51% 146M 1s -2024-03-07T01:08:05Z #15 2.715 64850K .......... .......... .......... .......... .......... 51% 160M 1s -2024-03-07T01:08:05Z #15 2.715 64900K .......... .......... .......... .......... .......... 51% 170M 1s -2024-03-07T01:08:05Z #15 2.715 64950K .......... .......... .......... .......... .......... 51% 173M 1s -2024-03-07T01:08:05Z #15 2.715 65000K .......... .......... .......... .......... .......... 51% 174M 1s -2024-03-07T01:08:05Z #15 2.715 65050K .......... .......... .......... .......... .......... 51% 177M 1s -2024-03-07T01:08:05Z #15 2.715 65100K .......... .......... .......... .......... .......... 51% 148M 1s -2024-03-07T01:08:05Z #15 2.715 65150K .......... .......... .......... .......... .......... 51% 66.7M 1s -2024-03-07T01:08:05Z #15 2.717 65200K .......... .......... .......... .......... .......... 51% 12.9M 1s -2024-03-07T01:08:05Z #15 2.723 65250K .......... .......... .......... .......... .......... 51% 181M 1s -2024-03-07T01:08:05Z #15 2.723 65300K .......... .......... .......... .......... .......... 51% 174M 1s -2024-03-07T01:08:05Z #15 2.723 65350K .......... .......... .......... .......... .......... 51% 155M 1s -2024-03-07T01:08:05Z #15 2.723 65400K .......... .......... .......... .......... .......... 51% 170M 1s -2024-03-07T01:08:05Z #15 2.723 65450K .......... .......... .......... .......... .......... 51% 182M 1s -2024-03-07T01:08:05Z #15 2.723 65500K .......... .......... .......... .......... .......... 51% 163M 1s -2024-03-07T01:08:05Z #15 2.723 65550K .......... .......... .......... .......... .......... 51% 178M 1s -2024-03-07T01:08:05Z #15 2.723 65600K .......... .......... .......... .......... .......... 51% 165M 1s -2024-03-07T01:08:05Z #15 2.723 65650K .......... .......... .......... .......... .......... 51% 178M 1s -2024-03-07T01:08:05Z #15 2.723 65700K .......... .......... .......... .......... .......... 51% 187M 1s -2024-03-07T01:08:05Z #15 2.723 65750K .......... .......... .......... .......... .......... 51% 178M 1s -2024-03-07T01:08:05Z #15 2.723 65800K .......... .......... .......... .......... .......... 51% 168M 1s -2024-03-07T01:08:05Z #15 2.723 65850K .......... .......... .......... .......... .......... 51% 183M 1s -2024-03-07T01:08:05Z #15 2.723 65900K .......... .......... .......... .......... .......... 52% 13.3M 1s -2024-03-07T01:08:05Z #15 2.731 65950K .......... .......... .......... .......... .......... 52% 137M 1s -2024-03-07T01:08:05Z #15 2.731 66000K .......... .......... .......... .......... .......... 52% 130M 1s -2024-03-07T01:08:05Z #15 2.731 66050K .......... .......... .......... .......... .......... 52% 135M 1s -2024-03-07T01:08:05Z #15 2.731 66100K .......... .......... .......... .......... .......... 52% 145M 1s -2024-03-07T01:08:05Z #15 2.731 66150K .......... .......... .......... .......... .......... 52% 145M 1s -2024-03-07T01:08:05Z #15 2.731 66200K .......... .......... .......... .......... .......... 52% 141M 1s -2024-03-07T01:08:05Z #15 2.731 66250K .......... .......... .......... .......... .......... 52% 153M 1s -2024-03-07T01:08:05Z #15 2.731 66300K .......... .......... .......... .......... .......... 52% 136M 1s -2024-03-07T01:08:05Z #15 2.731 66350K .......... .......... .......... .......... .......... 52% 145M 1s -2024-03-07T01:08:05Z #15 2.731 66400K .......... .......... .......... .......... .......... 52% 138M 1s -2024-03-07T01:08:05Z #15 2.731 66450K .......... .......... .......... .......... .......... 52% 154M 1s -2024-03-07T01:08:05Z #15 2.731 66500K .......... .......... .......... .......... .......... 52% 148M 1s -2024-03-07T01:08:05Z #15 2.731 66550K .......... .......... .......... .......... .......... 52% 19.1M 1s -2024-03-07T01:08:05Z #15 2.734 66600K .......... .......... .......... .......... .......... 52% 30.9M 1s -2024-03-07T01:08:05Z #15 2.735 66650K .......... .......... .......... .......... .......... 52% 42.9M 1s -2024-03-07T01:08:05Z #15 2.739 66700K .......... .......... .......... .......... .......... 52% 166M 1s -2024-03-07T01:08:05Z #15 2.739 66750K .......... .......... .......... .......... .......... 52% 158M 1s -2024-03-07T01:08:05Z #15 2.739 66800K .......... .......... .......... .......... .......... 52% 179M 1s -2024-03-07T01:08:05Z #15 2.739 66850K .......... .......... .......... .......... .......... 52% 174M 1s -2024-03-07T01:08:05Z #15 2.739 66900K .......... .......... .......... .......... .......... 52% 149M 1s -2024-03-07T01:08:05Z #15 2.739 66950K .......... .......... .......... .......... .......... 52% 183M 1s -2024-03-07T01:08:05Z #15 2.739 67000K .......... .......... .......... .......... .......... 52% 154M 1s -2024-03-07T01:08:05Z #15 2.739 67050K .......... .......... .......... .......... .......... 52% 174M 1s -2024-03-07T01:08:05Z #15 2.739 67100K .......... .......... .......... .......... .......... 52% 154M 1s -2024-03-07T01:08:05Z #15 2.739 67150K .......... .......... .......... .......... .......... 53% 176M 1s -2024-03-07T01:08:05Z #15 2.739 67200K .......... .......... .......... .......... .......... 53% 17.0M 1s -2024-03-07T01:08:05Z #15 2.743 67250K .......... .......... .......... .......... .......... 53% 121M 1s -2024-03-07T01:08:05Z #15 2.743 67300K .......... .......... .......... .......... .......... 53% 117M 1s -2024-03-07T01:08:05Z #15 2.743 67350K .......... .......... .......... .......... .......... 53% 124M 1s -2024-03-07T01:08:05Z #15 2.743 67400K .......... .......... .......... .......... .......... 53% 73.0M 1s -2024-03-07T01:08:05Z #15 2.744 67450K .......... .......... .......... .......... .......... 53% 75.2M 1s -2024-03-07T01:08:05Z #15 2.745 67500K .......... .......... .......... .......... .......... 53% 66.1M 1s -2024-03-07T01:08:05Z #15 2.747 67550K .......... .......... .......... .......... .......... 53% 113M 1s -2024-03-07T01:08:05Z #15 2.747 67600K .......... .......... .......... .......... .......... 53% 127M 1s -2024-03-07T01:08:05Z #15 2.747 67650K .......... .......... .......... .......... .......... 53% 131M 1s -2024-03-07T01:08:05Z #15 2.747 67700K .......... .......... .......... .......... .......... 53% 126M 1s -2024-03-07T01:08:05Z #15 2.747 67750K .......... .......... .......... .......... .......... 53% 64.1M 1s -2024-03-07T01:08:05Z #15 2.751 67800K .......... .......... .......... .......... .......... 53% 128M 1s -2024-03-07T01:08:05Z #15 2.751 67850K .......... .......... .......... .......... .......... 53% 127M 1s -2024-03-07T01:08:05Z #15 2.751 67900K .......... .......... .......... .......... .......... 53% 140M 1s -2024-03-07T01:08:05Z #15 2.751 67950K .......... .......... .......... .......... .......... 53% 113M 1s -2024-03-07T01:08:05Z #15 2.751 68000K .......... .......... .......... .......... .......... 53% 124M 1s -2024-03-07T01:08:05Z #15 2.751 68050K .......... .......... .......... .......... .......... 53% 132M 1s -2024-03-07T01:08:05Z #15 2.751 68100K .......... .......... .......... .......... .......... 53% 132M 1s -2024-03-07T01:08:05Z #15 2.751 68150K .......... .......... .......... .......... .......... 53% 105M 1s -2024-03-07T01:08:05Z #15 2.751 68200K .......... .......... .......... .......... .......... 53% 135M 1s -2024-03-07T01:08:05Z #15 2.751 68250K .......... .......... .......... .......... .......... 53% 54.3M 1s -2024-03-07T01:08:05Z #15 2.755 68300K .......... .......... .......... .......... .......... 53% 133M 1s -2024-03-07T01:08:05Z #15 2.755 68350K .......... .......... .......... .......... .......... 53% 133M 1s -2024-03-07T01:08:05Z #15 2.755 68400K .......... .......... .......... .......... .......... 53% 129M 1s -2024-03-07T01:08:05Z #15 2.755 68450K .......... .......... .......... .......... .......... 54% 112M 1s -2024-03-07T01:08:05Z #15 2.755 68500K .......... .......... .......... .......... .......... 54% 136M 1s -2024-03-07T01:08:05Z #15 2.755 68550K .......... .......... .......... .......... .......... 54% 126M 1s -2024-03-07T01:08:05Z #15 2.755 68600K .......... .......... .......... .......... .......... 54% 136M 1s -2024-03-07T01:08:05Z #15 2.755 68650K .......... .......... .......... .......... .......... 54% 135M 1s -2024-03-07T01:08:05Z #15 2.755 68700K .......... .......... .......... .......... .......... 54% 29.7M 1s -2024-03-07T01:08:05Z #15 2.759 68750K .......... .......... .......... .......... .......... 54% 87.8M 1s -2024-03-07T01:08:05Z #15 2.759 68800K .......... .......... .......... .......... .......... 54% 119M 1s -2024-03-07T01:08:05Z #15 2.759 68850K .......... .......... .......... .......... .......... 54% 131M 1s -2024-03-07T01:08:05Z #15 2.759 68900K .......... .......... .......... .......... .......... 54% 142M 1s -2024-03-07T01:08:05Z #15 2.759 68950K .......... .......... .......... .......... .......... 54% 134M 1s -2024-03-07T01:08:05Z #15 2.759 69000K .......... .......... .......... .......... .......... 54% 113M 1s -2024-03-07T01:08:05Z #15 2.759 69050K .......... .......... .......... .......... .......... 54% 28.2M 1s -2024-03-07T01:08:05Z #15 2.761 69100K .......... .......... .......... .......... .......... 54% 33.2M 1s -2024-03-07T01:08:05Z #15 2.763 69150K .......... .......... .......... .......... .......... 54% 114M 1s -2024-03-07T01:08:05Z #15 2.763 69200K .......... .......... .......... .......... .......... 54% 134M 1s -2024-03-07T01:08:05Z #15 2.763 69250K .......... .......... .......... .......... .......... 54% 120M 1s -2024-03-07T01:08:05Z #15 2.764 69300K .......... .......... .......... .......... .......... 54% 71.3M 1s -2024-03-07T01:08:05Z #15 2.765 69350K .......... .......... .......... .......... .......... 54% 28.6M 1s -2024-03-07T01:08:05Z #15 2.766 69400K .......... .......... .......... .......... .......... 54% 63.7M 1s -2024-03-07T01:08:05Z #15 2.767 69450K .......... .......... .......... .......... .......... 54% 48.8M 1s -2024-03-07T01:08:05Z #15 2.768 69500K .......... .......... .......... .......... .......... 54% 9.34M 1s -2024-03-07T01:08:05Z #15 2.773 69550K .......... .......... .......... .......... .......... 54% 135M 1s -2024-03-07T01:08:05Z #15 2.774 69600K .......... .......... .......... .......... .......... 54% 128M 1s -2024-03-07T01:08:05Z #15 2.774 69650K .......... .......... .......... .......... .......... 54% 89.1M 1s -2024-03-07T01:08:05Z #15 2.775 69700K .......... .......... .......... .......... .......... 55% 116M 1s -2024-03-07T01:08:05Z #15 2.775 69750K .......... .......... .......... .......... .......... 55% 114M 1s -2024-03-07T01:08:05Z #15 2.775 69800K .......... .......... .......... .......... .......... 55% 24.5M 1s -2024-03-07T01:08:05Z #15 2.777 69850K .......... .......... .......... .......... .......... 55% 33.0M 1s -2024-03-07T01:08:05Z #15 2.779 69900K .......... .......... .......... .......... .......... 55% 48.2M 1s -2024-03-07T01:08:05Z #15 2.780 69950K .......... .......... .......... .......... .......... 55% 48.5M 1s -2024-03-07T01:08:05Z #15 2.788 70000K .......... .......... .......... .......... .......... 55% 47.2M 1s -2024-03-07T01:08:05Z #15 2.788 70050K .......... .......... .......... .......... .......... 55% 45.5M 1s -2024-03-07T01:08:05Z #15 2.788 70100K .......... .......... .......... .......... .......... 55% 47.9M 1s -2024-03-07T01:08:05Z #15 2.788 70150K .......... .......... .......... .......... .......... 55% 42.6M 1s -2024-03-07T01:08:05Z #15 2.788 70200K .......... .......... .......... .......... .......... 55% 75.6M 1s -2024-03-07T01:08:05Z #15 2.788 70250K .......... .......... .......... .......... .......... 55% 47.0M 1s -2024-03-07T01:08:05Z #15 2.788 70300K .......... .......... .......... .......... .......... 55% 51.5M 1s -2024-03-07T01:08:05Z #15 2.788 70350K .......... .......... .......... .......... .......... 55% 116M 1s -2024-03-07T01:08:05Z #15 2.788 70400K .......... .......... .......... .......... .......... 55% 132M 1s -2024-03-07T01:08:05Z #15 2.789 70450K .......... .......... .......... .......... .......... 55% 128M 1s -2024-03-07T01:08:05Z #15 2.789 70500K .......... .......... .......... .......... .......... 55% 115M 1s -2024-03-07T01:08:05Z #15 2.789 70550K .......... .......... .......... .......... .......... 55% 113M 1s -2024-03-07T01:08:05Z #15 2.790 70600K .......... .......... .......... .......... .......... 55% 123M 1s -2024-03-07T01:08:05Z #15 2.790 70650K .......... .......... .......... .......... .......... 55% 100M 1s -2024-03-07T01:08:05Z #15 2.790 70700K .......... .......... .......... .......... .......... 55% 123M 1s -2024-03-07T01:08:05Z #15 2.791 70750K .......... .......... .......... .......... .......... 55% 140M 1s -2024-03-07T01:08:05Z #15 2.791 70800K .......... .......... .......... .......... .......... 55% 100M 1s -2024-03-07T01:08:05Z #15 2.792 70850K .......... .......... .......... .......... .......... 55% 105M 1s -2024-03-07T01:08:05Z #15 2.792 70900K .......... .......... .......... .......... .......... 55% 114M 1s -2024-03-07T01:08:05Z #15 2.793 70950K .......... .......... .......... .......... .......... 56% 136M 1s -2024-03-07T01:08:05Z #15 2.793 71000K .......... .......... .......... .......... .......... 56% 93.9M 1s -2024-03-07T01:08:05Z #15 2.793 71050K .......... .......... .......... .......... .......... 56% 133M 1s -2024-03-07T01:08:05Z #15 2.794 71100K .......... .......... .......... .......... .......... 56% 148M 1s -2024-03-07T01:08:05Z #15 2.794 71150K .......... .......... .......... .......... .......... 56% 126M 1s -2024-03-07T01:08:05Z #15 2.795 71200K .......... .......... .......... .......... .......... 56% 131M 1s -2024-03-07T01:08:05Z #15 2.797 71250K .......... .......... .......... .......... .......... 56% 153M 1s -2024-03-07T01:08:05Z #15 2.797 71300K .......... .......... .......... .......... .......... 56% 129M 1s -2024-03-07T01:08:05Z #15 2.797 71350K .......... .......... .......... .......... .......... 56% 111M 1s -2024-03-07T01:08:05Z #15 2.797 71400K .......... .......... .......... .......... .......... 56% 143M 1s -2024-03-07T01:08:05Z #15 2.797 71450K .......... .......... .......... .......... .......... 56% 145M 1s -2024-03-07T01:08:05Z #15 2.797 71500K .......... .......... .......... .......... .......... 56% 155M 1s -2024-03-07T01:08:05Z #15 2.797 71550K .......... .......... .......... .......... .......... 56% 143M 1s -2024-03-07T01:08:05Z #15 2.797 71600K .......... .......... .......... .......... .......... 56% 128M 1s -2024-03-07T01:08:05Z #15 2.798 71650K .......... .......... .......... .......... .......... 56% 170M 1s -2024-03-07T01:08:05Z #15 2.798 71700K .......... .......... .......... .......... .......... 56% 159M 1s -2024-03-07T01:08:05Z #15 2.799 71750K .......... .......... .......... .......... .......... 56% 128M 1s -2024-03-07T01:08:05Z #15 2.799 71800K .......... .......... .......... .......... .......... 56% 145M 1s -2024-03-07T01:08:05Z #15 2.799 71850K .......... .......... .......... .......... .......... 56% 121M 1s -2024-03-07T01:08:05Z #15 2.804 71900K .......... .......... .......... .......... .......... 56% 158M 1s -2024-03-07T01:08:05Z #15 2.804 71950K .......... .......... .......... .......... .......... 56% 123M 1s -2024-03-07T01:08:05Z #15 2.804 72000K .......... .......... .......... .......... .......... 56% 149M 1s -2024-03-07T01:08:05Z #15 2.804 72050K .......... .......... .......... .......... .......... 56% 175M 1s -2024-03-07T01:08:05Z #15 2.804 72100K .......... .......... .......... .......... .......... 56% 155M 1s -2024-03-07T01:08:05Z #15 2.804 72150K .......... .......... .......... .......... .......... 56% 148M 1s -2024-03-07T01:08:05Z #15 2.804 72200K .......... .......... .......... .......... .......... 56% 119M 1s -2024-03-07T01:08:05Z #15 2.804 72250K .......... .......... .......... .......... .......... 57% 161M 1s -2024-03-07T01:08:05Z #15 2.804 72300K .......... .......... .......... .......... .......... 57% 169M 1s -2024-03-07T01:08:05Z #15 2.804 72350K .......... .......... .......... .......... .......... 57% 169M 1s -2024-03-07T01:08:05Z #15 2.804 72400K .......... .......... .......... .......... .......... 57% 130M 1s -2024-03-07T01:08:05Z #15 2.804 72450K .......... .......... .......... .......... .......... 57% 84.5M 1s -2024-03-07T01:08:05Z #15 2.804 72500K .......... .......... .......... .......... .......... 57% 167M 1s -2024-03-07T01:08:05Z #15 2.804 72550K .......... .......... .......... .......... .......... 57% 142M 1s -2024-03-07T01:08:05Z #15 2.804 72600K .......... .......... .......... .......... .......... 57% 138M 1s -2024-03-07T01:08:05Z #15 2.805 72650K .......... .......... .......... .......... .......... 57% 171M 1s -2024-03-07T01:08:05Z #15 2.805 72700K .......... .......... .......... .......... .......... 57% 142M 1s -2024-03-07T01:08:05Z #15 2.805 72750K .......... .......... .......... .......... .......... 57% 144M 1s -2024-03-07T01:08:05Z #15 2.806 72800K .......... .......... .......... .......... .......... 57% 110M 1s -2024-03-07T01:08:05Z #15 2.806 72850K .......... .......... .......... .......... .......... 57% 168M 1s -2024-03-07T01:08:05Z #15 2.806 72900K .......... .......... .......... .......... .......... 57% 164M 1s -2024-03-07T01:08:05Z #15 2.807 72950K .......... .......... .......... .......... .......... 57% 146M 1s -2024-03-07T01:08:05Z #15 2.807 73000K .......... .......... .......... .......... .......... 57% 137M 1s -2024-03-07T01:08:05Z #15 2.807 73050K .......... .......... .......... .......... .......... 57% 121M 1s -2024-03-07T01:08:05Z #15 2.808 73100K .......... .......... .......... .......... .......... 57% 142M 1s -2024-03-07T01:08:05Z #15 2.808 73150K .......... .......... .......... .......... .......... 57% 174M 1s -2024-03-07T01:08:05Z #15 2.808 73200K .......... .......... .......... .......... .......... 57% 158M 1s -2024-03-07T01:08:05Z #15 2.809 73250K .......... .......... .......... .......... .......... 57% 130M 1s -2024-03-07T01:08:05Z #15 2.809 73300K .......... .......... .......... .......... .......... 57% 170M 1s -2024-03-07T01:08:05Z #15 2.809 73350K .......... .......... .......... .......... .......... 57% 166M 1s -2024-03-07T01:08:05Z #15 2.810 73400K .......... .......... .......... .......... .......... 57% 142M 1s -2024-03-07T01:08:05Z #15 2.810 73450K .......... .......... .......... .......... .......... 57% 162M 1s -2024-03-07T01:08:05Z #15 2.810 73500K .......... .......... .......... .......... .......... 58% 125M 1s -2024-03-07T01:08:05Z #15 2.811 73550K .......... .......... .......... .......... .......... 58% 162M 1s -2024-03-07T01:08:05Z #15 2.811 73600K .......... .......... .......... .......... .......... 58% 11.5M 1s -2024-03-07T01:08:05Z #15 2.815 73650K .......... .......... .......... .......... .......... 58% 100M 1s -2024-03-07T01:08:05Z #15 2.816 73700K .......... .......... .......... .......... .......... 58% 148M 1s -2024-03-07T01:08:05Z #15 2.816 73750K .......... .......... .......... .......... .......... 58% 98.9M 1s -2024-03-07T01:08:05Z #15 2.817 73800K .......... .......... .......... .......... .......... 58% 139M 1s -2024-03-07T01:08:05Z #15 2.817 73850K .......... .......... .......... .......... .......... 58% 171M 1s -2024-03-07T01:08:05Z #15 2.817 73900K .......... .......... .......... .......... .......... 58% 114M 1s -2024-03-07T01:08:05Z #15 2.818 73950K .......... .......... .......... .......... .......... 58% 155M 1s -2024-03-07T01:08:05Z #15 2.818 74000K .......... .......... .......... .......... .......... 58% 170M 1s -2024-03-07T01:08:05Z #15 2.818 74050K .......... .......... .......... .......... .......... 58% 156M 1s -2024-03-07T01:08:05Z #15 2.819 74100K .......... .......... .......... .......... .......... 58% 153M 1s -2024-03-07T01:08:05Z #15 2.819 74150K .......... .......... .......... .......... .......... 58% 125M 1s -2024-03-07T01:08:05Z #15 2.819 74200K .......... .......... .......... .......... .......... 58% 16.6M 1s -2024-03-07T01:08:05Z #15 2.823 74250K .......... .......... .......... .......... .......... 58% 17.7M 1s -2024-03-07T01:08:05Z #15 2.825 74300K .......... .......... .......... .......... .......... 58% 122M 1s -2024-03-07T01:08:05Z #15 2.825 74350K .......... .......... .......... .......... .......... 58% 161M 1s -2024-03-07T01:08:05Z #15 2.826 74400K .......... .......... .......... .......... .......... 58% 159M 1s -2024-03-07T01:08:05Z #15 2.826 74450K .......... .......... .......... .......... .......... 58% 93.1M 1s -2024-03-07T01:08:05Z #15 2.827 74500K .......... .......... .......... .......... .......... 58% 139M 1s -2024-03-07T01:08:05Z #15 2.827 74550K .......... .......... .......... .......... .......... 58% 136M 1s -2024-03-07T01:08:05Z #15 2.827 74600K .......... .......... .......... .......... .......... 58% 104M 1s -2024-03-07T01:08:05Z #15 2.828 74650K .......... .......... .......... .......... .......... 58% 115M 1s -2024-03-07T01:08:05Z #15 2.828 74700K .......... .......... .......... .......... .......... 58% 146M 1s -2024-03-07T01:08:05Z #15 2.829 74750K .......... .......... .......... .......... .......... 58% 121M 1s -2024-03-07T01:08:05Z #15 2.829 74800K .......... .......... .......... .......... .......... 59% 153M 1s -2024-03-07T01:08:05Z #15 2.829 74850K .......... .......... .......... .......... .......... 59% 148M 1s -2024-03-07T01:08:05Z #15 2.830 74900K .......... .......... .......... .......... .......... 59% 112M 1s -2024-03-07T01:08:05Z #15 2.830 74950K .......... .......... .......... .......... .......... 59% 120M 1s -2024-03-07T01:08:05Z #15 2.830 75000K .......... .......... .......... .......... .......... 59% 134M 1s -2024-03-07T01:08:05Z #15 2.831 75050K .......... .......... .......... .......... .......... 59% 132M 1s -2024-03-07T01:08:05Z #15 2.831 75100K .......... .......... .......... .......... .......... 59% 21.2M 1s -2024-03-07T01:08:05Z #15 2.834 75150K .......... .......... .......... .......... .......... 59% 78.3M 1s -2024-03-07T01:08:05Z #15 2.834 75200K .......... .......... .......... .......... .......... 59% 63.3M 1s -2024-03-07T01:08:05Z #15 2.835 75250K .......... .......... .......... .......... .......... 59% 66.1M 1s -2024-03-07T01:08:05Z #15 2.836 75300K .......... .......... .......... .......... .......... 59% 112M 1s -2024-03-07T01:08:05Z #15 2.836 75350K .......... .......... .......... .......... .......... 59% 49.1M 1s -2024-03-07T01:08:05Z #15 2.837 75400K .......... .......... .......... .......... .......... 59% 150M 1s -2024-03-07T01:08:05Z #15 2.837 75450K .......... .......... .......... .......... .......... 59% 147M 1s -2024-03-07T01:08:05Z #15 2.838 75500K .......... .......... .......... .......... .......... 59% 141M 1s -2024-03-07T01:08:05Z #15 2.838 75550K .......... .......... .......... .......... .......... 59% 71.8M 1s -2024-03-07T01:08:05Z #15 2.839 75600K .......... .......... .......... .......... .......... 59% 161M 1s -2024-03-07T01:08:05Z #15 2.839 75650K .......... .......... .......... .......... .......... 59% 127M 1s -2024-03-07T01:08:05Z #15 2.839 75700K .......... .......... .......... .......... .......... 59% 124M 1s -2024-03-07T01:08:05Z #15 2.840 75750K .......... .......... .......... .......... .......... 59% 117M 1s -2024-03-07T01:08:05Z #15 2.840 75800K .......... .......... .......... .......... .......... 59% 124M 1s -2024-03-07T01:08:05Z #15 2.840 75850K .......... .......... .......... .......... .......... 59% 27.4M 1s -2024-03-07T01:08:05Z #15 2.842 75900K .......... .......... .......... .......... .......... 59% 119M 1s -2024-03-07T01:08:05Z #15 2.843 75950K .......... .......... .......... .......... .......... 59% 129M 1s -2024-03-07T01:08:05Z #15 2.843 76000K .......... .......... .......... .......... .......... 59% 40.6M 1s -2024-03-07T01:08:05Z #15 2.844 76050K .......... .......... .......... .......... .......... 60% 127M 1s -2024-03-07T01:08:05Z #15 2.845 76100K .......... .......... .......... .......... .......... 60% 139M 1s -2024-03-07T01:08:05Z #15 2.845 76150K .......... .......... .......... .......... .......... 60% 157M 1s -2024-03-07T01:08:05Z #15 2.845 76200K .......... .......... .......... .......... .......... 60% 105M 1s -2024-03-07T01:08:05Z #15 2.846 76250K .......... .......... .......... .......... .......... 60% 33.5M 1s -2024-03-07T01:08:05Z #15 2.848 76300K .......... .......... .......... .......... .......... 60% 138M 1s -2024-03-07T01:08:05Z #15 2.848 76350K .......... .......... .......... .......... .......... 60% 129M 1s -2024-03-07T01:08:05Z #15 2.848 76400K .......... .......... .......... .......... .......... 60% 140M 1s -2024-03-07T01:08:05Z #15 2.848 76450K .......... .......... .......... .......... .......... 60% 155M 1s -2024-03-07T01:08:05Z #15 2.849 76500K .......... .......... .......... .......... .......... 60% 130M 1s -2024-03-07T01:08:05Z #15 2.849 76550K .......... .......... .......... .......... .......... 60% 120M 1s -2024-03-07T01:08:05Z #15 2.849 76600K .......... .......... .......... .......... .......... 60% 139M 1s -2024-03-07T01:08:05Z #15 2.850 76650K .......... .......... .......... .......... .......... 60% 132M 1s -2024-03-07T01:08:05Z #15 2.851 76700K .......... .......... .......... .......... .......... 60% 170M 1s -2024-03-07T01:08:05Z #15 2.851 76750K .......... .......... .......... .......... .......... 60% 149M 1s -2024-03-07T01:08:05Z #15 2.851 76800K .......... .......... .......... .......... .......... 60% 137M 1s -2024-03-07T01:08:05Z #15 2.851 76850K .......... .......... .......... .......... .......... 60% 32.3M 1s -2024-03-07T01:08:05Z #15 2.853 76900K .......... .......... .......... .......... .......... 60% 108M 1s -2024-03-07T01:08:05Z #15 2.853 76950K .......... .......... .......... .......... .......... 60% 123M 1s -2024-03-07T01:08:05Z #15 2.853 77000K .......... .......... .......... .......... .......... 60% 130M 1s -2024-03-07T01:08:05Z #15 2.854 77050K .......... .......... .......... .......... .......... 60% 153M 1s -2024-03-07T01:08:05Z #15 2.854 77100K .......... .......... .......... .......... .......... 60% 122M 1s -2024-03-07T01:08:05Z #15 2.855 77150K .......... .......... .......... .......... .......... 60% 165M 1s -2024-03-07T01:08:05Z #15 2.855 77200K .......... .......... .......... .......... .......... 60% 169M 1s -2024-03-07T01:08:05Z #15 2.856 77250K .......... .......... .......... .......... .......... 60% 30.6M 1s -2024-03-07T01:08:05Z #15 2.857 77300K .......... .......... .......... .......... .......... 61% 48.3M 1s -2024-03-07T01:08:05Z #15 2.858 77350K .......... .......... .......... .......... .......... 61% 124M 1s -2024-03-07T01:08:05Z #15 2.858 77400K .......... .......... .......... .......... .......... 61% 137M 1s -2024-03-07T01:08:05Z #15 2.859 77450K .......... .......... .......... .......... .......... 61% 149M 1s -2024-03-07T01:08:05Z #15 2.859 77500K .......... .......... .......... .......... .......... 61% 145M 1s -2024-03-07T01:08:05Z #15 2.859 77550K .......... .......... .......... .......... .......... 61% 29.8M 1s -2024-03-07T01:08:05Z #15 2.861 77600K .......... .......... .......... .......... .......... 61% 70.5M 1s -2024-03-07T01:08:05Z #15 2.862 77650K .......... .......... .......... .......... .......... 61% 52.8M 1s -2024-03-07T01:08:05Z #15 2.863 77700K .......... .......... .......... .......... .......... 61% 73.5M 1s -2024-03-07T01:08:05Z #15 2.863 77750K .......... .......... .......... .......... .......... 61% 64.4M 1s -2024-03-07T01:08:05Z #15 2.864 77800K .......... .......... .......... .......... .......... 61% 150M 1s -2024-03-07T01:08:05Z #15 2.864 77850K .......... .......... .......... .......... .......... 61% 158M 1s -2024-03-07T01:08:05Z #15 2.864 77900K .......... .......... .......... .......... .......... 61% 143M 1s -2024-03-07T01:08:05Z #15 2.865 77950K .......... .......... .......... .......... .......... 61% 171M 1s -2024-03-07T01:08:05Z #15 2.865 78000K .......... .......... .......... .......... .......... 61% 125M 1s -2024-03-07T01:08:05Z #15 2.866 78050K .......... .......... .......... .......... .......... 61% 149M 1s -2024-03-07T01:08:05Z #15 2.866 78100K .......... .......... .......... .......... .......... 61% 121M 1s -2024-03-07T01:08:05Z #15 2.866 78150K .......... .......... .......... .......... .......... 61% 151M 1s -2024-03-07T01:08:05Z #15 2.868 78200K .......... .......... .......... .......... .......... 61% 135M 1s -2024-03-07T01:08:05Z #15 2.868 78250K .......... .......... .......... .......... .......... 61% 142M 1s -2024-03-07T01:08:05Z #15 2.868 78300K .......... .......... .......... .......... .......... 61% 26.3M 1s -2024-03-07T01:08:05Z #15 2.875 78350K .......... .......... .......... .......... .......... 61% 116M 1s -2024-03-07T01:08:05Z #15 2.875 78400K .......... .......... .......... .......... .......... 61% 153M 1s -2024-03-07T01:08:05Z #15 2.875 78450K .......... .......... .......... .......... .......... 61% 139M 1s -2024-03-07T01:08:05Z #15 2.875 78500K .......... .......... .......... .......... .......... 61% 134M 1s -2024-03-07T01:08:05Z #15 2.875 78550K .......... .......... .......... .......... .......... 61% 164M 1s -2024-03-07T01:08:05Z #15 2.875 78600K .......... .......... .......... .......... .......... 62% 164M 1s -2024-03-07T01:08:05Z #15 2.875 78650K .......... .......... .......... .......... .......... 62% 80.0M 1s -2024-03-07T01:08:05Z #15 2.875 78700K .......... .......... .......... .......... .......... 62% 74.0M 1s -2024-03-07T01:08:05Z #15 2.875 78750K .......... .......... .......... .......... .......... 62% 91.5M 1s -2024-03-07T01:08:05Z #15 2.875 78800K .......... .......... .......... .......... .......... 62% 60.8M 1s -2024-03-07T01:08:05Z #15 2.875 78850K .......... .......... .......... .......... .......... 62% 122M 1s -2024-03-07T01:08:05Z #15 2.875 78900K .......... .......... .......... .......... .......... 62% 130M 1s -2024-03-07T01:08:05Z #15 2.875 78950K .......... .......... .......... .......... .......... 62% 106M 1s -2024-03-07T01:08:05Z #15 2.875 79000K .......... .......... .......... .......... .......... 62% 125M 1s -2024-03-07T01:08:05Z #15 2.875 79050K .......... .......... .......... .......... .......... 62% 150M 1s -2024-03-07T01:08:05Z #15 2.876 79100K .......... .......... .......... .......... .......... 62% 111M 1s -2024-03-07T01:08:05Z #15 2.876 79150K .......... .......... .......... .......... .......... 62% 63.9M 1s -2024-03-07T01:08:05Z #15 2.877 79200K .......... .......... .......... .......... .......... 62% 64.2M 1s -2024-03-07T01:08:05Z #15 2.878 79250K .......... .......... .......... .......... .......... 62% 81.0M 1s -2024-03-07T01:08:05Z #15 2.878 79300K .......... .......... .......... .......... .......... 62% 151M 1s -2024-03-07T01:08:05Z #15 2.879 79350K .......... .......... .......... .......... .......... 62% 152M 1s -2024-03-07T01:08:05Z #15 2.879 79400K .......... .......... .......... .......... .......... 62% 35.3M 1s -2024-03-07T01:08:05Z #15 2.881 79450K .......... .......... .......... .......... .......... 62% 152M 1s -2024-03-07T01:08:05Z #15 2.881 79500K .......... .......... .......... .......... .......... 62% 139M 1s -2024-03-07T01:08:05Z #15 2.882 79550K .......... .......... .......... .......... .......... 62% 135M 1s -2024-03-07T01:08:05Z #15 2.882 79600K .......... .......... .......... .......... .......... 62% 130M 1s -2024-03-07T01:08:05Z #15 2.882 79650K .......... .......... .......... .......... .......... 62% 61.1M 1s -2024-03-07T01:08:05Z #15 2.883 79700K .......... .......... .......... .......... .......... 62% 133M 1s -2024-03-07T01:08:05Z #15 2.883 79750K .......... .......... .......... .......... .......... 62% 34.3M 1s -2024-03-07T01:08:05Z #15 2.884 79800K .......... .......... .......... .......... .......... 62% 74.9M 1s -2024-03-07T01:08:05Z #15 2.885 79850K .......... .......... .......... .......... .......... 63% 143M 1s -2024-03-07T01:08:05Z #15 2.885 79900K .......... .......... .......... .......... .......... 63% 91.1M 1s -2024-03-07T01:08:05Z #15 2.886 79950K .......... .......... .......... .......... .......... 63% 121M 1s -2024-03-07T01:08:05Z #15 2.886 80000K .......... .......... .......... .......... .......... 63% 115M 1s -2024-03-07T01:08:05Z #15 2.887 80050K .......... .......... .......... .......... .......... 63% 127M 1s -2024-03-07T01:08:05Z #15 2.887 80100K .......... .......... .......... .......... .......... 63% 70.8M 1s -2024-03-07T01:08:05Z #15 2.892 80150K .......... .......... .......... .......... .......... 63% 86.5M 1s -2024-03-07T01:08:05Z #15 2.892 80200K .......... .......... .......... .......... .......... 63% 175M 1s -2024-03-07T01:08:05Z #15 2.892 80250K .......... .......... .......... .......... .......... 63% 178M 1s -2024-03-07T01:08:05Z #15 2.892 80300K .......... .......... .......... .......... .......... 63% 69.1M 1s -2024-03-07T01:08:05Z #15 2.892 80350K .......... .......... .......... .......... .......... 63% 134M 1s -2024-03-07T01:08:05Z #15 2.892 80400K .......... .......... .......... .......... .......... 63% 177M 1s -2024-03-07T01:08:05Z #15 2.892 80450K .......... .......... .......... .......... .......... 63% 81.1M 1s -2024-03-07T01:08:05Z #15 2.892 80500K .......... .......... .......... .......... .......... 63% 113M 1s -2024-03-07T01:08:05Z #15 2.892 80550K .......... .......... .......... .......... .......... 63% 122M 1s -2024-03-07T01:08:05Z #15 2.892 80600K .......... .......... .......... .......... .......... 63% 65.1M 1s -2024-03-07T01:08:05Z #15 2.892 80650K .......... .......... .......... .......... .......... 63% 108M 1s -2024-03-07T01:08:05Z #15 2.893 80700K .......... .......... .......... .......... .......... 63% 79.9M 1s -2024-03-07T01:08:05Z #15 2.894 80750K .......... .......... .......... .......... .......... 63% 106M 1s -2024-03-07T01:08:05Z #15 2.894 80800K .......... .......... .......... .......... .......... 63% 132M 1s -2024-03-07T01:08:05Z #15 2.894 80850K .......... .......... .......... .......... .......... 63% 60.0M 1s -2024-03-07T01:08:05Z #15 2.895 80900K .......... .......... .......... .......... .......... 63% 90.4M 1s -2024-03-07T01:08:05Z #15 2.896 80950K .......... .......... .......... .......... .......... 63% 88.4M 1s -2024-03-07T01:08:05Z #15 2.897 81000K .......... .......... .......... .......... .......... 63% 110M 1s -2024-03-07T01:08:05Z #15 2.897 81050K .......... .......... .......... .......... .......... 63% 105M 1s -2024-03-07T01:08:05Z #15 2.897 81100K .......... .......... .......... .......... .......... 64% 80.8M 1s -2024-03-07T01:08:05Z #15 2.898 81150K .......... .......... .......... .......... .......... 64% 126M 1s -2024-03-07T01:08:05Z #15 2.898 81200K .......... .......... .......... .......... .......... 64% 116M 1s -2024-03-07T01:08:05Z #15 2.899 81250K .......... .......... .......... .......... .......... 64% 75.5M 1s -2024-03-07T01:08:05Z #15 2.899 81300K .......... .......... .......... .......... .......... 64% 85.5M 1s -2024-03-07T01:08:05Z #15 2.900 81350K .......... .......... .......... .......... .......... 64% 81.2M 1s -2024-03-07T01:08:05Z #15 2.900 81400K .......... .......... .......... .......... .......... 64% 139M 1s -2024-03-07T01:08:05Z #15 2.901 81450K .......... .......... .......... .......... .......... 64% 94.9M 1s -2024-03-07T01:08:05Z #15 2.903 81500K .......... .......... .......... .......... .......... 64% 169M 1s -2024-03-07T01:08:05Z #15 2.903 81550K .......... .......... .......... .......... .......... 64% 95.6M 1s -2024-03-07T01:08:05Z #15 2.903 81600K .......... .......... .......... .......... .......... 64% 171M 1s -2024-03-07T01:08:05Z #15 2.903 81650K .......... .......... .......... .......... .......... 64% 114M 1s -2024-03-07T01:08:05Z #15 2.903 81700K .......... .......... .......... .......... .......... 64% 177M 1s -2024-03-07T01:08:05Z #15 2.903 81750K .......... .......... .......... .......... .......... 64% 81.8M 1s -2024-03-07T01:08:05Z #15 2.904 81800K .......... .......... .......... .......... .......... 64% 76.0M 1s -2024-03-07T01:08:05Z #15 2.904 81850K .......... .......... .......... .......... .......... 64% 152M 1s -2024-03-07T01:08:05Z #15 2.905 81900K .......... .......... .......... .......... .......... 64% 57.2M 1s -2024-03-07T01:08:05Z #15 2.905 81950K .......... .......... .......... .......... .......... 64% 108M 1s -2024-03-07T01:08:05Z #15 2.906 82000K .......... .......... .......... .......... .......... 64% 77.3M 1s -2024-03-07T01:08:05Z #15 2.907 82050K .......... .......... .......... .......... .......... 64% 107M 1s -2024-03-07T01:08:05Z #15 2.907 82100K .......... .......... .......... .......... .......... 64% 70.5M 1s -2024-03-07T01:08:05Z #15 2.908 82150K .......... .......... .......... .......... .......... 64% 120M 1s -2024-03-07T01:08:05Z #15 2.908 82200K .......... .......... .......... .......... .......... 64% 139M 1s -2024-03-07T01:08:05Z #15 2.908 82250K .......... .......... .......... .......... .......... 64% 113M 1s -2024-03-07T01:08:05Z #15 2.909 82300K .......... .......... .......... .......... .......... 64% 124M 1s -2024-03-07T01:08:05Z #15 2.909 82350K .......... .......... .......... .......... .......... 64% 72.3M 1s -2024-03-07T01:08:05Z #15 2.910 82400K .......... .......... .......... .......... .......... 65% 70.0M 1s -2024-03-07T01:08:05Z #15 2.911 82450K .......... .......... .......... .......... .......... 65% 88.0M 1s -2024-03-07T01:08:05Z #15 2.911 82500K .......... .......... .......... .......... .......... 65% 99.7M 1s -2024-03-07T01:08:05Z #15 2.912 82550K .......... .......... .......... .......... .......... 65% 90.4M 1s -2024-03-07T01:08:05Z #15 2.912 82600K .......... .......... .......... .......... .......... 65% 103M 1s -2024-03-07T01:08:05Z #15 2.913 82650K .......... .......... .......... .......... .......... 65% 123M 1s -2024-03-07T01:08:05Z #15 2.913 82700K .......... .......... .......... .......... .......... 65% 130M 1s -2024-03-07T01:08:05Z #15 2.914 82750K .......... .......... .......... .......... .......... 65% 134M 1s -2024-03-07T01:08:05Z #15 2.914 82800K .......... .......... .......... .......... .......... 65% 107M 1s -2024-03-07T01:08:05Z #15 2.914 82850K .......... .......... .......... .......... .......... 65% 63.9M 1s -2024-03-07T01:08:05Z #15 2.915 82900K .......... .......... .......... .......... .......... 65% 105M 1s -2024-03-07T01:08:05Z #15 2.916 82950K .......... .......... .......... .......... .......... 65% 79.8M 1s -2024-03-07T01:08:05Z #15 2.916 83000K .......... .......... .......... .......... .......... 65% 98.7M 1s -2024-03-07T01:08:05Z #15 2.917 83050K .......... .......... .......... .......... .......... 65% 169M 1s -2024-03-07T01:08:05Z #15 2.917 83100K .......... .......... .......... .......... .......... 65% 132M 1s -2024-03-07T01:08:05Z #15 2.918 83150K .......... .......... .......... .......... .......... 65% 61.4M 1s -2024-03-07T01:08:05Z #15 2.918 83200K .......... .......... .......... .......... .......... 65% 115M 1s -2024-03-07T01:08:05Z #15 2.919 83250K .......... .......... .......... .......... .......... 65% 102M 1s -2024-03-07T01:08:05Z #15 2.919 83300K .......... .......... .......... .......... .......... 65% 165M 1s -2024-03-07T01:08:05Z #15 2.920 83350K .......... .......... .......... .......... .......... 65% 55.5M 1s -2024-03-07T01:08:05Z #15 2.921 83400K .......... .......... .......... .......... .......... 65% 166M 1s -2024-03-07T01:08:05Z #15 2.921 83450K .......... .......... .......... .......... .......... 65% 177M 1s -2024-03-07T01:08:05Z #15 2.921 83500K .......... .......... .......... .......... .......... 65% 72.1M 1s -2024-03-07T01:08:05Z #15 2.922 83550K .......... .......... .......... .......... .......... 65% 87.9M 1s -2024-03-07T01:08:05Z #15 2.922 83600K .......... .......... .......... .......... .......... 65% 79.6M 1s -2024-03-07T01:08:05Z #15 2.923 83650K .......... .......... .......... .......... .......... 66% 130M 1s -2024-03-07T01:08:05Z #15 2.923 83700K .......... .......... .......... .......... .......... 66% 43.9M 1s -2024-03-07T01:08:05Z #15 2.929 83750K .......... .......... .......... .......... .......... 66% 176M 1s -2024-03-07T01:08:05Z #15 2.929 83800K .......... .......... .......... .......... .......... 66% 137M 1s -2024-03-07T01:08:05Z #15 2.929 83850K .......... .......... .......... .......... .......... 66% 169M 1s -2024-03-07T01:08:05Z #15 2.929 83900K .......... .......... .......... .......... .......... 66% 145M 1s -2024-03-07T01:08:05Z #15 2.929 83950K .......... .......... .......... .......... .......... 66% 135M 1s -2024-03-07T01:08:05Z #15 2.929 84000K .......... .......... .......... .......... .......... 66% 71.4M 1s -2024-03-07T01:08:05Z #15 2.929 84050K .......... .......... .......... .......... .......... 66% 80.8M 1s -2024-03-07T01:08:05Z #15 2.929 84100K .......... .......... .......... .......... .......... 66% 76.9M 1s -2024-03-07T01:08:05Z #15 2.929 84150K .......... .......... .......... .......... .......... 66% 127M 1s -2024-03-07T01:08:05Z #15 2.929 84200K .......... .......... .......... .......... .......... 66% 102M 1s -2024-03-07T01:08:05Z #15 2.929 84250K .......... .......... .......... .......... .......... 66% 93.1M 1s -2024-03-07T01:08:05Z #15 2.929 84300K .......... .......... .......... .......... .......... 66% 69.0M 1s -2024-03-07T01:08:05Z #15 2.930 84350K .......... .......... .......... .......... .......... 66% 57.5M 1s -2024-03-07T01:08:05Z #15 2.931 84400K .......... .......... .......... .......... .......... 66% 120M 1s -2024-03-07T01:08:05Z #15 2.931 84450K .......... .......... .......... .......... .......... 66% 37.2M 1s -2024-03-07T01:08:05Z #15 2.932 84500K .......... .......... .......... .......... .......... 66% 67.8M 1s -2024-03-07T01:08:05Z #15 2.933 84550K .......... .......... .......... .......... .......... 66% 122M 1s -2024-03-07T01:08:05Z #15 2.934 84600K .......... .......... .......... .......... .......... 66% 69.4M 1s -2024-03-07T01:08:05Z #15 2.934 84650K .......... .......... .......... .......... .......... 66% 109M 1s -2024-03-07T01:08:05Z #15 2.935 84700K .......... .......... .......... .......... .......... 66% 118M 1s -2024-03-07T01:08:05Z #15 2.935 84750K .......... .......... .......... .......... .......... 66% 25.5M 1s -2024-03-07T01:08:05Z #15 2.937 84800K .......... .......... .......... .......... .......... 66% 54.0M 1s -2024-03-07T01:08:05Z #15 2.938 84850K .......... .......... .......... .......... .......... 66% 119M 1s -2024-03-07T01:08:05Z #15 2.938 84900K .......... .......... .......... .......... .......... 67% 98.1M 1s -2024-03-07T01:08:05Z #15 2.939 84950K .......... .......... .......... .......... .......... 67% 102M 1s -2024-03-07T01:08:05Z #15 2.939 85000K .......... .......... .......... .......... .......... 67% 74.5M 1s -2024-03-07T01:08:05Z #15 2.940 85050K .......... .......... .......... .......... .......... 67% 128M 1s -2024-03-07T01:08:05Z #15 2.940 85100K .......... .......... .......... .......... .......... 67% 110M 1s -2024-03-07T01:08:05Z #15 2.943 85150K .......... .......... .......... .......... .......... 67% 109M 1s -2024-03-07T01:08:05Z #15 2.943 85200K .......... .......... .......... .......... .......... 67% 172M 1s -2024-03-07T01:08:05Z #15 2.943 85250K .......... .......... .......... .......... .......... 67% 154M 1s -2024-03-07T01:08:05Z #15 2.943 85300K .......... .......... .......... .......... .......... 67% 175M 1s -2024-03-07T01:08:05Z #15 2.943 85350K .......... .......... .......... .......... .......... 67% 150M 1s -2024-03-07T01:08:05Z #15 2.943 85400K .......... .......... .......... .......... .......... 67% 147M 1s -2024-03-07T01:08:05Z #15 2.943 85450K .......... .......... .......... .......... .......... 67% 173M 1s -2024-03-07T01:08:05Z #15 2.943 85500K .......... .......... .......... .......... .......... 67% 171M 1s -2024-03-07T01:08:05Z #15 2.943 85550K .......... .......... .......... .......... .......... 67% 91.2M 1s -2024-03-07T01:08:05Z #15 2.944 85600K .......... .......... .......... .......... .......... 67% 59.3M 1s -2024-03-07T01:08:05Z #15 2.945 85650K .......... .......... .......... .......... .......... 67% 87.7M 1s -2024-03-07T01:08:05Z #15 2.945 85700K .......... .......... .......... .......... .......... 67% 116M 1s -2024-03-07T01:08:05Z #15 2.946 85750K .......... .......... .......... .......... .......... 67% 92.3M 1s -2024-03-07T01:08:05Z #15 2.946 85800K .......... .......... .......... .......... .......... 67% 120M 1s -2024-03-07T01:08:05Z #15 2.947 85850K .......... .......... .......... .......... .......... 67% 107M 1s -2024-03-07T01:08:05Z #15 2.947 85900K .......... .......... .......... .......... .......... 67% 116M 1s -2024-03-07T01:08:05Z #15 2.947 85950K .......... .......... .......... .......... .......... 67% 98.1M 1s -2024-03-07T01:08:05Z #15 2.948 86000K .......... .......... .......... .......... .......... 67% 112M 1s -2024-03-07T01:08:05Z #15 2.948 86050K .......... .......... .......... .......... .......... 67% 93.5M 1s -2024-03-07T01:08:05Z #15 2.949 86100K .......... .......... .......... .......... .......... 67% 120M 1s -2024-03-07T01:08:05Z #15 2.949 86150K .......... .......... .......... .......... .......... 67% 103M 1s -2024-03-07T01:08:05Z #15 2.950 86200K .......... .......... .......... .......... .......... 68% 111M 1s -2024-03-07T01:08:05Z #15 2.950 86250K .......... .......... .......... .......... .......... 68% 125M 1s -2024-03-07T01:08:05Z #15 2.950 86300K .......... .......... .......... .......... .......... 68% 103M 1s -2024-03-07T01:08:05Z #15 2.951 86350K .......... .......... .......... .......... .......... 68% 106M 1s -2024-03-07T01:08:05Z #15 2.952 86400K .......... .......... .......... .......... .......... 68% 124M 1s -2024-03-07T01:08:05Z #15 2.952 86450K .......... .......... .......... .......... .......... 68% 94.4M 1s -2024-03-07T01:08:05Z #15 2.952 86500K .......... .......... .......... .......... .......... 68% 138M 1s -2024-03-07T01:08:05Z #15 2.953 86550K .......... .......... .......... .......... .......... 68% 120M 1s -2024-03-07T01:08:05Z #15 2.955 86600K .......... .......... .......... .......... .......... 68% 121M 1s -2024-03-07T01:08:05Z #15 2.956 86650K .......... .......... .......... .......... .......... 68% 156M 1s -2024-03-07T01:08:05Z #15 2.956 86700K .......... .......... .......... .......... .......... 68% 151M 1s -2024-03-07T01:08:05Z #15 2.956 86750K .......... .......... .......... .......... .......... 68% 154M 1s -2024-03-07T01:08:05Z #15 2.956 86800K .......... .......... .......... .......... .......... 68% 151M 1s -2024-03-07T01:08:05Z #15 2.956 86850K .......... .......... .......... .......... .......... 68% 233K 1s -2024-03-07T01:08:05Z #15 3.170 86900K .......... .......... .......... .......... .......... 68% 38.1M 1s -2024-03-07T01:08:05Z #15 3.171 86950K .......... .......... .......... .......... .......... 68% 46.5M 1s -2024-03-07T01:08:05Z #15 3.173 87000K .......... .......... .......... .......... .......... 68% 17.5M 1s -2024-03-07T01:08:05Z #15 3.175 87050K .......... .......... .......... .......... .......... 68% 27.9M 1s -2024-03-07T01:08:05Z #15 3.177 87100K .......... .......... .......... .......... .......... 68% 46.2M 1s -2024-03-07T01:08:05Z #15 3.178 87150K .......... .......... .......... .......... .......... 68% 112M 1s -2024-03-07T01:08:05Z #15 3.178 87200K .......... .......... .......... .......... .......... 68% 37.3M 1s -2024-03-07T01:08:05Z #15 3.180 87250K .......... .......... .......... .......... .......... 68% 46.9M 1s -2024-03-07T01:08:05Z #15 3.181 87300K .......... .......... .......... .......... .......... 68% 56.9M 1s -2024-03-07T01:08:05Z #15 3.181 87350K .......... .......... .......... .......... .......... 68% 53.2M 1s -2024-03-07T01:08:05Z #15 3.183 87400K .......... .......... .......... .......... .......... 68% 61.4M 1s -2024-03-07T01:08:05Z #15 3.184 87450K .......... .......... .......... .......... .......... 69% 157M 1s -2024-03-07T01:08:05Z #15 3.184 87500K .......... .......... .......... .......... .......... 69% 37.8M 1s -2024-03-07T01:08:05Z #15 3.185 87550K .......... .......... .......... .......... .......... 69% 61.2M 1s -2024-03-07T01:08:05Z #15 3.186 87600K .......... .......... .......... .......... .......... 69% 31.4M 1s -2024-03-07T01:08:05Z #15 3.193 87650K .......... .......... .......... .......... .......... 69% 97.0M 1s -2024-03-07T01:08:05Z #15 3.193 87700K .......... .......... .......... .......... .......... 69% 97.7M 1s -2024-03-07T01:08:05Z #15 3.193 87750K .......... .......... .......... .......... .......... 69% 123M 1s -2024-03-07T01:08:05Z #15 3.193 87800K .......... .......... .......... .......... .......... 69% 123M 1s -2024-03-07T01:08:05Z #15 3.193 87850K .......... .......... .......... .......... .......... 69% 123M 1s -2024-03-07T01:08:05Z #15 3.193 87900K .......... .......... .......... .......... .......... 69% 94.6M 1s -2024-03-07T01:08:05Z #15 3.193 87950K .......... .......... .......... .......... .......... 69% 119M 1s -2024-03-07T01:08:05Z #15 3.193 88000K .......... .......... .......... .......... .......... 69% 121M 1s -2024-03-07T01:08:05Z #15 3.193 88050K .......... .......... .......... .......... .......... 69% 106M 1s -2024-03-07T01:08:05Z #15 3.193 88100K .......... .......... .......... .......... .......... 69% 97.5M 1s -2024-03-07T01:08:05Z #15 3.193 88150K .......... .......... .......... .......... .......... 69% 117M 1s -2024-03-07T01:08:05Z #15 3.193 88200K .......... .......... .......... .......... .......... 69% 115M 1s -2024-03-07T01:08:05Z #15 3.193 88250K .......... .......... .......... .......... .......... 69% 108M 1s -2024-03-07T01:08:05Z #15 3.193 88300K .......... .......... .......... .......... .......... 69% 125M 1s -2024-03-07T01:08:05Z #15 3.193 88350K .......... .......... .......... .......... .......... 69% 139M 1s -2024-03-07T01:08:05Z #15 3.194 88400K .......... .......... .......... .......... .......... 69% 69.8M 1s -2024-03-07T01:08:05Z #15 3.199 88450K .......... .......... .......... .......... .......... 69% 126M 1s -2024-03-07T01:08:05Z #15 3.199 88500K .......... .......... .......... .......... .......... 69% 107M 1s -2024-03-07T01:08:05Z #15 3.199 88550K .......... .......... .......... .......... .......... 69% 122M 1s -2024-03-07T01:08:05Z #15 3.199 88600K .......... .......... .......... .......... .......... 69% 121M 1s -2024-03-07T01:08:05Z #15 3.199 88650K .......... .......... .......... .......... .......... 69% 115M 1s -2024-03-07T01:08:05Z #15 3.199 88700K .......... .......... .......... .......... .......... 70% 135M 1s -2024-03-07T01:08:05Z #15 3.199 88750K .......... .......... .......... .......... .......... 70% 121M 1s -2024-03-07T01:08:05Z #15 3.199 88800K .......... .......... .......... .......... .......... 70% 146M 1s -2024-03-07T01:08:05Z #15 3.199 88850K .......... .......... .......... .......... .......... 70% 105M 1s -2024-03-07T01:08:05Z #15 3.199 88900K .......... .......... .......... .......... .......... 70% 121M 1s -2024-03-07T01:08:05Z #15 3.199 88950K .......... .......... .......... .......... .......... 70% 109M 1s -2024-03-07T01:08:05Z #15 3.199 89000K .......... .......... .......... .......... .......... 70% 140M 1s -2024-03-07T01:08:05Z #15 3.199 89050K .......... .......... .......... .......... .......... 70% 52.4M 1s -2024-03-07T01:08:05Z #15 3.201 89100K .......... .......... .......... .......... .......... 70% 117M 1s -2024-03-07T01:08:05Z #15 3.201 89150K .......... .......... .......... .......... .......... 70% 1.17M 1s -2024-03-07T01:08:05Z #15 3.242 89200K .......... .......... .......... .......... .......... 70% 21.3M 1s -2024-03-07T01:08:05Z #15 3.245 89250K .......... .......... .......... .......... .......... 70% 26.4M 1s -2024-03-07T01:08:05Z #15 3.247 89300K .......... .......... .......... .......... .......... 70% 13.2M 1s -2024-03-07T01:08:05Z #15 3.250 89350K .......... .......... .......... .......... .......... 70% 127M 1s -2024-03-07T01:08:05Z #15 3.250 89400K .......... .......... .......... .......... .......... 70% 128M 1s -2024-03-07T01:08:05Z #15 3.251 89450K .......... .......... .......... .......... .......... 70% 20.0M 1s -2024-03-07T01:08:05Z #15 3.253 89500K .......... .......... .......... .......... .......... 70% 18.8M 1s -2024-03-07T01:08:05Z #15 3.256 89550K .......... .......... .......... .......... .......... 70% 111M 1s -2024-03-07T01:08:05Z #15 3.257 89600K .......... .......... .......... .......... .......... 70% 115M 1s -2024-03-07T01:08:05Z #15 3.257 89650K .......... .......... .......... .......... .......... 70% 58.6M 1s -2024-03-07T01:08:05Z #15 3.258 89700K .......... .......... .......... .......... .......... 70% 14.8M 1s -2024-03-07T01:08:05Z #15 3.265 89750K .......... .......... .......... .......... .......... 70% 128M 1s -2024-03-07T01:08:05Z #15 3.265 89800K .......... .......... .......... .......... .......... 70% 120M 1s -2024-03-07T01:08:05Z #15 3.265 89850K .......... .......... .......... .......... .......... 70% 51.5M 1s -2024-03-07T01:08:05Z #15 3.265 89900K .......... .......... .......... .......... .......... 70% 70.1M 1s -2024-03-07T01:08:05Z #15 3.265 89950K .......... .......... .......... .......... .......... 70% 21.1M 1s -2024-03-07T01:08:05Z #15 3.266 90000K .......... .......... .......... .......... .......... 71% 115M 1s -2024-03-07T01:08:05Z #15 3.266 90050K .......... .......... .......... .......... .......... 71% 138M 1s -2024-03-07T01:08:05Z #15 3.266 90100K .......... .......... .......... .......... .......... 71% 64.9M 1s -2024-03-07T01:08:05Z #15 3.268 90150K .......... .......... .......... .......... .......... 71% 115M 1s -2024-03-07T01:08:05Z #15 3.268 90200K .......... .......... .......... .......... .......... 71% 128M 1s -2024-03-07T01:08:05Z #15 3.268 90250K .......... .......... .......... .......... .......... 71% 70.6M 1s -2024-03-07T01:08:05Z #15 3.269 90300K .......... .......... .......... .......... .......... 71% 91.3M 1s -2024-03-07T01:08:05Z #15 3.269 90350K .......... .......... .......... .......... .......... 71% 112M 1s -2024-03-07T01:08:05Z #15 3.270 90400K .......... .......... .......... .......... .......... 71% 126M 1s -2024-03-07T01:08:05Z #15 3.270 90450K .......... .......... .......... .......... .......... 71% 104M 1s -2024-03-07T01:08:05Z #15 3.271 90500K .......... .......... .......... .......... .......... 71% 150M 1s -2024-03-07T01:08:05Z #15 3.271 90550K .......... .......... .......... .......... .......... 71% 119M 1s -2024-03-07T01:08:05Z #15 3.271 90600K .......... .......... .......... .......... .......... 71% 96.7M 1s -2024-03-07T01:08:05Z #15 3.272 90650K .......... .......... .......... .......... .......... 71% 91.3M 1s -2024-03-07T01:08:05Z #15 3.272 90700K .......... .......... .......... .......... .......... 71% 132M 1s -2024-03-07T01:08:05Z #15 3.273 90750K .......... .......... .......... .......... .......... 71% 115M 1s -2024-03-07T01:08:05Z #15 3.273 90800K .......... .......... .......... .......... .......... 71% 81.1M 1s -2024-03-07T01:08:05Z #15 3.274 90850K .......... .......... .......... .......... .......... 71% 124M 1s -2024-03-07T01:08:05Z #15 3.274 90900K .......... .......... .......... .......... .......... 71% 58.1M 1s -2024-03-07T01:08:05Z #15 3.275 90950K .......... .......... .......... .......... .......... 71% 73.5M 1s -2024-03-07T01:08:05Z #15 3.275 91000K .......... .......... .......... .......... .......... 71% 57.9M 1s -2024-03-07T01:08:05Z #15 3.278 91050K .......... .......... .......... .......... .......... 71% 160M 1s -2024-03-07T01:08:05Z #15 3.278 91100K .......... .......... .......... .......... .......... 71% 153M 1s -2024-03-07T01:08:05Z #15 3.278 91150K .......... .......... .......... .......... .......... 71% 133M 1s -2024-03-07T01:08:05Z #15 3.278 91200K .......... .......... .......... .......... .......... 71% 142M 1s -2024-03-07T01:08:05Z #15 3.278 91250K .......... .......... .......... .......... .......... 72% 98.0M 1s -2024-03-07T01:08:05Z #15 3.278 91300K .......... .......... .......... .......... .......... 72% 82.6M 1s -2024-03-07T01:08:05Z #15 3.279 91350K .......... .......... .......... .......... .......... 72% 102M 1s -2024-03-07T01:08:05Z #15 3.279 91400K .......... .......... .......... .......... .......... 72% 135M 1s -2024-03-07T01:08:05Z #15 3.280 91450K .......... .......... .......... .......... .......... 72% 118M 1s -2024-03-07T01:08:05Z #15 3.280 91500K .......... .......... .......... .......... .......... 72% 161M 1s -2024-03-07T01:08:05Z #15 3.280 91550K .......... .......... .......... .......... .......... 72% 115M 1s -2024-03-07T01:08:05Z #15 3.281 91600K .......... .......... .......... .......... .......... 72% 142M 1s -2024-03-07T01:08:05Z #15 3.282 91650K .......... .......... .......... .......... .......... 72% 68.3M 1s -2024-03-07T01:08:05Z #15 3.282 91700K .......... .......... .......... .......... .......... 72% 104M 1s -2024-03-07T01:08:05Z #15 3.282 91750K .......... .......... .......... .......... .......... 72% 160M 1s -2024-03-07T01:08:05Z #15 3.283 91800K .......... .......... .......... .......... .......... 72% 94.2M 1s -2024-03-07T01:08:05Z #15 3.283 91850K .......... .......... .......... .......... .......... 72% 92.5M 1s -2024-03-07T01:08:05Z #15 3.284 91900K .......... .......... .......... .......... .......... 72% 163M 1s -2024-03-07T01:08:05Z #15 3.284 91950K .......... .......... .......... .......... .......... 72% 130M 1s -2024-03-07T01:08:05Z #15 3.285 92000K .......... .......... .......... .......... .......... 72% 145M 1s -2024-03-07T01:08:05Z #15 3.285 92050K .......... .......... .......... .......... .......... 72% 105M 1s -2024-03-07T01:08:05Z #15 3.286 92100K .......... .......... .......... .......... .......... 72% 137M 1s -2024-03-07T01:08:06Z #15 3.286 92150K .......... .......... .......... .......... .......... 72% 123M 1s -2024-03-07T01:08:06Z #15 3.286 92200K .......... .......... .......... .......... .......... 72% 124M 1s -2024-03-07T01:08:06Z #15 3.291 92250K .......... .......... .......... .......... .......... 72% 147M 1s -2024-03-07T01:08:06Z #15 3.291 92300K .......... .......... .......... .......... .......... 72% 182M 1s -2024-03-07T01:08:06Z #15 3.291 92350K .......... .......... .......... .......... .......... 72% 159M 1s -2024-03-07T01:08:06Z #15 3.291 92400K .......... .......... .......... .......... .......... 72% 164M 1s -2024-03-07T01:08:06Z #15 3.291 92450K .......... .......... .......... .......... .......... 72% 59.3M 1s -2024-03-07T01:08:06Z #15 3.291 92500K .......... .......... .......... .......... .......... 72% 177M 1s -2024-03-07T01:08:06Z #15 3.291 92550K .......... .......... .......... .......... .......... 73% 185M 1s -2024-03-07T01:08:06Z #15 3.291 92600K .......... .......... .......... .......... .......... 73% 83.2M 1s -2024-03-07T01:08:06Z #15 3.291 92650K .......... .......... .......... .......... .......... 73% 148M 1s -2024-03-07T01:08:06Z #15 3.291 92700K .......... .......... .......... .......... .......... 73% 156M 1s -2024-03-07T01:08:06Z #15 3.291 92750K .......... .......... .......... .......... .......... 73% 161M 1s -2024-03-07T01:08:06Z #15 3.291 92800K .......... .......... .......... .......... .......... 73% 173M 1s -2024-03-07T01:08:06Z #15 3.291 92850K .......... .......... .......... .......... .......... 73% 183M 1s -2024-03-07T01:08:06Z #15 3.291 92900K .......... .......... .......... .......... .......... 73% 154M 1s -2024-03-07T01:08:06Z #15 3.291 92950K .......... .......... .......... .......... .......... 73% 93.0M 1s -2024-03-07T01:08:06Z #15 3.292 93000K .......... .......... .......... .......... .......... 73% 124M 1s -2024-03-07T01:08:06Z #15 3.292 93050K .......... .......... .......... .......... .......... 73% 123M 1s -2024-03-07T01:08:06Z #15 3.293 93100K .......... .......... .......... .......... .......... 73% 129M 1s -2024-03-07T01:08:06Z #15 3.293 93150K .......... .......... .......... .......... .......... 73% 138M 1s -2024-03-07T01:08:06Z #15 3.293 93200K .......... .......... .......... .......... .......... 73% 64.1M 1s -2024-03-07T01:08:06Z #15 3.295 93250K .......... .......... .......... .......... .......... 73% 88.2M 1s -2024-03-07T01:08:06Z #15 3.295 93300K .......... .......... .......... .......... .......... 73% 138M 1s -2024-03-07T01:08:06Z #15 3.295 93350K .......... .......... .......... .......... .......... 73% 83.8M 1s -2024-03-07T01:08:06Z #15 3.299 93400K .......... .......... .......... .......... .......... 73% 96.5M 1s -2024-03-07T01:08:06Z #15 3.299 93450K .......... .......... .......... .......... .......... 73% 175M 1s -2024-03-07T01:08:06Z #15 3.299 93500K .......... .......... .......... .......... .......... 73% 169M 1s -2024-03-07T01:08:06Z #15 3.299 93550K .......... .......... .......... .......... .......... 73% 159M 1s -2024-03-07T01:08:06Z #15 3.299 93600K .......... .......... .......... .......... .......... 73% 180M 1s -2024-03-07T01:08:06Z #15 3.299 93650K .......... .......... .......... .......... .......... 73% 182M 1s -2024-03-07T01:08:06Z #15 3.299 93700K .......... .......... .......... .......... .......... 73% 161M 1s -2024-03-07T01:08:06Z #15 3.299 93750K .......... .......... .......... .......... .......... 73% 159M 1s -2024-03-07T01:08:06Z #15 3.299 93800K .......... .......... .......... .......... .......... 74% 157M 1s -2024-03-07T01:08:06Z #15 3.299 93850K .......... .......... .......... .......... .......... 74% 179M 1s -2024-03-07T01:08:06Z #15 3.299 93900K .......... .......... .......... .......... .......... 74% 185M 1s -2024-03-07T01:08:06Z #15 3.299 93950K .......... .......... .......... .......... .......... 74% 178M 1s -2024-03-07T01:08:06Z #15 3.299 94000K .......... .......... .......... .......... .......... 74% 46.4M 1s -2024-03-07T01:08:06Z #15 3.300 94050K .......... .......... .......... .......... .......... 74% 130M 1s -2024-03-07T01:08:06Z #15 3.301 94100K .......... .......... .......... .......... .......... 74% 90.8M 1s -2024-03-07T01:08:06Z #15 3.301 94150K .......... .......... .......... .......... .......... 74% 106M 1s -2024-03-07T01:08:06Z #15 3.302 94200K .......... .......... .......... .......... .......... 74% 123M 1s -2024-03-07T01:08:06Z #15 3.302 94250K .......... .......... .......... .......... .......... 74% 118M 1s -2024-03-07T01:08:06Z #15 3.302 94300K .......... .......... .......... .......... .......... 74% 118M 1s -2024-03-07T01:08:06Z #15 3.303 94350K .......... .......... .......... .......... .......... 74% 111M 1s -2024-03-07T01:08:06Z #15 3.303 94400K .......... .......... .......... .......... .......... 74% 103M 1s -2024-03-07T01:08:06Z #15 3.307 94450K .......... .......... .......... .......... .......... 74% 157M 1s -2024-03-07T01:08:06Z #15 3.307 94500K .......... .......... .......... .......... .......... 74% 171M 1s -2024-03-07T01:08:06Z #15 3.307 94550K .......... .......... .......... .......... .......... 74% 174M 1s -2024-03-07T01:08:06Z #15 3.307 94600K .......... .......... .......... .......... .......... 74% 146M 1s -2024-03-07T01:08:06Z #15 3.307 94650K .......... .......... .......... .......... .......... 74% 78.4M 1s -2024-03-07T01:08:06Z #15 3.307 94700K .......... .......... .......... .......... .......... 74% 115M 1s -2024-03-07T01:08:06Z #15 3.307 94750K .......... .......... .......... .......... .......... 74% 179M 1s -2024-03-07T01:08:06Z #15 3.307 94800K .......... .......... .......... .......... .......... 74% 88.1M 1s -2024-03-07T01:08:06Z #15 3.307 94850K .......... .......... .......... .......... .......... 74% 85.6M 1s -2024-03-07T01:08:06Z #15 3.307 94900K .......... .......... .......... .......... .......... 74% 37.8M 1s -2024-03-07T01:08:06Z #15 3.309 94950K .......... .......... .......... .......... .......... 74% 124M 1s -2024-03-07T01:08:06Z #15 3.309 95000K .......... .......... .......... .......... .......... 74% 126M 1s -2024-03-07T01:08:06Z #15 3.309 95050K .......... .......... .......... .......... .......... 75% 82.9M 1s -2024-03-07T01:08:06Z #15 3.310 95100K .......... .......... .......... .......... .......... 75% 117M 1s -2024-03-07T01:08:06Z #15 3.310 95150K .......... .......... .......... .......... .......... 75% 127M 1s -2024-03-07T01:08:06Z #15 3.311 95200K .......... .......... .......... .......... .......... 75% 104M 1s -2024-03-07T01:08:06Z #15 3.311 95250K .......... .......... .......... .......... .......... 75% 5.89M 1s -2024-03-07T01:08:06Z #15 3.320 95300K .......... .......... .......... .......... .......... 75% 104M 1s -2024-03-07T01:08:06Z #15 3.320 95350K .......... .......... .......... .......... .......... 75% 114M 1s -2024-03-07T01:08:06Z #15 3.321 95400K .......... .......... .......... .......... .......... 75% 114M 1s -2024-03-07T01:08:06Z #15 3.321 95450K .......... .......... .......... .......... .......... 75% 57.0M 1s -2024-03-07T01:08:06Z #15 3.322 95500K .......... .......... .......... .......... .......... 75% 69.5M 1s -2024-03-07T01:08:06Z #15 3.322 95550K .......... .......... .......... .......... .......... 75% 80.6M 1s -2024-03-07T01:08:06Z #15 3.323 95600K .......... .......... .......... .......... .......... 75% 105M 1s -2024-03-07T01:08:06Z #15 3.327 95650K .......... .......... .......... .......... .......... 75% 89.3M 1s -2024-03-07T01:08:06Z #15 3.327 95700K .......... .......... .......... .......... .......... 75% 116M 1s -2024-03-07T01:08:06Z #15 3.327 95750K .......... .......... .......... .......... .......... 75% 110M 1s -2024-03-07T01:08:06Z #15 3.327 95800K .......... .......... .......... .......... .......... 75% 126M 1s -2024-03-07T01:08:06Z #15 3.327 95850K .......... .......... .......... .......... .......... 75% 111M 1s -2024-03-07T01:08:06Z #15 3.327 95900K .......... .......... .......... .......... .......... 75% 57.4M 1s -2024-03-07T01:08:06Z #15 3.327 95950K .......... .......... .......... .......... .......... 75% 111M 1s -2024-03-07T01:08:06Z #15 3.327 96000K .......... .......... .......... .......... .......... 75% 58.8M 1s -2024-03-07T01:08:06Z #15 3.331 96050K .......... .......... .......... .......... .......... 75% 78.0M 1s -2024-03-07T01:08:06Z #15 3.331 96100K .......... .......... .......... .......... .......... 75% 130M 1s -2024-03-07T01:08:06Z #15 3.331 96150K .......... .......... .......... .......... .......... 75% 75.2M 1s -2024-03-07T01:08:06Z #15 3.331 96200K .......... .......... .......... .......... .......... 75% 121M 1s -2024-03-07T01:08:06Z #15 3.331 96250K .......... .......... .......... .......... .......... 75% 110M 1s -2024-03-07T01:08:06Z #15 3.331 96300K .......... .......... .......... .......... .......... 75% 123M 1s -2024-03-07T01:08:06Z #15 3.331 96350K .......... .......... .......... .......... .......... 76% 60.0M 1s -2024-03-07T01:08:06Z #15 3.332 96400K .......... .......... .......... .......... .......... 76% 129M 1s -2024-03-07T01:08:06Z #15 3.332 96450K .......... .......... .......... .......... .......... 76% 96.8M 1s -2024-03-07T01:08:06Z #15 3.333 96500K .......... .......... .......... .......... .......... 76% 89.5M 1s -2024-03-07T01:08:06Z #15 3.333 96550K .......... .......... .......... .......... .......... 76% 161M 1s -2024-03-07T01:08:06Z #15 3.333 96600K .......... .......... .......... .......... .......... 76% 115M 1s -2024-03-07T01:08:06Z #15 3.334 96650K .......... .......... .......... .......... .......... 76% 138M 1s -2024-03-07T01:08:06Z #15 3.334 96700K .......... .......... .......... .......... .......... 76% 108M 1s -2024-03-07T01:08:06Z #15 3.334 96750K .......... .......... .......... .......... .......... 76% 164M 1s -2024-03-07T01:08:06Z #15 3.335 96800K .......... .......... .......... .......... .......... 76% 76.1M 1s -2024-03-07T01:08:06Z #15 3.336 96850K .......... .......... .......... .......... .......... 76% 77.2M 1s -2024-03-07T01:08:06Z #15 3.336 96900K .......... .......... .......... .......... .......... 76% 99.1M 1s -2024-03-07T01:08:06Z #15 3.337 96950K .......... .......... .......... .......... .......... 76% 167M 1s -2024-03-07T01:08:06Z #15 3.337 97000K .......... .......... .......... .......... .......... 76% 110M 1s -2024-03-07T01:08:06Z #15 3.337 97050K .......... .......... .......... .......... .......... 76% 75.0M 1s -2024-03-07T01:08:06Z #15 3.338 97100K .......... .......... .......... .......... .......... 76% 137M 1s -2024-03-07T01:08:06Z #15 3.338 97150K .......... .......... .......... .......... .......... 76% 101M 1s -2024-03-07T01:08:06Z #15 3.339 97200K .......... .......... .......... .......... .......... 76% 115M 1s -2024-03-07T01:08:06Z #15 3.339 97250K .......... .......... .......... .......... .......... 76% 125M 1s -2024-03-07T01:08:06Z #15 3.340 97300K .......... .......... .......... .......... .......... 76% 108M 1s -2024-03-07T01:08:06Z #15 3.340 97350K .......... .......... .......... .......... .......... 76% 78.4M 1s -2024-03-07T01:08:06Z #15 3.341 97400K .......... .......... .......... .......... .......... 76% 167M 1s -2024-03-07T01:08:06Z #15 3.341 97450K .......... .......... .......... .......... .......... 76% 73.7M 1s -2024-03-07T01:08:06Z #15 3.342 97500K .......... .......... .......... .......... .......... 76% 144M 1s -2024-03-07T01:08:06Z #15 3.342 97550K .......... .......... .......... .......... .......... 76% 162M 1s -2024-03-07T01:08:06Z #15 3.342 97600K .......... .......... .......... .......... .......... 77% 143M 1s -2024-03-07T01:08:06Z #15 3.343 97650K .......... .......... .......... .......... .......... 77% 65.9M 1s -2024-03-07T01:08:06Z #15 3.343 97700K .......... .......... .......... .......... .......... 77% 157M 1s -2024-03-07T01:08:06Z #15 3.344 97750K .......... .......... .......... .......... .......... 77% 73.6M 1s -2024-03-07T01:08:06Z #15 3.345 97800K .......... .......... .......... .......... .......... 77% 77.4M 1s -2024-03-07T01:08:06Z #15 3.345 97850K .......... .......... .......... .......... .......... 77% 134M 1s -2024-03-07T01:08:06Z #15 3.345 97900K .......... .......... .......... .......... .......... 77% 148M 1s -2024-03-07T01:08:06Z #15 3.346 97950K .......... .......... .......... .......... .......... 77% 157M 1s -2024-03-07T01:08:06Z #15 3.346 98000K .......... .......... .......... .......... .......... 77% 115M 1s -2024-03-07T01:08:06Z #15 3.346 98050K .......... .......... .......... .......... .......... 77% 136M 1s -2024-03-07T01:08:06Z #15 3.347 98100K .......... .......... .......... .......... .......... 77% 89.1M 1s -2024-03-07T01:08:06Z #15 3.347 98150K .......... .......... .......... .......... .......... 77% 83.3M 1s -2024-03-07T01:08:06Z #15 3.348 98200K .......... .......... .......... .......... .......... 77% 99.3M 1s -2024-03-07T01:08:06Z #15 3.349 98250K .......... .......... .......... .......... .......... 77% 67.2M 1s -2024-03-07T01:08:06Z #15 3.349 98300K .......... .......... .......... .......... .......... 77% 141M 1s -2024-03-07T01:08:06Z #15 3.350 98350K .......... .......... .......... .......... .......... 77% 130M 1s -2024-03-07T01:08:06Z #15 3.350 98400K .......... .......... .......... .......... .......... 77% 82.8M 1s -2024-03-07T01:08:06Z #15 3.351 98450K .......... .......... .......... .......... .......... 77% 92.5M 1s -2024-03-07T01:08:06Z #15 3.351 98500K .......... .......... .......... .......... .......... 77% 84.3M 1s -2024-03-07T01:08:06Z #15 3.352 98550K .......... .......... .......... .......... .......... 77% 126M 1s -2024-03-07T01:08:06Z #15 3.352 98600K .......... .......... .......... .......... .......... 77% 120M 1s -2024-03-07T01:08:06Z #15 3.353 98650K .......... .......... .......... .......... .......... 77% 78.5M 1s -2024-03-07T01:08:06Z #15 3.353 98700K .......... .......... .......... .......... .......... 77% 98.8M 1s -2024-03-07T01:08:06Z #15 3.354 98750K .......... .......... .......... .......... .......... 77% 79.4M 1s -2024-03-07T01:08:06Z #15 3.354 98800K .......... .......... .......... .......... .......... 77% 143M 1s -2024-03-07T01:08:06Z #15 3.355 98850K .......... .......... .......... .......... .......... 78% 85.4M 1s -2024-03-07T01:08:06Z #15 3.355 98900K .......... .......... .......... .......... .......... 78% 92.0M 1s -2024-03-07T01:08:06Z #15 3.356 98950K .......... .......... .......... .......... .......... 78% 121M 1s -2024-03-07T01:08:06Z #15 3.356 99000K .......... .......... .......... .......... .......... 78% 79.8M 1s -2024-03-07T01:08:06Z #15 3.356 99050K .......... .......... .......... .......... .......... 78% 123M 1s -2024-03-07T01:08:06Z #15 3.357 99100K .......... .......... .......... .......... .......... 78% 134M 1s -2024-03-07T01:08:06Z #15 3.357 99150K .......... .......... .......... .......... .......... 78% 102M 1s -2024-03-07T01:08:06Z #15 3.358 99200K .......... .......... .......... .......... .......... 78% 75.3M 1s -2024-03-07T01:08:06Z #15 3.359 99250K .......... .......... .......... .......... .......... 78% 83.4M 1s -2024-03-07T01:08:06Z #15 3.359 99300K .......... .......... .......... .......... .......... 78% 55.6M 1s -2024-03-07T01:08:06Z #15 3.360 99350K .......... .......... .......... .......... .......... 78% 127M 1s -2024-03-07T01:08:06Z #15 3.361 99400K .......... .......... .......... .......... .......... 78% 101M 1s -2024-03-07T01:08:06Z #15 3.361 99450K .......... .......... .......... .......... .......... 78% 136M 1s -2024-03-07T01:08:06Z #15 3.361 99500K .......... .......... .......... .......... .......... 78% 99.9M 1s -2024-03-07T01:08:06Z #15 3.362 99550K .......... .......... .......... .......... .......... 78% 148M 1s -2024-03-07T01:08:06Z #15 3.362 99600K .......... .......... .......... .......... .......... 78% 109M 1s -2024-03-07T01:08:06Z #15 3.363 99650K .......... .......... .......... .......... .......... 78% 79.4M 1s -2024-03-07T01:08:06Z #15 3.363 99700K .......... .......... .......... .......... .......... 78% 80.5M 1s -2024-03-07T01:08:06Z #15 3.364 99750K .......... .......... .......... .......... .......... 78% 115M 1s -2024-03-07T01:08:06Z #15 3.364 99800K .......... .......... .......... .......... .......... 78% 64.2M 1s -2024-03-07T01:08:06Z #15 3.365 99850K .......... .......... .......... .......... .......... 78% 103M 1s -2024-03-07T01:08:06Z #15 3.365 99900K .......... .......... .......... .......... .......... 78% 84.8M 1s -2024-03-07T01:08:06Z #15 3.366 99950K .......... .......... .......... .......... .......... 78% 102M 1s -2024-03-07T01:08:06Z #15 3.367 100000K .......... .......... .......... .......... .......... 78% 130M 0s -2024-03-07T01:08:06Z #15 3.367 100050K .......... .......... .......... .......... .......... 78% 83.2M 0s -2024-03-07T01:08:06Z #15 3.367 100100K .......... .......... .......... .......... .......... 78% 92.6M 0s -2024-03-07T01:08:06Z #15 3.368 100150K .......... .......... .......... .......... .......... 79% 103M 0s -2024-03-07T01:08:06Z #15 3.368 100200K .......... .......... .......... .......... .......... 79% 83.9M 0s -2024-03-07T01:08:06Z #15 3.369 100250K .......... .......... .......... .......... .......... 79% 72.1M 0s -2024-03-07T01:08:06Z #15 3.370 100300K .......... .......... .......... .......... .......... 79% 139M 0s -2024-03-07T01:08:06Z #15 3.370 100350K .......... .......... .......... .......... .......... 79% 66.1M 0s -2024-03-07T01:08:06Z #15 3.371 100400K .......... .......... .......... .......... .......... 79% 126M 0s -2024-03-07T01:08:06Z #15 3.371 100450K .......... .......... .......... .......... .......... 79% 85.2M 0s -2024-03-07T01:08:06Z #15 3.372 100500K .......... .......... .......... .......... .......... 79% 123M 0s -2024-03-07T01:08:06Z #15 3.372 100550K .......... .......... .......... .......... .......... 79% 67.1M 0s -2024-03-07T01:08:06Z #15 3.373 100600K .......... .......... .......... .......... .......... 79% 123M 0s -2024-03-07T01:08:06Z #15 3.373 100650K .......... .......... .......... .......... .......... 79% 132M 0s -2024-03-07T01:08:06Z #15 3.374 100700K .......... .......... .......... .......... .......... 79% 64.0M 0s -2024-03-07T01:08:06Z #15 3.374 100750K .......... .......... .......... .......... .......... 79% 115M 0s -2024-03-07T01:08:06Z #15 3.375 100800K .......... .......... .......... .......... .......... 79% 128M 0s -2024-03-07T01:08:06Z #15 3.376 100850K .......... .......... .......... .......... .......... 79% 76.5M 0s -2024-03-07T01:08:06Z #15 3.376 100900K .......... .......... .......... .......... .......... 79% 86.3M 0s -2024-03-07T01:08:06Z #15 3.377 100950K .......... .......... .......... .......... .......... 79% 90.8M 0s -2024-03-07T01:08:06Z #15 3.377 101000K .......... .......... .......... .......... .......... 79% 135M 0s -2024-03-07T01:08:06Z #15 3.377 101050K .......... .......... .......... .......... .......... 79% 70.9M 0s -2024-03-07T01:08:06Z #15 3.378 101100K .......... .......... .......... .......... .......... 79% 102M 0s -2024-03-07T01:08:06Z #15 3.379 101150K .......... .......... .......... .......... .......... 79% 146M 0s -2024-03-07T01:08:06Z #15 3.379 101200K .......... .......... .......... .......... .......... 79% 89.7M 0s -2024-03-07T01:08:06Z #15 3.379 101250K .......... .......... .......... .......... .......... 79% 87.7M 0s -2024-03-07T01:08:06Z #15 3.380 101300K .......... .......... .......... .......... .......... 79% 142M 0s -2024-03-07T01:08:06Z #15 3.380 101350K .......... .......... .......... .......... .......... 79% 70.5M 0s -2024-03-07T01:08:06Z #15 3.381 101400K .......... .......... .......... .......... .......... 80% 73.9M 0s -2024-03-07T01:08:06Z #15 3.382 101450K .......... .......... .......... .......... .......... 80% 112M 0s -2024-03-07T01:08:06Z #15 3.382 101500K .......... .......... .......... .......... .......... 80% 116M 0s -2024-03-07T01:08:06Z #15 3.382 101550K .......... .......... .......... .......... .......... 80% 104M 0s -2024-03-07T01:08:06Z #15 3.383 101600K .......... .......... .......... .......... .......... 80% 126M 0s -2024-03-07T01:08:06Z #15 3.383 101650K .......... .......... .......... .......... .......... 80% 111M 0s -2024-03-07T01:08:06Z #15 3.384 101700K .......... .......... .......... .......... .......... 80% 72.5M 0s -2024-03-07T01:08:06Z #15 3.384 101750K .......... .......... .......... .......... .......... 80% 96.8M 0s -2024-03-07T01:08:06Z #15 3.385 101800K .......... .......... .......... .......... .......... 80% 102M 0s -2024-03-07T01:08:06Z #15 3.386 101850K .......... .......... .......... .......... .......... 80% 75.1M 0s -2024-03-07T01:08:06Z #15 3.386 101900K .......... .......... .......... .......... .......... 80% 99.7M 0s -2024-03-07T01:08:06Z #15 3.392 101950K .......... .......... .......... .......... .......... 80% 9.30M 0s -2024-03-07T01:08:06Z #15 3.400 102000K .......... .......... .......... .......... .......... 80% 145M 0s -2024-03-07T01:08:06Z #15 3.400 102050K .......... .......... .......... .......... .......... 80% 153M 0s -2024-03-07T01:08:06Z #15 3.400 102100K .......... .......... .......... .......... .......... 80% 154M 0s -2024-03-07T01:08:06Z #15 3.400 102150K .......... .......... .......... .......... .......... 80% 154M 0s -2024-03-07T01:08:06Z #15 3.400 102200K .......... .......... .......... .......... .......... 80% 156M 0s -2024-03-07T01:08:06Z #15 3.400 102250K .......... .......... .......... .......... .......... 80% 144M 0s -2024-03-07T01:08:06Z #15 3.400 102300K .......... .......... .......... .......... .......... 80% 151M 0s -2024-03-07T01:08:06Z #15 3.400 102350K .......... .......... .......... .......... .......... 80% 125M 0s -2024-03-07T01:08:06Z #15 3.400 102400K .......... .......... .......... .......... .......... 80% 182M 0s -2024-03-07T01:08:06Z #15 3.400 102450K .......... .......... .......... .......... .......... 80% 143M 0s -2024-03-07T01:08:06Z #15 3.400 102500K .......... .......... .......... .......... .......... 80% 159M 0s -2024-03-07T01:08:06Z #15 3.400 102550K .......... .......... .......... .......... .......... 80% 123M 0s -2024-03-07T01:08:06Z #15 3.400 102600K .......... .......... .......... .......... .......... 80% 159M 0s -2024-03-07T01:08:06Z #15 3.400 102650K .......... .......... .......... .......... .......... 81% 169M 0s -2024-03-07T01:08:06Z #15 3.400 102700K .......... .......... .......... .......... .......... 81% 159M 0s -2024-03-07T01:08:06Z #15 3.400 102750K .......... .......... .......... .......... .......... 81% 180M 0s -2024-03-07T01:08:06Z #15 3.400 102800K .......... .......... .......... .......... .......... 81% 167M 0s -2024-03-07T01:08:06Z #15 3.400 102850K .......... .......... .......... .......... .......... 81% 145M 0s -2024-03-07T01:08:06Z #15 3.400 102900K .......... .......... .......... .......... .......... 81% 170M 0s -2024-03-07T01:08:06Z #15 3.400 102950K .......... .......... .......... .......... .......... 81% 173M 0s -2024-03-07T01:08:06Z #15 3.400 103000K .......... .......... .......... .......... .......... 81% 152M 0s -2024-03-07T01:08:06Z #15 3.400 103050K .......... .......... .......... .......... .......... 81% 179M 0s -2024-03-07T01:08:06Z #15 3.400 103100K .......... .......... .......... .......... .......... 81% 164M 0s -2024-03-07T01:08:06Z #15 3.400 103150K .......... .......... .......... .......... .......... 81% 177M 0s -2024-03-07T01:08:06Z #15 3.400 103200K .......... .......... .......... .......... .......... 81% 36.8M 0s -2024-03-07T01:08:06Z #15 3.401 103250K .......... .......... .......... .......... .......... 81% 143M 0s -2024-03-07T01:08:06Z #15 3.401 103300K .......... .......... .......... .......... .......... 81% 104M 0s -2024-03-07T01:08:06Z #15 3.402 103350K .......... .......... .......... .......... .......... 81% 166M 0s -2024-03-07T01:08:06Z #15 3.402 103400K .......... .......... .......... .......... .......... 81% 50.3M 0s -2024-03-07T01:08:06Z #15 3.403 103450K .......... .......... .......... .......... .......... 81% 42.8M 0s -2024-03-07T01:08:06Z #15 3.404 103500K .......... .......... .......... .......... .......... 81% 38.5M 0s -2024-03-07T01:08:06Z #15 3.405 103550K .......... .......... .......... .......... .......... 81% 40.2M 0s -2024-03-07T01:08:06Z #15 3.407 103600K .......... .......... .......... .......... .......... 81% 42.4M 0s -2024-03-07T01:08:06Z #15 3.408 103650K .......... .......... .......... .......... .......... 81% 32.9M 0s -2024-03-07T01:08:06Z #15 3.409 103700K .......... .......... .......... .......... .......... 81% 40.4M 0s -2024-03-07T01:08:06Z #15 3.410 103750K .......... .......... .......... .......... .......... 81% 43.8M 0s -2024-03-07T01:08:06Z #15 3.412 103800K .......... .......... .......... .......... .......... 81% 38.4M 0s -2024-03-07T01:08:06Z #15 3.413 103850K .......... .......... .......... .......... .......... 81% 48.3M 0s -2024-03-07T01:08:06Z #15 3.413 103900K .......... .......... .......... .......... .......... 81% 52.1M 0s -2024-03-07T01:08:06Z #15 3.414 103950K .......... .......... .......... .......... .......... 82% 29.0M 0s -2024-03-07T01:08:06Z #15 3.416 104000K .......... .......... .......... .......... .......... 82% 46.6M 0s -2024-03-07T01:08:06Z #15 3.418 104050K .......... .......... .......... .......... .......... 82% 38.4M 0s -2024-03-07T01:08:06Z #15 3.419 104100K .......... .......... .......... .......... .......... 82% 29.6M 0s -2024-03-07T01:08:06Z #15 3.420 104150K .......... .......... .......... .......... .......... 82% 68.2M 0s -2024-03-07T01:08:06Z #15 3.421 104200K .......... .......... .......... .......... .......... 82% 47.9M 0s -2024-03-07T01:08:06Z #15 3.422 104250K .......... .......... .......... .......... .......... 82% 34.8M 0s -2024-03-07T01:08:06Z #15 3.424 104300K .......... .......... .......... .......... .......... 82% 644K 0s -2024-03-07T01:08:06Z #15 3.501 104350K .......... .......... .......... .......... .......... 82% 54.8M 0s -2024-03-07T01:08:06Z #15 3.511 104400K .......... .......... .......... .......... .......... 82% 149M 0s -2024-03-07T01:08:06Z #15 3.511 104450K .......... .......... .......... .......... .......... 82% 108M 0s -2024-03-07T01:08:06Z #15 3.511 104500K .......... .......... .......... .......... .......... 82% 132M 0s -2024-03-07T01:08:06Z #15 3.511 104550K .......... .......... .......... .......... .......... 82% 125M 0s -2024-03-07T01:08:06Z #15 3.511 104600K .......... .......... .......... .......... .......... 82% 121M 0s -2024-03-07T01:08:06Z #15 3.511 104650K .......... .......... .......... .......... .......... 82% 132M 0s -2024-03-07T01:08:06Z #15 3.511 104700K .......... .......... .......... .......... .......... 82% 115M 0s -2024-03-07T01:08:06Z #15 3.511 104750K .......... .......... .......... .......... .......... 82% 127M 0s -2024-03-07T01:08:06Z #15 3.511 104800K .......... .......... .......... .......... .......... 82% 153M 0s -2024-03-07T01:08:06Z #15 3.511 104850K .......... .......... .......... .......... .......... 82% 107M 0s -2024-03-07T01:08:06Z #15 3.511 104900K .......... .......... .......... .......... .......... 82% 142M 0s -2024-03-07T01:08:06Z #15 3.511 104950K .......... .......... .......... .......... .......... 82% 128M 0s -2024-03-07T01:08:06Z #15 3.511 105000K .......... .......... .......... .......... .......... 82% 124M 0s -2024-03-07T01:08:06Z #15 3.511 105050K .......... .......... .......... .......... .......... 82% 120M 0s -2024-03-07T01:08:06Z #15 3.511 105100K .......... .......... .......... .......... .......... 82% 143M 0s -2024-03-07T01:08:06Z #15 3.511 105150K .......... .......... .......... .......... .......... 82% 158M 0s -2024-03-07T01:08:06Z #15 3.511 105200K .......... .......... .......... .......... .......... 83% 145M 0s -2024-03-07T01:08:06Z #15 3.511 105250K .......... .......... .......... .......... .......... 83% 144M 0s -2024-03-07T01:08:06Z #15 3.511 105300K .......... .......... .......... .......... .......... 83% 166M 0s -2024-03-07T01:08:06Z #15 3.511 105350K .......... .......... .......... .......... .......... 83% 164M 0s -2024-03-07T01:08:06Z #15 3.511 105400K .......... .......... .......... .......... .......... 83% 159M 0s -2024-03-07T01:08:06Z #15 3.511 105450K .......... .......... .......... .......... .......... 83% 135M 0s -2024-03-07T01:08:06Z #15 3.511 105500K .......... .......... .......... .......... .......... 83% 161M 0s -2024-03-07T01:08:06Z #15 3.511 105550K .......... .......... .......... .......... .......... 83% 157M 0s -2024-03-07T01:08:06Z #15 3.511 105600K .......... .......... .......... .......... .......... 83% 164M 0s -2024-03-07T01:08:06Z #15 3.511 105650K .......... .......... .......... .......... .......... 83% 146M 0s -2024-03-07T01:08:06Z #15 3.511 105700K .......... .......... .......... .......... .......... 83% 158M 0s -2024-03-07T01:08:06Z #15 3.511 105750K .......... .......... .......... .......... .......... 83% 4.70M 0s -2024-03-07T01:08:06Z #15 3.522 105800K .......... .......... .......... .......... .......... 83% 112M 0s -2024-03-07T01:08:06Z #15 3.522 105850K .......... .......... .......... .......... .......... 83% 17.6M 0s -2024-03-07T01:08:06Z #15 3.525 105900K .......... .......... .......... .......... .......... 83% 125M 0s -2024-03-07T01:08:06Z #15 3.525 105950K .......... .......... .......... .......... .......... 83% 68.2M 0s -2024-03-07T01:08:06Z #15 3.526 106000K .......... .......... .......... .......... .......... 83% 80.4M 0s -2024-03-07T01:08:06Z #15 3.527 106050K .......... .......... .......... .......... .......... 83% 75.7M 0s -2024-03-07T01:08:06Z #15 3.527 106100K .......... .......... .......... .......... .......... 83% 32.1M 0s -2024-03-07T01:08:06Z #15 3.530 106150K .......... .......... .......... .......... .......... 83% 156M 0s -2024-03-07T01:08:06Z #15 3.530 106200K .......... .......... .......... .......... .......... 83% 85.4M 0s -2024-03-07T01:08:06Z #15 3.532 106250K .......... .......... .......... .......... .......... 83% 18.9M 0s -2024-03-07T01:08:06Z #15 3.532 106300K .......... .......... .......... .......... .......... 83% 91.5M 0s -2024-03-07T01:08:06Z #15 3.534 106350K .......... .......... .......... .......... .......... 83% 66.9M 0s -2024-03-07T01:08:06Z #15 3.534 106400K .......... .......... .......... .......... .......... 83% 129M 0s -2024-03-07T01:08:06Z #15 3.534 106450K .......... .......... .......... .......... .......... 84% 64.7M 0s -2024-03-07T01:08:06Z #15 3.540 106500K .......... .......... .......... .......... .......... 84% 79.8M 0s -2024-03-07T01:08:06Z #15 3.540 106550K .......... .......... .......... .......... .......... 84% 90.2M 0s -2024-03-07T01:08:06Z #15 3.540 106600K .......... .......... .......... .......... .......... 84% 25.3M 0s -2024-03-07T01:08:06Z #15 3.540 106650K .......... .......... .......... .......... .......... 84% 153M 0s -2024-03-07T01:08:06Z #15 3.540 106700K .......... .......... .......... .......... .......... 84% 186M 0s -2024-03-07T01:08:06Z #15 3.540 106750K .......... .......... .......... .......... .......... 84% 190M 0s -2024-03-07T01:08:06Z #15 3.540 106800K .......... .......... .......... .......... .......... 84% 167M 0s -2024-03-07T01:08:06Z #15 3.540 106850K .......... .......... .......... .......... .......... 84% 115M 0s -2024-03-07T01:08:06Z #15 3.540 106900K .......... .......... .......... .......... .......... 84% 137M 0s -2024-03-07T01:08:06Z #15 3.540 106950K .......... .......... .......... .......... .......... 84% 117M 0s -2024-03-07T01:08:06Z #15 3.540 107000K .......... .......... .......... .......... .......... 84% 101M 0s -2024-03-07T01:08:06Z #15 3.542 107050K .......... .......... .......... .......... .......... 84% 106M 0s -2024-03-07T01:08:06Z #15 3.542 107100K .......... .......... .......... .......... .......... 84% 85.0M 0s -2024-03-07T01:08:06Z #15 3.542 107150K .......... .......... .......... .......... .......... 84% 123M 0s -2024-03-07T01:08:06Z #15 3.544 107200K .......... .......... .......... .......... .......... 84% 18.3M 0s -2024-03-07T01:08:06Z #15 3.545 107250K .......... .......... .......... .......... .......... 84% 61.4M 0s -2024-03-07T01:08:06Z #15 3.546 107300K .......... .......... .......... .......... .......... 84% 48.2M 0s -2024-03-07T01:08:06Z #15 3.548 107350K .......... .......... .......... .......... .......... 84% 99.8M 0s -2024-03-07T01:08:06Z #15 3.548 107400K .......... .......... .......... .......... .......... 84% 126M 0s -2024-03-07T01:08:06Z #15 3.548 107450K .......... .......... .......... .......... .......... 84% 50.1M 0s -2024-03-07T01:08:06Z #15 3.548 107500K .......... .......... .......... .......... .......... 84% 55.4M 0s -2024-03-07T01:08:06Z #15 3.549 107550K .......... .......... .......... .......... .......... 84% 49.7M 0s -2024-03-07T01:08:06Z #15 3.551 107600K .......... .......... .......... .......... .......... 84% 30.9M 0s -2024-03-07T01:08:06Z #15 3.552 107650K .......... .......... .......... .......... .......... 84% 89.4M 0s -2024-03-07T01:08:06Z #15 3.552 107700K .......... .......... .......... .......... .......... 84% 76.0M 0s -2024-03-07T01:08:06Z #15 3.555 107750K .......... .......... .......... .......... .......... 85% 106M 0s -2024-03-07T01:08:06Z #15 3.555 107800K .......... .......... .......... .......... .......... 85% 132M 0s -2024-03-07T01:08:06Z #15 3.555 107850K .......... .......... .......... .......... .......... 85% 126M 0s -2024-03-07T01:08:06Z #15 3.555 107900K .......... .......... .......... .......... .......... 85% 114M 0s -2024-03-07T01:08:06Z #15 3.555 107950K .......... .......... .......... .......... .......... 85% 132M 0s -2024-03-07T01:08:06Z #15 3.555 108000K .......... .......... .......... .......... .......... 85% 126M 0s -2024-03-07T01:08:06Z #15 3.556 108050K .......... .......... .......... .......... .......... 85% 47.0M 0s -2024-03-07T01:08:06Z #15 3.557 108100K .......... .......... .......... .......... .......... 85% 114M 0s -2024-03-07T01:08:06Z #15 3.557 108150K .......... .......... .......... .......... .......... 85% 135M 0s -2024-03-07T01:08:06Z #15 3.557 108200K .......... .......... .......... .......... .......... 85% 84.9M 0s -2024-03-07T01:08:06Z #15 3.558 108250K .......... .......... .......... .......... .......... 85% 119M 0s -2024-03-07T01:08:06Z #15 3.558 108300K .......... .......... .......... .......... .......... 85% 125M 0s -2024-03-07T01:08:06Z #15 3.559 108350K .......... .......... .......... .......... .......... 85% 108M 0s -2024-03-07T01:08:06Z #15 3.559 108400K .......... .......... .......... .......... .......... 85% 99.5M 0s -2024-03-07T01:08:06Z #15 3.560 108450K .......... .......... .......... .......... .......... 85% 94.6M 0s -2024-03-07T01:08:06Z #15 3.560 108500K .......... .......... .......... .......... .......... 85% 125M 0s -2024-03-07T01:08:06Z #15 3.560 108550K .......... .......... .......... .......... .......... 85% 103M 0s -2024-03-07T01:08:06Z #15 3.561 108600K .......... .......... .......... .......... .......... 85% 69.6M 0s -2024-03-07T01:08:06Z #15 3.563 108650K .......... .......... .......... .......... .......... 85% 148M 0s -2024-03-07T01:08:06Z #15 3.563 108700K .......... .......... .......... .......... .......... 85% 117M 0s -2024-03-07T01:08:06Z #15 3.563 108750K .......... .......... .......... .......... .......... 85% 142M 0s -2024-03-07T01:08:06Z #15 3.563 108800K .......... .......... .......... .......... .......... 85% 144M 0s -2024-03-07T01:08:06Z #15 3.563 108850K .......... .......... .......... .......... .......... 85% 125M 0s -2024-03-07T01:08:06Z #15 3.567 108900K .......... .......... .......... .......... .......... 85% 67.9M 0s -2024-03-07T01:08:06Z #15 3.567 108950K .......... .......... .......... .......... .......... 85% 151M 0s -2024-03-07T01:08:06Z #15 3.567 109000K .......... .......... .......... .......... .......... 86% 116M 0s -2024-03-07T01:08:06Z #15 3.567 109050K .......... .......... .......... .......... .......... 86% 131M 0s -2024-03-07T01:08:06Z #15 3.567 109100K .......... .......... .......... .......... .......... 86% 130M 0s -2024-03-07T01:08:06Z #15 3.567 109150K .......... .......... .......... .......... .......... 86% 145M 0s -2024-03-07T01:08:06Z #15 3.567 109200K .......... .......... .......... .......... .......... 86% 123M 0s -2024-03-07T01:08:06Z #15 3.567 109250K .......... .......... .......... .......... .......... 86% 149M 0s -2024-03-07T01:08:06Z #15 3.567 109300K .......... .......... .......... .......... .......... 86% 130M 0s -2024-03-07T01:08:06Z #15 3.567 109350K .......... .......... .......... .......... .......... 86% 103M 0s -2024-03-07T01:08:06Z #15 3.568 109400K .......... .......... .......... .......... .......... 86% 86.9M 0s -2024-03-07T01:08:06Z #15 3.571 109450K .......... .......... .......... .......... .......... 86% 105M 0s -2024-03-07T01:08:06Z #15 3.571 109500K .......... .......... .......... .......... .......... 86% 110M 0s -2024-03-07T01:08:06Z #15 3.571 109550K .......... .......... .......... .......... .......... 86% 141M 0s -2024-03-07T01:08:06Z #15 3.571 109600K .......... .......... .......... .......... .......... 86% 111M 0s -2024-03-07T01:08:06Z #15 3.571 109650K .......... .......... .......... .......... .......... 86% 142M 0s -2024-03-07T01:08:06Z #15 3.571 109700K .......... .......... .......... .......... .......... 86% 134M 0s -2024-03-07T01:08:06Z #15 3.571 109750K .......... .......... .......... .......... .......... 86% 112M 0s -2024-03-07T01:08:06Z #15 3.571 109800K .......... .......... .......... .......... .......... 86% 138M 0s -2024-03-07T01:08:06Z #15 3.571 109850K .......... .......... .......... .......... .......... 86% 67.4M 0s -2024-03-07T01:08:06Z #15 3.575 109900K .......... .......... .......... .......... .......... 86% 134M 0s -2024-03-07T01:08:06Z #15 3.575 109950K .......... .......... .......... .......... .......... 86% 138M 0s -2024-03-07T01:08:06Z #15 3.575 110000K .......... .......... .......... .......... .......... 86% 125M 0s -2024-03-07T01:08:06Z #15 3.575 110050K .......... .......... .......... .......... .......... 86% 142M 0s -2024-03-07T01:08:06Z #15 3.575 110100K .......... .......... .......... .......... .......... 86% 116M 0s -2024-03-07T01:08:06Z #15 3.575 110150K .......... .......... .......... .......... .......... 86% 141M 0s -2024-03-07T01:08:06Z #15 3.575 110200K .......... .......... .......... .......... .......... 86% 141M 0s -2024-03-07T01:08:06Z #15 3.575 110250K .......... .......... .......... .......... .......... 86% 122M 0s -2024-03-07T01:08:06Z #15 3.575 110300K .......... .......... .......... .......... .......... 87% 123M 0s -2024-03-07T01:08:06Z #15 3.576 110350K .......... .......... .......... .......... .......... 87% 52.7M 0s -2024-03-07T01:08:06Z #15 3.577 110400K .......... .......... .......... .......... .......... 87% 138M 0s -2024-03-07T01:08:06Z #15 3.577 110450K .......... .......... .......... .......... .......... 87% 91.1M 0s -2024-03-07T01:08:06Z #15 3.577 110500K .......... .......... .......... .......... .......... 87% 118M 0s -2024-03-07T01:08:06Z #15 3.578 110550K .......... .......... .......... .......... .......... 87% 87.8M 0s -2024-03-07T01:08:06Z #15 3.578 110600K .......... .......... .......... .......... .......... 87% 58.2M 0s -2024-03-07T01:08:06Z #15 3.580 110650K .......... .......... .......... .......... .......... 87% 73.9M 0s -2024-03-07T01:08:06Z #15 3.580 110700K .......... .......... .......... .......... .......... 87% 90.1M 0s -2024-03-07T01:08:06Z #15 3.581 110750K .......... .......... .......... .......... .......... 87% 76.8M 0s -2024-03-07T01:08:06Z #15 3.581 110800K .......... .......... .......... .......... .......... 87% 89.7M 0s -2024-03-07T01:08:06Z #15 3.582 110850K .......... .......... .......... .......... .......... 87% 85.6M 0s -2024-03-07T01:08:06Z #15 3.582 110900K .......... .......... .......... .......... .......... 87% 67.0M 0s -2024-03-07T01:08:06Z #15 3.583 110950K .......... .......... .......... .......... .......... 87% 69.2M 0s -2024-03-07T01:08:06Z #15 3.584 111000K .......... .......... .......... .......... .......... 87% 142M 0s -2024-03-07T01:08:06Z #15 3.584 111050K .......... .......... .......... .......... .......... 87% 79.2M 0s -2024-03-07T01:08:06Z #15 3.585 111100K .......... .......... .......... .......... .......... 87% 66.3M 0s -2024-03-07T01:08:06Z #15 3.586 111150K .......... .......... .......... .......... .......... 87% 78.4M 0s -2024-03-07T01:08:06Z #15 3.586 111200K .......... .......... .......... .......... .......... 87% 71.5M 0s -2024-03-07T01:08:06Z #15 3.587 111250K .......... .......... .......... .......... .......... 87% 75.8M 0s -2024-03-07T01:08:06Z #15 3.588 111300K .......... .......... .......... .......... .......... 87% 66.6M 0s -2024-03-07T01:08:06Z #15 3.588 111350K .......... .......... .......... .......... .......... 87% 69.5M 0s -2024-03-07T01:08:06Z #15 3.589 111400K .......... .......... .......... .......... .......... 87% 68.5M 0s -2024-03-07T01:08:06Z #15 3.589 111450K .......... .......... .......... .......... .......... 87% 75.0M 0s -2024-03-07T01:08:06Z #15 3.590 111500K .......... .......... .......... .......... .......... 87% 89.7M 0s -2024-03-07T01:08:06Z #15 3.591 111550K .......... .......... .......... .......... .......... 88% 97.7M 0s -2024-03-07T01:08:06Z #15 3.591 111600K .......... .......... .......... .......... .......... 88% 75.6M 0s -2024-03-07T01:08:06Z #15 3.592 111650K .......... .......... .......... .......... .......... 88% 114M 0s -2024-03-07T01:08:06Z #15 3.592 111700K .......... .......... .......... .......... .......... 88% 108M 0s -2024-03-07T01:08:06Z #15 3.593 111750K .......... .......... .......... .......... .......... 88% 94.4M 0s -2024-03-07T01:08:06Z #15 3.593 111800K .......... .......... .......... .......... .......... 88% 128M 0s -2024-03-07T01:08:06Z #15 3.593 111850K .......... .......... .......... .......... .......... 88% 57.2M 0s -2024-03-07T01:08:06Z #15 3.594 111900K .......... .......... .......... .......... .......... 88% 92.4M 0s -2024-03-07T01:08:06Z #15 3.595 111950K .......... .......... .......... .......... .......... 88% 128M 0s -2024-03-07T01:08:06Z #15 3.595 112000K .......... .......... .......... .......... .......... 88% 52.3M 0s -2024-03-07T01:08:06Z #15 3.596 112050K .......... .......... .......... .......... .......... 88% 48.2M 0s -2024-03-07T01:08:06Z #15 3.598 112100K .......... .......... .......... .......... .......... 88% 57.2M 0s -2024-03-07T01:08:06Z #15 3.598 112150K .......... .......... .......... .......... .......... 88% 71.4M 0s -2024-03-07T01:08:06Z #15 3.599 112200K .......... .......... .......... .......... .......... 88% 118M 0s -2024-03-07T01:08:06Z #15 3.599 112250K .......... .......... .......... .......... .......... 88% 65.7M 0s -2024-03-07T01:08:06Z #15 3.600 112300K .......... .......... .......... .......... .......... 88% 82.2M 0s -2024-03-07T01:08:06Z #15 3.601 112350K .......... .......... .......... .......... .......... 88% 85.0M 0s -2024-03-07T01:08:06Z #15 3.601 112400K .......... .......... .......... .......... .......... 88% 4.58M 0s -2024-03-07T01:08:06Z #15 3.612 112450K .......... .......... .......... .......... .......... 88% 123M 0s -2024-03-07T01:08:06Z #15 3.612 112500K .......... .......... .......... .......... .......... 88% 121M 0s -2024-03-07T01:08:06Z #15 3.614 112550K .......... .......... .......... .......... .......... 88% 113M 0s -2024-03-07T01:08:06Z #15 3.614 112600K .......... .......... .......... .......... .......... 88% 135M 0s -2024-03-07T01:08:06Z #15 3.615 112650K .......... .......... .......... .......... .......... 88% 131M 0s -2024-03-07T01:08:06Z #15 3.615 112700K .......... .......... .......... .......... .......... 88% 138M 0s -2024-03-07T01:08:06Z #15 3.616 112750K .......... .......... .......... .......... .......... 88% 112M 0s -2024-03-07T01:08:06Z #15 3.616 112800K .......... .......... .......... .......... .......... 89% 142M 0s -2024-03-07T01:08:06Z #15 3.617 112850K .......... .......... .......... .......... .......... 89% 144M 0s -2024-03-07T01:08:06Z #15 3.617 112900K .......... .......... .......... .......... .......... 89% 118M 0s -2024-03-07T01:08:06Z #15 3.617 112950K .......... .......... .......... .......... .......... 89% 116M 0s -2024-03-07T01:08:06Z #15 3.618 113000K .......... .......... .......... .......... .......... 89% 113M 0s -2024-03-07T01:08:06Z #15 3.618 113050K .......... .......... .......... .......... .......... 89% 136M 0s -2024-03-07T01:08:06Z #15 3.618 113100K .......... .......... .......... .......... .......... 89% 121M 0s -2024-03-07T01:08:06Z #15 3.618 113150K .......... .......... .......... .......... .......... 89% 132M 0s -2024-03-07T01:08:06Z #15 3.618 113200K .......... .......... .......... .......... .......... 89% 101M 0s -2024-03-07T01:08:06Z #15 3.618 113250K .......... .......... .......... .......... .......... 89% 129M 0s -2024-03-07T01:08:06Z #15 3.619 113300K .......... .......... .......... .......... .......... 89% 143M 0s -2024-03-07T01:08:06Z #15 3.619 113350K .......... .......... .......... .......... .......... 89% 135M 0s -2024-03-07T01:08:06Z #15 3.619 113400K .......... .......... .......... .......... .......... 89% 109M 0s -2024-03-07T01:08:06Z #15 3.623 113450K .......... .......... .......... .......... .......... 89% 11.1M 0s -2024-03-07T01:08:06Z #15 3.624 113500K .......... .......... .......... .......... .......... 89% 147M 0s -2024-03-07T01:08:06Z #15 3.624 113550K .......... .......... .......... .......... .......... 89% 126M 0s -2024-03-07T01:08:06Z #15 3.625 113600K .......... .......... .......... .......... .......... 89% 152M 0s -2024-03-07T01:08:06Z #15 3.625 113650K .......... .......... .......... .......... .......... 89% 153M 0s -2024-03-07T01:08:06Z #15 3.625 113700K .......... .......... .......... .......... .......... 89% 156M 0s -2024-03-07T01:08:06Z #15 3.625 113750K .......... .......... .......... .......... .......... 89% 155M 0s -2024-03-07T01:08:06Z #15 3.626 113800K .......... .......... .......... .......... .......... 89% 133M 0s -2024-03-07T01:08:06Z #15 3.626 113850K .......... .......... .......... .......... .......... 89% 133M 0s -2024-03-07T01:08:06Z #15 3.627 113900K .......... .......... .......... .......... .......... 89% 137M 0s -2024-03-07T01:08:06Z #15 3.628 113950K .......... .......... .......... .......... .......... 89% 141M 0s -2024-03-07T01:08:06Z #15 3.628 114000K .......... .......... .......... .......... .......... 89% 11.1M 0s -2024-03-07T01:08:06Z #15 3.632 114050K .......... .......... .......... .......... .......... 89% 167M 0s -2024-03-07T01:08:06Z #15 3.632 114100K .......... .......... .......... .......... .......... 90% 163M 0s -2024-03-07T01:08:06Z #15 3.632 114150K .......... .......... .......... .......... .......... 90% 140M 0s -2024-03-07T01:08:06Z #15 3.632 114200K .......... .......... .......... .......... .......... 90% 147M 0s -2024-03-07T01:08:06Z #15 3.633 114250K .......... .......... .......... .......... .......... 90% 150M 0s -2024-03-07T01:08:06Z #15 3.634 114300K .......... .......... .......... .......... .......... 90% 168M 0s -2024-03-07T01:08:06Z #15 3.634 114350K .......... .......... .......... .......... .......... 90% 157M 0s -2024-03-07T01:08:06Z #15 3.634 114400K .......... .......... .......... .......... .......... 90% 140M 0s -2024-03-07T01:08:06Z #15 3.634 114450K .......... .......... .......... .......... .......... 90% 167M 0s -2024-03-07T01:08:06Z #15 3.634 114500K .......... .......... .......... .......... .......... 90% 159M 0s -2024-03-07T01:08:06Z #15 3.635 114550K .......... .......... .......... .......... .......... 90% 168M 0s -2024-03-07T01:08:06Z #15 3.635 114600K .......... .......... .......... .......... .......... 90% 155M 0s -2024-03-07T01:08:06Z #15 3.635 114650K .......... .......... .......... .......... .......... 90% 129M 0s -2024-03-07T01:08:06Z #15 3.636 114700K .......... .......... .......... .......... .......... 90% 159M 0s -2024-03-07T01:08:06Z #15 3.636 114750K .......... .......... .......... .......... .......... 90% 171M 0s -2024-03-07T01:08:06Z #15 3.637 114800K .......... .......... .......... .......... .......... 90% 144M 0s -2024-03-07T01:08:06Z #15 3.637 114850K .......... .......... .......... .......... .......... 90% 182M 0s -2024-03-07T01:08:06Z #15 3.637 114900K .......... .......... .......... .......... .......... 90% 133M 0s -2024-03-07T01:08:06Z #15 3.637 114950K .......... .......... .......... .......... .......... 90% 148M 0s -2024-03-07T01:08:06Z #15 3.638 115000K .......... .......... .......... .......... .......... 90% 127M 0s -2024-03-07T01:08:06Z #15 3.638 115050K .......... .......... .......... .......... .......... 90% 158M 0s -2024-03-07T01:08:06Z #15 3.638 115100K .......... .......... .......... .......... .......... 90% 156M 0s -2024-03-07T01:08:06Z #15 3.639 115150K .......... .......... .......... .......... .......... 90% 164M 0s -2024-03-07T01:08:06Z #15 3.639 115200K .......... .......... .......... .......... .......... 90% 152M 0s -2024-03-07T01:08:06Z #15 3.639 115250K .......... .......... .......... .......... .......... 90% 11.2M 0s -2024-03-07T01:08:06Z #15 3.644 115300K .......... .......... .......... .......... .......... 90% 167M 0s -2024-03-07T01:08:06Z #15 3.644 115350K .......... .......... .......... .......... .......... 91% 131M 0s -2024-03-07T01:08:06Z #15 3.644 115400K .......... .......... .......... .......... .......... 91% 171M 0s -2024-03-07T01:08:06Z #15 3.645 115450K .......... .......... .......... .......... .......... 91% 176M 0s -2024-03-07T01:08:06Z #15 3.645 115500K .......... .......... .......... .......... .......... 91% 175M 0s -2024-03-07T01:08:06Z #15 3.645 115550K .......... .......... .......... .......... .......... 91% 141M 0s -2024-03-07T01:08:06Z #15 3.645 115600K .......... .......... .......... .......... .......... 91% 171M 0s -2024-03-07T01:08:06Z #15 3.646 115650K .......... .......... .......... .......... .......... 91% 170M 0s -2024-03-07T01:08:06Z #15 3.646 115700K .......... .......... .......... .......... .......... 91% 160M 0s -2024-03-07T01:08:06Z #15 3.646 115750K .......... .......... .......... .......... .......... 91% 136M 0s -2024-03-07T01:08:06Z #15 3.647 115800K .......... .......... .......... .......... .......... 91% 158M 0s -2024-03-07T01:08:06Z #15 3.647 115850K .......... .......... .......... .......... .......... 91% 161M 0s -2024-03-07T01:08:06Z #15 3.650 115900K .......... .......... .......... .......... .......... 91% 15.8M 0s -2024-03-07T01:08:06Z #15 3.650 115950K .......... .......... .......... .......... .......... 91% 150M 0s -2024-03-07T01:08:06Z #15 3.651 116000K .......... .......... .......... .......... .......... 91% 171M 0s -2024-03-07T01:08:06Z #15 3.651 116050K .......... .......... .......... .......... .......... 91% 139M 0s -2024-03-07T01:08:06Z #15 3.651 116100K .......... .......... .......... .......... .......... 91% 118M 0s -2024-03-07T01:08:06Z #15 3.653 116150K .......... .......... .......... .......... .......... 91% 169M 0s -2024-03-07T01:08:06Z #15 3.653 116200K .......... .......... .......... .......... .......... 91% 156M 0s -2024-03-07T01:08:06Z #15 3.653 116250K .......... .......... .......... .......... .......... 91% 168M 0s -2024-03-07T01:08:06Z #15 3.653 116300K .......... .......... .......... .......... .......... 91% 166M 0s -2024-03-07T01:08:06Z #15 3.653 116350K .......... .......... .......... .......... .......... 91% 165M 0s -2024-03-07T01:08:06Z #15 3.653 116400K .......... .......... .......... .......... .......... 91% 138M 0s -2024-03-07T01:08:06Z #15 3.654 116450K .......... .......... .......... .......... .......... 91% 173M 0s -2024-03-07T01:08:06Z #15 3.654 116500K .......... .......... .......... .......... .......... 91% 149M 0s -2024-03-07T01:08:06Z #15 3.656 116550K .......... .......... .......... .......... .......... 91% 183M 0s -2024-03-07T01:08:06Z #15 3.658 116600K .......... .......... .......... .......... .......... 92% 172M 0s -2024-03-07T01:08:06Z #15 3.658 116650K .......... .......... .......... .......... .......... 92% 180M 0s -2024-03-07T01:08:06Z #15 3.658 116700K .......... .......... .......... .......... .......... 92% 11.8M 0s -2024-03-07T01:08:06Z #15 3.659 116750K .......... .......... .......... .......... .......... 92% 119M 0s -2024-03-07T01:08:06Z #15 3.659 116800K .......... .......... .......... .......... .......... 92% 169M 0s -2024-03-07T01:08:06Z #15 3.660 116850K .......... .......... .......... .......... .......... 92% 143M 0s -2024-03-07T01:08:06Z #15 3.660 116900K .......... .......... .......... .......... .......... 92% 168M 0s -2024-03-07T01:08:06Z #15 3.660 116950K .......... .......... .......... .......... .......... 92% 146M 0s -2024-03-07T01:08:06Z #15 3.661 117000K .......... .......... .......... .......... .......... 92% 170M 0s -2024-03-07T01:08:06Z #15 3.661 117050K .......... .......... .......... .......... .......... 92% 184M 0s -2024-03-07T01:08:06Z #15 3.661 117100K .......... .......... .......... .......... .......... 92% 164M 0s -2024-03-07T01:08:06Z #15 3.662 117150K .......... .......... .......... .......... .......... 92% 144M 0s -2024-03-07T01:08:06Z #15 3.663 117200K .......... .......... .......... .......... .......... 92% 170M 0s -2024-03-07T01:08:06Z #15 3.663 117250K .......... .......... .......... .......... .......... 92% 168M 0s -2024-03-07T01:08:06Z #15 3.663 117300K .......... .......... .......... .......... .......... 92% 126M 0s -2024-03-07T01:08:06Z #15 3.663 117350K .......... .......... .......... .......... .......... 92% 162M 0s -2024-03-07T01:08:06Z #15 3.663 117400K .......... .......... .......... .......... .......... 92% 70.3M 0s -2024-03-07T01:08:06Z #15 3.666 117450K .......... .......... .......... .......... .......... 92% 27.2M 0s -2024-03-07T01:08:06Z #15 3.666 117500K .......... .......... .......... .......... .......... 92% 169M 0s -2024-03-07T01:08:06Z #15 3.666 117550K .......... .......... .......... .......... .......... 92% 178M 0s -2024-03-07T01:08:06Z #15 3.666 117600K .......... .......... .......... .......... .......... 92% 146M 0s -2024-03-07T01:08:06Z #15 3.667 117650K .......... .......... .......... .......... .......... 92% 172M 0s -2024-03-07T01:08:06Z #15 3.667 117700K .......... .......... .......... .......... .......... 92% 166M 0s -2024-03-07T01:08:06Z #15 3.667 117750K .......... .......... .......... .......... .......... 92% 11.2M 0s -2024-03-07T01:08:06Z #15 3.672 117800K .......... .......... .......... .......... .......... 92% 168M 0s -2024-03-07T01:08:06Z #15 3.672 117850K .......... .......... .......... .......... .......... 92% 157M 0s -2024-03-07T01:08:06Z #15 3.672 117900K .......... .......... .......... .......... .......... 93% 141M 0s -2024-03-07T01:08:06Z #15 3.672 117950K .......... .......... .......... .......... .......... 93% 164M 0s -2024-03-07T01:08:06Z #15 3.673 118000K .......... .......... .......... .......... .......... 93% 176M 0s -2024-03-07T01:08:06Z #15 3.673 118050K .......... .......... .......... .......... .......... 93% 150M 0s -2024-03-07T01:08:06Z #15 3.673 118100K .......... .......... .......... .......... .......... 93% 164M 0s -2024-03-07T01:08:06Z #15 3.674 118150K .......... .......... .......... .......... .......... 93% 158M 0s -2024-03-07T01:08:06Z #15 3.674 118200K .......... .......... .......... .......... .......... 93% 171M 0s -2024-03-07T01:08:06Z #15 3.674 118250K .......... .......... .......... .......... .......... 93% 141M 0s -2024-03-07T01:08:06Z #15 3.675 118300K .......... .......... .......... .......... .......... 93% 169M 0s -2024-03-07T01:08:06Z #15 3.675 118350K .......... .......... .......... .......... .......... 93% 168M 0s -2024-03-07T01:08:06Z #15 3.675 118400K .......... .......... .......... .......... .......... 93% 122M 0s -2024-03-07T01:08:06Z #15 3.676 118450K .......... .......... .......... .......... .......... 93% 156M 0s -2024-03-07T01:08:06Z #15 3.676 118500K .......... .......... .......... .......... .......... 93% 163M 0s -2024-03-07T01:08:06Z #15 3.676 118550K .......... .......... .......... .......... .......... 93% 145M 0s -2024-03-07T01:08:06Z #15 3.677 118600K .......... .......... .......... .......... .......... 93% 165M 0s -2024-03-07T01:08:06Z #15 3.677 118650K .......... .......... .......... .......... .......... 93% 144M 0s -2024-03-07T01:08:06Z #15 3.677 118700K .......... .......... .......... .......... .......... 93% 166M 0s -2024-03-07T01:08:06Z #15 3.677 118750K .......... .......... .......... .......... .......... 93% 169M 0s -2024-03-07T01:08:06Z #15 3.678 118800K .......... .......... .......... .......... .......... 93% 169M 0s -2024-03-07T01:08:06Z #15 3.678 118850K .......... .......... .......... .......... .......... 93% 146M 0s -2024-03-07T01:08:06Z #15 3.678 118900K .......... .......... .......... .......... .......... 93% 170M 0s -2024-03-07T01:08:06Z #15 3.679 118950K .......... .......... .......... .......... .......... 93% 167M 0s -2024-03-07T01:08:06Z #15 3.679 119000K .......... .......... .......... .......... .......... 93% 20.4M 0s -2024-03-07T01:08:06Z #15 3.681 119050K .......... .......... .......... .......... .......... 93% 160M 0s -2024-03-07T01:08:06Z #15 3.682 119100K .......... .......... .......... .......... .......... 93% 145M 0s -2024-03-07T01:08:06Z #15 3.682 119150K .......... .......... .......... .......... .......... 94% 169M 0s -2024-03-07T01:08:06Z #15 3.682 119200K .......... .......... .......... .......... .......... 94% 173M 0s -2024-03-07T01:08:06Z #15 3.683 119250K .......... .......... .......... .......... .......... 94% 167M 0s -2024-03-07T01:08:06Z #15 3.683 119300K .......... .......... .......... .......... .......... 94% 144M 0s -2024-03-07T01:08:06Z #15 3.683 119350K .......... .......... .......... .......... .......... 94% 137M 0s -2024-03-07T01:08:06Z #15 3.684 119400K .......... .......... .......... .......... .......... 94% 142M 0s -2024-03-07T01:08:06Z #15 3.684 119450K .......... .......... .......... .......... .......... 94% 164M 0s -2024-03-07T01:08:06Z #15 3.684 119500K .......... .......... .......... .......... .......... 94% 161M 0s -2024-03-07T01:08:06Z #15 3.685 119550K .......... .......... .......... .......... .......... 94% 145M 0s -2024-03-07T01:08:06Z #15 3.685 119600K .......... .......... .......... .......... .......... 94% 163M 0s -2024-03-07T01:08:06Z #15 3.685 119650K .......... .......... .......... .......... .......... 94% 161M 0s -2024-03-07T01:08:06Z #15 3.686 119700K .......... .......... .......... .......... .......... 94% 152M 0s -2024-03-07T01:08:06Z #15 3.686 119750K .......... .......... .......... .......... .......... 94% 165M 0s -2024-03-07T01:08:06Z #15 3.686 119800K .......... .......... .......... .......... .......... 94% 165M 0s -2024-03-07T01:08:06Z #15 3.686 119850K .......... .......... .......... .......... .......... 94% 170M 0s -2024-03-07T01:08:06Z #15 3.687 119900K .......... .......... .......... .......... .......... 94% 144M 0s -2024-03-07T01:08:06Z #15 3.687 119950K .......... .......... .......... .......... .......... 94% 165M 0s -2024-03-07T01:08:06Z #15 3.687 120000K .......... .......... .......... .......... .......... 94% 140M 0s -2024-03-07T01:08:06Z #15 3.688 120050K .......... .......... .......... .......... .......... 94% 162M 0s -2024-03-07T01:08:06Z #15 3.688 120100K .......... .......... .......... .......... .......... 94% 140M 0s -2024-03-07T01:08:06Z #15 3.688 120150K .......... .......... .......... .......... .......... 94% 170M 0s -2024-03-07T01:08:06Z #15 3.689 120200K .......... .......... .......... .......... .......... 94% 169M 0s -2024-03-07T01:08:06Z #15 3.689 120250K .......... .......... .......... .......... .......... 94% 165M 0s -2024-03-07T01:08:06Z #15 3.689 120300K .......... .......... .......... .......... .......... 94% 141M 0s -2024-03-07T01:08:06Z #15 3.689 120350K .......... .......... .......... .......... .......... 94% 168M 0s -2024-03-07T01:08:06Z #15 3.690 120400K .......... .......... .......... .......... .......... 95% 166M 0s -2024-03-07T01:08:06Z #15 3.690 120450K .......... .......... .......... .......... .......... 95% 167M 0s -2024-03-07T01:08:06Z #15 3.690 120500K .......... .......... .......... .......... .......... 95% 146M 0s -2024-03-07T01:08:06Z #15 3.691 120550K .......... .......... .......... .......... .......... 95% 162M 0s -2024-03-07T01:08:06Z #15 3.691 120600K .......... .......... .......... .......... .......... 95% 136M 0s -2024-03-07T01:08:06Z #15 3.691 120650K .......... .......... .......... .......... .......... 95% 164M 0s -2024-03-07T01:08:06Z #15 3.692 120700K .......... .......... .......... .......... .......... 95% 142M 0s -2024-03-07T01:08:06Z #15 3.692 120750K .......... .......... .......... .......... .......... 95% 168M 0s -2024-03-07T01:08:06Z #15 3.692 120800K .......... .......... .......... .......... .......... 95% 167M 0s -2024-03-07T01:08:06Z #15 3.693 120850K .......... .......... .......... .......... .......... 95% 148M 0s -2024-03-07T01:08:06Z #15 3.693 120900K .......... .......... .......... .......... .......... 95% 168M 0s -2024-03-07T01:08:06Z #15 3.693 120950K .......... .......... .......... .......... .......... 95% 161M 0s -2024-03-07T01:08:06Z #15 3.694 121000K .......... .......... .......... .......... .......... 95% 152M 0s -2024-03-07T01:08:06Z #15 3.694 121050K .......... .......... .......... .......... .......... 95% 170M 0s -2024-03-07T01:08:06Z #15 3.694 121100K .......... .......... .......... .......... .......... 95% 142M 0s -2024-03-07T01:08:06Z #15 3.695 121150K .......... .......... .......... .......... .......... 95% 167M 0s -2024-03-07T01:08:06Z #15 3.695 121200K .......... .......... .......... .......... .......... 95% 165M 0s -2024-03-07T01:08:06Z #15 3.695 121250K .......... .......... .......... .......... .......... 95% 147M 0s -2024-03-07T01:08:06Z #15 3.695 121300K .......... .......... .......... .......... .......... 95% 149M 0s -2024-03-07T01:08:06Z #15 3.696 121350K .......... .......... .......... .......... .......... 95% 152M 0s -2024-03-07T01:08:06Z #15 3.696 121400K .......... .......... .......... .......... .......... 95% 130M 0s -2024-03-07T01:08:06Z #15 3.696 121450K .......... .......... .......... .......... .......... 95% 120M 0s -2024-03-07T01:08:06Z #15 3.697 121500K .......... .......... .......... .......... .......... 95% 123M 0s -2024-03-07T01:08:06Z #15 3.697 121550K .......... .......... .......... .......... .......... 95% 154M 0s -2024-03-07T01:08:06Z #15 3.698 121600K .......... .......... .......... .......... .......... 95% 131M 0s -2024-03-07T01:08:06Z #15 3.698 121650K .......... .......... .......... .......... .......... 95% 459K 0s -2024-03-07T01:08:06Z #15 3.807 121700K .......... .......... .......... .......... .......... 96% 79.2M 0s -2024-03-07T01:08:06Z #15 3.808 121750K .......... .......... .......... .......... .......... 96% 122M 0s -2024-03-07T01:08:06Z #15 3.808 121800K .......... .......... .......... .......... .......... 96% 113M 0s -2024-03-07T01:08:06Z #15 3.808 121850K .......... .......... .......... .......... .......... 96% 137M 0s -2024-03-07T01:08:06Z #15 3.810 121900K .......... .......... .......... .......... .......... 96% 155M 0s -2024-03-07T01:08:06Z #15 3.810 121950K .......... .......... .......... .......... .......... 96% 110M 0s -2024-03-07T01:08:06Z #15 3.810 122000K .......... .......... .......... .......... .......... 96% 152M 0s -2024-03-07T01:08:06Z #15 3.810 122050K .......... .......... .......... .......... .......... 96% 166M 0s -2024-03-07T01:08:06Z #15 3.810 122100K .......... .......... .......... .......... .......... 96% 137M 0s -2024-03-07T01:08:06Z #15 3.810 122150K .......... .......... .......... .......... .......... 96% 157M 0s -2024-03-07T01:08:06Z #15 3.811 122200K .......... .......... .......... .......... .......... 96% 133M 0s -2024-03-07T01:08:06Z #15 3.811 122250K .......... .......... .......... .......... .......... 96% 104M 0s -2024-03-07T01:08:06Z #15 3.813 122300K .......... .......... .......... .......... .......... 96% 142M 0s -2024-03-07T01:08:06Z #15 3.813 122350K .......... .......... .......... .......... .......... 96% 67.5M 0s -2024-03-07T01:08:06Z #15 3.813 122400K .......... .......... .......... .......... .......... 96% 133M 0s -2024-03-07T01:08:06Z #15 3.813 122450K .......... .......... .......... .......... .......... 96% 151M 0s -2024-03-07T01:08:06Z #15 3.813 122500K .......... .......... .......... .......... .......... 96% 113M 0s -2024-03-07T01:08:06Z #15 3.816 122550K .......... .......... .......... .......... .......... 96% 118M 0s -2024-03-07T01:08:06Z #15 3.816 122600K .......... .......... .......... .......... .......... 96% 147M 0s -2024-03-07T01:08:06Z #15 3.816 122650K .......... .......... .......... .......... .......... 96% 99.5M 0s -2024-03-07T01:08:06Z #15 3.816 122700K .......... .......... .......... .......... .......... 96% 122M 0s -2024-03-07T01:08:06Z #15 3.816 122750K .......... .......... .......... .......... .......... 96% 118M 0s -2024-03-07T01:08:06Z #15 3.816 122800K .......... .......... .......... .......... .......... 96% 108M 0s -2024-03-07T01:08:06Z #15 3.817 122850K .......... .......... .......... .......... .......... 96% 115M 0s -2024-03-07T01:08:06Z #15 3.817 122900K .......... .......... .......... .......... .......... 96% 127M 0s -2024-03-07T01:08:06Z #15 3.817 122950K .......... .......... .......... .......... .......... 97% 94.3M 0s -2024-03-07T01:08:06Z #15 3.818 123000K .......... .......... .......... .......... .......... 97% 53.1M 0s -2024-03-07T01:08:06Z #15 3.819 123050K .......... .......... .......... .......... .......... 97% 86.0M 0s -2024-03-07T01:08:06Z #15 3.819 123100K .......... .......... .......... .......... .......... 97% 80.1M 0s -2024-03-07T01:08:06Z #15 3.821 123150K .......... .......... .......... .......... .......... 97% 123M 0s -2024-03-07T01:08:06Z #15 3.821 123200K .......... .......... .......... .......... .......... 97% 102M 0s -2024-03-07T01:08:06Z #15 3.821 123250K .......... .......... .......... .......... .......... 97% 139M 0s -2024-03-07T01:08:06Z #15 3.821 123300K .......... .......... .......... .......... .......... 97% 119M 0s -2024-03-07T01:08:06Z #15 3.821 123350K .......... .......... .......... .......... .......... 97% 74.8M 0s -2024-03-07T01:08:06Z #15 3.823 123400K .......... .......... .......... .......... .......... 97% 117M 0s -2024-03-07T01:08:06Z #15 3.823 123450K .......... .......... .......... .......... .......... 97% 110M 0s -2024-03-07T01:08:06Z #15 3.823 123500K .......... .......... .......... .......... .......... 97% 132M 0s -2024-03-07T01:08:06Z #15 3.823 123550K .......... .......... .......... .......... .......... 97% 54.6M 0s -2024-03-07T01:08:06Z #15 3.824 123600K .......... .......... .......... .......... .......... 97% 59.2M 0s -2024-03-07T01:08:06Z #15 3.825 123650K .......... .......... .......... .......... .......... 97% 80.7M 0s -2024-03-07T01:08:06Z #15 3.826 123700K .......... .......... .......... .......... .......... 97% 85.5M 0s -2024-03-07T01:08:06Z #15 3.829 123750K .......... .......... .......... .......... .......... 97% 124M 0s -2024-03-07T01:08:06Z #15 3.829 123800K .......... .......... .......... .......... .......... 97% 121M 0s -2024-03-07T01:08:06Z #15 3.829 123850K .......... .......... .......... .......... .......... 97% 119M 0s -2024-03-07T01:08:06Z #15 3.829 123900K .......... .......... .......... .......... .......... 97% 92.9M 0s -2024-03-07T01:08:06Z #15 3.829 123950K .......... .......... .......... .......... .......... 97% 101M 0s -2024-03-07T01:08:06Z #15 3.829 124000K .......... .......... .......... .......... .......... 97% 100M 0s -2024-03-07T01:08:06Z #15 3.829 124050K .......... .......... .......... .......... .......... 97% 90.6M 0s -2024-03-07T01:08:06Z #15 3.829 124100K .......... .......... .......... .......... .......... 97% 104M 0s -2024-03-07T01:08:06Z #15 3.835 124150K .......... .......... .......... .......... .......... 97% 79.9M 0s -2024-03-07T01:08:06Z #15 3.835 124200K .......... .......... .......... .......... .......... 98% 115M 0s -2024-03-07T01:08:06Z #15 3.835 124250K .......... .......... .......... .......... .......... 98% 137M 0s -2024-03-07T01:08:06Z #15 3.835 124300K .......... .......... .......... .......... .......... 98% 129M 0s -2024-03-07T01:08:06Z #15 3.835 124350K .......... .......... .......... .......... .......... 98% 121M 0s -2024-03-07T01:08:06Z #15 3.835 124400K .......... .......... .......... .......... .......... 98% 108M 0s -2024-03-07T01:08:06Z #15 3.835 124450K .......... .......... .......... .......... .......... 98% 121M 0s -2024-03-07T01:08:06Z #15 3.835 124500K .......... .......... .......... .......... .......... 98% 111M 0s -2024-03-07T01:08:06Z #15 3.835 124550K .......... .......... .......... .......... .......... 98% 126M 0s -2024-03-07T01:08:06Z #15 3.835 124600K .......... .......... .......... .......... .......... 98% 127M 0s -2024-03-07T01:08:06Z #15 3.835 124650K .......... .......... .......... .......... .......... 98% 110M 0s -2024-03-07T01:08:06Z #15 3.835 124700K .......... .......... .......... .......... .......... 98% 122M 0s -2024-03-07T01:08:06Z #15 3.835 124750K .......... .......... .......... .......... .......... 98% 124M 0s -2024-03-07T01:08:06Z #15 3.835 124800K .......... .......... .......... .......... .......... 98% 73.5M 0s -2024-03-07T01:08:06Z #15 3.839 124850K .......... .......... .......... .......... .......... 98% 106M 0s -2024-03-07T01:08:06Z #15 3.839 124900K .......... .......... .......... .......... .......... 98% 120M 0s -2024-03-07T01:08:06Z #15 3.839 124950K .......... .......... .......... .......... .......... 98% 121M 0s -2024-03-07T01:08:06Z #15 3.839 125000K .......... .......... .......... .......... .......... 98% 108M 0s -2024-03-07T01:08:06Z #15 3.839 125050K .......... .......... .......... .......... .......... 98% 131M 0s -2024-03-07T01:08:06Z #15 3.839 125100K .......... .......... .......... .......... .......... 98% 127M 0s -2024-03-07T01:08:06Z #15 3.839 125150K .......... .......... .......... .......... .......... 98% 113M 0s -2024-03-07T01:08:06Z #15 3.839 125200K .......... .......... .......... .......... .......... 98% 141M 0s -2024-03-07T01:08:06Z #15 3.839 125250K .......... .......... .......... .......... .......... 98% 78.8M 0s -2024-03-07T01:08:06Z #15 3.840 125300K .......... .......... .......... .......... .......... 98% 72.7M 0s -2024-03-07T01:08:06Z #15 3.842 125350K .......... .......... .......... .......... .......... 98% 102M 0s -2024-03-07T01:08:06Z #15 3.842 125400K .......... .......... .......... .......... .......... 98% 123M 0s -2024-03-07T01:08:06Z #15 3.842 125450K .......... .......... .......... .......... .......... 98% 135M 0s -2024-03-07T01:08:06Z #15 3.842 125500K .......... .......... .......... .......... .......... 99% 123M 0s -2024-03-07T01:08:06Z #15 3.847 125550K .......... .......... .......... .......... .......... 99% 142M 0s -2024-03-07T01:08:06Z #15 3.847 125600K .......... .......... .......... .......... .......... 99% 137M 0s -2024-03-07T01:08:06Z #15 3.847 125650K .......... .......... .......... .......... .......... 99% 72.9M 0s -2024-03-07T01:08:06Z #15 3.847 125700K .......... .......... .......... .......... .......... 99% 101M 0s -2024-03-07T01:08:06Z #15 3.847 125750K .......... .......... .......... .......... .......... 99% 126M 0s -2024-03-07T01:08:06Z #15 3.847 125800K .......... .......... .......... .......... .......... 99% 147M 0s -2024-03-07T01:08:06Z #15 3.847 125850K .......... .......... .......... .......... .......... 99% 132M 0s -2024-03-07T01:08:06Z #15 3.847 125900K .......... .......... .......... .......... .......... 99% 126M 0s -2024-03-07T01:08:06Z #15 3.847 125950K .......... .......... .......... .......... .......... 99% 117M 0s -2024-03-07T01:08:06Z #15 3.847 126000K .......... .......... .......... .......... .......... 99% 115M 0s -2024-03-07T01:08:06Z #15 3.847 126050K .......... .......... .......... .......... .......... 99% 140M 0s -2024-03-07T01:08:06Z #15 3.847 126100K .......... .......... .......... .......... .......... 99% 133M 0s -2024-03-07T01:08:06Z #15 3.847 126150K .......... .......... .......... .......... .......... 99% 138M 0s -2024-03-07T01:08:06Z #15 3.848 126200K .......... .......... .......... .......... .......... 99% 62.1M 0s -2024-03-07T01:08:06Z #15 3.851 126250K .......... .......... .......... .......... .......... 99% 95.8M 0s -2024-03-07T01:08:06Z #15 3.851 126300K .......... .......... .......... .......... .......... 99% 95.4M 0s -2024-03-07T01:08:06Z #15 3.851 126350K .......... .......... .......... .......... .......... 99% 134M 0s -2024-03-07T01:08:06Z #15 3.851 126400K .......... .......... .......... .......... .......... 99% 119M 0s -2024-03-07T01:08:06Z #15 3.851 126450K .......... .......... .......... .......... .......... 99% 119M 0s -2024-03-07T01:08:06Z #15 3.851 126500K .......... .......... .......... .......... .......... 99% 142M 0s -2024-03-07T01:08:06Z #15 3.851 126550K .......... .......... .......... .......... .......... 99% 144M 0s -2024-03-07T01:08:06Z #15 3.851 126600K .......... .......... .......... .......... .......... 99% 67.0M 0s -2024-03-07T01:08:06Z #15 3.854 126650K .......... .......... .......... .......... .......... 99% 128M 0s -2024-03-07T01:08:06Z #15 3.854 126700K .......... .......... .......... .......... .......... 99% 141M 0s -2024-03-07T01:08:06Z #15 3.854 126750K .......... .......... .......... .. 100% 103M=2.4s -2024-03-07T01:08:06Z #15 3.854 -2024-03-07T01:08:06Z #15 3.854 2024-03-07 01:08:06 (52.5 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] -2024-03-07T01:08:06Z #15 3.854 -2024-03-07T01:08:07Z #15 5.292 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' -2024-03-07T01:08:07Z #15 5.315 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-03-07T01:08:08Z #15 DONE 5.7s -2024-03-07T01:08:08Z -2024-03-07T01:08:08Z #16 exporting to image -2024-03-07T01:08:08Z #16 exporting layers -2024-03-07T01:10:36Z #16 exporting layers 148.1s done -2024-03-07T01:10:36Z #16 writing image sha256:2c93a1d86a9b13b3995383b4dd7390c5c9bfd85305f287c6b9b24ac8ccc6e04f done -2024-03-07T01:10:36Z #16 naming to docker.io/pavics/workflow-tests:py310-240306 done -2024-03-07T01:10:36Z #16 DONE 148.1s -2024-03-07T01:10:36Z Pushing index.docker.io/pavics/workflow-tests:py310-240306... -2024-03-07T01:18:01Z Done! -2024-03-07T01:18:01Z Build finished +2024-03-12T19:58:32Z Building in Docker Cloud's infrastructure... +2024-03-12T19:58:33Z Cloning into '.'... +2024-03-12T19:58:33Z Warning: Permanently added the RSA host key for IP address '140.82.113.4' to the list of known hosts. +2024-03-12T19:58:35Z Switched to a new branch 'docker-py310-240312' +2024-03-12T19:58:35Z KernelVersion: 5.4.0-1068-aws +2024-03-12T19:58:35Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-03-12T19:58:35Z Arch: amd64 +2024-03-12T19:58:35Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-03-12T19:58:35Z ApiVersion: 1.41 +2024-03-12T19:58:35Z Platform: {u'Name': u'Docker Engine - Community'} +2024-03-12T19:58:35Z Version: 20.10.15 +2024-03-12T19:58:35Z MinAPIVersion: 1.12 +2024-03-12T19:58:35Z GitCommit: 4433bf6 +2024-03-12T19:58:35Z Os: linux +2024-03-12T19:58:35Z GoVersion: go1.17.9 +2024-03-12T19:58:35Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240312... +2024-03-12T19:58:41Z #1 [internal] load build definition from Dockerfile +2024-03-12T19:58:41Z #1 transferring dockerfile: 6.98kB done +2024-03-12T19:58:41Z #1 DONE 0.1s +2024-03-12T19:58:41Z +2024-03-12T19:58:41Z #2 [internal] load .dockerignore +2024-03-12T19:58:41Z #2 transferring context: 2B done +2024-03-12T19:58:41Z #2 DONE 0.0s +2024-03-12T19:58:41Z +2024-03-12T19:58:41Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-03-12T19:58:41Z #3 ... +2024-03-12T19:58:41Z +2024-03-12T19:58:41Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-03-12T19:58:41Z #4 DONE 0.0s +2024-03-12T19:58:41Z +2024-03-12T19:58:41Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-03-12T19:58:42Z #3 DONE 0.9s +2024-03-12T19:58:42Z +2024-03-12T19:58:42Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-03-12T19:58:42Z #5 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done +2024-03-12T19:58:42Z #5 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done +2024-03-12T19:58:42Z #5 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done +2024-03-12T19:58:42Z #5 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done +2024-03-12T19:58:42Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 0B / 31.42MB 0.1s +2024-03-12T19:58:42Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s +2024-03-12T19:58:42Z #5 ... +2024-03-12T19:58:42Z +2024-03-12T19:58:42Z #6 [internal] load build context +2024-03-12T19:58:42Z #6 transferring context: 9.52kB 0.0s done +2024-03-12T19:58:42Z #6 DONE 0.1s +2024-03-12T19:58:42Z +2024-03-12T19:58:42Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-03-12T19:58:42Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.24MB / 31.42MB 0.2s +2024-03-12T19:58:42Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.03MB / 50.08MB 0.2s +2024-03-12T19:58:42Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.2s +2024-03-12T19:58:42Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 14.68MB / 31.42MB 0.5s +2024-03-12T19:58:42Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 9.44MB / 50.08MB 0.5s +2024-03-12T19:58:42Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 8.50MB / 147.31MB 0.5s +2024-03-12T19:58:42Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 16.78MB / 31.42MB 0.6s +2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 18.87MB / 31.42MB 0.7s +2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 13.25MB / 50.08MB 0.7s +2024-03-12T19:58:43Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 17.83MB / 147.31MB 0.7s +2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 20.97MB / 31.42MB 0.8s +2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 25.17MB / 31.42MB 1.0s +2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 19.92MB / 50.08MB 1.0s +2024-03-12T19:58:43Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 31.46MB / 147.31MB 1.0s +2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.2s +2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 26.21MB / 50.08MB 1.2s +2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 30.41MB / 50.08MB 1.3s +2024-03-12T19:58:43Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 42.99MB / 147.31MB 1.3s +2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 34.60MB / 50.08MB 1.4s +2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.5s done +2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 37.75MB / 50.08MB 1.5s +2024-03-12T19:58:44Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 49.28MB / 50.08MB 1.7s +2024-03-12T19:58:44Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 54.53MB / 147.31MB 1.7s +2024-03-12T19:58:44Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.9s done +2024-03-12T19:58:44Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 +2024-03-12T19:58:44Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 66.06MB / 147.31MB 2.3s +2024-03-12T19:58:45Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 74.45MB / 147.31MB 2.7s +2024-03-12T19:58:45Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 84.93MB / 147.31MB 2.9s +2024-03-12T19:58:45Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 96.47MB / 147.31MB 3.1s +2024-03-12T19:58:45Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 104.86MB / 147.31MB 3.5s +2024-03-12T19:58:46Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 113.25MB / 147.31MB 3.9s +2024-03-12T19:58:46Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 122.68MB / 147.31MB 4.1s +2024-03-12T19:58:46Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 133.17MB / 147.31MB 4.6s +2024-03-12T19:58:47Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 146.80MB / 147.31MB 5.1s +2024-03-12T19:58:48Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 6.6s done +2024-03-12T19:58:49Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.2s +2024-03-12T19:58:49Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.6s done +2024-03-12T19:58:50Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0.1s +2024-03-12T19:58:55Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.2s +2024-03-12T19:58:57Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.9s done +2024-03-12T19:58:57Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c +2024-03-12T19:59:02Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.0s +2024-03-12T19:59:07Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.0s +2024-03-12T19:59:11Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.1s done +2024-03-12T19:59:11Z #5 DONE 29.7s +2024-03-12T19:59:11Z +2024-03-12T19:59:11Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-03-12T19:59:13Z #7 1.554 Channels: +2024-03-12T19:59:13Z #7 1.554 - defaults +2024-03-12T19:59:13Z #7 1.554 Platform: linux-64 +2024-03-12T19:59:17Z #7 1.554 Collecting package metadata (repodata.json): ...working... done +2024-03-12T19:59:18Z #7 5.832 Solving environment: ...working... done +2024-03-12T19:59:18Z #7 6.129 +2024-03-12T19:59:18Z #7 6.129 # All requested packages already installed. +2024-03-12T19:59:18Z #7 6.129 +2024-03-12T19:59:19Z #7 7.337 Channels: +2024-03-12T19:59:19Z #7 7.337 - conda-forge +2024-03-12T19:59:19Z #7 7.337 - defaults +2024-03-12T19:59:19Z #7 7.337 Platform: linux-64 +2024-03-12T19:59:44Z #7 7.337 Collecting package metadata (repodata.json): ...working... done +2024-03-12T19:59:46Z #7 32.55 Solving environment: ...working... done +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 ## Package Plan ## +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 environment location: /opt/conda +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 added / updated specs: +2024-03-12T19:59:46Z #7 34.47 - mamba +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 The following packages will be downloaded: +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 package | build +2024-03-12T19:59:46Z #7 34.47 ---------------------------|----------------- +2024-03-12T19:59:46Z #7 34.47 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 ca-certificates-2024.2.2 | hbcca054_0 152 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 conda-24.1.2 | py311h38be061_0 1.2 MB conda-forge +2024-03-12T19:59:46Z #7 34.47 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-03-12T19:59:46Z #7 34.47 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 libmamba-1.5.7 | had39da4_0 1.6 MB conda-forge +2024-03-12T19:59:46Z #7 34.47 libmambapy-1.5.7 | py311hf2555c7_0 305 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge +2024-03-12T19:59:46Z #7 34.47 libxml2-2.12.5 | h232c23b_0 688 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 lzo-2.10 | h516909a_1000 314 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 mamba-1.5.7 | py311h3072747_0 65 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 openssl-3.2.1 | hd590300_0 2.7 MB conda-forge +2024-03-12T19:59:46Z #7 34.47 python_abi-3.11 | 2_cp311 5 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-03-12T19:59:46Z #7 34.47 ------------------------------------------------------------ +2024-03-12T19:59:46Z #7 34.47 Total: 25.3 MB +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 The following NEW packages will be INSTALLED: +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-03-12T19:59:46Z #7 34.47 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-03-12T19:59:46Z #7 34.47 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 +2024-03-12T19:59:46Z #7 34.47 mamba conda-forge/linux-64::mamba-1.5.7-py311h3072747_0 +2024-03-12T19:59:46Z #7 34.47 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 The following packages will be UPDATED: +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 ca-certificates pkgs/main::ca-certificates-2023.12.12~ --> conda-forge::ca-certificates-2024.2.2-hbcca054_0 +2024-03-12T19:59:46Z #7 34.47 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-03-12T19:59:46Z #7 34.47 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-03-12T19:59:46Z #7 34.47 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-03-12T19:59:46Z #7 34.47 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 +2024-03-12T19:59:46Z #7 34.47 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 +2024-03-12T19:59:46Z #7 34.47 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.7-had39da4_0 +2024-03-12T19:59:46Z #7 34.47 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.7-py311hf2555c7_0 +2024-03-12T19:59:46Z #7 34.47 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 +2024-03-12T19:59:46Z #7 34.47 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.5-h232c23b_0 +2024-03-12T19:59:46Z #7 34.47 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_0 +2024-03-12T19:59:46Z #7 34.47 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 The following packages will be SUPERSEDED by a higher-priority channel: +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-03-12T19:59:46Z #7 34.47 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-03-12T19:59:46Z #7 34.47 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-03-12T19:59:46Z #7 34.47 conda pkgs/main::conda-24.1.2-py311h06a4308~ --> conda-forge::conda-24.1.2-py311h38be061_0 +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 +2024-03-12T19:59:46Z #7 34.47 Proceed ([y]/n)? +2024-03-12T19:59:48Z #7 36.61 +2024-03-12T19:59:48Z #7 36.61 Downloading and Extracting Packages: ...working... done +2024-03-12T19:59:48Z #7 36.61 Preparing transaction: ...working... done +2024-03-12T19:59:49Z #7 36.72 Verifying transaction: ...working... done +2024-03-12T19:59:58Z #7 37.09 Executing transaction: ...working... done +2024-03-12T19:59:59Z #7 47.63 Will remove 21 (25.3 MB) tarball(s). +2024-03-12T19:59:59Z #7 47.63 Will remove 1 index cache(s). +2024-03-12T19:59:59Z #7 47.63 Will remove 3 (118 KB) package(s). +2024-03-12T19:59:59Z #7 47.63 There are no tempfile(s) to remove. +2024-03-12T19:59:59Z #7 47.63 There are no logfile(s) to remove. +2024-03-12T20:00:01Z #7 49.24 bin/micromamba +2024-03-12T20:00:03Z #7 DONE 51.7s +2024-03-12T20:00:03Z +2024-03-12T20:00:03Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-03-12T20:00:04Z #8 0.544 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-03-12T20:00:04Z #8 0.567 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-03-12T20:00:04Z #8 0.571 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-03-12T20:00:04Z #8 0.723 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-03-12T20:00:04Z #8 0.937 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [269 kB] +2024-03-12T20:00:05Z #8 1.464 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-03-12T20:00:06Z #8 2.738 Fetched 8564 kB in 2s (3877 kB/s) +2024-03-12T20:00:07Z #8 2.738 Reading package lists... +2024-03-12T20:00:08Z #8 3.726 Reading package lists... +2024-03-12T20:00:08Z #8 4.659 Building dependency tree... +2024-03-12T20:00:08Z #8 4.890 Reading state information... +2024-03-12T20:00:09Z #8 5.223 git is already the newest version (1:2.30.2-1+deb11u2). +2024-03-12T20:00:09Z #8 5.223 mercurial is already the newest version (5.6.1-4). +2024-03-12T20:00:09Z #8 5.223 The following additional packages will be installed: +2024-03-12T20:00:09Z #8 5.223 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-03-12T20:00:09Z #8 5.224 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-03-12T20:00:09Z #8 5.224 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-03-12T20:00:09Z #8 5.225 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-03-12T20:00:09Z #8 5.225 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-03-12T20:00:09Z #8 5.226 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-03-12T20:00:09Z #8 5.226 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-03-12T20:00:09Z #8 5.231 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-03-12T20:00:09Z #8 5.231 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-03-12T20:00:09Z #8 5.231 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-03-12T20:00:09Z #8 5.231 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-03-12T20:00:09Z #8 5.231 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-03-12T20:00:09Z #8 5.231 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-03-12T20:00:09Z #8 5.231 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-03-12T20:00:09Z #8 5.231 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-03-12T20:00:09Z #8 5.231 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-03-12T20:00:09Z #8 5.231 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-03-12T20:00:09Z #8 5.231 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-03-12T20:00:09Z #8 5.231 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-03-12T20:00:09Z #8 5.231 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-03-12T20:00:09Z #8 5.231 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-03-12T20:00:09Z #8 5.231 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-03-12T20:00:09Z #8 5.231 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-03-12T20:00:09Z #8 5.231 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-03-12T20:00:09Z #8 5.231 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-03-12T20:00:09Z #8 5.231 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-03-12T20:00:09Z #8 5.231 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-03-12T20:00:09Z #8 5.231 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-03-12T20:00:09Z #8 5.231 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-03-12T20:00:09Z #8 5.231 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-03-12T20:00:09Z #8 5.231 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-03-12T20:00:09Z #8 5.231 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-03-12T20:00:09Z #8 5.231 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-03-12T20:00:09Z #8 5.231 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-03-12T20:00:09Z #8 5.231 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-03-12T20:00:09Z #8 5.231 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-03-12T20:00:09Z #8 5.231 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-03-12T20:00:09Z #8 5.231 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv +2024-03-12T20:00:09Z #8 5.231 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data +2024-03-12T20:00:09Z #8 5.231 Suggested packages: +2024-03-12T20:00:09Z #8 5.231 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-03-12T20:00:09Z #8 5.231 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-03-12T20:00:09Z #8 5.231 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-03-12T20:00:09Z #8 5.231 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs +2024-03-12T20:00:09Z #8 5.231 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser +2024-03-12T20:00:09Z #8 5.231 opencl-icd ed diffutils-doc systemd-container policykit-1 zip +2024-03-12T20:00:09Z #8 5.231 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-03-12T20:00:09Z #8 5.231 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-03-12T20:00:09Z #8 5.231 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-03-12T20:00:10Z #8 6.854 The following NEW packages will be installed: +2024-03-12T20:00:10Z #8 6.854 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-03-12T20:00:10Z #8 6.855 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-03-12T20:00:10Z #8 6.855 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-03-12T20:00:10Z #8 6.856 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-03-12T20:00:10Z #8 6.856 glib-networking glib-networking-common glib-networking-services +2024-03-12T20:00:10Z #8 6.856 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-03-12T20:00:10Z #8 6.863 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-03-12T20:00:10Z #8 6.863 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-03-12T20:00:10Z #8 6.863 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-03-12T20:00:10Z #8 6.863 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-03-12T20:00:10Z #8 6.863 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-03-12T20:00:10Z #8 6.863 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-03-12T20:00:10Z #8 6.863 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-03-12T20:00:10Z #8 6.863 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-03-12T20:00:10Z #8 6.863 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-03-12T20:00:10Z #8 6.863 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-03-12T20:00:10Z #8 6.863 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-03-12T20:00:10Z #8 6.863 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-03-12T20:00:10Z #8 6.863 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-03-12T20:00:10Z #8 6.863 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-03-12T20:00:10Z #8 6.863 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-03-12T20:00:10Z #8 6.863 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-03-12T20:00:10Z #8 6.863 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-03-12T20:00:10Z #8 6.863 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-03-12T20:00:10Z #8 6.863 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-03-12T20:00:10Z #8 6.863 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-03-12T20:00:10Z #8 6.863 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-03-12T20:00:10Z #8 6.863 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-03-12T20:00:10Z #8 6.863 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-03-12T20:00:10Z #8 6.863 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-03-12T20:00:10Z #8 6.863 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-03-12T20:00:10Z #8 6.863 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-03-12T20:00:10Z #8 6.863 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-03-12T20:00:10Z #8 6.863 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-03-12T20:00:10Z #8 6.863 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-03-12T20:00:10Z #8 6.863 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-03-12T20:00:10Z #8 6.863 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-03-12T20:00:10Z #8 6.863 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-03-12T20:00:10Z #8 6.863 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-03-12T20:00:10Z #8 6.863 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-03-12T20:00:10Z #8 6.863 x11-utils xkb-data +2024-03-12T20:00:10Z #8 6.899 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. +2024-03-12T20:00:10Z #8 6.899 Need to get 236 MB of archives. +2024-03-12T20:00:10Z #8 6.899 After this operation, 891 MB of additional disk space will be used. +2024-03-12T20:00:10Z #8 6.899 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-03-12T20:00:10Z #8 6.906 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-03-12T20:00:10Z #8 6.907 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-03-12T20:00:10Z #8 6.909 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-03-12T20:00:10Z #8 6.912 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-03-12T20:00:10Z #8 6.916 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-03-12T20:00:10Z #8 6.918 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-03-12T20:00:10Z #8 6.922 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-03-12T20:00:10Z #8 6.924 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-03-12T20:00:10Z #8 6.925 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-03-12T20:00:10Z #8 7.003 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-03-12T20:00:10Z #8 7.005 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-03-12T20:00:10Z #8 7.014 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-03-12T20:00:10Z #8 7.020 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-03-12T20:00:10Z #8 7.024 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-03-12T20:00:10Z #8 7.029 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-03-12T20:00:10Z #8 7.047 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-03-12T20:00:10Z #8 7.050 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-03-12T20:00:10Z #8 7.051 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-03-12T20:00:10Z #8 7.056 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-03-12T20:00:11Z #8 7.182 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-03-12T20:00:11Z #8 7.198 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-03-12T20:00:11Z #8 7.210 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-03-12T20:00:11Z #8 7.215 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-03-12T20:00:11Z #8 7.223 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-03-12T20:00:11Z #8 7.225 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-03-12T20:00:11Z #8 7.226 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-03-12T20:00:11Z #8 7.230 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-03-12T20:00:11Z #8 7.234 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-03-12T20:00:11Z #8 7.237 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-03-12T20:00:11Z #8 7.239 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-03-12T20:00:11Z #8 7.392 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-03-12T20:00:11Z #8 7.393 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-03-12T20:00:11Z #8 7.396 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-03-12T20:00:11Z #8 7.402 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-03-12T20:00:11Z #8 7.403 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-03-12T20:00:11Z #8 7.405 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-03-12T20:00:11Z #8 7.408 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-03-12T20:00:11Z #8 7.409 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-03-12T20:00:11Z #8 7.412 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-03-12T20:00:11Z #8 7.442 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-03-12T20:00:11Z #8 7.455 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-03-12T20:00:11Z #8 7.458 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-03-12T20:00:11Z #8 7.460 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-03-12T20:00:11Z #8 7.481 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-03-12T20:00:11Z #8 7.482 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-03-12T20:00:11Z #8 7.491 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-03-12T20:00:11Z #8 7.515 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-03-12T20:00:11Z #8 7.524 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-03-12T20:00:11Z #8 7.649 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-03-12T20:00:11Z #8 7.651 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-03-12T20:00:11Z #8 7.654 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-03-12T20:00:11Z #8 7.656 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-03-12T20:00:11Z #8 7.658 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-03-12T20:00:11Z #8 7.660 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-03-12T20:00:11Z #8 7.662 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-03-12T20:00:11Z #8 7.665 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-03-12T20:00:11Z #8 7.673 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-03-12T20:00:11Z #8 7.696 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-03-12T20:00:11Z #8 7.704 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-03-12T20:00:11Z #8 7.712 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-03-12T20:00:11Z #8 7.720 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-03-12T20:00:11Z #8 7.722 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-03-12T20:00:11Z #8 7.725 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-03-12T20:00:11Z #8 7.733 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-03-12T20:00:11Z #8 7.735 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-03-12T20:00:11Z #8 7.737 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-03-12T20:00:11Z #8 7.740 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-03-12T20:00:11Z #8 7.742 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-03-12T20:00:11Z #8 7.745 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-03-12T20:00:11Z #8 7.748 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-03-12T20:00:11Z #8 7.761 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-03-12T20:00:11Z #8 7.764 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-03-12T20:00:11Z #8 7.765 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-03-12T20:00:11Z #8 7.771 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-03-12T20:00:11Z #8 7.775 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-03-12T20:00:11Z #8 7.777 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-03-12T20:00:11Z #8 7.779 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-03-12T20:00:11Z #8 7.796 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-03-12T20:00:11Z #8 7.798 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-03-12T20:00:11Z #8 7.800 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-03-12T20:00:11Z #8 7.806 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-03-12T20:00:11Z #8 7.809 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-03-12T20:00:11Z #8 7.811 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-03-12T20:00:11Z #8 7.813 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-03-12T20:00:11Z #8 7.817 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-03-12T20:00:11Z #8 7.819 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-03-12T20:00:11Z #8 7.821 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-03-12T20:00:11Z #8 7.823 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-03-12T20:00:11Z #8 7.825 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-03-12T20:00:11Z #8 7.826 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-03-12T20:00:11Z #8 7.833 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-03-12T20:00:11Z #8 7.835 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-03-12T20:00:11Z #8 7.840 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-03-12T20:00:11Z #8 7.841 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-03-12T20:00:11Z #8 7.842 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-03-12T20:00:11Z #8 7.844 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-03-12T20:00:11Z #8 7.845 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-03-12T20:00:11Z #8 7.848 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-03-12T20:00:11Z #8 7.850 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-03-12T20:00:11Z #8 7.968 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-03-12T20:00:11Z #8 7.969 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-03-12T20:00:11Z #8 7.970 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-03-12T20:00:11Z #8 7.972 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-03-12T20:00:11Z #8 7.981 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-03-12T20:00:11Z #8 7.983 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-03-12T20:00:11Z #8 7.985 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-03-12T20:00:11Z #8 8.072 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-03-12T20:00:11Z #8 8.112 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-03-12T20:00:11Z #8 8.116 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.8.0esr-1~deb11u1 [63.7 MB] +2024-03-12T20:00:13Z #8 9.531 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-03-12T20:00:13Z #8 9.531 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-03-12T20:00:13Z #8 9.531 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-03-12T20:00:13Z #8 9.531 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-03-12T20:00:13Z #8 9.531 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-03-12T20:00:13Z #8 9.531 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-03-12T20:00:13Z #8 9.548 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-03-12T20:00:13Z #8 9.585 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-03-12T20:00:13Z #8 9.599 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-03-12T20:00:13Z #8 9.625 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-03-12T20:00:13Z #8 9.632 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-03-12T20:00:13Z #8 9.671 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-03-12T20:00:13Z #8 10.19 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-03-12T20:00:13Z #8 10.19 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-03-12T20:00:14Z #8 10.21 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-03-12T20:00:14Z #8 10.21 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-03-12T20:00:14Z #8 10.21 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-03-12T20:00:14Z #8 10.21 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-03-12T20:00:14Z #8 10.21 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-03-12T20:00:14Z #8 10.22 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-03-12T20:00:14Z #8 10.22 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-03-12T20:00:14Z #8 10.25 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-03-12T20:00:14Z #8 10.31 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-03-12T20:00:14Z #8 10.38 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-03-12T20:00:14Z #8 10.39 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-03-12T20:00:14Z #8 10.39 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-03-12T20:00:14Z #8 10.39 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-03-12T20:00:14Z #8 10.39 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-03-12T20:00:14Z #8 10.40 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-03-12T20:00:14Z #8 10.69 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-03-12T20:00:14Z #8 10.69 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-03-12T20:00:14Z #8 10.69 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-03-12T20:00:14Z #8 10.69 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-03-12T20:00:14Z #8 10.69 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-03-12T20:00:14Z #8 10.71 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-03-12T20:00:14Z #8 10.77 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-03-12T20:00:14Z #8 10.77 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-03-12T20:00:14Z #8 10.77 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-03-12T20:00:14Z #8 10.77 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-03-12T20:00:14Z #8 10.78 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-03-12T20:00:14Z #8 10.78 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-03-12T20:00:14Z #8 10.78 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-03-12T20:00:14Z #8 10.78 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-03-12T20:00:14Z #8 10.79 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-03-12T20:00:14Z #8 10.79 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-03-12T20:00:14Z #8 10.79 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-03-12T20:00:14Z #8 10.81 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-03-12T20:00:14Z #8 10.81 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-03-12T20:00:14Z #8 10.82 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-03-12T20:00:14Z #8 10.83 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-03-12T20:00:14Z #8 10.83 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-03-12T20:00:14Z #8 10.85 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-03-12T20:00:14Z #8 10.85 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-03-12T20:00:14Z #8 10.86 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-03-12T20:00:14Z #8 10.86 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-03-12T20:00:14Z #8 10.95 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] +2024-03-12T20:00:14Z #8 10.96 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-03-12T20:00:14Z #8 10.96 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-03-12T20:00:14Z #8 10.97 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] +2024-03-12T20:00:14Z #8 10.98 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-03-12T20:00:14Z #8 11.00 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-03-12T20:00:14Z #8 11.00 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-03-12T20:00:14Z #8 11.00 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-03-12T20:00:14Z #8 11.00 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] +2024-03-12T20:00:14Z #8 11.07 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-03-12T20:00:14Z #8 11.08 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-03-12T20:00:14Z #8 11.08 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-03-12T20:00:14Z #8 11.08 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-03-12T20:00:14Z #8 11.08 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-03-12T20:00:14Z #8 11.09 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-03-12T20:00:14Z #8 11.09 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-03-12T20:00:14Z #8 11.09 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-03-12T20:00:15Z #8 11.26 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-03-12T20:00:15Z #8 11.92 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-03-12T20:00:15Z #8 11.92 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-03-12T20:00:15Z #8 11.93 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-03-12T20:00:15Z #8 11.94 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-03-12T20:00:15Z #8 12.20 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-03-12T20:00:16Z #8 12.22 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-03-12T20:00:16Z #8 12.22 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-03-12T20:00:16Z #8 12.23 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-03-12T20:00:16Z #8 12.23 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-03-12T20:00:16Z #8 12.23 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-03-12T20:00:16Z #8 12.24 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-03-12T20:00:16Z #8 12.24 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-03-12T20:00:16Z #8 12.24 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-03-12T20:00:16Z #8 12.24 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-03-12T20:00:16Z #8 12.25 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-03-12T20:00:16Z #8 12.25 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-03-12T20:00:16Z #8 12.26 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-03-12T20:00:16Z #8 12.26 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-03-12T20:00:16Z #8 12.26 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-03-12T20:00:16Z #8 12.26 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-03-12T20:00:16Z #8 12.27 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-03-12T20:00:16Z #8 12.27 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-03-12T20:00:16Z #8 12.28 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-03-12T20:00:16Z #8 12.28 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-03-12T20:00:16Z #8 12.28 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-03-12T20:00:16Z #8 12.28 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-03-12T20:00:16Z #8 12.31 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-03-12T20:00:16Z #8 12.32 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-03-12T20:00:16Z #8 12.32 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-03-12T20:00:16Z #8 12.33 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-03-12T20:00:16Z #8 12.37 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-03-12T20:00:16Z #8 12.43 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-03-12T20:00:16Z #8 12.52 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-03-12T20:00:16Z #8 12.61 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-03-12T20:00:16Z #8 12.61 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-03-12T20:00:16Z #8 12.62 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-03-12T20:00:16Z #8 12.62 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-03-12T20:00:16Z #8 12.63 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-03-12T20:00:16Z #8 12.97 debconf: delaying package configuration, since apt-utils is not installed +2024-03-12T20:00:16Z #8 13.03 Fetched 236 MB in 6s (41.0 MB/s) +2024-03-12T20:00:16Z #8 13.06 Selecting previously unselected package libapparmor1:amd64. +2024-03-12T20:00:16Z #8 13.06 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-03-12T20:00:16Z #8 13.07 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-03-12T20:00:16Z #8 13.08 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-03-12T20:00:17Z #8 13.34 Selecting previously unselected package libcap2:amd64. +2024-03-12T20:00:17Z #8 13.34 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-03-12T20:00:17Z #8 13.35 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-03-12T20:00:17Z #8 13.39 Selecting previously unselected package libargon2-1:amd64. +2024-03-12T20:00:17Z #8 13.39 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-03-12T20:00:17Z #8 13.40 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-03-12T20:00:17Z #8 13.56 Selecting previously unselected package dmsetup. +2024-03-12T20:00:17Z #8 13.56 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-03-12T20:00:17Z #8 13.57 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-03-12T20:00:17Z #8 13.62 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-03-12T20:00:17Z #8 13.62 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-03-12T20:00:17Z #8 13.63 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-03-12T20:00:17Z #8 13.69 Selecting previously unselected package libjson-c5:amd64. +2024-03-12T20:00:17Z #8 13.70 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-03-12T20:00:17Z #8 13.71 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-03-12T20:00:17Z #8 14.04 Selecting previously unselected package libcryptsetup12:amd64. +2024-03-12T20:00:17Z #8 14.04 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-03-12T20:00:17Z #8 14.04 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-03-12T20:00:17Z #8 14.13 Selecting previously unselected package libip4tc2:amd64. +2024-03-12T20:00:17Z #8 14.13 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-03-12T20:00:17Z #8 14.14 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-03-12T20:00:18Z #8 14.19 Selecting previously unselected package libkmod2:amd64. +2024-03-12T20:00:18Z #8 14.20 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-03-12T20:00:18Z #8 14.20 Unpacking libkmod2:amd64 (28-1) ... +2024-03-12T20:00:18Z #8 14.42 Selecting previously unselected package systemd. +2024-03-12T20:00:18Z #8 14.43 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-12T20:00:18Z #8 14.48 Unpacking systemd (247.3-7+deb11u4) ... +2024-03-12T20:00:19Z #8 15.28 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-03-12T20:00:19Z #8 15.29 Setting up libcap2:amd64 (1:2.44-1) ... +2024-03-12T20:00:19Z #8 15.31 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-03-12T20:00:19Z #8 15.33 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-03-12T20:00:19Z #8 15.34 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-03-12T20:00:19Z #8 15.36 Setting up libkmod2:amd64 (28-1) ... +2024-03-12T20:00:19Z #8 15.37 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-03-12T20:00:19Z #8 15.39 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-03-12T20:00:19Z #8 15.40 Setting up systemd (247.3-7+deb11u4) ... +2024-03-12T20:00:19Z #8 15.45 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-03-12T20:00:19Z #8 15.46 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-03-12T20:00:19Z #8 15.46 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-03-12T20:00:19Z #8 15.49 Initializing machine ID from KVM UUID. +2024-03-12T20:00:19Z #8 15.92 Setting up dmsetup (2:1.02.175-2.1) ... +2024-03-12T20:00:19Z #8 15.98 Selecting previously unselected package systemd-sysv. +2024-03-12T20:00:19Z #8 15.98 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-03-12T20:00:19Z #8 16.00 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-03-12T20:00:19Z #8 16.01 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-03-12T20:00:19Z #8 16.06 Selecting previously unselected package libdbus-1-3:amd64. +2024-03-12T20:00:19Z #8 16.07 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-03-12T20:00:19Z #8 16.08 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-03-12T20:00:19Z #8 16.17 Selecting previously unselected package dbus. +2024-03-12T20:00:19Z #8 16.17 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-03-12T20:00:19Z #8 16.19 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-03-12T20:00:20Z #8 16.28 Selecting previously unselected package libnss-systemd:amd64. +2024-03-12T20:00:20Z #8 16.28 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-12T20:00:20Z #8 16.29 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-12T20:00:20Z #8 16.35 Selecting previously unselected package libpam-systemd:amd64. +2024-03-12T20:00:20Z #8 16.35 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-12T20:00:20Z #8 16.39 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-12T20:00:20Z #8 16.46 Selecting previously unselected package manpages. +2024-03-12T20:00:20Z #8 16.46 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-03-12T20:00:20Z #8 16.47 Unpacking manpages (5.10-1) ... +2024-03-12T20:00:20Z #8 16.67 Selecting previously unselected package systemd-timesyncd. +2024-03-12T20:00:20Z #8 16.67 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-03-12T20:00:20Z #8 16.68 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-03-12T20:00:20Z #8 16.74 Selecting previously unselected package hicolor-icon-theme. +2024-03-12T20:00:20Z #8 16.74 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-03-12T20:00:20Z #8 16.74 Unpacking hicolor-icon-theme (0.17-2) ... +2024-03-12T20:00:20Z #8 16.87 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-03-12T20:00:20Z #8 16.87 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-03-12T20:00:20Z #8 16.88 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-03-12T20:00:20Z #8 16.99 Selecting previously unselected package libicu67:amd64. +2024-03-12T20:00:20Z #8 17.00 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-03-12T20:00:20Z #8 17.00 Unpacking libicu67:amd64 (67.1-7) ... +2024-03-12T20:00:22Z #8 18.50 Selecting previously unselected package libxml2:amd64. +2024-03-12T20:00:22Z #8 18.50 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-03-12T20:00:22Z #8 18.51 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-03-12T20:00:22Z #8 18.67 Selecting previously unselected package shared-mime-info. +2024-03-12T20:00:22Z #8 18.68 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-03-12T20:00:22Z #8 18.68 Unpacking shared-mime-info (2.0-1) ... +2024-03-12T20:00:22Z #8 18.85 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-03-12T20:00:22Z #8 18.86 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-03-12T20:00:22Z #8 18.86 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-03-12T20:00:22Z #8 18.92 Selecting previously unselected package libpng16-16:amd64. +2024-03-12T20:00:22Z #8 18.93 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-03-12T20:00:22Z #8 18.93 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-03-12T20:00:22Z #8 19.00 Selecting previously unselected package libdeflate0:amd64. +2024-03-12T20:00:22Z #8 19.01 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-03-12T20:00:22Z #8 19.01 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-03-12T20:00:22Z #8 19.06 Selecting previously unselected package libjbig0:amd64. +2024-03-12T20:00:22Z #8 19.06 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-03-12T20:00:22Z #8 19.07 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-03-12T20:00:22Z #8 19.11 Selecting previously unselected package libwebp6:amd64. +2024-03-12T20:00:22Z #8 19.11 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-03-12T20:00:22Z #8 19.12 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-12T20:00:23Z #8 19.26 Selecting previously unselected package libtiff5:amd64. +2024-03-12T20:00:23Z #8 19.26 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-03-12T20:00:23Z #8 19.27 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-03-12T20:00:23Z #8 19.34 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-03-12T20:00:23Z #8 19.35 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-03-12T20:00:23Z #8 19.35 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-12T20:00:23Z #8 19.42 Selecting previously unselected package gtk-update-icon-cache. +2024-03-12T20:00:23Z #8 19.42 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-03-12T20:00:23Z #8 19.43 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-03-12T20:00:23Z #8 19.62 Selecting previously unselected package adwaita-icon-theme. +2024-03-12T20:00:23Z #8 19.62 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-03-12T20:00:23Z #8 19.63 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-03-12T20:00:25Z #8 22.02 Selecting previously unselected package alsa-topology-conf. +2024-03-12T20:00:25Z #8 22.03 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-03-12T20:00:25Z #8 22.03 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-03-12T20:00:25Z #8 22.07 Selecting previously unselected package libasound2-data. +2024-03-12T20:00:25Z #8 22.07 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-03-12T20:00:25Z #8 22.08 Unpacking libasound2-data (1.2.4-1.1) ... +2024-03-12T20:00:25Z #8 22.13 Selecting previously unselected package libasound2:amd64. +2024-03-12T20:00:25Z #8 22.14 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-03-12T20:00:25Z #8 22.14 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-03-12T20:00:25Z #8 22.24 Selecting previously unselected package alsa-ucm-conf. +2024-03-12T20:00:26Z #8 22.24 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-03-12T20:00:26Z #8 22.25 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-03-12T20:00:26Z #8 22.33 Selecting previously unselected package libatspi2.0-0:amd64. +2024-03-12T20:00:26Z #8 22.33 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-03-12T20:00:26Z #8 22.34 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-03-12T20:00:26Z #8 22.39 Selecting previously unselected package libxi6:amd64. +2024-03-12T20:00:26Z #8 22.39 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-03-12T20:00:26Z #8 22.40 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-03-12T20:00:26Z #8 22.45 Selecting previously unselected package libxtst6:amd64. +2024-03-12T20:00:26Z #8 22.45 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-03-12T20:00:26Z #8 22.46 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-03-12T20:00:26Z #8 22.49 Selecting previously unselected package at-spi2-core. +2024-03-12T20:00:26Z #8 22.50 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-03-12T20:00:26Z #8 22.50 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-03-12T20:00:26Z #8 22.56 Selecting previously unselected package binutils-common:amd64. +2024-03-12T20:00:26Z #8 22.57 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-03-12T20:00:26Z #8 22.57 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-03-12T20:00:26Z #8 22.96 Selecting previously unselected package libbinutils:amd64. +2024-03-12T20:00:26Z #8 22.97 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-03-12T20:00:26Z #8 22.97 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-03-12T20:00:26Z #8 23.11 Selecting previously unselected package libctf-nobfd0:amd64. +2024-03-12T20:00:26Z #8 23.11 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-03-12T20:00:26Z #8 23.12 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-03-12T20:00:26Z #8 23.17 Selecting previously unselected package libctf0:amd64. +2024-03-12T20:00:26Z #8 23.18 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-03-12T20:00:26Z #8 23.18 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-03-12T20:00:27Z #8 23.23 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-03-12T20:00:27Z #8 23.24 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-03-12T20:00:27Z #8 23.24 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-03-12T20:00:27Z #8 23.60 Selecting previously unselected package binutils. +2024-03-12T20:00:27Z #8 23.60 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-03-12T20:00:27Z #8 23.61 Unpacking binutils (2.35.2-2) ... +2024-03-12T20:00:27Z #8 23.72 Selecting previously unselected package libisl23:amd64. +2024-03-12T20:00:27Z #8 23.72 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-03-12T20:00:27Z #8 23.73 Unpacking libisl23:amd64 (0.23-1) ... +2024-03-12T20:00:27Z #8 23.87 Selecting previously unselected package libmpfr6:amd64. +2024-03-12T20:00:27Z #8 23.87 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-03-12T20:00:27Z #8 23.88 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-03-12T20:00:27Z #8 24.07 Selecting previously unselected package libmpc3:amd64. +2024-03-12T20:00:27Z #8 24.07 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-03-12T20:00:27Z #8 24.08 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-03-12T20:00:27Z #8 24.12 Selecting previously unselected package cpp-10. +2024-03-12T20:00:27Z #8 24.12 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-03-12T20:00:27Z #8 24.13 Unpacking cpp-10 (10.2.1-6) ... +2024-03-12T20:00:29Z #8 25.49 Selecting previously unselected package cpp. +2024-03-12T20:00:29Z #8 25.50 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-03-12T20:00:29Z #8 25.50 Unpacking cpp (4:10.2.1-1) ... +2024-03-12T20:00:29Z #8 25.54 Selecting previously unselected package dbus-user-session. +2024-03-12T20:00:29Z #8 25.55 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-03-12T20:00:29Z #8 25.56 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-03-12T20:00:29Z #8 25.61 Selecting previously unselected package libdconf1:amd64. +2024-03-12T20:00:29Z #8 25.62 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-03-12T20:00:29Z #8 25.62 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-03-12T20:00:29Z #8 25.66 Selecting previously unselected package dconf-service. +2024-03-12T20:00:29Z #8 25.67 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-03-12T20:00:29Z #8 25.67 Unpacking dconf-service (0.38.0-2) ... +2024-03-12T20:00:29Z #8 25.71 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-03-12T20:00:29Z #8 25.71 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-03-12T20:00:29Z #8 25.72 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-03-12T20:00:29Z #8 25.76 Selecting previously unselected package libatk1.0-data. +2024-03-12T20:00:29Z #8 25.76 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-03-12T20:00:29Z #8 25.76 Unpacking libatk1.0-data (2.36.0-2) ... +2024-03-12T20:00:29Z #8 25.85 Selecting previously unselected package libatk1.0-0:amd64. +2024-03-12T20:00:29Z #8 25.86 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-03-12T20:00:29Z #8 25.86 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-03-12T20:00:29Z #8 25.92 Selecting previously unselected package libfreetype6:amd64. +2024-03-12T20:00:29Z #8 25.93 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-03-12T20:00:29Z #8 25.93 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-03-12T20:00:29Z #8 26.05 Selecting previously unselected package fonts-dejavu-core. +2024-03-12T20:00:29Z #8 26.05 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-03-12T20:00:29Z #8 26.06 Unpacking fonts-dejavu-core (2.37-2) ... +2024-03-12T20:00:30Z #8 26.28 Selecting previously unselected package fontconfig-config. +2024-03-12T20:00:30Z #8 26.29 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-03-12T20:00:30Z #8 26.46 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-03-12T20:00:30Z #8 26.54 Selecting previously unselected package libfontconfig1:amd64. +2024-03-12T20:00:30Z #8 26.55 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-03-12T20:00:30Z #8 26.55 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-03-12T20:00:30Z #8 26.62 Selecting previously unselected package libpixman-1-0:amd64. +2024-03-12T20:00:30Z #8 26.62 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-03-12T20:00:30Z #8 26.63 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-03-12T20:00:30Z #8 26.72 Selecting previously unselected package libxcb-render0:amd64. +2024-03-12T20:00:30Z #8 26.72 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-03-12T20:00:30Z #8 26.73 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-03-12T20:00:30Z #8 26.79 Selecting previously unselected package libxcb-shm0:amd64. +2024-03-12T20:00:30Z #8 26.79 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-03-12T20:00:30Z #8 26.80 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-03-12T20:00:30Z #8 26.85 Selecting previously unselected package libcairo2:amd64. +2024-03-12T20:00:30Z #8 26.86 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-03-12T20:00:30Z #8 26.86 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-03-12T20:00:30Z #8 26.99 Selecting previously unselected package libcairo-gobject2:amd64. +2024-03-12T20:00:30Z #8 26.99 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-03-12T20:00:30Z #8 27.00 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-03-12T20:00:30Z #8 27.05 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-03-12T20:00:30Z #8 27.06 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-03-12T20:00:30Z #8 27.06 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-03-12T20:00:30Z #8 27.13 Selecting previously unselected package libevent-2.1-7:amd64. +2024-03-12T20:00:30Z #8 27.13 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-03-12T20:00:30Z #8 27.14 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-03-12T20:00:31Z #8 27.22 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-03-12T20:00:31Z #8 27.22 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-03-12T20:00:31Z #8 27.23 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-03-12T20:00:31Z #8 27.30 Selecting previously unselected package liblcms2-2:amd64. +2024-03-12T20:00:31Z #8 27.30 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-03-12T20:00:31Z #8 27.31 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-03-12T20:00:31Z #8 27.38 Selecting previously unselected package libcolord2:amd64. +2024-03-12T20:00:31Z #8 27.39 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-03-12T20:00:31Z #8 27.39 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-03-12T20:00:31Z #8 27.47 Selecting previously unselected package libavahi-common-data:amd64. +2024-03-12T20:00:31Z #8 27.48 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-03-12T20:00:31Z #8 27.48 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-03-12T20:00:31Z #8 27.57 Selecting previously unselected package libavahi-common3:amd64. +2024-03-12T20:00:31Z #8 27.57 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-03-12T20:00:31Z #8 27.58 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-03-12T20:00:31Z #8 27.64 Selecting previously unselected package libavahi-client3:amd64. +2024-03-12T20:00:31Z #8 27.64 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-03-12T20:00:31Z #8 27.65 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-03-12T20:00:31Z #8 27.71 Selecting previously unselected package libcups2:amd64. +2024-03-12T20:00:31Z #8 27.72 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-03-12T20:00:31Z #8 27.73 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-03-12T20:00:31Z #8 27.85 Selecting previously unselected package libepoxy0:amd64. +2024-03-12T20:00:31Z #8 27.86 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-03-12T20:00:31Z #8 27.86 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-03-12T20:00:31Z #8 27.95 Selecting previously unselected package libfribidi0:amd64. +2024-03-12T20:00:31Z #8 27.95 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-03-12T20:00:31Z #8 27.96 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-03-12T20:00:31Z #8 28.01 Selecting previously unselected package libgraphite2-3:amd64. +2024-03-12T20:00:31Z #8 28.02 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-03-12T20:00:31Z #8 28.02 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-03-12T20:00:31Z #8 28.08 Selecting previously unselected package libharfbuzz0b:amd64. +2024-03-12T20:00:31Z #8 28.09 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-03-12T20:00:31Z #8 28.10 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-03-12T20:00:32Z #8 28.20 Selecting previously unselected package libjson-glib-1.0-common. +2024-03-12T20:00:32Z #8 28.21 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-03-12T20:00:32Z #8 28.22 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-03-12T20:00:32Z #8 28.32 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-03-12T20:00:32Z #8 28.32 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-03-12T20:00:32Z #8 28.33 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-03-12T20:00:32Z #8 28.39 Selecting previously unselected package fontconfig. +2024-03-12T20:00:32Z #8 28.40 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-03-12T20:00:32Z #8 28.41 Unpacking fontconfig (2.13.1-4.2) ... +2024-03-12T20:00:32Z #8 28.50 Selecting previously unselected package libthai-data. +2024-03-12T20:00:32Z #8 28.51 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-03-12T20:00:32Z #8 28.51 Unpacking libthai-data (0.1.28-3) ... +2024-03-12T20:00:32Z #8 28.61 Selecting previously unselected package libdatrie1:amd64. +2024-03-12T20:00:32Z #8 28.61 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-03-12T20:00:32Z #8 28.62 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-03-12T20:00:32Z #8 28.70 Selecting previously unselected package libthai0:amd64. +2024-03-12T20:00:32Z #8 28.71 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-03-12T20:00:32Z #8 28.72 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-03-12T20:00:32Z #8 28.78 Selecting previously unselected package libpango-1.0-0:amd64. +2024-03-12T20:00:32Z #8 28.78 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-03-12T20:00:32Z #8 28.79 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-03-12T20:00:32Z #8 28.86 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-03-12T20:00:32Z #8 28.86 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-03-12T20:00:32Z #8 28.87 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-03-12T20:00:32Z #8 28.92 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-03-12T20:00:32Z #8 28.92 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-03-12T20:00:32Z #8 28.93 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-03-12T20:00:32Z #8 28.97 Selecting previously unselected package libproxy1v5:amd64. +2024-03-12T20:00:32Z #8 28.98 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-03-12T20:00:32Z #8 28.99 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-03-12T20:00:32Z #8 29.03 Selecting previously unselected package glib-networking-common. +2024-03-12T20:00:32Z #8 29.04 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-03-12T20:00:32Z #8 29.04 Unpacking glib-networking-common (2.66.0-2) ... +2024-03-12T20:00:32Z #8 29.11 Selecting previously unselected package glib-networking-services. +2024-03-12T20:00:32Z #8 29.12 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-03-12T20:00:32Z #8 29.12 Unpacking glib-networking-services (2.66.0-2) ... +2024-03-12T20:00:32Z #8 29.17 Selecting previously unselected package gsettings-desktop-schemas. +2024-03-12T20:00:32Z #8 29.17 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-03-12T20:00:32Z #8 29.18 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-03-12T20:00:33Z #8 29.35 Selecting previously unselected package glib-networking:amd64. +2024-03-12T20:00:33Z #8 29.36 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-03-12T20:00:33Z #8 29.36 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-03-12T20:00:33Z #8 29.42 Selecting previously unselected package libsoup2.4-1:amd64. +2024-03-12T20:00:33Z #8 29.43 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-03-12T20:00:33Z #8 29.43 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-03-12T20:00:33Z #8 29.55 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-03-12T20:00:33Z #8 29.55 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-03-12T20:00:33Z #8 29.56 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-03-12T20:00:33Z #8 29.61 Selecting previously unselected package librest-0.7-0:amd64. +2024-03-12T20:00:33Z #8 29.62 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-03-12T20:00:33Z #8 29.62 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-03-12T20:00:33Z #8 29.68 Selecting previously unselected package libwayland-client0:amd64. +2024-03-12T20:00:33Z #8 29.69 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-03-12T20:00:33Z #8 29.69 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-03-12T20:00:33Z #8 29.78 Selecting previously unselected package libwayland-cursor0:amd64. +2024-03-12T20:00:33Z #8 29.78 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-03-12T20:00:33Z #8 29.79 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-03-12T20:00:33Z #8 29.83 Selecting previously unselected package libwayland-egl1:amd64. +2024-03-12T20:00:33Z #8 29.83 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-03-12T20:00:33Z #8 29.84 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-03-12T20:00:33Z #8 29.88 Selecting previously unselected package libxcomposite1:amd64. +2024-03-12T20:00:33Z #8 29.89 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-03-12T20:00:33Z #8 29.90 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-03-12T20:00:33Z #8 29.95 Selecting previously unselected package libxfixes3:amd64. +2024-03-12T20:00:33Z #8 29.95 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-03-12T20:00:33Z #8 29.96 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-03-12T20:00:33Z #8 30.00 Selecting previously unselected package libxcursor1:amd64. +2024-03-12T20:00:33Z #8 30.01 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-03-12T20:00:33Z #8 30.02 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-03-12T20:00:33Z #8 30.07 Selecting previously unselected package libxdamage1:amd64. +2024-03-12T20:00:33Z #8 30.07 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-03-12T20:00:33Z #8 30.08 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-03-12T20:00:33Z #8 30.12 Selecting previously unselected package libxinerama1:amd64. +2024-03-12T20:00:33Z #8 30.13 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-03-12T20:00:33Z #8 30.13 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-03-12T20:00:33Z #8 30.17 Selecting previously unselected package xkb-data. +2024-03-12T20:00:33Z #8 30.17 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-03-12T20:00:33Z #8 30.18 Unpacking xkb-data (2.29-2) ... +2024-03-12T20:00:34Z #8 30.46 Selecting previously unselected package libxkbcommon0:amd64. +2024-03-12T20:00:34Z #8 30.47 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-03-12T20:00:34Z #8 30.47 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-03-12T20:00:34Z #8 30.54 Selecting previously unselected package libxrandr2:amd64. +2024-03-12T20:00:34Z #8 30.55 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-03-12T20:00:34Z #8 30.56 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-03-12T20:00:34Z #8 30.61 Selecting previously unselected package libgtk-3-common. +2024-03-12T20:00:34Z #8 30.62 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-03-12T20:00:34Z #8 30.62 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-03-12T20:00:35Z #8 31.53 Selecting previously unselected package libgtk-3-0:amd64. +2024-03-12T20:00:35Z #8 31.54 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-03-12T20:00:35Z #8 31.55 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-03-12T20:00:35Z #8 32.08 Selecting previously unselected package libx11-xcb1:amd64. +2024-03-12T20:00:35Z #8 32.08 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-03-12T20:00:35Z #8 32.09 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-03-12T20:00:36Z #8 32.16 Selecting previously unselected package firefox-esr. +2024-03-12T20:00:36Z #8 32.16 Preparing to unpack .../099-firefox-esr_115.8.0esr-1~deb11u1_amd64.deb ... +2024-03-12T20:00:36Z #8 32.18 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-03-12T20:00:36Z #8 32.19 Unpacking firefox-esr (115.8.0esr-1~deb11u1) ... +2024-03-12T20:00:47Z #8 43.42 Selecting previously unselected package fonts-humor-sans. +2024-03-12T20:00:47Z #8 43.42 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-03-12T20:00:47Z #8 43.43 Unpacking fonts-humor-sans (1.0-4) ... +2024-03-12T20:00:47Z #8 43.48 Selecting previously unselected package libcc1-0:amd64. +2024-03-12T20:00:47Z #8 43.49 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-03-12T20:00:47Z #8 43.49 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-03-12T20:00:47Z #8 43.55 Selecting previously unselected package libgomp1:amd64. +2024-03-12T20:00:47Z #8 43.55 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-03-12T20:00:47Z #8 43.56 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-03-12T20:00:47Z #8 43.63 Selecting previously unselected package libitm1:amd64. +2024-03-12T20:00:47Z #8 43.63 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-03-12T20:00:47Z #8 43.64 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-03-12T20:00:47Z #8 43.69 Selecting previously unselected package libatomic1:amd64. +2024-03-12T20:00:47Z #8 43.70 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-03-12T20:00:47Z #8 43.71 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-03-12T20:00:47Z #8 43.76 Selecting previously unselected package libasan6:amd64. +2024-03-12T20:00:47Z #8 43.76 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-03-12T20:00:47Z #8 43.77 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-03-12T20:00:48Z #8 44.24 Selecting previously unselected package liblsan0:amd64. +2024-03-12T20:00:48Z #8 44.24 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-03-12T20:00:48Z #8 44.25 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-03-12T20:00:48Z #8 44.45 Selecting previously unselected package libtsan0:amd64. +2024-03-12T20:00:48Z #8 44.46 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-03-12T20:00:48Z #8 44.47 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-03-12T20:00:48Z #8 44.92 Selecting previously unselected package libubsan1:amd64. +2024-03-12T20:00:48Z #8 44.93 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-03-12T20:00:48Z #8 44.93 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-03-12T20:00:49Z #8 45.16 Selecting previously unselected package libquadmath0:amd64. +2024-03-12T20:00:49Z #8 45.16 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-03-12T20:00:49Z #8 45.17 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-03-12T20:00:49Z #8 45.23 Selecting previously unselected package libgcc-10-dev:amd64. +2024-03-12T20:00:49Z #8 45.24 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-03-12T20:00:49Z #8 45.25 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-03-12T20:00:49Z #8 45.73 Selecting previously unselected package gcc-10. +2024-03-12T20:00:49Z #8 45.73 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-03-12T20:00:49Z #8 45.74 Unpacking gcc-10 (10.2.1-6) ... +2024-03-12T20:00:52Z #8 48.70 Selecting previously unselected package gcc. +2024-03-12T20:00:52Z #8 48.70 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-03-12T20:00:52Z #8 48.71 Unpacking gcc (4:10.2.1-1) ... +2024-03-12T20:00:52Z #8 48.75 Selecting previously unselected package libva2:amd64. +2024-03-12T20:00:52Z #8 48.76 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-03-12T20:00:52Z #8 48.76 Unpacking libva2:amd64 (2.10.0-1) ... +2024-03-12T20:00:52Z #8 48.81 Selecting previously unselected package libdrm-common. +2024-03-12T20:00:52Z #8 48.83 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-03-12T20:00:52Z #8 48.83 Unpacking libdrm-common (2.4.104-1) ... +2024-03-12T20:00:52Z #8 48.88 Selecting previously unselected package libdrm2:amd64. +2024-03-12T20:00:52Z #8 48.89 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-03-12T20:00:52Z #8 48.89 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-03-12T20:00:52Z #8 48.94 Selecting previously unselected package libpciaccess0:amd64. +2024-03-12T20:00:52Z #8 48.95 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-03-12T20:00:52Z #8 48.96 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-03-12T20:00:52Z #8 49.00 Selecting previously unselected package libdrm-intel1:amd64. +2024-03-12T20:00:52Z #8 49.01 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-03-12T20:00:52Z #8 49.01 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-03-12T20:00:52Z #8 49.06 Selecting previously unselected package i965-va-driver:amd64. +2024-03-12T20:00:52Z #8 49.06 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-03-12T20:00:52Z #8 49.07 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-03-12T20:00:53Z #8 49.17 Selecting previously unselected package libigdgmm11:amd64. +2024-03-12T20:00:53Z #8 49.18 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-03-12T20:00:53Z #8 49.19 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-03-12T20:00:53Z #8 49.25 Selecting previously unselected package intel-media-va-driver:amd64. +2024-03-12T20:00:53Z #8 49.25 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-03-12T20:00:53Z #8 49.26 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-03-12T20:00:53Z #8 49.65 Selecting previously unselected package libaom0:amd64. +2024-03-12T20:00:53Z #8 49.65 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-03-12T20:00:53Z #8 49.66 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-03-12T20:00:53Z #8 49.91 Selecting previously unselected package libmfx1:amd64. +2024-03-12T20:00:53Z #8 49.92 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-03-12T20:00:53Z #8 49.92 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-03-12T20:00:54Z #8 50.75 Selecting previously unselected package libva-drm2:amd64. +2024-03-12T20:00:54Z #8 50.75 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-03-12T20:00:54Z #8 50.76 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-03-12T20:00:54Z #8 50.81 Selecting previously unselected package libva-x11-2:amd64. +2024-03-12T20:00:54Z #8 50.82 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-03-12T20:00:54Z #8 50.83 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-03-12T20:00:54Z #8 50.89 Selecting previously unselected package libvdpau1:amd64. +2024-03-12T20:00:54Z #8 50.89 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-03-12T20:00:54Z #8 50.90 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-03-12T20:00:54Z #8 50.95 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-03-12T20:00:54Z #8 50.96 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-03-12T20:00:54Z #8 50.97 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-03-12T20:00:54Z #8 51.03 Selecting previously unselected package libavutil56:amd64. +2024-03-12T20:00:54Z #8 51.04 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-12T20:00:54Z #8 51.04 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-12T20:00:54Z #8 51.16 Selecting previously unselected package libcodec2-0.9:amd64. +2024-03-12T20:00:54Z #8 51.16 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-03-12T20:00:54Z #8 51.17 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-03-12T20:00:56Z #8 52.58 Selecting previously unselected package libdav1d4:amd64. +2024-03-12T20:00:56Z #8 52.59 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-03-12T20:00:56Z #8 52.59 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-03-12T20:00:56Z #8 52.70 Selecting previously unselected package libgsm1:amd64. +2024-03-12T20:00:56Z #8 52.70 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-03-12T20:00:56Z #8 52.71 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-03-12T20:00:56Z #8 52.77 Selecting previously unselected package libmp3lame0:amd64. +2024-03-12T20:00:56Z #8 52.77 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-03-12T20:00:56Z #8 52.78 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-03-12T20:00:56Z #8 52.87 Selecting previously unselected package libopenjp2-7:amd64. +2024-03-12T20:00:56Z #8 52.87 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-03-12T20:00:56Z #8 52.88 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-03-12T20:00:56Z #8 52.95 Selecting previously unselected package libopus0:amd64. +2024-03-12T20:00:56Z #8 52.96 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-03-12T20:00:56Z #8 52.96 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-03-12T20:00:56Z #8 53.04 Selecting previously unselected package librsvg2-2:amd64. +2024-03-12T20:00:56Z #8 53.05 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-03-12T20:00:56Z #8 53.06 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-12T20:00:57Z #8 53.61 Selecting previously unselected package libshine3:amd64. +2024-03-12T20:00:57Z #8 53.62 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-03-12T20:00:57Z #8 53.63 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-03-12T20:00:57Z #8 53.68 Selecting previously unselected package libsnappy1v5:amd64. +2024-03-12T20:00:57Z #8 53.68 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-03-12T20:00:57Z #8 53.69 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-03-12T20:00:57Z #8 53.74 Selecting previously unselected package libspeex1:amd64. +2024-03-12T20:00:57Z #8 53.75 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-03-12T20:00:57Z #8 53.75 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-03-12T20:00:57Z #8 53.81 Selecting previously unselected package libsoxr0:amd64. +2024-03-12T20:00:57Z #8 53.82 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-03-12T20:00:57Z #8 53.82 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-03-12T20:00:57Z #8 53.88 Selecting previously unselected package libswresample3:amd64. +2024-03-12T20:00:57Z #8 53.89 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-12T20:00:57Z #8 53.90 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-12T20:00:57Z #8 53.96 Selecting previously unselected package libogg0:amd64. +2024-03-12T20:00:57Z #8 53.96 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-03-12T20:00:57Z #8 53.97 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-03-12T20:00:57Z #8 54.01 Selecting previously unselected package libtheora0:amd64. +2024-03-12T20:00:57Z #8 54.02 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-03-12T20:00:57Z #8 54.03 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-03-12T20:00:57Z #8 54.11 Selecting previously unselected package libtwolame0:amd64. +2024-03-12T20:00:57Z #8 54.12 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-03-12T20:00:57Z #8 54.13 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-03-12T20:00:57Z #8 54.19 Selecting previously unselected package libvorbis0a:amd64. +2024-03-12T20:00:57Z #8 54.19 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-03-12T20:00:57Z #8 54.20 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-03-12T20:00:58Z #8 54.26 Selecting previously unselected package libvorbisenc2:amd64. +2024-03-12T20:00:58Z #8 54.26 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-03-12T20:00:58Z #8 54.27 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-03-12T20:00:58Z #8 54.34 Selecting previously unselected package libvpx6:amd64. +2024-03-12T20:00:58Z #8 54.34 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-03-12T20:00:58Z #8 54.35 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-03-12T20:00:58Z #8 54.54 Selecting previously unselected package libwavpack1:amd64. +2024-03-12T20:00:58Z #8 54.55 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-03-12T20:00:58Z #8 54.55 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-03-12T20:00:58Z #8 54.61 Selecting previously unselected package libwebpmux3:amd64. +2024-03-12T20:00:58Z #8 54.62 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-03-12T20:00:58Z #8 54.62 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-12T20:00:58Z #8 54.69 Selecting previously unselected package libx264-160:amd64. +2024-03-12T20:00:58Z #8 54.69 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-03-12T20:00:58Z #8 54.70 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-03-12T20:00:58Z #8 54.84 Selecting previously unselected package libnuma1:amd64. +2024-03-12T20:00:58Z #8 54.85 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-03-12T20:00:58Z #8 54.86 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-03-12T20:00:58Z #8 54.91 Selecting previously unselected package libx265-192:amd64. +2024-03-12T20:00:58Z #8 54.92 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-03-12T20:00:58Z #8 54.92 Unpacking libx265-192:amd64 (3.4-2) ... +2024-03-12T20:00:59Z #8 55.28 Selecting previously unselected package libxvidcore4:amd64. +2024-03-12T20:00:59Z #8 55.29 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-03-12T20:00:59Z #8 55.29 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-03-12T20:00:59Z #8 55.36 Selecting previously unselected package libzvbi-common. +2024-03-12T20:00:59Z #8 55.37 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-03-12T20:00:59Z #8 55.37 Unpacking libzvbi-common (0.2.35-18) ... +2024-03-12T20:00:59Z #8 55.42 Selecting previously unselected package libzvbi0:amd64. +2024-03-12T20:00:59Z #8 55.43 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-03-12T20:00:59Z #8 55.43 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-03-12T20:00:59Z #8 55.51 Selecting previously unselected package libavcodec58:amd64. +2024-03-12T20:00:59Z #8 55.52 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-12T20:00:59Z #8 55.52 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-12T20:01:00Z #8 56.47 Selecting previously unselected package libc-dev-bin. +2024-03-12T20:01:00Z #8 56.47 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... +2024-03-12T20:01:00Z #8 56.47 Unpacking libc-dev-bin (2.31-13+deb11u8) ... +2024-03-12T20:01:00Z #8 56.53 Selecting previously unselected package libxpm4:amd64. +2024-03-12T20:01:00Z #8 56.54 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-03-12T20:01:00Z #8 56.55 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-03-12T20:01:00Z #8 56.60 Selecting previously unselected package libgd3:amd64. +2024-03-12T20:01:00Z #8 56.60 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-03-12T20:01:00Z #8 56.61 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-03-12T20:01:00Z #8 56.67 Selecting previously unselected package libc-devtools. +2024-03-12T20:01:00Z #8 56.68 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... +2024-03-12T20:01:00Z #8 56.68 Unpacking libc-devtools (2.31-13+deb11u8) ... +2024-03-12T20:01:00Z #8 56.74 Selecting previously unselected package linux-libc-dev:amd64. +2024-03-12T20:01:00Z #8 56.74 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-03-12T20:01:00Z #8 56.75 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-03-12T20:01:00Z #8 57.13 Selecting previously unselected package libcrypt-dev:amd64. +2024-03-12T20:01:00Z #8 57.14 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-03-12T20:01:00Z #8 57.14 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-03-12T20:01:00Z #8 57.20 Selecting previously unselected package libtirpc-dev:amd64. +2024-03-12T20:01:00Z #8 57.21 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-03-12T20:01:00Z #8 57.21 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-03-12T20:01:01Z #8 57.29 Selecting previously unselected package libnsl-dev:amd64. +2024-03-12T20:01:01Z #8 57.30 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-03-12T20:01:01Z #8 57.30 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-03-12T20:01:01Z #8 57.36 Selecting previously unselected package libc6-dev:amd64. +2024-03-12T20:01:01Z #8 57.37 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... +2024-03-12T20:01:01Z #8 57.39 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-03-12T20:01:01Z #8 58.05 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-03-12T20:01:01Z #8 58.06 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-03-12T20:01:01Z #8 58.06 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-03-12T20:01:01Z #8 58.11 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-03-12T20:01:01Z #8 58.11 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-03-12T20:01:01Z #8 58.12 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-03-12T20:01:02Z #8 58.23 Selecting previously unselected package libdrm-radeon1:amd64. +2024-03-12T20:01:02Z #8 58.23 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-03-12T20:01:02Z #8 58.24 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-03-12T20:01:02Z #8 58.29 Selecting previously unselected package libelf1:amd64. +2024-03-12T20:01:02Z #8 58.29 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-03-12T20:01:02Z #8 58.30 Unpacking libelf1:amd64 (0.183-1) ... +2024-03-12T20:01:02Z #8 58.37 Selecting previously unselected package libfontenc1:amd64. +2024-03-12T20:01:02Z #8 58.37 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-03-12T20:01:02Z #8 58.38 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-03-12T20:01:02Z #8 58.42 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-03-12T20:01:02Z #8 58.42 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-03-12T20:01:02Z #8 58.43 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-03-12T20:01:02Z #8 58.48 Selecting previously unselected package libglapi-mesa:amd64. +2024-03-12T20:01:02Z #8 58.48 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-03-12T20:01:02Z #8 58.49 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-03-12T20:01:02Z #8 58.55 Selecting previously unselected package libz3-4:amd64. +2024-03-12T20:01:02Z #8 58.55 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-03-12T20:01:02Z #8 58.56 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-03-12T20:01:03Z #8 59.84 Selecting previously unselected package libllvm11:amd64. +2024-03-12T20:01:03Z #8 59.84 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-03-12T20:01:03Z #8 59.85 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-03-12T20:01:07Z #8 63.76 Selecting previously unselected package libsensors-config. +2024-03-12T20:01:07Z #8 63.77 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-03-12T20:01:07Z #8 63.77 Unpacking libsensors-config (1:3.6.0-7) ... +2024-03-12T20:01:07Z #8 63.82 Selecting previously unselected package libsensors5:amd64. +2024-03-12T20:01:07Z #8 63.83 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-03-12T20:01:07Z #8 63.88 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-03-12T20:01:07Z #8 63.94 Selecting previously unselected package libvulkan1:amd64. +2024-03-12T20:01:07Z #8 63.94 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-03-12T20:01:07Z #8 63.95 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-03-12T20:01:07Z #8 64.02 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-03-12T20:01:07Z #8 64.03 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-03-12T20:01:07Z #8 64.04 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-03-12T20:01:09Z #8 65.64 Selecting previously unselected package libglvnd0:amd64. +2024-03-12T20:01:09Z #8 65.64 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-03-12T20:01:09Z #8 65.65 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-03-12T20:01:09Z #8 65.71 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-03-12T20:01:09Z #8 65.71 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-03-12T20:01:09Z #8 65.72 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-03-12T20:01:09Z #8 65.77 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-03-12T20:01:09Z #8 65.78 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-03-12T20:01:09Z #8 65.78 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-03-12T20:01:09Z #8 65.83 Selecting previously unselected package libxcb-glx0:amd64. +2024-03-12T20:01:09Z #8 65.84 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-03-12T20:01:09Z #8 65.84 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-03-12T20:01:09Z #8 65.90 Selecting previously unselected package libxcb-present0:amd64. +2024-03-12T20:01:09Z #8 65.90 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-03-12T20:01:09Z #8 65.91 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-03-12T20:01:09Z #8 65.96 Selecting previously unselected package libxcb-sync1:amd64. +2024-03-12T20:01:09Z #8 65.97 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-03-12T20:01:09Z #8 65.97 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-03-12T20:01:09Z #8 66.03 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-03-12T20:01:09Z #8 66.03 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-03-12T20:01:09Z #8 66.04 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-03-12T20:01:09Z #8 66.09 Selecting previously unselected package libxshmfence1:amd64. +2024-03-12T20:01:09Z #8 66.09 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-03-12T20:01:09Z #8 66.10 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-03-12T20:01:09Z #8 66.13 Selecting previously unselected package libxxf86vm1:amd64. +2024-03-12T20:01:09Z #8 66.14 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-03-12T20:01:09Z #8 66.15 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-03-12T20:01:09Z #8 66.19 Selecting previously unselected package libglx-mesa0:amd64. +2024-03-12T20:01:09Z #8 66.20 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-03-12T20:01:09Z #8 66.20 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-03-12T20:01:10Z #8 66.29 Selecting previously unselected package libgtk-3-bin. +2024-03-12T20:01:10Z #8 66.29 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-03-12T20:01:10Z #8 66.30 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-03-12T20:01:10Z #8 66.35 Selecting previously unselected package librsvg2-common:amd64. +2024-03-12T20:01:10Z #8 66.36 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-03-12T20:01:10Z #8 66.36 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-12T20:01:10Z #8 66.41 Selecting previously unselected package libglx0:amd64. +2024-03-12T20:01:10Z #8 66.41 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-03-12T20:01:10Z #8 66.42 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-03-12T20:01:10Z #8 66.47 Selecting previously unselected package libgl1:amd64. +2024-03-12T20:01:10Z #8 66.48 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-03-12T20:01:10Z #8 66.48 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-03-12T20:01:10Z #8 66.54 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-03-12T20:01:10Z #8 66.54 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-03-12T20:01:10Z #8 66.55 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-03-12T20:01:10Z #8 66.61 Selecting previously unselected package libxt6:amd64. +2024-03-12T20:01:10Z #8 66.62 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-03-12T20:01:10Z #8 66.62 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-03-12T20:01:10Z #8 66.70 Selecting previously unselected package libxmu6:amd64. +2024-03-12T20:01:10Z #8 66.70 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-03-12T20:01:10Z #8 66.71 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-03-12T20:01:10Z #8 66.75 Selecting previously unselected package libxaw7:amd64. +2024-03-12T20:01:10Z #8 66.76 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-03-12T20:01:10Z #8 66.77 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-03-12T20:01:10Z #8 66.85 Selecting previously unselected package libxcb-randr0:amd64. +2024-03-12T20:01:10Z #8 66.85 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-03-12T20:01:10Z #8 66.86 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-03-12T20:01:10Z #8 66.91 Selecting previously unselected package libxcb-shape0:amd64. +2024-03-12T20:01:10Z #8 66.92 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-03-12T20:01:10Z #8 66.93 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-03-12T20:01:10Z #8 66.98 Selecting previously unselected package libxft2:amd64. +2024-03-12T20:01:10Z #8 66.99 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-03-12T20:01:10Z #8 67.00 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-03-12T20:01:10Z #8 67.05 Selecting previously unselected package libxkbfile1:amd64. +2024-03-12T20:01:10Z #8 67.06 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-03-12T20:01:10Z #8 67.06 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-03-12T20:01:10Z #8 67.11 Selecting previously unselected package libxmuu1:amd64. +2024-03-12T20:01:10Z #8 67.12 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-03-12T20:01:10Z #8 67.13 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-03-12T20:01:10Z #8 67.17 Selecting previously unselected package libxv1:amd64. +2024-03-12T20:01:10Z #8 67.18 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-03-12T20:01:10Z #8 67.19 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-03-12T20:01:11Z #8 67.23 Selecting previously unselected package libxxf86dga1:amd64. +2024-03-12T20:01:11Z #8 67.24 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-03-12T20:01:11Z #8 67.24 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-03-12T20:01:11Z #8 67.30 Selecting previously unselected package manpages-dev. +2024-03-12T20:01:11Z #8 67.30 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-03-12T20:01:11Z #8 67.31 Unpacking manpages-dev (5.10-1) ... +2024-03-12T20:01:11Z #8 67.79 Selecting previously unselected package mesa-va-drivers:amd64. +2024-03-12T20:01:11Z #8 67.80 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-03-12T20:01:11Z #8 67.80 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-03-12T20:01:12Z #8 68.25 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-03-12T20:01:12Z #8 68.27 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-03-12T20:01:12Z #8 68.28 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-03-12T20:01:12Z #8 68.79 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-03-12T20:01:12Z #8 68.80 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-03-12T20:01:12Z #8 68.81 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-03-12T20:01:15Z #8 71.28 Selecting previously unselected package patch. +2024-03-12T20:01:15Z #8 71.29 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-03-12T20:01:15Z #8 71.60 Unpacking patch (2.7.6-7) ... +2024-03-12T20:01:15Z #8 71.66 Selecting previously unselected package unzip. +2024-03-12T20:01:15Z #8 71.67 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-03-12T20:01:15Z #8 71.67 Unpacking unzip (6.0-26+deb11u1) ... +2024-03-12T20:01:15Z #8 71.73 Selecting previously unselected package va-driver-all:amd64. +2024-03-12T20:01:15Z #8 71.74 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-03-12T20:01:15Z #8 71.74 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-03-12T20:01:15Z #8 71.80 Selecting previously unselected package vdpau-driver-all:amd64. +2024-03-12T20:01:15Z #8 71.80 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-03-12T20:01:15Z #8 71.81 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-03-12T20:01:15Z #8 71.85 Selecting previously unselected package x11-utils. +2024-03-12T20:01:15Z #8 71.86 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-03-12T20:01:15Z #8 71.86 Unpacking x11-utils (7.7+5) ... +2024-03-12T20:01:15Z #8 72.01 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-03-12T20:01:15Z #8 72.02 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-03-12T20:01:15Z #8 72.03 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-03-12T20:01:15Z #8 72.04 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-03-12T20:01:15Z #8 72.06 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-03-12T20:01:15Z #8 72.07 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-03-12T20:01:15Z #8 72.08 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-03-12T20:01:15Z #8 72.09 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-03-12T20:01:15Z #8 72.11 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-03-12T20:01:15Z #8 72.12 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-03-12T20:01:15Z #8 72.14 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-03-12T20:01:15Z #8 72.15 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-03-12T20:01:15Z #8 72.17 Setting up libshine3:amd64 (3.1.1-2) ... +2024-03-12T20:01:15Z #8 72.18 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-03-12T20:01:15Z #8 72.20 Setting up hicolor-icon-theme (0.17-2) ... +2024-03-12T20:01:16Z #8 72.24 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-03-12T20:01:16Z #8 72.25 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-03-12T20:01:16Z #8 72.26 Setting up libicu67:amd64 (67.1-7) ... +2024-03-12T20:01:16Z #8 72.28 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-03-12T20:01:16Z #8 72.29 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-03-12T20:01:16Z #8 72.30 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-03-12T20:01:16Z #8 72.31 Setting up manpages (5.10-1) ... +2024-03-12T20:01:16Z #8 72.33 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-03-12T20:01:16Z #8 72.34 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-03-12T20:01:16Z #8 72.36 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-03-12T20:01:16Z #8 72.37 Setting up unzip (6.0-26+deb11u1) ... +2024-03-12T20:01:16Z #8 72.39 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-03-12T20:01:16Z #8 72.40 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-03-12T20:01:16Z #8 72.41 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-03-12T20:01:16Z #8 72.43 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-03-12T20:01:16Z #8 72.44 Setting up libsensors-config (1:3.6.0-7) ... +2024-03-12T20:01:16Z #8 72.46 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-03-12T20:01:16Z #8 72.48 Setting up libdeflate0:amd64 (1.7-1) ... +2024-03-12T20:01:16Z #8 72.49 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-03-12T20:01:16Z #8 72.50 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-03-12T20:01:16Z #8 72.52 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-12T20:01:16Z #8 72.53 First installation detected... +2024-03-12T20:01:16Z #8 72.53 Checking NSS setup... +2024-03-12T20:01:16Z #8 72.54 Setting up xkb-data (2.29-2) ... +2024-03-12T20:01:16Z #8 72.55 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-03-12T20:01:16Z #8 72.57 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-03-12T20:01:16Z #8 72.59 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-03-12T20:01:16Z #8 72.60 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-03-12T20:01:16Z #8 72.61 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-03-12T20:01:16Z #8 72.62 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-03-12T20:01:16Z #8 72.64 Setting up libasan6:amd64 (10.2.1-6) ... +2024-03-12T20:01:16Z #8 72.65 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-03-12T20:01:16Z #8 72.66 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-03-12T20:01:16Z #8 72.67 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-03-12T20:01:16Z #8 72.69 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-03-12T20:01:16Z #8 72.70 Setting up libasound2-data (1.2.4-1.1) ... +2024-03-12T20:01:16Z #8 72.71 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-03-12T20:01:16Z #8 72.72 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-03-12T20:01:16Z #8 72.74 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-03-12T20:01:16Z #8 72.75 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-03-12T20:01:16Z #8 72.76 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-03-12T20:01:16Z #8 72.78 Setting up libva2:amd64 (2.10.0-1) ... +2024-03-12T20:01:16Z #8 72.79 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-03-12T20:01:16Z #8 72.80 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-03-12T20:01:16Z #8 72.81 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-03-12T20:01:16Z #8 72.83 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-03-12T20:01:16Z #8 72.84 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-03-12T20:01:16Z #8 72.85 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-03-12T20:01:16Z #8 72.86 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-03-12T20:01:16Z #8 72.87 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-03-12T20:01:16Z #8 72.89 Setting up dbus (1.12.28-0+deb11u1) ... +2024-03-12T20:01:16Z #8 73.08 invoke-rc.d: could not determine current runlevel +2024-03-12T20:01:16Z #8 73.08 invoke-rc.d: policy-rc.d denied execution of start. +2024-03-12T20:01:16Z #8 73.09 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-03-12T20:01:16Z #8 73.11 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-03-12T20:01:16Z #8 73.12 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-03-12T20:01:16Z #8 73.14 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-03-12T20:01:17Z #8 73.15 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-03-12T20:01:17Z #8 73.17 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-03-12T20:01:17Z #8 73.18 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-03-12T20:01:17Z #8 73.20 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-03-12T20:01:17Z #8 73.21 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-03-12T20:01:17Z #8 73.57 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-03-12T20:01:17Z #8 73.58 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-03-12T20:01:17Z #8 73.59 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-03-12T20:01:17Z #8 73.60 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-03-12T20:01:17Z #8 73.62 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-03-12T20:01:17Z #8 73.64 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-03-12T20:01:17Z #8 73.66 Setting up patch (2.7.6-7) ... +2024-03-12T20:01:17Z #8 73.67 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-12T20:01:17Z #8 73.69 Setting up fonts-dejavu-core (2.37-2) ... +2024-03-12T20:01:17Z #8 73.81 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-03-12T20:01:17Z #8 73.83 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-03-12T20:01:17Z #8 73.85 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-03-12T20:01:17Z #8 73.86 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-03-12T20:01:17Z #8 73.88 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-03-12T20:01:17Z #8 73.90 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-03-12T20:01:17Z #8 73.91 Setting up libatk1.0-data (2.36.0-2) ... +2024-03-12T20:01:17Z #8 73.93 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-03-12T20:01:17Z #8 73.94 Setting up alsa-topology-conf (1.2.4-1) ... +2024-03-12T20:01:17Z #8 73.96 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-03-12T20:01:17Z #8 73.97 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-03-12T20:01:17Z #8 73.99 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-03-12T20:01:17Z #8 74.01 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-03-12T20:01:17Z #8 74.02 Setting up libvdpau1:amd64 (1.4-3) ... +2024-03-12T20:01:17Z #8 74.05 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-03-12T20:01:17Z #8 74.06 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-03-12T20:01:17Z #8 74.08 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-03-12T20:01:17Z #8 74.10 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-03-12T20:01:17Z #8 74.11 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-12T20:01:18Z #8 74.43 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-03-12T20:01:18Z #8 74.45 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-03-12T20:01:18Z #8 74.46 Setting up libthai-data (0.1.28-3) ... +2024-03-12T20:01:18Z #8 74.48 Setting up fonts-humor-sans (1.0-4) ... +2024-03-12T20:01:18Z #8 74.49 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-03-12T20:01:18Z #8 74.51 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-03-12T20:01:18Z #8 74.52 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-03-12T20:01:18Z #8 74.54 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-03-12T20:01:18Z #8 74.55 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-03-12T20:01:18Z #8 74.57 Setting up glib-networking-common (2.66.0-2) ... +2024-03-12T20:01:18Z #8 74.58 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-03-12T20:01:18Z #8 74.59 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-03-12T20:01:18Z #8 74.61 Setting up libisl23:amd64 (0.23-1) ... +2024-03-12T20:01:18Z #8 74.62 Setting up libc-dev-bin (2.31-13+deb11u8) ... +2024-03-12T20:01:18Z #8 74.63 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-12T20:01:18Z #8 74.64 Setting up libdrm-common (2.4.104-1) ... +2024-03-12T20:01:18Z #8 74.66 Setting up libelf1:amd64 (0.183-1) ... +2024-03-12T20:01:18Z #8 74.68 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-03-12T20:01:18Z #8 74.69 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-03-12T20:01:18Z #8 74.70 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-03-12T20:01:18Z #8 74.72 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-03-12T20:01:18Z #8 74.73 Setting up libzvbi-common (0.2.35-18) ... +2024-03-12T20:01:18Z #8 74.75 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-03-12T20:01:18Z #8 74.77 Setting up cpp-10 (10.2.1-6) ... +2024-03-12T20:01:18Z #8 74.78 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-03-12T20:01:18Z #8 74.80 Setting up libitm1:amd64 (10.2.1-6) ... +2024-03-12T20:01:18Z #8 74.81 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-03-12T20:01:18Z #8 74.82 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-03-12T20:01:18Z #8 74.84 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-03-12T20:01:18Z #8 74.85 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-03-12T20:01:18Z #8 74.87 Setting up libctf0:amd64 (2.35.2-2) ... +2024-03-12T20:01:18Z #8 74.88 Setting up glib-networking-services (2.66.0-2) ... +2024-03-12T20:01:18Z #8 74.89 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-03-12T20:01:18Z #8 74.91 Setting up manpages-dev (5.10-1) ... +2024-03-12T20:01:18Z #8 74.92 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-03-12T20:01:18Z #8 74.94 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-03-12T20:01:18Z #8 74.95 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-03-12T20:01:18Z #8 74.97 Setting up fontconfig-config (2.13.1-4.2) ... +2024-03-12T20:01:19Z #8 75.32 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-03-12T20:01:19Z #8 75.34 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-03-12T20:01:19Z #8 75.35 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-03-12T20:01:19Z #8 75.37 Setting up libx265-192:amd64 (3.4-2) ... +2024-03-12T20:01:19Z #8 75.38 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-03-12T20:01:19Z #8 75.40 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-03-12T20:01:19Z #8 75.41 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-03-12T20:01:19Z #8 75.43 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-03-12T20:01:19Z #8 75.44 Setting up libthai0:amd64 (0.1.28-3) ... +2024-03-12T20:01:19Z #8 75.46 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-03-12T20:01:19Z #8 75.47 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-03-12T20:01:19Z #8 75.50 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-03-12T20:01:19Z #8 75.51 Setting up shared-mime-info (2.0-1) ... +2024-03-12T20:01:23Z #8 79.98 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-03-12T20:01:23Z #8 80.00 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-03-12T20:01:23Z #8 80.01 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-03-12T20:01:23Z #8 80.03 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-03-12T20:01:23Z #8 80.05 Setting up cpp (4:10.2.1-1) ... +2024-03-12T20:01:23Z #8 80.07 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-03-12T20:01:23Z #8 80.08 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-03-12T20:01:23Z #8 80.09 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-12T20:01:23Z #8 80.13 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-03-12T20:01:24Z #8 80.24 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-03-12T20:01:24Z #8 80.25 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-03-12T20:01:24Z #8 80.27 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-03-12T20:01:24Z #8 80.28 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-03-12T20:01:24Z #8 80.29 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-03-12T20:01:24Z #8 80.30 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-03-12T20:01:24Z #8 80.32 Setting up fontconfig (2.13.1-4.2) ... +2024-03-12T20:01:26Z #8 80.33 Regenerating fonts cache... done. +2024-03-12T20:01:26Z #8 82.35 Setting up libxft2:amd64 (2.3.2-2) ... +2024-03-12T20:01:26Z #8 82.36 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-03-12T20:01:26Z #8 82.37 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-03-12T20:01:26Z #8 82.38 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-03-12T20:01:26Z #8 82.40 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-03-12T20:01:26Z #8 82.41 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-03-12T20:01:26Z #8 82.43 Setting up dconf-service (0.38.0-2) ... +2024-03-12T20:01:26Z #8 82.44 Setting up binutils (2.35.2-2) ... +2024-03-12T20:01:26Z #8 82.45 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-03-12T20:01:26Z #8 82.47 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-12T20:01:26Z #8 82.48 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-03-12T20:01:26Z #8 82.56 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-03-12T20:01:26Z #8 82.57 Setting up libgd3:amd64 (2.3.0-2) ... +2024-03-12T20:01:26Z #8 82.58 Setting up gcc-10 (10.2.1-6) ... +2024-03-12T20:01:26Z #8 82.59 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-03-12T20:01:26Z #8 82.60 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-03-12T20:01:26Z #8 82.62 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-03-12T20:01:26Z #8 82.63 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-03-12T20:01:26Z #8 82.64 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-03-12T20:01:26Z #8 82.66 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-03-12T20:01:26Z #8 82.67 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-03-12T20:01:26Z #8 82.68 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-03-12T20:01:26Z #8 82.70 Setting up libc-devtools (2.31-13+deb11u8) ... +2024-03-12T20:01:26Z #8 82.71 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-03-12T20:01:26Z #8 82.72 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-03-12T20:01:26Z #8 82.74 Setting up libglx0:amd64 (1.3.2-1) ... +2024-03-12T20:01:26Z #8 82.75 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-03-12T20:01:26Z #8 82.76 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-12T20:01:26Z #8 82.78 Setting up gcc (4:10.2.1-1) ... +2024-03-12T20:01:26Z #8 82.81 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-12T20:01:26Z #8 82.82 Setting up libgl1:amd64 (1.3.2-1) ... +2024-03-12T20:01:26Z #8 82.83 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-03-12T20:01:26Z #8 82.85 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-12T20:01:26Z #8 82.87 Setting up x11-utils (7.7+5) ... +2024-03-12T20:01:26Z #8 82.91 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-12T20:01:26Z #8 82.92 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-03-12T20:01:26Z #8 82.94 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-03-12T20:01:26Z #8 82.95 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-03-12T20:01:26Z #8 82.97 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-03-12T20:01:26Z #8 82.99 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-03-12T20:01:26Z #8 83.03 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-03-12T20:01:26Z #8 83.06 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-03-12T20:01:26Z #8 83.07 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-03-12T20:01:26Z #8 83.09 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-03-12T20:01:26Z #8 83.10 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-03-12T20:01:26Z #8 83.11 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-03-12T20:01:26Z #8 83.15 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-03-12T20:01:27Z #8 83.16 Setting up firefox-esr (115.8.0esr-1~deb11u1) ... +2024-03-12T20:01:27Z #8 83.17 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-03-12T20:01:27Z #8 83.17 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-03-12T20:01:27Z #8 83.18 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-03-12T20:01:27Z #8 83.18 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-03-12T20:01:27Z #8 83.19 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-12T20:01:27Z #8 83.23 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-03-12T20:01:32Z #8 DONE 88.7s +2024-03-12T20:01:32Z +2024-03-12T20:01:32Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-03-12T20:02:36Z #9 DONE 64.1s +2024-03-12T20:02:36Z +2024-03-12T20:02:36Z #10 [ 5/10] COPY environment.yml /environment.yml +2024-03-12T20:02:36Z #10 DONE 0.1s +2024-03-12T20:02:36Z +2024-03-12T20:02:36Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-03-12T20:05:05Z #11 149.1 Transaction +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 Prefix: /opt/conda/envs/birdy +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 Updating specs: +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 - xclim +2024-03-12T20:05:05Z #11 149.1 - ravenpy +2024-03-12T20:05:05Z #11 149.1 - python=3.10 +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 Package Version Build Channel Size +2024-03-12T20:05:05Z #11 149.1 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-12T20:05:05Z #11 149.1 Install: +2024-03-12T20:05:05Z #11 149.1 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-03-12T20:05:05Z #11 149.1 + python_abi 3.10 4_cp310 conda-forge 6kB +2024-03-12T20:05:05Z #11 149.1 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB +2024-03-12T20:05:05Z #11 149.1 + ca-certificates 2024.2.2 hbcca054_0 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + libboost-headers 1.84.0 ha770c72_1 conda-forge 14MB +2024-03-12T20:05:05Z #11 149.1 + mpi 1.0 openmpi conda-forge 4kB +2024-03-12T20:05:05Z #11 149.1 + libgomp 13.2.0 h807b86a_5 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-03-12T20:05:05Z #11 149.1 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + libnuma 2.0.16 h0b41bf4_1 conda-forge 41kB +2024-03-12T20:05:05Z #11 149.1 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-03-12T20:05:05Z #11 149.1 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-03-12T20:05:05Z #11 149.1 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-03-12T20:05:05Z #11 149.1 + lzo 2.10 h516909a_1000 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-03-12T20:05:05Z #11 149.1 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-03-12T20:05:05Z #11 149.1 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-03-12T20:05:05Z #11 149.1 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-03-12T20:05:05Z #11 149.1 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-common 0.9.13 hd590300_0 conda-forge 226kB +2024-03-12T20:05:05Z #11 149.1 + libev 4.33 hd590300_2 conda-forge 113kB +2024-03-12T20:05:05Z #11 149.1 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-03-12T20:05:05Z #11 149.1 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-03-12T20:05:05Z #11 149.1 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-03-12T20:05:05Z #11 149.1 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-03-12T20:05:05Z #11 149.1 + c-ares 1.27.0 hd590300_0 conda-forge 164kB +2024-03-12T20:05:05Z #11 149.1 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-03-12T20:05:05Z #11 149.1 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-03-12T20:05:05Z #11 149.1 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-03-12T20:05:05Z #11 149.1 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-03-12T20:05:05Z #11 149.1 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB +2024-03-12T20:05:05Z #11 149.1 + libaec 1.1.2 h59595ed_1 conda-forge 35kB +2024-03-12T20:05:05Z #11 149.1 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-03-12T20:05:05Z #11 149.1 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-03-12T20:05:05Z #11 149.1 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-03-12T20:05:05Z #11 149.1 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB +2024-03-12T20:05:05Z #11 149.1 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-03-12T20:05:05Z #11 149.1 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-03-12T20:05:05Z #11 149.1 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-03-12T20:05:05Z #11 149.1 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB +2024-03-12T20:05:05Z #11 149.1 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-03-12T20:05:05Z #11 149.1 + snappy 1.1.10 h9fff704_0 conda-forge 39kB +2024-03-12T20:05:05Z #11 149.1 + icu 73.2 h59595ed_0 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB +2024-03-12T20:05:05Z #11 149.1 + libexpat 2.6.1 h59595ed_0 conda-forge 74kB +2024-03-12T20:05:05Z #11 149.1 + libdeflate 1.19 hd590300_0 conda-forge 67kB +2024-03-12T20:05:05Z #11 149.1 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-03-12T20:05:05Z #11 149.1 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-03-12T20:05:05Z #11 149.1 + openssl 3.2.1 hd590300_0 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + ncurses 6.4 h59595ed_2 conda-forge 884kB +2024-03-12T20:05:05Z #11 149.1 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB +2024-03-12T20:05:05Z #11 149.1 + libnsl 2.0.1 hd590300_0 conda-forge 33kB +2024-03-12T20:05:05Z #11 149.1 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-03-12T20:05:05Z #11 149.1 + rdma-core 50.0 hd3aeb46_1 conda-forge 5MB +2024-03-12T20:05:05Z #11 149.1 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB +2024-03-12T20:05:05Z #11 149.1 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-compression 0.2.18 hecc5fa9_1 conda-forge 19kB +2024-03-12T20:05:05Z #11 149.1 + aws-checksums 0.1.18 hecc5fa9_1 conda-forge 50kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-sdkutils 0.1.15 hecc5fa9_1 conda-forge 55kB +2024-03-12T20:05:05Z #11 149.1 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-03-12T20:05:05Z #11 149.1 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-03-12T20:05:05Z #11 149.1 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-03-12T20:05:05Z #11 149.1 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB +2024-03-12T20:05:05Z #11 149.1 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-03-12T20:05:05Z #11 149.1 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB +2024-03-12T20:05:05Z #11 149.1 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-03-12T20:05:05Z #11 149.1 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-03-12T20:05:05Z #11 149.1 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB +2024-03-12T20:05:05Z #11 149.1 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB +2024-03-12T20:05:05Z #11 149.1 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2024-03-12T20:05:05Z #11 149.1 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-03-12T20:05:05Z #11 149.1 + pcre2 10.43 hcad00b1_0 conda-forge 951kB +2024-03-12T20:05:05Z #11 149.1 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-03-12T20:05:05Z #11 149.1 + expat 2.6.1 h59595ed_0 conda-forge 137kB +2024-03-12T20:05:05Z #11 149.1 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-03-12T20:05:05Z #11 149.1 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-03-12T20:05:05Z #11 149.1 + s2n 1.4.5 h06160fa_0 conda-forge 338kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-cal 0.6.10 hb29e0c7_1 conda-forge 55kB +2024-03-12T20:05:05Z #11 149.1 + libnghttp2 1.58.0 h47da74e_1 conda-forge 632kB +2024-03-12T20:05:05Z #11 149.1 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-03-12T20:05:05Z #11 149.1 + libssh2 1.11.0 h0841786_0 conda-forge 271kB +2024-03-12T20:05:05Z #11 149.1 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-03-12T20:05:05Z #11 149.1 + readline 8.2 h8228510_1 conda-forge 281kB +2024-03-12T20:05:05Z #11 149.1 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-03-12T20:05:05Z #11 149.1 + libxml2 2.12.5 h232c23b_0 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + ucx 1.15.0 h9929b8b_4 conda-forge 15MB +2024-03-12T20:05:05Z #11 149.1 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-03-12T20:05:05Z #11 149.1 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-03-12T20:05:05Z #11 149.1 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB +2024-03-12T20:05:05Z #11 149.1 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB +2024-03-12T20:05:05Z #11 149.1 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB +2024-03-12T20:05:05Z #11 149.1 + orc 1.9.2 h1e5e2c1_3 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-03-12T20:05:05Z #11 149.1 + libtiff 4.6.0 ha9c0a0a_2 conda-forge 283kB +2024-03-12T20:05:05Z #11 149.1 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB +2024-03-12T20:05:05Z #11 149.1 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-03-12T20:05:05Z #11 149.1 + libglib 2.80.0 hf2295e7_0 conda-forge 3MB +2024-03-12T20:05:05Z #11 149.1 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-io 0.14.5 h50678d4_1 conda-forge 157kB +2024-03-12T20:05:05Z #11 149.1 + krb5 1.21.2 h659d440_0 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB +2024-03-12T20:05:05Z #11 149.1 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-03-12T20:05:05Z #11 149.1 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-03-12T20:05:05Z #11 149.1 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB +2024-03-12T20:05:05Z #11 149.1 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-03-12T20:05:05Z #11 149.1 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-12T20:05:05Z #11 149.1 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-03-12T20:05:05Z #11 149.1 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-03-12T20:05:05Z #11 149.1 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-03-12T20:05:05Z #11 149.1 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-03-12T20:05:05Z #11 149.1 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-03-12T20:05:05Z #11 149.1 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-http 0.8.1 h5d7533a_5 conda-forge 195kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-event-stream 0.4.2 hf9b2f7b_4 conda-forge 54kB +2024-03-12T20:05:05Z #11 149.1 + libpq 16.2 h33b98f1_0 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + libcurl 8.5.0 hca28451_0 conda-forge 389kB +2024-03-12T20:05:05Z #11 149.1 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-12T20:05:05Z #11 149.1 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-mqtt 0.10.2 hf479d2b_4 conda-forge 164kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-auth 0.7.16 h79b3bcb_6 conda-forge 103kB +2024-03-12T20:05:05Z #11 149.1 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB +2024-03-12T20:05:05Z #11 149.1 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB +2024-03-12T20:05:05Z #11 149.1 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + proj 9.3.1 h1d62c97_0 conda-forge 3MB +2024-03-12T20:05:05Z #11 149.1 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB +2024-03-12T20:05:05Z #11 149.1 + aws-c-s3 0.5.2 h4ad9680_0 conda-forge 105kB +2024-03-12T20:05:05Z #11 149.1 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB +2024-03-12T20:05:05Z #11 149.1 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB +2024-03-12T20:05:05Z #11 149.1 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-03-12T20:05:05Z #11 149.1 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-03-12T20:05:05Z #11 149.1 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB +2024-03-12T20:05:05Z #11 149.1 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB +2024-03-12T20:05:05Z #11 149.1 + aws-crt-cpp 0.26.2 h19f5d62_7 conda-forge 334kB +2024-03-12T20:05:05Z #11 149.1 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB +2024-03-12T20:05:05Z #11 149.1 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-03-12T20:05:05Z #11 149.1 + aws-sdk-cpp 1.11.267 h5606698_1 conda-forge 4MB +2024-03-12T20:05:05Z #11 149.1 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB +2024-03-12T20:05:05Z #11 149.1 + tiledb 2.20.1 hdfbda7f_3 conda-forge 5MB +2024-03-12T20:05:05Z #11 149.1 + libarrow 15.0.1 h5476b98_0_cpu conda-forge 8MB +2024-03-12T20:05:05Z #11 149.1 + libparquet 15.0.1 h352af49_0_cpu conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + libarrow-gandiva 15.0.1 hb016d2e_0_cpu conda-forge 897kB +2024-03-12T20:05:05Z #11 149.1 + libarrow-flight 15.0.1 hc6145d9_0_cpu conda-forge 507kB +2024-03-12T20:05:05Z #11 149.1 + libarrow-acero 15.0.1 h59595ed_0_cpu conda-forge 599kB +2024-03-12T20:05:05Z #11 149.1 + libarrow-flight-sql 15.0.1 h757c851_0_cpu conda-forge 195kB +2024-03-12T20:05:05Z #11 149.1 + libarrow-dataset 15.0.1 h59595ed_0_cpu conda-forge 584kB +2024-03-12T20:05:05Z #11 149.1 + libarrow-substrait 15.0.1 h757c851_0_cpu conda-forge 520kB +2024-03-12T20:05:05Z #11 149.1 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-03-12T20:05:05Z #11 149.1 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-03-12T20:05:05Z #11 149.1 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-03-12T20:05:05Z #11 149.1 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-03-12T20:05:05Z #11 149.1 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + fonts-conda-forge 1 0 conda-forge 4kB +2024-03-12T20:05:05Z #11 149.1 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-03-12T20:05:05Z #11 149.1 + postgresql 16.2 h7387d8b_0 conda-forge 5MB +2024-03-12T20:05:05Z #11 149.1 + python 3.10.13 hd12c33a_1_cpython conda-forge 26MB +2024-03-12T20:05:05Z #11 149.1 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-03-12T20:05:05Z #11 149.1 + poppler 24.03.0 h590f24d_0 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + libgdal 3.8.4 hab4ef92_3 conda-forge 11MB +2024-03-12T20:05:05Z #11 149.1 + wheel 0.42.0 pyhd8ed1ab_0 conda-forge 58kB +2024-03-12T20:05:05Z #11 149.1 + setuptools 69.1.1 pyhd8ed1ab_0 conda-forge 470kB +2024-03-12T20:05:05Z #11 149.1 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB +2024-03-12T20:05:05Z #11 149.1 + appdirs 1.4.4 pyh9f0ad1d_0 conda-forge 13kB +2024-03-12T20:05:05Z #11 149.1 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-03-12T20:05:05Z #11 149.1 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-03-12T20:05:05Z #11 149.1 + threadpoolctl 3.3.0 pyhc1e730c_0 conda-forge 23kB +2024-03-12T20:05:05Z #11 149.1 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB +2024-03-12T20:05:05Z #11 149.1 + fsspec 2024.2.0 pyhca7485f_0 conda-forge 129kB +2024-03-12T20:05:05Z #11 149.1 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-03-12T20:05:05Z #11 149.1 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-03-12T20:05:05Z #11 149.1 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-03-12T20:05:05Z #11 149.1 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-03-12T20:05:05Z #11 149.1 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB +2024-03-12T20:05:05Z #11 149.1 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-03-12T20:05:05Z #11 149.1 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-03-12T20:05:05Z #11 149.1 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB +2024-03-12T20:05:05Z #11 149.1 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-03-12T20:05:05Z #11 149.1 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-03-12T20:05:05Z #11 149.1 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-03-12T20:05:05Z #11 149.1 + boltons 23.1.1 pyhd8ed1ab_0 conda-forge 304kB +2024-03-12T20:05:05Z #11 149.1 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-03-12T20:05:05Z #11 149.1 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-03-12T20:05:05Z #11 149.1 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-03-12T20:05:05Z #11 149.1 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-03-12T20:05:05Z #11 149.1 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-03-12T20:05:05Z #11 149.1 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-03-12T20:05:05Z #11 149.1 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB +2024-03-12T20:05:05Z #11 149.1 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB +2024-03-12T20:05:05Z #11 149.1 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-03-12T20:05:05Z #11 149.1 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-03-12T20:05:05Z #11 149.1 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-03-12T20:05:05Z #11 149.1 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-03-12T20:05:05Z #11 149.1 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-03-12T20:05:05Z #11 149.1 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-03-12T20:05:05Z #11 149.1 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-03-12T20:05:05Z #11 149.1 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-03-12T20:05:05Z #11 149.1 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-03-12T20:05:05Z #11 149.1 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-03-12T20:05:05Z #11 149.1 + pytools 2023.1.1 pyhd8ed1ab_0 conda-forge 71kB +2024-03-12T20:05:05Z #11 149.1 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB +2024-03-12T20:05:05Z #11 149.1 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-03-12T20:05:05Z #11 149.1 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-03-12T20:05:05Z #11 149.1 + importlib-metadata 7.0.2 pyha770c72_0 conda-forge 27kB +2024-03-12T20:05:05Z #11 149.1 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-03-12T20:05:05Z #11 149.1 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-03-12T20:05:05Z #11 149.1 + importlib_metadata 7.0.2 hd8ed1ab_0 conda-forge 9kB +2024-03-12T20:05:05Z #11 149.1 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB +2024-03-12T20:05:05Z #11 149.1 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB +2024-03-12T20:05:05Z #11 149.1 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB +2024-03-12T20:05:05Z #11 149.1 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB +2024-03-12T20:05:05Z #11 149.1 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB +2024-03-12T20:05:05Z #11 149.1 + tornado 6.4 py310h2372a71_0 conda-forge 651kB +2024-03-12T20:05:05Z #11 149.1 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB +2024-03-12T20:05:05Z #11 149.1 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB +2024-03-12T20:05:05Z #11 149.1 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB +2024-03-12T20:05:05Z #11 149.1 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB +2024-03-12T20:05:05Z #11 149.1 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB +2024-03-12T20:05:05Z #11 149.1 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB +2024-03-12T20:05:05Z #11 149.1 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB +2024-03-12T20:05:05Z #11 149.1 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB +2024-03-12T20:05:05Z #11 149.1 + raven-hydro 0.2.3 py310h3ce4ad4_0 conda-forge 787kB +2024-03-12T20:05:05Z #11 149.1 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB +2024-03-12T20:05:05Z #11 149.1 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB +2024-03-12T20:05:05Z #11 149.1 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB +2024-03-12T20:05:05Z #11 149.1 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB +2024-03-12T20:05:05Z #11 149.1 + pydantic 1.10.13 py310h2372a71_1 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + fonttools 4.49.0 py310h2372a71_0 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + pyarrow 15.0.1 py310hf9e7431_0_cpu conda-forge 4MB +2024-03-12T20:05:05Z #11 149.1 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB +2024-03-12T20:05:05Z #11 149.1 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB +2024-03-12T20:05:05Z #11 149.1 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB +2024-03-12T20:05:05Z #11 149.1 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB +2024-03-12T20:05:05Z #11 149.1 + gdal 3.8.4 py310he073c5f_3 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + numba 0.59.0 py310h7dc5dd1_1 conda-forge 4MB +2024-03-12T20:05:05Z #11 149.1 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB +2024-03-12T20:05:05Z #11 149.1 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB +2024-03-12T20:05:05Z #11 149.1 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB +2024-03-12T20:05:05Z #11 149.1 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB +2024-03-12T20:05:05Z #11 149.1 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB +2024-03-12T20:05:05Z #11 149.1 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB +2024-03-12T20:05:05Z #11 149.1 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB +2024-03-12T20:05:05Z #11 149.1 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-03-12T20:05:05Z #11 149.1 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-03-12T20:05:05Z #11 149.1 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB +2024-03-12T20:05:05Z #11 149.1 + dask-core 2024.2.1 pyhd8ed1ab_0 conda-forge 880kB +2024-03-12T20:05:05Z #11 149.1 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB +2024-03-12T20:05:05Z #11 149.1 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-03-12T20:05:05Z #11 149.1 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-03-12T20:05:05Z #11 149.1 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-03-12T20:05:05Z #11 149.1 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-03-12T20:05:05Z #11 149.1 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-03-12T20:05:05Z #11 149.1 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-03-12T20:05:05Z #11 149.1 + properscoring 0.1 py_0 conda-forge 22kB +2024-03-12T20:05:05Z #11 149.1 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB +2024-03-12T20:05:05Z #11 149.1 + xarray 2024.2.0 pyhd8ed1ab_0 conda-forge 742kB +2024-03-12T20:05:05Z #11 149.1 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-03-12T20:05:05Z #11 149.1 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-03-12T20:05:05Z #11 149.1 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-03-12T20:05:05Z #11 149.1 + bokeh 3.3.4 pyhd8ed1ab_0 conda-forge 5MB +2024-03-12T20:05:05Z #11 149.1 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB +2024-03-12T20:05:05Z #11 149.1 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-03-12T20:05:05Z #11 149.1 + distributed 2024.2.1 pyhd8ed1ab_0 conda-forge 794kB +2024-03-12T20:05:05Z #11 149.1 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-03-12T20:05:05Z #11 149.1 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-03-12T20:05:05Z #11 149.1 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-03-12T20:05:05Z #11 149.1 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-03-12T20:05:05Z #11 149.1 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-03-12T20:05:05Z #11 149.1 + dask 2024.2.1 pyhd8ed1ab_0 conda-forge 7kB +2024-03-12T20:05:05Z #11 149.1 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB +2024-03-12T20:05:05Z #11 149.1 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB +2024-03-12T20:05:05Z #11 149.1 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-03-12T20:05:05Z #11 149.1 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-03-12T20:05:05Z #11 149.1 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB +2024-03-12T20:05:05Z #11 149.1 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB +2024-03-12T20:05:05Z #11 149.1 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-03-12T20:05:05Z #11 149.1 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB +2024-03-12T20:05:05Z #11 149.1 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB +2024-03-12T20:05:05Z #11 149.1 + rioxarray 0.15.1 pyhd8ed1ab_0 conda-forge 48kB +2024-03-12T20:05:05Z #11 149.1 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-03-12T20:05:05Z #11 149.1 + ravenpy 0.12.2 py310hff52083_0 conda-forge 6MB +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 Summary: +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 Install: 294 packages +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 Total download: 448MB +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:05:05Z #11 149.1 +2024-03-12T20:06:41Z #11 245.0 +2024-03-12T20:06:41Z #11 245.0 Looking for: ['xclim', 'ravenpy', 'python=3.10'] +2024-03-12T20:06:41Z #11 245.0 +2024-03-12T20:06:41Z #11 245.0 +2024-03-12T20:06:41Z #11 245.0 Downloading and Extracting Packages: ...working... done +2024-03-12T20:06:45Z #11 245.0 Preparing transaction: ...working... done +2024-03-12T20:06:58Z #11 249.0 Verifying transaction: ...working... done +2024-03-12T20:07:35Z #11 262.2 Executing transaction: ...working... +2024-03-12T20:07:35Z #11 298.7 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-03-12T20:07:35Z #11 298.7 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-03-12T20:07:35Z #11 298.7 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-03-12T20:07:35Z #11 298.7 mpiexec --mca opal_cuda_support 1 ... +2024-03-12T20:07:35Z #11 298.7 +2024-03-12T20:07:35Z #11 298.7 In addition, the UCX support is also built but disabled by default. +2024-03-12T20:07:35Z #11 298.7 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-03-12T20:07:35Z #11 298.7 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-03-12T20:07:35Z #11 298.7 Equivalently, you can set the MCA parameters in the command line: +2024-03-12T20:07:35Z #11 298.7 mpiexec --mca pml ucx --mca osc ucx ... +2024-03-12T20:07:35Z #11 298.7 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-03-12T20:07:35Z #11 298.7 Please consult UCX's documentation for detail. +2024-03-12T20:07:35Z #11 298.7 +2024-03-12T20:07:35Z #11 298.7 +2024-03-12T20:07:35Z #11 298.7 done +2024-03-12T20:07:35Z #11 298.8 +2024-03-12T20:07:35Z #11 298.8 To activate this environment, use +2024-03-12T20:07:35Z #11 298.8 +2024-03-12T20:07:35Z #11 298.8 $ mamba activate birdy +2024-03-12T20:07:35Z #11 298.8 +2024-03-12T20:07:35Z #11 298.8 To deactivate an active environment, use +2024-03-12T20:07:35Z #11 298.8 +2024-03-12T20:07:35Z #11 298.8 $ mamba deactivate +2024-03-12T20:07:35Z #11 298.8 +2024-03-12T20:07:39Z #11 302.3 Channels: +2024-03-12T20:07:39Z #11 302.3 - conda-forge +2024-03-12T20:07:39Z #11 302.3 - cdat +2024-03-12T20:07:39Z #11 302.3 - bokeh +2024-03-12T20:07:39Z #11 302.3 - plotly +2024-03-12T20:07:39Z #11 302.3 - pyviz/label/dev +2024-03-12T20:07:39Z #11 302.3 - defaults +2024-03-12T20:07:39Z #11 302.3 Platform: linux-64 +2024-03-12T20:08:13Z #11 302.3 Collecting package metadata (repodata.json): ...working... done +2024-03-12T20:09:17Z #11 337.0 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.0 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-12T20:11:46Z #11 550.1 done +2024-03-12T20:13:44Z #11 667.9 +2024-03-12T20:13:44Z #11 667.9 Downloading and Extracting Packages: ...working... done +2024-03-12T20:13:54Z #11 667.9 Preparing transaction: ...working... done +2024-03-12T20:14:24Z #11 677.7 Verifying transaction: ...working... done +2024-03-12T20:15:21Z #11 708.4 Executing transaction: ...working... +2024-03-12T20:15:21Z #11 764.7 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-03-12T20:15:21Z #11 764.7 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-03-12T20:15:21Z #11 764.7 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-03-12T20:15:21Z #11 764.7 mpiexec --mca opal_cuda_support 1 ... +2024-03-12T20:15:21Z #11 764.7 +2024-03-12T20:15:21Z #11 764.7 In addition, the UCX support is also built but disabled by default. +2024-03-12T20:15:21Z #11 764.7 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-03-12T20:15:21Z #11 764.7 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-03-12T20:15:21Z #11 764.7 Equivalently, you can set the MCA parameters in the command line: +2024-03-12T20:15:21Z #11 764.7 mpiexec --mca pml ucx --mca osc ucx ... +2024-03-12T20:15:21Z #11 764.7 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-03-12T20:15:21Z #11 764.7 Please consult UCX's documentation for detail. +2024-03-12T20:15:21Z #11 764.7 +2024-03-12T20:15:21Z #11 764.7 +2024-03-12T20:15:21Z #11 764.7 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-03-12T20:15:21Z #11 764.7 given by the platformdirs library. To remove this warning and +2024-03-12T20:15:21Z #11 764.7 see the appropriate new directories, set the environment variable +2024-03-12T20:15:21Z #11 764.7 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-03-12T20:15:21Z #11 764.7 The use of platformdirs will be the default in `jupyter_core` v6 +2024-03-12T20:15:21Z #11 764.7 from . import paths +2024-03-12T20:15:21Z #11 764.7 Enabling: jupyterlab_git +2024-03-12T20:15:21Z #11 764.7 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-12T20:15:21Z #11 764.7 - Validating... +2024-03-12T20:15:21Z #11 764.7 jupyterlab_git OK +2024-03-12T20:15:21Z #11 764.7 +2024-03-12T20:15:21Z #11 764.7 done +2024-03-12T20:16:06Z #11 772.0 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-03-12T20:16:06Z #11 810.2 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv._meslect.requirements.txt', '--exists-action=b'] +2024-03-12T20:16:06Z #11 810.2 Pip subprocess output: +2024-03-12T20:16:06Z #11 810.2 Collecting xncml (from -r /condaenv._meslect.requirements.txt (line 1)) +2024-03-12T20:16:06Z #11 810.2 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting hsclient (from -r /condaenv._meslect.requirements.txt (line 2)) +2024-03-12T20:16:06Z #11 810.2 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting fstd2nc (from -r /condaenv._meslect.requirements.txt (line 3)) +2024-03-12T20:16:06Z #11 810.2 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 9.1 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Installing build dependencies: started +2024-03-12T20:16:06Z #11 810.2 Installing build dependencies: finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Getting requirements to build wheel: started +2024-03-12T20:16:06Z #11 810.2 Getting requirements to build wheel: finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Installing backend dependencies: started +2024-03-12T20:16:06Z #11 810.2 Installing backend dependencies: finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Preparing metadata (pyproject.toml): started +2024-03-12T20:16:06Z #11 810.2 Preparing metadata (pyproject.toml): finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Collecting figanos (from -r /condaenv._meslect.requirements.txt (line 4)) +2024-03-12T20:16:06Z #11 810.2 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting pixiedust (from -r /condaenv._meslect.requirements.txt (line 5)) +2024-03-12T20:16:06Z #11 810.2 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 22.0 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): started +2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Collecting ipython_blocking (from -r /condaenv._meslect.requirements.txt (line 6)) +2024-03-12T20:16:06Z #11 810.2 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting jupyternotify (from -r /condaenv._meslect.requirements.txt (line 7)) +2024-03-12T20:16:06Z #11 810.2 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): started +2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Collecting jupyterlab-logout (from -r /condaenv._meslect.requirements.txt (line 8)) +2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting jupyterlab-tabular-data-editor (from -r /condaenv._meslect.requirements.txt (line 9)) +2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting pytest-tornasync (from -r /condaenv._meslect.requirements.txt (line 10)) +2024-03-12T20:16:06Z #11 810.2 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting xmltodict (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) +2024-03-12T20:16:06Z #11 810.2 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting xsdata (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) +2024-03-12T20:16:06Z #11 810.2 Downloading xsdata-24.3.1-py3-none-any.whl.metadata (6.3 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (2023.8.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (1.6.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (1.6.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (2024.2.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (5.9.8) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (69.1.1) +2024-03-12T20:16:06Z #11 810.2 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv._meslect.requirements.txt (line 2)) +2024-03-12T20:16:06Z #11 810.2 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2.31.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (1.4.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv._meslect.requirements.txt (line 3)) (1.24.4) +2024-03-12T20:16:06Z #11 810.2 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv._meslect.requirements.txt (line 3)) +2024-03-12T20:16:06Z #11 810.2 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-03-12T20:16:06Z #11 810.2 Collecting progress (from fstd2nc->-r /condaenv._meslect.requirements.txt (line 3)) +2024-03-12T20:16:06Z #11 810.2 Downloading progress-1.6.tar.gz (7.8 kB) +2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): started +2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.22.0) +2024-03-12T20:16:06Z #11 810.2 Collecting cairosvg (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) +2024-03-12T20:16:06Z #11 810.2 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.14.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.8.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.1.4) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (4.2.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (6.0.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.13.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.22.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.47.0) +2024-03-12T20:16:06Z #11 810.2 Collecting geojson (from pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) +2024-03-12T20:16:06Z #11 810.2 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting astunparse (from pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) +2024-03-12T20:16:06Z #11 810.2 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) (3.5.2) +2024-03-12T20:16:06Z #11 810.2 Collecting colour (from pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) +2024-03-12T20:16:06Z #11 810.2 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (8.22.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (8.1.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.7.4) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (1.0.0) +2024-03-12T20:16:06Z #11 810.2 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) +2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab-4.1.4-py3-none-any.whl.metadata (15 kB) +2024-03-12T20:16:06Z #11 810.2 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-03-12T20:16:06Z #11 810.2 Collecting jupyterlab-logout (from -r /condaenv._meslect.requirements.txt (line 8)) +2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.6.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (3.6.7) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (23.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (6.4) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (5.7.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.25.4) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.13.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.2.4) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.8.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.0.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (6.5.6) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (3.1.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.0.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv._meslect.requirements.txt (line 10)) (8.1.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv._meslect.requirements.txt (line 3)) (2024.1) +2024-03-12T20:16:06Z #11 810.2 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) +2024-03-12T20:16:06Z #11 810.2 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2.6.3) +2024-03-12T20:16:06Z #11 810.2 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) +2024-03-12T20:16:06Z #11 810.2 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (0.6.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2.16.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (4.10.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv._meslect.requirements.txt (line 10)) (2.0.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv._meslect.requirements.txt (line 10)) (1.4.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv._meslect.requirements.txt (line 10)) (1.2.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (23.1.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.3.8) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.9.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (8.1.7) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.0.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.0.6) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.59.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.23) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.4.1.post1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.12.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.14.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (3.0.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (2024.2.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (1.4.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (0.12.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (7.0.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.9.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2024.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) (0.42.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) (1.16.0) +2024-03-12T20:16:06Z #11 810.2 Collecting cairocffi (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) +2024-03-12T20:16:06Z #11 810.2 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) +2024-03-12T20:16:06Z #11 810.2 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) +2024-03-12T20:16:06Z #11 810.2 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.7.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (9.4.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.2.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.0.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.3.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.5.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.2.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.12.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (4.49.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.4.5) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.1.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.9.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (5.1.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.19.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.1.6) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (3.0.42) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (2.17.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.6.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (5.14.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (4.9.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.2.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (4.0.10) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (3.0.10) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (5.5.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (6.6.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (7.16.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (6.29.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (7.4.9) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (5.10.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (3.3.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (3.6) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2.0.7) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2024.2.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (3.2.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.2.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.34.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2023.8.12) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (23.2.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.1.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.7.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (4.0.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (3.17.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.8.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.1.5) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.4) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (1.6.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (24.0.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (4.3.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (23.1.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.9.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.5.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (7.7.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.20.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.8.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.18.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.7.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.9.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.8.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.5.9) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.14.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.9.22) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (4.21.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (4.12.3) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (6.1.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (0.3.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (3.0.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (1.5.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (2.19.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.2.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.2.4) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (1.0.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.7.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.2.13) +2024-03-12T20:16:06Z #11 810.2 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) +2024-03-12T20:16:06Z #11 810.2 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.3.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.3.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.16.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.5.1) +2024-03-12T20:16:06Z #11 810.2 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) +2024-03-12T20:16:06Z #11 810.2 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (1.8.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.42.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (2.4.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (2.0.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (2.4.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.2.2) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.5.6) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.3.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.21) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2023.12.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.33.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.18.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.0.7) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.1.4) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.1.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (22.1.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.19.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (21.2.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (2.5) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.5.1) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (20.11.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.4) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.3.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.13) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.3.0) +2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.8.19.20240311) +2024-03-12T20:16:06Z #11 810.2 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 50.4 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.4 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 36.4 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 65.9 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 5.5 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading xsdata-24.3.1-py3-none-any.whl (224 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 224.1/224.1 kB 25.3 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 24.6 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 9.7 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-03-12T20:16:06Z #11 810.2 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 29.0 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.8 MB/s eta 0:00:00 +2024-03-12T20:16:06Z #11 810.2 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress +2024-03-12T20:16:06Z #11 810.2 Building wheel for fstd2nc (pyproject.toml): started +2024-03-12T20:16:06Z #11 810.2 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=666bcf0bbf199577844ef1abe74891e858edc2778a7308a675f5c0f0bb666134 +2024-03-12T20:16:06Z #11 810.2 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a +2024-03-12T20:16:06Z #11 810.2 Building wheel for pixiedust (setup.py): started +2024-03-12T20:16:06Z #11 810.2 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=12156a26cb9d170332401dacfa2a63dba4e8a19fb0b566dadfcbc9655d2ecfd0 +2024-03-12T20:16:06Z #11 810.2 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 +2024-03-12T20:16:06Z #11 810.2 Building wheel for jupyternotify (setup.py): started +2024-03-12T20:16:06Z #11 810.2 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=05ef8bad41b1d69bd08489d029816f609b810cb94287ae8142d6247d196e5b85 +2024-03-12T20:16:06Z #11 810.2 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 +2024-03-12T20:16:06Z #11 810.2 Building wheel for progress (setup.py): started +2024-03-12T20:16:06Z #11 810.2 Building wheel for progress (setup.py): finished with status 'done' +2024-03-12T20:16:06Z #11 810.2 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9612 sha256=8aedd4f992b01c2e89011407e95e8f8d9398be86f96fa4f260cd39759e7d6a86 +2024-03-12T20:16:06Z #11 810.2 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 +2024-03-12T20:16:06Z #11 810.2 Successfully built fstd2nc pixiedust jupyternotify progress +2024-03-12T20:16:06Z #11 810.2 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-03-12T20:16:06Z #11 810.2 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.3.1 +2024-03-12T20:16:06Z #11 810.2 +2024-03-12T20:16:06Z #11 810.2 done +2024-03-12T20:16:06Z #11 810.2 # +2024-03-12T20:16:06Z #11 810.2 # To activate this environment, use +2024-03-12T20:16:06Z #11 810.2 # +2024-03-12T20:16:06Z #11 810.2 # $ conda activate birdy +2024-03-12T20:16:06Z #11 810.2 # +2024-03-12T20:16:06Z #11 810.2 # To deactivate an active environment, use +2024-03-12T20:16:06Z #11 810.2 # +2024-03-12T20:16:06Z #11 810.2 # $ conda deactivate +2024-03-12T20:16:06Z #11 810.2 +2024-03-12T20:16:26Z #11 829.6 Will remove 787 (1.20 GB) tarball(s). +2024-03-12T20:16:26Z #11 829.6 Will remove 1 index cache(s). +2024-03-12T20:16:26Z #11 829.6 Will remove 144 (1.21 GB) package(s). +2024-03-12T20:16:26Z #11 829.6 There are no tempfile(s) to remove. +2024-03-12T20:16:26Z #11 829.6 There are no logfile(s) to remove. +2024-03-12T20:16:27Z #11 DONE 830.4s +2024-03-12T20:16:27Z +2024-03-12T20:16:27Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2024-03-12T20:16:28Z #12 1.359 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-03-12T20:16:28Z #12 DONE 1.5s +2024-03-12T20:16:28Z +2024-03-12T20:16:28Z #13 [ 8/10] RUN jupyter lab build +2024-03-12T20:16:30Z #13 1.949 [LabBuildApp] JupyterLab 3.6.7 +2024-03-12T20:16:30Z #13 1.950 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2024-03-12T20:16:31Z #13 2.600 [LabBuildApp] Building jupyterlab assets (production, minimized) +2024-03-12T20:16:31Z #13 2.620 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. +2024-03-12T20:16:31Z #13 2.620 +2024-03-12T20:18:49Z #13 2.626 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ +2024-03-12T20:18:49Z #13 DONE 140.5s +2024-03-12T20:18:49Z +2024-03-12T20:18:49Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-03-12T20:18:49Z #14 0.573 Enabling: voila +2024-03-12T20:18:49Z #14 0.573 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-12T20:18:49Z #14 0.576 - Validating... +2024-03-12T20:18:50Z #14 1.279 voila 0.5.5 OK +2024-03-12T20:18:50Z #14 1.659 Enabling: panel.io.jupyter_server_extension +2024-03-12T20:18:50Z #14 1.659 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-12T20:18:50Z #14 1.661 - Validating... +2024-03-12T20:18:52Z #14 3.481 panel.io.jupyter_server_extension OK +2024-03-12T20:18:53Z #14 3.998 - Validating... +2024-03-12T20:18:54Z #14 4.900 dask_labextension 6.2.0 OK +2024-03-12T20:18:54Z #14 4.900 - Validating... +2024-03-12T20:18:54Z #14 4.901 jupyter_server_proxy OK +2024-03-12T20:18:54Z #14 4.901 - Validating... +2024-03-12T20:18:54Z #14 5.075 jupyter_resource_usage 0.7.1 OK +2024-03-12T20:18:54Z #14 5.075 - Validating... +2024-03-12T20:18:54Z #14 5.135  X is jupyter_server_ydoc importable? +2024-03-12T20:18:54Z #14 5.135 - Validating... +2024-03-12T20:18:54Z #14 5.213 jupyterlab 3.6.7 OK +2024-03-12T20:18:54Z #14 5.214 - Validating... +2024-03-12T20:18:54Z #14 5.432 jupyterlab_jupytext OK +2024-03-12T20:18:54Z #14 5.432 - Validating... +2024-03-12T20:18:54Z #14 5.437 mamba_gator 5.2.1 OK +2024-03-12T20:18:54Z #14 5.437 - Validating... +2024-03-12T20:18:54Z #14 5.454 nbdime 4.0.1 OK +2024-03-12T20:18:54Z #14 5.454 - Validating... +2024-03-12T20:18:55Z #14 6.555 panel.io.jupyter_server_extension OK +2024-03-12T20:18:55Z #14 6.555 - Validating... +2024-03-12T20:18:55Z #14 6.626 nbresuse OK +2024-03-12T20:18:55Z #14 6.626 - Validating... +2024-03-12T20:18:55Z #14 6.882 voila.server_extension OK +2024-03-12T20:18:55Z #14 6.882 - Validating... +2024-03-12T20:18:56Z #14 6.885 jupyterlab_git OK +2024-03-12T20:18:56Z #14 6.885 - Validating... +2024-03-12T20:18:56Z #14 6.885 voila 0.5.5 OK +2024-03-12T20:18:56Z #14 6.886 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-03-12T20:18:56Z #14 6.886 dask_labextension  enabled  +2024-03-12T20:18:56Z #14 6.886 jupyter_server_proxy  enabled  +2024-03-12T20:18:56Z #14 6.886 jupyter_resource_usage  enabled  +2024-03-12T20:18:56Z #14 6.886 jupyter_server_ydoc  enabled  +2024-03-12T20:18:56Z #14 6.886 jupyterlab  enabled  +2024-03-12T20:18:56Z #14 6.886 jupyterlab_jupytext  enabled  +2024-03-12T20:18:56Z #14 6.886 mamba_gator  enabled  +2024-03-12T20:18:56Z #14 6.886 nbdime  enabled  +2024-03-12T20:18:56Z #14 6.886 panel.io.jupyter_server_extension  enabled  +2024-03-12T20:18:56Z #14 6.886 nbresuse  enabled  +2024-03-12T20:18:56Z #14 6.886 voila.server_extension  enabled  +2024-03-12T20:18:56Z #14 6.886 jupyterlab_git  enabled  +2024-03-12T20:18:56Z #14 6.886 voila  enabled  +2024-03-12T20:18:56Z #14 DONE 7.3s +2024-03-12T20:18:56Z +2024-03-12T20:18:56Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-03-12T20:18:56Z #15 0.457 --2024-03-12 20:18:56-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-03-12T20:18:56Z #15 0.475 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.111.133, 185.199.108.133, ... +2024-03-12T20:18:56Z #15 0.479 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-03-12T20:18:56Z #15 0.483 HTTP request sent, awaiting response... 200 OK +2024-03-12T20:18:57Z #15 0.586 Length: 9769 (9.5K) [text/plain] +2024-03-12T20:18:57Z #15 0.586 Saving to: ‘/usr/local/bin/start.sh’ +2024-03-12T20:18:57Z #15 0.586 +2024-03-12T20:18:57Z #15 0.586 0K ......... 100% 6.70M=0.001s +2024-03-12T20:18:57Z #15 0.586 +2024-03-12T20:18:57Z #15 0.586 2024-03-12 20:18:56 (6.70 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-03-12T20:18:57Z #15 0.586 +2024-03-12T20:18:57Z #15 0.590 --2024-03-12 20:18:56-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-03-12T20:18:57Z #15 0.614 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2024-03-12T20:18:57Z #15 0.615 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-03-12T20:18:57Z #15 0.622 HTTP request sent, awaiting response... 200 OK +2024-03-12T20:18:57Z #15 0.718 Length: 359 [text/plain] +2024-03-12T20:18:57Z #15 0.718 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-03-12T20:18:57Z #15 0.719 +2024-03-12T20:18:57Z #15 0.719 0K 100% 15.8M=0s +2024-03-12T20:18:57Z #15 0.720 +2024-03-12T20:18:57Z #15 0.720 2024-03-12 20:18:57 (15.8 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-03-12T20:18:57Z #15 0.720 +2024-03-12T20:18:57Z #15 0.726 --2024-03-12 20:18:57-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-03-12T20:18:57Z #15 0.750 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2024-03-12T20:18:57Z #15 0.751 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-03-12T20:18:57Z #15 0.757 HTTP request sent, awaiting response... 200 OK +2024-03-12T20:18:57Z #15 0.839 Length: 852 [text/plain] +2024-03-12T20:18:57Z #15 0.839 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-03-12T20:18:57Z #15 0.839 +2024-03-12T20:18:57Z #15 0.839 0K 100% 34.9M=0s +2024-03-12T20:18:57Z #15 0.840 +2024-03-12T20:18:57Z #15 0.840 2024-03-12 20:18:57 (34.9 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-03-12T20:18:57Z #15 0.840 +2024-03-12T20:18:57Z #15 0.844 --2024-03-12 20:18:57-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-03-12T20:18:57Z #15 0.869 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2024-03-12T20:18:57Z #15 0.870 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-03-12T20:18:57Z #15 0.876 HTTP request sent, awaiting response... 200 OK +2024-03-12T20:18:57Z #15 0.974 Length: 1034 (1.0K) [text/plain] +2024-03-12T20:18:57Z #15 0.974 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-03-12T20:18:57Z #15 0.974 +2024-03-12T20:18:57Z #15 0.974 0K . 100% 41.7M=0s +2024-03-12T20:18:57Z #15 0.976 +2024-03-12T20:18:57Z #15 0.976 2024-03-12 20:18:57 (41.7 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-03-12T20:18:57Z #15 0.976 +2024-03-12T20:18:57Z #15 0.983 --2024-03-12 20:18:57-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-03-12T20:18:57Z #15 1.007 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2024-03-12T20:18:57Z #15 1.008 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-03-12T20:18:57Z #15 1.015 HTTP request sent, awaiting response... 200 OK +2024-03-12T20:18:57Z #15 1.097 Length: 1836 (1.8K) [text/plain] +2024-03-12T20:18:57Z #15 1.097 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-03-12T20:18:57Z #15 1.097 +2024-03-12T20:18:57Z #15 1.097 0K . 100% 6.80M=0s +2024-03-12T20:18:57Z #15 1.099 +2024-03-12T20:18:57Z #15 1.099 2024-03-12 20:18:57 (6.80 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-03-12T20:18:57Z #15 1.099 +2024-03-12T20:18:57Z #15 1.309 --2024-03-12 20:18:57-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-03-12T20:18:57Z #15 1.334 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.84, 3.162.103.63, 3.162.103.35, ... +2024-03-12T20:18:57Z #15 1.341 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.84|:443... connected. +2024-03-12T20:18:57Z #15 1.350 HTTP request sent, awaiting response... 200 OK +2024-03-12T20:18:57Z #15 1.569 Length: 129825343 (124M) [application/x-tar] +2024-03-12T20:18:57Z #15 1.569 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-03-12T20:18:57Z #15 1.569 +2024-03-12T20:18:57Z #15 1.569 0K .......... .......... .......... .......... .......... 0% 31.8M 4s +2024-03-12T20:18:57Z #15 1.570 50K .......... .......... .......... .......... .......... 0% 14.8M 6s +2024-03-12T20:18:57Z #15 1.574 100K .......... .......... .......... .......... .......... 0% 18.0M 6s +2024-03-12T20:18:57Z #15 1.577 150K .......... .......... .......... .......... .......... 0% 25.6M 6s +2024-03-12T20:18:57Z #15 1.578 200K .......... .......... .......... .......... .......... 0% 49.3M 5s +2024-03-12T20:18:57Z #15 1.579 250K .......... .......... .......... .......... .......... 0% 59.7M 5s +2024-03-12T20:18:57Z #15 1.580 300K .......... .......... .......... .......... .......... 0% 25.0M 5s +2024-03-12T20:18:57Z #15 1.582 350K .......... .......... .......... .......... .......... 0% 62.2M 4s +2024-03-12T20:18:57Z #15 1.582 400K .......... .......... .......... .......... .......... 0% 47.7M 4s +2024-03-12T20:18:57Z #15 1.586 450K .......... .......... .......... .......... .......... 0% 126M 4s +2024-03-12T20:18:57Z #15 1.586 500K .......... .......... .......... .......... .......... 0% 89.6M 4s +2024-03-12T20:18:57Z #15 1.586 550K .......... .......... .......... .......... .......... 0% 64.5M 4s +2024-03-12T20:18:57Z #15 1.586 600K .......... .......... .......... .......... .......... 0% 107M 3s +2024-03-12T20:18:57Z #15 1.586 650K .......... .......... .......... .......... .......... 0% 26.6M 3s +2024-03-12T20:18:57Z #15 1.588 700K .......... .......... .......... .......... .......... 0% 29.6M 3s +2024-03-12T20:18:57Z #15 1.589 750K .......... .......... .......... .......... .......... 0% 38.6M 3s +2024-03-12T20:18:57Z #15 1.590 800K .......... .......... .......... .......... .......... 0% 27.0M 4s +2024-03-12T20:18:57Z #15 1.592 850K .......... .......... .......... .......... .......... 0% 37.8M 3s +2024-03-12T20:18:57Z #15 1.593 900K .......... .......... .......... .......... .......... 0% 24.7M 4s +2024-03-12T20:18:57Z #15 1.596 950K .......... .......... .......... .......... .......... 0% 46.2M 4s +2024-03-12T20:18:57Z #15 1.596 1000K .......... .......... .......... .......... .......... 0% 59.9M 3s +2024-03-12T20:18:57Z #15 1.602 1050K .......... .......... .......... .......... .......... 0% 116M 3s +2024-03-12T20:18:57Z #15 1.602 1100K .......... .......... .......... .......... .......... 0% 108M 3s +2024-03-12T20:18:57Z #15 1.602 1150K .......... .......... .......... .......... .......... 0% 64.7M 3s +2024-03-12T20:18:57Z #15 1.602 1200K .......... .......... .......... .......... .......... 0% 119M 3s +2024-03-12T20:18:57Z #15 1.602 1250K .......... .......... .......... .......... .......... 1% 55.1M 3s +2024-03-12T20:18:57Z #15 1.602 1300K .......... .......... .......... .......... .......... 1% 106M 3s +2024-03-12T20:18:57Z #15 1.602 1350K .......... .......... .......... .......... .......... 1% 85.2M 3s +2024-03-12T20:18:57Z #15 1.602 1400K .......... .......... .......... .......... .......... 1% 97.3M 3s +2024-03-12T20:18:58Z #15 1.602 1450K .......... .......... .......... .......... .......... 1% 27.5M 3s +2024-03-12T20:18:58Z #15 1.609 1500K .......... .......... .......... .......... .......... 1% 26.0M 3s +2024-03-12T20:18:58Z #15 1.609 1550K .......... .......... .......... .......... .......... 1% 27.9M 3s +2024-03-12T20:18:58Z #15 1.609 1600K .......... .......... .......... .......... .......... 1% 49.7M 3s +2024-03-12T20:18:58Z #15 1.609 1650K .......... .......... .......... .......... .......... 1% 43.3M 3s +2024-03-12T20:18:58Z #15 1.614 1700K .......... .......... .......... .......... .......... 1% 91.2M 3s +2024-03-12T20:18:58Z #15 1.614 1750K .......... .......... .......... .......... .......... 1% 83.7M 3s +2024-03-12T20:18:58Z #15 1.614 1800K .......... .......... .......... .......... .......... 1% 104M 3s +2024-03-12T20:18:58Z #15 1.614 1850K .......... .......... .......... .......... .......... 1% 71.5M 3s +2024-03-12T20:18:58Z #15 1.614 1900K .......... .......... .......... .......... .......... 1% 86.5M 3s +2024-03-12T20:18:58Z #15 1.614 1950K .......... .......... .......... .......... .......... 1% 81.8M 3s +2024-03-12T20:18:58Z #15 1.614 2000K .......... .......... .......... .......... .......... 1% 106M 3s +2024-03-12T20:18:58Z #15 1.614 2050K .......... .......... .......... .......... .......... 1% 74.3M 3s +2024-03-12T20:18:58Z #15 1.614 2100K .......... .......... .......... .......... .......... 1% 32.7M 3s +2024-03-12T20:18:58Z #15 1.615 2150K .......... .......... .......... .......... .......... 1% 41.3M 3s +2024-03-12T20:18:58Z #15 1.617 2200K .......... .......... .......... .......... .......... 1% 34.8M 3s +2024-03-12T20:18:58Z #15 1.618 2250K .......... .......... .......... .......... .......... 1% 42.7M 3s +2024-03-12T20:18:58Z #15 1.619 2300K .......... .......... .......... .......... .......... 1% 32.6M 3s +2024-03-12T20:18:58Z #15 1.626 2350K .......... .......... .......... .......... .......... 1% 128M 3s +2024-03-12T20:18:58Z #15 1.626 2400K .......... .......... .......... .......... .......... 1% 110M 3s +2024-03-12T20:18:58Z #15 1.626 2450K .......... .......... .......... .......... .......... 1% 114M 3s +2024-03-12T20:18:58Z #15 1.626 2500K .......... .......... .......... .......... .......... 2% 68.4M 3s +2024-03-12T20:18:58Z #15 1.626 2550K .......... .......... .......... .......... .......... 2% 69.0M 3s +2024-03-12T20:18:58Z #15 1.626 2600K .......... .......... .......... .......... .......... 2% 72.5M 3s +2024-03-12T20:18:58Z #15 1.626 2650K .......... .......... .......... .......... .......... 2% 108M 3s +2024-03-12T20:18:58Z #15 1.626 2700K .......... .......... .......... .......... .......... 2% 108M 3s +2024-03-12T20:18:58Z #15 1.626 2750K .......... .......... .......... .......... .......... 2% 62.7M 3s +2024-03-12T20:18:58Z #15 1.626 2800K .......... .......... .......... .......... .......... 2% 56.6M 3s +2024-03-12T20:18:58Z #15 1.630 2850K .......... .......... .......... .......... .......... 2% 99.2M 2s +2024-03-12T20:18:58Z #15 1.630 2900K .......... .......... .......... .......... .......... 2% 89.2M 2s +2024-03-12T20:18:58Z #15 1.630 2950K .......... .......... .......... .......... .......... 2% 65.9M 2s +2024-03-12T20:18:58Z #15 1.630 3000K .......... .......... .......... .......... .......... 2% 112M 2s +2024-03-12T20:18:58Z #15 1.630 3050K .......... .......... .......... .......... .......... 2% 62.7M 2s +2024-03-12T20:18:58Z #15 1.630 3100K .......... .......... .......... .......... .......... 2% 133M 2s +2024-03-12T20:18:58Z #15 1.630 3150K .......... .......... .......... .......... .......... 2% 59.6M 2s +2024-03-12T20:18:58Z #15 1.631 3200K .......... .......... .......... .......... .......... 2% 100M 2s +2024-03-12T20:18:58Z #15 1.631 3250K .......... .......... .......... .......... .......... 2% 143M 2s +2024-03-12T20:18:58Z #15 1.632 3300K .......... .......... .......... .......... .......... 2% 101M 2s +2024-03-12T20:18:58Z #15 1.632 3350K .......... .......... .......... .......... .......... 2% 74.6M 2s +2024-03-12T20:18:58Z #15 1.633 3400K .......... .......... .......... .......... .......... 2% 83.1M 2s +2024-03-12T20:18:58Z #15 1.633 3450K .......... .......... .......... .......... .......... 2% 148M 2s +2024-03-12T20:18:58Z #15 1.633 3500K .......... .......... .......... .......... .......... 2% 90.0M 2s +2024-03-12T20:18:58Z #15 1.634 3550K .......... .......... .......... .......... .......... 2% 83.8M 2s +2024-03-12T20:18:58Z #15 1.634 3600K .......... .......... .......... .......... .......... 2% 138M 2s +2024-03-12T20:18:58Z #15 1.635 3650K .......... .......... .......... .......... .......... 2% 114M 2s +2024-03-12T20:18:58Z #15 1.635 3700K .......... .......... .......... .......... .......... 2% 111M 2s +2024-03-12T20:18:58Z #15 1.636 3750K .......... .......... .......... .......... .......... 2% 81.3M 2s +2024-03-12T20:18:58Z #15 1.636 3800K .......... .......... .......... .......... .......... 3% 104M 2s +2024-03-12T20:18:58Z #15 1.637 3850K .......... .......... .......... .......... .......... 3% 101M 2s +2024-03-12T20:18:58Z #15 1.637 3900K .......... .......... .......... .......... .......... 3% 134M 2s +2024-03-12T20:18:58Z #15 1.638 3950K .......... .......... .......... .......... .......... 3% 80.1M 2s +2024-03-12T20:18:58Z #15 1.638 4000K .......... .......... .......... .......... .......... 3% 86.0M 2s +2024-03-12T20:18:58Z #15 1.639 4050K .......... .......... .......... .......... .......... 3% 129M 2s +2024-03-12T20:18:58Z #15 1.639 4100K .......... .......... .......... .......... .......... 3% 68.0M 2s +2024-03-12T20:18:58Z #15 1.640 4150K .......... .......... .......... .......... .......... 3% 126M 2s +2024-03-12T20:18:58Z #15 1.640 4200K .......... .......... .......... .......... .......... 3% 140M 2s +2024-03-12T20:18:58Z #15 1.641 4250K .......... .......... .......... .......... .......... 3% 71.0M 2s +2024-03-12T20:18:58Z #15 1.642 4300K .......... .......... .......... .......... .......... 3% 137M 2s +2024-03-12T20:18:58Z #15 1.646 4350K .......... .......... .......... .......... .......... 3% 103M 2s +2024-03-12T20:18:58Z #15 1.646 4400K .......... .......... .......... .......... .......... 3% 86.8M 2s +2024-03-12T20:18:58Z #15 1.646 4450K .......... .......... .......... .......... .......... 3% 106M 2s +2024-03-12T20:18:58Z #15 1.646 4500K .......... .......... .......... .......... .......... 3% 63.0M 2s +2024-03-12T20:18:58Z #15 1.646 4550K .......... .......... .......... .......... .......... 3% 109M 2s +2024-03-12T20:18:58Z #15 1.646 4600K .......... .......... .......... .......... .......... 3% 93.6M 2s +2024-03-12T20:18:58Z #15 1.646 4650K .......... .......... .......... .......... .......... 3% 94.6M 2s +2024-03-12T20:18:58Z #15 1.646 4700K .......... .......... .......... .......... .......... 3% 55.2M 2s +2024-03-12T20:18:58Z #15 1.650 4750K .......... .......... .......... .......... .......... 3% 120M 2s +2024-03-12T20:18:58Z #15 1.650 4800K .......... .......... .......... .......... .......... 3% 84.5M 2s +2024-03-12T20:18:58Z #15 1.650 4850K .......... .......... .......... .......... .......... 3% 83.1M 2s +2024-03-12T20:18:58Z #15 1.650 4900K .......... .......... .......... .......... .......... 3% 72.4M 2s +2024-03-12T20:18:58Z #15 1.650 4950K .......... .......... .......... .......... .......... 3% 104M 2s +2024-03-12T20:18:58Z #15 1.650 5000K .......... .......... .......... .......... .......... 3% 93.8M 2s +2024-03-12T20:18:58Z #15 1.650 5050K .......... .......... .......... .......... .......... 4% 64.4M 2s +2024-03-12T20:18:58Z #15 1.651 5100K .......... .......... .......... .......... .......... 4% 107M 2s +2024-03-12T20:18:58Z #15 1.651 5150K .......... .......... .......... .......... .......... 4% 116M 2s +2024-03-12T20:18:58Z #15 1.651 5200K .......... .......... .......... .......... .......... 4% 129M 2s +2024-03-12T20:18:58Z #15 1.652 5250K .......... .......... .......... .......... .......... 4% 157M 2s +2024-03-12T20:18:58Z #15 1.652 5300K .......... .......... .......... .......... .......... 4% 89.4M 2s +2024-03-12T20:18:58Z #15 1.653 5350K .......... .......... .......... .......... .......... 4% 105M 2s +2024-03-12T20:18:58Z #15 1.653 5400K .......... .......... .......... .......... .......... 4% 124M 2s +2024-03-12T20:18:58Z #15 1.654 5450K .......... .......... .......... .......... .......... 4% 60.4M 2s +2024-03-12T20:18:58Z #15 1.654 5500K .......... .......... .......... .......... .......... 4% 131M 2s +2024-03-12T20:18:58Z #15 1.655 5550K .......... .......... .......... .......... .......... 4% 67.4M 2s +2024-03-12T20:18:58Z #15 1.656 5600K .......... .......... .......... .......... .......... 4% 127M 2s +2024-03-12T20:18:58Z #15 1.656 5650K .......... .......... .......... .......... .......... 4% 120M 2s +2024-03-12T20:18:58Z #15 1.656 5700K .......... .......... .......... .......... .......... 4% 104M 2s +2024-03-12T20:18:58Z #15 1.657 5750K .......... .......... .......... .......... .......... 4% 99.5M 2s +2024-03-12T20:18:58Z #15 1.657 5800K .......... .......... .......... .......... .......... 4% 98.4M 2s +2024-03-12T20:18:58Z #15 1.658 5850K .......... .......... .......... .......... .......... 4% 71.9M 2s +2024-03-12T20:18:58Z #15 1.660 5900K .......... .......... .......... .......... .......... 4% 92.1M 2s +2024-03-12T20:18:58Z #15 1.660 5950K .......... .......... .......... .......... .......... 4% 116M 2s +2024-03-12T20:18:58Z #15 1.660 6000K .......... .......... .......... .......... .......... 4% 88.3M 2s +2024-03-12T20:18:58Z #15 1.660 6050K .......... .......... .......... .......... .......... 4% 90.4M 2s +2024-03-12T20:18:58Z #15 1.660 6100K .......... .......... .......... .......... .......... 4% 72.3M 2s +2024-03-12T20:18:58Z #15 1.661 6150K .......... .......... .......... .......... .......... 4% 131M 2s +2024-03-12T20:18:58Z #15 1.666 6200K .......... .......... .......... .......... .......... 4% 55.7M 2s +2024-03-12T20:18:58Z #15 1.666 6250K .......... .......... .......... .......... .......... 4% 88.1M 2s +2024-03-12T20:18:58Z #15 1.666 6300K .......... .......... .......... .......... .......... 5% 99.8M 2s +2024-03-12T20:18:58Z #15 1.666 6350K .......... .......... .......... .......... .......... 5% 121M 2s +2024-03-12T20:18:58Z #15 1.666 6400K .......... .......... .......... .......... .......... 5% 76.6M 2s +2024-03-12T20:18:58Z #15 1.666 6450K .......... .......... .......... .......... .......... 5% 80.0M 2s +2024-03-12T20:18:58Z #15 1.666 6500K .......... .......... .......... .......... .......... 5% 82.4M 2s +2024-03-12T20:18:58Z #15 1.666 6550K .......... .......... .......... .......... .......... 5% 58.1M 2s +2024-03-12T20:18:58Z #15 1.666 6600K .......... .......... .......... .......... .......... 5% 80.5M 2s +2024-03-12T20:18:58Z #15 1.667 6650K .......... .......... .......... .......... .......... 5% 115M 2s +2024-03-12T20:18:58Z #15 1.668 6700K .......... .......... .......... .......... .......... 5% 99.7M 2s +2024-03-12T20:18:58Z #15 1.668 6750K .......... .......... .......... .......... .......... 5% 74.5M 2s +2024-03-12T20:18:58Z #15 1.669 6800K .......... .......... .......... .......... .......... 5% 115M 2s +2024-03-12T20:18:58Z #15 1.669 6850K .......... .......... .......... .......... .......... 5% 90.3M 2s +2024-03-12T20:18:58Z #15 1.670 6900K .......... .......... .......... .......... .......... 5% 78.2M 2s +2024-03-12T20:18:58Z #15 1.670 6950K .......... .......... .......... .......... .......... 5% 77.9M 2s +2024-03-12T20:18:58Z #15 1.671 7000K .......... .......... .......... .......... .......... 5% 102M 2s +2024-03-12T20:18:58Z #15 1.671 7050K .......... .......... .......... .......... .......... 5% 87.5M 2s +2024-03-12T20:18:58Z #15 1.672 7100K .......... .......... .......... .......... .......... 5% 87.0M 2s +2024-03-12T20:18:58Z #15 1.673 7150K .......... .......... .......... .......... .......... 5% 138M 2s +2024-03-12T20:18:58Z #15 1.673 7200K .......... .......... .......... .......... .......... 5% 98.5M 2s +2024-03-12T20:18:58Z #15 1.673 7250K .......... .......... .......... .......... .......... 5% 79.3M 2s +2024-03-12T20:18:58Z #15 1.678 7300K .......... .......... .......... .......... .......... 5% 123M 2s +2024-03-12T20:18:58Z #15 1.678 7350K .......... .......... .......... .......... .......... 5% 81.5M 2s +2024-03-12T20:18:58Z #15 1.678 7400K .......... .......... .......... .......... .......... 5% 75.2M 2s +2024-03-12T20:18:58Z #15 1.678 7450K .......... .......... .......... .......... .......... 5% 121M 2s +2024-03-12T20:18:58Z #15 1.678 7500K .......... .......... .......... .......... .......... 5% 107M 2s +2024-03-12T20:18:58Z #15 1.678 7550K .......... .......... .......... .......... .......... 5% 71.7M 2s +2024-03-12T20:18:58Z #15 1.678 7600K .......... .......... .......... .......... .......... 6% 75.2M 2s +2024-03-12T20:18:58Z #15 1.678 7650K .......... .......... .......... .......... .......... 6% 62.2M 2s +2024-03-12T20:18:58Z #15 1.679 7700K .......... .......... .......... .......... .......... 6% 105M 2s +2024-03-12T20:18:58Z #15 1.679 7750K .......... .......... .......... .......... .......... 6% 115M 2s +2024-03-12T20:18:58Z #15 1.679 7800K .......... .......... .......... .......... .......... 6% 133M 2s +2024-03-12T20:18:58Z #15 1.680 7850K .......... .......... .......... .......... .......... 6% 84.2M 2s +2024-03-12T20:18:58Z #15 1.680 7900K .......... .......... .......... .......... .......... 6% 68.3M 2s +2024-03-12T20:18:58Z #15 1.681 7950K .......... .......... .......... .......... .......... 6% 75.7M 2s +2024-03-12T20:18:58Z #15 1.682 8000K .......... .......... .......... .......... .......... 6% 78.8M 2s +2024-03-12T20:18:58Z #15 1.682 8050K .......... .......... .......... .......... .......... 6% 126M 2s +2024-03-12T20:18:58Z #15 1.683 8100K .......... .......... .......... .......... .......... 6% 132M 2s +2024-03-12T20:18:58Z #15 1.683 8150K .......... .......... .......... .......... .......... 6% 102M 2s +2024-03-12T20:18:58Z #15 1.684 8200K .......... .......... .......... .......... .......... 6% 100M 2s +2024-03-12T20:18:58Z #15 1.684 8250K .......... .......... .......... .......... .......... 6% 67.7M 2s +2024-03-12T20:18:58Z #15 1.685 8300K .......... .......... .......... .......... .......... 6% 108M 2s +2024-03-12T20:18:58Z #15 1.685 8350K .......... .......... .......... .......... .......... 6% 127M 2s +2024-03-12T20:18:58Z #15 1.686 8400K .......... .......... .......... .......... .......... 6% 66.1M 2s +2024-03-12T20:18:58Z #15 1.686 8450K .......... .......... .......... .......... .......... 6% 100M 2s +2024-03-12T20:18:58Z #15 1.687 8500K .......... .......... .......... .......... .......... 6% 75.3M 2s +2024-03-12T20:18:58Z #15 1.688 8550K .......... .......... .......... .......... .......... 6% 109M 2s +2024-03-12T20:18:58Z #15 1.688 8600K .......... .......... .......... .......... .......... 6% 95.3M 2s +2024-03-12T20:18:58Z #15 1.688 8650K .......... .......... .......... .......... .......... 6% 68.8M 2s +2024-03-12T20:18:58Z #15 1.689 8700K .......... .......... .......... .......... .......... 6% 94.1M 2s +2024-03-12T20:18:58Z #15 1.690 8750K .......... .......... .......... .......... .......... 6% 85.8M 2s +2024-03-12T20:18:58Z #15 1.690 8800K .......... .......... .......... .......... .......... 6% 57.7M 2s +2024-03-12T20:18:58Z #15 1.691 8850K .......... .......... .......... .......... .......... 7% 114M 2s +2024-03-12T20:18:58Z #15 1.691 8900K .......... .......... .......... .......... .......... 7% 76.0M 2s +2024-03-12T20:18:58Z #15 1.692 8950K .......... .......... .......... .......... .......... 7% 104M 2s +2024-03-12T20:18:58Z #15 1.693 9000K .......... .......... .......... .......... .......... 7% 129M 2s +2024-03-12T20:18:58Z #15 1.693 9050K .......... .......... .......... .......... .......... 7% 77.8M 2s +2024-03-12T20:18:58Z #15 1.694 9100K .......... .......... .......... .......... .......... 7% 92.5M 2s +2024-03-12T20:18:58Z #15 1.694 9150K .......... .......... .......... .......... .......... 7% 75.2M 2s +2024-03-12T20:18:58Z #15 1.695 9200K .......... .......... .......... .......... .......... 7% 140M 2s +2024-03-12T20:18:58Z #15 1.696 9250K .......... .......... .......... .......... .......... 7% 88.6M 2s +2024-03-12T20:18:58Z #15 1.696 9300K .......... .......... .......... .......... .......... 7% 108M 2s +2024-03-12T20:18:58Z #15 1.696 9350K .......... .......... .......... .......... .......... 7% 137M 2s +2024-03-12T20:18:58Z #15 1.697 9400K .......... .......... .......... .......... .......... 7% 92.4M 2s +2024-03-12T20:18:58Z #15 1.697 9450K .......... .......... .......... .......... .......... 7% 101M 2s +2024-03-12T20:18:58Z #15 1.698 9500K .......... .......... .......... .......... .......... 7% 130M 2s +2024-03-12T20:18:58Z #15 1.699 9550K .......... .......... .......... .......... .......... 7% 94.5M 2s +2024-03-12T20:18:58Z #15 1.699 9600K .......... .......... .......... .......... .......... 7% 145M 2s +2024-03-12T20:18:58Z #15 1.699 9650K .......... .......... .......... .......... .......... 7% 74.4M 2s +2024-03-12T20:18:58Z #15 1.700 9700K .......... .......... .......... .......... .......... 7% 73.1M 2s +2024-03-12T20:18:58Z #15 1.701 9750K .......... .......... .......... .......... .......... 7% 104M 2s +2024-03-12T20:18:58Z #15 1.701 9800K .......... .......... .......... .......... .......... 7% 131M 2s +2024-03-12T20:18:58Z #15 1.701 9850K .......... .......... .......... .......... .......... 7% 115M 2s +2024-03-12T20:18:58Z #15 1.702 9900K .......... .......... .......... .......... .......... 7% 68.2M 2s +2024-03-12T20:18:58Z #15 1.706 9950K .......... .......... .......... .......... .......... 7% 134M 2s +2024-03-12T20:18:58Z #15 1.706 10000K .......... .......... .......... .......... .......... 7% 76.4M 2s +2024-03-12T20:18:58Z #15 1.706 10050K .......... .......... .......... .......... .......... 7% 103M 2s +2024-03-12T20:18:58Z #15 1.706 10100K .......... .......... .......... .......... .......... 8% 113M 2s +2024-03-12T20:18:58Z #15 1.706 10150K .......... .......... .......... .......... .......... 8% 92.7M 2s +2024-03-12T20:18:58Z #15 1.706 10200K .......... .......... .......... .......... .......... 8% 94.3M 2s +2024-03-12T20:18:58Z #15 1.706 10250K .......... .......... .......... .......... .......... 8% 123M 2s +2024-03-12T20:18:58Z #15 1.706 10300K .......... .......... .......... .......... .......... 8% 107M 2s +2024-03-12T20:18:58Z #15 1.714 10350K .......... .......... .......... .......... .......... 8% 64.3M 2s +2024-03-12T20:18:58Z #15 1.714 10400K .......... .......... .......... .......... .......... 8% 127M 2s +2024-03-12T20:18:58Z #15 1.714 10450K .......... .......... .......... .......... .......... 8% 65.6M 2s +2024-03-12T20:18:58Z #15 1.714 10500K .......... .......... .......... .......... .......... 8% 43.6M 2s +2024-03-12T20:18:58Z #15 1.714 10550K .......... .......... .......... .......... .......... 8% 59.5M 2s +2024-03-12T20:18:58Z #15 1.714 10600K .......... .......... .......... .......... .......... 8% 79.6M 2s +2024-03-12T20:18:58Z #15 1.714 10650K .......... .......... .......... .......... .......... 8% 134M 2s +2024-03-12T20:18:58Z #15 1.715 10700K .......... .......... .......... .......... .......... 8% 71.3M 2s +2024-03-12T20:18:58Z #15 1.715 10750K .......... .......... .......... .......... .......... 8% 47.1M 2s +2024-03-12T20:18:58Z #15 1.715 10800K .......... .......... .......... .......... .......... 8% 49.3M 2s +2024-03-12T20:18:58Z #15 1.715 10850K .......... .......... .......... .......... .......... 8% 68.4M 2s +2024-03-12T20:18:58Z #15 1.715 10900K .......... .......... .......... .......... .......... 8% 128M 2s +2024-03-12T20:18:58Z #15 1.715 10950K .......... .......... .......... .......... .......... 8% 94.6M 2s +2024-03-12T20:18:58Z #15 1.715 11000K .......... .......... .......... .......... .......... 8% 123M 2s +2024-03-12T20:18:58Z #15 1.715 11050K .......... .......... .......... .......... .......... 8% 63.4M 2s +2024-03-12T20:18:58Z #15 1.716 11100K .......... .......... .......... .......... .......... 8% 99.4M 2s +2024-03-12T20:18:58Z #15 1.717 11150K .......... .......... .......... .......... .......... 8% 75.9M 2s +2024-03-12T20:18:58Z #15 1.717 11200K .......... .......... .......... .......... .......... 8% 129M 2s +2024-03-12T20:18:58Z #15 1.718 11250K .......... .......... .......... .......... .......... 8% 119M 2s +2024-03-12T20:18:58Z #15 1.718 11300K .......... .......... .......... .......... .......... 8% 69.5M 2s +2024-03-12T20:18:58Z #15 1.719 11350K .......... .......... .......... .......... .......... 8% 108M 2s +2024-03-12T20:18:58Z #15 1.719 11400K .......... .......... .......... .......... .......... 9% 80.3M 2s +2024-03-12T20:18:58Z #15 1.722 11450K .......... .......... .......... .......... .......... 9% 126M 2s +2024-03-12T20:18:58Z #15 1.722 11500K .......... .......... .......... .......... .......... 9% 123M 2s +2024-03-12T20:18:58Z #15 1.722 11550K .......... .......... .......... .......... .......... 9% 51.5M 2s +2024-03-12T20:18:58Z #15 1.722 11600K .......... .......... .......... .......... .......... 9% 49.2M 2s +2024-03-12T20:18:58Z #15 1.723 11650K .......... .......... .......... .......... .......... 9% 67.3M 2s +2024-03-12T20:18:58Z #15 1.723 11700K .......... .......... .......... .......... .......... 9% 87.2M 2s +2024-03-12T20:18:58Z #15 1.726 11750K .......... .......... .......... .......... .......... 9% 96.3M 2s +2024-03-12T20:18:58Z #15 1.726 11800K .......... .......... .......... .......... .......... 9% 130M 2s +2024-03-12T20:18:58Z #15 1.726 11850K .......... .......... .......... .......... .......... 9% 72.2M 2s +2024-03-12T20:18:58Z #15 1.726 11900K .......... .......... .......... .......... .......... 9% 59.8M 2s +2024-03-12T20:18:58Z #15 1.726 11950K .......... .......... .......... .......... .......... 9% 60.0M 2s +2024-03-12T20:18:58Z #15 1.727 12000K .......... .......... .......... .......... .......... 9% 126M 2s +2024-03-12T20:18:58Z #15 1.727 12050K .......... .......... .......... .......... .......... 9% 104M 2s +2024-03-12T20:18:58Z #15 1.728 12100K .......... .......... .......... .......... .......... 9% 92.1M 2s +2024-03-12T20:18:58Z #15 1.729 12150K .......... .......... .......... .......... .......... 9% 140M 2s +2024-03-12T20:18:58Z #15 1.729 12200K .......... .......... .......... .......... .......... 9% 81.4M 2s +2024-03-12T20:18:58Z #15 1.729 12250K .......... .......... .......... .......... .......... 9% 95.2M 2s +2024-03-12T20:18:58Z #15 1.735 12300K .......... .......... .......... .......... .......... 9% 81.4M 2s +2024-03-12T20:18:58Z #15 1.735 12350K .......... .......... .......... .......... .......... 9% 43.1M 2s +2024-03-12T20:18:58Z #15 1.735 12400K .......... .......... .......... .......... .......... 9% 71.1M 2s +2024-03-12T20:18:58Z #15 1.735 12450K .......... .......... .......... .......... .......... 9% 55.4M 2s +2024-03-12T20:18:58Z #15 1.735 12500K .......... .......... .......... .......... .......... 9% 57.3M 2s +2024-03-12T20:18:58Z #15 1.735 12550K .......... .......... .......... .......... .......... 9% 95.4M 2s +2024-03-12T20:18:58Z #15 1.735 12600K .......... .......... .......... .......... .......... 9% 99.9M 2s +2024-03-12T20:18:58Z #15 1.735 12650K .......... .......... .......... .......... .......... 10% 127M 1s +2024-03-12T20:18:58Z #15 1.735 12700K .......... .......... .......... .......... .......... 10% 65.5M 1s +2024-03-12T20:18:58Z #15 1.736 12750K .......... .......... .......... .......... .......... 10% 122M 1s +2024-03-12T20:18:58Z #15 1.737 12800K .......... .......... .......... .......... .......... 10% 65.1M 1s +2024-03-12T20:18:58Z #15 1.737 12850K .......... .......... .......... .......... .......... 10% 121M 1s +2024-03-12T20:18:58Z #15 1.738 12900K .......... .......... .......... .......... .......... 10% 116M 1s +2024-03-12T20:18:58Z #15 1.738 12950K .......... .......... .......... .......... .......... 10% 55.0M 1s +2024-03-12T20:18:58Z #15 1.739 13000K .......... .......... .......... .......... .......... 10% 117M 1s +2024-03-12T20:18:58Z #15 1.739 13050K .......... .......... .......... .......... .......... 10% 74.5M 1s +2024-03-12T20:18:58Z #15 1.740 13100K .......... .......... .......... .......... .......... 10% 73.9M 1s +2024-03-12T20:18:58Z #15 1.741 13150K .......... .......... .......... .......... .......... 10% 112M 1s +2024-03-12T20:18:58Z #15 1.741 13200K .......... .......... .......... .......... .......... 10% 87.2M 1s +2024-03-12T20:18:58Z #15 1.743 13250K .......... .......... .......... .......... .......... 10% 79.7M 1s +2024-03-12T20:18:58Z #15 1.743 13300K .......... .......... .......... .......... .......... 10% 57.9M 1s +2024-03-12T20:18:58Z #15 1.743 13350K .......... .......... .......... .......... .......... 10% 90.9M 1s +2024-03-12T20:18:58Z #15 1.746 13400K .......... .......... .......... .......... .......... 10% 83.3M 1s +2024-03-12T20:18:58Z #15 1.746 13450K .......... .......... .......... .......... .......... 10% 76.9M 1s +2024-03-12T20:18:58Z #15 1.746 13500K .......... .......... .......... .......... .......... 10% 50.8M 1s +2024-03-12T20:18:58Z #15 1.746 13550K .......... .......... .......... .......... .......... 10% 102M 1s +2024-03-12T20:18:58Z #15 1.746 13600K .......... .......... .......... .......... .......... 10% 110M 1s +2024-03-12T20:18:58Z #15 1.747 13650K .......... .......... .......... .......... .......... 10% 107M 1s +2024-03-12T20:18:58Z #15 1.747 13700K .......... .......... .......... .......... .......... 10% 120M 1s +2024-03-12T20:18:58Z #15 1.748 13750K .......... .......... .......... .......... .......... 10% 80.5M 1s +2024-03-12T20:18:58Z #15 1.748 13800K .......... .......... .......... .......... .......... 10% 142M 1s +2024-03-12T20:18:58Z #15 1.749 13850K .......... .......... .......... .......... .......... 10% 119M 1s +2024-03-12T20:18:58Z #15 1.749 13900K .......... .......... .......... .......... .......... 11% 137M 1s +2024-03-12T20:18:58Z #15 1.750 13950K .......... .......... .......... .......... .......... 11% 76.8M 1s +2024-03-12T20:18:58Z #15 1.751 14000K .......... .......... .......... .......... .......... 11% 161M 1s +2024-03-12T20:18:58Z #15 1.751 14050K .......... .......... .......... .......... .......... 11% 54.8M 1s +2024-03-12T20:18:58Z #15 1.752 14100K .......... .......... .......... .......... .......... 11% 99.8M 1s +2024-03-12T20:18:58Z #15 1.752 14150K .......... .......... .......... .......... .......... 11% 88.7M 1s +2024-03-12T20:18:58Z #15 1.752 14200K .......... .......... .......... .......... .......... 11% 99.1M 1s +2024-03-12T20:18:58Z #15 1.754 14250K .......... .......... .......... .......... .......... 11% 140M 1s +2024-03-12T20:18:58Z #15 1.754 14300K .......... .......... .......... .......... .......... 11% 58.1M 1s +2024-03-12T20:18:58Z #15 1.755 14350K .......... .......... .......... .......... .......... 11% 78.8M 1s +2024-03-12T20:18:58Z #15 1.755 14400K .......... .......... .......... .......... .......... 11% 70.4M 1s +2024-03-12T20:18:58Z #15 1.756 14450K .......... .......... .......... .......... .......... 11% 117M 1s +2024-03-12T20:18:58Z #15 1.756 14500K .......... .......... .......... .......... .......... 11% 105M 1s +2024-03-12T20:18:58Z #15 1.756 14550K .......... .......... .......... .......... .......... 11% 65.1M 1s +2024-03-12T20:18:58Z #15 1.758 14600K .......... .......... .......... .......... .......... 11% 119M 1s +2024-03-12T20:18:58Z #15 1.758 14650K .......... .......... .......... .......... .......... 11% 50.6M 1s +2024-03-12T20:18:58Z #15 1.759 14700K .......... .......... .......... .......... .......... 11% 137M 1s +2024-03-12T20:18:58Z #15 1.759 14750K .......... .......... .......... .......... .......... 11% 84.3M 1s +2024-03-12T20:18:58Z #15 1.760 14800K .......... .......... .......... .......... .......... 11% 65.0M 1s +2024-03-12T20:18:58Z #15 1.760 14850K .......... .......... .......... .......... .......... 11% 78.2M 1s +2024-03-12T20:18:58Z #15 1.761 14900K .......... .......... .......... .......... .......... 11% 78.6M 1s +2024-03-12T20:18:58Z #15 1.762 14950K .......... .......... .......... .......... .......... 11% 117M 1s +2024-03-12T20:18:58Z #15 1.762 15000K .......... .......... .......... .......... .......... 11% 49.9M 1s +2024-03-12T20:18:58Z #15 1.764 15050K .......... .......... .......... .......... .......... 11% 96.2M 1s +2024-03-12T20:18:58Z #15 1.764 15100K .......... .......... .......... .......... .......... 11% 74.1M 1s +2024-03-12T20:18:58Z #15 1.764 15150K .......... .......... .......... .......... .......... 11% 33.5M 1s +2024-03-12T20:18:58Z #15 1.765 15200K .......... .......... .......... .......... .......... 12% 123M 1s +2024-03-12T20:18:58Z #15 1.768 15250K .......... .......... .......... .......... .......... 12% 69.7M 1s +2024-03-12T20:18:58Z #15 1.768 15300K .......... .......... .......... .......... .......... 12% 38.3M 1s +2024-03-12T20:18:58Z #15 1.768 15350K .......... .......... .......... .......... .......... 12% 67.0M 1s +2024-03-12T20:18:58Z #15 1.768 15400K .......... .......... .......... .......... .......... 12% 63.3M 1s +2024-03-12T20:18:58Z #15 1.770 15450K .......... .......... .......... .......... .......... 12% 132M 1s +2024-03-12T20:18:58Z #15 1.770 15500K .......... .......... .......... .......... .......... 12% 55.6M 1s +2024-03-12T20:18:58Z #15 1.770 15550K .......... .......... .......... .......... .......... 12% 62.5M 1s +2024-03-12T20:18:58Z #15 1.772 15600K .......... .......... .......... .......... .......... 12% 77.8M 1s +2024-03-12T20:18:58Z #15 1.772 15650K .......... .......... .......... .......... .......... 12% 75.6M 1s +2024-03-12T20:18:58Z #15 1.774 15700K .......... .......... .......... .......... .......... 12% 57.1M 1s +2024-03-12T20:18:58Z #15 1.774 15750K .......... .......... .......... .......... .......... 12% 115M 1s +2024-03-12T20:18:58Z #15 1.774 15800K .......... .......... .......... .......... .......... 12% 47.6M 1s +2024-03-12T20:18:58Z #15 1.776 15850K .......... .......... .......... .......... .......... 12% 86.1M 1s +2024-03-12T20:18:58Z #15 1.776 15900K .......... .......... .......... .......... .......... 12% 103M 1s +2024-03-12T20:18:58Z #15 1.776 15950K .......... .......... .......... .......... .......... 12% 24.2M 1s +2024-03-12T20:18:58Z #15 1.782 16000K .......... .......... .......... .......... .......... 12% 113M 1s +2024-03-12T20:18:58Z #15 1.782 16050K .......... .......... .......... .......... .......... 12% 155M 1s +2024-03-12T20:18:58Z #15 1.782 16100K .......... .......... .......... .......... .......... 12% 32.8M 1s +2024-03-12T20:18:58Z #15 1.782 16150K .......... .......... .......... .......... .......... 12% 38.1M 1s +2024-03-12T20:18:58Z #15 1.782 16200K .......... .......... .......... .......... .......... 12% 53.1M 1s +2024-03-12T20:18:58Z #15 1.784 16250K .......... .......... .......... .......... .......... 12% 124M 1s +2024-03-12T20:18:58Z #15 1.784 16300K .......... .......... .......... .......... .......... 12% 102M 1s +2024-03-12T20:18:58Z #15 1.784 16350K .......... .......... .......... .......... .......... 12% 77.9M 1s +2024-03-12T20:18:58Z #15 1.784 16400K .......... .......... .......... .......... .......... 12% 51.8M 1s +2024-03-12T20:18:58Z #15 1.785 16450K .......... .......... .......... .......... .......... 13% 76.8M 1s +2024-03-12T20:18:58Z #15 1.785 16500K .......... .......... .......... .......... .......... 13% 52.0M 1s +2024-03-12T20:18:58Z #15 1.788 16550K .......... .......... .......... .......... .......... 13% 71.4M 1s +2024-03-12T20:18:58Z #15 1.788 16600K .......... .......... .......... .......... .......... 13% 127M 1s +2024-03-12T20:18:58Z #15 1.788 16650K .......... .......... .......... .......... .......... 13% 41.5M 1s +2024-03-12T20:18:58Z #15 1.790 16700K .......... .......... .......... .......... .......... 13% 90.2M 1s +2024-03-12T20:18:58Z #15 1.790 16750K .......... .......... .......... .......... .......... 13% 106M 1s +2024-03-12T20:18:58Z #15 1.790 16800K .......... .......... .......... .......... .......... 13% 78.0M 1s +2024-03-12T20:18:58Z #15 1.790 16850K .......... .......... .......... .......... .......... 13% 59.6M 1s +2024-03-12T20:18:58Z #15 1.791 16900K .......... .......... .......... .......... .......... 13% 68.0M 1s +2024-03-12T20:18:58Z #15 1.792 16950K .......... .......... .......... .......... .......... 13% 149M 1s +2024-03-12T20:18:58Z #15 1.792 17000K .......... .......... .......... .......... .......... 13% 119M 1s +2024-03-12T20:18:58Z #15 1.792 17050K .......... .......... .......... .......... .......... 13% 49.4M 1s +2024-03-12T20:18:58Z #15 1.794 17100K .......... .......... .......... .......... .......... 13% 149M 1s +2024-03-12T20:18:58Z #15 1.794 17150K .......... .......... .......... .......... .......... 13% 52.6M 1s +2024-03-12T20:18:58Z #15 1.795 17200K .......... .......... .......... .......... .......... 13% 146M 1s +2024-03-12T20:18:58Z #15 1.795 17250K .......... .......... .......... .......... .......... 13% 44.1M 1s +2024-03-12T20:18:58Z #15 1.796 17300K .......... .......... .......... .......... .......... 13% 335K 2s +2024-03-12T20:18:58Z #15 1.945 17350K .......... .......... .......... .......... .......... 13% 63.2M 2s +2024-03-12T20:18:58Z #15 1.946 17400K .......... .......... .......... .......... .......... 13% 122M 2s +2024-03-12T20:18:58Z #15 1.946 17450K .......... .......... .......... .......... .......... 13% 70.5M 2s +2024-03-12T20:18:58Z #15 1.947 17500K .......... .......... .......... .......... .......... 13% 75.2M 2s +2024-03-12T20:18:58Z #15 1.948 17550K .......... .......... .......... .......... .......... 13% 71.5M 2s +2024-03-12T20:18:58Z #15 1.949 17600K .......... .......... .......... .......... .......... 13% 101M 2s +2024-03-12T20:18:58Z #15 1.949 17650K .......... .......... .......... .......... .......... 13% 85.4M 2s +2024-03-12T20:18:58Z #15 1.950 17700K .......... .......... .......... .......... .......... 14% 88.4M 2s +2024-03-12T20:18:58Z #15 1.950 17750K .......... .......... .......... .......... .......... 14% 129M 2s +2024-03-12T20:18:58Z #15 1.950 17800K .......... .......... .......... .......... .......... 14% 85.0M 2s +2024-03-12T20:18:58Z #15 1.951 17850K .......... .......... .......... .......... .......... 14% 102M 2s +2024-03-12T20:18:58Z #15 1.952 17900K .......... .......... .......... .......... .......... 14% 64.2M 2s +2024-03-12T20:18:58Z #15 1.952 17950K .......... .......... .......... .......... .......... 14% 69.2M 2s +2024-03-12T20:18:58Z #15 1.953 18000K .......... .......... .......... .......... .......... 14% 65.2M 2s +2024-03-12T20:18:58Z #15 1.954 18050K .......... .......... .......... .......... .......... 14% 40.7M 2s +2024-03-12T20:18:58Z #15 1.955 18100K .......... .......... .......... .......... .......... 14% 40.4M 2s +2024-03-12T20:18:58Z #15 1.956 18150K .......... .......... .......... .......... .......... 14% 45.1M 2s +2024-03-12T20:18:58Z #15 1.958 18200K .......... .......... .......... .......... .......... 14% 28.9M 2s +2024-03-12T20:18:58Z #15 1.962 18250K .......... .......... .......... .......... .......... 14% 171M 2s +2024-03-12T20:18:58Z #15 1.962 18300K .......... .......... .......... .......... .......... 14% 152M 2s +2024-03-12T20:18:58Z #15 1.962 18350K .......... .......... .......... .......... .......... 14% 160M 2s +2024-03-12T20:18:58Z #15 1.962 18400K .......... .......... .......... .......... .......... 14% 141M 2s +2024-03-12T20:18:58Z #15 1.962 18450K .......... .......... .......... .......... .......... 14% 164M 2s +2024-03-12T20:18:58Z #15 1.962 18500K .......... .......... .......... .......... .......... 14% 171M 2s +2024-03-12T20:18:58Z #15 1.962 18550K .......... .......... .......... .......... .......... 14% 151M 2s +2024-03-12T20:18:58Z #15 1.962 18600K .......... .......... .......... .......... .......... 14% 152M 2s +2024-03-12T20:18:58Z #15 1.962 18650K .......... .......... .......... .......... .......... 14% 157M 2s +2024-03-12T20:18:58Z #15 1.962 18700K .......... .......... .......... .......... .......... 14% 152M 2s +2024-03-12T20:18:58Z #15 1.962 18750K .......... .......... .......... .......... .......... 14% 120M 2s +2024-03-12T20:18:58Z #15 1.962 18800K .......... .......... .......... .......... .......... 14% 167M 2s +2024-03-12T20:18:58Z #15 1.963 18850K .......... .......... .......... .......... .......... 14% 170M 2s +2024-03-12T20:18:58Z #15 1.963 18900K .......... .......... .......... .......... .......... 14% 142M 2s +2024-03-12T20:18:58Z #15 1.964 18950K .......... .......... .......... .......... .......... 14% 150M 2s +2024-03-12T20:18:58Z #15 1.964 19000K .......... .......... .......... .......... .......... 15% 128M 2s +2024-03-12T20:18:58Z #15 1.964 19050K .......... .......... .......... .......... .......... 15% 158M 2s +2024-03-12T20:18:58Z #15 1.964 19100K .......... .......... .......... .......... .......... 15% 156M 2s +2024-03-12T20:18:58Z #15 1.965 19150K .......... .......... .......... .......... .......... 15% 141M 2s +2024-03-12T20:18:58Z #15 1.965 19200K .......... .......... .......... .......... .......... 15% 123M 2s +2024-03-12T20:18:58Z #15 1.966 19250K .......... .......... .......... .......... .......... 15% 133M 2s +2024-03-12T20:18:58Z #15 1.966 19300K .......... .......... .......... .......... .......... 15% 127M 2s +2024-03-12T20:18:58Z #15 1.966 19350K .......... .......... .......... .......... .......... 15% 99.3M 2s +2024-03-12T20:18:58Z #15 1.967 19400K .......... .......... .......... .......... .......... 15% 125M 2s +2024-03-12T20:18:58Z #15 1.967 19450K .......... .......... .......... .......... .......... 15% 118M 2s +2024-03-12T20:18:58Z #15 1.968 19500K .......... .......... .......... .......... .......... 15% 118M 2s +2024-03-12T20:18:58Z #15 1.968 19550K .......... .......... .......... .......... .......... 15% 111M 2s +2024-03-12T20:18:58Z #15 1.968 19600K .......... .......... .......... .......... .......... 15% 103M 2s +2024-03-12T20:18:58Z #15 1.969 19650K .......... .......... .......... .......... .......... 15% 121M 2s +2024-03-12T20:18:58Z #15 1.969 19700K .......... .......... .......... .......... .......... 15% 104M 2s +2024-03-12T20:18:58Z #15 1.970 19750K .......... .......... .......... .......... .......... 15% 44.5M 2s +2024-03-12T20:18:58Z #15 1.971 19800K .......... .......... .......... .......... .......... 15% 117M 2s +2024-03-12T20:18:58Z #15 1.971 19850K .......... .......... .......... .......... .......... 15% 123M 2s +2024-03-12T20:18:58Z #15 1.972 19900K .......... .......... .......... .......... .......... 15% 103M 2s +2024-03-12T20:18:58Z #15 1.972 19950K .......... .......... .......... .......... .......... 15% 109M 2s +2024-03-12T20:18:58Z #15 1.973 20000K .......... .......... .......... .......... .......... 15% 70.7M 2s +2024-03-12T20:18:58Z #15 1.973 20050K .......... .......... .......... .......... .......... 15% 38.7M 2s +2024-03-12T20:18:58Z #15 1.975 20100K .......... .......... .......... .......... .......... 15% 114M 2s +2024-03-12T20:18:58Z #15 1.975 20150K .......... .......... .......... .......... .......... 15% 54.1M 2s +2024-03-12T20:18:58Z #15 1.976 20200K .......... .......... .......... .......... .......... 15% 117M 2s +2024-03-12T20:18:58Z #15 1.976 20250K .......... .......... .......... .......... .......... 16% 47.3M 2s +2024-03-12T20:18:58Z #15 1.977 20300K .......... .......... .......... .......... .......... 16% 103M 2s +2024-03-12T20:18:58Z #15 1.978 20350K .......... .......... .......... .......... .......... 16% 114M 2s +2024-03-12T20:18:58Z #15 1.978 20400K .......... .......... .......... .......... .......... 16% 105M 2s +2024-03-12T20:18:58Z #15 1.979 20450K .......... .......... .......... .......... .......... 16% 140M 2s +2024-03-12T20:18:58Z #15 1.979 20500K .......... .......... .......... .......... .......... 16% 113M 2s +2024-03-12T20:18:58Z #15 1.981 20550K .......... .......... .......... .......... .......... 16% 132M 2s +2024-03-12T20:18:58Z #15 1.981 20600K .......... .......... .......... .......... .......... 16% 145M 2s +2024-03-12T20:18:58Z #15 1.981 20650K .......... .......... .......... .......... .......... 16% 112M 2s +2024-03-12T20:18:58Z #15 1.981 20700K .......... .......... .......... .......... .......... 16% 146M 2s +2024-03-12T20:18:58Z #15 1.981 20750K .......... .......... .......... .......... .......... 16% 110M 2s +2024-03-12T20:18:58Z #15 1.981 20800K .......... .......... .......... .......... .......... 16% 692K 2s +2024-03-12T20:18:58Z #15 2.054 20850K .......... .......... .......... .......... .......... 16% 71.5M 2s +2024-03-12T20:18:58Z #15 2.056 20900K .......... .......... .......... .......... .......... 16% 63.6M 2s +2024-03-12T20:18:58Z #15 2.056 20950K .......... .......... .......... .......... .......... 16% 143M 2s +2024-03-12T20:18:58Z #15 2.056 21000K .......... .......... .......... .......... .......... 16% 105M 2s +2024-03-12T20:18:58Z #15 2.056 21050K .......... .......... .......... .......... .......... 16% 132M 2s +2024-03-12T20:18:58Z #15 2.057 21100K .......... .......... .......... .......... .......... 16% 141M 2s +2024-03-12T20:18:58Z #15 2.057 21150K .......... .......... .......... .......... .......... 16% 136M 2s +2024-03-12T20:18:58Z #15 2.065 21200K .......... .......... .......... .......... .......... 16% 127M 2s +2024-03-12T20:18:58Z #15 2.065 21250K .......... .......... .......... .......... .......... 16% 131M 2s +2024-03-12T20:18:58Z #15 2.065 21300K .......... .......... .......... .......... .......... 16% 58.0M 2s +2024-03-12T20:18:58Z #15 2.065 21350K .......... .......... .......... .......... .......... 16% 174M 2s +2024-03-12T20:18:58Z #15 2.065 21400K .......... .......... .......... .......... .......... 16% 146M 2s +2024-03-12T20:18:58Z #15 2.065 21450K .......... .......... .......... .......... .......... 16% 170M 2s +2024-03-12T20:18:58Z #15 2.065 21500K .......... .......... .......... .......... .......... 16% 177M 2s +2024-03-12T20:18:58Z #15 2.065 21550K .......... .......... .......... .......... .......... 17% 176M 2s +2024-03-12T20:18:58Z #15 2.065 21600K .......... .......... .......... .......... .......... 17% 139M 2s +2024-03-12T20:18:58Z #15 2.065 21650K .......... .......... .......... .......... .......... 17% 181M 2s +2024-03-12T20:18:58Z #15 2.065 21700K .......... .......... .......... .......... .......... 17% 167M 2s +2024-03-12T20:18:58Z #15 2.065 21750K .......... .......... .......... .......... .......... 17% 165M 2s +2024-03-12T20:18:58Z #15 2.065 21800K .......... .......... .......... .......... .......... 17% 164M 2s +2024-03-12T20:18:58Z #15 2.065 21850K .......... .......... .......... .......... .......... 17% 132M 2s +2024-03-12T20:18:58Z #15 2.065 21900K .......... .......... .......... .......... .......... 17% 169M 2s +2024-03-12T20:18:58Z #15 2.065 21950K .......... .......... .......... .......... .......... 17% 148M 2s +2024-03-12T20:18:58Z #15 2.065 22000K .......... .......... .......... .......... .......... 17% 160M 2s +2024-03-12T20:18:58Z #15 2.065 22050K .......... .......... .......... .......... .......... 17% 174M 2s +2024-03-12T20:18:58Z #15 2.065 22100K .......... .......... .......... .......... .......... 17% 180M 2s +2024-03-12T20:18:58Z #15 2.065 22150K .......... .......... .......... .......... .......... 17% 148M 2s +2024-03-12T20:18:58Z #15 2.065 22200K .......... .......... .......... .......... .......... 17% 162M 2s +2024-03-12T20:18:58Z #15 2.065 22250K .......... .......... .......... .......... .......... 17% 173M 2s +2024-03-12T20:18:58Z #15 2.065 22300K .......... .......... .......... .......... .......... 17% 164M 2s +2024-03-12T20:18:58Z #15 2.065 22350K .......... .......... .......... .......... .......... 17% 183M 2s +2024-03-12T20:18:58Z #15 2.065 22400K .......... .......... .......... .......... .......... 17% 129M 2s +2024-03-12T20:18:58Z #15 2.065 22450K .......... .......... .......... .......... .......... 17% 3.80M 2s +2024-03-12T20:18:58Z #15 2.079 22500K .......... .......... .......... .......... .......... 17% 25.7M 2s +2024-03-12T20:18:58Z #15 2.081 22550K .......... .......... .......... .......... .......... 17% 66.9M 2s +2024-03-12T20:18:58Z #15 2.081 22600K .......... .......... .......... .......... .......... 17% 31.5M 2s +2024-03-12T20:18:58Z #15 2.084 22650K .......... .......... .......... .......... .......... 17% 13.9M 2s +2024-03-12T20:18:58Z #15 2.086 22700K .......... .......... .......... .......... .......... 17% 15.1M 2s +2024-03-12T20:18:58Z #15 2.089 22750K .......... .......... .......... .......... .......... 17% 31.7M 2s +2024-03-12T20:18:58Z #15 2.091 22800K .......... .......... .......... .......... .......... 18% 32.9M 2s +2024-03-12T20:18:58Z #15 2.092 22850K .......... .......... .......... .......... .......... 18% 30.7M 2s +2024-03-12T20:18:58Z #15 2.094 22900K .......... .......... .......... .......... .......... 18% 143M 2s +2024-03-12T20:18:58Z #15 2.094 22950K .......... .......... .......... .......... .......... 18% 43.4M 2s +2024-03-12T20:18:58Z #15 2.095 23000K .......... .......... .......... .......... .......... 18% 34.3M 2s +2024-03-12T20:18:58Z #15 2.097 23050K .......... .......... .......... .......... .......... 18% 33.4M 2s +2024-03-12T20:18:58Z #15 2.098 23100K .......... .......... .......... .......... .......... 18% 15.7M 2s +2024-03-12T20:18:58Z #15 2.101 23150K .......... .......... .......... .......... .......... 18% 23.2M 2s +2024-03-12T20:18:58Z #15 2.103 23200K .......... .......... .......... .......... .......... 18% 17.6M 2s +2024-03-12T20:18:58Z #15 2.107 23250K .......... .......... .......... .......... .......... 18% 42.6M 2s +2024-03-12T20:18:58Z #15 2.107 23300K .......... .......... .......... .......... .......... 18% 30.5M 2s +2024-03-12T20:18:58Z #15 2.111 23350K .......... .......... .......... .......... .......... 18% 17.4M 2s +2024-03-12T20:18:58Z #15 2.111 23400K .......... .......... .......... .......... .......... 18% 31.8M 2s +2024-03-12T20:18:58Z #15 2.113 23450K .......... .......... .......... .......... .......... 18% 26.1M 2s +2024-03-12T20:18:58Z #15 2.116 23500K .......... .......... .......... .......... .......... 18% 44.2M 2s +2024-03-12T20:18:58Z #15 2.116 23550K .......... .......... .......... .......... .......... 18% 33.0M 2s +2024-03-12T20:18:58Z #15 2.118 23600K .......... .......... .......... .......... .......... 18% 26.0M 2s +2024-03-12T20:18:58Z #15 2.119 23650K .......... .......... .......... .......... .......... 18% 29.0M 2s +2024-03-12T20:18:58Z #15 2.121 23700K .......... .......... .......... .......... .......... 18% 22.3M 2s +2024-03-12T20:18:58Z #15 2.124 23750K .......... .......... .......... .......... .......... 18% 150M 2s +2024-03-12T20:18:58Z #15 2.124 23800K .......... .......... .......... .......... .......... 18% 149M 2s +2024-03-12T20:18:58Z #15 2.124 23850K .......... .......... .......... .......... .......... 18% 120M 2s +2024-03-12T20:18:58Z #15 2.124 23900K .......... .......... .......... .......... .......... 18% 115M 2s +2024-03-12T20:18:58Z #15 2.125 23950K .......... .......... .......... .......... .......... 18% 127M 2s +2024-03-12T20:18:58Z #15 2.125 24000K .......... .......... .......... .......... .......... 18% 119M 2s +2024-03-12T20:18:58Z #15 2.125 24050K .......... .......... .......... .......... .......... 19% 118M 2s +2024-03-12T20:18:58Z #15 2.126 24100K .......... .......... .......... .......... .......... 19% 175M 2s +2024-03-12T20:18:58Z #15 2.126 24150K .......... .......... .......... .......... .......... 19% 124M 2s +2024-03-12T20:18:58Z #15 2.126 24200K .......... .......... .......... .......... .......... 19% 125M 2s +2024-03-12T20:18:58Z #15 2.127 24250K .......... .......... .......... .......... .......... 19% 126M 2s +2024-03-12T20:18:58Z #15 2.128 24300K .......... .......... .......... .......... .......... 19% 124M 2s +2024-03-12T20:18:58Z #15 2.128 24350K .......... .......... .......... .......... .......... 19% 129M 2s +2024-03-12T20:18:58Z #15 2.128 24400K .......... .......... .......... .......... .......... 19% 118M 2s +2024-03-12T20:18:58Z #15 2.128 24450K .......... .......... .......... .......... .......... 19% 123M 2s +2024-03-12T20:18:58Z #15 2.129 24500K .......... .......... .......... .......... .......... 19% 125M 2s +2024-03-12T20:18:58Z #15 2.129 24550K .......... .......... .......... .......... .......... 19% 128M 2s +2024-03-12T20:18:58Z #15 2.130 24600K .......... .......... .......... .......... .......... 19% 128M 2s +2024-03-12T20:18:58Z #15 2.130 24650K .......... .......... .......... .......... .......... 19% 103M 2s +2024-03-12T20:18:58Z #15 2.130 24700K .......... .......... .......... .......... .......... 19% 127M 2s +2024-03-12T20:18:58Z #15 2.131 24750K .......... .......... .......... .......... .......... 19% 132M 2s +2024-03-12T20:18:58Z #15 2.132 24800K .......... .......... .......... .......... .......... 19% 115M 2s +2024-03-12T20:18:58Z #15 2.132 24850K .......... .......... .......... .......... .......... 19% 129M 2s +2024-03-12T20:18:58Z #15 2.132 24900K .......... .......... .......... .......... .......... 19% 121M 2s +2024-03-12T20:18:58Z #15 2.133 24950K .......... .......... .......... .......... .......... 19% 138M 2s +2024-03-12T20:18:58Z #15 2.133 25000K .......... .......... .......... .......... .......... 19% 138M 2s +2024-03-12T20:18:58Z #15 2.133 25050K .......... .......... .......... .......... .......... 19% 132M 2s +2024-03-12T20:18:58Z #15 2.134 25100K .......... .......... .......... .......... .......... 19% 102M 2s +2024-03-12T20:18:58Z #15 2.137 25150K .......... .......... .......... .......... .......... 19% 129M 2s +2024-03-12T20:18:58Z #15 2.137 25200K .......... .......... .......... .......... .......... 19% 99.3M 2s +2024-03-12T20:18:58Z #15 2.137 25250K .......... .......... .......... .......... .......... 19% 151M 2s +2024-03-12T20:18:58Z #15 2.137 25300K .......... .......... .......... .......... .......... 19% 129M 2s +2024-03-12T20:18:58Z #15 2.137 25350K .......... .......... .......... .......... .......... 20% 123M 2s +2024-03-12T20:18:58Z #15 2.137 25400K .......... .......... .......... .......... .......... 20% 131M 2s +2024-03-12T20:18:58Z #15 2.137 25450K .......... .......... .......... .......... .......... 20% 134M 2s +2024-03-12T20:18:58Z #15 2.137 25500K .......... .......... .......... .......... .......... 20% 142M 2s +2024-03-12T20:18:58Z #15 2.137 25550K .......... .......... .......... .......... .......... 20% 132M 2s +2024-03-12T20:18:58Z #15 2.138 25600K .......... .......... .......... .......... .......... 20% 112M 2s +2024-03-12T20:18:58Z #15 2.138 25650K .......... .......... .......... .......... .......... 20% 128M 2s +2024-03-12T20:18:58Z #15 2.138 25700K .......... .......... .......... .......... .......... 20% 136M 2s +2024-03-12T20:18:58Z #15 2.139 25750K .......... .......... .......... .......... .......... 20% 151M 2s +2024-03-12T20:18:58Z #15 2.139 25800K .......... .......... .......... .......... .......... 20% 134M 2s +2024-03-12T20:18:58Z #15 2.140 25850K .......... .......... .......... .......... .......... 20% 122M 2s +2024-03-12T20:18:58Z #15 2.140 25900K .......... .......... .......... .......... .......... 20% 127M 2s +2024-03-12T20:18:58Z #15 2.140 25950K .......... .......... .......... .......... .......... 20% 116M 2s +2024-03-12T20:18:58Z #15 2.141 26000K .......... .......... .......... .......... .......... 20% 118M 2s +2024-03-12T20:18:58Z #15 2.141 26050K .......... .......... .......... .......... .......... 20% 147M 2s +2024-03-12T20:18:58Z #15 2.141 26100K .......... .......... .......... .......... .......... 20% 109M 2s +2024-03-12T20:18:58Z #15 2.142 26150K .......... .......... .......... .......... .......... 20% 113M 2s +2024-03-12T20:18:58Z #15 2.142 26200K .......... .......... .......... .......... .......... 20% 131M 2s +2024-03-12T20:18:58Z #15 2.142 26250K .......... .......... .......... .......... .......... 20% 147M 2s +2024-03-12T20:18:58Z #15 2.143 26300K .......... .......... .......... .......... .......... 20% 124M 2s +2024-03-12T20:18:58Z #15 2.145 26350K .......... .......... .......... .......... .......... 20% 136M 2s +2024-03-12T20:18:58Z #15 2.145 26400K .......... .......... .......... .......... .......... 20% 151M 2s +2024-03-12T20:18:58Z #15 2.145 26450K .......... .......... .......... .......... .......... 20% 123M 2s +2024-03-12T20:18:58Z #15 2.145 26500K .......... .......... .......... .......... .......... 20% 143M 2s +2024-03-12T20:18:58Z #15 2.145 26550K .......... .......... .......... .......... .......... 20% 124M 2s +2024-03-12T20:18:58Z #15 2.145 26600K .......... .......... .......... .......... .......... 21% 135M 2s +2024-03-12T20:18:58Z #15 2.145 26650K .......... .......... .......... .......... .......... 21% 147M 2s +2024-03-12T20:18:58Z #15 2.146 26700K .......... .......... .......... .......... .......... 21% 108M 2s +2024-03-12T20:18:58Z #15 2.146 26750K .......... .......... .......... .......... .......... 21% 102M 2s +2024-03-12T20:18:58Z #15 2.147 26800K .......... .......... .......... .......... .......... 21% 129M 2s +2024-03-12T20:18:58Z #15 2.147 26850K .......... .......... .......... .......... .......... 21% 121M 2s +2024-03-12T20:18:58Z #15 2.147 26900K .......... .......... .......... .......... .......... 21% 112M 2s +2024-03-12T20:18:58Z #15 2.148 26950K .......... .......... .......... .......... .......... 21% 134M 2s +2024-03-12T20:18:58Z #15 2.148 27000K .......... .......... .......... .......... .......... 21% 129M 2s +2024-03-12T20:18:58Z #15 2.149 27050K .......... .......... .......... .......... .......... 21% 122M 2s +2024-03-12T20:18:58Z #15 2.150 27100K .......... .......... .......... .......... .......... 21% 133M 2s +2024-03-12T20:18:58Z #15 2.150 27150K .......... .......... .......... .......... .......... 21% 109M 2s +2024-03-12T20:18:58Z #15 2.150 27200K .......... .......... .......... .......... .......... 21% 134M 2s +2024-03-12T20:18:58Z #15 2.151 27250K .......... .......... .......... .......... .......... 21% 119M 2s +2024-03-12T20:18:58Z #15 2.151 27300K .......... .......... .......... .......... .......... 21% 140M 2s +2024-03-12T20:18:58Z #15 2.152 27350K .......... .......... .......... .......... .......... 21% 134M 2s +2024-03-12T20:18:58Z #15 2.152 27400K .......... .......... .......... .......... .......... 21% 126M 2s +2024-03-12T20:18:58Z #15 2.152 27450K .......... .......... .......... .......... .......... 21% 151M 2s +2024-03-12T20:18:58Z #15 2.152 27500K .......... .......... .......... .......... .......... 21% 142M 2s +2024-03-12T20:18:58Z #15 2.152 27550K .......... .......... .......... .......... .......... 21% 129M 2s +2024-03-12T20:18:58Z #15 2.154 27600K .......... .......... .......... .......... .......... 21% 135M 2s +2024-03-12T20:18:58Z #15 2.154 27650K .......... .......... .......... .......... .......... 21% 155M 2s +2024-03-12T20:18:58Z #15 2.154 27700K .......... .......... .......... .......... .......... 21% 78.5M 2s +2024-03-12T20:18:58Z #15 2.154 27750K .......... .......... .......... .......... .......... 21% 129M 2s +2024-03-12T20:18:58Z #15 2.155 27800K .......... .......... .......... .......... .......... 21% 170M 2s +2024-03-12T20:18:58Z #15 2.155 27850K .......... .......... .......... .......... .......... 22% 174M 2s +2024-03-12T20:18:58Z #15 2.155 27900K .......... .......... .......... .......... .......... 22% 176M 2s +2024-03-12T20:18:58Z #15 2.155 27950K .......... .......... .......... .......... .......... 22% 143M 2s +2024-03-12T20:18:58Z #15 2.156 28000K .......... .......... .......... .......... .......... 22% 160M 2s +2024-03-12T20:18:58Z #15 2.156 28050K .......... .......... .......... .......... .......... 22% 171M 2s +2024-03-12T20:18:58Z #15 2.156 28100K .......... .......... .......... .......... .......... 22% 153M 2s +2024-03-12T20:18:58Z #15 2.157 28150K .......... .......... .......... .......... .......... 22% 174M 2s +2024-03-12T20:18:58Z #15 2.157 28200K .......... .......... .......... .......... .......... 22% 162M 2s +2024-03-12T20:18:58Z #15 2.157 28250K .......... .......... .......... .......... .......... 22% 130M 2s +2024-03-12T20:18:58Z #15 2.158 28300K .......... .......... .......... .......... .......... 22% 149M 2s +2024-03-12T20:18:58Z #15 2.158 28350K .......... .......... .......... .......... .......... 22% 151M 2s +2024-03-12T20:18:58Z #15 2.158 28400K .......... .......... .......... .......... .......... 22% 171M 2s +2024-03-12T20:18:58Z #15 2.162 28450K .......... .......... .......... .......... .......... 22% 159M 2s +2024-03-12T20:18:58Z #15 2.162 28500K .......... .......... .......... .......... .......... 22% 162M 2s +2024-03-12T20:18:58Z #15 2.162 28550K .......... .......... .......... .......... .......... 22% 164M 2s +2024-03-12T20:18:58Z #15 2.162 28600K .......... .......... .......... .......... .......... 22% 147M 2s +2024-03-12T20:18:58Z #15 2.162 28650K .......... .......... .......... .......... .......... 22% 154M 2s +2024-03-12T20:18:58Z #15 2.162 28700K .......... .......... .......... .......... .......... 22% 170M 2s +2024-03-12T20:18:58Z #15 2.162 28750K .......... .......... .......... .......... .......... 22% 163M 2s +2024-03-12T20:18:58Z #15 2.162 28800K .......... .......... .......... .......... .......... 22% 148M 2s +2024-03-12T20:18:58Z #15 2.162 28850K .......... .......... .......... .......... .......... 22% 140M 2s +2024-03-12T20:18:58Z #15 2.162 28900K .......... .......... .......... .......... .......... 22% 151M 2s +2024-03-12T20:18:58Z #15 2.162 28950K .......... .......... .......... .......... .......... 22% 131M 2s +2024-03-12T20:18:58Z #15 2.162 29000K .......... .......... .......... .......... .......... 22% 175M 2s +2024-03-12T20:18:58Z #15 2.162 29050K .......... .......... .......... .......... .......... 22% 159M 2s +2024-03-12T20:18:58Z #15 2.163 29100K .......... .......... .......... .......... .......... 22% 128M 2s +2024-03-12T20:18:58Z #15 2.163 29150K .......... .......... .......... .......... .......... 23% 142M 2s +2024-03-12T20:18:58Z #15 2.163 29200K .......... .......... .......... .......... .......... 23% 153M 2s +2024-03-12T20:18:58Z #15 2.164 29250K .......... .......... .......... .......... .......... 23% 128M 2s +2024-03-12T20:18:58Z #15 2.164 29300K .......... .......... .......... .......... .......... 23% 158M 2s +2024-03-12T20:18:58Z #15 2.164 29350K .......... .......... .......... .......... .......... 23% 144M 2s +2024-03-12T20:18:58Z #15 2.165 29400K .......... .......... .......... .......... .......... 23% 161M 2s +2024-03-12T20:18:58Z #15 2.165 29450K .......... .......... .......... .......... .......... 23% 135M 2s +2024-03-12T20:18:58Z #15 2.165 29500K .......... .......... .......... .......... .......... 23% 143M 2s +2024-03-12T20:18:58Z #15 2.166 29550K .......... .......... .......... .......... .......... 23% 113M 2s +2024-03-12T20:18:58Z #15 2.166 29600K .......... .......... .......... .......... .......... 23% 167M 2s +2024-03-12T20:18:58Z #15 2.166 29650K .......... .......... .......... .......... .......... 23% 144M 2s +2024-03-12T20:18:58Z #15 2.167 29700K .......... .......... .......... .......... .......... 23% 138M 2s +2024-03-12T20:18:58Z #15 2.167 29750K .......... .......... .......... .......... .......... 23% 169M 2s +2024-03-12T20:18:58Z #15 2.167 29800K .......... .......... .......... .......... .......... 23% 164M 2s +2024-03-12T20:18:58Z #15 2.168 29850K .......... .......... .......... .......... .......... 23% 122M 2s +2024-03-12T20:18:58Z #15 2.168 29900K .......... .......... .......... .......... .......... 23% 153M 2s +2024-03-12T20:18:58Z #15 2.168 29950K .......... .......... .......... .......... .......... 23% 147M 2s +2024-03-12T20:18:58Z #15 2.169 30000K .......... .......... .......... .......... .......... 23% 170M 2s +2024-03-12T20:18:58Z #15 2.174 30050K .......... .......... .......... .......... .......... 23% 138M 2s +2024-03-12T20:18:58Z #15 2.174 30100K .......... .......... .......... .......... .......... 23% 155M 2s +2024-03-12T20:18:58Z #15 2.174 30150K .......... .......... .......... .......... .......... 23% 122M 2s +2024-03-12T20:18:58Z #15 2.174 30200K .......... .......... .......... .......... .......... 23% 145M 2s +2024-03-12T20:18:58Z #15 2.174 30250K .......... .......... .......... .......... .......... 23% 151M 2s +2024-03-12T20:18:58Z #15 2.174 30300K .......... .......... .......... .......... .......... 23% 128M 2s +2024-03-12T20:18:58Z #15 2.174 30350K .......... .......... .......... .......... .......... 23% 146M 2s +2024-03-12T20:18:58Z #15 2.174 30400K .......... .......... .......... .......... .......... 24% 177M 2s +2024-03-12T20:18:58Z #15 2.174 30450K .......... .......... .......... .......... .......... 24% 122M 2s +2024-03-12T20:18:58Z #15 2.174 30500K .......... .......... .......... .......... .......... 24% 160M 2s +2024-03-12T20:18:58Z #15 2.174 30550K .......... .......... .......... .......... .......... 24% 180M 2s +2024-03-12T20:18:58Z #15 2.174 30600K .......... .......... .......... .......... .......... 24% 163M 2s +2024-03-12T20:18:58Z #15 2.174 30650K .......... .......... .......... .......... .......... 24% 154M 2s +2024-03-12T20:18:58Z #15 2.174 30700K .......... .......... .......... .......... .......... 24% 149M 2s +2024-03-12T20:18:58Z #15 2.174 30750K .......... .......... .......... .......... .......... 24% 49.5M 2s +2024-03-12T20:18:58Z #15 2.175 30800K .......... .......... .......... .......... .......... 24% 64.5M 2s +2024-03-12T20:18:58Z #15 2.176 30850K .......... .......... .......... .......... .......... 24% 66.1M 2s +2024-03-12T20:18:58Z #15 2.176 30900K .......... .......... .......... .......... .......... 24% 104M 2s +2024-03-12T20:18:58Z #15 2.177 30950K .......... .......... .......... .......... .......... 24% 119M 2s +2024-03-12T20:18:58Z #15 2.177 31000K .......... .......... .......... .......... .......... 24% 120M 2s +2024-03-12T20:18:58Z #15 2.177 31050K .......... .......... .......... .......... .......... 24% 90.4M 2s +2024-03-12T20:18:58Z #15 2.178 31100K .......... .......... .......... .......... .......... 24% 118M 2s +2024-03-12T20:18:58Z #15 2.178 31150K .......... .......... .......... .......... .......... 24% 131M 2s +2024-03-12T20:18:58Z #15 2.179 31200K .......... .......... .......... .......... .......... 24% 139M 2s +2024-03-12T20:18:58Z #15 2.179 31250K .......... .......... .......... .......... .......... 24% 97.8M 2s +2024-03-12T20:18:58Z #15 2.180 31300K .......... .......... .......... .......... .......... 24% 113M 2s +2024-03-12T20:18:58Z #15 2.180 31350K .......... .......... .......... .......... .......... 24% 145M 2s +2024-03-12T20:18:58Z #15 2.180 31400K .......... .......... .......... .......... .......... 24% 120M 2s +2024-03-12T20:18:58Z #15 2.181 31450K .......... .......... .......... .......... .......... 24% 112M 2s +2024-03-12T20:18:58Z #15 2.181 31500K .......... .......... .......... .......... .......... 24% 99.7M 2s +2024-03-12T20:18:58Z #15 2.186 31550K .......... .......... .......... .......... .......... 24% 122M 2s +2024-03-12T20:18:58Z #15 2.186 31600K .......... .......... .......... .......... .......... 24% 125M 2s +2024-03-12T20:18:58Z #15 2.186 31650K .......... .......... .......... .......... .......... 25% 154M 2s +2024-03-12T20:18:58Z #15 2.186 31700K .......... .......... .......... .......... .......... 25% 167M 2s +2024-03-12T20:18:58Z #15 2.186 31750K .......... .......... .......... .......... .......... 25% 155M 2s +2024-03-12T20:18:58Z #15 2.186 31800K .......... .......... .......... .......... .......... 25% 144M 2s +2024-03-12T20:18:58Z #15 2.186 31850K .......... .......... .......... .......... .......... 25% 170M 2s +2024-03-12T20:18:58Z #15 2.186 31900K .......... .......... .......... .......... .......... 25% 164M 2s +2024-03-12T20:18:58Z #15 2.186 31950K .......... .......... .......... .......... .......... 25% 140M 2s +2024-03-12T20:18:58Z #15 2.186 32000K .......... .......... .......... .......... .......... 25% 139M 2s +2024-03-12T20:18:58Z #15 2.186 32050K .......... .......... .......... .......... .......... 25% 154M 2s +2024-03-12T20:18:58Z #15 2.186 32100K .......... .......... .......... .......... .......... 25% 138M 2s +2024-03-12T20:18:58Z #15 2.186 32150K .......... .......... .......... .......... .......... 25% 101M 2s +2024-03-12T20:18:58Z #15 2.186 32200K .......... .......... .......... .......... .......... 25% 134M 2s +2024-03-12T20:18:58Z #15 2.186 32250K .......... .......... .......... .......... .......... 25% 134M 2s +2024-03-12T20:18:58Z #15 2.187 32300K .......... .......... .......... .......... .......... 25% 128M 2s +2024-03-12T20:18:58Z #15 2.187 32350K .......... .......... .......... .......... .......... 25% 113M 2s +2024-03-12T20:18:58Z #15 2.188 32400K .......... .......... .......... .......... .......... 25% 113M 2s +2024-03-12T20:18:58Z #15 2.188 32450K .......... .......... .......... .......... .......... 25% 108M 2s +2024-03-12T20:18:58Z #15 2.189 32500K .......... .......... .......... .......... .......... 25% 122M 2s +2024-03-12T20:18:58Z #15 2.189 32550K .......... .......... .......... .......... .......... 25% 125M 2s +2024-03-12T20:18:58Z #15 2.189 32600K .......... .......... .......... .......... .......... 25% 91.2M 2s +2024-03-12T20:18:58Z #15 2.190 32650K .......... .......... .......... .......... .......... 25% 120M 2s +2024-03-12T20:18:58Z #15 2.190 32700K .......... .......... .......... .......... .......... 25% 116M 2s +2024-03-12T20:18:58Z #15 2.191 32750K .......... .......... .......... .......... .......... 25% 125M 2s +2024-03-12T20:18:58Z #15 2.191 32800K .......... .......... .......... .......... .......... 25% 123M 2s +2024-03-12T20:18:58Z #15 2.192 32850K .......... .......... .......... .......... .......... 25% 143M 2s +2024-03-12T20:18:58Z #15 2.192 32900K .......... .......... .......... .......... .......... 25% 117M 2s +2024-03-12T20:18:58Z #15 2.192 32950K .......... .......... .......... .......... .......... 26% 168M 2s +2024-03-12T20:18:58Z #15 2.193 33000K .......... .......... .......... .......... .......... 26% 153M 2s +2024-03-12T20:18:58Z #15 2.193 33050K .......... .......... .......... .......... .......... 26% 151M 2s +2024-03-12T20:18:58Z #15 2.193 33100K .......... .......... .......... .......... .......... 26% 154M 2s +2024-03-12T20:18:58Z #15 2.193 33150K .......... .......... .......... .......... .......... 26% 114M 2s +2024-03-12T20:18:58Z #15 2.202 33200K .......... .......... .......... .......... .......... 26% 158M 2s +2024-03-12T20:18:58Z #15 2.202 33250K .......... .......... .......... .......... .......... 26% 173M 2s +2024-03-12T20:18:58Z #15 2.202 33300K .......... .......... .......... .......... .......... 26% 157M 2s +2024-03-12T20:18:58Z #15 2.202 33350K .......... .......... .......... .......... .......... 26% 157M 2s +2024-03-12T20:18:58Z #15 2.202 33400K .......... .......... .......... .......... .......... 26% 167M 2s +2024-03-12T20:18:58Z #15 2.202 33450K .......... .......... .......... .......... .......... 26% 165M 2s +2024-03-12T20:18:58Z #15 2.202 33500K .......... .......... .......... .......... .......... 26% 184M 2s +2024-03-12T20:18:58Z #15 2.202 33550K .......... .......... .......... .......... .......... 26% 152M 2s +2024-03-12T20:18:58Z #15 2.202 33600K .......... .......... .......... .......... .......... 26% 166M 2s +2024-03-12T20:18:58Z #15 2.202 33650K .......... .......... .......... .......... .......... 26% 154M 2s +2024-03-12T20:18:58Z #15 2.202 33700K .......... .......... .......... .......... .......... 26% 168M 2s +2024-03-12T20:18:58Z #15 2.202 33750K .......... .......... .......... .......... .......... 26% 167M 2s +2024-03-12T20:18:58Z #15 2.202 33800K .......... .......... .......... .......... .......... 26% 138M 2s +2024-03-12T20:18:58Z #15 2.202 33850K .......... .......... .......... .......... .......... 26% 138M 2s +2024-03-12T20:18:58Z #15 2.202 33900K .......... .......... .......... .......... .......... 26% 172M 2s +2024-03-12T20:18:58Z #15 2.202 33950K .......... .......... .......... .......... .......... 26% 174M 2s +2024-03-12T20:18:58Z #15 2.202 34000K .......... .......... .......... .......... .......... 26% 169M 2s +2024-03-12T20:18:58Z #15 2.202 34050K .......... .......... .......... .......... .......... 26% 151M 2s +2024-03-12T20:18:58Z #15 2.202 34100K .......... .......... .......... .......... .......... 26% 179M 2s +2024-03-12T20:18:58Z #15 2.202 34150K .......... .......... .......... .......... .......... 26% 174M 2s +2024-03-12T20:18:58Z #15 2.202 34200K .......... .......... .......... .......... .......... 27% 168M 2s +2024-03-12T20:18:58Z #15 2.202 34250K .......... .......... .......... .......... .......... 27% 162M 2s +2024-03-12T20:18:58Z #15 2.202 34300K .......... .......... .......... .......... .......... 27% 174M 2s +2024-03-12T20:18:58Z #15 2.202 34350K .......... .......... .......... .......... .......... 27% 144M 2s +2024-03-12T20:18:58Z #15 2.202 34400K .......... .......... .......... .......... .......... 27% 140M 2s +2024-03-12T20:18:58Z #15 2.202 34450K .......... .......... .......... .......... .......... 27% 166M 2s +2024-03-12T20:18:58Z #15 2.202 34500K .......... .......... .......... .......... .......... 27% 141M 2s +2024-03-12T20:18:58Z #15 2.202 34550K .......... .......... .......... .......... .......... 27% 178M 2s +2024-03-12T20:18:58Z #15 2.202 34600K .......... .......... .......... .......... .......... 27% 140M 2s +2024-03-12T20:18:58Z #15 2.203 34650K .......... .......... .......... .......... .......... 27% 147M 2s +2024-03-12T20:18:58Z #15 2.203 34700K .......... .......... .......... .......... .......... 27% 267K 2s +2024-03-12T20:18:58Z #15 2.391 34750K .......... .......... .......... .......... .......... 27% 31.1M 2s +2024-03-12T20:18:58Z #15 2.392 34800K .......... .......... .......... .......... .......... 27% 27.0M 2s +2024-03-12T20:18:58Z #15 2.394 34850K .......... .......... .......... .......... .......... 27% 37.6M 2s +2024-03-12T20:18:58Z #15 2.396 34900K .......... .......... .......... .......... .......... 27% 37.5M 2s +2024-03-12T20:18:58Z #15 2.397 34950K .......... .......... .......... .......... .......... 27% 52.7M 2s +2024-03-12T20:18:58Z #15 2.398 35000K .......... .......... .......... .......... .......... 27% 170M 2s +2024-03-12T20:18:58Z #15 2.398 35050K .......... .......... .......... .......... .......... 27% 126M 2s +2024-03-12T20:18:58Z #15 2.398 35100K .......... .......... .......... .......... .......... 27% 102M 2s +2024-03-12T20:18:58Z #15 2.399 35150K .......... .......... .......... .......... .......... 27% 129M 2s +2024-03-12T20:18:58Z #15 2.399 35200K .......... .......... .......... .......... .......... 27% 128M 2s +2024-03-12T20:18:58Z #15 2.400 35250K .......... .......... .......... .......... .......... 27% 141M 2s +2024-03-12T20:18:58Z #15 2.400 35300K .......... .......... .......... .......... .......... 27% 114M 2s +2024-03-12T20:18:58Z #15 2.400 35350K .......... .......... .......... .......... .......... 27% 127M 2s +2024-03-12T20:18:58Z #15 2.401 35400K .......... .......... .......... .......... .......... 27% 134M 2s +2024-03-12T20:18:58Z #15 2.401 35450K .......... .......... .......... .......... .......... 28% 116M 2s +2024-03-12T20:18:58Z #15 2.401 35500K .......... .......... .......... .......... .......... 28% 129M 2s +2024-03-12T20:18:58Z #15 2.402 35550K .......... .......... .......... .......... .......... 28% 116M 2s +2024-03-12T20:18:58Z #15 2.402 35600K .......... .......... .......... .......... .......... 28% 110M 2s +2024-03-12T20:18:58Z #15 2.403 35650K .......... .......... .......... .......... .......... 28% 143M 2s +2024-03-12T20:18:58Z #15 2.403 35700K .......... .......... .......... .......... .......... 28% 158M 2s +2024-03-12T20:18:58Z #15 2.403 35750K .......... .......... .......... .......... .......... 28% 117M 2s +2024-03-12T20:18:58Z #15 2.404 35800K .......... .......... .......... .......... .......... 28% 133M 2s +2024-03-12T20:18:58Z #15 2.404 35850K .......... .......... .......... .......... .......... 28% 119M 2s +2024-03-12T20:18:58Z #15 2.404 35900K .......... .......... .......... .......... .......... 28% 101M 2s +2024-03-12T20:18:58Z #15 2.405 35950K .......... .......... .......... .......... .......... 28% 121M 2s +2024-03-12T20:18:58Z #15 2.407 36000K .......... .......... .......... .......... .......... 28% 148M 2s +2024-03-12T20:18:58Z #15 2.407 36050K .......... .......... .......... .......... .......... 28% 126M 2s +2024-03-12T20:18:58Z #15 2.407 36100K .......... .......... .......... .......... .......... 28% 124M 2s +2024-03-12T20:18:58Z #15 2.407 36150K .......... .......... .......... .......... .......... 28% 122M 2s +2024-03-12T20:18:58Z #15 2.407 36200K .......... .......... .......... .......... .......... 28% 140M 2s +2024-03-12T20:18:58Z #15 2.407 36250K .......... .......... .......... .......... .......... 28% 130M 2s +2024-03-12T20:18:58Z #15 2.407 36300K .......... .......... .......... .......... .......... 28% 124M 2s +2024-03-12T20:18:58Z #15 2.408 36350K .......... .......... .......... .......... .......... 28% 672K 2s +2024-03-12T20:18:58Z #15 2.484 36400K .......... .......... .......... .......... .......... 28% 136M 2s +2024-03-12T20:18:58Z #15 2.484 36450K .......... .......... .......... .......... .......... 28% 148M 2s +2024-03-12T20:18:58Z #15 2.484 36500K .......... .......... .......... .......... .......... 28% 136M 2s +2024-03-12T20:18:58Z #15 2.484 36550K .......... .......... .......... .......... .......... 28% 121M 2s +2024-03-12T20:18:58Z #15 2.484 36600K .......... .......... .......... .......... .......... 28% 117M 2s +2024-03-12T20:18:58Z #15 2.484 36650K .......... .......... .......... .......... .......... 28% 86.9M 2s +2024-03-12T20:18:58Z #15 2.487 36700K .......... .......... .......... .......... .......... 28% 80.8M 2s +2024-03-12T20:18:58Z #15 2.487 36750K .......... .......... .......... .......... .......... 29% 77.8M 2s +2024-03-12T20:18:58Z #15 2.487 36800K .......... .......... .......... .......... .......... 29% 91.1M 2s +2024-03-12T20:18:58Z #15 2.487 36850K .......... .......... .......... .......... .......... 29% 75.3M 2s +2024-03-12T20:18:58Z #15 2.488 36900K .......... .......... .......... .......... .......... 29% 98.1M 2s +2024-03-12T20:18:58Z #15 2.488 36950K .......... .......... .......... .......... .......... 29% 74.7M 2s +2024-03-12T20:18:58Z #15 2.488 37000K .......... .......... .......... .......... .......... 29% 77.4M 2s +2024-03-12T20:18:58Z #15 2.489 37050K .......... .......... .......... .......... .......... 29% 76.5M 2s +2024-03-12T20:18:58Z #15 2.490 37100K .......... .......... .......... .......... .......... 29% 65.1M 2s +2024-03-12T20:18:58Z #15 2.490 37150K .......... .......... .......... .......... .......... 29% 42.5M 2s +2024-03-12T20:18:58Z #15 2.492 37200K .......... .......... .......... .......... .......... 29% 98.6M 2s +2024-03-12T20:18:58Z #15 2.492 37250K .......... .......... .......... .......... .......... 29% 76.8M 2s +2024-03-12T20:18:58Z #15 2.492 37300K .......... .......... .......... .......... .......... 29% 76.0M 2s +2024-03-12T20:18:58Z #15 2.493 37350K .......... .......... .......... .......... .......... 29% 92.2M 2s +2024-03-12T20:18:58Z #15 2.494 37400K .......... .......... .......... .......... .......... 29% 84.6M 2s +2024-03-12T20:18:58Z #15 2.495 37450K .......... .......... .......... .......... .......... 29% 81.7M 2s +2024-03-12T20:18:58Z #15 2.495 37500K .......... .......... .......... .......... .......... 29% 60.2M 2s +2024-03-12T20:18:58Z #15 2.496 37550K .......... .......... .......... .......... .......... 29% 90.7M 2s +2024-03-12T20:18:58Z #15 2.496 37600K .......... .......... .......... .......... .......... 29% 73.5M 2s +2024-03-12T20:18:58Z #15 2.497 37650K .......... .......... .......... .......... .......... 29% 79.7M 2s +2024-03-12T20:18:58Z #15 2.498 37700K .......... .......... .......... .......... .......... 29% 81.3M 2s +2024-03-12T20:18:58Z #15 2.498 37750K .......... .......... .......... .......... .......... 29% 75.7M 2s +2024-03-12T20:18:58Z #15 2.499 37800K .......... .......... .......... .......... .......... 29% 80.9M 2s +2024-03-12T20:18:58Z #15 2.499 37850K .......... .......... .......... .......... .......... 29% 88.0M 2s +2024-03-12T20:18:58Z #15 2.500 37900K .......... .......... .......... .......... .......... 29% 83.4M 2s +2024-03-12T20:18:58Z #15 2.501 37950K .......... .......... .......... .......... .......... 29% 69.6M 2s +2024-03-12T20:18:58Z #15 2.501 38000K .......... .......... .......... .......... .......... 30% 60.8M 2s +2024-03-12T20:18:58Z #15 2.502 38050K .......... .......... .......... .......... .......... 30% 85.0M 2s +2024-03-12T20:18:58Z #15 2.504 38100K .......... .......... .......... .......... .......... 30% 103M 2s +2024-03-12T20:18:58Z #15 2.504 38150K .......... .......... .......... .......... .......... 30% 103M 2s +2024-03-12T20:18:58Z #15 2.504 38200K .......... .......... .......... .......... .......... 30% 88.8M 2s +2024-03-12T20:18:58Z #15 2.504 38250K .......... .......... .......... .......... .......... 30% 103M 2s +2024-03-12T20:18:58Z #15 2.505 38300K .......... .......... .......... .......... .......... 30% 98.8M 2s +2024-03-12T20:18:58Z #15 2.505 38350K .......... .......... .......... .......... .......... 30% 86.8M 2s +2024-03-12T20:18:58Z #15 2.506 38400K .......... .......... .......... .......... .......... 30% 89.8M 2s +2024-03-12T20:18:58Z #15 2.506 38450K .......... .......... .......... .......... .......... 30% 101M 2s +2024-03-12T20:18:58Z #15 2.507 38500K .......... .......... .......... .......... .......... 30% 105M 2s +2024-03-12T20:18:58Z #15 2.507 38550K .......... .......... .......... .......... .......... 30% 112M 2s +2024-03-12T20:18:58Z #15 2.508 38600K .......... .......... .......... .......... .......... 30% 139M 2s +2024-03-12T20:18:58Z #15 2.508 38650K .......... .......... .......... .......... .......... 30% 123M 2s +2024-03-12T20:18:58Z #15 2.508 38700K .......... .......... .......... .......... .......... 30% 163M 2s +2024-03-12T20:18:58Z #15 2.509 38750K .......... .......... .......... .......... .......... 30% 144M 2s +2024-03-12T20:18:58Z #15 2.509 38800K .......... .......... .......... .......... .......... 30% 142M 2s +2024-03-12T20:18:58Z #15 2.509 38850K .......... .......... .......... .......... .......... 30% 156M 2s +2024-03-12T20:18:58Z #15 2.510 38900K .......... .......... .......... .......... .......... 30% 1.84M 2s +2024-03-12T20:18:58Z #15 2.537 38950K .......... .......... .......... .......... .......... 30% 122M 2s +2024-03-12T20:18:58Z #15 2.537 39000K .......... .......... .......... .......... .......... 30% 167M 2s +2024-03-12T20:18:58Z #15 2.539 39050K .......... .......... .......... .......... .......... 30% 90.3M 2s +2024-03-12T20:18:58Z #15 2.539 39100K .......... .......... .......... .......... .......... 30% 107M 2s +2024-03-12T20:18:58Z #15 2.539 39150K .......... .......... .......... .......... .......... 30% 121M 2s +2024-03-12T20:18:58Z #15 2.539 39200K .......... .......... .......... .......... .......... 30% 149M 2s +2024-03-12T20:18:58Z #15 2.539 39250K .......... .......... .......... .......... .......... 30% 160M 2s +2024-03-12T20:18:58Z #15 2.539 39300K .......... .......... .......... .......... .......... 31% 142M 2s +2024-03-12T20:18:58Z #15 2.541 39350K .......... .......... .......... .......... .......... 31% 107M 2s +2024-03-12T20:18:58Z #15 2.541 39400K .......... .......... .......... .......... .......... 31% 115M 2s +2024-03-12T20:18:58Z #15 2.541 39450K .......... .......... .......... .......... .......... 31% 155M 2s +2024-03-12T20:18:58Z #15 2.541 39500K .......... .......... .......... .......... .......... 31% 95.5M 2s +2024-03-12T20:18:58Z #15 2.541 39550K .......... .......... .......... .......... .......... 31% 69.2M 2s +2024-03-12T20:18:58Z #15 2.543 39600K .......... .......... .......... .......... .......... 31% 95.0M 2s +2024-03-12T20:18:58Z #15 2.543 39650K .......... .......... .......... .......... .......... 31% 122M 2s +2024-03-12T20:18:58Z #15 2.543 39700K .......... .......... .......... .......... .......... 31% 66.4M 2s +2024-03-12T20:18:58Z #15 2.543 39750K .......... .......... .......... .......... .......... 31% 26.6M 2s +2024-03-12T20:18:58Z #15 2.545 39800K .......... .......... .......... .......... .......... 31% 86.9M 2s +2024-03-12T20:18:58Z #15 2.546 39850K .......... .......... .......... .......... .......... 31% 131M 2s +2024-03-12T20:18:58Z #15 2.546 39900K .......... .......... .......... .......... .......... 31% 152M 2s +2024-03-12T20:18:58Z #15 2.546 39950K .......... .......... .......... .......... .......... 31% 172M 2s +2024-03-12T20:18:58Z #15 2.547 40000K .......... .......... .......... .......... .......... 31% 145M 2s +2024-03-12T20:18:58Z #15 2.547 40050K .......... .......... .......... .......... .......... 31% 178M 2s +2024-03-12T20:18:58Z #15 2.547 40100K .......... .......... .......... .......... .......... 31% 115M 2s +2024-03-12T20:18:58Z #15 2.548 40150K .......... .......... .......... .......... .......... 31% 157M 2s +2024-03-12T20:18:58Z #15 2.549 40200K .......... .......... .......... .......... .......... 31% 144M 2s +2024-03-12T20:18:58Z #15 2.552 40250K .......... .......... .......... .......... .......... 31% 112M 2s +2024-03-12T20:18:58Z #15 2.552 40300K .......... .......... .......... .......... .......... 31% 115M 2s +2024-03-12T20:18:58Z #15 2.552 40350K .......... .......... .......... .......... .......... 31% 137M 2s +2024-03-12T20:18:58Z #15 2.552 40400K .......... .......... .......... .......... .......... 31% 117M 2s +2024-03-12T20:18:58Z #15 2.552 40450K .......... .......... .......... .......... .......... 31% 146M 2s +2024-03-12T20:18:58Z #15 2.552 40500K .......... .......... .......... .......... .......... 31% 29.5M 2s +2024-03-12T20:18:58Z #15 2.552 40550K .......... .......... .......... .......... .......... 32% 142M 2s +2024-03-12T20:18:58Z #15 2.552 40600K .......... .......... .......... .......... .......... 32% 49.9M 2s +2024-03-12T20:18:58Z #15 2.554 40650K .......... .......... .......... .......... .......... 32% 126M 2s +2024-03-12T20:18:58Z #15 2.554 40700K .......... .......... .......... .......... .......... 32% 120M 2s +2024-03-12T20:18:58Z #15 2.554 40750K .......... .......... .......... .......... .......... 32% 61.8M 2s +2024-03-12T20:18:58Z #15 2.555 40800K .......... .......... .......... .......... .......... 32% 111M 2s +2024-03-12T20:18:58Z #15 2.556 40850K .......... .......... .......... .......... .......... 32% 106M 2s +2024-03-12T20:18:58Z #15 2.556 40900K .......... .......... .......... .......... .......... 32% 24.5M 2s +2024-03-12T20:18:58Z #15 2.558 40950K .......... .......... .......... .......... .......... 32% 159M 2s +2024-03-12T20:18:58Z #15 2.558 41000K .......... .......... .......... .......... .......... 32% 179M 2s +2024-03-12T20:18:58Z #15 2.558 41050K .......... .......... .......... .......... .......... 32% 136M 2s +2024-03-12T20:18:58Z #15 2.559 41100K .......... .......... .......... .......... .......... 32% 173M 2s +2024-03-12T20:18:58Z #15 2.559 41150K .......... .......... .......... .......... .......... 32% 172M 2s +2024-03-12T20:18:58Z #15 2.559 41200K .......... .......... .......... .......... .......... 32% 171M 2s +2024-03-12T20:18:58Z #15 2.559 41250K .......... .......... .......... .......... .......... 32% 156M 2s +2024-03-12T20:18:59Z #15 2.560 41300K .......... .......... .......... .......... .......... 32% 173M 2s +2024-03-12T20:18:59Z #15 2.561 41350K .......... .......... .......... .......... .......... 32% 8.28M 2s +2024-03-12T20:18:59Z #15 2.566 41400K .......... .......... .......... .......... .......... 32% 158M 2s +2024-03-12T20:18:59Z #15 2.566 41450K .......... .......... .......... .......... .......... 32% 177M 2s +2024-03-12T20:18:59Z #15 2.567 41500K .......... .......... .......... .......... .......... 32% 159M 2s +2024-03-12T20:18:59Z #15 2.567 41550K .......... .......... .......... .......... .......... 32% 176M 2s +2024-03-12T20:18:59Z #15 2.568 41600K .......... .......... .......... .......... .......... 32% 165M 2s +2024-03-12T20:18:59Z #15 2.568 41650K .......... .......... .......... .......... .......... 32% 128M 2s +2024-03-12T20:18:59Z #15 2.568 41700K .......... .......... .......... .......... .......... 32% 153M 2s +2024-03-12T20:18:59Z #15 2.569 41750K .......... .......... .......... .......... .......... 32% 124M 2s +2024-03-12T20:18:59Z #15 2.569 41800K .......... .......... .......... .......... .......... 33% 153M 2s +2024-03-12T20:18:59Z #15 2.569 41850K .......... .......... .......... .......... .......... 33% 156M 2s +2024-03-12T20:18:59Z #15 2.569 41900K .......... .......... .......... .......... .......... 33% 158M 2s +2024-03-12T20:18:59Z #15 2.570 41950K .......... .......... .......... .......... .......... 33% 159M 2s +2024-03-12T20:18:59Z #15 2.570 42000K .......... .......... .......... .......... .......... 33% 143M 2s +2024-03-12T20:18:59Z #15 2.570 42050K .......... .......... .......... .......... .......... 33% 164M 2s +2024-03-12T20:18:59Z #15 2.570 42100K .......... .......... .......... .......... .......... 33% 153M 2s +2024-03-12T20:18:59Z #15 2.571 42150K .......... .......... .......... .......... .......... 33% 166M 2s +2024-03-12T20:18:59Z #15 2.571 42200K .......... .......... .......... .......... .......... 33% 178M 2s +2024-03-12T20:18:59Z #15 2.572 42250K .......... .......... .......... .......... .......... 33% 143M 2s +2024-03-12T20:18:59Z #15 2.572 42300K .......... .......... .......... .......... .......... 33% 168M 2s +2024-03-12T20:18:59Z #15 2.572 42350K .......... .......... .......... .......... .......... 33% 160M 2s +2024-03-12T20:18:59Z #15 2.572 42400K .......... .......... .......... .......... .......... 33% 141M 2s +2024-03-12T20:18:59Z #15 2.573 42450K .......... .......... .......... .......... .......... 33% 162M 2s +2024-03-12T20:18:59Z #15 2.573 42500K .......... .......... .......... .......... .......... 33% 164M 2s +2024-03-12T20:18:59Z #15 2.573 42550K .......... .......... .......... .......... .......... 33% 158M 2s +2024-03-12T20:18:59Z #15 2.574 42600K .......... .......... .......... .......... .......... 33% 4.98M 2s +2024-03-12T20:18:59Z #15 2.584 42650K .......... .......... .......... .......... .......... 33% 155M 2s +2024-03-12T20:18:59Z #15 2.584 42700K .......... .......... .......... .......... .......... 33% 174M 2s +2024-03-12T20:18:59Z #15 2.584 42750K .......... .......... .......... .......... .......... 33% 171M 2s +2024-03-12T20:18:59Z #15 2.584 42800K .......... .......... .......... .......... .......... 33% 151M 2s +2024-03-12T20:18:59Z #15 2.585 42850K .......... .......... .......... .......... .......... 33% 172M 2s +2024-03-12T20:18:59Z #15 2.585 42900K .......... .......... .......... .......... .......... 33% 166M 2s +2024-03-12T20:18:59Z #15 2.585 42950K .......... .......... .......... .......... .......... 33% 153M 2s +2024-03-12T20:18:59Z #15 2.585 43000K .......... .......... .......... .......... .......... 33% 174M 2s +2024-03-12T20:18:59Z #15 2.586 43050K .......... .......... .......... .......... .......... 33% 98.1M 2s +2024-03-12T20:18:59Z #15 2.587 43100K .......... .......... .......... .......... .......... 34% 141M 2s +2024-03-12T20:18:59Z #15 2.587 43150K .......... .......... .......... .......... .......... 34% 129M 2s +2024-03-12T20:18:59Z #15 2.587 43200K .......... .......... .......... .......... .......... 34% 130M 2s +2024-03-12T20:18:59Z #15 2.587 43250K .......... .......... .......... .......... .......... 34% 138M 2s +2024-03-12T20:18:59Z #15 2.588 43300K .......... .......... .......... .......... .......... 34% 149M 2s +2024-03-12T20:18:59Z #15 2.588 43350K .......... .......... .......... .......... .......... 34% 131M 2s +2024-03-12T20:18:59Z #15 2.589 43400K .......... .......... .......... .......... .......... 34% 111M 2s +2024-03-12T20:18:59Z #15 2.589 43450K .......... .......... .......... .......... .......... 34% 124M 2s +2024-03-12T20:18:59Z #15 2.589 43500K .......... .......... .......... .......... .......... 34% 139M 2s +2024-03-12T20:18:59Z #15 2.590 43550K .......... .......... .......... .......... .......... 34% 11.0M 2s +2024-03-12T20:18:59Z #15 2.596 43600K .......... .......... .......... .......... .......... 34% 163M 2s +2024-03-12T20:18:59Z #15 2.596 43650K .......... .......... .......... .......... .......... 34% 178M 2s +2024-03-12T20:18:59Z #15 2.596 43700K .......... .......... .......... .......... .......... 34% 191M 2s +2024-03-12T20:18:59Z #15 2.596 43750K .......... .......... .......... .......... .......... 34% 154M 2s +2024-03-12T20:18:59Z #15 2.596 43800K .......... .......... .......... .......... .......... 34% 82.1M 2s +2024-03-12T20:18:59Z #15 2.596 43850K .......... .......... .......... .......... .......... 34% 158M 2s +2024-03-12T20:18:59Z #15 2.596 43900K .......... .......... .......... .......... .......... 34% 174M 2s +2024-03-12T20:18:59Z #15 2.597 43950K .......... .......... .......... .......... .......... 34% 129M 2s +2024-03-12T20:18:59Z #15 2.597 44000K .......... .......... .......... .......... .......... 34% 40.2M 2s +2024-03-12T20:18:59Z #15 2.598 44050K .......... .......... .......... .......... .......... 34% 17.9M 2s +2024-03-12T20:18:59Z #15 2.601 44100K .......... .......... .......... .......... .......... 34% 117M 2s +2024-03-12T20:18:59Z #15 2.601 44150K .......... .......... .......... .......... .......... 34% 125M 2s +2024-03-12T20:18:59Z #15 2.601 44200K .......... .......... .......... .......... .......... 34% 51.1M 2s +2024-03-12T20:18:59Z #15 2.602 44250K .......... .......... .......... .......... .......... 34% 119M 2s +2024-03-12T20:18:59Z #15 2.603 44300K .......... .......... .......... .......... .......... 34% 100M 2s +2024-03-12T20:18:59Z #15 2.604 44350K .......... .......... .......... .......... .......... 35% 61.2M 2s +2024-03-12T20:18:59Z #15 2.604 44400K .......... .......... .......... .......... .......... 35% 124M 2s +2024-03-12T20:18:59Z #15 2.604 44450K .......... .......... .......... .......... .......... 35% 126M 2s +2024-03-12T20:18:59Z #15 2.605 44500K .......... .......... .......... .......... .......... 35% 109M 2s +2024-03-12T20:18:59Z #15 2.605 44550K .......... .......... .......... .......... .......... 35% 123M 2s +2024-03-12T20:18:59Z #15 2.606 44600K .......... .......... .......... .......... .......... 35% 110M 2s +2024-03-12T20:18:59Z #15 2.606 44650K .......... .......... .......... .......... .......... 35% 126M 2s +2024-03-12T20:18:59Z #15 2.607 44700K .......... .......... .......... .......... .......... 35% 116M 2s +2024-03-12T20:18:59Z #15 2.607 44750K .......... .......... .......... .......... .......... 35% 127M 2s +2024-03-12T20:18:59Z #15 2.607 44800K .......... .......... .......... .......... .......... 35% 120M 2s +2024-03-12T20:18:59Z #15 2.608 44850K .......... .......... .......... .......... .......... 35% 91.1M 2s +2024-03-12T20:18:59Z #15 2.608 44900K .......... .......... .......... .......... .......... 35% 116M 2s +2024-03-12T20:18:59Z #15 2.609 44950K .......... .......... .......... .......... .......... 35% 150M 2s +2024-03-12T20:18:59Z #15 2.609 45000K .......... .......... .......... .......... .......... 35% 169M 2s +2024-03-12T20:18:59Z #15 2.609 45050K .......... .......... .......... .......... .......... 35% 54.5M 2s +2024-03-12T20:18:59Z #15 2.610 45100K .......... .......... .......... .......... .......... 35% 117M 2s +2024-03-12T20:18:59Z #15 2.611 45150K .......... .......... .......... .......... .......... 35% 84.3M 2s +2024-03-12T20:18:59Z #15 2.611 45200K .......... .......... .......... .......... .......... 35% 90.0M 2s +2024-03-12T20:18:59Z #15 2.612 45250K .......... .......... .......... .......... .......... 35% 113M 2s +2024-03-12T20:18:59Z #15 2.612 45300K .......... .......... .......... .......... .......... 35% 130M 2s +2024-03-12T20:18:59Z #15 2.613 45350K .......... .......... .......... .......... .......... 35% 133M 2s +2024-03-12T20:18:59Z #15 2.613 45400K .......... .......... .......... .......... .......... 35% 120M 2s +2024-03-12T20:18:59Z #15 2.613 45450K .......... .......... .......... .......... .......... 35% 127M 2s +2024-03-12T20:18:59Z #15 2.614 45500K .......... .......... .......... .......... .......... 35% 119M 2s +2024-03-12T20:18:59Z #15 2.614 45550K .......... .......... .......... .......... .......... 35% 90.0M 2s +2024-03-12T20:18:59Z #15 2.615 45600K .......... .......... .......... .......... .......... 36% 125M 2s +2024-03-12T20:18:59Z #15 2.615 45650K .......... .......... .......... .......... .......... 36% 130M 2s +2024-03-12T20:18:59Z #15 2.615 45700K .......... .......... .......... .......... .......... 36% 108M 2s +2024-03-12T20:18:59Z #15 2.616 45750K .......... .......... .......... .......... .......... 36% 132M 2s +2024-03-12T20:18:59Z #15 2.616 45800K .......... .......... .......... .......... .......... 36% 60.4M 2s +2024-03-12T20:18:59Z #15 2.617 45850K .......... .......... .......... .......... .......... 36% 116M 2s +2024-03-12T20:18:59Z #15 2.618 45900K .......... .......... .......... .......... .......... 36% 93.4M 2s +2024-03-12T20:18:59Z #15 2.618 45950K .......... .......... .......... .......... .......... 36% 106M 2s +2024-03-12T20:18:59Z #15 2.618 46000K .......... .......... .......... .......... .......... 36% 131M 2s +2024-03-12T20:18:59Z #15 2.619 46050K .......... .......... .......... .......... .......... 36% 114M 2s +2024-03-12T20:18:59Z #15 2.620 46100K .......... .......... .......... .......... .......... 36% 130M 2s +2024-03-12T20:18:59Z #15 2.620 46150K .......... .......... .......... .......... .......... 36% 120M 2s +2024-03-12T20:18:59Z #15 2.620 46200K .......... .......... .......... .......... .......... 36% 154M 2s +2024-03-12T20:18:59Z #15 2.620 46250K .......... .......... .......... .......... .......... 36% 158M 2s +2024-03-12T20:18:59Z #15 2.621 46300K .......... .......... .......... .......... .......... 36% 139M 2s +2024-03-12T20:18:59Z #15 2.621 46350K .......... .......... .......... .......... .......... 36% 109M 2s +2024-03-12T20:18:59Z #15 2.622 46400K .......... .......... .......... .......... .......... 36% 131M 2s +2024-03-12T20:18:59Z #15 2.622 46450K .......... .......... .......... .......... .......... 36% 140M 2s +2024-03-12T20:18:59Z #15 2.622 46500K .......... .......... .......... .......... .......... 36% 120M 2s +2024-03-12T20:18:59Z #15 2.623 46550K .......... .......... .......... .......... .......... 36% 63.0M 2s +2024-03-12T20:18:59Z #15 2.624 46600K .......... .......... .......... .......... .......... 36% 113M 2s +2024-03-12T20:18:59Z #15 2.624 46650K .......... .......... .......... .......... .......... 36% 117M 2s +2024-03-12T20:18:59Z #15 2.624 46700K .......... .......... .......... .......... .......... 36% 75.7M 2s +2024-03-12T20:18:59Z #15 2.625 46750K .......... .......... .......... .......... .......... 36% 125M 2s +2024-03-12T20:18:59Z #15 2.625 46800K .......... .......... .......... .......... .......... 36% 127M 2s +2024-03-12T20:18:59Z #15 2.626 46850K .......... .......... .......... .......... .......... 36% 123M 2s +2024-03-12T20:18:59Z #15 2.626 46900K .......... .......... .......... .......... .......... 37% 135M 2s +2024-03-12T20:18:59Z #15 2.626 46950K .......... .......... .......... .......... .......... 37% 121M 2s +2024-03-12T20:18:59Z #15 2.627 47000K .......... .......... .......... .......... .......... 37% 117M 2s +2024-03-12T20:18:59Z #15 2.627 47050K .......... .......... .......... .......... .......... 37% 129M 2s +2024-03-12T20:18:59Z #15 2.628 47100K .......... .......... .......... .......... .......... 37% 126M 2s +2024-03-12T20:18:59Z #15 2.628 47150K .......... .......... .......... .......... .......... 37% 126M 2s +2024-03-12T20:18:59Z #15 2.628 47200K .......... .......... .......... .......... .......... 37% 120M 2s +2024-03-12T20:18:59Z #15 2.629 47250K .......... .......... .......... .......... .......... 37% 127M 2s +2024-03-12T20:18:59Z #15 2.629 47300K .......... .......... .......... .......... .......... 37% 59.2M 2s +2024-03-12T20:18:59Z #15 2.630 47350K .......... .......... .......... .......... .......... 37% 125M 2s +2024-03-12T20:18:59Z #15 2.630 47400K .......... .......... .......... .......... .......... 37% 129M 2s +2024-03-12T20:18:59Z #15 2.631 47450K .......... .......... .......... .......... .......... 37% 75.9M 2s +2024-03-12T20:18:59Z #15 2.632 47500K .......... .......... .......... .......... .......... 37% 133M 2s +2024-03-12T20:18:59Z #15 2.632 47550K .......... .......... .......... .......... .......... 37% 160M 2s +2024-03-12T20:18:59Z #15 2.632 47600K .......... .......... .......... .......... .......... 37% 154M 2s +2024-03-12T20:18:59Z #15 2.632 47650K .......... .......... .......... .......... .......... 37% 121M 2s +2024-03-12T20:18:59Z #15 2.633 47700K .......... .......... .......... .......... .......... 37% 135M 2s +2024-03-12T20:18:59Z #15 2.633 47750K .......... .......... .......... .......... .......... 37% 123M 2s +2024-03-12T20:18:59Z #15 2.634 47800K .......... .......... .......... .......... .......... 37% 110M 2s +2024-03-12T20:18:59Z #15 2.634 47850K .......... .......... .......... .......... .......... 37% 120M 2s +2024-03-12T20:18:59Z #15 2.635 47900K .......... .......... .......... .......... .......... 37% 143M 2s +2024-03-12T20:18:59Z #15 2.635 47950K .......... .......... .......... .......... .......... 37% 138M 2s +2024-03-12T20:18:59Z #15 2.635 48000K .......... .......... .......... .......... .......... 37% 118M 2s +2024-03-12T20:18:59Z #15 2.636 48050K .......... .......... .......... .......... .......... 37% 66.6M 2s +2024-03-12T20:18:59Z #15 2.637 48100K .......... .......... .......... .......... .......... 37% 140M 2s +2024-03-12T20:18:59Z #15 2.637 48150K .......... .......... .......... .......... .......... 38% 107M 2s +2024-03-12T20:18:59Z #15 2.637 48200K .......... .......... .......... .......... .......... 38% 66.1M 2s +2024-03-12T20:18:59Z #15 2.638 48250K .......... .......... .......... .......... .......... 38% 134M 2s +2024-03-12T20:18:59Z #15 2.639 48300K .......... .......... .......... .......... .......... 38% 147M 2s +2024-03-12T20:18:59Z #15 2.639 48350K .......... .......... .......... .......... .......... 38% 107M 2s +2024-03-12T20:18:59Z #15 2.639 48400K .......... .......... .......... .......... .......... 38% 126M 2s +2024-03-12T20:18:59Z #15 2.639 48450K .......... .......... .......... .......... .......... 38% 126M 2s +2024-03-12T20:18:59Z #15 2.640 48500K .......... .......... .......... .......... .......... 38% 120M 2s +2024-03-12T20:18:59Z #15 2.640 48550K .......... .......... .......... .......... .......... 38% 90.0M 2s +2024-03-12T20:18:59Z #15 2.641 48600K .......... .......... .......... .......... .......... 38% 66.2M 2s +2024-03-12T20:18:59Z #15 2.641 48650K .......... .......... .......... .......... .......... 38% 95.6M 2s +2024-03-12T20:18:59Z #15 2.642 48700K .......... .......... .......... .......... .......... 38% 62.1M 2s +2024-03-12T20:18:59Z #15 2.643 48750K .......... .......... .......... .......... .......... 38% 124M 2s +2024-03-12T20:18:59Z #15 2.643 48800K .......... .......... .......... .......... .......... 38% 63.3M 2s +2024-03-12T20:18:59Z #15 2.644 48850K .......... .......... .......... .......... .......... 38% 117M 2s +2024-03-12T20:18:59Z #15 2.644 48900K .......... .......... .......... .......... .......... 38% 116M 2s +2024-03-12T20:18:59Z #15 2.645 48950K .......... .......... .......... .......... .......... 38% 118M 2s +2024-03-12T20:18:59Z #15 2.645 49000K .......... .......... .......... .......... .......... 38% 127M 2s +2024-03-12T20:18:59Z #15 2.647 49050K .......... .......... .......... .......... .......... 38% 130M 2s +2024-03-12T20:18:59Z #15 2.647 49100K .......... .......... .......... .......... .......... 38% 117M 2s +2024-03-12T20:18:59Z #15 2.647 49150K .......... .......... .......... .......... .......... 38% 55.6M 2s +2024-03-12T20:18:59Z #15 2.647 49200K .......... .......... .......... .......... .......... 38% 97.3M 2s +2024-03-12T20:18:59Z #15 2.648 49250K .......... .......... .......... .......... .......... 38% 62.8M 2s +2024-03-12T20:18:59Z #15 2.649 49300K .......... .......... .......... .......... .......... 38% 111M 2s +2024-03-12T20:18:59Z #15 2.649 49350K .......... .......... .......... .......... .......... 38% 96.9M 2s +2024-03-12T20:18:59Z #15 2.649 49400K .......... .......... .......... .......... .......... 39% 91.8M 2s +2024-03-12T20:18:59Z #15 2.650 49450K .......... .......... .......... .......... .......... 39% 108M 2s +2024-03-12T20:18:59Z #15 2.651 49500K .......... .......... .......... .......... .......... 39% 79.5M 2s +2024-03-12T20:18:59Z #15 2.651 49550K .......... .......... .......... .......... .......... 39% 101M 2s +2024-03-12T20:18:59Z #15 2.652 49600K .......... .......... .......... .......... .......... 39% 121M 2s +2024-03-12T20:18:59Z #15 2.652 49650K .......... .......... .......... .......... .......... 39% 119M 2s +2024-03-12T20:18:59Z #15 2.653 49700K .......... .......... .......... .......... .......... 39% 139M 2s +2024-03-12T20:18:59Z #15 2.653 49750K .......... .......... .......... .......... .......... 39% 103M 2s +2024-03-12T20:18:59Z #15 2.654 49800K .......... .......... .......... .......... .......... 39% 53.6M 2s +2024-03-12T20:18:59Z #15 2.654 49850K .......... .......... .......... .......... .......... 39% 87.4M 2s +2024-03-12T20:18:59Z #15 2.655 49900K .......... .......... .......... .......... .......... 39% 55.0M 2s +2024-03-12T20:18:59Z #15 2.656 49950K .......... .......... .......... .......... .......... 39% 112M 2s +2024-03-12T20:18:59Z #15 2.656 50000K .......... .......... .......... .......... .......... 39% 113M 2s +2024-03-12T20:18:59Z #15 2.656 50050K .......... .......... .......... .......... .......... 39% 124M 2s +2024-03-12T20:18:59Z #15 2.657 50100K .......... .......... .......... .......... .......... 39% 99.4M 2s +2024-03-12T20:18:59Z #15 2.658 50150K .......... .......... .......... .......... .......... 39% 134M 2s +2024-03-12T20:18:59Z #15 2.658 50200K .......... .......... .......... .......... .......... 39% 121M 2s +2024-03-12T20:18:59Z #15 2.658 50250K .......... .......... .......... .......... .......... 39% 80.3M 2s +2024-03-12T20:18:59Z #15 2.659 50300K .......... .......... .......... .......... .......... 39% 111M 2s +2024-03-12T20:18:59Z #15 2.659 50350K .......... .......... .......... .......... .......... 39% 136M 2s +2024-03-12T20:18:59Z #15 2.660 50400K .......... .......... .......... .......... .......... 39% 122M 2s +2024-03-12T20:18:59Z #15 2.660 50450K .......... .......... .......... .......... .......... 39% 126M 2s +2024-03-12T20:18:59Z #15 2.667 50500K .......... .......... .......... .......... .......... 39% 136M 2s +2024-03-12T20:18:59Z #15 2.667 50550K .......... .......... .......... .......... .......... 39% 166M 2s +2024-03-12T20:18:59Z #15 2.667 50600K .......... .......... .......... .......... .......... 39% 170M 2s +2024-03-12T20:18:59Z #15 2.667 50650K .......... .......... .......... .......... .......... 39% 164M 2s +2024-03-12T20:18:59Z #15 2.667 50700K .......... .......... .......... .......... .......... 40% 148M 2s +2024-03-12T20:18:59Z #15 2.667 50750K .......... .......... .......... .......... .......... 40% 168M 2s +2024-03-12T20:18:59Z #15 2.667 50800K .......... .......... .......... .......... .......... 40% 171M 2s +2024-03-12T20:18:59Z #15 2.667 50850K .......... .......... .......... .......... .......... 40% 169M 2s +2024-03-12T20:18:59Z #15 2.667 50900K .......... .......... .......... .......... .......... 40% 144M 2s +2024-03-12T20:18:59Z #15 2.667 50950K .......... .......... .......... .......... .......... 40% 173M 2s +2024-03-12T20:18:59Z #15 2.667 51000K .......... .......... .......... .......... .......... 40% 176M 2s +2024-03-12T20:18:59Z #15 2.667 51050K .......... .......... .......... .......... .......... 40% 156M 2s +2024-03-12T20:18:59Z #15 2.667 51100K .......... .......... .......... .......... .......... 40% 173M 2s +2024-03-12T20:18:59Z #15 2.667 51150K .......... .......... .......... .......... .......... 40% 175M 2s +2024-03-12T20:18:59Z #15 2.667 51200K .......... .......... .......... .......... .......... 40% 144M 2s +2024-03-12T20:18:59Z #15 2.667 51250K .......... .......... .......... .......... .......... 40% 162M 2s +2024-03-12T20:18:59Z #15 2.667 51300K .......... .......... .......... .......... .......... 40% 171M 2s +2024-03-12T20:18:59Z #15 2.667 51350K .......... .......... .......... .......... .......... 40% 160M 2s +2024-03-12T20:18:59Z #15 2.667 51400K .......... .......... .......... .......... .......... 40% 150M 2s +2024-03-12T20:18:59Z #15 2.667 51450K .......... .......... .......... .......... .......... 40% 99.3M 2s +2024-03-12T20:18:59Z #15 2.667 51500K .......... .......... .......... .......... .......... 40% 132M 2s +2024-03-12T20:18:59Z #15 2.667 51550K .......... .......... .......... .......... .......... 40% 130M 2s +2024-03-12T20:18:59Z #15 2.667 51600K .......... .......... .......... .......... .......... 40% 110M 2s +2024-03-12T20:18:59Z #15 2.668 51650K .......... .......... .......... .......... .......... 40% 113M 2s +2024-03-12T20:18:59Z #15 2.668 51700K .......... .......... .......... .......... .......... 40% 121M 2s +2024-03-12T20:18:59Z #15 2.669 51750K .......... .......... .......... .......... .......... 40% 103M 2s +2024-03-12T20:18:59Z #15 2.669 51800K .......... .......... .......... .......... .......... 40% 121M 2s +2024-03-12T20:18:59Z #15 2.670 51850K .......... .......... .......... .......... .......... 40% 91.8M 2s +2024-03-12T20:18:59Z #15 2.670 51900K .......... .......... .......... .......... .......... 40% 114M 2s +2024-03-12T20:18:59Z #15 2.670 51950K .......... .......... .......... .......... .......... 41% 109M 2s +2024-03-12T20:18:59Z #15 2.671 52000K .......... .......... .......... .......... .......... 41% 119M 2s +2024-03-12T20:18:59Z #15 2.671 52050K .......... .......... .......... .......... .......... 41% 120M 2s +2024-03-12T20:18:59Z #15 2.672 52100K .......... .......... .......... .......... .......... 41% 236K 2s +2024-03-12T20:18:59Z #15 2.884 52150K .......... .......... .......... .......... .......... 41% 43.8M 2s +2024-03-12T20:18:59Z #15 2.885 52200K .......... .......... .......... .......... .......... 41% 70.4M 2s +2024-03-12T20:18:59Z #15 2.885 52250K .......... .......... .......... .......... .......... 41% 28.8M 2s +2024-03-12T20:18:59Z #15 2.887 52300K .......... .......... .......... .......... .......... 41% 71.0M 2s +2024-03-12T20:18:59Z #15 2.888 52350K .......... .......... .......... .......... .......... 41% 63.3M 2s +2024-03-12T20:18:59Z #15 2.889 52400K .......... .......... .......... .......... .......... 41% 73.6M 2s +2024-03-12T20:18:59Z #15 2.889 52450K .......... .......... .......... .......... .......... 41% 56.3M 2s +2024-03-12T20:18:59Z #15 2.890 52500K .......... .......... .......... .......... .......... 41% 25.2M 2s +2024-03-12T20:18:59Z #15 2.892 52550K .......... .......... .......... .......... .......... 41% 86.6M 2s +2024-03-12T20:18:59Z #15 2.893 52600K .......... .......... .......... .......... .......... 41% 42.8M 2s +2024-03-12T20:18:59Z #15 2.894 52650K .......... .......... .......... .......... .......... 41% 32.8M 2s +2024-03-12T20:18:59Z #15 2.895 52700K .......... .......... .......... .......... .......... 41% 53.7M 2s +2024-03-12T20:18:59Z #15 2.896 52750K .......... .......... .......... .......... .......... 41% 37.0M 2s +2024-03-12T20:18:59Z #15 2.897 52800K .......... .......... .......... .......... .......... 41% 44.8M 2s +2024-03-12T20:18:59Z #15 2.899 52850K .......... .......... .......... .......... .......... 41% 21.8M 2s +2024-03-12T20:18:59Z #15 2.901 52900K .......... .......... .......... .......... .......... 41% 143M 2s +2024-03-12T20:18:59Z #15 2.901 52950K .......... .......... .......... .......... .......... 41% 93.8M 2s +2024-03-12T20:18:59Z #15 2.902 53000K .......... .......... .......... .......... .......... 41% 37.9M 2s +2024-03-12T20:18:59Z #15 2.903 53050K .......... .......... .......... .......... .......... 41% 30.0M 2s +2024-03-12T20:18:59Z #15 2.905 53100K .......... .......... .......... .......... .......... 41% 14.9M 2s +2024-03-12T20:18:59Z #15 2.908 53150K .......... .......... .......... .......... .......... 41% 42.2M 2s +2024-03-12T20:18:59Z #15 2.910 53200K .......... .......... .......... .......... .......... 42% 14.1M 2s +2024-03-12T20:18:59Z #15 2.912 53250K .......... .......... .......... .......... .......... 42% 102M 2s +2024-03-12T20:18:59Z #15 2.919 53300K .......... .......... .......... .......... .......... 42% 116M 2s +2024-03-12T20:18:59Z #15 2.919 53350K .......... .......... .......... .......... .......... 42% 45.7M 2s +2024-03-12T20:18:59Z #15 2.919 53400K .......... .......... .......... .......... .......... 42% 15.1M 2s +2024-03-12T20:18:59Z #15 2.919 53450K .......... .......... .......... .......... .......... 42% 122M 2s +2024-03-12T20:18:59Z #15 2.919 53500K .......... .......... .......... .......... .......... 42% 111M 2s +2024-03-12T20:18:59Z #15 2.919 53550K .......... .......... .......... .......... .......... 42% 84.5M 2s +2024-03-12T20:18:59Z #15 2.919 53600K .......... .......... .......... .......... .......... 42% 67.1M 2s +2024-03-12T20:18:59Z #15 2.920 53650K .......... .......... .......... .......... .......... 42% 94.9M 2s +2024-03-12T20:18:59Z #15 2.920 53700K .......... .......... .......... .......... .......... 42% 81.7M 2s +2024-03-12T20:18:59Z #15 2.921 53750K .......... .......... .......... .......... .......... 42% 23.5M 2s +2024-03-12T20:18:59Z #15 2.923 53800K .......... .......... .......... .......... .......... 42% 116M 2s +2024-03-12T20:18:59Z #15 2.923 53850K .......... .......... .......... .......... .......... 42% 98.8M 2s +2024-03-12T20:18:59Z #15 2.924 53900K .......... .......... .......... .......... .......... 42% 93.6M 2s +2024-03-12T20:18:59Z #15 2.924 53950K .......... .......... .......... .......... .......... 42% 114M 2s +2024-03-12T20:18:59Z #15 2.925 54000K .......... .......... .......... .......... .......... 42% 126M 2s +2024-03-12T20:18:59Z #15 2.926 54050K .......... .......... .......... .......... .......... 42% 102M 2s +2024-03-12T20:18:59Z #15 2.926 54100K .......... .......... .......... .......... .......... 42% 77.9M 2s +2024-03-12T20:18:59Z #15 2.926 54150K .......... .......... .......... .......... .......... 42% 118M 2s +2024-03-12T20:18:59Z #15 2.927 54200K .......... .......... .......... .......... .......... 42% 86.6M 2s +2024-03-12T20:18:59Z #15 2.927 54250K .......... .......... .......... .......... .......... 42% 65.8M 2s +2024-03-12T20:18:59Z #15 2.928 54300K .......... .......... .......... .......... .......... 42% 121M 2s +2024-03-12T20:18:59Z #15 2.929 54350K .......... .......... .......... .......... .......... 42% 113M 2s +2024-03-12T20:18:59Z #15 2.929 54400K .......... .......... .......... .......... .......... 42% 92.8M 2s +2024-03-12T20:18:59Z #15 2.930 54450K .......... .......... .......... .......... .......... 42% 97.1M 2s +2024-03-12T20:18:59Z #15 2.930 54500K .......... .......... .......... .......... .......... 43% 147M 2s +2024-03-12T20:18:59Z #15 2.930 54550K .......... .......... .......... .......... .......... 43% 129M 2s +2024-03-12T20:18:59Z #15 2.931 54600K .......... .......... .......... .......... .......... 43% 142M 2s +2024-03-12T20:18:59Z #15 2.931 54650K .......... .......... .......... .......... .......... 43% 129M 2s +2024-03-12T20:18:59Z #15 2.932 54700K .......... .......... .......... .......... .......... 43% 144M 2s +2024-03-12T20:18:59Z #15 2.932 54750K .......... .......... .......... .......... .......... 43% 122M 2s +2024-03-12T20:18:59Z #15 2.932 54800K .......... .......... .......... .......... .......... 43% 147M 2s +2024-03-12T20:18:59Z #15 2.933 54850K .......... .......... .......... .......... .......... 43% 144M 2s +2024-03-12T20:18:59Z #15 2.933 54900K .......... .......... .......... .......... .......... 43% 121M 2s +2024-03-12T20:18:59Z #15 2.934 54950K .......... .......... .......... .......... .......... 43% 140M 2s +2024-03-12T20:18:59Z #15 2.934 55000K .......... .......... .......... .......... .......... 43% 124M 2s +2024-03-12T20:18:59Z #15 2.934 55050K .......... .......... .......... .......... .......... 43% 55.1M 2s +2024-03-12T20:18:59Z #15 2.935 55100K .......... .......... .......... .......... .......... 43% 132M 2s +2024-03-12T20:18:59Z #15 2.935 55150K .......... .......... .......... .......... .......... 43% 113M 2s +2024-03-12T20:18:59Z #15 2.936 55200K .......... .......... .......... .......... .......... 43% 127M 2s +2024-03-12T20:18:59Z #15 2.936 55250K .......... .......... .......... .......... .......... 43% 114M 2s +2024-03-12T20:18:59Z #15 2.937 55300K .......... .......... .......... .......... .......... 43% 117M 2s +2024-03-12T20:18:59Z #15 2.937 55350K .......... .......... .......... .......... .......... 43% 134M 2s +2024-03-12T20:18:59Z #15 2.937 55400K .......... .......... .......... .......... .......... 43% 124M 2s +2024-03-12T20:18:59Z #15 2.938 55450K .......... .......... .......... .......... .......... 43% 132M 2s +2024-03-12T20:18:59Z #15 2.938 55500K .......... .......... .......... .......... .......... 43% 132M 2s +2024-03-12T20:18:59Z #15 2.938 55550K .......... .......... .......... .......... .......... 43% 146M 2s +2024-03-12T20:18:59Z #15 2.939 55600K .......... .......... .......... .......... .......... 43% 126M 2s +2024-03-12T20:18:59Z #15 2.939 55650K .......... .......... .......... .......... .......... 43% 139M 2s +2024-03-12T20:18:59Z #15 2.939 55700K .......... .......... .......... .......... .......... 43% 129M 2s +2024-03-12T20:18:59Z #15 2.940 55750K .......... .......... .......... .......... .......... 44% 137M 2s +2024-03-12T20:18:59Z #15 2.940 55800K .......... .......... .......... .......... .......... 44% 53.1M 2s +2024-03-12T20:18:59Z #15 2.941 55850K .......... .......... .......... .......... .......... 44% 153M 2s +2024-03-12T20:18:59Z #15 2.941 55900K .......... .......... .......... .......... .......... 44% 76.8M 2s +2024-03-12T20:18:59Z #15 2.942 55950K .......... .......... .......... .......... .......... 44% 124M 2s +2024-03-12T20:18:59Z #15 2.943 56000K .......... .......... .......... .......... .......... 44% 120M 2s +2024-03-12T20:18:59Z #15 2.943 56050K .......... .......... .......... .......... .......... 44% 120M 2s +2024-03-12T20:18:59Z #15 2.944 56100K .......... .......... .......... .......... .......... 44% 140M 2s +2024-03-12T20:18:59Z #15 2.944 56150K .......... .......... .......... .......... .......... 44% 133M 2s +2024-03-12T20:18:59Z #15 2.944 56200K .......... .......... .......... .......... .......... 44% 136M 2s +2024-03-12T20:18:59Z #15 2.945 56250K .......... .......... .......... .......... .......... 44% 125M 2s +2024-03-12T20:18:59Z #15 2.945 56300K .......... .......... .......... .......... .......... 44% 106M 2s +2024-03-12T20:18:59Z #15 2.945 56350K .......... .......... .......... .......... .......... 44% 140M 2s +2024-03-12T20:18:59Z #15 2.946 56400K .......... .......... .......... .......... .......... 44% 130M 2s +2024-03-12T20:18:59Z #15 2.946 56450K .......... .......... .......... .......... .......... 44% 119M 2s +2024-03-12T20:18:59Z #15 2.947 56500K .......... .......... .......... .......... .......... 44% 83.5M 2s +2024-03-12T20:18:59Z #15 2.947 56550K .......... .......... .......... .......... .......... 44% 72.7M 2s +2024-03-12T20:18:59Z #15 2.948 56600K .......... .......... .......... .......... .......... 44% 127M 2s +2024-03-12T20:18:59Z #15 2.948 56650K .......... .......... .......... .......... .......... 44% 107M 2s +2024-03-12T20:18:59Z #15 2.949 56700K .......... .......... .......... .......... .......... 44% 109M 2s +2024-03-12T20:18:59Z #15 2.949 56750K .......... .......... .......... .......... .......... 44% 139M 2s +2024-03-12T20:18:59Z #15 2.949 56800K .......... .......... .......... .......... .......... 44% 125M 2s +2024-03-12T20:18:59Z #15 2.950 56850K .......... .......... .......... .......... .......... 44% 109M 2s +2024-03-12T20:18:59Z #15 2.950 56900K .......... .......... .......... .......... .......... 44% 140M 2s +2024-03-12T20:18:59Z #15 2.951 56950K .......... .......... .......... .......... .......... 44% 145M 2s +2024-03-12T20:18:59Z #15 2.951 57000K .......... .......... .......... .......... .......... 44% 118M 2s +2024-03-12T20:18:59Z #15 2.951 57050K .......... .......... .......... .......... .......... 45% 128M 2s +2024-03-12T20:18:59Z #15 2.951 57100K .......... .......... .......... .......... .......... 45% 141M 2s +2024-03-12T20:18:59Z #15 2.952 57150K .......... .......... .......... .......... .......... 45% 135M 2s +2024-03-12T20:18:59Z #15 2.953 57200K .......... .......... .......... .......... .......... 45% 120M 2s +2024-03-12T20:18:59Z #15 2.953 57250K .......... .......... .......... .......... .......... 45% 65.6M 2s +2024-03-12T20:18:59Z #15 2.953 57300K .......... .......... .......... .......... .......... 45% 93.2M 2s +2024-03-12T20:18:59Z #15 2.954 57350K .......... .......... .......... .......... .......... 45% 132M 2s +2024-03-12T20:18:59Z #15 2.954 57400K .......... .......... .......... .......... .......... 45% 80.7M 2s +2024-03-12T20:18:59Z #15 2.955 57450K .......... .......... .......... .......... .......... 45% 111M 2s +2024-03-12T20:18:59Z #15 2.956 57500K .......... .......... .......... .......... .......... 45% 114M 2s +2024-03-12T20:18:59Z #15 2.956 57550K .......... .......... .......... .......... .......... 45% 136M 2s +2024-03-12T20:18:59Z #15 2.956 57600K .......... .......... .......... .......... .......... 45% 135M 2s +2024-03-12T20:18:59Z #15 2.957 57650K .......... .......... .......... .......... .......... 45% 140M 2s +2024-03-12T20:18:59Z #15 2.957 57700K .......... .......... .......... .......... .......... 45% 114M 2s +2024-03-12T20:18:59Z #15 2.957 57750K .......... .......... .......... .......... .......... 45% 133M 2s +2024-03-12T20:18:59Z #15 2.958 57800K .......... .......... .......... .......... .......... 45% 114M 2s +2024-03-12T20:18:59Z #15 2.959 57850K .......... .......... .......... .......... .......... 45% 153M 2s +2024-03-12T20:18:59Z #15 2.959 57900K .......... .......... .......... .......... .......... 45% 139M 2s +2024-03-12T20:18:59Z #15 2.959 57950K .......... .......... .......... .......... .......... 45% 114M 2s +2024-03-12T20:18:59Z #15 2.959 58000K .......... .......... .......... .......... .......... 45% 58.0M 2s +2024-03-12T20:18:59Z #15 2.960 58050K .......... .......... .......... .......... .......... 45% 120M 2s +2024-03-12T20:18:59Z #15 2.961 58100K .......... .......... .......... .......... .......... 45% 111M 2s +2024-03-12T20:18:59Z #15 2.961 58150K .......... .......... .......... .......... .......... 45% 128M 2s +2024-03-12T20:18:59Z #15 2.961 58200K .......... .......... .......... .......... .......... 45% 91.6M 2s +2024-03-12T20:18:59Z #15 2.962 58250K .......... .......... .......... .......... .......... 45% 136M 2s +2024-03-12T20:18:59Z #15 2.962 58300K .......... .......... .......... .......... .......... 46% 128M 2s +2024-03-12T20:18:59Z #15 2.963 58350K .......... .......... .......... .......... .......... 46% 116M 2s +2024-03-12T20:18:59Z #15 2.963 58400K .......... .......... .......... .......... .......... 46% 125M 2s +2024-03-12T20:18:59Z #15 2.963 58450K .......... .......... .......... .......... .......... 46% 137M 2s +2024-03-12T20:18:59Z #15 2.964 58500K .......... .......... .......... .......... .......... 46% 117M 2s +2024-03-12T20:18:59Z #15 2.964 58550K .......... .......... .......... .......... .......... 46% 73.0M 2s +2024-03-12T20:18:59Z #15 2.965 58600K .......... .......... .......... .......... .......... 46% 86.4M 2s +2024-03-12T20:18:59Z #15 2.965 58650K .......... .......... .......... .......... .......... 46% 119M 2s +2024-03-12T20:18:59Z #15 2.966 58700K .......... .......... .......... .......... .......... 46% 66.7M 2s +2024-03-12T20:18:59Z #15 2.966 58750K .......... .......... .......... .......... .......... 46% 84.3M 2s +2024-03-12T20:18:59Z #15 2.967 58800K .......... .......... .......... .......... .......... 46% 98.7M 2s +2024-03-12T20:18:59Z #15 2.968 58850K .......... .......... .......... .......... .......... 46% 91.6M 2s +2024-03-12T20:18:59Z #15 2.968 58900K .......... .......... .......... .......... .......... 46% 108M 2s +2024-03-12T20:18:59Z #15 2.968 58950K .......... .......... .......... .......... .......... 46% 122M 2s +2024-03-12T20:18:59Z #15 2.969 59000K .......... .......... .......... .......... .......... 46% 94.4M 2s +2024-03-12T20:18:59Z #15 2.969 59050K .......... .......... .......... .......... .......... 46% 65.1M 2s +2024-03-12T20:18:59Z #15 2.970 59100K .......... .......... .......... .......... .......... 46% 104M 2s +2024-03-12T20:18:59Z #15 2.971 59150K .......... .......... .......... .......... .......... 46% 67.5M 2s +2024-03-12T20:18:59Z #15 2.972 59200K .......... .......... .......... .......... .......... 46% 124M 2s +2024-03-12T20:18:59Z #15 2.972 59250K .......... .......... .......... .......... .......... 46% 97.4M 2s +2024-03-12T20:18:59Z #15 2.972 59300K .......... .......... .......... .......... .......... 46% 100M 2s +2024-03-12T20:18:59Z #15 2.973 59350K .......... .......... .......... .......... .......... 46% 108M 2s +2024-03-12T20:18:59Z #15 2.973 59400K .......... .......... .......... .......... .......... 46% 58.8M 2s +2024-03-12T20:18:59Z #15 2.974 59450K .......... .......... .......... .......... .......... 46% 110M 2s +2024-03-12T20:18:59Z #15 2.974 59500K .......... .......... .......... .......... .......... 46% 135M 2s +2024-03-12T20:18:59Z #15 2.975 59550K .......... .......... .......... .......... .......... 47% 75.9M 2s +2024-03-12T20:18:59Z #15 2.976 59600K .......... .......... .......... .......... .......... 47% 141M 2s +2024-03-12T20:18:59Z #15 2.976 59650K .......... .......... .......... .......... .......... 47% 110M 2s +2024-03-12T20:18:59Z #15 2.976 59700K .......... .......... .......... .......... .......... 47% 85.1M 2s +2024-03-12T20:18:59Z #15 2.977 59750K .......... .......... .......... .......... .......... 47% 100M 2s +2024-03-12T20:18:59Z #15 2.978 59800K .......... .......... .......... .......... .......... 47% 80.6M 2s +2024-03-12T20:18:59Z #15 2.978 59850K .......... .......... .......... .......... .......... 47% 95.2M 2s +2024-03-12T20:18:59Z #15 2.979 59900K .......... .......... .......... .......... .......... 47% 130M 2s +2024-03-12T20:18:59Z #15 2.979 59950K .......... .......... .......... .......... .......... 47% 94.6M 2s +2024-03-12T20:18:59Z #15 2.979 60000K .......... .......... .......... .......... .......... 47% 87.5M 2s +2024-03-12T20:18:59Z #15 2.980 60050K .......... .......... .......... .......... .......... 47% 92.4M 2s +2024-03-12T20:18:59Z #15 2.980 60100K .......... .......... .......... .......... .......... 47% 85.2M 2s +2024-03-12T20:18:59Z #15 2.981 60150K .......... .......... .......... .......... .......... 47% 121M 2s +2024-03-12T20:18:59Z #15 2.982 60200K .......... .......... .......... .......... .......... 47% 97.4M 2s +2024-03-12T20:18:59Z #15 2.986 60250K .......... .......... .......... .......... .......... 47% 113M 2s +2024-03-12T20:18:59Z #15 2.986 60300K .......... .......... .......... .......... .......... 47% 62.8M 2s +2024-03-12T20:18:59Z #15 2.986 60350K .......... .......... .......... .......... .......... 47% 130M 2s +2024-03-12T20:18:59Z #15 2.986 60400K .......... .......... .......... .......... .......... 47% 96.2M 2s +2024-03-12T20:18:59Z #15 2.986 60450K .......... .......... .......... .......... .......... 47% 76.7M 2s +2024-03-12T20:18:59Z #15 2.986 60500K .......... .......... .......... .......... .......... 47% 134M 2s +2024-03-12T20:18:59Z #15 2.986 60550K .......... .......... .......... .......... .......... 47% 63.5M 2s +2024-03-12T20:18:59Z #15 2.986 60600K .......... .......... .......... .......... .......... 47% 102M 2s +2024-03-12T20:18:59Z #15 2.987 60650K .......... .......... .......... .......... .......... 47% 62.1M 2s +2024-03-12T20:18:59Z #15 2.987 60700K .......... .......... .......... .......... .......... 47% 102M 2s +2024-03-12T20:18:59Z #15 2.987 60750K .......... .......... .......... .......... .......... 47% 112M 2s +2024-03-12T20:18:59Z #15 2.988 60800K .......... .......... .......... .......... .......... 47% 134M 2s +2024-03-12T20:18:59Z #15 2.989 60850K .......... .......... .......... .......... .......... 48% 115M 2s +2024-03-12T20:18:59Z #15 2.989 60900K .......... .......... .......... .......... .......... 48% 138M 2s +2024-03-12T20:18:59Z #15 2.989 60950K .......... .......... .......... .......... .......... 48% 64.0M 2s +2024-03-12T20:18:59Z #15 2.990 61000K .......... .......... .......... .......... .......... 48% 63.7M 2s +2024-03-12T20:18:59Z #15 2.994 61050K .......... .......... .......... .......... .......... 48% 70.4M 2s +2024-03-12T20:18:59Z #15 2.994 61100K .......... .......... .......... .......... .......... 48% 103M 2s +2024-03-12T20:18:59Z #15 2.994 61150K .......... .......... .......... .......... .......... 48% 94.7M 2s +2024-03-12T20:18:59Z #15 2.994 61200K .......... .......... .......... .......... .......... 48% 130M 2s +2024-03-12T20:18:59Z #15 2.994 61250K .......... .......... .......... .......... .......... 48% 95.7M 2s +2024-03-12T20:18:59Z #15 2.994 61300K .......... .......... .......... .......... .......... 48% 107M 2s +2024-03-12T20:18:59Z #15 2.994 61350K .......... .......... .......... .......... .......... 48% 59.9M 2s +2024-03-12T20:18:59Z #15 2.998 61400K .......... .......... .......... .......... .......... 48% 97.3M 2s +2024-03-12T20:18:59Z #15 2.998 61450K .......... .......... .......... .......... .......... 48% 129M 2s +2024-03-12T20:18:59Z #15 2.998 61500K .......... .......... .......... .......... .......... 48% 75.7M 2s +2024-03-12T20:18:59Z #15 2.998 61550K .......... .......... .......... .......... .......... 48% 107M 2s +2024-03-12T20:18:59Z #15 2.998 61600K .......... .......... .......... .......... .......... 48% 101M 2s +2024-03-12T20:18:59Z #15 2.998 61650K .......... .......... .......... .......... .......... 48% 76.6M 2s +2024-03-12T20:18:59Z #15 2.998 61700K .......... .......... .......... .......... .......... 48% 94.3M 2s +2024-03-12T20:18:59Z #15 2.998 61750K .......... .......... .......... .......... .......... 48% 61.0M 2s +2024-03-12T20:18:59Z #15 2.999 61800K .......... .......... .......... .......... .......... 48% 127M 2s +2024-03-12T20:18:59Z #15 2.999 61850K .......... .......... .......... .......... .......... 48% 81.2M 2s +2024-03-12T20:18:59Z #15 3.000 61900K .......... .......... .......... .......... .......... 48% 107M 1s +2024-03-12T20:18:59Z #15 3.000 61950K .......... .......... .......... .......... .......... 48% 105M 1s +2024-03-12T20:18:59Z #15 3.001 62000K .......... .......... .......... .......... .......... 48% 80.5M 1s +2024-03-12T20:18:59Z #15 3.001 62050K .......... .......... .......... .......... .......... 48% 142M 1s +2024-03-12T20:18:59Z #15 3.002 62100K .......... .......... .......... .......... .......... 49% 80.0M 1s +2024-03-12T20:18:59Z #15 3.002 62150K .......... .......... .......... .......... .......... 49% 57.0M 1s +2024-03-12T20:18:59Z #15 3.003 62200K .......... .......... .......... .......... .......... 49% 130M 1s +2024-03-12T20:18:59Z #15 3.004 62250K .......... .......... .......... .......... .......... 49% 129M 1s +2024-03-12T20:18:59Z #15 3.004 62300K .......... .......... .......... .......... .......... 49% 62.1M 1s +2024-03-12T20:18:59Z #15 3.005 62350K .......... .......... .......... .......... .......... 49% 118M 1s +2024-03-12T20:18:59Z #15 3.005 62400K .......... .......... .......... .......... .......... 49% 77.1M 1s +2024-03-12T20:18:59Z #15 3.006 62450K .......... .......... .......... .......... .......... 49% 61.0M 1s +2024-03-12T20:18:59Z #15 3.010 62500K .......... .......... .......... .......... .......... 49% 134M 1s +2024-03-12T20:18:59Z #15 3.010 62550K .......... .......... .......... .......... .......... 49% 63.8M 1s +2024-03-12T20:18:59Z #15 3.010 62600K .......... .......... .......... .......... .......... 49% 105M 1s +2024-03-12T20:18:59Z #15 3.010 62650K .......... .......... .......... .......... .......... 49% 85.4M 1s +2024-03-12T20:18:59Z #15 3.010 62700K .......... .......... .......... .......... .......... 49% 91.4M 1s +2024-03-12T20:18:59Z #15 3.010 62750K .......... .......... .......... .......... .......... 49% 136M 1s +2024-03-12T20:18:59Z #15 3.010 62800K .......... .......... .......... .......... .......... 49% 68.9M 1s +2024-03-12T20:18:59Z #15 3.010 62850K .......... .......... .......... .......... .......... 49% 115M 1s +2024-03-12T20:18:59Z #15 3.011 62900K .......... .......... .......... .......... .......... 49% 143M 1s +2024-03-12T20:18:59Z #15 3.011 62950K .......... .......... .......... .......... .......... 49% 59.6M 1s +2024-03-12T20:18:59Z #15 3.014 63000K .......... .......... .......... .......... .......... 49% 125M 1s +2024-03-12T20:18:59Z #15 3.014 63050K .......... .......... .......... .......... .......... 49% 130M 1s +2024-03-12T20:18:59Z #15 3.014 63100K .......... .......... .......... .......... .......... 49% 67.2M 1s +2024-03-12T20:18:59Z #15 3.014 63150K .......... .......... .......... .......... .......... 49% 78.8M 1s +2024-03-12T20:18:59Z #15 3.018 63200K .......... .......... .......... .......... .......... 49% 41.7M 1s +2024-03-12T20:18:59Z #15 3.018 63250K .......... .......... .......... .......... .......... 49% 52.0M 1s +2024-03-12T20:18:59Z #15 3.018 63300K .......... .......... .......... .......... .......... 49% 85.3M 1s +2024-03-12T20:18:59Z #15 3.018 63350K .......... .......... .......... .......... .......... 50% 57.2M 1s +2024-03-12T20:18:59Z #15 3.018 63400K .......... .......... .......... .......... .......... 50% 92.6M 1s +2024-03-12T20:18:59Z #15 3.019 63450K .......... .......... .......... .......... .......... 50% 165M 1s +2024-03-12T20:18:59Z #15 3.019 63500K .......... .......... .......... .......... .......... 50% 57.3M 1s +2024-03-12T20:18:59Z #15 3.019 63550K .......... .......... .......... .......... .......... 50% 45.9M 1s +2024-03-12T20:18:59Z #15 3.020 63600K .......... .......... .......... .......... .......... 50% 53.9M 1s +2024-03-12T20:18:59Z #15 3.024 63650K .......... .......... .......... .......... .......... 50% 59.0M 1s +2024-03-12T20:18:59Z #15 3.024 63700K .......... .......... .......... .......... .......... 50% 81.0M 1s +2024-03-12T20:18:59Z #15 3.024 63750K .......... .......... .......... .......... .......... 50% 88.7M 1s +2024-03-12T20:18:59Z #15 3.024 63800K .......... .......... .......... .......... .......... 50% 135M 1s +2024-03-12T20:18:59Z #15 3.024 63850K .......... .......... .......... .......... .......... 50% 118M 1s +2024-03-12T20:18:59Z #15 3.026 63900K .......... .......... .......... .......... .......... 50% 121M 1s +2024-03-12T20:18:59Z #15 3.026 63950K .......... .......... .......... .......... .......... 50% 98.3M 1s +2024-03-12T20:18:59Z #15 3.026 64000K .......... .......... .......... .......... .......... 50% 70.1M 1s +2024-03-12T20:18:59Z #15 3.026 64050K .......... .......... .......... .......... .......... 50% 12.6M 1s +2024-03-12T20:18:59Z #15 3.029 64100K .......... .......... .......... .......... .......... 50% 5.23M 1s +2024-03-12T20:18:59Z #15 3.042 64150K .......... .......... .......... .......... .......... 50% 125M 1s +2024-03-12T20:18:59Z #15 3.042 64200K .......... .......... .......... .......... .......... 50% 129M 1s +2024-03-12T20:18:59Z #15 3.042 64250K .......... .......... .......... .......... .......... 50% 117M 1s +2024-03-12T20:18:59Z #15 3.042 64300K .......... .......... .......... .......... .......... 50% 99.3M 1s +2024-03-12T20:18:59Z #15 3.042 64350K .......... .......... .......... .......... .......... 50% 93.9M 1s +2024-03-12T20:18:59Z #15 3.042 64400K .......... .......... .......... .......... .......... 50% 69.3M 1s +2024-03-12T20:18:59Z #15 3.042 64450K .......... .......... .......... .......... .......... 50% 83.5M 1s +2024-03-12T20:18:59Z #15 3.042 64500K .......... .......... .......... .......... .......... 50% 72.5M 1s +2024-03-12T20:18:59Z #15 3.043 64550K .......... .......... .......... .......... .......... 50% 65.3M 1s +2024-03-12T20:18:59Z #15 3.044 64600K .......... .......... .......... .......... .......... 50% 85.8M 1s +2024-03-12T20:18:59Z #15 3.044 64650K .......... .......... .......... .......... .......... 51% 63.3M 1s +2024-03-12T20:18:59Z #15 3.045 64700K .......... .......... .......... .......... .......... 51% 75.6M 1s +2024-03-12T20:18:59Z #15 3.046 64750K .......... .......... .......... .......... .......... 51% 10.9M 1s +2024-03-12T20:18:59Z #15 3.058 64800K .......... .......... .......... .......... .......... 51% 116M 1s +2024-03-12T20:18:59Z #15 3.058 64850K .......... .......... .......... .......... .......... 51% 71.1M 1s +2024-03-12T20:18:59Z #15 3.058 64900K .......... .......... .......... .......... .......... 51% 78.4M 1s +2024-03-12T20:18:59Z #15 3.058 64950K .......... .......... .......... .......... .......... 51% 76.8M 1s +2024-03-12T20:18:59Z #15 3.058 65000K .......... .......... .......... .......... .......... 51% 142M 1s +2024-03-12T20:18:59Z #15 3.058 65050K .......... .......... .......... .......... .......... 51% 169M 1s +2024-03-12T20:18:59Z #15 3.058 65100K .......... .......... .......... .......... .......... 51% 186M 1s +2024-03-12T20:18:59Z #15 3.058 65150K .......... .......... .......... .......... .......... 51% 115M 1s +2024-03-12T20:18:59Z #15 3.058 65200K .......... .......... .......... .......... .......... 51% 176M 1s +2024-03-12T20:18:59Z #15 3.058 65250K .......... .......... .......... .......... .......... 51% 164M 1s +2024-03-12T20:18:59Z #15 3.058 65300K .......... .......... .......... .......... .......... 51% 186M 1s +2024-03-12T20:18:59Z #15 3.058 65350K .......... .......... .......... .......... .......... 51% 185M 1s +2024-03-12T20:18:59Z #15 3.058 65400K .......... .......... .......... .......... .......... 51% 162M 1s +2024-03-12T20:18:59Z #15 3.058 65450K .......... .......... .......... .......... .......... 51% 186M 1s +2024-03-12T20:18:59Z #15 3.058 65500K .......... .......... .......... .......... .......... 51% 182M 1s +2024-03-12T20:18:59Z #15 3.058 65550K .......... .......... .......... .......... .......... 51% 148M 1s +2024-03-12T20:18:59Z #15 3.058 65600K .......... .......... .......... .......... .......... 51% 184M 1s +2024-03-12T20:18:59Z #15 3.058 65650K .......... .......... .......... .......... .......... 51% 171M 1s +2024-03-12T20:18:59Z #15 3.058 65700K .......... .......... .......... .......... .......... 51% 195M 1s +2024-03-12T20:18:59Z #15 3.058 65750K .......... .......... .......... .......... .......... 51% 147M 1s +2024-03-12T20:18:59Z #15 3.058 65800K .......... .......... .......... .......... .......... 51% 124M 1s +2024-03-12T20:18:59Z #15 3.058 65850K .......... .......... .......... .......... .......... 51% 57.1M 1s +2024-03-12T20:18:59Z #15 3.058 65900K .......... .......... .......... .......... .......... 52% 137M 1s +2024-03-12T20:18:59Z #15 3.066 65950K .......... .......... .......... .......... .......... 52% 107M 1s +2024-03-12T20:18:59Z #15 3.066 66000K .......... .......... .......... .......... .......... 52% 137M 1s +2024-03-12T20:18:59Z #15 3.066 66050K .......... .......... .......... .......... .......... 52% 121M 1s +2024-03-12T20:18:59Z #15 3.066 66100K .......... .......... .......... .......... .......... 52% 135M 1s +2024-03-12T20:18:59Z #15 3.066 66150K .......... .......... .......... .......... .......... 52% 144M 1s +2024-03-12T20:18:59Z #15 3.066 66200K .......... .......... .......... .......... .......... 52% 121M 1s +2024-03-12T20:18:59Z #15 3.066 66250K .......... .......... .......... .......... .......... 52% 117M 1s +2024-03-12T20:18:59Z #15 3.066 66300K .......... .......... .......... .......... .......... 52% 125M 1s +2024-03-12T20:18:59Z #15 3.066 66350K .......... .......... .......... .......... .......... 52% 137M 1s +2024-03-12T20:18:59Z #15 3.066 66400K .......... .......... .......... .......... .......... 52% 139M 1s +2024-03-12T20:18:59Z #15 3.066 66450K .......... .......... .......... .......... .......... 52% 116M 1s +2024-03-12T20:18:59Z #15 3.066 66500K .......... .......... .......... .......... .......... 52% 115M 1s +2024-03-12T20:18:59Z #15 3.066 66550K .......... .......... .......... .......... .......... 52% 98.4M 1s +2024-03-12T20:18:59Z #15 3.066 66600K .......... .......... .......... .......... .......... 52% 102M 1s +2024-03-12T20:18:59Z #15 3.066 66650K .......... .......... .......... .......... .......... 52% 107M 1s +2024-03-12T20:18:59Z #15 3.066 66700K .......... .......... .......... .......... .......... 52% 102M 1s +2024-03-12T20:18:59Z #15 3.066 66750K .......... .......... .......... .......... .......... 52% 98.7M 1s +2024-03-12T20:18:59Z #15 3.066 66800K .......... .......... .......... .......... .......... 52% 117M 1s +2024-03-12T20:18:59Z #15 3.066 66850K .......... .......... .......... .......... .......... 52% 119M 1s +2024-03-12T20:18:59Z #15 3.067 66900K .......... .......... .......... .......... .......... 52% 93.6M 1s +2024-03-12T20:18:59Z #15 3.067 66950K .......... .......... .......... .......... .......... 52% 115M 1s +2024-03-12T20:18:59Z #15 3.068 67000K .......... .......... .......... .......... .......... 52% 108M 1s +2024-03-12T20:18:59Z #15 3.068 67050K .......... .......... .......... .......... .......... 52% 118M 1s +2024-03-12T20:18:59Z #15 3.069 67100K .......... .......... .......... .......... .......... 52% 128M 1s +2024-03-12T20:18:59Z #15 3.069 67150K .......... .......... .......... .......... .......... 53% 111M 1s +2024-03-12T20:18:59Z #15 3.069 67200K .......... .......... .......... .......... .......... 53% 114M 1s +2024-03-12T20:18:59Z #15 3.070 67250K .......... .......... .......... .......... .......... 53% 129M 1s +2024-03-12T20:18:59Z #15 3.070 67300K .......... .......... .......... .......... .......... 53% 113M 1s +2024-03-12T20:18:59Z #15 3.074 67350K .......... .......... .......... .......... .......... 53% 158M 1s +2024-03-12T20:18:59Z #15 3.074 67400K .......... .......... .......... .......... .......... 53% 160M 1s +2024-03-12T20:18:59Z #15 3.074 67450K .......... .......... .......... .......... .......... 53% 191M 1s +2024-03-12T20:18:59Z #15 3.074 67500K .......... .......... .......... .......... .......... 53% 153M 1s +2024-03-12T20:18:59Z #15 3.074 67550K .......... .......... .......... .......... .......... 53% 191M 1s +2024-03-12T20:18:59Z #15 3.074 67600K .......... .......... .......... .......... .......... 53% 189M 1s +2024-03-12T20:18:59Z #15 3.074 67650K .......... .......... .......... .......... .......... 53% 167M 1s +2024-03-12T20:18:59Z #15 3.074 67700K .......... .......... .......... .......... .......... 53% 186M 1s +2024-03-12T20:18:59Z #15 3.074 67750K .......... .......... .......... .......... .......... 53% 174M 1s +2024-03-12T20:18:59Z #15 3.074 67800K .......... .......... .......... .......... .......... 53% 164M 1s +2024-03-12T20:18:59Z #15 3.074 67850K .......... .......... .......... .......... .......... 53% 184M 1s +2024-03-12T20:18:59Z #15 3.074 67900K .......... .......... .......... .......... .......... 53% 109M 1s +2024-03-12T20:18:59Z #15 3.075 67950K .......... .......... .......... .......... .......... 53% 113M 1s +2024-03-12T20:18:59Z #15 3.075 68000K .......... .......... .......... .......... .......... 53% 111M 1s +2024-03-12T20:18:59Z #15 3.075 68050K .......... .......... .......... .......... .......... 53% 127M 1s +2024-03-12T20:18:59Z #15 3.076 68100K .......... .......... .......... .......... .......... 53% 138M 1s +2024-03-12T20:18:59Z #15 3.076 68150K .......... .......... .......... .......... .......... 53% 112M 1s +2024-03-12T20:18:59Z #15 3.076 68200K .......... .......... .......... .......... .......... 53% 136M 1s +2024-03-12T20:18:59Z #15 3.077 68250K .......... .......... .......... .......... .......... 53% 112M 1s +2024-03-12T20:18:59Z #15 3.077 68300K .......... .......... .......... .......... .......... 53% 125M 1s +2024-03-12T20:18:59Z #15 3.078 68350K .......... .......... .......... .......... .......... 53% 126M 1s +2024-03-12T20:18:59Z #15 3.078 68400K .......... .......... .......... .......... .......... 53% 117M 1s +2024-03-12T20:18:59Z #15 3.089 68450K .......... .......... .......... .......... .......... 54% 148M 1s +2024-03-12T20:18:59Z #15 3.089 68500K .......... .......... .......... .......... .......... 54% 113M 1s +2024-03-12T20:18:59Z #15 3.089 68550K .......... .......... .......... .......... .......... 54% 133M 1s +2024-03-12T20:18:59Z #15 3.089 68600K .......... .......... .......... .......... .......... 54% 141M 1s +2024-03-12T20:18:59Z #15 3.089 68650K .......... .......... .......... .......... .......... 54% 139M 1s +2024-03-12T20:18:59Z #15 3.089 68700K .......... .......... .......... .......... .......... 54% 175M 1s +2024-03-12T20:18:59Z #15 3.089 68750K .......... .......... .......... .......... .......... 54% 147M 1s +2024-03-12T20:18:59Z #15 3.089 68800K .......... .......... .......... .......... .......... 54% 174M 1s +2024-03-12T20:18:59Z #15 3.089 68850K .......... .......... .......... .......... .......... 54% 167M 1s +2024-03-12T20:18:59Z #15 3.089 68900K .......... .......... .......... .......... .......... 54% 162M 1s +2024-03-12T20:18:59Z #15 3.089 68950K .......... .......... .......... .......... .......... 54% 15.9M 1s +2024-03-12T20:18:59Z #15 3.089 69000K .......... .......... .......... .......... .......... 54% 99.9M 1s +2024-03-12T20:18:59Z #15 3.089 69050K .......... .......... .......... .......... .......... 54% 136M 1s +2024-03-12T20:18:59Z #15 3.089 69100K .......... .......... .......... .......... .......... 54% 115M 1s +2024-03-12T20:18:59Z #15 3.089 69150K .......... .......... .......... .......... .......... 54% 129M 1s +2024-03-12T20:18:59Z #15 3.089 69200K .......... .......... .......... .......... .......... 54% 117M 1s +2024-03-12T20:18:59Z #15 3.089 69250K .......... .......... .......... .......... .......... 54% 110M 1s +2024-03-12T20:18:59Z #15 3.089 69300K .......... .......... .......... .......... .......... 54% 138M 1s +2024-03-12T20:18:59Z #15 3.089 69350K .......... .......... .......... .......... .......... 54% 144M 1s +2024-03-12T20:18:59Z #15 3.089 69400K .......... .......... .......... .......... .......... 54% 107M 1s +2024-03-12T20:18:59Z #15 3.089 69450K .......... .......... .......... .......... .......... 54% 131M 1s +2024-03-12T20:18:59Z #15 3.089 69500K .......... .......... .......... .......... .......... 54% 517K 1s +2024-03-12T20:18:59Z #15 3.186 69550K .......... .......... .......... .......... .......... 54% 45.2M 1s +2024-03-12T20:18:59Z #15 3.187 69600K .......... .......... .......... .......... .......... 54% 157M 1s +2024-03-12T20:18:59Z #15 3.187 69650K .......... .......... .......... .......... .......... 54% 34.1M 1s +2024-03-12T20:18:59Z #15 3.190 69700K .......... .......... .......... .......... .......... 55% 148M 1s +2024-03-12T20:18:59Z #15 3.190 69750K .......... .......... .......... .......... .......... 55% 156M 1s +2024-03-12T20:18:59Z #15 3.190 69800K .......... .......... .......... .......... .......... 55% 157M 1s +2024-03-12T20:18:59Z #15 3.190 69850K .......... .......... .......... .......... .......... 55% 126M 1s +2024-03-12T20:18:59Z #15 3.190 69900K .......... .......... .......... .......... .......... 55% 15.9M 1s +2024-03-12T20:18:59Z #15 3.193 69950K .......... .......... .......... .......... .......... 55% 39.3M 1s +2024-03-12T20:18:59Z #15 3.194 70000K .......... .......... .......... .......... .......... 55% 49.2M 1s +2024-03-12T20:18:59Z #15 3.195 70050K .......... .......... .......... .......... .......... 55% 142M 1s +2024-03-12T20:18:59Z #15 3.195 70100K .......... .......... .......... .......... .......... 55% 24.1M 1s +2024-03-12T20:18:59Z #15 3.197 70150K .......... .......... .......... .......... .......... 55% 43.8M 1s +2024-03-12T20:18:59Z #15 3.199 70200K .......... .......... .......... .......... .......... 55% 58.4M 1s +2024-03-12T20:18:59Z #15 3.199 70250K .......... .......... .......... .......... .......... 55% 33.2M 1s +2024-03-12T20:18:59Z #15 3.201 70300K .......... .......... .......... .......... .......... 55% 26.6M 1s +2024-03-12T20:18:59Z #15 3.203 70350K .......... .......... .......... .......... .......... 55% 17.8M 1s +2024-03-12T20:18:59Z #15 3.205 70400K .......... .......... .......... .......... .......... 55% 10.2M 1s +2024-03-12T20:18:59Z #15 3.210 70450K .......... .......... .......... .......... .......... 55% 23.0M 1s +2024-03-12T20:18:59Z #15 3.213 70500K .......... .......... .......... .......... .......... 55% 131M 1s +2024-03-12T20:18:59Z #15 3.213 70550K .......... .......... .......... .......... .......... 55% 162M 1s +2024-03-12T20:18:59Z #15 3.213 70600K .......... .......... .......... .......... .......... 55% 34.7M 1s +2024-03-12T20:18:59Z #15 3.215 70650K .......... .......... .......... .......... .......... 55% 17.7M 1s +2024-03-12T20:18:59Z #15 3.217 70700K .......... .......... .......... .......... .......... 55% 131M 1s +2024-03-12T20:18:59Z #15 3.217 70750K .......... .......... .......... .......... .......... 55% 14.8M 1s +2024-03-12T20:18:59Z #15 3.226 70800K .......... .......... .......... .......... .......... 55% 176M 1s +2024-03-12T20:18:59Z #15 3.226 70850K .......... .......... .......... .......... .......... 55% 164M 1s +2024-03-12T20:18:59Z #15 3.226 70900K .......... .......... .......... .......... .......... 55% 161M 1s +2024-03-12T20:18:59Z #15 3.226 70950K .......... .......... .......... .......... .......... 56% 186M 1s +2024-03-12T20:18:59Z #15 3.226 71000K .......... .......... .......... .......... .......... 56% 13.6M 1s +2024-03-12T20:18:59Z #15 3.226 71050K .......... .......... .......... .......... .......... 56% 167M 1s +2024-03-12T20:18:59Z #15 3.226 71100K .......... .......... .......... .......... .......... 56% 85.4M 1s +2024-03-12T20:18:59Z #15 3.226 71150K .......... .......... .......... .......... .......... 56% 29.8M 1s +2024-03-12T20:18:59Z #15 3.228 71200K .......... .......... .......... .......... .......... 56% 65.2M 1s +2024-03-12T20:18:59Z #15 3.229 71250K .......... .......... .......... .......... .......... 56% 164M 1s +2024-03-12T20:18:59Z #15 3.229 71300K .......... .......... .......... .......... .......... 56% 71.8M 1s +2024-03-12T20:18:59Z #15 3.230 71350K .......... .......... .......... .......... .......... 56% 33.7M 1s +2024-03-12T20:18:59Z #15 3.232 71400K .......... .......... .......... .......... .......... 56% 104M 1s +2024-03-12T20:18:59Z #15 3.232 71450K .......... .......... .......... .......... .......... 56% 79.2M 1s +2024-03-12T20:18:59Z #15 3.232 71500K .......... .......... .......... .......... .......... 56% 34.1M 1s +2024-03-12T20:18:59Z #15 3.234 71550K .......... .......... .......... .......... .......... 56% 134M 1s +2024-03-12T20:18:59Z #15 3.235 71600K .......... .......... .......... .......... .......... 56% 27.4M 1s +2024-03-12T20:18:59Z #15 3.236 71650K .......... .......... .......... .......... .......... 56% 39.0M 1s +2024-03-12T20:18:59Z #15 3.237 71700K .......... .......... .......... .......... .......... 56% 51.8M 1s +2024-03-12T20:18:59Z #15 3.238 71750K .......... .......... .......... .......... .......... 56% 54.4M 1s +2024-03-12T20:18:59Z #15 3.239 71800K .......... .......... .......... .......... .......... 56% 29.4M 1s +2024-03-12T20:18:59Z #15 3.241 71850K .......... .......... .......... .......... .......... 56% 42.2M 1s +2024-03-12T20:18:59Z #15 3.242 71900K .......... .......... .......... .......... .......... 56% 65.7M 1s +2024-03-12T20:18:59Z #15 3.243 71950K .......... .......... .......... .......... .......... 56% 30.5M 1s +2024-03-12T20:18:59Z #15 3.244 72000K .......... .......... .......... .......... .......... 56% 30.9M 1s +2024-03-12T20:18:59Z #15 3.246 72050K .......... .......... .......... .......... .......... 56% 69.7M 1s +2024-03-12T20:18:59Z #15 3.247 72100K .......... .......... .......... .......... .......... 56% 148M 1s +2024-03-12T20:18:59Z #15 3.247 72150K .......... .......... .......... .......... .......... 56% 28.1M 1s +2024-03-12T20:18:59Z #15 3.249 72200K .......... .......... .......... .......... .......... 56% 8.13M 1s +2024-03-12T20:18:59Z #15 3.254 72250K .......... .......... .......... .......... .......... 57% 49.8M 1s +2024-03-12T20:18:59Z #15 3.256 72300K .......... .......... .......... .......... .......... 57% 39.9M 1s +2024-03-12T20:18:59Z #15 3.256 72350K .......... .......... .......... .......... .......... 57% 34.5M 1s +2024-03-12T20:18:59Z #15 3.258 72400K .......... .......... .......... .......... .......... 57% 45.7M 1s +2024-03-12T20:18:59Z #15 3.259 72450K .......... .......... .......... .......... .......... 57% 129M 1s +2024-03-12T20:18:59Z #15 3.259 72500K .......... .......... .......... .......... .......... 57% 111M 1s +2024-03-12T20:18:59Z #15 3.260 72550K .......... .......... .......... .......... .......... 57% 129M 1s +2024-03-12T20:18:59Z #15 3.260 72600K .......... .......... .......... .......... .......... 57% 136M 1s +2024-03-12T20:18:59Z #15 3.261 72650K .......... .......... .......... .......... .......... 57% 106M 1s +2024-03-12T20:18:59Z #15 3.261 72700K .......... .......... .......... .......... .......... 57% 106M 1s +2024-03-12T20:18:59Z #15 3.261 72750K .......... .......... .......... .......... .......... 57% 19.8M 1s +2024-03-12T20:18:59Z #15 3.264 72800K .......... .......... .......... .......... .......... 57% 125M 1s +2024-03-12T20:18:59Z #15 3.264 72850K .......... .......... .......... .......... .......... 57% 117M 1s +2024-03-12T20:18:59Z #15 3.265 72900K .......... .......... .......... .......... .......... 57% 119M 1s +2024-03-12T20:18:59Z #15 3.265 72950K .......... .......... .......... .......... .......... 57% 118M 1s +2024-03-12T20:18:59Z #15 3.266 73000K .......... .......... .......... .......... .......... 57% 36.9M 1s +2024-03-12T20:18:59Z #15 3.267 73050K .......... .......... .......... .......... .......... 57% 139M 1s +2024-03-12T20:18:59Z #15 3.267 73100K .......... .......... .......... .......... .......... 57% 115M 1s +2024-03-12T20:18:59Z #15 3.268 73150K .......... .......... .......... .......... .......... 57% 141M 1s +2024-03-12T20:18:59Z #15 3.268 73200K .......... .......... .......... .......... .......... 57% 121M 1s +2024-03-12T20:18:59Z #15 3.268 73250K .......... .......... .......... .......... .......... 57% 140M 1s +2024-03-12T20:18:59Z #15 3.269 73300K .......... .......... .......... .......... .......... 57% 141M 1s +2024-03-12T20:18:59Z #15 3.269 73350K .......... .......... .......... .......... .......... 57% 148M 1s +2024-03-12T20:18:59Z #15 3.269 73400K .......... .......... .......... .......... .......... 57% 104M 1s +2024-03-12T20:18:59Z #15 3.270 73450K .......... .......... .......... .......... .......... 57% 107M 1s +2024-03-12T20:18:59Z #15 3.271 73500K .......... .......... .......... .......... .......... 58% 157M 1s +2024-03-12T20:18:59Z #15 3.271 73550K .......... .......... .......... .......... .......... 58% 136M 1s +2024-03-12T20:18:59Z #15 3.271 73600K .......... .......... .......... .......... .......... 58% 117M 1s +2024-03-12T20:18:59Z #15 3.272 73650K .......... .......... .......... .......... .......... 58% 158M 1s +2024-03-12T20:18:59Z #15 3.272 73700K .......... .......... .......... .......... .......... 58% 141M 1s +2024-03-12T20:18:59Z #15 3.272 73750K .......... .......... .......... .......... .......... 58% 115M 1s +2024-03-12T20:18:59Z #15 3.273 73800K .......... .......... .......... .......... .......... 58% 139M 1s +2024-03-12T20:18:59Z #15 3.273 73850K .......... .......... .......... .......... .......... 58% 130M 1s +2024-03-12T20:18:59Z #15 3.273 73900K .......... .......... .......... .......... .......... 58% 142M 1s +2024-03-12T20:18:59Z #15 3.274 73950K .......... .......... .......... .......... .......... 58% 9.93M 1s +2024-03-12T20:18:59Z #15 3.279 74000K .......... .......... .......... .......... .......... 58% 114M 1s +2024-03-12T20:18:59Z #15 3.279 74050K .......... .......... .......... .......... .......... 58% 131M 1s +2024-03-12T20:18:59Z #15 3.279 74100K .......... .......... .......... .......... .......... 58% 147M 1s +2024-03-12T20:18:59Z #15 3.280 74150K .......... .......... .......... .......... .......... 58% 172M 1s +2024-03-12T20:18:59Z #15 3.280 74200K .......... .......... .......... .......... .......... 58% 130M 1s +2024-03-12T20:18:59Z #15 3.280 74250K .......... .......... .......... .......... .......... 58% 125M 1s +2024-03-12T20:18:59Z #15 3.281 74300K .......... .......... .......... .......... .......... 58% 138M 1s +2024-03-12T20:18:59Z #15 3.283 74350K .......... .......... .......... .......... .......... 58% 124M 1s +2024-03-12T20:18:59Z #15 3.283 74400K .......... .......... .......... .......... .......... 58% 161M 1s +2024-03-12T20:18:59Z #15 3.286 74450K .......... .......... .......... .......... .......... 58% 10.9M 1s +2024-03-12T20:18:59Z #15 3.286 74500K .......... .......... .......... .......... .......... 58% 109M 1s +2024-03-12T20:18:59Z #15 3.287 74550K .......... .......... .......... .......... .......... 58% 132M 1s +2024-03-12T20:18:59Z #15 3.287 74600K .......... .......... .......... .......... .......... 58% 141M 1s +2024-03-12T20:18:59Z #15 3.288 74650K .......... .......... .......... .......... .......... 58% 150M 1s +2024-03-12T20:18:59Z #15 3.288 74700K .......... .......... .......... .......... .......... 58% 120M 1s +2024-03-12T20:18:59Z #15 3.288 74750K .......... .......... .......... .......... .......... 58% 125M 1s +2024-03-12T20:18:59Z #15 3.289 74800K .......... .......... .......... .......... .......... 59% 157M 1s +2024-03-12T20:18:59Z #15 3.290 74850K .......... .......... .......... .......... .......... 59% 147M 1s +2024-03-12T20:18:59Z #15 3.290 74900K .......... .......... .......... .......... .......... 59% 172M 1s +2024-03-12T20:18:59Z #15 3.290 74950K .......... .......... .......... .......... .......... 59% 110M 1s +2024-03-12T20:18:59Z #15 3.290 75000K .......... .......... .......... .......... .......... 59% 154M 1s +2024-03-12T20:18:59Z #15 3.290 75050K .......... .......... .......... .......... .......... 59% 144M 1s +2024-03-12T20:18:59Z #15 3.291 75100K .......... .......... .......... .......... .......... 59% 141M 1s +2024-03-12T20:18:59Z #15 3.291 75150K .......... .......... .......... .......... .......... 59% 127M 1s +2024-03-12T20:18:59Z #15 3.291 75200K .......... .......... .......... .......... .......... 59% 130M 1s +2024-03-12T20:18:59Z #15 3.292 75250K .......... .......... .......... .......... .......... 59% 130M 1s +2024-03-12T20:18:59Z #15 3.292 75300K .......... .......... .......... .......... .......... 59% 130M 1s +2024-03-12T20:18:59Z #15 3.292 75350K .......... .......... .......... .......... .......... 59% 118M 1s +2024-03-12T20:18:59Z #15 3.294 75400K .......... .......... .......... .......... .......... 59% 137M 1s +2024-03-12T20:18:59Z #15 3.294 75450K .......... .......... .......... .......... .......... 59% 158M 1s +2024-03-12T20:18:59Z #15 3.294 75500K .......... .......... .......... .......... .......... 59% 10.8M 1s +2024-03-12T20:18:59Z #15 3.298 75550K .......... .......... .......... .......... .......... 59% 132M 1s +2024-03-12T20:18:59Z #15 3.298 75600K .......... .......... .......... .......... .......... 59% 125M 1s +2024-03-12T20:18:59Z #15 3.299 75650K .......... .......... .......... .......... .......... 59% 142M 1s +2024-03-12T20:18:59Z #15 3.299 75700K .......... .......... .......... .......... .......... 59% 143M 1s +2024-03-12T20:18:59Z #15 3.299 75750K .......... .......... .......... .......... .......... 59% 122M 1s +2024-03-12T20:18:59Z #15 3.300 75800K .......... .......... .......... .......... .......... 59% 166M 1s +2024-03-12T20:18:59Z #15 3.300 75850K .......... .......... .......... .......... .......... 59% 133M 1s +2024-03-12T20:18:59Z #15 3.301 75900K .......... .......... .......... .......... .......... 59% 121M 1s +2024-03-12T20:18:59Z #15 3.301 75950K .......... .......... .......... .......... .......... 59% 130M 1s +2024-03-12T20:18:59Z #15 3.301 76000K .......... .......... .......... .......... .......... 59% 134M 1s +2024-03-12T20:18:59Z #15 3.307 76050K .......... .......... .......... .......... .......... 60% 133M 1s +2024-03-12T20:18:59Z #15 3.307 76100K .......... .......... .......... .......... .......... 60% 206M 1s +2024-03-12T20:18:59Z #15 3.307 76150K .......... .......... .......... .......... .......... 60% 199M 1s +2024-03-12T20:18:59Z #15 3.307 76200K .......... .......... .......... .......... .......... 60% 175M 1s +2024-03-12T20:18:59Z #15 3.307 76250K .......... .......... .......... .......... .......... 60% 190M 1s +2024-03-12T20:18:59Z #15 3.307 76300K .......... .......... .......... .......... .......... 60% 186M 1s +2024-03-12T20:18:59Z #15 3.307 76350K .......... .......... .......... .......... .......... 60% 198M 1s +2024-03-12T20:18:59Z #15 3.307 76400K .......... .......... .......... .......... .......... 60% 208M 1s +2024-03-12T20:18:59Z #15 3.307 76450K .......... .......... .......... .......... .......... 60% 212M 1s +2024-03-12T20:18:59Z #15 3.307 76500K .......... .......... .......... .......... .......... 60% 169M 1s +2024-03-12T20:18:59Z #15 3.307 76550K .......... .......... .......... .......... .......... 60% 210M 1s +2024-03-12T20:18:59Z #15 3.307 76600K .......... .......... .......... .......... .......... 60% 184M 1s +2024-03-12T20:18:59Z #15 3.307 76650K .......... .......... .......... .......... .......... 60% 190M 1s +2024-03-12T20:18:59Z #15 3.307 76700K .......... .......... .......... .......... .......... 60% 198M 1s +2024-03-12T20:18:59Z #15 3.307 76750K .......... .......... .......... .......... .......... 60% 169M 1s +2024-03-12T20:18:59Z #15 3.307 76800K .......... .......... .......... .......... .......... 60% 11.0M 1s +2024-03-12T20:18:59Z #15 3.310 76850K .......... .......... .......... .......... .......... 60% 142M 1s +2024-03-12T20:18:59Z #15 3.310 76900K .......... .......... .......... .......... .......... 60% 147M 1s +2024-03-12T20:18:59Z #15 3.312 76950K .......... .......... .......... .......... .......... 60% 119M 1s +2024-03-12T20:18:59Z #15 3.312 77000K .......... .......... .......... .......... .......... 60% 142M 1s +2024-03-12T20:18:59Z #15 3.312 77050K .......... .......... .......... .......... .......... 60% 129M 1s +2024-03-12T20:18:59Z #15 3.312 77100K .......... .......... .......... .......... .......... 60% 169M 1s +2024-03-12T20:18:59Z #15 3.312 77150K .......... .......... .......... .......... .......... 60% 131M 1s +2024-03-12T20:18:59Z #15 3.313 77200K .......... .......... .......... .......... .......... 60% 154M 1s +2024-03-12T20:18:59Z #15 3.313 77250K .......... .......... .......... .......... .......... 60% 124M 1s +2024-03-12T20:18:59Z #15 3.313 77300K .......... .......... .......... .......... .......... 61% 137M 1s +2024-03-12T20:18:59Z #15 3.314 77350K .......... .......... .......... .......... .......... 61% 113M 1s +2024-03-12T20:18:59Z #15 3.314 77400K .......... .......... .......... .......... .......... 61% 119M 1s +2024-03-12T20:18:59Z #15 3.315 77450K .......... .......... .......... .......... .......... 61% 154M 1s +2024-03-12T20:18:59Z #15 3.315 77500K .......... .......... .......... .......... .......... 61% 136M 1s +2024-03-12T20:18:59Z #15 3.317 77550K .......... .......... .......... .......... .......... 61% 28.5M 1s +2024-03-12T20:18:59Z #15 3.317 77600K .......... .......... .......... .......... .......... 61% 130M 1s +2024-03-12T20:18:59Z #15 3.317 77650K .......... .......... .......... .......... .......... 61% 147M 1s +2024-03-12T20:18:59Z #15 3.317 77700K .......... .......... .......... .......... .......... 61% 10.9M 1s +2024-03-12T20:18:59Z #15 3.322 77750K .......... .......... .......... .......... .......... 61% 93.4M 1s +2024-03-12T20:18:59Z #15 3.325 77800K .......... .......... .......... .......... .......... 61% 28.5M 1s +2024-03-12T20:18:59Z #15 3.325 77850K .......... .......... .......... .......... .......... 61% 128M 1s +2024-03-12T20:18:59Z #15 3.325 77900K .......... .......... .......... .......... .......... 61% 129M 1s +2024-03-12T20:18:59Z #15 3.325 77950K .......... .......... .......... .......... .......... 61% 108M 1s +2024-03-12T20:18:59Z #15 3.325 78000K .......... .......... .......... .......... .......... 61% 121M 1s +2024-03-12T20:18:59Z #15 3.327 78050K .......... .......... .......... .......... .......... 61% 147M 1s +2024-03-12T20:18:59Z #15 3.327 78100K .......... .......... .......... .......... .......... 61% 179M 1s +2024-03-12T20:18:59Z #15 3.327 78150K .......... .......... .......... .......... .......... 61% 114M 1s +2024-03-12T20:18:59Z #15 3.327 78200K .......... .......... .......... .......... .......... 61% 128M 1s +2024-03-12T20:18:59Z #15 3.329 78250K .......... .......... .......... .......... .......... 61% 26.8M 1s +2024-03-12T20:18:59Z #15 3.329 78300K .......... .......... .......... .......... .......... 61% 18.3M 1s +2024-03-12T20:18:59Z #15 3.332 78350K .......... .......... .......... .......... .......... 61% 113M 1s +2024-03-12T20:18:59Z #15 3.332 78400K .......... .......... .......... .......... .......... 61% 166M 1s +2024-03-12T20:18:59Z #15 3.332 78450K .......... .......... .......... .......... .......... 61% 146M 1s +2024-03-12T20:18:59Z #15 3.333 78500K .......... .......... .......... .......... .......... 61% 127M 1s +2024-03-12T20:18:59Z #15 3.333 78550K .......... .......... .......... .......... .......... 61% 112M 1s +2024-03-12T20:18:59Z #15 3.334 78600K .......... .......... .......... .......... .......... 62% 126M 1s +2024-03-12T20:18:59Z #15 3.334 78650K .......... .......... .......... .......... .......... 62% 157M 1s +2024-03-12T20:18:59Z #15 3.335 78700K .......... .......... .......... .......... .......... 62% 164M 1s +2024-03-12T20:18:59Z #15 3.335 78750K .......... .......... .......... .......... .......... 62% 126M 1s +2024-03-12T20:18:59Z #15 3.335 78800K .......... .......... .......... .......... .......... 62% 123M 1s +2024-03-12T20:18:59Z #15 3.336 78850K .......... .......... .......... .......... .......... 62% 118M 1s +2024-03-12T20:18:59Z #15 3.336 78900K .......... .......... .......... .......... .......... 62% 136M 1s +2024-03-12T20:18:59Z #15 3.336 78950K .......... .......... .......... .......... .......... 62% 131M 1s +2024-03-12T20:18:59Z #15 3.336 79000K .......... .......... .......... .......... .......... 62% 114M 1s +2024-03-12T20:18:59Z #15 3.337 79050K .......... .......... .......... .......... .......... 62% 135M 1s +2024-03-12T20:18:59Z #15 3.337 79100K .......... .......... .......... .......... .......... 62% 132M 1s +2024-03-12T20:18:59Z #15 3.339 79150K .......... .......... .......... .......... .......... 62% 29.0M 1s +2024-03-12T20:18:59Z #15 3.339 79200K .......... .......... .......... .......... .......... 62% 141M 1s +2024-03-12T20:18:59Z #15 3.340 79250K .......... .......... .......... .......... .......... 62% 143M 1s +2024-03-12T20:18:59Z #15 3.340 79300K .......... .......... .......... .......... .......... 62% 109M 1s +2024-03-12T20:18:59Z #15 3.341 79350K .......... .......... .......... .......... .......... 62% 143M 1s +2024-03-12T20:18:59Z #15 3.341 79400K .......... .......... .......... .......... .......... 62% 132M 1s +2024-03-12T20:18:59Z #15 3.341 79450K .......... .......... .......... .......... .......... 62% 115M 1s +2024-03-12T20:18:59Z #15 3.342 79500K .......... .......... .......... .......... .......... 62% 115M 1s +2024-03-12T20:18:59Z #15 3.342 79550K .......... .......... .......... .......... .......... 62% 136M 1s +2024-03-12T20:18:59Z #15 3.343 79600K .......... .......... .......... .......... .......... 62% 92.1M 1s +2024-03-12T20:18:59Z #15 3.343 79650K .......... .......... .......... .......... .......... 62% 133M 1s +2024-03-12T20:18:59Z #15 3.343 79700K .......... .......... .......... .......... .......... 62% 133M 1s +2024-03-12T20:18:59Z #15 3.344 79750K .......... .......... .......... .......... .......... 62% 111M 1s +2024-03-12T20:18:59Z #15 3.344 79800K .......... .......... .......... .......... .......... 62% 130M 1s +2024-03-12T20:18:59Z #15 3.345 79850K .......... .......... .......... .......... .......... 63% 140M 1s +2024-03-12T20:18:59Z #15 3.345 79900K .......... .......... .......... .......... .......... 63% 129M 1s +2024-03-12T20:18:59Z #15 3.346 79950K .......... .......... .......... .......... .......... 63% 94.4M 1s +2024-03-12T20:18:59Z #15 3.346 80000K .......... .......... .......... .......... .......... 63% 133M 1s +2024-03-12T20:18:59Z #15 3.346 80050K .......... .......... .......... .......... .......... 63% 109M 1s +2024-03-12T20:18:59Z #15 3.347 80100K .......... .......... .......... .......... .......... 63% 140M 1s +2024-03-12T20:18:59Z #15 3.347 80150K .......... .......... .......... .......... .......... 63% 138M 1s +2024-03-12T20:18:59Z #15 3.347 80200K .......... .......... .......... .......... .......... 63% 125M 1s +2024-03-12T20:18:59Z #15 3.348 80250K .......... .......... .......... .......... .......... 63% 126M 1s +2024-03-12T20:18:59Z #15 3.348 80300K .......... .......... .......... .......... .......... 63% 111M 1s +2024-03-12T20:18:59Z #15 3.349 80350K .......... .......... .......... .......... .......... 63% 91.8M 1s +2024-03-12T20:18:59Z #15 3.349 80400K .......... .......... .......... .......... .......... 63% 116M 1s +2024-03-12T20:18:59Z #15 3.350 80450K .......... .......... .......... .......... .......... 63% 124M 1s +2024-03-12T20:18:59Z #15 3.350 80500K .......... .......... .......... .......... .......... 63% 122M 1s +2024-03-12T20:18:59Z #15 3.350 80550K .......... .......... .......... .......... .......... 63% 134M 1s +2024-03-12T20:18:59Z #15 3.351 80600K .......... .......... .......... .......... .......... 63% 106M 1s +2024-03-12T20:18:59Z #15 3.351 80650K .......... .......... .......... .......... .......... 63% 121M 1s +2024-03-12T20:18:59Z #15 3.352 80700K .......... .......... .......... .......... .......... 63% 111M 1s +2024-03-12T20:18:59Z #15 3.352 80750K .......... .......... .......... .......... .......... 63% 129M 1s +2024-03-12T20:18:59Z #15 3.352 80800K .......... .......... .......... .......... .......... 63% 123M 1s +2024-03-12T20:18:59Z #15 3.353 80850K .......... .......... .......... .......... .......... 63% 87.9M 1s +2024-03-12T20:18:59Z #15 3.353 80900K .......... .......... .......... .......... .......... 63% 127M 1s +2024-03-12T20:18:59Z #15 3.354 80950K .......... .......... .......... .......... .......... 63% 103M 1s +2024-03-12T20:18:59Z #15 3.354 81000K .......... .......... .......... .......... .......... 63% 134M 1s +2024-03-12T20:18:59Z #15 3.355 81050K .......... .......... .......... .......... .......... 63% 110M 1s +2024-03-12T20:18:59Z #15 3.355 81100K .......... .......... .......... .......... .......... 64% 147M 1s +2024-03-12T20:18:59Z #15 3.355 81150K .......... .......... .......... .......... .......... 64% 87.0M 1s +2024-03-12T20:18:59Z #15 3.356 81200K .......... .......... .......... .......... .......... 64% 120M 1s +2024-03-12T20:18:59Z #15 3.356 81250K .......... .......... .......... .......... .......... 64% 116M 1s +2024-03-12T20:18:59Z #15 3.357 81300K .......... .......... .......... .......... .......... 64% 121M 1s +2024-03-12T20:18:59Z #15 3.357 81350K .......... .......... .......... .......... .......... 64% 97.1M 1s +2024-03-12T20:18:59Z #15 3.358 81400K .......... .......... .......... .......... .......... 64% 87.1M 1s +2024-03-12T20:18:59Z #15 3.358 81450K .......... .......... .......... .......... .......... 64% 123M 1s +2024-03-12T20:18:59Z #15 3.359 81500K .......... .......... .......... .......... .......... 64% 117M 1s +2024-03-12T20:18:59Z #15 3.359 81550K .......... .......... .......... .......... .......... 64% 105M 1s +2024-03-12T20:18:59Z #15 3.359 81600K .......... .......... .......... .......... .......... 64% 103M 1s +2024-03-12T20:18:59Z #15 3.360 81650K .......... .......... .......... .......... .......... 64% 119M 1s +2024-03-12T20:18:59Z #15 3.360 81700K .......... .......... .......... .......... .......... 64% 105M 1s +2024-03-12T20:18:59Z #15 3.361 81750K .......... .......... .......... .......... .......... 64% 123M 1s +2024-03-12T20:18:59Z #15 3.361 81800K .......... .......... .......... .......... .......... 64% 99.3M 1s +2024-03-12T20:18:59Z #15 3.362 81850K .......... .......... .......... .......... .......... 64% 100M 1s +2024-03-12T20:18:59Z #15 3.362 81900K .......... .......... .......... .......... .......... 64% 124M 1s +2024-03-12T20:18:59Z #15 3.363 81950K .......... .......... .......... .......... .......... 64% 103M 1s +2024-03-12T20:18:59Z #15 3.363 82000K .......... .......... .......... .......... .......... 64% 103M 1s +2024-03-12T20:18:59Z #15 3.363 82050K .......... .......... .......... .......... .......... 64% 104M 1s +2024-03-12T20:18:59Z #15 3.364 82100K .......... .......... .......... .......... .......... 64% 124M 1s +2024-03-12T20:18:59Z #15 3.364 82150K .......... .......... .......... .......... .......... 64% 125M 1s +2024-03-12T20:18:59Z #15 3.365 82200K .......... .......... .......... .......... .......... 64% 85.8M 1s +2024-03-12T20:18:59Z #15 3.365 82250K .......... .......... .......... .......... .......... 64% 125M 1s +2024-03-12T20:18:59Z #15 3.366 82300K .......... .......... .......... .......... .......... 64% 102M 1s +2024-03-12T20:18:59Z #15 3.366 82350K .......... .......... .......... .......... .......... 64% 102M 1s +2024-03-12T20:18:59Z #15 3.367 82400K .......... .......... .......... .......... .......... 65% 107M 1s +2024-03-12T20:18:59Z #15 3.367 82450K .......... .......... .......... .......... .......... 65% 98.9M 1s +2024-03-12T20:18:59Z #15 3.368 82500K .......... .......... .......... .......... .......... 65% 122M 1s +2024-03-12T20:18:59Z #15 3.369 82550K .......... .......... .......... .......... .......... 65% 103M 1s +2024-03-12T20:18:59Z #15 3.369 82600K .......... .......... .......... .......... .......... 65% 121M 1s +2024-03-12T20:18:59Z #15 3.369 82650K .......... .......... .......... .......... .......... 65% 96.3M 1s +2024-03-12T20:18:59Z #15 3.369 82700K .......... .......... .......... .......... .......... 65% 118M 1s +2024-03-12T20:18:59Z #15 3.370 82750K .......... .......... .......... .......... .......... 65% 123M 1s +2024-03-12T20:18:59Z #15 3.370 82800K .......... .......... .......... .......... .......... 65% 122M 1s +2024-03-12T20:18:59Z #15 3.371 82850K .......... .......... .......... .......... .......... 65% 98.2M 1s +2024-03-12T20:18:59Z #15 3.371 82900K .......... .......... .......... .......... .......... 65% 82.2M 1s +2024-03-12T20:18:59Z #15 3.372 82950K .......... .......... .......... .......... .......... 65% 95.6M 1s +2024-03-12T20:18:59Z #15 3.372 83000K .......... .......... .......... .......... .......... 65% 110M 1s +2024-03-12T20:18:59Z #15 3.373 83050K .......... .......... .......... .......... .......... 65% 104M 1s +2024-03-12T20:18:59Z #15 3.374 83100K .......... .......... .......... .......... .......... 65% 116M 1s +2024-03-12T20:18:59Z #15 3.374 83150K .......... .......... .......... .......... .......... 65% 110M 1s +2024-03-12T20:18:59Z #15 3.374 83200K .......... .......... .......... .......... .......... 65% 107M 1s +2024-03-12T20:18:59Z #15 3.375 83250K .......... .......... .......... .......... .......... 65% 115M 1s +2024-03-12T20:18:59Z #15 3.375 83300K .......... .......... .......... .......... .......... 65% 109M 1s +2024-03-12T20:18:59Z #15 3.375 83350K .......... .......... .......... .......... .......... 65% 107M 1s +2024-03-12T20:18:59Z #15 3.376 83400K .......... .......... .......... .......... .......... 65% 121M 1s +2024-03-12T20:18:59Z #15 3.376 83450K .......... .......... .......... .......... .......... 65% 107M 1s +2024-03-12T20:18:59Z #15 3.377 83500K .......... .......... .......... .......... .......... 65% 101M 1s +2024-03-12T20:18:59Z #15 3.377 83550K .......... .......... .......... .......... .......... 65% 135M 1s +2024-03-12T20:18:59Z #15 3.378 83600K .......... .......... .......... .......... .......... 65% 87.8M 1s +2024-03-12T20:18:59Z #15 3.378 83650K .......... .......... .......... .......... .......... 66% 101M 1s +2024-03-12T20:18:59Z #15 3.379 83700K .......... .......... .......... .......... .......... 66% 121M 1s +2024-03-12T20:18:59Z #15 3.379 83750K .......... .......... .......... .......... .......... 66% 107M 1s +2024-03-12T20:18:59Z #15 3.380 83800K .......... .......... .......... .......... .......... 66% 88.2M 1s +2024-03-12T20:18:59Z #15 3.381 83850K .......... .......... .......... .......... .......... 66% 10.4M 1s +2024-03-12T20:18:59Z #15 3.385 83900K .......... .......... .......... .......... .......... 66% 126M 1s +2024-03-12T20:18:59Z #15 3.385 83950K .......... .......... .......... .......... .......... 66% 112M 1s +2024-03-12T20:18:59Z #15 3.386 84000K .......... .......... .......... .......... .......... 66% 19.8M 1s +2024-03-12T20:18:59Z #15 3.388 84050K .......... .......... .......... .......... .......... 66% 133M 1s +2024-03-12T20:18:59Z #15 3.388 84100K .......... .......... .......... .......... .......... 66% 117M 1s +2024-03-12T20:18:59Z #15 3.389 84150K .......... .......... .......... .......... .......... 66% 160M 1s +2024-03-12T20:18:59Z #15 3.389 84200K .......... .......... .......... .......... .......... 66% 98.8M 1s +2024-03-12T20:18:59Z #15 3.389 84250K .......... .......... .......... .......... .......... 66% 124M 1s +2024-03-12T20:18:59Z #15 3.390 84300K .......... .......... .......... .......... .......... 66% 130M 1s +2024-03-12T20:18:59Z #15 3.390 84350K .......... .......... .......... .......... .......... 66% 137M 1s +2024-03-12T20:18:59Z #15 3.391 84400K .......... .......... .......... .......... .......... 66% 118M 1s +2024-03-12T20:18:59Z #15 3.392 84450K .......... .......... .......... .......... .......... 66% 132M 1s +2024-03-12T20:18:59Z #15 3.392 84500K .......... .......... .......... .......... .......... 66% 150M 1s +2024-03-12T20:18:59Z #15 3.392 84550K .......... .......... .......... .......... .......... 66% 115M 1s +2024-03-12T20:18:59Z #15 3.392 84600K .......... .......... .......... .......... .......... 66% 142M 1s +2024-03-12T20:18:59Z #15 3.392 84650K .......... .......... .......... .......... .......... 66% 133M 1s +2024-03-12T20:18:59Z #15 3.393 84700K .......... .......... .......... .......... .......... 66% 112M 1s +2024-03-12T20:18:59Z #15 3.393 84750K .......... .......... .......... .......... .......... 66% 136M 1s +2024-03-12T20:18:59Z #15 3.394 84800K .......... .......... .......... .......... .......... 66% 11.0M 1s +2024-03-12T20:18:59Z #15 3.401 84850K .......... .......... .......... .......... .......... 66% 138M 1s +2024-03-12T20:18:59Z #15 3.401 84900K .......... .......... .......... .......... .......... 67% 30.3M 1s +2024-03-12T20:18:59Z #15 3.401 84950K .......... .......... .......... .......... .......... 67% 163M 1s +2024-03-12T20:18:59Z #15 3.401 85000K .......... .......... .......... .......... .......... 67% 125M 1s +2024-03-12T20:18:59Z #15 3.401 85050K .......... .......... .......... .......... .......... 67% 147M 1s +2024-03-12T20:18:59Z #15 3.401 85100K .......... .......... .......... .......... .......... 67% 114M 1s +2024-03-12T20:18:59Z #15 3.402 85150K .......... .......... .......... .......... .......... 67% 113M 1s +2024-03-12T20:18:59Z #15 3.402 85200K .......... .......... .......... .......... .......... 67% 167M 1s +2024-03-12T20:18:59Z #15 3.402 85250K .......... .......... .......... .......... .......... 67% 143M 1s +2024-03-12T20:18:59Z #15 3.403 85300K .......... .......... .......... .......... .......... 67% 119M 1s +2024-03-12T20:18:59Z #15 3.404 85350K .......... .......... .......... .......... .......... 67% 163M 1s +2024-03-12T20:18:59Z #15 3.404 85400K .......... .......... .......... .......... .......... 67% 170M 1s +2024-03-12T20:18:59Z #15 3.404 85450K .......... .......... .......... .......... .......... 67% 127M 1s +2024-03-12T20:18:59Z #15 3.404 85500K .......... .......... .......... .......... .......... 67% 135M 1s +2024-03-12T20:18:59Z #15 3.404 85550K .......... .......... .......... .......... .......... 67% 119M 1s +2024-03-12T20:18:59Z #15 3.405 85600K .......... .......... .......... .......... .......... 67% 144M 1s +2024-03-12T20:18:59Z #15 3.405 85650K .......... .......... .......... .......... .......... 67% 9.38M 1s +2024-03-12T20:18:59Z #15 3.411 85700K .......... .......... .......... .......... .......... 67% 129M 1s +2024-03-12T20:18:59Z #15 3.411 85750K .......... .......... .......... .......... .......... 67% 123M 1s +2024-03-12T20:18:59Z #15 3.413 85800K .......... .......... .......... .......... .......... 67% 18.5M 1s +2024-03-12T20:18:59Z #15 3.415 85850K .......... .......... .......... .......... .......... 67% 71.0M 1s +2024-03-12T20:18:59Z #15 3.415 85900K .......... .......... .......... .......... .......... 67% 139M 1s +2024-03-12T20:18:59Z #15 3.415 85950K .......... .......... .......... .......... .......... 67% 114M 1s +2024-03-12T20:18:59Z #15 3.415 86000K .......... .......... .......... .......... .......... 67% 128M 1s +2024-03-12T20:18:59Z #15 3.416 86050K .......... .......... .......... .......... .......... 67% 132M 1s +2024-03-12T20:18:59Z #15 3.416 86100K .......... .......... .......... .......... .......... 67% 137M 1s +2024-03-12T20:18:59Z #15 3.416 86150K .......... .......... .......... .......... .......... 67% 128M 1s +2024-03-12T20:18:59Z #15 3.417 86200K .......... .......... .......... .......... .......... 68% 117M 1s +2024-03-12T20:18:59Z #15 3.417 86250K .......... .......... .......... .......... .......... 68% 169M 1s +2024-03-12T20:18:59Z #15 3.417 86300K .......... .......... .......... .......... .......... 68% 139M 1s +2024-03-12T20:18:59Z #15 3.418 86350K .......... .......... .......... .......... .......... 68% 10.9M 1s +2024-03-12T20:18:59Z #15 3.422 86400K .......... .......... .......... .......... .......... 68% 139M 1s +2024-03-12T20:18:59Z #15 3.423 86450K .......... .......... .......... .......... .......... 68% 130M 1s +2024-03-12T20:18:59Z #15 3.423 86500K .......... .......... .......... .......... .......... 68% 139M 1s +2024-03-12T20:18:59Z #15 3.423 86550K .......... .......... .......... .......... .......... 68% 119M 1s +2024-03-12T20:18:59Z #15 3.424 86600K .......... .......... .......... .......... .......... 68% 137M 1s +2024-03-12T20:18:59Z #15 3.424 86650K .......... .......... .......... .......... .......... 68% 144M 1s +2024-03-12T20:18:59Z #15 3.425 86700K .......... .......... .......... .......... .......... 68% 118M 1s +2024-03-12T20:18:59Z #15 3.425 86750K .......... .......... .......... .......... .......... 68% 129M 1s +2024-03-12T20:18:59Z #15 3.425 86800K .......... .......... .......... .......... .......... 68% 138M 1s +2024-03-12T20:18:59Z #15 3.426 86850K .......... .......... .......... .......... .......... 68% 93.2M 1s +2024-03-12T20:18:59Z #15 3.426 86900K .......... .......... .......... .......... .......... 68% 133M 1s +2024-03-12T20:18:59Z #15 3.427 86950K .......... .......... .......... .......... .......... 68% 160M 1s +2024-03-12T20:18:59Z #15 3.427 87000K .......... .......... .......... .......... .......... 68% 113M 1s +2024-03-12T20:18:59Z #15 3.427 87050K .......... .......... .......... .......... .......... 68% 136M 1s +2024-03-12T20:18:59Z #15 3.427 87100K .......... .......... .......... .......... .......... 68% 122M 1s +2024-03-12T20:18:59Z #15 3.428 87150K .......... .......... .......... .......... .......... 68% 131M 1s +2024-03-12T20:18:59Z #15 3.429 87200K .......... .......... .......... .......... .......... 68% 145M 1s +2024-03-12T20:18:59Z #15 3.429 87250K .......... .......... .......... .......... .......... 68% 109M 1s +2024-03-12T20:18:59Z #15 3.430 87300K .......... .......... .......... .......... .......... 68% 129M 1s +2024-03-12T20:18:59Z #15 3.430 87350K .......... .......... .......... .......... .......... 68% 81.3M 1s +2024-03-12T20:18:59Z #15 3.430 87400K .......... .......... .......... .......... .......... 68% 145M 1s +2024-03-12T20:18:59Z #15 3.430 87450K .......... .......... .......... .......... .......... 69% 116M 1s +2024-03-12T20:18:59Z #15 3.431 87500K .......... .......... .......... .......... .......... 69% 141M 1s +2024-03-12T20:18:59Z #15 3.431 87550K .......... .......... .......... .......... .......... 69% 122M 1s +2024-03-12T20:18:59Z #15 3.432 87600K .......... .......... .......... .......... .......... 69% 107M 1s +2024-03-12T20:18:59Z #15 3.432 87650K .......... .......... .......... .......... .......... 69% 138M 1s +2024-03-12T20:18:59Z #15 3.432 87700K .......... .......... .......... .......... .......... 69% 129M 1s +2024-03-12T20:18:59Z #15 3.433 87750K .......... .......... .......... .......... .......... 69% 133M 1s +2024-03-12T20:18:59Z #15 3.433 87800K .......... .......... .......... .......... .......... 69% 148M 1s +2024-03-12T20:18:59Z #15 3.433 87850K .......... .......... .......... .......... .......... 69% 5.82M 1s +2024-03-12T20:18:59Z #15 3.442 87900K .......... .......... .......... .......... .......... 69% 91.4M 1s +2024-03-12T20:18:59Z #15 3.442 87950K .......... .......... .......... .......... .......... 69% 128M 1s +2024-03-12T20:18:59Z #15 3.443 88000K .......... .......... .......... .......... .......... 69% 122M 1s +2024-03-12T20:18:59Z #15 3.443 88050K .......... .......... .......... .......... .......... 69% 142M 1s +2024-03-12T20:18:59Z #15 3.443 88100K .......... .......... .......... .......... .......... 69% 114M 1s +2024-03-12T20:18:59Z #15 3.444 88150K .......... .......... .......... .......... .......... 69% 130M 1s +2024-03-12T20:18:59Z #15 3.444 88200K .......... .......... .......... .......... .......... 69% 141M 1s +2024-03-12T20:18:59Z #15 3.445 88250K .......... .......... .......... .......... .......... 69% 169M 1s +2024-03-12T20:18:59Z #15 3.445 88300K .......... .......... .......... .......... .......... 69% 121M 1s +2024-03-12T20:18:59Z #15 3.445 88350K .......... .......... .......... .......... .......... 69% 142M 1s +2024-03-12T20:18:59Z #15 3.446 88400K .......... .......... .......... .......... .......... 69% 119M 1s +2024-03-12T20:18:59Z #15 3.446 88450K .......... .......... .......... .......... .......... 69% 139M 1s +2024-03-12T20:18:59Z #15 3.447 88500K .......... .......... .......... .......... .......... 69% 134M 1s +2024-03-12T20:18:59Z #15 3.447 88550K .......... .......... .......... .......... .......... 69% 122M 1s +2024-03-12T20:18:59Z #15 3.447 88600K .......... .......... .......... .......... .......... 69% 117M 1s +2024-03-12T20:18:59Z #15 3.448 88650K .......... .......... .......... .......... .......... 69% 162M 1s +2024-03-12T20:18:59Z #15 3.448 88700K .......... .......... .......... .......... .......... 70% 159M 1s +2024-03-12T20:18:59Z #15 3.448 88750K .......... .......... .......... .......... .......... 70% 139M 1s +2024-03-12T20:18:59Z #15 3.449 88800K .......... .......... .......... .......... .......... 70% 117M 1s +2024-03-12T20:18:59Z #15 3.449 88850K .......... .......... .......... .......... .......... 70% 127M 1s +2024-03-12T20:18:59Z #15 3.449 88900K .......... .......... .......... .......... .......... 70% 11.0M 1s +2024-03-12T20:18:59Z #15 3.455 88950K .......... .......... .......... .......... .......... 70% 27.8M 1s +2024-03-12T20:18:59Z #15 3.456 89000K .......... .......... .......... .......... .......... 70% 108M 1s +2024-03-12T20:18:59Z #15 3.456 89050K .......... .......... .......... .......... .......... 70% 120M 1s +2024-03-12T20:18:59Z #15 3.456 89100K .......... .......... .......... .......... .......... 70% 122M 1s +2024-03-12T20:18:59Z #15 3.457 89150K .......... .......... .......... .......... .......... 70% 101M 1s +2024-03-12T20:18:59Z #15 3.457 89200K .......... .......... .......... .......... .......... 70% 117M 1s +2024-03-12T20:18:59Z #15 3.459 89250K .......... .......... .......... .......... .......... 70% 139M 1s +2024-03-12T20:18:59Z #15 3.459 89300K .......... .......... .......... .......... .......... 70% 143M 1s +2024-03-12T20:18:59Z #15 3.459 89350K .......... .......... .......... .......... .......... 70% 149M 1s +2024-03-12T20:18:59Z #15 3.459 89400K .......... .......... .......... .......... .......... 70% 121M 1s +2024-03-12T20:18:59Z #15 3.459 89450K .......... .......... .......... .......... .......... 70% 102M 1s +2024-03-12T20:18:59Z #15 3.460 89500K .......... .......... .......... .......... .......... 70% 117M 1s +2024-03-12T20:18:59Z #15 3.460 89550K .......... .......... .......... .......... .......... 70% 123M 1s +2024-03-12T20:18:59Z #15 3.460 89600K .......... .......... .......... .......... .......... 70% 110M 1s +2024-03-12T20:18:59Z #15 3.461 89650K .......... .......... .......... .......... .......... 70% 103M 1s +2024-03-12T20:18:59Z #15 3.463 89700K .......... .......... .......... .......... .......... 70% 162M 1s +2024-03-12T20:18:59Z #15 3.463 89750K .......... .......... .......... .......... .......... 70% 10.5M 1s +2024-03-12T20:18:59Z #15 3.466 89800K .......... .......... .......... .......... .......... 70% 116M 1s +2024-03-12T20:18:59Z #15 3.467 89850K .......... .......... .......... .......... .......... 70% 139M 1s +2024-03-12T20:18:59Z #15 3.467 89900K .......... .......... .......... .......... .......... 70% 111M 1s +2024-03-12T20:18:59Z #15 3.468 89950K .......... .......... .......... .......... .......... 70% 146M 1s +2024-03-12T20:18:59Z #15 3.468 90000K .......... .......... .......... .......... .......... 71% 148M 1s +2024-03-12T20:18:59Z #15 3.468 90050K .......... .......... .......... .......... .......... 71% 118M 1s +2024-03-12T20:18:59Z #15 3.469 90100K .......... .......... .......... .......... .......... 71% 124M 1s +2024-03-12T20:18:59Z #15 3.469 90150K .......... .......... .......... .......... .......... 71% 111M 1s +2024-03-12T20:18:59Z #15 3.470 90200K .......... .......... .......... .......... .......... 71% 13.5M 1s +2024-03-12T20:18:59Z #15 3.474 90250K .......... .......... .......... .......... .......... 71% 99.3M 1s +2024-03-12T20:18:59Z #15 3.474 90300K .......... .......... .......... .......... .......... 71% 127M 1s +2024-03-12T20:18:59Z #15 3.474 90350K .......... .......... .......... .......... .......... 71% 138M 1s +2024-03-12T20:18:59Z #15 3.474 90400K .......... .......... .......... .......... .......... 71% 116M 1s +2024-03-12T20:18:59Z #15 3.475 90450K .......... .......... .......... .......... .......... 71% 148M 1s +2024-03-12T20:18:59Z #15 3.475 90500K .......... .......... .......... .......... .......... 71% 132M 1s +2024-03-12T20:18:59Z #15 3.475 90550K .......... .......... .......... .......... .......... 71% 128M 1s +2024-03-12T20:18:59Z #15 3.476 90600K .......... .......... .......... .......... .......... 71% 129M 1s +2024-03-12T20:18:59Z #15 3.477 90650K .......... .......... .......... .......... .......... 71% 182M 1s +2024-03-12T20:18:59Z #15 3.477 90700K .......... .......... .......... .......... .......... 71% 121M 1s +2024-03-12T20:18:59Z #15 3.477 90750K .......... .......... .......... .......... .......... 71% 130M 1s +2024-03-12T20:18:59Z #15 3.477 90800K .......... .......... .......... .......... .......... 71% 122M 1s +2024-03-12T20:18:59Z #15 3.478 90850K .......... .......... .......... .......... .......... 71% 80.6M 1s +2024-03-12T20:18:59Z #15 3.478 90900K .......... .......... .......... .......... .......... 71% 135M 1s +2024-03-12T20:18:59Z #15 3.479 90950K .......... .......... .......... .......... .......... 71% 148M 1s +2024-03-12T20:18:59Z #15 3.479 91000K .......... .......... .......... .......... .......... 71% 114M 1s +2024-03-12T20:18:59Z #15 3.479 91050K .......... .......... .......... .......... .......... 71% 146M 1s +2024-03-12T20:18:59Z #15 3.480 91100K .......... .......... .......... .......... .......... 71% 114M 1s +2024-03-12T20:18:59Z #15 3.480 91150K .......... .......... .......... .......... .......... 71% 125M 1s +2024-03-12T20:18:59Z #15 3.480 91200K .......... .......... .......... .......... .......... 71% 134M 1s +2024-03-12T20:18:59Z #15 3.481 91250K .......... .......... .......... .......... .......... 72% 121M 1s +2024-03-12T20:18:59Z #15 3.481 91300K .......... .......... .......... .......... .......... 72% 110M 1s +2024-03-12T20:18:59Z #15 3.482 91350K .......... .......... .......... .......... .......... 72% 102M 1s +2024-03-12T20:18:59Z #15 3.482 91400K .......... .......... .......... .......... .......... 72% 129M 1s +2024-03-12T20:18:59Z #15 3.483 91450K .......... .......... .......... .......... .......... 72% 101M 1s +2024-03-12T20:18:59Z #15 3.483 91500K .......... .......... .......... .......... .......... 72% 154M 1s +2024-03-12T20:18:59Z #15 3.490 91550K .......... .......... .......... .......... .......... 72% 178M 1s +2024-03-12T20:18:59Z #15 3.490 91600K .......... .......... .......... .......... .......... 72% 178M 1s +2024-03-12T20:18:59Z #15 3.490 91650K .......... .......... .......... .......... .......... 72% 155M 1s +2024-03-12T20:18:59Z #15 3.490 91700K .......... .......... .......... .......... .......... 72% 158M 1s +2024-03-12T20:18:59Z #15 3.490 91750K .......... .......... .......... .......... .......... 72% 133M 1s +2024-03-12T20:18:59Z #15 3.490 91800K .......... .......... .......... .......... .......... 72% 170M 1s +2024-03-12T20:18:59Z #15 3.490 91850K .......... .......... .......... .......... .......... 72% 184M 1s +2024-03-12T20:18:59Z #15 3.490 91900K .......... .......... .......... .......... .......... 72% 117M 1s +2024-03-12T20:18:59Z #15 3.490 91950K .......... .......... .......... .......... .......... 72% 92.3M 1s +2024-03-12T20:18:59Z #15 3.490 92000K .......... .......... .......... .......... .......... 72% 90.9M 1s +2024-03-12T20:18:59Z #15 3.490 92050K .......... .......... .......... .......... .......... 72% 104M 1s +2024-03-12T20:18:59Z #15 3.490 92100K .......... .......... .......... .......... .......... 72% 97.0M 1s +2024-03-12T20:18:59Z #15 3.490 92150K .......... .......... .......... .......... .......... 72% 101M 1s +2024-03-12T20:18:59Z #15 3.490 92200K .......... .......... .......... .......... .......... 72% 92.2M 1s +2024-03-12T20:18:59Z #15 3.490 92250K .......... .......... .......... .......... .......... 72% 84.0M 1s +2024-03-12T20:18:59Z #15 3.490 92300K .......... .......... .......... .......... .......... 72% 93.3M 1s +2024-03-12T20:18:59Z #15 3.490 92350K .......... .......... .......... .......... .......... 72% 75.7M 1s +2024-03-12T20:18:59Z #15 3.491 92400K .......... .......... .......... .......... .......... 72% 96.2M 1s +2024-03-12T20:18:59Z #15 3.491 92450K .......... .......... .......... .......... .......... 72% 104M 1s +2024-03-12T20:18:59Z #15 3.492 92500K .......... .......... .......... .......... .......... 72% 105M 1s +2024-03-12T20:18:59Z #15 3.492 92550K .......... .......... .......... .......... .......... 73% 99.1M 1s +2024-03-12T20:18:59Z #15 3.493 92600K .......... .......... .......... .......... .......... 73% 117M 1s +2024-03-12T20:18:59Z #15 3.493 92650K .......... .......... .......... .......... .......... 73% 128M 1s +2024-03-12T20:18:59Z #15 3.493 92700K .......... .......... .......... .......... .......... 73% 104M 1s +2024-03-12T20:18:59Z #15 3.494 92750K .......... .......... .......... .......... .......... 73% 111M 1s +2024-03-12T20:18:59Z #15 3.494 92800K .......... .......... .......... .......... .......... 73% 130M 1s +2024-03-12T20:18:59Z #15 3.495 92850K .......... .......... .......... .......... .......... 73% 139M 1s +2024-03-12T20:18:59Z #15 3.495 92900K .......... .......... .......... .......... .......... 73% 110M 1s +2024-03-12T20:18:59Z #15 3.496 92950K .......... .......... .......... .......... .......... 73% 135M 1s +2024-03-12T20:18:59Z #15 3.496 93000K .......... .......... .......... .......... .......... 73% 139M 1s +2024-03-12T20:18:59Z #15 3.496 93050K .......... .......... .......... .......... .......... 73% 116M 1s +2024-03-12T20:18:59Z #15 3.497 93100K .......... .......... .......... .......... .......... 73% 116M 1s +2024-03-12T20:18:59Z #15 3.497 93150K .......... .......... .......... .......... .......... 73% 142M 1s +2024-03-12T20:18:59Z #15 3.497 93200K .......... .......... .......... .......... .......... 73% 97.5M 1s +2024-03-12T20:18:59Z #15 3.498 93250K .......... .......... .......... .......... .......... 73% 134M 1s +2024-03-12T20:18:59Z #15 3.498 93300K .......... .......... .......... .......... .......... 73% 132M 1s +2024-03-12T20:18:59Z #15 3.499 93350K .......... .......... .......... .......... .......... 73% 137M 1s +2024-03-12T20:18:59Z #15 3.499 93400K .......... .......... .......... .......... .......... 73% 114M 1s +2024-03-12T20:18:59Z #15 3.499 93450K .......... .......... .......... .......... .......... 73% 128M 1s +2024-03-12T20:18:59Z #15 3.500 93500K .......... .......... .......... .......... .......... 73% 127M 1s +2024-03-12T20:18:59Z #15 3.500 93550K .......... .......... .......... .......... .......... 73% 107M 1s +2024-03-12T20:18:59Z #15 3.501 93600K .......... .......... .......... .......... .......... 73% 115M 1s +2024-03-12T20:18:59Z #15 3.501 93650K .......... .......... .......... .......... .......... 73% 94.3M 1s +2024-03-12T20:18:59Z #15 3.502 93700K .......... .......... .......... .......... .......... 73% 110M 1s +2024-03-12T20:18:59Z #15 3.502 93750K .......... .......... .......... .......... .......... 73% 124M 1s +2024-03-12T20:18:59Z #15 3.502 93800K .......... .......... .......... .......... .......... 74% 132M 1s +2024-03-12T20:18:59Z #15 3.503 93850K .......... .......... .......... .......... .......... 74% 98.6M 1s +2024-03-12T20:18:59Z #15 3.503 93900K .......... .......... .......... .......... .......... 74% 124M 1s +2024-03-12T20:18:59Z #15 3.504 93950K .......... .......... .......... .......... .......... 74% 123M 1s +2024-03-12T20:19:00Z #15 3.504 94000K .......... .......... .......... .......... .......... 74% 112M 1s +2024-03-12T20:19:00Z #15 3.510 94050K .......... .......... .......... .......... .......... 74% 158M 1s +2024-03-12T20:19:00Z #15 3.510 94100K .......... .......... .......... .......... .......... 74% 153M 1s +2024-03-12T20:19:00Z #15 3.510 94150K .......... .......... .......... .......... .......... 74% 148M 1s +2024-03-12T20:19:00Z #15 3.510 94200K .......... .......... .......... .......... .......... 74% 170M 1s +2024-03-12T20:19:00Z #15 3.510 94250K .......... .......... .......... .......... .......... 74% 126M 1s +2024-03-12T20:19:00Z #15 3.510 94300K .......... .......... .......... .......... .......... 74% 147M 1s +2024-03-12T20:19:00Z #15 3.510 94350K .......... .......... .......... .......... .......... 74% 161M 1s +2024-03-12T20:19:00Z #15 3.510 94400K .......... .......... .......... .......... .......... 74% 175M 1s +2024-03-12T20:19:00Z #15 3.510 94450K .......... .......... .......... .......... .......... 74% 168M 1s +2024-03-12T20:19:00Z #15 3.510 94500K .......... .......... .......... .......... .......... 74% 137M 1s +2024-03-12T20:19:00Z #15 3.510 94550K .......... .......... .......... .......... .......... 74% 143M 1s +2024-03-12T20:19:00Z #15 3.510 94600K .......... .......... .......... .......... .......... 74% 134M 1s +2024-03-12T20:19:00Z #15 3.510 94650K .......... .......... .......... .......... .......... 74% 168M 1s +2024-03-12T20:19:00Z #15 3.510 94700K .......... .......... .......... .......... .......... 74% 136M 1s +2024-03-12T20:19:00Z #15 3.510 94750K .......... .......... .......... .......... .......... 74% 123M 1s +2024-03-12T20:19:00Z #15 3.510 94800K .......... .......... .......... .......... .......... 74% 116M 1s +2024-03-12T20:19:00Z #15 3.510 94850K .......... .......... .......... .......... .......... 74% 112M 1s +2024-03-12T20:19:00Z #15 3.510 94900K .......... .......... .......... .......... .......... 74% 117M 1s +2024-03-12T20:19:00Z #15 3.511 94950K .......... .......... .......... .......... .......... 74% 91.4M 1s +2024-03-12T20:19:00Z #15 3.511 95000K .......... .......... .......... .......... .......... 74% 100M 1s +2024-03-12T20:19:00Z #15 3.512 95050K .......... .......... .......... .......... .......... 75% 104M 1s +2024-03-12T20:19:00Z #15 3.512 95100K .......... .......... .......... .......... .......... 75% 107M 1s +2024-03-12T20:19:00Z #15 3.513 95150K .......... .......... .......... .......... .......... 75% 135M 1s +2024-03-12T20:19:00Z #15 3.513 95200K .......... .......... .......... .......... .......... 75% 114M 1s +2024-03-12T20:19:00Z #15 3.514 95250K .......... .......... .......... .......... .......... 75% 92.7M 1s +2024-03-12T20:19:00Z #15 3.514 95300K .......... .......... .......... .......... .......... 75% 113M 1s +2024-03-12T20:19:00Z #15 3.514 95350K .......... .......... .......... .......... .......... 75% 105M 1s +2024-03-12T20:19:00Z #15 3.515 95400K .......... .......... .......... .......... .......... 75% 138M 1s +2024-03-12T20:19:00Z #15 3.516 95450K .......... .......... .......... .......... .......... 75% 135M 1s +2024-03-12T20:19:00Z #15 3.516 95500K .......... .......... .......... .......... .......... 75% 152M 1s +2024-03-12T20:19:00Z #15 3.516 95550K .......... .......... .......... .......... .......... 75% 114M 1s +2024-03-12T20:19:00Z #15 3.516 95600K .......... .......... .......... .......... .......... 75% 127M 1s +2024-03-12T20:19:00Z #15 3.517 95650K .......... .......... .......... .......... .......... 75% 123M 1s +2024-03-12T20:19:00Z #15 3.517 95700K .......... .......... .......... .......... .......... 75% 112M 1s +2024-03-12T20:19:00Z #15 3.518 95750K .......... .......... .......... .......... .......... 75% 125M 1s +2024-03-12T20:19:00Z #15 3.518 95800K .......... .......... .......... .......... .......... 75% 123M 1s +2024-03-12T20:19:00Z #15 3.518 95850K .......... .......... .......... .......... .......... 75% 102M 1s +2024-03-12T20:19:00Z #15 3.519 95900K .......... .......... .......... .......... .......... 75% 128M 1s +2024-03-12T20:19:00Z #15 3.519 95950K .......... .......... .......... .......... .......... 75% 116M 1s +2024-03-12T20:19:00Z #15 3.520 96000K .......... .......... .......... .......... .......... 75% 113M 1s +2024-03-12T20:19:00Z #15 3.520 96050K .......... .......... .......... .......... .......... 75% 116M 1s +2024-03-12T20:19:00Z #15 3.521 96100K .......... .......... .......... .......... .......... 75% 127M 1s +2024-03-12T20:19:00Z #15 3.521 96150K .......... .......... .......... .......... .......... 75% 118M 1s +2024-03-12T20:19:00Z #15 3.521 96200K .......... .......... .......... .......... .......... 75% 134M 1s +2024-03-12T20:19:00Z #15 3.522 96250K .......... .......... .......... .......... .......... 75% 111M 1s +2024-03-12T20:19:00Z #15 3.526 96300K .......... .......... .......... .......... .......... 75% 145M 1s +2024-03-12T20:19:00Z #15 3.526 96350K .......... .......... .......... .......... .......... 76% 165M 1s +2024-03-12T20:19:00Z #15 3.526 96400K .......... .......... .......... .......... .......... 76% 138M 1s +2024-03-12T20:19:00Z #15 3.526 96450K .......... .......... .......... .......... .......... 76% 161M 1s +2024-03-12T20:19:00Z #15 3.526 96500K .......... .......... .......... .......... .......... 76% 174M 1s +2024-03-12T20:19:00Z #15 3.526 96550K .......... .......... .......... .......... .......... 76% 140M 1s +2024-03-12T20:19:00Z #15 3.526 96600K .......... .......... .......... .......... .......... 76% 164M 1s +2024-03-12T20:19:00Z #15 3.526 96650K .......... .......... .......... .......... .......... 76% 165M 1s +2024-03-12T20:19:00Z #15 3.526 96700K .......... .......... .......... .......... .......... 76% 144M 1s +2024-03-12T20:19:00Z #15 3.526 96750K .......... .......... .......... .......... .......... 76% 158M 1s +2024-03-12T20:19:00Z #15 3.526 96800K .......... .......... .......... .......... .......... 76% 141M 1s +2024-03-12T20:19:00Z #15 3.526 96850K .......... .......... .......... .......... .......... 76% 110M 1s +2024-03-12T20:19:00Z #15 3.526 96900K .......... .......... .......... .......... .......... 76% 127M 1s +2024-03-12T20:19:00Z #15 3.526 96950K .......... .......... .......... .......... .......... 76% 110M 1s +2024-03-12T20:19:00Z #15 3.527 97000K .......... .......... .......... .......... .......... 76% 100M 1s +2024-03-12T20:19:00Z #15 3.527 97050K .......... .......... .......... .......... .......... 76% 121M 1s +2024-03-12T20:19:00Z #15 3.528 97100K .......... .......... .......... .......... .......... 76% 124M 1s +2024-03-12T20:19:00Z #15 3.528 97150K .......... .......... .......... .......... .......... 76% 127M 1s +2024-03-12T20:19:00Z #15 3.529 97200K .......... .......... .......... .......... .......... 76% 123M 1s +2024-03-12T20:19:00Z #15 3.529 97250K .......... .......... .......... .......... .......... 76% 123M 1s +2024-03-12T20:19:00Z #15 3.529 97300K .......... .......... .......... .......... .......... 76% 124M 1s +2024-03-12T20:19:00Z #15 3.531 97350K .......... .......... .......... .......... .......... 76% 132M 1s +2024-03-12T20:19:00Z #15 3.531 97400K .......... .......... .......... .......... .......... 76% 171M 1s +2024-03-12T20:19:00Z #15 3.531 97450K .......... .......... .......... .......... .......... 76% 148M 1s +2024-03-12T20:19:00Z #15 3.531 97500K .......... .......... .......... .......... .......... 76% 139M 1s +2024-03-12T20:19:00Z #15 3.531 97550K .......... .......... .......... .......... .......... 76% 151M 1s +2024-03-12T20:19:00Z #15 3.531 97600K .......... .......... .......... .......... .......... 77% 134M 1s +2024-03-12T20:19:00Z #15 3.532 97650K .......... .......... .......... .......... .......... 77% 150M 1s +2024-03-12T20:19:00Z #15 3.532 97700K .......... .......... .......... .......... .......... 77% 147M 1s +2024-03-12T20:19:00Z #15 3.532 97750K .......... .......... .......... .......... .......... 77% 123M 1s +2024-03-12T20:19:00Z #15 3.533 97800K .......... .......... .......... .......... .......... 77% 144M 1s +2024-03-12T20:19:00Z #15 3.533 97850K .......... .......... .......... .......... .......... 77% 133M 1s +2024-03-12T20:19:00Z #15 3.534 97900K .......... .......... .......... .......... .......... 77% 108M 1s +2024-03-12T20:19:00Z #15 3.535 97950K .......... .......... .......... .......... .......... 77% 138M 1s +2024-03-12T20:19:00Z #15 3.535 98000K .......... .......... .......... .......... .......... 77% 154M 1s +2024-03-12T20:19:00Z #15 3.535 98050K .......... .......... .......... .......... .......... 77% 151M 1s +2024-03-12T20:19:00Z #15 3.535 98100K .......... .......... .......... .......... .......... 77% 135M 1s +2024-03-12T20:19:00Z #15 3.536 98150K .......... .......... .......... .......... .......... 77% 154M 1s +2024-03-12T20:19:00Z #15 3.536 98200K .......... .......... .......... .......... .......... 77% 144M 1s +2024-03-12T20:19:00Z #15 3.536 98250K .......... .......... .......... .......... .......... 77% 149M 1s +2024-03-12T20:19:00Z #15 3.536 98300K .......... .......... .......... .......... .......... 77% 152M 1s +2024-03-12T20:19:00Z #15 3.537 98350K .......... .......... .......... .......... .......... 77% 118M 1s +2024-03-12T20:19:00Z #15 3.537 98400K .......... .......... .......... .......... .......... 77% 145M 1s +2024-03-12T20:19:00Z #15 3.537 98450K .......... .......... .......... .......... .......... 77% 110M 1s +2024-03-12T20:19:00Z #15 3.538 98500K .......... .......... .......... .......... .......... 77% 101M 1s +2024-03-12T20:19:00Z #15 3.538 98550K .......... .......... .......... .......... .......... 77% 120M 1s +2024-03-12T20:19:00Z #15 3.539 98600K .......... .......... .......... .......... .......... 77% 118M 1s +2024-03-12T20:19:00Z #15 3.539 98650K .......... .......... .......... .......... .......... 77% 106M 1s +2024-03-12T20:19:00Z #15 3.540 98700K .......... .......... .......... .......... .......... 77% 125M 1s +2024-03-12T20:19:00Z #15 3.540 98750K .......... .......... .......... .......... .......... 77% 121M 1s +2024-03-12T20:19:00Z #15 3.541 98800K .......... .......... .......... .......... .......... 77% 103M 1s +2024-03-12T20:19:00Z #15 3.541 98850K .......... .......... .......... .......... .......... 78% 119M 1s +2024-03-12T20:19:00Z #15 3.541 98900K .......... .......... .......... .......... .......... 78% 153M 1s +2024-03-12T20:19:00Z #15 3.542 98950K .......... .......... .......... .......... .......... 78% 108M 1s +2024-03-12T20:19:00Z #15 3.542 99000K .......... .......... .......... .......... .......... 78% 98.7M 1s +2024-03-12T20:19:00Z #15 3.546 99050K .......... .......... .......... .......... .......... 78% 161M 1s +2024-03-12T20:19:00Z #15 3.546 99100K .......... .......... .......... .......... .......... 78% 150M 1s +2024-03-12T20:19:00Z #15 3.546 99150K .......... .......... .......... .......... .......... 78% 160M 1s +2024-03-12T20:19:00Z #15 3.546 99200K .......... .......... .......... .......... .......... 78% 130M 1s +2024-03-12T20:19:00Z #15 3.546 99250K .......... .......... .......... .......... .......... 78% 172M 1s +2024-03-12T20:19:00Z #15 3.546 99300K .......... .......... .......... .......... .......... 78% 146M 1s +2024-03-12T20:19:00Z #15 3.546 99350K .......... .......... .......... .......... .......... 78% 167M 1s +2024-03-12T20:19:00Z #15 3.546 99400K .......... .......... .......... .......... .......... 78% 132M 1s +2024-03-12T20:19:00Z #15 3.546 99450K .......... .......... .......... .......... .......... 78% 164M 1s +2024-03-12T20:19:00Z #15 3.546 99500K .......... .......... .......... .......... .......... 78% 153M 1s +2024-03-12T20:19:00Z #15 3.546 99550K .......... .......... .......... .......... .......... 78% 98.9M 1s +2024-03-12T20:19:00Z #15 3.546 99600K .......... .......... .......... .......... .......... 78% 114M 1s +2024-03-12T20:19:00Z #15 3.547 99650K .......... .......... .......... .......... .......... 78% 110M 1s +2024-03-12T20:19:00Z #15 3.547 99700K .......... .......... .......... .......... .......... 78% 118M 1s +2024-03-12T20:19:00Z #15 3.548 99750K .......... .......... .......... .......... .......... 78% 109M 1s +2024-03-12T20:19:00Z #15 3.548 99800K .......... .......... .......... .......... .......... 78% 103M 1s +2024-03-12T20:19:00Z #15 3.552 99850K .......... .......... .......... .......... .......... 78% 160M 1s +2024-03-12T20:19:00Z #15 3.552 99900K .......... .......... .......... .......... .......... 78% 137M 1s +2024-03-12T20:19:00Z #15 3.552 99950K .......... .......... .......... .......... .......... 78% 158M 1s +2024-03-12T20:19:00Z #15 3.552 100000K .......... .......... .......... .......... .......... 78% 160M 1s +2024-03-12T20:19:00Z #15 3.552 100050K .......... .......... .......... .......... .......... 78% 125M 1s +2024-03-12T20:19:00Z #15 3.552 100100K .......... .......... .......... .......... .......... 78% 161M 1s +2024-03-12T20:19:00Z #15 3.552 100150K .......... .......... .......... .......... .......... 79% 157M 1s +2024-03-12T20:19:00Z #15 3.552 100200K .......... .......... .......... .......... .......... 79% 137M 1s +2024-03-12T20:19:00Z #15 3.552 100250K .......... .......... .......... .......... .......... 79% 129M 1s +2024-03-12T20:19:00Z #15 3.552 100300K .......... .......... .......... .......... .......... 79% 118M 1s +2024-03-12T20:19:00Z #15 3.552 100350K .......... .......... .......... .......... .......... 79% 91.1M 1s +2024-03-12T20:19:00Z #15 3.552 100400K .......... .......... .......... .......... .......... 79% 117M 1s +2024-03-12T20:19:00Z #15 3.553 100450K .......... .......... .......... .......... .......... 79% 104M 1s +2024-03-12T20:19:00Z #15 3.553 100500K .......... .......... .......... .......... .......... 79% 93.3M 1s +2024-03-12T20:19:00Z #15 3.554 100550K .......... .......... .......... .......... .......... 79% 106M 1s +2024-03-12T20:19:00Z #15 3.554 100600K .......... .......... .......... .......... .......... 79% 99.2M 1s +2024-03-12T20:19:00Z #15 3.555 100650K .......... .......... .......... .......... .......... 79% 110M 1s +2024-03-12T20:19:00Z #15 3.555 100700K .......... .......... .......... .......... .......... 79% 103M 1s +2024-03-12T20:19:00Z #15 3.556 100750K .......... .......... .......... .......... .......... 79% 103M 1s +2024-03-12T20:19:00Z #15 3.556 100800K .......... .......... .......... .......... .......... 79% 123M 1s +2024-03-12T20:19:00Z #15 3.557 100850K .......... .......... .......... .......... .......... 79% 125M 1s +2024-03-12T20:19:00Z #15 3.557 100900K .......... .......... .......... .......... .......... 79% 115M 1s +2024-03-12T20:19:00Z #15 3.557 100950K .......... .......... .......... .......... .......... 79% 113M 1s +2024-03-12T20:19:00Z #15 3.558 101000K .......... .......... .......... .......... .......... 79% 82.4M 1s +2024-03-12T20:19:00Z #15 3.558 101050K .......... .......... .......... .......... .......... 79% 66.5M 1s +2024-03-12T20:19:00Z #15 3.567 101100K .......... .......... .......... .......... .......... 79% 97.1M 1s +2024-03-12T20:19:00Z #15 3.567 101150K .......... .......... .......... .......... .......... 79% 71.4M 1s +2024-03-12T20:19:00Z #15 3.567 101200K .......... .......... .......... .......... .......... 79% 123M 1s +2024-03-12T20:19:00Z #15 3.567 101250K .......... .......... .......... .......... .......... 79% 150M 1s +2024-03-12T20:19:00Z #15 3.567 101300K .......... .......... .......... .......... .......... 79% 149M 1s +2024-03-12T20:19:00Z #15 3.567 101350K .......... .......... .......... .......... .......... 79% 162M 0s +2024-03-12T20:19:00Z #15 3.567 101400K .......... .......... .......... .......... .......... 80% 127M 0s +2024-03-12T20:19:00Z #15 3.567 101450K .......... .......... .......... .......... .......... 80% 166M 0s +2024-03-12T20:19:00Z #15 3.567 101500K .......... .......... .......... .......... .......... 80% 163M 0s +2024-03-12T20:19:00Z #15 3.567 101550K .......... .......... .......... .......... .......... 80% 145M 0s +2024-03-12T20:19:00Z #15 3.567 101600K .......... .......... .......... .......... .......... 80% 130M 0s +2024-03-12T20:19:00Z #15 3.567 101650K .......... .......... .......... .......... .......... 80% 180M 0s +2024-03-12T20:19:00Z #15 3.567 101700K .......... .......... .......... .......... .......... 80% 142M 0s +2024-03-12T20:19:00Z #15 3.567 101750K .......... .......... .......... .......... .......... 80% 146M 0s +2024-03-12T20:19:00Z #15 3.567 101800K .......... .......... .......... .......... .......... 80% 143M 0s +2024-03-12T20:19:00Z #15 3.567 101850K .......... .......... .......... .......... .......... 80% 156M 0s +2024-03-12T20:19:00Z #15 3.567 101900K .......... .......... .......... .......... .......... 80% 168M 0s +2024-03-12T20:19:00Z #15 3.567 101950K .......... .......... .......... .......... .......... 80% 152M 0s +2024-03-12T20:19:00Z #15 3.567 102000K .......... .......... .......... .......... .......... 80% 119M 0s +2024-03-12T20:19:00Z #15 3.567 102050K .......... .......... .......... .......... .......... 80% 113M 0s +2024-03-12T20:19:00Z #15 3.567 102100K .......... .......... .......... .......... .......... 80% 135M 0s +2024-03-12T20:19:00Z #15 3.567 102150K .......... .......... .......... .......... .......... 80% 132M 0s +2024-03-12T20:19:00Z #15 3.567 102200K .......... .......... .......... .......... .......... 80% 140M 0s +2024-03-12T20:19:00Z #15 3.568 102250K .......... .......... .......... .......... .......... 80% 109M 0s +2024-03-12T20:19:00Z #15 3.568 102300K .......... .......... .......... .......... .......... 80% 139M 0s +2024-03-12T20:19:00Z #15 3.568 102350K .......... .......... .......... .......... .......... 80% 126M 0s +2024-03-12T20:19:00Z #15 3.569 102400K .......... .......... .......... .......... .......... 80% 125M 0s +2024-03-12T20:19:00Z #15 3.569 102450K .......... .......... .......... .......... .......... 80% 117M 0s +2024-03-12T20:19:00Z #15 3.570 102500K .......... .......... .......... .......... .......... 80% 115M 0s +2024-03-12T20:19:00Z #15 3.570 102550K .......... .......... .......... .......... .......... 80% 118M 0s +2024-03-12T20:19:00Z #15 3.570 102600K .......... .......... .......... .......... .......... 80% 144M 0s +2024-03-12T20:19:00Z #15 3.571 102650K .......... .......... .......... .......... .......... 81% 120M 0s +2024-03-12T20:19:00Z #15 3.571 102700K .......... .......... .......... .......... .......... 81% 134M 0s +2024-03-12T20:19:00Z #15 3.571 102750K .......... .......... .......... .......... .......... 81% 131M 0s +2024-03-12T20:19:00Z #15 3.572 102800K .......... .......... .......... .......... .......... 81% 113M 0s +2024-03-12T20:19:00Z #15 3.572 102850K .......... .......... .......... .......... .......... 81% 133M 0s +2024-03-12T20:19:00Z #15 3.573 102900K .......... .......... .......... .......... .......... 81% 146M 0s +2024-03-12T20:19:00Z #15 3.573 102950K .......... .......... .......... .......... .......... 81% 142M 0s +2024-03-12T20:19:00Z #15 3.573 103000K .......... .......... .......... .......... .......... 81% 121M 0s +2024-03-12T20:19:00Z #15 3.574 103050K .......... .......... .......... .......... .......... 81% 122M 0s +2024-03-12T20:19:00Z #15 3.575 103100K .......... .......... .......... .......... .......... 81% 80.0M 0s +2024-03-12T20:19:00Z #15 3.575 103150K .......... .......... .......... .......... .......... 81% 85.7M 0s +2024-03-12T20:19:00Z #15 3.575 103200K .......... .......... .......... .......... .......... 81% 77.0M 0s +2024-03-12T20:19:00Z #15 3.577 103250K .......... .......... .......... .......... .......... 81% 89.2M 0s +2024-03-12T20:19:00Z #15 3.577 103300K .......... .......... .......... .......... .......... 81% 93.2M 0s +2024-03-12T20:19:00Z #15 3.577 103350K .......... .......... .......... .......... .......... 81% 81.5M 0s +2024-03-12T20:19:00Z #15 3.578 103400K .......... .......... .......... .......... .......... 81% 11.0M 0s +2024-03-12T20:19:00Z #15 3.582 103450K .......... .......... .......... .......... .......... 81% 133M 0s +2024-03-12T20:19:00Z #15 3.582 103500K .......... .......... .......... .......... .......... 81% 141M 0s +2024-03-12T20:19:00Z #15 3.583 103550K .......... .......... .......... .......... .......... 81% 153M 0s +2024-03-12T20:19:00Z #15 3.584 103600K .......... .......... .......... .......... .......... 81% 139M 0s +2024-03-12T20:19:00Z #15 3.584 103650K .......... .......... .......... .......... .......... 81% 155M 0s +2024-03-12T20:19:00Z #15 3.584 103700K .......... .......... .......... .......... .......... 81% 198M 0s +2024-03-12T20:19:00Z #15 3.584 103750K .......... .......... .......... .......... .......... 81% 166M 0s +2024-03-12T20:19:00Z #15 3.584 103800K .......... .......... .......... .......... .......... 81% 119M 0s +2024-03-12T20:19:00Z #15 3.585 103850K .......... .......... .......... .......... .......... 81% 159M 0s +2024-03-12T20:19:00Z #15 3.585 103900K .......... .......... .......... .......... .......... 81% 145M 0s +2024-03-12T20:19:00Z #15 3.585 103950K .......... .......... .......... .......... .......... 82% 156M 0s +2024-03-12T20:19:00Z #15 3.586 104000K .......... .......... .......... .......... .......... 82% 10.9M 0s +2024-03-12T20:19:00Z #15 3.590 104050K .......... .......... .......... .......... .......... 82% 151M 0s +2024-03-12T20:19:00Z #15 3.590 104100K .......... .......... .......... .......... .......... 82% 125M 0s +2024-03-12T20:19:00Z #15 3.591 104150K .......... .......... .......... .......... .......... 82% 136M 0s +2024-03-12T20:19:00Z #15 3.591 104200K .......... .......... .......... .......... .......... 82% 160M 0s +2024-03-12T20:19:00Z #15 3.591 104250K .......... .......... .......... .......... .......... 82% 124M 0s +2024-03-12T20:19:00Z #15 3.592 104300K .......... .......... .......... .......... .......... 82% 3.78M 0s +2024-03-12T20:19:00Z #15 3.605 104350K .......... .......... .......... .......... .......... 82% 151M 0s +2024-03-12T20:19:00Z #15 3.605 104400K .......... .......... .......... .......... .......... 82% 168M 0s +2024-03-12T20:19:00Z #15 3.607 104450K .......... .......... .......... .......... .......... 82% 111M 0s +2024-03-12T20:19:00Z #15 3.607 104500K .......... .......... .......... .......... .......... 82% 149M 0s +2024-03-12T20:19:00Z #15 3.607 104550K .......... .......... .......... .......... .......... 82% 144M 0s +2024-03-12T20:19:00Z #15 3.608 104600K .......... .......... .......... .......... .......... 82% 145M 0s +2024-03-12T20:19:00Z #15 3.608 104650K .......... .......... .......... .......... .......... 82% 149M 0s +2024-03-12T20:19:00Z #15 3.608 104700K .......... .......... .......... .......... .......... 82% 153M 0s +2024-03-12T20:19:00Z #15 3.608 104750K .......... .......... .......... .......... .......... 82% 144M 0s +2024-03-12T20:19:00Z #15 3.609 104800K .......... .......... .......... .......... .......... 82% 164M 0s +2024-03-12T20:19:00Z #15 3.609 104850K .......... .......... .......... .......... .......... 82% 165M 0s +2024-03-12T20:19:00Z #15 3.609 104900K .......... .......... .......... .......... .......... 82% 142M 0s +2024-03-12T20:19:00Z #15 3.609 104950K .......... .......... .......... .......... .......... 82% 149M 0s +2024-03-12T20:19:00Z #15 3.610 105000K .......... .......... .......... .......... .......... 82% 175M 0s +2024-03-12T20:19:00Z #15 3.610 105050K .......... .......... .......... .......... .......... 82% 118M 0s +2024-03-12T20:19:00Z #15 3.610 105100K .......... .......... .......... .......... .......... 82% 150M 0s +2024-03-12T20:19:00Z #15 3.610 105150K .......... .......... .......... .......... .......... 82% 174M 0s +2024-03-12T20:19:00Z #15 3.610 105200K .......... .......... .......... .......... .......... 83% 154M 0s +2024-03-12T20:19:00Z #15 3.611 105250K .......... .......... .......... .......... .......... 83% 140M 0s +2024-03-12T20:19:00Z #15 3.611 105300K .......... .......... .......... .......... .......... 83% 169M 0s +2024-03-12T20:19:00Z #15 3.611 105350K .......... .......... .......... .......... .......... 83% 134M 0s +2024-03-12T20:19:00Z #15 3.612 105400K .......... .......... .......... .......... .......... 83% 154M 0s +2024-03-12T20:19:00Z #15 3.612 105450K .......... .......... .......... .......... .......... 83% 156M 0s +2024-03-12T20:19:00Z #15 3.618 105500K .......... .......... .......... .......... .......... 83% 141M 0s +2024-03-12T20:19:00Z #15 3.618 105550K .......... .......... .......... .......... .......... 83% 135M 0s +2024-03-12T20:19:00Z #15 3.618 105600K .......... .......... .......... .......... .......... 83% 140M 0s +2024-03-12T20:19:00Z #15 3.618 105650K .......... .......... .......... .......... .......... 83% 156M 0s +2024-03-12T20:19:00Z #15 3.618 105700K .......... .......... .......... .......... .......... 83% 10.7M 0s +2024-03-12T20:19:00Z #15 3.618 105750K .......... .......... .......... .......... .......... 83% 117M 0s +2024-03-12T20:19:00Z #15 3.619 105800K .......... .......... .......... .......... .......... 83% 151M 0s +2024-03-12T20:19:00Z #15 3.619 105850K .......... .......... .......... .......... .......... 83% 133M 0s +2024-03-12T20:19:00Z #15 3.620 105900K .......... .......... .......... .......... .......... 83% 133M 0s +2024-03-12T20:19:00Z #15 3.620 105950K .......... .......... .......... .......... .......... 83% 135M 0s +2024-03-12T20:19:00Z #15 3.621 106000K .......... .......... .......... .......... .......... 83% 125M 0s +2024-03-12T20:19:00Z #15 3.621 106050K .......... .......... .......... .......... .......... 83% 126M 0s +2024-03-12T20:19:00Z #15 3.621 106100K .......... .......... .......... .......... .......... 83% 148M 0s +2024-03-12T20:19:00Z #15 3.621 106150K .......... .......... .......... .......... .......... 83% 120M 0s +2024-03-12T20:19:00Z #15 3.622 106200K .......... .......... .......... .......... .......... 83% 118M 0s +2024-03-12T20:19:00Z #15 3.622 106250K .......... .......... .......... .......... .......... 83% 141M 0s +2024-03-12T20:19:00Z #15 3.622 106300K .......... .......... .......... .......... .......... 83% 127M 0s +2024-03-12T20:19:00Z #15 3.623 106350K .......... .......... .......... .......... .......... 83% 150M 0s +2024-03-12T20:19:00Z #15 3.623 106400K .......... .......... .......... .......... .......... 83% 141M 0s +2024-03-12T20:19:00Z #15 3.624 106450K .......... .......... .......... .......... .......... 84% 130M 0s +2024-03-12T20:19:00Z #15 3.624 106500K .......... .......... .......... .......... .......... 84% 150M 0s +2024-03-12T20:19:00Z #15 3.624 106550K .......... .......... .......... .......... .......... 84% 147M 0s +2024-03-12T20:19:00Z #15 3.625 106600K .......... .......... .......... .......... .......... 84% 116M 0s +2024-03-12T20:19:00Z #15 3.625 106650K .......... .......... .......... .......... .......... 84% 145M 0s +2024-03-12T20:19:00Z #15 3.629 106700K .......... .......... .......... .......... .......... 84% 145M 0s +2024-03-12T20:19:00Z #15 3.629 106750K .......... .......... .......... .......... .......... 84% 11.0M 0s +2024-03-12T20:19:00Z #15 3.630 106800K .......... .......... .......... .......... .......... 84% 158M 0s +2024-03-12T20:19:00Z #15 3.631 106850K .......... .......... .......... .......... .......... 84% 156M 0s +2024-03-12T20:19:00Z #15 3.631 106900K .......... .......... .......... .......... .......... 84% 161M 0s +2024-03-12T20:19:00Z #15 3.631 106950K .......... .......... .......... .......... .......... 84% 165M 0s +2024-03-12T20:19:00Z #15 3.631 107000K .......... .......... .......... .......... .......... 84% 143M 0s +2024-03-12T20:19:00Z #15 3.632 107050K .......... .......... .......... .......... .......... 84% 161M 0s +2024-03-12T20:19:00Z #15 3.632 107100K .......... .......... .......... .......... .......... 84% 175M 0s +2024-03-12T20:19:00Z #15 3.633 107150K .......... .......... .......... .......... .......... 84% 174M 0s +2024-03-12T20:19:00Z #15 3.633 107200K .......... .......... .......... .......... .......... 84% 162M 0s +2024-03-12T20:19:00Z #15 3.633 107250K .......... .......... .......... .......... .......... 84% 141M 0s +2024-03-12T20:19:00Z #15 3.633 107300K .......... .......... .......... .......... .......... 84% 151M 0s +2024-03-12T20:19:00Z #15 3.633 107350K .......... .......... .......... .......... .......... 84% 121M 0s +2024-03-12T20:19:00Z #15 3.634 107400K .......... .......... .......... .......... .......... 84% 149M 0s +2024-03-12T20:19:00Z #15 3.634 107450K .......... .......... .......... .......... .......... 84% 132M 0s +2024-03-12T20:19:00Z #15 3.634 107500K .......... .......... .......... .......... .......... 84% 157M 0s +2024-03-12T20:19:00Z #15 3.635 107550K .......... .......... .......... .......... .......... 84% 136M 0s +2024-03-12T20:19:00Z #15 3.635 107600K .......... .......... .......... .......... .......... 84% 170M 0s +2024-03-12T20:19:00Z #15 3.636 107650K .......... .......... .......... .......... .......... 84% 161M 0s +2024-03-12T20:19:00Z #15 3.636 107700K .......... .......... .......... .......... .......... 84% 140M 0s +2024-03-12T20:19:00Z #15 3.636 107750K .......... .......... .......... .......... .......... 85% 169M 0s +2024-03-12T20:19:00Z #15 3.636 107800K .......... .......... .......... .......... .......... 85% 148M 0s +2024-03-12T20:19:00Z #15 3.640 107850K .......... .......... .......... .......... .......... 85% 163M 0s +2024-03-12T20:19:00Z #15 3.640 107900K .......... .......... .......... .......... .......... 85% 158M 0s +2024-03-12T20:19:00Z #15 3.640 107950K .......... .......... .......... .......... .......... 85% 10.6M 0s +2024-03-12T20:19:00Z #15 3.642 108000K .......... .......... .......... .......... .......... 85% 133M 0s +2024-03-12T20:19:00Z #15 3.642 108050K .......... .......... .......... .......... .......... 85% 192M 0s +2024-03-12T20:19:00Z #15 3.649 108100K .......... .......... .......... .......... .......... 85% 128M 0s +2024-03-12T20:19:00Z #15 3.649 108150K .......... .......... .......... .......... .......... 85% 152M 0s +2024-03-12T20:19:00Z #15 3.649 108200K .......... .......... .......... .......... .......... 85% 148M 0s +2024-03-12T20:19:00Z #15 3.649 108250K .......... .......... .......... .......... .......... 85% 167M 0s +2024-03-12T20:19:00Z #15 3.649 108300K .......... .......... .......... .......... .......... 85% 137M 0s +2024-03-12T20:19:00Z #15 3.649 108350K .......... .......... .......... .......... .......... 85% 128M 0s +2024-03-12T20:19:00Z #15 3.649 108400K .......... .......... .......... .......... .......... 85% 150M 0s +2024-03-12T20:19:00Z #15 3.649 108450K .......... .......... .......... .......... .......... 85% 9.39M 0s +2024-03-12T20:19:00Z #15 3.653 108500K .......... .......... .......... .......... .......... 85% 148M 0s +2024-03-12T20:19:00Z #15 3.653 108550K .......... .......... .......... .......... .......... 85% 120M 0s +2024-03-12T20:19:00Z #15 3.653 108600K .......... .......... .......... .......... .......... 85% 24.1M 0s +2024-03-12T20:19:00Z #15 3.653 108650K .......... .......... .......... .......... .......... 85% 128M 0s +2024-03-12T20:19:00Z #15 3.654 108700K .......... .......... .......... .......... .......... 85% 130M 0s +2024-03-12T20:19:00Z #15 3.654 108750K .......... .......... .......... .......... .......... 85% 109M 0s +2024-03-12T20:19:00Z #15 3.655 108800K .......... .......... .......... .......... .......... 85% 149M 0s +2024-03-12T20:19:00Z #15 3.655 108850K .......... .......... .......... .......... .......... 85% 157M 0s +2024-03-12T20:19:00Z #15 3.655 108900K .......... .......... .......... .......... .......... 85% 153M 0s +2024-03-12T20:19:00Z #15 3.655 108950K .......... .......... .......... .......... .......... 85% 132M 0s +2024-03-12T20:19:00Z #15 3.656 109000K .......... .......... .......... .......... .......... 86% 152M 0s +2024-03-12T20:19:00Z #15 3.657 109050K .......... .......... .......... .......... .......... 86% 143M 0s +2024-03-12T20:19:00Z #15 3.657 109100K .......... .......... .......... .......... .......... 86% 158M 0s +2024-03-12T20:19:00Z #15 3.657 109150K .......... .......... .......... .......... .......... 86% 156M 0s +2024-03-12T20:19:00Z #15 3.657 109200K .......... .......... .......... .......... .......... 86% 136M 0s +2024-03-12T20:19:00Z #15 3.658 109250K .......... .......... .......... .......... .......... 86% 132M 0s +2024-03-12T20:19:00Z #15 3.658 109300K .......... .......... .......... .......... .......... 86% 10.8M 0s +2024-03-12T20:19:00Z #15 3.683 109350K .......... .......... .......... .......... .......... 86% 148M 0s +2024-03-12T20:19:00Z #15 3.683 109400K .......... .......... .......... .......... .......... 86% 180M 0s +2024-03-12T20:19:00Z #15 3.683 109450K .......... .......... .......... .......... .......... 86% 188M 0s +2024-03-12T20:19:00Z #15 3.683 109500K .......... .......... .......... .......... .......... 86% 182M 0s +2024-03-12T20:19:00Z #15 3.683 109550K .......... .......... .......... .......... .......... 86% 157M 0s +2024-03-12T20:19:00Z #15 3.683 109600K .......... .......... .......... .......... .......... 86% 188M 0s +2024-03-12T20:19:00Z #15 3.683 109650K .......... .......... .......... .......... .......... 86% 138M 0s +2024-03-12T20:19:00Z #15 3.683 109700K .......... .......... .......... .......... .......... 86% 180M 0s +2024-03-12T20:19:00Z #15 3.683 109750K .......... .......... .......... .......... .......... 86% 190M 0s +2024-03-12T20:19:00Z #15 3.683 109800K .......... .......... .......... .......... .......... 86% 155M 0s +2024-03-12T20:19:00Z #15 3.683 109850K .......... .......... .......... .......... .......... 86% 167M 0s +2024-03-12T20:19:00Z #15 3.683 109900K .......... .......... .......... .......... .......... 86% 73.3M 0s +2024-03-12T20:19:00Z #15 3.683 109950K .......... .......... .......... .......... .......... 86% 134M 0s +2024-03-12T20:19:00Z #15 3.683 110000K .......... .......... .......... .......... .......... 86% 185M 0s +2024-03-12T20:19:00Z #15 3.683 110050K .......... .......... .......... .......... .......... 86% 176M 0s +2024-03-12T20:19:00Z #15 3.683 110100K .......... .......... .......... .......... .......... 86% 111M 0s +2024-03-12T20:19:00Z #15 3.683 110150K .......... .......... .......... .......... .......... 86% 135M 0s +2024-03-12T20:19:00Z #15 3.683 110200K .......... .......... .......... .......... .......... 86% 167M 0s +2024-03-12T20:19:00Z #15 3.683 110250K .......... .......... .......... .......... .......... 86% 186M 0s +2024-03-12T20:19:00Z #15 3.683 110300K .......... .......... .......... .......... .......... 87% 164M 0s +2024-03-12T20:19:00Z #15 3.683 110350K .......... .......... .......... .......... .......... 87% 188M 0s +2024-03-12T20:19:00Z #15 3.683 110400K .......... .......... .......... .......... .......... 87% 164M 0s +2024-03-12T20:19:00Z #15 3.683 110450K .......... .......... .......... .......... .......... 87% 165M 0s +2024-03-12T20:19:00Z #15 3.683 110500K .......... .......... .......... .......... .......... 87% 128M 0s +2024-03-12T20:19:00Z #15 3.683 110550K .......... .......... .......... .......... .......... 87% 10.8M 0s +2024-03-12T20:19:00Z #15 3.683 110600K .......... .......... .......... .......... .......... 87% 172M 0s +2024-03-12T20:19:00Z #15 3.683 110650K .......... .......... .......... .......... .......... 87% 187M 0s +2024-03-12T20:19:00Z #15 3.683 110700K .......... .......... .......... .......... .......... 87% 175M 0s +2024-03-12T20:19:00Z #15 3.683 110750K .......... .......... .......... .......... .......... 87% 158M 0s +2024-03-12T20:19:00Z #15 3.683 110800K .......... .......... .......... .......... .......... 87% 84.8M 0s +2024-03-12T20:19:00Z #15 3.683 110850K .......... .......... .......... .......... .......... 87% 179M 0s +2024-03-12T20:19:00Z #15 3.683 110900K .......... .......... .......... .......... .......... 87% 182M 0s +2024-03-12T20:19:00Z #15 3.683 110950K .......... .......... .......... .......... .......... 87% 154M 0s +2024-03-12T20:19:00Z #15 3.683 111000K .......... .......... .......... .......... .......... 87% 189M 0s +2024-03-12T20:19:00Z #15 3.683 111050K .......... .......... .......... .......... .......... 87% 4.50M 0s +2024-03-12T20:19:00Z #15 3.694 111100K .......... .......... .......... .......... .......... 87% 134M 0s +2024-03-12T20:19:00Z #15 3.694 111150K .......... .......... .......... .......... .......... 87% 180M 0s +2024-03-12T20:19:00Z #15 3.694 111200K .......... .......... .......... .......... .......... 87% 181M 0s +2024-03-12T20:19:00Z #15 3.694 111250K .......... .......... .......... .......... .......... 87% 145M 0s +2024-03-12T20:19:00Z #15 3.694 111300K .......... .......... .......... .......... .......... 87% 180M 0s +2024-03-12T20:19:00Z #15 3.694 111350K .......... .......... .......... .......... .......... 87% 8.59M 0s +2024-03-12T20:19:00Z #15 3.700 111400K .......... .......... .......... .......... .......... 87% 160M 0s +2024-03-12T20:19:00Z #15 3.700 111450K .......... .......... .......... .......... .......... 87% 186M 0s +2024-03-12T20:19:00Z #15 3.700 111500K .......... .......... .......... .......... .......... 87% 167M 0s +2024-03-12T20:19:00Z #15 3.700 111550K .......... .......... .......... .......... .......... 88% 185M 0s +2024-03-12T20:19:00Z #15 3.700 111600K .......... .......... .......... .......... .......... 88% 111M 0s +2024-03-12T20:19:00Z #15 3.700 111650K .......... .......... .......... .......... .......... 88% 76.0M 0s +2024-03-12T20:19:00Z #15 3.700 111700K .......... .......... .......... .......... .......... 88% 115M 0s +2024-03-12T20:19:00Z #15 3.700 111750K .......... .......... .......... .......... .......... 88% 7.31M 0s +2024-03-12T20:19:00Z #15 3.714 111800K .......... .......... .......... .......... .......... 88% 179M 0s +2024-03-12T20:19:00Z #15 3.714 111850K .......... .......... .......... .......... .......... 88% 181M 0s +2024-03-12T20:19:00Z #15 3.714 111900K .......... .......... .......... .......... .......... 88% 170M 0s +2024-03-12T20:19:00Z #15 3.714 111950K .......... .......... .......... .......... .......... 88% 165M 0s +2024-03-12T20:19:00Z #15 3.714 112000K .......... .......... .......... .......... .......... 88% 105M 0s +2024-03-12T20:19:00Z #15 3.714 112050K .......... .......... .......... .......... .......... 88% 188M 0s +2024-03-12T20:19:00Z #15 3.714 112100K .......... .......... .......... .......... .......... 88% 185M 0s +2024-03-12T20:19:00Z #15 3.714 112150K .......... .......... .......... .......... .......... 88% 163M 0s +2024-03-12T20:19:00Z #15 3.714 112200K .......... .......... .......... .......... .......... 88% 171M 0s +2024-03-12T20:19:00Z #15 3.714 112250K .......... .......... .......... .......... .......... 88% 159M 0s +2024-03-12T20:19:00Z #15 3.714 112300K .......... .......... .......... .......... .......... 88% 178M 0s +2024-03-12T20:19:00Z #15 3.714 112350K .......... .......... .......... .......... .......... 88% 157M 0s +2024-03-12T20:19:00Z #15 3.714 112400K .......... .......... .......... .......... .......... 88% 190M 0s +2024-03-12T20:19:00Z #15 3.714 112450K .......... .......... .......... .......... .......... 88% 188M 0s +2024-03-12T20:19:00Z #15 3.714 112500K .......... .......... .......... .......... .......... 88% 187M 0s +2024-03-12T20:19:00Z #15 3.714 112550K .......... .......... .......... .......... .......... 88% 58.8M 0s +2024-03-12T20:19:00Z #15 3.714 112600K .......... .......... .......... .......... .......... 88% 7.49M 0s +2024-03-12T20:19:00Z #15 3.716 112650K .......... .......... .......... .......... .......... 88% 23.5M 0s +2024-03-12T20:19:00Z #15 3.718 112700K .......... .......... .......... .......... .......... 88% 66.0M 0s +2024-03-12T20:19:00Z #15 3.719 112750K .......... .......... .......... .......... .......... 88% 32.5M 0s +2024-03-12T20:19:00Z #15 3.720 112800K .......... .......... .......... .......... .......... 89% 43.8M 0s +2024-03-12T20:19:00Z #15 3.724 112850K .......... .......... .......... .......... .......... 89% 19.4M 0s +2024-03-12T20:19:00Z #15 3.724 112900K .......... .......... .......... .......... .......... 89% 125M 0s +2024-03-12T20:19:00Z #15 3.724 112950K .......... .......... .......... .......... .......... 89% 126M 0s +2024-03-12T20:19:00Z #15 3.725 113000K .......... .......... .......... .......... .......... 89% 44.5M 0s +2024-03-12T20:19:00Z #15 3.726 113050K .......... .......... .......... .......... .......... 89% 17.0M 0s +2024-03-12T20:19:00Z #15 3.729 113100K .......... .......... .......... .......... .......... 89% 96.0M 0s +2024-03-12T20:19:00Z #15 3.729 113150K .......... .......... .......... .......... .......... 89% 102M 0s +2024-03-12T20:19:00Z #15 3.730 113200K .......... .......... .......... .......... .......... 89% 119M 0s +2024-03-12T20:19:00Z #15 3.730 113250K .......... .......... .......... .......... .......... 89% 54.4M 0s +2024-03-12T20:19:00Z #15 3.731 113300K .......... .......... .......... .......... .......... 89% 86.9M 0s +2024-03-12T20:19:00Z #15 3.732 113350K .......... .......... .......... .......... .......... 89% 39.2M 0s +2024-03-12T20:19:00Z #15 3.733 113400K .......... .......... .......... .......... .......... 89% 106M 0s +2024-03-12T20:19:00Z #15 3.734 113450K .......... .......... .......... .......... .......... 89% 20.8M 0s +2024-03-12T20:19:00Z #15 3.736 113500K .......... .......... .......... .......... .......... 89% 105M 0s +2024-03-12T20:19:00Z #15 3.736 113550K .......... .......... .......... .......... .......... 89% 85.1M 0s +2024-03-12T20:19:00Z #15 3.737 113600K .......... .......... .......... .......... .......... 89% 77.0M 0s +2024-03-12T20:19:00Z #15 3.737 113650K .......... .......... .......... .......... .......... 89% 75.8M 0s +2024-03-12T20:19:00Z #15 3.738 113700K .......... .......... .......... .......... .......... 89% 113M 0s +2024-03-12T20:19:00Z #15 3.739 113750K .......... .......... .......... .......... .......... 89% 48.1M 0s +2024-03-12T20:19:00Z #15 3.740 113800K .......... .......... .......... .......... .......... 89% 76.6M 0s +2024-03-12T20:19:00Z #15 3.740 113850K .......... .......... .......... .......... .......... 89% 16.6M 0s +2024-03-12T20:19:00Z #15 3.743 113900K .......... .......... .......... .......... .......... 89% 87.8M 0s +2024-03-12T20:19:00Z #15 3.744 113950K .......... .......... .......... .......... .......... 89% 96.4M 0s +2024-03-12T20:19:00Z #15 3.744 114000K .......... .......... .......... .......... .......... 89% 61.7M 0s +2024-03-12T20:19:00Z #15 3.745 114050K .......... .......... .......... .......... .......... 89% 119M 0s +2024-03-12T20:19:00Z #15 3.746 114100K .......... .......... .......... .......... .......... 90% 48.3M 0s +2024-03-12T20:19:00Z #15 3.747 114150K .......... .......... .......... .......... .......... 90% 59.8M 0s +2024-03-12T20:19:00Z #15 3.747 114200K .......... .......... .......... .......... .......... 90% 118M 0s +2024-03-12T20:19:00Z #15 3.748 114250K .......... .......... .......... .......... .......... 90% 76.6M 0s +2024-03-12T20:19:00Z #15 3.749 114300K .......... .......... .......... .......... .......... 90% 95.2M 0s +2024-03-12T20:19:00Z #15 3.749 114350K .......... .......... .......... .......... .......... 90% 102M 0s +2024-03-12T20:19:00Z #15 3.749 114400K .......... .......... .......... .......... .......... 90% 110M 0s +2024-03-12T20:19:00Z #15 3.750 114450K .......... .......... .......... .......... .......... 90% 82.7M 0s +2024-03-12T20:19:00Z #15 3.751 114500K .......... .......... .......... .......... .......... 90% 102M 0s +2024-03-12T20:19:00Z #15 3.751 114550K .......... .......... .......... .......... .......... 90% 75.4M 0s +2024-03-12T20:19:00Z #15 3.752 114600K .......... .......... .......... .......... .......... 90% 91.8M 0s +2024-03-12T20:19:00Z #15 3.752 114650K .......... .......... .......... .......... .......... 90% 90.2M 0s +2024-03-12T20:19:00Z #15 3.753 114700K .......... .......... .......... .......... .......... 90% 105M 0s +2024-03-12T20:19:00Z #15 3.753 114750K .......... .......... .......... .......... .......... 90% 52.3M 0s +2024-03-12T20:19:00Z #15 3.754 114800K .......... .......... .......... .......... .......... 90% 82.0M 0s +2024-03-12T20:19:00Z #15 3.755 114850K .......... .......... .......... .......... .......... 90% 56.2M 0s +2024-03-12T20:19:00Z #15 3.756 114900K .......... .......... .......... .......... .......... 90% 101M 0s +2024-03-12T20:19:00Z #15 3.756 114950K .......... .......... .......... .......... .......... 90% 59.7M 0s +2024-03-12T20:19:00Z #15 3.757 115000K .......... .......... .......... .......... .......... 90% 76.5M 0s +2024-03-12T20:19:00Z #15 3.758 115050K .......... .......... .......... .......... .......... 90% 74.4M 0s +2024-03-12T20:19:00Z #15 3.758 115100K .......... .......... .......... .......... .......... 90% 81.4M 0s +2024-03-12T20:19:00Z #15 3.759 115150K .......... .......... .......... .......... .......... 90% 60.0M 0s +2024-03-12T20:19:00Z #15 3.759 115200K .......... .......... .......... .......... .......... 90% 89.9M 0s +2024-03-12T20:19:00Z #15 3.760 115250K .......... .......... .......... .......... .......... 90% 55.2M 0s +2024-03-12T20:19:00Z #15 3.761 115300K .......... .......... .......... .......... .......... 90% 64.0M 0s +2024-03-12T20:19:00Z #15 3.762 115350K .......... .......... .......... .......... .......... 91% 51.5M 0s +2024-03-12T20:19:00Z #15 3.763 115400K .......... .......... .......... .......... .......... 91% 52.3M 0s +2024-03-12T20:19:00Z #15 3.763 115450K .......... .......... .......... .......... .......... 91% 62.6M 0s +2024-03-12T20:19:00Z #15 3.764 115500K .......... .......... .......... .......... .......... 91% 60.6M 0s +2024-03-12T20:19:00Z #15 3.765 115550K .......... .......... .......... .......... .......... 91% 93.0M 0s +2024-03-12T20:19:00Z #15 3.766 115600K .......... .......... .......... .......... .......... 91% 78.7M 0s +2024-03-12T20:19:00Z #15 3.766 115650K .......... .......... .......... .......... .......... 91% 75.7M 0s +2024-03-12T20:19:00Z #15 3.767 115700K .......... .......... .......... .......... .......... 91% 85.5M 0s +2024-03-12T20:19:00Z #15 3.768 115750K .......... .......... .......... .......... .......... 91% 81.6M 0s +2024-03-12T20:19:00Z #15 3.768 115800K .......... .......... .......... .......... .......... 91% 57.6M 0s +2024-03-12T20:19:00Z #15 3.769 115850K .......... .......... .......... .......... .......... 91% 83.4M 0s +2024-03-12T20:19:00Z #15 3.770 115900K .......... .......... .......... .......... .......... 91% 58.9M 0s +2024-03-12T20:19:00Z #15 3.771 115950K .......... .......... .......... .......... .......... 91% 79.4M 0s +2024-03-12T20:19:00Z #15 3.771 116000K .......... .......... .......... .......... .......... 91% 49.5M 0s +2024-03-12T20:19:00Z #15 3.772 116050K .......... .......... .......... .......... .......... 91% 46.4M 0s +2024-03-12T20:19:00Z #15 3.773 116100K .......... .......... .......... .......... .......... 91% 58.8M 0s +2024-03-12T20:19:00Z #15 3.774 116150K .......... .......... .......... .......... .......... 91% 61.0M 0s +2024-03-12T20:19:00Z #15 3.775 116200K .......... .......... .......... .......... .......... 91% 90.1M 0s +2024-03-12T20:19:00Z #15 3.775 116250K .......... .......... .......... .......... .......... 91% 85.3M 0s +2024-03-12T20:19:00Z #15 3.776 116300K .......... .......... .......... .......... .......... 91% 83.6M 0s +2024-03-12T20:19:00Z #15 3.776 116350K .......... .......... .......... .......... .......... 91% 71.1M 0s +2024-03-12T20:19:00Z #15 3.778 116400K .......... .......... .......... .......... .......... 91% 66.1M 0s +2024-03-12T20:19:00Z #15 3.778 116450K .......... .......... .......... .......... .......... 91% 58.1M 0s +2024-03-12T20:19:00Z #15 3.779 116500K .......... .......... .......... .......... .......... 91% 80.5M 0s +2024-03-12T20:19:00Z #15 3.779 116550K .......... .......... .......... .......... .......... 91% 83.4M 0s +2024-03-12T20:19:00Z #15 3.780 116600K .......... .......... .......... .......... .......... 92% 103M 0s +2024-03-12T20:19:00Z #15 3.780 116650K .......... .......... .......... .......... .......... 92% 50.6M 0s +2024-03-12T20:19:00Z #15 3.781 116700K .......... .......... .......... .......... .......... 92% 73.3M 0s +2024-03-12T20:19:00Z #15 3.782 116750K .......... .......... .......... .......... .......... 92% 59.2M 0s +2024-03-12T20:19:00Z #15 3.783 116800K .......... .......... .......... .......... .......... 92% 102M 0s +2024-03-12T20:19:00Z #15 3.783 116850K .......... .......... .......... .......... .......... 92% 88.9M 0s +2024-03-12T20:19:00Z #15 3.784 116900K .......... .......... .......... .......... .......... 92% 105M 0s +2024-03-12T20:19:00Z #15 3.784 116950K .......... .......... .......... .......... .......... 92% 95.9M 0s +2024-03-12T20:19:00Z #15 3.785 117000K .......... .......... .......... .......... .......... 92% 96.8M 0s +2024-03-12T20:19:00Z #15 3.785 117050K .......... .......... .......... .......... .......... 92% 107M 0s +2024-03-12T20:19:00Z #15 3.790 117100K .......... .......... .......... .......... .......... 92% 75.7M 0s +2024-03-12T20:19:00Z #15 3.790 117150K .......... .......... .......... .......... .......... 92% 74.0M 0s +2024-03-12T20:19:00Z #15 3.790 117200K .......... .......... .......... .......... .......... 92% 75.0M 0s +2024-03-12T20:19:00Z #15 3.790 117250K .......... .......... .......... .......... .......... 92% 80.9M 0s +2024-03-12T20:19:00Z #15 3.790 117300K .......... .......... .......... .......... .......... 92% 57.0M 0s +2024-03-12T20:19:00Z #15 3.790 117350K .......... .......... .......... .......... .......... 92% 35.1M 0s +2024-03-12T20:19:00Z #15 3.791 117400K .......... .......... .......... .......... .......... 92% 49.0M 0s +2024-03-12T20:19:00Z #15 3.792 117450K .......... .......... .......... .......... .......... 92% 78.3M 0s +2024-03-12T20:19:00Z #15 3.792 117500K .......... .......... .......... .......... .......... 92% 93.6M 0s +2024-03-12T20:19:00Z #15 3.793 117550K .......... .......... .......... .......... .......... 92% 123M 0s +2024-03-12T20:19:00Z #15 3.794 117600K .......... .......... .......... .......... .......... 92% 74.0M 0s +2024-03-12T20:19:00Z #15 3.794 117650K .......... .......... .......... .......... .......... 92% 123M 0s +2024-03-12T20:19:00Z #15 3.795 117700K .......... .......... .......... .......... .......... 92% 101M 0s +2024-03-12T20:19:00Z #15 3.795 117750K .......... .......... .......... .......... .......... 92% 96.3M 0s +2024-03-12T20:19:00Z #15 3.796 117800K .......... .......... .......... .......... .......... 92% 92.4M 0s +2024-03-12T20:19:00Z #15 3.796 117850K .......... .......... .......... .......... .......... 92% 104M 0s +2024-03-12T20:19:00Z #15 3.797 117900K .......... .......... .......... .......... .......... 93% 104M 0s +2024-03-12T20:19:00Z #15 3.797 117950K .......... .......... .......... .......... .......... 93% 120M 0s +2024-03-12T20:19:00Z #15 3.797 118000K .......... .......... .......... .......... .......... 93% 54.7M 0s +2024-03-12T20:19:00Z #15 3.802 118050K .......... .......... .......... .......... .......... 93% 84.3M 0s +2024-03-12T20:19:00Z #15 3.802 118100K .......... .......... .......... .......... .......... 93% 135M 0s +2024-03-12T20:19:00Z #15 3.802 118150K .......... .......... .......... .......... .......... 93% 174M 0s +2024-03-12T20:19:00Z #15 3.802 118200K .......... .......... .......... .......... .......... 93% 109M 0s +2024-03-12T20:19:00Z #15 3.802 118250K .......... .......... .......... .......... .......... 93% 179M 0s +2024-03-12T20:19:00Z #15 3.802 118300K .......... .......... .......... .......... .......... 93% 158M 0s +2024-03-12T20:19:00Z #15 3.802 118350K .......... .......... .......... .......... .......... 93% 183M 0s +2024-03-12T20:19:00Z #15 3.802 118400K .......... .......... .......... .......... .......... 93% 190M 0s +2024-03-12T20:19:00Z #15 3.802 118450K .......... .......... .......... .......... .......... 93% 164M 0s +2024-03-12T20:19:00Z #15 3.802 118500K .......... .......... .......... .......... .......... 93% 153M 0s +2024-03-12T20:19:00Z #15 3.802 118550K .......... .......... .......... .......... .......... 93% 168M 0s +2024-03-12T20:19:00Z #15 3.802 118600K .......... .......... .......... .......... .......... 93% 177M 0s +2024-03-12T20:19:00Z #15 3.802 118650K .......... .......... .......... .......... .......... 93% 132M 0s +2024-03-12T20:19:00Z #15 3.802 118700K .......... .......... .......... .......... .......... 93% 174M 0s +2024-03-12T20:19:00Z #15 3.802 118750K .......... .......... .......... .......... .......... 93% 55.6M 0s +2024-03-12T20:19:00Z #15 3.803 118800K .......... .......... .......... .......... .......... 93% 78.7M 0s +2024-03-12T20:19:00Z #15 3.804 118850K .......... .......... .......... .......... .......... 93% 88.1M 0s +2024-03-12T20:19:00Z #15 3.805 118900K .......... .......... .......... .......... .......... 93% 72.3M 0s +2024-03-12T20:19:00Z #15 3.806 118950K .......... .......... .......... .......... .......... 93% 94.3M 0s +2024-03-12T20:19:00Z #15 3.806 119000K .......... .......... .......... .......... .......... 93% 41.3M 0s +2024-03-12T20:19:00Z #15 3.807 119050K .......... .......... .......... .......... .......... 93% 86.0M 0s +2024-03-12T20:19:00Z #15 3.807 119100K .......... .......... .......... .......... .......... 93% 56.2M 0s +2024-03-12T20:19:00Z #15 3.808 119150K .......... .......... .......... .......... .......... 94% 64.2M 0s +2024-03-12T20:19:00Z #15 3.809 119200K .......... .......... .......... .......... .......... 94% 62.1M 0s +2024-03-12T20:19:00Z #15 3.810 119250K .......... .......... .......... .......... .......... 94% 67.1M 0s +2024-03-12T20:19:00Z #15 3.811 119300K .......... .......... .......... .......... .......... 94% 148M 0s +2024-03-12T20:19:00Z #15 3.811 119350K .......... .......... .......... .......... .......... 94% 164M 0s +2024-03-12T20:19:00Z #15 3.811 119400K .......... .......... .......... .......... .......... 94% 146M 0s +2024-03-12T20:19:00Z #15 3.811 119450K .......... .......... .......... .......... .......... 94% 166M 0s +2024-03-12T20:19:00Z #15 3.812 119500K .......... .......... .......... .......... .......... 94% 139M 0s +2024-03-12T20:19:00Z #15 3.812 119550K .......... .......... .......... .......... .......... 94% 166M 0s +2024-03-12T20:19:00Z #15 3.813 119600K .......... .......... .......... .......... .......... 94% 82.8M 0s +2024-03-12T20:19:00Z #15 3.813 119650K .......... .......... .......... .......... .......... 94% 128M 0s +2024-03-12T20:19:00Z #15 3.814 119700K .......... .......... .......... .......... .......... 94% 183M 0s +2024-03-12T20:19:00Z #15 3.814 119750K .......... .......... .......... .......... .......... 94% 80.7M 0s +2024-03-12T20:19:00Z #15 3.814 119800K .......... .......... .......... .......... .......... 94% 161M 0s +2024-03-12T20:19:00Z #15 3.814 119850K .......... .......... .......... .......... .......... 94% 148M 0s +2024-03-12T20:19:00Z #15 3.815 119900K .......... .......... .......... .......... .......... 94% 163M 0s +2024-03-12T20:19:00Z #15 3.816 119950K .......... .......... .......... .......... .......... 94% 83.0M 0s +2024-03-12T20:19:00Z #15 3.816 120000K .......... .......... .......... .......... .......... 94% 124M 0s +2024-03-12T20:19:00Z #15 3.816 120050K .......... .......... .......... .......... .......... 94% 160M 0s +2024-03-12T20:19:00Z #15 3.817 120100K .......... .......... .......... .......... .......... 94% 80.4M 0s +2024-03-12T20:19:00Z #15 3.817 120150K .......... .......... .......... .......... .......... 94% 134M 0s +2024-03-12T20:19:00Z #15 3.817 120200K .......... .......... .......... .......... .......... 94% 115M 0s +2024-03-12T20:19:00Z #15 3.818 120250K .......... .......... .......... .......... .......... 94% 74.4M 0s +2024-03-12T20:19:00Z #15 3.818 120300K .......... .......... .......... .......... .......... 94% 144M 0s +2024-03-12T20:19:00Z #15 3.820 120350K .......... .......... .......... .......... .......... 94% 104M 0s +2024-03-12T20:19:00Z #15 3.820 120400K .......... .......... .......... .......... .......... 95% 95.3M 0s +2024-03-12T20:19:00Z #15 3.820 120450K .......... .......... .......... .......... .......... 95% 115M 0s +2024-03-12T20:19:00Z #15 3.820 120500K .......... .......... .......... .......... .......... 95% 113M 0s +2024-03-12T20:19:00Z #15 3.821 120550K .......... .......... .......... .......... .......... 95% 71.6M 0s +2024-03-12T20:19:00Z #15 3.821 120600K .......... .......... .......... .......... .......... 95% 109M 0s +2024-03-12T20:19:00Z #15 3.822 120650K .......... .......... .......... .......... .......... 95% 62.6M 0s +2024-03-12T20:19:00Z #15 3.823 120700K .......... .......... .......... .......... .......... 95% 71.8M 0s +2024-03-12T20:19:00Z #15 3.824 120750K .......... .......... .......... .......... .......... 95% 114M 0s +2024-03-12T20:19:00Z #15 3.824 120800K .......... .......... .......... .......... .......... 95% 120M 0s +2024-03-12T20:19:00Z #15 3.824 120850K .......... .......... .......... .......... .......... 95% 70.2M 0s +2024-03-12T20:19:00Z #15 3.825 120900K .......... .......... .......... .......... .......... 95% 116M 0s +2024-03-12T20:19:00Z #15 3.825 120950K .......... .......... .......... .......... .......... 95% 93.9M 0s +2024-03-12T20:19:00Z #15 3.826 121000K .......... .......... .......... .......... .......... 95% 92.3M 0s +2024-03-12T20:19:00Z #15 3.827 121050K .......... .......... .......... .......... .......... 95% 82.6M 0s +2024-03-12T20:19:00Z #15 3.827 121100K .......... .......... .......... .......... .......... 95% 82.8M 0s +2024-03-12T20:19:00Z #15 3.828 121150K .......... .......... .......... .......... .......... 95% 94.0M 0s +2024-03-12T20:19:00Z #15 3.828 121200K .......... .......... .......... .......... .......... 95% 157M 0s +2024-03-12T20:19:00Z #15 3.828 121250K .......... .......... .......... .......... .......... 95% 148M 0s +2024-03-12T20:19:00Z #15 3.829 121300K .......... .......... .......... .......... .......... 95% 103M 0s +2024-03-12T20:19:00Z #15 3.829 121350K .......... .......... .......... .......... .......... 95% 152M 0s +2024-03-12T20:19:00Z #15 3.829 121400K .......... .......... .......... .......... .......... 95% 156M 0s +2024-03-12T20:19:00Z #15 3.830 121450K .......... .......... .......... .......... .......... 95% 45.0M 0s +2024-03-12T20:19:00Z #15 3.831 121500K .......... .......... .......... .......... .......... 95% 142M 0s +2024-03-12T20:19:00Z #15 3.831 121550K .......... .......... .......... .......... .......... 95% 95.4M 0s +2024-03-12T20:19:00Z #15 3.832 121600K .......... .......... .......... .......... .......... 95% 99.1M 0s +2024-03-12T20:19:00Z #15 3.832 121650K .......... .......... .......... .......... .......... 95% 164M 0s +2024-03-12T20:19:00Z #15 3.833 121700K .......... .......... .......... .......... .......... 96% 101M 0s +2024-03-12T20:19:00Z #15 3.833 121750K .......... .......... .......... .......... .......... 96% 152M 0s +2024-03-12T20:19:00Z #15 3.833 121800K .......... .......... .......... .......... .......... 96% 59.7M 0s +2024-03-12T20:19:00Z #15 3.834 121850K .......... .......... .......... .......... .......... 96% 170M 0s +2024-03-12T20:19:00Z #15 3.834 121900K .......... .......... .......... .......... .......... 96% 131M 0s +2024-03-12T20:19:00Z #15 3.835 121950K .......... .......... .......... .......... .......... 96% 58.9M 0s +2024-03-12T20:19:00Z #15 3.836 122000K .......... .......... .......... .......... .......... 96% 55.4M 0s +2024-03-12T20:19:00Z #15 3.836 122050K .......... .......... .......... .......... .......... 96% 116M 0s +2024-03-12T20:19:00Z #15 3.837 122100K .......... .......... .......... .......... .......... 96% 81.3M 0s +2024-03-12T20:19:00Z #15 3.837 122150K .......... .......... .......... .......... .......... 96% 167M 0s +2024-03-12T20:19:00Z #15 3.838 122200K .......... .......... .......... .......... .......... 96% 88.3M 0s +2024-03-12T20:19:00Z #15 3.838 122250K .......... .......... .......... .......... .......... 96% 154M 0s +2024-03-12T20:19:00Z #15 3.839 122300K .......... .......... .......... .......... .......... 96% 99.3M 0s +2024-03-12T20:19:00Z #15 3.839 122350K .......... .......... .......... .......... .......... 96% 111M 0s +2024-03-12T20:19:00Z #15 3.840 122400K .......... .......... .......... .......... .......... 96% 86.0M 0s +2024-03-12T20:19:00Z #15 3.840 122450K .......... .......... .......... .......... .......... 96% 143M 0s +2024-03-12T20:19:00Z #15 3.841 122500K .......... .......... .......... .......... .......... 96% 168M 0s +2024-03-12T20:19:00Z #15 3.841 122550K .......... .......... .......... .......... .......... 96% 74.4M 0s +2024-03-12T20:19:00Z #15 3.842 122600K .......... .......... .......... .......... .......... 96% 113M 0s +2024-03-12T20:19:00Z #15 3.842 122650K .......... .......... .......... .......... .......... 96% 139M 0s +2024-03-12T20:19:00Z #15 3.843 122700K .......... .......... .......... .......... .......... 96% 68.8M 0s +2024-03-12T20:19:00Z #15 3.843 122750K .......... .......... .......... .......... .......... 96% 144M 0s +2024-03-12T20:19:00Z #15 3.843 122800K .......... .......... .......... .......... .......... 96% 148M 0s +2024-03-12T20:19:00Z #15 3.844 122850K .......... .......... .......... .......... .......... 96% 87.3M 0s +2024-03-12T20:19:00Z #15 3.844 122900K .......... .......... .......... .......... .......... 96% 47.4M 0s +2024-03-12T20:19:00Z #15 3.845 122950K .......... .......... .......... .......... .......... 97% 144M 0s +2024-03-12T20:19:00Z #15 3.845 123000K .......... .......... .......... .......... .......... 97% 172M 0s +2024-03-12T20:19:00Z #15 3.846 123050K .......... .......... .......... .......... .......... 97% 80.4M 0s +2024-03-12T20:19:00Z #15 3.846 123100K .......... .......... .......... .......... .......... 97% 100M 0s +2024-03-12T20:19:00Z #15 3.847 123150K .......... .......... .......... .......... .......... 97% 110M 0s +2024-03-12T20:19:00Z #15 3.848 123200K .......... .......... .......... .......... .......... 97% 167M 0s +2024-03-12T20:19:00Z #15 3.848 123250K .......... .......... .......... .......... .......... 97% 135M 0s +2024-03-12T20:19:00Z #15 3.848 123300K .......... .......... .......... .......... .......... 97% 59.9M 0s +2024-03-12T20:19:00Z #15 3.849 123350K .......... .......... .......... .......... .......... 97% 157M 0s +2024-03-12T20:19:00Z #15 3.849 123400K .......... .......... .......... .......... .......... 97% 156M 0s +2024-03-12T20:19:00Z #15 3.849 123450K .......... .......... .......... .......... .......... 97% 49.6M 0s +2024-03-12T20:19:00Z #15 3.850 123500K .......... .......... .......... .......... .......... 97% 54.8M 0s +2024-03-12T20:19:00Z #15 3.851 123550K .......... .......... .......... .......... .......... 97% 91.7M 0s +2024-03-12T20:19:00Z #15 3.852 123600K .......... .......... .......... .......... .......... 97% 148M 0s +2024-03-12T20:19:00Z #15 3.852 123650K .......... .......... .......... .......... .......... 97% 166M 0s +2024-03-12T20:19:00Z #15 3.852 123700K .......... .......... .......... .......... .......... 97% 98.2M 0s +2024-03-12T20:19:00Z #15 3.853 123750K .......... .......... .......... .......... .......... 97% 62.9M 0s +2024-03-12T20:19:00Z #15 3.854 123800K .......... .......... .......... .......... .......... 97% 26.7M 0s +2024-03-12T20:19:00Z #15 3.855 123850K .......... .......... .......... .......... .......... 97% 16.0M 0s +2024-03-12T20:19:00Z #15 3.859 123900K .......... .......... .......... .......... .......... 97% 102M 0s +2024-03-12T20:19:00Z #15 3.859 123950K .......... .......... .......... .......... .......... 97% 29.7M 0s +2024-03-12T20:19:00Z #15 3.861 124000K .......... .......... .......... .......... .......... 97% 76.1M 0s +2024-03-12T20:19:00Z #15 3.861 124050K .......... .......... .......... .......... .......... 97% 58.1M 0s +2024-03-12T20:19:00Z #15 3.862 124100K .......... .......... .......... .......... .......... 97% 35.5M 0s +2024-03-12T20:19:00Z #15 3.864 124150K .......... .......... .......... .......... .......... 97% 120M 0s +2024-03-12T20:19:00Z #15 3.864 124200K .......... .......... .......... .......... .......... 98% 52.0M 0s +2024-03-12T20:19:00Z #15 3.865 124250K .......... .......... .......... .......... .......... 98% 42.5M 0s +2024-03-12T20:19:00Z #15 3.866 124300K .......... .......... .......... .......... .......... 98% 77.6M 0s +2024-03-12T20:19:00Z #15 3.867 124350K .......... .......... .......... .......... .......... 98% 86.6M 0s +2024-03-12T20:19:00Z #15 3.868 124400K .......... .......... .......... .......... .......... 98% 64.8M 0s +2024-03-12T20:19:00Z #15 3.869 124450K .......... .......... .......... .......... .......... 98% 127M 0s +2024-03-12T20:19:00Z #15 3.869 124500K .......... .......... .......... .......... .......... 98% 33.5M 0s +2024-03-12T20:19:00Z #15 3.871 124550K .......... .......... .......... .......... .......... 98% 154M 0s +2024-03-12T20:19:00Z #15 3.871 124600K .......... .......... .......... .......... .......... 98% 141M 0s +2024-03-12T20:19:00Z #15 3.871 124650K .......... .......... .......... .......... .......... 98% 31.2M 0s +2024-03-12T20:19:00Z #15 3.872 124700K .......... .......... .......... .......... .......... 98% 106M 0s +2024-03-12T20:19:00Z #15 3.873 124750K .......... .......... .......... .......... .......... 98% 74.4M 0s +2024-03-12T20:19:00Z #15 3.874 124800K .......... .......... .......... .......... .......... 98% 34.7M 0s +2024-03-12T20:19:00Z #15 3.875 124850K .......... .......... .......... .......... .......... 98% 92.1M 0s +2024-03-12T20:19:00Z #15 3.876 124900K .......... .......... .......... .......... .......... 98% 158M 0s +2024-03-12T20:19:00Z #15 3.876 124950K .......... .......... .......... .......... .......... 98% 41.8M 0s +2024-03-12T20:19:00Z #15 3.877 125000K .......... .......... .......... .......... .......... 98% 58.0M 0s +2024-03-12T20:19:00Z #15 3.878 125050K .......... .......... .......... .......... .......... 98% 45.6M 0s +2024-03-12T20:19:00Z #15 3.879 125100K .......... .......... .......... .......... .......... 98% 81.2M 0s +2024-03-12T20:19:00Z #15 3.879 125150K .......... .......... .......... .......... .......... 98% 44.8M 0s +2024-03-12T20:19:00Z #15 3.881 125200K .......... .......... .......... .......... .......... 98% 57.5M 0s +2024-03-12T20:19:00Z #15 3.881 125250K .......... .......... .......... .......... .......... 98% 39.5M 0s +2024-03-12T20:19:00Z #15 3.882 125300K .......... .......... .......... .......... .......... 98% 27.6M 0s +2024-03-12T20:19:00Z #15 3.884 125350K .......... .......... .......... .......... .......... 98% 168M 0s +2024-03-12T20:19:00Z #15 3.884 125400K .......... .......... .......... .......... .......... 98% 65.5M 0s +2024-03-12T20:19:00Z #15 3.886 125450K .......... .......... .......... .......... .......... 98% 69.8M 0s +2024-03-12T20:19:00Z #15 3.886 125500K .......... .......... .......... .......... .......... 99% 39.8M 0s +2024-03-12T20:19:00Z #15 3.887 125550K .......... .......... .......... .......... .......... 99% 27.7M 0s +2024-03-12T20:19:00Z #15 3.889 125600K .......... .......... .......... .......... .......... 99% 41.9M 0s +2024-03-12T20:19:00Z #15 3.890 125650K .......... .......... .......... .......... .......... 99% 129M 0s +2024-03-12T20:19:00Z #15 3.890 125700K .......... .......... .......... .......... .......... 99% 72.7M 0s +2024-03-12T20:19:00Z #15 3.891 125750K .......... .......... .......... .......... .......... 99% 36.6M 0s +2024-03-12T20:19:00Z #15 3.893 125800K .......... .......... .......... .......... .......... 99% 148M 0s +2024-03-12T20:19:00Z #15 3.893 125850K .......... .......... .......... .......... .......... 99% 55.0M 0s +2024-03-12T20:19:00Z #15 3.893 125900K .......... .......... .......... .......... .......... 99% 36.9M 0s +2024-03-12T20:19:00Z #15 3.895 125950K .......... .......... .......... .......... .......... 99% 65.7M 0s +2024-03-12T20:19:00Z #15 3.896 126000K .......... .......... .......... .......... .......... 99% 1.10M 0s +2024-03-12T20:19:00Z #15 3.940 126050K .......... .......... .......... .......... .......... 99% 53.7M 0s +2024-03-12T20:19:00Z #15 3.941 126100K .......... .......... .......... .......... .......... 99% 20.6M 0s +2024-03-12T20:19:00Z #15 3.943 126150K .......... .......... .......... .......... .......... 99% 50.3M 0s +2024-03-12T20:19:00Z #15 3.944 126200K .......... .......... .......... .......... .......... 99% 110M 0s +2024-03-12T20:19:00Z #15 3.945 126250K .......... .......... .......... .......... .......... 99% 59.6M 0s +2024-03-12T20:19:00Z #15 3.946 126300K .......... .......... .......... .......... .......... 99% 95.6M 0s +2024-03-12T20:19:00Z #15 3.946 126350K .......... .......... .......... .......... .......... 99% 97.2M 0s +2024-03-12T20:19:00Z #15 3.947 126400K .......... .......... .......... .......... .......... 99% 122M 0s +2024-03-12T20:19:00Z #15 3.947 126450K .......... .......... .......... .......... .......... 99% 67.1M 0s +2024-03-12T20:19:00Z #15 3.948 126500K .......... .......... .......... .......... .......... 99% 76.0M 0s +2024-03-12T20:19:00Z #15 3.949 126550K .......... .......... .......... .......... .......... 99% 62.2M 0s +2024-03-12T20:19:00Z #15 3.949 126600K .......... .......... .......... .......... .......... 99% 50.5M 0s +2024-03-12T20:19:00Z #15 3.950 126650K .......... .......... .......... .......... .......... 99% 35.0M 0s +2024-03-12T20:19:00Z #15 3.952 126700K .......... .......... .......... .......... .......... 99% 34.1M 0s +2024-03-12T20:19:00Z #15 3.953 126750K .......... .......... .......... .. 100% 30.5M=2.4s +2024-03-12T20:19:00Z #15 3.954 +2024-03-12T20:19:00Z #15 3.954 2024-03-12 20:19:00 (51.9 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] +2024-03-12T20:19:00Z #15 3.954 +2024-03-12T20:19:01Z #15 5.398 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' +2024-03-12T20:19:01Z #15 5.424 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-03-12T20:19:02Z #15 DONE 5.9s +2024-03-12T20:19:02Z +2024-03-12T20:19:02Z #16 exporting to image +2024-03-12T20:19:02Z #16 exporting layers +2024-03-12T20:21:36Z #16 exporting layers 153.9s done +2024-03-12T20:21:36Z #16 writing image sha256:576ab19b15aadbecfce12e943044b348bc36fb176f0e032690506cffccba848a done +2024-03-12T20:21:36Z #16 naming to docker.io/pavics/workflow-tests:py310-240312 done +2024-03-12T20:21:36Z #16 DONE 153.9s +2024-03-12T20:21:36Z Pushing index.docker.io/pavics/workflow-tests:py310-240312... +2024-03-12T20:29:10Z Done! +2024-03-12T20:29:10Z Build finished From 9f6581b077512f248370da3e640d2f24614e47ea Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 14 Mar 2024 16:36:00 -0400 Subject: [PATCH 038/104] docker: py310-240312 initial jenkins default nb and raven nb --- .../jenkins-buildlogs-default.txt | 3175 +-- .../jenkins-buildlogs-raven.txt | 20088 ++-------------- 2 files changed, 3433 insertions(+), 19830 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index 91ae612..02ac4e5 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -1,4 +1,5 @@ Started by user Long Vu +Replayed #249 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -11,11 +12,12 @@ Seen branch in repository origin/current-production-version Seen branch in repository origin/devel-new-extensions Seen branch in repository origin/extended_tests Seen branch in repository origin/master +Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 7 remote branches -Obtained Jenkinsfile from 4f2c0995711f5b6db82991065a652ea056778a2a +Seen 8 remote branches +Obtained Jenkinsfile from 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -25,1998 +27,1187 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu [Pipeline] { (Declarative: Checkout SCM) [Pipeline] checkout No credentials specified -Cloning the remote Git repository -Cloning with configured refspecs honoured and without tags -Cloning repository https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git - > git init /home/jenkins/agent/workspace/_workflow-tests_new-docker-build # timeout=10 -Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git - > git --version # timeout=10 - > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Fetching changes from the remote Git repository Fetching without tags -Checking out Revision 4f2c0995711f5b6db82991065a652ea056778a2a (new-docker-build) -Commit message: "release: update to use image pavics/workflow-tests:py310-240306" - > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 - > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f (new-docker-build) +Commit message: "release: update to use image pavics/workflow-tests:py310-240312" + > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git + > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 > git config core.sparsecheckout # timeout=10 - > git checkout -f 4f2c0995711f5b6db82991065a652ea056778a2a # timeout=10 - > git rev-list --no-walk e2d81937cd451d8241fda67a1eec10237b90121e # timeout=10 + > git checkout -f 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f # timeout=10 + > git rev-list --no-walk 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240306 - -Error: No such object: pavics/workflow-tests:py310-240306 -[Pipeline] isUnix -[Pipeline] sh -+ docker pull pavics/workflow-tests:py310-240306 -py310-240306: Pulling from pavics/workflow-tests -5d0aeceef7ee: Pulling fs layer -c3d69dcd5caa: Pulling fs layer -0bacf10028c5: Pulling fs layer -4a052d6cf676: Pulling fs layer -4b4a7620ca1b: Pulling fs layer -2ff2c14bd1b0: Pulling fs layer -1c9ef54a53ba: Pulling fs layer -5301e1fde7a4: Pulling fs layer -8a260ecff867: Pulling fs layer -9e035e507682: Pulling fs layer -678407803d31: Pulling fs layer -1fcb215c5d63: Pulling fs layer -4a052d6cf676: Waiting -4b4a7620ca1b: Waiting -2ff2c14bd1b0: Waiting -1c9ef54a53ba: Waiting -5301e1fde7a4: Waiting -8a260ecff867: Waiting -9e035e507682: Waiting -678407803d31: Waiting -1fcb215c5d63: Waiting -5d0aeceef7ee: Verifying Checksum -5d0aeceef7ee: Download complete -5d0aeceef7ee: Pull complete -c3d69dcd5caa: Verifying Checksum -c3d69dcd5caa: Download complete -c3d69dcd5caa: Pull complete -4a052d6cf676: Verifying Checksum -4a052d6cf676: Download complete -0bacf10028c5: Retrying in 5 seconds -0bacf10028c5: Retrying in 4 seconds -0bacf10028c5: Retrying in 3 seconds -0bacf10028c5: Retrying in 2 seconds -0bacf10028c5: Retrying in 1 second -0bacf10028c5: Verifying Checksum -0bacf10028c5: Download complete -1c9ef54a53ba: Verifying Checksum -1c9ef54a53ba: Download complete -0bacf10028c5: Pull complete -4a052d6cf676: Pull complete -2ff2c14bd1b0: Verifying Checksum -2ff2c14bd1b0: Download complete -8a260ecff867: Verifying Checksum -8a260ecff867: Download complete -9e035e507682: Verifying Checksum -9e035e507682: Download complete -678407803d31: Download complete -1fcb215c5d63: Verifying Checksum -1fcb215c5d63: Download complete -4b4a7620ca1b: Verifying Checksum -4b4a7620ca1b: Download complete -4b4a7620ca1b: Pull complete -2ff2c14bd1b0: Pull complete -1c9ef54a53ba: Pull complete -5301e1fde7a4: Verifying Checksum -5301e1fde7a4: Download complete -5301e1fde7a4: Pull complete -8a260ecff867: Pull complete -9e035e507682: Pull complete -678407803d31: Pull complete -1fcb215c5d63: Pull complete -Digest: sha256:670b143fd0de2986ee6bc4846fc5cba7d995cb2b138b0bab099ab931a9e4e8b2 -Status: Downloaded newer image for pavics/workflow-tests:py310-240306 ++ docker inspect -f . pavics/workflow-tests:py310-240312 +. [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240306 cat -$ docker top 1ad88c247d92c4cfa1d3dabc611c63315f1739785abb52f7068ef9d8ba0d7ee7 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240312 cat +$ docker top 9daac0be1774778111989f5fb4bfbd66cd47d496c133be5d02c08474feb6830b -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-07T02:06:52.992Z] Timeout set to expire in 2 hr 0 min +[2024-03-14T19:18:32.044Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-07T02:06:53.924Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-03-14T19:18:32.338Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-07T02:06:54.535Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-07T02:06:54.535Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-07T02:06:54.535Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-07T02:06:54.535Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-07T02:06:54.535Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-07T02:06:54.535Z] FINCH_BRANCH has been set to 'master' -[2024-03-07T02:06:54.535Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-07T02:06:54.535Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-07T02:06:54.535Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-07T02:06:54.535Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-07T02:06:54.535Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-07T02:06:54.535Z] RAVEN_BRANCH has been set to 'main' -[2024-03-07T02:06:54.535Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-07T02:06:54.535Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-07T02:06:54.535Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-07T02:06:54.535Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-07T02:06:54.535Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-07T02:06:54.535Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-07T02:06:54.535Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-07T02:06:54.535Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-07T02:06:54.535Z] + git clean -fdx -[2024-03-07T02:06:54.535Z] + ./downloadrepos -[2024-03-07T02:06:54.535Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-07T02:06:54.535Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-07T02:06:54.535Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-07T02:06:54.535Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-07T02:06:54.535Z] FINCH_BRANCH has been set to 'master' -[2024-03-07T02:06:54.535Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-07T02:06:54.535Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-07T02:06:54.535Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-07T02:06:54.535Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-07T02:06:54.535Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-07T02:06:54.535Z] RAVEN_BRANCH has been set to 'main' -[2024-03-07T02:06:54.535Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-07T02:06:54.535Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-07T02:06:54.535Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-07T02:06:54.535Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-07T02:06:54.535Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-07T02:06:54.535Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-07T02:06:54.535Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-07T02:06:54.535Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-07T02:06:54.535Z] + rm -rf pavics-sdi-* -[2024-03-07T02:06:54.535Z] + ls -[2024-03-07T02:06:54.535Z] + grep pavics-sdi -[2024-03-07T02:06:54.535Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-03-07T02:06:54.535Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-07T02:06:54.535Z] + shift -[2024-03-07T02:06:54.535Z] + branch=master -[2024-03-07T02:06:54.535Z] + shift -[2024-03-07T02:06:54.535Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-03-07T02:06:54.535Z] + tar xz -[2024-03-07T02:08:02.171Z] + grep pavics-sdi -[2024-03-07T02:08:02.171Z] + ls -[2024-03-07T02:08:02.171Z] pavics-sdi-master -[2024-03-07T02:08:02.171Z] + set +x -[2024-03-07T02:08:02.171Z] + rm -rf finch-* -[2024-03-07T02:08:02.171Z] + grep finch -[2024-03-07T02:08:02.171Z] + ls -[2024-03-07T02:08:02.171Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-07T02:08:02.171Z] + github_repo=https://github.com/bird-house/finch -[2024-03-07T02:08:02.171Z] + shift -[2024-03-07T02:08:02.171Z] + branch=master -[2024-03-07T02:08:02.171Z] + shift -[2024-03-07T02:08:02.171Z] + tar xz -[2024-03-07T02:08:02.171Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-03-07T02:08:07.443Z] + ls -[2024-03-07T02:08:07.443Z] + grep finch -[2024-03-07T02:08:07.443Z] finch-master -[2024-03-07T02:08:07.443Z] + set +x -[2024-03-07T02:08:07.443Z] + rm -rf PAVICS-landing-* -[2024-03-07T02:08:07.443Z] + ls -[2024-03-07T02:08:07.443Z] + grep PAVICS-landing -[2024-03-07T02:08:07.443Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-03-07T02:08:07.443Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-07T02:08:07.443Z] + shift -[2024-03-07T02:08:07.443Z] + branch=master -[2024-03-07T02:08:07.443Z] + shift -[2024-03-07T02:08:07.443Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-03-07T02:08:07.443Z] + tar xz -[2024-03-07T02:12:14.031Z] + ls -[2024-03-07T02:12:14.031Z] + grep PAVICS-landing -[2024-03-07T02:12:14.031Z] PAVICS-landing-master -[2024-03-07T02:12:14.031Z] + set +x -[2024-03-07T02:12:14.031Z] + rm -rf raven-* -[2024-03-07T02:12:14.031Z] + ls -[2024-03-07T02:12:14.031Z] + grep raven -[2024-03-07T02:12:14.031Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-07T02:12:14.031Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-07T02:12:14.031Z] + shift -[2024-03-07T02:12:14.031Z] + branch=main -[2024-03-07T02:12:14.031Z] + shift -[2024-03-07T02:12:14.031Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-07T02:12:14.031Z] + tar xz -[2024-03-07T02:12:18.212Z] + ls -[2024-03-07T02:12:18.212Z] + grep raven -[2024-03-07T02:12:18.212Z] raven-main -[2024-03-07T02:12:18.212Z] + set +x -[2024-03-07T02:12:18.212Z] + rm -rf RavenPy-* -[2024-03-07T02:12:18.212Z] + ls -[2024-03-07T02:12:18.212Z] + grep RavenPy -[2024-03-07T02:12:18.212Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-07T02:12:18.212Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-07T02:12:18.212Z] + shift -[2024-03-07T02:12:18.212Z] + branch=master -[2024-03-07T02:12:18.212Z] + shift -[2024-03-07T02:12:18.212Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-07T02:12:18.212Z] + tar xz -[2024-03-07T02:12:40.118Z] + ls -[2024-03-07T02:12:40.118Z] + grep RavenPy -[2024-03-07T02:12:40.118Z] RavenPy-master -[2024-03-07T02:12:40.118Z] + set +x -[2024-03-07T02:12:40.118Z] + rm -rf esgf-compute-api-* -[2024-03-07T02:12:40.118Z] + ls -[2024-03-07T02:12:40.118Z] + grep esgf-compute-api -[2024-03-07T02:12:40.118Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-07T02:12:40.118Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-07T02:12:40.118Z] + shift -[2024-03-07T02:12:40.118Z] + branch=devel -[2024-03-07T02:12:40.118Z] + shift -[2024-03-07T02:12:40.118Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-03-07T02:12:40.118Z] + tar xz -[2024-03-07T02:12:40.684Z] + ls -[2024-03-07T02:12:40.684Z] + grep esgf-compute-api -[2024-03-07T02:12:40.684Z] esgf-compute-api-devel -[2024-03-07T02:12:40.684Z] + set +x -[2024-03-07T02:12:40.684Z] + echo master -[2024-03-07T02:12:40.684Z] + sed s@/@-@g -[2024-03-07T02:12:40.684Z] + PAVICS_SDI_BRANCH=master -[2024-03-07T02:12:40.684Z] + echo Ouranosinc/pavics-sdi -[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g -[2024-03-07T02:12:40.684Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-07T02:12:40.684Z] + echo master -[2024-03-07T02:12:40.684Z] + sed s@/@-@g -[2024-03-07T02:12:40.684Z] + FINCH_BRANCH=master -[2024-03-07T02:12:40.684Z] + echo bird-house/finch -[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g -[2024-03-07T02:12:40.684Z] + FINCH_REPO_NAME=finch -[2024-03-07T02:12:40.684Z] + echo master -[2024-03-07T02:12:40.684Z] + sed s@/@-@g -[2024-03-07T02:12:40.684Z] + PAVICS_LANDING_BRANCH=master -[2024-03-07T02:12:40.684Z] + echo Ouranosinc/PAVICS-landing -[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g -[2024-03-07T02:12:40.684Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-07T02:12:40.684Z] + echo main -[2024-03-07T02:12:40.684Z] + sed s@/@-@g -[2024-03-07T02:12:40.684Z] + RAVEN_BRANCH=main -[2024-03-07T02:12:40.684Z] + echo Ouranosinc/raven -[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g -[2024-03-07T02:12:40.684Z] + RAVEN_REPO_NAME=raven -[2024-03-07T02:12:40.684Z] + echo master -[2024-03-07T02:12:40.684Z] + sed s@/@-@g -[2024-03-07T02:12:40.684Z] + RAVENPY_BRANCH=master -[2024-03-07T02:12:40.684Z] + echo CSHS-CWRA/RavenPy -[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g -[2024-03-07T02:12:40.684Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-07T02:12:40.684Z] + echo devel -[2024-03-07T02:12:40.684Z] + sed s@/@-@g -[2024-03-07T02:12:40.684Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-07T02:12:40.684Z] + echo ESGF/esgf-compute-api -[2024-03-07T02:12:40.684Z] + sed s@^.*/@@g -[2024-03-07T02:12:40.684Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-07T02:12:40.684Z] + echo pavics-sdi-master -[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T02:12:40.684Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-03-07T02:12:40.684Z] + echo finch-master -[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T02:12:40.684Z] + FINCH_DIR=finch-master -[2024-03-07T02:12:40.684Z] + + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T02:12:40.684Z] echo PAVICS-landing-master -[2024-03-07T02:12:40.684Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-03-07T02:12:40.684Z] + echo raven-main -[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T02:12:40.684Z] + RAVEN_DIR=raven-main -[2024-03-07T02:12:40.684Z] + echo RavenPy-master -[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T02:12:40.684Z] + RAVENPY_DIR=RavenPy-master -[2024-03-07T02:12:40.684Z] + echo esgf-compute-api-devel -[2024-03-07T02:12:40.684Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T02:12:40.684Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-07T02:12:40.684Z] + echo true -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + VERIFY_SSL=true -[2024-03-07T02:12:40.684Z] + [ xtrue = xfalse ] -[2024-03-07T02:12:40.684Z] + rm -v finch-master/setup.cfg -[2024-03-07T02:12:40.684Z] removed 'finch-master/setup.cfg' -[2024-03-07T02:12:40.684Z] + rm -v raven-main/setup.cfg -[2024-03-07T02:12:40.684Z] removed 'raven-main/setup.cfg' -[2024-03-07T02:12:40.684Z] + rm -v raven-main/pyproject.toml -[2024-03-07T02:12:40.684Z] removed 'raven-main/pyproject.toml' -[2024-03-07T02:12:40.684Z] + rm -v RavenPy-master/setup.cfg -[2024-03-07T02:12:40.684Z] removed 'RavenPy-master/setup.cfg' -[2024-03-07T02:12:40.684Z] + rm -v RavenPy-master/tox.ini -[2024-03-07T02:12:40.684Z] removed 'RavenPy-master/tox.ini' -[2024-03-07T02:12:40.684Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-07T02:12:40.684Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-07T02:12:40.684Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-07T02:12:40.684Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-07T02:12:40.684Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-07T02:12:40.684Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-07T02:12:40.684Z] + echo false -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + TEST_MAGPIE_AUTH=false -[2024-03-07T02:12:40.684Z] + echo true -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + TEST_PAVICS_SDI_REPO=true -[2024-03-07T02:12:40.684Z] + echo false -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-07T02:12:40.684Z] + echo true -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + TEST_FINCH_REPO=true -[2024-03-07T02:12:40.684Z] + echo true -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + TEST_PAVICS_LANDING_REPO=true -[2024-03-07T02:12:40.684Z] + echo false -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + TEST_RAVEN_REPO=false -[2024-03-07T02:12:40.684Z] + echo false -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + TEST_RAVENPY_REPO=false -[2024-03-07T02:12:40.684Z] + echo false -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-07T02:12:40.684Z] + echo true -[2024-03-07T02:12:40.684Z] + tr [:upper:] [:lower:] -[2024-03-07T02:12:40.684Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-03-07T02:12:40.684Z] + NOTEBOOKS_TO_TEST= -[2024-03-07T02:12:40.684Z] + [ xfalse = xtrue ] -[2024-03-07T02:12:40.684Z] + [ xtrue = xtrue ] -[2024-03-07T02:12:40.684Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb -[2024-03-07T02:12:40.684Z] + [ xfalse = xtrue ] -[2024-03-07T02:12:40.684Z] + [ xtrue = xtrue ] -[2024-03-07T02:12:40.684Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-03-07T02:12:40.684Z] + [ xtrue = xtrue ] -[2024-03-07T02:12:40.684Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb -[2024-03-07T02:12:40.684Z] + SETUP_SCRIPT=PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T02:12:40.684Z] + [ -x PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-03-07T02:12:40.684Z] + PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T02:12:40.684Z] + realpath PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T02:12:40.684Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T02:12:40.684Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-07T02:12:40.684Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators -[2024-03-07T02:12:40.684Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-07T02:12:40.684Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-07T02:12:40.684Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-03-07T02:12:40.684Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/output.zip -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:40.947Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.207Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.470Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-07T02:12:41.729Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-03-07T02:12:41.729Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-03-07T02:12:41.729Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-03-07T02:12:41.729Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-master/content/notebooks/climate_indicators/tutorial_data' -[2024-03-07T02:12:41.729Z] + [ xfalse = xtrue ] -[2024-03-07T02:12:41.729Z] + [ xfalse = xtrue ] -[2024-03-07T02:12:41.729Z] + [ xfalse = xtrue ] -[2024-03-07T02:12:41.729Z] + [ xtrue = xtrue ] -[2024-03-07T02:12:41.729Z] + NOTEBOOKS_TO_TEST= pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-07T02:12:41.729Z] + ./runtest pavics-sdi-master/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-07T02:12:41.729Z] + [ -n ] -[2024-03-07T02:12:41.729Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-07T02:12:41.729Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-07T02:12:41.729Z] Will run notebooks against pavics.ouranos.ca -[2024-03-07T02:12:41.729Z] + [ -z ] -[2024-03-07T02:12:41.730Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-03-07T02:12:41.987Z] + git diff -[2024-03-07T02:12:41.987Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-07T02:12:41.988Z] + py.test --nbval pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-03-07T02:12:44.515Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-07T02:12:44.515Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-07T02:12:44.776Z] ============================= test session starts ============================== -[2024-03-07T02:12:44.776Z] platform linux -- Python 3.10.13, pytest-8.0.2, pluggy-1.4.0 -[2024-03-07T02:12:44.776Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-03-07T02:12:44.776Z] plugins: anyio-4.3.0, dash-2.16.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-03-07T02:12:44.776Z] collected 215 items -[2024-03-07T02:12:44.776Z] -[2024-03-07T02:13:17.643Z] pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb ....... [ 3%] -[2024-03-07T02:13:25.935Z] pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb ...... [ 6%] -[2024-03-07T02:13:28.519Z] pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb .FFFFFFF [ 9%] -[2024-03-07T02:20:31.216Z] pavics-sdi-master/docs/source/notebooks/climex.ipynb .....F..F... [ 15%] -[2024-03-07T02:20:35.415Z] pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 15%] -[2024-03-07T02:20:48.091Z] ............... [ 22%] -[2024-03-07T02:20:56.475Z] pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb ..... [ 25%] -[2024-03-07T02:21:08.666Z] pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb ...... [ 27%] -[2024-03-07T02:21:23.536Z] pavics-sdi-master/docs/source/notebooks/forecasts.ipynb ..F... [ 30%] -[2024-03-07T02:22:51.339Z] pavics-sdi-master/docs/source/notebooks/opendap.ipynb ....... [ 33%] -[2024-03-07T02:22:55.827Z] pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb ..... [ 36%] -[2024-03-07T02:23:35.908Z] pavics-sdi-master/docs/source/notebooks/regridding.ipynb ....F..F....... [ 43%] -[2024-03-07T02:24:43.647Z] .....F......F [ 49%] -[2024-03-07T02:24:45.826Z] pavics-sdi-master/docs/source/notebooks/rendering.ipynb .... [ 51%] -[2024-03-07T02:24:48.245Z] pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb ...FFF.F [ 54%] -[2024-03-07T02:24:56.368Z] FF....FFFF.FFFFFF [ 62%] -[2024-03-07T02:25:04.868Z] pavics-sdi-master/docs/source/notebooks/subsetting.ipynb ...... [ 65%] -[2024-03-07T02:25:15.054Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 70%] -[2024-03-07T02:25:24.400Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...F.. [ 73%] -[2024-03-07T02:25:25.385Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 73%] -[2024-03-07T02:25:29.486Z] ...... [ 76%] -[2024-03-07T02:25:51.430Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 77%] -[2024-03-07T02:26:12.152Z] ............. [ 83%] -[2024-03-07T02:26:22.138Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb F [ 83%] -[2024-03-07T02:27:24.396Z] .F..s. [ 86%] -[2024-03-07T02:27:30.965Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 86%] -[2024-03-07T02:27:41.766Z] .F. [ 88%] -[2024-03-07T02:27:51.758Z] PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 88%] -[2024-03-07T02:28:17.247Z] .F.... [ 91%] -[2024-03-07T02:28:20.165Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-03-07T02:30:53.825Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-03-07T02:30:53.825Z] -[2024-03-07T02:30:53.825Z] =================================== FAILURES =================================== -[2024-03-07T02:30:53.825Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 1 _______ -[2024-03-07T02:30:53.825Z] Notebook cell execution failed -[2024-03-07T02:30:53.825Z] Cell 1: Cell execution caused an exception -[2024-03-07T02:30:53.825Z] -[2024-03-07T02:30:53.825Z] Input: -[2024-03-07T02:30:53.825Z] wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") -[2024-03-07T02:30:53.825Z] print("Title: ", wms.identification.title) -[2024-03-07T02:30:53.825Z] print("Type: ", wms.identification.type) -[2024-03-07T02:30:53.825Z] print("Operations: ", [op.name for op in wms.operations]) -[2024-03-07T02:30:53.825Z] print("GetMap options: ", wms.getOperationByName("GetMap").formatOptions) -[2024-03-07T02:30:53.825Z] wms.contents.keys() -[2024-03-07T02:30:53.825Z] -[2024-03-07T02:30:53.825Z] Traceback: -[2024-03-07T02:30:53.825Z] -[2024-03-07T02:30:53.825Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.825Z] HTTPError Traceback (most recent call last) -[2024-03-07T02:30:53.825Z] Cell In[1], line 1 -[2024-03-07T02:30:53.825Z] ----> 1 wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") -[2024-03-07T02:30:53.825Z]  2 print("Title: ", wms.identification.title) -[2024-03-07T02:30:53.825Z]  3 print("Type: ", wms.identification.type) -[2024-03-07T02:30:53.825Z] -[2024-03-07T02:30:53.825Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/wms.py:50, in WebMapService(url, version, xml, username, password, parse_remote_metadata, timeout, headers, auth) -[2024-03-07T02:30:53.825Z]  47 clean_url = clean_ows_url(url) -[2024-03-07T02:30:53.825Z]  49 if version in ['1.1.1']: -[2024-03-07T02:30:53.825Z] ---> 50 return wms111.WebMapService_1_1_1( -[2024-03-07T02:30:53.826Z]  51  clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, -[2024-03-07T02:30:53.826Z]  52  timeout=timeout, headers=headers, auth=auth) -[2024-03-07T02:30:53.826Z]  53 elif version in ['1.3.0']: -[2024-03-07T02:30:53.826Z]  54 return wms130.WebMapService_1_3_0( -[2024-03-07T02:30:53.826Z]  55 clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, -[2024-03-07T02:30:53.826Z]  56 timeout=timeout, headers=headers, auth=auth) -[2024-03-07T02:30:53.826Z] -[2024-03-07T02:30:53.826Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/wms111.py:75, in WebMapService_1_1_1.__init__(self, url, version, xml, username, password, parse_remote_metadata, headers, timeout, auth) -[2024-03-07T02:30:53.826Z]  73 self._capabilities = reader.readString(xml) -[2024-03-07T02:30:53.826Z]  74 else: # read from server -[2024-03-07T02:30:53.826Z] ---> 75 self._capabilities = reader.read(self.url, timeout=self.timeout) -[2024-03-07T02:30:53.826Z]  77 self.request = reader.request -[2024-03-07T02:30:53.826Z]  79 # avoid building capabilities metadata if the -[2024-03-07T02:30:53.826Z]  80 # response is a ServiceExceptionReport -[2024-03-07T02:30:53.826Z] -[2024-03-07T02:30:53.826Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/common.py:65, in WMSCapabilitiesReader.read(self, service_url, timeout) -[2024-03-07T02:30:53.826Z]  63 # now split it up again to use the generic openURL function... -[2024-03-07T02:30:53.826Z]  64 spliturl = self.request.split('?') -[2024-03-07T02:30:53.826Z] ---> 65 u = openURL(spliturl[0], spliturl[1], method='Get', -[2024-03-07T02:30:53.826Z]  66  timeout=timeout, headers=self.headers, auth=self.auth) -[2024-03-07T02:30:53.826Z]  68 raw_text = strip_bom(u.read()) -[2024-03-07T02:30:53.826Z]  69 return etree.fromstring(raw_text) -[2024-03-07T02:30:53.826Z] -[2024-03-07T02:30:53.826Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/util.py:214, in openURL(url_base, data, method, cookies, username, password, timeout, headers, verify, cert, auth) -[2024-03-07T02:30:53.826Z]  211 raise ServiceException(req.text) -[2024-03-07T02:30:53.826Z]  213 if req.status_code in [404, 500, 502, 503, 504]: # add more if needed -[2024-03-07T02:30:53.826Z] --> 214 req.raise_for_status() -[2024-03-07T02:30:53.826Z]  216 # check for service exceptions without the http header set -[2024-03-07T02:30:53.826Z]  217 if 'Content-Type' in req.headers and \ -[2024-03-07T02:30:53.826Z]  218 req.headers['Content-Type'] in ['text/xml', 'application/xml', 'application/vnd.ogc.se_xml']: -[2024-03-07T02:30:53.826Z]  219 # just in case 400 headers were not set, going to have to read the xml to see if it's an exception report. -[2024-03-07T02:30:53.826Z] -[2024-03-07T02:30:53.826Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/models.py:1021, in Response.raise_for_status(self) -[2024-03-07T02:30:53.826Z]  1016 http_error_msg = ( -[2024-03-07T02:30:53.826Z]  1017 f"{self.status_code} Server Error: {reason} for url: {self.url}" -[2024-03-07T02:30:53.826Z]  1018 ) -[2024-03-07T02:30:53.826Z]  1020 if http_error_msg: -[2024-03-07T02:30:53.826Z] -> 1021 raise HTTPError(http_error_msg, response=self) -[2024-03-07T02:30:53.826Z] -[2024-03-07T02:30:53.826Z] HTTPError: 500 Server Error: Internal Server Error for url: https://neo.gsfc.nasa.gov/wms/wms?service=WMS&request=GetCapabilities&version=1.1.1 -[2024-03-07T02:30:53.826Z] -[2024-03-07T02:30:53.826Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 2 _______ -[2024-03-07T02:30:53.826Z] Notebook cell execution failed -[2024-03-07T02:30:53.826Z] Cell 2: Cell execution caused an exception -[2024-03-07T02:30:53.826Z] -[2024-03-07T02:30:53.826Z] Input: -[2024-03-07T02:30:53.826Z] for key in [ -[2024-03-07T02:30:53.826Z] "MOD14A1_M_FIRE", -[2024-03-07T02:30:53.826Z] "CERES_LWFLUX_M", -[2024-03-07T02:30:53.826Z] "ICESAT_ELEV_G", -[2024-03-07T02:30:53.826Z] "MODAL2_M_CLD_WP", -[2024-03-07T02:30:53.826Z] "MOD_143D_RR", -[2024-03-07T02:30:53.826Z] ]: -[2024-03-07T02:30:53.826Z] print(wms.contents[key].title) -[2024-03-07T02:30:53.826Z] -[2024-03-07T02:30:53.826Z] Traceback: -[2024-03-07T02:30:53.826Z] -[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.827Z] Cell In[1], line 8 -[2024-03-07T02:30:53.827Z]  1 for key in [ -[2024-03-07T02:30:53.827Z]  2 "MOD14A1_M_FIRE", -[2024-03-07T02:30:53.827Z]  3 "CERES_LWFLUX_M", -[2024-03-07T02:30:53.827Z]  (...) -[2024-03-07T02:30:53.827Z]  6 "MOD_143D_RR", -[2024-03-07T02:30:53.827Z]  7 ]: -[2024-03-07T02:30:53.827Z] ----> 8 print(wms.contents[key].title) -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] NameError: name 'wms' is not defined -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 3 _______ -[2024-03-07T02:30:53.827Z] Notebook cell execution failed -[2024-03-07T02:30:53.827Z] Cell 3: Cell execution caused an exception -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] Input: -[2024-03-07T02:30:53.827Z] # NBVAL_IGNORE_OUTPUT -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] from IPython.core.display import HTML -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] name = "MOD_143D_RR" -[2024-03-07T02:30:53.827Z] layer = wms.contents[name] -[2024-03-07T02:30:53.827Z] print("Abstract: ", layer.abstract) -[2024-03-07T02:30:53.827Z] print("BBox: ", layer.boundingBoxWGS84) -[2024-03-07T02:30:53.827Z] print("CRS: ", layer.crsOptions) -[2024-03-07T02:30:53.827Z] print("Styles: ", layer.styles) -[2024-03-07T02:30:53.827Z] print("Timestamps: ", layer.timepositions) -[2024-03-07T02:30:53.827Z] HTML(layer.parent.abstract) -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] Traceback: -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.827Z] Cell In[1], line 6 -[2024-03-07T02:30:53.827Z]  3 from IPython.core.display import HTML -[2024-03-07T02:30:53.827Z]  5 name = "MOD_143D_RR" -[2024-03-07T02:30:53.827Z] ----> 6 layer = wms.contents[name] -[2024-03-07T02:30:53.827Z]  7 print("Abstract: ", layer.abstract) -[2024-03-07T02:30:53.827Z]  8 print("BBox: ", layer.boundingBoxWGS84) -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] NameError: name 'wms' is not defined -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 4 _______ -[2024-03-07T02:30:53.827Z] Notebook cell execution failed -[2024-03-07T02:30:53.827Z] Cell 4: Cell execution caused an exception -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] Input: -[2024-03-07T02:30:53.827Z] response = wms.getmap( -[2024-03-07T02:30:53.827Z] layers=[ -[2024-03-07T02:30:53.827Z] name, -[2024-03-07T02:30:53.827Z] ], -[2024-03-07T02:30:53.827Z] styles=["rgb"], -[2024-03-07T02:30:53.827Z] bbox=(-180, -90, 180, 90), # Left, bottom, right, top -[2024-03-07T02:30:53.827Z] format="image/png", -[2024-03-07T02:30:53.827Z] size=(600, 600), -[2024-03-07T02:30:53.827Z] srs="EPSG:4326", -[2024-03-07T02:30:53.827Z] time="2018-09-16", -[2024-03-07T02:30:53.827Z] transparent=True, -[2024-03-07T02:30:53.827Z] ) -[2024-03-07T02:30:53.827Z] response -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] Traceback: -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.827Z] Cell In[1], line 1 -[2024-03-07T02:30:53.827Z] ----> 1 response = wms.getmap( -[2024-03-07T02:30:53.827Z]  2 layers=[ -[2024-03-07T02:30:53.827Z]  3 name, -[2024-03-07T02:30:53.827Z]  4 ], -[2024-03-07T02:30:53.827Z]  5 styles=["rgb"], -[2024-03-07T02:30:53.827Z]  6 bbox=(-180, -90, 180, 90), # Left, bottom, right, top -[2024-03-07T02:30:53.827Z]  7 format="image/png", -[2024-03-07T02:30:53.827Z]  8 size=(600, 600), -[2024-03-07T02:30:53.827Z]  9 srs="EPSG:4326", -[2024-03-07T02:30:53.827Z]  10 time="2018-09-16", -[2024-03-07T02:30:53.827Z]  11 transparent=True, -[2024-03-07T02:30:53.827Z]  12 ) -[2024-03-07T02:30:53.827Z]  13 response -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] NameError: name 'wms' is not defined -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 5 _______ -[2024-03-07T02:30:53.827Z] Notebook cell execution failed -[2024-03-07T02:30:53.827Z] Cell 5: Cell execution caused an exception -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] Input: -[2024-03-07T02:30:53.827Z] from IPython.display import Image -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] Image(response.read()) -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] Traceback: -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.827Z] Cell In[1], line 3 -[2024-03-07T02:30:53.827Z]  1 from IPython.display import Image -[2024-03-07T02:30:53.827Z] ----> 3 Image(response.read()) -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] NameError: name 'response' is not defined -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 6 _______ -[2024-03-07T02:30:53.827Z] Notebook cell execution failed -[2024-03-07T02:30:53.827Z] Cell 6: Cell execution caused an exception -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] Input: -[2024-03-07T02:30:53.827Z] import io -[2024-03-07T02:30:53.827Z] import warnings -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] import cartopy -[2024-03-07T02:30:53.827Z] import matplotlib.pyplot as plt -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] image = io.BytesIO(response.read()) -[2024-03-07T02:30:53.827Z] data = plt.imread(image) -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] Traceback: -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.827Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.827Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.827Z] Cell In[1], line 7 -[2024-03-07T02:30:53.827Z]  4 import cartopy -[2024-03-07T02:30:53.827Z]  5 import matplotlib.pyplot as plt -[2024-03-07T02:30:53.827Z] ----> 7 image = io.BytesIO(response.read()) -[2024-03-07T02:30:53.827Z]  8 data = plt.imread(image) -[2024-03-07T02:30:53.827Z] -[2024-03-07T02:30:53.828Z] NameError: name 'response' is not defined -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] ______ pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 7 _______ -[2024-03-07T02:30:53.828Z] Notebook cell execution failed -[2024-03-07T02:30:53.828Z] Cell 7: Cell execution caused an exception -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Input: -[2024-03-07T02:30:53.828Z] warnings.filterwarnings("ignore", category=cartopy.io.DownloadWarning) -[2024-03-07T02:30:53.828Z] fig = plt.figure(figsize=(8, 6)) -[2024-03-07T02:30:53.828Z] ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) -[2024-03-07T02:30:53.828Z] ax.imshow( -[2024-03-07T02:30:53.828Z] data, -[2024-03-07T02:30:53.828Z] origin="upper", -[2024-03-07T02:30:53.828Z] extent=(-180, 180, -90, 90), -[2024-03-07T02:30:53.828Z] transform=cartopy.crs.PlateCarree(), -[2024-03-07T02:30:53.828Z] ) -[2024-03-07T02:30:53.828Z] ax.coastlines() -[2024-03-07T02:30:53.828Z] plt.show() -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Traceback: -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.828Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.828Z] Cell In[1], line 5 -[2024-03-07T02:30:53.828Z]  2 fig = plt.figure(figsize=(8, 6)) -[2024-03-07T02:30:53.828Z]  3 ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) -[2024-03-07T02:30:53.828Z]  4 ax.imshow( -[2024-03-07T02:30:53.828Z] ----> 5 data, -[2024-03-07T02:30:53.828Z]  6 origin="upper", -[2024-03-07T02:30:53.828Z]  7 extent=(-180, 180, -90, 90), -[2024-03-07T02:30:53.828Z]  8 transform=cartopy.crs.PlateCarree(), -[2024-03-07T02:30:53.828Z]  9 ) -[2024-03-07T02:30:53.828Z]  10 ax.coastlines() -[2024-03-07T02:30:53.828Z]  11 plt.show() -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] NameError: name 'data' is not defined -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] _________ pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 5 _________ -[2024-03-07T02:30:53.828Z] Notebook cell execution failed -[2024-03-07T02:30:53.828Z] Cell 5: Cell outputs differ -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Input: -[2024-03-07T02:30:53.828Z] ds = xr.open_dataset( -[2024-03-07T02:30:53.828Z] url, chunks=dict(realization=1, time=365, rlat=50 * 3, rlon=50 * 3) -[2024-03-07T02:30:53.828Z] ) -[2024-03-07T02:30:53.828Z] xclim.set_options(check_missing="pct", missing_options={"pct": {"tolerance": 0.05}}) -[2024-03-07T02:30:53.828Z] sdii = xclim.atmos.daily_pr_intensity(pr=ds.pr.sel(time="2000")) -[2024-03-07T02:30:53.828Z] sdii -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Traceback: -[2024-03-07T02:30:53.828Z] Unexpected output fields from running code: {'stderr'} -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] _________ pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 8 _________ -[2024-03-07T02:30:53.828Z] Notebook cell execution failed -[2024-03-07T02:30:53.828Z] Cell 8: Cell outputs differ -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Input: -[2024-03-07T02:30:53.828Z] # Subset over the Montreal gridpoint -[2024-03-07T02:30:53.828Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) -[2024-03-07T02:30:53.828Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) -[2024-03-07T02:30:53.828Z] print("Input dataset for Montreal :") -[2024-03-07T02:30:53.828Z] display(pt) -[2024-03-07T02:30:53.828Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") -[2024-03-07T02:30:53.828Z] print("Maximim 1-day precipitation `lazy` output ..") -[2024-03-07T02:30:53.828Z] out -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Traceback: -[2024-03-07T02:30:53.828Z] Unexpected output fields from running code: {'stderr'} -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] _______ pavics-sdi-master/docs/source/notebooks/forecasts.ipynb::Cell 2 ________ -[2024-03-07T02:30:53.828Z] Notebook cell execution failed -[2024-03-07T02:30:53.828Z] Cell 2: Cell outputs differ -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Input: -[2024-03-07T02:30:53.828Z] import hvplot.xarray -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] mtl = ds.sel(lon=45.5, lat=360 - 73.5, method="nearest") -[2024-03-07T02:30:53.828Z] mtl.pr.hvplot(x="time", width=300) + mtl.tas.hvplot(x="time", width=300) -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Traceback: -[2024-03-07T02:30:53.828Z] dissimilar number of outputs for key "application/vnd.holoviews_exec.v0+json"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] ============ disagrees with newly computed (test) output: -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] >>>>>>>>>>>> -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] _______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 4 _______ -[2024-03-07T02:30:53.828Z] Notebook cell execution failed -[2024-03-07T02:30:53.828Z] Cell 4: Cell outputs differ -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Input: -[2024-03-07T02:30:53.828Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) -[2024-03-07T02:30:53.828Z] plt.title("Target regular grid"); -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Traceback: -[2024-03-07T02:30:53.828Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-07T02:30:53.828Z]
-[2024-03-07T02:30:53.828Z] ============ disagrees with newly computed (test) output: -[2024-03-07T02:30:53.828Z] Text(0.5, 1.0, 'Target regular grid') -[2024-03-07T02:30:53.828Z]
-[2024-03-07T02:30:53.828Z] >>>>>>>>>>>> -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] _______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 7 _______ -[2024-03-07T02:30:53.828Z] Notebook cell execution failed -[2024-03-07T02:30:53.828Z] Cell 7: Cell outputs differ -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Input: -[2024-03-07T02:30:53.828Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. -[2024-03-07T02:30:53.828Z] warnings.filterwarnings("ignore", category=FutureWarning) -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] # Apply the regridding weights to the input sea ice concentration data -[2024-03-07T02:30:53.828Z] sic_bil = reg_bil(ds_in.siconc) -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] # Plot the results -[2024-03-07T02:30:53.828Z] sic_bil.isel(time=0).plot(cmap=cmap) -[2024-03-07T02:30:53.828Z] plt.title("Regridded sic data (Jan 2020)"); -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Traceback: -[2024-03-07T02:30:53.828Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-07T02:30:53.828Z]
-[2024-03-07T02:30:53.828Z] ============ disagrees with newly computed (test) output: -[2024-03-07T02:30:53.828Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') -[2024-03-07T02:30:53.828Z]
-[2024-03-07T02:30:53.828Z] >>>>>>>>>>>> -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] ______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 20 _______ -[2024-03-07T02:30:53.828Z] Notebook cell execution failed -[2024-03-07T02:30:53.828Z] Cell 20: Cell outputs differ -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] Input: -[2024-03-07T02:30:53.828Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") -[2024-03-07T02:30:53.828Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) -[2024-03-07T02:30:53.828Z] -[2024-03-07T02:30:53.828Z] fig, ax = plt.subplots(figsize=(6, 4)) -[2024-03-07T02:30:53.828Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) -[2024-03-07T02:30:53.828Z] ax.set_xlim(210, 320) -[2024-03-07T02:30:53.828Z] ax.set_ylim(38, 86) -[2024-03-07T02:30:53.828Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") -[2024-03-07T02:30:53.828Z] ax.annotate( -[2024-03-07T02:30:53.829Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", -[2024-03-07T02:30:53.829Z] (280, 40), -[2024-03-07T02:30:53.829Z] xytext=(1.3, 0.3), -[2024-03-07T02:30:53.829Z] xycoords="data", -[2024-03-07T02:30:53.829Z] textcoords="axes fraction", -[2024-03-07T02:30:53.829Z] fontsize="x-large", -[2024-03-07T02:30:53.829Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), -[2024-03-07T02:30:53.829Z] ); -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] Traceback: -[2024-03-07T02:30:53.829Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-07T02:30:53.829Z]
-[2024-03-07T02:30:53.829Z] ============ disagrees with newly computed (test) output: -[2024-03-07T02:30:53.829Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') -[2024-03-07T02:30:53.829Z]
-[2024-03-07T02:30:53.829Z] >>>>>>>>>>>> -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] ______ pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 27 _______ -[2024-03-07T02:30:53.829Z] Notebook cell execution failed -[2024-03-07T02:30:53.829Z] Cell 27: Cell outputs differ -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] Input: -[2024-03-07T02:30:53.829Z] # Now we can plot easily the results as a choropleth map! -[2024-03-07T02:30:53.829Z] ax = shapes_data.plot( -[2024-03-07T02:30:53.829Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} -[2024-03-07T02:30:53.829Z] ) -[2024-03-07T02:30:53.829Z] ax.set_ylabel("Latitude") -[2024-03-07T02:30:53.829Z] ax.set_xlabel("Longitude"); -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] Traceback: -[2024-03-07T02:30:53.829Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-07T02:30:53.829Z]
-[2024-03-07T02:30:53.829Z] ============ disagrees with newly computed (test) output: -[2024-03-07T02:30:53.829Z] Text(0.5, 91.20243008191655, 'Longitude') -[2024-03-07T02:30:53.829Z]
-[2024-03-07T02:30:53.829Z] >>>>>>>>>>>> -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 3 ____ -[2024-03-07T02:30:53.829Z] Notebook cell execution failed -[2024-03-07T02:30:53.829Z] Cell 3: Cell execution caused an exception -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] Input: -[2024-03-07T02:30:53.829Z] leaflet_map = ipyleaflet.Map( -[2024-03-07T02:30:53.829Z] center=canada_center_lat_lon, -[2024-03-07T02:30:53.829Z] basemap=ipyleaflet.basemaps.Stamen.Terrain, -[2024-03-07T02:30:53.829Z] zoom=4, -[2024-03-07T02:30:53.829Z] ) -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] initial_marker_location = canada_center_lat_lon -[2024-03-07T02:30:53.829Z] marker = ipyleaflet.Marker(location=initial_marker_location, draggable=True) -[2024-03-07T02:30:53.829Z] leaflet_map.add_layer(marker) -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] leaflet_map -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] Traceback: -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.829Z] KeyError Traceback (most recent call last) -[2024-03-07T02:30:53.829Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:44, in Bunch.__getattr__(self, key) -[2024-03-07T02:30:53.829Z]  43 try: -[2024-03-07T02:30:53.829Z] ---> 44 return self.__getitem__(key) -[2024-03-07T02:30:53.829Z]  45 except KeyError as err: -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] KeyError: 'Stamen' -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] The above exception was the direct cause of the following exception: -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] AttributeError Traceback (most recent call last) -[2024-03-07T02:30:53.829Z] Cell In[1], line 3 -[2024-03-07T02:30:53.829Z]  1 leaflet_map = ipyleaflet.Map( -[2024-03-07T02:30:53.829Z]  2 center=canada_center_lat_lon, -[2024-03-07T02:30:53.829Z] ----> 3 basemap=ipyleaflet.basemaps.Stamen.Terrain, -[2024-03-07T02:30:53.829Z]  4 zoom=4, -[2024-03-07T02:30:53.829Z]  5 ) -[2024-03-07T02:30:53.829Z]  7 initial_marker_location = canada_center_lat_lon -[2024-03-07T02:30:53.829Z]  8 marker = ipyleaflet.Marker(location=initial_marker_location, draggable=True) -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:46, in Bunch.__getattr__(self, key) -[2024-03-07T02:30:53.829Z]  44 return self.__getitem__(key) -[2024-03-07T02:30:53.829Z]  45 except KeyError as err: -[2024-03-07T02:30:53.829Z] ---> 46 raise AttributeError(key) from err -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] AttributeError: Stamen -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 4 ____ -[2024-03-07T02:30:53.829Z] Notebook cell execution failed -[2024-03-07T02:30:53.829Z] Cell 4: Cell execution caused an exception -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] Input: -[2024-03-07T02:30:53.829Z] marker.location = (45.55, -72.44) -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] Traceback: -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.829Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.829Z] Cell In[1], line 1 -[2024-03-07T02:30:53.829Z] ----> 1 marker.location = (45.55, -72.44) -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] NameError: name 'marker' is not defined -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 5 ____ -[2024-03-07T02:30:53.829Z] Notebook cell execution failed -[2024-03-07T02:30:53.829Z] Cell 5: Cell execution caused an exception -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] Input: -[2024-03-07T02:30:53.829Z] print(initial_marker_location) -[2024-03-07T02:30:53.829Z] print(marker.location) -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] Traceback: -[2024-03-07T02:30:53.829Z] -[2024-03-07T02:30:53.829Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.829Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.829Z] Cell In[1], line 1 -[2024-03-07T02:30:53.829Z] ----> 1 print(initial_marker_location) -[2024-03-07T02:30:53.829Z]  2 print(marker.location) -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] NameError: name 'initial_marker_location' is not defined -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 7 ____ -[2024-03-07T02:30:53.830Z] Notebook cell execution failed -[2024-03-07T02:30:53.830Z] Cell 7: Cell execution caused an exception -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] Input: -[2024-03-07T02:30:53.830Z] # NBVAL_IGNORE_OUTPUT -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] rectangle = get_rectangle() -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] Traceback: -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.830Z] KeyError Traceback (most recent call last) -[2024-03-07T02:30:53.830Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:44, in Bunch.__getattr__(self, key) -[2024-03-07T02:30:53.830Z]  43 try: -[2024-03-07T02:30:53.830Z] ---> 44 return self.__getitem__(key) -[2024-03-07T02:30:53.830Z]  45 except KeyError as err: -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] KeyError: 'Stamen' -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] The above exception was the direct cause of the following exception: -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] AttributeError Traceback (most recent call last) -[2024-03-07T02:30:53.830Z] Cell In[1], line 4 -[2024-03-07T02:30:53.830Z]  1 # NBVAL_IGNORE_OUTPUT -[2024-03-07T02:30:53.830Z] ----> 4 rectangle = get_rectangle() -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] Cell In[1], line 10, in get_rectangle() -[2024-03-07T02:30:53.830Z]  6 def get_rectangle(): -[2024-03-07T02:30:53.830Z]  7 canada_center = (52.4292, -93.2959) -[2024-03-07T02:30:53.830Z]  8 m = ipyleaflet.Map( -[2024-03-07T02:30:53.830Z]  9 center=canada_center, -[2024-03-07T02:30:53.830Z] ---> 10 basemap=ipyleaflet.basemaps.Stamen.Terrain, -[2024-03-07T02:30:53.830Z]  11 zoom=4, -[2024-03-07T02:30:53.830Z]  12 ) -[2024-03-07T02:30:53.830Z]  14 # Create a new draw control -[2024-03-07T02:30:53.830Z]  15 draw_control = ipyleaflet.DrawControl() -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xyzservices/lib.py:46, in Bunch.__getattr__(self, key) -[2024-03-07T02:30:53.830Z]  44 return self.__getitem__(key) -[2024-03-07T02:30:53.830Z]  45 except KeyError as err: -[2024-03-07T02:30:53.830Z] ---> 46 raise AttributeError(key) from err -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] AttributeError: Stamen -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 8 ____ -[2024-03-07T02:30:53.830Z] Notebook cell execution failed -[2024-03-07T02:30:53.830Z] Cell 8: Cell execution caused an exception -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] Input: -[2024-03-07T02:30:53.830Z] # GeoJSON with custom style properties -[2024-03-07T02:30:53.830Z] if not len(rectangle): -[2024-03-07T02:30:53.830Z] # Use the default region of Greater Montreal Area -[2024-03-07T02:30:53.830Z] rectangle = { -[2024-03-07T02:30:53.830Z] "type": "Feature", -[2024-03-07T02:30:53.830Z] "properties": { -[2024-03-07T02:30:53.830Z] "style": { -[2024-03-07T02:30:53.830Z] "stroke": True, -[2024-03-07T02:30:53.830Z] "color": "#4ae", -[2024-03-07T02:30:53.830Z] "weight": 4, -[2024-03-07T02:30:53.830Z] "opacity": 0.5, -[2024-03-07T02:30:53.830Z] "fill": True, -[2024-03-07T02:30:53.830Z] "fillColor": "#4ae", -[2024-03-07T02:30:53.830Z] "fillOpacity": 0.3, -[2024-03-07T02:30:53.830Z] "clickable": True, -[2024-03-07T02:30:53.830Z] } -[2024-03-07T02:30:53.830Z] }, -[2024-03-07T02:30:53.830Z] "geometry": { -[2024-03-07T02:30:53.830Z] "type": "Polygon", -[2024-03-07T02:30:53.830Z] "coordinates": [ -[2024-03-07T02:30:53.830Z] [ -[2024-03-07T02:30:53.830Z] [-74.511948, 45.202296], -[2024-03-07T02:30:53.830Z] [-74.511948, 45.934852], -[2024-03-07T02:30:53.830Z] [-72.978537, 45.934852], -[2024-03-07T02:30:53.830Z] [-72.978537, 45.202296], -[2024-03-07T02:30:53.830Z] [-74.511948, 45.202296], -[2024-03-07T02:30:53.830Z] ] -[2024-03-07T02:30:53.830Z] ], -[2024-03-07T02:30:53.830Z] }, -[2024-03-07T02:30:53.830Z] } -[2024-03-07T02:30:53.830Z] rectangle -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] Traceback: -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.830Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.830Z] Cell In[1], line 2 -[2024-03-07T02:30:53.830Z]  1 # GeoJSON with custom style properties -[2024-03-07T02:30:53.830Z] ----> 2 if not len(rectangle): -[2024-03-07T02:30:53.830Z]  3 # Use the default region of Greater Montreal Area -[2024-03-07T02:30:53.830Z]  4 rectangle = { -[2024-03-07T02:30:53.830Z]  5 "type": "Feature", -[2024-03-07T02:30:53.830Z]  6 "properties": { -[2024-03-07T02:30:53.830Z]  (...) -[2024-03-07T02:30:53.830Z]  29 }, -[2024-03-07T02:30:53.830Z]  30 } -[2024-03-07T02:30:53.830Z]  31 rectangle -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] NameError: name 'rectangle' is not defined -[2024-03-07T02:30:53.830Z] -[2024-03-07T02:30:53.830Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 9 ____ -[2024-03-07T02:30:53.830Z] Notebook cell execution failed -[2024-03-07T02:30:53.831Z] Cell 9: Cell execution caused an exception -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Input: -[2024-03-07T02:30:53.831Z] import geopandas as gpd -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] rect = gpd.GeoDataFrame.from_features([rectangle]) -[2024-03-07T02:30:53.831Z] bounds = rect.bounds -[2024-03-07T02:30:53.831Z] bounds -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Traceback: -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.831Z] Cell In[1], line 3 -[2024-03-07T02:30:53.831Z]  1 import geopandas as gpd -[2024-03-07T02:30:53.831Z] ----> 3 rect = gpd.GeoDataFrame.from_features([rectangle]) -[2024-03-07T02:30:53.831Z]  4 bounds = rect.bounds -[2024-03-07T02:30:53.831Z]  5 bounds -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] NameError: name 'rectangle' is not defined -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 14 ___ -[2024-03-07T02:30:53.831Z] Notebook cell execution failed -[2024-03-07T02:30:53.831Z] Cell 14: Cell execution caused an exception -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Input: -[2024-03-07T02:30:53.831Z] lon0 = float(bounds.minx) -[2024-03-07T02:30:53.831Z] lon1 = float(bounds.maxx) -[2024-03-07T02:30:53.831Z] lat0 = float(bounds.miny) -[2024-03-07T02:30:53.831Z] lat1 = float(bounds.maxy) -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] result_tasmin = finch.subset_bbox( -[2024-03-07T02:30:53.831Z] resource=data, -[2024-03-07T02:30:53.831Z] variable="tasmin", -[2024-03-07T02:30:53.831Z] lon0=lon0, -[2024-03-07T02:30:53.831Z] lon1=lon1, -[2024-03-07T02:30:53.831Z] lat0=lat0, -[2024-03-07T02:30:53.831Z] lat1=lat1, -[2024-03-07T02:30:53.831Z] start_date="1958-01-01", -[2024-03-07T02:30:53.831Z] end_date="1958-12-31", -[2024-03-07T02:30:53.831Z] ) -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Traceback: -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.831Z] Cell In[1], line 1 -[2024-03-07T02:30:53.831Z] ----> 1 lon0 = float(bounds.minx) -[2024-03-07T02:30:53.831Z]  2 lon1 = float(bounds.maxx) -[2024-03-07T02:30:53.831Z]  3 lat0 = float(bounds.miny) -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] NameError: name 'bounds' is not defined -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 15 ___ -[2024-03-07T02:30:53.831Z] Notebook cell execution failed -[2024-03-07T02:30:53.831Z] Cell 15: Cell execution caused an exception -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Input: -[2024-03-07T02:30:53.831Z] # NBVAL_IGNORE_OUTPUT -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] # wait for process to complete before running this cell (the process is async) -[2024-03-07T02:30:53.831Z] tasmin_subset = result_tasmin.get().output -[2024-03-07T02:30:53.831Z] tasmin_subset -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Traceback: -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.831Z] Cell In[1], line 4 -[2024-03-07T02:30:53.831Z]  1 # NBVAL_IGNORE_OUTPUT -[2024-03-07T02:30:53.831Z]  2 -[2024-03-07T02:30:53.831Z]  3 # wait for process to complete before running this cell (the process is async) -[2024-03-07T02:30:53.831Z] ----> 4 tasmin_subset = result_tasmin.get().output -[2024-03-07T02:30:53.831Z]  5 tasmin_subset -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] NameError: name 'result_tasmin' is not defined -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 16 ___ -[2024-03-07T02:30:53.831Z] Notebook cell execution failed -[2024-03-07T02:30:53.831Z] Cell 16: Cell execution caused an exception -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Input: -[2024-03-07T02:30:53.831Z] result_tasmax = finch.subset_bbox( -[2024-03-07T02:30:53.831Z] resource=data, -[2024-03-07T02:30:53.831Z] variable="tasmax", -[2024-03-07T02:30:53.831Z] lon0=lon0, -[2024-03-07T02:30:53.831Z] lon1=lon1, -[2024-03-07T02:30:53.831Z] lat0=lat0, -[2024-03-07T02:30:53.831Z] lat1=lat1, -[2024-03-07T02:30:53.831Z] start_date="1958-01-01", -[2024-03-07T02:30:53.831Z] end_date="1958-12-31", -[2024-03-07T02:30:53.831Z] ) -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Traceback: -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.831Z] Cell In[1], line 4 -[2024-03-07T02:30:53.831Z]  1 result_tasmax = finch.subset_bbox( -[2024-03-07T02:30:53.831Z]  2 resource=data, -[2024-03-07T02:30:53.831Z]  3 variable="tasmax", -[2024-03-07T02:30:53.831Z] ----> 4 lon0=lon0, -[2024-03-07T02:30:53.831Z]  5 lon1=lon1, -[2024-03-07T02:30:53.831Z]  6 lat0=lat0, -[2024-03-07T02:30:53.831Z]  7 lat1=lat1, -[2024-03-07T02:30:53.831Z]  8 start_date="1958-01-01", -[2024-03-07T02:30:53.831Z]  9 end_date="1958-12-31", -[2024-03-07T02:30:53.831Z]  10 ) -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] NameError: name 'lon0' is not defined -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 17 ___ -[2024-03-07T02:30:53.831Z] Notebook cell execution failed -[2024-03-07T02:30:53.831Z] Cell 17: Cell execution caused an exception -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Input: -[2024-03-07T02:30:53.831Z] # NBVAL_IGNORE_OUTPUT -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] # wait for process to complete before running this cell (the process is async) -[2024-03-07T02:30:53.831Z] tasmax_subset = result_tasmax.get().output -[2024-03-07T02:30:53.831Z] tasmax_subset -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Traceback: -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.831Z] Cell In[1], line 4 -[2024-03-07T02:30:53.831Z]  1 # NBVAL_IGNORE_OUTPUT -[2024-03-07T02:30:53.831Z]  2 -[2024-03-07T02:30:53.831Z]  3 # wait for process to complete before running this cell (the process is async) -[2024-03-07T02:30:53.831Z] ----> 4 tasmax_subset = result_tasmax.get().output -[2024-03-07T02:30:53.831Z]  5 tasmax_subset -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] NameError: name 'result_tasmax' is not defined -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 19 ___ -[2024-03-07T02:30:53.831Z] Notebook cell execution failed -[2024-03-07T02:30:53.831Z] Cell 19: Cell execution caused an exception -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Input: -[2024-03-07T02:30:53.831Z] result = finch.heat_wave_frequency( -[2024-03-07T02:30:53.831Z] tasmin=tasmin_subset, -[2024-03-07T02:30:53.831Z] tasmax=tasmax_subset, -[2024-03-07T02:30:53.831Z] thresh_tasmin="14 degC", -[2024-03-07T02:30:53.831Z] thresh_tasmax="22 degC", -[2024-03-07T02:30:53.831Z] ) -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Traceback: -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.831Z] Cell In[1], line 2 -[2024-03-07T02:30:53.831Z]  1 result = finch.heat_wave_frequency( -[2024-03-07T02:30:53.831Z] ----> 2 tasmin=tasmin_subset, -[2024-03-07T02:30:53.831Z]  3 tasmax=tasmax_subset, -[2024-03-07T02:30:53.831Z]  4 thresh_tasmin="14 degC", -[2024-03-07T02:30:53.831Z]  5 thresh_tasmax="22 degC", -[2024-03-07T02:30:53.831Z]  6 ) -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] NameError: name 'tasmin_subset' is not defined -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 20 ___ -[2024-03-07T02:30:53.831Z] Notebook cell execution failed -[2024-03-07T02:30:53.831Z] Cell 20: Cell execution caused an exception -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Input: -[2024-03-07T02:30:53.831Z] response = result.get(asobj=True) -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] Traceback: -[2024-03-07T02:30:53.831Z] -[2024-03-07T02:30:53.831Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.831Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.831Z] Cell In[1], line 1 -[2024-03-07T02:30:53.832Z] ----> 1 response = result.get(asobj=True) -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] NameError: name 'result' is not defined -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 21 ___ -[2024-03-07T02:30:53.832Z] Notebook cell execution failed -[2024-03-07T02:30:53.832Z] Cell 21: Cell execution caused an exception -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Input: -[2024-03-07T02:30:53.832Z] ds = response.output -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Traceback: -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.832Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.832Z] Cell In[1], line 1 -[2024-03-07T02:30:53.832Z] ----> 1 ds = response.output -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] NameError: name 'response' is not defined -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 22 ___ -[2024-03-07T02:30:53.832Z] Notebook cell execution failed -[2024-03-07T02:30:53.832Z] Cell 22: Cell execution caused an exception -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Input: -[2024-03-07T02:30:53.832Z] ds.heat_wave_frequency.plot() -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Traceback: -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.832Z] AttributeError Traceback (most recent call last) -[2024-03-07T02:30:53.832Z] Cell In[1], line 1 -[2024-03-07T02:30:53.832Z] ----> 1 ds.heat_wave_frequency.plot() -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-03-07T02:30:53.832Z]  275 with suppress(KeyError): -[2024-03-07T02:30:53.832Z]  276 return source[name] -[2024-03-07T02:30:53.832Z] --> 277 raise AttributeError( -[2024-03-07T02:30:53.832Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-03-07T02:30:53.832Z]  279 ) -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] AttributeError: 'Dataset' object has no attribute 'heat_wave_frequency' -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 23 ___ -[2024-03-07T02:30:53.832Z] Notebook cell execution failed -[2024-03-07T02:30:53.832Z] Cell 23: Cell execution caused an exception -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Input: -[2024-03-07T02:30:53.832Z] from urllib.parse import urlparse -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] output_url = result.get().output -[2024-03-07T02:30:53.832Z] print("output_url = ", output_url) -[2024-03-07T02:30:53.832Z] parsed = urlparse(output_url) -[2024-03-07T02:30:53.832Z] output_path = parsed.path.replace("wpsoutputs", "wps_outputs") -[2024-03-07T02:30:53.832Z] print("output_path = ", output_path) -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] output_thredds_url = ( -[2024-03-07T02:30:53.832Z] f"https://{parsed.hostname}/twitcher/ows/proxy/thredds/dodsC/birdhouse{output_path}" -[2024-03-07T02:30:53.832Z] ) -[2024-03-07T02:30:53.832Z] print("output_thredds_url = ", output_thredds_url) -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Traceback: -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.832Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.832Z] Cell In[1], line 3 -[2024-03-07T02:30:53.832Z]  1 from urllib.parse import urlparse -[2024-03-07T02:30:53.832Z] ----> 3 output_url = result.get().output -[2024-03-07T02:30:53.832Z]  4 print("output_url = ", output_url) -[2024-03-07T02:30:53.832Z]  5 parsed = urlparse(output_url) -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] NameError: name 'result' is not defined -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] ___ pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 24 ___ -[2024-03-07T02:30:53.832Z] Notebook cell execution failed -[2024-03-07T02:30:53.832Z] Cell 24: Cell execution caused an exception -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Input: -[2024-03-07T02:30:53.832Z] # NBVAL_IGNORE_OUTPUT -[2024-03-07T02:30:53.832Z] import hvplot.xarray -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] dsremote = xr.open_dataset(output_thredds_url) -[2024-03-07T02:30:53.832Z] dsremote.hvplot.quadmesh( -[2024-03-07T02:30:53.832Z] "lon", -[2024-03-07T02:30:53.832Z] "lat", -[2024-03-07T02:30:53.832Z] "heat_wave_frequency", -[2024-03-07T02:30:53.832Z] geo=True, -[2024-03-07T02:30:53.832Z] alpha=0.8, -[2024-03-07T02:30:53.832Z] frame_height=540, -[2024-03-07T02:30:53.832Z] cmap="viridis", -[2024-03-07T02:30:53.832Z] tiles="CartoLight", -[2024-03-07T02:30:53.832Z] ) -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Traceback: -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.832Z] NameError Traceback (most recent call last) -[2024-03-07T02:30:53.832Z] Cell In[1], line 4 -[2024-03-07T02:30:53.832Z]  1 # NBVAL_IGNORE_OUTPUT -[2024-03-07T02:30:53.832Z]  2 import hvplot.xarray -[2024-03-07T02:30:53.832Z] ----> 4 dsremote = xr.open_dataset(output_thredds_url) -[2024-03-07T02:30:53.832Z]  5 dsremote.hvplot.quadmesh( -[2024-03-07T02:30:53.832Z]  6 "lon", -[2024-03-07T02:30:53.832Z]  7 "lat", -[2024-03-07T02:30:53.832Z]  (...) -[2024-03-07T02:30:53.832Z]  13 tiles="CartoLight", -[2024-03-07T02:30:53.832Z]  14 ) -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] NameError: name 'output_thredds_url' is not defined -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] _________ finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 _________ -[2024-03-07T02:30:53.832Z] Notebook cell execution failed -[2024-03-07T02:30:53.832Z] Cell 3: Cell outputs differ -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Input: -[2024-03-07T02:30:53.832Z] print("Process status: ", resp.status) -[2024-03-07T02:30:53.832Z] urls = resp.get() -[2024-03-07T02:30:53.832Z] print("Link to process output: ", urls.output) -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Traceback: -[2024-03-07T02:30:53.832Z]  mismatch 'stdout' -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] assert reference_output == test_output failed: -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] 'Process stat...20650101.nc\n' == 'Process stat...20650101.nc\n' -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] Skipping 49 identical leading characters in diff, use -v to show -[2024-03-07T02:30:53.832Z] - output: https://WPS_HOST/wpsoutputs/STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc -[2024-03-07T02:30:53.832Z] ? --------------------------- -[2024-03-07T02:30:53.832Z] + output: /STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc -[2024-03-07T02:30:53.832Z]  -[2024-03-07T02:30:53.832Z] -[2024-03-07T02:30:53.832Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 0 _ -[2024-03-07T02:30:53.832Z] Notebook cell execution failed -[2024-03-07T02:30:53.833Z] Cell 0: Cell outputs differ -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] Input: -[2024-03-07T02:30:53.833Z] import os -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] os.environ["USE_PYGEOS"] = "0" # force use Shapely with GeoPandas -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] import warnings -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] import numba -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] warnings.simplefilter("ignore", category=numba.core.errors.NumbaDeprecationWarning) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] import geopandas as gpd -[2024-03-07T02:30:53.833Z] import matplotlib.pyplot as plt -[2024-03-07T02:30:53.833Z] import xarray as xr -[2024-03-07T02:30:53.833Z] from clisops.core import subset -[2024-03-07T02:30:53.833Z] from dask.diagnostics import ProgressBar -[2024-03-07T02:30:53.833Z] from siphon.catalog import TDSCatalog -[2024-03-07T02:30:53.833Z] from xclim import atmos -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] warnings.simplefilter("ignore") -[2024-03-07T02:30:53.833Z] # TODO change address -[2024-03-07T02:30:53.833Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] # Create Catalog -[2024-03-07T02:30:53.833Z] cat = TDSCatalog(url) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] # Subset over the Gasp�� peninsula in eastern Quebec -[2024-03-07T02:30:53.833Z] gaspe = gpd.GeoDataFrame.from_file( -[2024-03-07T02:30:53.833Z] "/notebook_dir/pavics-homepage/tutorial_data/gaspesie_mrc.geojson" -[2024-03-07T02:30:53.833Z] ) -[2024-03-07T02:30:53.833Z] ds = subset.subset_shape( -[2024-03-07T02:30:53.833Z] xr.open_dataset(cat.datasets[0].access_urls["OPENDAP"], chunks=dict(time=256)), -[2024-03-07T02:30:53.833Z] shape=gpd.GeoDataFrame(geometry=gaspe.buffer(0.05)), -[2024-03-07T02:30:53.833Z] ) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] # What we see here is only a representation of the full content, the entire data set hasn't been loaded. -[2024-03-07T02:30:53.833Z] display(ds) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] # plot of single day tasmin -[2024-03-07T02:30:53.833Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] Traceback: -[2024-03-07T02:30:53.833Z] Missing output fields from running code: {'stderr'} -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 _ -[2024-03-07T02:30:53.833Z] Notebook cell execution failed -[2024-03-07T02:30:53.833Z] Cell 2: Cell outputs differ -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] Input: -[2024-03-07T02:30:53.833Z] import xclim -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] # Access some station data -[2024-03-07T02:30:53.833Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/dodsC/datasets/station_obs/ECCC_AHCCD_gen3_temperature.ncml" -[2024-03-07T02:30:53.833Z] ds_stat = xr.open_dataset(url, chunks=dict(station=1)) -[2024-03-07T02:30:53.833Z] istat = 115 -[2024-03-07T02:30:53.833Z] # Compare use of differernt percent tolerance levels (tolerance == 0.1) -[2024-03-07T02:30:53.833Z] plt.figure(figsize=(15, 10)) -[2024-03-07T02:30:53.833Z] color = ["blue", "green", "orange"] -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] for i, tol in enumerate([0.25, 0.1, 0.05]): -[2024-03-07T02:30:53.833Z] plt.subplot(3, 1, i + 1) -[2024-03-07T02:30:53.833Z] with xclim.set_options( -[2024-03-07T02:30:53.833Z] check_missing="pct", missing_options={"pct": {"tolerance": tol}} -[2024-03-07T02:30:53.833Z] ): -[2024-03-07T02:30:53.833Z] # compute yearly max tasmax -[2024-03-07T02:30:53.833Z] tx_mean = xclim.atmos.tx_mean( -[2024-03-07T02:30:53.833Z] tasmax=ds_stat.isel(station=istat).tasmax, freq="YS" -[2024-03-07T02:30:53.833Z] ) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] tx_mean.plot( -[2024-03-07T02:30:53.833Z] marker="o", -[2024-03-07T02:30:53.833Z] color=color[i], -[2024-03-07T02:30:53.833Z] label=f"{len(tx_mean.dropna('time').values)} \ -[2024-03-07T02:30:53.833Z] valid years w/ <={tol*100}% missing data", -[2024-03-07T02:30:53.833Z] ) -[2024-03-07T02:30:53.833Z] plt.title("") -[2024-03-07T02:30:53.833Z] plt.xlabel("") -[2024-03-07T02:30:53.833Z] if i == 0: -[2024-03-07T02:30:53.833Z] name = str(ds_stat.isel(station=istat).station_name.values) -[2024-03-07T02:30:53.833Z] plt.title(f"{name.capitalize().replace('_',' ')} Station") -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] elif i == 2: -[2024-03-07T02:30:53.833Z] plt.xlabel("time") -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] plt.legend(loc="lower right") -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] Traceback: -[2024-03-07T02:30:53.833Z] Unexpected output fields from running code: {'stderr'} -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ -[2024-03-07T02:30:53.833Z] Notebook cell execution failed -[2024-03-07T02:30:53.833Z] Cell 2: Cell execution caused an exception -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] Input: -[2024-03-07T02:30:53.833Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) -[2024-03-07T02:30:53.833Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] chng_f, pos_f = xens.change_significance( -[2024-03-07T02:30:53.833Z] fut.sel(time=fut["time.season"] == "JJA"), -[2024-03-07T02:30:53.833Z] ref.sel(time=ref["time.season"] == "JJA"), -[2024-03-07T02:30:53.833Z] test="ttest", -[2024-03-07T02:30:53.833Z] ) -[2024-03-07T02:30:53.833Z] plt.figure( -[2024-03-07T02:30:53.833Z] figsize=(15, 6), -[2024-03-07T02:30:53.833Z] ) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] plt.subplot(1, 2, 1) -[2024-03-07T02:30:53.833Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] plt.title(chng_f.description.split(".")[0]) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] plt.subplot(1, 2, 2) -[2024-03-07T02:30:53.833Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-03-07T02:30:53.833Z] plt.title(pos_f.description.split(".")[0]) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] display() -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] Traceback: -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] --------------------------------------------------------------------------- -[2024-03-07T02:30:53.833Z] AttributeError Traceback (most recent call last) -[2024-03-07T02:30:53.833Z] Cell In[1], line 20 -[2024-03-07T02:30:53.833Z]  18 plt.subplot(1, 2, 2) -[2024-03-07T02:30:53.833Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-03-07T02:30:53.833Z] ---> 20 plt.title(pos_f.description.split(".")[0]) -[2024-03-07T02:30:53.833Z]  22 display() -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-03-07T02:30:53.833Z]  275 with suppress(KeyError): -[2024-03-07T02:30:53.833Z]  276 return source[name] -[2024-03-07T02:30:53.833Z] --> 277 raise AttributeError( -[2024-03-07T02:30:53.833Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-03-07T02:30:53.833Z]  279 ) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] _ PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb::Cell 2 _ -[2024-03-07T02:30:53.833Z] Notebook cell execution failed -[2024-03-07T02:30:53.833Z] Cell 2: Cell outputs differ -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] Input: -[2024-03-07T02:30:53.833Z] import geopandas as gpd -[2024-03-07T02:30:53.833Z] import hvplot.pandas -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] gdf = gpd.GeoDataFrame.from_file( -[2024-03-07T02:30:53.833Z] "/notebook_dir/pavics-homepage/tutorial_data/gaspesie_mrc.geojson" -[2024-03-07T02:30:53.833Z] ) -[2024-03-07T02:30:53.833Z] gdf = gdf.dissolve(by="MUS_NM_MRC") -[2024-03-07T02:30:53.833Z] gdf["region_name"] = gdf.index -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] # TODO replace with clisops average.average_shape() once it can do a 'skipna' -[2024-03-07T02:30:53.833Z] # mask of valid (non-nan) data cells -[2024-03-07T02:30:53.833Z] data_mask = ( -[2024-03-07T02:30:53.833Z] ds_ens.tx_mean.isel(rcp=0, realization=0).mean(dim=["year", "season"]).notnull() -[2024-03-07T02:30:53.833Z] ) -[2024-03-07T02:30:53.833Z] # spatial weights of gridcells interesecting each polygon -[2024-03-07T02:30:53.833Z] weight_masks = subset.create_weight_masks(ds_ens, poly=gdf) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] def clean_masks(data_mask, masks): -[2024-03-07T02:30:53.833Z] # remove weight values of gridcells that are nan in the actual data. Rescale so total == 1 -[2024-03-07T02:30:53.833Z] return (masks * data_mask) / (masks * data_mask).sum(dim=["lat", "lon"]) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] weight_masks = clean_masks(data_mask, weight_masks) -[2024-03-07T02:30:53.833Z] -[2024-03-07T02:30:53.833Z] # Calculate weighted average for each region -[2024-03-07T02:30:53.833Z] with xr.set_options(keep_attrs=True): -[2024-03-07T02:30:53.834Z] reg_ts_sims = (ds_ens * weight_masks).sum(dim=["lat", "lon"]) -[2024-03-07T02:30:53.834Z] reg_ts = xens.ensemble_percentiles(reg_ts_sims) -[2024-03-07T02:30:53.834Z] reg_ts.load() -[2024-03-07T02:30:53.834Z] -[2024-03-07T02:30:53.834Z] # get only tx_mean percentile variables for this plot -[2024-03-07T02:30:53.834Z] vars1 = [v for v in reg_ts if "tx_mean" in v] -[2024-03-07T02:30:53.834Z] clear_output() -[2024-03-07T02:30:53.834Z] # plot a simple map of the sub-regions -[2024-03-07T02:30:53.834Z] display( -[2024-03-07T02:30:53.834Z] gdf.hvplot( -[2024-03-07T02:30:53.834Z] geo=True, -[2024-03-07T02:30:53.834Z] color="region_name", -[2024-03-07T02:30:53.834Z] tiles="EsriImagery", -[2024-03-07T02:30:53.834Z] legend=False, -[2024-03-07T02:30:53.834Z] frame_width=400, -[2024-03-07T02:30:53.834Z] ) -[2024-03-07T02:30:53.834Z] ) -[2024-03-07T02:30:53.834Z] -[2024-03-07T02:30:53.834Z] # Interative time-series plot of regional means -[2024-03-07T02:30:53.834Z] reg_ts[vars1].hvplot.line( -[2024-03-07T02:30:53.834Z] x="year", title="time series of regional mean conditions" -[2024-03-07T02:30:53.834Z] ).opts(legend_position="top_left", frame_width=500) -[2024-03-07T02:30:53.834Z] -[2024-03-07T02:30:53.834Z] Traceback: -[2024-03-07T02:30:53.834Z]  mismatch 'text/plain' -[2024-03-07T02:30:53.834Z] -[2024-03-07T02:30:53.834Z] assert reference_output == test_output failed: -[2024-03-07T02:30:53.834Z] -[2024-03-07T02:30:53.834Z] ':Overlay\n ...(region_name)' == ':Overlay\n ...(region_name)' -[2024-03-07T02:30:53.834Z] -[2024-03-07T02:30:53.834Z] :Overlay -[2024-03-07T02:30:53.834Z] - .WMTS.I :WMTS [Longitude,Latitude] -[2024-03-07T02:30:53.834Z] + .Tiles.I :Tiles [x,y] -[2024-03-07T02:30:53.834Z] .Polygons.I :Polygons [Longitude,Latitude] (region_name) -[2024-03-07T02:30:53.834Z]  -[2024-03-07T02:30:53.834Z] -[2024-03-07T02:30:53.835Z] ----------------------------- Captured stdout call ----------------------------- -[2024-03-07T02:30:53.835Z] unhandled iopub msg: clear_output -[2024-03-07T02:30:53.835Z] =========================== short test summary info ============================ -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 1 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 2 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 3 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 4 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 5 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 6 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb::Cell 7 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 5 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/climex.ipynb::Cell 8 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/forecasts.ipynb::Cell 2 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 4 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 7 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 20 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/regridding.ipynb::Cell 27 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 3 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 4 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 5 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 7 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 8 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 9 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 14 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 15 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 16 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 17 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 19 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 20 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 21 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 22 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 23 -[2024-03-07T02:30:53.835Z] FAILED pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb::Cell 24 -[2024-03-07T02:30:53.835Z] FAILED finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 -[2024-03-07T02:30:53.835Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 0 -[2024-03-07T02:30:53.835Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 -[2024-03-07T02:30:53.835Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-03-07T02:30:53.835Z] FAILED PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb::Cell 2 -[2024-03-07T02:30:53.835Z] ============ 35 failed, 179 passed, 1 skipped in 1082.74s (0:18:02) ============ -[2024-03-07T02:30:53.835Z] + EXIT_CODE=1 -[2024-03-07T02:30:53.835Z] + echo true -[2024-03-07T02:30:53.835Z] + tr [:upper:] [:lower:] -[2024-03-07T02:30:53.835Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-07T02:30:53.835Z] + [ xtrue = xtrue ] -[2024-03-07T02:30:53.835Z] + mkdir -p buildout -[2024-03-07T02:30:53.835Z] + basename pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb -[2024-03-07T02:30:53.835Z] + filename=WCS_example.ipynb -[2024-03-07T02:30:53.835Z] + echo WCS_example.ipynb -[2024-03-07T02:30:53.835Z] + sed s/.ipynb$// -[2024-03-07T02:30:53.835Z] + filename=WCS_example -[2024-03-07T02:30:53.835Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-03-07T02:30:53.835Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb -[2024-03-07T02:30:53.835Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-03-07T02:31:00.402Z] [NbConvertApp] Writing 145666 bytes to buildout/WCS_example.output.ipynb -[2024-03-07T02:31:00.665Z] + basename pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb -[2024-03-07T02:31:00.665Z] + filename=WFS_example.ipynb -[2024-03-07T02:31:00.665Z] + echo WFS_example.ipynb -[2024-03-07T02:31:00.665Z] + sed s/.ipynb$// -[2024-03-07T02:31:00.665Z] + filename=WFS_example -[2024-03-07T02:31:00.665Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-03-07T02:31:00.665Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb -[2024-03-07T02:31:02.574Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-03-07T02:31:12.555Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb -[2024-03-07T02:31:12.555Z] + basename pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb -[2024-03-07T02:31:12.555Z] + filename=WMS_example.ipynb -[2024-03-07T02:31:12.555Z] + echo WMS_example.ipynb+ -[2024-03-07T02:31:12.555Z] sed s/.ipynb$// -[2024-03-07T02:31:12.555Z] + filename=WMS_example -[2024-03-07T02:31:12.555Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-03-07T02:31:12.555Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb -[2024-03-07T02:31:13.145Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-03-07T02:31:28.053Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb -[2024-03-07T02:31:28.053Z] + basename pavics-sdi-master/docs/source/notebooks/climex.ipynb -[2024-03-07T02:31:28.053Z] + filename=climex.ipynb -[2024-03-07T02:31:28.053Z] + echo climex.ipynb -[2024-03-07T02:31:28.053Z] + sed s/.ipynb$// -[2024-03-07T02:31:28.053Z] + filename=climex -[2024-03-07T02:31:28.053Z] + [ -e buildout/climex.output.ipynb ] -[2024-03-07T02:31:28.053Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-master/docs/source/notebooks/climex.ipynb -[2024-03-07T02:31:29.965Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/climex.ipynb to notebook -[2024-03-07T02:35:51.520Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). -[2024-03-07T02:35:51.520Z] Traceback (most recent call last): -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply -[2024-03-07T02:35:51.520Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async -[2024-03-07T02:35:51.520Z] result = await obj -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg -[2024-03-07T02:35:51.520Z] raise Empty -[2024-03-07T02:35:51.520Z] _queue.Empty -[2024-03-07T02:35:51.520Z] -[2024-03-07T02:35:51.520Z] During handling of the above exception, another exception occurred: -[2024-03-07T02:35:51.520Z] -[2024-03-07T02:35:51.520Z] Traceback (most recent call last): -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-03-07T02:35:51.520Z] sys.exit(main()) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance -[2024-03-07T02:35:51.520Z] super().launch_instance(argv=argv, **kwargs) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance -[2024-03-07T02:35:51.520Z] app.start() -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start -[2024-03-07T02:35:51.520Z] self.convert_notebooks() -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks -[2024-03-07T02:35:51.520Z] self.convert_single_notebook(notebook_filename) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook -[2024-03-07T02:35:51.520Z] output, resources = self.export_single_notebook( -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook -[2024-03-07T02:35:51.520Z] output, resources = self.exporter.from_filename( -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-03-07T02:35:51.520Z] return self.from_file(f, resources=resources, **kw) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-03-07T02:35:51.520Z] return self.from_notebook_node( -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-03-07T02:35:51.520Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-03-07T02:35:51.520Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess -[2024-03-07T02:35:51.520Z] nbc, resc = preprocessor(nbc, resc) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-03-07T02:35:51.520Z] return self.preprocess(nb, resources) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess -[2024-03-07T02:35:51.520Z] self.preprocess_cell(cell, resources, index) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell -[2024-03-07T02:35:51.520Z] cell = self.execute_cell(cell, index, store_history=True) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped -[2024-03-07T02:35:51.520Z] return loop.run_until_complete(inner) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-03-07T02:35:51.520Z] return future.result() -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell -[2024-03-07T02:35:51.520Z] exec_reply = await self.task_poll_for_reply -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply -[2024-03-07T02:35:51.520Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) -[2024-03-07T02:35:51.520Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout -[2024-03-07T02:35:51.520Z] raise CellTimeoutError.error_from_timeout_and_cell( -[2024-03-07T02:35:51.520Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. -[2024-03-07T02:35:51.520Z] The message was: Cell execution timed out. -[2024-03-07T02:35:51.520Z] Here is a preview of the cell contents: -[2024-03-07T02:35:51.520Z] ------------------- -[2024-03-07T02:35:51.520Z] ['# NBVAL_IGNORE_OUTPUT', '', '# Create a local client with 6 workers processes.', 'dask_kwargs = dict(', ' n_workers=6,'] -[2024-03-07T02:35:51.520Z] ... -[2024-03-07T02:35:51.520Z] [' )', ' out = xens.ensemble_mean_std_max_min(sdii.to_dataset())', ' out = out.load()', '', 'clear_output()'] -[2024-03-07T02:35:51.520Z] ------------------- -[2024-03-07T02:35:51.520Z] -[2024-03-07T02:35:51.520Z] + basename pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-07T02:35:51.520Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-03-07T02:35:51.520Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-03-07T02:35:51.520Z] + sed s/.ipynb$// -[2024-03-07T02:35:51.520Z] + filename=eccc-geoapi-climate-stations -[2024-03-07T02:35:51.520Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-03-07T02:35:51.520Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-07T02:35:51.520Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-03-07T02:36:03.823Z] [NbConvertApp] Writing 279427 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-03-07T02:36:03.823Z] + basename pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-07T02:36:03.823Z] + filename=eccc-geoapi-xclim.ipynb -[2024-03-07T02:36:03.823Z] + echo eccc-geoapi-xclim.ipynb -[2024-03-07T02:36:03.823Z] + sed s/.ipynb$// -[2024-03-07T02:36:03.823Z] + filename=eccc-geoapi-xclim -[2024-03-07T02:36:03.823Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-03-07T02:36:03.823Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-07T02:36:03.823Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-03-07T02:36:13.818Z] [NbConvertApp] Writing 108240 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-03-07T02:36:13.818Z] + basename pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb -[2024-03-07T02:36:13.818Z] + filename=esgf-dap.ipynb -[2024-03-07T02:36:13.818Z] + + sed s/.ipynb$// -[2024-03-07T02:36:13.818Z] echo esgf-dap.ipynb -[2024-03-07T02:36:13.818Z] + filename=esgf-dap -[2024-03-07T02:36:13.818Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-03-07T02:36:13.819Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb -[2024-03-07T02:36:15.195Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-03-07T02:36:25.187Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb -[2024-03-07T02:36:25.187Z] + basename pavics-sdi-master/docs/source/notebooks/forecasts.ipynb -[2024-03-07T02:36:25.187Z] + filename=forecasts.ipynb -[2024-03-07T02:36:25.187Z] + echo forecasts.ipynb -[2024-03-07T02:36:25.187Z] + sed s/.ipynb$// -[2024-03-07T02:36:25.187Z] + filename=forecasts -[2024-03-07T02:36:25.187Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-03-07T02:36:25.187Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-master/docs/source/notebooks/forecasts.ipynb -[2024-03-07T02:36:26.125Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/forecasts.ipynb to notebook -[2024-03-07T02:36:44.227Z] [NbConvertApp] Writing 181105 bytes to buildout/forecasts.output.ipynb -[2024-03-07T02:36:44.227Z] + basename pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-07T02:36:44.227Z] + filename=jupyter_extensions.ipynb -[2024-03-07T02:36:44.227Z] + echo jupyter_extensions.ipynb -[2024-03-07T02:36:44.227Z] + sed s/.ipynb$// -[2024-03-07T02:36:44.227Z] + filename=jupyter_extensions -[2024-03-07T02:36:44.227Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-03-07T02:36:44.227Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-07T02:36:45.171Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-03-07T02:36:50.455Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb -[2024-03-07T02:36:50.455Z] + basename pavics-sdi-master/docs/source/notebooks/opendap.ipynb -[2024-03-07T02:36:50.455Z] + filename=opendap.ipynb -[2024-03-07T02:36:50.455Z] + echo+ opendap.ipynb -[2024-03-07T02:36:50.455Z] sed s/.ipynb$// -[2024-03-07T02:36:50.455Z] + filename=opendap -[2024-03-07T02:36:50.455Z] + [ -e buildout/opendap.output.ipynb ] -[2024-03-07T02:36:50.455Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-master/docs/source/notebooks/opendap.ipynb -[2024-03-07T02:36:51.846Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/opendap.ipynb to notebook -[2024-03-07T02:38:28.319Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb -[2024-03-07T02:38:28.319Z] + basename pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-07T02:38:28.319Z] + filename=pavics_thredds.ipynb -[2024-03-07T02:38:28.319Z] + sed s/.ipynb$// -[2024-03-07T02:38:28.319Z] + echo pavics_thredds.ipynb -[2024-03-07T02:38:28.319Z] + filename=pavics_thredds -[2024-03-07T02:38:28.319Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-03-07T02:38:28.319Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-07T02:38:28.319Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-03-07T02:38:28.319Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-07T02:38:28.320Z] context: Access to service is forbidden. -[2024-03-07T02:38:28.320Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-07T02:38:28.320Z] context: Access to service is forbidden. -[2024-03-07T02:38:28.320Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb -[2024-03-07T02:38:28.320Z] + basename pavics-sdi-master/docs/source/notebooks/regridding.ipynb -[2024-03-07T02:38:28.320Z] + filename=regridding.ipynb -[2024-03-07T02:38:28.320Z] + + echo regridding.ipynb -[2024-03-07T02:38:28.320Z] sed s/.ipynb$// -[2024-03-07T02:38:28.320Z] + filename=regridding -[2024-03-07T02:38:28.320Z] + [ -e buildout/regridding.output.ipynb ] -[2024-03-07T02:38:28.320Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-master/docs/source/notebooks/regridding.ipynb -[2024-03-07T02:38:29.265Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/regridding.ipynb to notebook -[2024-03-07T02:40:05.715Z] [NbConvertApp] Writing 1239773 bytes to buildout/regridding.output.ipynb -[2024-03-07T02:40:05.715Z] + basename pavics-sdi-master/docs/source/notebooks/rendering.ipynb -[2024-03-07T02:40:05.715Z] + filename=rendering.ipynb -[2024-03-07T02:40:05.715Z] + echo rendering.ipynb -[2024-03-07T02:40:05.715Z] + sed s/.ipynb$// -[2024-03-07T02:40:05.715Z] + filename=rendering -[2024-03-07T02:40:05.715Z] + [ -e buildout/rendering.output.ipynb ] -[2024-03-07T02:40:05.715Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-master/docs/source/notebooks/rendering.ipynb -[2024-03-07T02:40:05.715Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/rendering.ipynb to notebook -[2024-03-07T02:40:09.920Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb -[2024-03-07T02:40:09.920Z] + basename pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb -[2024-03-07T02:40:09.920Z] + filename=subset-user-input.ipynb -[2024-03-07T02:40:09.920Z] + sed s/.ipynb$// -[2024-03-07T02:40:09.920Z] + echo subset-user-input.ipynb -[2024-03-07T02:40:09.920Z] + filename=subset-user-input -[2024-03-07T02:40:09.920Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-03-07T02:40:09.920Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb -[2024-03-07T02:40:10.863Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-03-07T02:40:23.115Z] [NbConvertApp] Writing 155164 bytes to buildout/subset-user-input.output.ipynb -[2024-03-07T02:40:23.115Z] + basename pavics-sdi-master/docs/source/notebooks/subsetting.ipynb -[2024-03-07T02:40:23.115Z] + filename=subsetting.ipynb -[2024-03-07T02:40:23.115Z] + echo subsetting.ipynb -[2024-03-07T02:40:23.115Z] + sed s/.ipynb$// -[2024-03-07T02:40:23.115Z] + filename=subsetting -[2024-03-07T02:40:23.115Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-03-07T02:40:23.115Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-master/docs/source/notebooks/subsetting.ipynb -[2024-03-07T02:40:24.056Z] [NbConvertApp] Converting notebook pavics-sdi-master/docs/source/notebooks/subsetting.ipynb to notebook -[2024-03-07T02:40:36.296Z] [NbConvertApp] Writing 93401 bytes to buildout/subsetting.output.ipynb -[2024-03-07T02:40:36.296Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-07T02:40:36.296Z] + filename=dap_subset.ipynb -[2024-03-07T02:40:36.296Z] + echo dap_subset.ipynb -[2024-03-07T02:40:36.297Z] + sed s/.ipynb$// -[2024-03-07T02:40:36.297Z] + filename=dap_subset -[2024-03-07T02:40:36.297Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-03-07T02:40:36.297Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-07T02:40:36.297Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-03-07T02:40:51.199Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb -[2024-03-07T02:40:51.199Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-07T02:40:51.199Z] + filename=finch-usage.ipynb -[2024-03-07T02:40:51.199Z] + echo finch-usage.ipynb -[2024-03-07T02:40:51.199Z] + sed s/.ipynb$// -[2024-03-07T02:40:51.199Z] + filename=finch-usage -[2024-03-07T02:40:51.199Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-03-07T02:40:51.199Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-07T02:40:51.199Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-03-07T02:41:03.428Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb -[2024-03-07T02:41:03.428Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-07T02:41:03.428Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-07T02:41:03.428Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-07T02:41:03.428Z] + sed s/.ipynb$// -[2024-03-07T02:41:03.428Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-03-07T02:41:03.428Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-03-07T02:41:03.428Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-07T02:41:03.686Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-03-07T02:41:10.255Z] [NbConvertApp] Writing 173043 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-03-07T02:41:10.255Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-07T02:41:10.255Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-07T02:41:10.255Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-07T02:41:10.255Z] + sed s/.ipynb$// -[2024-03-07T02:41:10.255Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-03-07T02:41:10.255Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-03-07T02:41:10.255Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-07T02:41:10.826Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-03-07T02:42:07.126Z] [NbConvertApp] Writing 1481293 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-03-07T02:42:07.126Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-07T02:42:07.126Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-07T02:42:07.126Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-07T02:42:07.126Z] + sed s/.ipynb$// -[2024-03-07T02:42:07.126Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-03-07T02:42:07.126Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-03-07T02:42:07.126Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-07T02:42:07.126Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-03-07T02:46:43.607Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). -[2024-03-07T02:46:46.134Z] Traceback (most recent call last): -[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply -[2024-03-07T02:46:46.134Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) -[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async -[2024-03-07T02:46:46.134Z] result = await obj -[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg -[2024-03-07T02:46:46.134Z] raise Empty -[2024-03-07T02:46:46.134Z] _queue.Empty -[2024-03-07T02:46:46.134Z] -[2024-03-07T02:46:46.134Z] During handling of the above exception, another exception occurred: -[2024-03-07T02:46:46.134Z] -[2024-03-07T02:46:46.134Z] Traceback (most recent call last): -[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-03-07T02:46:46.134Z] sys.exit(main()) -[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance -[2024-03-07T02:46:46.134Z] super().launch_instance(argv=argv, **kwargs) -[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance -[2024-03-07T02:46:46.134Z] app.start() -[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start -[2024-03-07T02:46:46.134Z] self.convert_notebooks() -[2024-03-07T02:46:46.134Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks -[2024-03-07T02:46:46.134Z] self.convert_single_notebook(notebook_filename) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook -[2024-03-07T02:46:46.135Z] output, resources = self.export_single_notebook( -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook -[2024-03-07T02:46:46.135Z] output, resources = self.exporter.from_filename( -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-03-07T02:46:46.135Z] return self.from_file(f, resources=resources, **kw) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-03-07T02:46:46.135Z] return self.from_notebook_node( -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-03-07T02:46:46.135Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-03-07T02:46:46.135Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess -[2024-03-07T02:46:46.135Z] nbc, resc = preprocessor(nbc, resc) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-03-07T02:46:46.135Z] return self.preprocess(nb, resources) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess -[2024-03-07T02:46:46.135Z] self.preprocess_cell(cell, resources, index) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell -[2024-03-07T02:46:46.135Z] cell = self.execute_cell(cell, index, store_history=True) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped -[2024-03-07T02:46:46.135Z] return loop.run_until_complete(inner) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-03-07T02:46:46.135Z] return future.result() -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell -[2024-03-07T02:46:46.135Z] exec_reply = await self.task_poll_for_reply -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply -[2024-03-07T02:46:46.135Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) -[2024-03-07T02:46:46.135Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout -[2024-03-07T02:46:46.135Z] raise CellTimeoutError.error_from_timeout_and_cell( -[2024-03-07T02:46:46.135Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. -[2024-03-07T02:46:46.135Z] The message was: Cell execution timed out. -[2024-03-07T02:46:46.135Z] Here is a preview of the cell contents: -[2024-03-07T02:46:46.135Z] ------------------- -[2024-03-07T02:46:46.135Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] -[2024-03-07T02:46:46.135Z] ... -[2024-03-07T02:46:46.135Z] [' print("computing with dask client ...")', ' compute(jobs)', ' print("finished")', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()'] -[2024-03-07T02:46:46.135Z] ------------------- -[2024-03-07T02:46:46.135Z] -[2024-03-07T02:46:46.135Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-07T02:46:46.135Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-07T02:46:46.135Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-07T02:46:46.135Z] + sed s/.ipynb$// -[2024-03-07T02:46:46.135Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-03-07T02:46:46.135Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-03-07T02:46:46.135Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-07T02:46:48.040Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-03-07T02:47:06.208Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-03-07T02:47:06.208Z] + basename PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-07T02:47:06.208Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-07T02:47:06.208Z] + + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-07T02:47:06.208Z] sed s/.ipynb$// -[2024-03-07T02:47:06.208Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-03-07T02:47:06.208Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-03-07T02:47:06.208Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-07T02:47:07.583Z] [NbConvertApp] Converting notebook PAVICS-landing-master/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-03-07T02:47:46.311Z] [NbConvertApp] Writing 1091398 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-03-07T02:47:46.311Z] + basename notebooks/hummingbird.ipynb -[2024-03-07T02:47:46.311Z] + filename=hummingbird.ipynb -[2024-03-07T02:47:46.311Z] + echo hummingbird.ipynb -[2024-03-07T02:47:46.311Z] + sed s/.ipynb$// -[2024-03-07T02:47:46.311Z] + filename=hummingbird -[2024-03-07T02:47:46.311Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-03-07T02:47:46.311Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-03-07T02:47:47.697Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-03-07T02:47:51.903Z] [NbConvertApp] Writing 15951 bytes to buildout/hummingbird.output.ipynb -[2024-03-07T02:47:51.903Z] + basename notebooks/stress-tests.ipynb -[2024-03-07T02:47:51.903Z] + filename=stress-tests.ipynb -[2024-03-07T02:47:51.903Z] + sed s/.ipynb$// -[2024-03-07T02:47:51.903Z] + echo stress-tests.ipynb -[2024-03-07T02:47:51.903Z] + filename=stress-tests -[2024-03-07T02:47:51.903Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-03-07T02:47:51.903Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-03-07T02:47:53.818Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-03-07T02:51:15.394Z] [NbConvertApp] Writing 429955 bytes to buildout/stress-tests.output.ipynb -[2024-03-07T02:51:15.395Z] + exit 1 -[2024-03-07T02:51:15.395Z] + EXIT_CODE=1 -[2024-03-07T02:51:15.395Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-07T02:51:15.395Z] + mkdir -p buildout/env-dump -[2024-03-07T02:51:15.395Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-07T02:51:15.395Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-07T02:51:15.395Z] + conda env export -n birdy -[2024-03-07T02:51:23.532Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-07T02:51:23.532Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-07T02:51:23.532Z] + conda list -n birdy --explicit -[2024-03-07T02:51:33.513Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-07T02:51:33.513Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-07T02:51:33.513Z] + pip freeze -[2024-03-07T02:51:33.513Z] + exit 1 +[2024-03-14T19:18:32.637Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-14T19:18:32.637Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-14T19:18:32.637Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-03-14T19:18:32.637Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-14T19:18:32.637Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-14T19:18:32.637Z] FINCH_BRANCH has been set to 'master' +[2024-03-14T19:18:32.637Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-14T19:18:32.637Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-14T19:18:32.637Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-03-14T19:18:32.637Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-14T19:18:32.637Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-14T19:18:32.637Z] RAVEN_BRANCH has been set to 'main' +[2024-03-14T19:18:32.637Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-14T19:18:32.637Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-14T19:18:32.637Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-14T19:18:32.637Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-14T19:18:32.637Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-14T19:18:32.637Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-14T19:18:32.637Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-14T19:18:32.637Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-14T19:18:32.637Z] + git clean -fdx +[2024-03-14T19:18:32.904Z] Removing .pytest_cache/ +[2024-03-14T19:18:32.905Z] Removing PAVICS-landing-master/ +[2024-03-14T19:18:32.905Z] Removing RavenPy-master/ +[2024-03-14T19:18:32.905Z] Removing __pycache__/ +[2024-03-14T19:18:32.905Z] Removing buildout/ +[2024-03-14T19:18:32.905Z] Removing esgf-compute-api-devel/ +[2024-03-14T19:18:32.905Z] Removing finch-master/ +[2024-03-14T19:18:32.905Z] Removing pavics-sdi-master/ +[2024-03-14T19:18:32.905Z] Removing raven-main/ +[2024-03-14T19:18:32.905Z] + ./downloadrepos +[2024-03-14T19:18:32.905Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-14T19:18:32.905Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-03-14T19:18:32.905Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-14T19:18:32.905Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-14T19:18:32.905Z] FINCH_BRANCH has been set to 'master' +[2024-03-14T19:18:32.905Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-14T19:18:32.905Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-14T19:18:32.905Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-03-14T19:18:32.905Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-14T19:18:32.905Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-14T19:18:32.905Z] RAVEN_BRANCH has been set to 'main' +[2024-03-14T19:18:32.905Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-14T19:18:32.905Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-14T19:18:32.905Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-14T19:18:32.905Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-14T19:18:32.905Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-14T19:18:32.905Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-14T19:18:32.905Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-14T19:18:32.905Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-14T19:18:32.905Z] + rm -rf pavics-sdi-* +[2024-03-14T19:18:32.905Z] + ls +[2024-03-14T19:18:32.905Z] + grep pavics-sdi +[2024-03-14T19:18:32.905Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha +[2024-03-14T19:18:32.905Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-14T19:18:32.905Z] + shift +[2024-03-14T19:18:32.905Z] + branch=fix_nbs_jupyter_alpha +[2024-03-14T19:18:32.905Z] + shift +[2024-03-14T19:18:32.905Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-03-14T19:18:32.905Z] + tar xz +[2024-03-14T19:18:37.095Z] + ls +[2024-03-14T19:18:37.095Z] + grep pavics-sdi +[2024-03-14T19:18:37.095Z] pavics-sdi-fix_nbs_jupyter_alpha +[2024-03-14T19:18:37.095Z] + set +x +[2024-03-14T19:18:37.095Z] + rm -rf finch-* +[2024-03-14T19:18:37.095Z] + ls +[2024-03-14T19:18:37.095Z] + grep finch +[2024-03-14T19:18:37.095Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-14T19:18:37.095Z] + github_repo=https://github.com/bird-house/finch +[2024-03-14T19:18:37.095Z] + shift +[2024-03-14T19:18:37.095Z] + branch=master +[2024-03-14T19:18:37.095Z] + shift +[2024-03-14T19:18:37.095Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-03-14T19:18:37.095Z] + tar xz +[2024-03-14T19:18:38.472Z] + ls +[2024-03-14T19:18:38.472Z] + grep finch +[2024-03-14T19:18:38.472Z] finch-master +[2024-03-14T19:18:38.472Z] + set +x +[2024-03-14T19:18:38.472Z] + rm -rf PAVICS-landing-* +[2024-03-14T19:18:38.472Z] + ls +[2024-03-14T19:18:38.472Z] + grep PAVICS-landing +[2024-03-14T19:18:38.472Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha +[2024-03-14T19:18:38.472Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-14T19:18:38.472Z] + shift +[2024-03-14T19:18:38.472Z] + branch=fix_nbs_jupyter_alpha +[2024-03-14T19:18:38.472Z] + shift +[2024-03-14T19:18:38.472Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-03-14T19:18:38.472Z] + tar xz +[2024-03-14T19:18:46.579Z] + ls +[2024-03-14T19:18:46.579Z] + grep PAVICS-landing +[2024-03-14T19:18:46.579Z] PAVICS-landing-fix_nbs_jupyter_alpha +[2024-03-14T19:18:46.579Z] + set +x +[2024-03-14T19:18:46.579Z] + rm -rf raven-* +[2024-03-14T19:18:46.579Z] + ls +[2024-03-14T19:18:46.579Z] + grep raven +[2024-03-14T19:18:46.579Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-14T19:18:46.579Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-14T19:18:46.579Z] + shift +[2024-03-14T19:18:46.579Z] + branch=main +[2024-03-14T19:18:46.579Z] + shift +[2024-03-14T19:18:46.579Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-14T19:18:46.579Z] + tar xz +[2024-03-14T19:18:47.522Z] + ls +[2024-03-14T19:18:47.522Z] + grep raven +[2024-03-14T19:18:47.522Z] raven-main +[2024-03-14T19:18:47.522Z] + set +x +[2024-03-14T19:18:47.522Z] + rm -rf RavenPy-* +[2024-03-14T19:18:47.522Z] + ls +[2024-03-14T19:18:47.522Z] + grep RavenPy +[2024-03-14T19:18:47.522Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-14T19:18:47.522Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-14T19:18:47.522Z] + shift +[2024-03-14T19:18:47.522Z] + branch=master +[2024-03-14T19:18:47.522Z] + shift +[2024-03-14T19:18:47.522Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-14T19:18:47.522Z] + tar xz +[2024-03-14T19:18:49.439Z] + ls +[2024-03-14T19:18:49.439Z] + grep RavenPy +[2024-03-14T19:18:49.439Z] RavenPy-master +[2024-03-14T19:18:49.439Z] + set +x +[2024-03-14T19:18:49.439Z] + rm -rf esgf-compute-api-* +[2024-03-14T19:18:49.439Z] + ls +[2024-03-14T19:18:49.439Z] + grep esgf-compute-api +[2024-03-14T19:18:49.439Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-14T19:18:49.439Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-14T19:18:49.439Z] + shift +[2024-03-14T19:18:49.439Z] + branch=devel +[2024-03-14T19:18:49.439Z] + shift +[2024-03-14T19:18:49.439Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-03-14T19:18:49.439Z] + tar xz +[2024-03-14T19:18:50.377Z] + ls +[2024-03-14T19:18:50.377Z] + grep esgf-compute-api +[2024-03-14T19:18:50.377Z] esgf-compute-api-devel +[2024-03-14T19:18:50.377Z] + set +x +[2024-03-14T19:18:50.377Z] + echo fix_nbs_jupyter_alpha +[2024-03-14T19:18:50.377Z] + sed s@/@-@g +[2024-03-14T19:18:50.377Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha +[2024-03-14T19:18:50.377Z] + echo Ouranosinc/pavics-sdi +[2024-03-14T19:18:50.377Z] + sed s@^.*/@@g +[2024-03-14T19:18:50.377Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-14T19:18:50.377Z] + echo master +[2024-03-14T19:18:50.377Z] + sed s@/@-@g +[2024-03-14T19:18:50.377Z] + FINCH_BRANCH=master +[2024-03-14T19:18:50.377Z] + echo bird-house/finch +[2024-03-14T19:18:50.377Z] + sed s@^.*/@@g +[2024-03-14T19:18:50.377Z] + FINCH_REPO_NAME=finch +[2024-03-14T19:18:50.377Z] + echo fix_nbs_jupyter_alpha +[2024-03-14T19:18:50.377Z] + sed s@/@-@g +[2024-03-14T19:18:50.377Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha +[2024-03-14T19:18:50.378Z] + echo Ouranosinc/PAVICS-landing +[2024-03-14T19:18:50.378Z] + sed s@^.*/@@g +[2024-03-14T19:18:50.378Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-14T19:18:50.378Z] + echo main +[2024-03-14T19:18:50.378Z] + sed s@/@-@g +[2024-03-14T19:18:50.378Z] + RAVEN_BRANCH=main +[2024-03-14T19:18:50.378Z] + echo Ouranosinc/raven +[2024-03-14T19:18:50.637Z] + sed s@^.*/@@g +[2024-03-14T19:18:50.638Z] + RAVEN_REPO_NAME=raven +[2024-03-14T19:18:50.638Z] + echo master +[2024-03-14T19:18:50.638Z] + sed s@/@-@g +[2024-03-14T19:18:50.638Z] + RAVENPY_BRANCH=master +[2024-03-14T19:18:50.638Z] + echo CSHS-CWRA/RavenPy +[2024-03-14T19:18:50.638Z] + sed s@^.*/@@g +[2024-03-14T19:18:50.638Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-14T19:18:50.638Z] + echo devel +[2024-03-14T19:18:50.638Z] + sed s@/@-@g +[2024-03-14T19:18:50.638Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-14T19:18:50.638Z] + echo ESGF/esgf-compute-api +[2024-03-14T19:18:50.638Z] + sed s@^.*/@@g +[2024-03-14T19:18:50.638Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-14T19:18:50.638Z] + echo pavics-sdi-fix_nbs_jupyter_alpha +[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T19:18:50.638Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha +[2024-03-14T19:18:50.638Z] + echo finch-master +[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T19:18:50.638Z] + FINCH_DIR=finch-master +[2024-03-14T19:18:50.638Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha +[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T19:18:50.638Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha +[2024-03-14T19:18:50.638Z] + echo raven-main +[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T19:18:50.638Z] + RAVEN_DIR=raven-main +[2024-03-14T19:18:50.638Z] + echo RavenPy-master +[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T19:18:50.638Z] + RAVENPY_DIR=RavenPy-master +[2024-03-14T19:18:50.638Z] + echo esgf-compute-api-devel +[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T19:18:50.638Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-14T19:18:50.638Z] + echo true +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + VERIFY_SSL=true +[2024-03-14T19:18:50.638Z] + [ xtrue = xfalse ] +[2024-03-14T19:18:50.638Z] + rm -v finch-master/setup.cfg +[2024-03-14T19:18:50.638Z] removed 'finch-master/setup.cfg' +[2024-03-14T19:18:50.638Z] + rm -v raven-main/setup.cfg +[2024-03-14T19:18:50.638Z] removed 'raven-main/setup.cfg' +[2024-03-14T19:18:50.638Z] + rm -v raven-main/pyproject.toml +[2024-03-14T19:18:50.638Z] removed 'raven-main/pyproject.toml' +[2024-03-14T19:18:50.638Z] + rm -v RavenPy-master/setup.cfg +[2024-03-14T19:18:50.638Z] removed 'RavenPy-master/setup.cfg' +[2024-03-14T19:18:50.638Z] + rm -v RavenPy-master/tox.ini +[2024-03-14T19:18:50.638Z] removed 'RavenPy-master/tox.ini' +[2024-03-14T19:18:50.638Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-14T19:18:50.638Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-14T19:18:50.638Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-14T19:18:50.638Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-14T19:18:50.638Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-14T19:18:50.638Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-14T19:18:50.638Z] + echo false +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + TEST_MAGPIE_AUTH=false +[2024-03-14T19:18:50.638Z] + echo true +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + TEST_PAVICS_SDI_REPO=true +[2024-03-14T19:18:50.638Z] + echo false +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-14T19:18:50.638Z] + echo true +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + TEST_FINCH_REPO=true +[2024-03-14T19:18:50.638Z] + echo true +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + TEST_PAVICS_LANDING_REPO=true +[2024-03-14T19:18:50.638Z] + echo false +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + TEST_RAVEN_REPO=false +[2024-03-14T19:18:50.638Z] + echo false +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + TEST_RAVENPY_REPO=false +[2024-03-14T19:18:50.638Z] + echo false +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-14T19:18:50.638Z] + echo true +[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] +[2024-03-14T19:18:50.638Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-03-14T19:18:50.638Z] + NOTEBOOKS_TO_TEST= +[2024-03-14T19:18:50.638Z] + [ xfalse = xtrue ] +[2024-03-14T19:18:50.638Z] + [ xtrue = xtrue ] +[2024-03-14T19:18:50.638Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb +[2024-03-14T19:18:50.638Z] + [ xfalse = xtrue ] +[2024-03-14T19:18:50.638Z] + [ xtrue = xtrue ] +[2024-03-14T19:18:50.638Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-03-14T19:18:50.638Z] + [ xtrue = xtrue ] +[2024-03-14T19:18:50.638Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb +[2024-03-14T19:18:50.638Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-14T19:18:50.638Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-03-14T19:18:50.638Z] + PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-14T19:18:50.638Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-14T19:18:50.638Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-14T19:18:50.639Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-14T19:18:50.639Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators +[2024-03-14T19:18:50.639Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-14T19:18:50.639Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-14T19:18:50.639Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-03-14T19:18:52.011Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-14T19:18:52.848Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-03-14T19:18:52.848Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-03-14T19:18:52.848Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-03-14T19:18:52.848Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data' +[2024-03-14T19:18:52.848Z] + [ xfalse = xtrue ] +[2024-03-14T19:18:52.848Z] + [ xfalse = xtrue ] +[2024-03-14T19:18:52.848Z] + [ xfalse = xtrue ] +[2024-03-14T19:18:52.848Z] + [ xtrue = xtrue ] +[2024-03-14T19:18:52.848Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-14T19:18:52.848Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-14T19:18:52.848Z] + [ -n ] +[2024-03-14T19:18:52.848Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-14T19:18:52.848Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-14T19:18:52.848Z] Will run notebooks against pavics.ouranos.ca +[2024-03-14T19:18:52.848Z] + [ -z ] +[2024-03-14T19:18:52.848Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-03-14T19:18:52.848Z] + git diff +[2024-03-14T19:18:52.848Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-14T19:18:52.850Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-03-14T19:18:55.382Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-14T19:18:55.382Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-14T19:18:55.642Z] ============================= test session starts ============================== +[2024-03-14T19:18:55.642Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-03-14T19:18:55.642Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-03-14T19:18:55.642Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-03-14T19:18:55.642Z] collected 214 items +[2024-03-14T19:18:55.642Z] +[2024-03-14T19:18:59.829Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb . [ 0%] +[2024-03-14T19:19:06.233Z] ...... [ 3%] +[2024-03-14T19:19:08.153Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb . [ 3%] +[2024-03-14T19:19:15.570Z] ..... [ 6%] +[2024-03-14T19:19:16.528Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb . [ 6%] +[2024-03-14T19:19:21.874Z] ....... [ 9%] +[2024-03-14T19:19:37.516Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb .... [ 11%] +[2024-03-14T19:21:58.883Z] .F..F... [ 15%] +[2024-03-14T19:21:58.883Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 15%] +[2024-03-14T19:22:05.753Z] ............... [ 22%] +[2024-03-14T19:22:08.287Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 23%] +[2024-03-14T19:22:13.073Z] .... [ 25%] +[2024-03-14T19:22:14.985Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb .. [ 26%] +[2024-03-14T19:22:20.775Z] .... [ 28%] +[2024-03-14T19:22:28.984Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb . [ 28%] +[2024-03-14T19:22:37.511Z] ..... [ 30%] +[2024-03-14T19:22:40.855Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb ... [ 32%] +[2024-03-14T19:22:41.682Z] .... [ 34%] +[2024-03-14T19:22:42.630Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb . [ 34%] +[2024-03-14T19:22:46.708Z] .... [ 36%] +[2024-03-14T19:23:04.802Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb . [ 36%] +[2024-03-14T19:24:40.524Z] ...F.FF............F......F [ 49%] +[2024-03-14T19:24:40.524Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb . [ 50%] +[2024-03-14T19:24:40.524Z] ... [ 51%] +[2024-03-14T19:24:40.786Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb . [ 51%] +[2024-03-14T19:24:59.167Z] .............F.......... [ 63%] +[2024-03-14T19:25:01.706Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb . [ 63%] +[2024-03-14T19:25:05.877Z] ..... [ 65%] +[2024-03-14T19:25:14.577Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] +[2024-03-14T19:25:21.872Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...F.. [ 73%] +[2024-03-14T19:25:23.325Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 74%] +[2024-03-14T19:25:26.114Z] ...... [ 77%] +[2024-03-14T19:25:32.701Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb F [ 77%] +[2024-03-14T19:25:43.693Z] F.F.......... [ 83%] +[2024-03-14T19:25:51.805Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-03-14T19:26:10.516Z] .F..s [ 86%] +[2024-03-14T19:26:17.069Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 86%] +[2024-03-14T19:26:27.722Z] .F. [ 88%] +[2024-03-14T19:26:39.934Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 88%] +[2024-03-14T19:27:28.613Z] ...... [ 91%] +[2024-03-14T19:27:31.078Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-03-14T19:29:40.592Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-03-14T19:29:40.592Z] +[2024-03-14T19:29:40.592Z] =================================== FAILURES =================================== +[2024-03-14T19:29:40.592Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 5 __ +[2024-03-14T19:29:40.592Z] Notebook cell execution failed +[2024-03-14T19:29:40.592Z] Cell 5: Cell outputs differ +[2024-03-14T19:29:40.592Z] +[2024-03-14T19:29:40.592Z] Input: +[2024-03-14T19:29:40.592Z] ds = xr.open_dataset( +[2024-03-14T19:29:40.592Z] url, chunks=dict(realization=1, time=365, rlat=50 * 3, rlon=50 * 3) +[2024-03-14T19:29:40.592Z] ) +[2024-03-14T19:29:40.592Z] xclim.set_options(check_missing="pct", missing_options={"pct": {"tolerance": 0.05}}) +[2024-03-14T19:29:40.593Z] sdii = xclim.atmos.daily_pr_intensity(pr=ds.pr.sel(time="2000")) +[2024-03-14T19:29:40.593Z] sdii +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] Traceback: +[2024-03-14T19:29:40.593Z] Unexpected output fields from running code: {'stderr'} +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 8 __ +[2024-03-14T19:29:40.593Z] Notebook cell execution failed +[2024-03-14T19:29:40.593Z] Cell 8: Cell outputs differ +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] Input: +[2024-03-14T19:29:40.593Z] # Subset over the Montreal gridpoint +[2024-03-14T19:29:40.593Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) +[2024-03-14T19:29:40.593Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) +[2024-03-14T19:29:40.593Z] print("Input dataset for Montreal :") +[2024-03-14T19:29:40.593Z] display(pt) +[2024-03-14T19:29:40.593Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") +[2024-03-14T19:29:40.593Z] print("Maximim 1-day precipitation `lazy` output ..") +[2024-03-14T19:29:40.593Z] out +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] Traceback: +[2024-03-14T19:29:40.593Z] Unexpected output fields from running code: {'stderr'} +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 4 _ +[2024-03-14T19:29:40.593Z] Notebook cell execution failed +[2024-03-14T19:29:40.593Z] Cell 4: Cell outputs differ +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] Input: +[2024-03-14T19:29:40.593Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) +[2024-03-14T19:29:40.593Z] plt.title("Target regular grid"); +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] Traceback: +[2024-03-14T19:29:40.593Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-14T19:29:40.593Z]
+[2024-03-14T19:29:40.593Z] ============ disagrees with newly computed (test) output: +[2024-03-14T19:29:40.593Z] Text(0.5, 1.0, 'Target regular grid') +[2024-03-14T19:29:40.593Z]
+[2024-03-14T19:29:40.593Z] >>>>>>>>>>>> +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 6 _ +[2024-03-14T19:29:40.593Z] Notebook cell execution failed +[2024-03-14T19:29:40.593Z] Cell 6: Cell outputs differ +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] Input: +[2024-03-14T19:29:40.593Z] reg_bil = xe.Regridder(ds_in, ds_tgt, "bilinear") +[2024-03-14T19:29:40.593Z] reg_bil # Show information about the regridding +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] Traceback: +[2024-03-14T19:29:40.593Z] Missing output fields from running code: {'stderr'} +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 7 _ +[2024-03-14T19:29:40.593Z] Notebook cell execution failed +[2024-03-14T19:29:40.593Z] Cell 7: Cell outputs differ +[2024-03-14T19:29:40.593Z] +[2024-03-14T19:29:40.593Z] Input: +[2024-03-14T19:29:40.594Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. +[2024-03-14T19:29:40.594Z] warnings.filterwarnings("ignore", category=FutureWarning) +[2024-03-14T19:29:40.594Z] +[2024-03-14T19:29:40.594Z] # Apply the regridding weights to the input sea ice concentration data +[2024-03-14T19:29:40.594Z] sic_bil = reg_bil(ds_in.siconc) +[2024-03-14T19:29:40.594Z] +[2024-03-14T19:29:40.594Z] # Plot the results +[2024-03-14T19:29:40.594Z] sic_bil.isel(time=0).plot(cmap=cmap) +[2024-03-14T19:29:40.594Z] plt.title("Regridded sic data (Jan 2020)"); +[2024-03-14T19:29:40.594Z] +[2024-03-14T19:29:40.594Z] Traceback: +[2024-03-14T19:29:40.594Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-14T19:29:40.594Z]
+[2024-03-14T19:29:40.594Z] ============ disagrees with newly computed (test) output: +[2024-03-14T19:29:40.594Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') +[2024-03-14T19:29:40.594Z]
+[2024-03-14T19:29:40.594Z] >>>>>>>>>>>> +[2024-03-14T19:29:40.594Z] +[2024-03-14T19:29:40.594Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 20 _ +[2024-03-14T19:29:40.594Z] Notebook cell execution failed +[2024-03-14T19:29:40.594Z] Cell 20: Cell outputs differ +[2024-03-14T19:29:40.594Z] +[2024-03-14T19:29:40.594Z] Input: +[2024-03-14T19:29:40.594Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") +[2024-03-14T19:29:40.594Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) +[2024-03-14T19:29:40.594Z] +[2024-03-14T19:29:40.594Z] fig, ax = plt.subplots(figsize=(6, 4)) +[2024-03-14T19:29:40.594Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) +[2024-03-14T19:29:40.594Z] ax.set_xlim(210, 320) +[2024-03-14T19:29:40.594Z] ax.set_ylim(38, 86) +[2024-03-14T19:29:40.594Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") +[2024-03-14T19:29:40.594Z] ax.annotate( +[2024-03-14T19:29:40.594Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", +[2024-03-14T19:29:40.594Z] (280, 40), +[2024-03-14T19:29:40.594Z] xytext=(1.3, 0.3), +[2024-03-14T19:29:40.594Z] xycoords="data", +[2024-03-14T19:29:40.594Z] textcoords="axes fraction", +[2024-03-14T19:29:40.594Z] fontsize="x-large", +[2024-03-14T19:29:40.594Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), +[2024-03-14T19:29:40.594Z] ); +[2024-03-14T19:29:40.594Z] +[2024-03-14T19:29:40.594Z] Traceback: +[2024-03-14T19:29:40.594Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-14T19:29:40.594Z]
+[2024-03-14T19:29:40.595Z] ============ disagrees with newly computed (test) output: +[2024-03-14T19:29:40.595Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') +[2024-03-14T19:29:40.595Z]
+[2024-03-14T19:29:40.595Z] >>>>>>>>>>>> +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 27 _ +[2024-03-14T19:29:40.595Z] Notebook cell execution failed +[2024-03-14T19:29:40.595Z] Cell 27: Cell outputs differ +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] Input: +[2024-03-14T19:29:40.595Z] # Now we can plot easily the results as a choropleth map! +[2024-03-14T19:29:40.595Z] ax = shapes_data.plot( +[2024-03-14T19:29:40.595Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} +[2024-03-14T19:29:40.595Z] ) +[2024-03-14T19:29:40.595Z] ax.set_ylabel("Latitude") +[2024-03-14T19:29:40.595Z] ax.set_xlabel("Longitude"); +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] Traceback: +[2024-03-14T19:29:40.595Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-14T19:29:40.595Z]
+[2024-03-14T19:29:40.595Z] ============ disagrees with newly computed (test) output: +[2024-03-14T19:29:40.595Z] Text(0.5, 91.20243008191655, 'Longitude') +[2024-03-14T19:29:40.595Z]
+[2024-03-14T19:29:40.595Z] >>>>>>>>>>>> +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb::Cell 14 _ +[2024-03-14T19:29:40.595Z] Notebook cell execution failed +[2024-03-14T19:29:40.595Z] Cell 14: Cell outputs differ +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] Input: +[2024-03-14T19:29:40.595Z] lon0 = float(bounds.minx) +[2024-03-14T19:29:40.595Z] lon1 = float(bounds.maxx) +[2024-03-14T19:29:40.595Z] lat0 = float(bounds.miny) +[2024-03-14T19:29:40.595Z] lat1 = float(bounds.maxy) +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] result_tasmin = finch.subset_bbox( +[2024-03-14T19:29:40.595Z] resource=data, +[2024-03-14T19:29:40.595Z] variable="tasmin", +[2024-03-14T19:29:40.595Z] lon0=lon0, +[2024-03-14T19:29:40.595Z] lon1=lon1, +[2024-03-14T19:29:40.595Z] lat0=lat0, +[2024-03-14T19:29:40.595Z] lat1=lat1, +[2024-03-14T19:29:40.595Z] start_date="1958-01-01", +[2024-03-14T19:29:40.595Z] end_date="1958-12-31", +[2024-03-14T19:29:40.595Z] ) +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] Traceback: +[2024-03-14T19:29:40.595Z]  mismatch 'stderr' +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] assert reference_output == test_output failed: +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] '/tmp/ipykern...ounds.maxy)\n' == '/tmp/ipykern...ounds.maxy)\n' +[2024-03-14T19:29:40.595Z] +[2024-03-14T19:29:40.595Z] Skipping 179 identical trailing characters in diff, use -v to show +[2024-03-14T19:29:40.595Z] - /tmp/ipykernel_1027/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-14T19:29:40.596Z] ? ^^ +[2024-03-14T19:29:40.596Z] + /tmp/ipykernel_1086/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-14T19:29:40.596Z] ? ^^ +[2024-03-14T19:29:40.596Z] lon0 = float(bounds.minx) +[2024-03-14T19:29:40.596Z] - /tmp/ipykernel_1027/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-14T19:29:40.596Z] ? ^^ +[2024-03-14T19:29:40.596Z] + /tmp/ipykernel_1086/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-14T19:29:40.596Z] ? ^^ +[2024-03-14T19:29:40.596Z] lon1 = float(bounds.maxx) +[2024-03-14T19:29:40.596Z] - /tmp/ipykernel_1027/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-14T19:29:40.596Z] ? ^^ +[2024-03-14T19:29:40.596Z] + /tmp/ipykernel_1086/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-14T19:29:40.596Z] ? ^^ +[2024-03-14T19:29:40.596Z] lat0 = float(bounds.miny) +[2024-03-14T19:29:40.596Z] - /tmp/ipykernel_1027/85701396 +[2024-03-14T19:29:40.596Z] ? ^^ +[2024-03-14T19:29:40.596Z] + /tmp/ipykernel_1086/85701396 +[2024-03-14T19:29:40.596Z] ? ^^ +[2024-03-14T19:29:40.596Z]  +[2024-03-14T19:29:40.596Z] +[2024-03-14T19:29:40.596Z] _________ finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 _________ +[2024-03-14T19:29:40.596Z] Notebook cell execution failed +[2024-03-14T19:29:40.596Z] Cell 3: Cell outputs differ +[2024-03-14T19:29:40.596Z] +[2024-03-14T19:29:40.596Z] Input: +[2024-03-14T19:29:40.596Z] print("Process status: ", resp.status) +[2024-03-14T19:29:40.596Z] urls = resp.get() +[2024-03-14T19:29:40.596Z] print("Link to process output: ", urls.output) +[2024-03-14T19:29:40.596Z] +[2024-03-14T19:29:40.596Z] Traceback: +[2024-03-14T19:29:40.596Z]  mismatch 'stdout' +[2024-03-14T19:29:40.596Z] +[2024-03-14T19:29:40.596Z] assert reference_output == test_output failed: +[2024-03-14T19:29:40.596Z] +[2024-03-14T19:29:40.596Z] 'Process stat...20650101.nc\n' == 'Process stat...20650101.nc\n' +[2024-03-14T19:29:40.596Z] +[2024-03-14T19:29:40.596Z] Skipping 49 identical leading characters in diff, use -v to show +[2024-03-14T19:29:40.597Z] - output: https://WPS_HOST/wpsoutputs/STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc +[2024-03-14T19:29:40.597Z] ? --------------------------- +[2024-03-14T19:29:40.597Z] + output: /STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc +[2024-03-14T19:29:40.597Z]  +[2024-03-14T19:29:40.597Z] +[2024-03-14T19:29:40.597Z] _ PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 _ +[2024-03-14T19:29:40.597Z] Notebook cell execution failed +[2024-03-14T19:29:40.597Z] Cell 0: Cell outputs differ +[2024-03-14T19:29:40.597Z] +[2024-03-14T19:29:40.597Z] Input: +[2024-03-14T19:29:40.597Z] import warnings +[2024-03-14T19:29:40.597Z] +[2024-03-14T19:29:40.597Z] import xarray as xr +[2024-03-14T19:29:40.597Z] from IPython.display import display # Fancy representation of xarray objects +[2024-03-14T19:29:40.597Z] from siphon.catalog import TDSCatalog +[2024-03-14T19:29:40.597Z] +[2024-03-14T19:29:40.597Z] warnings.simplefilter("ignore") +[2024-03-14T19:29:40.597Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA +[2024-03-14T19:29:40.597Z] +[2024-03-14T19:29:40.597Z] # Create Catalog +[2024-03-14T19:29:40.597Z] cat = TDSCatalog(url) +[2024-03-14T19:29:40.597Z] +[2024-03-14T19:29:40.597Z] # DAP link for this demo +[2024-03-14T19:29:40.597Z] ds_url = cat.datasets[0].access_urls["OPENDAP"] +[2024-03-14T19:29:40.597Z] +[2024-03-14T19:29:40.597Z] # xarray.Dataset +[2024-03-14T19:29:40.597Z] ds = xr.open_dataset(ds_url, chunks=dict(time=256 * 2, lon=32, lat=32)) +[2024-03-14T19:29:40.597Z] display(ds) +[2024-03-14T19:29:40.598Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) +[2024-03-14T19:29:40.598Z] +[2024-03-14T19:29:40.598Z] Traceback: +[2024-03-14T19:29:40.598Z]  mismatch 'text/plain' +[2024-03-14T19:29:40.598Z] +[2024-03-14T19:29:40.598Z] assert reference_output == test_output failed: +[2024-03-14T19:29:40.598Z] +[2024-03-14T19:29:40.598Z] ' 20 plt.title(pos_f.description.split(".")[0]) +[2024-03-14T19:29:40.602Z]  22 display() +[2024-03-14T19:29:40.602Z] +[2024-03-14T19:29:40.602Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-03-14T19:29:40.602Z]  275 with suppress(KeyError): +[2024-03-14T19:29:40.602Z]  276 return source[name] +[2024-03-14T19:29:40.602Z] --> 277 raise AttributeError( +[2024-03-14T19:29:40.602Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-03-14T19:29:40.602Z]  279 ) +[2024-03-14T19:29:40.602Z] +[2024-03-14T19:29:40.602Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-03-14T19:29:40.602Z] +[2024-03-14T19:29:40.602Z] =========================== short test summary info ============================ +[2024-03-14T19:29:40.602Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 5 +[2024-03-14T19:29:40.602Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 8 +[2024-03-14T19:29:40.602Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 4 +[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 6 +[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 7 +[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 20 +[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 27 +[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb::Cell 14 +[2024-03-14T19:29:40.603Z] FAILED finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 +[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 +[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 1 +[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 3 +[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 +[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-03-14T19:29:40.603Z] ============ 14 failed, 199 passed, 1 skipped in 641.45s (0:10:41) ============= +[2024-03-14T19:29:40.603Z] + EXIT_CODE=1 +[2024-03-14T19:29:40.603Z] + echo true +[2024-03-14T19:29:40.603Z] + tr [:upper:] [:lower:] +[2024-03-14T19:29:40.603Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-14T19:29:40.603Z] + [ xtrue = xtrue ] +[2024-03-14T19:29:40.603Z] + mkdir -p buildout +[2024-03-14T19:29:40.603Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-03-14T19:29:40.603Z] + filename=WCS_example.ipynb +[2024-03-14T19:29:40.603Z] + echo WCS_example.ipynb +[2024-03-14T19:29:40.603Z] + sed s/.ipynb$// +[2024-03-14T19:29:40.603Z] + filename=WCS_example +[2024-03-14T19:29:40.603Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-03-14T19:29:40.603Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-03-14T19:29:40.603Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-03-14T19:29:50.697Z] [NbConvertApp] Writing 143815 bytes to buildout/WCS_example.output.ipynb +[2024-03-14T19:29:50.697Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-03-14T19:29:50.697Z] + filename=WFS_example.ipynb +[2024-03-14T19:29:50.697Z] + + sed s/.ipynb$// +[2024-03-14T19:29:50.697Z] echo WFS_example.ipynb +[2024-03-14T19:29:50.697Z] + filename=WFS_example +[2024-03-14T19:29:50.697Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-03-14T19:29:50.698Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-03-14T19:29:51.636Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-03-14T19:30:01.635Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb +[2024-03-14T19:30:01.898Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-03-14T19:30:01.899Z] + filename=WMS_example.ipynb +[2024-03-14T19:30:01.899Z] + echo WMS_example.ipynb +[2024-03-14T19:30:01.899Z] + sed s/.ipynb$// +[2024-03-14T19:30:01.899Z] + filename=WMS_example +[2024-03-14T19:30:01.899Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-03-14T19:30:01.899Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-03-14T19:30:03.813Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-03-14T19:30:11.942Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb +[2024-03-14T19:30:11.943Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-03-14T19:30:11.943Z] + filename=climex.ipynb +[2024-03-14T19:30:11.943Z] + echo climex.ipynb +[2024-03-14T19:30:11.943Z] + sed s/.ipynb$// +[2024-03-14T19:30:11.943Z] + filename=climex +[2024-03-14T19:30:11.943Z] + [ -e buildout/climex.output.ipynb ] +[2024-03-14T19:30:11.943Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-03-14T19:30:13.333Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb to notebook +[2024-03-14T19:33:04.951Z] [NbConvertApp] Writing 1789572 bytes to buildout/climex.output.ipynb +[2024-03-14T19:33:04.952Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-14T19:33:04.952Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-03-14T19:33:04.952Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-03-14T19:33:04.952Z] + sed s/.ipynb$// +[2024-03-14T19:33:04.952Z] + filename=eccc-geoapi-climate-stations +[2024-03-14T19:33:04.952Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-03-14T19:33:04.952Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-14T19:33:04.952Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-03-14T19:33:10.237Z] [NbConvertApp] Writing 279164 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-03-14T19:33:10.237Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-14T19:33:10.237Z] + filename=eccc-geoapi-xclim.ipynb +[2024-03-14T19:33:10.496Z] + echo eccc-geoapi-xclim.ipynb +[2024-03-14T19:33:10.496Z] + sed s/.ipynb$// +[2024-03-14T19:33:10.496Z] + filename=eccc-geoapi-xclim +[2024-03-14T19:33:10.496Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-03-14T19:33:10.496Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-14T19:33:12.404Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-03-14T19:33:22.402Z] [NbConvertApp] Writing 108300 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-03-14T19:33:22.402Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-03-14T19:33:22.402Z] + filename=esgf-dap.ipynb +[2024-03-14T19:33:22.402Z] + + sed s/.ipynb$// +[2024-03-14T19:33:22.402Z] echo esgf-dap.ipynb +[2024-03-14T19:33:22.402Z] + filename=esgf-dap +[2024-03-14T19:33:22.402Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-03-14T19:33:22.402Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-03-14T19:33:22.664Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-03-14T19:33:30.798Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb +[2024-03-14T19:33:30.798Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-03-14T19:33:30.798Z] + filename=forecasts.ipynb +[2024-03-14T19:33:30.798Z] + echo forecasts.ipynb +[2024-03-14T19:33:30.798Z] + sed s/.ipynb$// +[2024-03-14T19:33:30.798Z] + filename=forecasts +[2024-03-14T19:33:30.798Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-03-14T19:33:30.798Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-03-14T19:33:32.177Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb to notebook +[2024-03-14T19:33:50.355Z] [NbConvertApp] Writing 181149 bytes to buildout/forecasts.output.ipynb +[2024-03-14T19:33:50.355Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-14T19:33:50.355Z] + filename=jupyter_extensions.ipynb +[2024-03-14T19:33:50.355Z] + echo jupyter_extensions.ipynb +[2024-03-14T19:33:50.355Z] + sed s/.ipynb$// +[2024-03-14T19:33:50.355Z] + filename=jupyter_extensions +[2024-03-14T19:33:50.355Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-03-14T19:33:50.355Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-14T19:33:51.293Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-03-14T19:33:53.210Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb +[2024-03-14T19:33:53.210Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-03-14T19:33:53.210Z] + filename=opendap.ipynb +[2024-03-14T19:33:53.210Z] + sed s/.ipynb$// +[2024-03-14T19:33:53.210Z] + echo opendap.ipynb +[2024-03-14T19:33:53.210Z] + filename=opendap +[2024-03-14T19:33:53.210Z] + [ -e buildout/opendap.output.ipynb ] +[2024-03-14T19:33:53.210Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-03-14T19:33:55.120Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb to notebook +[2024-03-14T19:34:00.404Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb +[2024-03-14T19:34:00.404Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-14T19:34:00.405Z] + filename=pavics_thredds.ipynb +[2024-03-14T19:34:00.405Z] + echo pavics_thredds.ipynb +[2024-03-14T19:34:00.405Z] + sed s/.ipynb$// +[2024-03-14T19:34:00.405Z] + filename=pavics_thredds +[2024-03-14T19:34:00.405Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-03-14T19:34:00.405Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-14T19:34:01.791Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-03-14T19:34:05.083Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-14T19:34:05.083Z] context: Access to service is forbidden. +[2024-03-14T19:34:05.345Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-14T19:34:05.345Z] context: Access to service is forbidden. +[2024-03-14T19:34:08.643Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb +[2024-03-14T19:34:08.643Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-03-14T19:34:08.643Z] + filename=regridding.ipynb +[2024-03-14T19:34:08.643Z] + echo regridding.ipynb +[2024-03-14T19:34:08.643Z] + sed s/.ipynb$// +[2024-03-14T19:34:08.643Z] + filename=regridding +[2024-03-14T19:34:08.643Z] + [ -e buildout/regridding.output.ipynb ] +[2024-03-14T19:34:08.643Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-03-14T19:34:10.553Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb to notebook +[2024-03-14T19:35:47.053Z] [NbConvertApp] Writing 1239791 bytes to buildout/regridding.output.ipynb +[2024-03-14T19:35:47.053Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-03-14T19:35:47.053Z] + filename=rendering.ipynb +[2024-03-14T19:35:47.053Z] + + sed s/.ipynb$// +[2024-03-14T19:35:47.053Z] echo rendering.ipynb +[2024-03-14T19:35:47.053Z] + filename=rendering +[2024-03-14T19:35:47.053Z] + [ -e buildout/rendering.output.ipynb ] +[2024-03-14T19:35:47.053Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-03-14T19:35:47.381Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb to notebook +[2024-03-14T19:35:51.592Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb +[2024-03-14T19:35:51.592Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-03-14T19:35:51.592Z] + filename=subset-user-input.ipynb +[2024-03-14T19:35:51.592Z] + echo subset-user-input.ipynb +[2024-03-14T19:35:51.592Z] + sed s/.ipynb$// +[2024-03-14T19:35:51.592Z] + filename=subset-user-input +[2024-03-14T19:35:51.592Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-03-14T19:35:51.592Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-03-14T19:35:52.975Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-03-14T19:36:14.939Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb +[2024-03-14T19:36:14.939Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-03-14T19:36:14.939Z] + filename=subsetting.ipynb +[2024-03-14T19:36:14.939Z] + echo subsetting.ipynb +[2024-03-14T19:36:14.939Z] + sed s/.ipynb$// +[2024-03-14T19:36:14.939Z] + filename=subsetting +[2024-03-14T19:36:14.939Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-03-14T19:36:14.939Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-03-14T19:36:14.939Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb to notebook +[2024-03-14T19:36:23.064Z] [NbConvertApp] Writing 93314 bytes to buildout/subsetting.output.ipynb +[2024-03-14T19:36:23.064Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-14T19:36:23.064Z] + filename=dap_subset.ipynb +[2024-03-14T19:36:23.064Z] + + sed s/.ipynb$// +[2024-03-14T19:36:23.064Z] echo dap_subset.ipynb +[2024-03-14T19:36:23.064Z] + filename=dap_subset +[2024-03-14T19:36:23.064Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-03-14T19:36:23.064Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-14T19:36:24.968Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-03-14T19:36:34.952Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb +[2024-03-14T19:36:34.952Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-14T19:36:34.952Z] + filename=finch-usage.ipynb +[2024-03-14T19:36:34.952Z] + echo finch-usage.ipynb +[2024-03-14T19:36:34.952Z] + sed s/.ipynb$// +[2024-03-14T19:36:34.952Z] + filename=finch-usage +[2024-03-14T19:36:34.952Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-03-14T19:36:34.952Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-14T19:36:35.519Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-03-14T19:36:45.582Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb +[2024-03-14T19:36:45.582Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-14T19:36:45.582Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-14T19:36:45.582Z] + + sed s/.ipynb$// +[2024-03-14T19:36:45.582Z] echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-14T19:36:45.582Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-03-14T19:36:45.582Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-03-14T19:36:45.582Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-14T19:36:46.532Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-03-14T19:36:51.817Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-03-14T19:36:51.818Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-14T19:36:51.818Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-14T19:36:51.818Z] + + sed s/.ipynb$// +[2024-03-14T19:36:51.818Z] echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-14T19:36:51.818Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-03-14T19:36:51.818Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-03-14T19:36:51.818Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-14T19:36:53.726Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-03-14T19:37:15.675Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-03-14T19:37:15.675Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-14T19:37:15.675Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-14T19:37:15.675Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-14T19:37:15.675Z] + sed s/.ipynb$// +[2024-03-14T19:37:15.675Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-03-14T19:37:15.675Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-03-14T19:37:15.675Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-14T19:37:15.675Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-03-14T19:41:52.321Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). +[2024-03-14T19:41:52.321Z] Traceback (most recent call last): +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply +[2024-03-14T19:41:52.321Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async +[2024-03-14T19:41:52.321Z] result = await obj +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg +[2024-03-14T19:41:52.321Z] raise Empty +[2024-03-14T19:41:52.321Z] _queue.Empty +[2024-03-14T19:41:52.321Z] +[2024-03-14T19:41:52.321Z] During handling of the above exception, another exception occurred: +[2024-03-14T19:41:52.321Z] +[2024-03-14T19:41:52.321Z] Traceback (most recent call last): +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-03-14T19:41:52.321Z] sys.exit(main()) +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance +[2024-03-14T19:41:52.321Z] super().launch_instance(argv=argv, **kwargs) +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance +[2024-03-14T19:41:52.321Z] app.start() +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start +[2024-03-14T19:41:52.321Z] self.convert_notebooks() +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks +[2024-03-14T19:41:52.321Z] self.convert_single_notebook(notebook_filename) +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook +[2024-03-14T19:41:52.321Z] output, resources = self.export_single_notebook( +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook +[2024-03-14T19:41:52.321Z] output, resources = self.exporter.from_filename( +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-03-14T19:41:52.321Z] return self.from_file(f, resources=resources, **kw) +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-03-14T19:41:52.321Z] return self.from_notebook_node( +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-03-14T19:41:52.321Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-03-14T19:41:52.321Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess +[2024-03-14T19:41:52.321Z] nbc, resc = preprocessor(nbc, resc) +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-03-14T19:41:52.321Z] return self.preprocess(nb, resources) +[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess +[2024-03-14T19:41:52.321Z] self.preprocess_cell(cell, resources, index) +[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell +[2024-03-14T19:41:52.322Z] cell = self.execute_cell(cell, index, store_history=True) +[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped +[2024-03-14T19:41:52.322Z] return loop.run_until_complete(inner) +[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-03-14T19:41:52.322Z] return future.result() +[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell +[2024-03-14T19:41:52.322Z] exec_reply = await self.task_poll_for_reply +[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply +[2024-03-14T19:41:52.322Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) +[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout +[2024-03-14T19:41:52.322Z] raise CellTimeoutError.error_from_timeout_and_cell( +[2024-03-14T19:41:52.322Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. +[2024-03-14T19:41:52.322Z] The message was: Cell execution timed out. +[2024-03-14T19:41:52.322Z] Here is a preview of the cell contents: +[2024-03-14T19:41:52.322Z] ------------------- +[2024-03-14T19:41:52.322Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] +[2024-03-14T19:41:52.322Z] ... +[2024-03-14T19:41:52.322Z] [' print("finished")', ' ', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] +[2024-03-14T19:41:52.322Z] ------------------- +[2024-03-14T19:41:52.322Z] +[2024-03-14T19:41:52.322Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-14T19:41:52.322Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-14T19:41:52.322Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-14T19:41:52.322Z] + sed s/.ipynb$// +[2024-03-14T19:41:52.322Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-03-14T19:41:52.322Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-03-14T19:41:52.322Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-14T19:41:52.322Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-03-14T19:42:04.531Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-03-14T19:42:04.531Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-14T19:42:04.531Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-14T19:42:04.531Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-14T19:42:04.531Z] + sed s/.ipynb$// +[2024-03-14T19:42:04.531Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-03-14T19:42:04.531Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-03-14T19:42:04.531Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-14T19:42:04.791Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-03-14T19:43:12.486Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-03-14T19:43:12.486Z] + basename notebooks/hummingbird.ipynb +[2024-03-14T19:43:12.486Z] + filename=hummingbird.ipynb +[2024-03-14T19:43:12.486Z] + echo hummingbird.ipynb +[2024-03-14T19:43:12.486Z] + sed s/.ipynb$// +[2024-03-14T19:43:12.486Z] + filename=hummingbird +[2024-03-14T19:43:12.487Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-03-14T19:43:12.487Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-03-14T19:43:12.487Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-03-14T19:43:12.487Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb +[2024-03-14T19:43:12.487Z] + basename notebooks/stress-tests.ipynb +[2024-03-14T19:43:12.487Z] + filename=stress-tests.ipynb +[2024-03-14T19:43:12.487Z] + echo stress-tests.ipynb +[2024-03-14T19:43:12.487Z] + sed s/.ipynb$// +[2024-03-14T19:43:12.487Z] + filename=stress-tests +[2024-03-14T19:43:12.487Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-03-14T19:43:12.487Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-03-14T19:43:12.746Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-03-14T19:45:19.290Z] [NbConvertApp] Writing 428650 bytes to buildout/stress-tests.output.ipynb +[2024-03-14T19:45:19.290Z] + exit 1 +[2024-03-14T19:45:19.290Z] + EXIT_CODE=1 +[2024-03-14T19:45:19.291Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-14T19:45:19.291Z] + mkdir -p buildout/env-dump +[2024-03-14T19:45:19.291Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-14T19:45:19.291Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-14T19:45:19.291Z] + conda env export -n birdy +[2024-03-14T19:45:31.514Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-14T19:45:31.514Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-14T19:45:31.514Z] + conda list -n birdy --explicit +[2024-03-14T19:45:41.479Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-14T19:45:41.479Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-14T19:45:41.479Z] + pip freeze +[2024-03-14T19:45:41.743Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -2026,41 +1217,41 @@ $ docker top 1ad88c247d92c4cfa1d3dabc611c63315f1739785abb52f7068ef9d8ba0d7ee7 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-07T02:51:34.877Z] Archiving artifacts -[2024-03-07T02:51:34.995Z] Recording fingerprints +[2024-03-14T19:45:43.529Z] Archiving artifacts +[2024-03-14T19:45:43.553Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:35.535Z] Archiving artifacts -[2024-03-07T02:51:37.824Z] Recording fingerprints +[2024-03-14T19:45:43.733Z] Archiving artifacts +[2024-03-14T19:45:44.384Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:39.358Z] Archiving artifacts -[2024-03-07T02:51:39.580Z] Recording fingerprints +[2024-03-14T19:45:45.163Z] Archiving artifacts +[2024-03-14T19:45:45.353Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:39.858Z] Archiving artifacts -[2024-03-07T02:51:39.878Z] Recording fingerprints +[2024-03-14T19:45:45.659Z] Archiving artifacts +[2024-03-14T19:45:45.678Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:39.910Z] Archiving artifacts -[2024-03-07T02:51:40.052Z] Recording fingerprints +[2024-03-14T19:45:45.764Z] Archiving artifacts +[2024-03-14T19:45:45.894Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:40.301Z] Archiving artifacts -[2024-03-07T02:51:40.347Z] Recording fingerprints +[2024-03-14T19:45:45.955Z] Archiving artifacts +[2024-03-14T19:45:45.994Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:41.320Z] Archiving artifacts -[2024-03-07T02:51:41.580Z] Recording fingerprints +[2024-03-14T19:45:47.773Z] Archiving artifacts +[2024-03-14T19:45:47.948Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:41.683Z] Archiving artifacts -[2024-03-07T02:51:41.722Z] Recording fingerprints +[2024-03-14T19:45:48.007Z] Archiving artifacts +[2024-03-14T19:45:48.057Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:42.227Z] Archiving artifacts -[2024-03-07T02:51:42.613Z] Recording fingerprints +[2024-03-14T19:45:48.222Z] Archiving artifacts +[2024-03-14T19:45:48.579Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:43.004Z] Archiving artifacts -[2024-03-07T02:51:43.753Z] Recording fingerprints +[2024-03-14T19:45:49.566Z] Archiving artifacts +[2024-03-14T19:45:50.520Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T02:51:46.078Z] Archiving artifacts -[2024-03-07T02:51:46.217Z] Recording fingerprints +[2024-03-14T19:45:56.128Z] Archiving artifacts +[2024-03-14T19:45:56.146Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-07T02:51:46.920Z] Sending e-mails to: vu.long@ouranos.ca +[2024-03-14T19:45:56.336Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -2070,8 +1261,8 @@ $ docker top 1ad88c247d92c4cfa1d3dabc611c63315f1739785abb52f7068ef9d8ba0d7ee7 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 1ad88c247d92c4cfa1d3dabc611c63315f1739785abb52f7068ef9d8ba0d7ee7 -$ docker rm -f 1ad88c247d92c4cfa1d3dabc611c63315f1739785abb52f7068ef9d8ba0d7ee7 +$ docker stop --time=1 9daac0be1774778111989f5fb4bfbd66cd47d496c133be5d02c08474feb6830b +$ docker rm -f 9daac0be1774778111989f5fb4bfbd66cd47d496c133be5d02c08474feb6830b [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index 780eae9..1c57860 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -11,15 +11,16 @@ Seen branch in repository origin/current-production-version Seen branch in repository origin/devel-new-extensions Seen branch in repository origin/extended_tests Seen branch in repository origin/master +Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 7 remote branches -Obtained Jenkinsfile from daaa4896c7358eff3a7bd6434617b4af06c89e42 +Seen 8 remote branches +Obtained Jenkinsfile from 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -27,17845 +28,2256 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags +Checking out Revision 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f (new-docker-build) +Commit message: "release: update to use image pavics/workflow-tests:py310-240312" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision daaa4896c7358eff3a7bd6434617b4af06c89e42 (new-docker-build) -Commit message: "docker: attempt to fix "Plugin 'jupyterlab_dash' is already registered."" > git config core.sparsecheckout # timeout=10 - > git checkout -f daaa4896c7358eff3a7bd6434617b4af06c89e42 # timeout=10 - > git rev-list --no-walk 4f2c0995711f5b6db82991065a652ea056778a2a # timeout=10 + > git checkout -f 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f # timeout=10 + > git rev-list --no-walk 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240306 ++ docker inspect -f . pavics/workflow-tests:py310-240312 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240306 cat -$ docker top b411d488c542a4bdbdc744f27a68a543433da316133264e74a522e46b73d9a9b -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240312 cat +$ docker top 79c3fe0822c47e861fa6c0d57168d64385acf39f8343c4eb14af36bde8510ee6 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-07T16:13:25.647Z] Timeout set to expire in 2 hr 0 min +[2024-03-14T18:12:22.784Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-07T16:13:26.356Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-03-14T18:12:22.992Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-07T16:13:26.938Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-07T16:13:26.938Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-07T16:13:26.938Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-07T16:13:26.938Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-07T16:13:26.938Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-07T16:13:26.938Z] FINCH_BRANCH has been set to 'master' -[2024-03-07T16:13:26.938Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-07T16:13:26.938Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-07T16:13:26.938Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-07T16:13:26.938Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-07T16:13:26.938Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-07T16:13:26.938Z] RAVEN_BRANCH has been set to 'main' -[2024-03-07T16:13:26.938Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-07T16:13:26.938Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-07T16:13:26.938Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-07T16:13:26.938Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-07T16:13:26.938Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-07T16:13:26.938Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-07T16:13:26.938Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-07T16:13:26.938Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-07T16:13:26.938Z] + git clean -fdx -[2024-03-07T16:13:27.874Z] Removing .pytest_cache/ -[2024-03-07T16:13:27.874Z] Removing PAVICS-landing-master/ -[2024-03-07T16:13:27.874Z] Removing RavenPy-master/ -[2024-03-07T16:13:27.874Z] Removing __pycache__/ -[2024-03-07T16:13:27.874Z] Removing buildout/ -[2024-03-07T16:13:27.874Z] Removing esgf-compute-api-devel/ -[2024-03-07T16:13:27.874Z] Removing finch-master/ -[2024-03-07T16:13:27.874Z] Removing pavics-sdi-master/ -[2024-03-07T16:13:27.874Z] Removing raven-master/ -[2024-03-07T16:13:27.874Z] + ./downloadrepos -[2024-03-07T16:13:28.135Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-07T16:13:28.135Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-07T16:13:28.135Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-07T16:13:28.135Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-07T16:13:28.135Z] FINCH_BRANCH has been set to 'master' -[2024-03-07T16:13:28.135Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-07T16:13:28.135Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-07T16:13:28.135Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-07T16:13:28.135Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-07T16:13:28.135Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-07T16:13:28.135Z] RAVEN_BRANCH has been set to 'main' -[2024-03-07T16:13:28.135Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-07T16:13:28.135Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-07T16:13:28.135Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-07T16:13:28.135Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-07T16:13:28.135Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-07T16:13:28.135Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-07T16:13:28.135Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-07T16:13:28.135Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-07T16:13:28.135Z] + rm -rf pavics-sdi-* -[2024-03-07T16:13:28.135Z] + ls -[2024-03-07T16:13:28.135Z] + grep pavics-sdi -[2024-03-07T16:13:28.135Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-03-07T16:13:28.135Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-07T16:13:28.135Z] + shift -[2024-03-07T16:13:28.135Z] + branch=master -[2024-03-07T16:13:28.135Z] + shift -[2024-03-07T16:13:28.135Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-03-07T16:13:28.135Z] + tar xz -[2024-03-07T16:13:32.315Z] + ls -[2024-03-07T16:13:32.315Z] + grep pavics-sdi -[2024-03-07T16:13:32.315Z] pavics-sdi-master -[2024-03-07T16:13:32.315Z] + set +x -[2024-03-07T16:13:32.315Z] + rm -rf finch-* -[2024-03-07T16:13:32.315Z] + ls -[2024-03-07T16:13:32.315Z] + grep finch -[2024-03-07T16:13:32.315Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-07T16:13:32.315Z] + github_repo=https://github.com/bird-house/finch -[2024-03-07T16:13:32.315Z] + shift -[2024-03-07T16:13:32.315Z] + branch=master -[2024-03-07T16:13:32.315Z] + shift -[2024-03-07T16:13:32.315Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-03-07T16:13:32.315Z] + tar xz -[2024-03-07T16:13:34.205Z] + ls -[2024-03-07T16:13:34.205Z] + grep finch -[2024-03-07T16:13:34.205Z] finch-master -[2024-03-07T16:13:34.205Z] + set +x -[2024-03-07T16:13:34.205Z] + rm -rf PAVICS-landing-* -[2024-03-07T16:13:34.205Z] + ls -[2024-03-07T16:13:34.205Z] + grep PAVICS-landing -[2024-03-07T16:13:34.205Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-03-07T16:13:34.205Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-07T16:13:34.205Z] + shift -[2024-03-07T16:13:34.205Z] + branch=master -[2024-03-07T16:13:34.205Z] + shift -[2024-03-07T16:13:34.205Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-03-07T16:13:34.205Z] + tar xz -[2024-03-07T16:13:49.067Z] + grep PAVICS-landing -[2024-03-07T16:13:49.067Z] + ls -[2024-03-07T16:13:49.067Z] PAVICS-landing-master -[2024-03-07T16:13:49.067Z] + set +x -[2024-03-07T16:13:49.067Z] + rm -rf raven-* -[2024-03-07T16:13:49.067Z] + ls -[2024-03-07T16:13:49.067Z] + grep raven -[2024-03-07T16:13:49.067Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-07T16:13:49.067Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-07T16:13:49.067Z] + shift -[2024-03-07T16:13:49.067Z] + branch=main -[2024-03-07T16:13:49.067Z] + shift -[2024-03-07T16:13:49.067Z] + tar xz -[2024-03-07T16:13:49.067Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-07T16:13:49.067Z] + ls -[2024-03-07T16:13:49.067Z] + grep raven -[2024-03-07T16:13:49.067Z] raven-main -[2024-03-07T16:13:49.067Z] + set +x -[2024-03-07T16:13:49.067Z] + rm -rf RavenPy-* -[2024-03-07T16:13:49.067Z] + ls -[2024-03-07T16:13:49.067Z] + grep RavenPy -[2024-03-07T16:13:49.068Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-07T16:13:49.068Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-07T16:13:49.068Z] + shift -[2024-03-07T16:13:49.068Z] + branch=master -[2024-03-07T16:13:49.068Z] + shift -[2024-03-07T16:13:49.068Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-07T16:13:49.068Z] + tar xz -[2024-03-07T16:13:50.994Z] + ls -[2024-03-07T16:13:50.994Z] + grep RavenPy -[2024-03-07T16:13:50.994Z] RavenPy-master -[2024-03-07T16:13:50.994Z] + set +x -[2024-03-07T16:13:50.994Z] + rm -rf esgf-compute-api-* -[2024-03-07T16:13:50.994Z] + ls -[2024-03-07T16:13:50.994Z] + grep esgf-compute-api -[2024-03-07T16:13:50.994Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-07T16:13:50.994Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-07T16:13:50.994Z] + shift -[2024-03-07T16:13:50.994Z] + branch=devel -[2024-03-07T16:13:50.994Z] + shift -[2024-03-07T16:13:50.994Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-03-07T16:13:50.994Z] + tar xz -[2024-03-07T16:13:51.927Z] + ls -[2024-03-07T16:13:51.927Z] + grep esgf-compute-api -[2024-03-07T16:13:51.927Z] esgf-compute-api-devel -[2024-03-07T16:13:51.927Z] + set +x -[2024-03-07T16:13:51.927Z] + echo master -[2024-03-07T16:13:51.927Z] + sed s@/@-@g -[2024-03-07T16:13:51.927Z] + PAVICS_SDI_BRANCH=master -[2024-03-07T16:13:51.927Z] + echo Ouranosinc/pavics-sdi -[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g -[2024-03-07T16:13:51.927Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-07T16:13:51.927Z] + echo master -[2024-03-07T16:13:51.927Z] + sed s@/@-@g -[2024-03-07T16:13:51.927Z] + FINCH_BRANCH=master -[2024-03-07T16:13:51.927Z] + echo bird-house/finch -[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g -[2024-03-07T16:13:51.927Z] + FINCH_REPO_NAME=finch -[2024-03-07T16:13:51.927Z] + echo master -[2024-03-07T16:13:51.927Z] + sed s@/@-@g -[2024-03-07T16:13:51.927Z] + PAVICS_LANDING_BRANCH=master -[2024-03-07T16:13:51.927Z] + echo Ouranosinc/PAVICS-landing -[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g -[2024-03-07T16:13:51.927Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-07T16:13:51.927Z] + echo main -[2024-03-07T16:13:51.927Z] + sed s@/@-@g -[2024-03-07T16:13:51.927Z] + RAVEN_BRANCH=main -[2024-03-07T16:13:51.927Z] + echo Ouranosinc/raven -[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g -[2024-03-07T16:13:51.927Z] + RAVEN_REPO_NAME=raven -[2024-03-07T16:13:51.927Z] + echo master -[2024-03-07T16:13:51.927Z] + sed s@/@-@g -[2024-03-07T16:13:51.927Z] + RAVENPY_BRANCH=master -[2024-03-07T16:13:51.927Z] + echo CSHS-CWRA/RavenPy -[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g -[2024-03-07T16:13:51.927Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-07T16:13:51.927Z] + echo devel -[2024-03-07T16:13:51.927Z] + sed s@/@-@g -[2024-03-07T16:13:51.927Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-07T16:13:51.927Z] + echo ESGF/esgf-compute-api -[2024-03-07T16:13:51.927Z] + sed s@^.*/@@g -[2024-03-07T16:13:51.927Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-07T16:13:51.927Z] + echo pavics-sdi-master -[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:13:51.927Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-03-07T16:13:51.927Z] + echo finch-master -[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:13:51.927Z] + FINCH_DIR=finch-master -[2024-03-07T16:13:51.927Z] + echo PAVICS-landing-master -[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:13:51.927Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-03-07T16:13:51.927Z] + echo raven-main -[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:13:51.927Z] + RAVEN_DIR=raven-main -[2024-03-07T16:13:51.927Z] + echo RavenPy-master -[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:13:51.927Z] + RAVENPY_DIR=RavenPy-master -[2024-03-07T16:13:51.927Z] + echo esgf-compute-api-devel -[2024-03-07T16:13:51.927Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-07T16:13:51.927Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-07T16:13:51.927Z] + echo true -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + VERIFY_SSL=true -[2024-03-07T16:13:51.928Z] + [ xtrue = xfalse ] -[2024-03-07T16:13:51.928Z] + rm -v finch-master/setup.cfg -[2024-03-07T16:13:51.928Z] removed 'finch-master/setup.cfg' -[2024-03-07T16:13:51.928Z] + rm -v raven-main/setup.cfg -[2024-03-07T16:13:51.928Z] removed 'raven-main/setup.cfg' -[2024-03-07T16:13:51.928Z] + rm -v raven-main/pyproject.toml -[2024-03-07T16:13:51.928Z] removed 'raven-main/pyproject.toml' -[2024-03-07T16:13:51.928Z] + rm -v RavenPy-master/setup.cfg -[2024-03-07T16:13:51.928Z] removed 'RavenPy-master/setup.cfg' -[2024-03-07T16:13:51.928Z] + rm -v RavenPy-master/tox.ini -[2024-03-07T16:13:51.928Z] removed 'RavenPy-master/tox.ini' -[2024-03-07T16:13:51.928Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-07T16:13:51.928Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-07T16:13:51.928Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-07T16:13:51.928Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-07T16:13:51.928Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-07T16:13:51.928Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-07T16:13:51.928Z] + echo false -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + TEST_MAGPIE_AUTH=false -[2024-03-07T16:13:51.928Z] + echo false -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + TEST_PAVICS_SDI_REPO=false -[2024-03-07T16:13:51.928Z] + echo false -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-07T16:13:51.928Z] + echo false -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + TEST_FINCH_REPO=false -[2024-03-07T16:13:51.928Z] + echo false -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + TEST_PAVICS_LANDING_REPO=false -[2024-03-07T16:13:51.928Z] + echo true -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + TEST_RAVEN_REPO=true -[2024-03-07T16:13:51.928Z] + echo true -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + TEST_RAVENPY_REPO=true -[2024-03-07T16:13:51.928Z] + echo false -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-07T16:13:51.928Z] + echo true -[2024-03-07T16:13:51.928Z] + tr [:upper:] [:lower:] -[2024-03-07T16:13:51.928Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= -[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] -[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] -[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] -[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] -[2024-03-07T16:13:51.928Z] + [ xtrue = xtrue ] -[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-03-07T16:13:51.928Z] + [ xtrue = xtrue ] -[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-03-07T16:13:51.928Z] + [ xfalse = xtrue ] -[2024-03-07T16:13:51.928Z] + [ xtrue = xtrue ] -[2024-03-07T16:13:51.928Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb notebooks/*.ipynb -[2024-03-07T16:13:51.929Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb notebooks/*.ipynb -[2024-03-07T16:13:52.868Z] + [ -n ] -[2024-03-07T16:13:52.869Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-07T16:13:52.869Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-07T16:13:52.869Z] Will run notebooks against pavics.ouranos.ca -[2024-03-07T16:13:52.869Z] + [ -z ] -[2024-03-07T16:13:52.869Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-03-07T16:13:52.869Z] + git diff -[2024-03-07T16:13:52.869Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-07T16:13:52.869Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-03-07T16:13:55.397Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-07T16:13:55.397Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-07T16:13:55.657Z] ============================= test session starts ============================== -[2024-03-07T16:13:55.657Z] platform linux -- Python 3.10.13, pytest-8.0.2, pluggy-1.4.0 -[2024-03-07T16:13:55.658Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-03-07T16:13:55.658Z] plugins: anyio-4.3.0, dash-2.16.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-03-07T16:13:55.658Z] collected 260 items -[2024-03-07T16:13:55.658Z] -[2024-03-07T16:14:08.222Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-03-07T16:14:08.787Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 3%] -[2024-03-07T16:14:25.264Z] ...... [ 6%] -[2024-03-07T16:14:27.176Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 8%] -[2024-03-07T16:14:27.176Z] [ 8%] -[2024-03-07T16:14:29.340Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-03-07T16:14:37.490Z] .... [ 11%] -[2024-03-07T16:14:42.769Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 11%] -[2024-03-07T16:15:02.732Z] ....FFFF.FF.F [ 16%] -[2024-03-07T16:15:44.192Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb .......FF [ 20%] -[2024-03-07T16:16:53.095Z] .F [ 21%] -[2024-03-07T16:16:57.313Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 22%] -[2024-03-07T16:17:06.117Z] ..FFFFFFFF....... [ 28%] -[2024-03-07T16:17:12.852Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 29%] -[2024-03-07T16:17:23.593Z] ........... [ 33%] -[2024-03-07T16:18:31.320Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb EEEEEE [ 36%] -[2024-03-07T16:18:33.849Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 36%] -[2024-03-07T16:18:39.401Z] ..... [ 38%] -[2024-03-07T16:18:40.792Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 38%] -[2024-03-07T16:23:23.421Z] ................. [ 45%] -[2024-03-07T16:23:28.684Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 45%] -[2024-03-07T16:23:36.774Z] .... [ 47%] -[2024-03-07T16:24:43.383Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 50%] -[2024-03-07T16:24:53.347Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 51%] -[2024-03-07T16:25:25.528Z] ...... [ 53%] -[2024-03-07T16:25:33.698Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 53%] -[2024-03-07T16:25:42.619Z] ....... [ 56%] -[2024-03-07T16:25:50.216Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 58%] -[2024-03-07T16:26:10.180Z] .... [ 59%] -[2024-03-07T16:26:18.296Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 60%] -[2024-03-07T16:26:37.635Z] ....... [ 62%] -[2024-03-07T16:26:40.917Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 63%] -[2024-03-07T16:27:07.198Z] ....... [ 65%] -[2024-03-07T16:27:11.406Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 67%] -[2024-03-07T16:27:22.067Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 68%] -[2024-03-07T16:27:29.300Z] .... [ 69%] -[2024-03-07T16:28:22.345Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 70%] -[2024-03-07T16:28:52.833Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 73%] -[2024-03-07T16:28:52.833Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 73%] -[2024-03-07T16:29:06.683Z] ............. [ 78%] -[2024-03-07T16:29:26.895Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 80%] -[2024-03-07T16:29:33.984Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 85%] -[2024-03-07T16:29:43.961Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 85%] -[2024-03-07T16:31:04.765Z] ......FFFFFFFFFFFFFF [ 93%] -[2024-03-07T16:31:07.197Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-03-07T16:33:08.625Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] ==================================== ERRORS ==================================== -[2024-03-07T16:33:08.625Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 0 _ -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] cls = -[2024-03-07T16:33:08.625Z] func = . at 0x7f0abbb0b520> -[2024-03-07T16:33:08.625Z] when = 'setup' -[2024-03-07T16:33:08.625Z] reraise = (, ) -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] @classmethod -[2024-03-07T16:33:08.625Z] def from_call( -[2024-03-07T16:33:08.625Z] cls, -[2024-03-07T16:33:08.625Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.625Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.625Z] reraise: Optional[ -[2024-03-07T16:33:08.625Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.625Z] ] = None, -[2024-03-07T16:33:08.625Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.625Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] :param func: -[2024-03-07T16:33:08.625Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.625Z] :param when: -[2024-03-07T16:33:08.625Z] The phase in which the function is called. -[2024-03-07T16:33:08.625Z] :param reraise: -[2024-03-07T16:33:08.625Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.625Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.625Z] """ -[2024-03-07T16:33:08.625Z] excinfo = None -[2024-03-07T16:33:08.625Z] start = timing.time() -[2024-03-07T16:33:08.625Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.625Z] try: -[2024-03-07T16:33:08.625Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.625Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.625Z] ) -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.625Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] self = -[2024-03-07T16:33:08.625Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.625Z] """Call the hook. -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.625Z] specification. -[2024-03-07T16:33:08.625Z] -[2024-03-07T16:33:08.625Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.625Z] :ref:`calling`. -[2024-03-07T16:33:08.625Z] """ -[2024-03-07T16:33:08.625Z] assert ( -[2024-03-07T16:33:08.626Z] not self.is_historic() -[2024-03-07T16:33:08.626Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.626Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.626Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.626Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.626Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.626Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.626Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.626Z] methods = [>, >, ...] -[2024-03-07T16:33:08.626Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] def _hookexec( -[2024-03-07T16:33:08.626Z] self, -[2024-03-07T16:33:08.626Z] hook_name: str, -[2024-03-07T16:33:08.626Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.626Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.626Z] firstresult: bool, -[2024-03-07T16:33:08.626Z] ) -> object | list[object]: -[2024-03-07T16:33:08.626Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.626Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.626Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.626Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.626Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.626Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] def _multicall( -[2024-03-07T16:33:08.626Z] hook_name: str, -[2024-03-07T16:33:08.626Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.626Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.626Z] firstresult: bool, -[2024-03-07T16:33:08.626Z] ) -> object | list[object]: -[2024-03-07T16:33:08.626Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.626Z] result(s). -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.626Z] """ -[2024-03-07T16:33:08.626Z] __tracebackhide__ = True -[2024-03-07T16:33:08.626Z] results: list[object] = [] -[2024-03-07T16:33:08.626Z] exception = None -[2024-03-07T16:33:08.626Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.626Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.626Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.626Z] try: -[2024-03-07T16:33:08.626Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.626Z] try: -[2024-03-07T16:33:08.626Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.626Z] except KeyError: -[2024-03-07T16:33:08.626Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.626Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.626Z] raise HookCallError( -[2024-03-07T16:33:08.626Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.626Z] ) -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.626Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.626Z] try: -[2024-03-07T16:33:08.626Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.626Z] # which is the desired response. -[2024-03-07T16:33:08.626Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.626Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.626Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.626Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.626Z] except StopIteration: -[2024-03-07T16:33:08.626Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.626Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.626Z] try: -[2024-03-07T16:33:08.626Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.626Z] # which is the desired response. -[2024-03-07T16:33:08.626Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.626Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.626Z] next(function_gen) # first yield -[2024-03-07T16:33:08.626Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.626Z] except StopIteration: -[2024-03-07T16:33:08.626Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.626Z] else: -[2024-03-07T16:33:08.626Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.626Z] if res is not None: -[2024-03-07T16:33:08.626Z] results.append(res) -[2024-03-07T16:33:08.626Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.626Z] break -[2024-03-07T16:33:08.626Z] except BaseException as exc: -[2024-03-07T16:33:08.626Z] exception = exc -[2024-03-07T16:33:08.626Z] finally: -[2024-03-07T16:33:08.626Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.626Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.626Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.626Z] result = results[0] if results else None -[2024-03-07T16:33:08.626Z] else: -[2024-03-07T16:33:08.626Z] result = results -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.626Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.626Z] try: -[2024-03-07T16:33:08.626Z] if exception is not None: -[2024-03-07T16:33:08.626Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.626Z] else: -[2024-03-07T16:33:08.626Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.626Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.626Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.626Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.626Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.626Z] except StopIteration as si: -[2024-03-07T16:33:08.626Z] result = si.value -[2024-03-07T16:33:08.626Z] exception = None -[2024-03-07T16:33:08.626Z] continue -[2024-03-07T16:33:08.626Z] except BaseException as e: -[2024-03-07T16:33:08.626Z] exception = e -[2024-03-07T16:33:08.626Z] continue -[2024-03-07T16:33:08.626Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] if exception is not None: -[2024-03-07T16:33:08.626Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.626Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.626Z] -[2024-03-07T16:33:08.626Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.627Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.627Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] def _multicall( -[2024-03-07T16:33:08.627Z] hook_name: str, -[2024-03-07T16:33:08.627Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.627Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.627Z] firstresult: bool, -[2024-03-07T16:33:08.627Z] ) -> object | list[object]: -[2024-03-07T16:33:08.627Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.627Z] result(s). -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.627Z] """ -[2024-03-07T16:33:08.627Z] __tracebackhide__ = True -[2024-03-07T16:33:08.627Z] results: list[object] = [] -[2024-03-07T16:33:08.627Z] exception = None -[2024-03-07T16:33:08.627Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.627Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.627Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.627Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.627Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.627Z] except KeyError: -[2024-03-07T16:33:08.627Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.627Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.627Z] raise HookCallError( -[2024-03-07T16:33:08.627Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.627Z] ) -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.627Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.627Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.627Z] # which is the desired response. -[2024-03-07T16:33:08.627Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.627Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.627Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.627Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.627Z] except StopIteration: -[2024-03-07T16:33:08.627Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.627Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.627Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.627Z] # which is the desired response. -[2024-03-07T16:33:08.627Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.627Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.627Z] next(function_gen) # first yield -[2024-03-07T16:33:08.627Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.627Z] except StopIteration: -[2024-03-07T16:33:08.627Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.627Z] else: -[2024-03-07T16:33:08.627Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.627Z] if res is not None: -[2024-03-07T16:33:08.627Z] results.append(res) -[2024-03-07T16:33:08.627Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.627Z] break -[2024-03-07T16:33:08.627Z] except BaseException as exc: -[2024-03-07T16:33:08.627Z] exception = exc -[2024-03-07T16:33:08.627Z] finally: -[2024-03-07T16:33:08.627Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.627Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.627Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.627Z] result = results[0] if results else None -[2024-03-07T16:33:08.627Z] else: -[2024-03-07T16:33:08.627Z] result = results -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.627Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.627Z] if exception is not None: -[2024-03-07T16:33:08.627Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.627Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.627Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.627Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.627Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.627Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.627Z] > yield -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.627Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.627Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.627Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] def _multicall( -[2024-03-07T16:33:08.627Z] hook_name: str, -[2024-03-07T16:33:08.627Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.627Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.627Z] firstresult: bool, -[2024-03-07T16:33:08.627Z] ) -> object | list[object]: -[2024-03-07T16:33:08.627Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.627Z] result(s). -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.627Z] """ -[2024-03-07T16:33:08.627Z] __tracebackhide__ = True -[2024-03-07T16:33:08.627Z] results: list[object] = [] -[2024-03-07T16:33:08.627Z] exception = None -[2024-03-07T16:33:08.627Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.627Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.627Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.627Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.627Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.627Z] except KeyError: -[2024-03-07T16:33:08.627Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.627Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.627Z] raise HookCallError( -[2024-03-07T16:33:08.627Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.627Z] ) -[2024-03-07T16:33:08.627Z] -[2024-03-07T16:33:08.627Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.627Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.627Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.627Z] # which is the desired response. -[2024-03-07T16:33:08.627Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.627Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.627Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.627Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.627Z] except StopIteration: -[2024-03-07T16:33:08.627Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.627Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.627Z] try: -[2024-03-07T16:33:08.628Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.628Z] # which is the desired response. -[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.628Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.628Z] next(function_gen) # first yield -[2024-03-07T16:33:08.628Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.628Z] except StopIteration: -[2024-03-07T16:33:08.628Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.628Z] else: -[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.628Z] if res is not None: -[2024-03-07T16:33:08.628Z] results.append(res) -[2024-03-07T16:33:08.628Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.628Z] break -[2024-03-07T16:33:08.628Z] except BaseException as exc: -[2024-03-07T16:33:08.628Z] exception = exc -[2024-03-07T16:33:08.628Z] finally: -[2024-03-07T16:33:08.628Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.628Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.628Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.628Z] result = results[0] if results else None -[2024-03-07T16:33:08.628Z] else: -[2024-03-07T16:33:08.628Z] result = results -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.628Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.628Z] try: -[2024-03-07T16:33:08.628Z] if exception is not None: -[2024-03-07T16:33:08.628Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.628Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.628Z] item = -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.628Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.628Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.628Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.628Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.628Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.628Z] item = , when = 'setup' -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.628Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.628Z] with catching_logs( -[2024-03-07T16:33:08.628Z] self.caplog_handler, -[2024-03-07T16:33:08.628Z] level=self.log_level, -[2024-03-07T16:33:08.628Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.628Z] self.report_handler, -[2024-03-07T16:33:08.628Z] level=self.log_level, -[2024-03-07T16:33:08.628Z] ) as report_handler: -[2024-03-07T16:33:08.628Z] caplog_handler.reset() -[2024-03-07T16:33:08.628Z] report_handler.reset() -[2024-03-07T16:33:08.628Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.628Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] try: -[2024-03-07T16:33:08.628Z] > yield -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.628Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.628Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.628Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] def _multicall( -[2024-03-07T16:33:08.628Z] hook_name: str, -[2024-03-07T16:33:08.628Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.628Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.628Z] firstresult: bool, -[2024-03-07T16:33:08.628Z] ) -> object | list[object]: -[2024-03-07T16:33:08.628Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.628Z] result(s). -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.628Z] """ -[2024-03-07T16:33:08.628Z] __tracebackhide__ = True -[2024-03-07T16:33:08.628Z] results: list[object] = [] -[2024-03-07T16:33:08.628Z] exception = None -[2024-03-07T16:33:08.628Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.628Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.628Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.628Z] try: -[2024-03-07T16:33:08.628Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.628Z] try: -[2024-03-07T16:33:08.628Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.628Z] except KeyError: -[2024-03-07T16:33:08.628Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.628Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.628Z] raise HookCallError( -[2024-03-07T16:33:08.628Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.628Z] ) -[2024-03-07T16:33:08.628Z] -[2024-03-07T16:33:08.628Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.628Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.628Z] try: -[2024-03-07T16:33:08.628Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.628Z] # which is the desired response. -[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.628Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.628Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.628Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.628Z] except StopIteration: -[2024-03-07T16:33:08.628Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.628Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.628Z] try: -[2024-03-07T16:33:08.628Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.628Z] # which is the desired response. -[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.628Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.628Z] next(function_gen) # first yield -[2024-03-07T16:33:08.628Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.628Z] except StopIteration: -[2024-03-07T16:33:08.628Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.628Z] else: -[2024-03-07T16:33:08.628Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.628Z] if res is not None: -[2024-03-07T16:33:08.628Z] results.append(res) -[2024-03-07T16:33:08.628Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.628Z] break -[2024-03-07T16:33:08.628Z] except BaseException as exc: -[2024-03-07T16:33:08.628Z] exception = exc -[2024-03-07T16:33:08.628Z] finally: -[2024-03-07T16:33:08.628Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.628Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.628Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.628Z] result = results[0] if results else None -[2024-03-07T16:33:08.628Z] else: -[2024-03-07T16:33:08.629Z] result = results -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.629Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.629Z] try: -[2024-03-07T16:33:08.629Z] if exception is not None: -[2024-03-07T16:33:08.629Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.629Z] item = -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.629Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.629Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.629Z] > return (yield) -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.629Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.629Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] def _multicall( -[2024-03-07T16:33:08.629Z] hook_name: str, -[2024-03-07T16:33:08.629Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.629Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.629Z] firstresult: bool, -[2024-03-07T16:33:08.629Z] ) -> object | list[object]: -[2024-03-07T16:33:08.629Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.629Z] result(s). -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.629Z] """ -[2024-03-07T16:33:08.629Z] __tracebackhide__ = True -[2024-03-07T16:33:08.629Z] results: list[object] = [] -[2024-03-07T16:33:08.629Z] exception = None -[2024-03-07T16:33:08.629Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.629Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.629Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.629Z] try: -[2024-03-07T16:33:08.629Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.629Z] try: -[2024-03-07T16:33:08.629Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.629Z] except KeyError: -[2024-03-07T16:33:08.629Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.629Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.629Z] raise HookCallError( -[2024-03-07T16:33:08.629Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.629Z] ) -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.629Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.629Z] try: -[2024-03-07T16:33:08.629Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.629Z] # which is the desired response. -[2024-03-07T16:33:08.629Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.629Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.629Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.629Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.629Z] except StopIteration: -[2024-03-07T16:33:08.629Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.629Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.629Z] try: -[2024-03-07T16:33:08.629Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.629Z] # which is the desired response. -[2024-03-07T16:33:08.629Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.629Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.629Z] next(function_gen) # first yield -[2024-03-07T16:33:08.629Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.629Z] except StopIteration: -[2024-03-07T16:33:08.629Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.629Z] else: -[2024-03-07T16:33:08.629Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.629Z] if res is not None: -[2024-03-07T16:33:08.629Z] results.append(res) -[2024-03-07T16:33:08.629Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.629Z] break -[2024-03-07T16:33:08.629Z] except BaseException as exc: -[2024-03-07T16:33:08.629Z] exception = exc -[2024-03-07T16:33:08.629Z] finally: -[2024-03-07T16:33:08.629Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.629Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.629Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.629Z] result = results[0] if results else None -[2024-03-07T16:33:08.629Z] else: -[2024-03-07T16:33:08.629Z] result = results -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.629Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.629Z] try: -[2024-03-07T16:33:08.629Z] if exception is not None: -[2024-03-07T16:33:08.629Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.629Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.629Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.629Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.629Z] try: -[2024-03-07T16:33:08.629Z] > yield -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.629Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.629Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.629Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] def _multicall( -[2024-03-07T16:33:08.629Z] hook_name: str, -[2024-03-07T16:33:08.629Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.629Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.629Z] firstresult: bool, -[2024-03-07T16:33:08.629Z] ) -> object | list[object]: -[2024-03-07T16:33:08.629Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.629Z] result(s). -[2024-03-07T16:33:08.629Z] -[2024-03-07T16:33:08.629Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.629Z] """ -[2024-03-07T16:33:08.629Z] __tracebackhide__ = True -[2024-03-07T16:33:08.629Z] results: list[object] = [] -[2024-03-07T16:33:08.630Z] exception = None -[2024-03-07T16:33:08.630Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.630Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.630Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.630Z] try: -[2024-03-07T16:33:08.630Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.630Z] try: -[2024-03-07T16:33:08.630Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.630Z] except KeyError: -[2024-03-07T16:33:08.630Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.630Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.630Z] raise HookCallError( -[2024-03-07T16:33:08.630Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.630Z] ) -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.630Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.630Z] try: -[2024-03-07T16:33:08.630Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.630Z] # which is the desired response. -[2024-03-07T16:33:08.630Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.630Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.630Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.630Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.630Z] except StopIteration: -[2024-03-07T16:33:08.630Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.630Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.630Z] try: -[2024-03-07T16:33:08.630Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.630Z] # which is the desired response. -[2024-03-07T16:33:08.630Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.630Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.630Z] next(function_gen) # first yield -[2024-03-07T16:33:08.630Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.630Z] except StopIteration: -[2024-03-07T16:33:08.630Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.630Z] else: -[2024-03-07T16:33:08.630Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] item = -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.630Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.630Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.630Z] item = -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.630Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.630Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.630Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.630Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.630Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.630Z] if exc: -[2024-03-07T16:33:08.630Z] raise exc -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.630Z] assert col not in self.stack -[2024-03-07T16:33:08.630Z] # Push onto the stack. -[2024-03-07T16:33:08.630Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.630Z] try: -[2024-03-07T16:33:08.630Z] col.setup() -[2024-03-07T16:33:08.630Z] except TEST_OUTCOME as exc: -[2024-03-07T16:33:08.630Z] self.stack[col] = (self.stack[col][0], exc) -[2024-03-07T16:33:08.630Z] > raise exc -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: -[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.630Z] item = -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.630Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.630Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.630Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.630Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.630Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.630Z] if exc: -[2024-03-07T16:33:08.630Z] raise exc -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.630Z] assert col not in self.stack -[2024-03-07T16:33:08.630Z] # Push onto the stack. -[2024-03-07T16:33:08.630Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.630Z] try: -[2024-03-07T16:33:08.630Z] > col.setup() -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: -[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] self = -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] def setup(self): -[2024-03-07T16:33:08.630Z] """ -[2024-03-07T16:33:08.630Z] Called by pytest to setup the collector cells in . -[2024-03-07T16:33:08.630Z] Here we start a kernel and setup the sanitize patterns. -[2024-03-07T16:33:08.630Z] """ -[2024-03-07T16:33:08.630Z] # we've already checked that --nbval-current-env and -[2024-03-07T16:33:08.630Z] # --nbval-kernel-name were not both supplied -[2024-03-07T16:33:08.630Z] if self.parent.config.option.nbval_current_env: -[2024-03-07T16:33:08.630Z] kernel_name = CURRENT_ENV_KERNEL_NAME -[2024-03-07T16:33:08.630Z] elif self.parent.config.option.nbval_kernel_name: -[2024-03-07T16:33:08.630Z] kernel_name = self.parent.config.option.nbval_kernel_name -[2024-03-07T16:33:08.630Z] else: -[2024-03-07T16:33:08.630Z] kernel_name = self.nb.metadata.get( -[2024-03-07T16:33:08.630Z] 'kernelspec', {}).get('name', 'python') -[2024-03-07T16:33:08.630Z] > self.kernel = RunningKernel( -[2024-03-07T16:33:08.630Z] kernel_name, -[2024-03-07T16:33:08.630Z] cwd=str(self.fspath.dirname), -[2024-03-07T16:33:08.630Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, -[2024-03-07T16:33:08.630Z] ) -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: -[2024-03-07T16:33:08.630Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] self = -[2024-03-07T16:33:08.630Z] kernel_name = 'python' -[2024-03-07T16:33:08.630Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' -[2024-03-07T16:33:08.630Z] startup_timeout = 60 -[2024-03-07T16:33:08.630Z] -[2024-03-07T16:33:08.630Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): -[2024-03-07T16:33:08.630Z] """ -[2024-03-07T16:33:08.630Z] Initialise a new kernel -[2024-03-07T16:33:08.630Z] specify that matplotlib is inline and connect the stderr. -[2024-03-07T16:33:08.630Z] Stores the active kernel process and its manager. -[2024-03-07T16:33:08.631Z] """ -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] > self.km, self.kc = start_new_kernel( -[2024-03-07T16:33:08.631Z] startup_timeout=startup_timeout, -[2024-03-07T16:33:08.631Z] kernel_name=kernel_name, -[2024-03-07T16:33:08.631Z] stderr=open(os.devnull, 'w'), -[2024-03-07T16:33:08.631Z] cwd=cwd, -[2024-03-07T16:33:08.631Z] ) -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: -[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] startup_timeout = 60, kernel_name = 'python' -[2024-03-07T16:33:08.631Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} -[2024-03-07T16:33:08.631Z] km = -[2024-03-07T16:33:08.631Z] kc = -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): -[2024-03-07T16:33:08.631Z] """Start a new kernel, and return its Manager and Client""" -[2024-03-07T16:33:08.631Z] logger.debug('Starting new kernel: "%s"' % kernel_name) -[2024-03-07T16:33:08.631Z] km = KernelManager(kernel_name=kernel_name, -[2024-03-07T16:33:08.631Z] kernel_spec_manager=NbvalKernelspecManager()) -[2024-03-07T16:33:08.631Z] km.start_kernel(**kwargs) -[2024-03-07T16:33:08.631Z] kc = km.client() -[2024-03-07T16:33:08.631Z] kc.start_channels() -[2024-03-07T16:33:08.631Z] try: -[2024-03-07T16:33:08.631Z] > kc.wait_for_ready(timeout=startup_timeout) -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: -[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] args = (,) -[2024-03-07T16:33:08.631Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.631Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.631Z] nest_asyncio = -[2024-03-07T16:33:08.631Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.631Z] try: -[2024-03-07T16:33:08.631Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.631Z] except RuntimeError: -[2024-03-07T16:33:08.631Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.631Z] try: -[2024-03-07T16:33:08.631Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.631Z] except RuntimeError: -[2024-03-07T16:33:08.631Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.631Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.631Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.631Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.631Z] try: -[2024-03-07T16:33:08.631Z] return loop.run_until_complete(future) -[2024-03-07T16:33:08.631Z] except BaseException as e: -[2024-03-07T16:33:08.631Z] future.cancel() -[2024-03-07T16:33:08.631Z] > raise e -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: -[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] args = (,) -[2024-03-07T16:33:08.631Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.631Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.631Z] nest_asyncio = -[2024-03-07T16:33:08.631Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.631Z] try: -[2024-03-07T16:33:08.631Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.631Z] except RuntimeError: -[2024-03-07T16:33:08.631Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.631Z] try: -[2024-03-07T16:33:08.631Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.631Z] except RuntimeError: -[2024-03-07T16:33:08.631Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.631Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.631Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.631Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.631Z] try: -[2024-03-07T16:33:08.631Z] > return loop.run_until_complete(future) -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: -[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.631Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] def run_until_complete(self, future): -[2024-03-07T16:33:08.631Z] with manage_run(self): -[2024-03-07T16:33:08.631Z] f = asyncio.ensure_future(future, loop=self) -[2024-03-07T16:33:08.631Z] if f is not future: -[2024-03-07T16:33:08.631Z] f._log_destroy_pending = False -[2024-03-07T16:33:08.631Z] while not f.done(): -[2024-03-07T16:33:08.631Z] self._run_once() -[2024-03-07T16:33:08.631Z] if self._stopping: -[2024-03-07T16:33:08.631Z] break -[2024-03-07T16:33:08.631Z] if not f.done(): -[2024-03-07T16:33:08.631Z] raise RuntimeError( -[2024-03-07T16:33:08.631Z] 'Event loop stopped before Future completed.') -[2024-03-07T16:33:08.631Z] > return f.result() -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: -[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] def result(self): -[2024-03-07T16:33:08.631Z] """Return the result this future represents. -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] If the future has been cancelled, raises CancelledError. If the -[2024-03-07T16:33:08.631Z] future's result isn't yet available, raises InvalidStateError. If -[2024-03-07T16:33:08.631Z] the future is done and has an exception set, this exception is raised. -[2024-03-07T16:33:08.631Z] """ -[2024-03-07T16:33:08.631Z] if self._state == _CANCELLED: -[2024-03-07T16:33:08.631Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.631Z] raise exc -[2024-03-07T16:33:08.631Z] if self._state != _FINISHED: -[2024-03-07T16:33:08.631Z] raise exceptions.InvalidStateError('Result is not ready.') -[2024-03-07T16:33:08.631Z] self.__log_traceback = False -[2024-03-07T16:33:08.631Z] if self._exception is not None: -[2024-03-07T16:33:08.631Z] > raise self._exception.with_traceback(self._exception_tb) -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: -[2024-03-07T16:33:08.631Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] self = None -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] def __step(self, exc=None): -[2024-03-07T16:33:08.631Z] if self.done(): -[2024-03-07T16:33:08.631Z] raise exceptions.InvalidStateError( -[2024-03-07T16:33:08.631Z] f'_step(): already done: {self!r}, {exc!r}') -[2024-03-07T16:33:08.631Z] if self._must_cancel: -[2024-03-07T16:33:08.631Z] if not isinstance(exc, exceptions.CancelledError): -[2024-03-07T16:33:08.631Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.631Z] self._must_cancel = False -[2024-03-07T16:33:08.631Z] coro = self._coro -[2024-03-07T16:33:08.631Z] self._fut_waiter = None -[2024-03-07T16:33:08.631Z] -[2024-03-07T16:33:08.631Z] _enter_task(self._loop, self) -[2024-03-07T16:33:08.631Z] # Call either coro.throw(exc) or coro.send(None). -[2024-03-07T16:33:08.631Z] try: -[2024-03-07T16:33:08.631Z] if exc is None: -[2024-03-07T16:33:08.632Z] # We use the `send` method directly, because coroutines -[2024-03-07T16:33:08.632Z] # don't have `__iter__` and `__next__` methods. -[2024-03-07T16:33:08.632Z] > result = coro.send(None) -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: -[2024-03-07T16:33:08.632Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] self = -[2024-03-07T16:33:08.632Z] timeout = 60 -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: -[2024-03-07T16:33:08.632Z] """Waits for a response when a client is blocked -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] - Sets future time for timeout -[2024-03-07T16:33:08.632Z] - Blocks on shell channel until a message is received -[2024-03-07T16:33:08.632Z] - Exit if the kernel has died -[2024-03-07T16:33:08.632Z] - If client times out before receiving a message from the kernel, send RuntimeError -[2024-03-07T16:33:08.632Z] - Flush the IOPub channel -[2024-03-07T16:33:08.632Z] """ -[2024-03-07T16:33:08.632Z] if timeout is None: -[2024-03-07T16:33:08.632Z] timeout = float("inf") -[2024-03-07T16:33:08.632Z] abs_timeout = time.time() + timeout -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] from .manager import KernelManager -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] if not isinstance(self.parent, KernelManager): -[2024-03-07T16:33:08.632Z] # This Client was not created by a KernelManager, -[2024-03-07T16:33:08.632Z] # so wait for kernel to become responsive to heartbeats -[2024-03-07T16:33:08.632Z] # before checking for kernel_info reply -[2024-03-07T16:33:08.632Z] while not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.632Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.632Z] raise RuntimeError( -[2024-03-07T16:33:08.632Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout -[2024-03-07T16:33:08.632Z] ) -[2024-03-07T16:33:08.632Z] await asyncio.sleep(0.2) -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] # Wait for kernel info reply on shell channel -[2024-03-07T16:33:08.632Z] while True: -[2024-03-07T16:33:08.632Z] self.kernel_info() -[2024-03-07T16:33:08.632Z] try: -[2024-03-07T16:33:08.632Z] msg = await self.shell_channel.get_msg(timeout=1) -[2024-03-07T16:33:08.632Z] except Empty: -[2024-03-07T16:33:08.632Z] pass -[2024-03-07T16:33:08.632Z] else: -[2024-03-07T16:33:08.632Z] if msg["msg_type"] == "kernel_info_reply": -[2024-03-07T16:33:08.632Z] # Checking that IOPub is connected. If it is not connected, start over. -[2024-03-07T16:33:08.632Z] try: -[2024-03-07T16:33:08.632Z] await self.iopub_channel.get_msg(timeout=0.2) -[2024-03-07T16:33:08.632Z] except Empty: -[2024-03-07T16:33:08.632Z] pass -[2024-03-07T16:33:08.632Z] else: -[2024-03-07T16:33:08.632Z] self._handle_kernel_info_reply(msg) -[2024-03-07T16:33:08.632Z] break -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] if not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.632Z] raise RuntimeError("Kernel died before replying to kernel_info") -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] # Check if current time is ready check time plus timeout -[2024-03-07T16:33:08.632Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.632Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) -[2024-03-07T16:33:08.632Z] E RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError -[2024-03-07T16:33:08.632Z] ------------------------------ Captured log setup ------------------------------ -[2024-03-07T16:33:08.632Z] ERROR nbval:kernel.py:59 Failure starting kernel "python" -[2024-03-07T16:33:08.632Z] Traceback (most recent call last): -[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py", line 57, in start_new_kernel -[2024-03-07T16:33:08.632Z] kc.wait_for_ready(timeout=startup_timeout) -[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py", line 30, in wrapped -[2024-03-07T16:33:08.632Z] raise e -[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py", line 27, in wrapped -[2024-03-07T16:33:08.632Z] return loop.run_until_complete(future) -[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py", line 98, in run_until_complete -[2024-03-07T16:33:08.632Z] return f.result() -[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py", line 201, in result -[2024-03-07T16:33:08.632Z] raise self._exception.with_traceback(self._exception_tb) -[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py", line 232, in __step -[2024-03-07T16:33:08.632Z] result = coro.send(None) -[2024-03-07T16:33:08.632Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py", line 206, in _async_wait_for_ready -[2024-03-07T16:33:08.632Z] raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) -[2024-03-07T16:33:08.632Z] RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.632Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 1 _ -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] cls = -[2024-03-07T16:33:08.632Z] func = . at 0x7f0abc051900> -[2024-03-07T16:33:08.632Z] when = 'setup' -[2024-03-07T16:33:08.632Z] reraise = (, ) -[2024-03-07T16:33:08.632Z] -[2024-03-07T16:33:08.632Z] @classmethod -[2024-03-07T16:33:08.632Z] def from_call( -[2024-03-07T16:33:08.632Z] cls, -[2024-03-07T16:33:08.632Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.632Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.633Z] reraise: Optional[ -[2024-03-07T16:33:08.633Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.633Z] ] = None, -[2024-03-07T16:33:08.633Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.633Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] :param func: -[2024-03-07T16:33:08.633Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.633Z] :param when: -[2024-03-07T16:33:08.633Z] The phase in which the function is called. -[2024-03-07T16:33:08.633Z] :param reraise: -[2024-03-07T16:33:08.633Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.633Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.633Z] """ -[2024-03-07T16:33:08.633Z] excinfo = None -[2024-03-07T16:33:08.633Z] start = timing.time() -[2024-03-07T16:33:08.633Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.633Z] try: -[2024-03-07T16:33:08.633Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.633Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.633Z] ) -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.633Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] self = -[2024-03-07T16:33:08.633Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.633Z] """Call the hook. -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.633Z] specification. -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.633Z] :ref:`calling`. -[2024-03-07T16:33:08.633Z] """ -[2024-03-07T16:33:08.633Z] assert ( -[2024-03-07T16:33:08.633Z] not self.is_historic() -[2024-03-07T16:33:08.633Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.633Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.633Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.633Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.633Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.633Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.633Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.633Z] methods = [>, >, ...] -[2024-03-07T16:33:08.633Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.633Z] -[2024-03-07T16:33:08.633Z] def _hookexec( -[2024-03-07T16:33:08.633Z] self, -[2024-03-07T16:33:08.633Z] hook_name: str, -[2024-03-07T16:33:08.633Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.633Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.633Z] firstresult: bool, -[2024-03-07T16:33:08.633Z] ) -> object | list[object]: -[2024-03-07T16:33:08.633Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.634Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.634Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.634Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.634Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.634Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] def _multicall( -[2024-03-07T16:33:08.634Z] hook_name: str, -[2024-03-07T16:33:08.634Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.634Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.634Z] firstresult: bool, -[2024-03-07T16:33:08.634Z] ) -> object | list[object]: -[2024-03-07T16:33:08.634Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.634Z] result(s). -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.634Z] """ -[2024-03-07T16:33:08.634Z] __tracebackhide__ = True -[2024-03-07T16:33:08.634Z] results: list[object] = [] -[2024-03-07T16:33:08.634Z] exception = None -[2024-03-07T16:33:08.634Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.634Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.634Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.634Z] try: -[2024-03-07T16:33:08.634Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.634Z] try: -[2024-03-07T16:33:08.634Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.634Z] except KeyError: -[2024-03-07T16:33:08.634Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.634Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.634Z] raise HookCallError( -[2024-03-07T16:33:08.634Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.634Z] ) -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.634Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.634Z] try: -[2024-03-07T16:33:08.634Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.634Z] # which is the desired response. -[2024-03-07T16:33:08.634Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.634Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.634Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.634Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.634Z] except StopIteration: -[2024-03-07T16:33:08.634Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.634Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.634Z] try: -[2024-03-07T16:33:08.634Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.634Z] # which is the desired response. -[2024-03-07T16:33:08.634Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.634Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.634Z] next(function_gen) # first yield -[2024-03-07T16:33:08.634Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.634Z] except StopIteration: -[2024-03-07T16:33:08.634Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.634Z] else: -[2024-03-07T16:33:08.634Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.634Z] if res is not None: -[2024-03-07T16:33:08.634Z] results.append(res) -[2024-03-07T16:33:08.634Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.634Z] break -[2024-03-07T16:33:08.634Z] except BaseException as exc: -[2024-03-07T16:33:08.634Z] exception = exc -[2024-03-07T16:33:08.634Z] finally: -[2024-03-07T16:33:08.634Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.634Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.634Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.634Z] result = results[0] if results else None -[2024-03-07T16:33:08.634Z] else: -[2024-03-07T16:33:08.634Z] result = results -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.634Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.634Z] try: -[2024-03-07T16:33:08.634Z] if exception is not None: -[2024-03-07T16:33:08.634Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.634Z] else: -[2024-03-07T16:33:08.634Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.634Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.634Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.634Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.634Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.634Z] except StopIteration as si: -[2024-03-07T16:33:08.634Z] result = si.value -[2024-03-07T16:33:08.634Z] exception = None -[2024-03-07T16:33:08.634Z] continue -[2024-03-07T16:33:08.634Z] except BaseException as e: -[2024-03-07T16:33:08.634Z] exception = e -[2024-03-07T16:33:08.634Z] continue -[2024-03-07T16:33:08.634Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] if exception is not None: -[2024-03-07T16:33:08.634Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.634Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.634Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.634Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] def _multicall( -[2024-03-07T16:33:08.634Z] hook_name: str, -[2024-03-07T16:33:08.634Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.634Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.634Z] firstresult: bool, -[2024-03-07T16:33:08.634Z] ) -> object | list[object]: -[2024-03-07T16:33:08.634Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.634Z] result(s). -[2024-03-07T16:33:08.634Z] -[2024-03-07T16:33:08.634Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.634Z] """ -[2024-03-07T16:33:08.634Z] __tracebackhide__ = True -[2024-03-07T16:33:08.634Z] results: list[object] = [] -[2024-03-07T16:33:08.634Z] exception = None -[2024-03-07T16:33:08.634Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.634Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.634Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.634Z] try: -[2024-03-07T16:33:08.635Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.635Z] try: -[2024-03-07T16:33:08.635Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.635Z] except KeyError: -[2024-03-07T16:33:08.635Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.635Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.635Z] raise HookCallError( -[2024-03-07T16:33:08.635Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.635Z] ) -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.635Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.635Z] try: -[2024-03-07T16:33:08.635Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.635Z] # which is the desired response. -[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.635Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.635Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.635Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.635Z] except StopIteration: -[2024-03-07T16:33:08.635Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.635Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.635Z] try: -[2024-03-07T16:33:08.635Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.635Z] # which is the desired response. -[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.635Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.635Z] next(function_gen) # first yield -[2024-03-07T16:33:08.635Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.635Z] except StopIteration: -[2024-03-07T16:33:08.635Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.635Z] else: -[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.635Z] if res is not None: -[2024-03-07T16:33:08.635Z] results.append(res) -[2024-03-07T16:33:08.635Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.635Z] break -[2024-03-07T16:33:08.635Z] except BaseException as exc: -[2024-03-07T16:33:08.635Z] exception = exc -[2024-03-07T16:33:08.635Z] finally: -[2024-03-07T16:33:08.635Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.635Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.635Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.635Z] result = results[0] if results else None -[2024-03-07T16:33:08.635Z] else: -[2024-03-07T16:33:08.635Z] result = results -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.635Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.635Z] try: -[2024-03-07T16:33:08.635Z] if exception is not None: -[2024-03-07T16:33:08.635Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.635Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.635Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.635Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.635Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.635Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.635Z] try: -[2024-03-07T16:33:08.635Z] > yield -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.635Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.635Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.635Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] def _multicall( -[2024-03-07T16:33:08.635Z] hook_name: str, -[2024-03-07T16:33:08.635Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.635Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.635Z] firstresult: bool, -[2024-03-07T16:33:08.635Z] ) -> object | list[object]: -[2024-03-07T16:33:08.635Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.635Z] result(s). -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.635Z] """ -[2024-03-07T16:33:08.635Z] __tracebackhide__ = True -[2024-03-07T16:33:08.635Z] results: list[object] = [] -[2024-03-07T16:33:08.635Z] exception = None -[2024-03-07T16:33:08.635Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.635Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.635Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.635Z] try: -[2024-03-07T16:33:08.635Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.635Z] try: -[2024-03-07T16:33:08.635Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.635Z] except KeyError: -[2024-03-07T16:33:08.635Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.635Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.635Z] raise HookCallError( -[2024-03-07T16:33:08.635Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.635Z] ) -[2024-03-07T16:33:08.635Z] -[2024-03-07T16:33:08.635Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.635Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.635Z] try: -[2024-03-07T16:33:08.635Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.635Z] # which is the desired response. -[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.635Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.635Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.635Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.635Z] except StopIteration: -[2024-03-07T16:33:08.635Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.635Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.635Z] try: -[2024-03-07T16:33:08.635Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.635Z] # which is the desired response. -[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.635Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.635Z] next(function_gen) # first yield -[2024-03-07T16:33:08.635Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.635Z] except StopIteration: -[2024-03-07T16:33:08.635Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.635Z] else: -[2024-03-07T16:33:08.635Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.635Z] if res is not None: -[2024-03-07T16:33:08.635Z] results.append(res) -[2024-03-07T16:33:08.635Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.636Z] break -[2024-03-07T16:33:08.636Z] except BaseException as exc: -[2024-03-07T16:33:08.636Z] exception = exc -[2024-03-07T16:33:08.636Z] finally: -[2024-03-07T16:33:08.636Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.636Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.636Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.636Z] result = results[0] if results else None -[2024-03-07T16:33:08.636Z] else: -[2024-03-07T16:33:08.636Z] result = results -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.636Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.636Z] try: -[2024-03-07T16:33:08.636Z] if exception is not None: -[2024-03-07T16:33:08.636Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.636Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.636Z] item = -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.636Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.636Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.636Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.636Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.636Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.636Z] item = , when = 'setup' -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.636Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.636Z] with catching_logs( -[2024-03-07T16:33:08.636Z] self.caplog_handler, -[2024-03-07T16:33:08.636Z] level=self.log_level, -[2024-03-07T16:33:08.636Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.636Z] self.report_handler, -[2024-03-07T16:33:08.636Z] level=self.log_level, -[2024-03-07T16:33:08.636Z] ) as report_handler: -[2024-03-07T16:33:08.636Z] caplog_handler.reset() -[2024-03-07T16:33:08.636Z] report_handler.reset() -[2024-03-07T16:33:08.636Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.636Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] try: -[2024-03-07T16:33:08.636Z] > yield -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.636Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.636Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.636Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] def _multicall( -[2024-03-07T16:33:08.636Z] hook_name: str, -[2024-03-07T16:33:08.636Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.636Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.636Z] firstresult: bool, -[2024-03-07T16:33:08.636Z] ) -> object | list[object]: -[2024-03-07T16:33:08.636Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.636Z] result(s). -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.636Z] """ -[2024-03-07T16:33:08.636Z] __tracebackhide__ = True -[2024-03-07T16:33:08.636Z] results: list[object] = [] -[2024-03-07T16:33:08.636Z] exception = None -[2024-03-07T16:33:08.636Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.636Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.636Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.636Z] try: -[2024-03-07T16:33:08.636Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.636Z] try: -[2024-03-07T16:33:08.636Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.636Z] except KeyError: -[2024-03-07T16:33:08.636Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.636Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.636Z] raise HookCallError( -[2024-03-07T16:33:08.636Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.636Z] ) -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.636Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.636Z] try: -[2024-03-07T16:33:08.636Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.636Z] # which is the desired response. -[2024-03-07T16:33:08.636Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.636Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.636Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.636Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.636Z] except StopIteration: -[2024-03-07T16:33:08.636Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.636Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.636Z] try: -[2024-03-07T16:33:08.636Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.636Z] # which is the desired response. -[2024-03-07T16:33:08.636Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.636Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.636Z] next(function_gen) # first yield -[2024-03-07T16:33:08.636Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.636Z] except StopIteration: -[2024-03-07T16:33:08.636Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.636Z] else: -[2024-03-07T16:33:08.636Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.636Z] if res is not None: -[2024-03-07T16:33:08.636Z] results.append(res) -[2024-03-07T16:33:08.636Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.636Z] break -[2024-03-07T16:33:08.636Z] except BaseException as exc: -[2024-03-07T16:33:08.636Z] exception = exc -[2024-03-07T16:33:08.636Z] finally: -[2024-03-07T16:33:08.636Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.636Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.636Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.636Z] result = results[0] if results else None -[2024-03-07T16:33:08.636Z] else: -[2024-03-07T16:33:08.636Z] result = results -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.636Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.636Z] try: -[2024-03-07T16:33:08.636Z] if exception is not None: -[2024-03-07T16:33:08.636Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.636Z] -[2024-03-07T16:33:08.636Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.636Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.637Z] item = -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.637Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.637Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.637Z] > return (yield) -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.637Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.637Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.637Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] def _multicall( -[2024-03-07T16:33:08.637Z] hook_name: str, -[2024-03-07T16:33:08.637Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.637Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.637Z] firstresult: bool, -[2024-03-07T16:33:08.637Z] ) -> object | list[object]: -[2024-03-07T16:33:08.637Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.637Z] result(s). -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.637Z] """ -[2024-03-07T16:33:08.637Z] __tracebackhide__ = True -[2024-03-07T16:33:08.637Z] results: list[object] = [] -[2024-03-07T16:33:08.637Z] exception = None -[2024-03-07T16:33:08.637Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.637Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.637Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.637Z] try: -[2024-03-07T16:33:08.637Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.637Z] try: -[2024-03-07T16:33:08.637Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.637Z] except KeyError: -[2024-03-07T16:33:08.637Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.637Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.637Z] raise HookCallError( -[2024-03-07T16:33:08.637Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.637Z] ) -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.637Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.637Z] try: -[2024-03-07T16:33:08.637Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.637Z] # which is the desired response. -[2024-03-07T16:33:08.637Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.637Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.637Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.637Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.637Z] except StopIteration: -[2024-03-07T16:33:08.637Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.637Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.637Z] try: -[2024-03-07T16:33:08.637Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.637Z] # which is the desired response. -[2024-03-07T16:33:08.637Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.637Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.637Z] next(function_gen) # first yield -[2024-03-07T16:33:08.637Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.637Z] except StopIteration: -[2024-03-07T16:33:08.637Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.637Z] else: -[2024-03-07T16:33:08.637Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.637Z] if res is not None: -[2024-03-07T16:33:08.637Z] results.append(res) -[2024-03-07T16:33:08.637Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.637Z] break -[2024-03-07T16:33:08.637Z] except BaseException as exc: -[2024-03-07T16:33:08.637Z] exception = exc -[2024-03-07T16:33:08.637Z] finally: -[2024-03-07T16:33:08.637Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.637Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.637Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.637Z] result = results[0] if results else None -[2024-03-07T16:33:08.637Z] else: -[2024-03-07T16:33:08.637Z] result = results -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.637Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.637Z] try: -[2024-03-07T16:33:08.637Z] if exception is not None: -[2024-03-07T16:33:08.637Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.637Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.637Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.637Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.637Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.637Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.637Z] try: -[2024-03-07T16:33:08.637Z] > yield -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.637Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.637Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.637Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] def _multicall( -[2024-03-07T16:33:08.637Z] hook_name: str, -[2024-03-07T16:33:08.637Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.637Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.637Z] firstresult: bool, -[2024-03-07T16:33:08.637Z] ) -> object | list[object]: -[2024-03-07T16:33:08.637Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.637Z] result(s). -[2024-03-07T16:33:08.637Z] -[2024-03-07T16:33:08.637Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.637Z] """ -[2024-03-07T16:33:08.637Z] __tracebackhide__ = True -[2024-03-07T16:33:08.637Z] results: list[object] = [] -[2024-03-07T16:33:08.637Z] exception = None -[2024-03-07T16:33:08.637Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.637Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.637Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.637Z] try: -[2024-03-07T16:33:08.637Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.637Z] try: -[2024-03-07T16:33:08.637Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.637Z] except KeyError: -[2024-03-07T16:33:08.637Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.637Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.637Z] raise HookCallError( -[2024-03-07T16:33:08.638Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.638Z] ) -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.638Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.638Z] try: -[2024-03-07T16:33:08.638Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.638Z] # which is the desired response. -[2024-03-07T16:33:08.638Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.638Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.638Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.638Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.638Z] except StopIteration: -[2024-03-07T16:33:08.638Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.638Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.638Z] try: -[2024-03-07T16:33:08.638Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.638Z] # which is the desired response. -[2024-03-07T16:33:08.638Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.638Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.638Z] next(function_gen) # first yield -[2024-03-07T16:33:08.638Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.638Z] except StopIteration: -[2024-03-07T16:33:08.638Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.638Z] else: -[2024-03-07T16:33:08.638Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] item = -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.638Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.638Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.638Z] item = -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.638Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.638Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.638Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.638Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.638Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.638Z] if exc: -[2024-03-07T16:33:08.638Z] > raise exc -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] cls = -[2024-03-07T16:33:08.638Z] func = . at 0x7f0abbb0b520> -[2024-03-07T16:33:08.638Z] when = 'setup' -[2024-03-07T16:33:08.638Z] reraise = (, ) -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] @classmethod -[2024-03-07T16:33:08.638Z] def from_call( -[2024-03-07T16:33:08.638Z] cls, -[2024-03-07T16:33:08.638Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.638Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.638Z] reraise: Optional[ -[2024-03-07T16:33:08.638Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.638Z] ] = None, -[2024-03-07T16:33:08.638Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.638Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] :param func: -[2024-03-07T16:33:08.638Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.638Z] :param when: -[2024-03-07T16:33:08.638Z] The phase in which the function is called. -[2024-03-07T16:33:08.638Z] :param reraise: -[2024-03-07T16:33:08.638Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.638Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.638Z] """ -[2024-03-07T16:33:08.638Z] excinfo = None -[2024-03-07T16:33:08.638Z] start = timing.time() -[2024-03-07T16:33:08.638Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.638Z] try: -[2024-03-07T16:33:08.638Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.638Z] ) -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] self = -[2024-03-07T16:33:08.638Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.638Z] """Call the hook. -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.638Z] specification. -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.638Z] :ref:`calling`. -[2024-03-07T16:33:08.638Z] """ -[2024-03-07T16:33:08.638Z] assert ( -[2024-03-07T16:33:08.638Z] not self.is_historic() -[2024-03-07T16:33:08.638Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.638Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.638Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.638Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.638Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.638Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.638Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.638Z] methods = [>, >, ...] -[2024-03-07T16:33:08.638Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] def _hookexec( -[2024-03-07T16:33:08.638Z] self, -[2024-03-07T16:33:08.638Z] hook_name: str, -[2024-03-07T16:33:08.638Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.638Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.638Z] firstresult: bool, -[2024-03-07T16:33:08.638Z] ) -> object | list[object]: -[2024-03-07T16:33:08.638Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.638Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.638Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.638Z] -[2024-03-07T16:33:08.638Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.639Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.639Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.639Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] def _multicall( -[2024-03-07T16:33:08.639Z] hook_name: str, -[2024-03-07T16:33:08.639Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.639Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.639Z] firstresult: bool, -[2024-03-07T16:33:08.639Z] ) -> object | list[object]: -[2024-03-07T16:33:08.639Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.639Z] result(s). -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.639Z] """ -[2024-03-07T16:33:08.639Z] __tracebackhide__ = True -[2024-03-07T16:33:08.639Z] results: list[object] = [] -[2024-03-07T16:33:08.639Z] exception = None -[2024-03-07T16:33:08.639Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.639Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.639Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.639Z] try: -[2024-03-07T16:33:08.639Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.639Z] try: -[2024-03-07T16:33:08.639Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.639Z] except KeyError: -[2024-03-07T16:33:08.639Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.639Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.639Z] raise HookCallError( -[2024-03-07T16:33:08.639Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.639Z] ) -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.639Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.639Z] try: -[2024-03-07T16:33:08.639Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.639Z] # which is the desired response. -[2024-03-07T16:33:08.639Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.639Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.639Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.639Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.639Z] except StopIteration: -[2024-03-07T16:33:08.639Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.639Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.639Z] try: -[2024-03-07T16:33:08.639Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.639Z] # which is the desired response. -[2024-03-07T16:33:08.639Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.639Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.639Z] next(function_gen) # first yield -[2024-03-07T16:33:08.639Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.639Z] except StopIteration: -[2024-03-07T16:33:08.639Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.639Z] else: -[2024-03-07T16:33:08.639Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.639Z] if res is not None: -[2024-03-07T16:33:08.639Z] results.append(res) -[2024-03-07T16:33:08.639Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.639Z] break -[2024-03-07T16:33:08.639Z] except BaseException as exc: -[2024-03-07T16:33:08.639Z] exception = exc -[2024-03-07T16:33:08.639Z] finally: -[2024-03-07T16:33:08.639Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.639Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.639Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.639Z] result = results[0] if results else None -[2024-03-07T16:33:08.639Z] else: -[2024-03-07T16:33:08.639Z] result = results -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.639Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.639Z] try: -[2024-03-07T16:33:08.639Z] if exception is not None: -[2024-03-07T16:33:08.639Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.639Z] else: -[2024-03-07T16:33:08.639Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.639Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.639Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.639Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.639Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.639Z] except StopIteration as si: -[2024-03-07T16:33:08.639Z] result = si.value -[2024-03-07T16:33:08.639Z] exception = None -[2024-03-07T16:33:08.639Z] continue -[2024-03-07T16:33:08.639Z] except BaseException as e: -[2024-03-07T16:33:08.639Z] exception = e -[2024-03-07T16:33:08.639Z] continue -[2024-03-07T16:33:08.639Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] if exception is not None: -[2024-03-07T16:33:08.639Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.639Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.639Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.639Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] def _multicall( -[2024-03-07T16:33:08.639Z] hook_name: str, -[2024-03-07T16:33:08.639Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.639Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.639Z] firstresult: bool, -[2024-03-07T16:33:08.639Z] ) -> object | list[object]: -[2024-03-07T16:33:08.639Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.639Z] result(s). -[2024-03-07T16:33:08.639Z] -[2024-03-07T16:33:08.639Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.639Z] """ -[2024-03-07T16:33:08.639Z] __tracebackhide__ = True -[2024-03-07T16:33:08.639Z] results: list[object] = [] -[2024-03-07T16:33:08.639Z] exception = None -[2024-03-07T16:33:08.639Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.639Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.639Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.639Z] try: -[2024-03-07T16:33:08.639Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.639Z] try: -[2024-03-07T16:33:08.640Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.640Z] except KeyError: -[2024-03-07T16:33:08.640Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.640Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.640Z] raise HookCallError( -[2024-03-07T16:33:08.640Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.640Z] ) -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.640Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.640Z] try: -[2024-03-07T16:33:08.640Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.640Z] # which is the desired response. -[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.640Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.640Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.640Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.640Z] except StopIteration: -[2024-03-07T16:33:08.640Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.640Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.640Z] try: -[2024-03-07T16:33:08.640Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.640Z] # which is the desired response. -[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.640Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.640Z] next(function_gen) # first yield -[2024-03-07T16:33:08.640Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.640Z] except StopIteration: -[2024-03-07T16:33:08.640Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.640Z] else: -[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.640Z] if res is not None: -[2024-03-07T16:33:08.640Z] results.append(res) -[2024-03-07T16:33:08.640Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.640Z] break -[2024-03-07T16:33:08.640Z] except BaseException as exc: -[2024-03-07T16:33:08.640Z] exception = exc -[2024-03-07T16:33:08.640Z] finally: -[2024-03-07T16:33:08.640Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.640Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.640Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.640Z] result = results[0] if results else None -[2024-03-07T16:33:08.640Z] else: -[2024-03-07T16:33:08.640Z] result = results -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.640Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.640Z] try: -[2024-03-07T16:33:08.640Z] if exception is not None: -[2024-03-07T16:33:08.640Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.640Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.640Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.640Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.640Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.640Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.640Z] try: -[2024-03-07T16:33:08.640Z] > yield -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.640Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.640Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.640Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] def _multicall( -[2024-03-07T16:33:08.640Z] hook_name: str, -[2024-03-07T16:33:08.640Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.640Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.640Z] firstresult: bool, -[2024-03-07T16:33:08.640Z] ) -> object | list[object]: -[2024-03-07T16:33:08.640Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.640Z] result(s). -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.640Z] """ -[2024-03-07T16:33:08.640Z] __tracebackhide__ = True -[2024-03-07T16:33:08.640Z] results: list[object] = [] -[2024-03-07T16:33:08.640Z] exception = None -[2024-03-07T16:33:08.640Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.640Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.640Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.640Z] try: -[2024-03-07T16:33:08.640Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.640Z] try: -[2024-03-07T16:33:08.640Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.640Z] except KeyError: -[2024-03-07T16:33:08.640Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.640Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.640Z] raise HookCallError( -[2024-03-07T16:33:08.640Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.640Z] ) -[2024-03-07T16:33:08.640Z] -[2024-03-07T16:33:08.640Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.640Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.640Z] try: -[2024-03-07T16:33:08.640Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.640Z] # which is the desired response. -[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.640Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.640Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.640Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.640Z] except StopIteration: -[2024-03-07T16:33:08.640Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.640Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.640Z] try: -[2024-03-07T16:33:08.640Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.640Z] # which is the desired response. -[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.640Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.640Z] next(function_gen) # first yield -[2024-03-07T16:33:08.640Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.640Z] except StopIteration: -[2024-03-07T16:33:08.640Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.640Z] else: -[2024-03-07T16:33:08.640Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.640Z] if res is not None: -[2024-03-07T16:33:08.640Z] results.append(res) -[2024-03-07T16:33:08.640Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.640Z] break -[2024-03-07T16:33:08.640Z] except BaseException as exc: -[2024-03-07T16:33:08.640Z] exception = exc -[2024-03-07T16:33:08.640Z] finally: -[2024-03-07T16:33:08.640Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.640Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.641Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.641Z] result = results[0] if results else None -[2024-03-07T16:33:08.641Z] else: -[2024-03-07T16:33:08.641Z] result = results -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.641Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.641Z] try: -[2024-03-07T16:33:08.641Z] if exception is not None: -[2024-03-07T16:33:08.641Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.641Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.641Z] item = -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.641Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.641Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.641Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.641Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.641Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.641Z] item = , when = 'setup' -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.641Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.641Z] with catching_logs( -[2024-03-07T16:33:08.641Z] self.caplog_handler, -[2024-03-07T16:33:08.641Z] level=self.log_level, -[2024-03-07T16:33:08.641Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.641Z] self.report_handler, -[2024-03-07T16:33:08.641Z] level=self.log_level, -[2024-03-07T16:33:08.641Z] ) as report_handler: -[2024-03-07T16:33:08.641Z] caplog_handler.reset() -[2024-03-07T16:33:08.641Z] report_handler.reset() -[2024-03-07T16:33:08.641Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.641Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] try: -[2024-03-07T16:33:08.641Z] > yield -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.641Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.641Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.641Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] def _multicall( -[2024-03-07T16:33:08.641Z] hook_name: str, -[2024-03-07T16:33:08.641Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.641Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.641Z] firstresult: bool, -[2024-03-07T16:33:08.641Z] ) -> object | list[object]: -[2024-03-07T16:33:08.641Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.641Z] result(s). -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.641Z] """ -[2024-03-07T16:33:08.641Z] __tracebackhide__ = True -[2024-03-07T16:33:08.641Z] results: list[object] = [] -[2024-03-07T16:33:08.641Z] exception = None -[2024-03-07T16:33:08.641Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.641Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.641Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.641Z] try: -[2024-03-07T16:33:08.641Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.641Z] try: -[2024-03-07T16:33:08.641Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.641Z] except KeyError: -[2024-03-07T16:33:08.641Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.641Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.641Z] raise HookCallError( -[2024-03-07T16:33:08.641Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.641Z] ) -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.641Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.641Z] try: -[2024-03-07T16:33:08.641Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.641Z] # which is the desired response. -[2024-03-07T16:33:08.641Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.641Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.641Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.641Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.641Z] except StopIteration: -[2024-03-07T16:33:08.641Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.641Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.641Z] try: -[2024-03-07T16:33:08.641Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.641Z] # which is the desired response. -[2024-03-07T16:33:08.641Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.641Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.641Z] next(function_gen) # first yield -[2024-03-07T16:33:08.641Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.641Z] except StopIteration: -[2024-03-07T16:33:08.641Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.641Z] else: -[2024-03-07T16:33:08.641Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.641Z] if res is not None: -[2024-03-07T16:33:08.641Z] results.append(res) -[2024-03-07T16:33:08.641Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.641Z] break -[2024-03-07T16:33:08.641Z] except BaseException as exc: -[2024-03-07T16:33:08.641Z] exception = exc -[2024-03-07T16:33:08.641Z] finally: -[2024-03-07T16:33:08.641Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.641Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.641Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.641Z] result = results[0] if results else None -[2024-03-07T16:33:08.641Z] else: -[2024-03-07T16:33:08.641Z] result = results -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.641Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.641Z] try: -[2024-03-07T16:33:08.641Z] if exception is not None: -[2024-03-07T16:33:08.641Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.641Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.641Z] -[2024-03-07T16:33:08.641Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.642Z] item = -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.642Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.642Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.642Z] > return (yield) -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.642Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.642Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.642Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] def _multicall( -[2024-03-07T16:33:08.642Z] hook_name: str, -[2024-03-07T16:33:08.642Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.642Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.642Z] firstresult: bool, -[2024-03-07T16:33:08.642Z] ) -> object | list[object]: -[2024-03-07T16:33:08.642Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.642Z] result(s). -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.642Z] """ -[2024-03-07T16:33:08.642Z] __tracebackhide__ = True -[2024-03-07T16:33:08.642Z] results: list[object] = [] -[2024-03-07T16:33:08.642Z] exception = None -[2024-03-07T16:33:08.642Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.642Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.642Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.642Z] try: -[2024-03-07T16:33:08.642Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.642Z] try: -[2024-03-07T16:33:08.642Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.642Z] except KeyError: -[2024-03-07T16:33:08.642Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.642Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.642Z] raise HookCallError( -[2024-03-07T16:33:08.642Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.642Z] ) -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.642Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.642Z] try: -[2024-03-07T16:33:08.642Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.642Z] # which is the desired response. -[2024-03-07T16:33:08.642Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.642Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.642Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.642Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.642Z] except StopIteration: -[2024-03-07T16:33:08.642Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.642Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.642Z] try: -[2024-03-07T16:33:08.642Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.642Z] # which is the desired response. -[2024-03-07T16:33:08.642Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.642Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.642Z] next(function_gen) # first yield -[2024-03-07T16:33:08.642Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.642Z] except StopIteration: -[2024-03-07T16:33:08.642Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.642Z] else: -[2024-03-07T16:33:08.642Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.642Z] if res is not None: -[2024-03-07T16:33:08.642Z] results.append(res) -[2024-03-07T16:33:08.642Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.642Z] break -[2024-03-07T16:33:08.642Z] except BaseException as exc: -[2024-03-07T16:33:08.642Z] exception = exc -[2024-03-07T16:33:08.642Z] finally: -[2024-03-07T16:33:08.642Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.642Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.642Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.642Z] result = results[0] if results else None -[2024-03-07T16:33:08.642Z] else: -[2024-03-07T16:33:08.642Z] result = results -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.642Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.642Z] try: -[2024-03-07T16:33:08.642Z] if exception is not None: -[2024-03-07T16:33:08.642Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.642Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.642Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.642Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.642Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.642Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.642Z] try: -[2024-03-07T16:33:08.642Z] > yield -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.642Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.642Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.642Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] def _multicall( -[2024-03-07T16:33:08.642Z] hook_name: str, -[2024-03-07T16:33:08.642Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.642Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.642Z] firstresult: bool, -[2024-03-07T16:33:08.642Z] ) -> object | list[object]: -[2024-03-07T16:33:08.642Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.642Z] result(s). -[2024-03-07T16:33:08.642Z] -[2024-03-07T16:33:08.642Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.642Z] """ -[2024-03-07T16:33:08.642Z] __tracebackhide__ = True -[2024-03-07T16:33:08.642Z] results: list[object] = [] -[2024-03-07T16:33:08.642Z] exception = None -[2024-03-07T16:33:08.642Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.642Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.642Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.642Z] try: -[2024-03-07T16:33:08.642Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.642Z] try: -[2024-03-07T16:33:08.642Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.642Z] except KeyError: -[2024-03-07T16:33:08.642Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.642Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.643Z] raise HookCallError( -[2024-03-07T16:33:08.643Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.643Z] ) -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.643Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.643Z] try: -[2024-03-07T16:33:08.643Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.643Z] # which is the desired response. -[2024-03-07T16:33:08.643Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.643Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.643Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.643Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.643Z] except StopIteration: -[2024-03-07T16:33:08.643Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.643Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.643Z] try: -[2024-03-07T16:33:08.643Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.643Z] # which is the desired response. -[2024-03-07T16:33:08.643Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.643Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.643Z] next(function_gen) # first yield -[2024-03-07T16:33:08.643Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.643Z] except StopIteration: -[2024-03-07T16:33:08.643Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.643Z] else: -[2024-03-07T16:33:08.643Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] item = -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.643Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.643Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.643Z] item = -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.643Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.643Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.643Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.643Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.643Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.643Z] if exc: -[2024-03-07T16:33:08.643Z] raise exc -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.643Z] assert col not in self.stack -[2024-03-07T16:33:08.643Z] # Push onto the stack. -[2024-03-07T16:33:08.643Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.643Z] try: -[2024-03-07T16:33:08.643Z] col.setup() -[2024-03-07T16:33:08.643Z] except TEST_OUTCOME as exc: -[2024-03-07T16:33:08.643Z] self.stack[col] = (self.stack[col][0], exc) -[2024-03-07T16:33:08.643Z] > raise exc -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: -[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.643Z] item = -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.643Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.643Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.643Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.643Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.643Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.643Z] if exc: -[2024-03-07T16:33:08.643Z] raise exc -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.643Z] assert col not in self.stack -[2024-03-07T16:33:08.643Z] # Push onto the stack. -[2024-03-07T16:33:08.643Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.643Z] try: -[2024-03-07T16:33:08.643Z] > col.setup() -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: -[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] self = -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] def setup(self): -[2024-03-07T16:33:08.643Z] """ -[2024-03-07T16:33:08.643Z] Called by pytest to setup the collector cells in . -[2024-03-07T16:33:08.643Z] Here we start a kernel and setup the sanitize patterns. -[2024-03-07T16:33:08.643Z] """ -[2024-03-07T16:33:08.643Z] # we've already checked that --nbval-current-env and -[2024-03-07T16:33:08.643Z] # --nbval-kernel-name were not both supplied -[2024-03-07T16:33:08.643Z] if self.parent.config.option.nbval_current_env: -[2024-03-07T16:33:08.643Z] kernel_name = CURRENT_ENV_KERNEL_NAME -[2024-03-07T16:33:08.643Z] elif self.parent.config.option.nbval_kernel_name: -[2024-03-07T16:33:08.643Z] kernel_name = self.parent.config.option.nbval_kernel_name -[2024-03-07T16:33:08.643Z] else: -[2024-03-07T16:33:08.643Z] kernel_name = self.nb.metadata.get( -[2024-03-07T16:33:08.643Z] 'kernelspec', {}).get('name', 'python') -[2024-03-07T16:33:08.643Z] > self.kernel = RunningKernel( -[2024-03-07T16:33:08.643Z] kernel_name, -[2024-03-07T16:33:08.643Z] cwd=str(self.fspath.dirname), -[2024-03-07T16:33:08.643Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, -[2024-03-07T16:33:08.643Z] ) -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: -[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] self = -[2024-03-07T16:33:08.643Z] kernel_name = 'python' -[2024-03-07T16:33:08.643Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' -[2024-03-07T16:33:08.643Z] startup_timeout = 60 -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): -[2024-03-07T16:33:08.643Z] """ -[2024-03-07T16:33:08.643Z] Initialise a new kernel -[2024-03-07T16:33:08.643Z] specify that matplotlib is inline and connect the stderr. -[2024-03-07T16:33:08.643Z] Stores the active kernel process and its manager. -[2024-03-07T16:33:08.643Z] """ -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] > self.km, self.kc = start_new_kernel( -[2024-03-07T16:33:08.643Z] startup_timeout=startup_timeout, -[2024-03-07T16:33:08.643Z] kernel_name=kernel_name, -[2024-03-07T16:33:08.643Z] stderr=open(os.devnull, 'w'), -[2024-03-07T16:33:08.643Z] cwd=cwd, -[2024-03-07T16:33:08.643Z] ) -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: -[2024-03-07T16:33:08.643Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] startup_timeout = 60, kernel_name = 'python' -[2024-03-07T16:33:08.643Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} -[2024-03-07T16:33:08.643Z] km = -[2024-03-07T16:33:08.643Z] kc = -[2024-03-07T16:33:08.643Z] -[2024-03-07T16:33:08.643Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): -[2024-03-07T16:33:08.643Z] """Start a new kernel, and return its Manager and Client""" -[2024-03-07T16:33:08.643Z] logger.debug('Starting new kernel: "%s"' % kernel_name) -[2024-03-07T16:33:08.643Z] km = KernelManager(kernel_name=kernel_name, -[2024-03-07T16:33:08.644Z] kernel_spec_manager=NbvalKernelspecManager()) -[2024-03-07T16:33:08.644Z] km.start_kernel(**kwargs) -[2024-03-07T16:33:08.644Z] kc = km.client() -[2024-03-07T16:33:08.644Z] kc.start_channels() -[2024-03-07T16:33:08.644Z] try: -[2024-03-07T16:33:08.644Z] > kc.wait_for_ready(timeout=startup_timeout) -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: -[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] args = (,) -[2024-03-07T16:33:08.644Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.644Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.644Z] nest_asyncio = -[2024-03-07T16:33:08.644Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.644Z] try: -[2024-03-07T16:33:08.644Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.644Z] except RuntimeError: -[2024-03-07T16:33:08.644Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.644Z] try: -[2024-03-07T16:33:08.644Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.644Z] except RuntimeError: -[2024-03-07T16:33:08.644Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.644Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.644Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.644Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.644Z] try: -[2024-03-07T16:33:08.644Z] return loop.run_until_complete(future) -[2024-03-07T16:33:08.644Z] except BaseException as e: -[2024-03-07T16:33:08.644Z] future.cancel() -[2024-03-07T16:33:08.644Z] > raise e -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: -[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] args = (,) -[2024-03-07T16:33:08.644Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.644Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.644Z] nest_asyncio = -[2024-03-07T16:33:08.644Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.644Z] try: -[2024-03-07T16:33:08.644Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.644Z] except RuntimeError: -[2024-03-07T16:33:08.644Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.644Z] try: -[2024-03-07T16:33:08.644Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.644Z] except RuntimeError: -[2024-03-07T16:33:08.644Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.644Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.644Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.644Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.644Z] try: -[2024-03-07T16:33:08.644Z] > return loop.run_until_complete(future) -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: -[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.644Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] def run_until_complete(self, future): -[2024-03-07T16:33:08.644Z] with manage_run(self): -[2024-03-07T16:33:08.644Z] f = asyncio.ensure_future(future, loop=self) -[2024-03-07T16:33:08.644Z] if f is not future: -[2024-03-07T16:33:08.644Z] f._log_destroy_pending = False -[2024-03-07T16:33:08.644Z] while not f.done(): -[2024-03-07T16:33:08.644Z] self._run_once() -[2024-03-07T16:33:08.644Z] if self._stopping: -[2024-03-07T16:33:08.644Z] break -[2024-03-07T16:33:08.644Z] if not f.done(): -[2024-03-07T16:33:08.644Z] raise RuntimeError( -[2024-03-07T16:33:08.644Z] 'Event loop stopped before Future completed.') -[2024-03-07T16:33:08.644Z] > return f.result() -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: -[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] def result(self): -[2024-03-07T16:33:08.644Z] """Return the result this future represents. -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] If the future has been cancelled, raises CancelledError. If the -[2024-03-07T16:33:08.644Z] future's result isn't yet available, raises InvalidStateError. If -[2024-03-07T16:33:08.644Z] the future is done and has an exception set, this exception is raised. -[2024-03-07T16:33:08.644Z] """ -[2024-03-07T16:33:08.644Z] if self._state == _CANCELLED: -[2024-03-07T16:33:08.644Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.644Z] raise exc -[2024-03-07T16:33:08.644Z] if self._state != _FINISHED: -[2024-03-07T16:33:08.644Z] raise exceptions.InvalidStateError('Result is not ready.') -[2024-03-07T16:33:08.644Z] self.__log_traceback = False -[2024-03-07T16:33:08.644Z] if self._exception is not None: -[2024-03-07T16:33:08.644Z] > raise self._exception.with_traceback(self._exception_tb) -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: -[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] self = None -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] def __step(self, exc=None): -[2024-03-07T16:33:08.644Z] if self.done(): -[2024-03-07T16:33:08.644Z] raise exceptions.InvalidStateError( -[2024-03-07T16:33:08.644Z] f'_step(): already done: {self!r}, {exc!r}') -[2024-03-07T16:33:08.644Z] if self._must_cancel: -[2024-03-07T16:33:08.644Z] if not isinstance(exc, exceptions.CancelledError): -[2024-03-07T16:33:08.644Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.644Z] self._must_cancel = False -[2024-03-07T16:33:08.644Z] coro = self._coro -[2024-03-07T16:33:08.644Z] self._fut_waiter = None -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] _enter_task(self._loop, self) -[2024-03-07T16:33:08.644Z] # Call either coro.throw(exc) or coro.send(None). -[2024-03-07T16:33:08.644Z] try: -[2024-03-07T16:33:08.644Z] if exc is None: -[2024-03-07T16:33:08.644Z] # We use the `send` method directly, because coroutines -[2024-03-07T16:33:08.644Z] # don't have `__iter__` and `__next__` methods. -[2024-03-07T16:33:08.644Z] > result = coro.send(None) -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: -[2024-03-07T16:33:08.644Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] self = -[2024-03-07T16:33:08.644Z] timeout = 60 -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: -[2024-03-07T16:33:08.644Z] """Waits for a response when a client is blocked -[2024-03-07T16:33:08.644Z] -[2024-03-07T16:33:08.644Z] - Sets future time for timeout -[2024-03-07T16:33:08.644Z] - Blocks on shell channel until a message is received -[2024-03-07T16:33:08.644Z] - Exit if the kernel has died -[2024-03-07T16:33:08.644Z] - If client times out before receiving a message from the kernel, send RuntimeError -[2024-03-07T16:33:08.644Z] - Flush the IOPub channel -[2024-03-07T16:33:08.644Z] """ -[2024-03-07T16:33:08.644Z] if timeout is None: -[2024-03-07T16:33:08.644Z] timeout = float("inf") -[2024-03-07T16:33:08.644Z] abs_timeout = time.time() + timeout -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] from .manager import KernelManager -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] if not isinstance(self.parent, KernelManager): -[2024-03-07T16:33:08.645Z] # This Client was not created by a KernelManager, -[2024-03-07T16:33:08.645Z] # so wait for kernel to become responsive to heartbeats -[2024-03-07T16:33:08.645Z] # before checking for kernel_info reply -[2024-03-07T16:33:08.645Z] while not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.645Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.645Z] raise RuntimeError( -[2024-03-07T16:33:08.645Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout -[2024-03-07T16:33:08.645Z] ) -[2024-03-07T16:33:08.645Z] await asyncio.sleep(0.2) -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] # Wait for kernel info reply on shell channel -[2024-03-07T16:33:08.645Z] while True: -[2024-03-07T16:33:08.645Z] self.kernel_info() -[2024-03-07T16:33:08.645Z] try: -[2024-03-07T16:33:08.645Z] msg = await self.shell_channel.get_msg(timeout=1) -[2024-03-07T16:33:08.645Z] except Empty: -[2024-03-07T16:33:08.645Z] pass -[2024-03-07T16:33:08.645Z] else: -[2024-03-07T16:33:08.645Z] if msg["msg_type"] == "kernel_info_reply": -[2024-03-07T16:33:08.645Z] # Checking that IOPub is connected. If it is not connected, start over. -[2024-03-07T16:33:08.645Z] try: -[2024-03-07T16:33:08.645Z] await self.iopub_channel.get_msg(timeout=0.2) -[2024-03-07T16:33:08.645Z] except Empty: -[2024-03-07T16:33:08.645Z] pass -[2024-03-07T16:33:08.645Z] else: -[2024-03-07T16:33:08.645Z] self._handle_kernel_info_reply(msg) -[2024-03-07T16:33:08.645Z] break -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] if not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.645Z] raise RuntimeError("Kernel died before replying to kernel_info") -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] # Check if current time is ready check time plus timeout -[2024-03-07T16:33:08.645Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.645Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) -[2024-03-07T16:33:08.645Z] E RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError -[2024-03-07T16:33:08.645Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 2 _ -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] cls = -[2024-03-07T16:33:08.645Z] func = . at 0x7f0abbb08550> -[2024-03-07T16:33:08.645Z] when = 'setup' -[2024-03-07T16:33:08.645Z] reraise = (, ) -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] @classmethod -[2024-03-07T16:33:08.645Z] def from_call( -[2024-03-07T16:33:08.645Z] cls, -[2024-03-07T16:33:08.645Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.645Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.645Z] reraise: Optional[ -[2024-03-07T16:33:08.645Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.645Z] ] = None, -[2024-03-07T16:33:08.645Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.645Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] :param func: -[2024-03-07T16:33:08.645Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.645Z] :param when: -[2024-03-07T16:33:08.645Z] The phase in which the function is called. -[2024-03-07T16:33:08.645Z] :param reraise: -[2024-03-07T16:33:08.645Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.645Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.645Z] """ -[2024-03-07T16:33:08.645Z] excinfo = None -[2024-03-07T16:33:08.645Z] start = timing.time() -[2024-03-07T16:33:08.645Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.645Z] try: -[2024-03-07T16:33:08.645Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.645Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.645Z] ) -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.645Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] self = -[2024-03-07T16:33:08.645Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.645Z] """Call the hook. -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.645Z] specification. -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.645Z] :ref:`calling`. -[2024-03-07T16:33:08.645Z] """ -[2024-03-07T16:33:08.645Z] assert ( -[2024-03-07T16:33:08.645Z] not self.is_historic() -[2024-03-07T16:33:08.645Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.645Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.645Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.645Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.645Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.645Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.645Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.645Z] methods = [>, >, ...] -[2024-03-07T16:33:08.645Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] def _hookexec( -[2024-03-07T16:33:08.645Z] self, -[2024-03-07T16:33:08.645Z] hook_name: str, -[2024-03-07T16:33:08.645Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.645Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.645Z] firstresult: bool, -[2024-03-07T16:33:08.645Z] ) -> object | list[object]: -[2024-03-07T16:33:08.645Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.645Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.645Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.645Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.645Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.645Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] def _multicall( -[2024-03-07T16:33:08.645Z] hook_name: str, -[2024-03-07T16:33:08.645Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.645Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.645Z] firstresult: bool, -[2024-03-07T16:33:08.645Z] ) -> object | list[object]: -[2024-03-07T16:33:08.645Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.645Z] result(s). -[2024-03-07T16:33:08.645Z] -[2024-03-07T16:33:08.645Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.645Z] """ -[2024-03-07T16:33:08.645Z] __tracebackhide__ = True -[2024-03-07T16:33:08.645Z] results: list[object] = [] -[2024-03-07T16:33:08.646Z] exception = None -[2024-03-07T16:33:08.646Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.646Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.646Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.646Z] try: -[2024-03-07T16:33:08.646Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.646Z] try: -[2024-03-07T16:33:08.646Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.646Z] except KeyError: -[2024-03-07T16:33:08.646Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.646Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.646Z] raise HookCallError( -[2024-03-07T16:33:08.646Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.646Z] ) -[2024-03-07T16:33:08.646Z] -[2024-03-07T16:33:08.646Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.646Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.646Z] try: -[2024-03-07T16:33:08.646Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.646Z] # which is the desired response. -[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.646Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.646Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.646Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.646Z] except StopIteration: -[2024-03-07T16:33:08.646Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.646Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.646Z] try: -[2024-03-07T16:33:08.646Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.646Z] # which is the desired response. -[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.646Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.646Z] next(function_gen) # first yield -[2024-03-07T16:33:08.646Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.646Z] except StopIteration: -[2024-03-07T16:33:08.646Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.646Z] else: -[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.646Z] if res is not None: -[2024-03-07T16:33:08.646Z] results.append(res) -[2024-03-07T16:33:08.646Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.646Z] break -[2024-03-07T16:33:08.646Z] except BaseException as exc: -[2024-03-07T16:33:08.646Z] exception = exc -[2024-03-07T16:33:08.646Z] finally: -[2024-03-07T16:33:08.646Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.646Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.646Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.646Z] result = results[0] if results else None -[2024-03-07T16:33:08.646Z] else: -[2024-03-07T16:33:08.646Z] result = results -[2024-03-07T16:33:08.646Z] -[2024-03-07T16:33:08.646Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.646Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.646Z] try: -[2024-03-07T16:33:08.646Z] if exception is not None: -[2024-03-07T16:33:08.646Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.646Z] else: -[2024-03-07T16:33:08.646Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.646Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.646Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.646Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.646Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.646Z] except StopIteration as si: -[2024-03-07T16:33:08.646Z] result = si.value -[2024-03-07T16:33:08.646Z] exception = None -[2024-03-07T16:33:08.646Z] continue -[2024-03-07T16:33:08.646Z] except BaseException as e: -[2024-03-07T16:33:08.646Z] exception = e -[2024-03-07T16:33:08.646Z] continue -[2024-03-07T16:33:08.646Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.646Z] -[2024-03-07T16:33:08.646Z] if exception is not None: -[2024-03-07T16:33:08.646Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.646Z] -[2024-03-07T16:33:08.646Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.646Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.646Z] -[2024-03-07T16:33:08.646Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.646Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.646Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.646Z] -[2024-03-07T16:33:08.646Z] def _multicall( -[2024-03-07T16:33:08.646Z] hook_name: str, -[2024-03-07T16:33:08.646Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.646Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.646Z] firstresult: bool, -[2024-03-07T16:33:08.646Z] ) -> object | list[object]: -[2024-03-07T16:33:08.646Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.646Z] result(s). -[2024-03-07T16:33:08.646Z] -[2024-03-07T16:33:08.646Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.646Z] """ -[2024-03-07T16:33:08.646Z] __tracebackhide__ = True -[2024-03-07T16:33:08.646Z] results: list[object] = [] -[2024-03-07T16:33:08.646Z] exception = None -[2024-03-07T16:33:08.646Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.646Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.646Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.646Z] try: -[2024-03-07T16:33:08.646Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.646Z] try: -[2024-03-07T16:33:08.646Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.646Z] except KeyError: -[2024-03-07T16:33:08.646Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.646Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.646Z] raise HookCallError( -[2024-03-07T16:33:08.646Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.646Z] ) -[2024-03-07T16:33:08.646Z] -[2024-03-07T16:33:08.646Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.646Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.646Z] try: -[2024-03-07T16:33:08.646Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.646Z] # which is the desired response. -[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.646Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.646Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.646Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.646Z] except StopIteration: -[2024-03-07T16:33:08.646Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.646Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.646Z] try: -[2024-03-07T16:33:08.646Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.646Z] # which is the desired response. -[2024-03-07T16:33:08.646Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.646Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.646Z] next(function_gen) # first yield -[2024-03-07T16:33:08.646Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.646Z] except StopIteration: -[2024-03-07T16:33:08.646Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.646Z] else: -[2024-03-07T16:33:08.647Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.647Z] if res is not None: -[2024-03-07T16:33:08.647Z] results.append(res) -[2024-03-07T16:33:08.647Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.647Z] break -[2024-03-07T16:33:08.647Z] except BaseException as exc: -[2024-03-07T16:33:08.647Z] exception = exc -[2024-03-07T16:33:08.647Z] finally: -[2024-03-07T16:33:08.647Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.647Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.647Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.647Z] result = results[0] if results else None -[2024-03-07T16:33:08.647Z] else: -[2024-03-07T16:33:08.647Z] result = results -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.647Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.647Z] try: -[2024-03-07T16:33:08.647Z] if exception is not None: -[2024-03-07T16:33:08.647Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.647Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.647Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.647Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.647Z] try: -[2024-03-07T16:33:08.647Z] > yield -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.647Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.647Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] def _multicall( -[2024-03-07T16:33:08.647Z] hook_name: str, -[2024-03-07T16:33:08.647Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.647Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.647Z] firstresult: bool, -[2024-03-07T16:33:08.647Z] ) -> object | list[object]: -[2024-03-07T16:33:08.647Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.647Z] result(s). -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.647Z] """ -[2024-03-07T16:33:08.647Z] __tracebackhide__ = True -[2024-03-07T16:33:08.647Z] results: list[object] = [] -[2024-03-07T16:33:08.647Z] exception = None -[2024-03-07T16:33:08.647Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.647Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.647Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.647Z] try: -[2024-03-07T16:33:08.647Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.647Z] try: -[2024-03-07T16:33:08.647Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.647Z] except KeyError: -[2024-03-07T16:33:08.647Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.647Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.647Z] raise HookCallError( -[2024-03-07T16:33:08.647Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.647Z] ) -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.647Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.647Z] try: -[2024-03-07T16:33:08.647Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.647Z] # which is the desired response. -[2024-03-07T16:33:08.647Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.647Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.647Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.647Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.647Z] except StopIteration: -[2024-03-07T16:33:08.647Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.647Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.647Z] try: -[2024-03-07T16:33:08.647Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.647Z] # which is the desired response. -[2024-03-07T16:33:08.647Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.647Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.647Z] next(function_gen) # first yield -[2024-03-07T16:33:08.647Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.647Z] except StopIteration: -[2024-03-07T16:33:08.647Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.647Z] else: -[2024-03-07T16:33:08.647Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.647Z] if res is not None: -[2024-03-07T16:33:08.647Z] results.append(res) -[2024-03-07T16:33:08.647Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.647Z] break -[2024-03-07T16:33:08.647Z] except BaseException as exc: -[2024-03-07T16:33:08.647Z] exception = exc -[2024-03-07T16:33:08.647Z] finally: -[2024-03-07T16:33:08.647Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.647Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.647Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.647Z] result = results[0] if results else None -[2024-03-07T16:33:08.647Z] else: -[2024-03-07T16:33:08.647Z] result = results -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.647Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.647Z] try: -[2024-03-07T16:33:08.647Z] if exception is not None: -[2024-03-07T16:33:08.647Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.647Z] item = -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.647Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.647Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.647Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.647Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.647Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.647Z] item = , when = 'setup' -[2024-03-07T16:33:08.647Z] -[2024-03-07T16:33:08.647Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.647Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.647Z] with catching_logs( -[2024-03-07T16:33:08.647Z] self.caplog_handler, -[2024-03-07T16:33:08.647Z] level=self.log_level, -[2024-03-07T16:33:08.647Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.647Z] self.report_handler, -[2024-03-07T16:33:08.647Z] level=self.log_level, -[2024-03-07T16:33:08.647Z] ) as report_handler: -[2024-03-07T16:33:08.647Z] caplog_handler.reset() -[2024-03-07T16:33:08.647Z] report_handler.reset() -[2024-03-07T16:33:08.647Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.648Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.648Z] > yield -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.648Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.648Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.648Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] def _multicall( -[2024-03-07T16:33:08.648Z] hook_name: str, -[2024-03-07T16:33:08.648Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.648Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.648Z] firstresult: bool, -[2024-03-07T16:33:08.648Z] ) -> object | list[object]: -[2024-03-07T16:33:08.648Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.648Z] result(s). -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.648Z] """ -[2024-03-07T16:33:08.648Z] __tracebackhide__ = True -[2024-03-07T16:33:08.648Z] results: list[object] = [] -[2024-03-07T16:33:08.648Z] exception = None -[2024-03-07T16:33:08.648Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.648Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.648Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.648Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.648Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.648Z] except KeyError: -[2024-03-07T16:33:08.648Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.648Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.648Z] raise HookCallError( -[2024-03-07T16:33:08.648Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.648Z] ) -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.648Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.648Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.648Z] # which is the desired response. -[2024-03-07T16:33:08.648Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.648Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.648Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.648Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.648Z] except StopIteration: -[2024-03-07T16:33:08.648Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.648Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.648Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.648Z] # which is the desired response. -[2024-03-07T16:33:08.648Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.648Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.648Z] next(function_gen) # first yield -[2024-03-07T16:33:08.648Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.648Z] except StopIteration: -[2024-03-07T16:33:08.648Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.648Z] else: -[2024-03-07T16:33:08.648Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.648Z] if res is not None: -[2024-03-07T16:33:08.648Z] results.append(res) -[2024-03-07T16:33:08.648Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.648Z] break -[2024-03-07T16:33:08.648Z] except BaseException as exc: -[2024-03-07T16:33:08.648Z] exception = exc -[2024-03-07T16:33:08.648Z] finally: -[2024-03-07T16:33:08.648Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.648Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.648Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.648Z] result = results[0] if results else None -[2024-03-07T16:33:08.648Z] else: -[2024-03-07T16:33:08.648Z] result = results -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.648Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.648Z] if exception is not None: -[2024-03-07T16:33:08.648Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.648Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.648Z] item = -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.648Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.648Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.648Z] > return (yield) -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.648Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.648Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.648Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] def _multicall( -[2024-03-07T16:33:08.648Z] hook_name: str, -[2024-03-07T16:33:08.648Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.648Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.648Z] firstresult: bool, -[2024-03-07T16:33:08.648Z] ) -> object | list[object]: -[2024-03-07T16:33:08.648Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.648Z] result(s). -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.648Z] """ -[2024-03-07T16:33:08.648Z] __tracebackhide__ = True -[2024-03-07T16:33:08.648Z] results: list[object] = [] -[2024-03-07T16:33:08.648Z] exception = None -[2024-03-07T16:33:08.648Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.648Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.648Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.648Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.648Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.648Z] except KeyError: -[2024-03-07T16:33:08.648Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.648Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.648Z] raise HookCallError( -[2024-03-07T16:33:08.648Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.648Z] ) -[2024-03-07T16:33:08.648Z] -[2024-03-07T16:33:08.648Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.648Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.648Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.648Z] # which is the desired response. -[2024-03-07T16:33:08.648Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.648Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.648Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.648Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.648Z] except StopIteration: -[2024-03-07T16:33:08.648Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.648Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.648Z] try: -[2024-03-07T16:33:08.649Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.649Z] # which is the desired response. -[2024-03-07T16:33:08.649Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.649Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.649Z] next(function_gen) # first yield -[2024-03-07T16:33:08.649Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.649Z] except StopIteration: -[2024-03-07T16:33:08.649Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.649Z] else: -[2024-03-07T16:33:08.649Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.649Z] if res is not None: -[2024-03-07T16:33:08.649Z] results.append(res) -[2024-03-07T16:33:08.649Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.649Z] break -[2024-03-07T16:33:08.649Z] except BaseException as exc: -[2024-03-07T16:33:08.649Z] exception = exc -[2024-03-07T16:33:08.649Z] finally: -[2024-03-07T16:33:08.649Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.649Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.649Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.649Z] result = results[0] if results else None -[2024-03-07T16:33:08.649Z] else: -[2024-03-07T16:33:08.649Z] result = results -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.649Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.649Z] try: -[2024-03-07T16:33:08.649Z] if exception is not None: -[2024-03-07T16:33:08.649Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.649Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.649Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.649Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.649Z] try: -[2024-03-07T16:33:08.649Z] > yield -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.649Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.649Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] def _multicall( -[2024-03-07T16:33:08.649Z] hook_name: str, -[2024-03-07T16:33:08.649Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.649Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.649Z] firstresult: bool, -[2024-03-07T16:33:08.649Z] ) -> object | list[object]: -[2024-03-07T16:33:08.649Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.649Z] result(s). -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.649Z] """ -[2024-03-07T16:33:08.649Z] __tracebackhide__ = True -[2024-03-07T16:33:08.649Z] results: list[object] = [] -[2024-03-07T16:33:08.649Z] exception = None -[2024-03-07T16:33:08.649Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.649Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.649Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.649Z] try: -[2024-03-07T16:33:08.649Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.649Z] try: -[2024-03-07T16:33:08.649Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.649Z] except KeyError: -[2024-03-07T16:33:08.649Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.649Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.649Z] raise HookCallError( -[2024-03-07T16:33:08.649Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.649Z] ) -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.649Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.649Z] try: -[2024-03-07T16:33:08.649Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.649Z] # which is the desired response. -[2024-03-07T16:33:08.649Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.649Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.649Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.649Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.649Z] except StopIteration: -[2024-03-07T16:33:08.649Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.649Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.649Z] try: -[2024-03-07T16:33:08.649Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.649Z] # which is the desired response. -[2024-03-07T16:33:08.649Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.649Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.649Z] next(function_gen) # first yield -[2024-03-07T16:33:08.649Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.649Z] except StopIteration: -[2024-03-07T16:33:08.649Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.649Z] else: -[2024-03-07T16:33:08.649Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] item = -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.649Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.649Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.649Z] item = -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.649Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.649Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.649Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.649Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.649Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.649Z] if exc: -[2024-03-07T16:33:08.649Z] > raise exc -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.649Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] cls = -[2024-03-07T16:33:08.649Z] func = . at 0x7f0abc051900> -[2024-03-07T16:33:08.649Z] when = 'setup' -[2024-03-07T16:33:08.649Z] reraise = (, ) -[2024-03-07T16:33:08.649Z] -[2024-03-07T16:33:08.649Z] @classmethod -[2024-03-07T16:33:08.649Z] def from_call( -[2024-03-07T16:33:08.649Z] cls, -[2024-03-07T16:33:08.649Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.649Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.649Z] reraise: Optional[ -[2024-03-07T16:33:08.650Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.650Z] ] = None, -[2024-03-07T16:33:08.650Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.650Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] :param func: -[2024-03-07T16:33:08.650Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.650Z] :param when: -[2024-03-07T16:33:08.650Z] The phase in which the function is called. -[2024-03-07T16:33:08.650Z] :param reraise: -[2024-03-07T16:33:08.650Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.650Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.650Z] """ -[2024-03-07T16:33:08.650Z] excinfo = None -[2024-03-07T16:33:08.650Z] start = timing.time() -[2024-03-07T16:33:08.650Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.650Z] try: -[2024-03-07T16:33:08.650Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.650Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.650Z] ) -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.650Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] self = -[2024-03-07T16:33:08.650Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.650Z] """Call the hook. -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.650Z] specification. -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.650Z] :ref:`calling`. -[2024-03-07T16:33:08.650Z] """ -[2024-03-07T16:33:08.650Z] assert ( -[2024-03-07T16:33:08.650Z] not self.is_historic() -[2024-03-07T16:33:08.650Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.650Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.650Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.650Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.650Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.650Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.650Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.650Z] methods = [>, >, ...] -[2024-03-07T16:33:08.650Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] def _hookexec( -[2024-03-07T16:33:08.650Z] self, -[2024-03-07T16:33:08.650Z] hook_name: str, -[2024-03-07T16:33:08.650Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.650Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.650Z] firstresult: bool, -[2024-03-07T16:33:08.650Z] ) -> object | list[object]: -[2024-03-07T16:33:08.650Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.650Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.650Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.650Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.650Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.650Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] def _multicall( -[2024-03-07T16:33:08.650Z] hook_name: str, -[2024-03-07T16:33:08.650Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.650Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.650Z] firstresult: bool, -[2024-03-07T16:33:08.650Z] ) -> object | list[object]: -[2024-03-07T16:33:08.650Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.650Z] result(s). -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.650Z] """ -[2024-03-07T16:33:08.650Z] __tracebackhide__ = True -[2024-03-07T16:33:08.650Z] results: list[object] = [] -[2024-03-07T16:33:08.650Z] exception = None -[2024-03-07T16:33:08.650Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.650Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.650Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.650Z] try: -[2024-03-07T16:33:08.650Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.650Z] try: -[2024-03-07T16:33:08.650Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.650Z] except KeyError: -[2024-03-07T16:33:08.650Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.650Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.650Z] raise HookCallError( -[2024-03-07T16:33:08.650Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.650Z] ) -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.650Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.650Z] try: -[2024-03-07T16:33:08.650Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.650Z] # which is the desired response. -[2024-03-07T16:33:08.650Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.650Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.650Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.650Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.650Z] except StopIteration: -[2024-03-07T16:33:08.650Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.650Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.650Z] try: -[2024-03-07T16:33:08.650Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.650Z] # which is the desired response. -[2024-03-07T16:33:08.650Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.650Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.650Z] next(function_gen) # first yield -[2024-03-07T16:33:08.650Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.650Z] except StopIteration: -[2024-03-07T16:33:08.650Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.650Z] else: -[2024-03-07T16:33:08.650Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.650Z] if res is not None: -[2024-03-07T16:33:08.650Z] results.append(res) -[2024-03-07T16:33:08.650Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.650Z] break -[2024-03-07T16:33:08.650Z] except BaseException as exc: -[2024-03-07T16:33:08.650Z] exception = exc -[2024-03-07T16:33:08.650Z] finally: -[2024-03-07T16:33:08.650Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.650Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.650Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.650Z] result = results[0] if results else None -[2024-03-07T16:33:08.650Z] else: -[2024-03-07T16:33:08.650Z] result = results -[2024-03-07T16:33:08.650Z] -[2024-03-07T16:33:08.650Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.650Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.650Z] try: -[2024-03-07T16:33:08.650Z] if exception is not None: -[2024-03-07T16:33:08.650Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.650Z] else: -[2024-03-07T16:33:08.650Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.650Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.651Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.651Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.651Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.651Z] except StopIteration as si: -[2024-03-07T16:33:08.651Z] result = si.value -[2024-03-07T16:33:08.651Z] exception = None -[2024-03-07T16:33:08.651Z] continue -[2024-03-07T16:33:08.651Z] except BaseException as e: -[2024-03-07T16:33:08.651Z] exception = e -[2024-03-07T16:33:08.651Z] continue -[2024-03-07T16:33:08.651Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] if exception is not None: -[2024-03-07T16:33:08.651Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.651Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.651Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.651Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] def _multicall( -[2024-03-07T16:33:08.651Z] hook_name: str, -[2024-03-07T16:33:08.651Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.651Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.651Z] firstresult: bool, -[2024-03-07T16:33:08.651Z] ) -> object | list[object]: -[2024-03-07T16:33:08.651Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.651Z] result(s). -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.651Z] """ -[2024-03-07T16:33:08.651Z] __tracebackhide__ = True -[2024-03-07T16:33:08.651Z] results: list[object] = [] -[2024-03-07T16:33:08.651Z] exception = None -[2024-03-07T16:33:08.651Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.651Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.651Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.651Z] try: -[2024-03-07T16:33:08.651Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.651Z] try: -[2024-03-07T16:33:08.651Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.651Z] except KeyError: -[2024-03-07T16:33:08.651Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.651Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.651Z] raise HookCallError( -[2024-03-07T16:33:08.651Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.651Z] ) -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.651Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.651Z] try: -[2024-03-07T16:33:08.651Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.651Z] # which is the desired response. -[2024-03-07T16:33:08.651Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.651Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.651Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.651Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.651Z] except StopIteration: -[2024-03-07T16:33:08.651Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.651Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.651Z] try: -[2024-03-07T16:33:08.651Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.651Z] # which is the desired response. -[2024-03-07T16:33:08.651Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.651Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.651Z] next(function_gen) # first yield -[2024-03-07T16:33:08.651Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.651Z] except StopIteration: -[2024-03-07T16:33:08.651Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.651Z] else: -[2024-03-07T16:33:08.651Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.651Z] if res is not None: -[2024-03-07T16:33:08.651Z] results.append(res) -[2024-03-07T16:33:08.651Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.651Z] break -[2024-03-07T16:33:08.651Z] except BaseException as exc: -[2024-03-07T16:33:08.651Z] exception = exc -[2024-03-07T16:33:08.651Z] finally: -[2024-03-07T16:33:08.651Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.651Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.651Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.651Z] result = results[0] if results else None -[2024-03-07T16:33:08.651Z] else: -[2024-03-07T16:33:08.651Z] result = results -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.651Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.651Z] try: -[2024-03-07T16:33:08.651Z] if exception is not None: -[2024-03-07T16:33:08.651Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.651Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.651Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.651Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.651Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.651Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.651Z] try: -[2024-03-07T16:33:08.651Z] > yield -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.651Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.651Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.651Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] def _multicall( -[2024-03-07T16:33:08.651Z] hook_name: str, -[2024-03-07T16:33:08.651Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.651Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.651Z] firstresult: bool, -[2024-03-07T16:33:08.651Z] ) -> object | list[object]: -[2024-03-07T16:33:08.651Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.651Z] result(s). -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.651Z] """ -[2024-03-07T16:33:08.651Z] __tracebackhide__ = True -[2024-03-07T16:33:08.651Z] results: list[object] = [] -[2024-03-07T16:33:08.651Z] exception = None -[2024-03-07T16:33:08.651Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.651Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.651Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.651Z] try: -[2024-03-07T16:33:08.651Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.651Z] try: -[2024-03-07T16:33:08.651Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.651Z] except KeyError: -[2024-03-07T16:33:08.651Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.651Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.651Z] raise HookCallError( -[2024-03-07T16:33:08.651Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.651Z] ) -[2024-03-07T16:33:08.651Z] -[2024-03-07T16:33:08.651Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.652Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.652Z] try: -[2024-03-07T16:33:08.652Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.652Z] # which is the desired response. -[2024-03-07T16:33:08.652Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.652Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.652Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.652Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.652Z] except StopIteration: -[2024-03-07T16:33:08.652Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.652Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.652Z] try: -[2024-03-07T16:33:08.652Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.652Z] # which is the desired response. -[2024-03-07T16:33:08.652Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.652Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.652Z] next(function_gen) # first yield -[2024-03-07T16:33:08.652Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.652Z] except StopIteration: -[2024-03-07T16:33:08.652Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.652Z] else: -[2024-03-07T16:33:08.652Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.652Z] if res is not None: -[2024-03-07T16:33:08.652Z] results.append(res) -[2024-03-07T16:33:08.652Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.652Z] break -[2024-03-07T16:33:08.652Z] except BaseException as exc: -[2024-03-07T16:33:08.652Z] exception = exc -[2024-03-07T16:33:08.652Z] finally: -[2024-03-07T16:33:08.652Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.652Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.652Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.652Z] result = results[0] if results else None -[2024-03-07T16:33:08.652Z] else: -[2024-03-07T16:33:08.652Z] result = results -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.652Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.652Z] try: -[2024-03-07T16:33:08.652Z] if exception is not None: -[2024-03-07T16:33:08.652Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.652Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.652Z] item = -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.652Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.652Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.652Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.652Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.652Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.652Z] item = , when = 'setup' -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.652Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.652Z] with catching_logs( -[2024-03-07T16:33:08.652Z] self.caplog_handler, -[2024-03-07T16:33:08.652Z] level=self.log_level, -[2024-03-07T16:33:08.652Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.652Z] self.report_handler, -[2024-03-07T16:33:08.652Z] level=self.log_level, -[2024-03-07T16:33:08.652Z] ) as report_handler: -[2024-03-07T16:33:08.652Z] caplog_handler.reset() -[2024-03-07T16:33:08.652Z] report_handler.reset() -[2024-03-07T16:33:08.652Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.652Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] try: -[2024-03-07T16:33:08.652Z] > yield -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.652Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.652Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.652Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] def _multicall( -[2024-03-07T16:33:08.652Z] hook_name: str, -[2024-03-07T16:33:08.652Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.652Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.652Z] firstresult: bool, -[2024-03-07T16:33:08.652Z] ) -> object | list[object]: -[2024-03-07T16:33:08.652Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.652Z] result(s). -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.652Z] """ -[2024-03-07T16:33:08.652Z] __tracebackhide__ = True -[2024-03-07T16:33:08.652Z] results: list[object] = [] -[2024-03-07T16:33:08.652Z] exception = None -[2024-03-07T16:33:08.652Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.652Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.652Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.652Z] try: -[2024-03-07T16:33:08.652Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.652Z] try: -[2024-03-07T16:33:08.652Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.652Z] except KeyError: -[2024-03-07T16:33:08.652Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.652Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.652Z] raise HookCallError( -[2024-03-07T16:33:08.652Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.652Z] ) -[2024-03-07T16:33:08.652Z] -[2024-03-07T16:33:08.652Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.652Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.652Z] try: -[2024-03-07T16:33:08.652Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.652Z] # which is the desired response. -[2024-03-07T16:33:08.652Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.652Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.652Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.652Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.652Z] except StopIteration: -[2024-03-07T16:33:08.652Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.652Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.652Z] try: -[2024-03-07T16:33:08.653Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.653Z] # which is the desired response. -[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.653Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.653Z] next(function_gen) # first yield -[2024-03-07T16:33:08.653Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.653Z] except StopIteration: -[2024-03-07T16:33:08.653Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.653Z] else: -[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.653Z] if res is not None: -[2024-03-07T16:33:08.653Z] results.append(res) -[2024-03-07T16:33:08.653Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.653Z] break -[2024-03-07T16:33:08.653Z] except BaseException as exc: -[2024-03-07T16:33:08.653Z] exception = exc -[2024-03-07T16:33:08.653Z] finally: -[2024-03-07T16:33:08.653Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.653Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.653Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.653Z] result = results[0] if results else None -[2024-03-07T16:33:08.653Z] else: -[2024-03-07T16:33:08.653Z] result = results -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.653Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.653Z] try: -[2024-03-07T16:33:08.653Z] if exception is not None: -[2024-03-07T16:33:08.653Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.653Z] item = -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.653Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.653Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.653Z] > return (yield) -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.653Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.653Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] def _multicall( -[2024-03-07T16:33:08.653Z] hook_name: str, -[2024-03-07T16:33:08.653Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.653Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.653Z] firstresult: bool, -[2024-03-07T16:33:08.653Z] ) -> object | list[object]: -[2024-03-07T16:33:08.653Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.653Z] result(s). -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.653Z] """ -[2024-03-07T16:33:08.653Z] __tracebackhide__ = True -[2024-03-07T16:33:08.653Z] results: list[object] = [] -[2024-03-07T16:33:08.653Z] exception = None -[2024-03-07T16:33:08.653Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.653Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.653Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.653Z] try: -[2024-03-07T16:33:08.653Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.653Z] try: -[2024-03-07T16:33:08.653Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.653Z] except KeyError: -[2024-03-07T16:33:08.653Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.653Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.653Z] raise HookCallError( -[2024-03-07T16:33:08.653Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.653Z] ) -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.653Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.653Z] try: -[2024-03-07T16:33:08.653Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.653Z] # which is the desired response. -[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.653Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.653Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.653Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.653Z] except StopIteration: -[2024-03-07T16:33:08.653Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.653Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.653Z] try: -[2024-03-07T16:33:08.653Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.653Z] # which is the desired response. -[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.653Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.653Z] next(function_gen) # first yield -[2024-03-07T16:33:08.653Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.653Z] except StopIteration: -[2024-03-07T16:33:08.653Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.653Z] else: -[2024-03-07T16:33:08.653Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.653Z] if res is not None: -[2024-03-07T16:33:08.653Z] results.append(res) -[2024-03-07T16:33:08.653Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.653Z] break -[2024-03-07T16:33:08.653Z] except BaseException as exc: -[2024-03-07T16:33:08.653Z] exception = exc -[2024-03-07T16:33:08.653Z] finally: -[2024-03-07T16:33:08.653Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.653Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.653Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.653Z] result = results[0] if results else None -[2024-03-07T16:33:08.653Z] else: -[2024-03-07T16:33:08.653Z] result = results -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.653Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.653Z] try: -[2024-03-07T16:33:08.653Z] if exception is not None: -[2024-03-07T16:33:08.653Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.653Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.653Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.653Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.653Z] try: -[2024-03-07T16:33:08.653Z] > yield -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.653Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.653Z] -[2024-03-07T16:33:08.653Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.654Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.654Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] def _multicall( -[2024-03-07T16:33:08.654Z] hook_name: str, -[2024-03-07T16:33:08.654Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.654Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.654Z] firstresult: bool, -[2024-03-07T16:33:08.654Z] ) -> object | list[object]: -[2024-03-07T16:33:08.654Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.654Z] result(s). -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.654Z] """ -[2024-03-07T16:33:08.654Z] __tracebackhide__ = True -[2024-03-07T16:33:08.654Z] results: list[object] = [] -[2024-03-07T16:33:08.654Z] exception = None -[2024-03-07T16:33:08.654Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.654Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.654Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.654Z] try: -[2024-03-07T16:33:08.654Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.654Z] try: -[2024-03-07T16:33:08.654Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.654Z] except KeyError: -[2024-03-07T16:33:08.654Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.654Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.654Z] raise HookCallError( -[2024-03-07T16:33:08.654Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.654Z] ) -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.654Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.654Z] try: -[2024-03-07T16:33:08.654Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.654Z] # which is the desired response. -[2024-03-07T16:33:08.654Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.654Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.654Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.654Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.654Z] except StopIteration: -[2024-03-07T16:33:08.654Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.654Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.654Z] try: -[2024-03-07T16:33:08.654Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.654Z] # which is the desired response. -[2024-03-07T16:33:08.654Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.654Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.654Z] next(function_gen) # first yield -[2024-03-07T16:33:08.654Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.654Z] except StopIteration: -[2024-03-07T16:33:08.654Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.654Z] else: -[2024-03-07T16:33:08.654Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] item = -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.654Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.654Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.654Z] item = -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.654Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.654Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.654Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.654Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.654Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.654Z] if exc: -[2024-03-07T16:33:08.654Z] > raise exc -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] cls = -[2024-03-07T16:33:08.654Z] func = . at 0x7f0abbb0b520> -[2024-03-07T16:33:08.654Z] when = 'setup' -[2024-03-07T16:33:08.654Z] reraise = (, ) -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] @classmethod -[2024-03-07T16:33:08.654Z] def from_call( -[2024-03-07T16:33:08.654Z] cls, -[2024-03-07T16:33:08.654Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.654Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.654Z] reraise: Optional[ -[2024-03-07T16:33:08.654Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.654Z] ] = None, -[2024-03-07T16:33:08.654Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.654Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] :param func: -[2024-03-07T16:33:08.654Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.654Z] :param when: -[2024-03-07T16:33:08.654Z] The phase in which the function is called. -[2024-03-07T16:33:08.654Z] :param reraise: -[2024-03-07T16:33:08.654Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.654Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.654Z] """ -[2024-03-07T16:33:08.654Z] excinfo = None -[2024-03-07T16:33:08.654Z] start = timing.time() -[2024-03-07T16:33:08.654Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.654Z] try: -[2024-03-07T16:33:08.654Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.654Z] ) -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.654Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] self = -[2024-03-07T16:33:08.654Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.654Z] """Call the hook. -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.654Z] specification. -[2024-03-07T16:33:08.654Z] -[2024-03-07T16:33:08.654Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.654Z] :ref:`calling`. -[2024-03-07T16:33:08.654Z] """ -[2024-03-07T16:33:08.654Z] assert ( -[2024-03-07T16:33:08.654Z] not self.is_historic() -[2024-03-07T16:33:08.654Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.654Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.655Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.655Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.655Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.655Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.655Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.655Z] methods = [>, >, ...] -[2024-03-07T16:33:08.655Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] def _hookexec( -[2024-03-07T16:33:08.655Z] self, -[2024-03-07T16:33:08.655Z] hook_name: str, -[2024-03-07T16:33:08.655Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.655Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.655Z] firstresult: bool, -[2024-03-07T16:33:08.655Z] ) -> object | list[object]: -[2024-03-07T16:33:08.655Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.655Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.655Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.655Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.655Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.655Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] def _multicall( -[2024-03-07T16:33:08.655Z] hook_name: str, -[2024-03-07T16:33:08.655Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.655Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.655Z] firstresult: bool, -[2024-03-07T16:33:08.655Z] ) -> object | list[object]: -[2024-03-07T16:33:08.655Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.655Z] result(s). -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.655Z] """ -[2024-03-07T16:33:08.655Z] __tracebackhide__ = True -[2024-03-07T16:33:08.655Z] results: list[object] = [] -[2024-03-07T16:33:08.655Z] exception = None -[2024-03-07T16:33:08.655Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.655Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.655Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.655Z] try: -[2024-03-07T16:33:08.655Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.655Z] try: -[2024-03-07T16:33:08.655Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.655Z] except KeyError: -[2024-03-07T16:33:08.655Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.655Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.655Z] raise HookCallError( -[2024-03-07T16:33:08.655Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.655Z] ) -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.655Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.655Z] try: -[2024-03-07T16:33:08.655Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.655Z] # which is the desired response. -[2024-03-07T16:33:08.655Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.655Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.655Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.655Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.655Z] except StopIteration: -[2024-03-07T16:33:08.655Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.655Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.655Z] try: -[2024-03-07T16:33:08.655Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.655Z] # which is the desired response. -[2024-03-07T16:33:08.655Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.655Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.655Z] next(function_gen) # first yield -[2024-03-07T16:33:08.655Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.655Z] except StopIteration: -[2024-03-07T16:33:08.655Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.655Z] else: -[2024-03-07T16:33:08.655Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.655Z] if res is not None: -[2024-03-07T16:33:08.655Z] results.append(res) -[2024-03-07T16:33:08.655Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.655Z] break -[2024-03-07T16:33:08.655Z] except BaseException as exc: -[2024-03-07T16:33:08.655Z] exception = exc -[2024-03-07T16:33:08.655Z] finally: -[2024-03-07T16:33:08.655Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.655Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.655Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.655Z] result = results[0] if results else None -[2024-03-07T16:33:08.655Z] else: -[2024-03-07T16:33:08.655Z] result = results -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.655Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.655Z] try: -[2024-03-07T16:33:08.655Z] if exception is not None: -[2024-03-07T16:33:08.655Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.655Z] else: -[2024-03-07T16:33:08.655Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.655Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.655Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.655Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.655Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.655Z] except StopIteration as si: -[2024-03-07T16:33:08.655Z] result = si.value -[2024-03-07T16:33:08.655Z] exception = None -[2024-03-07T16:33:08.655Z] continue -[2024-03-07T16:33:08.655Z] except BaseException as e: -[2024-03-07T16:33:08.655Z] exception = e -[2024-03-07T16:33:08.655Z] continue -[2024-03-07T16:33:08.655Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] if exception is not None: -[2024-03-07T16:33:08.655Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.655Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.655Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.655Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] def _multicall( -[2024-03-07T16:33:08.655Z] hook_name: str, -[2024-03-07T16:33:08.655Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.655Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.655Z] firstresult: bool, -[2024-03-07T16:33:08.655Z] ) -> object | list[object]: -[2024-03-07T16:33:08.655Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.655Z] result(s). -[2024-03-07T16:33:08.655Z] -[2024-03-07T16:33:08.655Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.655Z] """ -[2024-03-07T16:33:08.655Z] __tracebackhide__ = True -[2024-03-07T16:33:08.655Z] results: list[object] = [] -[2024-03-07T16:33:08.655Z] exception = None -[2024-03-07T16:33:08.656Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.656Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.656Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.656Z] except KeyError: -[2024-03-07T16:33:08.656Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.656Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.656Z] raise HookCallError( -[2024-03-07T16:33:08.656Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.656Z] ) -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.656Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.656Z] # which is the desired response. -[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.656Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.656Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.656Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.656Z] except StopIteration: -[2024-03-07T16:33:08.656Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.656Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.656Z] # which is the desired response. -[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.656Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.656Z] next(function_gen) # first yield -[2024-03-07T16:33:08.656Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.656Z] except StopIteration: -[2024-03-07T16:33:08.656Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.656Z] else: -[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.656Z] if res is not None: -[2024-03-07T16:33:08.656Z] results.append(res) -[2024-03-07T16:33:08.656Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.656Z] break -[2024-03-07T16:33:08.656Z] except BaseException as exc: -[2024-03-07T16:33:08.656Z] exception = exc -[2024-03-07T16:33:08.656Z] finally: -[2024-03-07T16:33:08.656Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.656Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.656Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.656Z] result = results[0] if results else None -[2024-03-07T16:33:08.656Z] else: -[2024-03-07T16:33:08.656Z] result = results -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.656Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] if exception is not None: -[2024-03-07T16:33:08.656Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.656Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.656Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.656Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.656Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.656Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] > yield -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.656Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.656Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.656Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] def _multicall( -[2024-03-07T16:33:08.656Z] hook_name: str, -[2024-03-07T16:33:08.656Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.656Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.656Z] firstresult: bool, -[2024-03-07T16:33:08.656Z] ) -> object | list[object]: -[2024-03-07T16:33:08.656Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.656Z] result(s). -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.656Z] """ -[2024-03-07T16:33:08.656Z] __tracebackhide__ = True -[2024-03-07T16:33:08.656Z] results: list[object] = [] -[2024-03-07T16:33:08.656Z] exception = None -[2024-03-07T16:33:08.656Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.656Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.656Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.656Z] except KeyError: -[2024-03-07T16:33:08.656Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.656Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.656Z] raise HookCallError( -[2024-03-07T16:33:08.656Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.656Z] ) -[2024-03-07T16:33:08.656Z] -[2024-03-07T16:33:08.656Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.656Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.656Z] # which is the desired response. -[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.656Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.656Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.656Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.656Z] except StopIteration: -[2024-03-07T16:33:08.656Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.656Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.656Z] try: -[2024-03-07T16:33:08.656Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.656Z] # which is the desired response. -[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.656Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.656Z] next(function_gen) # first yield -[2024-03-07T16:33:08.656Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.656Z] except StopIteration: -[2024-03-07T16:33:08.656Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.656Z] else: -[2024-03-07T16:33:08.656Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.656Z] if res is not None: -[2024-03-07T16:33:08.656Z] results.append(res) -[2024-03-07T16:33:08.656Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.656Z] break -[2024-03-07T16:33:08.656Z] except BaseException as exc: -[2024-03-07T16:33:08.656Z] exception = exc -[2024-03-07T16:33:08.656Z] finally: -[2024-03-07T16:33:08.656Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.656Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.656Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.657Z] result = results[0] if results else None -[2024-03-07T16:33:08.657Z] else: -[2024-03-07T16:33:08.657Z] result = results -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.657Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.657Z] try: -[2024-03-07T16:33:08.657Z] if exception is not None: -[2024-03-07T16:33:08.657Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.657Z] item = -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.657Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.657Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.657Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.657Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.657Z] item = , when = 'setup' -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.657Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.657Z] with catching_logs( -[2024-03-07T16:33:08.657Z] self.caplog_handler, -[2024-03-07T16:33:08.657Z] level=self.log_level, -[2024-03-07T16:33:08.657Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.657Z] self.report_handler, -[2024-03-07T16:33:08.657Z] level=self.log_level, -[2024-03-07T16:33:08.657Z] ) as report_handler: -[2024-03-07T16:33:08.657Z] caplog_handler.reset() -[2024-03-07T16:33:08.657Z] report_handler.reset() -[2024-03-07T16:33:08.657Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.657Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] try: -[2024-03-07T16:33:08.657Z] > yield -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.657Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.657Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] def _multicall( -[2024-03-07T16:33:08.657Z] hook_name: str, -[2024-03-07T16:33:08.657Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.657Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.657Z] firstresult: bool, -[2024-03-07T16:33:08.657Z] ) -> object | list[object]: -[2024-03-07T16:33:08.657Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.657Z] result(s). -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.657Z] """ -[2024-03-07T16:33:08.657Z] __tracebackhide__ = True -[2024-03-07T16:33:08.657Z] results: list[object] = [] -[2024-03-07T16:33:08.657Z] exception = None -[2024-03-07T16:33:08.657Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.657Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.657Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.657Z] try: -[2024-03-07T16:33:08.657Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.657Z] try: -[2024-03-07T16:33:08.657Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.657Z] except KeyError: -[2024-03-07T16:33:08.657Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.657Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.657Z] raise HookCallError( -[2024-03-07T16:33:08.657Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.657Z] ) -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.657Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.657Z] try: -[2024-03-07T16:33:08.657Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.657Z] # which is the desired response. -[2024-03-07T16:33:08.657Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.657Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.657Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.657Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.657Z] except StopIteration: -[2024-03-07T16:33:08.657Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.657Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.657Z] try: -[2024-03-07T16:33:08.657Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.657Z] # which is the desired response. -[2024-03-07T16:33:08.657Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.657Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.657Z] next(function_gen) # first yield -[2024-03-07T16:33:08.657Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.657Z] except StopIteration: -[2024-03-07T16:33:08.657Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.657Z] else: -[2024-03-07T16:33:08.657Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.657Z] if res is not None: -[2024-03-07T16:33:08.657Z] results.append(res) -[2024-03-07T16:33:08.657Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.657Z] break -[2024-03-07T16:33:08.657Z] except BaseException as exc: -[2024-03-07T16:33:08.657Z] exception = exc -[2024-03-07T16:33:08.657Z] finally: -[2024-03-07T16:33:08.657Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.657Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.657Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.657Z] result = results[0] if results else None -[2024-03-07T16:33:08.657Z] else: -[2024-03-07T16:33:08.657Z] result = results -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.657Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.657Z] try: -[2024-03-07T16:33:08.657Z] if exception is not None: -[2024-03-07T16:33:08.657Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.657Z] item = -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.657Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.657Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.657Z] > return (yield) -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.657Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.657Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.657Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.657Z] -[2024-03-07T16:33:08.657Z] def _multicall( -[2024-03-07T16:33:08.657Z] hook_name: str, -[2024-03-07T16:33:08.657Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.658Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.658Z] firstresult: bool, -[2024-03-07T16:33:08.658Z] ) -> object | list[object]: -[2024-03-07T16:33:08.658Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.658Z] result(s). -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.658Z] """ -[2024-03-07T16:33:08.658Z] __tracebackhide__ = True -[2024-03-07T16:33:08.658Z] results: list[object] = [] -[2024-03-07T16:33:08.658Z] exception = None -[2024-03-07T16:33:08.658Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.658Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.658Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.658Z] except KeyError: -[2024-03-07T16:33:08.658Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.658Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.658Z] raise HookCallError( -[2024-03-07T16:33:08.658Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.658Z] ) -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.658Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.658Z] # which is the desired response. -[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.658Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.658Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.658Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.658Z] except StopIteration: -[2024-03-07T16:33:08.658Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.658Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.658Z] # which is the desired response. -[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.658Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.658Z] next(function_gen) # first yield -[2024-03-07T16:33:08.658Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.658Z] except StopIteration: -[2024-03-07T16:33:08.658Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.658Z] else: -[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.658Z] if res is not None: -[2024-03-07T16:33:08.658Z] results.append(res) -[2024-03-07T16:33:08.658Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.658Z] break -[2024-03-07T16:33:08.658Z] except BaseException as exc: -[2024-03-07T16:33:08.658Z] exception = exc -[2024-03-07T16:33:08.658Z] finally: -[2024-03-07T16:33:08.658Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.658Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.658Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.658Z] result = results[0] if results else None -[2024-03-07T16:33:08.658Z] else: -[2024-03-07T16:33:08.658Z] result = results -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.658Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] if exception is not None: -[2024-03-07T16:33:08.658Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.658Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.658Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.658Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.658Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.658Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] > yield -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.658Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.658Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.658Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] def _multicall( -[2024-03-07T16:33:08.658Z] hook_name: str, -[2024-03-07T16:33:08.658Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.658Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.658Z] firstresult: bool, -[2024-03-07T16:33:08.658Z] ) -> object | list[object]: -[2024-03-07T16:33:08.658Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.658Z] result(s). -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.658Z] """ -[2024-03-07T16:33:08.658Z] __tracebackhide__ = True -[2024-03-07T16:33:08.658Z] results: list[object] = [] -[2024-03-07T16:33:08.658Z] exception = None -[2024-03-07T16:33:08.658Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.658Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.658Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.658Z] except KeyError: -[2024-03-07T16:33:08.658Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.658Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.658Z] raise HookCallError( -[2024-03-07T16:33:08.658Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.658Z] ) -[2024-03-07T16:33:08.658Z] -[2024-03-07T16:33:08.658Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.658Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.658Z] # which is the desired response. -[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.658Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.658Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.658Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.658Z] except StopIteration: -[2024-03-07T16:33:08.658Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.658Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.658Z] try: -[2024-03-07T16:33:08.658Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.658Z] # which is the desired response. -[2024-03-07T16:33:08.658Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.658Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.658Z] next(function_gen) # first yield -[2024-03-07T16:33:08.658Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.658Z] except StopIteration: -[2024-03-07T16:33:08.659Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.659Z] else: -[2024-03-07T16:33:08.659Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] item = -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.659Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.659Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.659Z] item = -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.659Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.659Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.659Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.659Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.659Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.659Z] if exc: -[2024-03-07T16:33:08.659Z] raise exc -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.659Z] assert col not in self.stack -[2024-03-07T16:33:08.659Z] # Push onto the stack. -[2024-03-07T16:33:08.659Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.659Z] try: -[2024-03-07T16:33:08.659Z] col.setup() -[2024-03-07T16:33:08.659Z] except TEST_OUTCOME as exc: -[2024-03-07T16:33:08.659Z] self.stack[col] = (self.stack[col][0], exc) -[2024-03-07T16:33:08.659Z] > raise exc -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: -[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.659Z] item = -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.659Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.659Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.659Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.659Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.659Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.659Z] if exc: -[2024-03-07T16:33:08.659Z] raise exc -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.659Z] assert col not in self.stack -[2024-03-07T16:33:08.659Z] # Push onto the stack. -[2024-03-07T16:33:08.659Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.659Z] try: -[2024-03-07T16:33:08.659Z] > col.setup() -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: -[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] self = -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] def setup(self): -[2024-03-07T16:33:08.659Z] """ -[2024-03-07T16:33:08.659Z] Called by pytest to setup the collector cells in . -[2024-03-07T16:33:08.659Z] Here we start a kernel and setup the sanitize patterns. -[2024-03-07T16:33:08.659Z] """ -[2024-03-07T16:33:08.659Z] # we've already checked that --nbval-current-env and -[2024-03-07T16:33:08.659Z] # --nbval-kernel-name were not both supplied -[2024-03-07T16:33:08.659Z] if self.parent.config.option.nbval_current_env: -[2024-03-07T16:33:08.659Z] kernel_name = CURRENT_ENV_KERNEL_NAME -[2024-03-07T16:33:08.659Z] elif self.parent.config.option.nbval_kernel_name: -[2024-03-07T16:33:08.659Z] kernel_name = self.parent.config.option.nbval_kernel_name -[2024-03-07T16:33:08.659Z] else: -[2024-03-07T16:33:08.659Z] kernel_name = self.nb.metadata.get( -[2024-03-07T16:33:08.659Z] 'kernelspec', {}).get('name', 'python') -[2024-03-07T16:33:08.659Z] > self.kernel = RunningKernel( -[2024-03-07T16:33:08.659Z] kernel_name, -[2024-03-07T16:33:08.659Z] cwd=str(self.fspath.dirname), -[2024-03-07T16:33:08.659Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, -[2024-03-07T16:33:08.659Z] ) -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: -[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] self = -[2024-03-07T16:33:08.659Z] kernel_name = 'python' -[2024-03-07T16:33:08.659Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' -[2024-03-07T16:33:08.659Z] startup_timeout = 60 -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): -[2024-03-07T16:33:08.659Z] """ -[2024-03-07T16:33:08.659Z] Initialise a new kernel -[2024-03-07T16:33:08.659Z] specify that matplotlib is inline and connect the stderr. -[2024-03-07T16:33:08.659Z] Stores the active kernel process and its manager. -[2024-03-07T16:33:08.659Z] """ -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] > self.km, self.kc = start_new_kernel( -[2024-03-07T16:33:08.659Z] startup_timeout=startup_timeout, -[2024-03-07T16:33:08.659Z] kernel_name=kernel_name, -[2024-03-07T16:33:08.659Z] stderr=open(os.devnull, 'w'), -[2024-03-07T16:33:08.659Z] cwd=cwd, -[2024-03-07T16:33:08.659Z] ) -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: -[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] startup_timeout = 60, kernel_name = 'python' -[2024-03-07T16:33:08.659Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} -[2024-03-07T16:33:08.659Z] km = -[2024-03-07T16:33:08.659Z] kc = -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): -[2024-03-07T16:33:08.659Z] """Start a new kernel, and return its Manager and Client""" -[2024-03-07T16:33:08.659Z] logger.debug('Starting new kernel: "%s"' % kernel_name) -[2024-03-07T16:33:08.659Z] km = KernelManager(kernel_name=kernel_name, -[2024-03-07T16:33:08.659Z] kernel_spec_manager=NbvalKernelspecManager()) -[2024-03-07T16:33:08.659Z] km.start_kernel(**kwargs) -[2024-03-07T16:33:08.659Z] kc = km.client() -[2024-03-07T16:33:08.659Z] kc.start_channels() -[2024-03-07T16:33:08.659Z] try: -[2024-03-07T16:33:08.659Z] > kc.wait_for_ready(timeout=startup_timeout) -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: -[2024-03-07T16:33:08.659Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] args = (,) -[2024-03-07T16:33:08.659Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.659Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.659Z] nest_asyncio = -[2024-03-07T16:33:08.659Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.659Z] try: -[2024-03-07T16:33:08.659Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.659Z] except RuntimeError: -[2024-03-07T16:33:08.659Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.659Z] try: -[2024-03-07T16:33:08.659Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.659Z] except RuntimeError: -[2024-03-07T16:33:08.659Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.659Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.659Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.659Z] -[2024-03-07T16:33:08.659Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.659Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.659Z] try: -[2024-03-07T16:33:08.660Z] return loop.run_until_complete(future) -[2024-03-07T16:33:08.660Z] except BaseException as e: -[2024-03-07T16:33:08.660Z] future.cancel() -[2024-03-07T16:33:08.660Z] > raise e -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: -[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] args = (,) -[2024-03-07T16:33:08.660Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.660Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.660Z] nest_asyncio = -[2024-03-07T16:33:08.660Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.660Z] try: -[2024-03-07T16:33:08.660Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.660Z] except RuntimeError: -[2024-03-07T16:33:08.660Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.660Z] try: -[2024-03-07T16:33:08.660Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.660Z] except RuntimeError: -[2024-03-07T16:33:08.660Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.660Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.660Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.660Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.660Z] try: -[2024-03-07T16:33:08.660Z] > return loop.run_until_complete(future) -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: -[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.660Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] def run_until_complete(self, future): -[2024-03-07T16:33:08.660Z] with manage_run(self): -[2024-03-07T16:33:08.660Z] f = asyncio.ensure_future(future, loop=self) -[2024-03-07T16:33:08.660Z] if f is not future: -[2024-03-07T16:33:08.660Z] f._log_destroy_pending = False -[2024-03-07T16:33:08.660Z] while not f.done(): -[2024-03-07T16:33:08.660Z] self._run_once() -[2024-03-07T16:33:08.660Z] if self._stopping: -[2024-03-07T16:33:08.660Z] break -[2024-03-07T16:33:08.660Z] if not f.done(): -[2024-03-07T16:33:08.660Z] raise RuntimeError( -[2024-03-07T16:33:08.660Z] 'Event loop stopped before Future completed.') -[2024-03-07T16:33:08.660Z] > return f.result() -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: -[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] def result(self): -[2024-03-07T16:33:08.660Z] """Return the result this future represents. -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] If the future has been cancelled, raises CancelledError. If the -[2024-03-07T16:33:08.660Z] future's result isn't yet available, raises InvalidStateError. If -[2024-03-07T16:33:08.660Z] the future is done and has an exception set, this exception is raised. -[2024-03-07T16:33:08.660Z] """ -[2024-03-07T16:33:08.660Z] if self._state == _CANCELLED: -[2024-03-07T16:33:08.660Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.660Z] raise exc -[2024-03-07T16:33:08.660Z] if self._state != _FINISHED: -[2024-03-07T16:33:08.660Z] raise exceptions.InvalidStateError('Result is not ready.') -[2024-03-07T16:33:08.660Z] self.__log_traceback = False -[2024-03-07T16:33:08.660Z] if self._exception is not None: -[2024-03-07T16:33:08.660Z] > raise self._exception.with_traceback(self._exception_tb) -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: -[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] self = None -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] def __step(self, exc=None): -[2024-03-07T16:33:08.660Z] if self.done(): -[2024-03-07T16:33:08.660Z] raise exceptions.InvalidStateError( -[2024-03-07T16:33:08.660Z] f'_step(): already done: {self!r}, {exc!r}') -[2024-03-07T16:33:08.660Z] if self._must_cancel: -[2024-03-07T16:33:08.660Z] if not isinstance(exc, exceptions.CancelledError): -[2024-03-07T16:33:08.660Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.660Z] self._must_cancel = False -[2024-03-07T16:33:08.660Z] coro = self._coro -[2024-03-07T16:33:08.660Z] self._fut_waiter = None -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] _enter_task(self._loop, self) -[2024-03-07T16:33:08.660Z] # Call either coro.throw(exc) or coro.send(None). -[2024-03-07T16:33:08.660Z] try: -[2024-03-07T16:33:08.660Z] if exc is None: -[2024-03-07T16:33:08.660Z] # We use the `send` method directly, because coroutines -[2024-03-07T16:33:08.660Z] # don't have `__iter__` and `__next__` methods. -[2024-03-07T16:33:08.660Z] > result = coro.send(None) -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: -[2024-03-07T16:33:08.660Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] self = -[2024-03-07T16:33:08.660Z] timeout = 60 -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: -[2024-03-07T16:33:08.660Z] """Waits for a response when a client is blocked -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] - Sets future time for timeout -[2024-03-07T16:33:08.660Z] - Blocks on shell channel until a message is received -[2024-03-07T16:33:08.660Z] - Exit if the kernel has died -[2024-03-07T16:33:08.660Z] - If client times out before receiving a message from the kernel, send RuntimeError -[2024-03-07T16:33:08.660Z] - Flush the IOPub channel -[2024-03-07T16:33:08.660Z] """ -[2024-03-07T16:33:08.660Z] if timeout is None: -[2024-03-07T16:33:08.660Z] timeout = float("inf") -[2024-03-07T16:33:08.660Z] abs_timeout = time.time() + timeout -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] from .manager import KernelManager -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] if not isinstance(self.parent, KernelManager): -[2024-03-07T16:33:08.660Z] # This Client was not created by a KernelManager, -[2024-03-07T16:33:08.660Z] # so wait for kernel to become responsive to heartbeats -[2024-03-07T16:33:08.660Z] # before checking for kernel_info reply -[2024-03-07T16:33:08.660Z] while not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.660Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.660Z] raise RuntimeError( -[2024-03-07T16:33:08.660Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout -[2024-03-07T16:33:08.660Z] ) -[2024-03-07T16:33:08.660Z] await asyncio.sleep(0.2) -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] # Wait for kernel info reply on shell channel -[2024-03-07T16:33:08.660Z] while True: -[2024-03-07T16:33:08.660Z] self.kernel_info() -[2024-03-07T16:33:08.660Z] try: -[2024-03-07T16:33:08.660Z] msg = await self.shell_channel.get_msg(timeout=1) -[2024-03-07T16:33:08.660Z] except Empty: -[2024-03-07T16:33:08.660Z] pass -[2024-03-07T16:33:08.660Z] else: -[2024-03-07T16:33:08.660Z] if msg["msg_type"] == "kernel_info_reply": -[2024-03-07T16:33:08.660Z] # Checking that IOPub is connected. If it is not connected, start over. -[2024-03-07T16:33:08.660Z] try: -[2024-03-07T16:33:08.660Z] await self.iopub_channel.get_msg(timeout=0.2) -[2024-03-07T16:33:08.660Z] except Empty: -[2024-03-07T16:33:08.660Z] pass -[2024-03-07T16:33:08.660Z] else: -[2024-03-07T16:33:08.660Z] self._handle_kernel_info_reply(msg) -[2024-03-07T16:33:08.660Z] break -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] if not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.660Z] raise RuntimeError("Kernel died before replying to kernel_info") -[2024-03-07T16:33:08.660Z] -[2024-03-07T16:33:08.660Z] # Check if current time is ready check time plus timeout -[2024-03-07T16:33:08.660Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.661Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) -[2024-03-07T16:33:08.661Z] E RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError -[2024-03-07T16:33:08.661Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 3 _ -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] cls = -[2024-03-07T16:33:08.661Z] func = . at 0x7f0ab86f15a0> -[2024-03-07T16:33:08.661Z] when = 'setup' -[2024-03-07T16:33:08.661Z] reraise = (, ) -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] @classmethod -[2024-03-07T16:33:08.661Z] def from_call( -[2024-03-07T16:33:08.661Z] cls, -[2024-03-07T16:33:08.661Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.661Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.661Z] reraise: Optional[ -[2024-03-07T16:33:08.661Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.661Z] ] = None, -[2024-03-07T16:33:08.661Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.661Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] :param func: -[2024-03-07T16:33:08.661Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.661Z] :param when: -[2024-03-07T16:33:08.661Z] The phase in which the function is called. -[2024-03-07T16:33:08.661Z] :param reraise: -[2024-03-07T16:33:08.661Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.661Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.661Z] """ -[2024-03-07T16:33:08.661Z] excinfo = None -[2024-03-07T16:33:08.661Z] start = timing.time() -[2024-03-07T16:33:08.661Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.661Z] try: -[2024-03-07T16:33:08.661Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.661Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.661Z] ) -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.661Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] self = -[2024-03-07T16:33:08.661Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.661Z] """Call the hook. -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.661Z] specification. -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.661Z] :ref:`calling`. -[2024-03-07T16:33:08.661Z] """ -[2024-03-07T16:33:08.661Z] assert ( -[2024-03-07T16:33:08.661Z] not self.is_historic() -[2024-03-07T16:33:08.661Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.661Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.661Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.661Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.661Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.661Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.661Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.661Z] methods = [>, >, ...] -[2024-03-07T16:33:08.661Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] def _hookexec( -[2024-03-07T16:33:08.661Z] self, -[2024-03-07T16:33:08.661Z] hook_name: str, -[2024-03-07T16:33:08.661Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.661Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.661Z] firstresult: bool, -[2024-03-07T16:33:08.661Z] ) -> object | list[object]: -[2024-03-07T16:33:08.661Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.661Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.661Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.661Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.661Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.661Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] def _multicall( -[2024-03-07T16:33:08.661Z] hook_name: str, -[2024-03-07T16:33:08.661Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.661Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.661Z] firstresult: bool, -[2024-03-07T16:33:08.661Z] ) -> object | list[object]: -[2024-03-07T16:33:08.661Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.661Z] result(s). -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.661Z] """ -[2024-03-07T16:33:08.661Z] __tracebackhide__ = True -[2024-03-07T16:33:08.661Z] results: list[object] = [] -[2024-03-07T16:33:08.661Z] exception = None -[2024-03-07T16:33:08.661Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.661Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.661Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.661Z] try: -[2024-03-07T16:33:08.661Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.661Z] try: -[2024-03-07T16:33:08.661Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.661Z] except KeyError: -[2024-03-07T16:33:08.661Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.661Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.661Z] raise HookCallError( -[2024-03-07T16:33:08.661Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.661Z] ) -[2024-03-07T16:33:08.661Z] -[2024-03-07T16:33:08.661Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.661Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.661Z] try: -[2024-03-07T16:33:08.661Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.661Z] # which is the desired response. -[2024-03-07T16:33:08.661Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.661Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.661Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.661Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.661Z] except StopIteration: -[2024-03-07T16:33:08.661Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.661Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.661Z] try: -[2024-03-07T16:33:08.661Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.661Z] # which is the desired response. -[2024-03-07T16:33:08.661Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.661Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.661Z] next(function_gen) # first yield -[2024-03-07T16:33:08.661Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.661Z] except StopIteration: -[2024-03-07T16:33:08.661Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.661Z] else: -[2024-03-07T16:33:08.661Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.661Z] if res is not None: -[2024-03-07T16:33:08.661Z] results.append(res) -[2024-03-07T16:33:08.661Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.661Z] break -[2024-03-07T16:33:08.661Z] except BaseException as exc: -[2024-03-07T16:33:08.661Z] exception = exc -[2024-03-07T16:33:08.661Z] finally: -[2024-03-07T16:33:08.661Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.662Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.662Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.662Z] result = results[0] if results else None -[2024-03-07T16:33:08.662Z] else: -[2024-03-07T16:33:08.662Z] result = results -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.662Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.662Z] try: -[2024-03-07T16:33:08.662Z] if exception is not None: -[2024-03-07T16:33:08.662Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.662Z] else: -[2024-03-07T16:33:08.662Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.662Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.662Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.662Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.662Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.662Z] except StopIteration as si: -[2024-03-07T16:33:08.662Z] result = si.value -[2024-03-07T16:33:08.662Z] exception = None -[2024-03-07T16:33:08.662Z] continue -[2024-03-07T16:33:08.662Z] except BaseException as e: -[2024-03-07T16:33:08.662Z] exception = e -[2024-03-07T16:33:08.662Z] continue -[2024-03-07T16:33:08.662Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] if exception is not None: -[2024-03-07T16:33:08.662Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.662Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.662Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.662Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] def _multicall( -[2024-03-07T16:33:08.662Z] hook_name: str, -[2024-03-07T16:33:08.662Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.662Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.662Z] firstresult: bool, -[2024-03-07T16:33:08.662Z] ) -> object | list[object]: -[2024-03-07T16:33:08.662Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.662Z] result(s). -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.662Z] """ -[2024-03-07T16:33:08.662Z] __tracebackhide__ = True -[2024-03-07T16:33:08.662Z] results: list[object] = [] -[2024-03-07T16:33:08.662Z] exception = None -[2024-03-07T16:33:08.662Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.662Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.662Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.662Z] try: -[2024-03-07T16:33:08.662Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.662Z] try: -[2024-03-07T16:33:08.662Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.662Z] except KeyError: -[2024-03-07T16:33:08.662Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.662Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.662Z] raise HookCallError( -[2024-03-07T16:33:08.662Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.662Z] ) -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.662Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.662Z] try: -[2024-03-07T16:33:08.662Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.662Z] # which is the desired response. -[2024-03-07T16:33:08.662Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.662Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.662Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.662Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.662Z] except StopIteration: -[2024-03-07T16:33:08.662Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.662Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.662Z] try: -[2024-03-07T16:33:08.662Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.662Z] # which is the desired response. -[2024-03-07T16:33:08.662Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.662Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.662Z] next(function_gen) # first yield -[2024-03-07T16:33:08.662Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.662Z] except StopIteration: -[2024-03-07T16:33:08.662Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.662Z] else: -[2024-03-07T16:33:08.662Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.662Z] if res is not None: -[2024-03-07T16:33:08.662Z] results.append(res) -[2024-03-07T16:33:08.662Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.662Z] break -[2024-03-07T16:33:08.662Z] except BaseException as exc: -[2024-03-07T16:33:08.662Z] exception = exc -[2024-03-07T16:33:08.662Z] finally: -[2024-03-07T16:33:08.662Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.662Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.662Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.662Z] result = results[0] if results else None -[2024-03-07T16:33:08.662Z] else: -[2024-03-07T16:33:08.662Z] result = results -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.662Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.662Z] try: -[2024-03-07T16:33:08.662Z] if exception is not None: -[2024-03-07T16:33:08.662Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.662Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.662Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.662Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.662Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.662Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.662Z] try: -[2024-03-07T16:33:08.662Z] > yield -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.662Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.662Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.662Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.662Z] -[2024-03-07T16:33:08.662Z] def _multicall( -[2024-03-07T16:33:08.662Z] hook_name: str, -[2024-03-07T16:33:08.662Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.662Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.662Z] firstresult: bool, -[2024-03-07T16:33:08.662Z] ) -> object | list[object]: -[2024-03-07T16:33:08.663Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.663Z] result(s). -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.663Z] """ -[2024-03-07T16:33:08.663Z] __tracebackhide__ = True -[2024-03-07T16:33:08.663Z] results: list[object] = [] -[2024-03-07T16:33:08.663Z] exception = None -[2024-03-07T16:33:08.663Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.663Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.663Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.663Z] try: -[2024-03-07T16:33:08.663Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.663Z] try: -[2024-03-07T16:33:08.663Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.663Z] except KeyError: -[2024-03-07T16:33:08.663Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.663Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.663Z] raise HookCallError( -[2024-03-07T16:33:08.663Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.663Z] ) -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.663Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.663Z] try: -[2024-03-07T16:33:08.663Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.663Z] # which is the desired response. -[2024-03-07T16:33:08.663Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.663Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.663Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.663Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.663Z] except StopIteration: -[2024-03-07T16:33:08.663Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.663Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.663Z] try: -[2024-03-07T16:33:08.663Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.663Z] # which is the desired response. -[2024-03-07T16:33:08.663Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.663Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.663Z] next(function_gen) # first yield -[2024-03-07T16:33:08.663Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.663Z] except StopIteration: -[2024-03-07T16:33:08.663Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.663Z] else: -[2024-03-07T16:33:08.663Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.663Z] if res is not None: -[2024-03-07T16:33:08.663Z] results.append(res) -[2024-03-07T16:33:08.663Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.663Z] break -[2024-03-07T16:33:08.663Z] except BaseException as exc: -[2024-03-07T16:33:08.663Z] exception = exc -[2024-03-07T16:33:08.663Z] finally: -[2024-03-07T16:33:08.663Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.663Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.663Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.663Z] result = results[0] if results else None -[2024-03-07T16:33:08.663Z] else: -[2024-03-07T16:33:08.663Z] result = results -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.663Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.663Z] try: -[2024-03-07T16:33:08.663Z] if exception is not None: -[2024-03-07T16:33:08.663Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.663Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.663Z] item = -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.663Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.663Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.663Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.663Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.663Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.663Z] item = , when = 'setup' -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.663Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.663Z] with catching_logs( -[2024-03-07T16:33:08.663Z] self.caplog_handler, -[2024-03-07T16:33:08.663Z] level=self.log_level, -[2024-03-07T16:33:08.663Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.663Z] self.report_handler, -[2024-03-07T16:33:08.663Z] level=self.log_level, -[2024-03-07T16:33:08.663Z] ) as report_handler: -[2024-03-07T16:33:08.663Z] caplog_handler.reset() -[2024-03-07T16:33:08.663Z] report_handler.reset() -[2024-03-07T16:33:08.663Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.663Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] try: -[2024-03-07T16:33:08.663Z] > yield -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.663Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.663Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.663Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] def _multicall( -[2024-03-07T16:33:08.663Z] hook_name: str, -[2024-03-07T16:33:08.663Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.663Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.663Z] firstresult: bool, -[2024-03-07T16:33:08.663Z] ) -> object | list[object]: -[2024-03-07T16:33:08.663Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.663Z] result(s). -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.663Z] """ -[2024-03-07T16:33:08.663Z] __tracebackhide__ = True -[2024-03-07T16:33:08.663Z] results: list[object] = [] -[2024-03-07T16:33:08.663Z] exception = None -[2024-03-07T16:33:08.663Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.663Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.663Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.663Z] try: -[2024-03-07T16:33:08.663Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.663Z] try: -[2024-03-07T16:33:08.663Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.663Z] except KeyError: -[2024-03-07T16:33:08.663Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.663Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.663Z] raise HookCallError( -[2024-03-07T16:33:08.663Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.663Z] ) -[2024-03-07T16:33:08.663Z] -[2024-03-07T16:33:08.663Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.663Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.663Z] try: -[2024-03-07T16:33:08.663Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.663Z] # which is the desired response. -[2024-03-07T16:33:08.663Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.664Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.664Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.664Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.664Z] except StopIteration: -[2024-03-07T16:33:08.664Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.664Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.664Z] try: -[2024-03-07T16:33:08.664Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.664Z] # which is the desired response. -[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.664Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.664Z] next(function_gen) # first yield -[2024-03-07T16:33:08.664Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.664Z] except StopIteration: -[2024-03-07T16:33:08.664Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.664Z] else: -[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.664Z] if res is not None: -[2024-03-07T16:33:08.664Z] results.append(res) -[2024-03-07T16:33:08.664Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.664Z] break -[2024-03-07T16:33:08.664Z] except BaseException as exc: -[2024-03-07T16:33:08.664Z] exception = exc -[2024-03-07T16:33:08.664Z] finally: -[2024-03-07T16:33:08.664Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.664Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.664Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.664Z] result = results[0] if results else None -[2024-03-07T16:33:08.664Z] else: -[2024-03-07T16:33:08.664Z] result = results -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.664Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.664Z] try: -[2024-03-07T16:33:08.664Z] if exception is not None: -[2024-03-07T16:33:08.664Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.664Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.664Z] item = -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.664Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.664Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.664Z] > return (yield) -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.664Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.664Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.664Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] def _multicall( -[2024-03-07T16:33:08.664Z] hook_name: str, -[2024-03-07T16:33:08.664Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.664Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.664Z] firstresult: bool, -[2024-03-07T16:33:08.664Z] ) -> object | list[object]: -[2024-03-07T16:33:08.664Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.664Z] result(s). -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.664Z] """ -[2024-03-07T16:33:08.664Z] __tracebackhide__ = True -[2024-03-07T16:33:08.664Z] results: list[object] = [] -[2024-03-07T16:33:08.664Z] exception = None -[2024-03-07T16:33:08.664Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.664Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.664Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.664Z] try: -[2024-03-07T16:33:08.664Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.664Z] try: -[2024-03-07T16:33:08.664Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.664Z] except KeyError: -[2024-03-07T16:33:08.664Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.664Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.664Z] raise HookCallError( -[2024-03-07T16:33:08.664Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.664Z] ) -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.664Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.664Z] try: -[2024-03-07T16:33:08.664Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.664Z] # which is the desired response. -[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.664Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.664Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.664Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.664Z] except StopIteration: -[2024-03-07T16:33:08.664Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.664Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.664Z] try: -[2024-03-07T16:33:08.664Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.664Z] # which is the desired response. -[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.664Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.664Z] next(function_gen) # first yield -[2024-03-07T16:33:08.664Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.664Z] except StopIteration: -[2024-03-07T16:33:08.664Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.664Z] else: -[2024-03-07T16:33:08.664Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.664Z] if res is not None: -[2024-03-07T16:33:08.664Z] results.append(res) -[2024-03-07T16:33:08.664Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.664Z] break -[2024-03-07T16:33:08.664Z] except BaseException as exc: -[2024-03-07T16:33:08.664Z] exception = exc -[2024-03-07T16:33:08.664Z] finally: -[2024-03-07T16:33:08.664Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.664Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.664Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.664Z] result = results[0] if results else None -[2024-03-07T16:33:08.664Z] else: -[2024-03-07T16:33:08.664Z] result = results -[2024-03-07T16:33:08.664Z] -[2024-03-07T16:33:08.664Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.664Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.664Z] try: -[2024-03-07T16:33:08.665Z] if exception is not None: -[2024-03-07T16:33:08.665Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.665Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.665Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.665Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.665Z] try: -[2024-03-07T16:33:08.665Z] > yield -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.665Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.665Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] def _multicall( -[2024-03-07T16:33:08.665Z] hook_name: str, -[2024-03-07T16:33:08.665Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.665Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.665Z] firstresult: bool, -[2024-03-07T16:33:08.665Z] ) -> object | list[object]: -[2024-03-07T16:33:08.665Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.665Z] result(s). -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.665Z] """ -[2024-03-07T16:33:08.665Z] __tracebackhide__ = True -[2024-03-07T16:33:08.665Z] results: list[object] = [] -[2024-03-07T16:33:08.665Z] exception = None -[2024-03-07T16:33:08.665Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.665Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.665Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.665Z] try: -[2024-03-07T16:33:08.665Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.665Z] try: -[2024-03-07T16:33:08.665Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.665Z] except KeyError: -[2024-03-07T16:33:08.665Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.665Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.665Z] raise HookCallError( -[2024-03-07T16:33:08.665Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.665Z] ) -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.665Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.665Z] try: -[2024-03-07T16:33:08.665Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.665Z] # which is the desired response. -[2024-03-07T16:33:08.665Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.665Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.665Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.665Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.665Z] except StopIteration: -[2024-03-07T16:33:08.665Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.665Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.665Z] try: -[2024-03-07T16:33:08.665Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.665Z] # which is the desired response. -[2024-03-07T16:33:08.665Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.665Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.665Z] next(function_gen) # first yield -[2024-03-07T16:33:08.665Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.665Z] except StopIteration: -[2024-03-07T16:33:08.665Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.665Z] else: -[2024-03-07T16:33:08.665Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] item = -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.665Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.665Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.665Z] item = -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.665Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.665Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.665Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.665Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.665Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.665Z] if exc: -[2024-03-07T16:33:08.665Z] > raise exc -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] cls = -[2024-03-07T16:33:08.665Z] func = . at 0x7f0abbb08550> -[2024-03-07T16:33:08.665Z] when = 'setup' -[2024-03-07T16:33:08.665Z] reraise = (, ) -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] @classmethod -[2024-03-07T16:33:08.665Z] def from_call( -[2024-03-07T16:33:08.665Z] cls, -[2024-03-07T16:33:08.665Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.665Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.665Z] reraise: Optional[ -[2024-03-07T16:33:08.665Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.665Z] ] = None, -[2024-03-07T16:33:08.665Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.665Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] :param func: -[2024-03-07T16:33:08.665Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.665Z] :param when: -[2024-03-07T16:33:08.665Z] The phase in which the function is called. -[2024-03-07T16:33:08.665Z] :param reraise: -[2024-03-07T16:33:08.665Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.665Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.665Z] """ -[2024-03-07T16:33:08.665Z] excinfo = None -[2024-03-07T16:33:08.665Z] start = timing.time() -[2024-03-07T16:33:08.665Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.665Z] try: -[2024-03-07T16:33:08.665Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.665Z] ) -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.665Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] self = -[2024-03-07T16:33:08.665Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.665Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.665Z] """Call the hook. -[2024-03-07T16:33:08.665Z] -[2024-03-07T16:33:08.666Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.666Z] specification. -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.666Z] :ref:`calling`. -[2024-03-07T16:33:08.666Z] """ -[2024-03-07T16:33:08.666Z] assert ( -[2024-03-07T16:33:08.666Z] not self.is_historic() -[2024-03-07T16:33:08.666Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.666Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.666Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.666Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.666Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.666Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.666Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.666Z] methods = [>, >, ...] -[2024-03-07T16:33:08.666Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] def _hookexec( -[2024-03-07T16:33:08.666Z] self, -[2024-03-07T16:33:08.666Z] hook_name: str, -[2024-03-07T16:33:08.666Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.666Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.666Z] firstresult: bool, -[2024-03-07T16:33:08.666Z] ) -> object | list[object]: -[2024-03-07T16:33:08.666Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.666Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.666Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.666Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.666Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.666Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] def _multicall( -[2024-03-07T16:33:08.666Z] hook_name: str, -[2024-03-07T16:33:08.666Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.666Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.666Z] firstresult: bool, -[2024-03-07T16:33:08.666Z] ) -> object | list[object]: -[2024-03-07T16:33:08.666Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.666Z] result(s). -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.666Z] """ -[2024-03-07T16:33:08.666Z] __tracebackhide__ = True -[2024-03-07T16:33:08.666Z] results: list[object] = [] -[2024-03-07T16:33:08.666Z] exception = None -[2024-03-07T16:33:08.666Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.666Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.666Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.666Z] try: -[2024-03-07T16:33:08.666Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.666Z] try: -[2024-03-07T16:33:08.666Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.666Z] except KeyError: -[2024-03-07T16:33:08.666Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.666Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.666Z] raise HookCallError( -[2024-03-07T16:33:08.666Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.666Z] ) -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.666Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.666Z] try: -[2024-03-07T16:33:08.666Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.666Z] # which is the desired response. -[2024-03-07T16:33:08.666Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.666Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.666Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.666Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.666Z] except StopIteration: -[2024-03-07T16:33:08.666Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.666Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.666Z] try: -[2024-03-07T16:33:08.666Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.666Z] # which is the desired response. -[2024-03-07T16:33:08.666Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.666Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.666Z] next(function_gen) # first yield -[2024-03-07T16:33:08.666Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.666Z] except StopIteration: -[2024-03-07T16:33:08.666Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.666Z] else: -[2024-03-07T16:33:08.666Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.666Z] if res is not None: -[2024-03-07T16:33:08.666Z] results.append(res) -[2024-03-07T16:33:08.666Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.666Z] break -[2024-03-07T16:33:08.666Z] except BaseException as exc: -[2024-03-07T16:33:08.666Z] exception = exc -[2024-03-07T16:33:08.666Z] finally: -[2024-03-07T16:33:08.666Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.666Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.666Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.666Z] result = results[0] if results else None -[2024-03-07T16:33:08.666Z] else: -[2024-03-07T16:33:08.666Z] result = results -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.666Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.666Z] try: -[2024-03-07T16:33:08.666Z] if exception is not None: -[2024-03-07T16:33:08.666Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.666Z] else: -[2024-03-07T16:33:08.666Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.666Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.666Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.666Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.666Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.666Z] except StopIteration as si: -[2024-03-07T16:33:08.666Z] result = si.value -[2024-03-07T16:33:08.666Z] exception = None -[2024-03-07T16:33:08.666Z] continue -[2024-03-07T16:33:08.666Z] except BaseException as e: -[2024-03-07T16:33:08.666Z] exception = e -[2024-03-07T16:33:08.666Z] continue -[2024-03-07T16:33:08.666Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] if exception is not None: -[2024-03-07T16:33:08.666Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.666Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.666Z] -[2024-03-07T16:33:08.666Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.667Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.667Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] def _multicall( -[2024-03-07T16:33:08.667Z] hook_name: str, -[2024-03-07T16:33:08.667Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.667Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.667Z] firstresult: bool, -[2024-03-07T16:33:08.667Z] ) -> object | list[object]: -[2024-03-07T16:33:08.667Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.667Z] result(s). -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.667Z] """ -[2024-03-07T16:33:08.667Z] __tracebackhide__ = True -[2024-03-07T16:33:08.667Z] results: list[object] = [] -[2024-03-07T16:33:08.667Z] exception = None -[2024-03-07T16:33:08.667Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.667Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.667Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.667Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.667Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.667Z] except KeyError: -[2024-03-07T16:33:08.667Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.667Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.667Z] raise HookCallError( -[2024-03-07T16:33:08.667Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.667Z] ) -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.667Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.667Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.667Z] # which is the desired response. -[2024-03-07T16:33:08.667Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.667Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.667Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.667Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.667Z] except StopIteration: -[2024-03-07T16:33:08.667Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.667Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.667Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.667Z] # which is the desired response. -[2024-03-07T16:33:08.667Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.667Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.667Z] next(function_gen) # first yield -[2024-03-07T16:33:08.667Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.667Z] except StopIteration: -[2024-03-07T16:33:08.667Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.667Z] else: -[2024-03-07T16:33:08.667Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.667Z] if res is not None: -[2024-03-07T16:33:08.667Z] results.append(res) -[2024-03-07T16:33:08.667Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.667Z] break -[2024-03-07T16:33:08.667Z] except BaseException as exc: -[2024-03-07T16:33:08.667Z] exception = exc -[2024-03-07T16:33:08.667Z] finally: -[2024-03-07T16:33:08.667Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.667Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.667Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.667Z] result = results[0] if results else None -[2024-03-07T16:33:08.667Z] else: -[2024-03-07T16:33:08.667Z] result = results -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.667Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.667Z] if exception is not None: -[2024-03-07T16:33:08.667Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.667Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.667Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.667Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.667Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.667Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.667Z] > yield -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.667Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.667Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.667Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] def _multicall( -[2024-03-07T16:33:08.667Z] hook_name: str, -[2024-03-07T16:33:08.667Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.667Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.667Z] firstresult: bool, -[2024-03-07T16:33:08.667Z] ) -> object | list[object]: -[2024-03-07T16:33:08.667Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.667Z] result(s). -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.667Z] """ -[2024-03-07T16:33:08.667Z] __tracebackhide__ = True -[2024-03-07T16:33:08.667Z] results: list[object] = [] -[2024-03-07T16:33:08.667Z] exception = None -[2024-03-07T16:33:08.667Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.667Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.667Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.667Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.667Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.667Z] except KeyError: -[2024-03-07T16:33:08.667Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.667Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.667Z] raise HookCallError( -[2024-03-07T16:33:08.667Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.667Z] ) -[2024-03-07T16:33:08.667Z] -[2024-03-07T16:33:08.667Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.667Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.667Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.667Z] # which is the desired response. -[2024-03-07T16:33:08.667Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.667Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.667Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.667Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.667Z] except StopIteration: -[2024-03-07T16:33:08.667Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.667Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.667Z] try: -[2024-03-07T16:33:08.668Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.668Z] # which is the desired response. -[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.668Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.668Z] next(function_gen) # first yield -[2024-03-07T16:33:08.668Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.668Z] except StopIteration: -[2024-03-07T16:33:08.668Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.668Z] else: -[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.668Z] if res is not None: -[2024-03-07T16:33:08.668Z] results.append(res) -[2024-03-07T16:33:08.668Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.668Z] break -[2024-03-07T16:33:08.668Z] except BaseException as exc: -[2024-03-07T16:33:08.668Z] exception = exc -[2024-03-07T16:33:08.668Z] finally: -[2024-03-07T16:33:08.668Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.668Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.668Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.668Z] result = results[0] if results else None -[2024-03-07T16:33:08.668Z] else: -[2024-03-07T16:33:08.668Z] result = results -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.668Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.668Z] try: -[2024-03-07T16:33:08.668Z] if exception is not None: -[2024-03-07T16:33:08.668Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.668Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.668Z] item = -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.668Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.668Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.668Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.668Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.668Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.668Z] item = , when = 'setup' -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.668Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.668Z] with catching_logs( -[2024-03-07T16:33:08.668Z] self.caplog_handler, -[2024-03-07T16:33:08.668Z] level=self.log_level, -[2024-03-07T16:33:08.668Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.668Z] self.report_handler, -[2024-03-07T16:33:08.668Z] level=self.log_level, -[2024-03-07T16:33:08.668Z] ) as report_handler: -[2024-03-07T16:33:08.668Z] caplog_handler.reset() -[2024-03-07T16:33:08.668Z] report_handler.reset() -[2024-03-07T16:33:08.668Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.668Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] try: -[2024-03-07T16:33:08.668Z] > yield -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.668Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.668Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.668Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] def _multicall( -[2024-03-07T16:33:08.668Z] hook_name: str, -[2024-03-07T16:33:08.668Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.668Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.668Z] firstresult: bool, -[2024-03-07T16:33:08.668Z] ) -> object | list[object]: -[2024-03-07T16:33:08.668Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.668Z] result(s). -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.668Z] """ -[2024-03-07T16:33:08.668Z] __tracebackhide__ = True -[2024-03-07T16:33:08.668Z] results: list[object] = [] -[2024-03-07T16:33:08.668Z] exception = None -[2024-03-07T16:33:08.668Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.668Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.668Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.668Z] try: -[2024-03-07T16:33:08.668Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.668Z] try: -[2024-03-07T16:33:08.668Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.668Z] except KeyError: -[2024-03-07T16:33:08.668Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.668Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.668Z] raise HookCallError( -[2024-03-07T16:33:08.668Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.668Z] ) -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.668Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.668Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.668Z] try: -[2024-03-07T16:33:08.668Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.668Z] # which is the desired response. -[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.668Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.668Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.668Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.668Z] except StopIteration: -[2024-03-07T16:33:08.668Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.668Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.668Z] try: -[2024-03-07T16:33:08.668Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.668Z] # which is the desired response. -[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.668Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.668Z] next(function_gen) # first yield -[2024-03-07T16:33:08.668Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.668Z] except StopIteration: -[2024-03-07T16:33:08.668Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.668Z] else: -[2024-03-07T16:33:08.668Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.668Z] if res is not None: -[2024-03-07T16:33:08.668Z] results.append(res) -[2024-03-07T16:33:08.668Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.668Z] break -[2024-03-07T16:33:08.668Z] except BaseException as exc: -[2024-03-07T16:33:08.668Z] exception = exc -[2024-03-07T16:33:08.668Z] finally: -[2024-03-07T16:33:08.668Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.668Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.668Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.668Z] result = results[0] if results else None -[2024-03-07T16:33:08.668Z] else: -[2024-03-07T16:33:08.668Z] result = results -[2024-03-07T16:33:08.668Z] -[2024-03-07T16:33:08.669Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.669Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.669Z] try: -[2024-03-07T16:33:08.669Z] if exception is not None: -[2024-03-07T16:33:08.669Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.669Z] item = -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.669Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.669Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.669Z] > return (yield) -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.669Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.669Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] def _multicall( -[2024-03-07T16:33:08.669Z] hook_name: str, -[2024-03-07T16:33:08.669Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.669Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.669Z] firstresult: bool, -[2024-03-07T16:33:08.669Z] ) -> object | list[object]: -[2024-03-07T16:33:08.669Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.669Z] result(s). -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.669Z] """ -[2024-03-07T16:33:08.669Z] __tracebackhide__ = True -[2024-03-07T16:33:08.669Z] results: list[object] = [] -[2024-03-07T16:33:08.669Z] exception = None -[2024-03-07T16:33:08.669Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.669Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.669Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.669Z] try: -[2024-03-07T16:33:08.669Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.669Z] try: -[2024-03-07T16:33:08.669Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.669Z] except KeyError: -[2024-03-07T16:33:08.669Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.669Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.669Z] raise HookCallError( -[2024-03-07T16:33:08.669Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.669Z] ) -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.669Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.669Z] try: -[2024-03-07T16:33:08.669Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.669Z] # which is the desired response. -[2024-03-07T16:33:08.669Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.669Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.669Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.669Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.669Z] except StopIteration: -[2024-03-07T16:33:08.669Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.669Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.669Z] try: -[2024-03-07T16:33:08.669Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.669Z] # which is the desired response. -[2024-03-07T16:33:08.669Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.669Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.669Z] next(function_gen) # first yield -[2024-03-07T16:33:08.669Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.669Z] except StopIteration: -[2024-03-07T16:33:08.669Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.669Z] else: -[2024-03-07T16:33:08.669Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.669Z] if res is not None: -[2024-03-07T16:33:08.669Z] results.append(res) -[2024-03-07T16:33:08.669Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.669Z] break -[2024-03-07T16:33:08.669Z] except BaseException as exc: -[2024-03-07T16:33:08.669Z] exception = exc -[2024-03-07T16:33:08.669Z] finally: -[2024-03-07T16:33:08.669Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.669Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.669Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.669Z] result = results[0] if results else None -[2024-03-07T16:33:08.669Z] else: -[2024-03-07T16:33:08.669Z] result = results -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.669Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.669Z] try: -[2024-03-07T16:33:08.669Z] if exception is not None: -[2024-03-07T16:33:08.669Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.669Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.669Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.669Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.669Z] try: -[2024-03-07T16:33:08.669Z] > yield -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.669Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.669Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.669Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] def _multicall( -[2024-03-07T16:33:08.669Z] hook_name: str, -[2024-03-07T16:33:08.669Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.669Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.669Z] firstresult: bool, -[2024-03-07T16:33:08.669Z] ) -> object | list[object]: -[2024-03-07T16:33:08.669Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.669Z] result(s). -[2024-03-07T16:33:08.669Z] -[2024-03-07T16:33:08.669Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.669Z] """ -[2024-03-07T16:33:08.669Z] __tracebackhide__ = True -[2024-03-07T16:33:08.669Z] results: list[object] = [] -[2024-03-07T16:33:08.669Z] exception = None -[2024-03-07T16:33:08.669Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.669Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.669Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.669Z] try: -[2024-03-07T16:33:08.669Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.669Z] try: -[2024-03-07T16:33:08.669Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.669Z] except KeyError: -[2024-03-07T16:33:08.669Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.669Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.669Z] raise HookCallError( -[2024-03-07T16:33:08.670Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.670Z] ) -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.670Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.670Z] try: -[2024-03-07T16:33:08.670Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.670Z] # which is the desired response. -[2024-03-07T16:33:08.670Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.670Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.670Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.670Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.670Z] except StopIteration: -[2024-03-07T16:33:08.670Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.670Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.670Z] try: -[2024-03-07T16:33:08.670Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.670Z] # which is the desired response. -[2024-03-07T16:33:08.670Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.670Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.670Z] next(function_gen) # first yield -[2024-03-07T16:33:08.670Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.670Z] except StopIteration: -[2024-03-07T16:33:08.670Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.670Z] else: -[2024-03-07T16:33:08.670Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] item = -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.670Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.670Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.670Z] item = -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.670Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.670Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.670Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.670Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.670Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.670Z] if exc: -[2024-03-07T16:33:08.670Z] > raise exc -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] cls = -[2024-03-07T16:33:08.670Z] func = . at 0x7f0abc051900> -[2024-03-07T16:33:08.670Z] when = 'setup' -[2024-03-07T16:33:08.670Z] reraise = (, ) -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] @classmethod -[2024-03-07T16:33:08.670Z] def from_call( -[2024-03-07T16:33:08.670Z] cls, -[2024-03-07T16:33:08.670Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.670Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.670Z] reraise: Optional[ -[2024-03-07T16:33:08.670Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.670Z] ] = None, -[2024-03-07T16:33:08.670Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.670Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] :param func: -[2024-03-07T16:33:08.670Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.670Z] :param when: -[2024-03-07T16:33:08.670Z] The phase in which the function is called. -[2024-03-07T16:33:08.670Z] :param reraise: -[2024-03-07T16:33:08.670Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.670Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.670Z] """ -[2024-03-07T16:33:08.670Z] excinfo = None -[2024-03-07T16:33:08.670Z] start = timing.time() -[2024-03-07T16:33:08.670Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.670Z] try: -[2024-03-07T16:33:08.670Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.670Z] ) -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] self = -[2024-03-07T16:33:08.670Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.670Z] """Call the hook. -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.670Z] specification. -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.670Z] :ref:`calling`. -[2024-03-07T16:33:08.670Z] """ -[2024-03-07T16:33:08.670Z] assert ( -[2024-03-07T16:33:08.670Z] not self.is_historic() -[2024-03-07T16:33:08.670Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.670Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.670Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.670Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.670Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.670Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.670Z] methods = [>, >, ...] -[2024-03-07T16:33:08.670Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] def _hookexec( -[2024-03-07T16:33:08.670Z] self, -[2024-03-07T16:33:08.670Z] hook_name: str, -[2024-03-07T16:33:08.670Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.670Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.670Z] firstresult: bool, -[2024-03-07T16:33:08.670Z] ) -> object | list[object]: -[2024-03-07T16:33:08.670Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.670Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.670Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.670Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.670Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.670Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.670Z] -[2024-03-07T16:33:08.670Z] def _multicall( -[2024-03-07T16:33:08.670Z] hook_name: str, -[2024-03-07T16:33:08.670Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.670Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.670Z] firstresult: bool, -[2024-03-07T16:33:08.671Z] ) -> object | list[object]: -[2024-03-07T16:33:08.671Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.671Z] result(s). -[2024-03-07T16:33:08.671Z] -[2024-03-07T16:33:08.671Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.671Z] """ -[2024-03-07T16:33:08.671Z] __tracebackhide__ = True -[2024-03-07T16:33:08.671Z] results: list[object] = [] -[2024-03-07T16:33:08.671Z] exception = None -[2024-03-07T16:33:08.671Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.671Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.671Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.671Z] try: -[2024-03-07T16:33:08.671Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.671Z] try: -[2024-03-07T16:33:08.671Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.671Z] except KeyError: -[2024-03-07T16:33:08.671Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.671Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.671Z] raise HookCallError( -[2024-03-07T16:33:08.671Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.671Z] ) -[2024-03-07T16:33:08.671Z] -[2024-03-07T16:33:08.671Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.671Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.671Z] try: -[2024-03-07T16:33:08.671Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.671Z] # which is the desired response. -[2024-03-07T16:33:08.671Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.671Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.671Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.671Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.671Z] except StopIteration: -[2024-03-07T16:33:08.671Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.671Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.671Z] try: -[2024-03-07T16:33:08.671Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.671Z] # which is the desired response. -[2024-03-07T16:33:08.671Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.671Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.671Z] next(function_gen) # first yield -[2024-03-07T16:33:08.671Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.671Z] except StopIteration: -[2024-03-07T16:33:08.671Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.671Z] else: -[2024-03-07T16:33:08.671Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.671Z] if res is not None: -[2024-03-07T16:33:08.671Z] results.append(res) -[2024-03-07T16:33:08.671Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.671Z] break -[2024-03-07T16:33:08.671Z] except BaseException as exc: -[2024-03-07T16:33:08.671Z] exception = exc -[2024-03-07T16:33:08.671Z] finally: -[2024-03-07T16:33:08.671Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.671Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.671Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.671Z] result = results[0] if results else None -[2024-03-07T16:33:08.671Z] else: -[2024-03-07T16:33:08.671Z] result = results -[2024-03-07T16:33:08.671Z] -[2024-03-07T16:33:08.671Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.671Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.671Z] try: -[2024-03-07T16:33:08.671Z] if exception is not None: -[2024-03-07T16:33:08.671Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.671Z] else: -[2024-03-07T16:33:08.671Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.671Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.671Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.671Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.671Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.671Z] except StopIteration as si: -[2024-03-07T16:33:08.671Z] result = si.value -[2024-03-07T16:33:08.671Z] exception = None -[2024-03-07T16:33:08.671Z] continue -[2024-03-07T16:33:08.671Z] except BaseException as e: -[2024-03-07T16:33:08.671Z] exception = e -[2024-03-07T16:33:08.671Z] continue -[2024-03-07T16:33:08.671Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.671Z] -[2024-03-07T16:33:08.671Z] if exception is not None: -[2024-03-07T16:33:08.671Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.671Z] -[2024-03-07T16:33:08.671Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.671Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.671Z] -[2024-03-07T16:33:08.671Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.671Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.671Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.671Z] -[2024-03-07T16:33:08.671Z] def _multicall( -[2024-03-07T16:33:08.671Z] hook_name: str, -[2024-03-07T16:33:08.671Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.671Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.671Z] firstresult: bool, -[2024-03-07T16:33:08.671Z] ) -> object | list[object]: -[2024-03-07T16:33:08.671Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.671Z] result(s). -[2024-03-07T16:33:08.671Z] -[2024-03-07T16:33:08.671Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.671Z] """ -[2024-03-07T16:33:08.671Z] __tracebackhide__ = True -[2024-03-07T16:33:08.671Z] results: list[object] = [] -[2024-03-07T16:33:08.671Z] exception = None -[2024-03-07T16:33:08.671Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.671Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.671Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.671Z] try: -[2024-03-07T16:33:08.671Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.671Z] try: -[2024-03-07T16:33:08.671Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.671Z] except KeyError: -[2024-03-07T16:33:08.671Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.671Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.671Z] raise HookCallError( -[2024-03-07T16:33:08.671Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.671Z] ) -[2024-03-07T16:33:08.671Z] -[2024-03-07T16:33:08.671Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.671Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.671Z] try: -[2024-03-07T16:33:08.671Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.671Z] # which is the desired response. -[2024-03-07T16:33:08.671Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.671Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.671Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.671Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.671Z] except StopIteration: -[2024-03-07T16:33:08.671Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.672Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.672Z] try: -[2024-03-07T16:33:08.672Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.672Z] # which is the desired response. -[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.672Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.672Z] next(function_gen) # first yield -[2024-03-07T16:33:08.672Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.672Z] except StopIteration: -[2024-03-07T16:33:08.672Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.672Z] else: -[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.672Z] if res is not None: -[2024-03-07T16:33:08.672Z] results.append(res) -[2024-03-07T16:33:08.672Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.672Z] break -[2024-03-07T16:33:08.672Z] except BaseException as exc: -[2024-03-07T16:33:08.672Z] exception = exc -[2024-03-07T16:33:08.672Z] finally: -[2024-03-07T16:33:08.672Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.672Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.672Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.672Z] result = results[0] if results else None -[2024-03-07T16:33:08.672Z] else: -[2024-03-07T16:33:08.672Z] result = results -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.672Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.672Z] try: -[2024-03-07T16:33:08.672Z] if exception is not None: -[2024-03-07T16:33:08.672Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.672Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.672Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.672Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.672Z] try: -[2024-03-07T16:33:08.672Z] > yield -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.672Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.672Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] def _multicall( -[2024-03-07T16:33:08.672Z] hook_name: str, -[2024-03-07T16:33:08.672Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.672Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.672Z] firstresult: bool, -[2024-03-07T16:33:08.672Z] ) -> object | list[object]: -[2024-03-07T16:33:08.672Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.672Z] result(s). -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.672Z] """ -[2024-03-07T16:33:08.672Z] __tracebackhide__ = True -[2024-03-07T16:33:08.672Z] results: list[object] = [] -[2024-03-07T16:33:08.672Z] exception = None -[2024-03-07T16:33:08.672Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.672Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.672Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.672Z] try: -[2024-03-07T16:33:08.672Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.672Z] try: -[2024-03-07T16:33:08.672Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.672Z] except KeyError: -[2024-03-07T16:33:08.672Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.672Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.672Z] raise HookCallError( -[2024-03-07T16:33:08.672Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.672Z] ) -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.672Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.672Z] try: -[2024-03-07T16:33:08.672Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.672Z] # which is the desired response. -[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.672Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.672Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.672Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.672Z] except StopIteration: -[2024-03-07T16:33:08.672Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.672Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.672Z] try: -[2024-03-07T16:33:08.672Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.672Z] # which is the desired response. -[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.672Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.672Z] next(function_gen) # first yield -[2024-03-07T16:33:08.672Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.672Z] except StopIteration: -[2024-03-07T16:33:08.672Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.672Z] else: -[2024-03-07T16:33:08.672Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.672Z] if res is not None: -[2024-03-07T16:33:08.672Z] results.append(res) -[2024-03-07T16:33:08.672Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.672Z] break -[2024-03-07T16:33:08.672Z] except BaseException as exc: -[2024-03-07T16:33:08.672Z] exception = exc -[2024-03-07T16:33:08.672Z] finally: -[2024-03-07T16:33:08.672Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.672Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.672Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.672Z] result = results[0] if results else None -[2024-03-07T16:33:08.672Z] else: -[2024-03-07T16:33:08.672Z] result = results -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.672Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.672Z] try: -[2024-03-07T16:33:08.672Z] if exception is not None: -[2024-03-07T16:33:08.672Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.672Z] item = -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.672Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.672Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.672Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.672Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.672Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.672Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.672Z] item = , when = 'setup' -[2024-03-07T16:33:08.672Z] -[2024-03-07T16:33:08.673Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.673Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.673Z] with catching_logs( -[2024-03-07T16:33:08.673Z] self.caplog_handler, -[2024-03-07T16:33:08.673Z] level=self.log_level, -[2024-03-07T16:33:08.673Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.673Z] self.report_handler, -[2024-03-07T16:33:08.673Z] level=self.log_level, -[2024-03-07T16:33:08.673Z] ) as report_handler: -[2024-03-07T16:33:08.673Z] caplog_handler.reset() -[2024-03-07T16:33:08.673Z] report_handler.reset() -[2024-03-07T16:33:08.673Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.673Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] try: -[2024-03-07T16:33:08.673Z] > yield -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.673Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.673Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.673Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] def _multicall( -[2024-03-07T16:33:08.673Z] hook_name: str, -[2024-03-07T16:33:08.673Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.673Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.673Z] firstresult: bool, -[2024-03-07T16:33:08.673Z] ) -> object | list[object]: -[2024-03-07T16:33:08.673Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.673Z] result(s). -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.673Z] """ -[2024-03-07T16:33:08.673Z] __tracebackhide__ = True -[2024-03-07T16:33:08.673Z] results: list[object] = [] -[2024-03-07T16:33:08.673Z] exception = None -[2024-03-07T16:33:08.673Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.673Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.673Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.673Z] try: -[2024-03-07T16:33:08.673Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.673Z] try: -[2024-03-07T16:33:08.673Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.673Z] except KeyError: -[2024-03-07T16:33:08.673Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.673Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.673Z] raise HookCallError( -[2024-03-07T16:33:08.673Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.673Z] ) -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.673Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.673Z] try: -[2024-03-07T16:33:08.673Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.673Z] # which is the desired response. -[2024-03-07T16:33:08.673Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.673Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.673Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.673Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.673Z] except StopIteration: -[2024-03-07T16:33:08.673Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.673Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.673Z] try: -[2024-03-07T16:33:08.673Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.673Z] # which is the desired response. -[2024-03-07T16:33:08.673Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.673Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.673Z] next(function_gen) # first yield -[2024-03-07T16:33:08.673Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.673Z] except StopIteration: -[2024-03-07T16:33:08.673Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.673Z] else: -[2024-03-07T16:33:08.673Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.673Z] if res is not None: -[2024-03-07T16:33:08.673Z] results.append(res) -[2024-03-07T16:33:08.673Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.673Z] break -[2024-03-07T16:33:08.673Z] except BaseException as exc: -[2024-03-07T16:33:08.673Z] exception = exc -[2024-03-07T16:33:08.673Z] finally: -[2024-03-07T16:33:08.673Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.673Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.673Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.673Z] result = results[0] if results else None -[2024-03-07T16:33:08.673Z] else: -[2024-03-07T16:33:08.673Z] result = results -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.673Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.673Z] try: -[2024-03-07T16:33:08.673Z] if exception is not None: -[2024-03-07T16:33:08.673Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.673Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.673Z] item = -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.673Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.673Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.673Z] > return (yield) -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.673Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.673Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.673Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] def _multicall( -[2024-03-07T16:33:08.673Z] hook_name: str, -[2024-03-07T16:33:08.673Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.673Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.673Z] firstresult: bool, -[2024-03-07T16:33:08.673Z] ) -> object | list[object]: -[2024-03-07T16:33:08.673Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.673Z] result(s). -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.673Z] """ -[2024-03-07T16:33:08.673Z] __tracebackhide__ = True -[2024-03-07T16:33:08.673Z] results: list[object] = [] -[2024-03-07T16:33:08.673Z] exception = None -[2024-03-07T16:33:08.673Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.673Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.673Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.673Z] try: -[2024-03-07T16:33:08.673Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.673Z] try: -[2024-03-07T16:33:08.673Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.673Z] except KeyError: -[2024-03-07T16:33:08.673Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.673Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.673Z] raise HookCallError( -[2024-03-07T16:33:08.673Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.673Z] ) -[2024-03-07T16:33:08.673Z] -[2024-03-07T16:33:08.673Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.673Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.673Z] try: -[2024-03-07T16:33:08.673Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.674Z] # which is the desired response. -[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.674Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.674Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.674Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.674Z] except StopIteration: -[2024-03-07T16:33:08.674Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.674Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.674Z] try: -[2024-03-07T16:33:08.674Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.674Z] # which is the desired response. -[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.674Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.674Z] next(function_gen) # first yield -[2024-03-07T16:33:08.674Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.674Z] except StopIteration: -[2024-03-07T16:33:08.674Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.674Z] else: -[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.674Z] if res is not None: -[2024-03-07T16:33:08.674Z] results.append(res) -[2024-03-07T16:33:08.674Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.674Z] break -[2024-03-07T16:33:08.674Z] except BaseException as exc: -[2024-03-07T16:33:08.674Z] exception = exc -[2024-03-07T16:33:08.674Z] finally: -[2024-03-07T16:33:08.674Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.674Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.674Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.674Z] result = results[0] if results else None -[2024-03-07T16:33:08.674Z] else: -[2024-03-07T16:33:08.674Z] result = results -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.674Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.674Z] try: -[2024-03-07T16:33:08.674Z] if exception is not None: -[2024-03-07T16:33:08.674Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.674Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.674Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.674Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.674Z] try: -[2024-03-07T16:33:08.674Z] > yield -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.674Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.674Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] def _multicall( -[2024-03-07T16:33:08.674Z] hook_name: str, -[2024-03-07T16:33:08.674Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.674Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.674Z] firstresult: bool, -[2024-03-07T16:33:08.674Z] ) -> object | list[object]: -[2024-03-07T16:33:08.674Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.674Z] result(s). -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.674Z] """ -[2024-03-07T16:33:08.674Z] __tracebackhide__ = True -[2024-03-07T16:33:08.674Z] results: list[object] = [] -[2024-03-07T16:33:08.674Z] exception = None -[2024-03-07T16:33:08.674Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.674Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.674Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.674Z] try: -[2024-03-07T16:33:08.674Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.674Z] try: -[2024-03-07T16:33:08.674Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.674Z] except KeyError: -[2024-03-07T16:33:08.674Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.674Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.674Z] raise HookCallError( -[2024-03-07T16:33:08.674Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.674Z] ) -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.674Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.674Z] try: -[2024-03-07T16:33:08.674Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.674Z] # which is the desired response. -[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.674Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.674Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.674Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.674Z] except StopIteration: -[2024-03-07T16:33:08.674Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.674Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.674Z] try: -[2024-03-07T16:33:08.674Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.674Z] # which is the desired response. -[2024-03-07T16:33:08.674Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.674Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.674Z] next(function_gen) # first yield -[2024-03-07T16:33:08.674Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.674Z] except StopIteration: -[2024-03-07T16:33:08.674Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.674Z] else: -[2024-03-07T16:33:08.674Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] item = -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.674Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.674Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.674Z] item = -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.674Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.674Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.674Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.674Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.674Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.674Z] if exc: -[2024-03-07T16:33:08.674Z] > raise exc -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.674Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.674Z] -[2024-03-07T16:33:08.674Z] cls = -[2024-03-07T16:33:08.674Z] func = . at 0x7f0abbb0b520> -[2024-03-07T16:33:08.674Z] when = 'setup' -[2024-03-07T16:33:08.675Z] reraise = (, ) -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] @classmethod -[2024-03-07T16:33:08.675Z] def from_call( -[2024-03-07T16:33:08.675Z] cls, -[2024-03-07T16:33:08.675Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.675Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.675Z] reraise: Optional[ -[2024-03-07T16:33:08.675Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.675Z] ] = None, -[2024-03-07T16:33:08.675Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.675Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] :param func: -[2024-03-07T16:33:08.675Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.675Z] :param when: -[2024-03-07T16:33:08.675Z] The phase in which the function is called. -[2024-03-07T16:33:08.675Z] :param reraise: -[2024-03-07T16:33:08.675Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.675Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.675Z] """ -[2024-03-07T16:33:08.675Z] excinfo = None -[2024-03-07T16:33:08.675Z] start = timing.time() -[2024-03-07T16:33:08.675Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.675Z] try: -[2024-03-07T16:33:08.675Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.675Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.675Z] ) -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.675Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] self = -[2024-03-07T16:33:08.675Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.675Z] """Call the hook. -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.675Z] specification. -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.675Z] :ref:`calling`. -[2024-03-07T16:33:08.675Z] """ -[2024-03-07T16:33:08.675Z] assert ( -[2024-03-07T16:33:08.675Z] not self.is_historic() -[2024-03-07T16:33:08.675Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.675Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.675Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.675Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.675Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.675Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.675Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.675Z] methods = [>, >, ...] -[2024-03-07T16:33:08.675Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] def _hookexec( -[2024-03-07T16:33:08.675Z] self, -[2024-03-07T16:33:08.675Z] hook_name: str, -[2024-03-07T16:33:08.675Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.675Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.675Z] firstresult: bool, -[2024-03-07T16:33:08.675Z] ) -> object | list[object]: -[2024-03-07T16:33:08.675Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.675Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.675Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.675Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.675Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.675Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] def _multicall( -[2024-03-07T16:33:08.675Z] hook_name: str, -[2024-03-07T16:33:08.675Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.675Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.675Z] firstresult: bool, -[2024-03-07T16:33:08.675Z] ) -> object | list[object]: -[2024-03-07T16:33:08.675Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.675Z] result(s). -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.675Z] """ -[2024-03-07T16:33:08.675Z] __tracebackhide__ = True -[2024-03-07T16:33:08.675Z] results: list[object] = [] -[2024-03-07T16:33:08.675Z] exception = None -[2024-03-07T16:33:08.675Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.675Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.675Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.675Z] try: -[2024-03-07T16:33:08.675Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.675Z] try: -[2024-03-07T16:33:08.675Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.675Z] except KeyError: -[2024-03-07T16:33:08.675Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.675Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.675Z] raise HookCallError( -[2024-03-07T16:33:08.675Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.675Z] ) -[2024-03-07T16:33:08.675Z] -[2024-03-07T16:33:08.675Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.675Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.675Z] try: -[2024-03-07T16:33:08.675Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.675Z] # which is the desired response. -[2024-03-07T16:33:08.675Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.675Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.675Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.675Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.675Z] except StopIteration: -[2024-03-07T16:33:08.675Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.675Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.675Z] try: -[2024-03-07T16:33:08.675Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.675Z] # which is the desired response. -[2024-03-07T16:33:08.675Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.675Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.675Z] next(function_gen) # first yield -[2024-03-07T16:33:08.675Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.675Z] except StopIteration: -[2024-03-07T16:33:08.675Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.675Z] else: -[2024-03-07T16:33:08.675Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.675Z] if res is not None: -[2024-03-07T16:33:08.675Z] results.append(res) -[2024-03-07T16:33:08.675Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.675Z] break -[2024-03-07T16:33:08.675Z] except BaseException as exc: -[2024-03-07T16:33:08.675Z] exception = exc -[2024-03-07T16:33:08.675Z] finally: -[2024-03-07T16:33:08.675Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.675Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.675Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.675Z] result = results[0] if results else None -[2024-03-07T16:33:08.675Z] else: -[2024-03-07T16:33:08.676Z] result = results -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.676Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.676Z] try: -[2024-03-07T16:33:08.676Z] if exception is not None: -[2024-03-07T16:33:08.676Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.676Z] else: -[2024-03-07T16:33:08.676Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.676Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.676Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.676Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.676Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.676Z] except StopIteration as si: -[2024-03-07T16:33:08.676Z] result = si.value -[2024-03-07T16:33:08.676Z] exception = None -[2024-03-07T16:33:08.676Z] continue -[2024-03-07T16:33:08.676Z] except BaseException as e: -[2024-03-07T16:33:08.676Z] exception = e -[2024-03-07T16:33:08.676Z] continue -[2024-03-07T16:33:08.676Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] if exception is not None: -[2024-03-07T16:33:08.676Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.676Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.676Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.676Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] def _multicall( -[2024-03-07T16:33:08.676Z] hook_name: str, -[2024-03-07T16:33:08.676Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.676Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.676Z] firstresult: bool, -[2024-03-07T16:33:08.676Z] ) -> object | list[object]: -[2024-03-07T16:33:08.676Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.676Z] result(s). -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.676Z] """ -[2024-03-07T16:33:08.676Z] __tracebackhide__ = True -[2024-03-07T16:33:08.676Z] results: list[object] = [] -[2024-03-07T16:33:08.676Z] exception = None -[2024-03-07T16:33:08.676Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.676Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.676Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.676Z] try: -[2024-03-07T16:33:08.676Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.676Z] try: -[2024-03-07T16:33:08.676Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.676Z] except KeyError: -[2024-03-07T16:33:08.676Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.676Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.676Z] raise HookCallError( -[2024-03-07T16:33:08.676Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.676Z] ) -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.676Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.676Z] try: -[2024-03-07T16:33:08.676Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.676Z] # which is the desired response. -[2024-03-07T16:33:08.676Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.676Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.676Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.676Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.676Z] except StopIteration: -[2024-03-07T16:33:08.676Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.676Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.676Z] try: -[2024-03-07T16:33:08.676Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.676Z] # which is the desired response. -[2024-03-07T16:33:08.676Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.676Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.676Z] next(function_gen) # first yield -[2024-03-07T16:33:08.676Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.676Z] except StopIteration: -[2024-03-07T16:33:08.676Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.676Z] else: -[2024-03-07T16:33:08.676Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.676Z] if res is not None: -[2024-03-07T16:33:08.676Z] results.append(res) -[2024-03-07T16:33:08.676Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.676Z] break -[2024-03-07T16:33:08.676Z] except BaseException as exc: -[2024-03-07T16:33:08.676Z] exception = exc -[2024-03-07T16:33:08.676Z] finally: -[2024-03-07T16:33:08.676Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.676Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.676Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.676Z] result = results[0] if results else None -[2024-03-07T16:33:08.676Z] else: -[2024-03-07T16:33:08.676Z] result = results -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.676Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.676Z] try: -[2024-03-07T16:33:08.676Z] if exception is not None: -[2024-03-07T16:33:08.676Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.676Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.676Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.676Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.676Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.676Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.676Z] try: -[2024-03-07T16:33:08.676Z] > yield -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.676Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.676Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.676Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] def _multicall( -[2024-03-07T16:33:08.676Z] hook_name: str, -[2024-03-07T16:33:08.676Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.676Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.676Z] firstresult: bool, -[2024-03-07T16:33:08.676Z] ) -> object | list[object]: -[2024-03-07T16:33:08.676Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.676Z] result(s). -[2024-03-07T16:33:08.676Z] -[2024-03-07T16:33:08.676Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.676Z] """ -[2024-03-07T16:33:08.676Z] __tracebackhide__ = True -[2024-03-07T16:33:08.676Z] results: list[object] = [] -[2024-03-07T16:33:08.676Z] exception = None -[2024-03-07T16:33:08.676Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.676Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.676Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.676Z] try: -[2024-03-07T16:33:08.676Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.677Z] try: -[2024-03-07T16:33:08.677Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.677Z] except KeyError: -[2024-03-07T16:33:08.677Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.677Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.677Z] raise HookCallError( -[2024-03-07T16:33:08.677Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.677Z] ) -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.677Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.677Z] try: -[2024-03-07T16:33:08.677Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.677Z] # which is the desired response. -[2024-03-07T16:33:08.677Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.677Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.677Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.677Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.677Z] except StopIteration: -[2024-03-07T16:33:08.677Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.677Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.677Z] try: -[2024-03-07T16:33:08.677Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.677Z] # which is the desired response. -[2024-03-07T16:33:08.677Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.677Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.677Z] next(function_gen) # first yield -[2024-03-07T16:33:08.677Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.677Z] except StopIteration: -[2024-03-07T16:33:08.677Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.677Z] else: -[2024-03-07T16:33:08.677Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.677Z] if res is not None: -[2024-03-07T16:33:08.677Z] results.append(res) -[2024-03-07T16:33:08.677Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.677Z] break -[2024-03-07T16:33:08.677Z] except BaseException as exc: -[2024-03-07T16:33:08.677Z] exception = exc -[2024-03-07T16:33:08.677Z] finally: -[2024-03-07T16:33:08.677Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.677Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.677Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.677Z] result = results[0] if results else None -[2024-03-07T16:33:08.677Z] else: -[2024-03-07T16:33:08.677Z] result = results -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.677Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.677Z] try: -[2024-03-07T16:33:08.677Z] if exception is not None: -[2024-03-07T16:33:08.677Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.677Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.677Z] item = -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.677Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.677Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.677Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.677Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.677Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.677Z] item = , when = 'setup' -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.677Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.677Z] with catching_logs( -[2024-03-07T16:33:08.677Z] self.caplog_handler, -[2024-03-07T16:33:08.677Z] level=self.log_level, -[2024-03-07T16:33:08.677Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.677Z] self.report_handler, -[2024-03-07T16:33:08.677Z] level=self.log_level, -[2024-03-07T16:33:08.677Z] ) as report_handler: -[2024-03-07T16:33:08.677Z] caplog_handler.reset() -[2024-03-07T16:33:08.677Z] report_handler.reset() -[2024-03-07T16:33:08.677Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.677Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] try: -[2024-03-07T16:33:08.677Z] > yield -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.677Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.677Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.677Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] def _multicall( -[2024-03-07T16:33:08.677Z] hook_name: str, -[2024-03-07T16:33:08.677Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.677Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.677Z] firstresult: bool, -[2024-03-07T16:33:08.677Z] ) -> object | list[object]: -[2024-03-07T16:33:08.677Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.677Z] result(s). -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.677Z] """ -[2024-03-07T16:33:08.677Z] __tracebackhide__ = True -[2024-03-07T16:33:08.677Z] results: list[object] = [] -[2024-03-07T16:33:08.677Z] exception = None -[2024-03-07T16:33:08.677Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.677Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.677Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.677Z] try: -[2024-03-07T16:33:08.677Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.677Z] try: -[2024-03-07T16:33:08.677Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.677Z] except KeyError: -[2024-03-07T16:33:08.677Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.677Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.677Z] raise HookCallError( -[2024-03-07T16:33:08.677Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.677Z] ) -[2024-03-07T16:33:08.677Z] -[2024-03-07T16:33:08.677Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.677Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.677Z] try: -[2024-03-07T16:33:08.677Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.677Z] # which is the desired response. -[2024-03-07T16:33:08.677Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.677Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.677Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.677Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.677Z] except StopIteration: -[2024-03-07T16:33:08.677Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.677Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.677Z] try: -[2024-03-07T16:33:08.678Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.678Z] # which is the desired response. -[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.678Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.678Z] next(function_gen) # first yield -[2024-03-07T16:33:08.678Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.678Z] except StopIteration: -[2024-03-07T16:33:08.678Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.678Z] else: -[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.678Z] if res is not None: -[2024-03-07T16:33:08.678Z] results.append(res) -[2024-03-07T16:33:08.678Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.678Z] break -[2024-03-07T16:33:08.678Z] except BaseException as exc: -[2024-03-07T16:33:08.678Z] exception = exc -[2024-03-07T16:33:08.678Z] finally: -[2024-03-07T16:33:08.678Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.678Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.678Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.678Z] result = results[0] if results else None -[2024-03-07T16:33:08.678Z] else: -[2024-03-07T16:33:08.678Z] result = results -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.678Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.678Z] try: -[2024-03-07T16:33:08.678Z] if exception is not None: -[2024-03-07T16:33:08.678Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.678Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.678Z] item = -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.678Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.678Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.678Z] > return (yield) -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.678Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.678Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.678Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] def _multicall( -[2024-03-07T16:33:08.678Z] hook_name: str, -[2024-03-07T16:33:08.678Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.678Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.678Z] firstresult: bool, -[2024-03-07T16:33:08.678Z] ) -> object | list[object]: -[2024-03-07T16:33:08.678Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.678Z] result(s). -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.678Z] """ -[2024-03-07T16:33:08.678Z] __tracebackhide__ = True -[2024-03-07T16:33:08.678Z] results: list[object] = [] -[2024-03-07T16:33:08.678Z] exception = None -[2024-03-07T16:33:08.678Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.678Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.678Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.678Z] try: -[2024-03-07T16:33:08.678Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.678Z] try: -[2024-03-07T16:33:08.678Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.678Z] except KeyError: -[2024-03-07T16:33:08.678Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.678Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.678Z] raise HookCallError( -[2024-03-07T16:33:08.678Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.678Z] ) -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.678Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.678Z] try: -[2024-03-07T16:33:08.678Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.678Z] # which is the desired response. -[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.678Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.678Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.678Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.678Z] except StopIteration: -[2024-03-07T16:33:08.678Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.678Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.678Z] try: -[2024-03-07T16:33:08.678Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.678Z] # which is the desired response. -[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.678Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.678Z] next(function_gen) # first yield -[2024-03-07T16:33:08.678Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.678Z] except StopIteration: -[2024-03-07T16:33:08.678Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.678Z] else: -[2024-03-07T16:33:08.678Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.678Z] if res is not None: -[2024-03-07T16:33:08.678Z] results.append(res) -[2024-03-07T16:33:08.678Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.678Z] break -[2024-03-07T16:33:08.678Z] except BaseException as exc: -[2024-03-07T16:33:08.678Z] exception = exc -[2024-03-07T16:33:08.678Z] finally: -[2024-03-07T16:33:08.678Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.678Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.678Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.678Z] result = results[0] if results else None -[2024-03-07T16:33:08.678Z] else: -[2024-03-07T16:33:08.678Z] result = results -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.678Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.678Z] try: -[2024-03-07T16:33:08.678Z] if exception is not None: -[2024-03-07T16:33:08.678Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.678Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.678Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.678Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.678Z] -[2024-03-07T16:33:08.678Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.679Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.679Z] try: -[2024-03-07T16:33:08.679Z] > yield -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.679Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.679Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] def _multicall( -[2024-03-07T16:33:08.679Z] hook_name: str, -[2024-03-07T16:33:08.679Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.679Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.679Z] firstresult: bool, -[2024-03-07T16:33:08.679Z] ) -> object | list[object]: -[2024-03-07T16:33:08.679Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.679Z] result(s). -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.679Z] """ -[2024-03-07T16:33:08.679Z] __tracebackhide__ = True -[2024-03-07T16:33:08.679Z] results: list[object] = [] -[2024-03-07T16:33:08.679Z] exception = None -[2024-03-07T16:33:08.679Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.679Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.679Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.679Z] try: -[2024-03-07T16:33:08.679Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.679Z] try: -[2024-03-07T16:33:08.679Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.679Z] except KeyError: -[2024-03-07T16:33:08.679Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.679Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.679Z] raise HookCallError( -[2024-03-07T16:33:08.679Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.679Z] ) -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.679Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.679Z] try: -[2024-03-07T16:33:08.679Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.679Z] # which is the desired response. -[2024-03-07T16:33:08.679Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.679Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.679Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.679Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.679Z] except StopIteration: -[2024-03-07T16:33:08.679Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.679Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.679Z] try: -[2024-03-07T16:33:08.679Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.679Z] # which is the desired response. -[2024-03-07T16:33:08.679Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.679Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.679Z] next(function_gen) # first yield -[2024-03-07T16:33:08.679Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.679Z] except StopIteration: -[2024-03-07T16:33:08.679Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.679Z] else: -[2024-03-07T16:33:08.679Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] item = -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.679Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.679Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.679Z] item = -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.679Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.679Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.679Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.679Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.679Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.679Z] if exc: -[2024-03-07T16:33:08.679Z] raise exc -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.679Z] assert col not in self.stack -[2024-03-07T16:33:08.679Z] # Push onto the stack. -[2024-03-07T16:33:08.679Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.679Z] try: -[2024-03-07T16:33:08.679Z] col.setup() -[2024-03-07T16:33:08.679Z] except TEST_OUTCOME as exc: -[2024-03-07T16:33:08.679Z] self.stack[col] = (self.stack[col][0], exc) -[2024-03-07T16:33:08.679Z] > raise exc -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: -[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.679Z] item = -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.679Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.679Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.679Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.679Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.679Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.679Z] if exc: -[2024-03-07T16:33:08.679Z] raise exc -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.679Z] assert col not in self.stack -[2024-03-07T16:33:08.679Z] # Push onto the stack. -[2024-03-07T16:33:08.679Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.679Z] try: -[2024-03-07T16:33:08.679Z] > col.setup() -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: -[2024-03-07T16:33:08.679Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] self = -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.679Z] def setup(self): -[2024-03-07T16:33:08.679Z] """ -[2024-03-07T16:33:08.679Z] Called by pytest to setup the collector cells in . -[2024-03-07T16:33:08.679Z] Here we start a kernel and setup the sanitize patterns. -[2024-03-07T16:33:08.679Z] """ -[2024-03-07T16:33:08.679Z] # we've already checked that --nbval-current-env and -[2024-03-07T16:33:08.679Z] # --nbval-kernel-name were not both supplied -[2024-03-07T16:33:08.679Z] if self.parent.config.option.nbval_current_env: -[2024-03-07T16:33:08.679Z] kernel_name = CURRENT_ENV_KERNEL_NAME -[2024-03-07T16:33:08.679Z] elif self.parent.config.option.nbval_kernel_name: -[2024-03-07T16:33:08.679Z] kernel_name = self.parent.config.option.nbval_kernel_name -[2024-03-07T16:33:08.679Z] else: -[2024-03-07T16:33:08.679Z] kernel_name = self.nb.metadata.get( -[2024-03-07T16:33:08.679Z] 'kernelspec', {}).get('name', 'python') -[2024-03-07T16:33:08.679Z] > self.kernel = RunningKernel( -[2024-03-07T16:33:08.679Z] kernel_name, -[2024-03-07T16:33:08.679Z] cwd=str(self.fspath.dirname), -[2024-03-07T16:33:08.679Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, -[2024-03-07T16:33:08.679Z] ) -[2024-03-07T16:33:08.679Z] -[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: -[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] self = -[2024-03-07T16:33:08.680Z] kernel_name = 'python' -[2024-03-07T16:33:08.680Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' -[2024-03-07T16:33:08.680Z] startup_timeout = 60 -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): -[2024-03-07T16:33:08.680Z] """ -[2024-03-07T16:33:08.680Z] Initialise a new kernel -[2024-03-07T16:33:08.680Z] specify that matplotlib is inline and connect the stderr. -[2024-03-07T16:33:08.680Z] Stores the active kernel process and its manager. -[2024-03-07T16:33:08.680Z] """ -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] > self.km, self.kc = start_new_kernel( -[2024-03-07T16:33:08.680Z] startup_timeout=startup_timeout, -[2024-03-07T16:33:08.680Z] kernel_name=kernel_name, -[2024-03-07T16:33:08.680Z] stderr=open(os.devnull, 'w'), -[2024-03-07T16:33:08.680Z] cwd=cwd, -[2024-03-07T16:33:08.680Z] ) -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: -[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] startup_timeout = 60, kernel_name = 'python' -[2024-03-07T16:33:08.680Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} -[2024-03-07T16:33:08.680Z] km = -[2024-03-07T16:33:08.680Z] kc = -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): -[2024-03-07T16:33:08.680Z] """Start a new kernel, and return its Manager and Client""" -[2024-03-07T16:33:08.680Z] logger.debug('Starting new kernel: "%s"' % kernel_name) -[2024-03-07T16:33:08.680Z] km = KernelManager(kernel_name=kernel_name, -[2024-03-07T16:33:08.680Z] kernel_spec_manager=NbvalKernelspecManager()) -[2024-03-07T16:33:08.680Z] km.start_kernel(**kwargs) -[2024-03-07T16:33:08.680Z] kc = km.client() -[2024-03-07T16:33:08.680Z] kc.start_channels() -[2024-03-07T16:33:08.680Z] try: -[2024-03-07T16:33:08.680Z] > kc.wait_for_ready(timeout=startup_timeout) -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: -[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] args = (,) -[2024-03-07T16:33:08.680Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.680Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.680Z] nest_asyncio = -[2024-03-07T16:33:08.680Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.680Z] try: -[2024-03-07T16:33:08.680Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.680Z] except RuntimeError: -[2024-03-07T16:33:08.680Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.680Z] try: -[2024-03-07T16:33:08.680Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.680Z] except RuntimeError: -[2024-03-07T16:33:08.680Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.680Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.680Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.680Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.680Z] try: -[2024-03-07T16:33:08.680Z] return loop.run_until_complete(future) -[2024-03-07T16:33:08.680Z] except BaseException as e: -[2024-03-07T16:33:08.680Z] future.cancel() -[2024-03-07T16:33:08.680Z] > raise e -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: -[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] args = (,) -[2024-03-07T16:33:08.680Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.680Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.680Z] nest_asyncio = -[2024-03-07T16:33:08.680Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.680Z] try: -[2024-03-07T16:33:08.680Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.680Z] except RuntimeError: -[2024-03-07T16:33:08.680Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.680Z] try: -[2024-03-07T16:33:08.680Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.680Z] except RuntimeError: -[2024-03-07T16:33:08.680Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.680Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.680Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.680Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.680Z] try: -[2024-03-07T16:33:08.680Z] > return loop.run_until_complete(future) -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: -[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.680Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] def run_until_complete(self, future): -[2024-03-07T16:33:08.680Z] with manage_run(self): -[2024-03-07T16:33:08.680Z] f = asyncio.ensure_future(future, loop=self) -[2024-03-07T16:33:08.680Z] if f is not future: -[2024-03-07T16:33:08.680Z] f._log_destroy_pending = False -[2024-03-07T16:33:08.680Z] while not f.done(): -[2024-03-07T16:33:08.680Z] self._run_once() -[2024-03-07T16:33:08.680Z] if self._stopping: -[2024-03-07T16:33:08.680Z] break -[2024-03-07T16:33:08.680Z] if not f.done(): -[2024-03-07T16:33:08.680Z] raise RuntimeError( -[2024-03-07T16:33:08.680Z] 'Event loop stopped before Future completed.') -[2024-03-07T16:33:08.680Z] > return f.result() -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: -[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] def result(self): -[2024-03-07T16:33:08.680Z] """Return the result this future represents. -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] If the future has been cancelled, raises CancelledError. If the -[2024-03-07T16:33:08.680Z] future's result isn't yet available, raises InvalidStateError. If -[2024-03-07T16:33:08.680Z] the future is done and has an exception set, this exception is raised. -[2024-03-07T16:33:08.680Z] """ -[2024-03-07T16:33:08.680Z] if self._state == _CANCELLED: -[2024-03-07T16:33:08.680Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.680Z] raise exc -[2024-03-07T16:33:08.680Z] if self._state != _FINISHED: -[2024-03-07T16:33:08.680Z] raise exceptions.InvalidStateError('Result is not ready.') -[2024-03-07T16:33:08.680Z] self.__log_traceback = False -[2024-03-07T16:33:08.680Z] if self._exception is not None: -[2024-03-07T16:33:08.680Z] > raise self._exception.with_traceback(self._exception_tb) -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: -[2024-03-07T16:33:08.680Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] self = None -[2024-03-07T16:33:08.680Z] -[2024-03-07T16:33:08.680Z] def __step(self, exc=None): -[2024-03-07T16:33:08.680Z] if self.done(): -[2024-03-07T16:33:08.680Z] raise exceptions.InvalidStateError( -[2024-03-07T16:33:08.680Z] f'_step(): already done: {self!r}, {exc!r}') -[2024-03-07T16:33:08.680Z] if self._must_cancel: -[2024-03-07T16:33:08.681Z] if not isinstance(exc, exceptions.CancelledError): -[2024-03-07T16:33:08.681Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.681Z] self._must_cancel = False -[2024-03-07T16:33:08.681Z] coro = self._coro -[2024-03-07T16:33:08.681Z] self._fut_waiter = None -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] _enter_task(self._loop, self) -[2024-03-07T16:33:08.681Z] # Call either coro.throw(exc) or coro.send(None). -[2024-03-07T16:33:08.681Z] try: -[2024-03-07T16:33:08.681Z] if exc is None: -[2024-03-07T16:33:08.681Z] # We use the `send` method directly, because coroutines -[2024-03-07T16:33:08.681Z] # don't have `__iter__` and `__next__` methods. -[2024-03-07T16:33:08.681Z] > result = coro.send(None) -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: -[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] self = -[2024-03-07T16:33:08.681Z] timeout = 60 -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: -[2024-03-07T16:33:08.681Z] """Waits for a response when a client is blocked -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] - Sets future time for timeout -[2024-03-07T16:33:08.681Z] - Blocks on shell channel until a message is received -[2024-03-07T16:33:08.681Z] - Exit if the kernel has died -[2024-03-07T16:33:08.681Z] - If client times out before receiving a message from the kernel, send RuntimeError -[2024-03-07T16:33:08.681Z] - Flush the IOPub channel -[2024-03-07T16:33:08.681Z] """ -[2024-03-07T16:33:08.681Z] if timeout is None: -[2024-03-07T16:33:08.681Z] timeout = float("inf") -[2024-03-07T16:33:08.681Z] abs_timeout = time.time() + timeout -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] from .manager import KernelManager -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] if not isinstance(self.parent, KernelManager): -[2024-03-07T16:33:08.681Z] # This Client was not created by a KernelManager, -[2024-03-07T16:33:08.681Z] # so wait for kernel to become responsive to heartbeats -[2024-03-07T16:33:08.681Z] # before checking for kernel_info reply -[2024-03-07T16:33:08.681Z] while not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.681Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.681Z] raise RuntimeError( -[2024-03-07T16:33:08.681Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout -[2024-03-07T16:33:08.681Z] ) -[2024-03-07T16:33:08.681Z] await asyncio.sleep(0.2) -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] # Wait for kernel info reply on shell channel -[2024-03-07T16:33:08.681Z] while True: -[2024-03-07T16:33:08.681Z] self.kernel_info() -[2024-03-07T16:33:08.681Z] try: -[2024-03-07T16:33:08.681Z] msg = await self.shell_channel.get_msg(timeout=1) -[2024-03-07T16:33:08.681Z] except Empty: -[2024-03-07T16:33:08.681Z] pass -[2024-03-07T16:33:08.681Z] else: -[2024-03-07T16:33:08.681Z] if msg["msg_type"] == "kernel_info_reply": -[2024-03-07T16:33:08.681Z] # Checking that IOPub is connected. If it is not connected, start over. -[2024-03-07T16:33:08.681Z] try: -[2024-03-07T16:33:08.681Z] await self.iopub_channel.get_msg(timeout=0.2) -[2024-03-07T16:33:08.681Z] except Empty: -[2024-03-07T16:33:08.681Z] pass -[2024-03-07T16:33:08.681Z] else: -[2024-03-07T16:33:08.681Z] self._handle_kernel_info_reply(msg) -[2024-03-07T16:33:08.681Z] break -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] if not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.681Z] raise RuntimeError("Kernel died before replying to kernel_info") -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] # Check if current time is ready check time plus timeout -[2024-03-07T16:33:08.681Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.681Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) -[2024-03-07T16:33:08.681Z] E RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError -[2024-03-07T16:33:08.681Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 4 _ -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] cls = -[2024-03-07T16:33:08.681Z] func = . at 0x7f0ab86cab00> -[2024-03-07T16:33:08.681Z] when = 'setup' -[2024-03-07T16:33:08.681Z] reraise = (, ) -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] @classmethod -[2024-03-07T16:33:08.681Z] def from_call( -[2024-03-07T16:33:08.681Z] cls, -[2024-03-07T16:33:08.681Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.681Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.681Z] reraise: Optional[ -[2024-03-07T16:33:08.681Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.681Z] ] = None, -[2024-03-07T16:33:08.681Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.681Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] :param func: -[2024-03-07T16:33:08.681Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.681Z] :param when: -[2024-03-07T16:33:08.681Z] The phase in which the function is called. -[2024-03-07T16:33:08.681Z] :param reraise: -[2024-03-07T16:33:08.681Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.681Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.681Z] """ -[2024-03-07T16:33:08.681Z] excinfo = None -[2024-03-07T16:33:08.681Z] start = timing.time() -[2024-03-07T16:33:08.681Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.681Z] try: -[2024-03-07T16:33:08.681Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.681Z] ) -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] self = -[2024-03-07T16:33:08.681Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.681Z] """Call the hook. -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.681Z] specification. -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.681Z] :ref:`calling`. -[2024-03-07T16:33:08.681Z] """ -[2024-03-07T16:33:08.681Z] assert ( -[2024-03-07T16:33:08.681Z] not self.is_historic() -[2024-03-07T16:33:08.681Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.681Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.681Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.681Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.681Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.681Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.681Z] methods = [>, >, ...] -[2024-03-07T16:33:08.681Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] def _hookexec( -[2024-03-07T16:33:08.681Z] self, -[2024-03-07T16:33:08.681Z] hook_name: str, -[2024-03-07T16:33:08.681Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.681Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.681Z] firstresult: bool, -[2024-03-07T16:33:08.681Z] ) -> object | list[object]: -[2024-03-07T16:33:08.681Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.681Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.681Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.681Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.681Z] -[2024-03-07T16:33:08.681Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.682Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.682Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] def _multicall( -[2024-03-07T16:33:08.682Z] hook_name: str, -[2024-03-07T16:33:08.682Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.682Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.682Z] firstresult: bool, -[2024-03-07T16:33:08.682Z] ) -> object | list[object]: -[2024-03-07T16:33:08.682Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.682Z] result(s). -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.682Z] """ -[2024-03-07T16:33:08.682Z] __tracebackhide__ = True -[2024-03-07T16:33:08.682Z] results: list[object] = [] -[2024-03-07T16:33:08.682Z] exception = None -[2024-03-07T16:33:08.682Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.682Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.682Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.682Z] try: -[2024-03-07T16:33:08.682Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.682Z] try: -[2024-03-07T16:33:08.682Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.682Z] except KeyError: -[2024-03-07T16:33:08.682Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.682Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.682Z] raise HookCallError( -[2024-03-07T16:33:08.682Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.682Z] ) -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.682Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.682Z] try: -[2024-03-07T16:33:08.682Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.682Z] # which is the desired response. -[2024-03-07T16:33:08.682Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.682Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.682Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.682Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.682Z] except StopIteration: -[2024-03-07T16:33:08.682Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.682Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.682Z] try: -[2024-03-07T16:33:08.682Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.682Z] # which is the desired response. -[2024-03-07T16:33:08.682Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.682Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.682Z] next(function_gen) # first yield -[2024-03-07T16:33:08.682Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.682Z] except StopIteration: -[2024-03-07T16:33:08.682Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.682Z] else: -[2024-03-07T16:33:08.682Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.682Z] if res is not None: -[2024-03-07T16:33:08.682Z] results.append(res) -[2024-03-07T16:33:08.682Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.682Z] break -[2024-03-07T16:33:08.682Z] except BaseException as exc: -[2024-03-07T16:33:08.682Z] exception = exc -[2024-03-07T16:33:08.682Z] finally: -[2024-03-07T16:33:08.682Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.682Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.682Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.682Z] result = results[0] if results else None -[2024-03-07T16:33:08.682Z] else: -[2024-03-07T16:33:08.682Z] result = results -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.682Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.682Z] try: -[2024-03-07T16:33:08.682Z] if exception is not None: -[2024-03-07T16:33:08.682Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.682Z] else: -[2024-03-07T16:33:08.682Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.682Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.682Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.682Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.682Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.682Z] except StopIteration as si: -[2024-03-07T16:33:08.682Z] result = si.value -[2024-03-07T16:33:08.682Z] exception = None -[2024-03-07T16:33:08.682Z] continue -[2024-03-07T16:33:08.682Z] except BaseException as e: -[2024-03-07T16:33:08.682Z] exception = e -[2024-03-07T16:33:08.682Z] continue -[2024-03-07T16:33:08.682Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] if exception is not None: -[2024-03-07T16:33:08.682Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.682Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.682Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.682Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] def _multicall( -[2024-03-07T16:33:08.682Z] hook_name: str, -[2024-03-07T16:33:08.682Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.682Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.682Z] firstresult: bool, -[2024-03-07T16:33:08.682Z] ) -> object | list[object]: -[2024-03-07T16:33:08.682Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.682Z] result(s). -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.682Z] """ -[2024-03-07T16:33:08.682Z] __tracebackhide__ = True -[2024-03-07T16:33:08.682Z] results: list[object] = [] -[2024-03-07T16:33:08.682Z] exception = None -[2024-03-07T16:33:08.682Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.682Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.682Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.682Z] try: -[2024-03-07T16:33:08.682Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.682Z] try: -[2024-03-07T16:33:08.682Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.682Z] except KeyError: -[2024-03-07T16:33:08.682Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.682Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.682Z] raise HookCallError( -[2024-03-07T16:33:08.682Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.682Z] ) -[2024-03-07T16:33:08.682Z] -[2024-03-07T16:33:08.682Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.682Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.682Z] try: -[2024-03-07T16:33:08.682Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.682Z] # which is the desired response. -[2024-03-07T16:33:08.682Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.682Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.682Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.682Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.682Z] except StopIteration: -[2024-03-07T16:33:08.682Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.682Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.682Z] try: -[2024-03-07T16:33:08.683Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.683Z] # which is the desired response. -[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.683Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.683Z] next(function_gen) # first yield -[2024-03-07T16:33:08.683Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.683Z] except StopIteration: -[2024-03-07T16:33:08.683Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.683Z] else: -[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.683Z] if res is not None: -[2024-03-07T16:33:08.683Z] results.append(res) -[2024-03-07T16:33:08.683Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.683Z] break -[2024-03-07T16:33:08.683Z] except BaseException as exc: -[2024-03-07T16:33:08.683Z] exception = exc -[2024-03-07T16:33:08.683Z] finally: -[2024-03-07T16:33:08.683Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.683Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.683Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.683Z] result = results[0] if results else None -[2024-03-07T16:33:08.683Z] else: -[2024-03-07T16:33:08.683Z] result = results -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.683Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.683Z] try: -[2024-03-07T16:33:08.683Z] if exception is not None: -[2024-03-07T16:33:08.683Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.683Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.683Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.683Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.683Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.683Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.683Z] try: -[2024-03-07T16:33:08.683Z] > yield -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.683Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.683Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.683Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] def _multicall( -[2024-03-07T16:33:08.683Z] hook_name: str, -[2024-03-07T16:33:08.683Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.683Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.683Z] firstresult: bool, -[2024-03-07T16:33:08.683Z] ) -> object | list[object]: -[2024-03-07T16:33:08.683Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.683Z] result(s). -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.683Z] """ -[2024-03-07T16:33:08.683Z] __tracebackhide__ = True -[2024-03-07T16:33:08.683Z] results: list[object] = [] -[2024-03-07T16:33:08.683Z] exception = None -[2024-03-07T16:33:08.683Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.683Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.683Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.683Z] try: -[2024-03-07T16:33:08.683Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.683Z] try: -[2024-03-07T16:33:08.683Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.683Z] except KeyError: -[2024-03-07T16:33:08.683Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.683Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.683Z] raise HookCallError( -[2024-03-07T16:33:08.683Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.683Z] ) -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.683Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.683Z] try: -[2024-03-07T16:33:08.683Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.683Z] # which is the desired response. -[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.683Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.683Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.683Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.683Z] except StopIteration: -[2024-03-07T16:33:08.683Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.683Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.683Z] try: -[2024-03-07T16:33:08.683Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.683Z] # which is the desired response. -[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.683Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.683Z] next(function_gen) # first yield -[2024-03-07T16:33:08.683Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.683Z] except StopIteration: -[2024-03-07T16:33:08.683Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.683Z] else: -[2024-03-07T16:33:08.683Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.683Z] if res is not None: -[2024-03-07T16:33:08.683Z] results.append(res) -[2024-03-07T16:33:08.683Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.683Z] break -[2024-03-07T16:33:08.683Z] except BaseException as exc: -[2024-03-07T16:33:08.683Z] exception = exc -[2024-03-07T16:33:08.683Z] finally: -[2024-03-07T16:33:08.683Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.683Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.683Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.683Z] result = results[0] if results else None -[2024-03-07T16:33:08.683Z] else: -[2024-03-07T16:33:08.683Z] result = results -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.683Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.683Z] try: -[2024-03-07T16:33:08.683Z] if exception is not None: -[2024-03-07T16:33:08.683Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.683Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.683Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.683Z] item = -[2024-03-07T16:33:08.683Z] -[2024-03-07T16:33:08.684Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.684Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.684Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.684Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.684Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.684Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.684Z] item = , when = 'setup' -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.684Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.684Z] with catching_logs( -[2024-03-07T16:33:08.684Z] self.caplog_handler, -[2024-03-07T16:33:08.684Z] level=self.log_level, -[2024-03-07T16:33:08.684Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.684Z] self.report_handler, -[2024-03-07T16:33:08.684Z] level=self.log_level, -[2024-03-07T16:33:08.684Z] ) as report_handler: -[2024-03-07T16:33:08.684Z] caplog_handler.reset() -[2024-03-07T16:33:08.684Z] report_handler.reset() -[2024-03-07T16:33:08.684Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.684Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] try: -[2024-03-07T16:33:08.684Z] > yield -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.684Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.684Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.684Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] def _multicall( -[2024-03-07T16:33:08.684Z] hook_name: str, -[2024-03-07T16:33:08.684Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.684Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.684Z] firstresult: bool, -[2024-03-07T16:33:08.684Z] ) -> object | list[object]: -[2024-03-07T16:33:08.684Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.684Z] result(s). -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.684Z] """ -[2024-03-07T16:33:08.684Z] __tracebackhide__ = True -[2024-03-07T16:33:08.684Z] results: list[object] = [] -[2024-03-07T16:33:08.684Z] exception = None -[2024-03-07T16:33:08.684Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.684Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.684Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.684Z] try: -[2024-03-07T16:33:08.684Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.684Z] try: -[2024-03-07T16:33:08.684Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.684Z] except KeyError: -[2024-03-07T16:33:08.684Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.684Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.684Z] raise HookCallError( -[2024-03-07T16:33:08.684Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.684Z] ) -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.684Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.684Z] try: -[2024-03-07T16:33:08.684Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.684Z] # which is the desired response. -[2024-03-07T16:33:08.684Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.684Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.684Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.684Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.684Z] except StopIteration: -[2024-03-07T16:33:08.684Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.684Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.684Z] try: -[2024-03-07T16:33:08.684Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.684Z] # which is the desired response. -[2024-03-07T16:33:08.684Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.684Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.684Z] next(function_gen) # first yield -[2024-03-07T16:33:08.684Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.684Z] except StopIteration: -[2024-03-07T16:33:08.684Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.684Z] else: -[2024-03-07T16:33:08.684Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.684Z] if res is not None: -[2024-03-07T16:33:08.684Z] results.append(res) -[2024-03-07T16:33:08.684Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.684Z] break -[2024-03-07T16:33:08.684Z] except BaseException as exc: -[2024-03-07T16:33:08.684Z] exception = exc -[2024-03-07T16:33:08.684Z] finally: -[2024-03-07T16:33:08.684Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.684Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.684Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.684Z] result = results[0] if results else None -[2024-03-07T16:33:08.684Z] else: -[2024-03-07T16:33:08.684Z] result = results -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.684Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.684Z] try: -[2024-03-07T16:33:08.684Z] if exception is not None: -[2024-03-07T16:33:08.684Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.684Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.684Z] item = -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.684Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.684Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.684Z] > return (yield) -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.684Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.684Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.684Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] def _multicall( -[2024-03-07T16:33:08.684Z] hook_name: str, -[2024-03-07T16:33:08.684Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.684Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.684Z] firstresult: bool, -[2024-03-07T16:33:08.684Z] ) -> object | list[object]: -[2024-03-07T16:33:08.684Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.684Z] result(s). -[2024-03-07T16:33:08.684Z] -[2024-03-07T16:33:08.684Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.684Z] """ -[2024-03-07T16:33:08.684Z] __tracebackhide__ = True -[2024-03-07T16:33:08.685Z] results: list[object] = [] -[2024-03-07T16:33:08.685Z] exception = None -[2024-03-07T16:33:08.685Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.685Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.685Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.685Z] except KeyError: -[2024-03-07T16:33:08.685Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.685Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.685Z] raise HookCallError( -[2024-03-07T16:33:08.685Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.685Z] ) -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.685Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.685Z] # which is the desired response. -[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.685Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.685Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.685Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.685Z] except StopIteration: -[2024-03-07T16:33:08.685Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.685Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.685Z] # which is the desired response. -[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.685Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.685Z] next(function_gen) # first yield -[2024-03-07T16:33:08.685Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.685Z] except StopIteration: -[2024-03-07T16:33:08.685Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.685Z] else: -[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.685Z] if res is not None: -[2024-03-07T16:33:08.685Z] results.append(res) -[2024-03-07T16:33:08.685Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.685Z] break -[2024-03-07T16:33:08.685Z] except BaseException as exc: -[2024-03-07T16:33:08.685Z] exception = exc -[2024-03-07T16:33:08.685Z] finally: -[2024-03-07T16:33:08.685Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.685Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.685Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.685Z] result = results[0] if results else None -[2024-03-07T16:33:08.685Z] else: -[2024-03-07T16:33:08.685Z] result = results -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.685Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] if exception is not None: -[2024-03-07T16:33:08.685Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.685Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.685Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.685Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] > yield -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.685Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.685Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] def _multicall( -[2024-03-07T16:33:08.685Z] hook_name: str, -[2024-03-07T16:33:08.685Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.685Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.685Z] firstresult: bool, -[2024-03-07T16:33:08.685Z] ) -> object | list[object]: -[2024-03-07T16:33:08.685Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.685Z] result(s). -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.685Z] """ -[2024-03-07T16:33:08.685Z] __tracebackhide__ = True -[2024-03-07T16:33:08.685Z] results: list[object] = [] -[2024-03-07T16:33:08.685Z] exception = None -[2024-03-07T16:33:08.685Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.685Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.685Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.685Z] except KeyError: -[2024-03-07T16:33:08.685Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.685Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.685Z] raise HookCallError( -[2024-03-07T16:33:08.685Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.685Z] ) -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.685Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.685Z] # which is the desired response. -[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.685Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.685Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.685Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.685Z] except StopIteration: -[2024-03-07T16:33:08.685Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.685Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.685Z] try: -[2024-03-07T16:33:08.685Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.685Z] # which is the desired response. -[2024-03-07T16:33:08.685Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.685Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.685Z] next(function_gen) # first yield -[2024-03-07T16:33:08.685Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.685Z] except StopIteration: -[2024-03-07T16:33:08.685Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.685Z] else: -[2024-03-07T16:33:08.685Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] item = -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.685Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.685Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.685Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.685Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.685Z] -[2024-03-07T16:33:08.686Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.686Z] item = -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.686Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.686Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.686Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.686Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.686Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.686Z] if exc: -[2024-03-07T16:33:08.686Z] > raise exc -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] cls = -[2024-03-07T16:33:08.686Z] func = . at 0x7f0ab86f15a0> -[2024-03-07T16:33:08.686Z] when = 'setup' -[2024-03-07T16:33:08.686Z] reraise = (, ) -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] @classmethod -[2024-03-07T16:33:08.686Z] def from_call( -[2024-03-07T16:33:08.686Z] cls, -[2024-03-07T16:33:08.686Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.686Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.686Z] reraise: Optional[ -[2024-03-07T16:33:08.686Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.686Z] ] = None, -[2024-03-07T16:33:08.686Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.686Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] :param func: -[2024-03-07T16:33:08.686Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.686Z] :param when: -[2024-03-07T16:33:08.686Z] The phase in which the function is called. -[2024-03-07T16:33:08.686Z] :param reraise: -[2024-03-07T16:33:08.686Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.686Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.686Z] """ -[2024-03-07T16:33:08.686Z] excinfo = None -[2024-03-07T16:33:08.686Z] start = timing.time() -[2024-03-07T16:33:08.686Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.686Z] try: -[2024-03-07T16:33:08.686Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.686Z] ) -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] self = -[2024-03-07T16:33:08.686Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.686Z] """Call the hook. -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.686Z] specification. -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.686Z] :ref:`calling`. -[2024-03-07T16:33:08.686Z] """ -[2024-03-07T16:33:08.686Z] assert ( -[2024-03-07T16:33:08.686Z] not self.is_historic() -[2024-03-07T16:33:08.686Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.686Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.686Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.686Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.686Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.686Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.686Z] methods = [>, >, ...] -[2024-03-07T16:33:08.686Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] def _hookexec( -[2024-03-07T16:33:08.686Z] self, -[2024-03-07T16:33:08.686Z] hook_name: str, -[2024-03-07T16:33:08.686Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.686Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.686Z] firstresult: bool, -[2024-03-07T16:33:08.686Z] ) -> object | list[object]: -[2024-03-07T16:33:08.686Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.686Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.686Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.686Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.686Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.686Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] def _multicall( -[2024-03-07T16:33:08.686Z] hook_name: str, -[2024-03-07T16:33:08.686Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.686Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.686Z] firstresult: bool, -[2024-03-07T16:33:08.686Z] ) -> object | list[object]: -[2024-03-07T16:33:08.686Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.686Z] result(s). -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.686Z] """ -[2024-03-07T16:33:08.686Z] __tracebackhide__ = True -[2024-03-07T16:33:08.686Z] results: list[object] = [] -[2024-03-07T16:33:08.686Z] exception = None -[2024-03-07T16:33:08.686Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.686Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.686Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.686Z] try: -[2024-03-07T16:33:08.686Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.686Z] try: -[2024-03-07T16:33:08.686Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.686Z] except KeyError: -[2024-03-07T16:33:08.686Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.686Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.686Z] raise HookCallError( -[2024-03-07T16:33:08.686Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.686Z] ) -[2024-03-07T16:33:08.686Z] -[2024-03-07T16:33:08.686Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.686Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.686Z] try: -[2024-03-07T16:33:08.686Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.686Z] # which is the desired response. -[2024-03-07T16:33:08.686Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.686Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.686Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.686Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.686Z] except StopIteration: -[2024-03-07T16:33:08.686Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.686Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.686Z] try: -[2024-03-07T16:33:08.686Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.686Z] # which is the desired response. -[2024-03-07T16:33:08.686Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.686Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.686Z] next(function_gen) # first yield -[2024-03-07T16:33:08.686Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.686Z] except StopIteration: -[2024-03-07T16:33:08.687Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.687Z] else: -[2024-03-07T16:33:08.687Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.687Z] if res is not None: -[2024-03-07T16:33:08.687Z] results.append(res) -[2024-03-07T16:33:08.687Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.687Z] break -[2024-03-07T16:33:08.687Z] except BaseException as exc: -[2024-03-07T16:33:08.687Z] exception = exc -[2024-03-07T16:33:08.687Z] finally: -[2024-03-07T16:33:08.687Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.687Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.687Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.687Z] result = results[0] if results else None -[2024-03-07T16:33:08.687Z] else: -[2024-03-07T16:33:08.687Z] result = results -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.687Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.687Z] try: -[2024-03-07T16:33:08.687Z] if exception is not None: -[2024-03-07T16:33:08.687Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.687Z] else: -[2024-03-07T16:33:08.687Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.687Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.687Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.687Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.687Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.687Z] except StopIteration as si: -[2024-03-07T16:33:08.687Z] result = si.value -[2024-03-07T16:33:08.687Z] exception = None -[2024-03-07T16:33:08.687Z] continue -[2024-03-07T16:33:08.687Z] except BaseException as e: -[2024-03-07T16:33:08.687Z] exception = e -[2024-03-07T16:33:08.687Z] continue -[2024-03-07T16:33:08.687Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] if exception is not None: -[2024-03-07T16:33:08.687Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.687Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.687Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.687Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] def _multicall( -[2024-03-07T16:33:08.687Z] hook_name: str, -[2024-03-07T16:33:08.687Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.687Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.687Z] firstresult: bool, -[2024-03-07T16:33:08.687Z] ) -> object | list[object]: -[2024-03-07T16:33:08.687Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.687Z] result(s). -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.687Z] """ -[2024-03-07T16:33:08.687Z] __tracebackhide__ = True -[2024-03-07T16:33:08.687Z] results: list[object] = [] -[2024-03-07T16:33:08.687Z] exception = None -[2024-03-07T16:33:08.687Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.687Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.687Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.687Z] try: -[2024-03-07T16:33:08.687Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.687Z] try: -[2024-03-07T16:33:08.687Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.687Z] except KeyError: -[2024-03-07T16:33:08.687Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.687Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.687Z] raise HookCallError( -[2024-03-07T16:33:08.687Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.687Z] ) -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.687Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.687Z] try: -[2024-03-07T16:33:08.687Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.687Z] # which is the desired response. -[2024-03-07T16:33:08.687Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.687Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.687Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.687Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.687Z] except StopIteration: -[2024-03-07T16:33:08.687Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.687Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.687Z] try: -[2024-03-07T16:33:08.687Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.687Z] # which is the desired response. -[2024-03-07T16:33:08.687Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.687Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.687Z] next(function_gen) # first yield -[2024-03-07T16:33:08.687Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.687Z] except StopIteration: -[2024-03-07T16:33:08.687Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.687Z] else: -[2024-03-07T16:33:08.687Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.687Z] if res is not None: -[2024-03-07T16:33:08.687Z] results.append(res) -[2024-03-07T16:33:08.687Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.687Z] break -[2024-03-07T16:33:08.687Z] except BaseException as exc: -[2024-03-07T16:33:08.687Z] exception = exc -[2024-03-07T16:33:08.687Z] finally: -[2024-03-07T16:33:08.687Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.687Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.687Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.687Z] result = results[0] if results else None -[2024-03-07T16:33:08.687Z] else: -[2024-03-07T16:33:08.687Z] result = results -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.687Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.687Z] try: -[2024-03-07T16:33:08.687Z] if exception is not None: -[2024-03-07T16:33:08.687Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.687Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.687Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.687Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.687Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.687Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.687Z] try: -[2024-03-07T16:33:08.687Z] > yield -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.687Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.687Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.687Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.687Z] -[2024-03-07T16:33:08.687Z] def _multicall( -[2024-03-07T16:33:08.688Z] hook_name: str, -[2024-03-07T16:33:08.688Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.688Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.688Z] firstresult: bool, -[2024-03-07T16:33:08.688Z] ) -> object | list[object]: -[2024-03-07T16:33:08.688Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.688Z] result(s). -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.688Z] """ -[2024-03-07T16:33:08.688Z] __tracebackhide__ = True -[2024-03-07T16:33:08.688Z] results: list[object] = [] -[2024-03-07T16:33:08.688Z] exception = None -[2024-03-07T16:33:08.688Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.688Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.688Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.688Z] try: -[2024-03-07T16:33:08.688Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.688Z] try: -[2024-03-07T16:33:08.688Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.688Z] except KeyError: -[2024-03-07T16:33:08.688Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.688Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.688Z] raise HookCallError( -[2024-03-07T16:33:08.688Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.688Z] ) -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.688Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.688Z] try: -[2024-03-07T16:33:08.688Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.688Z] # which is the desired response. -[2024-03-07T16:33:08.688Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.688Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.688Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.688Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.688Z] except StopIteration: -[2024-03-07T16:33:08.688Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.688Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.688Z] try: -[2024-03-07T16:33:08.688Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.688Z] # which is the desired response. -[2024-03-07T16:33:08.688Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.688Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.688Z] next(function_gen) # first yield -[2024-03-07T16:33:08.688Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.688Z] except StopIteration: -[2024-03-07T16:33:08.688Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.688Z] else: -[2024-03-07T16:33:08.688Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.688Z] if res is not None: -[2024-03-07T16:33:08.688Z] results.append(res) -[2024-03-07T16:33:08.688Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.688Z] break -[2024-03-07T16:33:08.688Z] except BaseException as exc: -[2024-03-07T16:33:08.688Z] exception = exc -[2024-03-07T16:33:08.688Z] finally: -[2024-03-07T16:33:08.688Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.688Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.688Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.688Z] result = results[0] if results else None -[2024-03-07T16:33:08.688Z] else: -[2024-03-07T16:33:08.688Z] result = results -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.688Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.688Z] try: -[2024-03-07T16:33:08.688Z] if exception is not None: -[2024-03-07T16:33:08.688Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.688Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.688Z] item = -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.688Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.688Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.688Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.688Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.688Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.688Z] item = , when = 'setup' -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.688Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.688Z] with catching_logs( -[2024-03-07T16:33:08.688Z] self.caplog_handler, -[2024-03-07T16:33:08.688Z] level=self.log_level, -[2024-03-07T16:33:08.688Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.688Z] self.report_handler, -[2024-03-07T16:33:08.688Z] level=self.log_level, -[2024-03-07T16:33:08.688Z] ) as report_handler: -[2024-03-07T16:33:08.688Z] caplog_handler.reset() -[2024-03-07T16:33:08.688Z] report_handler.reset() -[2024-03-07T16:33:08.688Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.688Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] try: -[2024-03-07T16:33:08.688Z] > yield -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.688Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.688Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.688Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] def _multicall( -[2024-03-07T16:33:08.688Z] hook_name: str, -[2024-03-07T16:33:08.688Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.688Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.688Z] firstresult: bool, -[2024-03-07T16:33:08.688Z] ) -> object | list[object]: -[2024-03-07T16:33:08.688Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.688Z] result(s). -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.688Z] """ -[2024-03-07T16:33:08.688Z] __tracebackhide__ = True -[2024-03-07T16:33:08.688Z] results: list[object] = [] -[2024-03-07T16:33:08.688Z] exception = None -[2024-03-07T16:33:08.688Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.688Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.688Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.688Z] try: -[2024-03-07T16:33:08.688Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.688Z] try: -[2024-03-07T16:33:08.688Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.688Z] except KeyError: -[2024-03-07T16:33:08.688Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.688Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.688Z] raise HookCallError( -[2024-03-07T16:33:08.688Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.688Z] ) -[2024-03-07T16:33:08.688Z] -[2024-03-07T16:33:08.688Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.688Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.688Z] try: -[2024-03-07T16:33:08.688Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.688Z] # which is the desired response. -[2024-03-07T16:33:08.688Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.688Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.689Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.689Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.689Z] except StopIteration: -[2024-03-07T16:33:08.689Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.689Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.689Z] try: -[2024-03-07T16:33:08.689Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.689Z] # which is the desired response. -[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.689Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.689Z] next(function_gen) # first yield -[2024-03-07T16:33:08.689Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.689Z] except StopIteration: -[2024-03-07T16:33:08.689Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.689Z] else: -[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.689Z] if res is not None: -[2024-03-07T16:33:08.689Z] results.append(res) -[2024-03-07T16:33:08.689Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.689Z] break -[2024-03-07T16:33:08.689Z] except BaseException as exc: -[2024-03-07T16:33:08.689Z] exception = exc -[2024-03-07T16:33:08.689Z] finally: -[2024-03-07T16:33:08.689Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.689Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.689Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.689Z] result = results[0] if results else None -[2024-03-07T16:33:08.689Z] else: -[2024-03-07T16:33:08.689Z] result = results -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.689Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.689Z] try: -[2024-03-07T16:33:08.689Z] if exception is not None: -[2024-03-07T16:33:08.689Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.689Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.689Z] item = -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.689Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.689Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.689Z] > return (yield) -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.689Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.689Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.689Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] def _multicall( -[2024-03-07T16:33:08.689Z] hook_name: str, -[2024-03-07T16:33:08.689Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.689Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.689Z] firstresult: bool, -[2024-03-07T16:33:08.689Z] ) -> object | list[object]: -[2024-03-07T16:33:08.689Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.689Z] result(s). -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.689Z] """ -[2024-03-07T16:33:08.689Z] __tracebackhide__ = True -[2024-03-07T16:33:08.689Z] results: list[object] = [] -[2024-03-07T16:33:08.689Z] exception = None -[2024-03-07T16:33:08.689Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.689Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.689Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.689Z] try: -[2024-03-07T16:33:08.689Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.689Z] try: -[2024-03-07T16:33:08.689Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.689Z] except KeyError: -[2024-03-07T16:33:08.689Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.689Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.689Z] raise HookCallError( -[2024-03-07T16:33:08.689Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.689Z] ) -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.689Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.689Z] try: -[2024-03-07T16:33:08.689Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.689Z] # which is the desired response. -[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.689Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.689Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.689Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.689Z] except StopIteration: -[2024-03-07T16:33:08.689Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.689Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.689Z] try: -[2024-03-07T16:33:08.689Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.689Z] # which is the desired response. -[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.689Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.689Z] next(function_gen) # first yield -[2024-03-07T16:33:08.689Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.689Z] except StopIteration: -[2024-03-07T16:33:08.689Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.689Z] else: -[2024-03-07T16:33:08.689Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.689Z] if res is not None: -[2024-03-07T16:33:08.689Z] results.append(res) -[2024-03-07T16:33:08.689Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.689Z] break -[2024-03-07T16:33:08.689Z] except BaseException as exc: -[2024-03-07T16:33:08.689Z] exception = exc -[2024-03-07T16:33:08.689Z] finally: -[2024-03-07T16:33:08.689Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.689Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.689Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.689Z] result = results[0] if results else None -[2024-03-07T16:33:08.689Z] else: -[2024-03-07T16:33:08.689Z] result = results -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.689Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.689Z] try: -[2024-03-07T16:33:08.689Z] if exception is not None: -[2024-03-07T16:33:08.689Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.689Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.689Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.689Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.689Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.689Z] -[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.690Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.690Z] try: -[2024-03-07T16:33:08.690Z] > yield -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.690Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.690Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] def _multicall( -[2024-03-07T16:33:08.690Z] hook_name: str, -[2024-03-07T16:33:08.690Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.690Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.690Z] firstresult: bool, -[2024-03-07T16:33:08.690Z] ) -> object | list[object]: -[2024-03-07T16:33:08.690Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.690Z] result(s). -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.690Z] """ -[2024-03-07T16:33:08.690Z] __tracebackhide__ = True -[2024-03-07T16:33:08.690Z] results: list[object] = [] -[2024-03-07T16:33:08.690Z] exception = None -[2024-03-07T16:33:08.690Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.690Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.690Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.690Z] try: -[2024-03-07T16:33:08.690Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.690Z] try: -[2024-03-07T16:33:08.690Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.690Z] except KeyError: -[2024-03-07T16:33:08.690Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.690Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.690Z] raise HookCallError( -[2024-03-07T16:33:08.690Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.690Z] ) -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.690Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.690Z] try: -[2024-03-07T16:33:08.690Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.690Z] # which is the desired response. -[2024-03-07T16:33:08.690Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.690Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.690Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.690Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.690Z] except StopIteration: -[2024-03-07T16:33:08.690Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.690Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.690Z] try: -[2024-03-07T16:33:08.690Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.690Z] # which is the desired response. -[2024-03-07T16:33:08.690Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.690Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.690Z] next(function_gen) # first yield -[2024-03-07T16:33:08.690Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.690Z] except StopIteration: -[2024-03-07T16:33:08.690Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.690Z] else: -[2024-03-07T16:33:08.690Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] item = -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.690Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.690Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.690Z] item = -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.690Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.690Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.690Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.690Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.690Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.690Z] if exc: -[2024-03-07T16:33:08.690Z] > raise exc -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] cls = -[2024-03-07T16:33:08.690Z] func = . at 0x7f0abbb08550> -[2024-03-07T16:33:08.690Z] when = 'setup' -[2024-03-07T16:33:08.690Z] reraise = (, ) -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] @classmethod -[2024-03-07T16:33:08.690Z] def from_call( -[2024-03-07T16:33:08.690Z] cls, -[2024-03-07T16:33:08.690Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.690Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.690Z] reraise: Optional[ -[2024-03-07T16:33:08.690Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.690Z] ] = None, -[2024-03-07T16:33:08.690Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.690Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] :param func: -[2024-03-07T16:33:08.690Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.690Z] :param when: -[2024-03-07T16:33:08.690Z] The phase in which the function is called. -[2024-03-07T16:33:08.690Z] :param reraise: -[2024-03-07T16:33:08.690Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.690Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.690Z] """ -[2024-03-07T16:33:08.690Z] excinfo = None -[2024-03-07T16:33:08.690Z] start = timing.time() -[2024-03-07T16:33:08.690Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.690Z] try: -[2024-03-07T16:33:08.690Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.690Z] ) -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.690Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] self = -[2024-03-07T16:33:08.690Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.690Z] """Call the hook. -[2024-03-07T16:33:08.690Z] -[2024-03-07T16:33:08.690Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.691Z] specification. -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.691Z] :ref:`calling`. -[2024-03-07T16:33:08.691Z] """ -[2024-03-07T16:33:08.691Z] assert ( -[2024-03-07T16:33:08.691Z] not self.is_historic() -[2024-03-07T16:33:08.691Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.691Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.691Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.691Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.691Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.691Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.691Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.691Z] methods = [>, >, ...] -[2024-03-07T16:33:08.691Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] def _hookexec( -[2024-03-07T16:33:08.691Z] self, -[2024-03-07T16:33:08.691Z] hook_name: str, -[2024-03-07T16:33:08.691Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.691Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.691Z] firstresult: bool, -[2024-03-07T16:33:08.691Z] ) -> object | list[object]: -[2024-03-07T16:33:08.691Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.691Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.691Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.691Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.691Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.691Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] def _multicall( -[2024-03-07T16:33:08.691Z] hook_name: str, -[2024-03-07T16:33:08.691Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.691Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.691Z] firstresult: bool, -[2024-03-07T16:33:08.691Z] ) -> object | list[object]: -[2024-03-07T16:33:08.691Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.691Z] result(s). -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.691Z] """ -[2024-03-07T16:33:08.691Z] __tracebackhide__ = True -[2024-03-07T16:33:08.691Z] results: list[object] = [] -[2024-03-07T16:33:08.691Z] exception = None -[2024-03-07T16:33:08.691Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.691Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.691Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.691Z] try: -[2024-03-07T16:33:08.691Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.691Z] try: -[2024-03-07T16:33:08.691Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.691Z] except KeyError: -[2024-03-07T16:33:08.691Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.691Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.691Z] raise HookCallError( -[2024-03-07T16:33:08.691Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.691Z] ) -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.691Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.691Z] try: -[2024-03-07T16:33:08.691Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.691Z] # which is the desired response. -[2024-03-07T16:33:08.691Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.691Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.691Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.691Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.691Z] except StopIteration: -[2024-03-07T16:33:08.691Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.691Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.691Z] try: -[2024-03-07T16:33:08.691Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.691Z] # which is the desired response. -[2024-03-07T16:33:08.691Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.691Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.691Z] next(function_gen) # first yield -[2024-03-07T16:33:08.691Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.691Z] except StopIteration: -[2024-03-07T16:33:08.691Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.691Z] else: -[2024-03-07T16:33:08.691Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.691Z] if res is not None: -[2024-03-07T16:33:08.691Z] results.append(res) -[2024-03-07T16:33:08.691Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.691Z] break -[2024-03-07T16:33:08.691Z] except BaseException as exc: -[2024-03-07T16:33:08.691Z] exception = exc -[2024-03-07T16:33:08.691Z] finally: -[2024-03-07T16:33:08.691Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.691Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.691Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.691Z] result = results[0] if results else None -[2024-03-07T16:33:08.691Z] else: -[2024-03-07T16:33:08.691Z] result = results -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.691Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.691Z] try: -[2024-03-07T16:33:08.691Z] if exception is not None: -[2024-03-07T16:33:08.691Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.691Z] else: -[2024-03-07T16:33:08.691Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.691Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.691Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.691Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.691Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.691Z] except StopIteration as si: -[2024-03-07T16:33:08.691Z] result = si.value -[2024-03-07T16:33:08.691Z] exception = None -[2024-03-07T16:33:08.691Z] continue -[2024-03-07T16:33:08.691Z] except BaseException as e: -[2024-03-07T16:33:08.691Z] exception = e -[2024-03-07T16:33:08.691Z] continue -[2024-03-07T16:33:08.691Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] if exception is not None: -[2024-03-07T16:33:08.691Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.691Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.691Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.691Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] def _multicall( -[2024-03-07T16:33:08.691Z] hook_name: str, -[2024-03-07T16:33:08.691Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.691Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.691Z] firstresult: bool, -[2024-03-07T16:33:08.691Z] ) -> object | list[object]: -[2024-03-07T16:33:08.691Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.691Z] result(s). -[2024-03-07T16:33:08.691Z] -[2024-03-07T16:33:08.691Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.692Z] """ -[2024-03-07T16:33:08.692Z] __tracebackhide__ = True -[2024-03-07T16:33:08.692Z] results: list[object] = [] -[2024-03-07T16:33:08.692Z] exception = None -[2024-03-07T16:33:08.692Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.692Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.692Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.692Z] except KeyError: -[2024-03-07T16:33:08.692Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.692Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.692Z] raise HookCallError( -[2024-03-07T16:33:08.692Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.692Z] ) -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.692Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.692Z] # which is the desired response. -[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.692Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.692Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.692Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.692Z] except StopIteration: -[2024-03-07T16:33:08.692Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.692Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.692Z] # which is the desired response. -[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.692Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.692Z] next(function_gen) # first yield -[2024-03-07T16:33:08.692Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.692Z] except StopIteration: -[2024-03-07T16:33:08.692Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.692Z] else: -[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.692Z] if res is not None: -[2024-03-07T16:33:08.692Z] results.append(res) -[2024-03-07T16:33:08.692Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.692Z] break -[2024-03-07T16:33:08.692Z] except BaseException as exc: -[2024-03-07T16:33:08.692Z] exception = exc -[2024-03-07T16:33:08.692Z] finally: -[2024-03-07T16:33:08.692Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.692Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.692Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.692Z] result = results[0] if results else None -[2024-03-07T16:33:08.692Z] else: -[2024-03-07T16:33:08.692Z] result = results -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.692Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] if exception is not None: -[2024-03-07T16:33:08.692Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.692Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.692Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.692Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.692Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.692Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] > yield -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.692Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.692Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.692Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] def _multicall( -[2024-03-07T16:33:08.692Z] hook_name: str, -[2024-03-07T16:33:08.692Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.692Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.692Z] firstresult: bool, -[2024-03-07T16:33:08.692Z] ) -> object | list[object]: -[2024-03-07T16:33:08.692Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.692Z] result(s). -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.692Z] """ -[2024-03-07T16:33:08.692Z] __tracebackhide__ = True -[2024-03-07T16:33:08.692Z] results: list[object] = [] -[2024-03-07T16:33:08.692Z] exception = None -[2024-03-07T16:33:08.692Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.692Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.692Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.692Z] except KeyError: -[2024-03-07T16:33:08.692Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.692Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.692Z] raise HookCallError( -[2024-03-07T16:33:08.692Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.692Z] ) -[2024-03-07T16:33:08.692Z] -[2024-03-07T16:33:08.692Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.692Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.692Z] # which is the desired response. -[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.692Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.692Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.692Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.692Z] except StopIteration: -[2024-03-07T16:33:08.692Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.692Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.692Z] try: -[2024-03-07T16:33:08.692Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.692Z] # which is the desired response. -[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.692Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.692Z] next(function_gen) # first yield -[2024-03-07T16:33:08.692Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.692Z] except StopIteration: -[2024-03-07T16:33:08.692Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.692Z] else: -[2024-03-07T16:33:08.692Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.692Z] if res is not None: -[2024-03-07T16:33:08.692Z] results.append(res) -[2024-03-07T16:33:08.692Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.692Z] break -[2024-03-07T16:33:08.692Z] except BaseException as exc: -[2024-03-07T16:33:08.693Z] exception = exc -[2024-03-07T16:33:08.693Z] finally: -[2024-03-07T16:33:08.693Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.693Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.693Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.693Z] result = results[0] if results else None -[2024-03-07T16:33:08.693Z] else: -[2024-03-07T16:33:08.693Z] result = results -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.693Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.693Z] try: -[2024-03-07T16:33:08.693Z] if exception is not None: -[2024-03-07T16:33:08.693Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.693Z] item = -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.693Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.693Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.693Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.693Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.693Z] item = , when = 'setup' -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.693Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.693Z] with catching_logs( -[2024-03-07T16:33:08.693Z] self.caplog_handler, -[2024-03-07T16:33:08.693Z] level=self.log_level, -[2024-03-07T16:33:08.693Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.693Z] self.report_handler, -[2024-03-07T16:33:08.693Z] level=self.log_level, -[2024-03-07T16:33:08.693Z] ) as report_handler: -[2024-03-07T16:33:08.693Z] caplog_handler.reset() -[2024-03-07T16:33:08.693Z] report_handler.reset() -[2024-03-07T16:33:08.693Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.693Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] try: -[2024-03-07T16:33:08.693Z] > yield -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.693Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.693Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] def _multicall( -[2024-03-07T16:33:08.693Z] hook_name: str, -[2024-03-07T16:33:08.693Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.693Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.693Z] firstresult: bool, -[2024-03-07T16:33:08.693Z] ) -> object | list[object]: -[2024-03-07T16:33:08.693Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.693Z] result(s). -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.693Z] """ -[2024-03-07T16:33:08.693Z] __tracebackhide__ = True -[2024-03-07T16:33:08.693Z] results: list[object] = [] -[2024-03-07T16:33:08.693Z] exception = None -[2024-03-07T16:33:08.693Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.693Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.693Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.693Z] try: -[2024-03-07T16:33:08.693Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.693Z] try: -[2024-03-07T16:33:08.693Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.693Z] except KeyError: -[2024-03-07T16:33:08.693Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.693Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.693Z] raise HookCallError( -[2024-03-07T16:33:08.693Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.693Z] ) -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.693Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.693Z] try: -[2024-03-07T16:33:08.693Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.693Z] # which is the desired response. -[2024-03-07T16:33:08.693Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.693Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.693Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.693Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.693Z] except StopIteration: -[2024-03-07T16:33:08.693Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.693Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.693Z] try: -[2024-03-07T16:33:08.693Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.693Z] # which is the desired response. -[2024-03-07T16:33:08.693Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.693Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.693Z] next(function_gen) # first yield -[2024-03-07T16:33:08.693Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.693Z] except StopIteration: -[2024-03-07T16:33:08.693Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.693Z] else: -[2024-03-07T16:33:08.693Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.693Z] if res is not None: -[2024-03-07T16:33:08.693Z] results.append(res) -[2024-03-07T16:33:08.693Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.693Z] break -[2024-03-07T16:33:08.693Z] except BaseException as exc: -[2024-03-07T16:33:08.693Z] exception = exc -[2024-03-07T16:33:08.693Z] finally: -[2024-03-07T16:33:08.693Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.693Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.693Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.693Z] result = results[0] if results else None -[2024-03-07T16:33:08.693Z] else: -[2024-03-07T16:33:08.693Z] result = results -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.693Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.693Z] try: -[2024-03-07T16:33:08.693Z] if exception is not None: -[2024-03-07T16:33:08.693Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.693Z] item = -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.693Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.693Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.693Z] > return (yield) -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.693Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.693Z] -[2024-03-07T16:33:08.693Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.694Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.694Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] def _multicall( -[2024-03-07T16:33:08.694Z] hook_name: str, -[2024-03-07T16:33:08.694Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.694Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.694Z] firstresult: bool, -[2024-03-07T16:33:08.694Z] ) -> object | list[object]: -[2024-03-07T16:33:08.694Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.694Z] result(s). -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.694Z] """ -[2024-03-07T16:33:08.694Z] __tracebackhide__ = True -[2024-03-07T16:33:08.694Z] results: list[object] = [] -[2024-03-07T16:33:08.694Z] exception = None -[2024-03-07T16:33:08.694Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.694Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.694Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.694Z] except KeyError: -[2024-03-07T16:33:08.694Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.694Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.694Z] raise HookCallError( -[2024-03-07T16:33:08.694Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.694Z] ) -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.694Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.694Z] # which is the desired response. -[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.694Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.694Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.694Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.694Z] except StopIteration: -[2024-03-07T16:33:08.694Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.694Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.694Z] # which is the desired response. -[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.694Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.694Z] next(function_gen) # first yield -[2024-03-07T16:33:08.694Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.694Z] except StopIteration: -[2024-03-07T16:33:08.694Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.694Z] else: -[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.694Z] if res is not None: -[2024-03-07T16:33:08.694Z] results.append(res) -[2024-03-07T16:33:08.694Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.694Z] break -[2024-03-07T16:33:08.694Z] except BaseException as exc: -[2024-03-07T16:33:08.694Z] exception = exc -[2024-03-07T16:33:08.694Z] finally: -[2024-03-07T16:33:08.694Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.694Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.694Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.694Z] result = results[0] if results else None -[2024-03-07T16:33:08.694Z] else: -[2024-03-07T16:33:08.694Z] result = results -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.694Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] if exception is not None: -[2024-03-07T16:33:08.694Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.694Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.694Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.694Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.694Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.694Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] > yield -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.694Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.694Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.694Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] def _multicall( -[2024-03-07T16:33:08.694Z] hook_name: str, -[2024-03-07T16:33:08.694Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.694Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.694Z] firstresult: bool, -[2024-03-07T16:33:08.694Z] ) -> object | list[object]: -[2024-03-07T16:33:08.694Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.694Z] result(s). -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.694Z] """ -[2024-03-07T16:33:08.694Z] __tracebackhide__ = True -[2024-03-07T16:33:08.694Z] results: list[object] = [] -[2024-03-07T16:33:08.694Z] exception = None -[2024-03-07T16:33:08.694Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.694Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.694Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.694Z] except KeyError: -[2024-03-07T16:33:08.694Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.694Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.694Z] raise HookCallError( -[2024-03-07T16:33:08.694Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.694Z] ) -[2024-03-07T16:33:08.694Z] -[2024-03-07T16:33:08.694Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.694Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.694Z] # which is the desired response. -[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.694Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.694Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.694Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.694Z] except StopIteration: -[2024-03-07T16:33:08.694Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.694Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.694Z] try: -[2024-03-07T16:33:08.694Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.694Z] # which is the desired response. -[2024-03-07T16:33:08.694Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.694Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.694Z] next(function_gen) # first yield -[2024-03-07T16:33:08.694Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.694Z] except StopIteration: -[2024-03-07T16:33:08.695Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.695Z] else: -[2024-03-07T16:33:08.695Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] item = -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.695Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.695Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.695Z] item = -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.695Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.695Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.695Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.695Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.695Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.695Z] if exc: -[2024-03-07T16:33:08.695Z] > raise exc -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] cls = -[2024-03-07T16:33:08.695Z] func = . at 0x7f0abc051900> -[2024-03-07T16:33:08.695Z] when = 'setup' -[2024-03-07T16:33:08.695Z] reraise = (, ) -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] @classmethod -[2024-03-07T16:33:08.695Z] def from_call( -[2024-03-07T16:33:08.695Z] cls, -[2024-03-07T16:33:08.695Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.695Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.695Z] reraise: Optional[ -[2024-03-07T16:33:08.695Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.695Z] ] = None, -[2024-03-07T16:33:08.695Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.695Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] :param func: -[2024-03-07T16:33:08.695Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.695Z] :param when: -[2024-03-07T16:33:08.695Z] The phase in which the function is called. -[2024-03-07T16:33:08.695Z] :param reraise: -[2024-03-07T16:33:08.695Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.695Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.695Z] """ -[2024-03-07T16:33:08.695Z] excinfo = None -[2024-03-07T16:33:08.695Z] start = timing.time() -[2024-03-07T16:33:08.695Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.695Z] try: -[2024-03-07T16:33:08.695Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.695Z] ) -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] self = -[2024-03-07T16:33:08.695Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.695Z] """Call the hook. -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.695Z] specification. -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.695Z] :ref:`calling`. -[2024-03-07T16:33:08.695Z] """ -[2024-03-07T16:33:08.695Z] assert ( -[2024-03-07T16:33:08.695Z] not self.is_historic() -[2024-03-07T16:33:08.695Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.695Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.695Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.695Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.695Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.695Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.695Z] methods = [>, >, ...] -[2024-03-07T16:33:08.695Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] def _hookexec( -[2024-03-07T16:33:08.695Z] self, -[2024-03-07T16:33:08.695Z] hook_name: str, -[2024-03-07T16:33:08.695Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.695Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.695Z] firstresult: bool, -[2024-03-07T16:33:08.695Z] ) -> object | list[object]: -[2024-03-07T16:33:08.695Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.695Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.695Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.695Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.695Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.695Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] def _multicall( -[2024-03-07T16:33:08.695Z] hook_name: str, -[2024-03-07T16:33:08.695Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.695Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.695Z] firstresult: bool, -[2024-03-07T16:33:08.695Z] ) -> object | list[object]: -[2024-03-07T16:33:08.695Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.695Z] result(s). -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.695Z] """ -[2024-03-07T16:33:08.695Z] __tracebackhide__ = True -[2024-03-07T16:33:08.695Z] results: list[object] = [] -[2024-03-07T16:33:08.695Z] exception = None -[2024-03-07T16:33:08.695Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.695Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.695Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.695Z] try: -[2024-03-07T16:33:08.695Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.695Z] try: -[2024-03-07T16:33:08.695Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.695Z] except KeyError: -[2024-03-07T16:33:08.695Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.695Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.695Z] raise HookCallError( -[2024-03-07T16:33:08.695Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.695Z] ) -[2024-03-07T16:33:08.695Z] -[2024-03-07T16:33:08.695Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.695Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.695Z] try: -[2024-03-07T16:33:08.695Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.696Z] # which is the desired response. -[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.696Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.696Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.696Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.696Z] except StopIteration: -[2024-03-07T16:33:08.696Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.696Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.696Z] try: -[2024-03-07T16:33:08.696Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.696Z] # which is the desired response. -[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.696Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.696Z] next(function_gen) # first yield -[2024-03-07T16:33:08.696Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.696Z] except StopIteration: -[2024-03-07T16:33:08.696Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.696Z] else: -[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.696Z] if res is not None: -[2024-03-07T16:33:08.696Z] results.append(res) -[2024-03-07T16:33:08.696Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.696Z] break -[2024-03-07T16:33:08.696Z] except BaseException as exc: -[2024-03-07T16:33:08.696Z] exception = exc -[2024-03-07T16:33:08.696Z] finally: -[2024-03-07T16:33:08.696Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.696Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.696Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.696Z] result = results[0] if results else None -[2024-03-07T16:33:08.696Z] else: -[2024-03-07T16:33:08.696Z] result = results -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.696Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.696Z] try: -[2024-03-07T16:33:08.696Z] if exception is not None: -[2024-03-07T16:33:08.696Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.696Z] else: -[2024-03-07T16:33:08.696Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.696Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.696Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.696Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.696Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.696Z] except StopIteration as si: -[2024-03-07T16:33:08.696Z] result = si.value -[2024-03-07T16:33:08.696Z] exception = None -[2024-03-07T16:33:08.696Z] continue -[2024-03-07T16:33:08.696Z] except BaseException as e: -[2024-03-07T16:33:08.696Z] exception = e -[2024-03-07T16:33:08.696Z] continue -[2024-03-07T16:33:08.696Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] if exception is not None: -[2024-03-07T16:33:08.696Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.696Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.696Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.696Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] def _multicall( -[2024-03-07T16:33:08.696Z] hook_name: str, -[2024-03-07T16:33:08.696Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.696Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.696Z] firstresult: bool, -[2024-03-07T16:33:08.696Z] ) -> object | list[object]: -[2024-03-07T16:33:08.696Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.696Z] result(s). -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.696Z] """ -[2024-03-07T16:33:08.696Z] __tracebackhide__ = True -[2024-03-07T16:33:08.696Z] results: list[object] = [] -[2024-03-07T16:33:08.696Z] exception = None -[2024-03-07T16:33:08.696Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.696Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.696Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.696Z] try: -[2024-03-07T16:33:08.696Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.696Z] try: -[2024-03-07T16:33:08.696Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.696Z] except KeyError: -[2024-03-07T16:33:08.696Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.696Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.696Z] raise HookCallError( -[2024-03-07T16:33:08.696Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.696Z] ) -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.696Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.696Z] try: -[2024-03-07T16:33:08.696Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.696Z] # which is the desired response. -[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.696Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.696Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.696Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.696Z] except StopIteration: -[2024-03-07T16:33:08.696Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.696Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.696Z] try: -[2024-03-07T16:33:08.696Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.696Z] # which is the desired response. -[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.696Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.696Z] next(function_gen) # first yield -[2024-03-07T16:33:08.696Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.696Z] except StopIteration: -[2024-03-07T16:33:08.696Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.696Z] else: -[2024-03-07T16:33:08.696Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.696Z] if res is not None: -[2024-03-07T16:33:08.696Z] results.append(res) -[2024-03-07T16:33:08.696Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.696Z] break -[2024-03-07T16:33:08.696Z] except BaseException as exc: -[2024-03-07T16:33:08.696Z] exception = exc -[2024-03-07T16:33:08.696Z] finally: -[2024-03-07T16:33:08.696Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.696Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.696Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.696Z] result = results[0] if results else None -[2024-03-07T16:33:08.696Z] else: -[2024-03-07T16:33:08.696Z] result = results -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.696Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.696Z] try: -[2024-03-07T16:33:08.696Z] if exception is not None: -[2024-03-07T16:33:08.696Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.696Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.696Z] -[2024-03-07T16:33:08.696Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.696Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.697Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.697Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.697Z] try: -[2024-03-07T16:33:08.697Z] > yield -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.697Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.697Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] def _multicall( -[2024-03-07T16:33:08.697Z] hook_name: str, -[2024-03-07T16:33:08.697Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.697Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.697Z] firstresult: bool, -[2024-03-07T16:33:08.697Z] ) -> object | list[object]: -[2024-03-07T16:33:08.697Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.697Z] result(s). -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.697Z] """ -[2024-03-07T16:33:08.697Z] __tracebackhide__ = True -[2024-03-07T16:33:08.697Z] results: list[object] = [] -[2024-03-07T16:33:08.697Z] exception = None -[2024-03-07T16:33:08.697Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.697Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.697Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.697Z] try: -[2024-03-07T16:33:08.697Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.697Z] try: -[2024-03-07T16:33:08.697Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.697Z] except KeyError: -[2024-03-07T16:33:08.697Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.697Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.697Z] raise HookCallError( -[2024-03-07T16:33:08.697Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.697Z] ) -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.697Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.697Z] try: -[2024-03-07T16:33:08.697Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.697Z] # which is the desired response. -[2024-03-07T16:33:08.697Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.697Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.697Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.697Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.697Z] except StopIteration: -[2024-03-07T16:33:08.697Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.697Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.697Z] try: -[2024-03-07T16:33:08.697Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.697Z] # which is the desired response. -[2024-03-07T16:33:08.697Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.697Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.697Z] next(function_gen) # first yield -[2024-03-07T16:33:08.697Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.697Z] except StopIteration: -[2024-03-07T16:33:08.697Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.697Z] else: -[2024-03-07T16:33:08.697Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.697Z] if res is not None: -[2024-03-07T16:33:08.697Z] results.append(res) -[2024-03-07T16:33:08.697Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.697Z] break -[2024-03-07T16:33:08.697Z] except BaseException as exc: -[2024-03-07T16:33:08.697Z] exception = exc -[2024-03-07T16:33:08.697Z] finally: -[2024-03-07T16:33:08.697Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.697Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.697Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.697Z] result = results[0] if results else None -[2024-03-07T16:33:08.697Z] else: -[2024-03-07T16:33:08.697Z] result = results -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.697Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.697Z] try: -[2024-03-07T16:33:08.697Z] if exception is not None: -[2024-03-07T16:33:08.697Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.697Z] item = -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.697Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.697Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.697Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.697Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.697Z] item = , when = 'setup' -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.697Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.697Z] with catching_logs( -[2024-03-07T16:33:08.697Z] self.caplog_handler, -[2024-03-07T16:33:08.697Z] level=self.log_level, -[2024-03-07T16:33:08.697Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.697Z] self.report_handler, -[2024-03-07T16:33:08.697Z] level=self.log_level, -[2024-03-07T16:33:08.697Z] ) as report_handler: -[2024-03-07T16:33:08.697Z] caplog_handler.reset() -[2024-03-07T16:33:08.697Z] report_handler.reset() -[2024-03-07T16:33:08.697Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.697Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] try: -[2024-03-07T16:33:08.697Z] > yield -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.697Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.697Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.697Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] def _multicall( -[2024-03-07T16:33:08.697Z] hook_name: str, -[2024-03-07T16:33:08.697Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.697Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.697Z] firstresult: bool, -[2024-03-07T16:33:08.697Z] ) -> object | list[object]: -[2024-03-07T16:33:08.697Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.697Z] result(s). -[2024-03-07T16:33:08.697Z] -[2024-03-07T16:33:08.697Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.697Z] """ -[2024-03-07T16:33:08.697Z] __tracebackhide__ = True -[2024-03-07T16:33:08.697Z] results: list[object] = [] -[2024-03-07T16:33:08.697Z] exception = None -[2024-03-07T16:33:08.697Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.697Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.697Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.697Z] try: -[2024-03-07T16:33:08.697Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.697Z] try: -[2024-03-07T16:33:08.698Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.698Z] except KeyError: -[2024-03-07T16:33:08.698Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.698Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.698Z] raise HookCallError( -[2024-03-07T16:33:08.698Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.698Z] ) -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.698Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.698Z] try: -[2024-03-07T16:33:08.698Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.698Z] # which is the desired response. -[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.698Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.698Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.698Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.698Z] except StopIteration: -[2024-03-07T16:33:08.698Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.698Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.698Z] try: -[2024-03-07T16:33:08.698Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.698Z] # which is the desired response. -[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.698Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.698Z] next(function_gen) # first yield -[2024-03-07T16:33:08.698Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.698Z] except StopIteration: -[2024-03-07T16:33:08.698Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.698Z] else: -[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.698Z] if res is not None: -[2024-03-07T16:33:08.698Z] results.append(res) -[2024-03-07T16:33:08.698Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.698Z] break -[2024-03-07T16:33:08.698Z] except BaseException as exc: -[2024-03-07T16:33:08.698Z] exception = exc -[2024-03-07T16:33:08.698Z] finally: -[2024-03-07T16:33:08.698Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.698Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.698Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.698Z] result = results[0] if results else None -[2024-03-07T16:33:08.698Z] else: -[2024-03-07T16:33:08.698Z] result = results -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.698Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.698Z] try: -[2024-03-07T16:33:08.698Z] if exception is not None: -[2024-03-07T16:33:08.698Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.698Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.698Z] item = -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.698Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.698Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.698Z] > return (yield) -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.698Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.698Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.698Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] def _multicall( -[2024-03-07T16:33:08.698Z] hook_name: str, -[2024-03-07T16:33:08.698Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.698Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.698Z] firstresult: bool, -[2024-03-07T16:33:08.698Z] ) -> object | list[object]: -[2024-03-07T16:33:08.698Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.698Z] result(s). -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.698Z] """ -[2024-03-07T16:33:08.698Z] __tracebackhide__ = True -[2024-03-07T16:33:08.698Z] results: list[object] = [] -[2024-03-07T16:33:08.698Z] exception = None -[2024-03-07T16:33:08.698Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.698Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.698Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.698Z] try: -[2024-03-07T16:33:08.698Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.698Z] try: -[2024-03-07T16:33:08.698Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.698Z] except KeyError: -[2024-03-07T16:33:08.698Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.698Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.698Z] raise HookCallError( -[2024-03-07T16:33:08.698Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.698Z] ) -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.698Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.698Z] try: -[2024-03-07T16:33:08.698Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.698Z] # which is the desired response. -[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.698Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.698Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.698Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.698Z] except StopIteration: -[2024-03-07T16:33:08.698Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.698Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.698Z] try: -[2024-03-07T16:33:08.698Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.698Z] # which is the desired response. -[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.698Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.698Z] next(function_gen) # first yield -[2024-03-07T16:33:08.698Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.698Z] except StopIteration: -[2024-03-07T16:33:08.698Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.698Z] else: -[2024-03-07T16:33:08.698Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.698Z] if res is not None: -[2024-03-07T16:33:08.698Z] results.append(res) -[2024-03-07T16:33:08.698Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.698Z] break -[2024-03-07T16:33:08.698Z] except BaseException as exc: -[2024-03-07T16:33:08.698Z] exception = exc -[2024-03-07T16:33:08.698Z] finally: -[2024-03-07T16:33:08.698Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.698Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.698Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.698Z] result = results[0] if results else None -[2024-03-07T16:33:08.698Z] else: -[2024-03-07T16:33:08.698Z] result = results -[2024-03-07T16:33:08.698Z] -[2024-03-07T16:33:08.698Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.699Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.699Z] try: -[2024-03-07T16:33:08.699Z] if exception is not None: -[2024-03-07T16:33:08.699Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.699Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.699Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.699Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.699Z] try: -[2024-03-07T16:33:08.699Z] > yield -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.699Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.699Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] def _multicall( -[2024-03-07T16:33:08.699Z] hook_name: str, -[2024-03-07T16:33:08.699Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.699Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.699Z] firstresult: bool, -[2024-03-07T16:33:08.699Z] ) -> object | list[object]: -[2024-03-07T16:33:08.699Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.699Z] result(s). -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.699Z] """ -[2024-03-07T16:33:08.699Z] __tracebackhide__ = True -[2024-03-07T16:33:08.699Z] results: list[object] = [] -[2024-03-07T16:33:08.699Z] exception = None -[2024-03-07T16:33:08.699Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.699Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.699Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.699Z] try: -[2024-03-07T16:33:08.699Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.699Z] try: -[2024-03-07T16:33:08.699Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.699Z] except KeyError: -[2024-03-07T16:33:08.699Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.699Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.699Z] raise HookCallError( -[2024-03-07T16:33:08.699Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.699Z] ) -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.699Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.699Z] try: -[2024-03-07T16:33:08.699Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.699Z] # which is the desired response. -[2024-03-07T16:33:08.699Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.699Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.699Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.699Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.699Z] except StopIteration: -[2024-03-07T16:33:08.699Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.699Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.699Z] try: -[2024-03-07T16:33:08.699Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.699Z] # which is the desired response. -[2024-03-07T16:33:08.699Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.699Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.699Z] next(function_gen) # first yield -[2024-03-07T16:33:08.699Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.699Z] except StopIteration: -[2024-03-07T16:33:08.699Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.699Z] else: -[2024-03-07T16:33:08.699Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] item = -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.699Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.699Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.699Z] item = -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.699Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.699Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.699Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.699Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.699Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.699Z] if exc: -[2024-03-07T16:33:08.699Z] > raise exc -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] cls = -[2024-03-07T16:33:08.699Z] func = . at 0x7f0abbb0b520> -[2024-03-07T16:33:08.699Z] when = 'setup' -[2024-03-07T16:33:08.699Z] reraise = (, ) -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] @classmethod -[2024-03-07T16:33:08.699Z] def from_call( -[2024-03-07T16:33:08.699Z] cls, -[2024-03-07T16:33:08.699Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.699Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.699Z] reraise: Optional[ -[2024-03-07T16:33:08.699Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.699Z] ] = None, -[2024-03-07T16:33:08.699Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.699Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] :param func: -[2024-03-07T16:33:08.699Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.699Z] :param when: -[2024-03-07T16:33:08.699Z] The phase in which the function is called. -[2024-03-07T16:33:08.699Z] :param reraise: -[2024-03-07T16:33:08.699Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.699Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.699Z] """ -[2024-03-07T16:33:08.699Z] excinfo = None -[2024-03-07T16:33:08.699Z] start = timing.time() -[2024-03-07T16:33:08.699Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.699Z] try: -[2024-03-07T16:33:08.699Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.699Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.699Z] -[2024-03-07T16:33:08.699Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.699Z] ) -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.700Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] self = -[2024-03-07T16:33:08.700Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.700Z] """Call the hook. -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.700Z] specification. -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.700Z] :ref:`calling`. -[2024-03-07T16:33:08.700Z] """ -[2024-03-07T16:33:08.700Z] assert ( -[2024-03-07T16:33:08.700Z] not self.is_historic() -[2024-03-07T16:33:08.700Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.700Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.700Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.700Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.700Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.700Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.700Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.700Z] methods = [>, >, ...] -[2024-03-07T16:33:08.700Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] def _hookexec( -[2024-03-07T16:33:08.700Z] self, -[2024-03-07T16:33:08.700Z] hook_name: str, -[2024-03-07T16:33:08.700Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.700Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.700Z] firstresult: bool, -[2024-03-07T16:33:08.700Z] ) -> object | list[object]: -[2024-03-07T16:33:08.700Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.700Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.700Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.700Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.700Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.700Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] def _multicall( -[2024-03-07T16:33:08.700Z] hook_name: str, -[2024-03-07T16:33:08.700Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.700Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.700Z] firstresult: bool, -[2024-03-07T16:33:08.700Z] ) -> object | list[object]: -[2024-03-07T16:33:08.700Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.700Z] result(s). -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.700Z] """ -[2024-03-07T16:33:08.700Z] __tracebackhide__ = True -[2024-03-07T16:33:08.700Z] results: list[object] = [] -[2024-03-07T16:33:08.700Z] exception = None -[2024-03-07T16:33:08.700Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.700Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.700Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.700Z] try: -[2024-03-07T16:33:08.700Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.700Z] try: -[2024-03-07T16:33:08.700Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.700Z] except KeyError: -[2024-03-07T16:33:08.700Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.700Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.700Z] raise HookCallError( -[2024-03-07T16:33:08.700Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.700Z] ) -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.700Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.700Z] try: -[2024-03-07T16:33:08.700Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.700Z] # which is the desired response. -[2024-03-07T16:33:08.700Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.700Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.700Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.700Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.700Z] except StopIteration: -[2024-03-07T16:33:08.700Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.700Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.700Z] try: -[2024-03-07T16:33:08.700Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.700Z] # which is the desired response. -[2024-03-07T16:33:08.700Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.700Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.700Z] next(function_gen) # first yield -[2024-03-07T16:33:08.700Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.700Z] except StopIteration: -[2024-03-07T16:33:08.700Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.700Z] else: -[2024-03-07T16:33:08.700Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.700Z] if res is not None: -[2024-03-07T16:33:08.700Z] results.append(res) -[2024-03-07T16:33:08.700Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.700Z] break -[2024-03-07T16:33:08.700Z] except BaseException as exc: -[2024-03-07T16:33:08.700Z] exception = exc -[2024-03-07T16:33:08.700Z] finally: -[2024-03-07T16:33:08.700Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.700Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.700Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.700Z] result = results[0] if results else None -[2024-03-07T16:33:08.700Z] else: -[2024-03-07T16:33:08.700Z] result = results -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.700Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.700Z] try: -[2024-03-07T16:33:08.700Z] if exception is not None: -[2024-03-07T16:33:08.700Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.700Z] else: -[2024-03-07T16:33:08.700Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.700Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.700Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.700Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.700Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.700Z] except StopIteration as si: -[2024-03-07T16:33:08.700Z] result = si.value -[2024-03-07T16:33:08.700Z] exception = None -[2024-03-07T16:33:08.700Z] continue -[2024-03-07T16:33:08.700Z] except BaseException as e: -[2024-03-07T16:33:08.700Z] exception = e -[2024-03-07T16:33:08.700Z] continue -[2024-03-07T16:33:08.700Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] if exception is not None: -[2024-03-07T16:33:08.700Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.700Z] -[2024-03-07T16:33:08.700Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.701Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.701Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.701Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] def _multicall( -[2024-03-07T16:33:08.701Z] hook_name: str, -[2024-03-07T16:33:08.701Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.701Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.701Z] firstresult: bool, -[2024-03-07T16:33:08.701Z] ) -> object | list[object]: -[2024-03-07T16:33:08.701Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.701Z] result(s). -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.701Z] """ -[2024-03-07T16:33:08.701Z] __tracebackhide__ = True -[2024-03-07T16:33:08.701Z] results: list[object] = [] -[2024-03-07T16:33:08.701Z] exception = None -[2024-03-07T16:33:08.701Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.701Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.701Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.701Z] try: -[2024-03-07T16:33:08.701Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.701Z] try: -[2024-03-07T16:33:08.701Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.701Z] except KeyError: -[2024-03-07T16:33:08.701Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.701Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.701Z] raise HookCallError( -[2024-03-07T16:33:08.701Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.701Z] ) -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.701Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.701Z] try: -[2024-03-07T16:33:08.701Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.701Z] # which is the desired response. -[2024-03-07T16:33:08.701Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.701Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.701Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.701Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.701Z] except StopIteration: -[2024-03-07T16:33:08.701Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.701Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.701Z] try: -[2024-03-07T16:33:08.701Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.701Z] # which is the desired response. -[2024-03-07T16:33:08.701Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.701Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.701Z] next(function_gen) # first yield -[2024-03-07T16:33:08.701Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.701Z] except StopIteration: -[2024-03-07T16:33:08.701Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.701Z] else: -[2024-03-07T16:33:08.701Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.701Z] if res is not None: -[2024-03-07T16:33:08.701Z] results.append(res) -[2024-03-07T16:33:08.701Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.701Z] break -[2024-03-07T16:33:08.701Z] except BaseException as exc: -[2024-03-07T16:33:08.701Z] exception = exc -[2024-03-07T16:33:08.701Z] finally: -[2024-03-07T16:33:08.701Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.701Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.701Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.701Z] result = results[0] if results else None -[2024-03-07T16:33:08.701Z] else: -[2024-03-07T16:33:08.701Z] result = results -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.701Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.701Z] try: -[2024-03-07T16:33:08.701Z] if exception is not None: -[2024-03-07T16:33:08.701Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.701Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.701Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.701Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.701Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.701Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.701Z] try: -[2024-03-07T16:33:08.701Z] > yield -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.701Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.701Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.701Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] def _multicall( -[2024-03-07T16:33:08.701Z] hook_name: str, -[2024-03-07T16:33:08.701Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.701Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.701Z] firstresult: bool, -[2024-03-07T16:33:08.701Z] ) -> object | list[object]: -[2024-03-07T16:33:08.701Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.701Z] result(s). -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.701Z] """ -[2024-03-07T16:33:08.701Z] __tracebackhide__ = True -[2024-03-07T16:33:08.701Z] results: list[object] = [] -[2024-03-07T16:33:08.701Z] exception = None -[2024-03-07T16:33:08.701Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.701Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.701Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.701Z] try: -[2024-03-07T16:33:08.701Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.701Z] try: -[2024-03-07T16:33:08.701Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.701Z] except KeyError: -[2024-03-07T16:33:08.701Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.701Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.701Z] raise HookCallError( -[2024-03-07T16:33:08.701Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.701Z] ) -[2024-03-07T16:33:08.701Z] -[2024-03-07T16:33:08.701Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.701Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.701Z] try: -[2024-03-07T16:33:08.701Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.701Z] # which is the desired response. -[2024-03-07T16:33:08.701Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.701Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.701Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.701Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.701Z] except StopIteration: -[2024-03-07T16:33:08.702Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.702Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.702Z] try: -[2024-03-07T16:33:08.702Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.702Z] # which is the desired response. -[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.702Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.702Z] next(function_gen) # first yield -[2024-03-07T16:33:08.702Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.702Z] except StopIteration: -[2024-03-07T16:33:08.702Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.702Z] else: -[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.702Z] if res is not None: -[2024-03-07T16:33:08.702Z] results.append(res) -[2024-03-07T16:33:08.702Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.702Z] break -[2024-03-07T16:33:08.702Z] except BaseException as exc: -[2024-03-07T16:33:08.702Z] exception = exc -[2024-03-07T16:33:08.702Z] finally: -[2024-03-07T16:33:08.702Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.702Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.702Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.702Z] result = results[0] if results else None -[2024-03-07T16:33:08.702Z] else: -[2024-03-07T16:33:08.702Z] result = results -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.702Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.702Z] try: -[2024-03-07T16:33:08.702Z] if exception is not None: -[2024-03-07T16:33:08.702Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.702Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.702Z] item = -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.702Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.702Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.702Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.702Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.702Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.702Z] item = , when = 'setup' -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.702Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.702Z] with catching_logs( -[2024-03-07T16:33:08.702Z] self.caplog_handler, -[2024-03-07T16:33:08.702Z] level=self.log_level, -[2024-03-07T16:33:08.702Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.702Z] self.report_handler, -[2024-03-07T16:33:08.702Z] level=self.log_level, -[2024-03-07T16:33:08.702Z] ) as report_handler: -[2024-03-07T16:33:08.702Z] caplog_handler.reset() -[2024-03-07T16:33:08.702Z] report_handler.reset() -[2024-03-07T16:33:08.702Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.702Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] try: -[2024-03-07T16:33:08.702Z] > yield -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.702Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.702Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.702Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] def _multicall( -[2024-03-07T16:33:08.702Z] hook_name: str, -[2024-03-07T16:33:08.702Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.702Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.702Z] firstresult: bool, -[2024-03-07T16:33:08.702Z] ) -> object | list[object]: -[2024-03-07T16:33:08.702Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.702Z] result(s). -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.702Z] """ -[2024-03-07T16:33:08.702Z] __tracebackhide__ = True -[2024-03-07T16:33:08.702Z] results: list[object] = [] -[2024-03-07T16:33:08.702Z] exception = None -[2024-03-07T16:33:08.702Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.702Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.702Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.702Z] try: -[2024-03-07T16:33:08.702Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.702Z] try: -[2024-03-07T16:33:08.702Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.702Z] except KeyError: -[2024-03-07T16:33:08.702Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.702Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.702Z] raise HookCallError( -[2024-03-07T16:33:08.702Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.702Z] ) -[2024-03-07T16:33:08.702Z] -[2024-03-07T16:33:08.702Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.702Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.702Z] try: -[2024-03-07T16:33:08.702Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.702Z] # which is the desired response. -[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.702Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.702Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.702Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.702Z] except StopIteration: -[2024-03-07T16:33:08.702Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.702Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.702Z] try: -[2024-03-07T16:33:08.702Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.702Z] # which is the desired response. -[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.702Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.702Z] next(function_gen) # first yield -[2024-03-07T16:33:08.702Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.702Z] except StopIteration: -[2024-03-07T16:33:08.702Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.702Z] else: -[2024-03-07T16:33:08.702Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.702Z] if res is not None: -[2024-03-07T16:33:08.702Z] results.append(res) -[2024-03-07T16:33:08.702Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.702Z] break -[2024-03-07T16:33:08.702Z] except BaseException as exc: -[2024-03-07T16:33:08.702Z] exception = exc -[2024-03-07T16:33:08.702Z] finally: -[2024-03-07T16:33:08.703Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.703Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.703Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.703Z] result = results[0] if results else None -[2024-03-07T16:33:08.703Z] else: -[2024-03-07T16:33:08.703Z] result = results -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.703Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.703Z] try: -[2024-03-07T16:33:08.703Z] if exception is not None: -[2024-03-07T16:33:08.703Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.703Z] item = -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.703Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.703Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.703Z] > return (yield) -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.703Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.703Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] def _multicall( -[2024-03-07T16:33:08.703Z] hook_name: str, -[2024-03-07T16:33:08.703Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.703Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.703Z] firstresult: bool, -[2024-03-07T16:33:08.703Z] ) -> object | list[object]: -[2024-03-07T16:33:08.703Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.703Z] result(s). -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.703Z] """ -[2024-03-07T16:33:08.703Z] __tracebackhide__ = True -[2024-03-07T16:33:08.703Z] results: list[object] = [] -[2024-03-07T16:33:08.703Z] exception = None -[2024-03-07T16:33:08.703Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.703Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.703Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.703Z] try: -[2024-03-07T16:33:08.703Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.703Z] try: -[2024-03-07T16:33:08.703Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.703Z] except KeyError: -[2024-03-07T16:33:08.703Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.703Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.703Z] raise HookCallError( -[2024-03-07T16:33:08.703Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.703Z] ) -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.703Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.703Z] try: -[2024-03-07T16:33:08.703Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.703Z] # which is the desired response. -[2024-03-07T16:33:08.703Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.703Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.703Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.703Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.703Z] except StopIteration: -[2024-03-07T16:33:08.703Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.703Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.703Z] try: -[2024-03-07T16:33:08.703Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.703Z] # which is the desired response. -[2024-03-07T16:33:08.703Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.703Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.703Z] next(function_gen) # first yield -[2024-03-07T16:33:08.703Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.703Z] except StopIteration: -[2024-03-07T16:33:08.703Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.703Z] else: -[2024-03-07T16:33:08.703Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.703Z] if res is not None: -[2024-03-07T16:33:08.703Z] results.append(res) -[2024-03-07T16:33:08.703Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.703Z] break -[2024-03-07T16:33:08.703Z] except BaseException as exc: -[2024-03-07T16:33:08.703Z] exception = exc -[2024-03-07T16:33:08.703Z] finally: -[2024-03-07T16:33:08.703Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.703Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.703Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.703Z] result = results[0] if results else None -[2024-03-07T16:33:08.703Z] else: -[2024-03-07T16:33:08.703Z] result = results -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.703Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.703Z] try: -[2024-03-07T16:33:08.703Z] if exception is not None: -[2024-03-07T16:33:08.703Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.703Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.703Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.703Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.703Z] try: -[2024-03-07T16:33:08.703Z] > yield -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.703Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.703Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.703Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] def _multicall( -[2024-03-07T16:33:08.703Z] hook_name: str, -[2024-03-07T16:33:08.703Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.703Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.703Z] firstresult: bool, -[2024-03-07T16:33:08.703Z] ) -> object | list[object]: -[2024-03-07T16:33:08.703Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.703Z] result(s). -[2024-03-07T16:33:08.703Z] -[2024-03-07T16:33:08.703Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.703Z] """ -[2024-03-07T16:33:08.703Z] __tracebackhide__ = True -[2024-03-07T16:33:08.703Z] results: list[object] = [] -[2024-03-07T16:33:08.703Z] exception = None -[2024-03-07T16:33:08.703Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.703Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.703Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.703Z] try: -[2024-03-07T16:33:08.703Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.703Z] try: -[2024-03-07T16:33:08.703Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.703Z] except KeyError: -[2024-03-07T16:33:08.703Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.704Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.704Z] raise HookCallError( -[2024-03-07T16:33:08.704Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.704Z] ) -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.704Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.704Z] try: -[2024-03-07T16:33:08.704Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.704Z] # which is the desired response. -[2024-03-07T16:33:08.704Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.704Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.704Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.704Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.704Z] except StopIteration: -[2024-03-07T16:33:08.704Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.704Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.704Z] try: -[2024-03-07T16:33:08.704Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.704Z] # which is the desired response. -[2024-03-07T16:33:08.704Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.704Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.704Z] next(function_gen) # first yield -[2024-03-07T16:33:08.704Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.704Z] except StopIteration: -[2024-03-07T16:33:08.704Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.704Z] else: -[2024-03-07T16:33:08.704Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.704Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] item = -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.704Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.704Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.704Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.704Z] item = -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.704Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.704Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.704Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.704Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.704Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.704Z] if exc: -[2024-03-07T16:33:08.704Z] raise exc -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.704Z] assert col not in self.stack -[2024-03-07T16:33:08.704Z] # Push onto the stack. -[2024-03-07T16:33:08.704Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.704Z] try: -[2024-03-07T16:33:08.704Z] col.setup() -[2024-03-07T16:33:08.704Z] except TEST_OUTCOME as exc: -[2024-03-07T16:33:08.704Z] self.stack[col] = (self.stack[col][0], exc) -[2024-03-07T16:33:08.704Z] > raise exc -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: -[2024-03-07T16:33:08.704Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.704Z] item = -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.704Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.704Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.704Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.704Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.704Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.704Z] if exc: -[2024-03-07T16:33:08.704Z] raise exc -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.704Z] assert col not in self.stack -[2024-03-07T16:33:08.704Z] # Push onto the stack. -[2024-03-07T16:33:08.704Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.704Z] try: -[2024-03-07T16:33:08.704Z] > col.setup() -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: -[2024-03-07T16:33:08.704Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] self = -[2024-03-07T16:33:08.704Z] -[2024-03-07T16:33:08.704Z] def setup(self): -[2024-03-07T16:33:08.704Z] """ -[2024-03-07T16:33:08.704Z] Called by pytest to setup the collector cells in . -[2024-03-07T16:33:08.704Z] Here we start a kernel and setup the sanitize patterns. -[2024-03-07T16:33:08.704Z] """ -[2024-03-07T16:33:08.704Z] # we've already checked that --nbval-current-env and -[2024-03-07T16:33:08.704Z] # --nbval-kernel-name were not both supplied -[2024-03-07T16:33:08.704Z] if self.parent.config.option.nbval_current_env: -[2024-03-07T16:33:08.704Z] kernel_name = CURRENT_ENV_KERNEL_NAME -[2024-03-07T16:33:08.704Z] elif self.parent.config.option.nbval_kernel_name: -[2024-03-07T16:33:08.704Z] kernel_name = self.parent.config.option.nbval_kernel_name -[2024-03-07T16:33:08.704Z] else: -[2024-03-07T16:33:08.704Z] kernel_name = self.nb.metadata.get( -[2024-03-07T16:33:08.704Z] 'kernelspec', {}).get('name', 'python') -[2024-03-07T16:33:08.704Z] > self.kernel = RunningKernel( -[2024-03-07T16:33:08.704Z] kernel_name, -[2024-03-07T16:33:08.705Z] cwd=str(self.fspath.dirname), -[2024-03-07T16:33:08.705Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, -[2024-03-07T16:33:08.705Z] ) -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: -[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] self = -[2024-03-07T16:33:08.705Z] kernel_name = 'python' -[2024-03-07T16:33:08.705Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' -[2024-03-07T16:33:08.705Z] startup_timeout = 60 -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): -[2024-03-07T16:33:08.705Z] """ -[2024-03-07T16:33:08.705Z] Initialise a new kernel -[2024-03-07T16:33:08.705Z] specify that matplotlib is inline and connect the stderr. -[2024-03-07T16:33:08.705Z] Stores the active kernel process and its manager. -[2024-03-07T16:33:08.705Z] """ -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] > self.km, self.kc = start_new_kernel( -[2024-03-07T16:33:08.705Z] startup_timeout=startup_timeout, -[2024-03-07T16:33:08.705Z] kernel_name=kernel_name, -[2024-03-07T16:33:08.705Z] stderr=open(os.devnull, 'w'), -[2024-03-07T16:33:08.705Z] cwd=cwd, -[2024-03-07T16:33:08.705Z] ) -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: -[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] startup_timeout = 60, kernel_name = 'python' -[2024-03-07T16:33:08.705Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} -[2024-03-07T16:33:08.705Z] km = -[2024-03-07T16:33:08.705Z] kc = -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): -[2024-03-07T16:33:08.705Z] """Start a new kernel, and return its Manager and Client""" -[2024-03-07T16:33:08.705Z] logger.debug('Starting new kernel: "%s"' % kernel_name) -[2024-03-07T16:33:08.705Z] km = KernelManager(kernel_name=kernel_name, -[2024-03-07T16:33:08.705Z] kernel_spec_manager=NbvalKernelspecManager()) -[2024-03-07T16:33:08.705Z] km.start_kernel(**kwargs) -[2024-03-07T16:33:08.705Z] kc = km.client() -[2024-03-07T16:33:08.705Z] kc.start_channels() -[2024-03-07T16:33:08.705Z] try: -[2024-03-07T16:33:08.705Z] > kc.wait_for_ready(timeout=startup_timeout) -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: -[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] args = (,) -[2024-03-07T16:33:08.705Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.705Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.705Z] nest_asyncio = -[2024-03-07T16:33:08.705Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.705Z] try: -[2024-03-07T16:33:08.705Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.705Z] except RuntimeError: -[2024-03-07T16:33:08.705Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.705Z] try: -[2024-03-07T16:33:08.705Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.705Z] except RuntimeError: -[2024-03-07T16:33:08.705Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.705Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.705Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.705Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.705Z] try: -[2024-03-07T16:33:08.705Z] return loop.run_until_complete(future) -[2024-03-07T16:33:08.705Z] except BaseException as e: -[2024-03-07T16:33:08.705Z] future.cancel() -[2024-03-07T16:33:08.705Z] > raise e -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: -[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] args = (,) -[2024-03-07T16:33:08.705Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.705Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.705Z] nest_asyncio = -[2024-03-07T16:33:08.705Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.705Z] try: -[2024-03-07T16:33:08.705Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.705Z] except RuntimeError: -[2024-03-07T16:33:08.705Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.705Z] try: -[2024-03-07T16:33:08.705Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.705Z] except RuntimeError: -[2024-03-07T16:33:08.705Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.705Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.705Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.705Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.705Z] try: -[2024-03-07T16:33:08.705Z] > return loop.run_until_complete(future) -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: -[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.705Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] def run_until_complete(self, future): -[2024-03-07T16:33:08.705Z] with manage_run(self): -[2024-03-07T16:33:08.705Z] f = asyncio.ensure_future(future, loop=self) -[2024-03-07T16:33:08.705Z] if f is not future: -[2024-03-07T16:33:08.705Z] f._log_destroy_pending = False -[2024-03-07T16:33:08.705Z] while not f.done(): -[2024-03-07T16:33:08.705Z] self._run_once() -[2024-03-07T16:33:08.705Z] if self._stopping: -[2024-03-07T16:33:08.705Z] break -[2024-03-07T16:33:08.705Z] if not f.done(): -[2024-03-07T16:33:08.705Z] raise RuntimeError( -[2024-03-07T16:33:08.705Z] 'Event loop stopped before Future completed.') -[2024-03-07T16:33:08.705Z] > return f.result() -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: -[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] def result(self): -[2024-03-07T16:33:08.705Z] """Return the result this future represents. -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] If the future has been cancelled, raises CancelledError. If the -[2024-03-07T16:33:08.705Z] future's result isn't yet available, raises InvalidStateError. If -[2024-03-07T16:33:08.705Z] the future is done and has an exception set, this exception is raised. -[2024-03-07T16:33:08.705Z] """ -[2024-03-07T16:33:08.705Z] if self._state == _CANCELLED: -[2024-03-07T16:33:08.705Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.705Z] raise exc -[2024-03-07T16:33:08.705Z] if self._state != _FINISHED: -[2024-03-07T16:33:08.705Z] raise exceptions.InvalidStateError('Result is not ready.') -[2024-03-07T16:33:08.705Z] self.__log_traceback = False -[2024-03-07T16:33:08.705Z] if self._exception is not None: -[2024-03-07T16:33:08.705Z] > raise self._exception.with_traceback(self._exception_tb) -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.705Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: -[2024-03-07T16:33:08.705Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.705Z] -[2024-03-07T16:33:08.706Z] self = None -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] def __step(self, exc=None): -[2024-03-07T16:33:08.706Z] if self.done(): -[2024-03-07T16:33:08.706Z] raise exceptions.InvalidStateError( -[2024-03-07T16:33:08.706Z] f'_step(): already done: {self!r}, {exc!r}') -[2024-03-07T16:33:08.706Z] if self._must_cancel: -[2024-03-07T16:33:08.706Z] if not isinstance(exc, exceptions.CancelledError): -[2024-03-07T16:33:08.706Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.706Z] self._must_cancel = False -[2024-03-07T16:33:08.706Z] coro = self._coro -[2024-03-07T16:33:08.706Z] self._fut_waiter = None -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] _enter_task(self._loop, self) -[2024-03-07T16:33:08.706Z] # Call either coro.throw(exc) or coro.send(None). -[2024-03-07T16:33:08.706Z] try: -[2024-03-07T16:33:08.706Z] if exc is None: -[2024-03-07T16:33:08.706Z] # We use the `send` method directly, because coroutines -[2024-03-07T16:33:08.706Z] # don't have `__iter__` and `__next__` methods. -[2024-03-07T16:33:08.706Z] > result = coro.send(None) -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: -[2024-03-07T16:33:08.706Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] self = -[2024-03-07T16:33:08.706Z] timeout = 60 -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: -[2024-03-07T16:33:08.706Z] """Waits for a response when a client is blocked -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] - Sets future time for timeout -[2024-03-07T16:33:08.706Z] - Blocks on shell channel until a message is received -[2024-03-07T16:33:08.706Z] - Exit if the kernel has died -[2024-03-07T16:33:08.706Z] - If client times out before receiving a message from the kernel, send RuntimeError -[2024-03-07T16:33:08.706Z] - Flush the IOPub channel -[2024-03-07T16:33:08.706Z] """ -[2024-03-07T16:33:08.706Z] if timeout is None: -[2024-03-07T16:33:08.706Z] timeout = float("inf") -[2024-03-07T16:33:08.706Z] abs_timeout = time.time() + timeout -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] from .manager import KernelManager -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] if not isinstance(self.parent, KernelManager): -[2024-03-07T16:33:08.706Z] # This Client was not created by a KernelManager, -[2024-03-07T16:33:08.706Z] # so wait for kernel to become responsive to heartbeats -[2024-03-07T16:33:08.706Z] # before checking for kernel_info reply -[2024-03-07T16:33:08.706Z] while not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.706Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.706Z] raise RuntimeError( -[2024-03-07T16:33:08.706Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout -[2024-03-07T16:33:08.706Z] ) -[2024-03-07T16:33:08.706Z] await asyncio.sleep(0.2) -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] # Wait for kernel info reply on shell channel -[2024-03-07T16:33:08.706Z] while True: -[2024-03-07T16:33:08.706Z] self.kernel_info() -[2024-03-07T16:33:08.706Z] try: -[2024-03-07T16:33:08.706Z] msg = await self.shell_channel.get_msg(timeout=1) -[2024-03-07T16:33:08.706Z] except Empty: -[2024-03-07T16:33:08.706Z] pass -[2024-03-07T16:33:08.706Z] else: -[2024-03-07T16:33:08.706Z] if msg["msg_type"] == "kernel_info_reply": -[2024-03-07T16:33:08.706Z] # Checking that IOPub is connected. If it is not connected, start over. -[2024-03-07T16:33:08.706Z] try: -[2024-03-07T16:33:08.706Z] await self.iopub_channel.get_msg(timeout=0.2) -[2024-03-07T16:33:08.706Z] except Empty: -[2024-03-07T16:33:08.706Z] pass -[2024-03-07T16:33:08.706Z] else: -[2024-03-07T16:33:08.706Z] self._handle_kernel_info_reply(msg) -[2024-03-07T16:33:08.706Z] break -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] if not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.706Z] raise RuntimeError("Kernel died before replying to kernel_info") -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] # Check if current time is ready check time plus timeout -[2024-03-07T16:33:08.706Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.706Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) -[2024-03-07T16:33:08.706Z] E RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError -[2024-03-07T16:33:08.706Z] _ ERROR at setup of RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 5 _ -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] cls = -[2024-03-07T16:33:08.706Z] func = . at 0x7f0abc051ea0> -[2024-03-07T16:33:08.706Z] when = 'setup' -[2024-03-07T16:33:08.706Z] reraise = (, ) -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] @classmethod -[2024-03-07T16:33:08.706Z] def from_call( -[2024-03-07T16:33:08.706Z] cls, -[2024-03-07T16:33:08.706Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.706Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.706Z] reraise: Optional[ -[2024-03-07T16:33:08.706Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.706Z] ] = None, -[2024-03-07T16:33:08.706Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.706Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] :param func: -[2024-03-07T16:33:08.706Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.706Z] :param when: -[2024-03-07T16:33:08.706Z] The phase in which the function is called. -[2024-03-07T16:33:08.706Z] :param reraise: -[2024-03-07T16:33:08.706Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.706Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.706Z] """ -[2024-03-07T16:33:08.706Z] excinfo = None -[2024-03-07T16:33:08.706Z] start = timing.time() -[2024-03-07T16:33:08.706Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.706Z] try: -[2024-03-07T16:33:08.706Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.706Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.706Z] ) -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.706Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] self = -[2024-03-07T16:33:08.706Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.706Z] """Call the hook. -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.706Z] specification. -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.706Z] :ref:`calling`. -[2024-03-07T16:33:08.706Z] """ -[2024-03-07T16:33:08.706Z] assert ( -[2024-03-07T16:33:08.706Z] not self.is_historic() -[2024-03-07T16:33:08.706Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.706Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.706Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.706Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.706Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.706Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.706Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.706Z] methods = [>, >, ...] -[2024-03-07T16:33:08.706Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] def _hookexec( -[2024-03-07T16:33:08.706Z] self, -[2024-03-07T16:33:08.706Z] hook_name: str, -[2024-03-07T16:33:08.706Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.706Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.706Z] firstresult: bool, -[2024-03-07T16:33:08.706Z] ) -> object | list[object]: -[2024-03-07T16:33:08.706Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.706Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.706Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.706Z] -[2024-03-07T16:33:08.706Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.707Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.707Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.707Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] def _multicall( -[2024-03-07T16:33:08.707Z] hook_name: str, -[2024-03-07T16:33:08.707Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.707Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.707Z] firstresult: bool, -[2024-03-07T16:33:08.707Z] ) -> object | list[object]: -[2024-03-07T16:33:08.707Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.707Z] result(s). -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.707Z] """ -[2024-03-07T16:33:08.707Z] __tracebackhide__ = True -[2024-03-07T16:33:08.707Z] results: list[object] = [] -[2024-03-07T16:33:08.707Z] exception = None -[2024-03-07T16:33:08.707Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.707Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.707Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.707Z] try: -[2024-03-07T16:33:08.707Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.707Z] try: -[2024-03-07T16:33:08.707Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.707Z] except KeyError: -[2024-03-07T16:33:08.707Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.707Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.707Z] raise HookCallError( -[2024-03-07T16:33:08.707Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.707Z] ) -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.707Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.707Z] try: -[2024-03-07T16:33:08.707Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.707Z] # which is the desired response. -[2024-03-07T16:33:08.707Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.707Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.707Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.707Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.707Z] except StopIteration: -[2024-03-07T16:33:08.707Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.707Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.707Z] try: -[2024-03-07T16:33:08.707Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.707Z] # which is the desired response. -[2024-03-07T16:33:08.707Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.707Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.707Z] next(function_gen) # first yield -[2024-03-07T16:33:08.707Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.707Z] except StopIteration: -[2024-03-07T16:33:08.707Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.707Z] else: -[2024-03-07T16:33:08.707Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.707Z] if res is not None: -[2024-03-07T16:33:08.707Z] results.append(res) -[2024-03-07T16:33:08.707Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.707Z] break -[2024-03-07T16:33:08.707Z] except BaseException as exc: -[2024-03-07T16:33:08.707Z] exception = exc -[2024-03-07T16:33:08.707Z] finally: -[2024-03-07T16:33:08.707Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.707Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.707Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.707Z] result = results[0] if results else None -[2024-03-07T16:33:08.707Z] else: -[2024-03-07T16:33:08.707Z] result = results -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.707Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.707Z] try: -[2024-03-07T16:33:08.707Z] if exception is not None: -[2024-03-07T16:33:08.707Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.707Z] else: -[2024-03-07T16:33:08.707Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.707Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.707Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.707Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.707Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.707Z] except StopIteration as si: -[2024-03-07T16:33:08.707Z] result = si.value -[2024-03-07T16:33:08.707Z] exception = None -[2024-03-07T16:33:08.707Z] continue -[2024-03-07T16:33:08.707Z] except BaseException as e: -[2024-03-07T16:33:08.707Z] exception = e -[2024-03-07T16:33:08.707Z] continue -[2024-03-07T16:33:08.707Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] if exception is not None: -[2024-03-07T16:33:08.707Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.707Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.707Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.707Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] def _multicall( -[2024-03-07T16:33:08.707Z] hook_name: str, -[2024-03-07T16:33:08.707Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.707Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.707Z] firstresult: bool, -[2024-03-07T16:33:08.707Z] ) -> object | list[object]: -[2024-03-07T16:33:08.707Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.707Z] result(s). -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.707Z] """ -[2024-03-07T16:33:08.707Z] __tracebackhide__ = True -[2024-03-07T16:33:08.707Z] results: list[object] = [] -[2024-03-07T16:33:08.707Z] exception = None -[2024-03-07T16:33:08.707Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.707Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.707Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.707Z] try: -[2024-03-07T16:33:08.707Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.707Z] try: -[2024-03-07T16:33:08.707Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.707Z] except KeyError: -[2024-03-07T16:33:08.707Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.707Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.707Z] raise HookCallError( -[2024-03-07T16:33:08.707Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.707Z] ) -[2024-03-07T16:33:08.707Z] -[2024-03-07T16:33:08.707Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.707Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.707Z] try: -[2024-03-07T16:33:08.707Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.707Z] # which is the desired response. -[2024-03-07T16:33:08.707Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.707Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.707Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.707Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.707Z] except StopIteration: -[2024-03-07T16:33:08.708Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.708Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.708Z] try: -[2024-03-07T16:33:08.708Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.708Z] # which is the desired response. -[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.708Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.708Z] next(function_gen) # first yield -[2024-03-07T16:33:08.708Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.708Z] except StopIteration: -[2024-03-07T16:33:08.708Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.708Z] else: -[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.708Z] if res is not None: -[2024-03-07T16:33:08.708Z] results.append(res) -[2024-03-07T16:33:08.708Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.708Z] break -[2024-03-07T16:33:08.708Z] except BaseException as exc: -[2024-03-07T16:33:08.708Z] exception = exc -[2024-03-07T16:33:08.708Z] finally: -[2024-03-07T16:33:08.708Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.708Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.708Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.708Z] result = results[0] if results else None -[2024-03-07T16:33:08.708Z] else: -[2024-03-07T16:33:08.708Z] result = results -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.708Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.708Z] try: -[2024-03-07T16:33:08.708Z] if exception is not None: -[2024-03-07T16:33:08.708Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.708Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.708Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.708Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.708Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.708Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.708Z] try: -[2024-03-07T16:33:08.708Z] > yield -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.708Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.708Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.708Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] def _multicall( -[2024-03-07T16:33:08.708Z] hook_name: str, -[2024-03-07T16:33:08.708Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.708Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.708Z] firstresult: bool, -[2024-03-07T16:33:08.708Z] ) -> object | list[object]: -[2024-03-07T16:33:08.708Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.708Z] result(s). -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.708Z] """ -[2024-03-07T16:33:08.708Z] __tracebackhide__ = True -[2024-03-07T16:33:08.708Z] results: list[object] = [] -[2024-03-07T16:33:08.708Z] exception = None -[2024-03-07T16:33:08.708Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.708Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.708Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.708Z] try: -[2024-03-07T16:33:08.708Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.708Z] try: -[2024-03-07T16:33:08.708Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.708Z] except KeyError: -[2024-03-07T16:33:08.708Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.708Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.708Z] raise HookCallError( -[2024-03-07T16:33:08.708Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.708Z] ) -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.708Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.708Z] try: -[2024-03-07T16:33:08.708Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.708Z] # which is the desired response. -[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.708Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.708Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.708Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.708Z] except StopIteration: -[2024-03-07T16:33:08.708Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.708Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.708Z] try: -[2024-03-07T16:33:08.708Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.708Z] # which is the desired response. -[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.708Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.708Z] next(function_gen) # first yield -[2024-03-07T16:33:08.708Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.708Z] except StopIteration: -[2024-03-07T16:33:08.708Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.708Z] else: -[2024-03-07T16:33:08.708Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.708Z] if res is not None: -[2024-03-07T16:33:08.708Z] results.append(res) -[2024-03-07T16:33:08.708Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.708Z] break -[2024-03-07T16:33:08.708Z] except BaseException as exc: -[2024-03-07T16:33:08.708Z] exception = exc -[2024-03-07T16:33:08.708Z] finally: -[2024-03-07T16:33:08.708Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.708Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.708Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.708Z] result = results[0] if results else None -[2024-03-07T16:33:08.708Z] else: -[2024-03-07T16:33:08.708Z] result = results -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.708Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.708Z] try: -[2024-03-07T16:33:08.708Z] if exception is not None: -[2024-03-07T16:33:08.708Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.708Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.708Z] item = -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.708Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.708Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.708Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.708Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.708Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.708Z] -[2024-03-07T16:33:08.709Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.709Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.709Z] item = , when = 'setup' -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.709Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.709Z] with catching_logs( -[2024-03-07T16:33:08.709Z] self.caplog_handler, -[2024-03-07T16:33:08.709Z] level=self.log_level, -[2024-03-07T16:33:08.709Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.709Z] self.report_handler, -[2024-03-07T16:33:08.709Z] level=self.log_level, -[2024-03-07T16:33:08.709Z] ) as report_handler: -[2024-03-07T16:33:08.709Z] caplog_handler.reset() -[2024-03-07T16:33:08.709Z] report_handler.reset() -[2024-03-07T16:33:08.709Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.709Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] try: -[2024-03-07T16:33:08.709Z] > yield -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.709Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.709Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.709Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] def _multicall( -[2024-03-07T16:33:08.709Z] hook_name: str, -[2024-03-07T16:33:08.709Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.709Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.709Z] firstresult: bool, -[2024-03-07T16:33:08.709Z] ) -> object | list[object]: -[2024-03-07T16:33:08.709Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.709Z] result(s). -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.709Z] """ -[2024-03-07T16:33:08.709Z] __tracebackhide__ = True -[2024-03-07T16:33:08.709Z] results: list[object] = [] -[2024-03-07T16:33:08.709Z] exception = None -[2024-03-07T16:33:08.709Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.709Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.709Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.709Z] try: -[2024-03-07T16:33:08.709Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.709Z] try: -[2024-03-07T16:33:08.709Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.709Z] except KeyError: -[2024-03-07T16:33:08.709Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.709Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.709Z] raise HookCallError( -[2024-03-07T16:33:08.709Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.709Z] ) -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.709Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.709Z] try: -[2024-03-07T16:33:08.709Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.709Z] # which is the desired response. -[2024-03-07T16:33:08.709Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.709Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.709Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.709Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.709Z] except StopIteration: -[2024-03-07T16:33:08.709Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.709Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.709Z] try: -[2024-03-07T16:33:08.709Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.709Z] # which is the desired response. -[2024-03-07T16:33:08.709Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.709Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.709Z] next(function_gen) # first yield -[2024-03-07T16:33:08.709Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.709Z] except StopIteration: -[2024-03-07T16:33:08.709Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.709Z] else: -[2024-03-07T16:33:08.709Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.709Z] if res is not None: -[2024-03-07T16:33:08.709Z] results.append(res) -[2024-03-07T16:33:08.709Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.709Z] break -[2024-03-07T16:33:08.709Z] except BaseException as exc: -[2024-03-07T16:33:08.709Z] exception = exc -[2024-03-07T16:33:08.709Z] finally: -[2024-03-07T16:33:08.709Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.709Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.709Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.709Z] result = results[0] if results else None -[2024-03-07T16:33:08.709Z] else: -[2024-03-07T16:33:08.709Z] result = results -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.709Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.709Z] try: -[2024-03-07T16:33:08.709Z] if exception is not None: -[2024-03-07T16:33:08.709Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.709Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.709Z] item = -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.709Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.709Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.709Z] > return (yield) -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.709Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.709Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.709Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] def _multicall( -[2024-03-07T16:33:08.709Z] hook_name: str, -[2024-03-07T16:33:08.709Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.709Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.709Z] firstresult: bool, -[2024-03-07T16:33:08.709Z] ) -> object | list[object]: -[2024-03-07T16:33:08.709Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.709Z] result(s). -[2024-03-07T16:33:08.709Z] -[2024-03-07T16:33:08.709Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.709Z] """ -[2024-03-07T16:33:08.709Z] __tracebackhide__ = True -[2024-03-07T16:33:08.709Z] results: list[object] = [] -[2024-03-07T16:33:08.709Z] exception = None -[2024-03-07T16:33:08.709Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.709Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.709Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.709Z] try: -[2024-03-07T16:33:08.709Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.709Z] try: -[2024-03-07T16:33:08.709Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.709Z] except KeyError: -[2024-03-07T16:33:08.709Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.709Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.709Z] raise HookCallError( -[2024-03-07T16:33:08.710Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.710Z] ) -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.710Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.710Z] try: -[2024-03-07T16:33:08.710Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.710Z] # which is the desired response. -[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.710Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.710Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.710Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.710Z] except StopIteration: -[2024-03-07T16:33:08.710Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.710Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.710Z] try: -[2024-03-07T16:33:08.710Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.710Z] # which is the desired response. -[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.710Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.710Z] next(function_gen) # first yield -[2024-03-07T16:33:08.710Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.710Z] except StopIteration: -[2024-03-07T16:33:08.710Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.710Z] else: -[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.710Z] if res is not None: -[2024-03-07T16:33:08.710Z] results.append(res) -[2024-03-07T16:33:08.710Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.710Z] break -[2024-03-07T16:33:08.710Z] except BaseException as exc: -[2024-03-07T16:33:08.710Z] exception = exc -[2024-03-07T16:33:08.710Z] finally: -[2024-03-07T16:33:08.710Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.710Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.710Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.710Z] result = results[0] if results else None -[2024-03-07T16:33:08.710Z] else: -[2024-03-07T16:33:08.710Z] result = results -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.710Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.710Z] try: -[2024-03-07T16:33:08.710Z] if exception is not None: -[2024-03-07T16:33:08.710Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.710Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.710Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.710Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.710Z] try: -[2024-03-07T16:33:08.710Z] > yield -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.710Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.710Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] def _multicall( -[2024-03-07T16:33:08.710Z] hook_name: str, -[2024-03-07T16:33:08.710Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.710Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.710Z] firstresult: bool, -[2024-03-07T16:33:08.710Z] ) -> object | list[object]: -[2024-03-07T16:33:08.710Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.710Z] result(s). -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.710Z] """ -[2024-03-07T16:33:08.710Z] __tracebackhide__ = True -[2024-03-07T16:33:08.710Z] results: list[object] = [] -[2024-03-07T16:33:08.710Z] exception = None -[2024-03-07T16:33:08.710Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.710Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.710Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.710Z] try: -[2024-03-07T16:33:08.710Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.710Z] try: -[2024-03-07T16:33:08.710Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.710Z] except KeyError: -[2024-03-07T16:33:08.710Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.710Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.710Z] raise HookCallError( -[2024-03-07T16:33:08.710Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.710Z] ) -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.710Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.710Z] try: -[2024-03-07T16:33:08.710Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.710Z] # which is the desired response. -[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.710Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.710Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.710Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.710Z] except StopIteration: -[2024-03-07T16:33:08.710Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.710Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.710Z] try: -[2024-03-07T16:33:08.710Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.710Z] # which is the desired response. -[2024-03-07T16:33:08.710Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.710Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.710Z] next(function_gen) # first yield -[2024-03-07T16:33:08.710Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.710Z] except StopIteration: -[2024-03-07T16:33:08.710Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.710Z] else: -[2024-03-07T16:33:08.710Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] item = -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.710Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.710Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.710Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.710Z] item = -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.710Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.710Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.710Z] -[2024-03-07T16:33:08.710Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.710Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.710Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.711Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.711Z] if exc: -[2024-03-07T16:33:08.711Z] > raise exc -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] cls = -[2024-03-07T16:33:08.711Z] func = . at 0x7f0ab86cab00> -[2024-03-07T16:33:08.711Z] when = 'setup' -[2024-03-07T16:33:08.711Z] reraise = (, ) -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] @classmethod -[2024-03-07T16:33:08.711Z] def from_call( -[2024-03-07T16:33:08.711Z] cls, -[2024-03-07T16:33:08.711Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.711Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.711Z] reraise: Optional[ -[2024-03-07T16:33:08.711Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.711Z] ] = None, -[2024-03-07T16:33:08.711Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.711Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] :param func: -[2024-03-07T16:33:08.711Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.711Z] :param when: -[2024-03-07T16:33:08.711Z] The phase in which the function is called. -[2024-03-07T16:33:08.711Z] :param reraise: -[2024-03-07T16:33:08.711Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.711Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.711Z] """ -[2024-03-07T16:33:08.711Z] excinfo = None -[2024-03-07T16:33:08.711Z] start = timing.time() -[2024-03-07T16:33:08.711Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.711Z] try: -[2024-03-07T16:33:08.711Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.711Z] ) -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] self = -[2024-03-07T16:33:08.711Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.711Z] """Call the hook. -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.711Z] specification. -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.711Z] :ref:`calling`. -[2024-03-07T16:33:08.711Z] """ -[2024-03-07T16:33:08.711Z] assert ( -[2024-03-07T16:33:08.711Z] not self.is_historic() -[2024-03-07T16:33:08.711Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.711Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.711Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.711Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.711Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.711Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.711Z] methods = [>, >, ...] -[2024-03-07T16:33:08.711Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] def _hookexec( -[2024-03-07T16:33:08.711Z] self, -[2024-03-07T16:33:08.711Z] hook_name: str, -[2024-03-07T16:33:08.711Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.711Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.711Z] firstresult: bool, -[2024-03-07T16:33:08.711Z] ) -> object | list[object]: -[2024-03-07T16:33:08.711Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.711Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.711Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.711Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.711Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.711Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] def _multicall( -[2024-03-07T16:33:08.711Z] hook_name: str, -[2024-03-07T16:33:08.711Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.711Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.711Z] firstresult: bool, -[2024-03-07T16:33:08.711Z] ) -> object | list[object]: -[2024-03-07T16:33:08.711Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.711Z] result(s). -[2024-03-07T16:33:08.711Z] -[2024-03-07T16:33:08.711Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.711Z] """ -[2024-03-07T16:33:08.711Z] __tracebackhide__ = True -[2024-03-07T16:33:08.711Z] results: list[object] = [] -[2024-03-07T16:33:08.711Z] exception = None -[2024-03-07T16:33:08.711Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.711Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.711Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.711Z] try: -[2024-03-07T16:33:08.711Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.711Z] try: -[2024-03-07T16:33:08.711Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.711Z] except KeyError: -[2024-03-07T16:33:08.711Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.711Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.711Z] raise HookCallError( -[2024-03-07T16:33:08.712Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.712Z] ) -[2024-03-07T16:33:08.712Z] -[2024-03-07T16:33:08.712Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.712Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.712Z] try: -[2024-03-07T16:33:08.712Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.712Z] # which is the desired response. -[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.712Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.712Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.712Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.712Z] except StopIteration: -[2024-03-07T16:33:08.712Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.712Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.712Z] try: -[2024-03-07T16:33:08.712Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.712Z] # which is the desired response. -[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.712Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.712Z] next(function_gen) # first yield -[2024-03-07T16:33:08.712Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.712Z] except StopIteration: -[2024-03-07T16:33:08.712Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.712Z] else: -[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.712Z] if res is not None: -[2024-03-07T16:33:08.712Z] results.append(res) -[2024-03-07T16:33:08.712Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.712Z] break -[2024-03-07T16:33:08.712Z] except BaseException as exc: -[2024-03-07T16:33:08.712Z] exception = exc -[2024-03-07T16:33:08.712Z] finally: -[2024-03-07T16:33:08.712Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.712Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.712Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.712Z] result = results[0] if results else None -[2024-03-07T16:33:08.712Z] else: -[2024-03-07T16:33:08.712Z] result = results -[2024-03-07T16:33:08.712Z] -[2024-03-07T16:33:08.712Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.712Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.712Z] try: -[2024-03-07T16:33:08.712Z] if exception is not None: -[2024-03-07T16:33:08.712Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.712Z] else: -[2024-03-07T16:33:08.712Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.712Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.712Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.712Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.712Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.712Z] except StopIteration as si: -[2024-03-07T16:33:08.712Z] result = si.value -[2024-03-07T16:33:08.712Z] exception = None -[2024-03-07T16:33:08.712Z] continue -[2024-03-07T16:33:08.712Z] except BaseException as e: -[2024-03-07T16:33:08.712Z] exception = e -[2024-03-07T16:33:08.712Z] continue -[2024-03-07T16:33:08.712Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.712Z] -[2024-03-07T16:33:08.712Z] if exception is not None: -[2024-03-07T16:33:08.712Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.712Z] -[2024-03-07T16:33:08.712Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.712Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.712Z] -[2024-03-07T16:33:08.712Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.712Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.712Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.712Z] -[2024-03-07T16:33:08.712Z] def _multicall( -[2024-03-07T16:33:08.712Z] hook_name: str, -[2024-03-07T16:33:08.712Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.712Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.712Z] firstresult: bool, -[2024-03-07T16:33:08.712Z] ) -> object | list[object]: -[2024-03-07T16:33:08.712Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.712Z] result(s). -[2024-03-07T16:33:08.712Z] -[2024-03-07T16:33:08.712Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.712Z] """ -[2024-03-07T16:33:08.712Z] __tracebackhide__ = True -[2024-03-07T16:33:08.712Z] results: list[object] = [] -[2024-03-07T16:33:08.712Z] exception = None -[2024-03-07T16:33:08.712Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.712Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.712Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.712Z] try: -[2024-03-07T16:33:08.712Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.712Z] try: -[2024-03-07T16:33:08.712Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.712Z] except KeyError: -[2024-03-07T16:33:08.712Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.712Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.712Z] raise HookCallError( -[2024-03-07T16:33:08.712Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.712Z] ) -[2024-03-07T16:33:08.712Z] -[2024-03-07T16:33:08.712Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.712Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.712Z] try: -[2024-03-07T16:33:08.712Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.712Z] # which is the desired response. -[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.712Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.712Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.712Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.712Z] except StopIteration: -[2024-03-07T16:33:08.712Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.712Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.712Z] try: -[2024-03-07T16:33:08.712Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.712Z] # which is the desired response. -[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.712Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.712Z] next(function_gen) # first yield -[2024-03-07T16:33:08.712Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.712Z] except StopIteration: -[2024-03-07T16:33:08.712Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.712Z] else: -[2024-03-07T16:33:08.712Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.712Z] if res is not None: -[2024-03-07T16:33:08.712Z] results.append(res) -[2024-03-07T16:33:08.712Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.712Z] break -[2024-03-07T16:33:08.712Z] except BaseException as exc: -[2024-03-07T16:33:08.712Z] exception = exc -[2024-03-07T16:33:08.712Z] finally: -[2024-03-07T16:33:08.712Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.712Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.712Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.713Z] result = results[0] if results else None -[2024-03-07T16:33:08.713Z] else: -[2024-03-07T16:33:08.713Z] result = results -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.713Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.713Z] try: -[2024-03-07T16:33:08.713Z] if exception is not None: -[2024-03-07T16:33:08.713Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.713Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.713Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.713Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.713Z] try: -[2024-03-07T16:33:08.713Z] > yield -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.713Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.713Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] def _multicall( -[2024-03-07T16:33:08.713Z] hook_name: str, -[2024-03-07T16:33:08.713Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.713Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.713Z] firstresult: bool, -[2024-03-07T16:33:08.713Z] ) -> object | list[object]: -[2024-03-07T16:33:08.713Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.713Z] result(s). -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.713Z] """ -[2024-03-07T16:33:08.713Z] __tracebackhide__ = True -[2024-03-07T16:33:08.713Z] results: list[object] = [] -[2024-03-07T16:33:08.713Z] exception = None -[2024-03-07T16:33:08.713Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.713Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.713Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.713Z] try: -[2024-03-07T16:33:08.713Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.713Z] try: -[2024-03-07T16:33:08.713Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.713Z] except KeyError: -[2024-03-07T16:33:08.713Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.713Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.713Z] raise HookCallError( -[2024-03-07T16:33:08.713Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.713Z] ) -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.713Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.713Z] try: -[2024-03-07T16:33:08.713Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.713Z] # which is the desired response. -[2024-03-07T16:33:08.713Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.713Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.713Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.713Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.713Z] except StopIteration: -[2024-03-07T16:33:08.713Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.713Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.713Z] try: -[2024-03-07T16:33:08.713Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.713Z] # which is the desired response. -[2024-03-07T16:33:08.713Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.713Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.713Z] next(function_gen) # first yield -[2024-03-07T16:33:08.713Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.713Z] except StopIteration: -[2024-03-07T16:33:08.713Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.713Z] else: -[2024-03-07T16:33:08.713Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.713Z] if res is not None: -[2024-03-07T16:33:08.713Z] results.append(res) -[2024-03-07T16:33:08.713Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.713Z] break -[2024-03-07T16:33:08.713Z] except BaseException as exc: -[2024-03-07T16:33:08.713Z] exception = exc -[2024-03-07T16:33:08.713Z] finally: -[2024-03-07T16:33:08.713Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.713Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.713Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.713Z] result = results[0] if results else None -[2024-03-07T16:33:08.713Z] else: -[2024-03-07T16:33:08.713Z] result = results -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.713Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.713Z] try: -[2024-03-07T16:33:08.713Z] if exception is not None: -[2024-03-07T16:33:08.713Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.713Z] item = -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.713Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.713Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.713Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.713Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.713Z] item = , when = 'setup' -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.713Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.713Z] with catching_logs( -[2024-03-07T16:33:08.713Z] self.caplog_handler, -[2024-03-07T16:33:08.713Z] level=self.log_level, -[2024-03-07T16:33:08.713Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.713Z] self.report_handler, -[2024-03-07T16:33:08.713Z] level=self.log_level, -[2024-03-07T16:33:08.713Z] ) as report_handler: -[2024-03-07T16:33:08.713Z] caplog_handler.reset() -[2024-03-07T16:33:08.713Z] report_handler.reset() -[2024-03-07T16:33:08.713Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.713Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] try: -[2024-03-07T16:33:08.713Z] > yield -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.713Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.713Z] -[2024-03-07T16:33:08.713Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.713Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.714Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] def _multicall( -[2024-03-07T16:33:08.714Z] hook_name: str, -[2024-03-07T16:33:08.714Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.714Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.714Z] firstresult: bool, -[2024-03-07T16:33:08.714Z] ) -> object | list[object]: -[2024-03-07T16:33:08.714Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.714Z] result(s). -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.714Z] """ -[2024-03-07T16:33:08.714Z] __tracebackhide__ = True -[2024-03-07T16:33:08.714Z] results: list[object] = [] -[2024-03-07T16:33:08.714Z] exception = None -[2024-03-07T16:33:08.714Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.714Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.714Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.714Z] try: -[2024-03-07T16:33:08.714Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.714Z] try: -[2024-03-07T16:33:08.714Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.714Z] except KeyError: -[2024-03-07T16:33:08.714Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.714Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.714Z] raise HookCallError( -[2024-03-07T16:33:08.714Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.714Z] ) -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.714Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.714Z] try: -[2024-03-07T16:33:08.714Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.714Z] # which is the desired response. -[2024-03-07T16:33:08.714Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.714Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.714Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.714Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.714Z] except StopIteration: -[2024-03-07T16:33:08.714Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.714Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.714Z] try: -[2024-03-07T16:33:08.714Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.714Z] # which is the desired response. -[2024-03-07T16:33:08.714Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.714Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.714Z] next(function_gen) # first yield -[2024-03-07T16:33:08.714Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.714Z] except StopIteration: -[2024-03-07T16:33:08.714Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.714Z] else: -[2024-03-07T16:33:08.714Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.714Z] if res is not None: -[2024-03-07T16:33:08.714Z] results.append(res) -[2024-03-07T16:33:08.714Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.714Z] break -[2024-03-07T16:33:08.714Z] except BaseException as exc: -[2024-03-07T16:33:08.714Z] exception = exc -[2024-03-07T16:33:08.714Z] finally: -[2024-03-07T16:33:08.714Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.714Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.714Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.714Z] result = results[0] if results else None -[2024-03-07T16:33:08.714Z] else: -[2024-03-07T16:33:08.714Z] result = results -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.714Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.714Z] try: -[2024-03-07T16:33:08.714Z] if exception is not None: -[2024-03-07T16:33:08.714Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.714Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.714Z] item = -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.714Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.714Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.714Z] > return (yield) -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.714Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.714Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.714Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] def _multicall( -[2024-03-07T16:33:08.714Z] hook_name: str, -[2024-03-07T16:33:08.714Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.714Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.714Z] firstresult: bool, -[2024-03-07T16:33:08.714Z] ) -> object | list[object]: -[2024-03-07T16:33:08.714Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.714Z] result(s). -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.714Z] """ -[2024-03-07T16:33:08.714Z] __tracebackhide__ = True -[2024-03-07T16:33:08.714Z] results: list[object] = [] -[2024-03-07T16:33:08.714Z] exception = None -[2024-03-07T16:33:08.714Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.714Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.714Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.714Z] try: -[2024-03-07T16:33:08.714Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.714Z] try: -[2024-03-07T16:33:08.714Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.714Z] except KeyError: -[2024-03-07T16:33:08.714Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.714Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.714Z] raise HookCallError( -[2024-03-07T16:33:08.714Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.714Z] ) -[2024-03-07T16:33:08.714Z] -[2024-03-07T16:33:08.714Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.714Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.714Z] try: -[2024-03-07T16:33:08.714Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.714Z] # which is the desired response. -[2024-03-07T16:33:08.714Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.714Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.714Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.714Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.714Z] except StopIteration: -[2024-03-07T16:33:08.715Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.715Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.715Z] try: -[2024-03-07T16:33:08.715Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.715Z] # which is the desired response. -[2024-03-07T16:33:08.715Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.715Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.715Z] next(function_gen) # first yield -[2024-03-07T16:33:08.715Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.715Z] except StopIteration: -[2024-03-07T16:33:08.715Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.715Z] else: -[2024-03-07T16:33:08.715Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.715Z] if res is not None: -[2024-03-07T16:33:08.715Z] results.append(res) -[2024-03-07T16:33:08.715Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.715Z] break -[2024-03-07T16:33:08.715Z] except BaseException as exc: -[2024-03-07T16:33:08.715Z] exception = exc -[2024-03-07T16:33:08.715Z] finally: -[2024-03-07T16:33:08.715Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.715Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.715Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.715Z] result = results[0] if results else None -[2024-03-07T16:33:08.715Z] else: -[2024-03-07T16:33:08.715Z] result = results -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.715Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.715Z] try: -[2024-03-07T16:33:08.715Z] if exception is not None: -[2024-03-07T16:33:08.715Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.715Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.715Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.715Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.715Z] try: -[2024-03-07T16:33:08.715Z] > yield -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.715Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.715Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] def _multicall( -[2024-03-07T16:33:08.715Z] hook_name: str, -[2024-03-07T16:33:08.715Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.715Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.715Z] firstresult: bool, -[2024-03-07T16:33:08.715Z] ) -> object | list[object]: -[2024-03-07T16:33:08.715Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.715Z] result(s). -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.715Z] """ -[2024-03-07T16:33:08.715Z] __tracebackhide__ = True -[2024-03-07T16:33:08.715Z] results: list[object] = [] -[2024-03-07T16:33:08.715Z] exception = None -[2024-03-07T16:33:08.715Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.715Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.715Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.715Z] try: -[2024-03-07T16:33:08.715Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.715Z] try: -[2024-03-07T16:33:08.715Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.715Z] except KeyError: -[2024-03-07T16:33:08.715Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.715Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.715Z] raise HookCallError( -[2024-03-07T16:33:08.715Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.715Z] ) -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.715Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.715Z] try: -[2024-03-07T16:33:08.715Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.715Z] # which is the desired response. -[2024-03-07T16:33:08.715Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.715Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.715Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.715Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.715Z] except StopIteration: -[2024-03-07T16:33:08.715Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.715Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.715Z] try: -[2024-03-07T16:33:08.715Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.715Z] # which is the desired response. -[2024-03-07T16:33:08.715Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.715Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.715Z] next(function_gen) # first yield -[2024-03-07T16:33:08.715Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.715Z] except StopIteration: -[2024-03-07T16:33:08.715Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.715Z] else: -[2024-03-07T16:33:08.715Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] item = -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.715Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.715Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.715Z] item = -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.715Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.715Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.715Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.715Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.715Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.715Z] if exc: -[2024-03-07T16:33:08.715Z] > raise exc -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.715Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.715Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.715Z] -[2024-03-07T16:33:08.716Z] cls = -[2024-03-07T16:33:08.716Z] func = . at 0x7f0ab86f15a0> -[2024-03-07T16:33:08.716Z] when = 'setup' -[2024-03-07T16:33:08.716Z] reraise = (, ) -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] @classmethod -[2024-03-07T16:33:08.716Z] def from_call( -[2024-03-07T16:33:08.716Z] cls, -[2024-03-07T16:33:08.716Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.716Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.716Z] reraise: Optional[ -[2024-03-07T16:33:08.716Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.716Z] ] = None, -[2024-03-07T16:33:08.716Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.716Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] :param func: -[2024-03-07T16:33:08.716Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.716Z] :param when: -[2024-03-07T16:33:08.716Z] The phase in which the function is called. -[2024-03-07T16:33:08.716Z] :param reraise: -[2024-03-07T16:33:08.716Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.716Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.716Z] """ -[2024-03-07T16:33:08.716Z] excinfo = None -[2024-03-07T16:33:08.716Z] start = timing.time() -[2024-03-07T16:33:08.716Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.716Z] try: -[2024-03-07T16:33:08.716Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.716Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.716Z] ) -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.716Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] self = -[2024-03-07T16:33:08.716Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.716Z] """Call the hook. -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.716Z] specification. -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.716Z] :ref:`calling`. -[2024-03-07T16:33:08.716Z] """ -[2024-03-07T16:33:08.716Z] assert ( -[2024-03-07T16:33:08.716Z] not self.is_historic() -[2024-03-07T16:33:08.716Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.716Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.716Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.716Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.716Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.716Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.716Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.716Z] methods = [>, >, ...] -[2024-03-07T16:33:08.716Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] def _hookexec( -[2024-03-07T16:33:08.716Z] self, -[2024-03-07T16:33:08.716Z] hook_name: str, -[2024-03-07T16:33:08.716Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.716Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.716Z] firstresult: bool, -[2024-03-07T16:33:08.716Z] ) -> object | list[object]: -[2024-03-07T16:33:08.716Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.716Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.716Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.716Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.716Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.716Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] def _multicall( -[2024-03-07T16:33:08.716Z] hook_name: str, -[2024-03-07T16:33:08.716Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.716Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.716Z] firstresult: bool, -[2024-03-07T16:33:08.716Z] ) -> object | list[object]: -[2024-03-07T16:33:08.716Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.716Z] result(s). -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.716Z] """ -[2024-03-07T16:33:08.716Z] __tracebackhide__ = True -[2024-03-07T16:33:08.716Z] results: list[object] = [] -[2024-03-07T16:33:08.716Z] exception = None -[2024-03-07T16:33:08.716Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.716Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.716Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.716Z] try: -[2024-03-07T16:33:08.716Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.716Z] try: -[2024-03-07T16:33:08.716Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.716Z] except KeyError: -[2024-03-07T16:33:08.716Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.716Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.716Z] raise HookCallError( -[2024-03-07T16:33:08.716Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.716Z] ) -[2024-03-07T16:33:08.716Z] -[2024-03-07T16:33:08.716Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.716Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.716Z] try: -[2024-03-07T16:33:08.716Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.716Z] # which is the desired response. -[2024-03-07T16:33:08.716Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.716Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.716Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.716Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.716Z] except StopIteration: -[2024-03-07T16:33:08.716Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.716Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.716Z] try: -[2024-03-07T16:33:08.716Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.716Z] # which is the desired response. -[2024-03-07T16:33:08.716Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.716Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.716Z] next(function_gen) # first yield -[2024-03-07T16:33:08.716Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.716Z] except StopIteration: -[2024-03-07T16:33:08.716Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.716Z] else: -[2024-03-07T16:33:08.716Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.716Z] if res is not None: -[2024-03-07T16:33:08.716Z] results.append(res) -[2024-03-07T16:33:08.716Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.716Z] break -[2024-03-07T16:33:08.716Z] except BaseException as exc: -[2024-03-07T16:33:08.716Z] exception = exc -[2024-03-07T16:33:08.716Z] finally: -[2024-03-07T16:33:08.716Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.716Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.716Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.716Z] result = results[0] if results else None -[2024-03-07T16:33:08.716Z] else: -[2024-03-07T16:33:08.717Z] result = results -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.717Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.717Z] try: -[2024-03-07T16:33:08.717Z] if exception is not None: -[2024-03-07T16:33:08.717Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.717Z] else: -[2024-03-07T16:33:08.717Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.717Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.717Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.717Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.717Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.717Z] except StopIteration as si: -[2024-03-07T16:33:08.717Z] result = si.value -[2024-03-07T16:33:08.717Z] exception = None -[2024-03-07T16:33:08.717Z] continue -[2024-03-07T16:33:08.717Z] except BaseException as e: -[2024-03-07T16:33:08.717Z] exception = e -[2024-03-07T16:33:08.717Z] continue -[2024-03-07T16:33:08.717Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] if exception is not None: -[2024-03-07T16:33:08.717Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.717Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.717Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.717Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] def _multicall( -[2024-03-07T16:33:08.717Z] hook_name: str, -[2024-03-07T16:33:08.717Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.717Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.717Z] firstresult: bool, -[2024-03-07T16:33:08.717Z] ) -> object | list[object]: -[2024-03-07T16:33:08.717Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.717Z] result(s). -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.717Z] """ -[2024-03-07T16:33:08.717Z] __tracebackhide__ = True -[2024-03-07T16:33:08.717Z] results: list[object] = [] -[2024-03-07T16:33:08.717Z] exception = None -[2024-03-07T16:33:08.717Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.717Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.717Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.717Z] try: -[2024-03-07T16:33:08.717Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.717Z] try: -[2024-03-07T16:33:08.717Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.717Z] except KeyError: -[2024-03-07T16:33:08.717Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.717Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.717Z] raise HookCallError( -[2024-03-07T16:33:08.717Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.717Z] ) -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.717Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.717Z] try: -[2024-03-07T16:33:08.717Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.717Z] # which is the desired response. -[2024-03-07T16:33:08.717Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.717Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.717Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.717Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.717Z] except StopIteration: -[2024-03-07T16:33:08.717Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.717Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.717Z] try: -[2024-03-07T16:33:08.717Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.717Z] # which is the desired response. -[2024-03-07T16:33:08.717Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.717Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.717Z] next(function_gen) # first yield -[2024-03-07T16:33:08.717Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.717Z] except StopIteration: -[2024-03-07T16:33:08.717Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.717Z] else: -[2024-03-07T16:33:08.717Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.717Z] if res is not None: -[2024-03-07T16:33:08.717Z] results.append(res) -[2024-03-07T16:33:08.717Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.717Z] break -[2024-03-07T16:33:08.717Z] except BaseException as exc: -[2024-03-07T16:33:08.717Z] exception = exc -[2024-03-07T16:33:08.717Z] finally: -[2024-03-07T16:33:08.717Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.717Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.717Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.717Z] result = results[0] if results else None -[2024-03-07T16:33:08.717Z] else: -[2024-03-07T16:33:08.717Z] result = results -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.717Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.717Z] try: -[2024-03-07T16:33:08.717Z] if exception is not None: -[2024-03-07T16:33:08.717Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.717Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.717Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.717Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.717Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.717Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.717Z] try: -[2024-03-07T16:33:08.717Z] > yield -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.717Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.717Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.717Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] def _multicall( -[2024-03-07T16:33:08.717Z] hook_name: str, -[2024-03-07T16:33:08.717Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.717Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.717Z] firstresult: bool, -[2024-03-07T16:33:08.717Z] ) -> object | list[object]: -[2024-03-07T16:33:08.717Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.717Z] result(s). -[2024-03-07T16:33:08.717Z] -[2024-03-07T16:33:08.717Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.717Z] """ -[2024-03-07T16:33:08.717Z] __tracebackhide__ = True -[2024-03-07T16:33:08.717Z] results: list[object] = [] -[2024-03-07T16:33:08.717Z] exception = None -[2024-03-07T16:33:08.717Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.718Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.718Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.718Z] except KeyError: -[2024-03-07T16:33:08.718Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.718Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.718Z] raise HookCallError( -[2024-03-07T16:33:08.718Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.718Z] ) -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.718Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.718Z] # which is the desired response. -[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.718Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.718Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.718Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.718Z] except StopIteration: -[2024-03-07T16:33:08.718Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.718Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.718Z] # which is the desired response. -[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.718Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.718Z] next(function_gen) # first yield -[2024-03-07T16:33:08.718Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.718Z] except StopIteration: -[2024-03-07T16:33:08.718Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.718Z] else: -[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.718Z] if res is not None: -[2024-03-07T16:33:08.718Z] results.append(res) -[2024-03-07T16:33:08.718Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.718Z] break -[2024-03-07T16:33:08.718Z] except BaseException as exc: -[2024-03-07T16:33:08.718Z] exception = exc -[2024-03-07T16:33:08.718Z] finally: -[2024-03-07T16:33:08.718Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.718Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.718Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.718Z] result = results[0] if results else None -[2024-03-07T16:33:08.718Z] else: -[2024-03-07T16:33:08.718Z] result = results -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.718Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] if exception is not None: -[2024-03-07T16:33:08.718Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.718Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.718Z] item = -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.718Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.718Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.718Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.718Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.718Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.718Z] item = , when = 'setup' -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.718Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.718Z] with catching_logs( -[2024-03-07T16:33:08.718Z] self.caplog_handler, -[2024-03-07T16:33:08.718Z] level=self.log_level, -[2024-03-07T16:33:08.718Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.718Z] self.report_handler, -[2024-03-07T16:33:08.718Z] level=self.log_level, -[2024-03-07T16:33:08.718Z] ) as report_handler: -[2024-03-07T16:33:08.718Z] caplog_handler.reset() -[2024-03-07T16:33:08.718Z] report_handler.reset() -[2024-03-07T16:33:08.718Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.718Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] > yield -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.718Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.718Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.718Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] def _multicall( -[2024-03-07T16:33:08.718Z] hook_name: str, -[2024-03-07T16:33:08.718Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.718Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.718Z] firstresult: bool, -[2024-03-07T16:33:08.718Z] ) -> object | list[object]: -[2024-03-07T16:33:08.718Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.718Z] result(s). -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.718Z] """ -[2024-03-07T16:33:08.718Z] __tracebackhide__ = True -[2024-03-07T16:33:08.718Z] results: list[object] = [] -[2024-03-07T16:33:08.718Z] exception = None -[2024-03-07T16:33:08.718Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.718Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.718Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.718Z] except KeyError: -[2024-03-07T16:33:08.718Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.718Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.718Z] raise HookCallError( -[2024-03-07T16:33:08.718Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.718Z] ) -[2024-03-07T16:33:08.718Z] -[2024-03-07T16:33:08.718Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.718Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.718Z] # which is the desired response. -[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.718Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.718Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.718Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.718Z] except StopIteration: -[2024-03-07T16:33:08.718Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.718Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.718Z] try: -[2024-03-07T16:33:08.718Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.718Z] # which is the desired response. -[2024-03-07T16:33:08.718Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.718Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.718Z] next(function_gen) # first yield -[2024-03-07T16:33:08.719Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.719Z] except StopIteration: -[2024-03-07T16:33:08.719Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.719Z] else: -[2024-03-07T16:33:08.719Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.719Z] if res is not None: -[2024-03-07T16:33:08.719Z] results.append(res) -[2024-03-07T16:33:08.719Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.719Z] break -[2024-03-07T16:33:08.719Z] except BaseException as exc: -[2024-03-07T16:33:08.719Z] exception = exc -[2024-03-07T16:33:08.719Z] finally: -[2024-03-07T16:33:08.719Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.719Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.719Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.719Z] result = results[0] if results else None -[2024-03-07T16:33:08.719Z] else: -[2024-03-07T16:33:08.719Z] result = results -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.719Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.719Z] try: -[2024-03-07T16:33:08.719Z] if exception is not None: -[2024-03-07T16:33:08.719Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.719Z] item = -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.719Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.719Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.719Z] > return (yield) -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.719Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.719Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] def _multicall( -[2024-03-07T16:33:08.719Z] hook_name: str, -[2024-03-07T16:33:08.719Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.719Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.719Z] firstresult: bool, -[2024-03-07T16:33:08.719Z] ) -> object | list[object]: -[2024-03-07T16:33:08.719Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.719Z] result(s). -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.719Z] """ -[2024-03-07T16:33:08.719Z] __tracebackhide__ = True -[2024-03-07T16:33:08.719Z] results: list[object] = [] -[2024-03-07T16:33:08.719Z] exception = None -[2024-03-07T16:33:08.719Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.719Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.719Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.719Z] try: -[2024-03-07T16:33:08.719Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.719Z] try: -[2024-03-07T16:33:08.719Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.719Z] except KeyError: -[2024-03-07T16:33:08.719Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.719Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.719Z] raise HookCallError( -[2024-03-07T16:33:08.719Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.719Z] ) -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.719Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.719Z] try: -[2024-03-07T16:33:08.719Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.719Z] # which is the desired response. -[2024-03-07T16:33:08.719Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.719Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.719Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.719Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.719Z] except StopIteration: -[2024-03-07T16:33:08.719Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.719Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.719Z] try: -[2024-03-07T16:33:08.719Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.719Z] # which is the desired response. -[2024-03-07T16:33:08.719Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.719Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.719Z] next(function_gen) # first yield -[2024-03-07T16:33:08.719Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.719Z] except StopIteration: -[2024-03-07T16:33:08.719Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.719Z] else: -[2024-03-07T16:33:08.719Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.719Z] if res is not None: -[2024-03-07T16:33:08.719Z] results.append(res) -[2024-03-07T16:33:08.719Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.719Z] break -[2024-03-07T16:33:08.719Z] except BaseException as exc: -[2024-03-07T16:33:08.719Z] exception = exc -[2024-03-07T16:33:08.719Z] finally: -[2024-03-07T16:33:08.719Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.719Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.719Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.719Z] result = results[0] if results else None -[2024-03-07T16:33:08.719Z] else: -[2024-03-07T16:33:08.719Z] result = results -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.719Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.719Z] try: -[2024-03-07T16:33:08.719Z] if exception is not None: -[2024-03-07T16:33:08.719Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.719Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.719Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.719Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.719Z] try: -[2024-03-07T16:33:08.719Z] > yield -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.719Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.719Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.719Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.719Z] -[2024-03-07T16:33:08.719Z] def _multicall( -[2024-03-07T16:33:08.719Z] hook_name: str, -[2024-03-07T16:33:08.719Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.719Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.719Z] firstresult: bool, -[2024-03-07T16:33:08.720Z] ) -> object | list[object]: -[2024-03-07T16:33:08.720Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.720Z] result(s). -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.720Z] """ -[2024-03-07T16:33:08.720Z] __tracebackhide__ = True -[2024-03-07T16:33:08.720Z] results: list[object] = [] -[2024-03-07T16:33:08.720Z] exception = None -[2024-03-07T16:33:08.720Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.720Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.720Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.720Z] try: -[2024-03-07T16:33:08.720Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.720Z] try: -[2024-03-07T16:33:08.720Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.720Z] except KeyError: -[2024-03-07T16:33:08.720Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.720Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.720Z] raise HookCallError( -[2024-03-07T16:33:08.720Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.720Z] ) -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.720Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.720Z] try: -[2024-03-07T16:33:08.720Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.720Z] # which is the desired response. -[2024-03-07T16:33:08.720Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.720Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.720Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.720Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.720Z] except StopIteration: -[2024-03-07T16:33:08.720Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.720Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.720Z] try: -[2024-03-07T16:33:08.720Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.720Z] # which is the desired response. -[2024-03-07T16:33:08.720Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.720Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.720Z] next(function_gen) # first yield -[2024-03-07T16:33:08.720Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.720Z] except StopIteration: -[2024-03-07T16:33:08.720Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.720Z] else: -[2024-03-07T16:33:08.720Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] item = -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.720Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.720Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.720Z] item = -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.720Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.720Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.720Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.720Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.720Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.720Z] if exc: -[2024-03-07T16:33:08.720Z] > raise exc -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] cls = -[2024-03-07T16:33:08.720Z] func = . at 0x7f0abbb08550> -[2024-03-07T16:33:08.720Z] when = 'setup' -[2024-03-07T16:33:08.720Z] reraise = (, ) -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] @classmethod -[2024-03-07T16:33:08.720Z] def from_call( -[2024-03-07T16:33:08.720Z] cls, -[2024-03-07T16:33:08.720Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.720Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.720Z] reraise: Optional[ -[2024-03-07T16:33:08.720Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.720Z] ] = None, -[2024-03-07T16:33:08.720Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.720Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] :param func: -[2024-03-07T16:33:08.720Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.720Z] :param when: -[2024-03-07T16:33:08.720Z] The phase in which the function is called. -[2024-03-07T16:33:08.720Z] :param reraise: -[2024-03-07T16:33:08.720Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.720Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.720Z] """ -[2024-03-07T16:33:08.720Z] excinfo = None -[2024-03-07T16:33:08.720Z] start = timing.time() -[2024-03-07T16:33:08.720Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.720Z] try: -[2024-03-07T16:33:08.720Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.720Z] ) -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] self = -[2024-03-07T16:33:08.720Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.720Z] """Call the hook. -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.720Z] specification. -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.720Z] :ref:`calling`. -[2024-03-07T16:33:08.720Z] """ -[2024-03-07T16:33:08.720Z] assert ( -[2024-03-07T16:33:08.720Z] not self.is_historic() -[2024-03-07T16:33:08.720Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.720Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.720Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.720Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.720Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.720Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.720Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.720Z] methods = [>, >, ...] -[2024-03-07T16:33:08.720Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.720Z] -[2024-03-07T16:33:08.720Z] def _hookexec( -[2024-03-07T16:33:08.720Z] self, -[2024-03-07T16:33:08.720Z] hook_name: str, -[2024-03-07T16:33:08.720Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.721Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.721Z] firstresult: bool, -[2024-03-07T16:33:08.721Z] ) -> object | list[object]: -[2024-03-07T16:33:08.721Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.721Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.721Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.721Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.721Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.721Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] def _multicall( -[2024-03-07T16:33:08.721Z] hook_name: str, -[2024-03-07T16:33:08.721Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.721Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.721Z] firstresult: bool, -[2024-03-07T16:33:08.721Z] ) -> object | list[object]: -[2024-03-07T16:33:08.721Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.721Z] result(s). -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.721Z] """ -[2024-03-07T16:33:08.721Z] __tracebackhide__ = True -[2024-03-07T16:33:08.721Z] results: list[object] = [] -[2024-03-07T16:33:08.721Z] exception = None -[2024-03-07T16:33:08.721Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.721Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.721Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.721Z] try: -[2024-03-07T16:33:08.721Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.721Z] try: -[2024-03-07T16:33:08.721Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.721Z] except KeyError: -[2024-03-07T16:33:08.721Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.721Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.721Z] raise HookCallError( -[2024-03-07T16:33:08.721Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.721Z] ) -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.721Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.721Z] try: -[2024-03-07T16:33:08.721Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.721Z] # which is the desired response. -[2024-03-07T16:33:08.721Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.721Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.721Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.721Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.721Z] except StopIteration: -[2024-03-07T16:33:08.721Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.721Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.721Z] try: -[2024-03-07T16:33:08.721Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.721Z] # which is the desired response. -[2024-03-07T16:33:08.721Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.721Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.721Z] next(function_gen) # first yield -[2024-03-07T16:33:08.721Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.721Z] except StopIteration: -[2024-03-07T16:33:08.721Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.721Z] else: -[2024-03-07T16:33:08.721Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.721Z] if res is not None: -[2024-03-07T16:33:08.721Z] results.append(res) -[2024-03-07T16:33:08.721Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.721Z] break -[2024-03-07T16:33:08.721Z] except BaseException as exc: -[2024-03-07T16:33:08.721Z] exception = exc -[2024-03-07T16:33:08.721Z] finally: -[2024-03-07T16:33:08.721Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.721Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.721Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.721Z] result = results[0] if results else None -[2024-03-07T16:33:08.721Z] else: -[2024-03-07T16:33:08.721Z] result = results -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.721Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.721Z] try: -[2024-03-07T16:33:08.721Z] if exception is not None: -[2024-03-07T16:33:08.721Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.721Z] else: -[2024-03-07T16:33:08.721Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.721Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.721Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.721Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.721Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.721Z] except StopIteration as si: -[2024-03-07T16:33:08.721Z] result = si.value -[2024-03-07T16:33:08.721Z] exception = None -[2024-03-07T16:33:08.721Z] continue -[2024-03-07T16:33:08.721Z] except BaseException as e: -[2024-03-07T16:33:08.721Z] exception = e -[2024-03-07T16:33:08.721Z] continue -[2024-03-07T16:33:08.721Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] if exception is not None: -[2024-03-07T16:33:08.721Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.721Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.721Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.721Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] def _multicall( -[2024-03-07T16:33:08.721Z] hook_name: str, -[2024-03-07T16:33:08.721Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.721Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.721Z] firstresult: bool, -[2024-03-07T16:33:08.721Z] ) -> object | list[object]: -[2024-03-07T16:33:08.721Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.721Z] result(s). -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.721Z] """ -[2024-03-07T16:33:08.721Z] __tracebackhide__ = True -[2024-03-07T16:33:08.721Z] results: list[object] = [] -[2024-03-07T16:33:08.721Z] exception = None -[2024-03-07T16:33:08.721Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.721Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.721Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.721Z] try: -[2024-03-07T16:33:08.721Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.721Z] try: -[2024-03-07T16:33:08.721Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.721Z] except KeyError: -[2024-03-07T16:33:08.721Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.721Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.721Z] raise HookCallError( -[2024-03-07T16:33:08.721Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.721Z] ) -[2024-03-07T16:33:08.721Z] -[2024-03-07T16:33:08.721Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.721Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.721Z] try: -[2024-03-07T16:33:08.721Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.721Z] # which is the desired response. -[2024-03-07T16:33:08.721Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.721Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.721Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.721Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.722Z] except StopIteration: -[2024-03-07T16:33:08.722Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.722Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.722Z] try: -[2024-03-07T16:33:08.722Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.722Z] # which is the desired response. -[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.722Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.722Z] next(function_gen) # first yield -[2024-03-07T16:33:08.722Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.722Z] except StopIteration: -[2024-03-07T16:33:08.722Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.722Z] else: -[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.722Z] if res is not None: -[2024-03-07T16:33:08.722Z] results.append(res) -[2024-03-07T16:33:08.722Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.722Z] break -[2024-03-07T16:33:08.722Z] except BaseException as exc: -[2024-03-07T16:33:08.722Z] exception = exc -[2024-03-07T16:33:08.722Z] finally: -[2024-03-07T16:33:08.722Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.722Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.722Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.722Z] result = results[0] if results else None -[2024-03-07T16:33:08.722Z] else: -[2024-03-07T16:33:08.722Z] result = results -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.722Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.722Z] try: -[2024-03-07T16:33:08.722Z] if exception is not None: -[2024-03-07T16:33:08.722Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.722Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.722Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.722Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.722Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.722Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.722Z] try: -[2024-03-07T16:33:08.722Z] > yield -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.722Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.722Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.722Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] def _multicall( -[2024-03-07T16:33:08.722Z] hook_name: str, -[2024-03-07T16:33:08.722Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.722Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.722Z] firstresult: bool, -[2024-03-07T16:33:08.722Z] ) -> object | list[object]: -[2024-03-07T16:33:08.722Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.722Z] result(s). -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.722Z] """ -[2024-03-07T16:33:08.722Z] __tracebackhide__ = True -[2024-03-07T16:33:08.722Z] results: list[object] = [] -[2024-03-07T16:33:08.722Z] exception = None -[2024-03-07T16:33:08.722Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.722Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.722Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.722Z] try: -[2024-03-07T16:33:08.722Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.722Z] try: -[2024-03-07T16:33:08.722Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.722Z] except KeyError: -[2024-03-07T16:33:08.722Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.722Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.722Z] raise HookCallError( -[2024-03-07T16:33:08.722Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.722Z] ) -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.722Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.722Z] try: -[2024-03-07T16:33:08.722Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.722Z] # which is the desired response. -[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.722Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.722Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.722Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.722Z] except StopIteration: -[2024-03-07T16:33:08.722Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.722Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.722Z] try: -[2024-03-07T16:33:08.722Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.722Z] # which is the desired response. -[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.722Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.722Z] next(function_gen) # first yield -[2024-03-07T16:33:08.722Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.722Z] except StopIteration: -[2024-03-07T16:33:08.722Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.722Z] else: -[2024-03-07T16:33:08.722Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.722Z] if res is not None: -[2024-03-07T16:33:08.722Z] results.append(res) -[2024-03-07T16:33:08.722Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.722Z] break -[2024-03-07T16:33:08.722Z] except BaseException as exc: -[2024-03-07T16:33:08.722Z] exception = exc -[2024-03-07T16:33:08.722Z] finally: -[2024-03-07T16:33:08.722Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.722Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.722Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.722Z] result = results[0] if results else None -[2024-03-07T16:33:08.722Z] else: -[2024-03-07T16:33:08.722Z] result = results -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.722Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.722Z] try: -[2024-03-07T16:33:08.722Z] if exception is not None: -[2024-03-07T16:33:08.722Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.722Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.722Z] item = -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.722Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.722Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.722Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.722Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.722Z] -[2024-03-07T16:33:08.722Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.723Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.723Z] item = , when = 'setup' -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.723Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.723Z] with catching_logs( -[2024-03-07T16:33:08.723Z] self.caplog_handler, -[2024-03-07T16:33:08.723Z] level=self.log_level, -[2024-03-07T16:33:08.723Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.723Z] self.report_handler, -[2024-03-07T16:33:08.723Z] level=self.log_level, -[2024-03-07T16:33:08.723Z] ) as report_handler: -[2024-03-07T16:33:08.723Z] caplog_handler.reset() -[2024-03-07T16:33:08.723Z] report_handler.reset() -[2024-03-07T16:33:08.723Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.723Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] try: -[2024-03-07T16:33:08.723Z] > yield -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.723Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.723Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.723Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] def _multicall( -[2024-03-07T16:33:08.723Z] hook_name: str, -[2024-03-07T16:33:08.723Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.723Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.723Z] firstresult: bool, -[2024-03-07T16:33:08.723Z] ) -> object | list[object]: -[2024-03-07T16:33:08.723Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.723Z] result(s). -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.723Z] """ -[2024-03-07T16:33:08.723Z] __tracebackhide__ = True -[2024-03-07T16:33:08.723Z] results: list[object] = [] -[2024-03-07T16:33:08.723Z] exception = None -[2024-03-07T16:33:08.723Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.723Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.723Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.723Z] try: -[2024-03-07T16:33:08.723Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.723Z] try: -[2024-03-07T16:33:08.723Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.723Z] except KeyError: -[2024-03-07T16:33:08.723Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.723Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.723Z] raise HookCallError( -[2024-03-07T16:33:08.723Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.723Z] ) -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.723Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.723Z] try: -[2024-03-07T16:33:08.723Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.723Z] # which is the desired response. -[2024-03-07T16:33:08.723Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.723Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.723Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.723Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.723Z] except StopIteration: -[2024-03-07T16:33:08.723Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.723Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.723Z] try: -[2024-03-07T16:33:08.723Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.723Z] # which is the desired response. -[2024-03-07T16:33:08.723Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.723Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.723Z] next(function_gen) # first yield -[2024-03-07T16:33:08.723Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.723Z] except StopIteration: -[2024-03-07T16:33:08.723Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.723Z] else: -[2024-03-07T16:33:08.723Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.723Z] if res is not None: -[2024-03-07T16:33:08.723Z] results.append(res) -[2024-03-07T16:33:08.723Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.723Z] break -[2024-03-07T16:33:08.723Z] except BaseException as exc: -[2024-03-07T16:33:08.723Z] exception = exc -[2024-03-07T16:33:08.723Z] finally: -[2024-03-07T16:33:08.723Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.723Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.723Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.723Z] result = results[0] if results else None -[2024-03-07T16:33:08.723Z] else: -[2024-03-07T16:33:08.723Z] result = results -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.723Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.723Z] try: -[2024-03-07T16:33:08.723Z] if exception is not None: -[2024-03-07T16:33:08.723Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.723Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.723Z] item = -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.723Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.723Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.723Z] > return (yield) -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.723Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.723Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.723Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] def _multicall( -[2024-03-07T16:33:08.723Z] hook_name: str, -[2024-03-07T16:33:08.723Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.723Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.723Z] firstresult: bool, -[2024-03-07T16:33:08.723Z] ) -> object | list[object]: -[2024-03-07T16:33:08.723Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.723Z] result(s). -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.723Z] """ -[2024-03-07T16:33:08.723Z] __tracebackhide__ = True -[2024-03-07T16:33:08.723Z] results: list[object] = [] -[2024-03-07T16:33:08.723Z] exception = None -[2024-03-07T16:33:08.723Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.723Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.723Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.723Z] try: -[2024-03-07T16:33:08.723Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.723Z] try: -[2024-03-07T16:33:08.723Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.723Z] except KeyError: -[2024-03-07T16:33:08.723Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.723Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.723Z] raise HookCallError( -[2024-03-07T16:33:08.723Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.723Z] ) -[2024-03-07T16:33:08.723Z] -[2024-03-07T16:33:08.723Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.724Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.724Z] try: -[2024-03-07T16:33:08.724Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.724Z] # which is the desired response. -[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.724Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.724Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.724Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.724Z] except StopIteration: -[2024-03-07T16:33:08.724Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.724Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.724Z] try: -[2024-03-07T16:33:08.724Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.724Z] # which is the desired response. -[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.724Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.724Z] next(function_gen) # first yield -[2024-03-07T16:33:08.724Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.724Z] except StopIteration: -[2024-03-07T16:33:08.724Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.724Z] else: -[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.724Z] if res is not None: -[2024-03-07T16:33:08.724Z] results.append(res) -[2024-03-07T16:33:08.724Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.724Z] break -[2024-03-07T16:33:08.724Z] except BaseException as exc: -[2024-03-07T16:33:08.724Z] exception = exc -[2024-03-07T16:33:08.724Z] finally: -[2024-03-07T16:33:08.724Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.724Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.724Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.724Z] result = results[0] if results else None -[2024-03-07T16:33:08.724Z] else: -[2024-03-07T16:33:08.724Z] result = results -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.724Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.724Z] try: -[2024-03-07T16:33:08.724Z] if exception is not None: -[2024-03-07T16:33:08.724Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.724Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.724Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.724Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.724Z] try: -[2024-03-07T16:33:08.724Z] > yield -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.724Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.724Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] def _multicall( -[2024-03-07T16:33:08.724Z] hook_name: str, -[2024-03-07T16:33:08.724Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.724Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.724Z] firstresult: bool, -[2024-03-07T16:33:08.724Z] ) -> object | list[object]: -[2024-03-07T16:33:08.724Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.724Z] result(s). -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.724Z] """ -[2024-03-07T16:33:08.724Z] __tracebackhide__ = True -[2024-03-07T16:33:08.724Z] results: list[object] = [] -[2024-03-07T16:33:08.724Z] exception = None -[2024-03-07T16:33:08.724Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.724Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.724Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.724Z] try: -[2024-03-07T16:33:08.724Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.724Z] try: -[2024-03-07T16:33:08.724Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.724Z] except KeyError: -[2024-03-07T16:33:08.724Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.724Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.724Z] raise HookCallError( -[2024-03-07T16:33:08.724Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.724Z] ) -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.724Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.724Z] try: -[2024-03-07T16:33:08.724Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.724Z] # which is the desired response. -[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.724Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.724Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.724Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.724Z] except StopIteration: -[2024-03-07T16:33:08.724Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.724Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.724Z] try: -[2024-03-07T16:33:08.724Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.724Z] # which is the desired response. -[2024-03-07T16:33:08.724Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.724Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.724Z] next(function_gen) # first yield -[2024-03-07T16:33:08.724Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.724Z] except StopIteration: -[2024-03-07T16:33:08.724Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.724Z] else: -[2024-03-07T16:33:08.724Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] item = -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.724Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.724Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.724Z] item = -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.724Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.724Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.724Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.724Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.724Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.724Z] if exc: -[2024-03-07T16:33:08.724Z] > raise exc -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.724Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] cls = -[2024-03-07T16:33:08.724Z] func = . at 0x7f0abc051900> -[2024-03-07T16:33:08.724Z] when = 'setup' -[2024-03-07T16:33:08.724Z] reraise = (, ) -[2024-03-07T16:33:08.724Z] -[2024-03-07T16:33:08.724Z] @classmethod -[2024-03-07T16:33:08.725Z] def from_call( -[2024-03-07T16:33:08.725Z] cls, -[2024-03-07T16:33:08.725Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.725Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.725Z] reraise: Optional[ -[2024-03-07T16:33:08.725Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.725Z] ] = None, -[2024-03-07T16:33:08.725Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.725Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] :param func: -[2024-03-07T16:33:08.725Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.725Z] :param when: -[2024-03-07T16:33:08.725Z] The phase in which the function is called. -[2024-03-07T16:33:08.725Z] :param reraise: -[2024-03-07T16:33:08.725Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.725Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.725Z] """ -[2024-03-07T16:33:08.725Z] excinfo = None -[2024-03-07T16:33:08.725Z] start = timing.time() -[2024-03-07T16:33:08.725Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.725Z] try: -[2024-03-07T16:33:08.725Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.725Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.725Z] ) -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.725Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] self = -[2024-03-07T16:33:08.725Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.725Z] """Call the hook. -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.725Z] specification. -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.725Z] :ref:`calling`. -[2024-03-07T16:33:08.725Z] """ -[2024-03-07T16:33:08.725Z] assert ( -[2024-03-07T16:33:08.725Z] not self.is_historic() -[2024-03-07T16:33:08.725Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.725Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.725Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.725Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.725Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.725Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.725Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.725Z] methods = [>, >, ...] -[2024-03-07T16:33:08.725Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] def _hookexec( -[2024-03-07T16:33:08.725Z] self, -[2024-03-07T16:33:08.725Z] hook_name: str, -[2024-03-07T16:33:08.725Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.725Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.725Z] firstresult: bool, -[2024-03-07T16:33:08.725Z] ) -> object | list[object]: -[2024-03-07T16:33:08.725Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.725Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.725Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.725Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.725Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.725Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] def _multicall( -[2024-03-07T16:33:08.725Z] hook_name: str, -[2024-03-07T16:33:08.725Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.725Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.725Z] firstresult: bool, -[2024-03-07T16:33:08.725Z] ) -> object | list[object]: -[2024-03-07T16:33:08.725Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.725Z] result(s). -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.725Z] """ -[2024-03-07T16:33:08.725Z] __tracebackhide__ = True -[2024-03-07T16:33:08.725Z] results: list[object] = [] -[2024-03-07T16:33:08.725Z] exception = None -[2024-03-07T16:33:08.725Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.725Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.725Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.725Z] try: -[2024-03-07T16:33:08.725Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.725Z] try: -[2024-03-07T16:33:08.725Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.725Z] except KeyError: -[2024-03-07T16:33:08.725Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.725Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.725Z] raise HookCallError( -[2024-03-07T16:33:08.725Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.725Z] ) -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.725Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.725Z] try: -[2024-03-07T16:33:08.725Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.725Z] # which is the desired response. -[2024-03-07T16:33:08.725Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.725Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.725Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.725Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.725Z] except StopIteration: -[2024-03-07T16:33:08.725Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.725Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.725Z] try: -[2024-03-07T16:33:08.725Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.725Z] # which is the desired response. -[2024-03-07T16:33:08.725Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.725Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.725Z] next(function_gen) # first yield -[2024-03-07T16:33:08.725Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.725Z] except StopIteration: -[2024-03-07T16:33:08.725Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.725Z] else: -[2024-03-07T16:33:08.725Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.725Z] if res is not None: -[2024-03-07T16:33:08.725Z] results.append(res) -[2024-03-07T16:33:08.725Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.725Z] break -[2024-03-07T16:33:08.725Z] except BaseException as exc: -[2024-03-07T16:33:08.725Z] exception = exc -[2024-03-07T16:33:08.725Z] finally: -[2024-03-07T16:33:08.725Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.725Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.725Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.725Z] result = results[0] if results else None -[2024-03-07T16:33:08.725Z] else: -[2024-03-07T16:33:08.725Z] result = results -[2024-03-07T16:33:08.725Z] -[2024-03-07T16:33:08.725Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.725Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.725Z] try: -[2024-03-07T16:33:08.725Z] if exception is not None: -[2024-03-07T16:33:08.725Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.725Z] else: -[2024-03-07T16:33:08.725Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.725Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.725Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.726Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.726Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.726Z] except StopIteration as si: -[2024-03-07T16:33:08.726Z] result = si.value -[2024-03-07T16:33:08.726Z] exception = None -[2024-03-07T16:33:08.726Z] continue -[2024-03-07T16:33:08.726Z] except BaseException as e: -[2024-03-07T16:33:08.726Z] exception = e -[2024-03-07T16:33:08.726Z] continue -[2024-03-07T16:33:08.726Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] if exception is not None: -[2024-03-07T16:33:08.726Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.726Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.726Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.726Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] def _multicall( -[2024-03-07T16:33:08.726Z] hook_name: str, -[2024-03-07T16:33:08.726Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.726Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.726Z] firstresult: bool, -[2024-03-07T16:33:08.726Z] ) -> object | list[object]: -[2024-03-07T16:33:08.726Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.726Z] result(s). -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.726Z] """ -[2024-03-07T16:33:08.726Z] __tracebackhide__ = True -[2024-03-07T16:33:08.726Z] results: list[object] = [] -[2024-03-07T16:33:08.726Z] exception = None -[2024-03-07T16:33:08.726Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.726Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.726Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.726Z] try: -[2024-03-07T16:33:08.726Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.726Z] try: -[2024-03-07T16:33:08.726Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.726Z] except KeyError: -[2024-03-07T16:33:08.726Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.726Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.726Z] raise HookCallError( -[2024-03-07T16:33:08.726Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.726Z] ) -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.726Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.726Z] try: -[2024-03-07T16:33:08.726Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.726Z] # which is the desired response. -[2024-03-07T16:33:08.726Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.726Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.726Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.726Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.726Z] except StopIteration: -[2024-03-07T16:33:08.726Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.726Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.726Z] try: -[2024-03-07T16:33:08.726Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.726Z] # which is the desired response. -[2024-03-07T16:33:08.726Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.726Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.726Z] next(function_gen) # first yield -[2024-03-07T16:33:08.726Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.726Z] except StopIteration: -[2024-03-07T16:33:08.726Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.726Z] else: -[2024-03-07T16:33:08.726Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.726Z] if res is not None: -[2024-03-07T16:33:08.726Z] results.append(res) -[2024-03-07T16:33:08.726Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.726Z] break -[2024-03-07T16:33:08.726Z] except BaseException as exc: -[2024-03-07T16:33:08.726Z] exception = exc -[2024-03-07T16:33:08.726Z] finally: -[2024-03-07T16:33:08.726Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.726Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.726Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.726Z] result = results[0] if results else None -[2024-03-07T16:33:08.726Z] else: -[2024-03-07T16:33:08.726Z] result = results -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.726Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.726Z] try: -[2024-03-07T16:33:08.726Z] if exception is not None: -[2024-03-07T16:33:08.726Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.726Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.726Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.726Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.726Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.726Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.726Z] try: -[2024-03-07T16:33:08.726Z] > yield -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.726Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.726Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.726Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] def _multicall( -[2024-03-07T16:33:08.726Z] hook_name: str, -[2024-03-07T16:33:08.726Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.726Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.726Z] firstresult: bool, -[2024-03-07T16:33:08.726Z] ) -> object | list[object]: -[2024-03-07T16:33:08.726Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.726Z] result(s). -[2024-03-07T16:33:08.726Z] -[2024-03-07T16:33:08.726Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.726Z] """ -[2024-03-07T16:33:08.726Z] __tracebackhide__ = True -[2024-03-07T16:33:08.726Z] results: list[object] = [] -[2024-03-07T16:33:08.726Z] exception = None -[2024-03-07T16:33:08.726Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.726Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.726Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.726Z] try: -[2024-03-07T16:33:08.726Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.726Z] try: -[2024-03-07T16:33:08.726Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.726Z] except KeyError: -[2024-03-07T16:33:08.726Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.726Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.726Z] raise HookCallError( -[2024-03-07T16:33:08.727Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.727Z] ) -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.727Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.727Z] try: -[2024-03-07T16:33:08.727Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.727Z] # which is the desired response. -[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.727Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.727Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.727Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.727Z] except StopIteration: -[2024-03-07T16:33:08.727Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.727Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.727Z] try: -[2024-03-07T16:33:08.727Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.727Z] # which is the desired response. -[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.727Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.727Z] next(function_gen) # first yield -[2024-03-07T16:33:08.727Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.727Z] except StopIteration: -[2024-03-07T16:33:08.727Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.727Z] else: -[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.727Z] if res is not None: -[2024-03-07T16:33:08.727Z] results.append(res) -[2024-03-07T16:33:08.727Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.727Z] break -[2024-03-07T16:33:08.727Z] except BaseException as exc: -[2024-03-07T16:33:08.727Z] exception = exc -[2024-03-07T16:33:08.727Z] finally: -[2024-03-07T16:33:08.727Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.727Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.727Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.727Z] result = results[0] if results else None -[2024-03-07T16:33:08.727Z] else: -[2024-03-07T16:33:08.727Z] result = results -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.727Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.727Z] try: -[2024-03-07T16:33:08.727Z] if exception is not None: -[2024-03-07T16:33:08.727Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.727Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.727Z] item = -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.727Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.727Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.727Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.727Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.727Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.727Z] item = , when = 'setup' -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.727Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.727Z] with catching_logs( -[2024-03-07T16:33:08.727Z] self.caplog_handler, -[2024-03-07T16:33:08.727Z] level=self.log_level, -[2024-03-07T16:33:08.727Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.727Z] self.report_handler, -[2024-03-07T16:33:08.727Z] level=self.log_level, -[2024-03-07T16:33:08.727Z] ) as report_handler: -[2024-03-07T16:33:08.727Z] caplog_handler.reset() -[2024-03-07T16:33:08.727Z] report_handler.reset() -[2024-03-07T16:33:08.727Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.727Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] try: -[2024-03-07T16:33:08.727Z] > yield -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.727Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.727Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.727Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] def _multicall( -[2024-03-07T16:33:08.727Z] hook_name: str, -[2024-03-07T16:33:08.727Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.727Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.727Z] firstresult: bool, -[2024-03-07T16:33:08.727Z] ) -> object | list[object]: -[2024-03-07T16:33:08.727Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.727Z] result(s). -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.727Z] """ -[2024-03-07T16:33:08.727Z] __tracebackhide__ = True -[2024-03-07T16:33:08.727Z] results: list[object] = [] -[2024-03-07T16:33:08.727Z] exception = None -[2024-03-07T16:33:08.727Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.727Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.727Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.727Z] try: -[2024-03-07T16:33:08.727Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.727Z] try: -[2024-03-07T16:33:08.727Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.727Z] except KeyError: -[2024-03-07T16:33:08.727Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.727Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.727Z] raise HookCallError( -[2024-03-07T16:33:08.727Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.727Z] ) -[2024-03-07T16:33:08.727Z] -[2024-03-07T16:33:08.727Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.727Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.727Z] try: -[2024-03-07T16:33:08.727Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.727Z] # which is the desired response. -[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.727Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.727Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.727Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.727Z] except StopIteration: -[2024-03-07T16:33:08.727Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.727Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.727Z] try: -[2024-03-07T16:33:08.727Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.727Z] # which is the desired response. -[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.727Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.727Z] next(function_gen) # first yield -[2024-03-07T16:33:08.727Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.727Z] except StopIteration: -[2024-03-07T16:33:08.727Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.727Z] else: -[2024-03-07T16:33:08.727Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.727Z] if res is not None: -[2024-03-07T16:33:08.727Z] results.append(res) -[2024-03-07T16:33:08.727Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.727Z] break -[2024-03-07T16:33:08.728Z] except BaseException as exc: -[2024-03-07T16:33:08.728Z] exception = exc -[2024-03-07T16:33:08.728Z] finally: -[2024-03-07T16:33:08.728Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.728Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.728Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.728Z] result = results[0] if results else None -[2024-03-07T16:33:08.728Z] else: -[2024-03-07T16:33:08.728Z] result = results -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.728Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.728Z] try: -[2024-03-07T16:33:08.728Z] if exception is not None: -[2024-03-07T16:33:08.728Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.728Z] item = -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.728Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.728Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.728Z] > return (yield) -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.728Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.728Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] def _multicall( -[2024-03-07T16:33:08.728Z] hook_name: str, -[2024-03-07T16:33:08.728Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.728Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.728Z] firstresult: bool, -[2024-03-07T16:33:08.728Z] ) -> object | list[object]: -[2024-03-07T16:33:08.728Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.728Z] result(s). -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.728Z] """ -[2024-03-07T16:33:08.728Z] __tracebackhide__ = True -[2024-03-07T16:33:08.728Z] results: list[object] = [] -[2024-03-07T16:33:08.728Z] exception = None -[2024-03-07T16:33:08.728Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.728Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.728Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.728Z] try: -[2024-03-07T16:33:08.728Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.728Z] try: -[2024-03-07T16:33:08.728Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.728Z] except KeyError: -[2024-03-07T16:33:08.728Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.728Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.728Z] raise HookCallError( -[2024-03-07T16:33:08.728Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.728Z] ) -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.728Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.728Z] try: -[2024-03-07T16:33:08.728Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.728Z] # which is the desired response. -[2024-03-07T16:33:08.728Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.728Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.728Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.728Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.728Z] except StopIteration: -[2024-03-07T16:33:08.728Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.728Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.728Z] try: -[2024-03-07T16:33:08.728Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.728Z] # which is the desired response. -[2024-03-07T16:33:08.728Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.728Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.728Z] next(function_gen) # first yield -[2024-03-07T16:33:08.728Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.728Z] except StopIteration: -[2024-03-07T16:33:08.728Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.728Z] else: -[2024-03-07T16:33:08.728Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.728Z] if res is not None: -[2024-03-07T16:33:08.728Z] results.append(res) -[2024-03-07T16:33:08.728Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.728Z] break -[2024-03-07T16:33:08.728Z] except BaseException as exc: -[2024-03-07T16:33:08.728Z] exception = exc -[2024-03-07T16:33:08.728Z] finally: -[2024-03-07T16:33:08.728Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.728Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.728Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.728Z] result = results[0] if results else None -[2024-03-07T16:33:08.728Z] else: -[2024-03-07T16:33:08.728Z] result = results -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.728Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.728Z] try: -[2024-03-07T16:33:08.728Z] if exception is not None: -[2024-03-07T16:33:08.728Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.728Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.728Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.728Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.728Z] try: -[2024-03-07T16:33:08.728Z] > yield -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.728Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.728Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.728Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] def _multicall( -[2024-03-07T16:33:08.728Z] hook_name: str, -[2024-03-07T16:33:08.728Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.728Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.728Z] firstresult: bool, -[2024-03-07T16:33:08.728Z] ) -> object | list[object]: -[2024-03-07T16:33:08.728Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.728Z] result(s). -[2024-03-07T16:33:08.728Z] -[2024-03-07T16:33:08.728Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.729Z] """ -[2024-03-07T16:33:08.729Z] __tracebackhide__ = True -[2024-03-07T16:33:08.729Z] results: list[object] = [] -[2024-03-07T16:33:08.729Z] exception = None -[2024-03-07T16:33:08.729Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.729Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.729Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.729Z] try: -[2024-03-07T16:33:08.729Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.729Z] try: -[2024-03-07T16:33:08.729Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.729Z] except KeyError: -[2024-03-07T16:33:08.729Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.729Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.729Z] raise HookCallError( -[2024-03-07T16:33:08.729Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.729Z] ) -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.729Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.729Z] try: -[2024-03-07T16:33:08.729Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.729Z] # which is the desired response. -[2024-03-07T16:33:08.729Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.729Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.729Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.729Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.729Z] except StopIteration: -[2024-03-07T16:33:08.729Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.729Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.729Z] try: -[2024-03-07T16:33:08.729Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.729Z] # which is the desired response. -[2024-03-07T16:33:08.729Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.729Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.729Z] next(function_gen) # first yield -[2024-03-07T16:33:08.729Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.729Z] except StopIteration: -[2024-03-07T16:33:08.729Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.729Z] else: -[2024-03-07T16:33:08.729Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] item = -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.729Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.729Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.729Z] item = -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.729Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.729Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.729Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.729Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.729Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.729Z] if exc: -[2024-03-07T16:33:08.729Z] > raise exc -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:504: -[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] cls = -[2024-03-07T16:33:08.729Z] func = . at 0x7f0abbb0b520> -[2024-03-07T16:33:08.729Z] when = 'setup' -[2024-03-07T16:33:08.729Z] reraise = (, ) -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] @classmethod -[2024-03-07T16:33:08.729Z] def from_call( -[2024-03-07T16:33:08.729Z] cls, -[2024-03-07T16:33:08.729Z] func: Callable[[], TResult], -[2024-03-07T16:33:08.729Z] when: Literal["collect", "setup", "call", "teardown"], -[2024-03-07T16:33:08.729Z] reraise: Optional[ -[2024-03-07T16:33:08.729Z] Union[Type[BaseException], Tuple[Type[BaseException], ...]] -[2024-03-07T16:33:08.729Z] ] = None, -[2024-03-07T16:33:08.729Z] ) -> "CallInfo[TResult]": -[2024-03-07T16:33:08.729Z] """Call func, wrapping the result in a CallInfo. -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] :param func: -[2024-03-07T16:33:08.729Z] The function to call. Called without arguments. -[2024-03-07T16:33:08.729Z] :param when: -[2024-03-07T16:33:08.729Z] The phase in which the function is called. -[2024-03-07T16:33:08.729Z] :param reraise: -[2024-03-07T16:33:08.729Z] Exception or exceptions that shall propagate if raised by the -[2024-03-07T16:33:08.729Z] function, instead of being wrapped in the CallInfo. -[2024-03-07T16:33:08.729Z] """ -[2024-03-07T16:33:08.729Z] excinfo = None -[2024-03-07T16:33:08.729Z] start = timing.time() -[2024-03-07T16:33:08.729Z] precise_start = timing.perf_counter() -[2024-03-07T16:33:08.729Z] try: -[2024-03-07T16:33:08.729Z] > result: Optional[TResult] = func() -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:342: -[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] > lambda: ihook(item=item, **kwds), when=when, reraise=reraise -[2024-03-07T16:33:08.729Z] ) -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:263: -[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] self = -[2024-03-07T16:33:08.729Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] def __call__(self, **kwargs: object) -> Any: -[2024-03-07T16:33:08.729Z] """Call the hook. -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] Only accepts keyword arguments, which should match the hook -[2024-03-07T16:33:08.729Z] specification. -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] Returns the result(s) of calling all registered plugins, see -[2024-03-07T16:33:08.729Z] :ref:`calling`. -[2024-03-07T16:33:08.729Z] """ -[2024-03-07T16:33:08.729Z] assert ( -[2024-03-07T16:33:08.729Z] not self.is_historic() -[2024-03-07T16:33:08.729Z] ), "Cannot directly call a historic hook - use call_historic instead." -[2024-03-07T16:33:08.729Z] self._verify_all_args_are_provided(kwargs) -[2024-03-07T16:33:08.729Z] firstresult = self.spec.opts.get("firstresult", False) if self.spec else False -[2024-03-07T16:33:08.729Z] # Copy because plugins may register other plugins during iteration (#438). -[2024-03-07T16:33:08.729Z] > return self._hookexec(self.name, self._hookimpls.copy(), kwargs, firstresult) -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_hooks.py:501: -[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] self = <_pytest.config.PytestPluginManager object at 0x7f0abfb701f0> -[2024-03-07T16:33:08.729Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.729Z] methods = [>, >, ...] -[2024-03-07T16:33:08.729Z] kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] def _hookexec( -[2024-03-07T16:33:08.729Z] self, -[2024-03-07T16:33:08.729Z] hook_name: str, -[2024-03-07T16:33:08.729Z] methods: Sequence[HookImpl], -[2024-03-07T16:33:08.729Z] kwargs: Mapping[str, object], -[2024-03-07T16:33:08.729Z] firstresult: bool, -[2024-03-07T16:33:08.729Z] ) -> object | list[object]: -[2024-03-07T16:33:08.729Z] # called from all hookcaller instances. -[2024-03-07T16:33:08.729Z] # enable_tracing will set its own wrapping function at self._inner_hookexec -[2024-03-07T16:33:08.729Z] > return self._inner_hookexec(hook_name, methods, kwargs, firstresult) -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_manager.py:119: -[2024-03-07T16:33:08.729Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.729Z] -[2024-03-07T16:33:08.729Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.730Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.730Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] def _multicall( -[2024-03-07T16:33:08.730Z] hook_name: str, -[2024-03-07T16:33:08.730Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.730Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.730Z] firstresult: bool, -[2024-03-07T16:33:08.730Z] ) -> object | list[object]: -[2024-03-07T16:33:08.730Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.730Z] result(s). -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.730Z] """ -[2024-03-07T16:33:08.730Z] __tracebackhide__ = True -[2024-03-07T16:33:08.730Z] results: list[object] = [] -[2024-03-07T16:33:08.730Z] exception = None -[2024-03-07T16:33:08.730Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.730Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.730Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.730Z] try: -[2024-03-07T16:33:08.730Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.730Z] try: -[2024-03-07T16:33:08.730Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.730Z] except KeyError: -[2024-03-07T16:33:08.730Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.730Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.730Z] raise HookCallError( -[2024-03-07T16:33:08.730Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.730Z] ) -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.730Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.730Z] try: -[2024-03-07T16:33:08.730Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.730Z] # which is the desired response. -[2024-03-07T16:33:08.730Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.730Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.730Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.730Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.730Z] except StopIteration: -[2024-03-07T16:33:08.730Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.730Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.730Z] try: -[2024-03-07T16:33:08.730Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.730Z] # which is the desired response. -[2024-03-07T16:33:08.730Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.730Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.730Z] next(function_gen) # first yield -[2024-03-07T16:33:08.730Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.730Z] except StopIteration: -[2024-03-07T16:33:08.730Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.730Z] else: -[2024-03-07T16:33:08.730Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.730Z] if res is not None: -[2024-03-07T16:33:08.730Z] results.append(res) -[2024-03-07T16:33:08.730Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.730Z] break -[2024-03-07T16:33:08.730Z] except BaseException as exc: -[2024-03-07T16:33:08.730Z] exception = exc -[2024-03-07T16:33:08.730Z] finally: -[2024-03-07T16:33:08.730Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.730Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.730Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.730Z] result = results[0] if results else None -[2024-03-07T16:33:08.730Z] else: -[2024-03-07T16:33:08.730Z] result = results -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.730Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.730Z] try: -[2024-03-07T16:33:08.730Z] if exception is not None: -[2024-03-07T16:33:08.730Z] teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.730Z] else: -[2024-03-07T16:33:08.730Z] teardown.send(result) # type: ignore[union-attr] -[2024-03-07T16:33:08.730Z] # Following is unreachable for a well behaved hook wrapper. -[2024-03-07T16:33:08.730Z] # Try to force finalizers otherwise postponed till GC action. -[2024-03-07T16:33:08.730Z] # Note: close() may raise if generator handles GeneratorExit. -[2024-03-07T16:33:08.730Z] teardown.close() # type: ignore[union-attr] -[2024-03-07T16:33:08.730Z] except StopIteration as si: -[2024-03-07T16:33:08.730Z] result = si.value -[2024-03-07T16:33:08.730Z] exception = None -[2024-03-07T16:33:08.730Z] continue -[2024-03-07T16:33:08.730Z] except BaseException as e: -[2024-03-07T16:33:08.730Z] exception = e -[2024-03-07T16:33:08.730Z] continue -[2024-03-07T16:33:08.730Z] _raise_wrapfail(teardown, "has second yield") # type: ignore[arg-type] -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] if exception is not None: -[2024-03-07T16:33:08.730Z] > raise exception.with_traceback(exception.__traceback__) -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:138: -[2024-03-07T16:33:08.730Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.730Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.730Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] def _multicall( -[2024-03-07T16:33:08.730Z] hook_name: str, -[2024-03-07T16:33:08.730Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.730Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.730Z] firstresult: bool, -[2024-03-07T16:33:08.730Z] ) -> object | list[object]: -[2024-03-07T16:33:08.730Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.730Z] result(s). -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.730Z] """ -[2024-03-07T16:33:08.730Z] __tracebackhide__ = True -[2024-03-07T16:33:08.730Z] results: list[object] = [] -[2024-03-07T16:33:08.730Z] exception = None -[2024-03-07T16:33:08.730Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.730Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.730Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.730Z] try: -[2024-03-07T16:33:08.730Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.730Z] try: -[2024-03-07T16:33:08.730Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.730Z] except KeyError: -[2024-03-07T16:33:08.730Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.730Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.730Z] raise HookCallError( -[2024-03-07T16:33:08.730Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.730Z] ) -[2024-03-07T16:33:08.730Z] -[2024-03-07T16:33:08.730Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.730Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.730Z] try: -[2024-03-07T16:33:08.731Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.731Z] # which is the desired response. -[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.731Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.731Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.731Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.731Z] except StopIteration: -[2024-03-07T16:33:08.731Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.731Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.731Z] try: -[2024-03-07T16:33:08.731Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.731Z] # which is the desired response. -[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.731Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.731Z] next(function_gen) # first yield -[2024-03-07T16:33:08.731Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.731Z] except StopIteration: -[2024-03-07T16:33:08.731Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.731Z] else: -[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.731Z] if res is not None: -[2024-03-07T16:33:08.731Z] results.append(res) -[2024-03-07T16:33:08.731Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.731Z] break -[2024-03-07T16:33:08.731Z] except BaseException as exc: -[2024-03-07T16:33:08.731Z] exception = exc -[2024-03-07T16:33:08.731Z] finally: -[2024-03-07T16:33:08.731Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.731Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.731Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.731Z] result = results[0] if results else None -[2024-03-07T16:33:08.731Z] else: -[2024-03-07T16:33:08.731Z] result = results -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.731Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.731Z] try: -[2024-03-07T16:33:08.731Z] if exception is not None: -[2024-03-07T16:33:08.731Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.731Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] @pytest.hookimpl(wrapper=True, tryfirst=True) -[2024-03-07T16:33:08.731Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.731Z] > yield from unraisable_exception_runtest_hook() -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:85: -[2024-03-07T16:33:08.731Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] def unraisable_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.731Z] with catch_unraisable_exception() as cm: -[2024-03-07T16:33:08.731Z] try: -[2024-03-07T16:33:08.731Z] > yield -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/unraisableexception.py:65: -[2024-03-07T16:33:08.731Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.731Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.731Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] def _multicall( -[2024-03-07T16:33:08.731Z] hook_name: str, -[2024-03-07T16:33:08.731Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.731Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.731Z] firstresult: bool, -[2024-03-07T16:33:08.731Z] ) -> object | list[object]: -[2024-03-07T16:33:08.731Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.731Z] result(s). -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.731Z] """ -[2024-03-07T16:33:08.731Z] __tracebackhide__ = True -[2024-03-07T16:33:08.731Z] results: list[object] = [] -[2024-03-07T16:33:08.731Z] exception = None -[2024-03-07T16:33:08.731Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.731Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.731Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.731Z] try: -[2024-03-07T16:33:08.731Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.731Z] try: -[2024-03-07T16:33:08.731Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.731Z] except KeyError: -[2024-03-07T16:33:08.731Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.731Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.731Z] raise HookCallError( -[2024-03-07T16:33:08.731Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.731Z] ) -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.731Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.731Z] try: -[2024-03-07T16:33:08.731Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.731Z] # which is the desired response. -[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.731Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.731Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.731Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.731Z] except StopIteration: -[2024-03-07T16:33:08.731Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.731Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.731Z] try: -[2024-03-07T16:33:08.731Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.731Z] # which is the desired response. -[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.731Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.731Z] next(function_gen) # first yield -[2024-03-07T16:33:08.731Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.731Z] except StopIteration: -[2024-03-07T16:33:08.731Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.731Z] else: -[2024-03-07T16:33:08.731Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.731Z] if res is not None: -[2024-03-07T16:33:08.731Z] results.append(res) -[2024-03-07T16:33:08.731Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.731Z] break -[2024-03-07T16:33:08.731Z] except BaseException as exc: -[2024-03-07T16:33:08.731Z] exception = exc -[2024-03-07T16:33:08.731Z] finally: -[2024-03-07T16:33:08.731Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.731Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.731Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.731Z] result = results[0] if results else None -[2024-03-07T16:33:08.731Z] else: -[2024-03-07T16:33:08.731Z] result = results -[2024-03-07T16:33:08.731Z] -[2024-03-07T16:33:08.731Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.731Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.731Z] try: -[2024-03-07T16:33:08.731Z] if exception is not None: -[2024-03-07T16:33:08.732Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.732Z] item = -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.732Z] def pytest_runtest_setup(self, item: nodes.Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.732Z] self.log_cli_handler.set_when("setup") -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] empty: Dict[str, List[logging.LogRecord]] = {} -[2024-03-07T16:33:08.732Z] item.stash[caplog_records_key] = empty -[2024-03-07T16:33:08.732Z] > yield from self._runtest_for(item, "setup") -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:833: -[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] self = <_pytest.logging.LoggingPlugin object at 0x7f0abf08c070> -[2024-03-07T16:33:08.732Z] item = , when = 'setup' -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] def _runtest_for(self, item: nodes.Item, when: str) -> Generator[None, None, None]: -[2024-03-07T16:33:08.732Z] """Implement the internals of the pytest_runtest_xxx() hooks.""" -[2024-03-07T16:33:08.732Z] with catching_logs( -[2024-03-07T16:33:08.732Z] self.caplog_handler, -[2024-03-07T16:33:08.732Z] level=self.log_level, -[2024-03-07T16:33:08.732Z] ) as caplog_handler, catching_logs( -[2024-03-07T16:33:08.732Z] self.report_handler, -[2024-03-07T16:33:08.732Z] level=self.log_level, -[2024-03-07T16:33:08.732Z] ) as report_handler: -[2024-03-07T16:33:08.732Z] caplog_handler.reset() -[2024-03-07T16:33:08.732Z] report_handler.reset() -[2024-03-07T16:33:08.732Z] item.stash[caplog_records_key][when] = caplog_handler.records -[2024-03-07T16:33:08.732Z] item.stash[caplog_handler_key] = caplog_handler -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] try: -[2024-03-07T16:33:08.732Z] > yield -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/logging.py:822: -[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.732Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.732Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] def _multicall( -[2024-03-07T16:33:08.732Z] hook_name: str, -[2024-03-07T16:33:08.732Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.732Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.732Z] firstresult: bool, -[2024-03-07T16:33:08.732Z] ) -> object | list[object]: -[2024-03-07T16:33:08.732Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.732Z] result(s). -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.732Z] """ -[2024-03-07T16:33:08.732Z] __tracebackhide__ = True -[2024-03-07T16:33:08.732Z] results: list[object] = [] -[2024-03-07T16:33:08.732Z] exception = None -[2024-03-07T16:33:08.732Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.732Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.732Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.732Z] try: -[2024-03-07T16:33:08.732Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.732Z] try: -[2024-03-07T16:33:08.732Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.732Z] except KeyError: -[2024-03-07T16:33:08.732Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.732Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.732Z] raise HookCallError( -[2024-03-07T16:33:08.732Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.732Z] ) -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.732Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.732Z] try: -[2024-03-07T16:33:08.732Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.732Z] # which is the desired response. -[2024-03-07T16:33:08.732Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.732Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.732Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.732Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.732Z] except StopIteration: -[2024-03-07T16:33:08.732Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.732Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.732Z] try: -[2024-03-07T16:33:08.732Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.732Z] # which is the desired response. -[2024-03-07T16:33:08.732Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.732Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.732Z] next(function_gen) # first yield -[2024-03-07T16:33:08.732Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.732Z] except StopIteration: -[2024-03-07T16:33:08.732Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.732Z] else: -[2024-03-07T16:33:08.732Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.732Z] if res is not None: -[2024-03-07T16:33:08.732Z] results.append(res) -[2024-03-07T16:33:08.732Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.732Z] break -[2024-03-07T16:33:08.732Z] except BaseException as exc: -[2024-03-07T16:33:08.732Z] exception = exc -[2024-03-07T16:33:08.732Z] finally: -[2024-03-07T16:33:08.732Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.732Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.732Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.732Z] result = results[0] if results else None -[2024-03-07T16:33:08.732Z] else: -[2024-03-07T16:33:08.732Z] result = results -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.732Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.732Z] try: -[2024-03-07T16:33:08.732Z] if exception is not None: -[2024-03-07T16:33:08.732Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] self = > _state='suspended' _in_suspended=False> _capture_fixture=None> -[2024-03-07T16:33:08.732Z] item = -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] @hookimpl(wrapper=True) -[2024-03-07T16:33:08.732Z] def pytest_runtest_setup(self, item: Item) -> Generator[None, None, None]: -[2024-03-07T16:33:08.732Z] with self.item_capture("setup", item): -[2024-03-07T16:33:08.732Z] > return (yield) -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/capture.py:877: -[2024-03-07T16:33:08.732Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.732Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.732Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] def _multicall( -[2024-03-07T16:33:08.732Z] hook_name: str, -[2024-03-07T16:33:08.732Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.732Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.732Z] firstresult: bool, -[2024-03-07T16:33:08.732Z] ) -> object | list[object]: -[2024-03-07T16:33:08.732Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.732Z] result(s). -[2024-03-07T16:33:08.732Z] -[2024-03-07T16:33:08.732Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.732Z] """ -[2024-03-07T16:33:08.732Z] __tracebackhide__ = True -[2024-03-07T16:33:08.732Z] results: list[object] = [] -[2024-03-07T16:33:08.732Z] exception = None -[2024-03-07T16:33:08.733Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.733Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.733Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.733Z] except KeyError: -[2024-03-07T16:33:08.733Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.733Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.733Z] raise HookCallError( -[2024-03-07T16:33:08.733Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.733Z] ) -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.733Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.733Z] # which is the desired response. -[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.733Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.733Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.733Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.733Z] except StopIteration: -[2024-03-07T16:33:08.733Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.733Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.733Z] # which is the desired response. -[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.733Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.733Z] next(function_gen) # first yield -[2024-03-07T16:33:08.733Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.733Z] except StopIteration: -[2024-03-07T16:33:08.733Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.733Z] else: -[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.733Z] if res is not None: -[2024-03-07T16:33:08.733Z] results.append(res) -[2024-03-07T16:33:08.733Z] if firstresult: # halt further impl calls -[2024-03-07T16:33:08.733Z] break -[2024-03-07T16:33:08.733Z] except BaseException as exc: -[2024-03-07T16:33:08.733Z] exception = exc -[2024-03-07T16:33:08.733Z] finally: -[2024-03-07T16:33:08.733Z] # Fast path - only new-style wrappers, no Result. -[2024-03-07T16:33:08.733Z] if only_new_style_wrappers: -[2024-03-07T16:33:08.733Z] if firstresult: # first result hooks return a single value -[2024-03-07T16:33:08.733Z] result = results[0] if results else None -[2024-03-07T16:33:08.733Z] else: -[2024-03-07T16:33:08.733Z] result = results -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] # run all wrapper post-yield blocks -[2024-03-07T16:33:08.733Z] for teardown in reversed(teardowns): -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] if exception is not None: -[2024-03-07T16:33:08.733Z] > teardown.throw(exception) # type: ignore[union-attr] -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:121: -[2024-03-07T16:33:08.733Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] @pytest.hookimpl(wrapper=True, trylast=True) -[2024-03-07T16:33:08.733Z] def pytest_runtest_setup() -> Generator[None, None, None]: -[2024-03-07T16:33:08.733Z] > yield from thread_exception_runtest_hook() -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:82: -[2024-03-07T16:33:08.733Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] def thread_exception_runtest_hook() -> Generator[None, None, None]: -[2024-03-07T16:33:08.733Z] with catch_threading_exception() as cm: -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] > yield -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/threadexception.py:63: -[2024-03-07T16:33:08.733Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] hook_name = 'pytest_runtest_setup' -[2024-03-07T16:33:08.733Z] hook_impls = [>, >, ...] -[2024-03-07T16:33:08.733Z] caller_kwargs = {'item': }, firstresult = False -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] def _multicall( -[2024-03-07T16:33:08.733Z] hook_name: str, -[2024-03-07T16:33:08.733Z] hook_impls: Sequence[HookImpl], -[2024-03-07T16:33:08.733Z] caller_kwargs: Mapping[str, object], -[2024-03-07T16:33:08.733Z] firstresult: bool, -[2024-03-07T16:33:08.733Z] ) -> object | list[object]: -[2024-03-07T16:33:08.733Z] """Execute a call into multiple python functions/methods and return the -[2024-03-07T16:33:08.733Z] result(s). -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] ``caller_kwargs`` comes from HookCaller.__call__(). -[2024-03-07T16:33:08.733Z] """ -[2024-03-07T16:33:08.733Z] __tracebackhide__ = True -[2024-03-07T16:33:08.733Z] results: list[object] = [] -[2024-03-07T16:33:08.733Z] exception = None -[2024-03-07T16:33:08.733Z] only_new_style_wrappers = True -[2024-03-07T16:33:08.733Z] try: # run impl and wrapper setup functions in a loop -[2024-03-07T16:33:08.733Z] teardowns: list[Teardown] = [] -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] for hook_impl in reversed(hook_impls): -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] args = [caller_kwargs[argname] for argname in hook_impl.argnames] -[2024-03-07T16:33:08.733Z] except KeyError: -[2024-03-07T16:33:08.733Z] for argname in hook_impl.argnames: -[2024-03-07T16:33:08.733Z] if argname not in caller_kwargs: -[2024-03-07T16:33:08.733Z] raise HookCallError( -[2024-03-07T16:33:08.733Z] f"hook call must provide argument {argname!r}" -[2024-03-07T16:33:08.733Z] ) -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] if hook_impl.hookwrapper: -[2024-03-07T16:33:08.733Z] only_new_style_wrappers = False -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.733Z] # which is the desired response. -[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.733Z] wrapper_gen = cast(Generator[None, Result[object], None], res) -[2024-03-07T16:33:08.733Z] next(wrapper_gen) # first yield -[2024-03-07T16:33:08.733Z] teardowns.append((wrapper_gen, hook_impl)) -[2024-03-07T16:33:08.733Z] except StopIteration: -[2024-03-07T16:33:08.733Z] _raise_wrapfail(wrapper_gen, "did not yield") -[2024-03-07T16:33:08.733Z] elif hook_impl.wrapper: -[2024-03-07T16:33:08.733Z] try: -[2024-03-07T16:33:08.733Z] # If this cast is not valid, a type error is raised below, -[2024-03-07T16:33:08.733Z] # which is the desired response. -[2024-03-07T16:33:08.733Z] res = hook_impl.function(*args) -[2024-03-07T16:33:08.733Z] function_gen = cast(Generator[None, object, object], res) -[2024-03-07T16:33:08.733Z] next(function_gen) # first yield -[2024-03-07T16:33:08.733Z] teardowns.append(function_gen) -[2024-03-07T16:33:08.733Z] except StopIteration: -[2024-03-07T16:33:08.733Z] _raise_wrapfail(function_gen, "did not yield") -[2024-03-07T16:33:08.733Z] else: -[2024-03-07T16:33:08.733Z] > res = hook_impl.function(*args) -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/pluggy/_callers.py:102: -[2024-03-07T16:33:08.733Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.733Z] item = -[2024-03-07T16:33:08.733Z] -[2024-03-07T16:33:08.734Z] def pytest_runtest_setup(item: Item) -> None: -[2024-03-07T16:33:08.734Z] _update_current_test_var(item, "setup") -[2024-03-07T16:33:08.734Z] > item.session._setupstate.setup(item) -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:158: -[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.734Z] item = -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.734Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.734Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.734Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.734Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.734Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.734Z] if exc: -[2024-03-07T16:33:08.734Z] raise exc -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.734Z] assert col not in self.stack -[2024-03-07T16:33:08.734Z] # Push onto the stack. -[2024-03-07T16:33:08.734Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.734Z] try: -[2024-03-07T16:33:08.734Z] col.setup() -[2024-03-07T16:33:08.734Z] except TEST_OUTCOME as exc: -[2024-03-07T16:33:08.734Z] self.stack[col] = (self.stack[col][0], exc) -[2024-03-07T16:33:08.734Z] > raise exc -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:514: -[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] self = <_pytest.runner.SetupState object at 0x7f0abf00cdf0> -[2024-03-07T16:33:08.734Z] item = -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] def setup(self, item: Item) -> None: -[2024-03-07T16:33:08.734Z] """Setup objects along the collector chain to the item.""" -[2024-03-07T16:33:08.734Z] needed_collectors = item.listchain() -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] # If a collector fails its setup, fail its entire subtree of items. -[2024-03-07T16:33:08.734Z] # The setup is not retried for each item - the same exception is used. -[2024-03-07T16:33:08.734Z] for col, (finalizers, exc) in self.stack.items(): -[2024-03-07T16:33:08.734Z] assert col in needed_collectors, "previous item was not torn down properly" -[2024-03-07T16:33:08.734Z] if exc: -[2024-03-07T16:33:08.734Z] raise exc -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] for col in needed_collectors[len(self.stack) :]: -[2024-03-07T16:33:08.734Z] assert col not in self.stack -[2024-03-07T16:33:08.734Z] # Push onto the stack. -[2024-03-07T16:33:08.734Z] self.stack[col] = ([col.teardown], None) -[2024-03-07T16:33:08.734Z] try: -[2024-03-07T16:33:08.734Z] > col.setup() -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/_pytest/runner.py:511: -[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] self = -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] def setup(self): -[2024-03-07T16:33:08.734Z] """ -[2024-03-07T16:33:08.734Z] Called by pytest to setup the collector cells in . -[2024-03-07T16:33:08.734Z] Here we start a kernel and setup the sanitize patterns. -[2024-03-07T16:33:08.734Z] """ -[2024-03-07T16:33:08.734Z] # we've already checked that --nbval-current-env and -[2024-03-07T16:33:08.734Z] # --nbval-kernel-name were not both supplied -[2024-03-07T16:33:08.734Z] if self.parent.config.option.nbval_current_env: -[2024-03-07T16:33:08.734Z] kernel_name = CURRENT_ENV_KERNEL_NAME -[2024-03-07T16:33:08.734Z] elif self.parent.config.option.nbval_kernel_name: -[2024-03-07T16:33:08.734Z] kernel_name = self.parent.config.option.nbval_kernel_name -[2024-03-07T16:33:08.734Z] else: -[2024-03-07T16:33:08.734Z] kernel_name = self.nb.metadata.get( -[2024-03-07T16:33:08.734Z] 'kernelspec', {}).get('name', 'python') -[2024-03-07T16:33:08.734Z] > self.kernel = RunningKernel( -[2024-03-07T16:33:08.734Z] kernel_name, -[2024-03-07T16:33:08.734Z] cwd=str(self.fspath.dirname), -[2024-03-07T16:33:08.734Z] startup_timeout=self.config.option.nbval_kernel_startup_timeout, -[2024-03-07T16:33:08.734Z] ) -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:264: -[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] self = -[2024-03-07T16:33:08.734Z] kernel_name = 'python' -[2024-03-07T16:33:08.734Z] cwd = '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks' -[2024-03-07T16:33:08.734Z] startup_timeout = 60 -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] def __init__(self, kernel_name, cwd=None, startup_timeout=60): -[2024-03-07T16:33:08.734Z] """ -[2024-03-07T16:33:08.734Z] Initialise a new kernel -[2024-03-07T16:33:08.734Z] specify that matplotlib is inline and connect the stderr. -[2024-03-07T16:33:08.734Z] Stores the active kernel process and its manager. -[2024-03-07T16:33:08.734Z] """ -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] > self.km, self.kc = start_new_kernel( -[2024-03-07T16:33:08.734Z] startup_timeout=startup_timeout, -[2024-03-07T16:33:08.734Z] kernel_name=kernel_name, -[2024-03-07T16:33:08.734Z] stderr=open(os.devnull, 'w'), -[2024-03-07T16:33:08.734Z] cwd=cwd, -[2024-03-07T16:33:08.734Z] ) -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:85: -[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] startup_timeout = 60, kernel_name = 'python' -[2024-03-07T16:33:08.734Z] kwargs = {'cwd': '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/RavenPy-master/docs/notebooks', 'stderr': <_io.TextIOWrapper name='/dev/null' mode='w' encoding='UTF-8'>} -[2024-03-07T16:33:08.734Z] km = -[2024-03-07T16:33:08.734Z] kc = -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] def start_new_kernel(startup_timeout=60, kernel_name='python', **kwargs): -[2024-03-07T16:33:08.734Z] """Start a new kernel, and return its Manager and Client""" -[2024-03-07T16:33:08.734Z] logger.debug('Starting new kernel: "%s"' % kernel_name) -[2024-03-07T16:33:08.734Z] km = KernelManager(kernel_name=kernel_name, -[2024-03-07T16:33:08.734Z] kernel_spec_manager=NbvalKernelspecManager()) -[2024-03-07T16:33:08.734Z] km.start_kernel(**kwargs) -[2024-03-07T16:33:08.734Z] kc = km.client() -[2024-03-07T16:33:08.734Z] kc.start_channels() -[2024-03-07T16:33:08.734Z] try: -[2024-03-07T16:33:08.734Z] > kc.wait_for_ready(timeout=startup_timeout) -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/kernel.py:57: -[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] args = (,) -[2024-03-07T16:33:08.734Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.734Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.734Z] nest_asyncio = -[2024-03-07T16:33:08.734Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.734Z] try: -[2024-03-07T16:33:08.734Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.734Z] except RuntimeError: -[2024-03-07T16:33:08.734Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.734Z] try: -[2024-03-07T16:33:08.734Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.734Z] except RuntimeError: -[2024-03-07T16:33:08.734Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.734Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.734Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.734Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.734Z] try: -[2024-03-07T16:33:08.734Z] return loop.run_until_complete(future) -[2024-03-07T16:33:08.734Z] except BaseException as e: -[2024-03-07T16:33:08.734Z] future.cancel() -[2024-03-07T16:33:08.734Z] > raise e -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:30: -[2024-03-07T16:33:08.734Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.734Z] -[2024-03-07T16:33:08.734Z] args = (,) -[2024-03-07T16:33:08.734Z] kwargs = {'timeout': 60} -[2024-03-07T16:33:08.734Z] loop = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.735Z] nest_asyncio = -[2024-03-07T16:33:08.735Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] def wrapped(*args, **kwargs): -[2024-03-07T16:33:08.735Z] try: -[2024-03-07T16:33:08.735Z] loop = asyncio.get_running_loop() -[2024-03-07T16:33:08.735Z] except RuntimeError: -[2024-03-07T16:33:08.735Z] # Workaround for bugs.python.org/issue39529. -[2024-03-07T16:33:08.735Z] try: -[2024-03-07T16:33:08.735Z] loop = asyncio.get_event_loop_policy().get_event_loop() -[2024-03-07T16:33:08.735Z] except RuntimeError: -[2024-03-07T16:33:08.735Z] loop = asyncio.new_event_loop() -[2024-03-07T16:33:08.735Z] asyncio.set_event_loop(loop) -[2024-03-07T16:33:08.735Z] import nest_asyncio # type: ignore -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] nest_asyncio.apply(loop) -[2024-03-07T16:33:08.735Z] future = asyncio.ensure_future(coro(*args, **kwargs), loop=loop) -[2024-03-07T16:33:08.735Z] try: -[2024-03-07T16:33:08.735Z] > return loop.run_until_complete(future) -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/utils.py:27: -[2024-03-07T16:33:08.735Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] self = <_UnixSelectorEventLoop running=False closed=False debug=False> -[2024-03-07T16:33:08.735Z] future = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] def run_until_complete(self, future): -[2024-03-07T16:33:08.735Z] with manage_run(self): -[2024-03-07T16:33:08.735Z] f = asyncio.ensure_future(future, loop=self) -[2024-03-07T16:33:08.735Z] if f is not future: -[2024-03-07T16:33:08.735Z] f._log_destroy_pending = False -[2024-03-07T16:33:08.735Z] while not f.done(): -[2024-03-07T16:33:08.735Z] self._run_once() -[2024-03-07T16:33:08.735Z] if self._stopping: -[2024-03-07T16:33:08.735Z] break -[2024-03-07T16:33:08.735Z] if not f.done(): -[2024-03-07T16:33:08.735Z] raise RuntimeError( -[2024-03-07T16:33:08.735Z] 'Event loop stopped before Future completed.') -[2024-03-07T16:33:08.735Z] > return f.result() -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nest_asyncio.py:98: -[2024-03-07T16:33:08.735Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] self = exception=RuntimeError("Kernel didn't respond in 60 seconds")> -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] def result(self): -[2024-03-07T16:33:08.735Z] """Return the result this future represents. -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] If the future has been cancelled, raises CancelledError. If the -[2024-03-07T16:33:08.735Z] future's result isn't yet available, raises InvalidStateError. If -[2024-03-07T16:33:08.735Z] the future is done and has an exception set, this exception is raised. -[2024-03-07T16:33:08.735Z] """ -[2024-03-07T16:33:08.735Z] if self._state == _CANCELLED: -[2024-03-07T16:33:08.735Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.735Z] raise exc -[2024-03-07T16:33:08.735Z] if self._state != _FINISHED: -[2024-03-07T16:33:08.735Z] raise exceptions.InvalidStateError('Result is not ready.') -[2024-03-07T16:33:08.735Z] self.__log_traceback = False -[2024-03-07T16:33:08.735Z] if self._exception is not None: -[2024-03-07T16:33:08.735Z] > raise self._exception.with_traceback(self._exception_tb) -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/futures.py:201: -[2024-03-07T16:33:08.735Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] self = None -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] def __step(self, exc=None): -[2024-03-07T16:33:08.735Z] if self.done(): -[2024-03-07T16:33:08.735Z] raise exceptions.InvalidStateError( -[2024-03-07T16:33:08.735Z] f'_step(): already done: {self!r}, {exc!r}') -[2024-03-07T16:33:08.735Z] if self._must_cancel: -[2024-03-07T16:33:08.735Z] if not isinstance(exc, exceptions.CancelledError): -[2024-03-07T16:33:08.735Z] exc = self._make_cancelled_error() -[2024-03-07T16:33:08.735Z] self._must_cancel = False -[2024-03-07T16:33:08.735Z] coro = self._coro -[2024-03-07T16:33:08.735Z] self._fut_waiter = None -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] _enter_task(self._loop, self) -[2024-03-07T16:33:08.735Z] # Call either coro.throw(exc) or coro.send(None). -[2024-03-07T16:33:08.735Z] try: -[2024-03-07T16:33:08.735Z] if exc is None: -[2024-03-07T16:33:08.735Z] # We use the `send` method directly, because coroutines -[2024-03-07T16:33:08.735Z] # don't have `__iter__` and `__next__` methods. -[2024-03-07T16:33:08.735Z] > result = coro.send(None) -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/asyncio/tasks.py:232: -[2024-03-07T16:33:08.735Z] _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] self = -[2024-03-07T16:33:08.735Z] timeout = 60 -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] async def _async_wait_for_ready(self, timeout: t.Optional[float] = None) -> None: -[2024-03-07T16:33:08.735Z] """Waits for a response when a client is blocked -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] - Sets future time for timeout -[2024-03-07T16:33:08.735Z] - Blocks on shell channel until a message is received -[2024-03-07T16:33:08.735Z] - Exit if the kernel has died -[2024-03-07T16:33:08.735Z] - If client times out before receiving a message from the kernel, send RuntimeError -[2024-03-07T16:33:08.735Z] - Flush the IOPub channel -[2024-03-07T16:33:08.735Z] """ -[2024-03-07T16:33:08.735Z] if timeout is None: -[2024-03-07T16:33:08.735Z] timeout = float("inf") -[2024-03-07T16:33:08.735Z] abs_timeout = time.time() + timeout -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] from .manager import KernelManager -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] if not isinstance(self.parent, KernelManager): -[2024-03-07T16:33:08.735Z] # This Client was not created by a KernelManager, -[2024-03-07T16:33:08.735Z] # so wait for kernel to become responsive to heartbeats -[2024-03-07T16:33:08.735Z] # before checking for kernel_info reply -[2024-03-07T16:33:08.735Z] while not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.735Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.735Z] raise RuntimeError( -[2024-03-07T16:33:08.735Z] "Kernel didn't respond to heartbeats in %d seconds and timed out" % timeout -[2024-03-07T16:33:08.735Z] ) -[2024-03-07T16:33:08.735Z] await asyncio.sleep(0.2) -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] # Wait for kernel info reply on shell channel -[2024-03-07T16:33:08.735Z] while True: -[2024-03-07T16:33:08.735Z] self.kernel_info() -[2024-03-07T16:33:08.735Z] try: -[2024-03-07T16:33:08.735Z] msg = await self.shell_channel.get_msg(timeout=1) -[2024-03-07T16:33:08.735Z] except Empty: -[2024-03-07T16:33:08.735Z] pass -[2024-03-07T16:33:08.735Z] else: -[2024-03-07T16:33:08.735Z] if msg["msg_type"] == "kernel_info_reply": -[2024-03-07T16:33:08.735Z] # Checking that IOPub is connected. If it is not connected, start over. -[2024-03-07T16:33:08.735Z] try: -[2024-03-07T16:33:08.735Z] await self.iopub_channel.get_msg(timeout=0.2) -[2024-03-07T16:33:08.735Z] except Empty: -[2024-03-07T16:33:08.735Z] pass -[2024-03-07T16:33:08.735Z] else: -[2024-03-07T16:33:08.735Z] self._handle_kernel_info_reply(msg) -[2024-03-07T16:33:08.735Z] break -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] if not await ensure_async(self.is_alive()): -[2024-03-07T16:33:08.735Z] raise RuntimeError("Kernel died before replying to kernel_info") -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] # Check if current time is ready check time plus timeout -[2024-03-07T16:33:08.735Z] if time.time() > abs_timeout: -[2024-03-07T16:33:08.735Z] > raise RuntimeError("Kernel didn't respond in %d seconds" % timeout) -[2024-03-07T16:33:08.735Z] E RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py:206: RuntimeError -[2024-03-07T16:33:08.735Z] =================================== FAILURES =================================== -[2024-03-07T16:33:08.735Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ -[2024-03-07T16:33:08.735Z] Notebook cell execution failed -[2024-03-07T16:33:08.735Z] Cell 5: Cell execution caused an exception -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] Input: -[2024-03-07T16:33:08.735Z] features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-07T16:33:08.735Z] grid = raster[0] -[2024-03-07T16:33:08.735Z] grid.plot() -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.735Z] Traceback: -[2024-03-07T16:33:08.735Z] -[2024-03-07T16:33:08.736Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.736Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:33:08.736Z] Cell In[1], line 1 -[2024-03-07T16:33:08.736Z] ----> 1 features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-07T16:33:08.736Z]  2 grid = raster[0] -[2024-03-07T16:33:08.736Z]  3 grid.plot() -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-07T16:33:08.736Z]  38 if not self.isSucceded(): -[2024-03-07T16:33:08.736Z]  39 # TODO: add reason for failure -[2024-03-07T16:33:08.736Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-07T16:33:08.736Z] ---> 41 return self._make_output(asobj) -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-07T16:33:08.736Z]  44 Output = namedtuple( -[2024-03-07T16:33:08.736Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:33:08.736Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:33:08.736Z]  47 ) -[2024-03-07T16:33:08.736Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:33:08.736Z]  49 return Output( -[2024-03-07T16:33:08.736Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:33:08.736Z]  51 ) -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-07T16:33:08.736Z]  44 Output = namedtuple( -[2024-03-07T16:33:08.736Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:33:08.736Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:33:08.736Z]  47 ) -[2024-03-07T16:33:08.736Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:33:08.736Z]  49 return Output( -[2024-03-07T16:33:08.736Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:33:08.736Z]  51 ) -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-07T16:33:08.736Z]  68 return delist(data) -[2024-03-07T16:33:08.736Z]  70 if convert_objects: -[2024-03-07T16:33:08.736Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-07T16:33:08.736Z]  72 else: -[2024-03-07T16:33:08.736Z]  73 return output.reference -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) -[2024-03-07T16:33:08.736Z]  374 out = converter.convert() -[2024-03-07T16:33:08.736Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:33:08.736Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-07T16:33:08.736Z]  377 return out -[2024-03-07T16:33:08.736Z]  379 except (ImportError, NotImplementedError): -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) -[2024-03-07T16:33:08.736Z]  374 out = converter.convert() -[2024-03-07T16:33:08.736Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:33:08.736Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-07T16:33:08.736Z]  377 return out -[2024-03-07T16:33:08.736Z]  379 except (ImportError, NotImplementedError): -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-07T16:33:08.736Z]  372 try: -[2024-03-07T16:33:08.736Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-07T16:33:08.736Z] --> 374 out = converter.convert() -[2024-03-07T16:33:08.736Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:33:08.736Z]  376 out = [convert(o, path) for o in out] -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-07T16:33:08.736Z]  263 import xarray # isort: skip -[2024-03-07T16:33:08.736Z]  264 import rioxarray # noqa -[2024-03-07T16:33:08.736Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 _ -[2024-03-07T16:33:08.736Z] Notebook cell execution failed -[2024-03-07T16:33:08.736Z] Cell 6: Cell execution caused an exception -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] Input: -[2024-03-07T16:33:08.736Z] lu = statistics[0] -[2024-03-07T16:33:08.736Z] total = sum(lu.values()) -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] land_use = {k: (v / total) for (k, v) in lu.items()} -[2024-03-07T16:33:08.736Z] display("Land use ratios", land_use) -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} -[2024-03-07T16:33:08.736Z] display("Land use percentages", land_use_pct) -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] Traceback: -[2024-03-07T16:33:08.736Z] -[2024-03-07T16:33:08.736Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.736Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.737Z] Cell In[1], line 1 -[2024-03-07T16:33:08.737Z] ----> 1 lu = statistics[0] -[2024-03-07T16:33:08.737Z]  2 total = sum(lu.values()) -[2024-03-07T16:33:08.737Z]  4 land_use = {k: (v / total) for (k, v) in lu.items()} -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] NameError: name 'statistics' is not defined -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ -[2024-03-07T16:33:08.737Z] Notebook cell execution failed -[2024-03-07T16:33:08.737Z] Cell 7: Cell execution caused an exception -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] Input: -[2024-03-07T16:33:08.737Z] unique, counts = np.unique(grid, return_counts=True) -[2024-03-07T16:33:08.737Z] print("The land-use categories available are: " + str(unique)) -[2024-03-07T16:33:08.737Z] print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] # Pixels values at '127' are NaN and can be ignored. -[2024-03-07T16:33:08.737Z] from matplotlib.colors import Normalize -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] norm = Normalize() -[2024-03-07T16:33:08.737Z] norm.autoscale(unique[:-1]) -[2024-03-07T16:33:08.737Z] cm = mpl.colormaps["tab20"] -[2024-03-07T16:33:08.737Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] # plt.bar(unique[:-1], counts[:-1]) -[2024-03-07T16:33:08.737Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) -[2024-03-07T16:33:08.737Z] plt.xlabel("Land-use categories") -[2024-03-07T16:33:08.737Z] plt.ylabel("Number of pixels") -[2024-03-07T16:33:08.737Z] plt.show() -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") -[2024-03-07T16:33:08.737Z] grid.name = "Land-use categories" -[2024-03-07T16:33:08.737Z] plt.show() -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] Traceback: -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.737Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.737Z] Cell In[1], line 1 -[2024-03-07T16:33:08.737Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) -[2024-03-07T16:33:08.737Z]  2 print("The land-use categories available are: " + str(unique)) -[2024-03-07T16:33:08.737Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] NameError: name 'grid' is not defined -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ -[2024-03-07T16:33:08.737Z] Notebook cell execution failed -[2024-03-07T16:33:08.737Z] Cell 8: Cell execution caused an exception -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] Input: -[2024-03-07T16:33:08.737Z] import cartopy.crs as ccrs -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] # Set a CRS transformation: -[2024-03-07T16:33:08.737Z] crs = ccrs.LambertConformal( -[2024-03-07T16:33:08.737Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-07T16:33:08.737Z] ) -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] ax = plt.subplot(projection=crs) -[2024-03-07T16:33:08.737Z] grid.name = "Land-use categories" -[2024-03-07T16:33:08.737Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-07T16:33:08.737Z] plt.show() -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] Traceback: -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.737Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.737Z] Cell In[1], line 9 -[2024-03-07T16:33:08.737Z]  4 crs = ccrs.LambertConformal( -[2024-03-07T16:33:08.737Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-07T16:33:08.737Z]  6 ) -[2024-03-07T16:33:08.737Z]  8 ax = plt.subplot(projection=crs) -[2024-03-07T16:33:08.737Z] ----> 9 grid.name = "Land-use categories" -[2024-03-07T16:33:08.737Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-07T16:33:08.737Z]  11 plt.show() -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] NameError: name 'grid' is not defined -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 _ -[2024-03-07T16:33:08.737Z] Notebook cell execution failed -[2024-03-07T16:33:08.737Z] Cell 10: Cell execution caused an exception -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] Input: -[2024-03-07T16:33:08.737Z] properties, dem = terrain_resp.get(asobj=True) -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] elevation = properties[0]["elevation"] -[2024-03-07T16:33:08.737Z] slope = properties[0]["slope"] -[2024-03-07T16:33:08.737Z] aspect = properties[0]["aspect"] -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} -[2024-03-07T16:33:08.737Z] display(terrain) -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] Traceback: -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.737Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:33:08.737Z] Cell In[1], line 1 -[2024-03-07T16:33:08.737Z] ----> 1 properties, dem = terrain_resp.get(asobj=True) -[2024-03-07T16:33:08.737Z]  3 elevation = properties[0]["elevation"] -[2024-03-07T16:33:08.737Z]  4 slope = properties[0]["slope"] -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-07T16:33:08.737Z]  38 if not self.isSucceded(): -[2024-03-07T16:33:08.737Z]  39 # TODO: add reason for failure -[2024-03-07T16:33:08.737Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-07T16:33:08.737Z] ---> 41 return self._make_output(asobj) -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-07T16:33:08.737Z]  44 Output = namedtuple( -[2024-03-07T16:33:08.737Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:33:08.737Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:33:08.737Z]  47 ) -[2024-03-07T16:33:08.737Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:33:08.737Z]  49 return Output( -[2024-03-07T16:33:08.737Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:33:08.737Z]  51 ) -[2024-03-07T16:33:08.737Z] -[2024-03-07T16:33:08.737Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-07T16:33:08.737Z]  44 Output = namedtuple( -[2024-03-07T16:33:08.737Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:33:08.737Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:33:08.737Z]  47 ) -[2024-03-07T16:33:08.738Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:33:08.738Z]  49 return Output( -[2024-03-07T16:33:08.738Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:33:08.738Z]  51 ) -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-07T16:33:08.738Z]  68 return delist(data) -[2024-03-07T16:33:08.738Z]  70 if convert_objects: -[2024-03-07T16:33:08.738Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-07T16:33:08.738Z]  72 else: -[2024-03-07T16:33:08.738Z]  73 return output.reference -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-07T16:33:08.738Z]  372 try: -[2024-03-07T16:33:08.738Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-07T16:33:08.738Z] --> 374 out = converter.convert() -[2024-03-07T16:33:08.738Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:33:08.738Z]  376 out = [convert(o, path) for o in out] -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-07T16:33:08.738Z]  263 import xarray # isort: skip -[2024-03-07T16:33:08.738Z]  264 import rioxarray # noqa -[2024-03-07T16:33:08.738Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ -[2024-03-07T16:33:08.738Z] Notebook cell execution failed -[2024-03-07T16:33:08.738Z] Cell 11: Cell execution caused an exception -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] Input: -[2024-03-07T16:33:08.738Z] crs = ccrs.LambertConformal( -[2024-03-07T16:33:08.738Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-07T16:33:08.738Z] ) -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] dem.name = "Elevation" -[2024-03-07T16:33:08.738Z] dem.attrs["units"] = "m" -[2024-03-07T16:33:08.738Z] ax = plt.subplot(projection=crs) -[2024-03-07T16:33:08.738Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") -[2024-03-07T16:33:08.738Z] plt.show() -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] Traceback: -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.738Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.738Z] Cell In[1], line 5 -[2024-03-07T16:33:08.738Z]  1 crs = ccrs.LambertConformal( -[2024-03-07T16:33:08.738Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-07T16:33:08.738Z]  3 ) -[2024-03-07T16:33:08.738Z] ----> 5 dem.name = "Elevation" -[2024-03-07T16:33:08.738Z]  6 dem.attrs["units"] = "m" -[2024-03-07T16:33:08.738Z]  7 ax = plt.subplot(projection=crs) -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] NameError: name 'dem' is not defined -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 _ -[2024-03-07T16:33:08.738Z] Notebook cell execution failed -[2024-03-07T16:33:08.738Z] Cell 13: Cell execution caused an exception -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] Input: -[2024-03-07T16:33:08.738Z] all_properties = {**shape_info, **land_use, **terrain} -[2024-03-07T16:33:08.738Z] display(all_properties) -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] Traceback: -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.738Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.738Z] Cell In[1], line 1 -[2024-03-07T16:33:08.738Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} -[2024-03-07T16:33:08.738Z]  2 display(all_properties) -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] NameError: name 'land_use' is not defined -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] ____ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 7 ____ -[2024-03-07T16:33:08.738Z] Notebook cell execution failed -[2024-03-07T16:33:08.738Z] Cell 7: Cell execution caused an exception -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] Input: -[2024-03-07T16:33:08.738Z] with xr.set_options(keep_attrs=True): -[2024-03-07T16:33:08.738Z] # Average the variables -[2024-03-07T16:33:08.738Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-03-07T16:33:08.738Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-03-07T16:33:08.738Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-07T16:33:08.738Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-07T16:33:08.738Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-07T16:33:08.738Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-03-07T16:33:08.738Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] Traceback: -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.738Z] KeyError Traceback (most recent call last) -[2024-03-07T16:33:08.738Z] Cell In[1], line 8 -[2024-03-07T16:33:08.738Z]  5 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-07T16:33:08.738Z]  7 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-07T16:33:08.738Z] ----> 8 ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-07T16:33:08.738Z]  10 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-07T16:33:08.738Z]  11 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-07T16:33:08.738Z] -[2024-03-07T16:33:08.738Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-03-07T16:33:08.738Z]  851 self.coords[key] = value -[2024-03-07T16:33:08.738Z]  852 else: -[2024-03-07T16:33:08.738Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-03-07T16:33:08.739Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-03-07T16:33:08.739Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-03-07T16:33:08.739Z] --> 856 obj = self[key] -[2024-03-07T16:33:08.739Z]  857 if isinstance(value, DataArray): -[2024-03-07T16:33:08.739Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-03-07T16:33:08.739Z] -[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-03-07T16:33:08.739Z]  844 return self._getitem_coord(key) -[2024-03-07T16:33:08.739Z]  845 else: -[2024-03-07T16:33:08.739Z]  846 # xarray-style array indexing -[2024-03-07T16:33:08.739Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-03-07T16:33:08.739Z] -[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-03-07T16:33:08.739Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-03-07T16:33:08.739Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-03-07T16:33:08.739Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-03-07T16:33:08.739Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-03-07T16:33:08.739Z]  1447  ) -[2024-03-07T16:33:08.739Z]  1448 return self._from_temp_dataset(ds) -[2024-03-07T16:33:08.739Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-03-07T16:33:08.739Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-03-07T16:33:08.739Z] -[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-03-07T16:33:08.739Z]  2926 var_indexers = { -[2024-03-07T16:33:08.739Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-03-07T16:33:08.739Z]  2928 } -[2024-03-07T16:33:08.739Z]  2929 if var_indexers: -[2024-03-07T16:33:08.739Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-03-07T16:33:08.739Z]  2931 # drop scalar coordinates -[2024-03-07T16:33:08.739Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-03-07T16:33:08.739Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-03-07T16:33:08.739Z] -[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-03-07T16:33:08.739Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-03-07T16:33:08.739Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-03-07T16:33:08.739Z] -> 1368 return self[key] -[2024-03-07T16:33:08.739Z] -[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-03-07T16:33:08.739Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-03-07T16:33:08.739Z]  879  """Return a new Variable object whose contents are consistent with -[2024-03-07T16:33:08.739Z]  880  getting the provided key from the underlying data. -[2024-03-07T16:33:08.739Z]  881 -[2024-03-07T16:33:08.739Z]  (...) -[2024-03-07T16:33:08.739Z]  889  array `x.values` directly. -[2024-03-07T16:33:08.739Z]  890  """ -[2024-03-07T16:33:08.739Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-03-07T16:33:08.739Z]  892 data = as_indexable(self._data)[indexer] -[2024-03-07T16:33:08.739Z]  893 if new_order: -[2024-03-07T16:33:08.739Z] -[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-03-07T16:33:08.739Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-03-07T16:33:08.739Z]  722 return self._broadcast_indexes_basic(key) -[2024-03-07T16:33:08.739Z] --> 724 self._validate_indexers(key) -[2024-03-07T16:33:08.739Z]  725 # Detect it can be mapped as an outer indexer -[2024-03-07T16:33:08.739Z]  726 # If all key is unlabeled, or -[2024-03-07T16:33:08.739Z]  727 # key can be mapped as an OuterIndexer. -[2024-03-07T16:33:08.739Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-03-07T16:33:08.739Z] -[2024-03-07T16:33:08.739Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-03-07T16:33:08.739Z]  771 raise IndexError( -[2024-03-07T16:33:08.739Z]  772 "{}-dimensional boolean indexing is " -[2024-03-07T16:33:08.739Z]  773 "not supported. ".format(k.ndim) -[2024-03-07T16:33:08.739Z]  774 ) -[2024-03-07T16:33:08.739Z]  775 if is_duck_dask_array(k.data): -[2024-03-07T16:33:08.739Z] --> 776 raise KeyError( -[2024-03-07T16:33:08.739Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-03-07T16:33:08.739Z]  778 "This will result in a dask array of unknown shape. " -[2024-03-07T16:33:08.740Z]  779 "Such arrays are unsupported by Xarray." -[2024-03-07T16:33:08.740Z]  780 "Please compute the indexer first using .compute()" -[2024-03-07T16:33:08.740Z]  781 ) -[2024-03-07T16:33:08.740Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-03-07T16:33:08.740Z]  783 raise IndexError( -[2024-03-07T16:33:08.740Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-03-07T16:33:08.740Z]  785 "same dimension to the indexed array. Indexer is " -[2024-03-07T16:33:08.740Z]  (...) -[2024-03-07T16:33:08.740Z]  788 ) -[2024-03-07T16:33:08.740Z]  789 ) -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] ____ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 8 ____ -[2024-03-07T16:33:08.740Z] Notebook cell execution failed -[2024-03-07T16:33:08.740Z] Cell 8: Cell execution caused an exception -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] Input: -[2024-03-07T16:33:08.740Z] # Check and see if the precipitation makes sense: -[2024-03-07T16:33:08.740Z] ERA5_pr.pr.plot() -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] Traceback: -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.740Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:33:08.740Z] Cell In[1], line 2 -[2024-03-07T16:33:08.740Z]  1 # Check and see if the precipitation makes sense: -[2024-03-07T16:33:08.740Z] ----> 2 ERA5_pr.pr.plot() -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-03-07T16:33:08.740Z]  275 with suppress(KeyError): -[2024-03-07T16:33:08.740Z]  276 return source[name] -[2024-03-07T16:33:08.740Z] --> 277 raise AttributeError( -[2024-03-07T16:33:08.740Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-03-07T16:33:08.740Z]  279 ) -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] AttributeError: 'DataArray' object has no attribute 'pr' -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] ___ RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 10 ____ -[2024-03-07T16:33:08.740Z] Notebook cell execution failed -[2024-03-07T16:33:08.740Z] Cell 10: Cell execution caused an exception -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] Input: -[2024-03-07T16:33:08.740Z] # Option 2, which is recommended, in which we prepare a single file that merges all three variables into one netcdf file: -[2024-03-07T16:33:08.740Z] with xr.set_options(keep_attrs=True): -[2024-03-07T16:33:08.740Z] xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]).to_netcdf(tmp / "ERA5_weather_data.nc") -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] Traceback: -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.740Z] MergeError Traceback (most recent call last) -[2024-03-07T16:33:08.740Z] Cell In[1], line 3 -[2024-03-07T16:33:08.740Z]  1 # Option 2, which is recommended, in which we prepare a single file that merges all three variables into one netcdf file: -[2024-03-07T16:33:08.740Z]  2 with xr.set_options(keep_attrs=True): -[2024-03-07T16:33:08.740Z] ----> 3 xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]).to_netcdf(tmp / "ERA5_weather_data.nc") -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:992, in merge(objects, compat, join, fill_value, combine_attrs) -[2024-03-07T16:33:08.740Z]  989 obj = obj.to_dataset() -[2024-03-07T16:33:08.740Z]  990 dict_like_objects.append(obj) -[2024-03-07T16:33:08.740Z] --> 992 merge_result = merge_core( -[2024-03-07T16:33:08.740Z]  993  dict_like_objects, -[2024-03-07T16:33:08.740Z]  994  compat, -[2024-03-07T16:33:08.740Z]  995  join, -[2024-03-07T16:33:08.740Z]  996  combine_attrs=combine_attrs, -[2024-03-07T16:33:08.740Z]  997  fill_value=fill_value, -[2024-03-07T16:33:08.740Z]  998 ) -[2024-03-07T16:33:08.740Z]  999 return Dataset._construct_direct(**merge_result._asdict()) -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:719, in merge_core(objects, compat, join, combine_attrs, priority_arg, explicit_coords, indexes, fill_value, skip_align_args) -[2024-03-07T16:33:08.740Z]  717 collected = collect_variables_and_indexes(aligned, indexes=indexes) -[2024-03-07T16:33:08.740Z]  718 prioritized = _get_priority_vars_and_indexes(aligned, priority_arg, compat=compat) -[2024-03-07T16:33:08.740Z] --> 719 variables, out_indexes = merge_collected( -[2024-03-07T16:33:08.740Z]  720  collected, prioritized, compat=compat, combine_attrs=combine_attrs -[2024-03-07T16:33:08.740Z]  721 ) -[2024-03-07T16:33:08.740Z]  723 dims = calculate_dimensions(variables) -[2024-03-07T16:33:08.740Z]  725 coord_names, noncoord_names = determine_coords(coerced) -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:290, in merge_collected(grouped, prioritized, compat, combine_attrs, equals) -[2024-03-07T16:33:08.740Z]  288 variables = [variable for variable, _ in elements_list] -[2024-03-07T16:33:08.740Z]  289 try: -[2024-03-07T16:33:08.740Z] --> 290 merged_vars[name] = unique_variable( -[2024-03-07T16:33:08.740Z]  291  name, variables, compat, equals.get(name, None) -[2024-03-07T16:33:08.740Z]  292  ) -[2024-03-07T16:33:08.740Z]  293 except MergeError: -[2024-03-07T16:33:08.740Z]  294 if compat != "minimal": -[2024-03-07T16:33:08.740Z]  295 # we need more than "minimal" compatibility (for which -[2024-03-07T16:33:08.740Z]  296 # we drop conflicting coordinates) -[2024-03-07T16:33:08.740Z] -[2024-03-07T16:33:08.740Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/merge.py:144, in unique_variable(name, variables, compat, equals) -[2024-03-07T16:33:08.740Z]  141 break -[2024-03-07T16:33:08.740Z]  143 if not equals: -[2024-03-07T16:33:08.741Z] --> 144 raise MergeError( -[2024-03-07T16:33:08.741Z]  145 f"conflicting values for variable {name!r} on objects to be combined. " -[2024-03-07T16:33:08.741Z]  146 "You can skip this check by specifying compat='override'." -[2024-03-07T16:33:08.741Z]  147 ) -[2024-03-07T16:33:08.741Z]  149 if combine_method: -[2024-03-07T16:33:08.741Z]  150 for var in variables[1:]: -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] MergeError: conflicting values for variable 't2m' on objects to be combined. You can skip this check by specifying compat='override'. -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-03-07T16:33:08.741Z] Notebook cell execution failed -[2024-03-07T16:33:08.741Z] Cell 5: Cell execution caused an exception -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] Input: -[2024-03-07T16:33:08.741Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-03-07T16:33:08.741Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-03-07T16:33:08.741Z] from ravenpy import OutputReader -[2024-03-07T16:33:08.741Z] from ravenpy.ravenpy import run -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-03-07T16:33:08.741Z] run_name = run_name -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-03-07T16:33:08.741Z] # subfolder called "outputs" -[2024-03-07T16:33:08.741Z] configdir = workdir -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-07T16:33:08.741Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] # Get the outputs using the Output Reader object. -[2024-03-07T16:33:08.741Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] Traceback: -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.741Z] RavenError Traceback (most recent call last) -[2024-03-07T16:33:08.741Z] Cell In[1], line 14 -[2024-03-07T16:33:08.741Z]  11 configdir = workdir -[2024-03-07T16:33:08.741Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-07T16:33:08.741Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-07T16:33:08.741Z]  16 # Get the outputs using the Output Reader object. -[2024-03-07T16:33:08.741Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-07T16:33:08.741Z]  320 warn(msg, category=RavenWarning) -[2024-03-07T16:33:08.741Z]  322 if messages["ERROR"]: -[2024-03-07T16:33:08.741Z] --> 323 raise RavenError( -[2024-03-07T16:33:08.741Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-07T16:33:08.741Z]  325 ) -[2024-03-07T16:33:08.741Z]  327 if returncode != 0: -[2024-03-07T16:33:08.741Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] RavenError: Config directory: /tmp/NB48sz4avbe -[2024-03-07T16:33:08.741Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-03-07T16:33:08.741Z] Notebook cell execution failed -[2024-03-07T16:33:08.741Z] Cell 6: Cell execution caused an exception -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] Input: -[2024-03-07T16:33:08.741Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-03-07T16:33:08.741Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-03-07T16:33:08.741Z] from ravenpy import Emulator -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] # Prepare the emulator by writing files on disk -[2024-03-07T16:33:08.741Z] e = Emulator(config=m) -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] # Run the model and get the outputs. -[2024-03-07T16:33:08.741Z] outputs = e.run() -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] Traceback: -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.741Z] RavenError Traceback (most recent call last) -[2024-03-07T16:33:08.741Z] Cell In[1], line 9 -[2024-03-07T16:33:08.741Z]  6 e = Emulator(config=m) -[2024-03-07T16:33:08.741Z]  8 # Run the model and get the outputs. -[2024-03-07T16:33:08.741Z] ----> 9 outputs = e.run() -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-03-07T16:33:08.741Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-03-07T16:33:08.741Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-03-07T16:33:08.741Z]  66 self.write_rv(overwrite=overwrite) -[2024-03-07T16:33:08.741Z] ---> 68 self._output_path = run( -[2024-03-07T16:33:08.741Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-03-07T16:33:08.741Z]  70 ) -[2024-03-07T16:33:08.741Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-03-07T16:33:08.741Z]  72 return self._output -[2024-03-07T16:33:08.741Z] -[2024-03-07T16:33:08.741Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-07T16:33:08.741Z]  320 warn(msg, category=RavenWarning) -[2024-03-07T16:33:08.741Z]  322 if messages["ERROR"]: -[2024-03-07T16:33:08.741Z] --> 323 raise RavenError( -[2024-03-07T16:33:08.741Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-07T16:33:08.741Z]  325 ) -[2024-03-07T16:33:08.742Z]  327 if returncode != 0: -[2024-03-07T16:33:08.742Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] RavenError: Config directory: /tmp/tmp2tn9q4mp -[2024-03-07T16:33:08.742Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-03-07T16:33:08.742Z] Notebook cell execution failed -[2024-03-07T16:33:08.742Z] Cell 7: Cell execution caused an exception -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Input: -[2024-03-07T16:33:08.742Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-07T16:33:08.742Z] outputs.files -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Traceback: -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.742Z] Cell In[1], line 2 -[2024-03-07T16:33:08.742Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-07T16:33:08.742Z] ----> 2 outputs.files -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-03-07T16:33:08.742Z] Notebook cell execution failed -[2024-03-07T16:33:08.742Z] Cell 8: Cell execution caused an exception -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Input: -[2024-03-07T16:33:08.742Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-07T16:33:08.742Z] print("----------------HYDROGRAPH----------------") -[2024-03-07T16:33:08.742Z] display(outputs.hydrograph) -[2024-03-07T16:33:08.742Z] print("") -[2024-03-07T16:33:08.742Z] print("-----------------STORAGE------------------") -[2024-03-07T16:33:08.742Z] display(outputs.storage) -[2024-03-07T16:33:08.742Z] print("") -[2024-03-07T16:33:08.742Z] print("-----------------SOLUTION-----------------") -[2024-03-07T16:33:08.742Z] display(outputs.solution) -[2024-03-07T16:33:08.742Z] print("") -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Traceback: -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.742Z] Cell In[1], line 3 -[2024-03-07T16:33:08.742Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-07T16:33:08.742Z]  2 print("----------------HYDROGRAPH----------------") -[2024-03-07T16:33:08.742Z] ----> 3 display(outputs.hydrograph) -[2024-03-07T16:33:08.742Z]  4 print("") -[2024-03-07T16:33:08.742Z]  5 print("-----------------STORAGE------------------") -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-03-07T16:33:08.742Z] Notebook cell execution failed -[2024-03-07T16:33:08.742Z] Cell 9: Cell execution caused an exception -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Input: -[2024-03-07T16:33:08.742Z] # Import the graphing utility built to handle Raven model outputs -[2024-03-07T16:33:08.742Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] hydrograph_objects = outputs.hydrograph -[2024-03-07T16:33:08.742Z] hydrographs(hydrograph_objects) -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Traceback: -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.742Z] Cell In[1], line 4 -[2024-03-07T16:33:08.742Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-03-07T16:33:08.742Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-07T16:33:08.742Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-03-07T16:33:08.742Z]  5 hydrographs(hydrograph_objects) -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-03-07T16:33:08.742Z] Notebook cell execution failed -[2024-03-07T16:33:08.742Z] Cell 10: Cell execution caused an exception -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Input: -[2024-03-07T16:33:08.742Z] outputs.hydrograph.q_sim.plot() -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Traceback: -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.742Z] Cell In[1], line 1 -[2024-03-07T16:33:08.742Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-03-07T16:33:08.742Z] Notebook cell execution failed -[2024-03-07T16:33:08.742Z] Cell 11: Cell execution caused an exception -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Input: -[2024-03-07T16:33:08.742Z] print(list(outputs.storage.keys())) -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Traceback: -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.742Z] Cell In[1], line 1 -[2024-03-07T16:33:08.742Z] ----> 1 print(list(outputs.storage.keys())) -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-03-07T16:33:08.742Z] Notebook cell execution failed -[2024-03-07T16:33:08.742Z] Cell 12: Cell execution caused an exception -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Input: -[2024-03-07T16:33:08.742Z] # Plot the "Snow" variable -[2024-03-07T16:33:08.742Z] outputs.storage["Snow"].plot() -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Traceback: -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.742Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.742Z] Cell In[1], line 2 -[2024-03-07T16:33:08.742Z]  1 # Plot the "Snow" variable -[2024-03-07T16:33:08.742Z] ----> 2 outputs.storage["Snow"].plot() -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] NameError: name 'outputs' is not defined -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ -[2024-03-07T16:33:08.742Z] Notebook cell execution failed -[2024-03-07T16:33:08.742Z] Cell 0: Cell execution caused an exception -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Input: -[2024-03-07T16:33:08.742Z] import os -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] from hsclient import HydroShare, Token -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] # Authentication method using username and password -[2024-03-07T16:33:08.742Z] """ -[2024-03-07T16:33:08.742Z] username = 'XXXXX' -[2024-03-07T16:33:08.742Z] password = 'XXXXX' -[2024-03-07T16:33:08.742Z] hs = HydroShare(username=username, password=password) -[2024-03-07T16:33:08.742Z] """ -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-03-07T16:33:08.742Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] token = Token(access_token=access_token, token_type="bearer") -[2024-03-07T16:33:08.742Z] hs = HydroShare(client_id=client_id, token=token) -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] Traceback: -[2024-03-07T16:33:08.742Z] -[2024-03-07T16:33:08.742Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.742Z] ValidationError Traceback (most recent call last) -[2024-03-07T16:33:08.742Z] Cell In[1], line 15 -[2024-03-07T16:33:08.743Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-03-07T16:33:08.743Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-03-07T16:33:08.743Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") -[2024-03-07T16:33:08.743Z]  16 hs = HydroShare(client_id=client_id, token=token) -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) -[2024-03-07T16:33:08.743Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks -[2024-03-07T16:33:08.743Z]  170 __tracebackhide__ = True -[2024-03-07T16:33:08.743Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] ValidationError: 4 validation errors for Token -[2024-03-07T16:33:08.743Z] scope -[2024-03-07T16:33:08.743Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) -[2024-03-07T16:33:08.743Z]  2 for r in results: -[2024-03-07T16:33:08.743Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] NameError: name 'hs' is not defined -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ -[2024-03-07T16:33:08.743Z] Notebook cell execution failed -[2024-03-07T16:33:08.743Z] Cell 2: Cell execution caused an exception -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] Input: -[2024-03-07T16:33:08.743Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-07T16:33:08.743Z] res.files() -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] Traceback: -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.743Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.743Z] Cell In[1], line 1 -[2024-03-07T16:33:08.743Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-07T16:33:08.743Z]  2 res.files() -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] NameError: name 'hs' is not defined -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ -[2024-03-07T16:33:08.743Z] Notebook cell execution failed -[2024-03-07T16:33:08.743Z] Cell 3: Cell execution caused an exception -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] Input: -[2024-03-07T16:33:08.743Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] Traceback: -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.743Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.743Z] Cell In[1], line 1 -[2024-03-07T16:33:08.743Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] NameError: name 'res' is not defined -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 _ -[2024-03-07T16:33:08.743Z] Notebook cell execution failed -[2024-03-07T16:33:08.743Z] Cell 7: Cell execution caused an exception -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] Input: -[2024-03-07T16:33:08.743Z] features, statistics, grid0 = stats_resp.get(asobj=True) -[2024-03-07T16:33:08.743Z] lu = statistics[0] -[2024-03-07T16:33:08.743Z] total = sum(lu.values()) -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] land_use = {k: (v / total) for (k, v) in lu.items()} -[2024-03-07T16:33:08.743Z] display("Land use ratios", land_use) -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} -[2024-03-07T16:33:08.743Z] display("Land use percentages", land_use_pct) -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] Traceback: -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.743Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:33:08.743Z] Cell In[1], line 1 -[2024-03-07T16:33:08.743Z] ----> 1 features, statistics, grid0 = stats_resp.get(asobj=True) -[2024-03-07T16:33:08.743Z]  2 lu = statistics[0] -[2024-03-07T16:33:08.743Z]  3 total = sum(lu.values()) -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-07T16:33:08.743Z]  38 if not self.isSucceded(): -[2024-03-07T16:33:08.743Z]  39 # TODO: add reason for failure -[2024-03-07T16:33:08.743Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-07T16:33:08.743Z] ---> 41 return self._make_output(asobj) -[2024-03-07T16:33:08.743Z] -[2024-03-07T16:33:08.743Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-07T16:33:08.743Z]  44 Output = namedtuple( -[2024-03-07T16:33:08.743Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:33:08.743Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:33:08.743Z]  47 ) -[2024-03-07T16:33:08.744Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:33:08.744Z]  49 return Output( -[2024-03-07T16:33:08.744Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:33:08.744Z]  51 ) -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-07T16:33:08.744Z]  44 Output = namedtuple( -[2024-03-07T16:33:08.744Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:33:08.744Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:33:08.744Z]  47 ) -[2024-03-07T16:33:08.744Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:33:08.744Z]  49 return Output( -[2024-03-07T16:33:08.744Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:33:08.744Z]  51 ) -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-07T16:33:08.744Z]  68 return delist(data) -[2024-03-07T16:33:08.744Z]  70 if convert_objects: -[2024-03-07T16:33:08.744Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-07T16:33:08.744Z]  72 else: -[2024-03-07T16:33:08.744Z]  73 return output.reference -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) -[2024-03-07T16:33:08.744Z]  374 out = converter.convert() -[2024-03-07T16:33:08.744Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:33:08.744Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-07T16:33:08.744Z]  377 return out -[2024-03-07T16:33:08.744Z]  379 except (ImportError, NotImplementedError): -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) -[2024-03-07T16:33:08.744Z]  374 out = converter.convert() -[2024-03-07T16:33:08.744Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:33:08.744Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-07T16:33:08.744Z]  377 return out -[2024-03-07T16:33:08.744Z]  379 except (ImportError, NotImplementedError): -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-07T16:33:08.744Z]  372 try: -[2024-03-07T16:33:08.744Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-07T16:33:08.744Z] --> 374 out = converter.convert() -[2024-03-07T16:33:08.744Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:33:08.744Z]  376 out = [convert(o, path) for o in out] -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-07T16:33:08.744Z]  263 import xarray # isort: skip -[2024-03-07T16:33:08.744Z]  264 import rioxarray # noqa -[2024-03-07T16:33:08.744Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 _ -[2024-03-07T16:33:08.744Z] Notebook cell execution failed -[2024-03-07T16:33:08.744Z] Cell 8: Cell execution caused an exception -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] Input: -[2024-03-07T16:33:08.744Z] terrain_resp = wps.terrain_analysis( -[2024-03-07T16:33:08.744Z] shape=basin_contour, select_all_touching=True, projected_crs=3978 -[2024-03-07T16:33:08.744Z] ) -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] properties, dem0 = terrain_resp.get(asobj=True) -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] elevation = properties[0]["elevation"] -[2024-03-07T16:33:08.744Z] slope = properties[0]["slope"] -[2024-03-07T16:33:08.744Z] aspect = properties[0]["aspect"] -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} -[2024-03-07T16:33:08.744Z] display(terrain) -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] Traceback: -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.744Z] AttributeError Traceback (most recent call last) -[2024-03-07T16:33:08.744Z] Cell In[1], line 5 -[2024-03-07T16:33:08.744Z]  1 terrain_resp = wps.terrain_analysis( -[2024-03-07T16:33:08.744Z]  2 shape=basin_contour, select_all_touching=True, projected_crs=3978 -[2024-03-07T16:33:08.744Z]  3 ) -[2024-03-07T16:33:08.744Z] ----> 5 properties, dem0 = terrain_resp.get(asobj=True) -[2024-03-07T16:33:08.744Z]  7 elevation = properties[0]["elevation"] -[2024-03-07T16:33:08.744Z]  8 slope = properties[0]["slope"] -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.744Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-07T16:33:08.744Z]  38 if not self.isSucceded(): -[2024-03-07T16:33:08.744Z]  39 # TODO: add reason for failure -[2024-03-07T16:33:08.744Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-07T16:33:08.744Z] ---> 41 return self._make_output(asobj) -[2024-03-07T16:33:08.744Z] -[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-07T16:33:08.745Z]  44 Output = namedtuple( -[2024-03-07T16:33:08.745Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:33:08.745Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:33:08.745Z]  47 ) -[2024-03-07T16:33:08.745Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:33:08.745Z]  49 return Output( -[2024-03-07T16:33:08.745Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:33:08.745Z]  51 ) -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-07T16:33:08.745Z]  44 Output = namedtuple( -[2024-03-07T16:33:08.745Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-07T16:33:08.745Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-07T16:33:08.745Z]  47 ) -[2024-03-07T16:33:08.745Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-07T16:33:08.745Z]  49 return Output( -[2024-03-07T16:33:08.745Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-07T16:33:08.745Z]  51 ) -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-07T16:33:08.745Z]  68 return delist(data) -[2024-03-07T16:33:08.745Z]  70 if convert_objects: -[2024-03-07T16:33:08.745Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-07T16:33:08.745Z]  72 else: -[2024-03-07T16:33:08.745Z]  73 return output.reference -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-07T16:33:08.745Z]  372 try: -[2024-03-07T16:33:08.745Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-07T16:33:08.745Z] --> 374 out = converter.convert() -[2024-03-07T16:33:08.745Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-07T16:33:08.745Z]  376 out = [convert(o, path) for o in out] -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-07T16:33:08.745Z]  263 import xarray # isort: skip -[2024-03-07T16:33:08.745Z]  264 import rioxarray # noqa -[2024-03-07T16:33:08.745Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 _ -[2024-03-07T16:33:08.745Z] Notebook cell execution failed -[2024-03-07T16:33:08.745Z] Cell 9: Cell execution caused an exception -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] Input: -[2024-03-07T16:33:08.745Z] all_properties = {**shape_info, **land_use, **terrain} -[2024-03-07T16:33:08.745Z] display(all_properties) -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] Traceback: -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.745Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.745Z] Cell In[1], line 1 -[2024-03-07T16:33:08.745Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} -[2024-03-07T16:33:08.745Z]  2 display(all_properties) -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] NameError: name 'land_use' is not defined -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ -[2024-03-07T16:33:08.745Z] Notebook cell execution failed -[2024-03-07T16:33:08.745Z] Cell 10: Cell execution caused an exception -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] Input: -[2024-03-07T16:33:08.745Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. -[2024-03-07T16:33:08.745Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" -[2024-03-07T16:33:08.745Z] cat = intake.open_catalog(catalog_name) -[2024-03-07T16:33:08.745Z] ds = cat.era5_reanalysis_single_levels.to_dask() -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] """ -[2024-03-07T16:33:08.745Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, -[2024-03-07T16:33:08.745Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total -[2024-03-07T16:33:08.745Z] precipitation. -[2024-03-07T16:33:08.745Z] """ -[2024-03-07T16:33:08.745Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, -[2024-03-07T16:33:08.745Z] # such as units and variable names. -[2024-03-07T16:33:08.745Z] with xr.set_options(keep_attrs=True): -[2024-03-07T16:33:08.745Z] ERA5_reference = subset.subset_shape( -[2024-03-07T16:33:08.745Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour -[2024-03-07T16:33:08.745Z] ) -[2024-03-07T16:33:08.745Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) -[2024-03-07T16:33:08.745Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) -[2024-03-07T16:33:08.745Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] # Change the units -[2024-03-07T16:33:08.745Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C -[2024-03-07T16:33:08.745Z] ERA5_tmin.attrs["units"] = "degC" -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C -[2024-03-07T16:33:08.745Z] ERA5_tmax.attrs["units"] = "degC" -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] ERA5_pr = ERA5_pr * 1000 # m to mm -[2024-03-07T16:33:08.745Z] ERA5_pr.attrs["units"] = "mm" -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] # Average the variables spatially -[2024-03-07T16:33:08.745Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-03-07T16:33:08.745Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-03-07T16:33:08.745Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-07T16:33:08.745Z] -[2024-03-07T16:33:08.745Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-07T16:33:08.746Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-07T16:33:08.746Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-07T16:33:08.746Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-03-07T16:33:08.746Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the -[2024-03-07T16:33:08.746Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. -[2024-03-07T16:33:08.746Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) -[2024-03-07T16:33:08.746Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] Traceback: -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.746Z] KeyError Traceback (most recent call last) -[2024-03-07T16:33:08.746Z] Cell In[1], line 37 -[2024-03-07T16:33:08.746Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-07T16:33:08.746Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-07T16:33:08.746Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-07T16:33:08.746Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-07T16:33:08.746Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-03-07T16:33:08.746Z]  851 self.coords[key] = value -[2024-03-07T16:33:08.746Z]  852 else: -[2024-03-07T16:33:08.746Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-03-07T16:33:08.746Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-03-07T16:33:08.746Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-03-07T16:33:08.746Z] --> 856 obj = self[key] -[2024-03-07T16:33:08.746Z]  857 if isinstance(value, DataArray): -[2024-03-07T16:33:08.746Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-03-07T16:33:08.746Z]  844 return self._getitem_coord(key) -[2024-03-07T16:33:08.746Z]  845 else: -[2024-03-07T16:33:08.746Z]  846 # xarray-style array indexing -[2024-03-07T16:33:08.746Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-03-07T16:33:08.746Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-03-07T16:33:08.746Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-03-07T16:33:08.746Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-03-07T16:33:08.746Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-03-07T16:33:08.746Z]  1447  ) -[2024-03-07T16:33:08.746Z]  1448 return self._from_temp_dataset(ds) -[2024-03-07T16:33:08.746Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-03-07T16:33:08.746Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-03-07T16:33:08.746Z]  2926 var_indexers = { -[2024-03-07T16:33:08.746Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-03-07T16:33:08.746Z]  2928 } -[2024-03-07T16:33:08.746Z]  2929 if var_indexers: -[2024-03-07T16:33:08.746Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-03-07T16:33:08.746Z]  2931 # drop scalar coordinates -[2024-03-07T16:33:08.746Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-03-07T16:33:08.746Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-03-07T16:33:08.746Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-03-07T16:33:08.746Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-03-07T16:33:08.746Z] -> 1368 return self[key] -[2024-03-07T16:33:08.746Z] -[2024-03-07T16:33:08.746Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-03-07T16:33:08.746Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-03-07T16:33:08.747Z]  879  """Return a new Variable object whose contents are consistent with -[2024-03-07T16:33:08.747Z]  880  getting the provided key from the underlying data. -[2024-03-07T16:33:08.747Z]  881 -[2024-03-07T16:33:08.747Z]  (...) -[2024-03-07T16:33:08.747Z]  889  array `x.values` directly. -[2024-03-07T16:33:08.747Z]  890  """ -[2024-03-07T16:33:08.747Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-03-07T16:33:08.747Z]  892 data = as_indexable(self._data)[indexer] -[2024-03-07T16:33:08.747Z]  893 if new_order: -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-03-07T16:33:08.747Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-03-07T16:33:08.747Z]  722 return self._broadcast_indexes_basic(key) -[2024-03-07T16:33:08.747Z] --> 724 self._validate_indexers(key) -[2024-03-07T16:33:08.747Z]  725 # Detect it can be mapped as an outer indexer -[2024-03-07T16:33:08.747Z]  726 # If all key is unlabeled, or -[2024-03-07T16:33:08.747Z]  727 # key can be mapped as an OuterIndexer. -[2024-03-07T16:33:08.747Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-03-07T16:33:08.747Z]  771 raise IndexError( -[2024-03-07T16:33:08.747Z]  772 "{}-dimensional boolean indexing is " -[2024-03-07T16:33:08.747Z]  773 "not supported. ".format(k.ndim) -[2024-03-07T16:33:08.747Z]  774 ) -[2024-03-07T16:33:08.747Z]  775 if is_duck_dask_array(k.data): -[2024-03-07T16:33:08.747Z] --> 776 raise KeyError( -[2024-03-07T16:33:08.747Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-03-07T16:33:08.747Z]  778 "This will result in a dask array of unknown shape. " -[2024-03-07T16:33:08.747Z]  779 "Such arrays are unsupported by Xarray." -[2024-03-07T16:33:08.747Z]  780 "Please compute the indexer first using .compute()" -[2024-03-07T16:33:08.747Z]  781 ) -[2024-03-07T16:33:08.747Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-03-07T16:33:08.747Z]  783 raise IndexError( -[2024-03-07T16:33:08.747Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-03-07T16:33:08.747Z]  785 "same dimension to the indexed array. Indexer is " -[2024-03-07T16:33:08.747Z]  (...) -[2024-03-07T16:33:08.747Z]  788 ) -[2024-03-07T16:33:08.747Z]  789 ) -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ -[2024-03-07T16:33:08.747Z] Notebook cell execution failed -[2024-03-07T16:33:08.747Z] Cell 11: Cell execution caused an exception -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] Input: -[2024-03-07T16:33:08.747Z] # Climate model to use -[2024-03-07T16:33:08.747Z] climate_model = "MIROC6" -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. -[2024-03-07T16:33:08.747Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") -[2024-03-07T16:33:08.747Z] col = intake.open_esm_datastore( -[2024-03-07T16:33:08.747Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" -[2024-03-07T16:33:08.747Z] ) -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. -[2024-03-07T16:33:08.747Z] with xr.set_options(keep_attrs=True): -[2024-03-07T16:33:08.747Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. -[2024-03-07T16:33:08.747Z] out = {} -[2024-03-07T16:33:08.747Z] for exp in ["historical", "ssp585"]: -[2024-03-07T16:33:08.747Z] if exp == "historical": -[2024-03-07T16:33:08.747Z] period_start = reference_start_day -[2024-03-07T16:33:08.747Z] period_end = reference_end_day -[2024-03-07T16:33:08.747Z] else: -[2024-03-07T16:33:08.747Z] period_start = future_start_day -[2024-03-07T16:33:08.747Z] period_end = future_end_day -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] out[exp] = {} -[2024-03-07T16:33:08.747Z] for variable in ["tasmin", "tasmax", "pr"]: -[2024-03-07T16:33:08.747Z] print(exp, variable) -[2024-03-07T16:33:08.747Z] query = dict( -[2024-03-07T16:33:08.747Z] experiment_id=exp, -[2024-03-07T16:33:08.747Z] table_id="day", -[2024-03-07T16:33:08.747Z] variable_id=variable, -[2024-03-07T16:33:08.747Z] member_id="r1i1p1f1", -[2024-03-07T16:33:08.747Z] source_id=climate_model, -[2024-03-07T16:33:08.747Z] ) -[2024-03-07T16:33:08.747Z] col_subset = col.search(require_all_on=["source_id"], **query) -[2024-03-07T16:33:08.747Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. -[2024-03-07T16:33:08.747Z] if variable == "pr": -[2024-03-07T16:33:08.747Z] out[exp][variable] = average.average_shape( -[2024-03-07T16:33:08.747Z] xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-07T16:33:08.747Z] time=slice(period_start, period_end) -[2024-03-07T16:33:08.747Z] )[variable], -[2024-03-07T16:33:08.747Z] basin_contour, -[2024-03-07T16:33:08.747Z] ).chunk(-1) -[2024-03-07T16:33:08.747Z] else: -[2024-03-07T16:33:08.747Z] out[exp][variable] = average.average_shape( -[2024-03-07T16:33:08.747Z] xr.open_zarr(mapper, consolidated=True) -[2024-03-07T16:33:08.747Z] .sel(time=slice(period_start, period_end)) -[2024-03-07T16:33:08.747Z] .reset_coords("height", drop=True)[variable], -[2024-03-07T16:33:08.747Z] basin_contour, -[2024-03-07T16:33:08.747Z] ).chunk(-1) -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] # We can now extract the variables that we will need later: -[2024-03-07T16:33:08.747Z] historical_tasmax = out["historical"]["tasmax"] -[2024-03-07T16:33:08.747Z] historical_tasmin = out["historical"]["tasmin"] -[2024-03-07T16:33:08.747Z] historical_pr = out["historical"]["pr"] -[2024-03-07T16:33:08.747Z] future_tasmax = out["ssp585"]["tasmax"] -[2024-03-07T16:33:08.747Z] future_tasmin = out["ssp585"]["tasmin"] -[2024-03-07T16:33:08.747Z] future_pr = out["ssp585"]["pr"] -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] Traceback: -[2024-03-07T16:33:08.747Z] -[2024-03-07T16:33:08.747Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.747Z] KeyError Traceback (most recent call last) -[2024-03-07T16:33:08.747Z] Cell In[1], line 44 -[2024-03-07T16:33:08.747Z]  37 out[exp][variable] = average.average_shape( -[2024-03-07T16:33:08.748Z]  38 xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-07T16:33:08.748Z]  39 time=slice(period_start, period_end) -[2024-03-07T16:33:08.748Z]  40 )[variable], -[2024-03-07T16:33:08.748Z]  41 basin_contour, -[2024-03-07T16:33:08.748Z]  42 ).chunk(-1) -[2024-03-07T16:33:08.748Z]  43 else: -[2024-03-07T16:33:08.748Z] ---> 44 out[exp][variable] = average.average_shape( -[2024-03-07T16:33:08.748Z]  45  xr.open_zarr(mapper, consolidated=True) -[2024-03-07T16:33:08.748Z]  46  .sel(time=slice(period_start, period_end)) -[2024-03-07T16:33:08.748Z]  47  .reset_coords("height", drop=True)[variable], -[2024-03-07T16:33:08.748Z]  48  basin_contour, -[2024-03-07T16:33:08.748Z]  49  ).chunk(-1) -[2024-03-07T16:33:08.748Z]  51 # We can now extract the variables that we will need later: -[2024-03-07T16:33:08.748Z]  52 historical_tasmax = out["historical"]["tasmax"] -[2024-03-07T16:33:08.748Z] -[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) -[2024-03-07T16:33:08.748Z]  105 ds_sub = ds_copy.isel(indexer) -[2024-03-07T16:33:08.748Z]  107 # Compute the weights -[2024-03-07T16:33:08.748Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) -[2024-03-07T16:33:08.748Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. -[2024-03-07T16:33:08.748Z]  111 nonnull = ( -[2024-03-07T16:33:08.748Z]  112 savger.weights.data.nnz -[2024-03-07T16:33:08.748Z]  113 if isinstance(savger.weights, xr.DataArray) -[2024-03-07T16:33:08.748Z]  114 else savger.weights.nnz -[2024-03-07T16:33:08.748Z]  115 ) -[2024-03-07T16:33:08.748Z] -[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) -[2024-03-07T16:33:08.748Z]  1182 if isinstance(ds_in, xr.DataArray): -[2024-03-07T16:33:08.748Z]  1183 ds_in = ds_in._to_temp_dataset() -[2024-03-07T16:33:08.748Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) -[2024-03-07T16:33:08.748Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. -[2024-03-07T16:33:08.748Z]  1188 # Latitude and longitude coordinates are the polygon centroid. -[2024-03-07T16:33:08.748Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) -[2024-03-07T16:33:08.748Z] -[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) -[2024-03-07T16:33:08.748Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) -[2024-03-07T16:33:08.748Z]  166 if need_bounds: -[2024-03-07T16:33:08.748Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) -[2024-03-07T16:33:08.748Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) -[2024-03-07T16:33:08.748Z]  169 add_corner(grid, lon_b.T, lat_b.T) -[2024-03-07T16:33:08.748Z] -[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) -[2024-03-07T16:33:08.748Z]  105 lat_bnds = ds.cf.get_bounds('latitude') -[2024-03-07T16:33:08.748Z]  107 # Convert from CF bounds to xESMF bounds. -[2024-03-07T16:33:08.748Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. -[2024-03-07T16:33:08.748Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) -[2024-03-07T16:33:08.748Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) -[2024-03-07T16:33:08.748Z]  111 return lon_b, lat_b -[2024-03-07T16:33:08.748Z] -[2024-03-07T16:33:08.748Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) -[2024-03-07T16:33:08.748Z]  2400 filtered = [ -[2024-03-07T16:33:08.748Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs -[2024-03-07T16:33:08.748Z]  2402 ] -[2024-03-07T16:33:08.748Z]  2403 if len(filtered) > 1: -[2024-03-07T16:33:08.748Z] -> 2404 raise KeyError( -[2024-03-07T16:33:08.748Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " -[2024-03-07T16:33:08.748Z]  2406 ) -[2024-03-07T16:33:08.748Z]  2408 (crd_name,) = filtered -[2024-03-07T16:33:08.748Z]  2409 crd = variables[crd_name] -[2024-03-07T16:33:08.748Z] -[2024-03-07T16:33:08.748Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " -[2024-03-07T16:33:08.748Z] -[2024-03-07T16:33:08.748Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ -[2024-03-07T16:33:08.748Z] Notebook cell execution failed -[2024-03-07T16:33:08.748Z] Cell 12: Cell execution caused an exception -[2024-03-07T16:33:08.748Z] -[2024-03-07T16:33:08.748Z] Input: -[2024-03-07T16:33:08.748Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-07T16:33:08.748Z] # and make sure everything is consistent. -[2024-03-07T16:33:08.748Z] -[2024-03-07T16:33:08.748Z] # Let's start with precipitation: -[2024-03-07T16:33:08.749Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-07T16:33:08.749Z] historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-07T16:33:08.749Z] future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Now we can actually convert units in absolute terms. -[2024-03-07T16:33:08.749Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") -[2024-03-07T16:33:08.749Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Now let's do temperature: -[2024-03-07T16:33:08.749Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") -[2024-03-07T16:33:08.749Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") -[2024-03-07T16:33:08.749Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") -[2024-03-07T16:33:08.749Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] Traceback: -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.749Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.749Z] Cell In[1], line 6 -[2024-03-07T16:33:08.749Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-07T16:33:08.749Z]  2 # and make sure everything is consistent. -[2024-03-07T16:33:08.749Z]  3 -[2024-03-07T16:33:08.749Z]  4 # Let's start with precipitation: -[2024-03-07T16:33:08.749Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-07T16:33:08.749Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-07T16:33:08.749Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-07T16:33:08.749Z]  9 # Now we can actually convert units in absolute terms. -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] NameError: name 'historical_pr' is not defined -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ -[2024-03-07T16:33:08.749Z] Notebook cell execution failed -[2024-03-07T16:33:08.749Z] Cell 13: Cell execution caused an exception -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] Input: -[2024-03-07T16:33:08.749Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. -[2024-03-07T16:33:08.749Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-07T16:33:08.749Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-07T16:33:08.749Z] ref=ERA5_weather.pr, -[2024-03-07T16:33:08.749Z] hist=historical_pr, -[2024-03-07T16:33:08.749Z] nquantiles=50, -[2024-03-07T16:33:08.749Z] kind="+", -[2024-03-07T16:33:08.749Z] group=group_month_window, -[2024-03-07T16:33:08.749Z] ) -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Apply the correction factors on the reference period -[2024-03-07T16:33:08.749Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Apply the correction factors on the future period -[2024-03-07T16:33:08.749Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Ensure that the precipitation is non-negative, which can happen with some climate models -[2024-03-07T16:33:08.749Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) -[2024-03-07T16:33:08.749Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data -[2024-03-07T16:33:08.749Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-07T16:33:08.749Z] ref=ERA5_weather.tmax, -[2024-03-07T16:33:08.749Z] hist=historical_tasmax, -[2024-03-07T16:33:08.749Z] nquantiles=50, -[2024-03-07T16:33:08.749Z] kind="+", -[2024-03-07T16:33:08.749Z] group=group_month_window, -[2024-03-07T16:33:08.749Z] ) -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Apply the correction factors on the reference period -[2024-03-07T16:33:08.749Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Apply the correction factors on the future period -[2024-03-07T16:33:08.749Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data -[2024-03-07T16:33:08.749Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-07T16:33:08.749Z] ref=ERA5_weather.tmin, -[2024-03-07T16:33:08.749Z] hist=historical_tasmin, -[2024-03-07T16:33:08.749Z] nquantiles=50, -[2024-03-07T16:33:08.749Z] kind="+", -[2024-03-07T16:33:08.749Z] group=group_month_window, -[2024-03-07T16:33:08.749Z] ) -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Apply the correction factors on the reference period -[2024-03-07T16:33:08.749Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Apply the correction factors on the future period -[2024-03-07T16:33:08.749Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] Traceback: -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.749Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.749Z] Cell In[1], line 6 -[2024-03-07T16:33:08.749Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-07T16:33:08.749Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-07T16:33:08.749Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-07T16:33:08.749Z] ----> 6 ref=ERA5_weather.pr, -[2024-03-07T16:33:08.749Z]  7 hist=historical_pr, -[2024-03-07T16:33:08.749Z]  8 nquantiles=50, -[2024-03-07T16:33:08.749Z]  9 kind="+", -[2024-03-07T16:33:08.749Z]  10 group=group_month_window, -[2024-03-07T16:33:08.749Z]  11 ) -[2024-03-07T16:33:08.749Z]  13 # Apply the correction factors on the reference period -[2024-03-07T16:33:08.749Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] NameError: name 'ERA5_weather' is not defined -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ -[2024-03-07T16:33:08.749Z] Notebook cell execution failed -[2024-03-07T16:33:08.749Z] Cell 14: Cell execution caused an exception -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] Input: -[2024-03-07T16:33:08.749Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-07T16:33:08.749Z] ref_dataset = xr.merge( -[2024-03-07T16:33:08.749Z] [ -[2024-03-07T16:33:08.749Z] corrected_ref_precip.to_dataset(name="pr"), -[2024-03-07T16:33:08.749Z] corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-07T16:33:08.749Z] corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-07T16:33:08.749Z] ] -[2024-03-07T16:33:08.749Z] ) -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Write to temporary folder -[2024-03-07T16:33:08.749Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-07T16:33:08.749Z] ref_dataset.to_netcdf(fn_tmp_ref) -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Convert the future corrected data into netCDF file -[2024-03-07T16:33:08.749Z] fut_dataset = xr.merge( -[2024-03-07T16:33:08.749Z] [ -[2024-03-07T16:33:08.749Z] corrected_fut_precip.to_dataset(name="pr"), -[2024-03-07T16:33:08.749Z] corrected_fut_tasmax.to_dataset(name="tasmax"), -[2024-03-07T16:33:08.749Z] corrected_fut_tasmin.to_dataset(name="tasmin"), -[2024-03-07T16:33:08.749Z] ] -[2024-03-07T16:33:08.749Z] ) -[2024-03-07T16:33:08.749Z] # Write to temporary folder -[2024-03-07T16:33:08.749Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" -[2024-03-07T16:33:08.749Z] fut_dataset.to_netcdf(fn_tmp_fut) -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] # Write the data to disk to a temporary location for future use. -[2024-03-07T16:33:08.749Z] ref_dataset = xr.open_dataset(fn_tmp_ref) -[2024-03-07T16:33:08.749Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] fut_dataset = xr.open_dataset(fn_tmp_fut) -[2024-03-07T16:33:08.749Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.749Z] Traceback: -[2024-03-07T16:33:08.749Z] -[2024-03-07T16:33:08.750Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.750Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.750Z] Cell In[1], line 4 -[2024-03-07T16:33:08.750Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-07T16:33:08.750Z]  2 ref_dataset = xr.merge( -[2024-03-07T16:33:08.750Z]  3 [ -[2024-03-07T16:33:08.750Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), -[2024-03-07T16:33:08.750Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-07T16:33:08.750Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-07T16:33:08.750Z]  7 ] -[2024-03-07T16:33:08.750Z]  8 ) -[2024-03-07T16:33:08.750Z]  10 # Write to temporary folder -[2024-03-07T16:33:08.750Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] NameError: name 'corrected_ref_precip' is not defined -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ -[2024-03-07T16:33:08.750Z] Notebook cell execution failed -[2024-03-07T16:33:08.750Z] Cell 15: Cell execution caused an exception -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] Input: -[2024-03-07T16:33:08.750Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-03-07T16:33:08.750Z] # populate the fields for the HRU. -[2024-03-07T16:33:08.750Z] hru = {} -[2024-03-07T16:33:08.750Z] hru = dict( -[2024-03-07T16:33:08.750Z] area=all_properties["area"], -[2024-03-07T16:33:08.750Z] elevation=all_properties["elevation"], -[2024-03-07T16:33:08.750Z] latitude=all_properties["latitude"], -[2024-03-07T16:33:08.750Z] longitude=all_properties["longitude"], -[2024-03-07T16:33:08.750Z] hru_type="land", -[2024-03-07T16:33:08.750Z] ) -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-03-07T16:33:08.750Z] # will simply execute the model which has been pre-configured to run on this period. -[2024-03-07T16:33:08.750Z] start_date = dt.datetime(1981, 1, 1) -[2024-03-07T16:33:08.750Z] end_date = dt.datetime(1985, 12, 31) -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. -[2024-03-07T16:33:08.750Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Alternative variable names as described in the tutorial. -[2024-03-07T16:33:08.750Z] alt_names = { -[2024-03-07T16:33:08.750Z] "TEMP_MIN": "tmin", -[2024-03-07T16:33:08.750Z] "TEMP_MAX": "tmax", -[2024-03-07T16:33:08.750Z] "PRECIP": "pr", -[2024-03-07T16:33:08.750Z] } -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here -[2024-03-07T16:33:08.750Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. -[2024-03-07T16:33:08.750Z] data_kwds = { -[2024-03-07T16:33:08.750Z] "ALL": { -[2024-03-07T16:33:08.750Z] "elevation": hru["elevation"], -[2024-03-07T16:33:08.750Z] "latitude": hru["latitude"], -[2024-03-07T16:33:08.750Z] "longitude": hru["longitude"], -[2024-03-07T16:33:08.750Z] } -[2024-03-07T16:33:08.750Z] } -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Give a name to the simulation -[2024-03-07T16:33:08.750Z] run_name = "Paper_example_simulation" -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Setup the gauge object that includes meteorological data from ERA5 -[2024-03-07T16:33:08.750Z] gauge = [ -[2024-03-07T16:33:08.750Z] rc.Gauge.from_nc( -[2024-03-07T16:33:08.750Z] tmp -[2024-03-07T16:33:08.750Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-03-07T16:33:08.750Z] data_type=data_type, # Note that this is the list of all the variables -[2024-03-07T16:33:08.750Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-03-07T16:33:08.750Z] data_kwds=data_kwds, -[2024-03-07T16:33:08.750Z] ) -[2024-03-07T16:33:08.750Z] ] -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Read the streamflow from the HYSETS catchment data for this basin -[2024-03-07T16:33:08.750Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, -[2024-03-07T16:33:08.750Z] # and the optimizer will read it directly to calibrate. -[2024-03-07T16:33:08.750Z] eval_metrics = ("NASH_SUTCLIFFE",) -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Build the model configuration according to user preferences and inputs -[2024-03-07T16:33:08.750Z] model_config = GR4JCN( -[2024-03-07T16:33:08.750Z] ObservationData=discharge_data, -[2024-03-07T16:33:08.750Z] Gauge=gauge, -[2024-03-07T16:33:08.750Z] HRUs=[hru], -[2024-03-07T16:33:08.750Z] StartDate=start_date, -[2024-03-07T16:33:08.750Z] EndDate=end_date, -[2024-03-07T16:33:08.750Z] RunName=run_name, -[2024-03-07T16:33:08.750Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. -[2024-03-07T16:33:08.750Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. -[2024-03-07T16:33:08.750Z] ) -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] Traceback: -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.750Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.750Z] Cell In[1], line 5 -[2024-03-07T16:33:08.750Z]  1 # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-03-07T16:33:08.750Z]  2 # populate the fields for the HRU. -[2024-03-07T16:33:08.750Z]  3 hru = {} -[2024-03-07T16:33:08.750Z]  4 hru = dict( -[2024-03-07T16:33:08.750Z] ----> 5 area=all_properties["area"], -[2024-03-07T16:33:08.750Z]  6 elevation=all_properties["elevation"], -[2024-03-07T16:33:08.750Z]  7 latitude=all_properties["latitude"], -[2024-03-07T16:33:08.750Z]  8 longitude=all_properties["longitude"], -[2024-03-07T16:33:08.750Z]  9 hru_type="land", -[2024-03-07T16:33:08.750Z]  10 ) -[2024-03-07T16:33:08.750Z]  12 # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-03-07T16:33:08.750Z]  13 # will simply execute the model which has been pre-configured to run on this period. -[2024-03-07T16:33:08.750Z]  14 start_date = dt.datetime(1981, 1, 1) -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] NameError: name 'all_properties' is not defined -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ -[2024-03-07T16:33:08.750Z] Notebook cell execution failed -[2024-03-07T16:33:08.750Z] Cell 16: Cell execution caused an exception -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] Input: -[2024-03-07T16:33:08.750Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, -[2024-03-07T16:33:08.750Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. -[2024-03-07T16:33:08.750Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) -[2024-03-07T16:33:08.750Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. -[2024-03-07T16:33:08.750Z] random_seed = 42 -[2024-03-07T16:33:08.750Z] np.random.seed(random_seed) -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Build the optimizer object -[2024-03-07T16:33:08.750Z] spot_setup = SpotSetup( -[2024-03-07T16:33:08.750Z] config=model_config, -[2024-03-07T16:33:08.750Z] low=low, -[2024-03-07T16:33:08.750Z] high=high, -[2024-03-07T16:33:08.750Z] ) -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-07T16:33:08.750Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-07T16:33:08.750Z] max_iterations = 200 -[2024-03-07T16:33:08.750Z] -[2024-03-07T16:33:08.750Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer -[2024-03-07T16:33:08.751Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most -[2024-03-07T16:33:08.751Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation -[2024-03-07T16:33:08.751Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small -[2024-03-07T16:33:08.751Z] # evaluation budgets. For more details on DDS, see: -[2024-03-07T16:33:08.751Z] # -[2024-03-07T16:33:08.751Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water -[2024-03-07T16:33:08.751Z] # Resources Research, 43(1) -[2024-03-07T16:33:08.751Z] sampler = spotpy.algorithms.dds( -[2024-03-07T16:33:08.751Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False -[2024-03-07T16:33:08.751Z] ) -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and -[2024-03-07T16:33:08.751Z] # the best overall value from all trials is returned. -[2024-03-07T16:33:08.751Z] sampler.sample(max_iterations, trials=1) -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Get the model diagnostics -[2024-03-07T16:33:08.751Z] diag = spot_setup.diagnostics -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Get all the values of each iteration -[2024-03-07T16:33:08.751Z] results = sampler.getdata() -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Get the raw resutlts directly in an array -[2024-03-07T16:33:08.751Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( -[2024-03-07T16:33:08.751Z] results -[2024-03-07T16:33:08.751Z] ) # Want to get the MAX NSE (change for min for RMSE) -[2024-03-07T16:33:08.751Z] best_model_run = list( -[2024-03-07T16:33:08.751Z] results[bestindex][0] -[2024-03-07T16:33:08.751Z] ) # Get the parameter set returning the best NSE -[2024-03-07T16:33:08.751Z] optimized_parameters = best_model_run[ -[2024-03-07T16:33:08.751Z] 1:-1 -[2024-03-07T16:33:08.751Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Display the parameter set ready to use in a future run: -[2024-03-07T16:33:08.751Z] print(optimized_parameters) -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] Traceback: -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.751Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.751Z] Cell In[1], line 12 -[2024-03-07T16:33:08.751Z]  8 np.random.seed(random_seed) -[2024-03-07T16:33:08.751Z]  10 # Build the optimizer object -[2024-03-07T16:33:08.751Z]  11 spot_setup = SpotSetup( -[2024-03-07T16:33:08.751Z] ---> 12 config=model_config, -[2024-03-07T16:33:08.751Z]  13 low=low, -[2024-03-07T16:33:08.751Z]  14 high=high, -[2024-03-07T16:33:08.751Z]  15 ) -[2024-03-07T16:33:08.751Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-07T16:33:08.751Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-07T16:33:08.751Z]  19 max_iterations = 200 -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] NameError: name 'model_config' is not defined -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ -[2024-03-07T16:33:08.751Z] Notebook cell execution failed -[2024-03-07T16:33:08.751Z] Cell 17: Cell execution caused an exception -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] Input: -[2024-03-07T16:33:08.751Z] # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-07T16:33:08.751Z] model_validation = model_config.duplicate( -[2024-03-07T16:33:08.751Z] params=optimized_parameters, -[2024-03-07T16:33:08.751Z] StartDate=dt.datetime(1986, 1, 1), -[2024-03-07T16:33:08.751Z] EndDate=dt.datetime(1990, 12, 31), -[2024-03-07T16:33:08.751Z] SuppressOutput=False, -[2024-03-07T16:33:08.751Z] ) -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] sim_output = Emulator(config=model_validation).run() -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-07T16:33:08.751Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Plot the model output -[2024-03-07T16:33:08.751Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") -[2024-03-07T16:33:08.751Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-07T16:33:08.751Z] plt.legend() -[2024-03-07T16:33:08.751Z] plt.title("Validation period - NSE=" + str(NSE[0])) -[2024-03-07T16:33:08.751Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-07T16:33:08.751Z] plt.grid() -[2024-03-07T16:33:08.751Z] plt.show() -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] Traceback: -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.751Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.751Z] Cell In[1], line 2 -[2024-03-07T16:33:08.751Z]  1 # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-07T16:33:08.751Z] ----> 2 model_validation = model_config.duplicate( -[2024-03-07T16:33:08.751Z]  3 params=optimized_parameters, -[2024-03-07T16:33:08.751Z]  4 StartDate=dt.datetime(1986, 1, 1), -[2024-03-07T16:33:08.751Z]  5 EndDate=dt.datetime(1990, 12, 31), -[2024-03-07T16:33:08.751Z]  6 SuppressOutput=False, -[2024-03-07T16:33:08.751Z]  7 ) -[2024-03-07T16:33:08.751Z]  9 sim_output = Emulator(config=model_validation).run() -[2024-03-07T16:33:08.751Z]  11 # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] NameError: name 'model_config' is not defined -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ -[2024-03-07T16:33:08.751Z] Notebook cell execution failed -[2024-03-07T16:33:08.751Z] Cell 18: Cell execution caused an exception -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] Input: -[2024-03-07T16:33:08.751Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-07T16:33:08.751Z] gauge_ref = [ -[2024-03-07T16:33:08.751Z] rc.Gauge.from_nc( -[2024-03-07T16:33:08.751Z] tmp -[2024-03-07T16:33:08.751Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-07T16:33:08.751Z] data_type=data_type, -[2024-03-07T16:33:08.751Z] alt_names=alt_names, -[2024-03-07T16:33:08.751Z] data_kwds=data_kwds, -[2024-03-07T16:33:08.751Z] ) -[2024-03-07T16:33:08.751Z] ] -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-07T16:33:08.751Z] model_config_reference = model_validation.duplicate( -[2024-03-07T16:33:08.751Z] Gauge=gauge_ref, -[2024-03-07T16:33:08.751Z] StartDate=reference_start_day -[2024-03-07T16:33:08.751Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-07T16:33:08.751Z] EndDate=reference_end_day, -[2024-03-07T16:33:08.751Z] ) -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Run the model from the configuration and get the outputs. -[2024-03-07T16:33:08.751Z] ref_output = Emulator(config=model_config_reference).run() -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] # Plot the model output. Note that both simulations should have similar hydrological -[2024-03-07T16:33:08.751Z] # regime but day-to-day variability is not expected to match. -[2024-03-07T16:33:08.751Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") -[2024-03-07T16:33:08.751Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-07T16:33:08.751Z] plt.legend() -[2024-03-07T16:33:08.751Z] plt.title("Reference period") -[2024-03-07T16:33:08.751Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-07T16:33:08.751Z] plt.grid() -[2024-03-07T16:33:08.751Z] plt.show() -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] Traceback: -[2024-03-07T16:33:08.751Z] -[2024-03-07T16:33:08.751Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.751Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.751Z] Cell In[1], line 6 -[2024-03-07T16:33:08.751Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-07T16:33:08.751Z]  2 gauge_ref = [ -[2024-03-07T16:33:08.751Z]  3 rc.Gauge.from_nc( -[2024-03-07T16:33:08.751Z]  4 tmp -[2024-03-07T16:33:08.751Z]  5 / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-07T16:33:08.751Z] ----> 6 data_type=data_type, -[2024-03-07T16:33:08.751Z]  7 alt_names=alt_names, -[2024-03-07T16:33:08.752Z]  8 data_kwds=data_kwds, -[2024-03-07T16:33:08.752Z]  9 ) -[2024-03-07T16:33:08.752Z]  10 ] -[2024-03-07T16:33:08.752Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-07T16:33:08.752Z]  13 model_config_reference = model_validation.duplicate( -[2024-03-07T16:33:08.752Z]  14 Gauge=gauge_ref, -[2024-03-07T16:33:08.752Z]  15 StartDate=reference_start_day -[2024-03-07T16:33:08.752Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-07T16:33:08.752Z]  17 EndDate=reference_end_day, -[2024-03-07T16:33:08.752Z]  18 ) -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] NameError: name 'data_type' is not defined -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ -[2024-03-07T16:33:08.752Z] Notebook cell execution failed -[2024-03-07T16:33:08.752Z] Cell 19: Cell execution caused an exception -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] Input: -[2024-03-07T16:33:08.752Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-07T16:33:08.752Z] gauge_fut = [ -[2024-03-07T16:33:08.752Z] rc.Gauge.from_nc( -[2024-03-07T16:33:08.752Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-07T16:33:08.752Z] data_type=data_type, -[2024-03-07T16:33:08.752Z] alt_names=alt_names, -[2024-03-07T16:33:08.752Z] data_kwds=data_kwds, -[2024-03-07T16:33:08.752Z] ) -[2024-03-07T16:33:08.752Z] ] -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-07T16:33:08.752Z] model_config_future = model_validation.duplicate( -[2024-03-07T16:33:08.752Z] Gauge=gauge_fut, -[2024-03-07T16:33:08.752Z] StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-07T16:33:08.752Z] EndDate=future_end_day, -[2024-03-07T16:33:08.752Z] ObservationData=None, # There are no observations for the future period. -[2024-03-07T16:33:08.752Z] ) -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] # Run the model and get the outputs and hydrographs. -[2024-03-07T16:33:08.752Z] fut_output = Emulator(config=model_config_future).run() -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] # Plot the model output -[2024-03-07T16:33:08.752Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") -[2024-03-07T16:33:08.752Z] plt.legend() -[2024-03-07T16:33:08.752Z] plt.title("Future period") -[2024-03-07T16:33:08.752Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-07T16:33:08.752Z] plt.grid() -[2024-03-07T16:33:08.752Z] plt.show() -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] Traceback: -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.752Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.752Z] Cell In[1], line 5 -[2024-03-07T16:33:08.752Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-07T16:33:08.752Z]  2 gauge_fut = [ -[2024-03-07T16:33:08.752Z]  3 rc.Gauge.from_nc( -[2024-03-07T16:33:08.752Z]  4 tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-07T16:33:08.752Z] ----> 5 data_type=data_type, -[2024-03-07T16:33:08.752Z]  6 alt_names=alt_names, -[2024-03-07T16:33:08.752Z]  7 data_kwds=data_kwds, -[2024-03-07T16:33:08.752Z]  8 ) -[2024-03-07T16:33:08.752Z]  9 ] -[2024-03-07T16:33:08.752Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-07T16:33:08.752Z]  12 model_config_future = model_validation.duplicate( -[2024-03-07T16:33:08.752Z]  13 Gauge=gauge_fut, -[2024-03-07T16:33:08.752Z]  14 StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-07T16:33:08.752Z]  15 EndDate=future_end_day, -[2024-03-07T16:33:08.752Z]  16 ObservationData=None, # There are no observations for the future period. -[2024-03-07T16:33:08.752Z]  17 ) -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] NameError: name 'data_type' is not defined -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ -[2024-03-07T16:33:08.752Z] Notebook cell execution failed -[2024-03-07T16:33:08.752Z] Cell 20: Cell execution caused an exception -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] Input: -[2024-03-07T16:33:08.752Z] # Extract the mean annual hydrograph for each simulation. -[2024-03-07T16:33:08.752Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-07T16:33:08.752Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-07T16:33:08.752Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-07T16:33:08.752Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] # Plot the model output -[2024-03-07T16:33:08.752Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") -[2024-03-07T16:33:08.752Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") -[2024-03-07T16:33:08.752Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") -[2024-03-07T16:33:08.752Z] future_flows.plot(color="red", label="Future", x="dayofyear") -[2024-03-07T16:33:08.752Z] plt.legend() -[2024-03-07T16:33:08.752Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-07T16:33:08.752Z] plt.xlabel("Day of year") -[2024-03-07T16:33:08.752Z] plt.xlim([0, 365]) -[2024-03-07T16:33:08.752Z] plt.title("Comparison of mean annual hydrographs") -[2024-03-07T16:33:08.752Z] plt.grid() -[2024-03-07T16:33:08.752Z] plt.show() -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] Traceback: -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] --------------------------------------------------------------------------- -[2024-03-07T16:33:08.752Z] NameError Traceback (most recent call last) -[2024-03-07T16:33:08.752Z] Cell In[1], line 2 -[2024-03-07T16:33:08.752Z]  1 # Extract the mean annual hydrograph for each simulation. -[2024-03-07T16:33:08.752Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-07T16:33:08.752Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-07T16:33:08.752Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] NameError: name 'ref_output' is not defined -[2024-03-07T16:33:08.752Z] -[2024-03-07T16:33:08.752Z] =========================== short test summary info ============================ -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 7 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 8 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb::Cell 10 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-03-07T16:33:08.752Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 -[2024-03-07T16:33:08.753Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 -[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 0 - RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 1 - RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 2 - RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 3 - RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 4 - RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.753Z] ERROR RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb::Cell 5 - RuntimeError: Kernel didn't respond in 60 seconds -[2024-03-07T16:33:08.753Z] ============ 36 failed, 218 passed, 6 errors in 1149.59s (0:19:09) ============= -[2024-03-07T16:33:08.753Z] + EXIT_CODE=1 -[2024-03-07T16:33:08.753Z] + echo true -[2024-03-07T16:33:08.753Z] + tr [:upper:] [:lower:] -[2024-03-07T16:33:08.753Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-07T16:33:08.753Z] + [ xtrue = xtrue ] -[2024-03-07T16:33:08.753Z] + mkdir -p buildout -[2024-03-07T16:33:08.753Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-07T16:33:08.753Z] + filename=Region_selection.ipynb -[2024-03-07T16:33:08.753Z] + + sed s/.ipynb$// -[2024-03-07T16:33:08.753Z] echo Region_selection.ipynb -[2024-03-07T16:33:08.753Z] + filename=Region_selection -[2024-03-07T16:33:08.753Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-03-07T16:33:08.753Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-07T16:33:08.753Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-03-07T16:33:18.733Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb -[2024-03-07T16:33:18.733Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-07T16:33:18.733Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-03-07T16:33:18.733Z] + echo Subset_climate_data_over_watershed.ipynb -[2024-03-07T16:33:18.733Z] + sed s/.ipynb$// -[2024-03-07T16:33:18.733Z] + filename=Subset_climate_data_over_watershed -[2024-03-07T16:33:18.733Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-03-07T16:33:18.733Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-07T16:33:19.304Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-03-07T16:33:37.463Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-03-07T16:33:37.463Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-07T16:33:37.463Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-03-07T16:33:37.463Z] + echo 00_Introduction_to_JupyterLab.ipynb -[2024-03-07T16:33:37.463Z] + sed s/.ipynb$// -[2024-03-07T16:33:37.463Z] + filename=00_Introduction_to_JupyterLab -[2024-03-07T16:33:37.463Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-03-07T16:33:37.463Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-07T16:33:37.463Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-03-07T16:33:39.368Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-03-07T16:33:39.368Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-07T16:33:39.368Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-03-07T16:33:39.368Z] + + sed s/.ipynb$// -[2024-03-07T16:33:39.368Z] echo 01_Getting_watershed_boundaries.ipynb -[2024-03-07T16:33:39.368Z] + filename=01_Getting_watershed_boundaries -[2024-03-07T16:33:39.368Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-03-07T16:33:39.368Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-07T16:33:40.753Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-03-07T16:33:53.013Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-03-07T16:33:53.013Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-07T16:33:53.013Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-03-07T16:33:53.013Z] + + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-03-07T16:33:53.013Z] sed s/.ipynb$// -[2024-03-07T16:33:53.013Z] + filename=02_Extract_geographical_watershed_properties -[2024-03-07T16:33:53.013Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-03-07T16:33:53.013Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-07T16:33:53.584Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-03-07T16:34:08.474Z] [NbConvertApp] Writing 95487 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-03-07T16:34:08.474Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-07T16:34:08.474Z] + filename=03_Extracting_forcing_data.ipynb -[2024-03-07T16:34:08.474Z] + echo 03_Extracting_forcing_data.ipynb -[2024-03-07T16:34:08.474Z] + sed s/.ipynb$// -[2024-03-07T16:34:08.474Z] + filename=03_Extracting_forcing_data -[2024-03-07T16:34:08.474Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-03-07T16:34:08.474Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-07T16:34:09.053Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-03-07T16:36:15.534Z] [NbConvertApp] Writing 65772 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-03-07T16:36:15.534Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-07T16:36:15.534Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-03-07T16:36:15.534Z] + + echosed 04_Emulating_hydrological_models.ipynb s/.ipynb$// -[2024-03-07T16:36:15.534Z] -[2024-03-07T16:36:15.534Z] + filename=04_Emulating_hydrological_models -[2024-03-07T16:36:15.534Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-03-07T16:36:15.534Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-07T16:36:15.534Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-03-07T16:36:20.802Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-03-07T16:36:20.802Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-07T16:36:20.802Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-03-07T16:36:20.802Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-03-07T16:36:20.802Z] + sed s/.ipynb$// -[2024-03-07T16:36:20.802Z] + filename=05_Advanced_RavenPy_configuration -[2024-03-07T16:36:20.802Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-03-07T16:36:20.802Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-07T16:36:22.174Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-03-07T16:36:44.224Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-03-07T16:36:44.224Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-07T16:36:44.224Z] + filename=06_Raven_calibration.ipynb -[2024-03-07T16:36:44.224Z] + + sedecho s/.ipynb$// 06_Raven_calibration.ipynb -[2024-03-07T16:36:44.224Z] -[2024-03-07T16:36:44.224Z] + filename=06_Raven_calibration -[2024-03-07T16:36:44.224Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-03-07T16:36:44.224Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-07T16:36:44.224Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-03-07T16:36:54.213Z] [NbConvertApp] Writing 24098 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-03-07T16:36:54.213Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-07T16:36:54.213Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-03-07T16:36:54.213Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-03-07T16:36:54.213Z] + sed s/.ipynb$// -[2024-03-07T16:36:54.213Z] + filename=07_Making_and_using_hotstart_files -[2024-03-07T16:36:54.213Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-03-07T16:36:54.213Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-07T16:36:55.593Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-03-07T16:37:07.851Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-03-07T16:37:07.851Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-07T16:37:07.851Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-07T16:37:07.851Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-07T16:37:07.851Z] + sed s/.ipynb$// -[2024-03-07T16:37:07.851Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-03-07T16:37:07.851Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-03-07T16:37:07.851Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-07T16:37:09.237Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-03-07T16:41:00.773Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb -[2024-03-07T16:41:00.773Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-07T16:41:00.773Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-07T16:41:00.773Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-07T16:41:00.773Z] + sed s/.ipynb$// -[2024-03-07T16:41:00.773Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-03-07T16:41:00.773Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-03-07T16:41:00.773Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-07T16:41:00.773Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-03-07T16:41:15.655Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-03-07T16:41:15.655Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-07T16:41:15.655Z] + filename=10_Data_assimilation.ipynb -[2024-03-07T16:41:15.655Z] + echo 10_Data_assimilation.ipynb -[2024-03-07T16:41:15.656Z] + sed s/.ipynb$// -[2024-03-07T16:41:15.656Z] + filename=10_Data_assimilation -[2024-03-07T16:41:15.656Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-03-07T16:41:15.656Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-07T16:41:15.656Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-03-07T16:42:37.107Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-03-07T16:42:37.107Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-07T16:42:37.107Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-03-07T16:42:37.107Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-03-07T16:42:37.107Z] + sed s/.ipynb$// -[2024-03-07T16:42:37.107Z] + filename=11_Climatological_ESP_forecasting -[2024-03-07T16:42:37.107Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-03-07T16:42:37.107Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-07T16:42:37.107Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-03-07T16:43:15.814Z] [NbConvertApp] Writing 556956 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-03-07T16:43:15.814Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-07T16:43:15.814Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-03-07T16:43:15.814Z] + echo 12_Performing_hindcasting_experiments.ipynb -[2024-03-07T16:43:15.814Z] + sed s/.ipynb$// -[2024-03-07T16:43:15.814Z] + filename=12_Performing_hindcasting_experiments -[2024-03-07T16:43:15.814Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-03-07T16:43:15.814Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-07T16:43:15.814Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-03-07T16:43:37.801Z] [NbConvertApp] Writing 298315 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-03-07T16:43:37.801Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-07T16:43:37.801Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-03-07T16:43:37.801Z] + echo Assess_probabilistic_flood_risk.ipynb -[2024-03-07T16:43:37.801Z] + sed s/.ipynb$// -[2024-03-07T16:43:37.801Z] + filename=Assess_probabilistic_flood_risk -[2024-03-07T16:43:37.801Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-03-07T16:43:37.801Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-07T16:43:38.062Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-03-07T16:44:10.107Z] [NbConvertApp] Writing 549686 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-03-07T16:44:10.107Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-07T16:44:10.107Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-07T16:44:10.107Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-07T16:44:10.107Z] + sed s/.ipynb$// -[2024-03-07T16:44:10.107Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-03-07T16:44:10.107Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-03-07T16:44:10.107Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-07T16:44:10.107Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-03-07T16:44:42.190Z] [NbConvertApp] Writing 748714 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-03-07T16:44:42.190Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-07T16:44:42.190Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-03-07T16:44:42.190Z] + sed s/.ipynb$// -[2024-03-07T16:44:42.190Z] + echo Distributed_hydrological_modelling.ipynb -[2024-03-07T16:44:42.190Z] + filename=Distributed_hydrological_modelling -[2024-03-07T16:44:42.190Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-03-07T16:44:42.190Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-07T16:44:42.455Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-03-07T16:45:14.554Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-03-07T16:45:14.554Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-07T16:45:14.554Z] + filename=HydroShare_integration.ipynb -[2024-03-07T16:45:14.554Z] + + echo HydroShare_integration.ipynb -[2024-03-07T16:45:14.554Z] sed s/.ipynb$// -[2024-03-07T16:45:14.554Z] + filename=HydroShare_integration -[2024-03-07T16:45:14.554Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-03-07T16:45:14.554Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-07T16:45:15.126Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-03-07T16:45:20.415Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb -[2024-03-07T16:45:20.415Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-07T16:45:20.415Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-03-07T16:45:20.415Z] + echo Hydrological_realtime_forecasting.ipynb -[2024-03-07T16:45:20.415Z] + sed s/.ipynb$// -[2024-03-07T16:45:20.415Z] + filename=Hydrological_realtime_forecasting -[2024-03-07T16:45:20.415Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-03-07T16:45:20.415Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-07T16:45:21.357Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-03-07T16:45:43.309Z] [NbConvertApp] Writing 312700 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-03-07T16:45:43.309Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-07T16:45:43.309Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-03-07T16:45:43.309Z] + echo Managing_Jupyter_Environments.ipynb -[2024-03-07T16:45:43.309Z] + sed s/.ipynb$// -[2024-03-07T16:45:43.309Z] + filename=Managing_Jupyter_Environments -[2024-03-07T16:45:43.309Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-03-07T16:45:43.309Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-07T16:45:43.573Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-03-07T16:45:55.901Z] [NbConvertApp] Writing 8736 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-03-07T16:45:55.901Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-07T16:45:55.901Z] + filename=Perform_Regionalization.ipynb -[2024-03-07T16:45:55.901Z] + + sed s/.ipynb$// -[2024-03-07T16:45:55.901Z] echo Perform_Regionalization.ipynb -[2024-03-07T16:45:55.901Z] + filename=Perform_Regionalization -[2024-03-07T16:45:55.901Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-03-07T16:45:55.901Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-07T16:45:55.901Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-03-07T16:46:27.985Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-03-07T16:46:27.985Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-07T16:46:27.985Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-07T16:46:27.985Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-07T16:46:27.985Z] + sed s/.ipynb$// -[2024-03-07T16:46:27.985Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-03-07T16:46:27.985Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-03-07T16:46:27.985Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-07T16:46:27.985Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-03-07T16:46:42.851Z] [NbConvertApp] Writing 109502 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-03-07T16:46:42.851Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-07T16:46:42.851Z] + filename=Sensitivity_analysis.ipynb -[2024-03-07T16:46:42.851Z] + echo Sensitivity_analysis.ipynb -[2024-03-07T16:46:42.851Z] + sed s/.ipynb$// -[2024-03-07T16:46:42.851Z] + filename=Sensitivity_analysis -[2024-03-07T16:46:42.851Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-03-07T16:46:42.851Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-07T16:46:42.851Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-03-07T16:47:00.948Z] [NbConvertApp] Writing 35261 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-03-07T16:47:00.949Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-07T16:47:00.949Z] + filename=time_series_analysis.ipynb -[2024-03-07T16:47:00.949Z] + echo time_series_analysis.ipynb -[2024-03-07T16:47:00.949Z] + sed s/.ipynb$// -[2024-03-07T16:47:00.949Z] + filename=time_series_analysis -[2024-03-07T16:47:00.949Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-03-07T16:47:00.949Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-07T16:47:01.213Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-03-07T16:47:13.420Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb -[2024-03-07T16:47:13.420Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-07T16:47:13.420Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-07T16:47:13.420Z] + sed s/.ipynb$// -[2024-03-07T16:47:13.420Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-07T16:47:13.421Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-03-07T16:47:13.421Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-03-07T16:47:13.421Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-07T16:47:14.795Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-03-07T16:48:51.344Z] [NbConvertApp] Writing 131058 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-03-07T16:48:51.344Z] + basename notebooks/hummingbird.ipynb -[2024-03-07T16:48:51.344Z] + filename=hummingbird.ipynb -[2024-03-07T16:48:51.344Z] + echo hummingbird.ipynb -[2024-03-07T16:48:51.344Z] + sed s/.ipynb$// -[2024-03-07T16:48:51.344Z] + filename=hummingbird -[2024-03-07T16:48:51.344Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-03-07T16:48:51.344Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-03-07T16:48:51.344Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-03-07T16:48:54.632Z] [NbConvertApp] Writing 15951 bytes to buildout/hummingbird.output.ipynb -[2024-03-07T16:48:54.632Z] + basename notebooks/stress-tests.ipynb -[2024-03-07T16:48:54.632Z] + filename=stress-tests.ipynb -[2024-03-07T16:48:54.632Z] + echo stress-tests.ipynb -[2024-03-07T16:48:54.632Z] + sed s/.ipynb$// -[2024-03-07T16:48:54.633Z] + filename=stress-tests -[2024-03-07T16:48:54.633Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-03-07T16:48:54.633Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-03-07T16:48:56.542Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-03-07T16:51:03.009Z] [NbConvertApp] Writing 428737 bytes to buildout/stress-tests.output.ipynb -[2024-03-07T16:51:03.009Z] + exit 1 -[2024-03-07T16:51:03.009Z] + EXIT_CODE=1 -[2024-03-07T16:51:03.009Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-07T16:51:03.009Z] + mkdir -p buildout/env-dump -[2024-03-07T16:51:03.009Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-07T16:51:03.009Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-07T16:51:03.009Z] + conda env export -n birdy -[2024-03-07T16:51:15.224Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-07T16:51:15.224Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-07T16:51:15.224Z] + conda list -n birdy --explicit -[2024-03-07T16:51:25.207Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-07T16:51:25.207Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-07T16:51:25.207Z] + pip freeze -[2024-03-07T16:51:25.207Z] + exit 1 +[2024-03-14T18:12:23.376Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-14T18:12:23.376Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-14T18:12:23.376Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-14T18:12:23.376Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-14T18:12:23.376Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-14T18:12:23.376Z] FINCH_BRANCH has been set to 'master' +[2024-03-14T18:12:23.376Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-14T18:12:23.376Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-14T18:12:23.376Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-14T18:12:23.376Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-14T18:12:23.376Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-14T18:12:23.376Z] RAVEN_BRANCH has been set to 'main' +[2024-03-14T18:12:23.376Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-14T18:12:23.376Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-14T18:12:23.376Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-14T18:12:23.376Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-14T18:12:23.376Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-14T18:12:23.376Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-14T18:12:23.376Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-14T18:12:23.376Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-03-14T18:12:23.376Z] + git clean -fdx +[2024-03-14T18:12:23.638Z] Removing .pytest_cache/ +[2024-03-14T18:12:23.638Z] Removing PAVICS-landing-master/ +[2024-03-14T18:12:23.638Z] Removing RavenPy-master/ +[2024-03-14T18:12:23.638Z] Removing __pycache__/ +[2024-03-14T18:12:23.638Z] Removing buildout/ +[2024-03-14T18:12:23.638Z] Removing esgf-compute-api-devel/ +[2024-03-14T18:12:23.638Z] Removing finch-master/ +[2024-03-14T18:12:23.638Z] Removing pavics-sdi-master/ +[2024-03-14T18:12:23.638Z] Removing raven-main/ +[2024-03-14T18:12:23.638Z] + ./downloadrepos +[2024-03-14T18:12:23.638Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-14T18:12:23.638Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-14T18:12:23.638Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-14T18:12:23.638Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-14T18:12:23.638Z] FINCH_BRANCH has been set to 'master' +[2024-03-14T18:12:23.638Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-14T18:12:23.638Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-14T18:12:23.638Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-14T18:12:23.638Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-14T18:12:23.638Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-14T18:12:23.638Z] RAVEN_BRANCH has been set to 'main' +[2024-03-14T18:12:23.638Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-14T18:12:23.638Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-14T18:12:23.638Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-14T18:12:23.638Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-14T18:12:23.638Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-14T18:12:23.638Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-14T18:12:23.638Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-14T18:12:23.638Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-03-14T18:12:23.638Z] + rm -rf pavics-sdi-* +[2024-03-14T18:12:23.638Z] + ls +[2024-03-14T18:12:23.638Z] + grep pavics-sdi +[2024-03-14T18:12:23.638Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-03-14T18:12:23.638Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-14T18:12:23.638Z] + shift +[2024-03-14T18:12:23.638Z] + branch=master +[2024-03-14T18:12:23.638Z] + shift +[2024-03-14T18:12:23.638Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-03-14T18:12:23.638Z] + tar xz +[2024-03-14T18:12:26.929Z] + ls +[2024-03-14T18:12:26.929Z] + grep pavics-sdi +[2024-03-14T18:12:26.929Z] pavics-sdi-master +[2024-03-14T18:12:26.929Z] + set +x +[2024-03-14T18:12:26.929Z] + rm -rf finch-* +[2024-03-14T18:12:26.929Z] + + ls +[2024-03-14T18:12:26.929Z] grep finch +[2024-03-14T18:12:26.929Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-14T18:12:26.929Z] + github_repo=https://github.com/bird-house/finch +[2024-03-14T18:12:26.929Z] + shift +[2024-03-14T18:12:26.929Z] + branch=master +[2024-03-14T18:12:26.929Z] + shift +[2024-03-14T18:12:26.929Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-03-14T18:12:26.929Z] + tar xz +[2024-03-14T18:12:28.311Z] + ls +[2024-03-14T18:12:28.311Z] + grep finch +[2024-03-14T18:12:28.311Z] finch-master +[2024-03-14T18:12:28.311Z] + set +x +[2024-03-14T18:12:28.311Z] + rm -rf PAVICS-landing-* +[2024-03-14T18:12:28.311Z] + grep PAVICS-landing +[2024-03-14T18:12:28.311Z] + ls +[2024-03-14T18:12:28.311Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-03-14T18:12:28.311Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-14T18:12:28.311Z] + shift +[2024-03-14T18:12:28.311Z] + branch=master +[2024-03-14T18:12:28.311Z] + shift +[2024-03-14T18:12:28.311Z] + tar xz +[2024-03-14T18:12:28.311Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-03-14T18:12:43.218Z] + grep PAVICS-landing +[2024-03-14T18:12:43.218Z] + ls +[2024-03-14T18:12:43.218Z] PAVICS-landing-master +[2024-03-14T18:12:43.218Z] + set +x +[2024-03-14T18:12:43.218Z] + rm -rf raven-* +[2024-03-14T18:12:43.218Z] + ls +[2024-03-14T18:12:43.218Z] + grep raven +[2024-03-14T18:12:43.218Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-14T18:12:43.218Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-14T18:12:43.218Z] + shift +[2024-03-14T18:12:43.218Z] + branch=main +[2024-03-14T18:12:43.218Z] + shift +[2024-03-14T18:12:43.218Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-14T18:12:43.218Z] + tar xz +[2024-03-14T18:12:43.789Z] + ls +[2024-03-14T18:12:43.789Z] + grep raven +[2024-03-14T18:12:43.789Z] raven-main +[2024-03-14T18:12:43.789Z] + set +x +[2024-03-14T18:12:43.789Z] + rm -rf RavenPy-* +[2024-03-14T18:12:43.789Z] + ls +[2024-03-14T18:12:43.789Z] + grep RavenPy +[2024-03-14T18:12:43.790Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-14T18:12:43.790Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-14T18:12:43.790Z] + shift +[2024-03-14T18:12:43.790Z] + branch=master +[2024-03-14T18:12:43.790Z] + shift +[2024-03-14T18:12:43.790Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-14T18:12:43.790Z] + tar xz +[2024-03-14T18:12:45.713Z] + ls +[2024-03-14T18:12:45.713Z] + grep RavenPy +[2024-03-14T18:12:45.713Z] RavenPy-master +[2024-03-14T18:12:45.713Z] + set +x +[2024-03-14T18:12:45.713Z] + rm -rf esgf-compute-api-* +[2024-03-14T18:12:45.713Z] + ls +[2024-03-14T18:12:45.713Z] + grep esgf-compute-api +[2024-03-14T18:12:45.713Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-14T18:12:45.713Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-14T18:12:45.713Z] + shift +[2024-03-14T18:12:45.713Z] + branch=devel +[2024-03-14T18:12:45.713Z] + shift +[2024-03-14T18:12:45.713Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-03-14T18:12:45.713Z] + tar xz +[2024-03-14T18:12:46.657Z] + ls +[2024-03-14T18:12:46.658Z] + grep esgf-compute-api +[2024-03-14T18:12:46.658Z] esgf-compute-api-devel +[2024-03-14T18:12:46.658Z] + set +x +[2024-03-14T18:12:46.658Z] + echo master +[2024-03-14T18:12:46.658Z] + sed s@/@-@g +[2024-03-14T18:12:46.658Z] + PAVICS_SDI_BRANCH=master +[2024-03-14T18:12:46.658Z] + echo Ouranosinc/pavics-sdi +[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g +[2024-03-14T18:12:46.658Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-14T18:12:46.658Z] + echo master +[2024-03-14T18:12:46.658Z] + sed s@/@-@g +[2024-03-14T18:12:46.658Z] + FINCH_BRANCH=master +[2024-03-14T18:12:46.658Z] + echo bird-house/finch +[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g +[2024-03-14T18:12:46.658Z] + FINCH_REPO_NAME=finch +[2024-03-14T18:12:46.658Z] + echo master +[2024-03-14T18:12:46.658Z] + sed s@/@-@g +[2024-03-14T18:12:46.658Z] + PAVICS_LANDING_BRANCH=master +[2024-03-14T18:12:46.658Z] + echo Ouranosinc/PAVICS-landing +[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g +[2024-03-14T18:12:46.658Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-14T18:12:46.658Z] + echo main +[2024-03-14T18:12:46.658Z] + sed s@/@-@g +[2024-03-14T18:12:46.658Z] + RAVEN_BRANCH=main +[2024-03-14T18:12:46.658Z] + echo Ouranosinc/raven +[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g +[2024-03-14T18:12:46.658Z] + RAVEN_REPO_NAME=raven +[2024-03-14T18:12:46.658Z] + echo master +[2024-03-14T18:12:46.658Z] + sed s@/@-@g +[2024-03-14T18:12:46.658Z] + RAVENPY_BRANCH=master +[2024-03-14T18:12:46.658Z] + echo CSHS-CWRA/RavenPy +[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g +[2024-03-14T18:12:46.658Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-14T18:12:46.658Z] + echo devel +[2024-03-14T18:12:46.658Z] + sed s@/@-@g +[2024-03-14T18:12:46.658Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-14T18:12:46.658Z] + echo ESGF/esgf-compute-api +[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g +[2024-03-14T18:12:46.658Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-14T18:12:46.658Z] + echo pavics-sdi-master +[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T18:12:46.658Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-03-14T18:12:46.658Z] + echo finch-master +[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T18:12:46.658Z] + FINCH_DIR=finch-master +[2024-03-14T18:12:46.658Z] + echo PAVICS-landing-master +[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T18:12:46.658Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-03-14T18:12:46.658Z] + echo raven-main +[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T18:12:46.658Z] + RAVEN_DIR=raven-main +[2024-03-14T18:12:46.658Z] + echo RavenPy-master +[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T18:12:46.658Z] + RAVENPY_DIR=RavenPy-master +[2024-03-14T18:12:46.658Z] + echo esgf-compute-api-devel +[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-14T18:12:46.658Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-14T18:12:46.658Z] + echo true +[2024-03-14T18:12:46.658Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.658Z] + VERIFY_SSL=true +[2024-03-14T18:12:46.658Z] + [ xtrue = xfalse ] +[2024-03-14T18:12:46.658Z] + rm -v finch-master/setup.cfg +[2024-03-14T18:12:46.658Z] removed 'finch-master/setup.cfg' +[2024-03-14T18:12:46.658Z] + rm -v raven-main/setup.cfg +[2024-03-14T18:12:46.658Z] removed 'raven-main/setup.cfg' +[2024-03-14T18:12:46.658Z] + rm -v raven-main/pyproject.toml +[2024-03-14T18:12:46.658Z] removed 'raven-main/pyproject.toml' +[2024-03-14T18:12:46.658Z] + rm -v RavenPy-master/setup.cfg +[2024-03-14T18:12:46.658Z] removed 'RavenPy-master/setup.cfg' +[2024-03-14T18:12:46.658Z] + rm -v RavenPy-master/tox.ini +[2024-03-14T18:12:46.658Z] removed 'RavenPy-master/tox.ini' +[2024-03-14T18:12:46.658Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-14T18:12:46.659Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-14T18:12:46.659Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-14T18:12:46.659Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-14T18:12:46.659Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-14T18:12:46.659Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-14T18:12:46.659Z] + echo false +[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.659Z] + TEST_MAGPIE_AUTH=false +[2024-03-14T18:12:46.659Z] + echo false +[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.659Z] + TEST_PAVICS_SDI_REPO=false +[2024-03-14T18:12:46.659Z] + echo false +[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.659Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-14T18:12:46.659Z] + echo false +[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.659Z] + TEST_FINCH_REPO=false +[2024-03-14T18:12:46.659Z] + echo false +[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.659Z] + TEST_PAVICS_LANDING_REPO=false +[2024-03-14T18:12:46.659Z] + echo true +[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.659Z] + TEST_RAVEN_REPO=true +[2024-03-14T18:12:46.659Z] + echo true +[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.659Z] + TEST_RAVENPY_REPO=true +[2024-03-14T18:12:46.659Z] + echo false +[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.659Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-14T18:12:46.659Z] + echo false +[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] +[2024-03-14T18:12:46.659Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-03-14T18:12:46.659Z] + NOTEBOOKS_TO_TEST= +[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] +[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] +[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] +[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] +[2024-03-14T18:12:46.659Z] + [ xtrue = xtrue ] +[2024-03-14T18:12:46.659Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-03-14T18:12:46.659Z] + [ xtrue = xtrue ] +[2024-03-14T18:12:46.659Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-03-14T18:12:46.659Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] +[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] +[2024-03-14T18:12:46.659Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-03-14T18:12:46.659Z] + [ -n ] +[2024-03-14T18:12:46.659Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-14T18:12:46.659Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-14T18:12:46.659Z] Will run notebooks against pavics.ouranos.ca +[2024-03-14T18:12:46.659Z] + [ -z ] +[2024-03-14T18:12:46.660Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-14T18:12:46.660Z] + git diff +[2024-03-14T18:12:46.660Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-14T18:12:46.661Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-03-14T18:12:49.956Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-14T18:12:49.956Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-14T18:12:49.956Z] ============================= test session starts ============================== +[2024-03-14T18:12:49.956Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-03-14T18:12:49.956Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-03-14T18:12:49.956Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-03-14T18:12:49.956Z] collected 242 items +[2024-03-14T18:12:49.956Z] +[2024-03-14T18:13:01.438Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-03-14T18:13:03.972Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-03-14T18:13:17.724Z] ...... [ 6%] +[2024-03-14T18:13:19.635Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] +[2024-03-14T18:13:19.635Z] [ 9%] +[2024-03-14T18:13:22.077Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-03-14T18:13:30.204Z] .... [ 12%] +[2024-03-14T18:13:36.767Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-03-14T18:13:43.549Z] ....FFFF.FF.F [ 18%] +[2024-03-14T18:14:14.018Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] +[2024-03-14T18:15:22.705Z] .. [ 22%] +[2024-03-14T18:15:26.584Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] +[2024-03-14T18:15:35.254Z] ..FFFFFFFF....... [ 30%] +[2024-03-14T18:15:42.767Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] +[2024-03-14T18:15:51.970Z] ........... [ 36%] +[2024-03-14T18:16:00.982Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] +[2024-03-14T18:16:05.182Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-03-14T18:16:11.673Z] ..... [ 41%] +[2024-03-14T18:16:13.045Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-03-14T18:20:23.541Z] ................. [ 48%] +[2024-03-14T18:20:27.707Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-03-14T18:20:35.487Z] .... [ 50%] +[2024-03-14T18:21:18.475Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] +[2024-03-14T18:21:27.272Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] +[2024-03-14T18:21:56.015Z] ...... [ 57%] +[2024-03-14T18:22:02.564Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] +[2024-03-14T18:22:12.781Z] ....... [ 60%] +[2024-03-14T18:22:20.037Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] +[2024-03-14T18:22:35.377Z] .... [ 64%] +[2024-03-14T18:22:43.504Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-03-14T18:23:02.227Z] ....... [ 67%] +[2024-03-14T18:23:05.520Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-03-14T18:23:31.892Z] ....... [ 70%] +[2024-03-14T18:23:35.196Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] +[2024-03-14T18:23:45.868Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] +[2024-03-14T18:23:52.594Z] .... [ 74%] +[2024-03-14T18:24:09.085Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] +[2024-03-14T18:24:34.382Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] +[2024-03-14T18:24:34.382Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-03-14T18:24:47.822Z] ............. [ 84%] +[2024-03-14T18:25:04.510Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] +[2024-03-14T18:25:13.152Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] +[2024-03-14T18:25:23.137Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-03-14T18:26:34.175Z] ......FFFFFFFFFFFFFF [100%] +[2024-03-14T18:26:34.175Z] +[2024-03-14T18:26:34.175Z] =================================== FAILURES =================================== +[2024-03-14T18:26:34.175Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ +[2024-03-14T18:26:34.175Z] Notebook cell execution failed +[2024-03-14T18:26:34.175Z] Cell 5: Cell execution caused an exception +[2024-03-14T18:26:34.175Z] +[2024-03-14T18:26:34.175Z] Input: +[2024-03-14T18:26:34.175Z] features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-14T18:26:34.175Z] grid = raster[0] +[2024-03-14T18:26:34.175Z] grid.plot() +[2024-03-14T18:26:34.175Z] +[2024-03-14T18:26:34.175Z] Traceback: +[2024-03-14T18:26:34.175Z] +[2024-03-14T18:26:34.175Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.175Z] AttributeError Traceback (most recent call last) +[2024-03-14T18:26:34.175Z] Cell In[1], line 1 +[2024-03-14T18:26:34.175Z] ----> 1 features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-14T18:26:34.175Z]  2 grid = raster[0] +[2024-03-14T18:26:34.175Z]  3 grid.plot() +[2024-03-14T18:26:34.175Z] +[2024-03-14T18:26:34.175Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-14T18:26:34.175Z]  38 if not self.isSucceded(): +[2024-03-14T18:26:34.175Z]  39 # TODO: add reason for failure +[2024-03-14T18:26:34.175Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-14T18:26:34.175Z] ---> 41 return self._make_output(asobj) +[2024-03-14T18:26:34.175Z] +[2024-03-14T18:26:34.175Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-14T18:26:34.175Z]  44 Output = namedtuple( +[2024-03-14T18:26:34.175Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-14T18:26:34.175Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-14T18:26:34.175Z]  47 ) +[2024-03-14T18:26:34.175Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-14T18:26:34.175Z]  49 return Output( +[2024-03-14T18:26:34.175Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-14T18:26:34.175Z]  51 ) +[2024-03-14T18:26:34.175Z] +[2024-03-14T18:26:34.175Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-14T18:26:34.175Z]  44 Output = namedtuple( +[2024-03-14T18:26:34.175Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-14T18:26:34.175Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-14T18:26:34.175Z]  47 ) +[2024-03-14T18:26:34.175Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-14T18:26:34.175Z]  49 return Output( +[2024-03-14T18:26:34.175Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-14T18:26:34.175Z]  51 ) +[2024-03-14T18:26:34.175Z] +[2024-03-14T18:26:34.175Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-14T18:26:34.176Z]  68 return delist(data) +[2024-03-14T18:26:34.176Z]  70 if convert_objects: +[2024-03-14T18:26:34.176Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-14T18:26:34.176Z]  72 else: +[2024-03-14T18:26:34.176Z]  73 return output.reference +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) +[2024-03-14T18:26:34.176Z]  374 out = converter.convert() +[2024-03-14T18:26:34.176Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-14T18:26:34.176Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-14T18:26:34.176Z]  377 return out +[2024-03-14T18:26:34.176Z]  379 except (ImportError, NotImplementedError): +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) +[2024-03-14T18:26:34.176Z]  374 out = converter.convert() +[2024-03-14T18:26:34.176Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-14T18:26:34.176Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-14T18:26:34.176Z]  377 return out +[2024-03-14T18:26:34.176Z]  379 except (ImportError, NotImplementedError): +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-14T18:26:34.176Z]  372 try: +[2024-03-14T18:26:34.176Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-14T18:26:34.176Z] --> 374 out = converter.convert() +[2024-03-14T18:26:34.176Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-14T18:26:34.176Z]  376 out = [convert(o, path) for o in out] +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-14T18:26:34.176Z]  263 import xarray # isort: skip +[2024-03-14T18:26:34.176Z]  264 import rioxarray # noqa +[2024-03-14T18:26:34.176Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 _ +[2024-03-14T18:26:34.176Z] Notebook cell execution failed +[2024-03-14T18:26:34.176Z] Cell 6: Cell execution caused an exception +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] Input: +[2024-03-14T18:26:34.176Z] lu = statistics[0] +[2024-03-14T18:26:34.176Z] total = sum(lu.values()) +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] land_use = {k: (v / total) for (k, v) in lu.items()} +[2024-03-14T18:26:34.176Z] display("Land use ratios", land_use) +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} +[2024-03-14T18:26:34.176Z] display("Land use percentages", land_use_pct) +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] Traceback: +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.176Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.176Z] Cell In[1], line 1 +[2024-03-14T18:26:34.176Z] ----> 1 lu = statistics[0] +[2024-03-14T18:26:34.176Z]  2 total = sum(lu.values()) +[2024-03-14T18:26:34.176Z]  4 land_use = {k: (v / total) for (k, v) in lu.items()} +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] NameError: name 'statistics' is not defined +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ +[2024-03-14T18:26:34.176Z] Notebook cell execution failed +[2024-03-14T18:26:34.176Z] Cell 7: Cell execution caused an exception +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] Input: +[2024-03-14T18:26:34.176Z] unique, counts = np.unique(grid, return_counts=True) +[2024-03-14T18:26:34.176Z] print("The land-use categories available are: " + str(unique)) +[2024-03-14T18:26:34.176Z] print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] # Pixels values at '127' are NaN and can be ignored. +[2024-03-14T18:26:34.176Z] from matplotlib.colors import Normalize +[2024-03-14T18:26:34.176Z] +[2024-03-14T18:26:34.176Z] norm = Normalize() +[2024-03-14T18:26:34.176Z] norm.autoscale(unique[:-1]) +[2024-03-14T18:26:34.176Z] cm = mpl.colormaps["tab20"] +[2024-03-14T18:26:34.177Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] # plt.bar(unique[:-1], counts[:-1]) +[2024-03-14T18:26:34.177Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) +[2024-03-14T18:26:34.177Z] plt.xlabel("Land-use categories") +[2024-03-14T18:26:34.177Z] plt.ylabel("Number of pixels") +[2024-03-14T18:26:34.177Z] plt.show() +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") +[2024-03-14T18:26:34.177Z] grid.name = "Land-use categories" +[2024-03-14T18:26:34.177Z] plt.show() +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] Traceback: +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.177Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.177Z] Cell In[1], line 1 +[2024-03-14T18:26:34.177Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) +[2024-03-14T18:26:34.177Z]  2 print("The land-use categories available are: " + str(unique)) +[2024-03-14T18:26:34.177Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] NameError: name 'grid' is not defined +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ +[2024-03-14T18:26:34.177Z] Notebook cell execution failed +[2024-03-14T18:26:34.177Z] Cell 8: Cell execution caused an exception +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] Input: +[2024-03-14T18:26:34.177Z] import cartopy.crs as ccrs +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] # Set a CRS transformation: +[2024-03-14T18:26:34.177Z] crs = ccrs.LambertConformal( +[2024-03-14T18:26:34.177Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-14T18:26:34.177Z] ) +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] ax = plt.subplot(projection=crs) +[2024-03-14T18:26:34.177Z] grid.name = "Land-use categories" +[2024-03-14T18:26:34.177Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-14T18:26:34.177Z] plt.show() +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] Traceback: +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.177Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.177Z] Cell In[1], line 9 +[2024-03-14T18:26:34.177Z]  4 crs = ccrs.LambertConformal( +[2024-03-14T18:26:34.177Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-14T18:26:34.177Z]  6 ) +[2024-03-14T18:26:34.177Z]  8 ax = plt.subplot(projection=crs) +[2024-03-14T18:26:34.177Z] ----> 9 grid.name = "Land-use categories" +[2024-03-14T18:26:34.177Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-14T18:26:34.177Z]  11 plt.show() +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] NameError: name 'grid' is not defined +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 _ +[2024-03-14T18:26:34.177Z] Notebook cell execution failed +[2024-03-14T18:26:34.177Z] Cell 10: Cell execution caused an exception +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] Input: +[2024-03-14T18:26:34.177Z] properties, dem = terrain_resp.get(asobj=True) +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] elevation = properties[0]["elevation"] +[2024-03-14T18:26:34.177Z] slope = properties[0]["slope"] +[2024-03-14T18:26:34.177Z] aspect = properties[0]["aspect"] +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} +[2024-03-14T18:26:34.177Z] display(terrain) +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] Traceback: +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.177Z] AttributeError Traceback (most recent call last) +[2024-03-14T18:26:34.177Z] Cell In[1], line 1 +[2024-03-14T18:26:34.177Z] ----> 1 properties, dem = terrain_resp.get(asobj=True) +[2024-03-14T18:26:34.177Z]  3 elevation = properties[0]["elevation"] +[2024-03-14T18:26:34.177Z]  4 slope = properties[0]["slope"] +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-14T18:26:34.177Z]  38 if not self.isSucceded(): +[2024-03-14T18:26:34.177Z]  39 # TODO: add reason for failure +[2024-03-14T18:26:34.177Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-14T18:26:34.177Z] ---> 41 return self._make_output(asobj) +[2024-03-14T18:26:34.177Z] +[2024-03-14T18:26:34.177Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-14T18:26:34.177Z]  44 Output = namedtuple( +[2024-03-14T18:26:34.178Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-14T18:26:34.178Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-14T18:26:34.178Z]  47 ) +[2024-03-14T18:26:34.178Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-14T18:26:34.178Z]  49 return Output( +[2024-03-14T18:26:34.178Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-14T18:26:34.178Z]  51 ) +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-14T18:26:34.178Z]  44 Output = namedtuple( +[2024-03-14T18:26:34.178Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-14T18:26:34.178Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-14T18:26:34.178Z]  47 ) +[2024-03-14T18:26:34.178Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-14T18:26:34.178Z]  49 return Output( +[2024-03-14T18:26:34.178Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-14T18:26:34.178Z]  51 ) +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-14T18:26:34.178Z]  68 return delist(data) +[2024-03-14T18:26:34.178Z]  70 if convert_objects: +[2024-03-14T18:26:34.178Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-14T18:26:34.178Z]  72 else: +[2024-03-14T18:26:34.178Z]  73 return output.reference +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-14T18:26:34.178Z]  372 try: +[2024-03-14T18:26:34.178Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-14T18:26:34.178Z] --> 374 out = converter.convert() +[2024-03-14T18:26:34.178Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-14T18:26:34.178Z]  376 out = [convert(o, path) for o in out] +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-14T18:26:34.178Z]  263 import xarray # isort: skip +[2024-03-14T18:26:34.178Z]  264 import rioxarray # noqa +[2024-03-14T18:26:34.178Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ +[2024-03-14T18:26:34.178Z] Notebook cell execution failed +[2024-03-14T18:26:34.178Z] Cell 11: Cell execution caused an exception +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] Input: +[2024-03-14T18:26:34.178Z] crs = ccrs.LambertConformal( +[2024-03-14T18:26:34.178Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-14T18:26:34.178Z] ) +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] dem.name = "Elevation" +[2024-03-14T18:26:34.178Z] dem.attrs["units"] = "m" +[2024-03-14T18:26:34.178Z] ax = plt.subplot(projection=crs) +[2024-03-14T18:26:34.178Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") +[2024-03-14T18:26:34.178Z] plt.show() +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] Traceback: +[2024-03-14T18:26:34.178Z] +[2024-03-14T18:26:34.178Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.178Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.178Z] Cell In[1], line 5 +[2024-03-14T18:26:34.178Z]  1 crs = ccrs.LambertConformal( +[2024-03-14T18:26:34.178Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-14T18:26:34.178Z]  3 ) +[2024-03-14T18:26:34.179Z] ----> 5 dem.name = "Elevation" +[2024-03-14T18:26:34.179Z]  6 dem.attrs["units"] = "m" +[2024-03-14T18:26:34.179Z]  7 ax = plt.subplot(projection=crs) +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] NameError: name 'dem' is not defined +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 _ +[2024-03-14T18:26:34.179Z] Notebook cell execution failed +[2024-03-14T18:26:34.179Z] Cell 13: Cell execution caused an exception +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] Input: +[2024-03-14T18:26:34.179Z] all_properties = {**shape_info, **land_use, **terrain} +[2024-03-14T18:26:34.179Z] display(all_properties) +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] Traceback: +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.179Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.179Z] Cell In[1], line 1 +[2024-03-14T18:26:34.179Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} +[2024-03-14T18:26:34.179Z]  2 display(all_properties) +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] NameError: name 'land_use' is not defined +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-03-14T18:26:34.179Z] Notebook cell execution failed +[2024-03-14T18:26:34.179Z] Cell 5: Cell execution caused an exception +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] Input: +[2024-03-14T18:26:34.179Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-03-14T18:26:34.179Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-03-14T18:26:34.179Z] from ravenpy import OutputReader +[2024-03-14T18:26:34.179Z] from ravenpy.ravenpy import run +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-03-14T18:26:34.179Z] run_name = run_name +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-03-14T18:26:34.179Z] # subfolder called "outputs" +[2024-03-14T18:26:34.179Z] configdir = workdir +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-14T18:26:34.179Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] # Get the outputs using the Output Reader object. +[2024-03-14T18:26:34.179Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] Traceback: +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.179Z] RavenError Traceback (most recent call last) +[2024-03-14T18:26:34.179Z] Cell In[1], line 14 +[2024-03-14T18:26:34.179Z]  11 configdir = workdir +[2024-03-14T18:26:34.179Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-14T18:26:34.179Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-14T18:26:34.179Z]  16 # Get the outputs using the Output Reader object. +[2024-03-14T18:26:34.179Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-14T18:26:34.179Z]  320 warn(msg, category=RavenWarning) +[2024-03-14T18:26:34.179Z]  322 if messages["ERROR"]: +[2024-03-14T18:26:34.179Z] --> 323 raise RavenError( +[2024-03-14T18:26:34.179Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-14T18:26:34.179Z]  325 ) +[2024-03-14T18:26:34.179Z]  327 if returncode != 0: +[2024-03-14T18:26:34.179Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] RavenError: Config directory: /tmp/NB4xkvb_v2v +[2024-03-14T18:26:34.179Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-03-14T18:26:34.179Z] Notebook cell execution failed +[2024-03-14T18:26:34.179Z] Cell 6: Cell execution caused an exception +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] Input: +[2024-03-14T18:26:34.179Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-03-14T18:26:34.179Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-03-14T18:26:34.179Z] from ravenpy import Emulator +[2024-03-14T18:26:34.179Z] +[2024-03-14T18:26:34.179Z] # Prepare the emulator by writing files on disk +[2024-03-14T18:26:34.179Z] e = Emulator(config=m) +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] # Run the model and get the outputs. +[2024-03-14T18:26:34.180Z] outputs = e.run() +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] Traceback: +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.180Z] RavenError Traceback (most recent call last) +[2024-03-14T18:26:34.180Z] Cell In[1], line 9 +[2024-03-14T18:26:34.180Z]  6 e = Emulator(config=m) +[2024-03-14T18:26:34.180Z]  8 # Run the model and get the outputs. +[2024-03-14T18:26:34.180Z] ----> 9 outputs = e.run() +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-03-14T18:26:34.180Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-03-14T18:26:34.180Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-03-14T18:26:34.180Z]  66 self.write_rv(overwrite=overwrite) +[2024-03-14T18:26:34.180Z] ---> 68 self._output_path = run( +[2024-03-14T18:26:34.180Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-03-14T18:26:34.180Z]  70 ) +[2024-03-14T18:26:34.180Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-03-14T18:26:34.180Z]  72 return self._output +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-14T18:26:34.180Z]  320 warn(msg, category=RavenWarning) +[2024-03-14T18:26:34.180Z]  322 if messages["ERROR"]: +[2024-03-14T18:26:34.180Z] --> 323 raise RavenError( +[2024-03-14T18:26:34.180Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-14T18:26:34.180Z]  325 ) +[2024-03-14T18:26:34.180Z]  327 if returncode != 0: +[2024-03-14T18:26:34.180Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] RavenError: Config directory: /tmp/tmpx0zqd1su +[2024-03-14T18:26:34.180Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-03-14T18:26:34.180Z] Notebook cell execution failed +[2024-03-14T18:26:34.180Z] Cell 7: Cell execution caused an exception +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] Input: +[2024-03-14T18:26:34.180Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-14T18:26:34.180Z] outputs.files +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] Traceback: +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.180Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.180Z] Cell In[1], line 2 +[2024-03-14T18:26:34.180Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-14T18:26:34.180Z] ----> 2 outputs.files +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] NameError: name 'outputs' is not defined +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-03-14T18:26:34.180Z] Notebook cell execution failed +[2024-03-14T18:26:34.180Z] Cell 8: Cell execution caused an exception +[2024-03-14T18:26:34.180Z] +[2024-03-14T18:26:34.180Z] Input: +[2024-03-14T18:26:34.180Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-14T18:26:34.180Z] print("----------------HYDROGRAPH----------------") +[2024-03-14T18:26:34.180Z] display(outputs.hydrograph) +[2024-03-14T18:26:34.181Z] print("") +[2024-03-14T18:26:34.181Z] print("-----------------STORAGE------------------") +[2024-03-14T18:26:34.181Z] display(outputs.storage) +[2024-03-14T18:26:34.181Z] print("") +[2024-03-14T18:26:34.181Z] print("-----------------SOLUTION-----------------") +[2024-03-14T18:26:34.181Z] display(outputs.solution) +[2024-03-14T18:26:34.181Z] print("") +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Traceback: +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.181Z] Cell In[1], line 3 +[2024-03-14T18:26:34.181Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-14T18:26:34.181Z]  2 print("----------------HYDROGRAPH----------------") +[2024-03-14T18:26:34.181Z] ----> 3 display(outputs.hydrograph) +[2024-03-14T18:26:34.181Z]  4 print("") +[2024-03-14T18:26:34.181Z]  5 print("-----------------STORAGE------------------") +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-03-14T18:26:34.181Z] Notebook cell execution failed +[2024-03-14T18:26:34.181Z] Cell 9: Cell execution caused an exception +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Input: +[2024-03-14T18:26:34.181Z] # Import the graphing utility built to handle Raven model outputs +[2024-03-14T18:26:34.181Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] hydrograph_objects = outputs.hydrograph +[2024-03-14T18:26:34.181Z] hydrographs(hydrograph_objects) +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Traceback: +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.181Z] Cell In[1], line 4 +[2024-03-14T18:26:34.181Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-03-14T18:26:34.181Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-14T18:26:34.181Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-03-14T18:26:34.181Z]  5 hydrographs(hydrograph_objects) +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-03-14T18:26:34.181Z] Notebook cell execution failed +[2024-03-14T18:26:34.181Z] Cell 10: Cell execution caused an exception +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Input: +[2024-03-14T18:26:34.181Z] outputs.hydrograph.q_sim.plot() +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Traceback: +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.181Z] Cell In[1], line 1 +[2024-03-14T18:26:34.181Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-03-14T18:26:34.181Z] Notebook cell execution failed +[2024-03-14T18:26:34.181Z] Cell 11: Cell execution caused an exception +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Input: +[2024-03-14T18:26:34.181Z] print(list(outputs.storage.keys())) +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Traceback: +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.181Z] Cell In[1], line 1 +[2024-03-14T18:26:34.181Z] ----> 1 print(list(outputs.storage.keys())) +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-03-14T18:26:34.181Z] Notebook cell execution failed +[2024-03-14T18:26:34.181Z] Cell 12: Cell execution caused an exception +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Input: +[2024-03-14T18:26:34.181Z] # Plot the "Snow" variable +[2024-03-14T18:26:34.181Z] outputs.storage["Snow"].plot() +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Traceback: +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.181Z] Cell In[1], line 2 +[2024-03-14T18:26:34.181Z]  1 # Plot the "Snow" variable +[2024-03-14T18:26:34.181Z] ----> 2 outputs.storage["Snow"].plot() +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ +[2024-03-14T18:26:34.181Z] Notebook cell execution failed +[2024-03-14T18:26:34.181Z] Cell 0: Cell execution caused an exception +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] Input: +[2024-03-14T18:26:34.181Z] import os +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] from hsclient import HydroShare, Token +[2024-03-14T18:26:34.181Z] +[2024-03-14T18:26:34.181Z] # Authentication method using username and password +[2024-03-14T18:26:34.181Z] """ +[2024-03-14T18:26:34.181Z] username = 'XXXXX' +[2024-03-14T18:26:34.181Z] password = 'XXXXX' +[2024-03-14T18:26:34.182Z] hs = HydroShare(username=username, password=password) +[2024-03-14T18:26:34.182Z] """ +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-03-14T18:26:34.182Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] token = Token(access_token=access_token, token_type="bearer") +[2024-03-14T18:26:34.182Z] hs = HydroShare(client_id=client_id, token=token) +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] Traceback: +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.182Z] ValidationError Traceback (most recent call last) +[2024-03-14T18:26:34.182Z] Cell In[1], line 15 +[2024-03-14T18:26:34.182Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-03-14T18:26:34.182Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-03-14T18:26:34.182Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-03-14T18:26:34.182Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) +[2024-03-14T18:26:34.182Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-03-14T18:26:34.182Z]  170 __tracebackhide__ = True +[2024-03-14T18:26:34.182Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] ValidationError: 4 validation errors for Token +[2024-03-14T18:26:34.182Z] scope +[2024-03-14T18:26:34.182Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-03-14T18:26:34.182Z]  2 for r in results: +[2024-03-14T18:26:34.182Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] NameError: name 'hs' is not defined +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ +[2024-03-14T18:26:34.182Z] Notebook cell execution failed +[2024-03-14T18:26:34.182Z] Cell 2: Cell execution caused an exception +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] Input: +[2024-03-14T18:26:34.182Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-14T18:26:34.182Z] res.files() +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] Traceback: +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.182Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.182Z] Cell In[1], line 1 +[2024-03-14T18:26:34.182Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-14T18:26:34.182Z]  2 res.files() +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] NameError: name 'hs' is not defined +[2024-03-14T18:26:34.182Z] +[2024-03-14T18:26:34.182Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ +[2024-03-14T18:26:34.182Z] Notebook cell execution failed +[2024-03-14T18:26:34.183Z] Cell 3: Cell execution caused an exception +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] Input: +[2024-03-14T18:26:34.183Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] Traceback: +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.183Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.183Z] Cell In[1], line 1 +[2024-03-14T18:26:34.183Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] NameError: name 'res' is not defined +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 _ +[2024-03-14T18:26:34.183Z] Notebook cell execution failed +[2024-03-14T18:26:34.183Z] Cell 7: Cell execution caused an exception +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] Input: +[2024-03-14T18:26:34.183Z] features, statistics, grid0 = stats_resp.get(asobj=True) +[2024-03-14T18:26:34.183Z] lu = statistics[0] +[2024-03-14T18:26:34.183Z] total = sum(lu.values()) +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] land_use = {k: (v / total) for (k, v) in lu.items()} +[2024-03-14T18:26:34.183Z] display("Land use ratios", land_use) +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} +[2024-03-14T18:26:34.183Z] display("Land use percentages", land_use_pct) +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] Traceback: +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.183Z] AttributeError Traceback (most recent call last) +[2024-03-14T18:26:34.183Z] Cell In[1], line 1 +[2024-03-14T18:26:34.183Z] ----> 1 features, statistics, grid0 = stats_resp.get(asobj=True) +[2024-03-14T18:26:34.183Z]  2 lu = statistics[0] +[2024-03-14T18:26:34.183Z]  3 total = sum(lu.values()) +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-14T18:26:34.183Z]  38 if not self.isSucceded(): +[2024-03-14T18:26:34.183Z]  39 # TODO: add reason for failure +[2024-03-14T18:26:34.183Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-14T18:26:34.183Z] ---> 41 return self._make_output(asobj) +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-14T18:26:34.183Z]  44 Output = namedtuple( +[2024-03-14T18:26:34.183Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-14T18:26:34.183Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-14T18:26:34.183Z]  47 ) +[2024-03-14T18:26:34.183Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-14T18:26:34.183Z]  49 return Output( +[2024-03-14T18:26:34.183Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-14T18:26:34.183Z]  51 ) +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-14T18:26:34.183Z]  44 Output = namedtuple( +[2024-03-14T18:26:34.183Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-14T18:26:34.183Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-14T18:26:34.183Z]  47 ) +[2024-03-14T18:26:34.183Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-14T18:26:34.183Z]  49 return Output( +[2024-03-14T18:26:34.183Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-14T18:26:34.183Z]  51 ) +[2024-03-14T18:26:34.183Z] +[2024-03-14T18:26:34.183Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-14T18:26:34.183Z]  68 return delist(data) +[2024-03-14T18:26:34.183Z]  70 if convert_objects: +[2024-03-14T18:26:34.184Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-14T18:26:34.184Z]  72 else: +[2024-03-14T18:26:34.184Z]  73 return output.reference +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) +[2024-03-14T18:26:34.184Z]  374 out = converter.convert() +[2024-03-14T18:26:34.184Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-14T18:26:34.184Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-14T18:26:34.184Z]  377 return out +[2024-03-14T18:26:34.184Z]  379 except (ImportError, NotImplementedError): +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) +[2024-03-14T18:26:34.184Z]  374 out = converter.convert() +[2024-03-14T18:26:34.184Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-14T18:26:34.184Z] --> 376 out = [convert(o, path) for o in out] +[2024-03-14T18:26:34.184Z]  377 return out +[2024-03-14T18:26:34.184Z]  379 except (ImportError, NotImplementedError): +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-14T18:26:34.184Z]  372 try: +[2024-03-14T18:26:34.184Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-14T18:26:34.184Z] --> 374 out = converter.convert() +[2024-03-14T18:26:34.184Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-14T18:26:34.184Z]  376 out = [convert(o, path) for o in out] +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-14T18:26:34.184Z]  263 import xarray # isort: skip +[2024-03-14T18:26:34.184Z]  264 import rioxarray # noqa +[2024-03-14T18:26:34.184Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 _ +[2024-03-14T18:26:34.184Z] Notebook cell execution failed +[2024-03-14T18:26:34.184Z] Cell 8: Cell execution caused an exception +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] Input: +[2024-03-14T18:26:34.184Z] terrain_resp = wps.terrain_analysis( +[2024-03-14T18:26:34.184Z] shape=basin_contour, select_all_touching=True, projected_crs=3978 +[2024-03-14T18:26:34.184Z] ) +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] properties, dem0 = terrain_resp.get(asobj=True) +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] elevation = properties[0]["elevation"] +[2024-03-14T18:26:34.184Z] slope = properties[0]["slope"] +[2024-03-14T18:26:34.184Z] aspect = properties[0]["aspect"] +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} +[2024-03-14T18:26:34.184Z] display(terrain) +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] Traceback: +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.184Z] AttributeError Traceback (most recent call last) +[2024-03-14T18:26:34.184Z] Cell In[1], line 5 +[2024-03-14T18:26:34.184Z]  1 terrain_resp = wps.terrain_analysis( +[2024-03-14T18:26:34.184Z]  2 shape=basin_contour, select_all_touching=True, projected_crs=3978 +[2024-03-14T18:26:34.184Z]  3 ) +[2024-03-14T18:26:34.184Z] ----> 5 properties, dem0 = terrain_resp.get(asobj=True) +[2024-03-14T18:26:34.184Z]  7 elevation = properties[0]["elevation"] +[2024-03-14T18:26:34.184Z]  8 slope = properties[0]["slope"] +[2024-03-14T18:26:34.184Z] +[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) +[2024-03-14T18:26:34.184Z]  38 if not self.isSucceded(): +[2024-03-14T18:26:34.185Z]  39 # TODO: add reason for failure +[2024-03-14T18:26:34.185Z]  40 raise ProcessFailed("Sorry, process failed.") +[2024-03-14T18:26:34.185Z] ---> 41 return self._make_output(asobj) +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) +[2024-03-14T18:26:34.185Z]  44 Output = namedtuple( +[2024-03-14T18:26:34.185Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-14T18:26:34.185Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-14T18:26:34.185Z]  47 ) +[2024-03-14T18:26:34.185Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-14T18:26:34.185Z]  49 return Output( +[2024-03-14T18:26:34.185Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-14T18:26:34.185Z]  51 ) +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) +[2024-03-14T18:26:34.185Z]  44 Output = namedtuple( +[2024-03-14T18:26:34.185Z]  45 sanitize(self.process.identifier) + "Response", +[2024-03-14T18:26:34.185Z]  46 [sanitize(o.identifier) for o in self.processOutputs], +[2024-03-14T18:26:34.185Z]  47 ) +[2024-03-14T18:26:34.185Z]  48 Output.__repr__ = utils.pretty_repr +[2024-03-14T18:26:34.185Z]  49 return Output( +[2024-03-14T18:26:34.185Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] +[2024-03-14T18:26:34.185Z]  51 ) +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) +[2024-03-14T18:26:34.185Z]  68 return delist(data) +[2024-03-14T18:26:34.185Z]  70 if convert_objects: +[2024-03-14T18:26:34.185Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) +[2024-03-14T18:26:34.185Z]  72 else: +[2024-03-14T18:26:34.185Z]  73 return output.reference +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) +[2024-03-14T18:26:34.185Z]  372 try: +[2024-03-14T18:26:34.185Z]  373 converter = cls(output, path=path, verify=verify) +[2024-03-14T18:26:34.185Z] --> 374 out = converter.convert() +[2024-03-14T18:26:34.185Z]  375 if converter.nested: # Then the output is a list of files. +[2024-03-14T18:26:34.185Z]  376 out = [convert(o, path) for o in out] +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) +[2024-03-14T18:26:34.185Z]  263 import xarray # isort: skip +[2024-03-14T18:26:34.185Z]  264 import rioxarray # noqa +[2024-03-14T18:26:34.185Z] --> 266 return xarray.open_rasterio(self.file) +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.185Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.185Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 _ +[2024-03-14T18:26:34.185Z] Notebook cell execution failed +[2024-03-14T18:26:34.185Z] Cell 9: Cell execution caused an exception +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.185Z] Input: +[2024-03-14T18:26:34.185Z] all_properties = {**shape_info, **land_use, **terrain} +[2024-03-14T18:26:34.185Z] display(all_properties) +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.185Z] Traceback: +[2024-03-14T18:26:34.185Z] +[2024-03-14T18:26:34.186Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.186Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.186Z] Cell In[1], line 1 +[2024-03-14T18:26:34.186Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} +[2024-03-14T18:26:34.186Z]  2 display(all_properties) +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] NameError: name 'land_use' is not defined +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ +[2024-03-14T18:26:34.186Z] Notebook cell execution failed +[2024-03-14T18:26:34.186Z] Cell 10: Cell execution caused an exception +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] Input: +[2024-03-14T18:26:34.186Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. +[2024-03-14T18:26:34.186Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" +[2024-03-14T18:26:34.186Z] cat = intake.open_catalog(catalog_name) +[2024-03-14T18:26:34.186Z] ds = cat.era5_reanalysis_single_levels.to_dask() +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] """ +[2024-03-14T18:26:34.186Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, +[2024-03-14T18:26:34.186Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total +[2024-03-14T18:26:34.186Z] precipitation. +[2024-03-14T18:26:34.186Z] """ +[2024-03-14T18:26:34.186Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, +[2024-03-14T18:26:34.186Z] # such as units and variable names. +[2024-03-14T18:26:34.186Z] with xr.set_options(keep_attrs=True): +[2024-03-14T18:26:34.186Z] ERA5_reference = subset.subset_shape( +[2024-03-14T18:26:34.186Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour +[2024-03-14T18:26:34.186Z] ) +[2024-03-14T18:26:34.186Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) +[2024-03-14T18:26:34.186Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) +[2024-03-14T18:26:34.186Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] # Change the units +[2024-03-14T18:26:34.186Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C +[2024-03-14T18:26:34.186Z] ERA5_tmin.attrs["units"] = "degC" +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C +[2024-03-14T18:26:34.186Z] ERA5_tmax.attrs["units"] = "degC" +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] ERA5_pr = ERA5_pr * 1000 # m to mm +[2024-03-14T18:26:34.186Z] ERA5_pr.attrs["units"] = "mm" +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] # Average the variables spatially +[2024-03-14T18:26:34.186Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-03-14T18:26:34.186Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-03-14T18:26:34.186Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-14T18:26:34.186Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-14T18:26:34.186Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-14T18:26:34.186Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-03-14T18:26:34.186Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the +[2024-03-14T18:26:34.186Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. +[2024-03-14T18:26:34.186Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) +[2024-03-14T18:26:34.186Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] Traceback: +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.186Z] KeyError Traceback (most recent call last) +[2024-03-14T18:26:34.186Z] Cell In[1], line 37 +[2024-03-14T18:26:34.186Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-14T18:26:34.186Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-14T18:26:34.186Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-14T18:26:34.186Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-14T18:26:34.186Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-14T18:26:34.186Z] +[2024-03-14T18:26:34.186Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-03-14T18:26:34.186Z]  851 self.coords[key] = value +[2024-03-14T18:26:34.186Z]  852 else: +[2024-03-14T18:26:34.186Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-03-14T18:26:34.186Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-03-14T18:26:34.186Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-03-14T18:26:34.186Z] --> 856 obj = self[key] +[2024-03-14T18:26:34.187Z]  857 if isinstance(value, DataArray): +[2024-03-14T18:26:34.187Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-03-14T18:26:34.187Z] +[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-03-14T18:26:34.187Z]  844 return self._getitem_coord(key) +[2024-03-14T18:26:34.187Z]  845 else: +[2024-03-14T18:26:34.187Z]  846 # xarray-style array indexing +[2024-03-14T18:26:34.187Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-03-14T18:26:34.187Z] +[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-03-14T18:26:34.187Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-03-14T18:26:34.187Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-03-14T18:26:34.187Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-03-14T18:26:34.187Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-03-14T18:26:34.187Z]  1447  ) +[2024-03-14T18:26:34.187Z]  1448 return self._from_temp_dataset(ds) +[2024-03-14T18:26:34.187Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-03-14T18:26:34.187Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-03-14T18:26:34.187Z] +[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-03-14T18:26:34.187Z]  2926 var_indexers = { +[2024-03-14T18:26:34.187Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-03-14T18:26:34.187Z]  2928 } +[2024-03-14T18:26:34.187Z]  2929 if var_indexers: +[2024-03-14T18:26:34.187Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-03-14T18:26:34.187Z]  2931 # drop scalar coordinates +[2024-03-14T18:26:34.187Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-03-14T18:26:34.187Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-03-14T18:26:34.187Z] +[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-03-14T18:26:34.187Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-03-14T18:26:34.187Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-03-14T18:26:34.187Z] -> 1368 return self[key] +[2024-03-14T18:26:34.187Z] +[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-03-14T18:26:34.187Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-03-14T18:26:34.187Z]  879  """Return a new Variable object whose contents are consistent with +[2024-03-14T18:26:34.187Z]  880  getting the provided key from the underlying data. +[2024-03-14T18:26:34.187Z]  881 +[2024-03-14T18:26:34.187Z]  (...) +[2024-03-14T18:26:34.187Z]  889  array `x.values` directly. +[2024-03-14T18:26:34.187Z]  890  """ +[2024-03-14T18:26:34.187Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-03-14T18:26:34.187Z]  892 data = as_indexable(self._data)[indexer] +[2024-03-14T18:26:34.187Z]  893 if new_order: +[2024-03-14T18:26:34.187Z] +[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-03-14T18:26:34.187Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-03-14T18:26:34.187Z]  722 return self._broadcast_indexes_basic(key) +[2024-03-14T18:26:34.188Z] --> 724 self._validate_indexers(key) +[2024-03-14T18:26:34.188Z]  725 # Detect it can be mapped as an outer indexer +[2024-03-14T18:26:34.188Z]  726 # If all key is unlabeled, or +[2024-03-14T18:26:34.188Z]  727 # key can be mapped as an OuterIndexer. +[2024-03-14T18:26:34.188Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-03-14T18:26:34.188Z] +[2024-03-14T18:26:34.188Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-03-14T18:26:34.188Z]  771 raise IndexError( +[2024-03-14T18:26:34.188Z]  772 "{}-dimensional boolean indexing is " +[2024-03-14T18:26:34.188Z]  773 "not supported. ".format(k.ndim) +[2024-03-14T18:26:34.188Z]  774 ) +[2024-03-14T18:26:34.188Z]  775 if is_duck_dask_array(k.data): +[2024-03-14T18:26:34.188Z] --> 776 raise KeyError( +[2024-03-14T18:26:34.188Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-03-14T18:26:34.188Z]  778 "This will result in a dask array of unknown shape. " +[2024-03-14T18:26:34.188Z]  779 "Such arrays are unsupported by Xarray." +[2024-03-14T18:26:34.188Z]  780 "Please compute the indexer first using .compute()" +[2024-03-14T18:26:34.188Z]  781 ) +[2024-03-14T18:26:34.188Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-03-14T18:26:34.188Z]  783 raise IndexError( +[2024-03-14T18:26:34.188Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-03-14T18:26:34.188Z]  785 "same dimension to the indexed array. Indexer is " +[2024-03-14T18:26:34.188Z]  (...) +[2024-03-14T18:26:34.188Z]  788 ) +[2024-03-14T18:26:34.188Z]  789 ) +[2024-03-14T18:26:34.188Z] +[2024-03-14T18:26:34.188Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-03-14T18:26:34.188Z] +[2024-03-14T18:26:34.188Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ +[2024-03-14T18:26:34.188Z] Notebook cell execution failed +[2024-03-14T18:26:34.188Z] Cell 11: Cell execution caused an exception +[2024-03-14T18:26:34.188Z] +[2024-03-14T18:26:34.188Z] Input: +[2024-03-14T18:26:34.188Z] # Climate model to use +[2024-03-14T18:26:34.188Z] climate_model = "MIROC6" +[2024-03-14T18:26:34.188Z] +[2024-03-14T18:26:34.188Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. +[2024-03-14T18:26:34.188Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") +[2024-03-14T18:26:34.188Z] col = intake.open_esm_datastore( +[2024-03-14T18:26:34.188Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" +[2024-03-14T18:26:34.188Z] ) +[2024-03-14T18:26:34.188Z] +[2024-03-14T18:26:34.188Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. +[2024-03-14T18:26:34.188Z] with xr.set_options(keep_attrs=True): +[2024-03-14T18:26:34.188Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. +[2024-03-14T18:26:34.188Z] out = {} +[2024-03-14T18:26:34.188Z] for exp in ["historical", "ssp585"]: +[2024-03-14T18:26:34.188Z] if exp == "historical": +[2024-03-14T18:26:34.188Z] period_start = reference_start_day +[2024-03-14T18:26:34.188Z] period_end = reference_end_day +[2024-03-14T18:26:34.188Z] else: +[2024-03-14T18:26:34.188Z] period_start = future_start_day +[2024-03-14T18:26:34.188Z] period_end = future_end_day +[2024-03-14T18:26:34.188Z] +[2024-03-14T18:26:34.188Z] out[exp] = {} +[2024-03-14T18:26:34.188Z] for variable in ["tasmin", "tasmax", "pr"]: +[2024-03-14T18:26:34.188Z] print(exp, variable) +[2024-03-14T18:26:34.188Z] query = dict( +[2024-03-14T18:26:34.188Z] experiment_id=exp, +[2024-03-14T18:26:34.188Z] table_id="day", +[2024-03-14T18:26:34.188Z] variable_id=variable, +[2024-03-14T18:26:34.188Z] member_id="r1i1p1f1", +[2024-03-14T18:26:34.188Z] source_id=climate_model, +[2024-03-14T18:26:34.188Z] ) +[2024-03-14T18:26:34.188Z] col_subset = col.search(require_all_on=["source_id"], **query) +[2024-03-14T18:26:34.188Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) +[2024-03-14T18:26:34.188Z] +[2024-03-14T18:26:34.188Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. +[2024-03-14T18:26:34.188Z] if variable == "pr": +[2024-03-14T18:26:34.188Z] out[exp][variable] = average.average_shape( +[2024-03-14T18:26:34.188Z] xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-14T18:26:34.188Z] time=slice(period_start, period_end) +[2024-03-14T18:26:34.188Z] )[variable], +[2024-03-14T18:26:34.188Z] basin_contour, +[2024-03-14T18:26:34.188Z] ).chunk(-1) +[2024-03-14T18:26:34.188Z] else: +[2024-03-14T18:26:34.188Z] out[exp][variable] = average.average_shape( +[2024-03-14T18:26:34.188Z] xr.open_zarr(mapper, consolidated=True) +[2024-03-14T18:26:34.188Z] .sel(time=slice(period_start, period_end)) +[2024-03-14T18:26:34.188Z] .reset_coords("height", drop=True)[variable], +[2024-03-14T18:26:34.188Z] basin_contour, +[2024-03-14T18:26:34.188Z] ).chunk(-1) +[2024-03-14T18:26:34.188Z] +[2024-03-14T18:26:34.188Z] # We can now extract the variables that we will need later: +[2024-03-14T18:26:34.188Z] historical_tasmax = out["historical"]["tasmax"] +[2024-03-14T18:26:34.189Z] historical_tasmin = out["historical"]["tasmin"] +[2024-03-14T18:26:34.189Z] historical_pr = out["historical"]["pr"] +[2024-03-14T18:26:34.189Z] future_tasmax = out["ssp585"]["tasmax"] +[2024-03-14T18:26:34.189Z] future_tasmin = out["ssp585"]["tasmin"] +[2024-03-14T18:26:34.189Z] future_pr = out["ssp585"]["pr"] +[2024-03-14T18:26:34.189Z] +[2024-03-14T18:26:34.189Z] Traceback: +[2024-03-14T18:26:34.189Z] +[2024-03-14T18:26:34.189Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.189Z] KeyError Traceback (most recent call last) +[2024-03-14T18:26:34.189Z] Cell In[1], line 44 +[2024-03-14T18:26:34.189Z]  37 out[exp][variable] = average.average_shape( +[2024-03-14T18:26:34.189Z]  38 xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-14T18:26:34.189Z]  39 time=slice(period_start, period_end) +[2024-03-14T18:26:34.189Z]  40 )[variable], +[2024-03-14T18:26:34.189Z]  41 basin_contour, +[2024-03-14T18:26:34.189Z]  42 ).chunk(-1) +[2024-03-14T18:26:34.189Z]  43 else: +[2024-03-14T18:26:34.189Z] ---> 44 out[exp][variable] = average.average_shape( +[2024-03-14T18:26:34.189Z]  45  xr.open_zarr(mapper, consolidated=True) +[2024-03-14T18:26:34.189Z]  46  .sel(time=slice(period_start, period_end)) +[2024-03-14T18:26:34.189Z]  47  .reset_coords("height", drop=True)[variable], +[2024-03-14T18:26:34.189Z]  48  basin_contour, +[2024-03-14T18:26:34.189Z]  49  ).chunk(-1) +[2024-03-14T18:26:34.189Z]  51 # We can now extract the variables that we will need later: +[2024-03-14T18:26:34.189Z]  52 historical_tasmax = out["historical"]["tasmax"] +[2024-03-14T18:26:34.189Z] +[2024-03-14T18:26:34.189Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) +[2024-03-14T18:26:34.189Z]  105 ds_sub = ds_copy.isel(indexer) +[2024-03-14T18:26:34.189Z]  107 # Compute the weights +[2024-03-14T18:26:34.189Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) +[2024-03-14T18:26:34.189Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. +[2024-03-14T18:26:34.189Z]  111 nonnull = ( +[2024-03-14T18:26:34.189Z]  112 savger.weights.data.nnz +[2024-03-14T18:26:34.189Z]  113 if isinstance(savger.weights, xr.DataArray) +[2024-03-14T18:26:34.189Z]  114 else savger.weights.nnz +[2024-03-14T18:26:34.189Z]  115 ) +[2024-03-14T18:26:34.189Z] +[2024-03-14T18:26:34.189Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) +[2024-03-14T18:26:34.189Z]  1182 if isinstance(ds_in, xr.DataArray): +[2024-03-14T18:26:34.189Z]  1183 ds_in = ds_in._to_temp_dataset() +[2024-03-14T18:26:34.189Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) +[2024-03-14T18:26:34.189Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. +[2024-03-14T18:26:34.189Z]  1188 # Latitude and longitude coordinates are the polygon centroid. +[2024-03-14T18:26:34.189Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) +[2024-03-14T18:26:34.189Z] +[2024-03-14T18:26:34.189Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) +[2024-03-14T18:26:34.189Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) +[2024-03-14T18:26:34.189Z]  166 if need_bounds: +[2024-03-14T18:26:34.189Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) +[2024-03-14T18:26:34.189Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) +[2024-03-14T18:26:34.189Z]  169 add_corner(grid, lon_b.T, lat_b.T) +[2024-03-14T18:26:34.189Z] +[2024-03-14T18:26:34.190Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) +[2024-03-14T18:26:34.190Z]  105 lat_bnds = ds.cf.get_bounds('latitude') +[2024-03-14T18:26:34.190Z]  107 # Convert from CF bounds to xESMF bounds. +[2024-03-14T18:26:34.190Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. +[2024-03-14T18:26:34.190Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) +[2024-03-14T18:26:34.190Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) +[2024-03-14T18:26:34.190Z]  111 return lon_b, lat_b +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) +[2024-03-14T18:26:34.190Z]  2400 filtered = [ +[2024-03-14T18:26:34.190Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs +[2024-03-14T18:26:34.190Z]  2402 ] +[2024-03-14T18:26:34.190Z]  2403 if len(filtered) > 1: +[2024-03-14T18:26:34.190Z] -> 2404 raise KeyError( +[2024-03-14T18:26:34.190Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " +[2024-03-14T18:26:34.190Z]  2406 ) +[2024-03-14T18:26:34.190Z]  2408 (crd_name,) = filtered +[2024-03-14T18:26:34.190Z]  2409 crd = variables[crd_name] +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon', 'lon_bounds'] " +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ +[2024-03-14T18:26:34.190Z] Notebook cell execution failed +[2024-03-14T18:26:34.190Z] Cell 12: Cell execution caused an exception +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] Input: +[2024-03-14T18:26:34.190Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-14T18:26:34.190Z] # and make sure everything is consistent. +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] # Let's start with precipitation: +[2024-03-14T18:26:34.190Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-14T18:26:34.190Z] historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-14T18:26:34.190Z] future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] # Now we can actually convert units in absolute terms. +[2024-03-14T18:26:34.190Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") +[2024-03-14T18:26:34.190Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] # Now let's do temperature: +[2024-03-14T18:26:34.190Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") +[2024-03-14T18:26:34.190Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") +[2024-03-14T18:26:34.190Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") +[2024-03-14T18:26:34.190Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] Traceback: +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.190Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.190Z] Cell In[1], line 6 +[2024-03-14T18:26:34.190Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-14T18:26:34.190Z]  2 # and make sure everything is consistent. +[2024-03-14T18:26:34.190Z]  3 +[2024-03-14T18:26:34.190Z]  4 # Let's start with precipitation: +[2024-03-14T18:26:34.190Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-14T18:26:34.190Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-14T18:26:34.190Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-14T18:26:34.190Z]  9 # Now we can actually convert units in absolute terms. +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] NameError: name 'historical_pr' is not defined +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ +[2024-03-14T18:26:34.190Z] Notebook cell execution failed +[2024-03-14T18:26:34.190Z] Cell 13: Cell execution caused an exception +[2024-03-14T18:26:34.190Z] +[2024-03-14T18:26:34.190Z] Input: +[2024-03-14T18:26:34.190Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. +[2024-03-14T18:26:34.191Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-14T18:26:34.191Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-14T18:26:34.191Z] ref=ERA5_weather.pr, +[2024-03-14T18:26:34.191Z] hist=historical_pr, +[2024-03-14T18:26:34.191Z] nquantiles=50, +[2024-03-14T18:26:34.191Z] kind="+", +[2024-03-14T18:26:34.191Z] group=group_month_window, +[2024-03-14T18:26:34.191Z] ) +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Apply the correction factors on the reference period +[2024-03-14T18:26:34.191Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Apply the correction factors on the future period +[2024-03-14T18:26:34.191Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Ensure that the precipitation is non-negative, which can happen with some climate models +[2024-03-14T18:26:34.191Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) +[2024-03-14T18:26:34.191Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data +[2024-03-14T18:26:34.191Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-14T18:26:34.191Z] ref=ERA5_weather.tmax, +[2024-03-14T18:26:34.191Z] hist=historical_tasmax, +[2024-03-14T18:26:34.191Z] nquantiles=50, +[2024-03-14T18:26:34.191Z] kind="+", +[2024-03-14T18:26:34.191Z] group=group_month_window, +[2024-03-14T18:26:34.191Z] ) +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Apply the correction factors on the reference period +[2024-03-14T18:26:34.191Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Apply the correction factors on the future period +[2024-03-14T18:26:34.191Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data +[2024-03-14T18:26:34.191Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-14T18:26:34.191Z] ref=ERA5_weather.tmin, +[2024-03-14T18:26:34.191Z] hist=historical_tasmin, +[2024-03-14T18:26:34.191Z] nquantiles=50, +[2024-03-14T18:26:34.191Z] kind="+", +[2024-03-14T18:26:34.191Z] group=group_month_window, +[2024-03-14T18:26:34.191Z] ) +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Apply the correction factors on the reference period +[2024-03-14T18:26:34.191Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Apply the correction factors on the future period +[2024-03-14T18:26:34.191Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] Traceback: +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.191Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.191Z] Cell In[1], line 6 +[2024-03-14T18:26:34.191Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-14T18:26:34.191Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-14T18:26:34.191Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-14T18:26:34.191Z] ----> 6 ref=ERA5_weather.pr, +[2024-03-14T18:26:34.191Z]  7 hist=historical_pr, +[2024-03-14T18:26:34.191Z]  8 nquantiles=50, +[2024-03-14T18:26:34.191Z]  9 kind="+", +[2024-03-14T18:26:34.191Z]  10 group=group_month_window, +[2024-03-14T18:26:34.191Z]  11 ) +[2024-03-14T18:26:34.191Z]  13 # Apply the correction factors on the reference period +[2024-03-14T18:26:34.191Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] NameError: name 'ERA5_weather' is not defined +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ +[2024-03-14T18:26:34.191Z] Notebook cell execution failed +[2024-03-14T18:26:34.191Z] Cell 14: Cell execution caused an exception +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] Input: +[2024-03-14T18:26:34.191Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-14T18:26:34.191Z] ref_dataset = xr.merge( +[2024-03-14T18:26:34.191Z] [ +[2024-03-14T18:26:34.191Z] corrected_ref_precip.to_dataset(name="pr"), +[2024-03-14T18:26:34.191Z] corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-14T18:26:34.191Z] corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-14T18:26:34.191Z] ] +[2024-03-14T18:26:34.191Z] ) +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Write to temporary folder +[2024-03-14T18:26:34.191Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-14T18:26:34.191Z] ref_dataset.to_netcdf(fn_tmp_ref) +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Convert the future corrected data into netCDF file +[2024-03-14T18:26:34.191Z] fut_dataset = xr.merge( +[2024-03-14T18:26:34.191Z] [ +[2024-03-14T18:26:34.191Z] corrected_fut_precip.to_dataset(name="pr"), +[2024-03-14T18:26:34.191Z] corrected_fut_tasmax.to_dataset(name="tasmax"), +[2024-03-14T18:26:34.191Z] corrected_fut_tasmin.to_dataset(name="tasmin"), +[2024-03-14T18:26:34.191Z] ] +[2024-03-14T18:26:34.191Z] ) +[2024-03-14T18:26:34.191Z] # Write to temporary folder +[2024-03-14T18:26:34.191Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" +[2024-03-14T18:26:34.191Z] fut_dataset.to_netcdf(fn_tmp_fut) +[2024-03-14T18:26:34.191Z] +[2024-03-14T18:26:34.191Z] # Write the data to disk to a temporary location for future use. +[2024-03-14T18:26:34.192Z] ref_dataset = xr.open_dataset(fn_tmp_ref) +[2024-03-14T18:26:34.192Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] fut_dataset = xr.open_dataset(fn_tmp_fut) +[2024-03-14T18:26:34.192Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] Traceback: +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.192Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.192Z] Cell In[1], line 4 +[2024-03-14T18:26:34.192Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-14T18:26:34.192Z]  2 ref_dataset = xr.merge( +[2024-03-14T18:26:34.192Z]  3 [ +[2024-03-14T18:26:34.192Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), +[2024-03-14T18:26:34.192Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-14T18:26:34.192Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-14T18:26:34.192Z]  7 ] +[2024-03-14T18:26:34.192Z]  8 ) +[2024-03-14T18:26:34.192Z]  10 # Write to temporary folder +[2024-03-14T18:26:34.192Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] NameError: name 'corrected_ref_precip' is not defined +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ +[2024-03-14T18:26:34.192Z] Notebook cell execution failed +[2024-03-14T18:26:34.192Z] Cell 15: Cell execution caused an exception +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] Input: +[2024-03-14T18:26:34.192Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-03-14T18:26:34.192Z] # populate the fields for the HRU. +[2024-03-14T18:26:34.192Z] hru = {} +[2024-03-14T18:26:34.192Z] hru = dict( +[2024-03-14T18:26:34.192Z] area=all_properties["area"], +[2024-03-14T18:26:34.192Z] elevation=all_properties["elevation"], +[2024-03-14T18:26:34.192Z] latitude=all_properties["latitude"], +[2024-03-14T18:26:34.192Z] longitude=all_properties["longitude"], +[2024-03-14T18:26:34.192Z] hru_type="land", +[2024-03-14T18:26:34.192Z] ) +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-03-14T18:26:34.192Z] # will simply execute the model which has been pre-configured to run on this period. +[2024-03-14T18:26:34.192Z] start_date = dt.datetime(1981, 1, 1) +[2024-03-14T18:26:34.192Z] end_date = dt.datetime(1985, 12, 31) +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. +[2024-03-14T18:26:34.192Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] # Alternative variable names as described in the tutorial. +[2024-03-14T18:26:34.192Z] alt_names = { +[2024-03-14T18:26:34.192Z] "TEMP_MIN": "tmin", +[2024-03-14T18:26:34.192Z] "TEMP_MAX": "tmax", +[2024-03-14T18:26:34.192Z] "PRECIP": "pr", +[2024-03-14T18:26:34.192Z] } +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here +[2024-03-14T18:26:34.192Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. +[2024-03-14T18:26:34.192Z] data_kwds = { +[2024-03-14T18:26:34.192Z] "ALL": { +[2024-03-14T18:26:34.192Z] "elevation": hru["elevation"], +[2024-03-14T18:26:34.192Z] "latitude": hru["latitude"], +[2024-03-14T18:26:34.192Z] "longitude": hru["longitude"], +[2024-03-14T18:26:34.192Z] } +[2024-03-14T18:26:34.192Z] } +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] # Give a name to the simulation +[2024-03-14T18:26:34.192Z] run_name = "Paper_example_simulation" +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] # Setup the gauge object that includes meteorological data from ERA5 +[2024-03-14T18:26:34.192Z] gauge = [ +[2024-03-14T18:26:34.192Z] rc.Gauge.from_nc( +[2024-03-14T18:26:34.192Z] tmp +[2024-03-14T18:26:34.192Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-03-14T18:26:34.192Z] data_type=data_type, # Note that this is the list of all the variables +[2024-03-14T18:26:34.192Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-03-14T18:26:34.192Z] data_kwds=data_kwds, +[2024-03-14T18:26:34.192Z] ) +[2024-03-14T18:26:34.192Z] ] +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] # Read the streamflow from the HYSETS catchment data for this basin +[2024-03-14T18:26:34.192Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, +[2024-03-14T18:26:34.192Z] # and the optimizer will read it directly to calibrate. +[2024-03-14T18:26:34.192Z] eval_metrics = ("NASH_SUTCLIFFE",) +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] # Build the model configuration according to user preferences and inputs +[2024-03-14T18:26:34.192Z] model_config = GR4JCN( +[2024-03-14T18:26:34.192Z] ObservationData=discharge_data, +[2024-03-14T18:26:34.192Z] Gauge=gauge, +[2024-03-14T18:26:34.192Z] HRUs=[hru], +[2024-03-14T18:26:34.192Z] StartDate=start_date, +[2024-03-14T18:26:34.192Z] EndDate=end_date, +[2024-03-14T18:26:34.192Z] RunName=run_name, +[2024-03-14T18:26:34.192Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. +[2024-03-14T18:26:34.192Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. +[2024-03-14T18:26:34.192Z] ) +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] Traceback: +[2024-03-14T18:26:34.192Z] +[2024-03-14T18:26:34.192Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.192Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.192Z] Cell In[1], line 5 +[2024-03-14T18:26:34.192Z]  1 # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-03-14T18:26:34.193Z]  2 # populate the fields for the HRU. +[2024-03-14T18:26:34.193Z]  3 hru = {} +[2024-03-14T18:26:34.193Z]  4 hru = dict( +[2024-03-14T18:26:34.193Z] ----> 5 area=all_properties["area"], +[2024-03-14T18:26:34.193Z]  6 elevation=all_properties["elevation"], +[2024-03-14T18:26:34.193Z]  7 latitude=all_properties["latitude"], +[2024-03-14T18:26:34.193Z]  8 longitude=all_properties["longitude"], +[2024-03-14T18:26:34.193Z]  9 hru_type="land", +[2024-03-14T18:26:34.193Z]  10 ) +[2024-03-14T18:26:34.193Z]  12 # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-03-14T18:26:34.193Z]  13 # will simply execute the model which has been pre-configured to run on this period. +[2024-03-14T18:26:34.193Z]  14 start_date = dt.datetime(1981, 1, 1) +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] NameError: name 'all_properties' is not defined +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ +[2024-03-14T18:26:34.193Z] Notebook cell execution failed +[2024-03-14T18:26:34.193Z] Cell 16: Cell execution caused an exception +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] Input: +[2024-03-14T18:26:34.193Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, +[2024-03-14T18:26:34.193Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. +[2024-03-14T18:26:34.193Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) +[2024-03-14T18:26:34.193Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. +[2024-03-14T18:26:34.193Z] random_seed = 42 +[2024-03-14T18:26:34.193Z] np.random.seed(random_seed) +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] # Build the optimizer object +[2024-03-14T18:26:34.193Z] spot_setup = SpotSetup( +[2024-03-14T18:26:34.193Z] config=model_config, +[2024-03-14T18:26:34.193Z] low=low, +[2024-03-14T18:26:34.193Z] high=high, +[2024-03-14T18:26:34.193Z] ) +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-14T18:26:34.193Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-14T18:26:34.193Z] max_iterations = 200 +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer +[2024-03-14T18:26:34.193Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most +[2024-03-14T18:26:34.193Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation +[2024-03-14T18:26:34.193Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small +[2024-03-14T18:26:34.193Z] # evaluation budgets. For more details on DDS, see: +[2024-03-14T18:26:34.193Z] # +[2024-03-14T18:26:34.193Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water +[2024-03-14T18:26:34.193Z] # Resources Research, 43(1) +[2024-03-14T18:26:34.193Z] sampler = spotpy.algorithms.dds( +[2024-03-14T18:26:34.193Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False +[2024-03-14T18:26:34.193Z] ) +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and +[2024-03-14T18:26:34.193Z] # the best overall value from all trials is returned. +[2024-03-14T18:26:34.193Z] sampler.sample(max_iterations, trials=1) +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] # Get the model diagnostics +[2024-03-14T18:26:34.193Z] diag = spot_setup.diagnostics +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] # Get all the values of each iteration +[2024-03-14T18:26:34.193Z] results = sampler.getdata() +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] # Get the raw resutlts directly in an array +[2024-03-14T18:26:34.193Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( +[2024-03-14T18:26:34.193Z] results +[2024-03-14T18:26:34.193Z] ) # Want to get the MAX NSE (change for min for RMSE) +[2024-03-14T18:26:34.193Z] best_model_run = list( +[2024-03-14T18:26:34.193Z] results[bestindex][0] +[2024-03-14T18:26:34.193Z] ) # Get the parameter set returning the best NSE +[2024-03-14T18:26:34.193Z] optimized_parameters = best_model_run[ +[2024-03-14T18:26:34.193Z] 1:-1 +[2024-03-14T18:26:34.193Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] # Display the parameter set ready to use in a future run: +[2024-03-14T18:26:34.193Z] print(optimized_parameters) +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] Traceback: +[2024-03-14T18:26:34.193Z] +[2024-03-14T18:26:34.193Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.193Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.193Z] Cell In[1], line 12 +[2024-03-14T18:26:34.193Z]  8 np.random.seed(random_seed) +[2024-03-14T18:26:34.193Z]  10 # Build the optimizer object +[2024-03-14T18:26:34.193Z]  11 spot_setup = SpotSetup( +[2024-03-14T18:26:34.193Z] ---> 12 config=model_config, +[2024-03-14T18:26:34.193Z]  13 low=low, +[2024-03-14T18:26:34.193Z]  14 high=high, +[2024-03-14T18:26:34.193Z]  15 ) +[2024-03-14T18:26:34.193Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-14T18:26:34.193Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-14T18:26:34.194Z]  19 max_iterations = 200 +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] NameError: name 'model_config' is not defined +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ +[2024-03-14T18:26:34.194Z] Notebook cell execution failed +[2024-03-14T18:26:34.194Z] Cell 17: Cell execution caused an exception +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] Input: +[2024-03-14T18:26:34.194Z] # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-14T18:26:34.194Z] model_validation = model_config.duplicate( +[2024-03-14T18:26:34.194Z] params=optimized_parameters, +[2024-03-14T18:26:34.194Z] StartDate=dt.datetime(1986, 1, 1), +[2024-03-14T18:26:34.194Z] EndDate=dt.datetime(1990, 12, 31), +[2024-03-14T18:26:34.194Z] SuppressOutput=False, +[2024-03-14T18:26:34.194Z] ) +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] sim_output = Emulator(config=model_validation).run() +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-14T18:26:34.194Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] # Plot the model output +[2024-03-14T18:26:34.194Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") +[2024-03-14T18:26:34.194Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-14T18:26:34.194Z] plt.legend() +[2024-03-14T18:26:34.194Z] plt.title("Validation period - NSE=" + str(NSE[0])) +[2024-03-14T18:26:34.194Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-14T18:26:34.194Z] plt.grid() +[2024-03-14T18:26:34.194Z] plt.show() +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] Traceback: +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.194Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.194Z] Cell In[1], line 2 +[2024-03-14T18:26:34.194Z]  1 # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-14T18:26:34.194Z] ----> 2 model_validation = model_config.duplicate( +[2024-03-14T18:26:34.194Z]  3 params=optimized_parameters, +[2024-03-14T18:26:34.194Z]  4 StartDate=dt.datetime(1986, 1, 1), +[2024-03-14T18:26:34.194Z]  5 EndDate=dt.datetime(1990, 12, 31), +[2024-03-14T18:26:34.194Z]  6 SuppressOutput=False, +[2024-03-14T18:26:34.194Z]  7 ) +[2024-03-14T18:26:34.194Z]  9 sim_output = Emulator(config=model_validation).run() +[2024-03-14T18:26:34.194Z]  11 # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] NameError: name 'model_config' is not defined +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ +[2024-03-14T18:26:34.194Z] Notebook cell execution failed +[2024-03-14T18:26:34.194Z] Cell 18: Cell execution caused an exception +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] Input: +[2024-03-14T18:26:34.194Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-14T18:26:34.194Z] gauge_ref = [ +[2024-03-14T18:26:34.194Z] rc.Gauge.from_nc( +[2024-03-14T18:26:34.194Z] tmp +[2024-03-14T18:26:34.194Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-14T18:26:34.194Z] data_type=data_type, +[2024-03-14T18:26:34.194Z] alt_names=alt_names, +[2024-03-14T18:26:34.194Z] data_kwds=data_kwds, +[2024-03-14T18:26:34.194Z] ) +[2024-03-14T18:26:34.194Z] ] +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-14T18:26:34.194Z] model_config_reference = model_validation.duplicate( +[2024-03-14T18:26:34.194Z] Gauge=gauge_ref, +[2024-03-14T18:26:34.194Z] StartDate=reference_start_day +[2024-03-14T18:26:34.194Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-14T18:26:34.194Z] EndDate=reference_end_day, +[2024-03-14T18:26:34.194Z] ) +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] # Run the model from the configuration and get the outputs. +[2024-03-14T18:26:34.194Z] ref_output = Emulator(config=model_config_reference).run() +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] # Plot the model output. Note that both simulations should have similar hydrological +[2024-03-14T18:26:34.194Z] # regime but day-to-day variability is not expected to match. +[2024-03-14T18:26:34.194Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") +[2024-03-14T18:26:34.194Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-14T18:26:34.194Z] plt.legend() +[2024-03-14T18:26:34.194Z] plt.title("Reference period") +[2024-03-14T18:26:34.194Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-14T18:26:34.194Z] plt.grid() +[2024-03-14T18:26:34.194Z] plt.show() +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] Traceback: +[2024-03-14T18:26:34.194Z] +[2024-03-14T18:26:34.194Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.194Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.194Z] Cell In[1], line 6 +[2024-03-14T18:26:34.194Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-14T18:26:34.194Z]  2 gauge_ref = [ +[2024-03-14T18:26:34.194Z]  3 rc.Gauge.from_nc( +[2024-03-14T18:26:34.194Z]  4 tmp +[2024-03-14T18:26:34.195Z]  5 / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-14T18:26:34.195Z] ----> 6 data_type=data_type, +[2024-03-14T18:26:34.195Z]  7 alt_names=alt_names, +[2024-03-14T18:26:34.195Z]  8 data_kwds=data_kwds, +[2024-03-14T18:26:34.195Z]  9 ) +[2024-03-14T18:26:34.195Z]  10 ] +[2024-03-14T18:26:34.195Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-14T18:26:34.195Z]  13 model_config_reference = model_validation.duplicate( +[2024-03-14T18:26:34.195Z]  14 Gauge=gauge_ref, +[2024-03-14T18:26:34.195Z]  15 StartDate=reference_start_day +[2024-03-14T18:26:34.195Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-14T18:26:34.195Z]  17 EndDate=reference_end_day, +[2024-03-14T18:26:34.195Z]  18 ) +[2024-03-14T18:26:34.195Z] +[2024-03-14T18:26:34.195Z] NameError: name 'data_type' is not defined +[2024-03-14T18:26:34.195Z] +[2024-03-14T18:26:34.195Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ +[2024-03-14T18:26:34.195Z] Notebook cell execution failed +[2024-03-14T18:26:34.195Z] Cell 19: Cell execution caused an exception +[2024-03-14T18:26:34.195Z] +[2024-03-14T18:26:34.195Z] Input: +[2024-03-14T18:26:34.195Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-14T18:26:34.195Z] gauge_fut = [ +[2024-03-14T18:26:34.195Z] rc.Gauge.from_nc( +[2024-03-14T18:26:34.195Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-14T18:26:34.195Z] data_type=data_type, +[2024-03-14T18:26:34.195Z] alt_names=alt_names, +[2024-03-14T18:26:34.195Z] data_kwds=data_kwds, +[2024-03-14T18:26:34.195Z] ) +[2024-03-14T18:26:34.195Z] ] +[2024-03-14T18:26:34.195Z] +[2024-03-14T18:26:34.195Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-14T18:26:34.195Z] model_config_future = model_validation.duplicate( +[2024-03-14T18:26:34.195Z] Gauge=gauge_fut, +[2024-03-14T18:26:34.195Z] StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-14T18:26:34.195Z] EndDate=future_end_day, +[2024-03-14T18:26:34.195Z] ObservationData=None, # There are no observations for the future period. +[2024-03-14T18:26:34.195Z] ) +[2024-03-14T18:26:34.195Z] +[2024-03-14T18:26:34.195Z] # Run the model and get the outputs and hydrographs. +[2024-03-14T18:26:34.195Z] fut_output = Emulator(config=model_config_future).run() +[2024-03-14T18:26:34.195Z] +[2024-03-14T18:26:34.195Z] # Plot the model output +[2024-03-14T18:26:34.195Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") +[2024-03-14T18:26:34.195Z] plt.legend() +[2024-03-14T18:26:34.195Z] plt.title("Future period") +[2024-03-14T18:26:34.195Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-14T18:26:34.195Z] plt.grid() +[2024-03-14T18:26:34.196Z] plt.show() +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] Traceback: +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.196Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.196Z] Cell In[1], line 5 +[2024-03-14T18:26:34.196Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-14T18:26:34.196Z]  2 gauge_fut = [ +[2024-03-14T18:26:34.196Z]  3 rc.Gauge.from_nc( +[2024-03-14T18:26:34.196Z]  4 tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-14T18:26:34.196Z] ----> 5 data_type=data_type, +[2024-03-14T18:26:34.196Z]  6 alt_names=alt_names, +[2024-03-14T18:26:34.196Z]  7 data_kwds=data_kwds, +[2024-03-14T18:26:34.196Z]  8 ) +[2024-03-14T18:26:34.196Z]  9 ] +[2024-03-14T18:26:34.196Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-14T18:26:34.196Z]  12 model_config_future = model_validation.duplicate( +[2024-03-14T18:26:34.196Z]  13 Gauge=gauge_fut, +[2024-03-14T18:26:34.196Z]  14 StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-14T18:26:34.196Z]  15 EndDate=future_end_day, +[2024-03-14T18:26:34.196Z]  16 ObservationData=None, # There are no observations for the future period. +[2024-03-14T18:26:34.196Z]  17 ) +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] NameError: name 'data_type' is not defined +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ +[2024-03-14T18:26:34.196Z] Notebook cell execution failed +[2024-03-14T18:26:34.196Z] Cell 20: Cell execution caused an exception +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] Input: +[2024-03-14T18:26:34.196Z] # Extract the mean annual hydrograph for each simulation. +[2024-03-14T18:26:34.196Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-14T18:26:34.196Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-14T18:26:34.196Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-14T18:26:34.196Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] # Plot the model output +[2024-03-14T18:26:34.196Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") +[2024-03-14T18:26:34.196Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") +[2024-03-14T18:26:34.196Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") +[2024-03-14T18:26:34.196Z] future_flows.plot(color="red", label="Future", x="dayofyear") +[2024-03-14T18:26:34.196Z] plt.legend() +[2024-03-14T18:26:34.196Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-14T18:26:34.196Z] plt.xlabel("Day of year") +[2024-03-14T18:26:34.196Z] plt.xlim([0, 365]) +[2024-03-14T18:26:34.196Z] plt.title("Comparison of mean annual hydrographs") +[2024-03-14T18:26:34.196Z] plt.grid() +[2024-03-14T18:26:34.196Z] plt.show() +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] Traceback: +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] --------------------------------------------------------------------------- +[2024-03-14T18:26:34.196Z] NameError Traceback (most recent call last) +[2024-03-14T18:26:34.196Z] Cell In[1], line 2 +[2024-03-14T18:26:34.196Z]  1 # Extract the mean annual hydrograph for each simulation. +[2024-03-14T18:26:34.196Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-14T18:26:34.196Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-14T18:26:34.196Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] NameError: name 'ref_output' is not defined +[2024-03-14T18:26:34.196Z] +[2024-03-14T18:26:34.196Z] =========================== short test summary info ============================ +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 +[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 +[2024-03-14T18:26:34.197Z] ================== 33 failed, 209 passed in 824.70s (0:13:44) ================== +[2024-03-14T18:26:34.459Z] + EXIT_CODE=1 +[2024-03-14T18:26:34.459Z] + tr [:upper:] [:lower:] +[2024-03-14T18:26:34.459Z] + echo true +[2024-03-14T18:26:34.459Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-14T18:26:34.459Z] + [ xtrue = xtrue ] +[2024-03-14T18:26:34.459Z] + mkdir -p buildout +[2024-03-14T18:26:34.459Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-14T18:26:34.459Z] + filename=Region_selection.ipynb +[2024-03-14T18:26:34.459Z] + echo Region_selection.ipynb +[2024-03-14T18:26:34.459Z] + sed s/.ipynb$// +[2024-03-14T18:26:34.459Z] + filename=Region_selection +[2024-03-14T18:26:34.459Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-03-14T18:26:34.459Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-14T18:26:36.352Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-03-14T18:26:46.328Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb +[2024-03-14T18:26:46.589Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-14T18:26:46.589Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-03-14T18:26:46.589Z] + echo Subset_climate_data_over_watershed.ipynb+ +[2024-03-14T18:26:46.589Z] sed s/.ipynb$// +[2024-03-14T18:26:46.589Z] + filename=Subset_climate_data_over_watershed +[2024-03-14T18:26:46.589Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-03-14T18:26:46.589Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-14T18:26:48.504Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-03-14T18:27:03.408Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-03-14T18:27:03.408Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-14T18:27:03.408Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-03-14T18:27:03.408Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-03-14T18:27:03.408Z] + sed s/.ipynb$// +[2024-03-14T18:27:03.408Z] + filename=00_Introduction_to_JupyterLab +[2024-03-14T18:27:03.408Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-03-14T18:27:03.408Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-14T18:27:04.895Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-03-14T18:27:07.430Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-03-14T18:27:07.430Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-14T18:27:07.430Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-03-14T18:27:07.430Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-03-14T18:27:07.430Z] + sed s/.ipynb$// +[2024-03-14T18:27:07.430Z] + filename=01_Getting_watershed_boundaries +[2024-03-14T18:27:07.430Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-03-14T18:27:07.430Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-14T18:27:09.333Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-03-14T18:27:19.339Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-03-14T18:27:19.598Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-14T18:27:19.598Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-03-14T18:27:19.598Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-03-14T18:27:19.598Z] + sed s/.ipynb$// +[2024-03-14T18:27:19.598Z] + filename=02_Extract_geographical_watershed_properties +[2024-03-14T18:27:19.598Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-03-14T18:27:19.598Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-14T18:27:20.973Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-03-14T18:27:39.132Z] [NbConvertApp] Writing 95487 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-03-14T18:27:39.132Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-14T18:27:39.132Z] + filename=03_Extracting_forcing_data.ipynb +[2024-03-14T18:27:39.132Z] + echo 03_Extracting_forcing_data.ipynb +[2024-03-14T18:27:39.132Z] + sed s/.ipynb$// +[2024-03-14T18:27:39.132Z] + filename=03_Extracting_forcing_data +[2024-03-14T18:27:39.132Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-03-14T18:27:39.132Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-14T18:27:39.132Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-03-14T18:29:15.610Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-03-14T18:29:15.610Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-14T18:29:15.610Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-03-14T18:29:15.610Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-03-14T18:29:15.610Z] + sed s/.ipynb$// +[2024-03-14T18:29:15.610Z] + filename=04_Emulating_hydrological_models +[2024-03-14T18:29:15.611Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-03-14T18:29:15.611Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-14T18:29:16.990Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-03-14T18:29:31.990Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-03-14T18:29:31.990Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-14T18:29:31.990Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-03-14T18:29:31.990Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-03-14T18:29:31.990Z] + sed s/.ipynb$// +[2024-03-14T18:29:31.990Z] + filename=05_Advanced_RavenPy_configuration +[2024-03-14T18:29:31.990Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-03-14T18:29:31.990Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-14T18:29:32.252Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-03-14T18:29:50.355Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-03-14T18:29:50.355Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-14T18:29:50.355Z] + filename=06_Raven_calibration.ipynb +[2024-03-14T18:29:50.355Z] + echo 06_Raven_calibration.ipynb +[2024-03-14T18:29:50.355Z] + sed s/.ipynb$// +[2024-03-14T18:29:50.355Z] + filename=06_Raven_calibration +[2024-03-14T18:29:50.355Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-03-14T18:29:50.355Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-14T18:29:51.302Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-03-14T18:30:03.536Z] [NbConvertApp] Writing 24091 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-03-14T18:30:03.536Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-14T18:30:03.536Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-03-14T18:30:03.536Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-03-14T18:30:03.536Z] + sed s/.ipynb$// +[2024-03-14T18:30:03.536Z] + filename=07_Making_and_using_hotstart_files +[2024-03-14T18:30:03.536Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-03-14T18:30:03.536Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-14T18:30:03.536Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-03-14T18:30:15.752Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-03-14T18:30:15.752Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-14T18:30:15.752Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-14T18:30:15.752Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-14T18:30:15.752Z] + sed s/.ipynb$// +[2024-03-14T18:30:15.752Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-03-14T18:30:15.752Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-03-14T18:30:15.753Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-14T18:30:17.143Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-03-14T18:34:08.675Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-03-14T18:34:08.675Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-14T18:34:08.675Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-14T18:34:08.675Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-14T18:34:08.675Z] + sed s/.ipynb$// +[2024-03-14T18:34:08.675Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-03-14T18:34:08.675Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-03-14T18:34:08.675Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-14T18:34:08.675Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-03-14T18:34:20.895Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-03-14T18:34:20.895Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-14T18:34:20.895Z] + filename=10_Data_assimilation.ipynb +[2024-03-14T18:34:20.895Z] + + echo 10_Data_assimilation.ipynb +[2024-03-14T18:34:20.895Z] sed s/.ipynb$// +[2024-03-14T18:34:20.895Z] + filename=10_Data_assimilation +[2024-03-14T18:34:20.895Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-03-14T18:34:20.895Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-14T18:34:21.466Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-03-14T18:35:17.721Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-03-14T18:35:17.721Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-14T18:35:17.721Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-03-14T18:35:17.721Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-03-14T18:35:17.721Z] + sed s/.ipynb$// +[2024-03-14T18:35:17.721Z] + filename=11_Climatological_ESP_forecasting +[2024-03-14T18:35:17.721Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-03-14T18:35:17.721Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-14T18:35:17.722Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-03-14T18:35:56.511Z] [NbConvertApp] Writing 556782 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-03-14T18:35:56.511Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-14T18:35:56.511Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-03-14T18:35:56.511Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-03-14T18:35:56.511Z] + sed s/.ipynb$// +[2024-03-14T18:35:56.511Z] + filename=12_Performing_hindcasting_experiments +[2024-03-14T18:35:56.511Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-03-14T18:35:56.511Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-14T18:35:56.511Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-03-14T18:36:14.634Z] [NbConvertApp] Writing 298489 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-03-14T18:36:14.634Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-14T18:36:14.634Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-03-14T18:36:14.634Z] + echo+ Assess_probabilistic_flood_risk.ipynb +[2024-03-14T18:36:14.634Z] sed s/.ipynb$// +[2024-03-14T18:36:14.634Z] + filename=Assess_probabilistic_flood_risk +[2024-03-14T18:36:14.634Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-03-14T18:36:14.634Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-14T18:36:14.634Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-03-14T18:36:41.218Z] [NbConvertApp] Writing 549338 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-03-14T18:36:41.218Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-14T18:36:41.218Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-14T18:36:41.218Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-14T18:36:41.218Z] + sed s/.ipynb$// +[2024-03-14T18:36:41.218Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-03-14T18:36:41.218Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-03-14T18:36:41.218Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-14T18:36:41.218Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-03-14T18:37:13.301Z] [NbConvertApp] Writing 748540 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-03-14T18:37:13.301Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-14T18:37:13.301Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-03-14T18:37:13.301Z] + echo Distributed_hydrological_modelling.ipynb +[2024-03-14T18:37:13.302Z] + sed s/.ipynb$// +[2024-03-14T18:37:13.302Z] + filename=Distributed_hydrological_modelling +[2024-03-14T18:37:13.302Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-03-14T18:37:13.302Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-14T18:37:14.674Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-03-14T18:37:46.844Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-03-14T18:37:46.844Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-14T18:37:46.844Z] + filename=HydroShare_integration.ipynb +[2024-03-14T18:37:46.844Z] + sed s/.ipynb$// +[2024-03-14T18:37:46.844Z] + echo HydroShare_integration.ipynb +[2024-03-14T18:37:46.844Z] + filename=HydroShare_integration +[2024-03-14T18:37:46.844Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-03-14T18:37:46.844Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-14T18:37:47.104Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-03-14T18:37:51.294Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb +[2024-03-14T18:37:51.557Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-14T18:37:51.557Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-03-14T18:37:51.557Z] + sed s/.ipynb$// +[2024-03-14T18:37:51.557Z] + echo Hydrological_realtime_forecasting.ipynb +[2024-03-14T18:37:51.557Z] + filename=Hydrological_realtime_forecasting +[2024-03-14T18:37:51.557Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-03-14T18:37:51.558Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-14T18:37:53.468Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-03-14T18:38:15.405Z] [NbConvertApp] Writing 279375 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-03-14T18:38:15.405Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-14T18:38:15.405Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-03-14T18:38:15.405Z] + echo Managing_Jupyter_Environments.ipynb +[2024-03-14T18:38:15.405Z] + sed s/.ipynb$// +[2024-03-14T18:38:15.405Z] + filename=Managing_Jupyter_Environments +[2024-03-14T18:38:15.405Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-03-14T18:38:15.405Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-14T18:38:16.790Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-03-14T18:38:55.536Z] [NbConvertApp] Writing 97691 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-03-14T18:38:55.536Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-14T18:38:55.536Z] + filename=Perform_Regionalization.ipynb +[2024-03-14T18:38:55.536Z] + echo Perform_Regionalization.ipynb +[2024-03-14T18:38:55.537Z] + sed s/.ipynb$// +[2024-03-14T18:38:55.537Z] + filename=Perform_Regionalization +[2024-03-14T18:38:55.537Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-03-14T18:38:55.537Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-14T18:38:55.537Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-03-14T18:39:22.164Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-03-14T18:39:22.164Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-14T18:39:22.165Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-14T18:39:22.165Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-14T18:39:22.165Z] + sed s/.ipynb$// +[2024-03-14T18:39:22.165Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-03-14T18:39:22.165Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-03-14T18:39:22.165Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-14T18:39:22.165Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-03-14T18:39:40.270Z] [NbConvertApp] Writing 113738 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-03-14T18:39:40.270Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-14T18:39:40.270Z] + filename=Sensitivity_analysis.ipynb +[2024-03-14T18:39:40.270Z] + sed s/.ipynb$// +[2024-03-14T18:39:40.270Z] + echo Sensitivity_analysis.ipynb +[2024-03-14T18:39:40.270Z] + filename=Sensitivity_analysis +[2024-03-14T18:39:40.270Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-03-14T18:39:40.271Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-14T18:39:40.271Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-03-14T18:39:58.377Z] [NbConvertApp] Writing 35367 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-03-14T18:39:58.377Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-14T18:39:58.377Z] + filename=time_series_analysis.ipynb +[2024-03-14T18:39:58.377Z] + + echo time_series_analysis.ipynb +[2024-03-14T18:39:58.377Z] sed s/.ipynb$// +[2024-03-14T18:39:58.377Z] + filename=time_series_analysis +[2024-03-14T18:39:58.377Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-03-14T18:39:58.377Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-14T18:39:59.320Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-03-14T18:40:09.330Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb +[2024-03-14T18:40:09.592Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-14T18:40:09.592Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-14T18:40:09.592Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-14T18:40:09.592Z] + sed s/.ipynb$// +[2024-03-14T18:40:09.592Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-03-14T18:40:09.592Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-03-14T18:40:09.592Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-14T18:40:11.503Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-03-14T18:41:33.007Z] [NbConvertApp] Writing 131058 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-03-14T18:41:33.007Z] + exit 1 +[2024-03-14T18:41:33.007Z] + EXIT_CODE=1 +[2024-03-14T18:41:33.007Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-14T18:41:33.007Z] + mkdir -p buildout/env-dump +[2024-03-14T18:41:33.007Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-14T18:41:33.007Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-14T18:41:33.007Z] + conda env export -n birdy +[2024-03-14T18:41:43.001Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-14T18:41:43.002Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-14T18:41:43.002Z] + conda list -n birdy --explicit +[2024-03-14T18:41:52.991Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-14T18:41:52.991Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-14T18:41:52.991Z] + pip freeze +[2024-03-14T18:41:53.254Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -17875,41 +2287,41 @@ $ docker top b411d488c542a4bdbdc744f27a68a543433da316133264e74a522e46b73d9a9b -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-07T16:51:25.341Z] Archiving artifacts -[2024-03-07T16:51:25.367Z] Recording fingerprints +[2024-03-14T18:41:55.206Z] Archiving artifacts +[2024-03-14T18:41:55.401Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:25.395Z] Archiving artifacts -[2024-03-07T16:51:27.502Z] Recording fingerprints +[2024-03-14T18:41:55.612Z] Archiving artifacts +[2024-03-14T18:41:57.929Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:28.361Z] Archiving artifacts -[2024-03-07T16:51:28.679Z] Recording fingerprints +[2024-03-14T18:41:59.090Z] Archiving artifacts +[2024-03-14T18:41:59.106Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:29.190Z] Archiving artifacts -[2024-03-07T16:51:29.331Z] Recording fingerprints +[2024-03-14T18:41:59.141Z] Archiving artifacts +[2024-03-14T18:41:59.160Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:29.717Z] Archiving artifacts -[2024-03-07T16:51:29.744Z] Recording fingerprints +[2024-03-14T18:41:59.194Z] Archiving artifacts +[2024-03-14T18:41:59.213Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:30.138Z] Archiving artifacts -[2024-03-07T16:51:30.192Z] Recording fingerprints +[2024-03-14T18:41:59.271Z] Archiving artifacts +[2024-03-14T18:41:59.310Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:31.420Z] Archiving artifacts -[2024-03-07T16:51:31.432Z] Recording fingerprints +[2024-03-14T18:42:00.029Z] Archiving artifacts +[2024-03-14T18:42:00.047Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:31.719Z] Archiving artifacts -[2024-03-07T16:51:31.764Z] Recording fingerprints +[2024-03-14T18:42:00.134Z] Archiving artifacts +[2024-03-14T18:42:00.172Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:32.246Z] Archiving artifacts -[2024-03-07T16:51:32.629Z] Recording fingerprints +[2024-03-14T18:42:00.998Z] Archiving artifacts +[2024-03-14T18:42:01.376Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:32.884Z] Archiving artifacts -[2024-03-07T16:51:33.247Z] Recording fingerprints +[2024-03-14T18:42:01.491Z] Archiving artifacts +[2024-03-14T18:42:01.895Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-07T16:51:36.794Z] Archiving artifacts -[2024-03-07T16:51:36.879Z] Recording fingerprints +[2024-03-14T18:42:03.038Z] Archiving artifacts +[2024-03-14T18:42:03.056Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-07T16:51:37.578Z] Sending e-mails to: vu.long@ouranos.ca +[2024-03-14T18:42:03.131Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -17919,8 +2331,8 @@ $ docker top b411d488c542a4bdbdc744f27a68a543433da316133264e74a522e46b73d9a9b -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 b411d488c542a4bdbdc744f27a68a543433da316133264e74a522e46b73d9a9b -$ docker rm -f b411d488c542a4bdbdc744f27a68a543433da316133264e74a522e46b73d9a9b +$ docker stop --time=1 79c3fe0822c47e861fa6c0d57168d64385acf39f8343c4eb14af36bde8510ee6 +$ docker rm -f 79c3fe0822c47e861fa6c0d57168d64385acf39f8343c4eb14af36bde8510ee6 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From a73fc6cb7c11a2edffb801a73eca6ea90a0272c4 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 16 Mar 2024 10:49:09 -0400 Subject: [PATCH 039/104] docker: replace jupyter-dash with dash since the previous have warnings, keep plotly Previous jupyter-dash warning "Plugin 'jupyterlab_dash' is already registered." Plotly will be pulled as indirect dependency. Related issues and discussions: https://github.com/plotly/jupyter-dash/issues/49#issuecomment-1992606506 This entire package is obsolete, its functionality has been integrated into the main Dash package. If anyone is interested in helping modernize JupyterDash packaging the Dash repo is the place to continue this discussion. https://github.com/Ouranosinc/pavics-jupyter-env-issues/issues/5#issuecomment-1994587587 @Zeitsperre As far as I can tell, we abandoned Dash in favour of Holoviews. Fell free to drop it. https://github.com/Ouranosinc/pavics-jupyter-env-issues/issues/5#issuecomment-1994689326 @tlogan2000 Dash/jupyter dash can be dropped I think but `plotly` itself can be used as a backend in Panel/Hvplot/Holoviews ecosystem so would be good to keep. --- docker/environment.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/environment.yml b/docker/environment.yml index dd78ccf..d9291d7 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -4,7 +4,7 @@ channels: - conda-forge - cdat - bokeh - - plotly # for jupyter-dash + # - plotly # for jupyter-dash # - pyston - pyviz/label/dev # for jupyter-panel-proxy, panel - defaults @@ -84,6 +84,8 @@ dependencies: # https://github.com/bird-house/birdhouse-deploy/pull/63#issuecomment-668270608 # pinning hvplot did not solve the problem with violin plot. - hvplot + # https://anaconda.org/conda-forge/dash + - dash >= 2.16.1 # https://streamlit.io/ # https://anaconda.org/conda-forge/streamlit - streamlit @@ -181,7 +183,6 @@ dependencies: - nbresuse # needed by jupyterlab-system-monitor # xeus-python: back-end kernel implementing the Jupyter Debug Protocol - xeus-python - - jupyter-dash # https:://github.com/jupyterhub/jupyter-server-proxy - jupyter-server-proxy # https://github.com/dask/dask-labextension From 6f2a98479138b0d548156f5fd83f3cda8acdeabb Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 16 Mar 2024 10:57:38 -0400 Subject: [PATCH 040/104] docker: ensure latest birdy 0.8.5 for RavenPy nb fixes To pull this change https://github.com/bird-house/birdy/pull/240. To fix this error https://github.com/bird-house/birdy/issues/239: ``` RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 AttributeError: module 'xarray' has no attribute 'open_rasterio' ``` --- docker/environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/environment.yml b/docker/environment.yml index d9291d7..15c527b 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -40,7 +40,7 @@ dependencies: - numpy # TODO: unpin cf_xarray due to https://github.com/xarray-contrib/cf-xarray/issues/442 - cf_xarray != 0.8.1 - - birdy + - birdy >= 0.8.5 # - owslib>=0.23.0 # from ravenpy # - netcdf4 # from ravenpy # TODO: remove libnetcdf PIN because https://github.com/Ouranosinc/PAVICS-landing/issues/66 From 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 16 Mar 2024 12:29:54 -0400 Subject: [PATCH 041/104] release: update to use image pavics/workflow-tests:py310-240316 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 56344d9..c37cfc3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-240312" + image "pavics/workflow-tests:py310-240316" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 409f699..ddba8d5 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-240312 +FROM pavics/workflow-tests:py310-240316 USER root diff --git a/launchcontainer b/launchcontainer index 61ee137..262081e 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240312" + DOCKER_IMAGE="pavics/workflow-tests:py310-240316" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 7bbb1d8..b23765a 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240312" + DOCKER_IMAGE="pavics/workflow-tests:py310-240316" fi if [ -z "$CONTAINER_NAME" ]; then From 47ceb1ffbe09a114dcd9dee327e5449029659376 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 16 Mar 2024 14:20:23 -0400 Subject: [PATCH 042/104] docker: py310-240316 build log --- docker/saved_buildout/docker-buildlogs.txt | 11791 +++++++++---------- 1 file changed, 5825 insertions(+), 5966 deletions(-) diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index ae081a0..02964c7 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,5966 +1,5825 @@ -2024-03-12T19:58:32Z Building in Docker Cloud's infrastructure... -2024-03-12T19:58:33Z Cloning into '.'... -2024-03-12T19:58:33Z Warning: Permanently added the RSA host key for IP address '140.82.113.4' to the list of known hosts. -2024-03-12T19:58:35Z Switched to a new branch 'docker-py310-240312' -2024-03-12T19:58:35Z KernelVersion: 5.4.0-1068-aws -2024-03-12T19:58:35Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-03-12T19:58:35Z Arch: amd64 -2024-03-12T19:58:35Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-03-12T19:58:35Z ApiVersion: 1.41 -2024-03-12T19:58:35Z Platform: {u'Name': u'Docker Engine - Community'} -2024-03-12T19:58:35Z Version: 20.10.15 -2024-03-12T19:58:35Z MinAPIVersion: 1.12 -2024-03-12T19:58:35Z GitCommit: 4433bf6 -2024-03-12T19:58:35Z Os: linux -2024-03-12T19:58:35Z GoVersion: go1.17.9 -2024-03-12T19:58:35Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240312... -2024-03-12T19:58:41Z #1 [internal] load build definition from Dockerfile -2024-03-12T19:58:41Z #1 transferring dockerfile: 6.98kB done -2024-03-12T19:58:41Z #1 DONE 0.1s -2024-03-12T19:58:41Z -2024-03-12T19:58:41Z #2 [internal] load .dockerignore -2024-03-12T19:58:41Z #2 transferring context: 2B done -2024-03-12T19:58:41Z #2 DONE 0.0s -2024-03-12T19:58:41Z -2024-03-12T19:58:41Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-03-12T19:58:41Z #3 ... -2024-03-12T19:58:41Z -2024-03-12T19:58:41Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-03-12T19:58:41Z #4 DONE 0.0s -2024-03-12T19:58:41Z -2024-03-12T19:58:41Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-03-12T19:58:42Z #3 DONE 0.9s -2024-03-12T19:58:42Z -2024-03-12T19:58:42Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-03-12T19:58:42Z #5 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done -2024-03-12T19:58:42Z #5 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done -2024-03-12T19:58:42Z #5 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done -2024-03-12T19:58:42Z #5 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done -2024-03-12T19:58:42Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 0B / 31.42MB 0.1s -2024-03-12T19:58:42Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s -2024-03-12T19:58:42Z #5 ... -2024-03-12T19:58:42Z -2024-03-12T19:58:42Z #6 [internal] load build context -2024-03-12T19:58:42Z #6 transferring context: 9.52kB 0.0s done -2024-03-12T19:58:42Z #6 DONE 0.1s -2024-03-12T19:58:42Z -2024-03-12T19:58:42Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-03-12T19:58:42Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.24MB / 31.42MB 0.2s -2024-03-12T19:58:42Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.03MB / 50.08MB 0.2s -2024-03-12T19:58:42Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.2s -2024-03-12T19:58:42Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 14.68MB / 31.42MB 0.5s -2024-03-12T19:58:42Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 9.44MB / 50.08MB 0.5s -2024-03-12T19:58:42Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 8.50MB / 147.31MB 0.5s -2024-03-12T19:58:42Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 16.78MB / 31.42MB 0.6s -2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 18.87MB / 31.42MB 0.7s -2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 13.25MB / 50.08MB 0.7s -2024-03-12T19:58:43Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 17.83MB / 147.31MB 0.7s -2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 20.97MB / 31.42MB 0.8s -2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 25.17MB / 31.42MB 1.0s -2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 19.92MB / 50.08MB 1.0s -2024-03-12T19:58:43Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 31.46MB / 147.31MB 1.0s -2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.2s -2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 26.21MB / 50.08MB 1.2s -2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 30.41MB / 50.08MB 1.3s -2024-03-12T19:58:43Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 42.99MB / 147.31MB 1.3s -2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 34.60MB / 50.08MB 1.4s -2024-03-12T19:58:43Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.5s done -2024-03-12T19:58:43Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 37.75MB / 50.08MB 1.5s -2024-03-12T19:58:44Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 49.28MB / 50.08MB 1.7s -2024-03-12T19:58:44Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 54.53MB / 147.31MB 1.7s -2024-03-12T19:58:44Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.9s done -2024-03-12T19:58:44Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 -2024-03-12T19:58:44Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 66.06MB / 147.31MB 2.3s -2024-03-12T19:58:45Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 74.45MB / 147.31MB 2.7s -2024-03-12T19:58:45Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 84.93MB / 147.31MB 2.9s -2024-03-12T19:58:45Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 96.47MB / 147.31MB 3.1s -2024-03-12T19:58:45Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 104.86MB / 147.31MB 3.5s -2024-03-12T19:58:46Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 113.25MB / 147.31MB 3.9s -2024-03-12T19:58:46Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 122.68MB / 147.31MB 4.1s -2024-03-12T19:58:46Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 133.17MB / 147.31MB 4.6s -2024-03-12T19:58:47Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 146.80MB / 147.31MB 5.1s -2024-03-12T19:58:48Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 6.6s done -2024-03-12T19:58:49Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.2s -2024-03-12T19:58:49Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.6s done -2024-03-12T19:58:50Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0.1s -2024-03-12T19:58:55Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.2s -2024-03-12T19:58:57Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.9s done -2024-03-12T19:58:57Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c -2024-03-12T19:59:02Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.0s -2024-03-12T19:59:07Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.0s -2024-03-12T19:59:11Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.1s done -2024-03-12T19:59:11Z #5 DONE 29.7s -2024-03-12T19:59:11Z -2024-03-12T19:59:11Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-03-12T19:59:13Z #7 1.554 Channels: -2024-03-12T19:59:13Z #7 1.554 - defaults -2024-03-12T19:59:13Z #7 1.554 Platform: linux-64 -2024-03-12T19:59:17Z #7 1.554 Collecting package metadata (repodata.json): ...working... done -2024-03-12T19:59:18Z #7 5.832 Solving environment: ...working... done -2024-03-12T19:59:18Z #7 6.129 -2024-03-12T19:59:18Z #7 6.129 # All requested packages already installed. -2024-03-12T19:59:18Z #7 6.129 -2024-03-12T19:59:19Z #7 7.337 Channels: -2024-03-12T19:59:19Z #7 7.337 - conda-forge -2024-03-12T19:59:19Z #7 7.337 - defaults -2024-03-12T19:59:19Z #7 7.337 Platform: linux-64 -2024-03-12T19:59:44Z #7 7.337 Collecting package metadata (repodata.json): ...working... done -2024-03-12T19:59:46Z #7 32.55 Solving environment: ...working... done -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 ## Package Plan ## -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 environment location: /opt/conda -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 added / updated specs: -2024-03-12T19:59:46Z #7 34.47 - mamba -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 The following packages will be downloaded: -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 package | build -2024-03-12T19:59:46Z #7 34.47 ---------------------------|----------------- -2024-03-12T19:59:46Z #7 34.47 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 ca-certificates-2024.2.2 | hbcca054_0 152 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 conda-24.1.2 | py311h38be061_0 1.2 MB conda-forge -2024-03-12T19:59:46Z #7 34.47 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-03-12T19:59:46Z #7 34.47 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 libmamba-1.5.7 | had39da4_0 1.6 MB conda-forge -2024-03-12T19:59:46Z #7 34.47 libmambapy-1.5.7 | py311hf2555c7_0 305 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge -2024-03-12T19:59:46Z #7 34.47 libxml2-2.12.5 | h232c23b_0 688 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 lzo-2.10 | h516909a_1000 314 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 mamba-1.5.7 | py311h3072747_0 65 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 openssl-3.2.1 | hd590300_0 2.7 MB conda-forge -2024-03-12T19:59:46Z #7 34.47 python_abi-3.11 | 2_cp311 5 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-03-12T19:59:46Z #7 34.47 ------------------------------------------------------------ -2024-03-12T19:59:46Z #7 34.47 Total: 25.3 MB -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 The following NEW packages will be INSTALLED: -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-03-12T19:59:46Z #7 34.47 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-03-12T19:59:46Z #7 34.47 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 -2024-03-12T19:59:46Z #7 34.47 mamba conda-forge/linux-64::mamba-1.5.7-py311h3072747_0 -2024-03-12T19:59:46Z #7 34.47 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 The following packages will be UPDATED: -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 ca-certificates pkgs/main::ca-certificates-2023.12.12~ --> conda-forge::ca-certificates-2024.2.2-hbcca054_0 -2024-03-12T19:59:46Z #7 34.47 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-03-12T19:59:46Z #7 34.47 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-03-12T19:59:46Z #7 34.47 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-03-12T19:59:46Z #7 34.47 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 -2024-03-12T19:59:46Z #7 34.47 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 -2024-03-12T19:59:46Z #7 34.47 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.7-had39da4_0 -2024-03-12T19:59:46Z #7 34.47 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.7-py311hf2555c7_0 -2024-03-12T19:59:46Z #7 34.47 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 -2024-03-12T19:59:46Z #7 34.47 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.5-h232c23b_0 -2024-03-12T19:59:46Z #7 34.47 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_0 -2024-03-12T19:59:46Z #7 34.47 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 The following packages will be SUPERSEDED by a higher-priority channel: -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-03-12T19:59:46Z #7 34.47 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-03-12T19:59:46Z #7 34.47 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-03-12T19:59:46Z #7 34.47 conda pkgs/main::conda-24.1.2-py311h06a4308~ --> conda-forge::conda-24.1.2-py311h38be061_0 -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 -2024-03-12T19:59:46Z #7 34.47 Proceed ([y]/n)? -2024-03-12T19:59:48Z #7 36.61 -2024-03-12T19:59:48Z #7 36.61 Downloading and Extracting Packages: ...working... done -2024-03-12T19:59:48Z #7 36.61 Preparing transaction: ...working... done -2024-03-12T19:59:49Z #7 36.72 Verifying transaction: ...working... done -2024-03-12T19:59:58Z #7 37.09 Executing transaction: ...working... done -2024-03-12T19:59:59Z #7 47.63 Will remove 21 (25.3 MB) tarball(s). -2024-03-12T19:59:59Z #7 47.63 Will remove 1 index cache(s). -2024-03-12T19:59:59Z #7 47.63 Will remove 3 (118 KB) package(s). -2024-03-12T19:59:59Z #7 47.63 There are no tempfile(s) to remove. -2024-03-12T19:59:59Z #7 47.63 There are no logfile(s) to remove. -2024-03-12T20:00:01Z #7 49.24 bin/micromamba -2024-03-12T20:00:03Z #7 DONE 51.7s -2024-03-12T20:00:03Z -2024-03-12T20:00:03Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-03-12T20:00:04Z #8 0.544 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-03-12T20:00:04Z #8 0.567 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-03-12T20:00:04Z #8 0.571 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-03-12T20:00:04Z #8 0.723 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-03-12T20:00:04Z #8 0.937 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [269 kB] -2024-03-12T20:00:05Z #8 1.464 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-03-12T20:00:06Z #8 2.738 Fetched 8564 kB in 2s (3877 kB/s) -2024-03-12T20:00:07Z #8 2.738 Reading package lists... -2024-03-12T20:00:08Z #8 3.726 Reading package lists... -2024-03-12T20:00:08Z #8 4.659 Building dependency tree... -2024-03-12T20:00:08Z #8 4.890 Reading state information... -2024-03-12T20:00:09Z #8 5.223 git is already the newest version (1:2.30.2-1+deb11u2). -2024-03-12T20:00:09Z #8 5.223 mercurial is already the newest version (5.6.1-4). -2024-03-12T20:00:09Z #8 5.223 The following additional packages will be installed: -2024-03-12T20:00:09Z #8 5.223 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-03-12T20:00:09Z #8 5.224 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-03-12T20:00:09Z #8 5.224 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-03-12T20:00:09Z #8 5.225 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-03-12T20:00:09Z #8 5.225 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-03-12T20:00:09Z #8 5.226 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-03-12T20:00:09Z #8 5.226 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-03-12T20:00:09Z #8 5.231 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-03-12T20:00:09Z #8 5.231 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-03-12T20:00:09Z #8 5.231 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-03-12T20:00:09Z #8 5.231 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-03-12T20:00:09Z #8 5.231 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-03-12T20:00:09Z #8 5.231 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-03-12T20:00:09Z #8 5.231 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-03-12T20:00:09Z #8 5.231 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-03-12T20:00:09Z #8 5.231 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-03-12T20:00:09Z #8 5.231 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-03-12T20:00:09Z #8 5.231 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-03-12T20:00:09Z #8 5.231 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-03-12T20:00:09Z #8 5.231 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-03-12T20:00:09Z #8 5.231 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-03-12T20:00:09Z #8 5.231 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-03-12T20:00:09Z #8 5.231 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-03-12T20:00:09Z #8 5.231 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-03-12T20:00:09Z #8 5.231 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-03-12T20:00:09Z #8 5.231 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-03-12T20:00:09Z #8 5.231 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-03-12T20:00:09Z #8 5.231 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-03-12T20:00:09Z #8 5.231 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-03-12T20:00:09Z #8 5.231 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-03-12T20:00:09Z #8 5.231 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-03-12T20:00:09Z #8 5.231 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-03-12T20:00:09Z #8 5.231 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-03-12T20:00:09Z #8 5.231 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-03-12T20:00:09Z #8 5.231 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-03-12T20:00:09Z #8 5.231 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-03-12T20:00:09Z #8 5.231 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-03-12T20:00:09Z #8 5.231 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv -2024-03-12T20:00:09Z #8 5.231 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data -2024-03-12T20:00:09Z #8 5.231 Suggested packages: -2024-03-12T20:00:09Z #8 5.231 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-03-12T20:00:09Z #8 5.231 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-03-12T20:00:09Z #8 5.231 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-03-12T20:00:09Z #8 5.231 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs -2024-03-12T20:00:09Z #8 5.231 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser -2024-03-12T20:00:09Z #8 5.231 opencl-icd ed diffutils-doc systemd-container policykit-1 zip -2024-03-12T20:00:09Z #8 5.231 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-03-12T20:00:09Z #8 5.231 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-03-12T20:00:09Z #8 5.231 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-03-12T20:00:10Z #8 6.854 The following NEW packages will be installed: -2024-03-12T20:00:10Z #8 6.854 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-03-12T20:00:10Z #8 6.855 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-03-12T20:00:10Z #8 6.855 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-03-12T20:00:10Z #8 6.856 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-03-12T20:00:10Z #8 6.856 glib-networking glib-networking-common glib-networking-services -2024-03-12T20:00:10Z #8 6.856 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-03-12T20:00:10Z #8 6.863 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-03-12T20:00:10Z #8 6.863 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-03-12T20:00:10Z #8 6.863 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-03-12T20:00:10Z #8 6.863 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-03-12T20:00:10Z #8 6.863 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-03-12T20:00:10Z #8 6.863 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-03-12T20:00:10Z #8 6.863 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-03-12T20:00:10Z #8 6.863 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-03-12T20:00:10Z #8 6.863 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-03-12T20:00:10Z #8 6.863 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-03-12T20:00:10Z #8 6.863 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-03-12T20:00:10Z #8 6.863 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-03-12T20:00:10Z #8 6.863 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-03-12T20:00:10Z #8 6.863 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-03-12T20:00:10Z #8 6.863 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-03-12T20:00:10Z #8 6.863 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-03-12T20:00:10Z #8 6.863 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-03-12T20:00:10Z #8 6.863 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-03-12T20:00:10Z #8 6.863 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-03-12T20:00:10Z #8 6.863 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-03-12T20:00:10Z #8 6.863 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-03-12T20:00:10Z #8 6.863 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-03-12T20:00:10Z #8 6.863 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-03-12T20:00:10Z #8 6.863 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-03-12T20:00:10Z #8 6.863 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-03-12T20:00:10Z #8 6.863 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-03-12T20:00:10Z #8 6.863 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-03-12T20:00:10Z #8 6.863 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-03-12T20:00:10Z #8 6.863 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-03-12T20:00:10Z #8 6.863 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-03-12T20:00:10Z #8 6.863 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-03-12T20:00:10Z #8 6.863 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-03-12T20:00:10Z #8 6.863 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-03-12T20:00:10Z #8 6.863 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-03-12T20:00:10Z #8 6.863 x11-utils xkb-data -2024-03-12T20:00:10Z #8 6.899 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. -2024-03-12T20:00:10Z #8 6.899 Need to get 236 MB of archives. -2024-03-12T20:00:10Z #8 6.899 After this operation, 891 MB of additional disk space will be used. -2024-03-12T20:00:10Z #8 6.899 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-03-12T20:00:10Z #8 6.906 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-03-12T20:00:10Z #8 6.907 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-03-12T20:00:10Z #8 6.909 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-03-12T20:00:10Z #8 6.912 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-03-12T20:00:10Z #8 6.916 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-03-12T20:00:10Z #8 6.918 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-03-12T20:00:10Z #8 6.922 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-03-12T20:00:10Z #8 6.924 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-03-12T20:00:10Z #8 6.925 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-03-12T20:00:10Z #8 7.003 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-03-12T20:00:10Z #8 7.005 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-03-12T20:00:10Z #8 7.014 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-03-12T20:00:10Z #8 7.020 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-03-12T20:00:10Z #8 7.024 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-03-12T20:00:10Z #8 7.029 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-03-12T20:00:10Z #8 7.047 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-03-12T20:00:10Z #8 7.050 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-03-12T20:00:10Z #8 7.051 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-03-12T20:00:10Z #8 7.056 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-03-12T20:00:11Z #8 7.182 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-03-12T20:00:11Z #8 7.198 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-03-12T20:00:11Z #8 7.210 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-03-12T20:00:11Z #8 7.215 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-03-12T20:00:11Z #8 7.223 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-03-12T20:00:11Z #8 7.225 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-03-12T20:00:11Z #8 7.226 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-03-12T20:00:11Z #8 7.230 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-03-12T20:00:11Z #8 7.234 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-03-12T20:00:11Z #8 7.237 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-03-12T20:00:11Z #8 7.239 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-03-12T20:00:11Z #8 7.392 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-03-12T20:00:11Z #8 7.393 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-03-12T20:00:11Z #8 7.396 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-03-12T20:00:11Z #8 7.402 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-03-12T20:00:11Z #8 7.403 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-03-12T20:00:11Z #8 7.405 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-03-12T20:00:11Z #8 7.408 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-03-12T20:00:11Z #8 7.409 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-03-12T20:00:11Z #8 7.412 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-03-12T20:00:11Z #8 7.442 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-03-12T20:00:11Z #8 7.455 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-03-12T20:00:11Z #8 7.458 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-03-12T20:00:11Z #8 7.460 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-03-12T20:00:11Z #8 7.481 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-03-12T20:00:11Z #8 7.482 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-03-12T20:00:11Z #8 7.491 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-03-12T20:00:11Z #8 7.515 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-03-12T20:00:11Z #8 7.524 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-03-12T20:00:11Z #8 7.649 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-03-12T20:00:11Z #8 7.651 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-03-12T20:00:11Z #8 7.654 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-03-12T20:00:11Z #8 7.656 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-03-12T20:00:11Z #8 7.658 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-03-12T20:00:11Z #8 7.660 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-03-12T20:00:11Z #8 7.662 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-03-12T20:00:11Z #8 7.665 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-03-12T20:00:11Z #8 7.673 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-03-12T20:00:11Z #8 7.696 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-03-12T20:00:11Z #8 7.704 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-03-12T20:00:11Z #8 7.712 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-03-12T20:00:11Z #8 7.720 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-03-12T20:00:11Z #8 7.722 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-03-12T20:00:11Z #8 7.725 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-03-12T20:00:11Z #8 7.733 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-03-12T20:00:11Z #8 7.735 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-03-12T20:00:11Z #8 7.737 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-03-12T20:00:11Z #8 7.740 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-03-12T20:00:11Z #8 7.742 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-03-12T20:00:11Z #8 7.745 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-03-12T20:00:11Z #8 7.748 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-03-12T20:00:11Z #8 7.761 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-03-12T20:00:11Z #8 7.764 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-03-12T20:00:11Z #8 7.765 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-03-12T20:00:11Z #8 7.771 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-03-12T20:00:11Z #8 7.775 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-03-12T20:00:11Z #8 7.777 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-03-12T20:00:11Z #8 7.779 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-03-12T20:00:11Z #8 7.796 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-03-12T20:00:11Z #8 7.798 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-03-12T20:00:11Z #8 7.800 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-03-12T20:00:11Z #8 7.806 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-03-12T20:00:11Z #8 7.809 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-03-12T20:00:11Z #8 7.811 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-03-12T20:00:11Z #8 7.813 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-03-12T20:00:11Z #8 7.817 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-03-12T20:00:11Z #8 7.819 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-03-12T20:00:11Z #8 7.821 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-03-12T20:00:11Z #8 7.823 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-03-12T20:00:11Z #8 7.825 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-03-12T20:00:11Z #8 7.826 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-03-12T20:00:11Z #8 7.833 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-03-12T20:00:11Z #8 7.835 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-03-12T20:00:11Z #8 7.840 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-03-12T20:00:11Z #8 7.841 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-03-12T20:00:11Z #8 7.842 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-03-12T20:00:11Z #8 7.844 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-03-12T20:00:11Z #8 7.845 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-03-12T20:00:11Z #8 7.848 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-03-12T20:00:11Z #8 7.850 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-03-12T20:00:11Z #8 7.968 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-03-12T20:00:11Z #8 7.969 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-03-12T20:00:11Z #8 7.970 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-03-12T20:00:11Z #8 7.972 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-03-12T20:00:11Z #8 7.981 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-03-12T20:00:11Z #8 7.983 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-03-12T20:00:11Z #8 7.985 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-03-12T20:00:11Z #8 8.072 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-03-12T20:00:11Z #8 8.112 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-03-12T20:00:11Z #8 8.116 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.8.0esr-1~deb11u1 [63.7 MB] -2024-03-12T20:00:13Z #8 9.531 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-03-12T20:00:13Z #8 9.531 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-03-12T20:00:13Z #8 9.531 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-03-12T20:00:13Z #8 9.531 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-03-12T20:00:13Z #8 9.531 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-03-12T20:00:13Z #8 9.531 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-03-12T20:00:13Z #8 9.548 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-03-12T20:00:13Z #8 9.585 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-03-12T20:00:13Z #8 9.599 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-03-12T20:00:13Z #8 9.625 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-03-12T20:00:13Z #8 9.632 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-03-12T20:00:13Z #8 9.671 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-03-12T20:00:13Z #8 10.19 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-03-12T20:00:13Z #8 10.19 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-03-12T20:00:14Z #8 10.21 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-03-12T20:00:14Z #8 10.21 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-03-12T20:00:14Z #8 10.21 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-03-12T20:00:14Z #8 10.21 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-03-12T20:00:14Z #8 10.21 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-03-12T20:00:14Z #8 10.22 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-03-12T20:00:14Z #8 10.22 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-03-12T20:00:14Z #8 10.25 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-03-12T20:00:14Z #8 10.31 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-03-12T20:00:14Z #8 10.38 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-03-12T20:00:14Z #8 10.39 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-03-12T20:00:14Z #8 10.39 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-03-12T20:00:14Z #8 10.39 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-03-12T20:00:14Z #8 10.39 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-03-12T20:00:14Z #8 10.40 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-03-12T20:00:14Z #8 10.69 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-03-12T20:00:14Z #8 10.69 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-03-12T20:00:14Z #8 10.69 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-03-12T20:00:14Z #8 10.69 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-03-12T20:00:14Z #8 10.69 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-03-12T20:00:14Z #8 10.71 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-03-12T20:00:14Z #8 10.77 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-03-12T20:00:14Z #8 10.77 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-03-12T20:00:14Z #8 10.77 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-03-12T20:00:14Z #8 10.77 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-03-12T20:00:14Z #8 10.78 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-03-12T20:00:14Z #8 10.78 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-03-12T20:00:14Z #8 10.78 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-03-12T20:00:14Z #8 10.78 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-03-12T20:00:14Z #8 10.79 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-03-12T20:00:14Z #8 10.79 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-03-12T20:00:14Z #8 10.79 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-03-12T20:00:14Z #8 10.81 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-03-12T20:00:14Z #8 10.81 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-03-12T20:00:14Z #8 10.82 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-03-12T20:00:14Z #8 10.83 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-03-12T20:00:14Z #8 10.83 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-03-12T20:00:14Z #8 10.85 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-03-12T20:00:14Z #8 10.85 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-03-12T20:00:14Z #8 10.86 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-03-12T20:00:14Z #8 10.86 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-03-12T20:00:14Z #8 10.95 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] -2024-03-12T20:00:14Z #8 10.96 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-03-12T20:00:14Z #8 10.96 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-03-12T20:00:14Z #8 10.97 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] -2024-03-12T20:00:14Z #8 10.98 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-03-12T20:00:14Z #8 11.00 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-03-12T20:00:14Z #8 11.00 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-03-12T20:00:14Z #8 11.00 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-03-12T20:00:14Z #8 11.00 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] -2024-03-12T20:00:14Z #8 11.07 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-03-12T20:00:14Z #8 11.08 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-03-12T20:00:14Z #8 11.08 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-03-12T20:00:14Z #8 11.08 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-03-12T20:00:14Z #8 11.08 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-03-12T20:00:14Z #8 11.09 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-03-12T20:00:14Z #8 11.09 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-03-12T20:00:14Z #8 11.09 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-03-12T20:00:15Z #8 11.26 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-03-12T20:00:15Z #8 11.92 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-03-12T20:00:15Z #8 11.92 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-03-12T20:00:15Z #8 11.93 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-03-12T20:00:15Z #8 11.94 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-03-12T20:00:15Z #8 12.20 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-03-12T20:00:16Z #8 12.22 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-03-12T20:00:16Z #8 12.22 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-03-12T20:00:16Z #8 12.23 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-03-12T20:00:16Z #8 12.23 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-03-12T20:00:16Z #8 12.23 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-03-12T20:00:16Z #8 12.24 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-03-12T20:00:16Z #8 12.24 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-03-12T20:00:16Z #8 12.24 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-03-12T20:00:16Z #8 12.24 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-03-12T20:00:16Z #8 12.25 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-03-12T20:00:16Z #8 12.25 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-03-12T20:00:16Z #8 12.26 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-03-12T20:00:16Z #8 12.26 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-03-12T20:00:16Z #8 12.26 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-03-12T20:00:16Z #8 12.26 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-03-12T20:00:16Z #8 12.27 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-03-12T20:00:16Z #8 12.27 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-03-12T20:00:16Z #8 12.28 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-03-12T20:00:16Z #8 12.28 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-03-12T20:00:16Z #8 12.28 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-03-12T20:00:16Z #8 12.28 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-03-12T20:00:16Z #8 12.31 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-03-12T20:00:16Z #8 12.32 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-03-12T20:00:16Z #8 12.32 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-03-12T20:00:16Z #8 12.33 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-03-12T20:00:16Z #8 12.37 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-03-12T20:00:16Z #8 12.43 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-03-12T20:00:16Z #8 12.52 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-03-12T20:00:16Z #8 12.61 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-03-12T20:00:16Z #8 12.61 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-03-12T20:00:16Z #8 12.62 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-03-12T20:00:16Z #8 12.62 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-03-12T20:00:16Z #8 12.63 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-03-12T20:00:16Z #8 12.97 debconf: delaying package configuration, since apt-utils is not installed -2024-03-12T20:00:16Z #8 13.03 Fetched 236 MB in 6s (41.0 MB/s) -2024-03-12T20:00:16Z #8 13.06 Selecting previously unselected package libapparmor1:amd64. -2024-03-12T20:00:16Z #8 13.06 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-03-12T20:00:16Z #8 13.07 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-03-12T20:00:16Z #8 13.08 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-03-12T20:00:17Z #8 13.34 Selecting previously unselected package libcap2:amd64. -2024-03-12T20:00:17Z #8 13.34 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-03-12T20:00:17Z #8 13.35 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-03-12T20:00:17Z #8 13.39 Selecting previously unselected package libargon2-1:amd64. -2024-03-12T20:00:17Z #8 13.39 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-03-12T20:00:17Z #8 13.40 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-03-12T20:00:17Z #8 13.56 Selecting previously unselected package dmsetup. -2024-03-12T20:00:17Z #8 13.56 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-03-12T20:00:17Z #8 13.57 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-03-12T20:00:17Z #8 13.62 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-03-12T20:00:17Z #8 13.62 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-03-12T20:00:17Z #8 13.63 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-03-12T20:00:17Z #8 13.69 Selecting previously unselected package libjson-c5:amd64. -2024-03-12T20:00:17Z #8 13.70 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-03-12T20:00:17Z #8 13.71 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-03-12T20:00:17Z #8 14.04 Selecting previously unselected package libcryptsetup12:amd64. -2024-03-12T20:00:17Z #8 14.04 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-03-12T20:00:17Z #8 14.04 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-03-12T20:00:17Z #8 14.13 Selecting previously unselected package libip4tc2:amd64. -2024-03-12T20:00:17Z #8 14.13 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-03-12T20:00:17Z #8 14.14 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-03-12T20:00:18Z #8 14.19 Selecting previously unselected package libkmod2:amd64. -2024-03-12T20:00:18Z #8 14.20 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-03-12T20:00:18Z #8 14.20 Unpacking libkmod2:amd64 (28-1) ... -2024-03-12T20:00:18Z #8 14.42 Selecting previously unselected package systemd. -2024-03-12T20:00:18Z #8 14.43 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-12T20:00:18Z #8 14.48 Unpacking systemd (247.3-7+deb11u4) ... -2024-03-12T20:00:19Z #8 15.28 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-03-12T20:00:19Z #8 15.29 Setting up libcap2:amd64 (1:2.44-1) ... -2024-03-12T20:00:19Z #8 15.31 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-03-12T20:00:19Z #8 15.33 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-03-12T20:00:19Z #8 15.34 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-03-12T20:00:19Z #8 15.36 Setting up libkmod2:amd64 (28-1) ... -2024-03-12T20:00:19Z #8 15.37 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-03-12T20:00:19Z #8 15.39 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-03-12T20:00:19Z #8 15.40 Setting up systemd (247.3-7+deb11u4) ... -2024-03-12T20:00:19Z #8 15.45 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-03-12T20:00:19Z #8 15.46 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-03-12T20:00:19Z #8 15.46 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-03-12T20:00:19Z #8 15.49 Initializing machine ID from KVM UUID. -2024-03-12T20:00:19Z #8 15.92 Setting up dmsetup (2:1.02.175-2.1) ... -2024-03-12T20:00:19Z #8 15.98 Selecting previously unselected package systemd-sysv. -2024-03-12T20:00:19Z #8 15.98 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-03-12T20:00:19Z #8 16.00 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-03-12T20:00:19Z #8 16.01 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-03-12T20:00:19Z #8 16.06 Selecting previously unselected package libdbus-1-3:amd64. -2024-03-12T20:00:19Z #8 16.07 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-03-12T20:00:19Z #8 16.08 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-03-12T20:00:19Z #8 16.17 Selecting previously unselected package dbus. -2024-03-12T20:00:19Z #8 16.17 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-03-12T20:00:19Z #8 16.19 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-03-12T20:00:20Z #8 16.28 Selecting previously unselected package libnss-systemd:amd64. -2024-03-12T20:00:20Z #8 16.28 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-12T20:00:20Z #8 16.29 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-12T20:00:20Z #8 16.35 Selecting previously unselected package libpam-systemd:amd64. -2024-03-12T20:00:20Z #8 16.35 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-12T20:00:20Z #8 16.39 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-12T20:00:20Z #8 16.46 Selecting previously unselected package manpages. -2024-03-12T20:00:20Z #8 16.46 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-03-12T20:00:20Z #8 16.47 Unpacking manpages (5.10-1) ... -2024-03-12T20:00:20Z #8 16.67 Selecting previously unselected package systemd-timesyncd. -2024-03-12T20:00:20Z #8 16.67 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-03-12T20:00:20Z #8 16.68 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-03-12T20:00:20Z #8 16.74 Selecting previously unselected package hicolor-icon-theme. -2024-03-12T20:00:20Z #8 16.74 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-03-12T20:00:20Z #8 16.74 Unpacking hicolor-icon-theme (0.17-2) ... -2024-03-12T20:00:20Z #8 16.87 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-03-12T20:00:20Z #8 16.87 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-03-12T20:00:20Z #8 16.88 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-03-12T20:00:20Z #8 16.99 Selecting previously unselected package libicu67:amd64. -2024-03-12T20:00:20Z #8 17.00 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-03-12T20:00:20Z #8 17.00 Unpacking libicu67:amd64 (67.1-7) ... -2024-03-12T20:00:22Z #8 18.50 Selecting previously unselected package libxml2:amd64. -2024-03-12T20:00:22Z #8 18.50 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-03-12T20:00:22Z #8 18.51 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-03-12T20:00:22Z #8 18.67 Selecting previously unselected package shared-mime-info. -2024-03-12T20:00:22Z #8 18.68 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-03-12T20:00:22Z #8 18.68 Unpacking shared-mime-info (2.0-1) ... -2024-03-12T20:00:22Z #8 18.85 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-03-12T20:00:22Z #8 18.86 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-03-12T20:00:22Z #8 18.86 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-03-12T20:00:22Z #8 18.92 Selecting previously unselected package libpng16-16:amd64. -2024-03-12T20:00:22Z #8 18.93 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-03-12T20:00:22Z #8 18.93 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-03-12T20:00:22Z #8 19.00 Selecting previously unselected package libdeflate0:amd64. -2024-03-12T20:00:22Z #8 19.01 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-03-12T20:00:22Z #8 19.01 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-03-12T20:00:22Z #8 19.06 Selecting previously unselected package libjbig0:amd64. -2024-03-12T20:00:22Z #8 19.06 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-03-12T20:00:22Z #8 19.07 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-03-12T20:00:22Z #8 19.11 Selecting previously unselected package libwebp6:amd64. -2024-03-12T20:00:22Z #8 19.11 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-03-12T20:00:22Z #8 19.12 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-12T20:00:23Z #8 19.26 Selecting previously unselected package libtiff5:amd64. -2024-03-12T20:00:23Z #8 19.26 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-03-12T20:00:23Z #8 19.27 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-03-12T20:00:23Z #8 19.34 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-03-12T20:00:23Z #8 19.35 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-03-12T20:00:23Z #8 19.35 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-12T20:00:23Z #8 19.42 Selecting previously unselected package gtk-update-icon-cache. -2024-03-12T20:00:23Z #8 19.42 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-03-12T20:00:23Z #8 19.43 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-03-12T20:00:23Z #8 19.62 Selecting previously unselected package adwaita-icon-theme. -2024-03-12T20:00:23Z #8 19.62 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-03-12T20:00:23Z #8 19.63 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-03-12T20:00:25Z #8 22.02 Selecting previously unselected package alsa-topology-conf. -2024-03-12T20:00:25Z #8 22.03 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-03-12T20:00:25Z #8 22.03 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-03-12T20:00:25Z #8 22.07 Selecting previously unselected package libasound2-data. -2024-03-12T20:00:25Z #8 22.07 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-03-12T20:00:25Z #8 22.08 Unpacking libasound2-data (1.2.4-1.1) ... -2024-03-12T20:00:25Z #8 22.13 Selecting previously unselected package libasound2:amd64. -2024-03-12T20:00:25Z #8 22.14 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-03-12T20:00:25Z #8 22.14 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-03-12T20:00:25Z #8 22.24 Selecting previously unselected package alsa-ucm-conf. -2024-03-12T20:00:26Z #8 22.24 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-03-12T20:00:26Z #8 22.25 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-03-12T20:00:26Z #8 22.33 Selecting previously unselected package libatspi2.0-0:amd64. -2024-03-12T20:00:26Z #8 22.33 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-03-12T20:00:26Z #8 22.34 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-03-12T20:00:26Z #8 22.39 Selecting previously unselected package libxi6:amd64. -2024-03-12T20:00:26Z #8 22.39 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-03-12T20:00:26Z #8 22.40 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-03-12T20:00:26Z #8 22.45 Selecting previously unselected package libxtst6:amd64. -2024-03-12T20:00:26Z #8 22.45 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-03-12T20:00:26Z #8 22.46 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-03-12T20:00:26Z #8 22.49 Selecting previously unselected package at-spi2-core. -2024-03-12T20:00:26Z #8 22.50 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-03-12T20:00:26Z #8 22.50 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-03-12T20:00:26Z #8 22.56 Selecting previously unselected package binutils-common:amd64. -2024-03-12T20:00:26Z #8 22.57 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-03-12T20:00:26Z #8 22.57 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-03-12T20:00:26Z #8 22.96 Selecting previously unselected package libbinutils:amd64. -2024-03-12T20:00:26Z #8 22.97 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-03-12T20:00:26Z #8 22.97 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-03-12T20:00:26Z #8 23.11 Selecting previously unselected package libctf-nobfd0:amd64. -2024-03-12T20:00:26Z #8 23.11 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-03-12T20:00:26Z #8 23.12 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-03-12T20:00:26Z #8 23.17 Selecting previously unselected package libctf0:amd64. -2024-03-12T20:00:26Z #8 23.18 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-03-12T20:00:26Z #8 23.18 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-03-12T20:00:27Z #8 23.23 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-03-12T20:00:27Z #8 23.24 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-03-12T20:00:27Z #8 23.24 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-03-12T20:00:27Z #8 23.60 Selecting previously unselected package binutils. -2024-03-12T20:00:27Z #8 23.60 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-03-12T20:00:27Z #8 23.61 Unpacking binutils (2.35.2-2) ... -2024-03-12T20:00:27Z #8 23.72 Selecting previously unselected package libisl23:amd64. -2024-03-12T20:00:27Z #8 23.72 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-03-12T20:00:27Z #8 23.73 Unpacking libisl23:amd64 (0.23-1) ... -2024-03-12T20:00:27Z #8 23.87 Selecting previously unselected package libmpfr6:amd64. -2024-03-12T20:00:27Z #8 23.87 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-03-12T20:00:27Z #8 23.88 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-03-12T20:00:27Z #8 24.07 Selecting previously unselected package libmpc3:amd64. -2024-03-12T20:00:27Z #8 24.07 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-03-12T20:00:27Z #8 24.08 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-03-12T20:00:27Z #8 24.12 Selecting previously unselected package cpp-10. -2024-03-12T20:00:27Z #8 24.12 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-03-12T20:00:27Z #8 24.13 Unpacking cpp-10 (10.2.1-6) ... -2024-03-12T20:00:29Z #8 25.49 Selecting previously unselected package cpp. -2024-03-12T20:00:29Z #8 25.50 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-03-12T20:00:29Z #8 25.50 Unpacking cpp (4:10.2.1-1) ... -2024-03-12T20:00:29Z #8 25.54 Selecting previously unselected package dbus-user-session. -2024-03-12T20:00:29Z #8 25.55 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-03-12T20:00:29Z #8 25.56 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-03-12T20:00:29Z #8 25.61 Selecting previously unselected package libdconf1:amd64. -2024-03-12T20:00:29Z #8 25.62 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-03-12T20:00:29Z #8 25.62 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-03-12T20:00:29Z #8 25.66 Selecting previously unselected package dconf-service. -2024-03-12T20:00:29Z #8 25.67 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-03-12T20:00:29Z #8 25.67 Unpacking dconf-service (0.38.0-2) ... -2024-03-12T20:00:29Z #8 25.71 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-03-12T20:00:29Z #8 25.71 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-03-12T20:00:29Z #8 25.72 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-03-12T20:00:29Z #8 25.76 Selecting previously unselected package libatk1.0-data. -2024-03-12T20:00:29Z #8 25.76 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-03-12T20:00:29Z #8 25.76 Unpacking libatk1.0-data (2.36.0-2) ... -2024-03-12T20:00:29Z #8 25.85 Selecting previously unselected package libatk1.0-0:amd64. -2024-03-12T20:00:29Z #8 25.86 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-03-12T20:00:29Z #8 25.86 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-03-12T20:00:29Z #8 25.92 Selecting previously unselected package libfreetype6:amd64. -2024-03-12T20:00:29Z #8 25.93 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-03-12T20:00:29Z #8 25.93 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-03-12T20:00:29Z #8 26.05 Selecting previously unselected package fonts-dejavu-core. -2024-03-12T20:00:29Z #8 26.05 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-03-12T20:00:29Z #8 26.06 Unpacking fonts-dejavu-core (2.37-2) ... -2024-03-12T20:00:30Z #8 26.28 Selecting previously unselected package fontconfig-config. -2024-03-12T20:00:30Z #8 26.29 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-03-12T20:00:30Z #8 26.46 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-03-12T20:00:30Z #8 26.54 Selecting previously unselected package libfontconfig1:amd64. -2024-03-12T20:00:30Z #8 26.55 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-03-12T20:00:30Z #8 26.55 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-03-12T20:00:30Z #8 26.62 Selecting previously unselected package libpixman-1-0:amd64. -2024-03-12T20:00:30Z #8 26.62 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-03-12T20:00:30Z #8 26.63 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-03-12T20:00:30Z #8 26.72 Selecting previously unselected package libxcb-render0:amd64. -2024-03-12T20:00:30Z #8 26.72 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-03-12T20:00:30Z #8 26.73 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-03-12T20:00:30Z #8 26.79 Selecting previously unselected package libxcb-shm0:amd64. -2024-03-12T20:00:30Z #8 26.79 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-03-12T20:00:30Z #8 26.80 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-03-12T20:00:30Z #8 26.85 Selecting previously unselected package libcairo2:amd64. -2024-03-12T20:00:30Z #8 26.86 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-03-12T20:00:30Z #8 26.86 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-03-12T20:00:30Z #8 26.99 Selecting previously unselected package libcairo-gobject2:amd64. -2024-03-12T20:00:30Z #8 26.99 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-03-12T20:00:30Z #8 27.00 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-03-12T20:00:30Z #8 27.05 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-03-12T20:00:30Z #8 27.06 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-03-12T20:00:30Z #8 27.06 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-03-12T20:00:30Z #8 27.13 Selecting previously unselected package libevent-2.1-7:amd64. -2024-03-12T20:00:30Z #8 27.13 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-03-12T20:00:30Z #8 27.14 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-03-12T20:00:31Z #8 27.22 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-03-12T20:00:31Z #8 27.22 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-03-12T20:00:31Z #8 27.23 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-03-12T20:00:31Z #8 27.30 Selecting previously unselected package liblcms2-2:amd64. -2024-03-12T20:00:31Z #8 27.30 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-03-12T20:00:31Z #8 27.31 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-03-12T20:00:31Z #8 27.38 Selecting previously unselected package libcolord2:amd64. -2024-03-12T20:00:31Z #8 27.39 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-03-12T20:00:31Z #8 27.39 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-03-12T20:00:31Z #8 27.47 Selecting previously unselected package libavahi-common-data:amd64. -2024-03-12T20:00:31Z #8 27.48 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-03-12T20:00:31Z #8 27.48 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-03-12T20:00:31Z #8 27.57 Selecting previously unselected package libavahi-common3:amd64. -2024-03-12T20:00:31Z #8 27.57 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-03-12T20:00:31Z #8 27.58 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-03-12T20:00:31Z #8 27.64 Selecting previously unselected package libavahi-client3:amd64. -2024-03-12T20:00:31Z #8 27.64 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-03-12T20:00:31Z #8 27.65 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-03-12T20:00:31Z #8 27.71 Selecting previously unselected package libcups2:amd64. -2024-03-12T20:00:31Z #8 27.72 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-03-12T20:00:31Z #8 27.73 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-03-12T20:00:31Z #8 27.85 Selecting previously unselected package libepoxy0:amd64. -2024-03-12T20:00:31Z #8 27.86 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-03-12T20:00:31Z #8 27.86 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-03-12T20:00:31Z #8 27.95 Selecting previously unselected package libfribidi0:amd64. -2024-03-12T20:00:31Z #8 27.95 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-03-12T20:00:31Z #8 27.96 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-03-12T20:00:31Z #8 28.01 Selecting previously unselected package libgraphite2-3:amd64. -2024-03-12T20:00:31Z #8 28.02 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-03-12T20:00:31Z #8 28.02 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-03-12T20:00:31Z #8 28.08 Selecting previously unselected package libharfbuzz0b:amd64. -2024-03-12T20:00:31Z #8 28.09 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-03-12T20:00:31Z #8 28.10 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-03-12T20:00:32Z #8 28.20 Selecting previously unselected package libjson-glib-1.0-common. -2024-03-12T20:00:32Z #8 28.21 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-03-12T20:00:32Z #8 28.22 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-03-12T20:00:32Z #8 28.32 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-03-12T20:00:32Z #8 28.32 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-03-12T20:00:32Z #8 28.33 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-03-12T20:00:32Z #8 28.39 Selecting previously unselected package fontconfig. -2024-03-12T20:00:32Z #8 28.40 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-03-12T20:00:32Z #8 28.41 Unpacking fontconfig (2.13.1-4.2) ... -2024-03-12T20:00:32Z #8 28.50 Selecting previously unselected package libthai-data. -2024-03-12T20:00:32Z #8 28.51 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-03-12T20:00:32Z #8 28.51 Unpacking libthai-data (0.1.28-3) ... -2024-03-12T20:00:32Z #8 28.61 Selecting previously unselected package libdatrie1:amd64. -2024-03-12T20:00:32Z #8 28.61 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-03-12T20:00:32Z #8 28.62 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-03-12T20:00:32Z #8 28.70 Selecting previously unselected package libthai0:amd64. -2024-03-12T20:00:32Z #8 28.71 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-03-12T20:00:32Z #8 28.72 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-03-12T20:00:32Z #8 28.78 Selecting previously unselected package libpango-1.0-0:amd64. -2024-03-12T20:00:32Z #8 28.78 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-03-12T20:00:32Z #8 28.79 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-03-12T20:00:32Z #8 28.86 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-03-12T20:00:32Z #8 28.86 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-03-12T20:00:32Z #8 28.87 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-03-12T20:00:32Z #8 28.92 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-03-12T20:00:32Z #8 28.92 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-03-12T20:00:32Z #8 28.93 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-03-12T20:00:32Z #8 28.97 Selecting previously unselected package libproxy1v5:amd64. -2024-03-12T20:00:32Z #8 28.98 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-03-12T20:00:32Z #8 28.99 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-03-12T20:00:32Z #8 29.03 Selecting previously unselected package glib-networking-common. -2024-03-12T20:00:32Z #8 29.04 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-03-12T20:00:32Z #8 29.04 Unpacking glib-networking-common (2.66.0-2) ... -2024-03-12T20:00:32Z #8 29.11 Selecting previously unselected package glib-networking-services. -2024-03-12T20:00:32Z #8 29.12 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-03-12T20:00:32Z #8 29.12 Unpacking glib-networking-services (2.66.0-2) ... -2024-03-12T20:00:32Z #8 29.17 Selecting previously unselected package gsettings-desktop-schemas. -2024-03-12T20:00:32Z #8 29.17 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-03-12T20:00:32Z #8 29.18 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-03-12T20:00:33Z #8 29.35 Selecting previously unselected package glib-networking:amd64. -2024-03-12T20:00:33Z #8 29.36 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-03-12T20:00:33Z #8 29.36 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-03-12T20:00:33Z #8 29.42 Selecting previously unselected package libsoup2.4-1:amd64. -2024-03-12T20:00:33Z #8 29.43 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-03-12T20:00:33Z #8 29.43 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-03-12T20:00:33Z #8 29.55 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-03-12T20:00:33Z #8 29.55 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-03-12T20:00:33Z #8 29.56 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-03-12T20:00:33Z #8 29.61 Selecting previously unselected package librest-0.7-0:amd64. -2024-03-12T20:00:33Z #8 29.62 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-03-12T20:00:33Z #8 29.62 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-03-12T20:00:33Z #8 29.68 Selecting previously unselected package libwayland-client0:amd64. -2024-03-12T20:00:33Z #8 29.69 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-03-12T20:00:33Z #8 29.69 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-03-12T20:00:33Z #8 29.78 Selecting previously unselected package libwayland-cursor0:amd64. -2024-03-12T20:00:33Z #8 29.78 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-03-12T20:00:33Z #8 29.79 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-03-12T20:00:33Z #8 29.83 Selecting previously unselected package libwayland-egl1:amd64. -2024-03-12T20:00:33Z #8 29.83 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-03-12T20:00:33Z #8 29.84 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-03-12T20:00:33Z #8 29.88 Selecting previously unselected package libxcomposite1:amd64. -2024-03-12T20:00:33Z #8 29.89 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-03-12T20:00:33Z #8 29.90 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-03-12T20:00:33Z #8 29.95 Selecting previously unselected package libxfixes3:amd64. -2024-03-12T20:00:33Z #8 29.95 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-03-12T20:00:33Z #8 29.96 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-03-12T20:00:33Z #8 30.00 Selecting previously unselected package libxcursor1:amd64. -2024-03-12T20:00:33Z #8 30.01 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-03-12T20:00:33Z #8 30.02 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-03-12T20:00:33Z #8 30.07 Selecting previously unselected package libxdamage1:amd64. -2024-03-12T20:00:33Z #8 30.07 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-03-12T20:00:33Z #8 30.08 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-03-12T20:00:33Z #8 30.12 Selecting previously unselected package libxinerama1:amd64. -2024-03-12T20:00:33Z #8 30.13 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-03-12T20:00:33Z #8 30.13 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-03-12T20:00:33Z #8 30.17 Selecting previously unselected package xkb-data. -2024-03-12T20:00:33Z #8 30.17 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-03-12T20:00:33Z #8 30.18 Unpacking xkb-data (2.29-2) ... -2024-03-12T20:00:34Z #8 30.46 Selecting previously unselected package libxkbcommon0:amd64. -2024-03-12T20:00:34Z #8 30.47 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-03-12T20:00:34Z #8 30.47 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-03-12T20:00:34Z #8 30.54 Selecting previously unselected package libxrandr2:amd64. -2024-03-12T20:00:34Z #8 30.55 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-03-12T20:00:34Z #8 30.56 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-03-12T20:00:34Z #8 30.61 Selecting previously unselected package libgtk-3-common. -2024-03-12T20:00:34Z #8 30.62 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-03-12T20:00:34Z #8 30.62 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-03-12T20:00:35Z #8 31.53 Selecting previously unselected package libgtk-3-0:amd64. -2024-03-12T20:00:35Z #8 31.54 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-03-12T20:00:35Z #8 31.55 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-03-12T20:00:35Z #8 32.08 Selecting previously unselected package libx11-xcb1:amd64. -2024-03-12T20:00:35Z #8 32.08 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-03-12T20:00:35Z #8 32.09 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-03-12T20:00:36Z #8 32.16 Selecting previously unselected package firefox-esr. -2024-03-12T20:00:36Z #8 32.16 Preparing to unpack .../099-firefox-esr_115.8.0esr-1~deb11u1_amd64.deb ... -2024-03-12T20:00:36Z #8 32.18 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-03-12T20:00:36Z #8 32.19 Unpacking firefox-esr (115.8.0esr-1~deb11u1) ... -2024-03-12T20:00:47Z #8 43.42 Selecting previously unselected package fonts-humor-sans. -2024-03-12T20:00:47Z #8 43.42 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-03-12T20:00:47Z #8 43.43 Unpacking fonts-humor-sans (1.0-4) ... -2024-03-12T20:00:47Z #8 43.48 Selecting previously unselected package libcc1-0:amd64. -2024-03-12T20:00:47Z #8 43.49 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-03-12T20:00:47Z #8 43.49 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-03-12T20:00:47Z #8 43.55 Selecting previously unselected package libgomp1:amd64. -2024-03-12T20:00:47Z #8 43.55 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-03-12T20:00:47Z #8 43.56 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-03-12T20:00:47Z #8 43.63 Selecting previously unselected package libitm1:amd64. -2024-03-12T20:00:47Z #8 43.63 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-03-12T20:00:47Z #8 43.64 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-03-12T20:00:47Z #8 43.69 Selecting previously unselected package libatomic1:amd64. -2024-03-12T20:00:47Z #8 43.70 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-03-12T20:00:47Z #8 43.71 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-03-12T20:00:47Z #8 43.76 Selecting previously unselected package libasan6:amd64. -2024-03-12T20:00:47Z #8 43.76 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-03-12T20:00:47Z #8 43.77 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-03-12T20:00:48Z #8 44.24 Selecting previously unselected package liblsan0:amd64. -2024-03-12T20:00:48Z #8 44.24 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-03-12T20:00:48Z #8 44.25 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-03-12T20:00:48Z #8 44.45 Selecting previously unselected package libtsan0:amd64. -2024-03-12T20:00:48Z #8 44.46 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-03-12T20:00:48Z #8 44.47 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-03-12T20:00:48Z #8 44.92 Selecting previously unselected package libubsan1:amd64. -2024-03-12T20:00:48Z #8 44.93 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-03-12T20:00:48Z #8 44.93 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-03-12T20:00:49Z #8 45.16 Selecting previously unselected package libquadmath0:amd64. -2024-03-12T20:00:49Z #8 45.16 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-03-12T20:00:49Z #8 45.17 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-03-12T20:00:49Z #8 45.23 Selecting previously unselected package libgcc-10-dev:amd64. -2024-03-12T20:00:49Z #8 45.24 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-03-12T20:00:49Z #8 45.25 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-03-12T20:00:49Z #8 45.73 Selecting previously unselected package gcc-10. -2024-03-12T20:00:49Z #8 45.73 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-03-12T20:00:49Z #8 45.74 Unpacking gcc-10 (10.2.1-6) ... -2024-03-12T20:00:52Z #8 48.70 Selecting previously unselected package gcc. -2024-03-12T20:00:52Z #8 48.70 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-03-12T20:00:52Z #8 48.71 Unpacking gcc (4:10.2.1-1) ... -2024-03-12T20:00:52Z #8 48.75 Selecting previously unselected package libva2:amd64. -2024-03-12T20:00:52Z #8 48.76 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-03-12T20:00:52Z #8 48.76 Unpacking libva2:amd64 (2.10.0-1) ... -2024-03-12T20:00:52Z #8 48.81 Selecting previously unselected package libdrm-common. -2024-03-12T20:00:52Z #8 48.83 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-03-12T20:00:52Z #8 48.83 Unpacking libdrm-common (2.4.104-1) ... -2024-03-12T20:00:52Z #8 48.88 Selecting previously unselected package libdrm2:amd64. -2024-03-12T20:00:52Z #8 48.89 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-03-12T20:00:52Z #8 48.89 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-03-12T20:00:52Z #8 48.94 Selecting previously unselected package libpciaccess0:amd64. -2024-03-12T20:00:52Z #8 48.95 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-03-12T20:00:52Z #8 48.96 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-03-12T20:00:52Z #8 49.00 Selecting previously unselected package libdrm-intel1:amd64. -2024-03-12T20:00:52Z #8 49.01 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-03-12T20:00:52Z #8 49.01 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-03-12T20:00:52Z #8 49.06 Selecting previously unselected package i965-va-driver:amd64. -2024-03-12T20:00:52Z #8 49.06 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-03-12T20:00:52Z #8 49.07 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-03-12T20:00:53Z #8 49.17 Selecting previously unselected package libigdgmm11:amd64. -2024-03-12T20:00:53Z #8 49.18 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-03-12T20:00:53Z #8 49.19 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-03-12T20:00:53Z #8 49.25 Selecting previously unselected package intel-media-va-driver:amd64. -2024-03-12T20:00:53Z #8 49.25 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-03-12T20:00:53Z #8 49.26 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-03-12T20:00:53Z #8 49.65 Selecting previously unselected package libaom0:amd64. -2024-03-12T20:00:53Z #8 49.65 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-03-12T20:00:53Z #8 49.66 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-03-12T20:00:53Z #8 49.91 Selecting previously unselected package libmfx1:amd64. -2024-03-12T20:00:53Z #8 49.92 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-03-12T20:00:53Z #8 49.92 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-03-12T20:00:54Z #8 50.75 Selecting previously unselected package libva-drm2:amd64. -2024-03-12T20:00:54Z #8 50.75 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-03-12T20:00:54Z #8 50.76 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-03-12T20:00:54Z #8 50.81 Selecting previously unselected package libva-x11-2:amd64. -2024-03-12T20:00:54Z #8 50.82 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-03-12T20:00:54Z #8 50.83 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-03-12T20:00:54Z #8 50.89 Selecting previously unselected package libvdpau1:amd64. -2024-03-12T20:00:54Z #8 50.89 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-03-12T20:00:54Z #8 50.90 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-03-12T20:00:54Z #8 50.95 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-03-12T20:00:54Z #8 50.96 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-03-12T20:00:54Z #8 50.97 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-03-12T20:00:54Z #8 51.03 Selecting previously unselected package libavutil56:amd64. -2024-03-12T20:00:54Z #8 51.04 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-12T20:00:54Z #8 51.04 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-12T20:00:54Z #8 51.16 Selecting previously unselected package libcodec2-0.9:amd64. -2024-03-12T20:00:54Z #8 51.16 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-03-12T20:00:54Z #8 51.17 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-03-12T20:00:56Z #8 52.58 Selecting previously unselected package libdav1d4:amd64. -2024-03-12T20:00:56Z #8 52.59 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-03-12T20:00:56Z #8 52.59 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-03-12T20:00:56Z #8 52.70 Selecting previously unselected package libgsm1:amd64. -2024-03-12T20:00:56Z #8 52.70 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-03-12T20:00:56Z #8 52.71 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-03-12T20:00:56Z #8 52.77 Selecting previously unselected package libmp3lame0:amd64. -2024-03-12T20:00:56Z #8 52.77 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-03-12T20:00:56Z #8 52.78 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-03-12T20:00:56Z #8 52.87 Selecting previously unselected package libopenjp2-7:amd64. -2024-03-12T20:00:56Z #8 52.87 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-03-12T20:00:56Z #8 52.88 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-03-12T20:00:56Z #8 52.95 Selecting previously unselected package libopus0:amd64. -2024-03-12T20:00:56Z #8 52.96 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-03-12T20:00:56Z #8 52.96 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-03-12T20:00:56Z #8 53.04 Selecting previously unselected package librsvg2-2:amd64. -2024-03-12T20:00:56Z #8 53.05 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-03-12T20:00:56Z #8 53.06 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-12T20:00:57Z #8 53.61 Selecting previously unselected package libshine3:amd64. -2024-03-12T20:00:57Z #8 53.62 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-03-12T20:00:57Z #8 53.63 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-03-12T20:00:57Z #8 53.68 Selecting previously unselected package libsnappy1v5:amd64. -2024-03-12T20:00:57Z #8 53.68 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-03-12T20:00:57Z #8 53.69 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-03-12T20:00:57Z #8 53.74 Selecting previously unselected package libspeex1:amd64. -2024-03-12T20:00:57Z #8 53.75 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-03-12T20:00:57Z #8 53.75 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-03-12T20:00:57Z #8 53.81 Selecting previously unselected package libsoxr0:amd64. -2024-03-12T20:00:57Z #8 53.82 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-03-12T20:00:57Z #8 53.82 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-03-12T20:00:57Z #8 53.88 Selecting previously unselected package libswresample3:amd64. -2024-03-12T20:00:57Z #8 53.89 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-12T20:00:57Z #8 53.90 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-12T20:00:57Z #8 53.96 Selecting previously unselected package libogg0:amd64. -2024-03-12T20:00:57Z #8 53.96 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-03-12T20:00:57Z #8 53.97 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-03-12T20:00:57Z #8 54.01 Selecting previously unselected package libtheora0:amd64. -2024-03-12T20:00:57Z #8 54.02 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-03-12T20:00:57Z #8 54.03 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-03-12T20:00:57Z #8 54.11 Selecting previously unselected package libtwolame0:amd64. -2024-03-12T20:00:57Z #8 54.12 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-03-12T20:00:57Z #8 54.13 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-03-12T20:00:57Z #8 54.19 Selecting previously unselected package libvorbis0a:amd64. -2024-03-12T20:00:57Z #8 54.19 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-03-12T20:00:57Z #8 54.20 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-03-12T20:00:58Z #8 54.26 Selecting previously unselected package libvorbisenc2:amd64. -2024-03-12T20:00:58Z #8 54.26 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-03-12T20:00:58Z #8 54.27 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-03-12T20:00:58Z #8 54.34 Selecting previously unselected package libvpx6:amd64. -2024-03-12T20:00:58Z #8 54.34 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-03-12T20:00:58Z #8 54.35 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-03-12T20:00:58Z #8 54.54 Selecting previously unselected package libwavpack1:amd64. -2024-03-12T20:00:58Z #8 54.55 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-03-12T20:00:58Z #8 54.55 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-03-12T20:00:58Z #8 54.61 Selecting previously unselected package libwebpmux3:amd64. -2024-03-12T20:00:58Z #8 54.62 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-03-12T20:00:58Z #8 54.62 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-12T20:00:58Z #8 54.69 Selecting previously unselected package libx264-160:amd64. -2024-03-12T20:00:58Z #8 54.69 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-03-12T20:00:58Z #8 54.70 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-03-12T20:00:58Z #8 54.84 Selecting previously unselected package libnuma1:amd64. -2024-03-12T20:00:58Z #8 54.85 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-03-12T20:00:58Z #8 54.86 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-03-12T20:00:58Z #8 54.91 Selecting previously unselected package libx265-192:amd64. -2024-03-12T20:00:58Z #8 54.92 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-03-12T20:00:58Z #8 54.92 Unpacking libx265-192:amd64 (3.4-2) ... -2024-03-12T20:00:59Z #8 55.28 Selecting previously unselected package libxvidcore4:amd64. -2024-03-12T20:00:59Z #8 55.29 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-03-12T20:00:59Z #8 55.29 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-03-12T20:00:59Z #8 55.36 Selecting previously unselected package libzvbi-common. -2024-03-12T20:00:59Z #8 55.37 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-03-12T20:00:59Z #8 55.37 Unpacking libzvbi-common (0.2.35-18) ... -2024-03-12T20:00:59Z #8 55.42 Selecting previously unselected package libzvbi0:amd64. -2024-03-12T20:00:59Z #8 55.43 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-03-12T20:00:59Z #8 55.43 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-03-12T20:00:59Z #8 55.51 Selecting previously unselected package libavcodec58:amd64. -2024-03-12T20:00:59Z #8 55.52 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-12T20:00:59Z #8 55.52 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-12T20:01:00Z #8 56.47 Selecting previously unselected package libc-dev-bin. -2024-03-12T20:01:00Z #8 56.47 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... -2024-03-12T20:01:00Z #8 56.47 Unpacking libc-dev-bin (2.31-13+deb11u8) ... -2024-03-12T20:01:00Z #8 56.53 Selecting previously unselected package libxpm4:amd64. -2024-03-12T20:01:00Z #8 56.54 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-03-12T20:01:00Z #8 56.55 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-03-12T20:01:00Z #8 56.60 Selecting previously unselected package libgd3:amd64. -2024-03-12T20:01:00Z #8 56.60 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-03-12T20:01:00Z #8 56.61 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-03-12T20:01:00Z #8 56.67 Selecting previously unselected package libc-devtools. -2024-03-12T20:01:00Z #8 56.68 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... -2024-03-12T20:01:00Z #8 56.68 Unpacking libc-devtools (2.31-13+deb11u8) ... -2024-03-12T20:01:00Z #8 56.74 Selecting previously unselected package linux-libc-dev:amd64. -2024-03-12T20:01:00Z #8 56.74 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-03-12T20:01:00Z #8 56.75 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-03-12T20:01:00Z #8 57.13 Selecting previously unselected package libcrypt-dev:amd64. -2024-03-12T20:01:00Z #8 57.14 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-03-12T20:01:00Z #8 57.14 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-03-12T20:01:00Z #8 57.20 Selecting previously unselected package libtirpc-dev:amd64. -2024-03-12T20:01:00Z #8 57.21 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-03-12T20:01:00Z #8 57.21 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-03-12T20:01:01Z #8 57.29 Selecting previously unselected package libnsl-dev:amd64. -2024-03-12T20:01:01Z #8 57.30 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-03-12T20:01:01Z #8 57.30 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-03-12T20:01:01Z #8 57.36 Selecting previously unselected package libc6-dev:amd64. -2024-03-12T20:01:01Z #8 57.37 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... -2024-03-12T20:01:01Z #8 57.39 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-03-12T20:01:01Z #8 58.05 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-03-12T20:01:01Z #8 58.06 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-03-12T20:01:01Z #8 58.06 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-03-12T20:01:01Z #8 58.11 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-03-12T20:01:01Z #8 58.11 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-03-12T20:01:01Z #8 58.12 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-03-12T20:01:02Z #8 58.23 Selecting previously unselected package libdrm-radeon1:amd64. -2024-03-12T20:01:02Z #8 58.23 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-03-12T20:01:02Z #8 58.24 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-03-12T20:01:02Z #8 58.29 Selecting previously unselected package libelf1:amd64. -2024-03-12T20:01:02Z #8 58.29 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-03-12T20:01:02Z #8 58.30 Unpacking libelf1:amd64 (0.183-1) ... -2024-03-12T20:01:02Z #8 58.37 Selecting previously unselected package libfontenc1:amd64. -2024-03-12T20:01:02Z #8 58.37 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-03-12T20:01:02Z #8 58.38 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-03-12T20:01:02Z #8 58.42 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-03-12T20:01:02Z #8 58.42 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-03-12T20:01:02Z #8 58.43 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-03-12T20:01:02Z #8 58.48 Selecting previously unselected package libglapi-mesa:amd64. -2024-03-12T20:01:02Z #8 58.48 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-03-12T20:01:02Z #8 58.49 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-03-12T20:01:02Z #8 58.55 Selecting previously unselected package libz3-4:amd64. -2024-03-12T20:01:02Z #8 58.55 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-03-12T20:01:02Z #8 58.56 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-03-12T20:01:03Z #8 59.84 Selecting previously unselected package libllvm11:amd64. -2024-03-12T20:01:03Z #8 59.84 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-03-12T20:01:03Z #8 59.85 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-03-12T20:01:07Z #8 63.76 Selecting previously unselected package libsensors-config. -2024-03-12T20:01:07Z #8 63.77 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-03-12T20:01:07Z #8 63.77 Unpacking libsensors-config (1:3.6.0-7) ... -2024-03-12T20:01:07Z #8 63.82 Selecting previously unselected package libsensors5:amd64. -2024-03-12T20:01:07Z #8 63.83 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-03-12T20:01:07Z #8 63.88 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-03-12T20:01:07Z #8 63.94 Selecting previously unselected package libvulkan1:amd64. -2024-03-12T20:01:07Z #8 63.94 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-03-12T20:01:07Z #8 63.95 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-03-12T20:01:07Z #8 64.02 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-03-12T20:01:07Z #8 64.03 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-03-12T20:01:07Z #8 64.04 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-03-12T20:01:09Z #8 65.64 Selecting previously unselected package libglvnd0:amd64. -2024-03-12T20:01:09Z #8 65.64 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-03-12T20:01:09Z #8 65.65 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-03-12T20:01:09Z #8 65.71 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-03-12T20:01:09Z #8 65.71 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-03-12T20:01:09Z #8 65.72 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-03-12T20:01:09Z #8 65.77 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-03-12T20:01:09Z #8 65.78 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-03-12T20:01:09Z #8 65.78 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-03-12T20:01:09Z #8 65.83 Selecting previously unselected package libxcb-glx0:amd64. -2024-03-12T20:01:09Z #8 65.84 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-03-12T20:01:09Z #8 65.84 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-03-12T20:01:09Z #8 65.90 Selecting previously unselected package libxcb-present0:amd64. -2024-03-12T20:01:09Z #8 65.90 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-03-12T20:01:09Z #8 65.91 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-03-12T20:01:09Z #8 65.96 Selecting previously unselected package libxcb-sync1:amd64. -2024-03-12T20:01:09Z #8 65.97 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-03-12T20:01:09Z #8 65.97 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-03-12T20:01:09Z #8 66.03 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-03-12T20:01:09Z #8 66.03 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-03-12T20:01:09Z #8 66.04 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-03-12T20:01:09Z #8 66.09 Selecting previously unselected package libxshmfence1:amd64. -2024-03-12T20:01:09Z #8 66.09 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-03-12T20:01:09Z #8 66.10 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-03-12T20:01:09Z #8 66.13 Selecting previously unselected package libxxf86vm1:amd64. -2024-03-12T20:01:09Z #8 66.14 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-03-12T20:01:09Z #8 66.15 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-03-12T20:01:09Z #8 66.19 Selecting previously unselected package libglx-mesa0:amd64. -2024-03-12T20:01:09Z #8 66.20 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-03-12T20:01:09Z #8 66.20 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-03-12T20:01:10Z #8 66.29 Selecting previously unselected package libgtk-3-bin. -2024-03-12T20:01:10Z #8 66.29 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-03-12T20:01:10Z #8 66.30 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-03-12T20:01:10Z #8 66.35 Selecting previously unselected package librsvg2-common:amd64. -2024-03-12T20:01:10Z #8 66.36 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-03-12T20:01:10Z #8 66.36 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-12T20:01:10Z #8 66.41 Selecting previously unselected package libglx0:amd64. -2024-03-12T20:01:10Z #8 66.41 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-03-12T20:01:10Z #8 66.42 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-03-12T20:01:10Z #8 66.47 Selecting previously unselected package libgl1:amd64. -2024-03-12T20:01:10Z #8 66.48 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-03-12T20:01:10Z #8 66.48 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-03-12T20:01:10Z #8 66.54 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-03-12T20:01:10Z #8 66.54 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-03-12T20:01:10Z #8 66.55 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-03-12T20:01:10Z #8 66.61 Selecting previously unselected package libxt6:amd64. -2024-03-12T20:01:10Z #8 66.62 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-03-12T20:01:10Z #8 66.62 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-03-12T20:01:10Z #8 66.70 Selecting previously unselected package libxmu6:amd64. -2024-03-12T20:01:10Z #8 66.70 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-03-12T20:01:10Z #8 66.71 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-03-12T20:01:10Z #8 66.75 Selecting previously unselected package libxaw7:amd64. -2024-03-12T20:01:10Z #8 66.76 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-03-12T20:01:10Z #8 66.77 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-03-12T20:01:10Z #8 66.85 Selecting previously unselected package libxcb-randr0:amd64. -2024-03-12T20:01:10Z #8 66.85 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-03-12T20:01:10Z #8 66.86 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-03-12T20:01:10Z #8 66.91 Selecting previously unselected package libxcb-shape0:amd64. -2024-03-12T20:01:10Z #8 66.92 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-03-12T20:01:10Z #8 66.93 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-03-12T20:01:10Z #8 66.98 Selecting previously unselected package libxft2:amd64. -2024-03-12T20:01:10Z #8 66.99 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-03-12T20:01:10Z #8 67.00 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-03-12T20:01:10Z #8 67.05 Selecting previously unselected package libxkbfile1:amd64. -2024-03-12T20:01:10Z #8 67.06 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-03-12T20:01:10Z #8 67.06 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-03-12T20:01:10Z #8 67.11 Selecting previously unselected package libxmuu1:amd64. -2024-03-12T20:01:10Z #8 67.12 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-03-12T20:01:10Z #8 67.13 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-03-12T20:01:10Z #8 67.17 Selecting previously unselected package libxv1:amd64. -2024-03-12T20:01:10Z #8 67.18 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-03-12T20:01:10Z #8 67.19 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-03-12T20:01:11Z #8 67.23 Selecting previously unselected package libxxf86dga1:amd64. -2024-03-12T20:01:11Z #8 67.24 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-03-12T20:01:11Z #8 67.24 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-03-12T20:01:11Z #8 67.30 Selecting previously unselected package manpages-dev. -2024-03-12T20:01:11Z #8 67.30 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-03-12T20:01:11Z #8 67.31 Unpacking manpages-dev (5.10-1) ... -2024-03-12T20:01:11Z #8 67.79 Selecting previously unselected package mesa-va-drivers:amd64. -2024-03-12T20:01:11Z #8 67.80 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-03-12T20:01:11Z #8 67.80 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-03-12T20:01:12Z #8 68.25 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-03-12T20:01:12Z #8 68.27 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-03-12T20:01:12Z #8 68.28 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-03-12T20:01:12Z #8 68.79 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-03-12T20:01:12Z #8 68.80 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-03-12T20:01:12Z #8 68.81 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-03-12T20:01:15Z #8 71.28 Selecting previously unselected package patch. -2024-03-12T20:01:15Z #8 71.29 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-03-12T20:01:15Z #8 71.60 Unpacking patch (2.7.6-7) ... -2024-03-12T20:01:15Z #8 71.66 Selecting previously unselected package unzip. -2024-03-12T20:01:15Z #8 71.67 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-03-12T20:01:15Z #8 71.67 Unpacking unzip (6.0-26+deb11u1) ... -2024-03-12T20:01:15Z #8 71.73 Selecting previously unselected package va-driver-all:amd64. -2024-03-12T20:01:15Z #8 71.74 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-03-12T20:01:15Z #8 71.74 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-03-12T20:01:15Z #8 71.80 Selecting previously unselected package vdpau-driver-all:amd64. -2024-03-12T20:01:15Z #8 71.80 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-03-12T20:01:15Z #8 71.81 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-03-12T20:01:15Z #8 71.85 Selecting previously unselected package x11-utils. -2024-03-12T20:01:15Z #8 71.86 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-03-12T20:01:15Z #8 71.86 Unpacking x11-utils (7.7+5) ... -2024-03-12T20:01:15Z #8 72.01 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-03-12T20:01:15Z #8 72.02 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-03-12T20:01:15Z #8 72.03 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-03-12T20:01:15Z #8 72.04 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-03-12T20:01:15Z #8 72.06 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-03-12T20:01:15Z #8 72.07 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-03-12T20:01:15Z #8 72.08 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-03-12T20:01:15Z #8 72.09 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-03-12T20:01:15Z #8 72.11 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-03-12T20:01:15Z #8 72.12 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-03-12T20:01:15Z #8 72.14 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-03-12T20:01:15Z #8 72.15 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-03-12T20:01:15Z #8 72.17 Setting up libshine3:amd64 (3.1.1-2) ... -2024-03-12T20:01:15Z #8 72.18 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-03-12T20:01:15Z #8 72.20 Setting up hicolor-icon-theme (0.17-2) ... -2024-03-12T20:01:16Z #8 72.24 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-03-12T20:01:16Z #8 72.25 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-03-12T20:01:16Z #8 72.26 Setting up libicu67:amd64 (67.1-7) ... -2024-03-12T20:01:16Z #8 72.28 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-03-12T20:01:16Z #8 72.29 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-03-12T20:01:16Z #8 72.30 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-03-12T20:01:16Z #8 72.31 Setting up manpages (5.10-1) ... -2024-03-12T20:01:16Z #8 72.33 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-03-12T20:01:16Z #8 72.34 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-03-12T20:01:16Z #8 72.36 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-03-12T20:01:16Z #8 72.37 Setting up unzip (6.0-26+deb11u1) ... -2024-03-12T20:01:16Z #8 72.39 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-03-12T20:01:16Z #8 72.40 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-03-12T20:01:16Z #8 72.41 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-03-12T20:01:16Z #8 72.43 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-03-12T20:01:16Z #8 72.44 Setting up libsensors-config (1:3.6.0-7) ... -2024-03-12T20:01:16Z #8 72.46 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-03-12T20:01:16Z #8 72.48 Setting up libdeflate0:amd64 (1.7-1) ... -2024-03-12T20:01:16Z #8 72.49 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-03-12T20:01:16Z #8 72.50 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-03-12T20:01:16Z #8 72.52 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-12T20:01:16Z #8 72.53 First installation detected... -2024-03-12T20:01:16Z #8 72.53 Checking NSS setup... -2024-03-12T20:01:16Z #8 72.54 Setting up xkb-data (2.29-2) ... -2024-03-12T20:01:16Z #8 72.55 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-03-12T20:01:16Z #8 72.57 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-03-12T20:01:16Z #8 72.59 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-03-12T20:01:16Z #8 72.60 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-03-12T20:01:16Z #8 72.61 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-03-12T20:01:16Z #8 72.62 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-03-12T20:01:16Z #8 72.64 Setting up libasan6:amd64 (10.2.1-6) ... -2024-03-12T20:01:16Z #8 72.65 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-03-12T20:01:16Z #8 72.66 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-03-12T20:01:16Z #8 72.67 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-03-12T20:01:16Z #8 72.69 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-03-12T20:01:16Z #8 72.70 Setting up libasound2-data (1.2.4-1.1) ... -2024-03-12T20:01:16Z #8 72.71 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-03-12T20:01:16Z #8 72.72 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-03-12T20:01:16Z #8 72.74 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-03-12T20:01:16Z #8 72.75 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-03-12T20:01:16Z #8 72.76 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-03-12T20:01:16Z #8 72.78 Setting up libva2:amd64 (2.10.0-1) ... -2024-03-12T20:01:16Z #8 72.79 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-03-12T20:01:16Z #8 72.80 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-03-12T20:01:16Z #8 72.81 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-03-12T20:01:16Z #8 72.83 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-03-12T20:01:16Z #8 72.84 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-03-12T20:01:16Z #8 72.85 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-03-12T20:01:16Z #8 72.86 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-03-12T20:01:16Z #8 72.87 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-03-12T20:01:16Z #8 72.89 Setting up dbus (1.12.28-0+deb11u1) ... -2024-03-12T20:01:16Z #8 73.08 invoke-rc.d: could not determine current runlevel -2024-03-12T20:01:16Z #8 73.08 invoke-rc.d: policy-rc.d denied execution of start. -2024-03-12T20:01:16Z #8 73.09 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-03-12T20:01:16Z #8 73.11 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-03-12T20:01:16Z #8 73.12 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-03-12T20:01:16Z #8 73.14 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-03-12T20:01:17Z #8 73.15 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-03-12T20:01:17Z #8 73.17 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-03-12T20:01:17Z #8 73.18 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-03-12T20:01:17Z #8 73.20 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-03-12T20:01:17Z #8 73.21 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-03-12T20:01:17Z #8 73.57 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-03-12T20:01:17Z #8 73.58 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-03-12T20:01:17Z #8 73.59 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-03-12T20:01:17Z #8 73.60 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-03-12T20:01:17Z #8 73.62 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-03-12T20:01:17Z #8 73.64 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-03-12T20:01:17Z #8 73.66 Setting up patch (2.7.6-7) ... -2024-03-12T20:01:17Z #8 73.67 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-12T20:01:17Z #8 73.69 Setting up fonts-dejavu-core (2.37-2) ... -2024-03-12T20:01:17Z #8 73.81 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-03-12T20:01:17Z #8 73.83 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-03-12T20:01:17Z #8 73.85 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-03-12T20:01:17Z #8 73.86 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-03-12T20:01:17Z #8 73.88 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-03-12T20:01:17Z #8 73.90 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-03-12T20:01:17Z #8 73.91 Setting up libatk1.0-data (2.36.0-2) ... -2024-03-12T20:01:17Z #8 73.93 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-03-12T20:01:17Z #8 73.94 Setting up alsa-topology-conf (1.2.4-1) ... -2024-03-12T20:01:17Z #8 73.96 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-03-12T20:01:17Z #8 73.97 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-03-12T20:01:17Z #8 73.99 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-03-12T20:01:17Z #8 74.01 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-03-12T20:01:17Z #8 74.02 Setting up libvdpau1:amd64 (1.4-3) ... -2024-03-12T20:01:17Z #8 74.05 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-03-12T20:01:17Z #8 74.06 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-03-12T20:01:17Z #8 74.08 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-03-12T20:01:17Z #8 74.10 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-03-12T20:01:17Z #8 74.11 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-12T20:01:18Z #8 74.43 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-03-12T20:01:18Z #8 74.45 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-03-12T20:01:18Z #8 74.46 Setting up libthai-data (0.1.28-3) ... -2024-03-12T20:01:18Z #8 74.48 Setting up fonts-humor-sans (1.0-4) ... -2024-03-12T20:01:18Z #8 74.49 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-03-12T20:01:18Z #8 74.51 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-03-12T20:01:18Z #8 74.52 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-03-12T20:01:18Z #8 74.54 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-03-12T20:01:18Z #8 74.55 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-03-12T20:01:18Z #8 74.57 Setting up glib-networking-common (2.66.0-2) ... -2024-03-12T20:01:18Z #8 74.58 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-03-12T20:01:18Z #8 74.59 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-03-12T20:01:18Z #8 74.61 Setting up libisl23:amd64 (0.23-1) ... -2024-03-12T20:01:18Z #8 74.62 Setting up libc-dev-bin (2.31-13+deb11u8) ... -2024-03-12T20:01:18Z #8 74.63 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-12T20:01:18Z #8 74.64 Setting up libdrm-common (2.4.104-1) ... -2024-03-12T20:01:18Z #8 74.66 Setting up libelf1:amd64 (0.183-1) ... -2024-03-12T20:01:18Z #8 74.68 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-03-12T20:01:18Z #8 74.69 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-03-12T20:01:18Z #8 74.70 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-03-12T20:01:18Z #8 74.72 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-03-12T20:01:18Z #8 74.73 Setting up libzvbi-common (0.2.35-18) ... -2024-03-12T20:01:18Z #8 74.75 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-03-12T20:01:18Z #8 74.77 Setting up cpp-10 (10.2.1-6) ... -2024-03-12T20:01:18Z #8 74.78 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-03-12T20:01:18Z #8 74.80 Setting up libitm1:amd64 (10.2.1-6) ... -2024-03-12T20:01:18Z #8 74.81 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-03-12T20:01:18Z #8 74.82 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-03-12T20:01:18Z #8 74.84 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-03-12T20:01:18Z #8 74.85 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-03-12T20:01:18Z #8 74.87 Setting up libctf0:amd64 (2.35.2-2) ... -2024-03-12T20:01:18Z #8 74.88 Setting up glib-networking-services (2.66.0-2) ... -2024-03-12T20:01:18Z #8 74.89 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-03-12T20:01:18Z #8 74.91 Setting up manpages-dev (5.10-1) ... -2024-03-12T20:01:18Z #8 74.92 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-03-12T20:01:18Z #8 74.94 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-03-12T20:01:18Z #8 74.95 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-03-12T20:01:18Z #8 74.97 Setting up fontconfig-config (2.13.1-4.2) ... -2024-03-12T20:01:19Z #8 75.32 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-03-12T20:01:19Z #8 75.34 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-03-12T20:01:19Z #8 75.35 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-03-12T20:01:19Z #8 75.37 Setting up libx265-192:amd64 (3.4-2) ... -2024-03-12T20:01:19Z #8 75.38 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-03-12T20:01:19Z #8 75.40 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-03-12T20:01:19Z #8 75.41 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-03-12T20:01:19Z #8 75.43 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-03-12T20:01:19Z #8 75.44 Setting up libthai0:amd64 (0.1.28-3) ... -2024-03-12T20:01:19Z #8 75.46 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-03-12T20:01:19Z #8 75.47 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-03-12T20:01:19Z #8 75.50 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-03-12T20:01:19Z #8 75.51 Setting up shared-mime-info (2.0-1) ... -2024-03-12T20:01:23Z #8 79.98 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-03-12T20:01:23Z #8 80.00 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-03-12T20:01:23Z #8 80.01 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-03-12T20:01:23Z #8 80.03 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-03-12T20:01:23Z #8 80.05 Setting up cpp (4:10.2.1-1) ... -2024-03-12T20:01:23Z #8 80.07 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-03-12T20:01:23Z #8 80.08 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-03-12T20:01:23Z #8 80.09 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-12T20:01:23Z #8 80.13 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-03-12T20:01:24Z #8 80.24 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-03-12T20:01:24Z #8 80.25 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-03-12T20:01:24Z #8 80.27 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-03-12T20:01:24Z #8 80.28 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-03-12T20:01:24Z #8 80.29 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-03-12T20:01:24Z #8 80.30 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-03-12T20:01:24Z #8 80.32 Setting up fontconfig (2.13.1-4.2) ... -2024-03-12T20:01:26Z #8 80.33 Regenerating fonts cache... done. -2024-03-12T20:01:26Z #8 82.35 Setting up libxft2:amd64 (2.3.2-2) ... -2024-03-12T20:01:26Z #8 82.36 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-03-12T20:01:26Z #8 82.37 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-03-12T20:01:26Z #8 82.38 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-03-12T20:01:26Z #8 82.40 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-03-12T20:01:26Z #8 82.41 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-03-12T20:01:26Z #8 82.43 Setting up dconf-service (0.38.0-2) ... -2024-03-12T20:01:26Z #8 82.44 Setting up binutils (2.35.2-2) ... -2024-03-12T20:01:26Z #8 82.45 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-03-12T20:01:26Z #8 82.47 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-12T20:01:26Z #8 82.48 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-03-12T20:01:26Z #8 82.56 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-03-12T20:01:26Z #8 82.57 Setting up libgd3:amd64 (2.3.0-2) ... -2024-03-12T20:01:26Z #8 82.58 Setting up gcc-10 (10.2.1-6) ... -2024-03-12T20:01:26Z #8 82.59 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-03-12T20:01:26Z #8 82.60 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-03-12T20:01:26Z #8 82.62 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-03-12T20:01:26Z #8 82.63 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-03-12T20:01:26Z #8 82.64 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-03-12T20:01:26Z #8 82.66 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-03-12T20:01:26Z #8 82.67 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-03-12T20:01:26Z #8 82.68 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-03-12T20:01:26Z #8 82.70 Setting up libc-devtools (2.31-13+deb11u8) ... -2024-03-12T20:01:26Z #8 82.71 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-03-12T20:01:26Z #8 82.72 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-03-12T20:01:26Z #8 82.74 Setting up libglx0:amd64 (1.3.2-1) ... -2024-03-12T20:01:26Z #8 82.75 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-03-12T20:01:26Z #8 82.76 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-12T20:01:26Z #8 82.78 Setting up gcc (4:10.2.1-1) ... -2024-03-12T20:01:26Z #8 82.81 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-12T20:01:26Z #8 82.82 Setting up libgl1:amd64 (1.3.2-1) ... -2024-03-12T20:01:26Z #8 82.83 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-03-12T20:01:26Z #8 82.85 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-12T20:01:26Z #8 82.87 Setting up x11-utils (7.7+5) ... -2024-03-12T20:01:26Z #8 82.91 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-12T20:01:26Z #8 82.92 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-03-12T20:01:26Z #8 82.94 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-03-12T20:01:26Z #8 82.95 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-03-12T20:01:26Z #8 82.97 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-03-12T20:01:26Z #8 82.99 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-03-12T20:01:26Z #8 83.03 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-03-12T20:01:26Z #8 83.06 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-03-12T20:01:26Z #8 83.07 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-03-12T20:01:26Z #8 83.09 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-03-12T20:01:26Z #8 83.10 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-03-12T20:01:26Z #8 83.11 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-03-12T20:01:26Z #8 83.15 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-03-12T20:01:27Z #8 83.16 Setting up firefox-esr (115.8.0esr-1~deb11u1) ... -2024-03-12T20:01:27Z #8 83.17 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-03-12T20:01:27Z #8 83.17 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-03-12T20:01:27Z #8 83.18 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-03-12T20:01:27Z #8 83.18 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-03-12T20:01:27Z #8 83.19 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-12T20:01:27Z #8 83.23 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-03-12T20:01:32Z #8 DONE 88.7s -2024-03-12T20:01:32Z -2024-03-12T20:01:32Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-03-12T20:02:36Z #9 DONE 64.1s -2024-03-12T20:02:36Z -2024-03-12T20:02:36Z #10 [ 5/10] COPY environment.yml /environment.yml -2024-03-12T20:02:36Z #10 DONE 0.1s -2024-03-12T20:02:36Z -2024-03-12T20:02:36Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-03-12T20:05:05Z #11 149.1 Transaction -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 Prefix: /opt/conda/envs/birdy -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 Updating specs: -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 - xclim -2024-03-12T20:05:05Z #11 149.1 - ravenpy -2024-03-12T20:05:05Z #11 149.1 - python=3.10 -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 Package Version Build Channel Size -2024-03-12T20:05:05Z #11 149.1 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-12T20:05:05Z #11 149.1 Install: -2024-03-12T20:05:05Z #11 149.1 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-03-12T20:05:05Z #11 149.1 + python_abi 3.10 4_cp310 conda-forge 6kB -2024-03-12T20:05:05Z #11 149.1 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB -2024-03-12T20:05:05Z #11 149.1 + ca-certificates 2024.2.2 hbcca054_0 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + libboost-headers 1.84.0 ha770c72_1 conda-forge 14MB -2024-03-12T20:05:05Z #11 149.1 + mpi 1.0 openmpi conda-forge 4kB -2024-03-12T20:05:05Z #11 149.1 + libgomp 13.2.0 h807b86a_5 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-03-12T20:05:05Z #11 149.1 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + libnuma 2.0.16 h0b41bf4_1 conda-forge 41kB -2024-03-12T20:05:05Z #11 149.1 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-03-12T20:05:05Z #11 149.1 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-03-12T20:05:05Z #11 149.1 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-03-12T20:05:05Z #11 149.1 + lzo 2.10 h516909a_1000 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-03-12T20:05:05Z #11 149.1 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-03-12T20:05:05Z #11 149.1 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-03-12T20:05:05Z #11 149.1 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-03-12T20:05:05Z #11 149.1 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-common 0.9.13 hd590300_0 conda-forge 226kB -2024-03-12T20:05:05Z #11 149.1 + libev 4.33 hd590300_2 conda-forge 113kB -2024-03-12T20:05:05Z #11 149.1 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-03-12T20:05:05Z #11 149.1 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-03-12T20:05:05Z #11 149.1 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-03-12T20:05:05Z #11 149.1 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-03-12T20:05:05Z #11 149.1 + c-ares 1.27.0 hd590300_0 conda-forge 164kB -2024-03-12T20:05:05Z #11 149.1 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-03-12T20:05:05Z #11 149.1 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-03-12T20:05:05Z #11 149.1 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-03-12T20:05:05Z #11 149.1 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-03-12T20:05:05Z #11 149.1 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB -2024-03-12T20:05:05Z #11 149.1 + libaec 1.1.2 h59595ed_1 conda-forge 35kB -2024-03-12T20:05:05Z #11 149.1 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-03-12T20:05:05Z #11 149.1 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-03-12T20:05:05Z #11 149.1 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-03-12T20:05:05Z #11 149.1 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB -2024-03-12T20:05:05Z #11 149.1 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-03-12T20:05:05Z #11 149.1 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-03-12T20:05:05Z #11 149.1 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-03-12T20:05:05Z #11 149.1 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB -2024-03-12T20:05:05Z #11 149.1 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-03-12T20:05:05Z #11 149.1 + snappy 1.1.10 h9fff704_0 conda-forge 39kB -2024-03-12T20:05:05Z #11 149.1 + icu 73.2 h59595ed_0 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB -2024-03-12T20:05:05Z #11 149.1 + libexpat 2.6.1 h59595ed_0 conda-forge 74kB -2024-03-12T20:05:05Z #11 149.1 + libdeflate 1.19 hd590300_0 conda-forge 67kB -2024-03-12T20:05:05Z #11 149.1 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-03-12T20:05:05Z #11 149.1 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-03-12T20:05:05Z #11 149.1 + openssl 3.2.1 hd590300_0 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + ncurses 6.4 h59595ed_2 conda-forge 884kB -2024-03-12T20:05:05Z #11 149.1 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB -2024-03-12T20:05:05Z #11 149.1 + libnsl 2.0.1 hd590300_0 conda-forge 33kB -2024-03-12T20:05:05Z #11 149.1 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-03-12T20:05:05Z #11 149.1 + rdma-core 50.0 hd3aeb46_1 conda-forge 5MB -2024-03-12T20:05:05Z #11 149.1 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB -2024-03-12T20:05:05Z #11 149.1 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-compression 0.2.18 hecc5fa9_1 conda-forge 19kB -2024-03-12T20:05:05Z #11 149.1 + aws-checksums 0.1.18 hecc5fa9_1 conda-forge 50kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-sdkutils 0.1.15 hecc5fa9_1 conda-forge 55kB -2024-03-12T20:05:05Z #11 149.1 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-03-12T20:05:05Z #11 149.1 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-03-12T20:05:05Z #11 149.1 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-03-12T20:05:05Z #11 149.1 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB -2024-03-12T20:05:05Z #11 149.1 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-03-12T20:05:05Z #11 149.1 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB -2024-03-12T20:05:05Z #11 149.1 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-03-12T20:05:05Z #11 149.1 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-03-12T20:05:05Z #11 149.1 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB -2024-03-12T20:05:05Z #11 149.1 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB -2024-03-12T20:05:05Z #11 149.1 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2024-03-12T20:05:05Z #11 149.1 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-03-12T20:05:05Z #11 149.1 + pcre2 10.43 hcad00b1_0 conda-forge 951kB -2024-03-12T20:05:05Z #11 149.1 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-03-12T20:05:05Z #11 149.1 + expat 2.6.1 h59595ed_0 conda-forge 137kB -2024-03-12T20:05:05Z #11 149.1 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-03-12T20:05:05Z #11 149.1 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-03-12T20:05:05Z #11 149.1 + s2n 1.4.5 h06160fa_0 conda-forge 338kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-cal 0.6.10 hb29e0c7_1 conda-forge 55kB -2024-03-12T20:05:05Z #11 149.1 + libnghttp2 1.58.0 h47da74e_1 conda-forge 632kB -2024-03-12T20:05:05Z #11 149.1 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-03-12T20:05:05Z #11 149.1 + libssh2 1.11.0 h0841786_0 conda-forge 271kB -2024-03-12T20:05:05Z #11 149.1 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-03-12T20:05:05Z #11 149.1 + readline 8.2 h8228510_1 conda-forge 281kB -2024-03-12T20:05:05Z #11 149.1 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-03-12T20:05:05Z #11 149.1 + libxml2 2.12.5 h232c23b_0 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + ucx 1.15.0 h9929b8b_4 conda-forge 15MB -2024-03-12T20:05:05Z #11 149.1 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-03-12T20:05:05Z #11 149.1 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-03-12T20:05:05Z #11 149.1 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB -2024-03-12T20:05:05Z #11 149.1 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB -2024-03-12T20:05:05Z #11 149.1 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB -2024-03-12T20:05:05Z #11 149.1 + orc 1.9.2 h1e5e2c1_3 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-03-12T20:05:05Z #11 149.1 + libtiff 4.6.0 ha9c0a0a_2 conda-forge 283kB -2024-03-12T20:05:05Z #11 149.1 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB -2024-03-12T20:05:05Z #11 149.1 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-03-12T20:05:05Z #11 149.1 + libglib 2.80.0 hf2295e7_0 conda-forge 3MB -2024-03-12T20:05:05Z #11 149.1 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-io 0.14.5 h50678d4_1 conda-forge 157kB -2024-03-12T20:05:05Z #11 149.1 + krb5 1.21.2 h659d440_0 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB -2024-03-12T20:05:05Z #11 149.1 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-03-12T20:05:05Z #11 149.1 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-03-12T20:05:05Z #11 149.1 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB -2024-03-12T20:05:05Z #11 149.1 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-03-12T20:05:05Z #11 149.1 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-12T20:05:05Z #11 149.1 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-03-12T20:05:05Z #11 149.1 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-03-12T20:05:05Z #11 149.1 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-03-12T20:05:05Z #11 149.1 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-03-12T20:05:05Z #11 149.1 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-03-12T20:05:05Z #11 149.1 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-http 0.8.1 h5d7533a_5 conda-forge 195kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-event-stream 0.4.2 hf9b2f7b_4 conda-forge 54kB -2024-03-12T20:05:05Z #11 149.1 + libpq 16.2 h33b98f1_0 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + libcurl 8.5.0 hca28451_0 conda-forge 389kB -2024-03-12T20:05:05Z #11 149.1 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-12T20:05:05Z #11 149.1 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-mqtt 0.10.2 hf479d2b_4 conda-forge 164kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-auth 0.7.16 h79b3bcb_6 conda-forge 103kB -2024-03-12T20:05:05Z #11 149.1 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB -2024-03-12T20:05:05Z #11 149.1 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB -2024-03-12T20:05:05Z #11 149.1 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + proj 9.3.1 h1d62c97_0 conda-forge 3MB -2024-03-12T20:05:05Z #11 149.1 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB -2024-03-12T20:05:05Z #11 149.1 + aws-c-s3 0.5.2 h4ad9680_0 conda-forge 105kB -2024-03-12T20:05:05Z #11 149.1 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB -2024-03-12T20:05:05Z #11 149.1 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB -2024-03-12T20:05:05Z #11 149.1 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-03-12T20:05:05Z #11 149.1 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-03-12T20:05:05Z #11 149.1 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB -2024-03-12T20:05:05Z #11 149.1 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB -2024-03-12T20:05:05Z #11 149.1 + aws-crt-cpp 0.26.2 h19f5d62_7 conda-forge 334kB -2024-03-12T20:05:05Z #11 149.1 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB -2024-03-12T20:05:05Z #11 149.1 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-03-12T20:05:05Z #11 149.1 + aws-sdk-cpp 1.11.267 h5606698_1 conda-forge 4MB -2024-03-12T20:05:05Z #11 149.1 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB -2024-03-12T20:05:05Z #11 149.1 + tiledb 2.20.1 hdfbda7f_3 conda-forge 5MB -2024-03-12T20:05:05Z #11 149.1 + libarrow 15.0.1 h5476b98_0_cpu conda-forge 8MB -2024-03-12T20:05:05Z #11 149.1 + libparquet 15.0.1 h352af49_0_cpu conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + libarrow-gandiva 15.0.1 hb016d2e_0_cpu conda-forge 897kB -2024-03-12T20:05:05Z #11 149.1 + libarrow-flight 15.0.1 hc6145d9_0_cpu conda-forge 507kB -2024-03-12T20:05:05Z #11 149.1 + libarrow-acero 15.0.1 h59595ed_0_cpu conda-forge 599kB -2024-03-12T20:05:05Z #11 149.1 + libarrow-flight-sql 15.0.1 h757c851_0_cpu conda-forge 195kB -2024-03-12T20:05:05Z #11 149.1 + libarrow-dataset 15.0.1 h59595ed_0_cpu conda-forge 584kB -2024-03-12T20:05:05Z #11 149.1 + libarrow-substrait 15.0.1 h757c851_0_cpu conda-forge 520kB -2024-03-12T20:05:05Z #11 149.1 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-03-12T20:05:05Z #11 149.1 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-03-12T20:05:05Z #11 149.1 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-03-12T20:05:05Z #11 149.1 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-03-12T20:05:05Z #11 149.1 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + fonts-conda-forge 1 0 conda-forge 4kB -2024-03-12T20:05:05Z #11 149.1 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-03-12T20:05:05Z #11 149.1 + postgresql 16.2 h7387d8b_0 conda-forge 5MB -2024-03-12T20:05:05Z #11 149.1 + python 3.10.13 hd12c33a_1_cpython conda-forge 26MB -2024-03-12T20:05:05Z #11 149.1 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-03-12T20:05:05Z #11 149.1 + poppler 24.03.0 h590f24d_0 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + libgdal 3.8.4 hab4ef92_3 conda-forge 11MB -2024-03-12T20:05:05Z #11 149.1 + wheel 0.42.0 pyhd8ed1ab_0 conda-forge 58kB -2024-03-12T20:05:05Z #11 149.1 + setuptools 69.1.1 pyhd8ed1ab_0 conda-forge 470kB -2024-03-12T20:05:05Z #11 149.1 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB -2024-03-12T20:05:05Z #11 149.1 + appdirs 1.4.4 pyh9f0ad1d_0 conda-forge 13kB -2024-03-12T20:05:05Z #11 149.1 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-03-12T20:05:05Z #11 149.1 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-03-12T20:05:05Z #11 149.1 + threadpoolctl 3.3.0 pyhc1e730c_0 conda-forge 23kB -2024-03-12T20:05:05Z #11 149.1 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB -2024-03-12T20:05:05Z #11 149.1 + fsspec 2024.2.0 pyhca7485f_0 conda-forge 129kB -2024-03-12T20:05:05Z #11 149.1 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-03-12T20:05:05Z #11 149.1 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-03-12T20:05:05Z #11 149.1 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-03-12T20:05:05Z #11 149.1 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-03-12T20:05:05Z #11 149.1 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB -2024-03-12T20:05:05Z #11 149.1 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-03-12T20:05:05Z #11 149.1 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-03-12T20:05:05Z #11 149.1 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB -2024-03-12T20:05:05Z #11 149.1 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-03-12T20:05:05Z #11 149.1 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-03-12T20:05:05Z #11 149.1 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-03-12T20:05:05Z #11 149.1 + boltons 23.1.1 pyhd8ed1ab_0 conda-forge 304kB -2024-03-12T20:05:05Z #11 149.1 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-03-12T20:05:05Z #11 149.1 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-03-12T20:05:05Z #11 149.1 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-03-12T20:05:05Z #11 149.1 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-03-12T20:05:05Z #11 149.1 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-03-12T20:05:05Z #11 149.1 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-03-12T20:05:05Z #11 149.1 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB -2024-03-12T20:05:05Z #11 149.1 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB -2024-03-12T20:05:05Z #11 149.1 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-03-12T20:05:05Z #11 149.1 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-03-12T20:05:05Z #11 149.1 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-03-12T20:05:05Z #11 149.1 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-03-12T20:05:05Z #11 149.1 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-03-12T20:05:05Z #11 149.1 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-03-12T20:05:05Z #11 149.1 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-03-12T20:05:05Z #11 149.1 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-03-12T20:05:05Z #11 149.1 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-03-12T20:05:05Z #11 149.1 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-03-12T20:05:05Z #11 149.1 + pytools 2023.1.1 pyhd8ed1ab_0 conda-forge 71kB -2024-03-12T20:05:05Z #11 149.1 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB -2024-03-12T20:05:05Z #11 149.1 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-03-12T20:05:05Z #11 149.1 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-03-12T20:05:05Z #11 149.1 + importlib-metadata 7.0.2 pyha770c72_0 conda-forge 27kB -2024-03-12T20:05:05Z #11 149.1 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-03-12T20:05:05Z #11 149.1 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-03-12T20:05:05Z #11 149.1 + importlib_metadata 7.0.2 hd8ed1ab_0 conda-forge 9kB -2024-03-12T20:05:05Z #11 149.1 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB -2024-03-12T20:05:05Z #11 149.1 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB -2024-03-12T20:05:05Z #11 149.1 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB -2024-03-12T20:05:05Z #11 149.1 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB -2024-03-12T20:05:05Z #11 149.1 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB -2024-03-12T20:05:05Z #11 149.1 + tornado 6.4 py310h2372a71_0 conda-forge 651kB -2024-03-12T20:05:05Z #11 149.1 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB -2024-03-12T20:05:05Z #11 149.1 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB -2024-03-12T20:05:05Z #11 149.1 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB -2024-03-12T20:05:05Z #11 149.1 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB -2024-03-12T20:05:05Z #11 149.1 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB -2024-03-12T20:05:05Z #11 149.1 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB -2024-03-12T20:05:05Z #11 149.1 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB -2024-03-12T20:05:05Z #11 149.1 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB -2024-03-12T20:05:05Z #11 149.1 + raven-hydro 0.2.3 py310h3ce4ad4_0 conda-forge 787kB -2024-03-12T20:05:05Z #11 149.1 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB -2024-03-12T20:05:05Z #11 149.1 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB -2024-03-12T20:05:05Z #11 149.1 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB -2024-03-12T20:05:05Z #11 149.1 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB -2024-03-12T20:05:05Z #11 149.1 + pydantic 1.10.13 py310h2372a71_1 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + fonttools 4.49.0 py310h2372a71_0 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + pyarrow 15.0.1 py310hf9e7431_0_cpu conda-forge 4MB -2024-03-12T20:05:05Z #11 149.1 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB -2024-03-12T20:05:05Z #11 149.1 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB -2024-03-12T20:05:05Z #11 149.1 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB -2024-03-12T20:05:05Z #11 149.1 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB -2024-03-12T20:05:05Z #11 149.1 + gdal 3.8.4 py310he073c5f_3 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + numba 0.59.0 py310h7dc5dd1_1 conda-forge 4MB -2024-03-12T20:05:05Z #11 149.1 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB -2024-03-12T20:05:05Z #11 149.1 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB -2024-03-12T20:05:05Z #11 149.1 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB -2024-03-12T20:05:05Z #11 149.1 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB -2024-03-12T20:05:05Z #11 149.1 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB -2024-03-12T20:05:05Z #11 149.1 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB -2024-03-12T20:05:05Z #11 149.1 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB -2024-03-12T20:05:05Z #11 149.1 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-03-12T20:05:05Z #11 149.1 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-03-12T20:05:05Z #11 149.1 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB -2024-03-12T20:05:05Z #11 149.1 + dask-core 2024.2.1 pyhd8ed1ab_0 conda-forge 880kB -2024-03-12T20:05:05Z #11 149.1 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB -2024-03-12T20:05:05Z #11 149.1 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-03-12T20:05:05Z #11 149.1 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-03-12T20:05:05Z #11 149.1 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-03-12T20:05:05Z #11 149.1 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-03-12T20:05:05Z #11 149.1 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-03-12T20:05:05Z #11 149.1 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-03-12T20:05:05Z #11 149.1 + properscoring 0.1 py_0 conda-forge 22kB -2024-03-12T20:05:05Z #11 149.1 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB -2024-03-12T20:05:05Z #11 149.1 + xarray 2024.2.0 pyhd8ed1ab_0 conda-forge 742kB -2024-03-12T20:05:05Z #11 149.1 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-03-12T20:05:05Z #11 149.1 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-03-12T20:05:05Z #11 149.1 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-03-12T20:05:05Z #11 149.1 + bokeh 3.3.4 pyhd8ed1ab_0 conda-forge 5MB -2024-03-12T20:05:05Z #11 149.1 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB -2024-03-12T20:05:05Z #11 149.1 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-03-12T20:05:05Z #11 149.1 + distributed 2024.2.1 pyhd8ed1ab_0 conda-forge 794kB -2024-03-12T20:05:05Z #11 149.1 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-03-12T20:05:05Z #11 149.1 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-03-12T20:05:05Z #11 149.1 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-03-12T20:05:05Z #11 149.1 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-03-12T20:05:05Z #11 149.1 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-03-12T20:05:05Z #11 149.1 + dask 2024.2.1 pyhd8ed1ab_0 conda-forge 7kB -2024-03-12T20:05:05Z #11 149.1 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB -2024-03-12T20:05:05Z #11 149.1 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB -2024-03-12T20:05:05Z #11 149.1 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-03-12T20:05:05Z #11 149.1 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-03-12T20:05:05Z #11 149.1 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB -2024-03-12T20:05:05Z #11 149.1 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB -2024-03-12T20:05:05Z #11 149.1 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-03-12T20:05:05Z #11 149.1 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB -2024-03-12T20:05:05Z #11 149.1 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB -2024-03-12T20:05:05Z #11 149.1 + rioxarray 0.15.1 pyhd8ed1ab_0 conda-forge 48kB -2024-03-12T20:05:05Z #11 149.1 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-03-12T20:05:05Z #11 149.1 + ravenpy 0.12.2 py310hff52083_0 conda-forge 6MB -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 Summary: -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 Install: 294 packages -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 Total download: 448MB -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:05:05Z #11 149.1 -2024-03-12T20:06:41Z #11 245.0 -2024-03-12T20:06:41Z #11 245.0 Looking for: ['xclim', 'ravenpy', 'python=3.10'] -2024-03-12T20:06:41Z #11 245.0 -2024-03-12T20:06:41Z #11 245.0 -2024-03-12T20:06:41Z #11 245.0 Downloading and Extracting Packages: ...working... done -2024-03-12T20:06:45Z #11 245.0 Preparing transaction: ...working... done -2024-03-12T20:06:58Z #11 249.0 Verifying transaction: ...working... done -2024-03-12T20:07:35Z #11 262.2 Executing transaction: ...working... -2024-03-12T20:07:35Z #11 298.7 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-03-12T20:07:35Z #11 298.7 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-03-12T20:07:35Z #11 298.7 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-03-12T20:07:35Z #11 298.7 mpiexec --mca opal_cuda_support 1 ... -2024-03-12T20:07:35Z #11 298.7 -2024-03-12T20:07:35Z #11 298.7 In addition, the UCX support is also built but disabled by default. -2024-03-12T20:07:35Z #11 298.7 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-03-12T20:07:35Z #11 298.7 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-03-12T20:07:35Z #11 298.7 Equivalently, you can set the MCA parameters in the command line: -2024-03-12T20:07:35Z #11 298.7 mpiexec --mca pml ucx --mca osc ucx ... -2024-03-12T20:07:35Z #11 298.7 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-03-12T20:07:35Z #11 298.7 Please consult UCX's documentation for detail. -2024-03-12T20:07:35Z #11 298.7 -2024-03-12T20:07:35Z #11 298.7 -2024-03-12T20:07:35Z #11 298.7 done -2024-03-12T20:07:35Z #11 298.8 -2024-03-12T20:07:35Z #11 298.8 To activate this environment, use -2024-03-12T20:07:35Z #11 298.8 -2024-03-12T20:07:35Z #11 298.8 $ mamba activate birdy -2024-03-12T20:07:35Z #11 298.8 -2024-03-12T20:07:35Z #11 298.8 To deactivate an active environment, use -2024-03-12T20:07:35Z #11 298.8 -2024-03-12T20:07:35Z #11 298.8 $ mamba deactivate -2024-03-12T20:07:35Z #11 298.8 -2024-03-12T20:07:39Z #11 302.3 Channels: -2024-03-12T20:07:39Z #11 302.3 - conda-forge -2024-03-12T20:07:39Z #11 302.3 - cdat -2024-03-12T20:07:39Z #11 302.3 - bokeh -2024-03-12T20:07:39Z #11 302.3 - plotly -2024-03-12T20:07:39Z #11 302.3 - pyviz/label/dev -2024-03-12T20:07:39Z #11 302.3 - defaults -2024-03-12T20:07:39Z #11 302.3 Platform: linux-64 -2024-03-12T20:08:13Z #11 302.3 Collecting package metadata (repodata.json): ...working... done -2024-03-12T20:09:17Z #11 337.0 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:17Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.0 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:09:18Z #11 402.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:12Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:13Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:14Z #11 457.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:15Z #11 458.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:10:16Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-12T20:11:46Z #11 550.1 done -2024-03-12T20:13:44Z #11 667.9 -2024-03-12T20:13:44Z #11 667.9 Downloading and Extracting Packages: ...working... done -2024-03-12T20:13:54Z #11 667.9 Preparing transaction: ...working... done -2024-03-12T20:14:24Z #11 677.7 Verifying transaction: ...working... done -2024-03-12T20:15:21Z #11 708.4 Executing transaction: ...working... -2024-03-12T20:15:21Z #11 764.7 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-03-12T20:15:21Z #11 764.7 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-03-12T20:15:21Z #11 764.7 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-03-12T20:15:21Z #11 764.7 mpiexec --mca opal_cuda_support 1 ... -2024-03-12T20:15:21Z #11 764.7 -2024-03-12T20:15:21Z #11 764.7 In addition, the UCX support is also built but disabled by default. -2024-03-12T20:15:21Z #11 764.7 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-03-12T20:15:21Z #11 764.7 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-03-12T20:15:21Z #11 764.7 Equivalently, you can set the MCA parameters in the command line: -2024-03-12T20:15:21Z #11 764.7 mpiexec --mca pml ucx --mca osc ucx ... -2024-03-12T20:15:21Z #11 764.7 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-03-12T20:15:21Z #11 764.7 Please consult UCX's documentation for detail. -2024-03-12T20:15:21Z #11 764.7 -2024-03-12T20:15:21Z #11 764.7 -2024-03-12T20:15:21Z #11 764.7 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-03-12T20:15:21Z #11 764.7 given by the platformdirs library. To remove this warning and -2024-03-12T20:15:21Z #11 764.7 see the appropriate new directories, set the environment variable -2024-03-12T20:15:21Z #11 764.7 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-03-12T20:15:21Z #11 764.7 The use of platformdirs will be the default in `jupyter_core` v6 -2024-03-12T20:15:21Z #11 764.7 from . import paths -2024-03-12T20:15:21Z #11 764.7 Enabling: jupyterlab_git -2024-03-12T20:15:21Z #11 764.7 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-12T20:15:21Z #11 764.7 - Validating... -2024-03-12T20:15:21Z #11 764.7 jupyterlab_git OK -2024-03-12T20:15:21Z #11 764.7 -2024-03-12T20:15:21Z #11 764.7 done -2024-03-12T20:16:06Z #11 772.0 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-03-12T20:16:06Z #11 810.2 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv._meslect.requirements.txt', '--exists-action=b'] -2024-03-12T20:16:06Z #11 810.2 Pip subprocess output: -2024-03-12T20:16:06Z #11 810.2 Collecting xncml (from -r /condaenv._meslect.requirements.txt (line 1)) -2024-03-12T20:16:06Z #11 810.2 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting hsclient (from -r /condaenv._meslect.requirements.txt (line 2)) -2024-03-12T20:16:06Z #11 810.2 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting fstd2nc (from -r /condaenv._meslect.requirements.txt (line 3)) -2024-03-12T20:16:06Z #11 810.2 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 9.1 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Installing build dependencies: started -2024-03-12T20:16:06Z #11 810.2 Installing build dependencies: finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Getting requirements to build wheel: started -2024-03-12T20:16:06Z #11 810.2 Getting requirements to build wheel: finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Installing backend dependencies: started -2024-03-12T20:16:06Z #11 810.2 Installing backend dependencies: finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Preparing metadata (pyproject.toml): started -2024-03-12T20:16:06Z #11 810.2 Preparing metadata (pyproject.toml): finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Collecting figanos (from -r /condaenv._meslect.requirements.txt (line 4)) -2024-03-12T20:16:06Z #11 810.2 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting pixiedust (from -r /condaenv._meslect.requirements.txt (line 5)) -2024-03-12T20:16:06Z #11 810.2 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 22.0 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): started -2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Collecting ipython_blocking (from -r /condaenv._meslect.requirements.txt (line 6)) -2024-03-12T20:16:06Z #11 810.2 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting jupyternotify (from -r /condaenv._meslect.requirements.txt (line 7)) -2024-03-12T20:16:06Z #11 810.2 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): started -2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Collecting jupyterlab-logout (from -r /condaenv._meslect.requirements.txt (line 8)) -2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting jupyterlab-tabular-data-editor (from -r /condaenv._meslect.requirements.txt (line 9)) -2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting pytest-tornasync (from -r /condaenv._meslect.requirements.txt (line 10)) -2024-03-12T20:16:06Z #11 810.2 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting xmltodict (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) -2024-03-12T20:16:06Z #11 810.2 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting xsdata (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) -2024-03-12T20:16:06Z #11 810.2 Downloading xsdata-24.3.1-py3-none-any.whl.metadata (6.3 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (2023.8.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (1.6.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (1.6.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (2024.2.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (5.9.8) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv._meslect.requirements.txt (line 1)) (69.1.1) -2024-03-12T20:16:06Z #11 810.2 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv._meslect.requirements.txt (line 2)) -2024-03-12T20:16:06Z #11 810.2 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2.31.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (1.4.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv._meslect.requirements.txt (line 3)) (1.24.4) -2024-03-12T20:16:06Z #11 810.2 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv._meslect.requirements.txt (line 3)) -2024-03-12T20:16:06Z #11 810.2 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-03-12T20:16:06Z #11 810.2 Collecting progress (from fstd2nc->-r /condaenv._meslect.requirements.txt (line 3)) -2024-03-12T20:16:06Z #11 810.2 Downloading progress-1.6.tar.gz (7.8 kB) -2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): started -2024-03-12T20:16:06Z #11 810.2 Preparing metadata (setup.py): finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.22.0) -2024-03-12T20:16:06Z #11 810.2 Collecting cairosvg (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) -2024-03-12T20:16:06Z #11 810.2 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.14.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.8.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.1.4) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (4.2.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (6.0.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.13.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.22.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.47.0) -2024-03-12T20:16:06Z #11 810.2 Collecting geojson (from pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) -2024-03-12T20:16:06Z #11 810.2 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting astunparse (from pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) -2024-03-12T20:16:06Z #11 810.2 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) (3.5.2) -2024-03-12T20:16:06Z #11 810.2 Collecting colour (from pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) -2024-03-12T20:16:06Z #11 810.2 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (8.22.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (8.1.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.7.4) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (1.0.0) -2024-03-12T20:16:06Z #11 810.2 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) -2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab-4.1.4-py3-none-any.whl.metadata (15 kB) -2024-03-12T20:16:06Z #11 810.2 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-03-12T20:16:06Z #11 810.2 Collecting jupyterlab-logout (from -r /condaenv._meslect.requirements.txt (line 8)) -2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.6.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (3.6.7) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (23.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (6.4) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (5.7.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.25.4) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.13.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.2.4) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.8.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.0.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (6.5.6) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (3.1.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.0.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv._meslect.requirements.txt (line 10)) (8.1.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv._meslect.requirements.txt (line 3)) (2024.1) -2024-03-12T20:16:06Z #11 810.2 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) -2024-03-12T20:16:06Z #11 810.2 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2.6.3) -2024-03-12T20:16:06Z #11 810.2 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) -2024-03-12T20:16:06Z #11 810.2 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (0.6.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2.16.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (4.10.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv._meslect.requirements.txt (line 10)) (2.0.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv._meslect.requirements.txt (line 10)) (1.4.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv._meslect.requirements.txt (line 10)) (1.2.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (23.1.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.3.8) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.9.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (8.1.7) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.0.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.0.6) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.59.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.23) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.4.1.post1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.12.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.14.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (3.0.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (2024.2.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (1.4.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (0.12.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (7.0.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.9.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2024.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) (0.42.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv._meslect.requirements.txt (line 5)) (1.16.0) -2024-03-12T20:16:06Z #11 810.2 Collecting cairocffi (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) -2024-03-12T20:16:06Z #11 810.2 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) -2024-03-12T20:16:06Z #11 810.2 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) -2024-03-12T20:16:06Z #11 810.2 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.7.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (9.4.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.2.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.0.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.3.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.5.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.2.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.12.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (4.49.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.4.5) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.1.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.9.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (5.1.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.19.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.1.6) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (3.0.42) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (2.17.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.6.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (5.14.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (4.9.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.2.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (4.0.10) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (3.0.10) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (5.5.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (6.6.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (7.16.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (6.29.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (7.4.9) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (5.10.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (3.3.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (3.6) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2.0.7) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (2024.2.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) (3.2.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.2.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.34.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2023.8.12) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (23.2.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.1.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.7.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (4.0.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (3.17.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.8.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.1.5) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.4) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (1.6.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (24.0.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (4.3.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (23.1.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.9.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.5.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (7.7.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.20.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.8.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.18.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.7.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.9.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.8.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.5.9) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.14.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.9.22) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (4.21.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (4.12.3) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (6.1.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (0.3.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (3.0.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (1.5.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (2.19.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.2.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.2.4) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv._meslect.requirements.txt (line 1)) (1.0.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.7.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.2.13) -2024-03-12T20:16:06Z #11 810.2 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) -2024-03-12T20:16:06Z #11 810.2 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.3.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (3.3.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (1.16.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.5.1) -2024-03-12T20:16:06Z #11 810.2 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv._meslect.requirements.txt (line 2)) -2024-03-12T20:16:06Z #11 810.2 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (1.8.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.42.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (2.4.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (2.0.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (2.4.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv._meslect.requirements.txt (line 6)) (0.2.2) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (0.5.6) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.3.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv._meslect.requirements.txt (line 4)) (2.21) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2023.12.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.33.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.18.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.0.7) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.1.4) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.1.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (22.1.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (0.19.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (21.2.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv._meslect.requirements.txt (line 7)) (2.5) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.5.1) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (20.11.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.4) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.3.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.13) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (1.3.0) -2024-03-12T20:16:06Z #11 810.2 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv._meslect.requirements.txt (line 8)) (2.8.19.20240311) -2024-03-12T20:16:06Z #11 810.2 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 50.4 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.4 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 36.4 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 65.9 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 5.5 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading xsdata-24.3.1-py3-none-any.whl (224 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 224.1/224.1 kB 25.3 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 24.6 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 9.7 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-03-12T20:16:06Z #11 810.2 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 29.0 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-03-12T20:16:06Z #11 810.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.8 MB/s eta 0:00:00 -2024-03-12T20:16:06Z #11 810.2 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress -2024-03-12T20:16:06Z #11 810.2 Building wheel for fstd2nc (pyproject.toml): started -2024-03-12T20:16:06Z #11 810.2 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=666bcf0bbf199577844ef1abe74891e858edc2778a7308a675f5c0f0bb666134 -2024-03-12T20:16:06Z #11 810.2 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a -2024-03-12T20:16:06Z #11 810.2 Building wheel for pixiedust (setup.py): started -2024-03-12T20:16:06Z #11 810.2 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=12156a26cb9d170332401dacfa2a63dba4e8a19fb0b566dadfcbc9655d2ecfd0 -2024-03-12T20:16:06Z #11 810.2 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 -2024-03-12T20:16:06Z #11 810.2 Building wheel for jupyternotify (setup.py): started -2024-03-12T20:16:06Z #11 810.2 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=05ef8bad41b1d69bd08489d029816f609b810cb94287ae8142d6247d196e5b85 -2024-03-12T20:16:06Z #11 810.2 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 -2024-03-12T20:16:06Z #11 810.2 Building wheel for progress (setup.py): started -2024-03-12T20:16:06Z #11 810.2 Building wheel for progress (setup.py): finished with status 'done' -2024-03-12T20:16:06Z #11 810.2 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9612 sha256=8aedd4f992b01c2e89011407e95e8f8d9398be86f96fa4f260cd39759e7d6a86 -2024-03-12T20:16:06Z #11 810.2 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 -2024-03-12T20:16:06Z #11 810.2 Successfully built fstd2nc pixiedust jupyternotify progress -2024-03-12T20:16:06Z #11 810.2 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-03-12T20:16:06Z #11 810.2 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.3.1 -2024-03-12T20:16:06Z #11 810.2 -2024-03-12T20:16:06Z #11 810.2 done -2024-03-12T20:16:06Z #11 810.2 # -2024-03-12T20:16:06Z #11 810.2 # To activate this environment, use -2024-03-12T20:16:06Z #11 810.2 # -2024-03-12T20:16:06Z #11 810.2 # $ conda activate birdy -2024-03-12T20:16:06Z #11 810.2 # -2024-03-12T20:16:06Z #11 810.2 # To deactivate an active environment, use -2024-03-12T20:16:06Z #11 810.2 # -2024-03-12T20:16:06Z #11 810.2 # $ conda deactivate -2024-03-12T20:16:06Z #11 810.2 -2024-03-12T20:16:26Z #11 829.6 Will remove 787 (1.20 GB) tarball(s). -2024-03-12T20:16:26Z #11 829.6 Will remove 1 index cache(s). -2024-03-12T20:16:26Z #11 829.6 Will remove 144 (1.21 GB) package(s). -2024-03-12T20:16:26Z #11 829.6 There are no tempfile(s) to remove. -2024-03-12T20:16:26Z #11 829.6 There are no logfile(s) to remove. -2024-03-12T20:16:27Z #11 DONE 830.4s -2024-03-12T20:16:27Z -2024-03-12T20:16:27Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2024-03-12T20:16:28Z #12 1.359 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-03-12T20:16:28Z #12 DONE 1.5s -2024-03-12T20:16:28Z -2024-03-12T20:16:28Z #13 [ 8/10] RUN jupyter lab build -2024-03-12T20:16:30Z #13 1.949 [LabBuildApp] JupyterLab 3.6.7 -2024-03-12T20:16:30Z #13 1.950 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2024-03-12T20:16:31Z #13 2.600 [LabBuildApp] Building jupyterlab assets (production, minimized) -2024-03-12T20:16:31Z #13 2.620 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. -2024-03-12T20:16:31Z #13 2.620 -2024-03-12T20:18:49Z #13 2.626 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ -2024-03-12T20:18:49Z #13 DONE 140.5s -2024-03-12T20:18:49Z -2024-03-12T20:18:49Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-03-12T20:18:49Z #14 0.573 Enabling: voila -2024-03-12T20:18:49Z #14 0.573 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-12T20:18:49Z #14 0.576 - Validating... -2024-03-12T20:18:50Z #14 1.279 voila 0.5.5 OK -2024-03-12T20:18:50Z #14 1.659 Enabling: panel.io.jupyter_server_extension -2024-03-12T20:18:50Z #14 1.659 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-12T20:18:50Z #14 1.661 - Validating... -2024-03-12T20:18:52Z #14 3.481 panel.io.jupyter_server_extension OK -2024-03-12T20:18:53Z #14 3.998 - Validating... -2024-03-12T20:18:54Z #14 4.900 dask_labextension 6.2.0 OK -2024-03-12T20:18:54Z #14 4.900 - Validating... -2024-03-12T20:18:54Z #14 4.901 jupyter_server_proxy OK -2024-03-12T20:18:54Z #14 4.901 - Validating... -2024-03-12T20:18:54Z #14 5.075 jupyter_resource_usage 0.7.1 OK -2024-03-12T20:18:54Z #14 5.075 - Validating... -2024-03-12T20:18:54Z #14 5.135  X is jupyter_server_ydoc importable? -2024-03-12T20:18:54Z #14 5.135 - Validating... -2024-03-12T20:18:54Z #14 5.213 jupyterlab 3.6.7 OK -2024-03-12T20:18:54Z #14 5.214 - Validating... -2024-03-12T20:18:54Z #14 5.432 jupyterlab_jupytext OK -2024-03-12T20:18:54Z #14 5.432 - Validating... -2024-03-12T20:18:54Z #14 5.437 mamba_gator 5.2.1 OK -2024-03-12T20:18:54Z #14 5.437 - Validating... -2024-03-12T20:18:54Z #14 5.454 nbdime 4.0.1 OK -2024-03-12T20:18:54Z #14 5.454 - Validating... -2024-03-12T20:18:55Z #14 6.555 panel.io.jupyter_server_extension OK -2024-03-12T20:18:55Z #14 6.555 - Validating... -2024-03-12T20:18:55Z #14 6.626 nbresuse OK -2024-03-12T20:18:55Z #14 6.626 - Validating... -2024-03-12T20:18:55Z #14 6.882 voila.server_extension OK -2024-03-12T20:18:55Z #14 6.882 - Validating... -2024-03-12T20:18:56Z #14 6.885 jupyterlab_git OK -2024-03-12T20:18:56Z #14 6.885 - Validating... -2024-03-12T20:18:56Z #14 6.885 voila 0.5.5 OK -2024-03-12T20:18:56Z #14 6.886 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-03-12T20:18:56Z #14 6.886 dask_labextension  enabled  -2024-03-12T20:18:56Z #14 6.886 jupyter_server_proxy  enabled  -2024-03-12T20:18:56Z #14 6.886 jupyter_resource_usage  enabled  -2024-03-12T20:18:56Z #14 6.886 jupyter_server_ydoc  enabled  -2024-03-12T20:18:56Z #14 6.886 jupyterlab  enabled  -2024-03-12T20:18:56Z #14 6.886 jupyterlab_jupytext  enabled  -2024-03-12T20:18:56Z #14 6.886 mamba_gator  enabled  -2024-03-12T20:18:56Z #14 6.886 nbdime  enabled  -2024-03-12T20:18:56Z #14 6.886 panel.io.jupyter_server_extension  enabled  -2024-03-12T20:18:56Z #14 6.886 nbresuse  enabled  -2024-03-12T20:18:56Z #14 6.886 voila.server_extension  enabled  -2024-03-12T20:18:56Z #14 6.886 jupyterlab_git  enabled  -2024-03-12T20:18:56Z #14 6.886 voila  enabled  -2024-03-12T20:18:56Z #14 DONE 7.3s -2024-03-12T20:18:56Z -2024-03-12T20:18:56Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-03-12T20:18:56Z #15 0.457 --2024-03-12 20:18:56-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-03-12T20:18:56Z #15 0.475 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.111.133, 185.199.108.133, ... -2024-03-12T20:18:56Z #15 0.479 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-03-12T20:18:56Z #15 0.483 HTTP request sent, awaiting response... 200 OK -2024-03-12T20:18:57Z #15 0.586 Length: 9769 (9.5K) [text/plain] -2024-03-12T20:18:57Z #15 0.586 Saving to: ‘/usr/local/bin/start.sh’ -2024-03-12T20:18:57Z #15 0.586 -2024-03-12T20:18:57Z #15 0.586 0K ......... 100% 6.70M=0.001s -2024-03-12T20:18:57Z #15 0.586 -2024-03-12T20:18:57Z #15 0.586 2024-03-12 20:18:56 (6.70 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-03-12T20:18:57Z #15 0.586 -2024-03-12T20:18:57Z #15 0.590 --2024-03-12 20:18:56-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-03-12T20:18:57Z #15 0.614 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2024-03-12T20:18:57Z #15 0.615 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-03-12T20:18:57Z #15 0.622 HTTP request sent, awaiting response... 200 OK -2024-03-12T20:18:57Z #15 0.718 Length: 359 [text/plain] -2024-03-12T20:18:57Z #15 0.718 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-03-12T20:18:57Z #15 0.719 -2024-03-12T20:18:57Z #15 0.719 0K 100% 15.8M=0s -2024-03-12T20:18:57Z #15 0.720 -2024-03-12T20:18:57Z #15 0.720 2024-03-12 20:18:57 (15.8 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-03-12T20:18:57Z #15 0.720 -2024-03-12T20:18:57Z #15 0.726 --2024-03-12 20:18:57-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-03-12T20:18:57Z #15 0.750 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2024-03-12T20:18:57Z #15 0.751 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-03-12T20:18:57Z #15 0.757 HTTP request sent, awaiting response... 200 OK -2024-03-12T20:18:57Z #15 0.839 Length: 852 [text/plain] -2024-03-12T20:18:57Z #15 0.839 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-03-12T20:18:57Z #15 0.839 -2024-03-12T20:18:57Z #15 0.839 0K 100% 34.9M=0s -2024-03-12T20:18:57Z #15 0.840 -2024-03-12T20:18:57Z #15 0.840 2024-03-12 20:18:57 (34.9 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-03-12T20:18:57Z #15 0.840 -2024-03-12T20:18:57Z #15 0.844 --2024-03-12 20:18:57-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-03-12T20:18:57Z #15 0.869 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2024-03-12T20:18:57Z #15 0.870 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-03-12T20:18:57Z #15 0.876 HTTP request sent, awaiting response... 200 OK -2024-03-12T20:18:57Z #15 0.974 Length: 1034 (1.0K) [text/plain] -2024-03-12T20:18:57Z #15 0.974 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-03-12T20:18:57Z #15 0.974 -2024-03-12T20:18:57Z #15 0.974 0K . 100% 41.7M=0s -2024-03-12T20:18:57Z #15 0.976 -2024-03-12T20:18:57Z #15 0.976 2024-03-12 20:18:57 (41.7 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-03-12T20:18:57Z #15 0.976 -2024-03-12T20:18:57Z #15 0.983 --2024-03-12 20:18:57-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-03-12T20:18:57Z #15 1.007 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2024-03-12T20:18:57Z #15 1.008 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-03-12T20:18:57Z #15 1.015 HTTP request sent, awaiting response... 200 OK -2024-03-12T20:18:57Z #15 1.097 Length: 1836 (1.8K) [text/plain] -2024-03-12T20:18:57Z #15 1.097 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-03-12T20:18:57Z #15 1.097 -2024-03-12T20:18:57Z #15 1.097 0K . 100% 6.80M=0s -2024-03-12T20:18:57Z #15 1.099 -2024-03-12T20:18:57Z #15 1.099 2024-03-12 20:18:57 (6.80 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-03-12T20:18:57Z #15 1.099 -2024-03-12T20:18:57Z #15 1.309 --2024-03-12 20:18:57-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-03-12T20:18:57Z #15 1.334 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.84, 3.162.103.63, 3.162.103.35, ... -2024-03-12T20:18:57Z #15 1.341 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.84|:443... connected. -2024-03-12T20:18:57Z #15 1.350 HTTP request sent, awaiting response... 200 OK -2024-03-12T20:18:57Z #15 1.569 Length: 129825343 (124M) [application/x-tar] -2024-03-12T20:18:57Z #15 1.569 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-03-12T20:18:57Z #15 1.569 -2024-03-12T20:18:57Z #15 1.569 0K .......... .......... .......... .......... .......... 0% 31.8M 4s -2024-03-12T20:18:57Z #15 1.570 50K .......... .......... .......... .......... .......... 0% 14.8M 6s -2024-03-12T20:18:57Z #15 1.574 100K .......... .......... .......... .......... .......... 0% 18.0M 6s -2024-03-12T20:18:57Z #15 1.577 150K .......... .......... .......... .......... .......... 0% 25.6M 6s -2024-03-12T20:18:57Z #15 1.578 200K .......... .......... .......... .......... .......... 0% 49.3M 5s -2024-03-12T20:18:57Z #15 1.579 250K .......... .......... .......... .......... .......... 0% 59.7M 5s -2024-03-12T20:18:57Z #15 1.580 300K .......... .......... .......... .......... .......... 0% 25.0M 5s -2024-03-12T20:18:57Z #15 1.582 350K .......... .......... .......... .......... .......... 0% 62.2M 4s -2024-03-12T20:18:57Z #15 1.582 400K .......... .......... .......... .......... .......... 0% 47.7M 4s -2024-03-12T20:18:57Z #15 1.586 450K .......... .......... .......... .......... .......... 0% 126M 4s -2024-03-12T20:18:57Z #15 1.586 500K .......... .......... .......... .......... .......... 0% 89.6M 4s -2024-03-12T20:18:57Z #15 1.586 550K .......... .......... .......... .......... .......... 0% 64.5M 4s -2024-03-12T20:18:57Z #15 1.586 600K .......... .......... .......... .......... .......... 0% 107M 3s -2024-03-12T20:18:57Z #15 1.586 650K .......... .......... .......... .......... .......... 0% 26.6M 3s -2024-03-12T20:18:57Z #15 1.588 700K .......... .......... .......... .......... .......... 0% 29.6M 3s -2024-03-12T20:18:57Z #15 1.589 750K .......... .......... .......... .......... .......... 0% 38.6M 3s -2024-03-12T20:18:57Z #15 1.590 800K .......... .......... .......... .......... .......... 0% 27.0M 4s -2024-03-12T20:18:57Z #15 1.592 850K .......... .......... .......... .......... .......... 0% 37.8M 3s -2024-03-12T20:18:57Z #15 1.593 900K .......... .......... .......... .......... .......... 0% 24.7M 4s -2024-03-12T20:18:57Z #15 1.596 950K .......... .......... .......... .......... .......... 0% 46.2M 4s -2024-03-12T20:18:57Z #15 1.596 1000K .......... .......... .......... .......... .......... 0% 59.9M 3s -2024-03-12T20:18:57Z #15 1.602 1050K .......... .......... .......... .......... .......... 0% 116M 3s -2024-03-12T20:18:57Z #15 1.602 1100K .......... .......... .......... .......... .......... 0% 108M 3s -2024-03-12T20:18:57Z #15 1.602 1150K .......... .......... .......... .......... .......... 0% 64.7M 3s -2024-03-12T20:18:57Z #15 1.602 1200K .......... .......... .......... .......... .......... 0% 119M 3s -2024-03-12T20:18:57Z #15 1.602 1250K .......... .......... .......... .......... .......... 1% 55.1M 3s -2024-03-12T20:18:57Z #15 1.602 1300K .......... .......... .......... .......... .......... 1% 106M 3s -2024-03-12T20:18:57Z #15 1.602 1350K .......... .......... .......... .......... .......... 1% 85.2M 3s -2024-03-12T20:18:57Z #15 1.602 1400K .......... .......... .......... .......... .......... 1% 97.3M 3s -2024-03-12T20:18:58Z #15 1.602 1450K .......... .......... .......... .......... .......... 1% 27.5M 3s -2024-03-12T20:18:58Z #15 1.609 1500K .......... .......... .......... .......... .......... 1% 26.0M 3s -2024-03-12T20:18:58Z #15 1.609 1550K .......... .......... .......... .......... .......... 1% 27.9M 3s -2024-03-12T20:18:58Z #15 1.609 1600K .......... .......... .......... .......... .......... 1% 49.7M 3s -2024-03-12T20:18:58Z #15 1.609 1650K .......... .......... .......... .......... .......... 1% 43.3M 3s -2024-03-12T20:18:58Z #15 1.614 1700K .......... .......... .......... .......... .......... 1% 91.2M 3s -2024-03-12T20:18:58Z #15 1.614 1750K .......... .......... .......... .......... .......... 1% 83.7M 3s -2024-03-12T20:18:58Z #15 1.614 1800K .......... .......... .......... .......... .......... 1% 104M 3s -2024-03-12T20:18:58Z #15 1.614 1850K .......... .......... .......... .......... .......... 1% 71.5M 3s -2024-03-12T20:18:58Z #15 1.614 1900K .......... .......... .......... .......... .......... 1% 86.5M 3s -2024-03-12T20:18:58Z #15 1.614 1950K .......... .......... .......... .......... .......... 1% 81.8M 3s -2024-03-12T20:18:58Z #15 1.614 2000K .......... .......... .......... .......... .......... 1% 106M 3s -2024-03-12T20:18:58Z #15 1.614 2050K .......... .......... .......... .......... .......... 1% 74.3M 3s -2024-03-12T20:18:58Z #15 1.614 2100K .......... .......... .......... .......... .......... 1% 32.7M 3s -2024-03-12T20:18:58Z #15 1.615 2150K .......... .......... .......... .......... .......... 1% 41.3M 3s -2024-03-12T20:18:58Z #15 1.617 2200K .......... .......... .......... .......... .......... 1% 34.8M 3s -2024-03-12T20:18:58Z #15 1.618 2250K .......... .......... .......... .......... .......... 1% 42.7M 3s -2024-03-12T20:18:58Z #15 1.619 2300K .......... .......... .......... .......... .......... 1% 32.6M 3s -2024-03-12T20:18:58Z #15 1.626 2350K .......... .......... .......... .......... .......... 1% 128M 3s -2024-03-12T20:18:58Z #15 1.626 2400K .......... .......... .......... .......... .......... 1% 110M 3s -2024-03-12T20:18:58Z #15 1.626 2450K .......... .......... .......... .......... .......... 1% 114M 3s -2024-03-12T20:18:58Z #15 1.626 2500K .......... .......... .......... .......... .......... 2% 68.4M 3s -2024-03-12T20:18:58Z #15 1.626 2550K .......... .......... .......... .......... .......... 2% 69.0M 3s -2024-03-12T20:18:58Z #15 1.626 2600K .......... .......... .......... .......... .......... 2% 72.5M 3s -2024-03-12T20:18:58Z #15 1.626 2650K .......... .......... .......... .......... .......... 2% 108M 3s -2024-03-12T20:18:58Z #15 1.626 2700K .......... .......... .......... .......... .......... 2% 108M 3s -2024-03-12T20:18:58Z #15 1.626 2750K .......... .......... .......... .......... .......... 2% 62.7M 3s -2024-03-12T20:18:58Z #15 1.626 2800K .......... .......... .......... .......... .......... 2% 56.6M 3s -2024-03-12T20:18:58Z #15 1.630 2850K .......... .......... .......... .......... .......... 2% 99.2M 2s -2024-03-12T20:18:58Z #15 1.630 2900K .......... .......... .......... .......... .......... 2% 89.2M 2s -2024-03-12T20:18:58Z #15 1.630 2950K .......... .......... .......... .......... .......... 2% 65.9M 2s -2024-03-12T20:18:58Z #15 1.630 3000K .......... .......... .......... .......... .......... 2% 112M 2s -2024-03-12T20:18:58Z #15 1.630 3050K .......... .......... .......... .......... .......... 2% 62.7M 2s -2024-03-12T20:18:58Z #15 1.630 3100K .......... .......... .......... .......... .......... 2% 133M 2s -2024-03-12T20:18:58Z #15 1.630 3150K .......... .......... .......... .......... .......... 2% 59.6M 2s -2024-03-12T20:18:58Z #15 1.631 3200K .......... .......... .......... .......... .......... 2% 100M 2s -2024-03-12T20:18:58Z #15 1.631 3250K .......... .......... .......... .......... .......... 2% 143M 2s -2024-03-12T20:18:58Z #15 1.632 3300K .......... .......... .......... .......... .......... 2% 101M 2s -2024-03-12T20:18:58Z #15 1.632 3350K .......... .......... .......... .......... .......... 2% 74.6M 2s -2024-03-12T20:18:58Z #15 1.633 3400K .......... .......... .......... .......... .......... 2% 83.1M 2s -2024-03-12T20:18:58Z #15 1.633 3450K .......... .......... .......... .......... .......... 2% 148M 2s -2024-03-12T20:18:58Z #15 1.633 3500K .......... .......... .......... .......... .......... 2% 90.0M 2s -2024-03-12T20:18:58Z #15 1.634 3550K .......... .......... .......... .......... .......... 2% 83.8M 2s -2024-03-12T20:18:58Z #15 1.634 3600K .......... .......... .......... .......... .......... 2% 138M 2s -2024-03-12T20:18:58Z #15 1.635 3650K .......... .......... .......... .......... .......... 2% 114M 2s -2024-03-12T20:18:58Z #15 1.635 3700K .......... .......... .......... .......... .......... 2% 111M 2s -2024-03-12T20:18:58Z #15 1.636 3750K .......... .......... .......... .......... .......... 2% 81.3M 2s -2024-03-12T20:18:58Z #15 1.636 3800K .......... .......... .......... .......... .......... 3% 104M 2s -2024-03-12T20:18:58Z #15 1.637 3850K .......... .......... .......... .......... .......... 3% 101M 2s -2024-03-12T20:18:58Z #15 1.637 3900K .......... .......... .......... .......... .......... 3% 134M 2s -2024-03-12T20:18:58Z #15 1.638 3950K .......... .......... .......... .......... .......... 3% 80.1M 2s -2024-03-12T20:18:58Z #15 1.638 4000K .......... .......... .......... .......... .......... 3% 86.0M 2s -2024-03-12T20:18:58Z #15 1.639 4050K .......... .......... .......... .......... .......... 3% 129M 2s -2024-03-12T20:18:58Z #15 1.639 4100K .......... .......... .......... .......... .......... 3% 68.0M 2s -2024-03-12T20:18:58Z #15 1.640 4150K .......... .......... .......... .......... .......... 3% 126M 2s -2024-03-12T20:18:58Z #15 1.640 4200K .......... .......... .......... .......... .......... 3% 140M 2s -2024-03-12T20:18:58Z #15 1.641 4250K .......... .......... .......... .......... .......... 3% 71.0M 2s -2024-03-12T20:18:58Z #15 1.642 4300K .......... .......... .......... .......... .......... 3% 137M 2s -2024-03-12T20:18:58Z #15 1.646 4350K .......... .......... .......... .......... .......... 3% 103M 2s -2024-03-12T20:18:58Z #15 1.646 4400K .......... .......... .......... .......... .......... 3% 86.8M 2s -2024-03-12T20:18:58Z #15 1.646 4450K .......... .......... .......... .......... .......... 3% 106M 2s -2024-03-12T20:18:58Z #15 1.646 4500K .......... .......... .......... .......... .......... 3% 63.0M 2s -2024-03-12T20:18:58Z #15 1.646 4550K .......... .......... .......... .......... .......... 3% 109M 2s -2024-03-12T20:18:58Z #15 1.646 4600K .......... .......... .......... .......... .......... 3% 93.6M 2s -2024-03-12T20:18:58Z #15 1.646 4650K .......... .......... .......... .......... .......... 3% 94.6M 2s -2024-03-12T20:18:58Z #15 1.646 4700K .......... .......... .......... .......... .......... 3% 55.2M 2s -2024-03-12T20:18:58Z #15 1.650 4750K .......... .......... .......... .......... .......... 3% 120M 2s -2024-03-12T20:18:58Z #15 1.650 4800K .......... .......... .......... .......... .......... 3% 84.5M 2s -2024-03-12T20:18:58Z #15 1.650 4850K .......... .......... .......... .......... .......... 3% 83.1M 2s -2024-03-12T20:18:58Z #15 1.650 4900K .......... .......... .......... .......... .......... 3% 72.4M 2s -2024-03-12T20:18:58Z #15 1.650 4950K .......... .......... .......... .......... .......... 3% 104M 2s -2024-03-12T20:18:58Z #15 1.650 5000K .......... .......... .......... .......... .......... 3% 93.8M 2s -2024-03-12T20:18:58Z #15 1.650 5050K .......... .......... .......... .......... .......... 4% 64.4M 2s -2024-03-12T20:18:58Z #15 1.651 5100K .......... .......... .......... .......... .......... 4% 107M 2s -2024-03-12T20:18:58Z #15 1.651 5150K .......... .......... .......... .......... .......... 4% 116M 2s -2024-03-12T20:18:58Z #15 1.651 5200K .......... .......... .......... .......... .......... 4% 129M 2s -2024-03-12T20:18:58Z #15 1.652 5250K .......... .......... .......... .......... .......... 4% 157M 2s -2024-03-12T20:18:58Z #15 1.652 5300K .......... .......... .......... .......... .......... 4% 89.4M 2s -2024-03-12T20:18:58Z #15 1.653 5350K .......... .......... .......... .......... .......... 4% 105M 2s -2024-03-12T20:18:58Z #15 1.653 5400K .......... .......... .......... .......... .......... 4% 124M 2s -2024-03-12T20:18:58Z #15 1.654 5450K .......... .......... .......... .......... .......... 4% 60.4M 2s -2024-03-12T20:18:58Z #15 1.654 5500K .......... .......... .......... .......... .......... 4% 131M 2s -2024-03-12T20:18:58Z #15 1.655 5550K .......... .......... .......... .......... .......... 4% 67.4M 2s -2024-03-12T20:18:58Z #15 1.656 5600K .......... .......... .......... .......... .......... 4% 127M 2s -2024-03-12T20:18:58Z #15 1.656 5650K .......... .......... .......... .......... .......... 4% 120M 2s -2024-03-12T20:18:58Z #15 1.656 5700K .......... .......... .......... .......... .......... 4% 104M 2s -2024-03-12T20:18:58Z #15 1.657 5750K .......... .......... .......... .......... .......... 4% 99.5M 2s -2024-03-12T20:18:58Z #15 1.657 5800K .......... .......... .......... .......... .......... 4% 98.4M 2s -2024-03-12T20:18:58Z #15 1.658 5850K .......... .......... .......... .......... .......... 4% 71.9M 2s -2024-03-12T20:18:58Z #15 1.660 5900K .......... .......... .......... .......... .......... 4% 92.1M 2s -2024-03-12T20:18:58Z #15 1.660 5950K .......... .......... .......... .......... .......... 4% 116M 2s -2024-03-12T20:18:58Z #15 1.660 6000K .......... .......... .......... .......... .......... 4% 88.3M 2s -2024-03-12T20:18:58Z #15 1.660 6050K .......... .......... .......... .......... .......... 4% 90.4M 2s -2024-03-12T20:18:58Z #15 1.660 6100K .......... .......... .......... .......... .......... 4% 72.3M 2s -2024-03-12T20:18:58Z #15 1.661 6150K .......... .......... .......... .......... .......... 4% 131M 2s -2024-03-12T20:18:58Z #15 1.666 6200K .......... .......... .......... .......... .......... 4% 55.7M 2s -2024-03-12T20:18:58Z #15 1.666 6250K .......... .......... .......... .......... .......... 4% 88.1M 2s -2024-03-12T20:18:58Z #15 1.666 6300K .......... .......... .......... .......... .......... 5% 99.8M 2s -2024-03-12T20:18:58Z #15 1.666 6350K .......... .......... .......... .......... .......... 5% 121M 2s -2024-03-12T20:18:58Z #15 1.666 6400K .......... .......... .......... .......... .......... 5% 76.6M 2s -2024-03-12T20:18:58Z #15 1.666 6450K .......... .......... .......... .......... .......... 5% 80.0M 2s -2024-03-12T20:18:58Z #15 1.666 6500K .......... .......... .......... .......... .......... 5% 82.4M 2s -2024-03-12T20:18:58Z #15 1.666 6550K .......... .......... .......... .......... .......... 5% 58.1M 2s -2024-03-12T20:18:58Z #15 1.666 6600K .......... .......... .......... .......... .......... 5% 80.5M 2s -2024-03-12T20:18:58Z #15 1.667 6650K .......... .......... .......... .......... .......... 5% 115M 2s -2024-03-12T20:18:58Z #15 1.668 6700K .......... .......... .......... .......... .......... 5% 99.7M 2s -2024-03-12T20:18:58Z #15 1.668 6750K .......... .......... .......... .......... .......... 5% 74.5M 2s -2024-03-12T20:18:58Z #15 1.669 6800K .......... .......... .......... .......... .......... 5% 115M 2s -2024-03-12T20:18:58Z #15 1.669 6850K .......... .......... .......... .......... .......... 5% 90.3M 2s -2024-03-12T20:18:58Z #15 1.670 6900K .......... .......... .......... .......... .......... 5% 78.2M 2s -2024-03-12T20:18:58Z #15 1.670 6950K .......... .......... .......... .......... .......... 5% 77.9M 2s -2024-03-12T20:18:58Z #15 1.671 7000K .......... .......... .......... .......... .......... 5% 102M 2s -2024-03-12T20:18:58Z #15 1.671 7050K .......... .......... .......... .......... .......... 5% 87.5M 2s -2024-03-12T20:18:58Z #15 1.672 7100K .......... .......... .......... .......... .......... 5% 87.0M 2s -2024-03-12T20:18:58Z #15 1.673 7150K .......... .......... .......... .......... .......... 5% 138M 2s -2024-03-12T20:18:58Z #15 1.673 7200K .......... .......... .......... .......... .......... 5% 98.5M 2s -2024-03-12T20:18:58Z #15 1.673 7250K .......... .......... .......... .......... .......... 5% 79.3M 2s -2024-03-12T20:18:58Z #15 1.678 7300K .......... .......... .......... .......... .......... 5% 123M 2s -2024-03-12T20:18:58Z #15 1.678 7350K .......... .......... .......... .......... .......... 5% 81.5M 2s -2024-03-12T20:18:58Z #15 1.678 7400K .......... .......... .......... .......... .......... 5% 75.2M 2s -2024-03-12T20:18:58Z #15 1.678 7450K .......... .......... .......... .......... .......... 5% 121M 2s -2024-03-12T20:18:58Z #15 1.678 7500K .......... .......... .......... .......... .......... 5% 107M 2s -2024-03-12T20:18:58Z #15 1.678 7550K .......... .......... .......... .......... .......... 5% 71.7M 2s -2024-03-12T20:18:58Z #15 1.678 7600K .......... .......... .......... .......... .......... 6% 75.2M 2s -2024-03-12T20:18:58Z #15 1.678 7650K .......... .......... .......... .......... .......... 6% 62.2M 2s -2024-03-12T20:18:58Z #15 1.679 7700K .......... .......... .......... .......... .......... 6% 105M 2s -2024-03-12T20:18:58Z #15 1.679 7750K .......... .......... .......... .......... .......... 6% 115M 2s -2024-03-12T20:18:58Z #15 1.679 7800K .......... .......... .......... .......... .......... 6% 133M 2s -2024-03-12T20:18:58Z #15 1.680 7850K .......... .......... .......... .......... .......... 6% 84.2M 2s -2024-03-12T20:18:58Z #15 1.680 7900K .......... .......... .......... .......... .......... 6% 68.3M 2s -2024-03-12T20:18:58Z #15 1.681 7950K .......... .......... .......... .......... .......... 6% 75.7M 2s -2024-03-12T20:18:58Z #15 1.682 8000K .......... .......... .......... .......... .......... 6% 78.8M 2s -2024-03-12T20:18:58Z #15 1.682 8050K .......... .......... .......... .......... .......... 6% 126M 2s -2024-03-12T20:18:58Z #15 1.683 8100K .......... .......... .......... .......... .......... 6% 132M 2s -2024-03-12T20:18:58Z #15 1.683 8150K .......... .......... .......... .......... .......... 6% 102M 2s -2024-03-12T20:18:58Z #15 1.684 8200K .......... .......... .......... .......... .......... 6% 100M 2s -2024-03-12T20:18:58Z #15 1.684 8250K .......... .......... .......... .......... .......... 6% 67.7M 2s -2024-03-12T20:18:58Z #15 1.685 8300K .......... .......... .......... .......... .......... 6% 108M 2s -2024-03-12T20:18:58Z #15 1.685 8350K .......... .......... .......... .......... .......... 6% 127M 2s -2024-03-12T20:18:58Z #15 1.686 8400K .......... .......... .......... .......... .......... 6% 66.1M 2s -2024-03-12T20:18:58Z #15 1.686 8450K .......... .......... .......... .......... .......... 6% 100M 2s -2024-03-12T20:18:58Z #15 1.687 8500K .......... .......... .......... .......... .......... 6% 75.3M 2s -2024-03-12T20:18:58Z #15 1.688 8550K .......... .......... .......... .......... .......... 6% 109M 2s -2024-03-12T20:18:58Z #15 1.688 8600K .......... .......... .......... .......... .......... 6% 95.3M 2s -2024-03-12T20:18:58Z #15 1.688 8650K .......... .......... .......... .......... .......... 6% 68.8M 2s -2024-03-12T20:18:58Z #15 1.689 8700K .......... .......... .......... .......... .......... 6% 94.1M 2s -2024-03-12T20:18:58Z #15 1.690 8750K .......... .......... .......... .......... .......... 6% 85.8M 2s -2024-03-12T20:18:58Z #15 1.690 8800K .......... .......... .......... .......... .......... 6% 57.7M 2s -2024-03-12T20:18:58Z #15 1.691 8850K .......... .......... .......... .......... .......... 7% 114M 2s -2024-03-12T20:18:58Z #15 1.691 8900K .......... .......... .......... .......... .......... 7% 76.0M 2s -2024-03-12T20:18:58Z #15 1.692 8950K .......... .......... .......... .......... .......... 7% 104M 2s -2024-03-12T20:18:58Z #15 1.693 9000K .......... .......... .......... .......... .......... 7% 129M 2s -2024-03-12T20:18:58Z #15 1.693 9050K .......... .......... .......... .......... .......... 7% 77.8M 2s -2024-03-12T20:18:58Z #15 1.694 9100K .......... .......... .......... .......... .......... 7% 92.5M 2s -2024-03-12T20:18:58Z #15 1.694 9150K .......... .......... .......... .......... .......... 7% 75.2M 2s -2024-03-12T20:18:58Z #15 1.695 9200K .......... .......... .......... .......... .......... 7% 140M 2s -2024-03-12T20:18:58Z #15 1.696 9250K .......... .......... .......... .......... .......... 7% 88.6M 2s -2024-03-12T20:18:58Z #15 1.696 9300K .......... .......... .......... .......... .......... 7% 108M 2s -2024-03-12T20:18:58Z #15 1.696 9350K .......... .......... .......... .......... .......... 7% 137M 2s -2024-03-12T20:18:58Z #15 1.697 9400K .......... .......... .......... .......... .......... 7% 92.4M 2s -2024-03-12T20:18:58Z #15 1.697 9450K .......... .......... .......... .......... .......... 7% 101M 2s -2024-03-12T20:18:58Z #15 1.698 9500K .......... .......... .......... .......... .......... 7% 130M 2s -2024-03-12T20:18:58Z #15 1.699 9550K .......... .......... .......... .......... .......... 7% 94.5M 2s -2024-03-12T20:18:58Z #15 1.699 9600K .......... .......... .......... .......... .......... 7% 145M 2s -2024-03-12T20:18:58Z #15 1.699 9650K .......... .......... .......... .......... .......... 7% 74.4M 2s -2024-03-12T20:18:58Z #15 1.700 9700K .......... .......... .......... .......... .......... 7% 73.1M 2s -2024-03-12T20:18:58Z #15 1.701 9750K .......... .......... .......... .......... .......... 7% 104M 2s -2024-03-12T20:18:58Z #15 1.701 9800K .......... .......... .......... .......... .......... 7% 131M 2s -2024-03-12T20:18:58Z #15 1.701 9850K .......... .......... .......... .......... .......... 7% 115M 2s -2024-03-12T20:18:58Z #15 1.702 9900K .......... .......... .......... .......... .......... 7% 68.2M 2s -2024-03-12T20:18:58Z #15 1.706 9950K .......... .......... .......... .......... .......... 7% 134M 2s -2024-03-12T20:18:58Z #15 1.706 10000K .......... .......... .......... .......... .......... 7% 76.4M 2s -2024-03-12T20:18:58Z #15 1.706 10050K .......... .......... .......... .......... .......... 7% 103M 2s -2024-03-12T20:18:58Z #15 1.706 10100K .......... .......... .......... .......... .......... 8% 113M 2s -2024-03-12T20:18:58Z #15 1.706 10150K .......... .......... .......... .......... .......... 8% 92.7M 2s -2024-03-12T20:18:58Z #15 1.706 10200K .......... .......... .......... .......... .......... 8% 94.3M 2s -2024-03-12T20:18:58Z #15 1.706 10250K .......... .......... .......... .......... .......... 8% 123M 2s -2024-03-12T20:18:58Z #15 1.706 10300K .......... .......... .......... .......... .......... 8% 107M 2s -2024-03-12T20:18:58Z #15 1.714 10350K .......... .......... .......... .......... .......... 8% 64.3M 2s -2024-03-12T20:18:58Z #15 1.714 10400K .......... .......... .......... .......... .......... 8% 127M 2s -2024-03-12T20:18:58Z #15 1.714 10450K .......... .......... .......... .......... .......... 8% 65.6M 2s -2024-03-12T20:18:58Z #15 1.714 10500K .......... .......... .......... .......... .......... 8% 43.6M 2s -2024-03-12T20:18:58Z #15 1.714 10550K .......... .......... .......... .......... .......... 8% 59.5M 2s -2024-03-12T20:18:58Z #15 1.714 10600K .......... .......... .......... .......... .......... 8% 79.6M 2s -2024-03-12T20:18:58Z #15 1.714 10650K .......... .......... .......... .......... .......... 8% 134M 2s -2024-03-12T20:18:58Z #15 1.715 10700K .......... .......... .......... .......... .......... 8% 71.3M 2s -2024-03-12T20:18:58Z #15 1.715 10750K .......... .......... .......... .......... .......... 8% 47.1M 2s -2024-03-12T20:18:58Z #15 1.715 10800K .......... .......... .......... .......... .......... 8% 49.3M 2s -2024-03-12T20:18:58Z #15 1.715 10850K .......... .......... .......... .......... .......... 8% 68.4M 2s -2024-03-12T20:18:58Z #15 1.715 10900K .......... .......... .......... .......... .......... 8% 128M 2s -2024-03-12T20:18:58Z #15 1.715 10950K .......... .......... .......... .......... .......... 8% 94.6M 2s -2024-03-12T20:18:58Z #15 1.715 11000K .......... .......... .......... .......... .......... 8% 123M 2s -2024-03-12T20:18:58Z #15 1.715 11050K .......... .......... .......... .......... .......... 8% 63.4M 2s -2024-03-12T20:18:58Z #15 1.716 11100K .......... .......... .......... .......... .......... 8% 99.4M 2s -2024-03-12T20:18:58Z #15 1.717 11150K .......... .......... .......... .......... .......... 8% 75.9M 2s -2024-03-12T20:18:58Z #15 1.717 11200K .......... .......... .......... .......... .......... 8% 129M 2s -2024-03-12T20:18:58Z #15 1.718 11250K .......... .......... .......... .......... .......... 8% 119M 2s -2024-03-12T20:18:58Z #15 1.718 11300K .......... .......... .......... .......... .......... 8% 69.5M 2s -2024-03-12T20:18:58Z #15 1.719 11350K .......... .......... .......... .......... .......... 8% 108M 2s -2024-03-12T20:18:58Z #15 1.719 11400K .......... .......... .......... .......... .......... 9% 80.3M 2s -2024-03-12T20:18:58Z #15 1.722 11450K .......... .......... .......... .......... .......... 9% 126M 2s -2024-03-12T20:18:58Z #15 1.722 11500K .......... .......... .......... .......... .......... 9% 123M 2s -2024-03-12T20:18:58Z #15 1.722 11550K .......... .......... .......... .......... .......... 9% 51.5M 2s -2024-03-12T20:18:58Z #15 1.722 11600K .......... .......... .......... .......... .......... 9% 49.2M 2s -2024-03-12T20:18:58Z #15 1.723 11650K .......... .......... .......... .......... .......... 9% 67.3M 2s -2024-03-12T20:18:58Z #15 1.723 11700K .......... .......... .......... .......... .......... 9% 87.2M 2s -2024-03-12T20:18:58Z #15 1.726 11750K .......... .......... .......... .......... .......... 9% 96.3M 2s -2024-03-12T20:18:58Z #15 1.726 11800K .......... .......... .......... .......... .......... 9% 130M 2s -2024-03-12T20:18:58Z #15 1.726 11850K .......... .......... .......... .......... .......... 9% 72.2M 2s -2024-03-12T20:18:58Z #15 1.726 11900K .......... .......... .......... .......... .......... 9% 59.8M 2s -2024-03-12T20:18:58Z #15 1.726 11950K .......... .......... .......... .......... .......... 9% 60.0M 2s -2024-03-12T20:18:58Z #15 1.727 12000K .......... .......... .......... .......... .......... 9% 126M 2s -2024-03-12T20:18:58Z #15 1.727 12050K .......... .......... .......... .......... .......... 9% 104M 2s -2024-03-12T20:18:58Z #15 1.728 12100K .......... .......... .......... .......... .......... 9% 92.1M 2s -2024-03-12T20:18:58Z #15 1.729 12150K .......... .......... .......... .......... .......... 9% 140M 2s -2024-03-12T20:18:58Z #15 1.729 12200K .......... .......... .......... .......... .......... 9% 81.4M 2s -2024-03-12T20:18:58Z #15 1.729 12250K .......... .......... .......... .......... .......... 9% 95.2M 2s -2024-03-12T20:18:58Z #15 1.735 12300K .......... .......... .......... .......... .......... 9% 81.4M 2s -2024-03-12T20:18:58Z #15 1.735 12350K .......... .......... .......... .......... .......... 9% 43.1M 2s -2024-03-12T20:18:58Z #15 1.735 12400K .......... .......... .......... .......... .......... 9% 71.1M 2s -2024-03-12T20:18:58Z #15 1.735 12450K .......... .......... .......... .......... .......... 9% 55.4M 2s -2024-03-12T20:18:58Z #15 1.735 12500K .......... .......... .......... .......... .......... 9% 57.3M 2s -2024-03-12T20:18:58Z #15 1.735 12550K .......... .......... .......... .......... .......... 9% 95.4M 2s -2024-03-12T20:18:58Z #15 1.735 12600K .......... .......... .......... .......... .......... 9% 99.9M 2s -2024-03-12T20:18:58Z #15 1.735 12650K .......... .......... .......... .......... .......... 10% 127M 1s -2024-03-12T20:18:58Z #15 1.735 12700K .......... .......... .......... .......... .......... 10% 65.5M 1s -2024-03-12T20:18:58Z #15 1.736 12750K .......... .......... .......... .......... .......... 10% 122M 1s -2024-03-12T20:18:58Z #15 1.737 12800K .......... .......... .......... .......... .......... 10% 65.1M 1s -2024-03-12T20:18:58Z #15 1.737 12850K .......... .......... .......... .......... .......... 10% 121M 1s -2024-03-12T20:18:58Z #15 1.738 12900K .......... .......... .......... .......... .......... 10% 116M 1s -2024-03-12T20:18:58Z #15 1.738 12950K .......... .......... .......... .......... .......... 10% 55.0M 1s -2024-03-12T20:18:58Z #15 1.739 13000K .......... .......... .......... .......... .......... 10% 117M 1s -2024-03-12T20:18:58Z #15 1.739 13050K .......... .......... .......... .......... .......... 10% 74.5M 1s -2024-03-12T20:18:58Z #15 1.740 13100K .......... .......... .......... .......... .......... 10% 73.9M 1s -2024-03-12T20:18:58Z #15 1.741 13150K .......... .......... .......... .......... .......... 10% 112M 1s -2024-03-12T20:18:58Z #15 1.741 13200K .......... .......... .......... .......... .......... 10% 87.2M 1s -2024-03-12T20:18:58Z #15 1.743 13250K .......... .......... .......... .......... .......... 10% 79.7M 1s -2024-03-12T20:18:58Z #15 1.743 13300K .......... .......... .......... .......... .......... 10% 57.9M 1s -2024-03-12T20:18:58Z #15 1.743 13350K .......... .......... .......... .......... .......... 10% 90.9M 1s -2024-03-12T20:18:58Z #15 1.746 13400K .......... .......... .......... .......... .......... 10% 83.3M 1s -2024-03-12T20:18:58Z #15 1.746 13450K .......... .......... .......... .......... .......... 10% 76.9M 1s -2024-03-12T20:18:58Z #15 1.746 13500K .......... .......... .......... .......... .......... 10% 50.8M 1s -2024-03-12T20:18:58Z #15 1.746 13550K .......... .......... .......... .......... .......... 10% 102M 1s -2024-03-12T20:18:58Z #15 1.746 13600K .......... .......... .......... .......... .......... 10% 110M 1s -2024-03-12T20:18:58Z #15 1.747 13650K .......... .......... .......... .......... .......... 10% 107M 1s -2024-03-12T20:18:58Z #15 1.747 13700K .......... .......... .......... .......... .......... 10% 120M 1s -2024-03-12T20:18:58Z #15 1.748 13750K .......... .......... .......... .......... .......... 10% 80.5M 1s -2024-03-12T20:18:58Z #15 1.748 13800K .......... .......... .......... .......... .......... 10% 142M 1s -2024-03-12T20:18:58Z #15 1.749 13850K .......... .......... .......... .......... .......... 10% 119M 1s -2024-03-12T20:18:58Z #15 1.749 13900K .......... .......... .......... .......... .......... 11% 137M 1s -2024-03-12T20:18:58Z #15 1.750 13950K .......... .......... .......... .......... .......... 11% 76.8M 1s -2024-03-12T20:18:58Z #15 1.751 14000K .......... .......... .......... .......... .......... 11% 161M 1s -2024-03-12T20:18:58Z #15 1.751 14050K .......... .......... .......... .......... .......... 11% 54.8M 1s -2024-03-12T20:18:58Z #15 1.752 14100K .......... .......... .......... .......... .......... 11% 99.8M 1s -2024-03-12T20:18:58Z #15 1.752 14150K .......... .......... .......... .......... .......... 11% 88.7M 1s -2024-03-12T20:18:58Z #15 1.752 14200K .......... .......... .......... .......... .......... 11% 99.1M 1s -2024-03-12T20:18:58Z #15 1.754 14250K .......... .......... .......... .......... .......... 11% 140M 1s -2024-03-12T20:18:58Z #15 1.754 14300K .......... .......... .......... .......... .......... 11% 58.1M 1s -2024-03-12T20:18:58Z #15 1.755 14350K .......... .......... .......... .......... .......... 11% 78.8M 1s -2024-03-12T20:18:58Z #15 1.755 14400K .......... .......... .......... .......... .......... 11% 70.4M 1s -2024-03-12T20:18:58Z #15 1.756 14450K .......... .......... .......... .......... .......... 11% 117M 1s -2024-03-12T20:18:58Z #15 1.756 14500K .......... .......... .......... .......... .......... 11% 105M 1s -2024-03-12T20:18:58Z #15 1.756 14550K .......... .......... .......... .......... .......... 11% 65.1M 1s -2024-03-12T20:18:58Z #15 1.758 14600K .......... .......... .......... .......... .......... 11% 119M 1s -2024-03-12T20:18:58Z #15 1.758 14650K .......... .......... .......... .......... .......... 11% 50.6M 1s -2024-03-12T20:18:58Z #15 1.759 14700K .......... .......... .......... .......... .......... 11% 137M 1s -2024-03-12T20:18:58Z #15 1.759 14750K .......... .......... .......... .......... .......... 11% 84.3M 1s -2024-03-12T20:18:58Z #15 1.760 14800K .......... .......... .......... .......... .......... 11% 65.0M 1s -2024-03-12T20:18:58Z #15 1.760 14850K .......... .......... .......... .......... .......... 11% 78.2M 1s -2024-03-12T20:18:58Z #15 1.761 14900K .......... .......... .......... .......... .......... 11% 78.6M 1s -2024-03-12T20:18:58Z #15 1.762 14950K .......... .......... .......... .......... .......... 11% 117M 1s -2024-03-12T20:18:58Z #15 1.762 15000K .......... .......... .......... .......... .......... 11% 49.9M 1s -2024-03-12T20:18:58Z #15 1.764 15050K .......... .......... .......... .......... .......... 11% 96.2M 1s -2024-03-12T20:18:58Z #15 1.764 15100K .......... .......... .......... .......... .......... 11% 74.1M 1s -2024-03-12T20:18:58Z #15 1.764 15150K .......... .......... .......... .......... .......... 11% 33.5M 1s -2024-03-12T20:18:58Z #15 1.765 15200K .......... .......... .......... .......... .......... 12% 123M 1s -2024-03-12T20:18:58Z #15 1.768 15250K .......... .......... .......... .......... .......... 12% 69.7M 1s -2024-03-12T20:18:58Z #15 1.768 15300K .......... .......... .......... .......... .......... 12% 38.3M 1s -2024-03-12T20:18:58Z #15 1.768 15350K .......... .......... .......... .......... .......... 12% 67.0M 1s -2024-03-12T20:18:58Z #15 1.768 15400K .......... .......... .......... .......... .......... 12% 63.3M 1s -2024-03-12T20:18:58Z #15 1.770 15450K .......... .......... .......... .......... .......... 12% 132M 1s -2024-03-12T20:18:58Z #15 1.770 15500K .......... .......... .......... .......... .......... 12% 55.6M 1s -2024-03-12T20:18:58Z #15 1.770 15550K .......... .......... .......... .......... .......... 12% 62.5M 1s -2024-03-12T20:18:58Z #15 1.772 15600K .......... .......... .......... .......... .......... 12% 77.8M 1s -2024-03-12T20:18:58Z #15 1.772 15650K .......... .......... .......... .......... .......... 12% 75.6M 1s -2024-03-12T20:18:58Z #15 1.774 15700K .......... .......... .......... .......... .......... 12% 57.1M 1s -2024-03-12T20:18:58Z #15 1.774 15750K .......... .......... .......... .......... .......... 12% 115M 1s -2024-03-12T20:18:58Z #15 1.774 15800K .......... .......... .......... .......... .......... 12% 47.6M 1s -2024-03-12T20:18:58Z #15 1.776 15850K .......... .......... .......... .......... .......... 12% 86.1M 1s -2024-03-12T20:18:58Z #15 1.776 15900K .......... .......... .......... .......... .......... 12% 103M 1s -2024-03-12T20:18:58Z #15 1.776 15950K .......... .......... .......... .......... .......... 12% 24.2M 1s -2024-03-12T20:18:58Z #15 1.782 16000K .......... .......... .......... .......... .......... 12% 113M 1s -2024-03-12T20:18:58Z #15 1.782 16050K .......... .......... .......... .......... .......... 12% 155M 1s -2024-03-12T20:18:58Z #15 1.782 16100K .......... .......... .......... .......... .......... 12% 32.8M 1s -2024-03-12T20:18:58Z #15 1.782 16150K .......... .......... .......... .......... .......... 12% 38.1M 1s -2024-03-12T20:18:58Z #15 1.782 16200K .......... .......... .......... .......... .......... 12% 53.1M 1s -2024-03-12T20:18:58Z #15 1.784 16250K .......... .......... .......... .......... .......... 12% 124M 1s -2024-03-12T20:18:58Z #15 1.784 16300K .......... .......... .......... .......... .......... 12% 102M 1s -2024-03-12T20:18:58Z #15 1.784 16350K .......... .......... .......... .......... .......... 12% 77.9M 1s -2024-03-12T20:18:58Z #15 1.784 16400K .......... .......... .......... .......... .......... 12% 51.8M 1s -2024-03-12T20:18:58Z #15 1.785 16450K .......... .......... .......... .......... .......... 13% 76.8M 1s -2024-03-12T20:18:58Z #15 1.785 16500K .......... .......... .......... .......... .......... 13% 52.0M 1s -2024-03-12T20:18:58Z #15 1.788 16550K .......... .......... .......... .......... .......... 13% 71.4M 1s -2024-03-12T20:18:58Z #15 1.788 16600K .......... .......... .......... .......... .......... 13% 127M 1s -2024-03-12T20:18:58Z #15 1.788 16650K .......... .......... .......... .......... .......... 13% 41.5M 1s -2024-03-12T20:18:58Z #15 1.790 16700K .......... .......... .......... .......... .......... 13% 90.2M 1s -2024-03-12T20:18:58Z #15 1.790 16750K .......... .......... .......... .......... .......... 13% 106M 1s -2024-03-12T20:18:58Z #15 1.790 16800K .......... .......... .......... .......... .......... 13% 78.0M 1s -2024-03-12T20:18:58Z #15 1.790 16850K .......... .......... .......... .......... .......... 13% 59.6M 1s -2024-03-12T20:18:58Z #15 1.791 16900K .......... .......... .......... .......... .......... 13% 68.0M 1s -2024-03-12T20:18:58Z #15 1.792 16950K .......... .......... .......... .......... .......... 13% 149M 1s -2024-03-12T20:18:58Z #15 1.792 17000K .......... .......... .......... .......... .......... 13% 119M 1s -2024-03-12T20:18:58Z #15 1.792 17050K .......... .......... .......... .......... .......... 13% 49.4M 1s -2024-03-12T20:18:58Z #15 1.794 17100K .......... .......... .......... .......... .......... 13% 149M 1s -2024-03-12T20:18:58Z #15 1.794 17150K .......... .......... .......... .......... .......... 13% 52.6M 1s -2024-03-12T20:18:58Z #15 1.795 17200K .......... .......... .......... .......... .......... 13% 146M 1s -2024-03-12T20:18:58Z #15 1.795 17250K .......... .......... .......... .......... .......... 13% 44.1M 1s -2024-03-12T20:18:58Z #15 1.796 17300K .......... .......... .......... .......... .......... 13% 335K 2s -2024-03-12T20:18:58Z #15 1.945 17350K .......... .......... .......... .......... .......... 13% 63.2M 2s -2024-03-12T20:18:58Z #15 1.946 17400K .......... .......... .......... .......... .......... 13% 122M 2s -2024-03-12T20:18:58Z #15 1.946 17450K .......... .......... .......... .......... .......... 13% 70.5M 2s -2024-03-12T20:18:58Z #15 1.947 17500K .......... .......... .......... .......... .......... 13% 75.2M 2s -2024-03-12T20:18:58Z #15 1.948 17550K .......... .......... .......... .......... .......... 13% 71.5M 2s -2024-03-12T20:18:58Z #15 1.949 17600K .......... .......... .......... .......... .......... 13% 101M 2s -2024-03-12T20:18:58Z #15 1.949 17650K .......... .......... .......... .......... .......... 13% 85.4M 2s -2024-03-12T20:18:58Z #15 1.950 17700K .......... .......... .......... .......... .......... 14% 88.4M 2s -2024-03-12T20:18:58Z #15 1.950 17750K .......... .......... .......... .......... .......... 14% 129M 2s -2024-03-12T20:18:58Z #15 1.950 17800K .......... .......... .......... .......... .......... 14% 85.0M 2s -2024-03-12T20:18:58Z #15 1.951 17850K .......... .......... .......... .......... .......... 14% 102M 2s -2024-03-12T20:18:58Z #15 1.952 17900K .......... .......... .......... .......... .......... 14% 64.2M 2s -2024-03-12T20:18:58Z #15 1.952 17950K .......... .......... .......... .......... .......... 14% 69.2M 2s -2024-03-12T20:18:58Z #15 1.953 18000K .......... .......... .......... .......... .......... 14% 65.2M 2s -2024-03-12T20:18:58Z #15 1.954 18050K .......... .......... .......... .......... .......... 14% 40.7M 2s -2024-03-12T20:18:58Z #15 1.955 18100K .......... .......... .......... .......... .......... 14% 40.4M 2s -2024-03-12T20:18:58Z #15 1.956 18150K .......... .......... .......... .......... .......... 14% 45.1M 2s -2024-03-12T20:18:58Z #15 1.958 18200K .......... .......... .......... .......... .......... 14% 28.9M 2s -2024-03-12T20:18:58Z #15 1.962 18250K .......... .......... .......... .......... .......... 14% 171M 2s -2024-03-12T20:18:58Z #15 1.962 18300K .......... .......... .......... .......... .......... 14% 152M 2s -2024-03-12T20:18:58Z #15 1.962 18350K .......... .......... .......... .......... .......... 14% 160M 2s -2024-03-12T20:18:58Z #15 1.962 18400K .......... .......... .......... .......... .......... 14% 141M 2s -2024-03-12T20:18:58Z #15 1.962 18450K .......... .......... .......... .......... .......... 14% 164M 2s -2024-03-12T20:18:58Z #15 1.962 18500K .......... .......... .......... .......... .......... 14% 171M 2s -2024-03-12T20:18:58Z #15 1.962 18550K .......... .......... .......... .......... .......... 14% 151M 2s -2024-03-12T20:18:58Z #15 1.962 18600K .......... .......... .......... .......... .......... 14% 152M 2s -2024-03-12T20:18:58Z #15 1.962 18650K .......... .......... .......... .......... .......... 14% 157M 2s -2024-03-12T20:18:58Z #15 1.962 18700K .......... .......... .......... .......... .......... 14% 152M 2s -2024-03-12T20:18:58Z #15 1.962 18750K .......... .......... .......... .......... .......... 14% 120M 2s -2024-03-12T20:18:58Z #15 1.962 18800K .......... .......... .......... .......... .......... 14% 167M 2s -2024-03-12T20:18:58Z #15 1.963 18850K .......... .......... .......... .......... .......... 14% 170M 2s -2024-03-12T20:18:58Z #15 1.963 18900K .......... .......... .......... .......... .......... 14% 142M 2s -2024-03-12T20:18:58Z #15 1.964 18950K .......... .......... .......... .......... .......... 14% 150M 2s -2024-03-12T20:18:58Z #15 1.964 19000K .......... .......... .......... .......... .......... 15% 128M 2s -2024-03-12T20:18:58Z #15 1.964 19050K .......... .......... .......... .......... .......... 15% 158M 2s -2024-03-12T20:18:58Z #15 1.964 19100K .......... .......... .......... .......... .......... 15% 156M 2s -2024-03-12T20:18:58Z #15 1.965 19150K .......... .......... .......... .......... .......... 15% 141M 2s -2024-03-12T20:18:58Z #15 1.965 19200K .......... .......... .......... .......... .......... 15% 123M 2s -2024-03-12T20:18:58Z #15 1.966 19250K .......... .......... .......... .......... .......... 15% 133M 2s -2024-03-12T20:18:58Z #15 1.966 19300K .......... .......... .......... .......... .......... 15% 127M 2s -2024-03-12T20:18:58Z #15 1.966 19350K .......... .......... .......... .......... .......... 15% 99.3M 2s -2024-03-12T20:18:58Z #15 1.967 19400K .......... .......... .......... .......... .......... 15% 125M 2s -2024-03-12T20:18:58Z #15 1.967 19450K .......... .......... .......... .......... .......... 15% 118M 2s -2024-03-12T20:18:58Z #15 1.968 19500K .......... .......... .......... .......... .......... 15% 118M 2s -2024-03-12T20:18:58Z #15 1.968 19550K .......... .......... .......... .......... .......... 15% 111M 2s -2024-03-12T20:18:58Z #15 1.968 19600K .......... .......... .......... .......... .......... 15% 103M 2s -2024-03-12T20:18:58Z #15 1.969 19650K .......... .......... .......... .......... .......... 15% 121M 2s -2024-03-12T20:18:58Z #15 1.969 19700K .......... .......... .......... .......... .......... 15% 104M 2s -2024-03-12T20:18:58Z #15 1.970 19750K .......... .......... .......... .......... .......... 15% 44.5M 2s -2024-03-12T20:18:58Z #15 1.971 19800K .......... .......... .......... .......... .......... 15% 117M 2s -2024-03-12T20:18:58Z #15 1.971 19850K .......... .......... .......... .......... .......... 15% 123M 2s -2024-03-12T20:18:58Z #15 1.972 19900K .......... .......... .......... .......... .......... 15% 103M 2s -2024-03-12T20:18:58Z #15 1.972 19950K .......... .......... .......... .......... .......... 15% 109M 2s -2024-03-12T20:18:58Z #15 1.973 20000K .......... .......... .......... .......... .......... 15% 70.7M 2s -2024-03-12T20:18:58Z #15 1.973 20050K .......... .......... .......... .......... .......... 15% 38.7M 2s -2024-03-12T20:18:58Z #15 1.975 20100K .......... .......... .......... .......... .......... 15% 114M 2s -2024-03-12T20:18:58Z #15 1.975 20150K .......... .......... .......... .......... .......... 15% 54.1M 2s -2024-03-12T20:18:58Z #15 1.976 20200K .......... .......... .......... .......... .......... 15% 117M 2s -2024-03-12T20:18:58Z #15 1.976 20250K .......... .......... .......... .......... .......... 16% 47.3M 2s -2024-03-12T20:18:58Z #15 1.977 20300K .......... .......... .......... .......... .......... 16% 103M 2s -2024-03-12T20:18:58Z #15 1.978 20350K .......... .......... .......... .......... .......... 16% 114M 2s -2024-03-12T20:18:58Z #15 1.978 20400K .......... .......... .......... .......... .......... 16% 105M 2s -2024-03-12T20:18:58Z #15 1.979 20450K .......... .......... .......... .......... .......... 16% 140M 2s -2024-03-12T20:18:58Z #15 1.979 20500K .......... .......... .......... .......... .......... 16% 113M 2s -2024-03-12T20:18:58Z #15 1.981 20550K .......... .......... .......... .......... .......... 16% 132M 2s -2024-03-12T20:18:58Z #15 1.981 20600K .......... .......... .......... .......... .......... 16% 145M 2s -2024-03-12T20:18:58Z #15 1.981 20650K .......... .......... .......... .......... .......... 16% 112M 2s -2024-03-12T20:18:58Z #15 1.981 20700K .......... .......... .......... .......... .......... 16% 146M 2s -2024-03-12T20:18:58Z #15 1.981 20750K .......... .......... .......... .......... .......... 16% 110M 2s -2024-03-12T20:18:58Z #15 1.981 20800K .......... .......... .......... .......... .......... 16% 692K 2s -2024-03-12T20:18:58Z #15 2.054 20850K .......... .......... .......... .......... .......... 16% 71.5M 2s -2024-03-12T20:18:58Z #15 2.056 20900K .......... .......... .......... .......... .......... 16% 63.6M 2s -2024-03-12T20:18:58Z #15 2.056 20950K .......... .......... .......... .......... .......... 16% 143M 2s -2024-03-12T20:18:58Z #15 2.056 21000K .......... .......... .......... .......... .......... 16% 105M 2s -2024-03-12T20:18:58Z #15 2.056 21050K .......... .......... .......... .......... .......... 16% 132M 2s -2024-03-12T20:18:58Z #15 2.057 21100K .......... .......... .......... .......... .......... 16% 141M 2s -2024-03-12T20:18:58Z #15 2.057 21150K .......... .......... .......... .......... .......... 16% 136M 2s -2024-03-12T20:18:58Z #15 2.065 21200K .......... .......... .......... .......... .......... 16% 127M 2s -2024-03-12T20:18:58Z #15 2.065 21250K .......... .......... .......... .......... .......... 16% 131M 2s -2024-03-12T20:18:58Z #15 2.065 21300K .......... .......... .......... .......... .......... 16% 58.0M 2s -2024-03-12T20:18:58Z #15 2.065 21350K .......... .......... .......... .......... .......... 16% 174M 2s -2024-03-12T20:18:58Z #15 2.065 21400K .......... .......... .......... .......... .......... 16% 146M 2s -2024-03-12T20:18:58Z #15 2.065 21450K .......... .......... .......... .......... .......... 16% 170M 2s -2024-03-12T20:18:58Z #15 2.065 21500K .......... .......... .......... .......... .......... 16% 177M 2s -2024-03-12T20:18:58Z #15 2.065 21550K .......... .......... .......... .......... .......... 17% 176M 2s -2024-03-12T20:18:58Z #15 2.065 21600K .......... .......... .......... .......... .......... 17% 139M 2s -2024-03-12T20:18:58Z #15 2.065 21650K .......... .......... .......... .......... .......... 17% 181M 2s -2024-03-12T20:18:58Z #15 2.065 21700K .......... .......... .......... .......... .......... 17% 167M 2s -2024-03-12T20:18:58Z #15 2.065 21750K .......... .......... .......... .......... .......... 17% 165M 2s -2024-03-12T20:18:58Z #15 2.065 21800K .......... .......... .......... .......... .......... 17% 164M 2s -2024-03-12T20:18:58Z #15 2.065 21850K .......... .......... .......... .......... .......... 17% 132M 2s -2024-03-12T20:18:58Z #15 2.065 21900K .......... .......... .......... .......... .......... 17% 169M 2s -2024-03-12T20:18:58Z #15 2.065 21950K .......... .......... .......... .......... .......... 17% 148M 2s -2024-03-12T20:18:58Z #15 2.065 22000K .......... .......... .......... .......... .......... 17% 160M 2s -2024-03-12T20:18:58Z #15 2.065 22050K .......... .......... .......... .......... .......... 17% 174M 2s -2024-03-12T20:18:58Z #15 2.065 22100K .......... .......... .......... .......... .......... 17% 180M 2s -2024-03-12T20:18:58Z #15 2.065 22150K .......... .......... .......... .......... .......... 17% 148M 2s -2024-03-12T20:18:58Z #15 2.065 22200K .......... .......... .......... .......... .......... 17% 162M 2s -2024-03-12T20:18:58Z #15 2.065 22250K .......... .......... .......... .......... .......... 17% 173M 2s -2024-03-12T20:18:58Z #15 2.065 22300K .......... .......... .......... .......... .......... 17% 164M 2s -2024-03-12T20:18:58Z #15 2.065 22350K .......... .......... .......... .......... .......... 17% 183M 2s -2024-03-12T20:18:58Z #15 2.065 22400K .......... .......... .......... .......... .......... 17% 129M 2s -2024-03-12T20:18:58Z #15 2.065 22450K .......... .......... .......... .......... .......... 17% 3.80M 2s -2024-03-12T20:18:58Z #15 2.079 22500K .......... .......... .......... .......... .......... 17% 25.7M 2s -2024-03-12T20:18:58Z #15 2.081 22550K .......... .......... .......... .......... .......... 17% 66.9M 2s -2024-03-12T20:18:58Z #15 2.081 22600K .......... .......... .......... .......... .......... 17% 31.5M 2s -2024-03-12T20:18:58Z #15 2.084 22650K .......... .......... .......... .......... .......... 17% 13.9M 2s -2024-03-12T20:18:58Z #15 2.086 22700K .......... .......... .......... .......... .......... 17% 15.1M 2s -2024-03-12T20:18:58Z #15 2.089 22750K .......... .......... .......... .......... .......... 17% 31.7M 2s -2024-03-12T20:18:58Z #15 2.091 22800K .......... .......... .......... .......... .......... 18% 32.9M 2s -2024-03-12T20:18:58Z #15 2.092 22850K .......... .......... .......... .......... .......... 18% 30.7M 2s -2024-03-12T20:18:58Z #15 2.094 22900K .......... .......... .......... .......... .......... 18% 143M 2s -2024-03-12T20:18:58Z #15 2.094 22950K .......... .......... .......... .......... .......... 18% 43.4M 2s -2024-03-12T20:18:58Z #15 2.095 23000K .......... .......... .......... .......... .......... 18% 34.3M 2s -2024-03-12T20:18:58Z #15 2.097 23050K .......... .......... .......... .......... .......... 18% 33.4M 2s -2024-03-12T20:18:58Z #15 2.098 23100K .......... .......... .......... .......... .......... 18% 15.7M 2s -2024-03-12T20:18:58Z #15 2.101 23150K .......... .......... .......... .......... .......... 18% 23.2M 2s -2024-03-12T20:18:58Z #15 2.103 23200K .......... .......... .......... .......... .......... 18% 17.6M 2s -2024-03-12T20:18:58Z #15 2.107 23250K .......... .......... .......... .......... .......... 18% 42.6M 2s -2024-03-12T20:18:58Z #15 2.107 23300K .......... .......... .......... .......... .......... 18% 30.5M 2s -2024-03-12T20:18:58Z #15 2.111 23350K .......... .......... .......... .......... .......... 18% 17.4M 2s -2024-03-12T20:18:58Z #15 2.111 23400K .......... .......... .......... .......... .......... 18% 31.8M 2s -2024-03-12T20:18:58Z #15 2.113 23450K .......... .......... .......... .......... .......... 18% 26.1M 2s -2024-03-12T20:18:58Z #15 2.116 23500K .......... .......... .......... .......... .......... 18% 44.2M 2s -2024-03-12T20:18:58Z #15 2.116 23550K .......... .......... .......... .......... .......... 18% 33.0M 2s -2024-03-12T20:18:58Z #15 2.118 23600K .......... .......... .......... .......... .......... 18% 26.0M 2s -2024-03-12T20:18:58Z #15 2.119 23650K .......... .......... .......... .......... .......... 18% 29.0M 2s -2024-03-12T20:18:58Z #15 2.121 23700K .......... .......... .......... .......... .......... 18% 22.3M 2s -2024-03-12T20:18:58Z #15 2.124 23750K .......... .......... .......... .......... .......... 18% 150M 2s -2024-03-12T20:18:58Z #15 2.124 23800K .......... .......... .......... .......... .......... 18% 149M 2s -2024-03-12T20:18:58Z #15 2.124 23850K .......... .......... .......... .......... .......... 18% 120M 2s -2024-03-12T20:18:58Z #15 2.124 23900K .......... .......... .......... .......... .......... 18% 115M 2s -2024-03-12T20:18:58Z #15 2.125 23950K .......... .......... .......... .......... .......... 18% 127M 2s -2024-03-12T20:18:58Z #15 2.125 24000K .......... .......... .......... .......... .......... 18% 119M 2s -2024-03-12T20:18:58Z #15 2.125 24050K .......... .......... .......... .......... .......... 19% 118M 2s -2024-03-12T20:18:58Z #15 2.126 24100K .......... .......... .......... .......... .......... 19% 175M 2s -2024-03-12T20:18:58Z #15 2.126 24150K .......... .......... .......... .......... .......... 19% 124M 2s -2024-03-12T20:18:58Z #15 2.126 24200K .......... .......... .......... .......... .......... 19% 125M 2s -2024-03-12T20:18:58Z #15 2.127 24250K .......... .......... .......... .......... .......... 19% 126M 2s -2024-03-12T20:18:58Z #15 2.128 24300K .......... .......... .......... .......... .......... 19% 124M 2s -2024-03-12T20:18:58Z #15 2.128 24350K .......... .......... .......... .......... .......... 19% 129M 2s -2024-03-12T20:18:58Z #15 2.128 24400K .......... .......... .......... .......... .......... 19% 118M 2s -2024-03-12T20:18:58Z #15 2.128 24450K .......... .......... .......... .......... .......... 19% 123M 2s -2024-03-12T20:18:58Z #15 2.129 24500K .......... .......... .......... .......... .......... 19% 125M 2s -2024-03-12T20:18:58Z #15 2.129 24550K .......... .......... .......... .......... .......... 19% 128M 2s -2024-03-12T20:18:58Z #15 2.130 24600K .......... .......... .......... .......... .......... 19% 128M 2s -2024-03-12T20:18:58Z #15 2.130 24650K .......... .......... .......... .......... .......... 19% 103M 2s -2024-03-12T20:18:58Z #15 2.130 24700K .......... .......... .......... .......... .......... 19% 127M 2s -2024-03-12T20:18:58Z #15 2.131 24750K .......... .......... .......... .......... .......... 19% 132M 2s -2024-03-12T20:18:58Z #15 2.132 24800K .......... .......... .......... .......... .......... 19% 115M 2s -2024-03-12T20:18:58Z #15 2.132 24850K .......... .......... .......... .......... .......... 19% 129M 2s -2024-03-12T20:18:58Z #15 2.132 24900K .......... .......... .......... .......... .......... 19% 121M 2s -2024-03-12T20:18:58Z #15 2.133 24950K .......... .......... .......... .......... .......... 19% 138M 2s -2024-03-12T20:18:58Z #15 2.133 25000K .......... .......... .......... .......... .......... 19% 138M 2s -2024-03-12T20:18:58Z #15 2.133 25050K .......... .......... .......... .......... .......... 19% 132M 2s -2024-03-12T20:18:58Z #15 2.134 25100K .......... .......... .......... .......... .......... 19% 102M 2s -2024-03-12T20:18:58Z #15 2.137 25150K .......... .......... .......... .......... .......... 19% 129M 2s -2024-03-12T20:18:58Z #15 2.137 25200K .......... .......... .......... .......... .......... 19% 99.3M 2s -2024-03-12T20:18:58Z #15 2.137 25250K .......... .......... .......... .......... .......... 19% 151M 2s -2024-03-12T20:18:58Z #15 2.137 25300K .......... .......... .......... .......... .......... 19% 129M 2s -2024-03-12T20:18:58Z #15 2.137 25350K .......... .......... .......... .......... .......... 20% 123M 2s -2024-03-12T20:18:58Z #15 2.137 25400K .......... .......... .......... .......... .......... 20% 131M 2s -2024-03-12T20:18:58Z #15 2.137 25450K .......... .......... .......... .......... .......... 20% 134M 2s -2024-03-12T20:18:58Z #15 2.137 25500K .......... .......... .......... .......... .......... 20% 142M 2s -2024-03-12T20:18:58Z #15 2.137 25550K .......... .......... .......... .......... .......... 20% 132M 2s -2024-03-12T20:18:58Z #15 2.138 25600K .......... .......... .......... .......... .......... 20% 112M 2s -2024-03-12T20:18:58Z #15 2.138 25650K .......... .......... .......... .......... .......... 20% 128M 2s -2024-03-12T20:18:58Z #15 2.138 25700K .......... .......... .......... .......... .......... 20% 136M 2s -2024-03-12T20:18:58Z #15 2.139 25750K .......... .......... .......... .......... .......... 20% 151M 2s -2024-03-12T20:18:58Z #15 2.139 25800K .......... .......... .......... .......... .......... 20% 134M 2s -2024-03-12T20:18:58Z #15 2.140 25850K .......... .......... .......... .......... .......... 20% 122M 2s -2024-03-12T20:18:58Z #15 2.140 25900K .......... .......... .......... .......... .......... 20% 127M 2s -2024-03-12T20:18:58Z #15 2.140 25950K .......... .......... .......... .......... .......... 20% 116M 2s -2024-03-12T20:18:58Z #15 2.141 26000K .......... .......... .......... .......... .......... 20% 118M 2s -2024-03-12T20:18:58Z #15 2.141 26050K .......... .......... .......... .......... .......... 20% 147M 2s -2024-03-12T20:18:58Z #15 2.141 26100K .......... .......... .......... .......... .......... 20% 109M 2s -2024-03-12T20:18:58Z #15 2.142 26150K .......... .......... .......... .......... .......... 20% 113M 2s -2024-03-12T20:18:58Z #15 2.142 26200K .......... .......... .......... .......... .......... 20% 131M 2s -2024-03-12T20:18:58Z #15 2.142 26250K .......... .......... .......... .......... .......... 20% 147M 2s -2024-03-12T20:18:58Z #15 2.143 26300K .......... .......... .......... .......... .......... 20% 124M 2s -2024-03-12T20:18:58Z #15 2.145 26350K .......... .......... .......... .......... .......... 20% 136M 2s -2024-03-12T20:18:58Z #15 2.145 26400K .......... .......... .......... .......... .......... 20% 151M 2s -2024-03-12T20:18:58Z #15 2.145 26450K .......... .......... .......... .......... .......... 20% 123M 2s -2024-03-12T20:18:58Z #15 2.145 26500K .......... .......... .......... .......... .......... 20% 143M 2s -2024-03-12T20:18:58Z #15 2.145 26550K .......... .......... .......... .......... .......... 20% 124M 2s -2024-03-12T20:18:58Z #15 2.145 26600K .......... .......... .......... .......... .......... 21% 135M 2s -2024-03-12T20:18:58Z #15 2.145 26650K .......... .......... .......... .......... .......... 21% 147M 2s -2024-03-12T20:18:58Z #15 2.146 26700K .......... .......... .......... .......... .......... 21% 108M 2s -2024-03-12T20:18:58Z #15 2.146 26750K .......... .......... .......... .......... .......... 21% 102M 2s -2024-03-12T20:18:58Z #15 2.147 26800K .......... .......... .......... .......... .......... 21% 129M 2s -2024-03-12T20:18:58Z #15 2.147 26850K .......... .......... .......... .......... .......... 21% 121M 2s -2024-03-12T20:18:58Z #15 2.147 26900K .......... .......... .......... .......... .......... 21% 112M 2s -2024-03-12T20:18:58Z #15 2.148 26950K .......... .......... .......... .......... .......... 21% 134M 2s -2024-03-12T20:18:58Z #15 2.148 27000K .......... .......... .......... .......... .......... 21% 129M 2s -2024-03-12T20:18:58Z #15 2.149 27050K .......... .......... .......... .......... .......... 21% 122M 2s -2024-03-12T20:18:58Z #15 2.150 27100K .......... .......... .......... .......... .......... 21% 133M 2s -2024-03-12T20:18:58Z #15 2.150 27150K .......... .......... .......... .......... .......... 21% 109M 2s -2024-03-12T20:18:58Z #15 2.150 27200K .......... .......... .......... .......... .......... 21% 134M 2s -2024-03-12T20:18:58Z #15 2.151 27250K .......... .......... .......... .......... .......... 21% 119M 2s -2024-03-12T20:18:58Z #15 2.151 27300K .......... .......... .......... .......... .......... 21% 140M 2s -2024-03-12T20:18:58Z #15 2.152 27350K .......... .......... .......... .......... .......... 21% 134M 2s -2024-03-12T20:18:58Z #15 2.152 27400K .......... .......... .......... .......... .......... 21% 126M 2s -2024-03-12T20:18:58Z #15 2.152 27450K .......... .......... .......... .......... .......... 21% 151M 2s -2024-03-12T20:18:58Z #15 2.152 27500K .......... .......... .......... .......... .......... 21% 142M 2s -2024-03-12T20:18:58Z #15 2.152 27550K .......... .......... .......... .......... .......... 21% 129M 2s -2024-03-12T20:18:58Z #15 2.154 27600K .......... .......... .......... .......... .......... 21% 135M 2s -2024-03-12T20:18:58Z #15 2.154 27650K .......... .......... .......... .......... .......... 21% 155M 2s -2024-03-12T20:18:58Z #15 2.154 27700K .......... .......... .......... .......... .......... 21% 78.5M 2s -2024-03-12T20:18:58Z #15 2.154 27750K .......... .......... .......... .......... .......... 21% 129M 2s -2024-03-12T20:18:58Z #15 2.155 27800K .......... .......... .......... .......... .......... 21% 170M 2s -2024-03-12T20:18:58Z #15 2.155 27850K .......... .......... .......... .......... .......... 22% 174M 2s -2024-03-12T20:18:58Z #15 2.155 27900K .......... .......... .......... .......... .......... 22% 176M 2s -2024-03-12T20:18:58Z #15 2.155 27950K .......... .......... .......... .......... .......... 22% 143M 2s -2024-03-12T20:18:58Z #15 2.156 28000K .......... .......... .......... .......... .......... 22% 160M 2s -2024-03-12T20:18:58Z #15 2.156 28050K .......... .......... .......... .......... .......... 22% 171M 2s -2024-03-12T20:18:58Z #15 2.156 28100K .......... .......... .......... .......... .......... 22% 153M 2s -2024-03-12T20:18:58Z #15 2.157 28150K .......... .......... .......... .......... .......... 22% 174M 2s -2024-03-12T20:18:58Z #15 2.157 28200K .......... .......... .......... .......... .......... 22% 162M 2s -2024-03-12T20:18:58Z #15 2.157 28250K .......... .......... .......... .......... .......... 22% 130M 2s -2024-03-12T20:18:58Z #15 2.158 28300K .......... .......... .......... .......... .......... 22% 149M 2s -2024-03-12T20:18:58Z #15 2.158 28350K .......... .......... .......... .......... .......... 22% 151M 2s -2024-03-12T20:18:58Z #15 2.158 28400K .......... .......... .......... .......... .......... 22% 171M 2s -2024-03-12T20:18:58Z #15 2.162 28450K .......... .......... .......... .......... .......... 22% 159M 2s -2024-03-12T20:18:58Z #15 2.162 28500K .......... .......... .......... .......... .......... 22% 162M 2s -2024-03-12T20:18:58Z #15 2.162 28550K .......... .......... .......... .......... .......... 22% 164M 2s -2024-03-12T20:18:58Z #15 2.162 28600K .......... .......... .......... .......... .......... 22% 147M 2s -2024-03-12T20:18:58Z #15 2.162 28650K .......... .......... .......... .......... .......... 22% 154M 2s -2024-03-12T20:18:58Z #15 2.162 28700K .......... .......... .......... .......... .......... 22% 170M 2s -2024-03-12T20:18:58Z #15 2.162 28750K .......... .......... .......... .......... .......... 22% 163M 2s -2024-03-12T20:18:58Z #15 2.162 28800K .......... .......... .......... .......... .......... 22% 148M 2s -2024-03-12T20:18:58Z #15 2.162 28850K .......... .......... .......... .......... .......... 22% 140M 2s -2024-03-12T20:18:58Z #15 2.162 28900K .......... .......... .......... .......... .......... 22% 151M 2s -2024-03-12T20:18:58Z #15 2.162 28950K .......... .......... .......... .......... .......... 22% 131M 2s -2024-03-12T20:18:58Z #15 2.162 29000K .......... .......... .......... .......... .......... 22% 175M 2s -2024-03-12T20:18:58Z #15 2.162 29050K .......... .......... .......... .......... .......... 22% 159M 2s -2024-03-12T20:18:58Z #15 2.163 29100K .......... .......... .......... .......... .......... 22% 128M 2s -2024-03-12T20:18:58Z #15 2.163 29150K .......... .......... .......... .......... .......... 23% 142M 2s -2024-03-12T20:18:58Z #15 2.163 29200K .......... .......... .......... .......... .......... 23% 153M 2s -2024-03-12T20:18:58Z #15 2.164 29250K .......... .......... .......... .......... .......... 23% 128M 2s -2024-03-12T20:18:58Z #15 2.164 29300K .......... .......... .......... .......... .......... 23% 158M 2s -2024-03-12T20:18:58Z #15 2.164 29350K .......... .......... .......... .......... .......... 23% 144M 2s -2024-03-12T20:18:58Z #15 2.165 29400K .......... .......... .......... .......... .......... 23% 161M 2s -2024-03-12T20:18:58Z #15 2.165 29450K .......... .......... .......... .......... .......... 23% 135M 2s -2024-03-12T20:18:58Z #15 2.165 29500K .......... .......... .......... .......... .......... 23% 143M 2s -2024-03-12T20:18:58Z #15 2.166 29550K .......... .......... .......... .......... .......... 23% 113M 2s -2024-03-12T20:18:58Z #15 2.166 29600K .......... .......... .......... .......... .......... 23% 167M 2s -2024-03-12T20:18:58Z #15 2.166 29650K .......... .......... .......... .......... .......... 23% 144M 2s -2024-03-12T20:18:58Z #15 2.167 29700K .......... .......... .......... .......... .......... 23% 138M 2s -2024-03-12T20:18:58Z #15 2.167 29750K .......... .......... .......... .......... .......... 23% 169M 2s -2024-03-12T20:18:58Z #15 2.167 29800K .......... .......... .......... .......... .......... 23% 164M 2s -2024-03-12T20:18:58Z #15 2.168 29850K .......... .......... .......... .......... .......... 23% 122M 2s -2024-03-12T20:18:58Z #15 2.168 29900K .......... .......... .......... .......... .......... 23% 153M 2s -2024-03-12T20:18:58Z #15 2.168 29950K .......... .......... .......... .......... .......... 23% 147M 2s -2024-03-12T20:18:58Z #15 2.169 30000K .......... .......... .......... .......... .......... 23% 170M 2s -2024-03-12T20:18:58Z #15 2.174 30050K .......... .......... .......... .......... .......... 23% 138M 2s -2024-03-12T20:18:58Z #15 2.174 30100K .......... .......... .......... .......... .......... 23% 155M 2s -2024-03-12T20:18:58Z #15 2.174 30150K .......... .......... .......... .......... .......... 23% 122M 2s -2024-03-12T20:18:58Z #15 2.174 30200K .......... .......... .......... .......... .......... 23% 145M 2s -2024-03-12T20:18:58Z #15 2.174 30250K .......... .......... .......... .......... .......... 23% 151M 2s -2024-03-12T20:18:58Z #15 2.174 30300K .......... .......... .......... .......... .......... 23% 128M 2s -2024-03-12T20:18:58Z #15 2.174 30350K .......... .......... .......... .......... .......... 23% 146M 2s -2024-03-12T20:18:58Z #15 2.174 30400K .......... .......... .......... .......... .......... 24% 177M 2s -2024-03-12T20:18:58Z #15 2.174 30450K .......... .......... .......... .......... .......... 24% 122M 2s -2024-03-12T20:18:58Z #15 2.174 30500K .......... .......... .......... .......... .......... 24% 160M 2s -2024-03-12T20:18:58Z #15 2.174 30550K .......... .......... .......... .......... .......... 24% 180M 2s -2024-03-12T20:18:58Z #15 2.174 30600K .......... .......... .......... .......... .......... 24% 163M 2s -2024-03-12T20:18:58Z #15 2.174 30650K .......... .......... .......... .......... .......... 24% 154M 2s -2024-03-12T20:18:58Z #15 2.174 30700K .......... .......... .......... .......... .......... 24% 149M 2s -2024-03-12T20:18:58Z #15 2.174 30750K .......... .......... .......... .......... .......... 24% 49.5M 2s -2024-03-12T20:18:58Z #15 2.175 30800K .......... .......... .......... .......... .......... 24% 64.5M 2s -2024-03-12T20:18:58Z #15 2.176 30850K .......... .......... .......... .......... .......... 24% 66.1M 2s -2024-03-12T20:18:58Z #15 2.176 30900K .......... .......... .......... .......... .......... 24% 104M 2s -2024-03-12T20:18:58Z #15 2.177 30950K .......... .......... .......... .......... .......... 24% 119M 2s -2024-03-12T20:18:58Z #15 2.177 31000K .......... .......... .......... .......... .......... 24% 120M 2s -2024-03-12T20:18:58Z #15 2.177 31050K .......... .......... .......... .......... .......... 24% 90.4M 2s -2024-03-12T20:18:58Z #15 2.178 31100K .......... .......... .......... .......... .......... 24% 118M 2s -2024-03-12T20:18:58Z #15 2.178 31150K .......... .......... .......... .......... .......... 24% 131M 2s -2024-03-12T20:18:58Z #15 2.179 31200K .......... .......... .......... .......... .......... 24% 139M 2s -2024-03-12T20:18:58Z #15 2.179 31250K .......... .......... .......... .......... .......... 24% 97.8M 2s -2024-03-12T20:18:58Z #15 2.180 31300K .......... .......... .......... .......... .......... 24% 113M 2s -2024-03-12T20:18:58Z #15 2.180 31350K .......... .......... .......... .......... .......... 24% 145M 2s -2024-03-12T20:18:58Z #15 2.180 31400K .......... .......... .......... .......... .......... 24% 120M 2s -2024-03-12T20:18:58Z #15 2.181 31450K .......... .......... .......... .......... .......... 24% 112M 2s -2024-03-12T20:18:58Z #15 2.181 31500K .......... .......... .......... .......... .......... 24% 99.7M 2s -2024-03-12T20:18:58Z #15 2.186 31550K .......... .......... .......... .......... .......... 24% 122M 2s -2024-03-12T20:18:58Z #15 2.186 31600K .......... .......... .......... .......... .......... 24% 125M 2s -2024-03-12T20:18:58Z #15 2.186 31650K .......... .......... .......... .......... .......... 25% 154M 2s -2024-03-12T20:18:58Z #15 2.186 31700K .......... .......... .......... .......... .......... 25% 167M 2s -2024-03-12T20:18:58Z #15 2.186 31750K .......... .......... .......... .......... .......... 25% 155M 2s -2024-03-12T20:18:58Z #15 2.186 31800K .......... .......... .......... .......... .......... 25% 144M 2s -2024-03-12T20:18:58Z #15 2.186 31850K .......... .......... .......... .......... .......... 25% 170M 2s -2024-03-12T20:18:58Z #15 2.186 31900K .......... .......... .......... .......... .......... 25% 164M 2s -2024-03-12T20:18:58Z #15 2.186 31950K .......... .......... .......... .......... .......... 25% 140M 2s -2024-03-12T20:18:58Z #15 2.186 32000K .......... .......... .......... .......... .......... 25% 139M 2s -2024-03-12T20:18:58Z #15 2.186 32050K .......... .......... .......... .......... .......... 25% 154M 2s -2024-03-12T20:18:58Z #15 2.186 32100K .......... .......... .......... .......... .......... 25% 138M 2s -2024-03-12T20:18:58Z #15 2.186 32150K .......... .......... .......... .......... .......... 25% 101M 2s -2024-03-12T20:18:58Z #15 2.186 32200K .......... .......... .......... .......... .......... 25% 134M 2s -2024-03-12T20:18:58Z #15 2.186 32250K .......... .......... .......... .......... .......... 25% 134M 2s -2024-03-12T20:18:58Z #15 2.187 32300K .......... .......... .......... .......... .......... 25% 128M 2s -2024-03-12T20:18:58Z #15 2.187 32350K .......... .......... .......... .......... .......... 25% 113M 2s -2024-03-12T20:18:58Z #15 2.188 32400K .......... .......... .......... .......... .......... 25% 113M 2s -2024-03-12T20:18:58Z #15 2.188 32450K .......... .......... .......... .......... .......... 25% 108M 2s -2024-03-12T20:18:58Z #15 2.189 32500K .......... .......... .......... .......... .......... 25% 122M 2s -2024-03-12T20:18:58Z #15 2.189 32550K .......... .......... .......... .......... .......... 25% 125M 2s -2024-03-12T20:18:58Z #15 2.189 32600K .......... .......... .......... .......... .......... 25% 91.2M 2s -2024-03-12T20:18:58Z #15 2.190 32650K .......... .......... .......... .......... .......... 25% 120M 2s -2024-03-12T20:18:58Z #15 2.190 32700K .......... .......... .......... .......... .......... 25% 116M 2s -2024-03-12T20:18:58Z #15 2.191 32750K .......... .......... .......... .......... .......... 25% 125M 2s -2024-03-12T20:18:58Z #15 2.191 32800K .......... .......... .......... .......... .......... 25% 123M 2s -2024-03-12T20:18:58Z #15 2.192 32850K .......... .......... .......... .......... .......... 25% 143M 2s -2024-03-12T20:18:58Z #15 2.192 32900K .......... .......... .......... .......... .......... 25% 117M 2s -2024-03-12T20:18:58Z #15 2.192 32950K .......... .......... .......... .......... .......... 26% 168M 2s -2024-03-12T20:18:58Z #15 2.193 33000K .......... .......... .......... .......... .......... 26% 153M 2s -2024-03-12T20:18:58Z #15 2.193 33050K .......... .......... .......... .......... .......... 26% 151M 2s -2024-03-12T20:18:58Z #15 2.193 33100K .......... .......... .......... .......... .......... 26% 154M 2s -2024-03-12T20:18:58Z #15 2.193 33150K .......... .......... .......... .......... .......... 26% 114M 2s -2024-03-12T20:18:58Z #15 2.202 33200K .......... .......... .......... .......... .......... 26% 158M 2s -2024-03-12T20:18:58Z #15 2.202 33250K .......... .......... .......... .......... .......... 26% 173M 2s -2024-03-12T20:18:58Z #15 2.202 33300K .......... .......... .......... .......... .......... 26% 157M 2s -2024-03-12T20:18:58Z #15 2.202 33350K .......... .......... .......... .......... .......... 26% 157M 2s -2024-03-12T20:18:58Z #15 2.202 33400K .......... .......... .......... .......... .......... 26% 167M 2s -2024-03-12T20:18:58Z #15 2.202 33450K .......... .......... .......... .......... .......... 26% 165M 2s -2024-03-12T20:18:58Z #15 2.202 33500K .......... .......... .......... .......... .......... 26% 184M 2s -2024-03-12T20:18:58Z #15 2.202 33550K .......... .......... .......... .......... .......... 26% 152M 2s -2024-03-12T20:18:58Z #15 2.202 33600K .......... .......... .......... .......... .......... 26% 166M 2s -2024-03-12T20:18:58Z #15 2.202 33650K .......... .......... .......... .......... .......... 26% 154M 2s -2024-03-12T20:18:58Z #15 2.202 33700K .......... .......... .......... .......... .......... 26% 168M 2s -2024-03-12T20:18:58Z #15 2.202 33750K .......... .......... .......... .......... .......... 26% 167M 2s -2024-03-12T20:18:58Z #15 2.202 33800K .......... .......... .......... .......... .......... 26% 138M 2s -2024-03-12T20:18:58Z #15 2.202 33850K .......... .......... .......... .......... .......... 26% 138M 2s -2024-03-12T20:18:58Z #15 2.202 33900K .......... .......... .......... .......... .......... 26% 172M 2s -2024-03-12T20:18:58Z #15 2.202 33950K .......... .......... .......... .......... .......... 26% 174M 2s -2024-03-12T20:18:58Z #15 2.202 34000K .......... .......... .......... .......... .......... 26% 169M 2s -2024-03-12T20:18:58Z #15 2.202 34050K .......... .......... .......... .......... .......... 26% 151M 2s -2024-03-12T20:18:58Z #15 2.202 34100K .......... .......... .......... .......... .......... 26% 179M 2s -2024-03-12T20:18:58Z #15 2.202 34150K .......... .......... .......... .......... .......... 26% 174M 2s -2024-03-12T20:18:58Z #15 2.202 34200K .......... .......... .......... .......... .......... 27% 168M 2s -2024-03-12T20:18:58Z #15 2.202 34250K .......... .......... .......... .......... .......... 27% 162M 2s -2024-03-12T20:18:58Z #15 2.202 34300K .......... .......... .......... .......... .......... 27% 174M 2s -2024-03-12T20:18:58Z #15 2.202 34350K .......... .......... .......... .......... .......... 27% 144M 2s -2024-03-12T20:18:58Z #15 2.202 34400K .......... .......... .......... .......... .......... 27% 140M 2s -2024-03-12T20:18:58Z #15 2.202 34450K .......... .......... .......... .......... .......... 27% 166M 2s -2024-03-12T20:18:58Z #15 2.202 34500K .......... .......... .......... .......... .......... 27% 141M 2s -2024-03-12T20:18:58Z #15 2.202 34550K .......... .......... .......... .......... .......... 27% 178M 2s -2024-03-12T20:18:58Z #15 2.202 34600K .......... .......... .......... .......... .......... 27% 140M 2s -2024-03-12T20:18:58Z #15 2.203 34650K .......... .......... .......... .......... .......... 27% 147M 2s -2024-03-12T20:18:58Z #15 2.203 34700K .......... .......... .......... .......... .......... 27% 267K 2s -2024-03-12T20:18:58Z #15 2.391 34750K .......... .......... .......... .......... .......... 27% 31.1M 2s -2024-03-12T20:18:58Z #15 2.392 34800K .......... .......... .......... .......... .......... 27% 27.0M 2s -2024-03-12T20:18:58Z #15 2.394 34850K .......... .......... .......... .......... .......... 27% 37.6M 2s -2024-03-12T20:18:58Z #15 2.396 34900K .......... .......... .......... .......... .......... 27% 37.5M 2s -2024-03-12T20:18:58Z #15 2.397 34950K .......... .......... .......... .......... .......... 27% 52.7M 2s -2024-03-12T20:18:58Z #15 2.398 35000K .......... .......... .......... .......... .......... 27% 170M 2s -2024-03-12T20:18:58Z #15 2.398 35050K .......... .......... .......... .......... .......... 27% 126M 2s -2024-03-12T20:18:58Z #15 2.398 35100K .......... .......... .......... .......... .......... 27% 102M 2s -2024-03-12T20:18:58Z #15 2.399 35150K .......... .......... .......... .......... .......... 27% 129M 2s -2024-03-12T20:18:58Z #15 2.399 35200K .......... .......... .......... .......... .......... 27% 128M 2s -2024-03-12T20:18:58Z #15 2.400 35250K .......... .......... .......... .......... .......... 27% 141M 2s -2024-03-12T20:18:58Z #15 2.400 35300K .......... .......... .......... .......... .......... 27% 114M 2s -2024-03-12T20:18:58Z #15 2.400 35350K .......... .......... .......... .......... .......... 27% 127M 2s -2024-03-12T20:18:58Z #15 2.401 35400K .......... .......... .......... .......... .......... 27% 134M 2s -2024-03-12T20:18:58Z #15 2.401 35450K .......... .......... .......... .......... .......... 28% 116M 2s -2024-03-12T20:18:58Z #15 2.401 35500K .......... .......... .......... .......... .......... 28% 129M 2s -2024-03-12T20:18:58Z #15 2.402 35550K .......... .......... .......... .......... .......... 28% 116M 2s -2024-03-12T20:18:58Z #15 2.402 35600K .......... .......... .......... .......... .......... 28% 110M 2s -2024-03-12T20:18:58Z #15 2.403 35650K .......... .......... .......... .......... .......... 28% 143M 2s -2024-03-12T20:18:58Z #15 2.403 35700K .......... .......... .......... .......... .......... 28% 158M 2s -2024-03-12T20:18:58Z #15 2.403 35750K .......... .......... .......... .......... .......... 28% 117M 2s -2024-03-12T20:18:58Z #15 2.404 35800K .......... .......... .......... .......... .......... 28% 133M 2s -2024-03-12T20:18:58Z #15 2.404 35850K .......... .......... .......... .......... .......... 28% 119M 2s -2024-03-12T20:18:58Z #15 2.404 35900K .......... .......... .......... .......... .......... 28% 101M 2s -2024-03-12T20:18:58Z #15 2.405 35950K .......... .......... .......... .......... .......... 28% 121M 2s -2024-03-12T20:18:58Z #15 2.407 36000K .......... .......... .......... .......... .......... 28% 148M 2s -2024-03-12T20:18:58Z #15 2.407 36050K .......... .......... .......... .......... .......... 28% 126M 2s -2024-03-12T20:18:58Z #15 2.407 36100K .......... .......... .......... .......... .......... 28% 124M 2s -2024-03-12T20:18:58Z #15 2.407 36150K .......... .......... .......... .......... .......... 28% 122M 2s -2024-03-12T20:18:58Z #15 2.407 36200K .......... .......... .......... .......... .......... 28% 140M 2s -2024-03-12T20:18:58Z #15 2.407 36250K .......... .......... .......... .......... .......... 28% 130M 2s -2024-03-12T20:18:58Z #15 2.407 36300K .......... .......... .......... .......... .......... 28% 124M 2s -2024-03-12T20:18:58Z #15 2.408 36350K .......... .......... .......... .......... .......... 28% 672K 2s -2024-03-12T20:18:58Z #15 2.484 36400K .......... .......... .......... .......... .......... 28% 136M 2s -2024-03-12T20:18:58Z #15 2.484 36450K .......... .......... .......... .......... .......... 28% 148M 2s -2024-03-12T20:18:58Z #15 2.484 36500K .......... .......... .......... .......... .......... 28% 136M 2s -2024-03-12T20:18:58Z #15 2.484 36550K .......... .......... .......... .......... .......... 28% 121M 2s -2024-03-12T20:18:58Z #15 2.484 36600K .......... .......... .......... .......... .......... 28% 117M 2s -2024-03-12T20:18:58Z #15 2.484 36650K .......... .......... .......... .......... .......... 28% 86.9M 2s -2024-03-12T20:18:58Z #15 2.487 36700K .......... .......... .......... .......... .......... 28% 80.8M 2s -2024-03-12T20:18:58Z #15 2.487 36750K .......... .......... .......... .......... .......... 29% 77.8M 2s -2024-03-12T20:18:58Z #15 2.487 36800K .......... .......... .......... .......... .......... 29% 91.1M 2s -2024-03-12T20:18:58Z #15 2.487 36850K .......... .......... .......... .......... .......... 29% 75.3M 2s -2024-03-12T20:18:58Z #15 2.488 36900K .......... .......... .......... .......... .......... 29% 98.1M 2s -2024-03-12T20:18:58Z #15 2.488 36950K .......... .......... .......... .......... .......... 29% 74.7M 2s -2024-03-12T20:18:58Z #15 2.488 37000K .......... .......... .......... .......... .......... 29% 77.4M 2s -2024-03-12T20:18:58Z #15 2.489 37050K .......... .......... .......... .......... .......... 29% 76.5M 2s -2024-03-12T20:18:58Z #15 2.490 37100K .......... .......... .......... .......... .......... 29% 65.1M 2s -2024-03-12T20:18:58Z #15 2.490 37150K .......... .......... .......... .......... .......... 29% 42.5M 2s -2024-03-12T20:18:58Z #15 2.492 37200K .......... .......... .......... .......... .......... 29% 98.6M 2s -2024-03-12T20:18:58Z #15 2.492 37250K .......... .......... .......... .......... .......... 29% 76.8M 2s -2024-03-12T20:18:58Z #15 2.492 37300K .......... .......... .......... .......... .......... 29% 76.0M 2s -2024-03-12T20:18:58Z #15 2.493 37350K .......... .......... .......... .......... .......... 29% 92.2M 2s -2024-03-12T20:18:58Z #15 2.494 37400K .......... .......... .......... .......... .......... 29% 84.6M 2s -2024-03-12T20:18:58Z #15 2.495 37450K .......... .......... .......... .......... .......... 29% 81.7M 2s -2024-03-12T20:18:58Z #15 2.495 37500K .......... .......... .......... .......... .......... 29% 60.2M 2s -2024-03-12T20:18:58Z #15 2.496 37550K .......... .......... .......... .......... .......... 29% 90.7M 2s -2024-03-12T20:18:58Z #15 2.496 37600K .......... .......... .......... .......... .......... 29% 73.5M 2s -2024-03-12T20:18:58Z #15 2.497 37650K .......... .......... .......... .......... .......... 29% 79.7M 2s -2024-03-12T20:18:58Z #15 2.498 37700K .......... .......... .......... .......... .......... 29% 81.3M 2s -2024-03-12T20:18:58Z #15 2.498 37750K .......... .......... .......... .......... .......... 29% 75.7M 2s -2024-03-12T20:18:58Z #15 2.499 37800K .......... .......... .......... .......... .......... 29% 80.9M 2s -2024-03-12T20:18:58Z #15 2.499 37850K .......... .......... .......... .......... .......... 29% 88.0M 2s -2024-03-12T20:18:58Z #15 2.500 37900K .......... .......... .......... .......... .......... 29% 83.4M 2s -2024-03-12T20:18:58Z #15 2.501 37950K .......... .......... .......... .......... .......... 29% 69.6M 2s -2024-03-12T20:18:58Z #15 2.501 38000K .......... .......... .......... .......... .......... 30% 60.8M 2s -2024-03-12T20:18:58Z #15 2.502 38050K .......... .......... .......... .......... .......... 30% 85.0M 2s -2024-03-12T20:18:58Z #15 2.504 38100K .......... .......... .......... .......... .......... 30% 103M 2s -2024-03-12T20:18:58Z #15 2.504 38150K .......... .......... .......... .......... .......... 30% 103M 2s -2024-03-12T20:18:58Z #15 2.504 38200K .......... .......... .......... .......... .......... 30% 88.8M 2s -2024-03-12T20:18:58Z #15 2.504 38250K .......... .......... .......... .......... .......... 30% 103M 2s -2024-03-12T20:18:58Z #15 2.505 38300K .......... .......... .......... .......... .......... 30% 98.8M 2s -2024-03-12T20:18:58Z #15 2.505 38350K .......... .......... .......... .......... .......... 30% 86.8M 2s -2024-03-12T20:18:58Z #15 2.506 38400K .......... .......... .......... .......... .......... 30% 89.8M 2s -2024-03-12T20:18:58Z #15 2.506 38450K .......... .......... .......... .......... .......... 30% 101M 2s -2024-03-12T20:18:58Z #15 2.507 38500K .......... .......... .......... .......... .......... 30% 105M 2s -2024-03-12T20:18:58Z #15 2.507 38550K .......... .......... .......... .......... .......... 30% 112M 2s -2024-03-12T20:18:58Z #15 2.508 38600K .......... .......... .......... .......... .......... 30% 139M 2s -2024-03-12T20:18:58Z #15 2.508 38650K .......... .......... .......... .......... .......... 30% 123M 2s -2024-03-12T20:18:58Z #15 2.508 38700K .......... .......... .......... .......... .......... 30% 163M 2s -2024-03-12T20:18:58Z #15 2.509 38750K .......... .......... .......... .......... .......... 30% 144M 2s -2024-03-12T20:18:58Z #15 2.509 38800K .......... .......... .......... .......... .......... 30% 142M 2s -2024-03-12T20:18:58Z #15 2.509 38850K .......... .......... .......... .......... .......... 30% 156M 2s -2024-03-12T20:18:58Z #15 2.510 38900K .......... .......... .......... .......... .......... 30% 1.84M 2s -2024-03-12T20:18:58Z #15 2.537 38950K .......... .......... .......... .......... .......... 30% 122M 2s -2024-03-12T20:18:58Z #15 2.537 39000K .......... .......... .......... .......... .......... 30% 167M 2s -2024-03-12T20:18:58Z #15 2.539 39050K .......... .......... .......... .......... .......... 30% 90.3M 2s -2024-03-12T20:18:58Z #15 2.539 39100K .......... .......... .......... .......... .......... 30% 107M 2s -2024-03-12T20:18:58Z #15 2.539 39150K .......... .......... .......... .......... .......... 30% 121M 2s -2024-03-12T20:18:58Z #15 2.539 39200K .......... .......... .......... .......... .......... 30% 149M 2s -2024-03-12T20:18:58Z #15 2.539 39250K .......... .......... .......... .......... .......... 30% 160M 2s -2024-03-12T20:18:58Z #15 2.539 39300K .......... .......... .......... .......... .......... 31% 142M 2s -2024-03-12T20:18:58Z #15 2.541 39350K .......... .......... .......... .......... .......... 31% 107M 2s -2024-03-12T20:18:58Z #15 2.541 39400K .......... .......... .......... .......... .......... 31% 115M 2s -2024-03-12T20:18:58Z #15 2.541 39450K .......... .......... .......... .......... .......... 31% 155M 2s -2024-03-12T20:18:58Z #15 2.541 39500K .......... .......... .......... .......... .......... 31% 95.5M 2s -2024-03-12T20:18:58Z #15 2.541 39550K .......... .......... .......... .......... .......... 31% 69.2M 2s -2024-03-12T20:18:58Z #15 2.543 39600K .......... .......... .......... .......... .......... 31% 95.0M 2s -2024-03-12T20:18:58Z #15 2.543 39650K .......... .......... .......... .......... .......... 31% 122M 2s -2024-03-12T20:18:58Z #15 2.543 39700K .......... .......... .......... .......... .......... 31% 66.4M 2s -2024-03-12T20:18:58Z #15 2.543 39750K .......... .......... .......... .......... .......... 31% 26.6M 2s -2024-03-12T20:18:58Z #15 2.545 39800K .......... .......... .......... .......... .......... 31% 86.9M 2s -2024-03-12T20:18:58Z #15 2.546 39850K .......... .......... .......... .......... .......... 31% 131M 2s -2024-03-12T20:18:58Z #15 2.546 39900K .......... .......... .......... .......... .......... 31% 152M 2s -2024-03-12T20:18:58Z #15 2.546 39950K .......... .......... .......... .......... .......... 31% 172M 2s -2024-03-12T20:18:58Z #15 2.547 40000K .......... .......... .......... .......... .......... 31% 145M 2s -2024-03-12T20:18:58Z #15 2.547 40050K .......... .......... .......... .......... .......... 31% 178M 2s -2024-03-12T20:18:58Z #15 2.547 40100K .......... .......... .......... .......... .......... 31% 115M 2s -2024-03-12T20:18:58Z #15 2.548 40150K .......... .......... .......... .......... .......... 31% 157M 2s -2024-03-12T20:18:58Z #15 2.549 40200K .......... .......... .......... .......... .......... 31% 144M 2s -2024-03-12T20:18:58Z #15 2.552 40250K .......... .......... .......... .......... .......... 31% 112M 2s -2024-03-12T20:18:58Z #15 2.552 40300K .......... .......... .......... .......... .......... 31% 115M 2s -2024-03-12T20:18:58Z #15 2.552 40350K .......... .......... .......... .......... .......... 31% 137M 2s -2024-03-12T20:18:58Z #15 2.552 40400K .......... .......... .......... .......... .......... 31% 117M 2s -2024-03-12T20:18:58Z #15 2.552 40450K .......... .......... .......... .......... .......... 31% 146M 2s -2024-03-12T20:18:58Z #15 2.552 40500K .......... .......... .......... .......... .......... 31% 29.5M 2s -2024-03-12T20:18:58Z #15 2.552 40550K .......... .......... .......... .......... .......... 32% 142M 2s -2024-03-12T20:18:58Z #15 2.552 40600K .......... .......... .......... .......... .......... 32% 49.9M 2s -2024-03-12T20:18:58Z #15 2.554 40650K .......... .......... .......... .......... .......... 32% 126M 2s -2024-03-12T20:18:58Z #15 2.554 40700K .......... .......... .......... .......... .......... 32% 120M 2s -2024-03-12T20:18:58Z #15 2.554 40750K .......... .......... .......... .......... .......... 32% 61.8M 2s -2024-03-12T20:18:58Z #15 2.555 40800K .......... .......... .......... .......... .......... 32% 111M 2s -2024-03-12T20:18:58Z #15 2.556 40850K .......... .......... .......... .......... .......... 32% 106M 2s -2024-03-12T20:18:58Z #15 2.556 40900K .......... .......... .......... .......... .......... 32% 24.5M 2s -2024-03-12T20:18:58Z #15 2.558 40950K .......... .......... .......... .......... .......... 32% 159M 2s -2024-03-12T20:18:58Z #15 2.558 41000K .......... .......... .......... .......... .......... 32% 179M 2s -2024-03-12T20:18:58Z #15 2.558 41050K .......... .......... .......... .......... .......... 32% 136M 2s -2024-03-12T20:18:58Z #15 2.559 41100K .......... .......... .......... .......... .......... 32% 173M 2s -2024-03-12T20:18:58Z #15 2.559 41150K .......... .......... .......... .......... .......... 32% 172M 2s -2024-03-12T20:18:58Z #15 2.559 41200K .......... .......... .......... .......... .......... 32% 171M 2s -2024-03-12T20:18:58Z #15 2.559 41250K .......... .......... .......... .......... .......... 32% 156M 2s -2024-03-12T20:18:59Z #15 2.560 41300K .......... .......... .......... .......... .......... 32% 173M 2s -2024-03-12T20:18:59Z #15 2.561 41350K .......... .......... .......... .......... .......... 32% 8.28M 2s -2024-03-12T20:18:59Z #15 2.566 41400K .......... .......... .......... .......... .......... 32% 158M 2s -2024-03-12T20:18:59Z #15 2.566 41450K .......... .......... .......... .......... .......... 32% 177M 2s -2024-03-12T20:18:59Z #15 2.567 41500K .......... .......... .......... .......... .......... 32% 159M 2s -2024-03-12T20:18:59Z #15 2.567 41550K .......... .......... .......... .......... .......... 32% 176M 2s -2024-03-12T20:18:59Z #15 2.568 41600K .......... .......... .......... .......... .......... 32% 165M 2s -2024-03-12T20:18:59Z #15 2.568 41650K .......... .......... .......... .......... .......... 32% 128M 2s -2024-03-12T20:18:59Z #15 2.568 41700K .......... .......... .......... .......... .......... 32% 153M 2s -2024-03-12T20:18:59Z #15 2.569 41750K .......... .......... .......... .......... .......... 32% 124M 2s -2024-03-12T20:18:59Z #15 2.569 41800K .......... .......... .......... .......... .......... 33% 153M 2s -2024-03-12T20:18:59Z #15 2.569 41850K .......... .......... .......... .......... .......... 33% 156M 2s -2024-03-12T20:18:59Z #15 2.569 41900K .......... .......... .......... .......... .......... 33% 158M 2s -2024-03-12T20:18:59Z #15 2.570 41950K .......... .......... .......... .......... .......... 33% 159M 2s -2024-03-12T20:18:59Z #15 2.570 42000K .......... .......... .......... .......... .......... 33% 143M 2s -2024-03-12T20:18:59Z #15 2.570 42050K .......... .......... .......... .......... .......... 33% 164M 2s -2024-03-12T20:18:59Z #15 2.570 42100K .......... .......... .......... .......... .......... 33% 153M 2s -2024-03-12T20:18:59Z #15 2.571 42150K .......... .......... .......... .......... .......... 33% 166M 2s -2024-03-12T20:18:59Z #15 2.571 42200K .......... .......... .......... .......... .......... 33% 178M 2s -2024-03-12T20:18:59Z #15 2.572 42250K .......... .......... .......... .......... .......... 33% 143M 2s -2024-03-12T20:18:59Z #15 2.572 42300K .......... .......... .......... .......... .......... 33% 168M 2s -2024-03-12T20:18:59Z #15 2.572 42350K .......... .......... .......... .......... .......... 33% 160M 2s -2024-03-12T20:18:59Z #15 2.572 42400K .......... .......... .......... .......... .......... 33% 141M 2s -2024-03-12T20:18:59Z #15 2.573 42450K .......... .......... .......... .......... .......... 33% 162M 2s -2024-03-12T20:18:59Z #15 2.573 42500K .......... .......... .......... .......... .......... 33% 164M 2s -2024-03-12T20:18:59Z #15 2.573 42550K .......... .......... .......... .......... .......... 33% 158M 2s -2024-03-12T20:18:59Z #15 2.574 42600K .......... .......... .......... .......... .......... 33% 4.98M 2s -2024-03-12T20:18:59Z #15 2.584 42650K .......... .......... .......... .......... .......... 33% 155M 2s -2024-03-12T20:18:59Z #15 2.584 42700K .......... .......... .......... .......... .......... 33% 174M 2s -2024-03-12T20:18:59Z #15 2.584 42750K .......... .......... .......... .......... .......... 33% 171M 2s -2024-03-12T20:18:59Z #15 2.584 42800K .......... .......... .......... .......... .......... 33% 151M 2s -2024-03-12T20:18:59Z #15 2.585 42850K .......... .......... .......... .......... .......... 33% 172M 2s -2024-03-12T20:18:59Z #15 2.585 42900K .......... .......... .......... .......... .......... 33% 166M 2s -2024-03-12T20:18:59Z #15 2.585 42950K .......... .......... .......... .......... .......... 33% 153M 2s -2024-03-12T20:18:59Z #15 2.585 43000K .......... .......... .......... .......... .......... 33% 174M 2s -2024-03-12T20:18:59Z #15 2.586 43050K .......... .......... .......... .......... .......... 33% 98.1M 2s -2024-03-12T20:18:59Z #15 2.587 43100K .......... .......... .......... .......... .......... 34% 141M 2s -2024-03-12T20:18:59Z #15 2.587 43150K .......... .......... .......... .......... .......... 34% 129M 2s -2024-03-12T20:18:59Z #15 2.587 43200K .......... .......... .......... .......... .......... 34% 130M 2s -2024-03-12T20:18:59Z #15 2.587 43250K .......... .......... .......... .......... .......... 34% 138M 2s -2024-03-12T20:18:59Z #15 2.588 43300K .......... .......... .......... .......... .......... 34% 149M 2s -2024-03-12T20:18:59Z #15 2.588 43350K .......... .......... .......... .......... .......... 34% 131M 2s -2024-03-12T20:18:59Z #15 2.589 43400K .......... .......... .......... .......... .......... 34% 111M 2s -2024-03-12T20:18:59Z #15 2.589 43450K .......... .......... .......... .......... .......... 34% 124M 2s -2024-03-12T20:18:59Z #15 2.589 43500K .......... .......... .......... .......... .......... 34% 139M 2s -2024-03-12T20:18:59Z #15 2.590 43550K .......... .......... .......... .......... .......... 34% 11.0M 2s -2024-03-12T20:18:59Z #15 2.596 43600K .......... .......... .......... .......... .......... 34% 163M 2s -2024-03-12T20:18:59Z #15 2.596 43650K .......... .......... .......... .......... .......... 34% 178M 2s -2024-03-12T20:18:59Z #15 2.596 43700K .......... .......... .......... .......... .......... 34% 191M 2s -2024-03-12T20:18:59Z #15 2.596 43750K .......... .......... .......... .......... .......... 34% 154M 2s -2024-03-12T20:18:59Z #15 2.596 43800K .......... .......... .......... .......... .......... 34% 82.1M 2s -2024-03-12T20:18:59Z #15 2.596 43850K .......... .......... .......... .......... .......... 34% 158M 2s -2024-03-12T20:18:59Z #15 2.596 43900K .......... .......... .......... .......... .......... 34% 174M 2s -2024-03-12T20:18:59Z #15 2.597 43950K .......... .......... .......... .......... .......... 34% 129M 2s -2024-03-12T20:18:59Z #15 2.597 44000K .......... .......... .......... .......... .......... 34% 40.2M 2s -2024-03-12T20:18:59Z #15 2.598 44050K .......... .......... .......... .......... .......... 34% 17.9M 2s -2024-03-12T20:18:59Z #15 2.601 44100K .......... .......... .......... .......... .......... 34% 117M 2s -2024-03-12T20:18:59Z #15 2.601 44150K .......... .......... .......... .......... .......... 34% 125M 2s -2024-03-12T20:18:59Z #15 2.601 44200K .......... .......... .......... .......... .......... 34% 51.1M 2s -2024-03-12T20:18:59Z #15 2.602 44250K .......... .......... .......... .......... .......... 34% 119M 2s -2024-03-12T20:18:59Z #15 2.603 44300K .......... .......... .......... .......... .......... 34% 100M 2s -2024-03-12T20:18:59Z #15 2.604 44350K .......... .......... .......... .......... .......... 35% 61.2M 2s -2024-03-12T20:18:59Z #15 2.604 44400K .......... .......... .......... .......... .......... 35% 124M 2s -2024-03-12T20:18:59Z #15 2.604 44450K .......... .......... .......... .......... .......... 35% 126M 2s -2024-03-12T20:18:59Z #15 2.605 44500K .......... .......... .......... .......... .......... 35% 109M 2s -2024-03-12T20:18:59Z #15 2.605 44550K .......... .......... .......... .......... .......... 35% 123M 2s -2024-03-12T20:18:59Z #15 2.606 44600K .......... .......... .......... .......... .......... 35% 110M 2s -2024-03-12T20:18:59Z #15 2.606 44650K .......... .......... .......... .......... .......... 35% 126M 2s -2024-03-12T20:18:59Z #15 2.607 44700K .......... .......... .......... .......... .......... 35% 116M 2s -2024-03-12T20:18:59Z #15 2.607 44750K .......... .......... .......... .......... .......... 35% 127M 2s -2024-03-12T20:18:59Z #15 2.607 44800K .......... .......... .......... .......... .......... 35% 120M 2s -2024-03-12T20:18:59Z #15 2.608 44850K .......... .......... .......... .......... .......... 35% 91.1M 2s -2024-03-12T20:18:59Z #15 2.608 44900K .......... .......... .......... .......... .......... 35% 116M 2s -2024-03-12T20:18:59Z #15 2.609 44950K .......... .......... .......... .......... .......... 35% 150M 2s -2024-03-12T20:18:59Z #15 2.609 45000K .......... .......... .......... .......... .......... 35% 169M 2s -2024-03-12T20:18:59Z #15 2.609 45050K .......... .......... .......... .......... .......... 35% 54.5M 2s -2024-03-12T20:18:59Z #15 2.610 45100K .......... .......... .......... .......... .......... 35% 117M 2s -2024-03-12T20:18:59Z #15 2.611 45150K .......... .......... .......... .......... .......... 35% 84.3M 2s -2024-03-12T20:18:59Z #15 2.611 45200K .......... .......... .......... .......... .......... 35% 90.0M 2s -2024-03-12T20:18:59Z #15 2.612 45250K .......... .......... .......... .......... .......... 35% 113M 2s -2024-03-12T20:18:59Z #15 2.612 45300K .......... .......... .......... .......... .......... 35% 130M 2s -2024-03-12T20:18:59Z #15 2.613 45350K .......... .......... .......... .......... .......... 35% 133M 2s -2024-03-12T20:18:59Z #15 2.613 45400K .......... .......... .......... .......... .......... 35% 120M 2s -2024-03-12T20:18:59Z #15 2.613 45450K .......... .......... .......... .......... .......... 35% 127M 2s -2024-03-12T20:18:59Z #15 2.614 45500K .......... .......... .......... .......... .......... 35% 119M 2s -2024-03-12T20:18:59Z #15 2.614 45550K .......... .......... .......... .......... .......... 35% 90.0M 2s -2024-03-12T20:18:59Z #15 2.615 45600K .......... .......... .......... .......... .......... 36% 125M 2s -2024-03-12T20:18:59Z #15 2.615 45650K .......... .......... .......... .......... .......... 36% 130M 2s -2024-03-12T20:18:59Z #15 2.615 45700K .......... .......... .......... .......... .......... 36% 108M 2s -2024-03-12T20:18:59Z #15 2.616 45750K .......... .......... .......... .......... .......... 36% 132M 2s -2024-03-12T20:18:59Z #15 2.616 45800K .......... .......... .......... .......... .......... 36% 60.4M 2s -2024-03-12T20:18:59Z #15 2.617 45850K .......... .......... .......... .......... .......... 36% 116M 2s -2024-03-12T20:18:59Z #15 2.618 45900K .......... .......... .......... .......... .......... 36% 93.4M 2s -2024-03-12T20:18:59Z #15 2.618 45950K .......... .......... .......... .......... .......... 36% 106M 2s -2024-03-12T20:18:59Z #15 2.618 46000K .......... .......... .......... .......... .......... 36% 131M 2s -2024-03-12T20:18:59Z #15 2.619 46050K .......... .......... .......... .......... .......... 36% 114M 2s -2024-03-12T20:18:59Z #15 2.620 46100K .......... .......... .......... .......... .......... 36% 130M 2s -2024-03-12T20:18:59Z #15 2.620 46150K .......... .......... .......... .......... .......... 36% 120M 2s -2024-03-12T20:18:59Z #15 2.620 46200K .......... .......... .......... .......... .......... 36% 154M 2s -2024-03-12T20:18:59Z #15 2.620 46250K .......... .......... .......... .......... .......... 36% 158M 2s -2024-03-12T20:18:59Z #15 2.621 46300K .......... .......... .......... .......... .......... 36% 139M 2s -2024-03-12T20:18:59Z #15 2.621 46350K .......... .......... .......... .......... .......... 36% 109M 2s -2024-03-12T20:18:59Z #15 2.622 46400K .......... .......... .......... .......... .......... 36% 131M 2s -2024-03-12T20:18:59Z #15 2.622 46450K .......... .......... .......... .......... .......... 36% 140M 2s -2024-03-12T20:18:59Z #15 2.622 46500K .......... .......... .......... .......... .......... 36% 120M 2s -2024-03-12T20:18:59Z #15 2.623 46550K .......... .......... .......... .......... .......... 36% 63.0M 2s -2024-03-12T20:18:59Z #15 2.624 46600K .......... .......... .......... .......... .......... 36% 113M 2s -2024-03-12T20:18:59Z #15 2.624 46650K .......... .......... .......... .......... .......... 36% 117M 2s -2024-03-12T20:18:59Z #15 2.624 46700K .......... .......... .......... .......... .......... 36% 75.7M 2s -2024-03-12T20:18:59Z #15 2.625 46750K .......... .......... .......... .......... .......... 36% 125M 2s -2024-03-12T20:18:59Z #15 2.625 46800K .......... .......... .......... .......... .......... 36% 127M 2s -2024-03-12T20:18:59Z #15 2.626 46850K .......... .......... .......... .......... .......... 36% 123M 2s -2024-03-12T20:18:59Z #15 2.626 46900K .......... .......... .......... .......... .......... 37% 135M 2s -2024-03-12T20:18:59Z #15 2.626 46950K .......... .......... .......... .......... .......... 37% 121M 2s -2024-03-12T20:18:59Z #15 2.627 47000K .......... .......... .......... .......... .......... 37% 117M 2s -2024-03-12T20:18:59Z #15 2.627 47050K .......... .......... .......... .......... .......... 37% 129M 2s -2024-03-12T20:18:59Z #15 2.628 47100K .......... .......... .......... .......... .......... 37% 126M 2s -2024-03-12T20:18:59Z #15 2.628 47150K .......... .......... .......... .......... .......... 37% 126M 2s -2024-03-12T20:18:59Z #15 2.628 47200K .......... .......... .......... .......... .......... 37% 120M 2s -2024-03-12T20:18:59Z #15 2.629 47250K .......... .......... .......... .......... .......... 37% 127M 2s -2024-03-12T20:18:59Z #15 2.629 47300K .......... .......... .......... .......... .......... 37% 59.2M 2s -2024-03-12T20:18:59Z #15 2.630 47350K .......... .......... .......... .......... .......... 37% 125M 2s -2024-03-12T20:18:59Z #15 2.630 47400K .......... .......... .......... .......... .......... 37% 129M 2s -2024-03-12T20:18:59Z #15 2.631 47450K .......... .......... .......... .......... .......... 37% 75.9M 2s -2024-03-12T20:18:59Z #15 2.632 47500K .......... .......... .......... .......... .......... 37% 133M 2s -2024-03-12T20:18:59Z #15 2.632 47550K .......... .......... .......... .......... .......... 37% 160M 2s -2024-03-12T20:18:59Z #15 2.632 47600K .......... .......... .......... .......... .......... 37% 154M 2s -2024-03-12T20:18:59Z #15 2.632 47650K .......... .......... .......... .......... .......... 37% 121M 2s -2024-03-12T20:18:59Z #15 2.633 47700K .......... .......... .......... .......... .......... 37% 135M 2s -2024-03-12T20:18:59Z #15 2.633 47750K .......... .......... .......... .......... .......... 37% 123M 2s -2024-03-12T20:18:59Z #15 2.634 47800K .......... .......... .......... .......... .......... 37% 110M 2s -2024-03-12T20:18:59Z #15 2.634 47850K .......... .......... .......... .......... .......... 37% 120M 2s -2024-03-12T20:18:59Z #15 2.635 47900K .......... .......... .......... .......... .......... 37% 143M 2s -2024-03-12T20:18:59Z #15 2.635 47950K .......... .......... .......... .......... .......... 37% 138M 2s -2024-03-12T20:18:59Z #15 2.635 48000K .......... .......... .......... .......... .......... 37% 118M 2s -2024-03-12T20:18:59Z #15 2.636 48050K .......... .......... .......... .......... .......... 37% 66.6M 2s -2024-03-12T20:18:59Z #15 2.637 48100K .......... .......... .......... .......... .......... 37% 140M 2s -2024-03-12T20:18:59Z #15 2.637 48150K .......... .......... .......... .......... .......... 38% 107M 2s -2024-03-12T20:18:59Z #15 2.637 48200K .......... .......... .......... .......... .......... 38% 66.1M 2s -2024-03-12T20:18:59Z #15 2.638 48250K .......... .......... .......... .......... .......... 38% 134M 2s -2024-03-12T20:18:59Z #15 2.639 48300K .......... .......... .......... .......... .......... 38% 147M 2s -2024-03-12T20:18:59Z #15 2.639 48350K .......... .......... .......... .......... .......... 38% 107M 2s -2024-03-12T20:18:59Z #15 2.639 48400K .......... .......... .......... .......... .......... 38% 126M 2s -2024-03-12T20:18:59Z #15 2.639 48450K .......... .......... .......... .......... .......... 38% 126M 2s -2024-03-12T20:18:59Z #15 2.640 48500K .......... .......... .......... .......... .......... 38% 120M 2s -2024-03-12T20:18:59Z #15 2.640 48550K .......... .......... .......... .......... .......... 38% 90.0M 2s -2024-03-12T20:18:59Z #15 2.641 48600K .......... .......... .......... .......... .......... 38% 66.2M 2s -2024-03-12T20:18:59Z #15 2.641 48650K .......... .......... .......... .......... .......... 38% 95.6M 2s -2024-03-12T20:18:59Z #15 2.642 48700K .......... .......... .......... .......... .......... 38% 62.1M 2s -2024-03-12T20:18:59Z #15 2.643 48750K .......... .......... .......... .......... .......... 38% 124M 2s -2024-03-12T20:18:59Z #15 2.643 48800K .......... .......... .......... .......... .......... 38% 63.3M 2s -2024-03-12T20:18:59Z #15 2.644 48850K .......... .......... .......... .......... .......... 38% 117M 2s -2024-03-12T20:18:59Z #15 2.644 48900K .......... .......... .......... .......... .......... 38% 116M 2s -2024-03-12T20:18:59Z #15 2.645 48950K .......... .......... .......... .......... .......... 38% 118M 2s -2024-03-12T20:18:59Z #15 2.645 49000K .......... .......... .......... .......... .......... 38% 127M 2s -2024-03-12T20:18:59Z #15 2.647 49050K .......... .......... .......... .......... .......... 38% 130M 2s -2024-03-12T20:18:59Z #15 2.647 49100K .......... .......... .......... .......... .......... 38% 117M 2s -2024-03-12T20:18:59Z #15 2.647 49150K .......... .......... .......... .......... .......... 38% 55.6M 2s -2024-03-12T20:18:59Z #15 2.647 49200K .......... .......... .......... .......... .......... 38% 97.3M 2s -2024-03-12T20:18:59Z #15 2.648 49250K .......... .......... .......... .......... .......... 38% 62.8M 2s -2024-03-12T20:18:59Z #15 2.649 49300K .......... .......... .......... .......... .......... 38% 111M 2s -2024-03-12T20:18:59Z #15 2.649 49350K .......... .......... .......... .......... .......... 38% 96.9M 2s -2024-03-12T20:18:59Z #15 2.649 49400K .......... .......... .......... .......... .......... 39% 91.8M 2s -2024-03-12T20:18:59Z #15 2.650 49450K .......... .......... .......... .......... .......... 39% 108M 2s -2024-03-12T20:18:59Z #15 2.651 49500K .......... .......... .......... .......... .......... 39% 79.5M 2s -2024-03-12T20:18:59Z #15 2.651 49550K .......... .......... .......... .......... .......... 39% 101M 2s -2024-03-12T20:18:59Z #15 2.652 49600K .......... .......... .......... .......... .......... 39% 121M 2s -2024-03-12T20:18:59Z #15 2.652 49650K .......... .......... .......... .......... .......... 39% 119M 2s -2024-03-12T20:18:59Z #15 2.653 49700K .......... .......... .......... .......... .......... 39% 139M 2s -2024-03-12T20:18:59Z #15 2.653 49750K .......... .......... .......... .......... .......... 39% 103M 2s -2024-03-12T20:18:59Z #15 2.654 49800K .......... .......... .......... .......... .......... 39% 53.6M 2s -2024-03-12T20:18:59Z #15 2.654 49850K .......... .......... .......... .......... .......... 39% 87.4M 2s -2024-03-12T20:18:59Z #15 2.655 49900K .......... .......... .......... .......... .......... 39% 55.0M 2s -2024-03-12T20:18:59Z #15 2.656 49950K .......... .......... .......... .......... .......... 39% 112M 2s -2024-03-12T20:18:59Z #15 2.656 50000K .......... .......... .......... .......... .......... 39% 113M 2s -2024-03-12T20:18:59Z #15 2.656 50050K .......... .......... .......... .......... .......... 39% 124M 2s -2024-03-12T20:18:59Z #15 2.657 50100K .......... .......... .......... .......... .......... 39% 99.4M 2s -2024-03-12T20:18:59Z #15 2.658 50150K .......... .......... .......... .......... .......... 39% 134M 2s -2024-03-12T20:18:59Z #15 2.658 50200K .......... .......... .......... .......... .......... 39% 121M 2s -2024-03-12T20:18:59Z #15 2.658 50250K .......... .......... .......... .......... .......... 39% 80.3M 2s -2024-03-12T20:18:59Z #15 2.659 50300K .......... .......... .......... .......... .......... 39% 111M 2s -2024-03-12T20:18:59Z #15 2.659 50350K .......... .......... .......... .......... .......... 39% 136M 2s -2024-03-12T20:18:59Z #15 2.660 50400K .......... .......... .......... .......... .......... 39% 122M 2s -2024-03-12T20:18:59Z #15 2.660 50450K .......... .......... .......... .......... .......... 39% 126M 2s -2024-03-12T20:18:59Z #15 2.667 50500K .......... .......... .......... .......... .......... 39% 136M 2s -2024-03-12T20:18:59Z #15 2.667 50550K .......... .......... .......... .......... .......... 39% 166M 2s -2024-03-12T20:18:59Z #15 2.667 50600K .......... .......... .......... .......... .......... 39% 170M 2s -2024-03-12T20:18:59Z #15 2.667 50650K .......... .......... .......... .......... .......... 39% 164M 2s -2024-03-12T20:18:59Z #15 2.667 50700K .......... .......... .......... .......... .......... 40% 148M 2s -2024-03-12T20:18:59Z #15 2.667 50750K .......... .......... .......... .......... .......... 40% 168M 2s -2024-03-12T20:18:59Z #15 2.667 50800K .......... .......... .......... .......... .......... 40% 171M 2s -2024-03-12T20:18:59Z #15 2.667 50850K .......... .......... .......... .......... .......... 40% 169M 2s -2024-03-12T20:18:59Z #15 2.667 50900K .......... .......... .......... .......... .......... 40% 144M 2s -2024-03-12T20:18:59Z #15 2.667 50950K .......... .......... .......... .......... .......... 40% 173M 2s -2024-03-12T20:18:59Z #15 2.667 51000K .......... .......... .......... .......... .......... 40% 176M 2s -2024-03-12T20:18:59Z #15 2.667 51050K .......... .......... .......... .......... .......... 40% 156M 2s -2024-03-12T20:18:59Z #15 2.667 51100K .......... .......... .......... .......... .......... 40% 173M 2s -2024-03-12T20:18:59Z #15 2.667 51150K .......... .......... .......... .......... .......... 40% 175M 2s -2024-03-12T20:18:59Z #15 2.667 51200K .......... .......... .......... .......... .......... 40% 144M 2s -2024-03-12T20:18:59Z #15 2.667 51250K .......... .......... .......... .......... .......... 40% 162M 2s -2024-03-12T20:18:59Z #15 2.667 51300K .......... .......... .......... .......... .......... 40% 171M 2s -2024-03-12T20:18:59Z #15 2.667 51350K .......... .......... .......... .......... .......... 40% 160M 2s -2024-03-12T20:18:59Z #15 2.667 51400K .......... .......... .......... .......... .......... 40% 150M 2s -2024-03-12T20:18:59Z #15 2.667 51450K .......... .......... .......... .......... .......... 40% 99.3M 2s -2024-03-12T20:18:59Z #15 2.667 51500K .......... .......... .......... .......... .......... 40% 132M 2s -2024-03-12T20:18:59Z #15 2.667 51550K .......... .......... .......... .......... .......... 40% 130M 2s -2024-03-12T20:18:59Z #15 2.667 51600K .......... .......... .......... .......... .......... 40% 110M 2s -2024-03-12T20:18:59Z #15 2.668 51650K .......... .......... .......... .......... .......... 40% 113M 2s -2024-03-12T20:18:59Z #15 2.668 51700K .......... .......... .......... .......... .......... 40% 121M 2s -2024-03-12T20:18:59Z #15 2.669 51750K .......... .......... .......... .......... .......... 40% 103M 2s -2024-03-12T20:18:59Z #15 2.669 51800K .......... .......... .......... .......... .......... 40% 121M 2s -2024-03-12T20:18:59Z #15 2.670 51850K .......... .......... .......... .......... .......... 40% 91.8M 2s -2024-03-12T20:18:59Z #15 2.670 51900K .......... .......... .......... .......... .......... 40% 114M 2s -2024-03-12T20:18:59Z #15 2.670 51950K .......... .......... .......... .......... .......... 41% 109M 2s -2024-03-12T20:18:59Z #15 2.671 52000K .......... .......... .......... .......... .......... 41% 119M 2s -2024-03-12T20:18:59Z #15 2.671 52050K .......... .......... .......... .......... .......... 41% 120M 2s -2024-03-12T20:18:59Z #15 2.672 52100K .......... .......... .......... .......... .......... 41% 236K 2s -2024-03-12T20:18:59Z #15 2.884 52150K .......... .......... .......... .......... .......... 41% 43.8M 2s -2024-03-12T20:18:59Z #15 2.885 52200K .......... .......... .......... .......... .......... 41% 70.4M 2s -2024-03-12T20:18:59Z #15 2.885 52250K .......... .......... .......... .......... .......... 41% 28.8M 2s -2024-03-12T20:18:59Z #15 2.887 52300K .......... .......... .......... .......... .......... 41% 71.0M 2s -2024-03-12T20:18:59Z #15 2.888 52350K .......... .......... .......... .......... .......... 41% 63.3M 2s -2024-03-12T20:18:59Z #15 2.889 52400K .......... .......... .......... .......... .......... 41% 73.6M 2s -2024-03-12T20:18:59Z #15 2.889 52450K .......... .......... .......... .......... .......... 41% 56.3M 2s -2024-03-12T20:18:59Z #15 2.890 52500K .......... .......... .......... .......... .......... 41% 25.2M 2s -2024-03-12T20:18:59Z #15 2.892 52550K .......... .......... .......... .......... .......... 41% 86.6M 2s -2024-03-12T20:18:59Z #15 2.893 52600K .......... .......... .......... .......... .......... 41% 42.8M 2s -2024-03-12T20:18:59Z #15 2.894 52650K .......... .......... .......... .......... .......... 41% 32.8M 2s -2024-03-12T20:18:59Z #15 2.895 52700K .......... .......... .......... .......... .......... 41% 53.7M 2s -2024-03-12T20:18:59Z #15 2.896 52750K .......... .......... .......... .......... .......... 41% 37.0M 2s -2024-03-12T20:18:59Z #15 2.897 52800K .......... .......... .......... .......... .......... 41% 44.8M 2s -2024-03-12T20:18:59Z #15 2.899 52850K .......... .......... .......... .......... .......... 41% 21.8M 2s -2024-03-12T20:18:59Z #15 2.901 52900K .......... .......... .......... .......... .......... 41% 143M 2s -2024-03-12T20:18:59Z #15 2.901 52950K .......... .......... .......... .......... .......... 41% 93.8M 2s -2024-03-12T20:18:59Z #15 2.902 53000K .......... .......... .......... .......... .......... 41% 37.9M 2s -2024-03-12T20:18:59Z #15 2.903 53050K .......... .......... .......... .......... .......... 41% 30.0M 2s -2024-03-12T20:18:59Z #15 2.905 53100K .......... .......... .......... .......... .......... 41% 14.9M 2s -2024-03-12T20:18:59Z #15 2.908 53150K .......... .......... .......... .......... .......... 41% 42.2M 2s -2024-03-12T20:18:59Z #15 2.910 53200K .......... .......... .......... .......... .......... 42% 14.1M 2s -2024-03-12T20:18:59Z #15 2.912 53250K .......... .......... .......... .......... .......... 42% 102M 2s -2024-03-12T20:18:59Z #15 2.919 53300K .......... .......... .......... .......... .......... 42% 116M 2s -2024-03-12T20:18:59Z #15 2.919 53350K .......... .......... .......... .......... .......... 42% 45.7M 2s -2024-03-12T20:18:59Z #15 2.919 53400K .......... .......... .......... .......... .......... 42% 15.1M 2s -2024-03-12T20:18:59Z #15 2.919 53450K .......... .......... .......... .......... .......... 42% 122M 2s -2024-03-12T20:18:59Z #15 2.919 53500K .......... .......... .......... .......... .......... 42% 111M 2s -2024-03-12T20:18:59Z #15 2.919 53550K .......... .......... .......... .......... .......... 42% 84.5M 2s -2024-03-12T20:18:59Z #15 2.919 53600K .......... .......... .......... .......... .......... 42% 67.1M 2s -2024-03-12T20:18:59Z #15 2.920 53650K .......... .......... .......... .......... .......... 42% 94.9M 2s -2024-03-12T20:18:59Z #15 2.920 53700K .......... .......... .......... .......... .......... 42% 81.7M 2s -2024-03-12T20:18:59Z #15 2.921 53750K .......... .......... .......... .......... .......... 42% 23.5M 2s -2024-03-12T20:18:59Z #15 2.923 53800K .......... .......... .......... .......... .......... 42% 116M 2s -2024-03-12T20:18:59Z #15 2.923 53850K .......... .......... .......... .......... .......... 42% 98.8M 2s -2024-03-12T20:18:59Z #15 2.924 53900K .......... .......... .......... .......... .......... 42% 93.6M 2s -2024-03-12T20:18:59Z #15 2.924 53950K .......... .......... .......... .......... .......... 42% 114M 2s -2024-03-12T20:18:59Z #15 2.925 54000K .......... .......... .......... .......... .......... 42% 126M 2s -2024-03-12T20:18:59Z #15 2.926 54050K .......... .......... .......... .......... .......... 42% 102M 2s -2024-03-12T20:18:59Z #15 2.926 54100K .......... .......... .......... .......... .......... 42% 77.9M 2s -2024-03-12T20:18:59Z #15 2.926 54150K .......... .......... .......... .......... .......... 42% 118M 2s -2024-03-12T20:18:59Z #15 2.927 54200K .......... .......... .......... .......... .......... 42% 86.6M 2s -2024-03-12T20:18:59Z #15 2.927 54250K .......... .......... .......... .......... .......... 42% 65.8M 2s -2024-03-12T20:18:59Z #15 2.928 54300K .......... .......... .......... .......... .......... 42% 121M 2s -2024-03-12T20:18:59Z #15 2.929 54350K .......... .......... .......... .......... .......... 42% 113M 2s -2024-03-12T20:18:59Z #15 2.929 54400K .......... .......... .......... .......... .......... 42% 92.8M 2s -2024-03-12T20:18:59Z #15 2.930 54450K .......... .......... .......... .......... .......... 42% 97.1M 2s -2024-03-12T20:18:59Z #15 2.930 54500K .......... .......... .......... .......... .......... 43% 147M 2s -2024-03-12T20:18:59Z #15 2.930 54550K .......... .......... .......... .......... .......... 43% 129M 2s -2024-03-12T20:18:59Z #15 2.931 54600K .......... .......... .......... .......... .......... 43% 142M 2s -2024-03-12T20:18:59Z #15 2.931 54650K .......... .......... .......... .......... .......... 43% 129M 2s -2024-03-12T20:18:59Z #15 2.932 54700K .......... .......... .......... .......... .......... 43% 144M 2s -2024-03-12T20:18:59Z #15 2.932 54750K .......... .......... .......... .......... .......... 43% 122M 2s -2024-03-12T20:18:59Z #15 2.932 54800K .......... .......... .......... .......... .......... 43% 147M 2s -2024-03-12T20:18:59Z #15 2.933 54850K .......... .......... .......... .......... .......... 43% 144M 2s -2024-03-12T20:18:59Z #15 2.933 54900K .......... .......... .......... .......... .......... 43% 121M 2s -2024-03-12T20:18:59Z #15 2.934 54950K .......... .......... .......... .......... .......... 43% 140M 2s -2024-03-12T20:18:59Z #15 2.934 55000K .......... .......... .......... .......... .......... 43% 124M 2s -2024-03-12T20:18:59Z #15 2.934 55050K .......... .......... .......... .......... .......... 43% 55.1M 2s -2024-03-12T20:18:59Z #15 2.935 55100K .......... .......... .......... .......... .......... 43% 132M 2s -2024-03-12T20:18:59Z #15 2.935 55150K .......... .......... .......... .......... .......... 43% 113M 2s -2024-03-12T20:18:59Z #15 2.936 55200K .......... .......... .......... .......... .......... 43% 127M 2s -2024-03-12T20:18:59Z #15 2.936 55250K .......... .......... .......... .......... .......... 43% 114M 2s -2024-03-12T20:18:59Z #15 2.937 55300K .......... .......... .......... .......... .......... 43% 117M 2s -2024-03-12T20:18:59Z #15 2.937 55350K .......... .......... .......... .......... .......... 43% 134M 2s -2024-03-12T20:18:59Z #15 2.937 55400K .......... .......... .......... .......... .......... 43% 124M 2s -2024-03-12T20:18:59Z #15 2.938 55450K .......... .......... .......... .......... .......... 43% 132M 2s -2024-03-12T20:18:59Z #15 2.938 55500K .......... .......... .......... .......... .......... 43% 132M 2s -2024-03-12T20:18:59Z #15 2.938 55550K .......... .......... .......... .......... .......... 43% 146M 2s -2024-03-12T20:18:59Z #15 2.939 55600K .......... .......... .......... .......... .......... 43% 126M 2s -2024-03-12T20:18:59Z #15 2.939 55650K .......... .......... .......... .......... .......... 43% 139M 2s -2024-03-12T20:18:59Z #15 2.939 55700K .......... .......... .......... .......... .......... 43% 129M 2s -2024-03-12T20:18:59Z #15 2.940 55750K .......... .......... .......... .......... .......... 44% 137M 2s -2024-03-12T20:18:59Z #15 2.940 55800K .......... .......... .......... .......... .......... 44% 53.1M 2s -2024-03-12T20:18:59Z #15 2.941 55850K .......... .......... .......... .......... .......... 44% 153M 2s -2024-03-12T20:18:59Z #15 2.941 55900K .......... .......... .......... .......... .......... 44% 76.8M 2s -2024-03-12T20:18:59Z #15 2.942 55950K .......... .......... .......... .......... .......... 44% 124M 2s -2024-03-12T20:18:59Z #15 2.943 56000K .......... .......... .......... .......... .......... 44% 120M 2s -2024-03-12T20:18:59Z #15 2.943 56050K .......... .......... .......... .......... .......... 44% 120M 2s -2024-03-12T20:18:59Z #15 2.944 56100K .......... .......... .......... .......... .......... 44% 140M 2s -2024-03-12T20:18:59Z #15 2.944 56150K .......... .......... .......... .......... .......... 44% 133M 2s -2024-03-12T20:18:59Z #15 2.944 56200K .......... .......... .......... .......... .......... 44% 136M 2s -2024-03-12T20:18:59Z #15 2.945 56250K .......... .......... .......... .......... .......... 44% 125M 2s -2024-03-12T20:18:59Z #15 2.945 56300K .......... .......... .......... .......... .......... 44% 106M 2s -2024-03-12T20:18:59Z #15 2.945 56350K .......... .......... .......... .......... .......... 44% 140M 2s -2024-03-12T20:18:59Z #15 2.946 56400K .......... .......... .......... .......... .......... 44% 130M 2s -2024-03-12T20:18:59Z #15 2.946 56450K .......... .......... .......... .......... .......... 44% 119M 2s -2024-03-12T20:18:59Z #15 2.947 56500K .......... .......... .......... .......... .......... 44% 83.5M 2s -2024-03-12T20:18:59Z #15 2.947 56550K .......... .......... .......... .......... .......... 44% 72.7M 2s -2024-03-12T20:18:59Z #15 2.948 56600K .......... .......... .......... .......... .......... 44% 127M 2s -2024-03-12T20:18:59Z #15 2.948 56650K .......... .......... .......... .......... .......... 44% 107M 2s -2024-03-12T20:18:59Z #15 2.949 56700K .......... .......... .......... .......... .......... 44% 109M 2s -2024-03-12T20:18:59Z #15 2.949 56750K .......... .......... .......... .......... .......... 44% 139M 2s -2024-03-12T20:18:59Z #15 2.949 56800K .......... .......... .......... .......... .......... 44% 125M 2s -2024-03-12T20:18:59Z #15 2.950 56850K .......... .......... .......... .......... .......... 44% 109M 2s -2024-03-12T20:18:59Z #15 2.950 56900K .......... .......... .......... .......... .......... 44% 140M 2s -2024-03-12T20:18:59Z #15 2.951 56950K .......... .......... .......... .......... .......... 44% 145M 2s -2024-03-12T20:18:59Z #15 2.951 57000K .......... .......... .......... .......... .......... 44% 118M 2s -2024-03-12T20:18:59Z #15 2.951 57050K .......... .......... .......... .......... .......... 45% 128M 2s -2024-03-12T20:18:59Z #15 2.951 57100K .......... .......... .......... .......... .......... 45% 141M 2s -2024-03-12T20:18:59Z #15 2.952 57150K .......... .......... .......... .......... .......... 45% 135M 2s -2024-03-12T20:18:59Z #15 2.953 57200K .......... .......... .......... .......... .......... 45% 120M 2s -2024-03-12T20:18:59Z #15 2.953 57250K .......... .......... .......... .......... .......... 45% 65.6M 2s -2024-03-12T20:18:59Z #15 2.953 57300K .......... .......... .......... .......... .......... 45% 93.2M 2s -2024-03-12T20:18:59Z #15 2.954 57350K .......... .......... .......... .......... .......... 45% 132M 2s -2024-03-12T20:18:59Z #15 2.954 57400K .......... .......... .......... .......... .......... 45% 80.7M 2s -2024-03-12T20:18:59Z #15 2.955 57450K .......... .......... .......... .......... .......... 45% 111M 2s -2024-03-12T20:18:59Z #15 2.956 57500K .......... .......... .......... .......... .......... 45% 114M 2s -2024-03-12T20:18:59Z #15 2.956 57550K .......... .......... .......... .......... .......... 45% 136M 2s -2024-03-12T20:18:59Z #15 2.956 57600K .......... .......... .......... .......... .......... 45% 135M 2s -2024-03-12T20:18:59Z #15 2.957 57650K .......... .......... .......... .......... .......... 45% 140M 2s -2024-03-12T20:18:59Z #15 2.957 57700K .......... .......... .......... .......... .......... 45% 114M 2s -2024-03-12T20:18:59Z #15 2.957 57750K .......... .......... .......... .......... .......... 45% 133M 2s -2024-03-12T20:18:59Z #15 2.958 57800K .......... .......... .......... .......... .......... 45% 114M 2s -2024-03-12T20:18:59Z #15 2.959 57850K .......... .......... .......... .......... .......... 45% 153M 2s -2024-03-12T20:18:59Z #15 2.959 57900K .......... .......... .......... .......... .......... 45% 139M 2s -2024-03-12T20:18:59Z #15 2.959 57950K .......... .......... .......... .......... .......... 45% 114M 2s -2024-03-12T20:18:59Z #15 2.959 58000K .......... .......... .......... .......... .......... 45% 58.0M 2s -2024-03-12T20:18:59Z #15 2.960 58050K .......... .......... .......... .......... .......... 45% 120M 2s -2024-03-12T20:18:59Z #15 2.961 58100K .......... .......... .......... .......... .......... 45% 111M 2s -2024-03-12T20:18:59Z #15 2.961 58150K .......... .......... .......... .......... .......... 45% 128M 2s -2024-03-12T20:18:59Z #15 2.961 58200K .......... .......... .......... .......... .......... 45% 91.6M 2s -2024-03-12T20:18:59Z #15 2.962 58250K .......... .......... .......... .......... .......... 45% 136M 2s -2024-03-12T20:18:59Z #15 2.962 58300K .......... .......... .......... .......... .......... 46% 128M 2s -2024-03-12T20:18:59Z #15 2.963 58350K .......... .......... .......... .......... .......... 46% 116M 2s -2024-03-12T20:18:59Z #15 2.963 58400K .......... .......... .......... .......... .......... 46% 125M 2s -2024-03-12T20:18:59Z #15 2.963 58450K .......... .......... .......... .......... .......... 46% 137M 2s -2024-03-12T20:18:59Z #15 2.964 58500K .......... .......... .......... .......... .......... 46% 117M 2s -2024-03-12T20:18:59Z #15 2.964 58550K .......... .......... .......... .......... .......... 46% 73.0M 2s -2024-03-12T20:18:59Z #15 2.965 58600K .......... .......... .......... .......... .......... 46% 86.4M 2s -2024-03-12T20:18:59Z #15 2.965 58650K .......... .......... .......... .......... .......... 46% 119M 2s -2024-03-12T20:18:59Z #15 2.966 58700K .......... .......... .......... .......... .......... 46% 66.7M 2s -2024-03-12T20:18:59Z #15 2.966 58750K .......... .......... .......... .......... .......... 46% 84.3M 2s -2024-03-12T20:18:59Z #15 2.967 58800K .......... .......... .......... .......... .......... 46% 98.7M 2s -2024-03-12T20:18:59Z #15 2.968 58850K .......... .......... .......... .......... .......... 46% 91.6M 2s -2024-03-12T20:18:59Z #15 2.968 58900K .......... .......... .......... .......... .......... 46% 108M 2s -2024-03-12T20:18:59Z #15 2.968 58950K .......... .......... .......... .......... .......... 46% 122M 2s -2024-03-12T20:18:59Z #15 2.969 59000K .......... .......... .......... .......... .......... 46% 94.4M 2s -2024-03-12T20:18:59Z #15 2.969 59050K .......... .......... .......... .......... .......... 46% 65.1M 2s -2024-03-12T20:18:59Z #15 2.970 59100K .......... .......... .......... .......... .......... 46% 104M 2s -2024-03-12T20:18:59Z #15 2.971 59150K .......... .......... .......... .......... .......... 46% 67.5M 2s -2024-03-12T20:18:59Z #15 2.972 59200K .......... .......... .......... .......... .......... 46% 124M 2s -2024-03-12T20:18:59Z #15 2.972 59250K .......... .......... .......... .......... .......... 46% 97.4M 2s -2024-03-12T20:18:59Z #15 2.972 59300K .......... .......... .......... .......... .......... 46% 100M 2s -2024-03-12T20:18:59Z #15 2.973 59350K .......... .......... .......... .......... .......... 46% 108M 2s -2024-03-12T20:18:59Z #15 2.973 59400K .......... .......... .......... .......... .......... 46% 58.8M 2s -2024-03-12T20:18:59Z #15 2.974 59450K .......... .......... .......... .......... .......... 46% 110M 2s -2024-03-12T20:18:59Z #15 2.974 59500K .......... .......... .......... .......... .......... 46% 135M 2s -2024-03-12T20:18:59Z #15 2.975 59550K .......... .......... .......... .......... .......... 47% 75.9M 2s -2024-03-12T20:18:59Z #15 2.976 59600K .......... .......... .......... .......... .......... 47% 141M 2s -2024-03-12T20:18:59Z #15 2.976 59650K .......... .......... .......... .......... .......... 47% 110M 2s -2024-03-12T20:18:59Z #15 2.976 59700K .......... .......... .......... .......... .......... 47% 85.1M 2s -2024-03-12T20:18:59Z #15 2.977 59750K .......... .......... .......... .......... .......... 47% 100M 2s -2024-03-12T20:18:59Z #15 2.978 59800K .......... .......... .......... .......... .......... 47% 80.6M 2s -2024-03-12T20:18:59Z #15 2.978 59850K .......... .......... .......... .......... .......... 47% 95.2M 2s -2024-03-12T20:18:59Z #15 2.979 59900K .......... .......... .......... .......... .......... 47% 130M 2s -2024-03-12T20:18:59Z #15 2.979 59950K .......... .......... .......... .......... .......... 47% 94.6M 2s -2024-03-12T20:18:59Z #15 2.979 60000K .......... .......... .......... .......... .......... 47% 87.5M 2s -2024-03-12T20:18:59Z #15 2.980 60050K .......... .......... .......... .......... .......... 47% 92.4M 2s -2024-03-12T20:18:59Z #15 2.980 60100K .......... .......... .......... .......... .......... 47% 85.2M 2s -2024-03-12T20:18:59Z #15 2.981 60150K .......... .......... .......... .......... .......... 47% 121M 2s -2024-03-12T20:18:59Z #15 2.982 60200K .......... .......... .......... .......... .......... 47% 97.4M 2s -2024-03-12T20:18:59Z #15 2.986 60250K .......... .......... .......... .......... .......... 47% 113M 2s -2024-03-12T20:18:59Z #15 2.986 60300K .......... .......... .......... .......... .......... 47% 62.8M 2s -2024-03-12T20:18:59Z #15 2.986 60350K .......... .......... .......... .......... .......... 47% 130M 2s -2024-03-12T20:18:59Z #15 2.986 60400K .......... .......... .......... .......... .......... 47% 96.2M 2s -2024-03-12T20:18:59Z #15 2.986 60450K .......... .......... .......... .......... .......... 47% 76.7M 2s -2024-03-12T20:18:59Z #15 2.986 60500K .......... .......... .......... .......... .......... 47% 134M 2s -2024-03-12T20:18:59Z #15 2.986 60550K .......... .......... .......... .......... .......... 47% 63.5M 2s -2024-03-12T20:18:59Z #15 2.986 60600K .......... .......... .......... .......... .......... 47% 102M 2s -2024-03-12T20:18:59Z #15 2.987 60650K .......... .......... .......... .......... .......... 47% 62.1M 2s -2024-03-12T20:18:59Z #15 2.987 60700K .......... .......... .......... .......... .......... 47% 102M 2s -2024-03-12T20:18:59Z #15 2.987 60750K .......... .......... .......... .......... .......... 47% 112M 2s -2024-03-12T20:18:59Z #15 2.988 60800K .......... .......... .......... .......... .......... 47% 134M 2s -2024-03-12T20:18:59Z #15 2.989 60850K .......... .......... .......... .......... .......... 48% 115M 2s -2024-03-12T20:18:59Z #15 2.989 60900K .......... .......... .......... .......... .......... 48% 138M 2s -2024-03-12T20:18:59Z #15 2.989 60950K .......... .......... .......... .......... .......... 48% 64.0M 2s -2024-03-12T20:18:59Z #15 2.990 61000K .......... .......... .......... .......... .......... 48% 63.7M 2s -2024-03-12T20:18:59Z #15 2.994 61050K .......... .......... .......... .......... .......... 48% 70.4M 2s -2024-03-12T20:18:59Z #15 2.994 61100K .......... .......... .......... .......... .......... 48% 103M 2s -2024-03-12T20:18:59Z #15 2.994 61150K .......... .......... .......... .......... .......... 48% 94.7M 2s -2024-03-12T20:18:59Z #15 2.994 61200K .......... .......... .......... .......... .......... 48% 130M 2s -2024-03-12T20:18:59Z #15 2.994 61250K .......... .......... .......... .......... .......... 48% 95.7M 2s -2024-03-12T20:18:59Z #15 2.994 61300K .......... .......... .......... .......... .......... 48% 107M 2s -2024-03-12T20:18:59Z #15 2.994 61350K .......... .......... .......... .......... .......... 48% 59.9M 2s -2024-03-12T20:18:59Z #15 2.998 61400K .......... .......... .......... .......... .......... 48% 97.3M 2s -2024-03-12T20:18:59Z #15 2.998 61450K .......... .......... .......... .......... .......... 48% 129M 2s -2024-03-12T20:18:59Z #15 2.998 61500K .......... .......... .......... .......... .......... 48% 75.7M 2s -2024-03-12T20:18:59Z #15 2.998 61550K .......... .......... .......... .......... .......... 48% 107M 2s -2024-03-12T20:18:59Z #15 2.998 61600K .......... .......... .......... .......... .......... 48% 101M 2s -2024-03-12T20:18:59Z #15 2.998 61650K .......... .......... .......... .......... .......... 48% 76.6M 2s -2024-03-12T20:18:59Z #15 2.998 61700K .......... .......... .......... .......... .......... 48% 94.3M 2s -2024-03-12T20:18:59Z #15 2.998 61750K .......... .......... .......... .......... .......... 48% 61.0M 2s -2024-03-12T20:18:59Z #15 2.999 61800K .......... .......... .......... .......... .......... 48% 127M 2s -2024-03-12T20:18:59Z #15 2.999 61850K .......... .......... .......... .......... .......... 48% 81.2M 2s -2024-03-12T20:18:59Z #15 3.000 61900K .......... .......... .......... .......... .......... 48% 107M 1s -2024-03-12T20:18:59Z #15 3.000 61950K .......... .......... .......... .......... .......... 48% 105M 1s -2024-03-12T20:18:59Z #15 3.001 62000K .......... .......... .......... .......... .......... 48% 80.5M 1s -2024-03-12T20:18:59Z #15 3.001 62050K .......... .......... .......... .......... .......... 48% 142M 1s -2024-03-12T20:18:59Z #15 3.002 62100K .......... .......... .......... .......... .......... 49% 80.0M 1s -2024-03-12T20:18:59Z #15 3.002 62150K .......... .......... .......... .......... .......... 49% 57.0M 1s -2024-03-12T20:18:59Z #15 3.003 62200K .......... .......... .......... .......... .......... 49% 130M 1s -2024-03-12T20:18:59Z #15 3.004 62250K .......... .......... .......... .......... .......... 49% 129M 1s -2024-03-12T20:18:59Z #15 3.004 62300K .......... .......... .......... .......... .......... 49% 62.1M 1s -2024-03-12T20:18:59Z #15 3.005 62350K .......... .......... .......... .......... .......... 49% 118M 1s -2024-03-12T20:18:59Z #15 3.005 62400K .......... .......... .......... .......... .......... 49% 77.1M 1s -2024-03-12T20:18:59Z #15 3.006 62450K .......... .......... .......... .......... .......... 49% 61.0M 1s -2024-03-12T20:18:59Z #15 3.010 62500K .......... .......... .......... .......... .......... 49% 134M 1s -2024-03-12T20:18:59Z #15 3.010 62550K .......... .......... .......... .......... .......... 49% 63.8M 1s -2024-03-12T20:18:59Z #15 3.010 62600K .......... .......... .......... .......... .......... 49% 105M 1s -2024-03-12T20:18:59Z #15 3.010 62650K .......... .......... .......... .......... .......... 49% 85.4M 1s -2024-03-12T20:18:59Z #15 3.010 62700K .......... .......... .......... .......... .......... 49% 91.4M 1s -2024-03-12T20:18:59Z #15 3.010 62750K .......... .......... .......... .......... .......... 49% 136M 1s -2024-03-12T20:18:59Z #15 3.010 62800K .......... .......... .......... .......... .......... 49% 68.9M 1s -2024-03-12T20:18:59Z #15 3.010 62850K .......... .......... .......... .......... .......... 49% 115M 1s -2024-03-12T20:18:59Z #15 3.011 62900K .......... .......... .......... .......... .......... 49% 143M 1s -2024-03-12T20:18:59Z #15 3.011 62950K .......... .......... .......... .......... .......... 49% 59.6M 1s -2024-03-12T20:18:59Z #15 3.014 63000K .......... .......... .......... .......... .......... 49% 125M 1s -2024-03-12T20:18:59Z #15 3.014 63050K .......... .......... .......... .......... .......... 49% 130M 1s -2024-03-12T20:18:59Z #15 3.014 63100K .......... .......... .......... .......... .......... 49% 67.2M 1s -2024-03-12T20:18:59Z #15 3.014 63150K .......... .......... .......... .......... .......... 49% 78.8M 1s -2024-03-12T20:18:59Z #15 3.018 63200K .......... .......... .......... .......... .......... 49% 41.7M 1s -2024-03-12T20:18:59Z #15 3.018 63250K .......... .......... .......... .......... .......... 49% 52.0M 1s -2024-03-12T20:18:59Z #15 3.018 63300K .......... .......... .......... .......... .......... 49% 85.3M 1s -2024-03-12T20:18:59Z #15 3.018 63350K .......... .......... .......... .......... .......... 50% 57.2M 1s -2024-03-12T20:18:59Z #15 3.018 63400K .......... .......... .......... .......... .......... 50% 92.6M 1s -2024-03-12T20:18:59Z #15 3.019 63450K .......... .......... .......... .......... .......... 50% 165M 1s -2024-03-12T20:18:59Z #15 3.019 63500K .......... .......... .......... .......... .......... 50% 57.3M 1s -2024-03-12T20:18:59Z #15 3.019 63550K .......... .......... .......... .......... .......... 50% 45.9M 1s -2024-03-12T20:18:59Z #15 3.020 63600K .......... .......... .......... .......... .......... 50% 53.9M 1s -2024-03-12T20:18:59Z #15 3.024 63650K .......... .......... .......... .......... .......... 50% 59.0M 1s -2024-03-12T20:18:59Z #15 3.024 63700K .......... .......... .......... .......... .......... 50% 81.0M 1s -2024-03-12T20:18:59Z #15 3.024 63750K .......... .......... .......... .......... .......... 50% 88.7M 1s -2024-03-12T20:18:59Z #15 3.024 63800K .......... .......... .......... .......... .......... 50% 135M 1s -2024-03-12T20:18:59Z #15 3.024 63850K .......... .......... .......... .......... .......... 50% 118M 1s -2024-03-12T20:18:59Z #15 3.026 63900K .......... .......... .......... .......... .......... 50% 121M 1s -2024-03-12T20:18:59Z #15 3.026 63950K .......... .......... .......... .......... .......... 50% 98.3M 1s -2024-03-12T20:18:59Z #15 3.026 64000K .......... .......... .......... .......... .......... 50% 70.1M 1s -2024-03-12T20:18:59Z #15 3.026 64050K .......... .......... .......... .......... .......... 50% 12.6M 1s -2024-03-12T20:18:59Z #15 3.029 64100K .......... .......... .......... .......... .......... 50% 5.23M 1s -2024-03-12T20:18:59Z #15 3.042 64150K .......... .......... .......... .......... .......... 50% 125M 1s -2024-03-12T20:18:59Z #15 3.042 64200K .......... .......... .......... .......... .......... 50% 129M 1s -2024-03-12T20:18:59Z #15 3.042 64250K .......... .......... .......... .......... .......... 50% 117M 1s -2024-03-12T20:18:59Z #15 3.042 64300K .......... .......... .......... .......... .......... 50% 99.3M 1s -2024-03-12T20:18:59Z #15 3.042 64350K .......... .......... .......... .......... .......... 50% 93.9M 1s -2024-03-12T20:18:59Z #15 3.042 64400K .......... .......... .......... .......... .......... 50% 69.3M 1s -2024-03-12T20:18:59Z #15 3.042 64450K .......... .......... .......... .......... .......... 50% 83.5M 1s -2024-03-12T20:18:59Z #15 3.042 64500K .......... .......... .......... .......... .......... 50% 72.5M 1s -2024-03-12T20:18:59Z #15 3.043 64550K .......... .......... .......... .......... .......... 50% 65.3M 1s -2024-03-12T20:18:59Z #15 3.044 64600K .......... .......... .......... .......... .......... 50% 85.8M 1s -2024-03-12T20:18:59Z #15 3.044 64650K .......... .......... .......... .......... .......... 51% 63.3M 1s -2024-03-12T20:18:59Z #15 3.045 64700K .......... .......... .......... .......... .......... 51% 75.6M 1s -2024-03-12T20:18:59Z #15 3.046 64750K .......... .......... .......... .......... .......... 51% 10.9M 1s -2024-03-12T20:18:59Z #15 3.058 64800K .......... .......... .......... .......... .......... 51% 116M 1s -2024-03-12T20:18:59Z #15 3.058 64850K .......... .......... .......... .......... .......... 51% 71.1M 1s -2024-03-12T20:18:59Z #15 3.058 64900K .......... .......... .......... .......... .......... 51% 78.4M 1s -2024-03-12T20:18:59Z #15 3.058 64950K .......... .......... .......... .......... .......... 51% 76.8M 1s -2024-03-12T20:18:59Z #15 3.058 65000K .......... .......... .......... .......... .......... 51% 142M 1s -2024-03-12T20:18:59Z #15 3.058 65050K .......... .......... .......... .......... .......... 51% 169M 1s -2024-03-12T20:18:59Z #15 3.058 65100K .......... .......... .......... .......... .......... 51% 186M 1s -2024-03-12T20:18:59Z #15 3.058 65150K .......... .......... .......... .......... .......... 51% 115M 1s -2024-03-12T20:18:59Z #15 3.058 65200K .......... .......... .......... .......... .......... 51% 176M 1s -2024-03-12T20:18:59Z #15 3.058 65250K .......... .......... .......... .......... .......... 51% 164M 1s -2024-03-12T20:18:59Z #15 3.058 65300K .......... .......... .......... .......... .......... 51% 186M 1s -2024-03-12T20:18:59Z #15 3.058 65350K .......... .......... .......... .......... .......... 51% 185M 1s -2024-03-12T20:18:59Z #15 3.058 65400K .......... .......... .......... .......... .......... 51% 162M 1s -2024-03-12T20:18:59Z #15 3.058 65450K .......... .......... .......... .......... .......... 51% 186M 1s -2024-03-12T20:18:59Z #15 3.058 65500K .......... .......... .......... .......... .......... 51% 182M 1s -2024-03-12T20:18:59Z #15 3.058 65550K .......... .......... .......... .......... .......... 51% 148M 1s -2024-03-12T20:18:59Z #15 3.058 65600K .......... .......... .......... .......... .......... 51% 184M 1s -2024-03-12T20:18:59Z #15 3.058 65650K .......... .......... .......... .......... .......... 51% 171M 1s -2024-03-12T20:18:59Z #15 3.058 65700K .......... .......... .......... .......... .......... 51% 195M 1s -2024-03-12T20:18:59Z #15 3.058 65750K .......... .......... .......... .......... .......... 51% 147M 1s -2024-03-12T20:18:59Z #15 3.058 65800K .......... .......... .......... .......... .......... 51% 124M 1s -2024-03-12T20:18:59Z #15 3.058 65850K .......... .......... .......... .......... .......... 51% 57.1M 1s -2024-03-12T20:18:59Z #15 3.058 65900K .......... .......... .......... .......... .......... 52% 137M 1s -2024-03-12T20:18:59Z #15 3.066 65950K .......... .......... .......... .......... .......... 52% 107M 1s -2024-03-12T20:18:59Z #15 3.066 66000K .......... .......... .......... .......... .......... 52% 137M 1s -2024-03-12T20:18:59Z #15 3.066 66050K .......... .......... .......... .......... .......... 52% 121M 1s -2024-03-12T20:18:59Z #15 3.066 66100K .......... .......... .......... .......... .......... 52% 135M 1s -2024-03-12T20:18:59Z #15 3.066 66150K .......... .......... .......... .......... .......... 52% 144M 1s -2024-03-12T20:18:59Z #15 3.066 66200K .......... .......... .......... .......... .......... 52% 121M 1s -2024-03-12T20:18:59Z #15 3.066 66250K .......... .......... .......... .......... .......... 52% 117M 1s -2024-03-12T20:18:59Z #15 3.066 66300K .......... .......... .......... .......... .......... 52% 125M 1s -2024-03-12T20:18:59Z #15 3.066 66350K .......... .......... .......... .......... .......... 52% 137M 1s -2024-03-12T20:18:59Z #15 3.066 66400K .......... .......... .......... .......... .......... 52% 139M 1s -2024-03-12T20:18:59Z #15 3.066 66450K .......... .......... .......... .......... .......... 52% 116M 1s -2024-03-12T20:18:59Z #15 3.066 66500K .......... .......... .......... .......... .......... 52% 115M 1s -2024-03-12T20:18:59Z #15 3.066 66550K .......... .......... .......... .......... .......... 52% 98.4M 1s -2024-03-12T20:18:59Z #15 3.066 66600K .......... .......... .......... .......... .......... 52% 102M 1s -2024-03-12T20:18:59Z #15 3.066 66650K .......... .......... .......... .......... .......... 52% 107M 1s -2024-03-12T20:18:59Z #15 3.066 66700K .......... .......... .......... .......... .......... 52% 102M 1s -2024-03-12T20:18:59Z #15 3.066 66750K .......... .......... .......... .......... .......... 52% 98.7M 1s -2024-03-12T20:18:59Z #15 3.066 66800K .......... .......... .......... .......... .......... 52% 117M 1s -2024-03-12T20:18:59Z #15 3.066 66850K .......... .......... .......... .......... .......... 52% 119M 1s -2024-03-12T20:18:59Z #15 3.067 66900K .......... .......... .......... .......... .......... 52% 93.6M 1s -2024-03-12T20:18:59Z #15 3.067 66950K .......... .......... .......... .......... .......... 52% 115M 1s -2024-03-12T20:18:59Z #15 3.068 67000K .......... .......... .......... .......... .......... 52% 108M 1s -2024-03-12T20:18:59Z #15 3.068 67050K .......... .......... .......... .......... .......... 52% 118M 1s -2024-03-12T20:18:59Z #15 3.069 67100K .......... .......... .......... .......... .......... 52% 128M 1s -2024-03-12T20:18:59Z #15 3.069 67150K .......... .......... .......... .......... .......... 53% 111M 1s -2024-03-12T20:18:59Z #15 3.069 67200K .......... .......... .......... .......... .......... 53% 114M 1s -2024-03-12T20:18:59Z #15 3.070 67250K .......... .......... .......... .......... .......... 53% 129M 1s -2024-03-12T20:18:59Z #15 3.070 67300K .......... .......... .......... .......... .......... 53% 113M 1s -2024-03-12T20:18:59Z #15 3.074 67350K .......... .......... .......... .......... .......... 53% 158M 1s -2024-03-12T20:18:59Z #15 3.074 67400K .......... .......... .......... .......... .......... 53% 160M 1s -2024-03-12T20:18:59Z #15 3.074 67450K .......... .......... .......... .......... .......... 53% 191M 1s -2024-03-12T20:18:59Z #15 3.074 67500K .......... .......... .......... .......... .......... 53% 153M 1s -2024-03-12T20:18:59Z #15 3.074 67550K .......... .......... .......... .......... .......... 53% 191M 1s -2024-03-12T20:18:59Z #15 3.074 67600K .......... .......... .......... .......... .......... 53% 189M 1s -2024-03-12T20:18:59Z #15 3.074 67650K .......... .......... .......... .......... .......... 53% 167M 1s -2024-03-12T20:18:59Z #15 3.074 67700K .......... .......... .......... .......... .......... 53% 186M 1s -2024-03-12T20:18:59Z #15 3.074 67750K .......... .......... .......... .......... .......... 53% 174M 1s -2024-03-12T20:18:59Z #15 3.074 67800K .......... .......... .......... .......... .......... 53% 164M 1s -2024-03-12T20:18:59Z #15 3.074 67850K .......... .......... .......... .......... .......... 53% 184M 1s -2024-03-12T20:18:59Z #15 3.074 67900K .......... .......... .......... .......... .......... 53% 109M 1s -2024-03-12T20:18:59Z #15 3.075 67950K .......... .......... .......... .......... .......... 53% 113M 1s -2024-03-12T20:18:59Z #15 3.075 68000K .......... .......... .......... .......... .......... 53% 111M 1s -2024-03-12T20:18:59Z #15 3.075 68050K .......... .......... .......... .......... .......... 53% 127M 1s -2024-03-12T20:18:59Z #15 3.076 68100K .......... .......... .......... .......... .......... 53% 138M 1s -2024-03-12T20:18:59Z #15 3.076 68150K .......... .......... .......... .......... .......... 53% 112M 1s -2024-03-12T20:18:59Z #15 3.076 68200K .......... .......... .......... .......... .......... 53% 136M 1s -2024-03-12T20:18:59Z #15 3.077 68250K .......... .......... .......... .......... .......... 53% 112M 1s -2024-03-12T20:18:59Z #15 3.077 68300K .......... .......... .......... .......... .......... 53% 125M 1s -2024-03-12T20:18:59Z #15 3.078 68350K .......... .......... .......... .......... .......... 53% 126M 1s -2024-03-12T20:18:59Z #15 3.078 68400K .......... .......... .......... .......... .......... 53% 117M 1s -2024-03-12T20:18:59Z #15 3.089 68450K .......... .......... .......... .......... .......... 54% 148M 1s -2024-03-12T20:18:59Z #15 3.089 68500K .......... .......... .......... .......... .......... 54% 113M 1s -2024-03-12T20:18:59Z #15 3.089 68550K .......... .......... .......... .......... .......... 54% 133M 1s -2024-03-12T20:18:59Z #15 3.089 68600K .......... .......... .......... .......... .......... 54% 141M 1s -2024-03-12T20:18:59Z #15 3.089 68650K .......... .......... .......... .......... .......... 54% 139M 1s -2024-03-12T20:18:59Z #15 3.089 68700K .......... .......... .......... .......... .......... 54% 175M 1s -2024-03-12T20:18:59Z #15 3.089 68750K .......... .......... .......... .......... .......... 54% 147M 1s -2024-03-12T20:18:59Z #15 3.089 68800K .......... .......... .......... .......... .......... 54% 174M 1s -2024-03-12T20:18:59Z #15 3.089 68850K .......... .......... .......... .......... .......... 54% 167M 1s -2024-03-12T20:18:59Z #15 3.089 68900K .......... .......... .......... .......... .......... 54% 162M 1s -2024-03-12T20:18:59Z #15 3.089 68950K .......... .......... .......... .......... .......... 54% 15.9M 1s -2024-03-12T20:18:59Z #15 3.089 69000K .......... .......... .......... .......... .......... 54% 99.9M 1s -2024-03-12T20:18:59Z #15 3.089 69050K .......... .......... .......... .......... .......... 54% 136M 1s -2024-03-12T20:18:59Z #15 3.089 69100K .......... .......... .......... .......... .......... 54% 115M 1s -2024-03-12T20:18:59Z #15 3.089 69150K .......... .......... .......... .......... .......... 54% 129M 1s -2024-03-12T20:18:59Z #15 3.089 69200K .......... .......... .......... .......... .......... 54% 117M 1s -2024-03-12T20:18:59Z #15 3.089 69250K .......... .......... .......... .......... .......... 54% 110M 1s -2024-03-12T20:18:59Z #15 3.089 69300K .......... .......... .......... .......... .......... 54% 138M 1s -2024-03-12T20:18:59Z #15 3.089 69350K .......... .......... .......... .......... .......... 54% 144M 1s -2024-03-12T20:18:59Z #15 3.089 69400K .......... .......... .......... .......... .......... 54% 107M 1s -2024-03-12T20:18:59Z #15 3.089 69450K .......... .......... .......... .......... .......... 54% 131M 1s -2024-03-12T20:18:59Z #15 3.089 69500K .......... .......... .......... .......... .......... 54% 517K 1s -2024-03-12T20:18:59Z #15 3.186 69550K .......... .......... .......... .......... .......... 54% 45.2M 1s -2024-03-12T20:18:59Z #15 3.187 69600K .......... .......... .......... .......... .......... 54% 157M 1s -2024-03-12T20:18:59Z #15 3.187 69650K .......... .......... .......... .......... .......... 54% 34.1M 1s -2024-03-12T20:18:59Z #15 3.190 69700K .......... .......... .......... .......... .......... 55% 148M 1s -2024-03-12T20:18:59Z #15 3.190 69750K .......... .......... .......... .......... .......... 55% 156M 1s -2024-03-12T20:18:59Z #15 3.190 69800K .......... .......... .......... .......... .......... 55% 157M 1s -2024-03-12T20:18:59Z #15 3.190 69850K .......... .......... .......... .......... .......... 55% 126M 1s -2024-03-12T20:18:59Z #15 3.190 69900K .......... .......... .......... .......... .......... 55% 15.9M 1s -2024-03-12T20:18:59Z #15 3.193 69950K .......... .......... .......... .......... .......... 55% 39.3M 1s -2024-03-12T20:18:59Z #15 3.194 70000K .......... .......... .......... .......... .......... 55% 49.2M 1s -2024-03-12T20:18:59Z #15 3.195 70050K .......... .......... .......... .......... .......... 55% 142M 1s -2024-03-12T20:18:59Z #15 3.195 70100K .......... .......... .......... .......... .......... 55% 24.1M 1s -2024-03-12T20:18:59Z #15 3.197 70150K .......... .......... .......... .......... .......... 55% 43.8M 1s -2024-03-12T20:18:59Z #15 3.199 70200K .......... .......... .......... .......... .......... 55% 58.4M 1s -2024-03-12T20:18:59Z #15 3.199 70250K .......... .......... .......... .......... .......... 55% 33.2M 1s -2024-03-12T20:18:59Z #15 3.201 70300K .......... .......... .......... .......... .......... 55% 26.6M 1s -2024-03-12T20:18:59Z #15 3.203 70350K .......... .......... .......... .......... .......... 55% 17.8M 1s -2024-03-12T20:18:59Z #15 3.205 70400K .......... .......... .......... .......... .......... 55% 10.2M 1s -2024-03-12T20:18:59Z #15 3.210 70450K .......... .......... .......... .......... .......... 55% 23.0M 1s -2024-03-12T20:18:59Z #15 3.213 70500K .......... .......... .......... .......... .......... 55% 131M 1s -2024-03-12T20:18:59Z #15 3.213 70550K .......... .......... .......... .......... .......... 55% 162M 1s -2024-03-12T20:18:59Z #15 3.213 70600K .......... .......... .......... .......... .......... 55% 34.7M 1s -2024-03-12T20:18:59Z #15 3.215 70650K .......... .......... .......... .......... .......... 55% 17.7M 1s -2024-03-12T20:18:59Z #15 3.217 70700K .......... .......... .......... .......... .......... 55% 131M 1s -2024-03-12T20:18:59Z #15 3.217 70750K .......... .......... .......... .......... .......... 55% 14.8M 1s -2024-03-12T20:18:59Z #15 3.226 70800K .......... .......... .......... .......... .......... 55% 176M 1s -2024-03-12T20:18:59Z #15 3.226 70850K .......... .......... .......... .......... .......... 55% 164M 1s -2024-03-12T20:18:59Z #15 3.226 70900K .......... .......... .......... .......... .......... 55% 161M 1s -2024-03-12T20:18:59Z #15 3.226 70950K .......... .......... .......... .......... .......... 56% 186M 1s -2024-03-12T20:18:59Z #15 3.226 71000K .......... .......... .......... .......... .......... 56% 13.6M 1s -2024-03-12T20:18:59Z #15 3.226 71050K .......... .......... .......... .......... .......... 56% 167M 1s -2024-03-12T20:18:59Z #15 3.226 71100K .......... .......... .......... .......... .......... 56% 85.4M 1s -2024-03-12T20:18:59Z #15 3.226 71150K .......... .......... .......... .......... .......... 56% 29.8M 1s -2024-03-12T20:18:59Z #15 3.228 71200K .......... .......... .......... .......... .......... 56% 65.2M 1s -2024-03-12T20:18:59Z #15 3.229 71250K .......... .......... .......... .......... .......... 56% 164M 1s -2024-03-12T20:18:59Z #15 3.229 71300K .......... .......... .......... .......... .......... 56% 71.8M 1s -2024-03-12T20:18:59Z #15 3.230 71350K .......... .......... .......... .......... .......... 56% 33.7M 1s -2024-03-12T20:18:59Z #15 3.232 71400K .......... .......... .......... .......... .......... 56% 104M 1s -2024-03-12T20:18:59Z #15 3.232 71450K .......... .......... .......... .......... .......... 56% 79.2M 1s -2024-03-12T20:18:59Z #15 3.232 71500K .......... .......... .......... .......... .......... 56% 34.1M 1s -2024-03-12T20:18:59Z #15 3.234 71550K .......... .......... .......... .......... .......... 56% 134M 1s -2024-03-12T20:18:59Z #15 3.235 71600K .......... .......... .......... .......... .......... 56% 27.4M 1s -2024-03-12T20:18:59Z #15 3.236 71650K .......... .......... .......... .......... .......... 56% 39.0M 1s -2024-03-12T20:18:59Z #15 3.237 71700K .......... .......... .......... .......... .......... 56% 51.8M 1s -2024-03-12T20:18:59Z #15 3.238 71750K .......... .......... .......... .......... .......... 56% 54.4M 1s -2024-03-12T20:18:59Z #15 3.239 71800K .......... .......... .......... .......... .......... 56% 29.4M 1s -2024-03-12T20:18:59Z #15 3.241 71850K .......... .......... .......... .......... .......... 56% 42.2M 1s -2024-03-12T20:18:59Z #15 3.242 71900K .......... .......... .......... .......... .......... 56% 65.7M 1s -2024-03-12T20:18:59Z #15 3.243 71950K .......... .......... .......... .......... .......... 56% 30.5M 1s -2024-03-12T20:18:59Z #15 3.244 72000K .......... .......... .......... .......... .......... 56% 30.9M 1s -2024-03-12T20:18:59Z #15 3.246 72050K .......... .......... .......... .......... .......... 56% 69.7M 1s -2024-03-12T20:18:59Z #15 3.247 72100K .......... .......... .......... .......... .......... 56% 148M 1s -2024-03-12T20:18:59Z #15 3.247 72150K .......... .......... .......... .......... .......... 56% 28.1M 1s -2024-03-12T20:18:59Z #15 3.249 72200K .......... .......... .......... .......... .......... 56% 8.13M 1s -2024-03-12T20:18:59Z #15 3.254 72250K .......... .......... .......... .......... .......... 57% 49.8M 1s -2024-03-12T20:18:59Z #15 3.256 72300K .......... .......... .......... .......... .......... 57% 39.9M 1s -2024-03-12T20:18:59Z #15 3.256 72350K .......... .......... .......... .......... .......... 57% 34.5M 1s -2024-03-12T20:18:59Z #15 3.258 72400K .......... .......... .......... .......... .......... 57% 45.7M 1s -2024-03-12T20:18:59Z #15 3.259 72450K .......... .......... .......... .......... .......... 57% 129M 1s -2024-03-12T20:18:59Z #15 3.259 72500K .......... .......... .......... .......... .......... 57% 111M 1s -2024-03-12T20:18:59Z #15 3.260 72550K .......... .......... .......... .......... .......... 57% 129M 1s -2024-03-12T20:18:59Z #15 3.260 72600K .......... .......... .......... .......... .......... 57% 136M 1s -2024-03-12T20:18:59Z #15 3.261 72650K .......... .......... .......... .......... .......... 57% 106M 1s -2024-03-12T20:18:59Z #15 3.261 72700K .......... .......... .......... .......... .......... 57% 106M 1s -2024-03-12T20:18:59Z #15 3.261 72750K .......... .......... .......... .......... .......... 57% 19.8M 1s -2024-03-12T20:18:59Z #15 3.264 72800K .......... .......... .......... .......... .......... 57% 125M 1s -2024-03-12T20:18:59Z #15 3.264 72850K .......... .......... .......... .......... .......... 57% 117M 1s -2024-03-12T20:18:59Z #15 3.265 72900K .......... .......... .......... .......... .......... 57% 119M 1s -2024-03-12T20:18:59Z #15 3.265 72950K .......... .......... .......... .......... .......... 57% 118M 1s -2024-03-12T20:18:59Z #15 3.266 73000K .......... .......... .......... .......... .......... 57% 36.9M 1s -2024-03-12T20:18:59Z #15 3.267 73050K .......... .......... .......... .......... .......... 57% 139M 1s -2024-03-12T20:18:59Z #15 3.267 73100K .......... .......... .......... .......... .......... 57% 115M 1s -2024-03-12T20:18:59Z #15 3.268 73150K .......... .......... .......... .......... .......... 57% 141M 1s -2024-03-12T20:18:59Z #15 3.268 73200K .......... .......... .......... .......... .......... 57% 121M 1s -2024-03-12T20:18:59Z #15 3.268 73250K .......... .......... .......... .......... .......... 57% 140M 1s -2024-03-12T20:18:59Z #15 3.269 73300K .......... .......... .......... .......... .......... 57% 141M 1s -2024-03-12T20:18:59Z #15 3.269 73350K .......... .......... .......... .......... .......... 57% 148M 1s -2024-03-12T20:18:59Z #15 3.269 73400K .......... .......... .......... .......... .......... 57% 104M 1s -2024-03-12T20:18:59Z #15 3.270 73450K .......... .......... .......... .......... .......... 57% 107M 1s -2024-03-12T20:18:59Z #15 3.271 73500K .......... .......... .......... .......... .......... 58% 157M 1s -2024-03-12T20:18:59Z #15 3.271 73550K .......... .......... .......... .......... .......... 58% 136M 1s -2024-03-12T20:18:59Z #15 3.271 73600K .......... .......... .......... .......... .......... 58% 117M 1s -2024-03-12T20:18:59Z #15 3.272 73650K .......... .......... .......... .......... .......... 58% 158M 1s -2024-03-12T20:18:59Z #15 3.272 73700K .......... .......... .......... .......... .......... 58% 141M 1s -2024-03-12T20:18:59Z #15 3.272 73750K .......... .......... .......... .......... .......... 58% 115M 1s -2024-03-12T20:18:59Z #15 3.273 73800K .......... .......... .......... .......... .......... 58% 139M 1s -2024-03-12T20:18:59Z #15 3.273 73850K .......... .......... .......... .......... .......... 58% 130M 1s -2024-03-12T20:18:59Z #15 3.273 73900K .......... .......... .......... .......... .......... 58% 142M 1s -2024-03-12T20:18:59Z #15 3.274 73950K .......... .......... .......... .......... .......... 58% 9.93M 1s -2024-03-12T20:18:59Z #15 3.279 74000K .......... .......... .......... .......... .......... 58% 114M 1s -2024-03-12T20:18:59Z #15 3.279 74050K .......... .......... .......... .......... .......... 58% 131M 1s -2024-03-12T20:18:59Z #15 3.279 74100K .......... .......... .......... .......... .......... 58% 147M 1s -2024-03-12T20:18:59Z #15 3.280 74150K .......... .......... .......... .......... .......... 58% 172M 1s -2024-03-12T20:18:59Z #15 3.280 74200K .......... .......... .......... .......... .......... 58% 130M 1s -2024-03-12T20:18:59Z #15 3.280 74250K .......... .......... .......... .......... .......... 58% 125M 1s -2024-03-12T20:18:59Z #15 3.281 74300K .......... .......... .......... .......... .......... 58% 138M 1s -2024-03-12T20:18:59Z #15 3.283 74350K .......... .......... .......... .......... .......... 58% 124M 1s -2024-03-12T20:18:59Z #15 3.283 74400K .......... .......... .......... .......... .......... 58% 161M 1s -2024-03-12T20:18:59Z #15 3.286 74450K .......... .......... .......... .......... .......... 58% 10.9M 1s -2024-03-12T20:18:59Z #15 3.286 74500K .......... .......... .......... .......... .......... 58% 109M 1s -2024-03-12T20:18:59Z #15 3.287 74550K .......... .......... .......... .......... .......... 58% 132M 1s -2024-03-12T20:18:59Z #15 3.287 74600K .......... .......... .......... .......... .......... 58% 141M 1s -2024-03-12T20:18:59Z #15 3.288 74650K .......... .......... .......... .......... .......... 58% 150M 1s -2024-03-12T20:18:59Z #15 3.288 74700K .......... .......... .......... .......... .......... 58% 120M 1s -2024-03-12T20:18:59Z #15 3.288 74750K .......... .......... .......... .......... .......... 58% 125M 1s -2024-03-12T20:18:59Z #15 3.289 74800K .......... .......... .......... .......... .......... 59% 157M 1s -2024-03-12T20:18:59Z #15 3.290 74850K .......... .......... .......... .......... .......... 59% 147M 1s -2024-03-12T20:18:59Z #15 3.290 74900K .......... .......... .......... .......... .......... 59% 172M 1s -2024-03-12T20:18:59Z #15 3.290 74950K .......... .......... .......... .......... .......... 59% 110M 1s -2024-03-12T20:18:59Z #15 3.290 75000K .......... .......... .......... .......... .......... 59% 154M 1s -2024-03-12T20:18:59Z #15 3.290 75050K .......... .......... .......... .......... .......... 59% 144M 1s -2024-03-12T20:18:59Z #15 3.291 75100K .......... .......... .......... .......... .......... 59% 141M 1s -2024-03-12T20:18:59Z #15 3.291 75150K .......... .......... .......... .......... .......... 59% 127M 1s -2024-03-12T20:18:59Z #15 3.291 75200K .......... .......... .......... .......... .......... 59% 130M 1s -2024-03-12T20:18:59Z #15 3.292 75250K .......... .......... .......... .......... .......... 59% 130M 1s -2024-03-12T20:18:59Z #15 3.292 75300K .......... .......... .......... .......... .......... 59% 130M 1s -2024-03-12T20:18:59Z #15 3.292 75350K .......... .......... .......... .......... .......... 59% 118M 1s -2024-03-12T20:18:59Z #15 3.294 75400K .......... .......... .......... .......... .......... 59% 137M 1s -2024-03-12T20:18:59Z #15 3.294 75450K .......... .......... .......... .......... .......... 59% 158M 1s -2024-03-12T20:18:59Z #15 3.294 75500K .......... .......... .......... .......... .......... 59% 10.8M 1s -2024-03-12T20:18:59Z #15 3.298 75550K .......... .......... .......... .......... .......... 59% 132M 1s -2024-03-12T20:18:59Z #15 3.298 75600K .......... .......... .......... .......... .......... 59% 125M 1s -2024-03-12T20:18:59Z #15 3.299 75650K .......... .......... .......... .......... .......... 59% 142M 1s -2024-03-12T20:18:59Z #15 3.299 75700K .......... .......... .......... .......... .......... 59% 143M 1s -2024-03-12T20:18:59Z #15 3.299 75750K .......... .......... .......... .......... .......... 59% 122M 1s -2024-03-12T20:18:59Z #15 3.300 75800K .......... .......... .......... .......... .......... 59% 166M 1s -2024-03-12T20:18:59Z #15 3.300 75850K .......... .......... .......... .......... .......... 59% 133M 1s -2024-03-12T20:18:59Z #15 3.301 75900K .......... .......... .......... .......... .......... 59% 121M 1s -2024-03-12T20:18:59Z #15 3.301 75950K .......... .......... .......... .......... .......... 59% 130M 1s -2024-03-12T20:18:59Z #15 3.301 76000K .......... .......... .......... .......... .......... 59% 134M 1s -2024-03-12T20:18:59Z #15 3.307 76050K .......... .......... .......... .......... .......... 60% 133M 1s -2024-03-12T20:18:59Z #15 3.307 76100K .......... .......... .......... .......... .......... 60% 206M 1s -2024-03-12T20:18:59Z #15 3.307 76150K .......... .......... .......... .......... .......... 60% 199M 1s -2024-03-12T20:18:59Z #15 3.307 76200K .......... .......... .......... .......... .......... 60% 175M 1s -2024-03-12T20:18:59Z #15 3.307 76250K .......... .......... .......... .......... .......... 60% 190M 1s -2024-03-12T20:18:59Z #15 3.307 76300K .......... .......... .......... .......... .......... 60% 186M 1s -2024-03-12T20:18:59Z #15 3.307 76350K .......... .......... .......... .......... .......... 60% 198M 1s -2024-03-12T20:18:59Z #15 3.307 76400K .......... .......... .......... .......... .......... 60% 208M 1s -2024-03-12T20:18:59Z #15 3.307 76450K .......... .......... .......... .......... .......... 60% 212M 1s -2024-03-12T20:18:59Z #15 3.307 76500K .......... .......... .......... .......... .......... 60% 169M 1s -2024-03-12T20:18:59Z #15 3.307 76550K .......... .......... .......... .......... .......... 60% 210M 1s -2024-03-12T20:18:59Z #15 3.307 76600K .......... .......... .......... .......... .......... 60% 184M 1s -2024-03-12T20:18:59Z #15 3.307 76650K .......... .......... .......... .......... .......... 60% 190M 1s -2024-03-12T20:18:59Z #15 3.307 76700K .......... .......... .......... .......... .......... 60% 198M 1s -2024-03-12T20:18:59Z #15 3.307 76750K .......... .......... .......... .......... .......... 60% 169M 1s -2024-03-12T20:18:59Z #15 3.307 76800K .......... .......... .......... .......... .......... 60% 11.0M 1s -2024-03-12T20:18:59Z #15 3.310 76850K .......... .......... .......... .......... .......... 60% 142M 1s -2024-03-12T20:18:59Z #15 3.310 76900K .......... .......... .......... .......... .......... 60% 147M 1s -2024-03-12T20:18:59Z #15 3.312 76950K .......... .......... .......... .......... .......... 60% 119M 1s -2024-03-12T20:18:59Z #15 3.312 77000K .......... .......... .......... .......... .......... 60% 142M 1s -2024-03-12T20:18:59Z #15 3.312 77050K .......... .......... .......... .......... .......... 60% 129M 1s -2024-03-12T20:18:59Z #15 3.312 77100K .......... .......... .......... .......... .......... 60% 169M 1s -2024-03-12T20:18:59Z #15 3.312 77150K .......... .......... .......... .......... .......... 60% 131M 1s -2024-03-12T20:18:59Z #15 3.313 77200K .......... .......... .......... .......... .......... 60% 154M 1s -2024-03-12T20:18:59Z #15 3.313 77250K .......... .......... .......... .......... .......... 60% 124M 1s -2024-03-12T20:18:59Z #15 3.313 77300K .......... .......... .......... .......... .......... 61% 137M 1s -2024-03-12T20:18:59Z #15 3.314 77350K .......... .......... .......... .......... .......... 61% 113M 1s -2024-03-12T20:18:59Z #15 3.314 77400K .......... .......... .......... .......... .......... 61% 119M 1s -2024-03-12T20:18:59Z #15 3.315 77450K .......... .......... .......... .......... .......... 61% 154M 1s -2024-03-12T20:18:59Z #15 3.315 77500K .......... .......... .......... .......... .......... 61% 136M 1s -2024-03-12T20:18:59Z #15 3.317 77550K .......... .......... .......... .......... .......... 61% 28.5M 1s -2024-03-12T20:18:59Z #15 3.317 77600K .......... .......... .......... .......... .......... 61% 130M 1s -2024-03-12T20:18:59Z #15 3.317 77650K .......... .......... .......... .......... .......... 61% 147M 1s -2024-03-12T20:18:59Z #15 3.317 77700K .......... .......... .......... .......... .......... 61% 10.9M 1s -2024-03-12T20:18:59Z #15 3.322 77750K .......... .......... .......... .......... .......... 61% 93.4M 1s -2024-03-12T20:18:59Z #15 3.325 77800K .......... .......... .......... .......... .......... 61% 28.5M 1s -2024-03-12T20:18:59Z #15 3.325 77850K .......... .......... .......... .......... .......... 61% 128M 1s -2024-03-12T20:18:59Z #15 3.325 77900K .......... .......... .......... .......... .......... 61% 129M 1s -2024-03-12T20:18:59Z #15 3.325 77950K .......... .......... .......... .......... .......... 61% 108M 1s -2024-03-12T20:18:59Z #15 3.325 78000K .......... .......... .......... .......... .......... 61% 121M 1s -2024-03-12T20:18:59Z #15 3.327 78050K .......... .......... .......... .......... .......... 61% 147M 1s -2024-03-12T20:18:59Z #15 3.327 78100K .......... .......... .......... .......... .......... 61% 179M 1s -2024-03-12T20:18:59Z #15 3.327 78150K .......... .......... .......... .......... .......... 61% 114M 1s -2024-03-12T20:18:59Z #15 3.327 78200K .......... .......... .......... .......... .......... 61% 128M 1s -2024-03-12T20:18:59Z #15 3.329 78250K .......... .......... .......... .......... .......... 61% 26.8M 1s -2024-03-12T20:18:59Z #15 3.329 78300K .......... .......... .......... .......... .......... 61% 18.3M 1s -2024-03-12T20:18:59Z #15 3.332 78350K .......... .......... .......... .......... .......... 61% 113M 1s -2024-03-12T20:18:59Z #15 3.332 78400K .......... .......... .......... .......... .......... 61% 166M 1s -2024-03-12T20:18:59Z #15 3.332 78450K .......... .......... .......... .......... .......... 61% 146M 1s -2024-03-12T20:18:59Z #15 3.333 78500K .......... .......... .......... .......... .......... 61% 127M 1s -2024-03-12T20:18:59Z #15 3.333 78550K .......... .......... .......... .......... .......... 61% 112M 1s -2024-03-12T20:18:59Z #15 3.334 78600K .......... .......... .......... .......... .......... 62% 126M 1s -2024-03-12T20:18:59Z #15 3.334 78650K .......... .......... .......... .......... .......... 62% 157M 1s -2024-03-12T20:18:59Z #15 3.335 78700K .......... .......... .......... .......... .......... 62% 164M 1s -2024-03-12T20:18:59Z #15 3.335 78750K .......... .......... .......... .......... .......... 62% 126M 1s -2024-03-12T20:18:59Z #15 3.335 78800K .......... .......... .......... .......... .......... 62% 123M 1s -2024-03-12T20:18:59Z #15 3.336 78850K .......... .......... .......... .......... .......... 62% 118M 1s -2024-03-12T20:18:59Z #15 3.336 78900K .......... .......... .......... .......... .......... 62% 136M 1s -2024-03-12T20:18:59Z #15 3.336 78950K .......... .......... .......... .......... .......... 62% 131M 1s -2024-03-12T20:18:59Z #15 3.336 79000K .......... .......... .......... .......... .......... 62% 114M 1s -2024-03-12T20:18:59Z #15 3.337 79050K .......... .......... .......... .......... .......... 62% 135M 1s -2024-03-12T20:18:59Z #15 3.337 79100K .......... .......... .......... .......... .......... 62% 132M 1s -2024-03-12T20:18:59Z #15 3.339 79150K .......... .......... .......... .......... .......... 62% 29.0M 1s -2024-03-12T20:18:59Z #15 3.339 79200K .......... .......... .......... .......... .......... 62% 141M 1s -2024-03-12T20:18:59Z #15 3.340 79250K .......... .......... .......... .......... .......... 62% 143M 1s -2024-03-12T20:18:59Z #15 3.340 79300K .......... .......... .......... .......... .......... 62% 109M 1s -2024-03-12T20:18:59Z #15 3.341 79350K .......... .......... .......... .......... .......... 62% 143M 1s -2024-03-12T20:18:59Z #15 3.341 79400K .......... .......... .......... .......... .......... 62% 132M 1s -2024-03-12T20:18:59Z #15 3.341 79450K .......... .......... .......... .......... .......... 62% 115M 1s -2024-03-12T20:18:59Z #15 3.342 79500K .......... .......... .......... .......... .......... 62% 115M 1s -2024-03-12T20:18:59Z #15 3.342 79550K .......... .......... .......... .......... .......... 62% 136M 1s -2024-03-12T20:18:59Z #15 3.343 79600K .......... .......... .......... .......... .......... 62% 92.1M 1s -2024-03-12T20:18:59Z #15 3.343 79650K .......... .......... .......... .......... .......... 62% 133M 1s -2024-03-12T20:18:59Z #15 3.343 79700K .......... .......... .......... .......... .......... 62% 133M 1s -2024-03-12T20:18:59Z #15 3.344 79750K .......... .......... .......... .......... .......... 62% 111M 1s -2024-03-12T20:18:59Z #15 3.344 79800K .......... .......... .......... .......... .......... 62% 130M 1s -2024-03-12T20:18:59Z #15 3.345 79850K .......... .......... .......... .......... .......... 63% 140M 1s -2024-03-12T20:18:59Z #15 3.345 79900K .......... .......... .......... .......... .......... 63% 129M 1s -2024-03-12T20:18:59Z #15 3.346 79950K .......... .......... .......... .......... .......... 63% 94.4M 1s -2024-03-12T20:18:59Z #15 3.346 80000K .......... .......... .......... .......... .......... 63% 133M 1s -2024-03-12T20:18:59Z #15 3.346 80050K .......... .......... .......... .......... .......... 63% 109M 1s -2024-03-12T20:18:59Z #15 3.347 80100K .......... .......... .......... .......... .......... 63% 140M 1s -2024-03-12T20:18:59Z #15 3.347 80150K .......... .......... .......... .......... .......... 63% 138M 1s -2024-03-12T20:18:59Z #15 3.347 80200K .......... .......... .......... .......... .......... 63% 125M 1s -2024-03-12T20:18:59Z #15 3.348 80250K .......... .......... .......... .......... .......... 63% 126M 1s -2024-03-12T20:18:59Z #15 3.348 80300K .......... .......... .......... .......... .......... 63% 111M 1s -2024-03-12T20:18:59Z #15 3.349 80350K .......... .......... .......... .......... .......... 63% 91.8M 1s -2024-03-12T20:18:59Z #15 3.349 80400K .......... .......... .......... .......... .......... 63% 116M 1s -2024-03-12T20:18:59Z #15 3.350 80450K .......... .......... .......... .......... .......... 63% 124M 1s -2024-03-12T20:18:59Z #15 3.350 80500K .......... .......... .......... .......... .......... 63% 122M 1s -2024-03-12T20:18:59Z #15 3.350 80550K .......... .......... .......... .......... .......... 63% 134M 1s -2024-03-12T20:18:59Z #15 3.351 80600K .......... .......... .......... .......... .......... 63% 106M 1s -2024-03-12T20:18:59Z #15 3.351 80650K .......... .......... .......... .......... .......... 63% 121M 1s -2024-03-12T20:18:59Z #15 3.352 80700K .......... .......... .......... .......... .......... 63% 111M 1s -2024-03-12T20:18:59Z #15 3.352 80750K .......... .......... .......... .......... .......... 63% 129M 1s -2024-03-12T20:18:59Z #15 3.352 80800K .......... .......... .......... .......... .......... 63% 123M 1s -2024-03-12T20:18:59Z #15 3.353 80850K .......... .......... .......... .......... .......... 63% 87.9M 1s -2024-03-12T20:18:59Z #15 3.353 80900K .......... .......... .......... .......... .......... 63% 127M 1s -2024-03-12T20:18:59Z #15 3.354 80950K .......... .......... .......... .......... .......... 63% 103M 1s -2024-03-12T20:18:59Z #15 3.354 81000K .......... .......... .......... .......... .......... 63% 134M 1s -2024-03-12T20:18:59Z #15 3.355 81050K .......... .......... .......... .......... .......... 63% 110M 1s -2024-03-12T20:18:59Z #15 3.355 81100K .......... .......... .......... .......... .......... 64% 147M 1s -2024-03-12T20:18:59Z #15 3.355 81150K .......... .......... .......... .......... .......... 64% 87.0M 1s -2024-03-12T20:18:59Z #15 3.356 81200K .......... .......... .......... .......... .......... 64% 120M 1s -2024-03-12T20:18:59Z #15 3.356 81250K .......... .......... .......... .......... .......... 64% 116M 1s -2024-03-12T20:18:59Z #15 3.357 81300K .......... .......... .......... .......... .......... 64% 121M 1s -2024-03-12T20:18:59Z #15 3.357 81350K .......... .......... .......... .......... .......... 64% 97.1M 1s -2024-03-12T20:18:59Z #15 3.358 81400K .......... .......... .......... .......... .......... 64% 87.1M 1s -2024-03-12T20:18:59Z #15 3.358 81450K .......... .......... .......... .......... .......... 64% 123M 1s -2024-03-12T20:18:59Z #15 3.359 81500K .......... .......... .......... .......... .......... 64% 117M 1s -2024-03-12T20:18:59Z #15 3.359 81550K .......... .......... .......... .......... .......... 64% 105M 1s -2024-03-12T20:18:59Z #15 3.359 81600K .......... .......... .......... .......... .......... 64% 103M 1s -2024-03-12T20:18:59Z #15 3.360 81650K .......... .......... .......... .......... .......... 64% 119M 1s -2024-03-12T20:18:59Z #15 3.360 81700K .......... .......... .......... .......... .......... 64% 105M 1s -2024-03-12T20:18:59Z #15 3.361 81750K .......... .......... .......... .......... .......... 64% 123M 1s -2024-03-12T20:18:59Z #15 3.361 81800K .......... .......... .......... .......... .......... 64% 99.3M 1s -2024-03-12T20:18:59Z #15 3.362 81850K .......... .......... .......... .......... .......... 64% 100M 1s -2024-03-12T20:18:59Z #15 3.362 81900K .......... .......... .......... .......... .......... 64% 124M 1s -2024-03-12T20:18:59Z #15 3.363 81950K .......... .......... .......... .......... .......... 64% 103M 1s -2024-03-12T20:18:59Z #15 3.363 82000K .......... .......... .......... .......... .......... 64% 103M 1s -2024-03-12T20:18:59Z #15 3.363 82050K .......... .......... .......... .......... .......... 64% 104M 1s -2024-03-12T20:18:59Z #15 3.364 82100K .......... .......... .......... .......... .......... 64% 124M 1s -2024-03-12T20:18:59Z #15 3.364 82150K .......... .......... .......... .......... .......... 64% 125M 1s -2024-03-12T20:18:59Z #15 3.365 82200K .......... .......... .......... .......... .......... 64% 85.8M 1s -2024-03-12T20:18:59Z #15 3.365 82250K .......... .......... .......... .......... .......... 64% 125M 1s -2024-03-12T20:18:59Z #15 3.366 82300K .......... .......... .......... .......... .......... 64% 102M 1s -2024-03-12T20:18:59Z #15 3.366 82350K .......... .......... .......... .......... .......... 64% 102M 1s -2024-03-12T20:18:59Z #15 3.367 82400K .......... .......... .......... .......... .......... 65% 107M 1s -2024-03-12T20:18:59Z #15 3.367 82450K .......... .......... .......... .......... .......... 65% 98.9M 1s -2024-03-12T20:18:59Z #15 3.368 82500K .......... .......... .......... .......... .......... 65% 122M 1s -2024-03-12T20:18:59Z #15 3.369 82550K .......... .......... .......... .......... .......... 65% 103M 1s -2024-03-12T20:18:59Z #15 3.369 82600K .......... .......... .......... .......... .......... 65% 121M 1s -2024-03-12T20:18:59Z #15 3.369 82650K .......... .......... .......... .......... .......... 65% 96.3M 1s -2024-03-12T20:18:59Z #15 3.369 82700K .......... .......... .......... .......... .......... 65% 118M 1s -2024-03-12T20:18:59Z #15 3.370 82750K .......... .......... .......... .......... .......... 65% 123M 1s -2024-03-12T20:18:59Z #15 3.370 82800K .......... .......... .......... .......... .......... 65% 122M 1s -2024-03-12T20:18:59Z #15 3.371 82850K .......... .......... .......... .......... .......... 65% 98.2M 1s -2024-03-12T20:18:59Z #15 3.371 82900K .......... .......... .......... .......... .......... 65% 82.2M 1s -2024-03-12T20:18:59Z #15 3.372 82950K .......... .......... .......... .......... .......... 65% 95.6M 1s -2024-03-12T20:18:59Z #15 3.372 83000K .......... .......... .......... .......... .......... 65% 110M 1s -2024-03-12T20:18:59Z #15 3.373 83050K .......... .......... .......... .......... .......... 65% 104M 1s -2024-03-12T20:18:59Z #15 3.374 83100K .......... .......... .......... .......... .......... 65% 116M 1s -2024-03-12T20:18:59Z #15 3.374 83150K .......... .......... .......... .......... .......... 65% 110M 1s -2024-03-12T20:18:59Z #15 3.374 83200K .......... .......... .......... .......... .......... 65% 107M 1s -2024-03-12T20:18:59Z #15 3.375 83250K .......... .......... .......... .......... .......... 65% 115M 1s -2024-03-12T20:18:59Z #15 3.375 83300K .......... .......... .......... .......... .......... 65% 109M 1s -2024-03-12T20:18:59Z #15 3.375 83350K .......... .......... .......... .......... .......... 65% 107M 1s -2024-03-12T20:18:59Z #15 3.376 83400K .......... .......... .......... .......... .......... 65% 121M 1s -2024-03-12T20:18:59Z #15 3.376 83450K .......... .......... .......... .......... .......... 65% 107M 1s -2024-03-12T20:18:59Z #15 3.377 83500K .......... .......... .......... .......... .......... 65% 101M 1s -2024-03-12T20:18:59Z #15 3.377 83550K .......... .......... .......... .......... .......... 65% 135M 1s -2024-03-12T20:18:59Z #15 3.378 83600K .......... .......... .......... .......... .......... 65% 87.8M 1s -2024-03-12T20:18:59Z #15 3.378 83650K .......... .......... .......... .......... .......... 66% 101M 1s -2024-03-12T20:18:59Z #15 3.379 83700K .......... .......... .......... .......... .......... 66% 121M 1s -2024-03-12T20:18:59Z #15 3.379 83750K .......... .......... .......... .......... .......... 66% 107M 1s -2024-03-12T20:18:59Z #15 3.380 83800K .......... .......... .......... .......... .......... 66% 88.2M 1s -2024-03-12T20:18:59Z #15 3.381 83850K .......... .......... .......... .......... .......... 66% 10.4M 1s -2024-03-12T20:18:59Z #15 3.385 83900K .......... .......... .......... .......... .......... 66% 126M 1s -2024-03-12T20:18:59Z #15 3.385 83950K .......... .......... .......... .......... .......... 66% 112M 1s -2024-03-12T20:18:59Z #15 3.386 84000K .......... .......... .......... .......... .......... 66% 19.8M 1s -2024-03-12T20:18:59Z #15 3.388 84050K .......... .......... .......... .......... .......... 66% 133M 1s -2024-03-12T20:18:59Z #15 3.388 84100K .......... .......... .......... .......... .......... 66% 117M 1s -2024-03-12T20:18:59Z #15 3.389 84150K .......... .......... .......... .......... .......... 66% 160M 1s -2024-03-12T20:18:59Z #15 3.389 84200K .......... .......... .......... .......... .......... 66% 98.8M 1s -2024-03-12T20:18:59Z #15 3.389 84250K .......... .......... .......... .......... .......... 66% 124M 1s -2024-03-12T20:18:59Z #15 3.390 84300K .......... .......... .......... .......... .......... 66% 130M 1s -2024-03-12T20:18:59Z #15 3.390 84350K .......... .......... .......... .......... .......... 66% 137M 1s -2024-03-12T20:18:59Z #15 3.391 84400K .......... .......... .......... .......... .......... 66% 118M 1s -2024-03-12T20:18:59Z #15 3.392 84450K .......... .......... .......... .......... .......... 66% 132M 1s -2024-03-12T20:18:59Z #15 3.392 84500K .......... .......... .......... .......... .......... 66% 150M 1s -2024-03-12T20:18:59Z #15 3.392 84550K .......... .......... .......... .......... .......... 66% 115M 1s -2024-03-12T20:18:59Z #15 3.392 84600K .......... .......... .......... .......... .......... 66% 142M 1s -2024-03-12T20:18:59Z #15 3.392 84650K .......... .......... .......... .......... .......... 66% 133M 1s -2024-03-12T20:18:59Z #15 3.393 84700K .......... .......... .......... .......... .......... 66% 112M 1s -2024-03-12T20:18:59Z #15 3.393 84750K .......... .......... .......... .......... .......... 66% 136M 1s -2024-03-12T20:18:59Z #15 3.394 84800K .......... .......... .......... .......... .......... 66% 11.0M 1s -2024-03-12T20:18:59Z #15 3.401 84850K .......... .......... .......... .......... .......... 66% 138M 1s -2024-03-12T20:18:59Z #15 3.401 84900K .......... .......... .......... .......... .......... 67% 30.3M 1s -2024-03-12T20:18:59Z #15 3.401 84950K .......... .......... .......... .......... .......... 67% 163M 1s -2024-03-12T20:18:59Z #15 3.401 85000K .......... .......... .......... .......... .......... 67% 125M 1s -2024-03-12T20:18:59Z #15 3.401 85050K .......... .......... .......... .......... .......... 67% 147M 1s -2024-03-12T20:18:59Z #15 3.401 85100K .......... .......... .......... .......... .......... 67% 114M 1s -2024-03-12T20:18:59Z #15 3.402 85150K .......... .......... .......... .......... .......... 67% 113M 1s -2024-03-12T20:18:59Z #15 3.402 85200K .......... .......... .......... .......... .......... 67% 167M 1s -2024-03-12T20:18:59Z #15 3.402 85250K .......... .......... .......... .......... .......... 67% 143M 1s -2024-03-12T20:18:59Z #15 3.403 85300K .......... .......... .......... .......... .......... 67% 119M 1s -2024-03-12T20:18:59Z #15 3.404 85350K .......... .......... .......... .......... .......... 67% 163M 1s -2024-03-12T20:18:59Z #15 3.404 85400K .......... .......... .......... .......... .......... 67% 170M 1s -2024-03-12T20:18:59Z #15 3.404 85450K .......... .......... .......... .......... .......... 67% 127M 1s -2024-03-12T20:18:59Z #15 3.404 85500K .......... .......... .......... .......... .......... 67% 135M 1s -2024-03-12T20:18:59Z #15 3.404 85550K .......... .......... .......... .......... .......... 67% 119M 1s -2024-03-12T20:18:59Z #15 3.405 85600K .......... .......... .......... .......... .......... 67% 144M 1s -2024-03-12T20:18:59Z #15 3.405 85650K .......... .......... .......... .......... .......... 67% 9.38M 1s -2024-03-12T20:18:59Z #15 3.411 85700K .......... .......... .......... .......... .......... 67% 129M 1s -2024-03-12T20:18:59Z #15 3.411 85750K .......... .......... .......... .......... .......... 67% 123M 1s -2024-03-12T20:18:59Z #15 3.413 85800K .......... .......... .......... .......... .......... 67% 18.5M 1s -2024-03-12T20:18:59Z #15 3.415 85850K .......... .......... .......... .......... .......... 67% 71.0M 1s -2024-03-12T20:18:59Z #15 3.415 85900K .......... .......... .......... .......... .......... 67% 139M 1s -2024-03-12T20:18:59Z #15 3.415 85950K .......... .......... .......... .......... .......... 67% 114M 1s -2024-03-12T20:18:59Z #15 3.415 86000K .......... .......... .......... .......... .......... 67% 128M 1s -2024-03-12T20:18:59Z #15 3.416 86050K .......... .......... .......... .......... .......... 67% 132M 1s -2024-03-12T20:18:59Z #15 3.416 86100K .......... .......... .......... .......... .......... 67% 137M 1s -2024-03-12T20:18:59Z #15 3.416 86150K .......... .......... .......... .......... .......... 67% 128M 1s -2024-03-12T20:18:59Z #15 3.417 86200K .......... .......... .......... .......... .......... 68% 117M 1s -2024-03-12T20:18:59Z #15 3.417 86250K .......... .......... .......... .......... .......... 68% 169M 1s -2024-03-12T20:18:59Z #15 3.417 86300K .......... .......... .......... .......... .......... 68% 139M 1s -2024-03-12T20:18:59Z #15 3.418 86350K .......... .......... .......... .......... .......... 68% 10.9M 1s -2024-03-12T20:18:59Z #15 3.422 86400K .......... .......... .......... .......... .......... 68% 139M 1s -2024-03-12T20:18:59Z #15 3.423 86450K .......... .......... .......... .......... .......... 68% 130M 1s -2024-03-12T20:18:59Z #15 3.423 86500K .......... .......... .......... .......... .......... 68% 139M 1s -2024-03-12T20:18:59Z #15 3.423 86550K .......... .......... .......... .......... .......... 68% 119M 1s -2024-03-12T20:18:59Z #15 3.424 86600K .......... .......... .......... .......... .......... 68% 137M 1s -2024-03-12T20:18:59Z #15 3.424 86650K .......... .......... .......... .......... .......... 68% 144M 1s -2024-03-12T20:18:59Z #15 3.425 86700K .......... .......... .......... .......... .......... 68% 118M 1s -2024-03-12T20:18:59Z #15 3.425 86750K .......... .......... .......... .......... .......... 68% 129M 1s -2024-03-12T20:18:59Z #15 3.425 86800K .......... .......... .......... .......... .......... 68% 138M 1s -2024-03-12T20:18:59Z #15 3.426 86850K .......... .......... .......... .......... .......... 68% 93.2M 1s -2024-03-12T20:18:59Z #15 3.426 86900K .......... .......... .......... .......... .......... 68% 133M 1s -2024-03-12T20:18:59Z #15 3.427 86950K .......... .......... .......... .......... .......... 68% 160M 1s -2024-03-12T20:18:59Z #15 3.427 87000K .......... .......... .......... .......... .......... 68% 113M 1s -2024-03-12T20:18:59Z #15 3.427 87050K .......... .......... .......... .......... .......... 68% 136M 1s -2024-03-12T20:18:59Z #15 3.427 87100K .......... .......... .......... .......... .......... 68% 122M 1s -2024-03-12T20:18:59Z #15 3.428 87150K .......... .......... .......... .......... .......... 68% 131M 1s -2024-03-12T20:18:59Z #15 3.429 87200K .......... .......... .......... .......... .......... 68% 145M 1s -2024-03-12T20:18:59Z #15 3.429 87250K .......... .......... .......... .......... .......... 68% 109M 1s -2024-03-12T20:18:59Z #15 3.430 87300K .......... .......... .......... .......... .......... 68% 129M 1s -2024-03-12T20:18:59Z #15 3.430 87350K .......... .......... .......... .......... .......... 68% 81.3M 1s -2024-03-12T20:18:59Z #15 3.430 87400K .......... .......... .......... .......... .......... 68% 145M 1s -2024-03-12T20:18:59Z #15 3.430 87450K .......... .......... .......... .......... .......... 69% 116M 1s -2024-03-12T20:18:59Z #15 3.431 87500K .......... .......... .......... .......... .......... 69% 141M 1s -2024-03-12T20:18:59Z #15 3.431 87550K .......... .......... .......... .......... .......... 69% 122M 1s -2024-03-12T20:18:59Z #15 3.432 87600K .......... .......... .......... .......... .......... 69% 107M 1s -2024-03-12T20:18:59Z #15 3.432 87650K .......... .......... .......... .......... .......... 69% 138M 1s -2024-03-12T20:18:59Z #15 3.432 87700K .......... .......... .......... .......... .......... 69% 129M 1s -2024-03-12T20:18:59Z #15 3.433 87750K .......... .......... .......... .......... .......... 69% 133M 1s -2024-03-12T20:18:59Z #15 3.433 87800K .......... .......... .......... .......... .......... 69% 148M 1s -2024-03-12T20:18:59Z #15 3.433 87850K .......... .......... .......... .......... .......... 69% 5.82M 1s -2024-03-12T20:18:59Z #15 3.442 87900K .......... .......... .......... .......... .......... 69% 91.4M 1s -2024-03-12T20:18:59Z #15 3.442 87950K .......... .......... .......... .......... .......... 69% 128M 1s -2024-03-12T20:18:59Z #15 3.443 88000K .......... .......... .......... .......... .......... 69% 122M 1s -2024-03-12T20:18:59Z #15 3.443 88050K .......... .......... .......... .......... .......... 69% 142M 1s -2024-03-12T20:18:59Z #15 3.443 88100K .......... .......... .......... .......... .......... 69% 114M 1s -2024-03-12T20:18:59Z #15 3.444 88150K .......... .......... .......... .......... .......... 69% 130M 1s -2024-03-12T20:18:59Z #15 3.444 88200K .......... .......... .......... .......... .......... 69% 141M 1s -2024-03-12T20:18:59Z #15 3.445 88250K .......... .......... .......... .......... .......... 69% 169M 1s -2024-03-12T20:18:59Z #15 3.445 88300K .......... .......... .......... .......... .......... 69% 121M 1s -2024-03-12T20:18:59Z #15 3.445 88350K .......... .......... .......... .......... .......... 69% 142M 1s -2024-03-12T20:18:59Z #15 3.446 88400K .......... .......... .......... .......... .......... 69% 119M 1s -2024-03-12T20:18:59Z #15 3.446 88450K .......... .......... .......... .......... .......... 69% 139M 1s -2024-03-12T20:18:59Z #15 3.447 88500K .......... .......... .......... .......... .......... 69% 134M 1s -2024-03-12T20:18:59Z #15 3.447 88550K .......... .......... .......... .......... .......... 69% 122M 1s -2024-03-12T20:18:59Z #15 3.447 88600K .......... .......... .......... .......... .......... 69% 117M 1s -2024-03-12T20:18:59Z #15 3.448 88650K .......... .......... .......... .......... .......... 69% 162M 1s -2024-03-12T20:18:59Z #15 3.448 88700K .......... .......... .......... .......... .......... 70% 159M 1s -2024-03-12T20:18:59Z #15 3.448 88750K .......... .......... .......... .......... .......... 70% 139M 1s -2024-03-12T20:18:59Z #15 3.449 88800K .......... .......... .......... .......... .......... 70% 117M 1s -2024-03-12T20:18:59Z #15 3.449 88850K .......... .......... .......... .......... .......... 70% 127M 1s -2024-03-12T20:18:59Z #15 3.449 88900K .......... .......... .......... .......... .......... 70% 11.0M 1s -2024-03-12T20:18:59Z #15 3.455 88950K .......... .......... .......... .......... .......... 70% 27.8M 1s -2024-03-12T20:18:59Z #15 3.456 89000K .......... .......... .......... .......... .......... 70% 108M 1s -2024-03-12T20:18:59Z #15 3.456 89050K .......... .......... .......... .......... .......... 70% 120M 1s -2024-03-12T20:18:59Z #15 3.456 89100K .......... .......... .......... .......... .......... 70% 122M 1s -2024-03-12T20:18:59Z #15 3.457 89150K .......... .......... .......... .......... .......... 70% 101M 1s -2024-03-12T20:18:59Z #15 3.457 89200K .......... .......... .......... .......... .......... 70% 117M 1s -2024-03-12T20:18:59Z #15 3.459 89250K .......... .......... .......... .......... .......... 70% 139M 1s -2024-03-12T20:18:59Z #15 3.459 89300K .......... .......... .......... .......... .......... 70% 143M 1s -2024-03-12T20:18:59Z #15 3.459 89350K .......... .......... .......... .......... .......... 70% 149M 1s -2024-03-12T20:18:59Z #15 3.459 89400K .......... .......... .......... .......... .......... 70% 121M 1s -2024-03-12T20:18:59Z #15 3.459 89450K .......... .......... .......... .......... .......... 70% 102M 1s -2024-03-12T20:18:59Z #15 3.460 89500K .......... .......... .......... .......... .......... 70% 117M 1s -2024-03-12T20:18:59Z #15 3.460 89550K .......... .......... .......... .......... .......... 70% 123M 1s -2024-03-12T20:18:59Z #15 3.460 89600K .......... .......... .......... .......... .......... 70% 110M 1s -2024-03-12T20:18:59Z #15 3.461 89650K .......... .......... .......... .......... .......... 70% 103M 1s -2024-03-12T20:18:59Z #15 3.463 89700K .......... .......... .......... .......... .......... 70% 162M 1s -2024-03-12T20:18:59Z #15 3.463 89750K .......... .......... .......... .......... .......... 70% 10.5M 1s -2024-03-12T20:18:59Z #15 3.466 89800K .......... .......... .......... .......... .......... 70% 116M 1s -2024-03-12T20:18:59Z #15 3.467 89850K .......... .......... .......... .......... .......... 70% 139M 1s -2024-03-12T20:18:59Z #15 3.467 89900K .......... .......... .......... .......... .......... 70% 111M 1s -2024-03-12T20:18:59Z #15 3.468 89950K .......... .......... .......... .......... .......... 70% 146M 1s -2024-03-12T20:18:59Z #15 3.468 90000K .......... .......... .......... .......... .......... 71% 148M 1s -2024-03-12T20:18:59Z #15 3.468 90050K .......... .......... .......... .......... .......... 71% 118M 1s -2024-03-12T20:18:59Z #15 3.469 90100K .......... .......... .......... .......... .......... 71% 124M 1s -2024-03-12T20:18:59Z #15 3.469 90150K .......... .......... .......... .......... .......... 71% 111M 1s -2024-03-12T20:18:59Z #15 3.470 90200K .......... .......... .......... .......... .......... 71% 13.5M 1s -2024-03-12T20:18:59Z #15 3.474 90250K .......... .......... .......... .......... .......... 71% 99.3M 1s -2024-03-12T20:18:59Z #15 3.474 90300K .......... .......... .......... .......... .......... 71% 127M 1s -2024-03-12T20:18:59Z #15 3.474 90350K .......... .......... .......... .......... .......... 71% 138M 1s -2024-03-12T20:18:59Z #15 3.474 90400K .......... .......... .......... .......... .......... 71% 116M 1s -2024-03-12T20:18:59Z #15 3.475 90450K .......... .......... .......... .......... .......... 71% 148M 1s -2024-03-12T20:18:59Z #15 3.475 90500K .......... .......... .......... .......... .......... 71% 132M 1s -2024-03-12T20:18:59Z #15 3.475 90550K .......... .......... .......... .......... .......... 71% 128M 1s -2024-03-12T20:18:59Z #15 3.476 90600K .......... .......... .......... .......... .......... 71% 129M 1s -2024-03-12T20:18:59Z #15 3.477 90650K .......... .......... .......... .......... .......... 71% 182M 1s -2024-03-12T20:18:59Z #15 3.477 90700K .......... .......... .......... .......... .......... 71% 121M 1s -2024-03-12T20:18:59Z #15 3.477 90750K .......... .......... .......... .......... .......... 71% 130M 1s -2024-03-12T20:18:59Z #15 3.477 90800K .......... .......... .......... .......... .......... 71% 122M 1s -2024-03-12T20:18:59Z #15 3.478 90850K .......... .......... .......... .......... .......... 71% 80.6M 1s -2024-03-12T20:18:59Z #15 3.478 90900K .......... .......... .......... .......... .......... 71% 135M 1s -2024-03-12T20:18:59Z #15 3.479 90950K .......... .......... .......... .......... .......... 71% 148M 1s -2024-03-12T20:18:59Z #15 3.479 91000K .......... .......... .......... .......... .......... 71% 114M 1s -2024-03-12T20:18:59Z #15 3.479 91050K .......... .......... .......... .......... .......... 71% 146M 1s -2024-03-12T20:18:59Z #15 3.480 91100K .......... .......... .......... .......... .......... 71% 114M 1s -2024-03-12T20:18:59Z #15 3.480 91150K .......... .......... .......... .......... .......... 71% 125M 1s -2024-03-12T20:18:59Z #15 3.480 91200K .......... .......... .......... .......... .......... 71% 134M 1s -2024-03-12T20:18:59Z #15 3.481 91250K .......... .......... .......... .......... .......... 72% 121M 1s -2024-03-12T20:18:59Z #15 3.481 91300K .......... .......... .......... .......... .......... 72% 110M 1s -2024-03-12T20:18:59Z #15 3.482 91350K .......... .......... .......... .......... .......... 72% 102M 1s -2024-03-12T20:18:59Z #15 3.482 91400K .......... .......... .......... .......... .......... 72% 129M 1s -2024-03-12T20:18:59Z #15 3.483 91450K .......... .......... .......... .......... .......... 72% 101M 1s -2024-03-12T20:18:59Z #15 3.483 91500K .......... .......... .......... .......... .......... 72% 154M 1s -2024-03-12T20:18:59Z #15 3.490 91550K .......... .......... .......... .......... .......... 72% 178M 1s -2024-03-12T20:18:59Z #15 3.490 91600K .......... .......... .......... .......... .......... 72% 178M 1s -2024-03-12T20:18:59Z #15 3.490 91650K .......... .......... .......... .......... .......... 72% 155M 1s -2024-03-12T20:18:59Z #15 3.490 91700K .......... .......... .......... .......... .......... 72% 158M 1s -2024-03-12T20:18:59Z #15 3.490 91750K .......... .......... .......... .......... .......... 72% 133M 1s -2024-03-12T20:18:59Z #15 3.490 91800K .......... .......... .......... .......... .......... 72% 170M 1s -2024-03-12T20:18:59Z #15 3.490 91850K .......... .......... .......... .......... .......... 72% 184M 1s -2024-03-12T20:18:59Z #15 3.490 91900K .......... .......... .......... .......... .......... 72% 117M 1s -2024-03-12T20:18:59Z #15 3.490 91950K .......... .......... .......... .......... .......... 72% 92.3M 1s -2024-03-12T20:18:59Z #15 3.490 92000K .......... .......... .......... .......... .......... 72% 90.9M 1s -2024-03-12T20:18:59Z #15 3.490 92050K .......... .......... .......... .......... .......... 72% 104M 1s -2024-03-12T20:18:59Z #15 3.490 92100K .......... .......... .......... .......... .......... 72% 97.0M 1s -2024-03-12T20:18:59Z #15 3.490 92150K .......... .......... .......... .......... .......... 72% 101M 1s -2024-03-12T20:18:59Z #15 3.490 92200K .......... .......... .......... .......... .......... 72% 92.2M 1s -2024-03-12T20:18:59Z #15 3.490 92250K .......... .......... .......... .......... .......... 72% 84.0M 1s -2024-03-12T20:18:59Z #15 3.490 92300K .......... .......... .......... .......... .......... 72% 93.3M 1s -2024-03-12T20:18:59Z #15 3.490 92350K .......... .......... .......... .......... .......... 72% 75.7M 1s -2024-03-12T20:18:59Z #15 3.491 92400K .......... .......... .......... .......... .......... 72% 96.2M 1s -2024-03-12T20:18:59Z #15 3.491 92450K .......... .......... .......... .......... .......... 72% 104M 1s -2024-03-12T20:18:59Z #15 3.492 92500K .......... .......... .......... .......... .......... 72% 105M 1s -2024-03-12T20:18:59Z #15 3.492 92550K .......... .......... .......... .......... .......... 73% 99.1M 1s -2024-03-12T20:18:59Z #15 3.493 92600K .......... .......... .......... .......... .......... 73% 117M 1s -2024-03-12T20:18:59Z #15 3.493 92650K .......... .......... .......... .......... .......... 73% 128M 1s -2024-03-12T20:18:59Z #15 3.493 92700K .......... .......... .......... .......... .......... 73% 104M 1s -2024-03-12T20:18:59Z #15 3.494 92750K .......... .......... .......... .......... .......... 73% 111M 1s -2024-03-12T20:18:59Z #15 3.494 92800K .......... .......... .......... .......... .......... 73% 130M 1s -2024-03-12T20:18:59Z #15 3.495 92850K .......... .......... .......... .......... .......... 73% 139M 1s -2024-03-12T20:18:59Z #15 3.495 92900K .......... .......... .......... .......... .......... 73% 110M 1s -2024-03-12T20:18:59Z #15 3.496 92950K .......... .......... .......... .......... .......... 73% 135M 1s -2024-03-12T20:18:59Z #15 3.496 93000K .......... .......... .......... .......... .......... 73% 139M 1s -2024-03-12T20:18:59Z #15 3.496 93050K .......... .......... .......... .......... .......... 73% 116M 1s -2024-03-12T20:18:59Z #15 3.497 93100K .......... .......... .......... .......... .......... 73% 116M 1s -2024-03-12T20:18:59Z #15 3.497 93150K .......... .......... .......... .......... .......... 73% 142M 1s -2024-03-12T20:18:59Z #15 3.497 93200K .......... .......... .......... .......... .......... 73% 97.5M 1s -2024-03-12T20:18:59Z #15 3.498 93250K .......... .......... .......... .......... .......... 73% 134M 1s -2024-03-12T20:18:59Z #15 3.498 93300K .......... .......... .......... .......... .......... 73% 132M 1s -2024-03-12T20:18:59Z #15 3.499 93350K .......... .......... .......... .......... .......... 73% 137M 1s -2024-03-12T20:18:59Z #15 3.499 93400K .......... .......... .......... .......... .......... 73% 114M 1s -2024-03-12T20:18:59Z #15 3.499 93450K .......... .......... .......... .......... .......... 73% 128M 1s -2024-03-12T20:18:59Z #15 3.500 93500K .......... .......... .......... .......... .......... 73% 127M 1s -2024-03-12T20:18:59Z #15 3.500 93550K .......... .......... .......... .......... .......... 73% 107M 1s -2024-03-12T20:18:59Z #15 3.501 93600K .......... .......... .......... .......... .......... 73% 115M 1s -2024-03-12T20:18:59Z #15 3.501 93650K .......... .......... .......... .......... .......... 73% 94.3M 1s -2024-03-12T20:18:59Z #15 3.502 93700K .......... .......... .......... .......... .......... 73% 110M 1s -2024-03-12T20:18:59Z #15 3.502 93750K .......... .......... .......... .......... .......... 73% 124M 1s -2024-03-12T20:18:59Z #15 3.502 93800K .......... .......... .......... .......... .......... 74% 132M 1s -2024-03-12T20:18:59Z #15 3.503 93850K .......... .......... .......... .......... .......... 74% 98.6M 1s -2024-03-12T20:18:59Z #15 3.503 93900K .......... .......... .......... .......... .......... 74% 124M 1s -2024-03-12T20:18:59Z #15 3.504 93950K .......... .......... .......... .......... .......... 74% 123M 1s -2024-03-12T20:19:00Z #15 3.504 94000K .......... .......... .......... .......... .......... 74% 112M 1s -2024-03-12T20:19:00Z #15 3.510 94050K .......... .......... .......... .......... .......... 74% 158M 1s -2024-03-12T20:19:00Z #15 3.510 94100K .......... .......... .......... .......... .......... 74% 153M 1s -2024-03-12T20:19:00Z #15 3.510 94150K .......... .......... .......... .......... .......... 74% 148M 1s -2024-03-12T20:19:00Z #15 3.510 94200K .......... .......... .......... .......... .......... 74% 170M 1s -2024-03-12T20:19:00Z #15 3.510 94250K .......... .......... .......... .......... .......... 74% 126M 1s -2024-03-12T20:19:00Z #15 3.510 94300K .......... .......... .......... .......... .......... 74% 147M 1s -2024-03-12T20:19:00Z #15 3.510 94350K .......... .......... .......... .......... .......... 74% 161M 1s -2024-03-12T20:19:00Z #15 3.510 94400K .......... .......... .......... .......... .......... 74% 175M 1s -2024-03-12T20:19:00Z #15 3.510 94450K .......... .......... .......... .......... .......... 74% 168M 1s -2024-03-12T20:19:00Z #15 3.510 94500K .......... .......... .......... .......... .......... 74% 137M 1s -2024-03-12T20:19:00Z #15 3.510 94550K .......... .......... .......... .......... .......... 74% 143M 1s -2024-03-12T20:19:00Z #15 3.510 94600K .......... .......... .......... .......... .......... 74% 134M 1s -2024-03-12T20:19:00Z #15 3.510 94650K .......... .......... .......... .......... .......... 74% 168M 1s -2024-03-12T20:19:00Z #15 3.510 94700K .......... .......... .......... .......... .......... 74% 136M 1s -2024-03-12T20:19:00Z #15 3.510 94750K .......... .......... .......... .......... .......... 74% 123M 1s -2024-03-12T20:19:00Z #15 3.510 94800K .......... .......... .......... .......... .......... 74% 116M 1s -2024-03-12T20:19:00Z #15 3.510 94850K .......... .......... .......... .......... .......... 74% 112M 1s -2024-03-12T20:19:00Z #15 3.510 94900K .......... .......... .......... .......... .......... 74% 117M 1s -2024-03-12T20:19:00Z #15 3.511 94950K .......... .......... .......... .......... .......... 74% 91.4M 1s -2024-03-12T20:19:00Z #15 3.511 95000K .......... .......... .......... .......... .......... 74% 100M 1s -2024-03-12T20:19:00Z #15 3.512 95050K .......... .......... .......... .......... .......... 75% 104M 1s -2024-03-12T20:19:00Z #15 3.512 95100K .......... .......... .......... .......... .......... 75% 107M 1s -2024-03-12T20:19:00Z #15 3.513 95150K .......... .......... .......... .......... .......... 75% 135M 1s -2024-03-12T20:19:00Z #15 3.513 95200K .......... .......... .......... .......... .......... 75% 114M 1s -2024-03-12T20:19:00Z #15 3.514 95250K .......... .......... .......... .......... .......... 75% 92.7M 1s -2024-03-12T20:19:00Z #15 3.514 95300K .......... .......... .......... .......... .......... 75% 113M 1s -2024-03-12T20:19:00Z #15 3.514 95350K .......... .......... .......... .......... .......... 75% 105M 1s -2024-03-12T20:19:00Z #15 3.515 95400K .......... .......... .......... .......... .......... 75% 138M 1s -2024-03-12T20:19:00Z #15 3.516 95450K .......... .......... .......... .......... .......... 75% 135M 1s -2024-03-12T20:19:00Z #15 3.516 95500K .......... .......... .......... .......... .......... 75% 152M 1s -2024-03-12T20:19:00Z #15 3.516 95550K .......... .......... .......... .......... .......... 75% 114M 1s -2024-03-12T20:19:00Z #15 3.516 95600K .......... .......... .......... .......... .......... 75% 127M 1s -2024-03-12T20:19:00Z #15 3.517 95650K .......... .......... .......... .......... .......... 75% 123M 1s -2024-03-12T20:19:00Z #15 3.517 95700K .......... .......... .......... .......... .......... 75% 112M 1s -2024-03-12T20:19:00Z #15 3.518 95750K .......... .......... .......... .......... .......... 75% 125M 1s -2024-03-12T20:19:00Z #15 3.518 95800K .......... .......... .......... .......... .......... 75% 123M 1s -2024-03-12T20:19:00Z #15 3.518 95850K .......... .......... .......... .......... .......... 75% 102M 1s -2024-03-12T20:19:00Z #15 3.519 95900K .......... .......... .......... .......... .......... 75% 128M 1s -2024-03-12T20:19:00Z #15 3.519 95950K .......... .......... .......... .......... .......... 75% 116M 1s -2024-03-12T20:19:00Z #15 3.520 96000K .......... .......... .......... .......... .......... 75% 113M 1s -2024-03-12T20:19:00Z #15 3.520 96050K .......... .......... .......... .......... .......... 75% 116M 1s -2024-03-12T20:19:00Z #15 3.521 96100K .......... .......... .......... .......... .......... 75% 127M 1s -2024-03-12T20:19:00Z #15 3.521 96150K .......... .......... .......... .......... .......... 75% 118M 1s -2024-03-12T20:19:00Z #15 3.521 96200K .......... .......... .......... .......... .......... 75% 134M 1s -2024-03-12T20:19:00Z #15 3.522 96250K .......... .......... .......... .......... .......... 75% 111M 1s -2024-03-12T20:19:00Z #15 3.526 96300K .......... .......... .......... .......... .......... 75% 145M 1s -2024-03-12T20:19:00Z #15 3.526 96350K .......... .......... .......... .......... .......... 76% 165M 1s -2024-03-12T20:19:00Z #15 3.526 96400K .......... .......... .......... .......... .......... 76% 138M 1s -2024-03-12T20:19:00Z #15 3.526 96450K .......... .......... .......... .......... .......... 76% 161M 1s -2024-03-12T20:19:00Z #15 3.526 96500K .......... .......... .......... .......... .......... 76% 174M 1s -2024-03-12T20:19:00Z #15 3.526 96550K .......... .......... .......... .......... .......... 76% 140M 1s -2024-03-12T20:19:00Z #15 3.526 96600K .......... .......... .......... .......... .......... 76% 164M 1s -2024-03-12T20:19:00Z #15 3.526 96650K .......... .......... .......... .......... .......... 76% 165M 1s -2024-03-12T20:19:00Z #15 3.526 96700K .......... .......... .......... .......... .......... 76% 144M 1s -2024-03-12T20:19:00Z #15 3.526 96750K .......... .......... .......... .......... .......... 76% 158M 1s -2024-03-12T20:19:00Z #15 3.526 96800K .......... .......... .......... .......... .......... 76% 141M 1s -2024-03-12T20:19:00Z #15 3.526 96850K .......... .......... .......... .......... .......... 76% 110M 1s -2024-03-12T20:19:00Z #15 3.526 96900K .......... .......... .......... .......... .......... 76% 127M 1s -2024-03-12T20:19:00Z #15 3.526 96950K .......... .......... .......... .......... .......... 76% 110M 1s -2024-03-12T20:19:00Z #15 3.527 97000K .......... .......... .......... .......... .......... 76% 100M 1s -2024-03-12T20:19:00Z #15 3.527 97050K .......... .......... .......... .......... .......... 76% 121M 1s -2024-03-12T20:19:00Z #15 3.528 97100K .......... .......... .......... .......... .......... 76% 124M 1s -2024-03-12T20:19:00Z #15 3.528 97150K .......... .......... .......... .......... .......... 76% 127M 1s -2024-03-12T20:19:00Z #15 3.529 97200K .......... .......... .......... .......... .......... 76% 123M 1s -2024-03-12T20:19:00Z #15 3.529 97250K .......... .......... .......... .......... .......... 76% 123M 1s -2024-03-12T20:19:00Z #15 3.529 97300K .......... .......... .......... .......... .......... 76% 124M 1s -2024-03-12T20:19:00Z #15 3.531 97350K .......... .......... .......... .......... .......... 76% 132M 1s -2024-03-12T20:19:00Z #15 3.531 97400K .......... .......... .......... .......... .......... 76% 171M 1s -2024-03-12T20:19:00Z #15 3.531 97450K .......... .......... .......... .......... .......... 76% 148M 1s -2024-03-12T20:19:00Z #15 3.531 97500K .......... .......... .......... .......... .......... 76% 139M 1s -2024-03-12T20:19:00Z #15 3.531 97550K .......... .......... .......... .......... .......... 76% 151M 1s -2024-03-12T20:19:00Z #15 3.531 97600K .......... .......... .......... .......... .......... 77% 134M 1s -2024-03-12T20:19:00Z #15 3.532 97650K .......... .......... .......... .......... .......... 77% 150M 1s -2024-03-12T20:19:00Z #15 3.532 97700K .......... .......... .......... .......... .......... 77% 147M 1s -2024-03-12T20:19:00Z #15 3.532 97750K .......... .......... .......... .......... .......... 77% 123M 1s -2024-03-12T20:19:00Z #15 3.533 97800K .......... .......... .......... .......... .......... 77% 144M 1s -2024-03-12T20:19:00Z #15 3.533 97850K .......... .......... .......... .......... .......... 77% 133M 1s -2024-03-12T20:19:00Z #15 3.534 97900K .......... .......... .......... .......... .......... 77% 108M 1s -2024-03-12T20:19:00Z #15 3.535 97950K .......... .......... .......... .......... .......... 77% 138M 1s -2024-03-12T20:19:00Z #15 3.535 98000K .......... .......... .......... .......... .......... 77% 154M 1s -2024-03-12T20:19:00Z #15 3.535 98050K .......... .......... .......... .......... .......... 77% 151M 1s -2024-03-12T20:19:00Z #15 3.535 98100K .......... .......... .......... .......... .......... 77% 135M 1s -2024-03-12T20:19:00Z #15 3.536 98150K .......... .......... .......... .......... .......... 77% 154M 1s -2024-03-12T20:19:00Z #15 3.536 98200K .......... .......... .......... .......... .......... 77% 144M 1s -2024-03-12T20:19:00Z #15 3.536 98250K .......... .......... .......... .......... .......... 77% 149M 1s -2024-03-12T20:19:00Z #15 3.536 98300K .......... .......... .......... .......... .......... 77% 152M 1s -2024-03-12T20:19:00Z #15 3.537 98350K .......... .......... .......... .......... .......... 77% 118M 1s -2024-03-12T20:19:00Z #15 3.537 98400K .......... .......... .......... .......... .......... 77% 145M 1s -2024-03-12T20:19:00Z #15 3.537 98450K .......... .......... .......... .......... .......... 77% 110M 1s -2024-03-12T20:19:00Z #15 3.538 98500K .......... .......... .......... .......... .......... 77% 101M 1s -2024-03-12T20:19:00Z #15 3.538 98550K .......... .......... .......... .......... .......... 77% 120M 1s -2024-03-12T20:19:00Z #15 3.539 98600K .......... .......... .......... .......... .......... 77% 118M 1s -2024-03-12T20:19:00Z #15 3.539 98650K .......... .......... .......... .......... .......... 77% 106M 1s -2024-03-12T20:19:00Z #15 3.540 98700K .......... .......... .......... .......... .......... 77% 125M 1s -2024-03-12T20:19:00Z #15 3.540 98750K .......... .......... .......... .......... .......... 77% 121M 1s -2024-03-12T20:19:00Z #15 3.541 98800K .......... .......... .......... .......... .......... 77% 103M 1s -2024-03-12T20:19:00Z #15 3.541 98850K .......... .......... .......... .......... .......... 78% 119M 1s -2024-03-12T20:19:00Z #15 3.541 98900K .......... .......... .......... .......... .......... 78% 153M 1s -2024-03-12T20:19:00Z #15 3.542 98950K .......... .......... .......... .......... .......... 78% 108M 1s -2024-03-12T20:19:00Z #15 3.542 99000K .......... .......... .......... .......... .......... 78% 98.7M 1s -2024-03-12T20:19:00Z #15 3.546 99050K .......... .......... .......... .......... .......... 78% 161M 1s -2024-03-12T20:19:00Z #15 3.546 99100K .......... .......... .......... .......... .......... 78% 150M 1s -2024-03-12T20:19:00Z #15 3.546 99150K .......... .......... .......... .......... .......... 78% 160M 1s -2024-03-12T20:19:00Z #15 3.546 99200K .......... .......... .......... .......... .......... 78% 130M 1s -2024-03-12T20:19:00Z #15 3.546 99250K .......... .......... .......... .......... .......... 78% 172M 1s -2024-03-12T20:19:00Z #15 3.546 99300K .......... .......... .......... .......... .......... 78% 146M 1s -2024-03-12T20:19:00Z #15 3.546 99350K .......... .......... .......... .......... .......... 78% 167M 1s -2024-03-12T20:19:00Z #15 3.546 99400K .......... .......... .......... .......... .......... 78% 132M 1s -2024-03-12T20:19:00Z #15 3.546 99450K .......... .......... .......... .......... .......... 78% 164M 1s -2024-03-12T20:19:00Z #15 3.546 99500K .......... .......... .......... .......... .......... 78% 153M 1s -2024-03-12T20:19:00Z #15 3.546 99550K .......... .......... .......... .......... .......... 78% 98.9M 1s -2024-03-12T20:19:00Z #15 3.546 99600K .......... .......... .......... .......... .......... 78% 114M 1s -2024-03-12T20:19:00Z #15 3.547 99650K .......... .......... .......... .......... .......... 78% 110M 1s -2024-03-12T20:19:00Z #15 3.547 99700K .......... .......... .......... .......... .......... 78% 118M 1s -2024-03-12T20:19:00Z #15 3.548 99750K .......... .......... .......... .......... .......... 78% 109M 1s -2024-03-12T20:19:00Z #15 3.548 99800K .......... .......... .......... .......... .......... 78% 103M 1s -2024-03-12T20:19:00Z #15 3.552 99850K .......... .......... .......... .......... .......... 78% 160M 1s -2024-03-12T20:19:00Z #15 3.552 99900K .......... .......... .......... .......... .......... 78% 137M 1s -2024-03-12T20:19:00Z #15 3.552 99950K .......... .......... .......... .......... .......... 78% 158M 1s -2024-03-12T20:19:00Z #15 3.552 100000K .......... .......... .......... .......... .......... 78% 160M 1s -2024-03-12T20:19:00Z #15 3.552 100050K .......... .......... .......... .......... .......... 78% 125M 1s -2024-03-12T20:19:00Z #15 3.552 100100K .......... .......... .......... .......... .......... 78% 161M 1s -2024-03-12T20:19:00Z #15 3.552 100150K .......... .......... .......... .......... .......... 79% 157M 1s -2024-03-12T20:19:00Z #15 3.552 100200K .......... .......... .......... .......... .......... 79% 137M 1s -2024-03-12T20:19:00Z #15 3.552 100250K .......... .......... .......... .......... .......... 79% 129M 1s -2024-03-12T20:19:00Z #15 3.552 100300K .......... .......... .......... .......... .......... 79% 118M 1s -2024-03-12T20:19:00Z #15 3.552 100350K .......... .......... .......... .......... .......... 79% 91.1M 1s -2024-03-12T20:19:00Z #15 3.552 100400K .......... .......... .......... .......... .......... 79% 117M 1s -2024-03-12T20:19:00Z #15 3.553 100450K .......... .......... .......... .......... .......... 79% 104M 1s -2024-03-12T20:19:00Z #15 3.553 100500K .......... .......... .......... .......... .......... 79% 93.3M 1s -2024-03-12T20:19:00Z #15 3.554 100550K .......... .......... .......... .......... .......... 79% 106M 1s -2024-03-12T20:19:00Z #15 3.554 100600K .......... .......... .......... .......... .......... 79% 99.2M 1s -2024-03-12T20:19:00Z #15 3.555 100650K .......... .......... .......... .......... .......... 79% 110M 1s -2024-03-12T20:19:00Z #15 3.555 100700K .......... .......... .......... .......... .......... 79% 103M 1s -2024-03-12T20:19:00Z #15 3.556 100750K .......... .......... .......... .......... .......... 79% 103M 1s -2024-03-12T20:19:00Z #15 3.556 100800K .......... .......... .......... .......... .......... 79% 123M 1s -2024-03-12T20:19:00Z #15 3.557 100850K .......... .......... .......... .......... .......... 79% 125M 1s -2024-03-12T20:19:00Z #15 3.557 100900K .......... .......... .......... .......... .......... 79% 115M 1s -2024-03-12T20:19:00Z #15 3.557 100950K .......... .......... .......... .......... .......... 79% 113M 1s -2024-03-12T20:19:00Z #15 3.558 101000K .......... .......... .......... .......... .......... 79% 82.4M 1s -2024-03-12T20:19:00Z #15 3.558 101050K .......... .......... .......... .......... .......... 79% 66.5M 1s -2024-03-12T20:19:00Z #15 3.567 101100K .......... .......... .......... .......... .......... 79% 97.1M 1s -2024-03-12T20:19:00Z #15 3.567 101150K .......... .......... .......... .......... .......... 79% 71.4M 1s -2024-03-12T20:19:00Z #15 3.567 101200K .......... .......... .......... .......... .......... 79% 123M 1s -2024-03-12T20:19:00Z #15 3.567 101250K .......... .......... .......... .......... .......... 79% 150M 1s -2024-03-12T20:19:00Z #15 3.567 101300K .......... .......... .......... .......... .......... 79% 149M 1s -2024-03-12T20:19:00Z #15 3.567 101350K .......... .......... .......... .......... .......... 79% 162M 0s -2024-03-12T20:19:00Z #15 3.567 101400K .......... .......... .......... .......... .......... 80% 127M 0s -2024-03-12T20:19:00Z #15 3.567 101450K .......... .......... .......... .......... .......... 80% 166M 0s -2024-03-12T20:19:00Z #15 3.567 101500K .......... .......... .......... .......... .......... 80% 163M 0s -2024-03-12T20:19:00Z #15 3.567 101550K .......... .......... .......... .......... .......... 80% 145M 0s -2024-03-12T20:19:00Z #15 3.567 101600K .......... .......... .......... .......... .......... 80% 130M 0s -2024-03-12T20:19:00Z #15 3.567 101650K .......... .......... .......... .......... .......... 80% 180M 0s -2024-03-12T20:19:00Z #15 3.567 101700K .......... .......... .......... .......... .......... 80% 142M 0s -2024-03-12T20:19:00Z #15 3.567 101750K .......... .......... .......... .......... .......... 80% 146M 0s -2024-03-12T20:19:00Z #15 3.567 101800K .......... .......... .......... .......... .......... 80% 143M 0s -2024-03-12T20:19:00Z #15 3.567 101850K .......... .......... .......... .......... .......... 80% 156M 0s -2024-03-12T20:19:00Z #15 3.567 101900K .......... .......... .......... .......... .......... 80% 168M 0s -2024-03-12T20:19:00Z #15 3.567 101950K .......... .......... .......... .......... .......... 80% 152M 0s -2024-03-12T20:19:00Z #15 3.567 102000K .......... .......... .......... .......... .......... 80% 119M 0s -2024-03-12T20:19:00Z #15 3.567 102050K .......... .......... .......... .......... .......... 80% 113M 0s -2024-03-12T20:19:00Z #15 3.567 102100K .......... .......... .......... .......... .......... 80% 135M 0s -2024-03-12T20:19:00Z #15 3.567 102150K .......... .......... .......... .......... .......... 80% 132M 0s -2024-03-12T20:19:00Z #15 3.567 102200K .......... .......... .......... .......... .......... 80% 140M 0s -2024-03-12T20:19:00Z #15 3.568 102250K .......... .......... .......... .......... .......... 80% 109M 0s -2024-03-12T20:19:00Z #15 3.568 102300K .......... .......... .......... .......... .......... 80% 139M 0s -2024-03-12T20:19:00Z #15 3.568 102350K .......... .......... .......... .......... .......... 80% 126M 0s -2024-03-12T20:19:00Z #15 3.569 102400K .......... .......... .......... .......... .......... 80% 125M 0s -2024-03-12T20:19:00Z #15 3.569 102450K .......... .......... .......... .......... .......... 80% 117M 0s -2024-03-12T20:19:00Z #15 3.570 102500K .......... .......... .......... .......... .......... 80% 115M 0s -2024-03-12T20:19:00Z #15 3.570 102550K .......... .......... .......... .......... .......... 80% 118M 0s -2024-03-12T20:19:00Z #15 3.570 102600K .......... .......... .......... .......... .......... 80% 144M 0s -2024-03-12T20:19:00Z #15 3.571 102650K .......... .......... .......... .......... .......... 81% 120M 0s -2024-03-12T20:19:00Z #15 3.571 102700K .......... .......... .......... .......... .......... 81% 134M 0s -2024-03-12T20:19:00Z #15 3.571 102750K .......... .......... .......... .......... .......... 81% 131M 0s -2024-03-12T20:19:00Z #15 3.572 102800K .......... .......... .......... .......... .......... 81% 113M 0s -2024-03-12T20:19:00Z #15 3.572 102850K .......... .......... .......... .......... .......... 81% 133M 0s -2024-03-12T20:19:00Z #15 3.573 102900K .......... .......... .......... .......... .......... 81% 146M 0s -2024-03-12T20:19:00Z #15 3.573 102950K .......... .......... .......... .......... .......... 81% 142M 0s -2024-03-12T20:19:00Z #15 3.573 103000K .......... .......... .......... .......... .......... 81% 121M 0s -2024-03-12T20:19:00Z #15 3.574 103050K .......... .......... .......... .......... .......... 81% 122M 0s -2024-03-12T20:19:00Z #15 3.575 103100K .......... .......... .......... .......... .......... 81% 80.0M 0s -2024-03-12T20:19:00Z #15 3.575 103150K .......... .......... .......... .......... .......... 81% 85.7M 0s -2024-03-12T20:19:00Z #15 3.575 103200K .......... .......... .......... .......... .......... 81% 77.0M 0s -2024-03-12T20:19:00Z #15 3.577 103250K .......... .......... .......... .......... .......... 81% 89.2M 0s -2024-03-12T20:19:00Z #15 3.577 103300K .......... .......... .......... .......... .......... 81% 93.2M 0s -2024-03-12T20:19:00Z #15 3.577 103350K .......... .......... .......... .......... .......... 81% 81.5M 0s -2024-03-12T20:19:00Z #15 3.578 103400K .......... .......... .......... .......... .......... 81% 11.0M 0s -2024-03-12T20:19:00Z #15 3.582 103450K .......... .......... .......... .......... .......... 81% 133M 0s -2024-03-12T20:19:00Z #15 3.582 103500K .......... .......... .......... .......... .......... 81% 141M 0s -2024-03-12T20:19:00Z #15 3.583 103550K .......... .......... .......... .......... .......... 81% 153M 0s -2024-03-12T20:19:00Z #15 3.584 103600K .......... .......... .......... .......... .......... 81% 139M 0s -2024-03-12T20:19:00Z #15 3.584 103650K .......... .......... .......... .......... .......... 81% 155M 0s -2024-03-12T20:19:00Z #15 3.584 103700K .......... .......... .......... .......... .......... 81% 198M 0s -2024-03-12T20:19:00Z #15 3.584 103750K .......... .......... .......... .......... .......... 81% 166M 0s -2024-03-12T20:19:00Z #15 3.584 103800K .......... .......... .......... .......... .......... 81% 119M 0s -2024-03-12T20:19:00Z #15 3.585 103850K .......... .......... .......... .......... .......... 81% 159M 0s -2024-03-12T20:19:00Z #15 3.585 103900K .......... .......... .......... .......... .......... 81% 145M 0s -2024-03-12T20:19:00Z #15 3.585 103950K .......... .......... .......... .......... .......... 82% 156M 0s -2024-03-12T20:19:00Z #15 3.586 104000K .......... .......... .......... .......... .......... 82% 10.9M 0s -2024-03-12T20:19:00Z #15 3.590 104050K .......... .......... .......... .......... .......... 82% 151M 0s -2024-03-12T20:19:00Z #15 3.590 104100K .......... .......... .......... .......... .......... 82% 125M 0s -2024-03-12T20:19:00Z #15 3.591 104150K .......... .......... .......... .......... .......... 82% 136M 0s -2024-03-12T20:19:00Z #15 3.591 104200K .......... .......... .......... .......... .......... 82% 160M 0s -2024-03-12T20:19:00Z #15 3.591 104250K .......... .......... .......... .......... .......... 82% 124M 0s -2024-03-12T20:19:00Z #15 3.592 104300K .......... .......... .......... .......... .......... 82% 3.78M 0s -2024-03-12T20:19:00Z #15 3.605 104350K .......... .......... .......... .......... .......... 82% 151M 0s -2024-03-12T20:19:00Z #15 3.605 104400K .......... .......... .......... .......... .......... 82% 168M 0s -2024-03-12T20:19:00Z #15 3.607 104450K .......... .......... .......... .......... .......... 82% 111M 0s -2024-03-12T20:19:00Z #15 3.607 104500K .......... .......... .......... .......... .......... 82% 149M 0s -2024-03-12T20:19:00Z #15 3.607 104550K .......... .......... .......... .......... .......... 82% 144M 0s -2024-03-12T20:19:00Z #15 3.608 104600K .......... .......... .......... .......... .......... 82% 145M 0s -2024-03-12T20:19:00Z #15 3.608 104650K .......... .......... .......... .......... .......... 82% 149M 0s -2024-03-12T20:19:00Z #15 3.608 104700K .......... .......... .......... .......... .......... 82% 153M 0s -2024-03-12T20:19:00Z #15 3.608 104750K .......... .......... .......... .......... .......... 82% 144M 0s -2024-03-12T20:19:00Z #15 3.609 104800K .......... .......... .......... .......... .......... 82% 164M 0s -2024-03-12T20:19:00Z #15 3.609 104850K .......... .......... .......... .......... .......... 82% 165M 0s -2024-03-12T20:19:00Z #15 3.609 104900K .......... .......... .......... .......... .......... 82% 142M 0s -2024-03-12T20:19:00Z #15 3.609 104950K .......... .......... .......... .......... .......... 82% 149M 0s -2024-03-12T20:19:00Z #15 3.610 105000K .......... .......... .......... .......... .......... 82% 175M 0s -2024-03-12T20:19:00Z #15 3.610 105050K .......... .......... .......... .......... .......... 82% 118M 0s -2024-03-12T20:19:00Z #15 3.610 105100K .......... .......... .......... .......... .......... 82% 150M 0s -2024-03-12T20:19:00Z #15 3.610 105150K .......... .......... .......... .......... .......... 82% 174M 0s -2024-03-12T20:19:00Z #15 3.610 105200K .......... .......... .......... .......... .......... 83% 154M 0s -2024-03-12T20:19:00Z #15 3.611 105250K .......... .......... .......... .......... .......... 83% 140M 0s -2024-03-12T20:19:00Z #15 3.611 105300K .......... .......... .......... .......... .......... 83% 169M 0s -2024-03-12T20:19:00Z #15 3.611 105350K .......... .......... .......... .......... .......... 83% 134M 0s -2024-03-12T20:19:00Z #15 3.612 105400K .......... .......... .......... .......... .......... 83% 154M 0s -2024-03-12T20:19:00Z #15 3.612 105450K .......... .......... .......... .......... .......... 83% 156M 0s -2024-03-12T20:19:00Z #15 3.618 105500K .......... .......... .......... .......... .......... 83% 141M 0s -2024-03-12T20:19:00Z #15 3.618 105550K .......... .......... .......... .......... .......... 83% 135M 0s -2024-03-12T20:19:00Z #15 3.618 105600K .......... .......... .......... .......... .......... 83% 140M 0s -2024-03-12T20:19:00Z #15 3.618 105650K .......... .......... .......... .......... .......... 83% 156M 0s -2024-03-12T20:19:00Z #15 3.618 105700K .......... .......... .......... .......... .......... 83% 10.7M 0s -2024-03-12T20:19:00Z #15 3.618 105750K .......... .......... .......... .......... .......... 83% 117M 0s -2024-03-12T20:19:00Z #15 3.619 105800K .......... .......... .......... .......... .......... 83% 151M 0s -2024-03-12T20:19:00Z #15 3.619 105850K .......... .......... .......... .......... .......... 83% 133M 0s -2024-03-12T20:19:00Z #15 3.620 105900K .......... .......... .......... .......... .......... 83% 133M 0s -2024-03-12T20:19:00Z #15 3.620 105950K .......... .......... .......... .......... .......... 83% 135M 0s -2024-03-12T20:19:00Z #15 3.621 106000K .......... .......... .......... .......... .......... 83% 125M 0s -2024-03-12T20:19:00Z #15 3.621 106050K .......... .......... .......... .......... .......... 83% 126M 0s -2024-03-12T20:19:00Z #15 3.621 106100K .......... .......... .......... .......... .......... 83% 148M 0s -2024-03-12T20:19:00Z #15 3.621 106150K .......... .......... .......... .......... .......... 83% 120M 0s -2024-03-12T20:19:00Z #15 3.622 106200K .......... .......... .......... .......... .......... 83% 118M 0s -2024-03-12T20:19:00Z #15 3.622 106250K .......... .......... .......... .......... .......... 83% 141M 0s -2024-03-12T20:19:00Z #15 3.622 106300K .......... .......... .......... .......... .......... 83% 127M 0s -2024-03-12T20:19:00Z #15 3.623 106350K .......... .......... .......... .......... .......... 83% 150M 0s -2024-03-12T20:19:00Z #15 3.623 106400K .......... .......... .......... .......... .......... 83% 141M 0s -2024-03-12T20:19:00Z #15 3.624 106450K .......... .......... .......... .......... .......... 84% 130M 0s -2024-03-12T20:19:00Z #15 3.624 106500K .......... .......... .......... .......... .......... 84% 150M 0s -2024-03-12T20:19:00Z #15 3.624 106550K .......... .......... .......... .......... .......... 84% 147M 0s -2024-03-12T20:19:00Z #15 3.625 106600K .......... .......... .......... .......... .......... 84% 116M 0s -2024-03-12T20:19:00Z #15 3.625 106650K .......... .......... .......... .......... .......... 84% 145M 0s -2024-03-12T20:19:00Z #15 3.629 106700K .......... .......... .......... .......... .......... 84% 145M 0s -2024-03-12T20:19:00Z #15 3.629 106750K .......... .......... .......... .......... .......... 84% 11.0M 0s -2024-03-12T20:19:00Z #15 3.630 106800K .......... .......... .......... .......... .......... 84% 158M 0s -2024-03-12T20:19:00Z #15 3.631 106850K .......... .......... .......... .......... .......... 84% 156M 0s -2024-03-12T20:19:00Z #15 3.631 106900K .......... .......... .......... .......... .......... 84% 161M 0s -2024-03-12T20:19:00Z #15 3.631 106950K .......... .......... .......... .......... .......... 84% 165M 0s -2024-03-12T20:19:00Z #15 3.631 107000K .......... .......... .......... .......... .......... 84% 143M 0s -2024-03-12T20:19:00Z #15 3.632 107050K .......... .......... .......... .......... .......... 84% 161M 0s -2024-03-12T20:19:00Z #15 3.632 107100K .......... .......... .......... .......... .......... 84% 175M 0s -2024-03-12T20:19:00Z #15 3.633 107150K .......... .......... .......... .......... .......... 84% 174M 0s -2024-03-12T20:19:00Z #15 3.633 107200K .......... .......... .......... .......... .......... 84% 162M 0s -2024-03-12T20:19:00Z #15 3.633 107250K .......... .......... .......... .......... .......... 84% 141M 0s -2024-03-12T20:19:00Z #15 3.633 107300K .......... .......... .......... .......... .......... 84% 151M 0s -2024-03-12T20:19:00Z #15 3.633 107350K .......... .......... .......... .......... .......... 84% 121M 0s -2024-03-12T20:19:00Z #15 3.634 107400K .......... .......... .......... .......... .......... 84% 149M 0s -2024-03-12T20:19:00Z #15 3.634 107450K .......... .......... .......... .......... .......... 84% 132M 0s -2024-03-12T20:19:00Z #15 3.634 107500K .......... .......... .......... .......... .......... 84% 157M 0s -2024-03-12T20:19:00Z #15 3.635 107550K .......... .......... .......... .......... .......... 84% 136M 0s -2024-03-12T20:19:00Z #15 3.635 107600K .......... .......... .......... .......... .......... 84% 170M 0s -2024-03-12T20:19:00Z #15 3.636 107650K .......... .......... .......... .......... .......... 84% 161M 0s -2024-03-12T20:19:00Z #15 3.636 107700K .......... .......... .......... .......... .......... 84% 140M 0s -2024-03-12T20:19:00Z #15 3.636 107750K .......... .......... .......... .......... .......... 85% 169M 0s -2024-03-12T20:19:00Z #15 3.636 107800K .......... .......... .......... .......... .......... 85% 148M 0s -2024-03-12T20:19:00Z #15 3.640 107850K .......... .......... .......... .......... .......... 85% 163M 0s -2024-03-12T20:19:00Z #15 3.640 107900K .......... .......... .......... .......... .......... 85% 158M 0s -2024-03-12T20:19:00Z #15 3.640 107950K .......... .......... .......... .......... .......... 85% 10.6M 0s -2024-03-12T20:19:00Z #15 3.642 108000K .......... .......... .......... .......... .......... 85% 133M 0s -2024-03-12T20:19:00Z #15 3.642 108050K .......... .......... .......... .......... .......... 85% 192M 0s -2024-03-12T20:19:00Z #15 3.649 108100K .......... .......... .......... .......... .......... 85% 128M 0s -2024-03-12T20:19:00Z #15 3.649 108150K .......... .......... .......... .......... .......... 85% 152M 0s -2024-03-12T20:19:00Z #15 3.649 108200K .......... .......... .......... .......... .......... 85% 148M 0s -2024-03-12T20:19:00Z #15 3.649 108250K .......... .......... .......... .......... .......... 85% 167M 0s -2024-03-12T20:19:00Z #15 3.649 108300K .......... .......... .......... .......... .......... 85% 137M 0s -2024-03-12T20:19:00Z #15 3.649 108350K .......... .......... .......... .......... .......... 85% 128M 0s -2024-03-12T20:19:00Z #15 3.649 108400K .......... .......... .......... .......... .......... 85% 150M 0s -2024-03-12T20:19:00Z #15 3.649 108450K .......... .......... .......... .......... .......... 85% 9.39M 0s -2024-03-12T20:19:00Z #15 3.653 108500K .......... .......... .......... .......... .......... 85% 148M 0s -2024-03-12T20:19:00Z #15 3.653 108550K .......... .......... .......... .......... .......... 85% 120M 0s -2024-03-12T20:19:00Z #15 3.653 108600K .......... .......... .......... .......... .......... 85% 24.1M 0s -2024-03-12T20:19:00Z #15 3.653 108650K .......... .......... .......... .......... .......... 85% 128M 0s -2024-03-12T20:19:00Z #15 3.654 108700K .......... .......... .......... .......... .......... 85% 130M 0s -2024-03-12T20:19:00Z #15 3.654 108750K .......... .......... .......... .......... .......... 85% 109M 0s -2024-03-12T20:19:00Z #15 3.655 108800K .......... .......... .......... .......... .......... 85% 149M 0s -2024-03-12T20:19:00Z #15 3.655 108850K .......... .......... .......... .......... .......... 85% 157M 0s -2024-03-12T20:19:00Z #15 3.655 108900K .......... .......... .......... .......... .......... 85% 153M 0s -2024-03-12T20:19:00Z #15 3.655 108950K .......... .......... .......... .......... .......... 85% 132M 0s -2024-03-12T20:19:00Z #15 3.656 109000K .......... .......... .......... .......... .......... 86% 152M 0s -2024-03-12T20:19:00Z #15 3.657 109050K .......... .......... .......... .......... .......... 86% 143M 0s -2024-03-12T20:19:00Z #15 3.657 109100K .......... .......... .......... .......... .......... 86% 158M 0s -2024-03-12T20:19:00Z #15 3.657 109150K .......... .......... .......... .......... .......... 86% 156M 0s -2024-03-12T20:19:00Z #15 3.657 109200K .......... .......... .......... .......... .......... 86% 136M 0s -2024-03-12T20:19:00Z #15 3.658 109250K .......... .......... .......... .......... .......... 86% 132M 0s -2024-03-12T20:19:00Z #15 3.658 109300K .......... .......... .......... .......... .......... 86% 10.8M 0s -2024-03-12T20:19:00Z #15 3.683 109350K .......... .......... .......... .......... .......... 86% 148M 0s -2024-03-12T20:19:00Z #15 3.683 109400K .......... .......... .......... .......... .......... 86% 180M 0s -2024-03-12T20:19:00Z #15 3.683 109450K .......... .......... .......... .......... .......... 86% 188M 0s -2024-03-12T20:19:00Z #15 3.683 109500K .......... .......... .......... .......... .......... 86% 182M 0s -2024-03-12T20:19:00Z #15 3.683 109550K .......... .......... .......... .......... .......... 86% 157M 0s -2024-03-12T20:19:00Z #15 3.683 109600K .......... .......... .......... .......... .......... 86% 188M 0s -2024-03-12T20:19:00Z #15 3.683 109650K .......... .......... .......... .......... .......... 86% 138M 0s -2024-03-12T20:19:00Z #15 3.683 109700K .......... .......... .......... .......... .......... 86% 180M 0s -2024-03-12T20:19:00Z #15 3.683 109750K .......... .......... .......... .......... .......... 86% 190M 0s -2024-03-12T20:19:00Z #15 3.683 109800K .......... .......... .......... .......... .......... 86% 155M 0s -2024-03-12T20:19:00Z #15 3.683 109850K .......... .......... .......... .......... .......... 86% 167M 0s -2024-03-12T20:19:00Z #15 3.683 109900K .......... .......... .......... .......... .......... 86% 73.3M 0s -2024-03-12T20:19:00Z #15 3.683 109950K .......... .......... .......... .......... .......... 86% 134M 0s -2024-03-12T20:19:00Z #15 3.683 110000K .......... .......... .......... .......... .......... 86% 185M 0s -2024-03-12T20:19:00Z #15 3.683 110050K .......... .......... .......... .......... .......... 86% 176M 0s -2024-03-12T20:19:00Z #15 3.683 110100K .......... .......... .......... .......... .......... 86% 111M 0s -2024-03-12T20:19:00Z #15 3.683 110150K .......... .......... .......... .......... .......... 86% 135M 0s -2024-03-12T20:19:00Z #15 3.683 110200K .......... .......... .......... .......... .......... 86% 167M 0s -2024-03-12T20:19:00Z #15 3.683 110250K .......... .......... .......... .......... .......... 86% 186M 0s -2024-03-12T20:19:00Z #15 3.683 110300K .......... .......... .......... .......... .......... 87% 164M 0s -2024-03-12T20:19:00Z #15 3.683 110350K .......... .......... .......... .......... .......... 87% 188M 0s -2024-03-12T20:19:00Z #15 3.683 110400K .......... .......... .......... .......... .......... 87% 164M 0s -2024-03-12T20:19:00Z #15 3.683 110450K .......... .......... .......... .......... .......... 87% 165M 0s -2024-03-12T20:19:00Z #15 3.683 110500K .......... .......... .......... .......... .......... 87% 128M 0s -2024-03-12T20:19:00Z #15 3.683 110550K .......... .......... .......... .......... .......... 87% 10.8M 0s -2024-03-12T20:19:00Z #15 3.683 110600K .......... .......... .......... .......... .......... 87% 172M 0s -2024-03-12T20:19:00Z #15 3.683 110650K .......... .......... .......... .......... .......... 87% 187M 0s -2024-03-12T20:19:00Z #15 3.683 110700K .......... .......... .......... .......... .......... 87% 175M 0s -2024-03-12T20:19:00Z #15 3.683 110750K .......... .......... .......... .......... .......... 87% 158M 0s -2024-03-12T20:19:00Z #15 3.683 110800K .......... .......... .......... .......... .......... 87% 84.8M 0s -2024-03-12T20:19:00Z #15 3.683 110850K .......... .......... .......... .......... .......... 87% 179M 0s -2024-03-12T20:19:00Z #15 3.683 110900K .......... .......... .......... .......... .......... 87% 182M 0s -2024-03-12T20:19:00Z #15 3.683 110950K .......... .......... .......... .......... .......... 87% 154M 0s -2024-03-12T20:19:00Z #15 3.683 111000K .......... .......... .......... .......... .......... 87% 189M 0s -2024-03-12T20:19:00Z #15 3.683 111050K .......... .......... .......... .......... .......... 87% 4.50M 0s -2024-03-12T20:19:00Z #15 3.694 111100K .......... .......... .......... .......... .......... 87% 134M 0s -2024-03-12T20:19:00Z #15 3.694 111150K .......... .......... .......... .......... .......... 87% 180M 0s -2024-03-12T20:19:00Z #15 3.694 111200K .......... .......... .......... .......... .......... 87% 181M 0s -2024-03-12T20:19:00Z #15 3.694 111250K .......... .......... .......... .......... .......... 87% 145M 0s -2024-03-12T20:19:00Z #15 3.694 111300K .......... .......... .......... .......... .......... 87% 180M 0s -2024-03-12T20:19:00Z #15 3.694 111350K .......... .......... .......... .......... .......... 87% 8.59M 0s -2024-03-12T20:19:00Z #15 3.700 111400K .......... .......... .......... .......... .......... 87% 160M 0s -2024-03-12T20:19:00Z #15 3.700 111450K .......... .......... .......... .......... .......... 87% 186M 0s -2024-03-12T20:19:00Z #15 3.700 111500K .......... .......... .......... .......... .......... 87% 167M 0s -2024-03-12T20:19:00Z #15 3.700 111550K .......... .......... .......... .......... .......... 88% 185M 0s -2024-03-12T20:19:00Z #15 3.700 111600K .......... .......... .......... .......... .......... 88% 111M 0s -2024-03-12T20:19:00Z #15 3.700 111650K .......... .......... .......... .......... .......... 88% 76.0M 0s -2024-03-12T20:19:00Z #15 3.700 111700K .......... .......... .......... .......... .......... 88% 115M 0s -2024-03-12T20:19:00Z #15 3.700 111750K .......... .......... .......... .......... .......... 88% 7.31M 0s -2024-03-12T20:19:00Z #15 3.714 111800K .......... .......... .......... .......... .......... 88% 179M 0s -2024-03-12T20:19:00Z #15 3.714 111850K .......... .......... .......... .......... .......... 88% 181M 0s -2024-03-12T20:19:00Z #15 3.714 111900K .......... .......... .......... .......... .......... 88% 170M 0s -2024-03-12T20:19:00Z #15 3.714 111950K .......... .......... .......... .......... .......... 88% 165M 0s -2024-03-12T20:19:00Z #15 3.714 112000K .......... .......... .......... .......... .......... 88% 105M 0s -2024-03-12T20:19:00Z #15 3.714 112050K .......... .......... .......... .......... .......... 88% 188M 0s -2024-03-12T20:19:00Z #15 3.714 112100K .......... .......... .......... .......... .......... 88% 185M 0s -2024-03-12T20:19:00Z #15 3.714 112150K .......... .......... .......... .......... .......... 88% 163M 0s -2024-03-12T20:19:00Z #15 3.714 112200K .......... .......... .......... .......... .......... 88% 171M 0s -2024-03-12T20:19:00Z #15 3.714 112250K .......... .......... .......... .......... .......... 88% 159M 0s -2024-03-12T20:19:00Z #15 3.714 112300K .......... .......... .......... .......... .......... 88% 178M 0s -2024-03-12T20:19:00Z #15 3.714 112350K .......... .......... .......... .......... .......... 88% 157M 0s -2024-03-12T20:19:00Z #15 3.714 112400K .......... .......... .......... .......... .......... 88% 190M 0s -2024-03-12T20:19:00Z #15 3.714 112450K .......... .......... .......... .......... .......... 88% 188M 0s -2024-03-12T20:19:00Z #15 3.714 112500K .......... .......... .......... .......... .......... 88% 187M 0s -2024-03-12T20:19:00Z #15 3.714 112550K .......... .......... .......... .......... .......... 88% 58.8M 0s -2024-03-12T20:19:00Z #15 3.714 112600K .......... .......... .......... .......... .......... 88% 7.49M 0s -2024-03-12T20:19:00Z #15 3.716 112650K .......... .......... .......... .......... .......... 88% 23.5M 0s -2024-03-12T20:19:00Z #15 3.718 112700K .......... .......... .......... .......... .......... 88% 66.0M 0s -2024-03-12T20:19:00Z #15 3.719 112750K .......... .......... .......... .......... .......... 88% 32.5M 0s -2024-03-12T20:19:00Z #15 3.720 112800K .......... .......... .......... .......... .......... 89% 43.8M 0s -2024-03-12T20:19:00Z #15 3.724 112850K .......... .......... .......... .......... .......... 89% 19.4M 0s -2024-03-12T20:19:00Z #15 3.724 112900K .......... .......... .......... .......... .......... 89% 125M 0s -2024-03-12T20:19:00Z #15 3.724 112950K .......... .......... .......... .......... .......... 89% 126M 0s -2024-03-12T20:19:00Z #15 3.725 113000K .......... .......... .......... .......... .......... 89% 44.5M 0s -2024-03-12T20:19:00Z #15 3.726 113050K .......... .......... .......... .......... .......... 89% 17.0M 0s -2024-03-12T20:19:00Z #15 3.729 113100K .......... .......... .......... .......... .......... 89% 96.0M 0s -2024-03-12T20:19:00Z #15 3.729 113150K .......... .......... .......... .......... .......... 89% 102M 0s -2024-03-12T20:19:00Z #15 3.730 113200K .......... .......... .......... .......... .......... 89% 119M 0s -2024-03-12T20:19:00Z #15 3.730 113250K .......... .......... .......... .......... .......... 89% 54.4M 0s -2024-03-12T20:19:00Z #15 3.731 113300K .......... .......... .......... .......... .......... 89% 86.9M 0s -2024-03-12T20:19:00Z #15 3.732 113350K .......... .......... .......... .......... .......... 89% 39.2M 0s -2024-03-12T20:19:00Z #15 3.733 113400K .......... .......... .......... .......... .......... 89% 106M 0s -2024-03-12T20:19:00Z #15 3.734 113450K .......... .......... .......... .......... .......... 89% 20.8M 0s -2024-03-12T20:19:00Z #15 3.736 113500K .......... .......... .......... .......... .......... 89% 105M 0s -2024-03-12T20:19:00Z #15 3.736 113550K .......... .......... .......... .......... .......... 89% 85.1M 0s -2024-03-12T20:19:00Z #15 3.737 113600K .......... .......... .......... .......... .......... 89% 77.0M 0s -2024-03-12T20:19:00Z #15 3.737 113650K .......... .......... .......... .......... .......... 89% 75.8M 0s -2024-03-12T20:19:00Z #15 3.738 113700K .......... .......... .......... .......... .......... 89% 113M 0s -2024-03-12T20:19:00Z #15 3.739 113750K .......... .......... .......... .......... .......... 89% 48.1M 0s -2024-03-12T20:19:00Z #15 3.740 113800K .......... .......... .......... .......... .......... 89% 76.6M 0s -2024-03-12T20:19:00Z #15 3.740 113850K .......... .......... .......... .......... .......... 89% 16.6M 0s -2024-03-12T20:19:00Z #15 3.743 113900K .......... .......... .......... .......... .......... 89% 87.8M 0s -2024-03-12T20:19:00Z #15 3.744 113950K .......... .......... .......... .......... .......... 89% 96.4M 0s -2024-03-12T20:19:00Z #15 3.744 114000K .......... .......... .......... .......... .......... 89% 61.7M 0s -2024-03-12T20:19:00Z #15 3.745 114050K .......... .......... .......... .......... .......... 89% 119M 0s -2024-03-12T20:19:00Z #15 3.746 114100K .......... .......... .......... .......... .......... 90% 48.3M 0s -2024-03-12T20:19:00Z #15 3.747 114150K .......... .......... .......... .......... .......... 90% 59.8M 0s -2024-03-12T20:19:00Z #15 3.747 114200K .......... .......... .......... .......... .......... 90% 118M 0s -2024-03-12T20:19:00Z #15 3.748 114250K .......... .......... .......... .......... .......... 90% 76.6M 0s -2024-03-12T20:19:00Z #15 3.749 114300K .......... .......... .......... .......... .......... 90% 95.2M 0s -2024-03-12T20:19:00Z #15 3.749 114350K .......... .......... .......... .......... .......... 90% 102M 0s -2024-03-12T20:19:00Z #15 3.749 114400K .......... .......... .......... .......... .......... 90% 110M 0s -2024-03-12T20:19:00Z #15 3.750 114450K .......... .......... .......... .......... .......... 90% 82.7M 0s -2024-03-12T20:19:00Z #15 3.751 114500K .......... .......... .......... .......... .......... 90% 102M 0s -2024-03-12T20:19:00Z #15 3.751 114550K .......... .......... .......... .......... .......... 90% 75.4M 0s -2024-03-12T20:19:00Z #15 3.752 114600K .......... .......... .......... .......... .......... 90% 91.8M 0s -2024-03-12T20:19:00Z #15 3.752 114650K .......... .......... .......... .......... .......... 90% 90.2M 0s -2024-03-12T20:19:00Z #15 3.753 114700K .......... .......... .......... .......... .......... 90% 105M 0s -2024-03-12T20:19:00Z #15 3.753 114750K .......... .......... .......... .......... .......... 90% 52.3M 0s -2024-03-12T20:19:00Z #15 3.754 114800K .......... .......... .......... .......... .......... 90% 82.0M 0s -2024-03-12T20:19:00Z #15 3.755 114850K .......... .......... .......... .......... .......... 90% 56.2M 0s -2024-03-12T20:19:00Z #15 3.756 114900K .......... .......... .......... .......... .......... 90% 101M 0s -2024-03-12T20:19:00Z #15 3.756 114950K .......... .......... .......... .......... .......... 90% 59.7M 0s -2024-03-12T20:19:00Z #15 3.757 115000K .......... .......... .......... .......... .......... 90% 76.5M 0s -2024-03-12T20:19:00Z #15 3.758 115050K .......... .......... .......... .......... .......... 90% 74.4M 0s -2024-03-12T20:19:00Z #15 3.758 115100K .......... .......... .......... .......... .......... 90% 81.4M 0s -2024-03-12T20:19:00Z #15 3.759 115150K .......... .......... .......... .......... .......... 90% 60.0M 0s -2024-03-12T20:19:00Z #15 3.759 115200K .......... .......... .......... .......... .......... 90% 89.9M 0s -2024-03-12T20:19:00Z #15 3.760 115250K .......... .......... .......... .......... .......... 90% 55.2M 0s -2024-03-12T20:19:00Z #15 3.761 115300K .......... .......... .......... .......... .......... 90% 64.0M 0s -2024-03-12T20:19:00Z #15 3.762 115350K .......... .......... .......... .......... .......... 91% 51.5M 0s -2024-03-12T20:19:00Z #15 3.763 115400K .......... .......... .......... .......... .......... 91% 52.3M 0s -2024-03-12T20:19:00Z #15 3.763 115450K .......... .......... .......... .......... .......... 91% 62.6M 0s -2024-03-12T20:19:00Z #15 3.764 115500K .......... .......... .......... .......... .......... 91% 60.6M 0s -2024-03-12T20:19:00Z #15 3.765 115550K .......... .......... .......... .......... .......... 91% 93.0M 0s -2024-03-12T20:19:00Z #15 3.766 115600K .......... .......... .......... .......... .......... 91% 78.7M 0s -2024-03-12T20:19:00Z #15 3.766 115650K .......... .......... .......... .......... .......... 91% 75.7M 0s -2024-03-12T20:19:00Z #15 3.767 115700K .......... .......... .......... .......... .......... 91% 85.5M 0s -2024-03-12T20:19:00Z #15 3.768 115750K .......... .......... .......... .......... .......... 91% 81.6M 0s -2024-03-12T20:19:00Z #15 3.768 115800K .......... .......... .......... .......... .......... 91% 57.6M 0s -2024-03-12T20:19:00Z #15 3.769 115850K .......... .......... .......... .......... .......... 91% 83.4M 0s -2024-03-12T20:19:00Z #15 3.770 115900K .......... .......... .......... .......... .......... 91% 58.9M 0s -2024-03-12T20:19:00Z #15 3.771 115950K .......... .......... .......... .......... .......... 91% 79.4M 0s -2024-03-12T20:19:00Z #15 3.771 116000K .......... .......... .......... .......... .......... 91% 49.5M 0s -2024-03-12T20:19:00Z #15 3.772 116050K .......... .......... .......... .......... .......... 91% 46.4M 0s -2024-03-12T20:19:00Z #15 3.773 116100K .......... .......... .......... .......... .......... 91% 58.8M 0s -2024-03-12T20:19:00Z #15 3.774 116150K .......... .......... .......... .......... .......... 91% 61.0M 0s -2024-03-12T20:19:00Z #15 3.775 116200K .......... .......... .......... .......... .......... 91% 90.1M 0s -2024-03-12T20:19:00Z #15 3.775 116250K .......... .......... .......... .......... .......... 91% 85.3M 0s -2024-03-12T20:19:00Z #15 3.776 116300K .......... .......... .......... .......... .......... 91% 83.6M 0s -2024-03-12T20:19:00Z #15 3.776 116350K .......... .......... .......... .......... .......... 91% 71.1M 0s -2024-03-12T20:19:00Z #15 3.778 116400K .......... .......... .......... .......... .......... 91% 66.1M 0s -2024-03-12T20:19:00Z #15 3.778 116450K .......... .......... .......... .......... .......... 91% 58.1M 0s -2024-03-12T20:19:00Z #15 3.779 116500K .......... .......... .......... .......... .......... 91% 80.5M 0s -2024-03-12T20:19:00Z #15 3.779 116550K .......... .......... .......... .......... .......... 91% 83.4M 0s -2024-03-12T20:19:00Z #15 3.780 116600K .......... .......... .......... .......... .......... 92% 103M 0s -2024-03-12T20:19:00Z #15 3.780 116650K .......... .......... .......... .......... .......... 92% 50.6M 0s -2024-03-12T20:19:00Z #15 3.781 116700K .......... .......... .......... .......... .......... 92% 73.3M 0s -2024-03-12T20:19:00Z #15 3.782 116750K .......... .......... .......... .......... .......... 92% 59.2M 0s -2024-03-12T20:19:00Z #15 3.783 116800K .......... .......... .......... .......... .......... 92% 102M 0s -2024-03-12T20:19:00Z #15 3.783 116850K .......... .......... .......... .......... .......... 92% 88.9M 0s -2024-03-12T20:19:00Z #15 3.784 116900K .......... .......... .......... .......... .......... 92% 105M 0s -2024-03-12T20:19:00Z #15 3.784 116950K .......... .......... .......... .......... .......... 92% 95.9M 0s -2024-03-12T20:19:00Z #15 3.785 117000K .......... .......... .......... .......... .......... 92% 96.8M 0s -2024-03-12T20:19:00Z #15 3.785 117050K .......... .......... .......... .......... .......... 92% 107M 0s -2024-03-12T20:19:00Z #15 3.790 117100K .......... .......... .......... .......... .......... 92% 75.7M 0s -2024-03-12T20:19:00Z #15 3.790 117150K .......... .......... .......... .......... .......... 92% 74.0M 0s -2024-03-12T20:19:00Z #15 3.790 117200K .......... .......... .......... .......... .......... 92% 75.0M 0s -2024-03-12T20:19:00Z #15 3.790 117250K .......... .......... .......... .......... .......... 92% 80.9M 0s -2024-03-12T20:19:00Z #15 3.790 117300K .......... .......... .......... .......... .......... 92% 57.0M 0s -2024-03-12T20:19:00Z #15 3.790 117350K .......... .......... .......... .......... .......... 92% 35.1M 0s -2024-03-12T20:19:00Z #15 3.791 117400K .......... .......... .......... .......... .......... 92% 49.0M 0s -2024-03-12T20:19:00Z #15 3.792 117450K .......... .......... .......... .......... .......... 92% 78.3M 0s -2024-03-12T20:19:00Z #15 3.792 117500K .......... .......... .......... .......... .......... 92% 93.6M 0s -2024-03-12T20:19:00Z #15 3.793 117550K .......... .......... .......... .......... .......... 92% 123M 0s -2024-03-12T20:19:00Z #15 3.794 117600K .......... .......... .......... .......... .......... 92% 74.0M 0s -2024-03-12T20:19:00Z #15 3.794 117650K .......... .......... .......... .......... .......... 92% 123M 0s -2024-03-12T20:19:00Z #15 3.795 117700K .......... .......... .......... .......... .......... 92% 101M 0s -2024-03-12T20:19:00Z #15 3.795 117750K .......... .......... .......... .......... .......... 92% 96.3M 0s -2024-03-12T20:19:00Z #15 3.796 117800K .......... .......... .......... .......... .......... 92% 92.4M 0s -2024-03-12T20:19:00Z #15 3.796 117850K .......... .......... .......... .......... .......... 92% 104M 0s -2024-03-12T20:19:00Z #15 3.797 117900K .......... .......... .......... .......... .......... 93% 104M 0s -2024-03-12T20:19:00Z #15 3.797 117950K .......... .......... .......... .......... .......... 93% 120M 0s -2024-03-12T20:19:00Z #15 3.797 118000K .......... .......... .......... .......... .......... 93% 54.7M 0s -2024-03-12T20:19:00Z #15 3.802 118050K .......... .......... .......... .......... .......... 93% 84.3M 0s -2024-03-12T20:19:00Z #15 3.802 118100K .......... .......... .......... .......... .......... 93% 135M 0s -2024-03-12T20:19:00Z #15 3.802 118150K .......... .......... .......... .......... .......... 93% 174M 0s -2024-03-12T20:19:00Z #15 3.802 118200K .......... .......... .......... .......... .......... 93% 109M 0s -2024-03-12T20:19:00Z #15 3.802 118250K .......... .......... .......... .......... .......... 93% 179M 0s -2024-03-12T20:19:00Z #15 3.802 118300K .......... .......... .......... .......... .......... 93% 158M 0s -2024-03-12T20:19:00Z #15 3.802 118350K .......... .......... .......... .......... .......... 93% 183M 0s -2024-03-12T20:19:00Z #15 3.802 118400K .......... .......... .......... .......... .......... 93% 190M 0s -2024-03-12T20:19:00Z #15 3.802 118450K .......... .......... .......... .......... .......... 93% 164M 0s -2024-03-12T20:19:00Z #15 3.802 118500K .......... .......... .......... .......... .......... 93% 153M 0s -2024-03-12T20:19:00Z #15 3.802 118550K .......... .......... .......... .......... .......... 93% 168M 0s -2024-03-12T20:19:00Z #15 3.802 118600K .......... .......... .......... .......... .......... 93% 177M 0s -2024-03-12T20:19:00Z #15 3.802 118650K .......... .......... .......... .......... .......... 93% 132M 0s -2024-03-12T20:19:00Z #15 3.802 118700K .......... .......... .......... .......... .......... 93% 174M 0s -2024-03-12T20:19:00Z #15 3.802 118750K .......... .......... .......... .......... .......... 93% 55.6M 0s -2024-03-12T20:19:00Z #15 3.803 118800K .......... .......... .......... .......... .......... 93% 78.7M 0s -2024-03-12T20:19:00Z #15 3.804 118850K .......... .......... .......... .......... .......... 93% 88.1M 0s -2024-03-12T20:19:00Z #15 3.805 118900K .......... .......... .......... .......... .......... 93% 72.3M 0s -2024-03-12T20:19:00Z #15 3.806 118950K .......... .......... .......... .......... .......... 93% 94.3M 0s -2024-03-12T20:19:00Z #15 3.806 119000K .......... .......... .......... .......... .......... 93% 41.3M 0s -2024-03-12T20:19:00Z #15 3.807 119050K .......... .......... .......... .......... .......... 93% 86.0M 0s -2024-03-12T20:19:00Z #15 3.807 119100K .......... .......... .......... .......... .......... 93% 56.2M 0s -2024-03-12T20:19:00Z #15 3.808 119150K .......... .......... .......... .......... .......... 94% 64.2M 0s -2024-03-12T20:19:00Z #15 3.809 119200K .......... .......... .......... .......... .......... 94% 62.1M 0s -2024-03-12T20:19:00Z #15 3.810 119250K .......... .......... .......... .......... .......... 94% 67.1M 0s -2024-03-12T20:19:00Z #15 3.811 119300K .......... .......... .......... .......... .......... 94% 148M 0s -2024-03-12T20:19:00Z #15 3.811 119350K .......... .......... .......... .......... .......... 94% 164M 0s -2024-03-12T20:19:00Z #15 3.811 119400K .......... .......... .......... .......... .......... 94% 146M 0s -2024-03-12T20:19:00Z #15 3.811 119450K .......... .......... .......... .......... .......... 94% 166M 0s -2024-03-12T20:19:00Z #15 3.812 119500K .......... .......... .......... .......... .......... 94% 139M 0s -2024-03-12T20:19:00Z #15 3.812 119550K .......... .......... .......... .......... .......... 94% 166M 0s -2024-03-12T20:19:00Z #15 3.813 119600K .......... .......... .......... .......... .......... 94% 82.8M 0s -2024-03-12T20:19:00Z #15 3.813 119650K .......... .......... .......... .......... .......... 94% 128M 0s -2024-03-12T20:19:00Z #15 3.814 119700K .......... .......... .......... .......... .......... 94% 183M 0s -2024-03-12T20:19:00Z #15 3.814 119750K .......... .......... .......... .......... .......... 94% 80.7M 0s -2024-03-12T20:19:00Z #15 3.814 119800K .......... .......... .......... .......... .......... 94% 161M 0s -2024-03-12T20:19:00Z #15 3.814 119850K .......... .......... .......... .......... .......... 94% 148M 0s -2024-03-12T20:19:00Z #15 3.815 119900K .......... .......... .......... .......... .......... 94% 163M 0s -2024-03-12T20:19:00Z #15 3.816 119950K .......... .......... .......... .......... .......... 94% 83.0M 0s -2024-03-12T20:19:00Z #15 3.816 120000K .......... .......... .......... .......... .......... 94% 124M 0s -2024-03-12T20:19:00Z #15 3.816 120050K .......... .......... .......... .......... .......... 94% 160M 0s -2024-03-12T20:19:00Z #15 3.817 120100K .......... .......... .......... .......... .......... 94% 80.4M 0s -2024-03-12T20:19:00Z #15 3.817 120150K .......... .......... .......... .......... .......... 94% 134M 0s -2024-03-12T20:19:00Z #15 3.817 120200K .......... .......... .......... .......... .......... 94% 115M 0s -2024-03-12T20:19:00Z #15 3.818 120250K .......... .......... .......... .......... .......... 94% 74.4M 0s -2024-03-12T20:19:00Z #15 3.818 120300K .......... .......... .......... .......... .......... 94% 144M 0s -2024-03-12T20:19:00Z #15 3.820 120350K .......... .......... .......... .......... .......... 94% 104M 0s -2024-03-12T20:19:00Z #15 3.820 120400K .......... .......... .......... .......... .......... 95% 95.3M 0s -2024-03-12T20:19:00Z #15 3.820 120450K .......... .......... .......... .......... .......... 95% 115M 0s -2024-03-12T20:19:00Z #15 3.820 120500K .......... .......... .......... .......... .......... 95% 113M 0s -2024-03-12T20:19:00Z #15 3.821 120550K .......... .......... .......... .......... .......... 95% 71.6M 0s -2024-03-12T20:19:00Z #15 3.821 120600K .......... .......... .......... .......... .......... 95% 109M 0s -2024-03-12T20:19:00Z #15 3.822 120650K .......... .......... .......... .......... .......... 95% 62.6M 0s -2024-03-12T20:19:00Z #15 3.823 120700K .......... .......... .......... .......... .......... 95% 71.8M 0s -2024-03-12T20:19:00Z #15 3.824 120750K .......... .......... .......... .......... .......... 95% 114M 0s -2024-03-12T20:19:00Z #15 3.824 120800K .......... .......... .......... .......... .......... 95% 120M 0s -2024-03-12T20:19:00Z #15 3.824 120850K .......... .......... .......... .......... .......... 95% 70.2M 0s -2024-03-12T20:19:00Z #15 3.825 120900K .......... .......... .......... .......... .......... 95% 116M 0s -2024-03-12T20:19:00Z #15 3.825 120950K .......... .......... .......... .......... .......... 95% 93.9M 0s -2024-03-12T20:19:00Z #15 3.826 121000K .......... .......... .......... .......... .......... 95% 92.3M 0s -2024-03-12T20:19:00Z #15 3.827 121050K .......... .......... .......... .......... .......... 95% 82.6M 0s -2024-03-12T20:19:00Z #15 3.827 121100K .......... .......... .......... .......... .......... 95% 82.8M 0s -2024-03-12T20:19:00Z #15 3.828 121150K .......... .......... .......... .......... .......... 95% 94.0M 0s -2024-03-12T20:19:00Z #15 3.828 121200K .......... .......... .......... .......... .......... 95% 157M 0s -2024-03-12T20:19:00Z #15 3.828 121250K .......... .......... .......... .......... .......... 95% 148M 0s -2024-03-12T20:19:00Z #15 3.829 121300K .......... .......... .......... .......... .......... 95% 103M 0s -2024-03-12T20:19:00Z #15 3.829 121350K .......... .......... .......... .......... .......... 95% 152M 0s -2024-03-12T20:19:00Z #15 3.829 121400K .......... .......... .......... .......... .......... 95% 156M 0s -2024-03-12T20:19:00Z #15 3.830 121450K .......... .......... .......... .......... .......... 95% 45.0M 0s -2024-03-12T20:19:00Z #15 3.831 121500K .......... .......... .......... .......... .......... 95% 142M 0s -2024-03-12T20:19:00Z #15 3.831 121550K .......... .......... .......... .......... .......... 95% 95.4M 0s -2024-03-12T20:19:00Z #15 3.832 121600K .......... .......... .......... .......... .......... 95% 99.1M 0s -2024-03-12T20:19:00Z #15 3.832 121650K .......... .......... .......... .......... .......... 95% 164M 0s -2024-03-12T20:19:00Z #15 3.833 121700K .......... .......... .......... .......... .......... 96% 101M 0s -2024-03-12T20:19:00Z #15 3.833 121750K .......... .......... .......... .......... .......... 96% 152M 0s -2024-03-12T20:19:00Z #15 3.833 121800K .......... .......... .......... .......... .......... 96% 59.7M 0s -2024-03-12T20:19:00Z #15 3.834 121850K .......... .......... .......... .......... .......... 96% 170M 0s -2024-03-12T20:19:00Z #15 3.834 121900K .......... .......... .......... .......... .......... 96% 131M 0s -2024-03-12T20:19:00Z #15 3.835 121950K .......... .......... .......... .......... .......... 96% 58.9M 0s -2024-03-12T20:19:00Z #15 3.836 122000K .......... .......... .......... .......... .......... 96% 55.4M 0s -2024-03-12T20:19:00Z #15 3.836 122050K .......... .......... .......... .......... .......... 96% 116M 0s -2024-03-12T20:19:00Z #15 3.837 122100K .......... .......... .......... .......... .......... 96% 81.3M 0s -2024-03-12T20:19:00Z #15 3.837 122150K .......... .......... .......... .......... .......... 96% 167M 0s -2024-03-12T20:19:00Z #15 3.838 122200K .......... .......... .......... .......... .......... 96% 88.3M 0s -2024-03-12T20:19:00Z #15 3.838 122250K .......... .......... .......... .......... .......... 96% 154M 0s -2024-03-12T20:19:00Z #15 3.839 122300K .......... .......... .......... .......... .......... 96% 99.3M 0s -2024-03-12T20:19:00Z #15 3.839 122350K .......... .......... .......... .......... .......... 96% 111M 0s -2024-03-12T20:19:00Z #15 3.840 122400K .......... .......... .......... .......... .......... 96% 86.0M 0s -2024-03-12T20:19:00Z #15 3.840 122450K .......... .......... .......... .......... .......... 96% 143M 0s -2024-03-12T20:19:00Z #15 3.841 122500K .......... .......... .......... .......... .......... 96% 168M 0s -2024-03-12T20:19:00Z #15 3.841 122550K .......... .......... .......... .......... .......... 96% 74.4M 0s -2024-03-12T20:19:00Z #15 3.842 122600K .......... .......... .......... .......... .......... 96% 113M 0s -2024-03-12T20:19:00Z #15 3.842 122650K .......... .......... .......... .......... .......... 96% 139M 0s -2024-03-12T20:19:00Z #15 3.843 122700K .......... .......... .......... .......... .......... 96% 68.8M 0s -2024-03-12T20:19:00Z #15 3.843 122750K .......... .......... .......... .......... .......... 96% 144M 0s -2024-03-12T20:19:00Z #15 3.843 122800K .......... .......... .......... .......... .......... 96% 148M 0s -2024-03-12T20:19:00Z #15 3.844 122850K .......... .......... .......... .......... .......... 96% 87.3M 0s -2024-03-12T20:19:00Z #15 3.844 122900K .......... .......... .......... .......... .......... 96% 47.4M 0s -2024-03-12T20:19:00Z #15 3.845 122950K .......... .......... .......... .......... .......... 97% 144M 0s -2024-03-12T20:19:00Z #15 3.845 123000K .......... .......... .......... .......... .......... 97% 172M 0s -2024-03-12T20:19:00Z #15 3.846 123050K .......... .......... .......... .......... .......... 97% 80.4M 0s -2024-03-12T20:19:00Z #15 3.846 123100K .......... .......... .......... .......... .......... 97% 100M 0s -2024-03-12T20:19:00Z #15 3.847 123150K .......... .......... .......... .......... .......... 97% 110M 0s -2024-03-12T20:19:00Z #15 3.848 123200K .......... .......... .......... .......... .......... 97% 167M 0s -2024-03-12T20:19:00Z #15 3.848 123250K .......... .......... .......... .......... .......... 97% 135M 0s -2024-03-12T20:19:00Z #15 3.848 123300K .......... .......... .......... .......... .......... 97% 59.9M 0s -2024-03-12T20:19:00Z #15 3.849 123350K .......... .......... .......... .......... .......... 97% 157M 0s -2024-03-12T20:19:00Z #15 3.849 123400K .......... .......... .......... .......... .......... 97% 156M 0s -2024-03-12T20:19:00Z #15 3.849 123450K .......... .......... .......... .......... .......... 97% 49.6M 0s -2024-03-12T20:19:00Z #15 3.850 123500K .......... .......... .......... .......... .......... 97% 54.8M 0s -2024-03-12T20:19:00Z #15 3.851 123550K .......... .......... .......... .......... .......... 97% 91.7M 0s -2024-03-12T20:19:00Z #15 3.852 123600K .......... .......... .......... .......... .......... 97% 148M 0s -2024-03-12T20:19:00Z #15 3.852 123650K .......... .......... .......... .......... .......... 97% 166M 0s -2024-03-12T20:19:00Z #15 3.852 123700K .......... .......... .......... .......... .......... 97% 98.2M 0s -2024-03-12T20:19:00Z #15 3.853 123750K .......... .......... .......... .......... .......... 97% 62.9M 0s -2024-03-12T20:19:00Z #15 3.854 123800K .......... .......... .......... .......... .......... 97% 26.7M 0s -2024-03-12T20:19:00Z #15 3.855 123850K .......... .......... .......... .......... .......... 97% 16.0M 0s -2024-03-12T20:19:00Z #15 3.859 123900K .......... .......... .......... .......... .......... 97% 102M 0s -2024-03-12T20:19:00Z #15 3.859 123950K .......... .......... .......... .......... .......... 97% 29.7M 0s -2024-03-12T20:19:00Z #15 3.861 124000K .......... .......... .......... .......... .......... 97% 76.1M 0s -2024-03-12T20:19:00Z #15 3.861 124050K .......... .......... .......... .......... .......... 97% 58.1M 0s -2024-03-12T20:19:00Z #15 3.862 124100K .......... .......... .......... .......... .......... 97% 35.5M 0s -2024-03-12T20:19:00Z #15 3.864 124150K .......... .......... .......... .......... .......... 97% 120M 0s -2024-03-12T20:19:00Z #15 3.864 124200K .......... .......... .......... .......... .......... 98% 52.0M 0s -2024-03-12T20:19:00Z #15 3.865 124250K .......... .......... .......... .......... .......... 98% 42.5M 0s -2024-03-12T20:19:00Z #15 3.866 124300K .......... .......... .......... .......... .......... 98% 77.6M 0s -2024-03-12T20:19:00Z #15 3.867 124350K .......... .......... .......... .......... .......... 98% 86.6M 0s -2024-03-12T20:19:00Z #15 3.868 124400K .......... .......... .......... .......... .......... 98% 64.8M 0s -2024-03-12T20:19:00Z #15 3.869 124450K .......... .......... .......... .......... .......... 98% 127M 0s -2024-03-12T20:19:00Z #15 3.869 124500K .......... .......... .......... .......... .......... 98% 33.5M 0s -2024-03-12T20:19:00Z #15 3.871 124550K .......... .......... .......... .......... .......... 98% 154M 0s -2024-03-12T20:19:00Z #15 3.871 124600K .......... .......... .......... .......... .......... 98% 141M 0s -2024-03-12T20:19:00Z #15 3.871 124650K .......... .......... .......... .......... .......... 98% 31.2M 0s -2024-03-12T20:19:00Z #15 3.872 124700K .......... .......... .......... .......... .......... 98% 106M 0s -2024-03-12T20:19:00Z #15 3.873 124750K .......... .......... .......... .......... .......... 98% 74.4M 0s -2024-03-12T20:19:00Z #15 3.874 124800K .......... .......... .......... .......... .......... 98% 34.7M 0s -2024-03-12T20:19:00Z #15 3.875 124850K .......... .......... .......... .......... .......... 98% 92.1M 0s -2024-03-12T20:19:00Z #15 3.876 124900K .......... .......... .......... .......... .......... 98% 158M 0s -2024-03-12T20:19:00Z #15 3.876 124950K .......... .......... .......... .......... .......... 98% 41.8M 0s -2024-03-12T20:19:00Z #15 3.877 125000K .......... .......... .......... .......... .......... 98% 58.0M 0s -2024-03-12T20:19:00Z #15 3.878 125050K .......... .......... .......... .......... .......... 98% 45.6M 0s -2024-03-12T20:19:00Z #15 3.879 125100K .......... .......... .......... .......... .......... 98% 81.2M 0s -2024-03-12T20:19:00Z #15 3.879 125150K .......... .......... .......... .......... .......... 98% 44.8M 0s -2024-03-12T20:19:00Z #15 3.881 125200K .......... .......... .......... .......... .......... 98% 57.5M 0s -2024-03-12T20:19:00Z #15 3.881 125250K .......... .......... .......... .......... .......... 98% 39.5M 0s -2024-03-12T20:19:00Z #15 3.882 125300K .......... .......... .......... .......... .......... 98% 27.6M 0s -2024-03-12T20:19:00Z #15 3.884 125350K .......... .......... .......... .......... .......... 98% 168M 0s -2024-03-12T20:19:00Z #15 3.884 125400K .......... .......... .......... .......... .......... 98% 65.5M 0s -2024-03-12T20:19:00Z #15 3.886 125450K .......... .......... .......... .......... .......... 98% 69.8M 0s -2024-03-12T20:19:00Z #15 3.886 125500K .......... .......... .......... .......... .......... 99% 39.8M 0s -2024-03-12T20:19:00Z #15 3.887 125550K .......... .......... .......... .......... .......... 99% 27.7M 0s -2024-03-12T20:19:00Z #15 3.889 125600K .......... .......... .......... .......... .......... 99% 41.9M 0s -2024-03-12T20:19:00Z #15 3.890 125650K .......... .......... .......... .......... .......... 99% 129M 0s -2024-03-12T20:19:00Z #15 3.890 125700K .......... .......... .......... .......... .......... 99% 72.7M 0s -2024-03-12T20:19:00Z #15 3.891 125750K .......... .......... .......... .......... .......... 99% 36.6M 0s -2024-03-12T20:19:00Z #15 3.893 125800K .......... .......... .......... .......... .......... 99% 148M 0s -2024-03-12T20:19:00Z #15 3.893 125850K .......... .......... .......... .......... .......... 99% 55.0M 0s -2024-03-12T20:19:00Z #15 3.893 125900K .......... .......... .......... .......... .......... 99% 36.9M 0s -2024-03-12T20:19:00Z #15 3.895 125950K .......... .......... .......... .......... .......... 99% 65.7M 0s -2024-03-12T20:19:00Z #15 3.896 126000K .......... .......... .......... .......... .......... 99% 1.10M 0s -2024-03-12T20:19:00Z #15 3.940 126050K .......... .......... .......... .......... .......... 99% 53.7M 0s -2024-03-12T20:19:00Z #15 3.941 126100K .......... .......... .......... .......... .......... 99% 20.6M 0s -2024-03-12T20:19:00Z #15 3.943 126150K .......... .......... .......... .......... .......... 99% 50.3M 0s -2024-03-12T20:19:00Z #15 3.944 126200K .......... .......... .......... .......... .......... 99% 110M 0s -2024-03-12T20:19:00Z #15 3.945 126250K .......... .......... .......... .......... .......... 99% 59.6M 0s -2024-03-12T20:19:00Z #15 3.946 126300K .......... .......... .......... .......... .......... 99% 95.6M 0s -2024-03-12T20:19:00Z #15 3.946 126350K .......... .......... .......... .......... .......... 99% 97.2M 0s -2024-03-12T20:19:00Z #15 3.947 126400K .......... .......... .......... .......... .......... 99% 122M 0s -2024-03-12T20:19:00Z #15 3.947 126450K .......... .......... .......... .......... .......... 99% 67.1M 0s -2024-03-12T20:19:00Z #15 3.948 126500K .......... .......... .......... .......... .......... 99% 76.0M 0s -2024-03-12T20:19:00Z #15 3.949 126550K .......... .......... .......... .......... .......... 99% 62.2M 0s -2024-03-12T20:19:00Z #15 3.949 126600K .......... .......... .......... .......... .......... 99% 50.5M 0s -2024-03-12T20:19:00Z #15 3.950 126650K .......... .......... .......... .......... .......... 99% 35.0M 0s -2024-03-12T20:19:00Z #15 3.952 126700K .......... .......... .......... .......... .......... 99% 34.1M 0s -2024-03-12T20:19:00Z #15 3.953 126750K .......... .......... .......... .. 100% 30.5M=2.4s -2024-03-12T20:19:00Z #15 3.954 -2024-03-12T20:19:00Z #15 3.954 2024-03-12 20:19:00 (51.9 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] -2024-03-12T20:19:00Z #15 3.954 -2024-03-12T20:19:01Z #15 5.398 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' -2024-03-12T20:19:01Z #15 5.424 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-03-12T20:19:02Z #15 DONE 5.9s -2024-03-12T20:19:02Z -2024-03-12T20:19:02Z #16 exporting to image -2024-03-12T20:19:02Z #16 exporting layers -2024-03-12T20:21:36Z #16 exporting layers 153.9s done -2024-03-12T20:21:36Z #16 writing image sha256:576ab19b15aadbecfce12e943044b348bc36fb176f0e032690506cffccba848a done -2024-03-12T20:21:36Z #16 naming to docker.io/pavics/workflow-tests:py310-240312 done -2024-03-12T20:21:36Z #16 DONE 153.9s -2024-03-12T20:21:36Z Pushing index.docker.io/pavics/workflow-tests:py310-240312... -2024-03-12T20:29:10Z Done! -2024-03-12T20:29:10Z Build finished +2024-03-16T16:31:47Z Building in Docker Cloud's infrastructure... +2024-03-16T16:31:47Z Cloning into '.'... +2024-03-16T16:31:48Z Warning: Permanently added the RSA host key for IP address '140.82.112.3' to the list of known hosts. +2024-03-16T16:31:49Z Switched to a new branch 'docker-py310-240316' +2024-03-16T16:31:49Z KernelVersion: 5.4.0-1068-aws +2024-03-16T16:31:49Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-03-16T16:31:49Z Arch: amd64 +2024-03-16T16:31:49Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-03-16T16:31:49Z ApiVersion: 1.41 +2024-03-16T16:31:49Z Platform: {u'Name': u'Docker Engine - Community'} +2024-03-16T16:31:49Z Version: 20.10.15 +2024-03-16T16:31:49Z MinAPIVersion: 1.12 +2024-03-16T16:31:49Z GitCommit: 4433bf6 +2024-03-16T16:31:49Z Os: linux +2024-03-16T16:31:49Z GoVersion: go1.17.9 +2024-03-16T16:31:49Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240316... +2024-03-16T16:31:54Z #1 [internal] load build definition from Dockerfile +2024-03-16T16:31:54Z #1 transferring dockerfile: 6.98kB done +2024-03-16T16:31:54Z #1 DONE 0.1s +2024-03-16T16:31:54Z +2024-03-16T16:31:54Z #2 [internal] load .dockerignore +2024-03-16T16:31:54Z #2 transferring context: 2B done +2024-03-16T16:31:54Z #2 DONE 0.0s +2024-03-16T16:31:54Z +2024-03-16T16:31:54Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-03-16T16:31:55Z #3 ... +2024-03-16T16:31:55Z +2024-03-16T16:31:55Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-03-16T16:31:55Z #4 DONE 0.0s +2024-03-16T16:31:55Z +2024-03-16T16:31:55Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-03-16T16:31:55Z #3 DONE 0.7s +2024-03-16T16:31:55Z +2024-03-16T16:31:55Z #5 [internal] load build context +2024-03-16T16:31:55Z #5 transferring context: 9.58kB done +2024-03-16T16:31:55Z #5 DONE 0.0s +2024-03-16T16:31:55Z +2024-03-16T16:31:55Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-03-16T16:31:55Z #6 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done +2024-03-16T16:31:55Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.2s +2024-03-16T16:31:55Z #6 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done +2024-03-16T16:31:55Z #6 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done +2024-03-16T16:31:55Z #6 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done +2024-03-16T16:31:55Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 14.68MB / 31.42MB 0.2s +2024-03-16T16:31:55Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 1.05MB / 50.08MB 0.2s +2024-03-16T16:31:55Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 18.87MB / 31.42MB 0.3s +2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 9.44MB / 147.31MB 0.4s +2024-03-16T16:31:56Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 20.97MB / 31.42MB 0.4s +2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 10.49MB / 50.08MB 0.4s +2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 22.02MB / 147.31MB 0.6s +2024-03-16T16:31:56Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 26.21MB / 31.42MB 0.6s +2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 19.92MB / 50.08MB 0.6s +2024-03-16T16:31:56Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 30.41MB / 31.42MB 0.7s +2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 24.83MB / 50.08MB 0.7s +2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 32.51MB / 147.31MB 0.8s +2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 30.41MB / 50.08MB 0.8s +2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 45.09MB / 147.31MB 1.0s +2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 43.41MB / 50.08MB 1.0s +2024-03-16T16:31:56Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.1s done +2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 47.19MB / 50.08MB 1.1s +2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 54.53MB / 147.31MB 1.2s +2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.2s +2024-03-16T16:31:57Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 62.85MB / 147.31MB 1.4s +2024-03-16T16:31:57Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.3s done +2024-03-16T16:31:57Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 +2024-03-16T16:31:57Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 76.55MB / 147.31MB 2.2s +2024-03-16T16:31:57Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 85.98MB / 147.31MB 2.3s +2024-03-16T16:31:58Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 94.37MB / 147.31MB 2.7s +2024-03-16T16:31:58Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 114.29MB / 147.31MB 2.9s +2024-03-16T16:31:58Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 126.88MB / 147.31MB 3.1s +2024-03-16T16:31:58Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 137.26MB / 147.31MB 3.3s +2024-03-16T16:31:59Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 145.75MB / 147.31MB 3.4s +2024-03-16T16:32:00Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 4.5s done +2024-03-16T16:32:01Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 4.8s done +2024-03-16T16:32:02Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0.1s +2024-03-16T16:32:07Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.3s +2024-03-16T16:32:08Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.4s done +2024-03-16T16:32:09Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c +2024-03-16T16:32:14Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.0s +2024-03-16T16:32:19Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.1s +2024-03-16T16:32:22Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 13.9s done +2024-03-16T16:32:23Z #6 ... +2024-03-16T16:32:23Z +2024-03-16T16:32:23Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-03-16T16:32:24Z #7 1.518 Channels: +2024-03-16T16:32:24Z #7 1.518 - defaults +2024-03-16T16:32:24Z #7 1.518 Platform: linux-64 +2024-03-16T16:32:29Z #7 1.518 Collecting package metadata (repodata.json): ...working... done +2024-03-16T16:32:29Z #7 5.671 Solving environment: ...working... done +2024-03-16T16:32:29Z #7 5.989 +2024-03-16T16:32:29Z #7 5.989 # All requested packages already installed. +2024-03-16T16:32:29Z #7 5.989 +2024-03-16T16:32:30Z #7 7.222 Channels: +2024-03-16T16:32:30Z #7 7.222 - conda-forge +2024-03-16T16:32:30Z #7 7.222 - defaults +2024-03-16T16:32:30Z #7 7.222 Platform: linux-64 +2024-03-16T16:32:56Z #7 7.222 Collecting package metadata (repodata.json): ...working... done +2024-03-16T16:32:58Z #7 33.19 Solving environment: ...working... done +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 ## Package Plan ## +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 environment location: /opt/conda +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 added / updated specs: +2024-03-16T16:32:58Z #7 35.23 - mamba +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 The following packages will be downloaded: +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 package | build +2024-03-16T16:32:58Z #7 35.23 ---------------------------|----------------- +2024-03-16T16:32:58Z #7 35.23 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 ca-certificates-2024.2.2 | hbcca054_0 152 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 conda-24.1.2 | py311h38be061_0 1.2 MB conda-forge +2024-03-16T16:32:58Z #7 35.23 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-03-16T16:32:58Z #7 35.23 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 libmamba-1.5.7 | had39da4_0 1.6 MB conda-forge +2024-03-16T16:32:58Z #7 35.23 libmambapy-1.5.7 | py311hf2555c7_0 305 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge +2024-03-16T16:32:58Z #7 35.23 libxml2-2.12.5 | h232c23b_0 688 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 lzo-2.10 | h516909a_1000 314 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 mamba-1.5.7 | py311h3072747_0 65 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 openssl-3.2.1 | hd590300_0 2.7 MB conda-forge +2024-03-16T16:32:58Z #7 35.23 python_abi-3.11 | 2_cp311 5 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-03-16T16:32:58Z #7 35.23 ------------------------------------------------------------ +2024-03-16T16:32:58Z #7 35.23 Total: 25.3 MB +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 The following NEW packages will be INSTALLED: +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-03-16T16:32:58Z #7 35.23 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-03-16T16:32:58Z #7 35.23 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 +2024-03-16T16:32:58Z #7 35.23 mamba conda-forge/linux-64::mamba-1.5.7-py311h3072747_0 +2024-03-16T16:32:58Z #7 35.23 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 The following packages will be UPDATED: +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 ca-certificates pkgs/main::ca-certificates-2023.12.12~ --> conda-forge::ca-certificates-2024.2.2-hbcca054_0 +2024-03-16T16:32:58Z #7 35.23 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-03-16T16:32:58Z #7 35.23 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-03-16T16:32:58Z #7 35.23 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-03-16T16:32:58Z #7 35.23 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 +2024-03-16T16:32:58Z #7 35.23 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 +2024-03-16T16:32:58Z #7 35.23 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.7-had39da4_0 +2024-03-16T16:32:58Z #7 35.23 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.7-py311hf2555c7_0 +2024-03-16T16:32:58Z #7 35.23 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 +2024-03-16T16:32:58Z #7 35.23 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.5-h232c23b_0 +2024-03-16T16:32:58Z #7 35.23 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_0 +2024-03-16T16:32:58Z #7 35.23 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 The following packages will be SUPERSEDED by a higher-priority channel: +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-03-16T16:32:58Z #7 35.23 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-03-16T16:32:58Z #7 35.23 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-03-16T16:32:58Z #7 35.23 conda pkgs/main::conda-24.1.2-py311h06a4308~ --> conda-forge::conda-24.1.2-py311h38be061_0 +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 +2024-03-16T16:32:58Z #7 35.23 Proceed ([y]/n)? +2024-03-16T16:33:00Z #7 37.32 +2024-03-16T16:33:00Z #7 37.32 Downloading and Extracting Packages: ...working... done +2024-03-16T16:33:00Z #7 37.32 Preparing transaction: ...working... done +2024-03-16T16:33:01Z #7 37.42 Verifying transaction: ...working... done +2024-03-16T16:33:09Z #7 37.83 Executing transaction: ...working... done +2024-03-16T16:33:10Z #7 47.52 Will remove 21 (25.3 MB) tarball(s). +2024-03-16T16:33:10Z #7 47.52 Will remove 1 index cache(s). +2024-03-16T16:33:10Z #7 47.52 Will remove 3 (118 KB) package(s). +2024-03-16T16:33:10Z #7 47.52 There are no tempfile(s) to remove. +2024-03-16T16:33:10Z #7 47.52 There are no logfile(s) to remove. +2024-03-16T16:33:12Z #7 48.94 bin/micromamba +2024-03-16T16:33:14Z #7 DONE 51.1s +2024-03-16T16:33:14Z +2024-03-16T16:33:14Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-03-16T16:33:15Z #8 0.606 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-03-16T16:33:15Z #8 0.619 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-03-16T16:33:15Z #8 0.632 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-03-16T16:33:15Z #8 0.748 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-03-16T16:33:15Z #8 0.988 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [269 kB] +2024-03-16T16:33:15Z #8 1.112 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-03-16T16:33:17Z #8 2.685 Fetched 8564 kB in 2s (4106 kB/s) +2024-03-16T16:33:18Z #8 2.685 Reading package lists... +2024-03-16T16:33:19Z #8 3.671 Reading package lists... +2024-03-16T16:33:19Z #8 4.646 Building dependency tree... +2024-03-16T16:33:19Z #8 4.866 Reading state information... +2024-03-16T16:33:19Z #8 5.192 git is already the newest version (1:2.30.2-1+deb11u2). +2024-03-16T16:33:19Z #8 5.192 mercurial is already the newest version (5.6.1-4). +2024-03-16T16:33:19Z #8 5.192 The following additional packages will be installed: +2024-03-16T16:33:19Z #8 5.193 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-03-16T16:33:19Z #8 5.193 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-03-16T16:33:19Z #8 5.193 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-03-16T16:33:19Z #8 5.193 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-03-16T16:33:19Z #8 5.193 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-03-16T16:33:19Z #8 5.194 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-03-16T16:33:19Z #8 5.194 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-03-16T16:33:19Z #8 5.194 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-03-16T16:33:19Z #8 5.194 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-03-16T16:33:19Z #8 5.194 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-03-16T16:33:19Z #8 5.194 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-03-16T16:33:19Z #8 5.194 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-03-16T16:33:19Z #8 5.194 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-03-16T16:33:19Z #8 5.194 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-03-16T16:33:19Z #8 5.195 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-03-16T16:33:19Z #8 5.195 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-03-16T16:33:19Z #8 5.195 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-03-16T16:33:19Z #8 5.195 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-03-16T16:33:19Z #8 5.195 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-03-16T16:33:19Z #8 5.195 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-03-16T16:33:19Z #8 5.195 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-03-16T16:33:19Z #8 5.195 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-03-16T16:33:19Z #8 5.195 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-03-16T16:33:19Z #8 5.196 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-03-16T16:33:19Z #8 5.196 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-03-16T16:33:19Z #8 5.196 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-03-16T16:33:19Z #8 5.196 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-03-16T16:33:19Z #8 5.197 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-03-16T16:33:19Z #8 5.197 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-03-16T16:33:19Z #8 5.197 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-03-16T16:33:19Z #8 5.197 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-03-16T16:33:19Z #8 5.197 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-03-16T16:33:19Z #8 5.197 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-03-16T16:33:19Z #8 5.197 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-03-16T16:33:19Z #8 5.197 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-03-16T16:33:19Z #8 5.197 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-03-16T16:33:19Z #8 5.197 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-03-16T16:33:19Z #8 5.198 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv +2024-03-16T16:33:19Z #8 5.199 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data +2024-03-16T16:33:19Z #8 5.201 Suggested packages: +2024-03-16T16:33:19Z #8 5.201 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-03-16T16:33:19Z #8 5.201 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-03-16T16:33:19Z #8 5.201 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-03-16T16:33:19Z #8 5.201 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs +2024-03-16T16:33:19Z #8 5.201 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser +2024-03-16T16:33:19Z #8 5.201 opencl-icd ed diffutils-doc systemd-container policykit-1 zip +2024-03-16T16:33:19Z #8 5.201 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-03-16T16:33:19Z #8 5.201 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-03-16T16:33:19Z #8 5.201 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-03-16T16:33:21Z #8 6.836 The following NEW packages will be installed: +2024-03-16T16:33:21Z #8 6.837 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-03-16T16:33:21Z #8 6.838 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-03-16T16:33:21Z #8 6.838 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-03-16T16:33:21Z #8 6.838 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-03-16T16:33:21Z #8 6.839 glib-networking glib-networking-common glib-networking-services +2024-03-16T16:33:21Z #8 6.839 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-03-16T16:33:21Z #8 6.840 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-03-16T16:33:21Z #8 6.840 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-03-16T16:33:21Z #8 6.840 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-03-16T16:33:21Z #8 6.848 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-03-16T16:33:21Z #8 6.848 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-03-16T16:33:21Z #8 6.848 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-03-16T16:33:21Z #8 6.848 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-03-16T16:33:21Z #8 6.848 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-03-16T16:33:21Z #8 6.848 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-03-16T16:33:21Z #8 6.848 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-03-16T16:33:21Z #8 6.848 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-03-16T16:33:21Z #8 6.848 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-03-16T16:33:21Z #8 6.848 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-03-16T16:33:21Z #8 6.848 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-03-16T16:33:21Z #8 6.848 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-03-16T16:33:21Z #8 6.848 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-03-16T16:33:21Z #8 6.848 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-03-16T16:33:21Z #8 6.848 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-03-16T16:33:21Z #8 6.848 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-03-16T16:33:21Z #8 6.848 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-03-16T16:33:21Z #8 6.848 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-03-16T16:33:21Z #8 6.848 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-03-16T16:33:21Z #8 6.848 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-03-16T16:33:21Z #8 6.848 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-03-16T16:33:21Z #8 6.848 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-03-16T16:33:21Z #8 6.848 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-03-16T16:33:21Z #8 6.848 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-03-16T16:33:21Z #8 6.848 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-03-16T16:33:21Z #8 6.848 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-03-16T16:33:21Z #8 6.848 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-03-16T16:33:21Z #8 6.848 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-03-16T16:33:21Z #8 6.848 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-03-16T16:33:21Z #8 6.848 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-03-16T16:33:21Z #8 6.848 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-03-16T16:33:21Z #8 6.848 x11-utils xkb-data +2024-03-16T16:33:21Z #8 6.881 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. +2024-03-16T16:33:21Z #8 6.881 Need to get 236 MB of archives. +2024-03-16T16:33:21Z #8 6.881 After this operation, 891 MB of additional disk space will be used. +2024-03-16T16:33:21Z #8 6.881 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-03-16T16:33:21Z #8 6.889 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-03-16T16:33:21Z #8 6.890 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-03-16T16:33:21Z #8 6.911 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-03-16T16:33:21Z #8 6.915 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-03-16T16:33:21Z #8 6.919 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-03-16T16:33:21Z #8 6.922 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-03-16T16:33:21Z #8 6.929 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-03-16T16:33:21Z #8 6.930 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-03-16T16:33:21Z #8 6.941 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-03-16T16:33:21Z #8 7.047 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-03-16T16:33:21Z #8 7.050 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-03-16T16:33:21Z #8 7.055 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-03-16T16:33:21Z #8 7.059 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-03-16T16:33:21Z #8 7.063 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-03-16T16:33:21Z #8 7.067 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-03-16T16:33:21Z #8 7.087 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-03-16T16:33:21Z #8 7.090 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-03-16T16:33:21Z #8 7.098 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-03-16T16:33:21Z #8 7.103 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-03-16T16:33:21Z #8 7.314 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-03-16T16:33:21Z #8 7.324 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-03-16T16:33:21Z #8 7.334 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-03-16T16:33:21Z #8 7.337 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-03-16T16:33:21Z #8 7.341 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-03-16T16:33:21Z #8 7.343 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-03-16T16:33:21Z #8 7.346 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-03-16T16:33:21Z #8 7.350 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-03-16T16:33:21Z #8 7.355 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-03-16T16:33:21Z #8 7.358 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-03-16T16:33:21Z #8 7.360 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-03-16T16:33:22Z #8 7.603 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-03-16T16:33:22Z #8 7.605 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-03-16T16:33:22Z #8 7.607 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-03-16T16:33:22Z #8 7.612 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-03-16T16:33:22Z #8 7.614 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-03-16T16:33:22Z #8 7.616 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-03-16T16:33:22Z #8 7.618 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-03-16T16:33:22Z #8 7.619 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-03-16T16:33:22Z #8 7.622 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-03-16T16:33:22Z #8 7.649 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-03-16T16:33:22Z #8 7.657 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-03-16T16:33:22Z #8 7.683 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-03-16T16:33:22Z #8 7.685 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-03-16T16:33:22Z #8 7.712 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-03-16T16:33:22Z #8 7.721 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-03-16T16:33:22Z #8 7.730 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-03-16T16:33:22Z #8 7.756 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-03-16T16:33:22Z #8 7.758 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-03-16T16:33:22Z #8 7.933 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-03-16T16:33:22Z #8 7.934 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-03-16T16:33:22Z #8 7.936 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-03-16T16:33:22Z #8 7.942 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-03-16T16:33:22Z #8 7.944 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-03-16T16:33:22Z #8 7.946 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-03-16T16:33:22Z #8 7.949 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-03-16T16:33:22Z #8 7.951 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-03-16T16:33:22Z #8 7.959 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-03-16T16:33:22Z #8 7.981 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-03-16T16:33:22Z #8 7.994 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-03-16T16:33:22Z #8 7.999 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-03-16T16:33:22Z #8 8.023 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-03-16T16:33:22Z #8 8.025 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-03-16T16:33:22Z #8 8.027 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-03-16T16:33:22Z #8 8.035 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-03-16T16:33:22Z #8 8.037 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-03-16T16:33:22Z #8 8.039 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-03-16T16:33:22Z #8 8.042 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-03-16T16:33:22Z #8 8.044 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-03-16T16:33:22Z #8 8.047 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-03-16T16:33:22Z #8 8.051 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-03-16T16:33:22Z #8 8.053 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-03-16T16:33:22Z #8 8.056 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-03-16T16:33:22Z #8 8.058 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-03-16T16:33:22Z #8 8.076 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-03-16T16:33:22Z #8 8.080 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-03-16T16:33:22Z #8 8.083 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-03-16T16:33:22Z #8 8.093 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-03-16T16:33:22Z #8 8.109 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-03-16T16:33:22Z #8 8.111 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-03-16T16:33:22Z #8 8.113 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-03-16T16:33:22Z #8 8.118 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-03-16T16:33:22Z #8 8.121 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-03-16T16:33:22Z #8 8.123 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-03-16T16:33:22Z #8 8.124 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-03-16T16:33:22Z #8 8.128 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-03-16T16:33:22Z #8 8.130 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-03-16T16:33:22Z #8 8.132 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-03-16T16:33:22Z #8 8.134 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-03-16T16:33:22Z #8 8.137 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-03-16T16:33:22Z #8 8.139 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-03-16T16:33:22Z #8 8.147 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-03-16T16:33:22Z #8 8.149 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-03-16T16:33:22Z #8 8.153 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-03-16T16:33:22Z #8 8.154 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-03-16T16:33:22Z #8 8.156 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-03-16T16:33:22Z #8 8.157 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-03-16T16:33:22Z #8 8.159 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-03-16T16:33:22Z #8 8.160 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-03-16T16:33:22Z #8 8.162 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-03-16T16:33:22Z #8 8.186 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-03-16T16:33:22Z #8 8.199 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-03-16T16:33:22Z #8 8.201 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-03-16T16:33:22Z #8 8.203 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-03-16T16:33:22Z #8 8.215 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-03-16T16:33:22Z #8 8.217 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-03-16T16:33:22Z #8 8.219 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-03-16T16:33:22Z #8 8.330 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-03-16T16:33:22Z #8 8.369 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-03-16T16:33:22Z #8 8.374 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.8.0esr-1~deb11u1 [63.7 MB] +2024-03-16T16:33:24Z #8 9.834 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-03-16T16:33:24Z #8 9.836 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-03-16T16:33:24Z #8 9.838 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-03-16T16:33:24Z #8 9.840 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-03-16T16:33:24Z #8 9.849 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-03-16T16:33:24Z #8 9.852 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-03-16T16:33:24Z #8 9.891 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-03-16T16:33:24Z #8 9.902 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-03-16T16:33:24Z #8 9.934 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-03-16T16:33:24Z #8 9.946 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-03-16T16:33:24Z #8 9.951 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-03-16T16:33:24Z #8 9.983 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-03-16T16:33:24Z #8 10.37 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-03-16T16:33:24Z #8 10.37 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-03-16T16:33:24Z #8 10.38 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-03-16T16:33:24Z #8 10.38 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-03-16T16:33:24Z #8 10.38 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-03-16T16:33:24Z #8 10.39 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-03-16T16:33:24Z #8 10.39 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-03-16T16:33:24Z #8 10.40 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-03-16T16:33:24Z #8 10.40 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-03-16T16:33:24Z #8 10.42 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-03-16T16:33:24Z #8 10.46 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-03-16T16:33:25Z #8 10.53 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-03-16T16:33:25Z #8 10.53 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-03-16T16:33:25Z #8 10.53 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-03-16T16:33:25Z #8 10.53 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-03-16T16:33:25Z #8 10.54 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-03-16T16:33:25Z #8 10.55 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-03-16T16:33:25Z #8 10.73 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-03-16T16:33:25Z #8 10.73 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-03-16T16:33:25Z #8 10.74 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-03-16T16:33:25Z #8 10.76 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-03-16T16:33:25Z #8 10.76 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-03-16T16:33:25Z #8 10.77 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-03-16T16:33:25Z #8 10.79 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-03-16T16:33:25Z #8 10.80 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-03-16T16:33:25Z #8 10.80 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-03-16T16:33:25Z #8 10.80 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-03-16T16:33:25Z #8 10.81 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-03-16T16:33:25Z #8 10.81 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-03-16T16:33:25Z #8 10.81 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-03-16T16:33:25Z #8 10.81 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-03-16T16:33:25Z #8 10.82 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-03-16T16:33:25Z #8 10.82 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-03-16T16:33:25Z #8 10.82 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-03-16T16:33:25Z #8 10.83 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-03-16T16:33:25Z #8 10.83 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-03-16T16:33:25Z #8 10.84 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-03-16T16:33:25Z #8 10.85 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-03-16T16:33:25Z #8 10.85 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-03-16T16:33:25Z #8 10.88 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-03-16T16:33:25Z #8 10.88 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-03-16T16:33:25Z #8 10.88 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-03-16T16:33:25Z #8 10.89 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-03-16T16:33:25Z #8 11.00 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] +2024-03-16T16:33:25Z #8 11.01 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-03-16T16:33:25Z #8 11.01 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-03-16T16:33:25Z #8 11.02 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] +2024-03-16T16:33:25Z #8 11.02 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-03-16T16:33:25Z #8 11.04 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-03-16T16:33:25Z #8 11.04 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-03-16T16:33:25Z #8 11.05 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-03-16T16:33:25Z #8 11.05 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] +2024-03-16T16:33:25Z #8 11.09 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-03-16T16:33:25Z #8 11.09 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-03-16T16:33:25Z #8 11.09 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-03-16T16:33:25Z #8 11.12 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-03-16T16:33:25Z #8 11.12 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-03-16T16:33:25Z #8 11.13 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-03-16T16:33:25Z #8 11.13 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-03-16T16:33:25Z #8 11.14 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-03-16T16:33:25Z #8 11.31 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-03-16T16:33:26Z #8 11.71 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-03-16T16:33:26Z #8 11.72 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-03-16T16:33:26Z #8 11.72 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-03-16T16:33:26Z #8 11.73 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-03-16T16:33:26Z #8 12.01 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-03-16T16:33:26Z #8 12.02 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-03-16T16:33:26Z #8 12.02 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-03-16T16:33:26Z #8 12.02 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-03-16T16:33:26Z #8 12.02 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-03-16T16:33:26Z #8 12.03 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-03-16T16:33:26Z #8 12.03 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-03-16T16:33:26Z #8 12.03 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-03-16T16:33:26Z #8 12.03 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-03-16T16:33:26Z #8 12.04 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-03-16T16:33:26Z #8 12.04 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-03-16T16:33:26Z #8 12.05 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-03-16T16:33:26Z #8 12.05 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-03-16T16:33:26Z #8 12.05 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-03-16T16:33:26Z #8 12.06 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-03-16T16:33:26Z #8 12.06 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-03-16T16:33:26Z #8 12.06 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-03-16T16:33:26Z #8 12.06 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-03-16T16:33:26Z #8 12.06 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-03-16T16:33:26Z #8 12.07 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-03-16T16:33:26Z #8 12.07 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-03-16T16:33:26Z #8 12.07 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-03-16T16:33:26Z #8 12.07 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-03-16T16:33:26Z #8 12.08 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-03-16T16:33:26Z #8 12.08 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-03-16T16:33:26Z #8 12.08 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-03-16T16:33:26Z #8 12.11 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-03-16T16:33:26Z #8 12.18 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-03-16T16:33:26Z #8 12.21 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-03-16T16:33:26Z #8 12.29 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-03-16T16:33:26Z #8 12.30 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-03-16T16:33:26Z #8 12.30 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-03-16T16:33:26Z #8 12.30 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-03-16T16:33:26Z #8 12.30 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-03-16T16:33:27Z #8 12.59 debconf: delaying package configuration, since apt-utils is not installed +2024-03-16T16:33:27Z #8 12.65 Fetched 236 MB in 5s (43.3 MB/s) +2024-03-16T16:33:27Z #8 12.69 Selecting previously unselected package libapparmor1:amd64. +2024-03-16T16:33:27Z #8 12.69 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-03-16T16:33:27Z #8 12.72 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-03-16T16:33:27Z #8 12.73 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-03-16T16:33:27Z #8 12.79 Selecting previously unselected package libcap2:amd64. +2024-03-16T16:33:27Z #8 12.80 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-03-16T16:33:27Z #8 12.80 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-03-16T16:33:27Z #8 12.86 Selecting previously unselected package libargon2-1:amd64. +2024-03-16T16:33:27Z #8 12.86 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-03-16T16:33:27Z #8 12.87 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-03-16T16:33:27Z #8 12.91 Selecting previously unselected package dmsetup. +2024-03-16T16:33:27Z #8 12.92 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-03-16T16:33:27Z #8 12.92 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-03-16T16:33:27Z #8 12.98 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-03-16T16:33:27Z #8 12.99 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-03-16T16:33:27Z #8 12.99 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-03-16T16:33:27Z #8 13.06 Selecting previously unselected package libjson-c5:amd64. +2024-03-16T16:33:27Z #8 13.07 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-03-16T16:33:27Z #8 13.07 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-03-16T16:33:27Z #8 13.13 Selecting previously unselected package libcryptsetup12:amd64. +2024-03-16T16:33:27Z #8 13.14 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-03-16T16:33:27Z #8 13.14 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-03-16T16:33:27Z #8 13.24 Selecting previously unselected package libip4tc2:amd64. +2024-03-16T16:33:27Z #8 13.24 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-03-16T16:33:27Z #8 13.25 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-03-16T16:33:27Z #8 13.30 Selecting previously unselected package libkmod2:amd64. +2024-03-16T16:33:27Z #8 13.30 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-03-16T16:33:27Z #8 13.31 Unpacking libkmod2:amd64 (28-1) ... +2024-03-16T16:33:27Z #8 13.42 Selecting previously unselected package systemd. +2024-03-16T16:33:27Z #8 13.43 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-16T16:33:27Z #8 13.49 Unpacking systemd (247.3-7+deb11u4) ... +2024-03-16T16:33:29Z #8 14.50 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-03-16T16:33:29Z #8 14.52 Setting up libcap2:amd64 (1:2.44-1) ... +2024-03-16T16:33:29Z #8 14.53 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-03-16T16:33:29Z #8 14.55 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-03-16T16:33:29Z #8 14.56 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-03-16T16:33:29Z #8 14.57 Setting up libkmod2:amd64 (28-1) ... +2024-03-16T16:33:29Z #8 14.59 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-03-16T16:33:29Z #8 14.61 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-03-16T16:33:29Z #8 14.63 Setting up systemd (247.3-7+deb11u4) ... +2024-03-16T16:33:29Z #8 14.69 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-03-16T16:33:29Z #8 14.70 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-03-16T16:33:29Z #8 14.70 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-03-16T16:33:29Z #8 14.73 Initializing machine ID from KVM UUID. +2024-03-16T16:33:29Z #8 15.24 Setting up dmsetup (2:1.02.175-2.1) ... +2024-03-16T16:33:29Z #8 15.34 Selecting previously unselected package systemd-sysv. +2024-03-16T16:33:29Z #8 15.34 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-03-16T16:33:29Z #8 15.36 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-03-16T16:33:29Z #8 15.37 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-03-16T16:33:29Z #8 15.43 Selecting previously unselected package libdbus-1-3:amd64. +2024-03-16T16:33:29Z #8 15.44 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-03-16T16:33:29Z #8 15.45 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-03-16T16:33:30Z #8 15.55 Selecting previously unselected package dbus. +2024-03-16T16:33:30Z #8 15.56 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-03-16T16:33:30Z #8 15.58 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-03-16T16:33:30Z #8 15.67 Selecting previously unselected package libnss-systemd:amd64. +2024-03-16T16:33:30Z #8 15.68 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-16T16:33:30Z #8 15.68 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-16T16:33:30Z #8 15.75 Selecting previously unselected package libpam-systemd:amd64. +2024-03-16T16:33:30Z #8 15.75 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-16T16:33:30Z #8 15.76 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-16T16:33:30Z #8 15.83 Selecting previously unselected package manpages. +2024-03-16T16:33:30Z #8 15.83 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-03-16T16:33:30Z #8 15.84 Unpacking manpages (5.10-1) ... +2024-03-16T16:33:30Z #8 16.08 Selecting previously unselected package systemd-timesyncd. +2024-03-16T16:33:30Z #8 16.08 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-03-16T16:33:30Z #8 16.09 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-03-16T16:33:30Z #8 16.16 Selecting previously unselected package hicolor-icon-theme. +2024-03-16T16:33:30Z #8 16.17 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-03-16T16:33:30Z #8 16.18 Unpacking hicolor-icon-theme (0.17-2) ... +2024-03-16T16:33:30Z #8 16.30 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-03-16T16:33:30Z #8 16.30 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-03-16T16:33:30Z #8 16.31 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-03-16T16:33:30Z #8 16.46 Selecting previously unselected package libicu67:amd64. +2024-03-16T16:33:30Z #8 16.46 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-03-16T16:33:30Z #8 16.47 Unpacking libicu67:amd64 (67.1-7) ... +2024-03-16T16:33:32Z #8 18.14 Selecting previously unselected package libxml2:amd64. +2024-03-16T16:33:32Z #8 18.14 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-03-16T16:33:32Z #8 18.15 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-03-16T16:33:32Z #8 18.32 Selecting previously unselected package shared-mime-info. +2024-03-16T16:33:32Z #8 18.32 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-03-16T16:33:32Z #8 18.32 Unpacking shared-mime-info (2.0-1) ... +2024-03-16T16:33:32Z #8 18.50 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-03-16T16:33:32Z #8 18.51 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-03-16T16:33:32Z #8 18.51 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-03-16T16:33:33Z #8 18.58 Selecting previously unselected package libpng16-16:amd64. +2024-03-16T16:33:33Z #8 18.59 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-03-16T16:33:33Z #8 18.59 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-03-16T16:33:33Z #8 18.67 Selecting previously unselected package libdeflate0:amd64. +2024-03-16T16:33:33Z #8 18.68 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-03-16T16:33:33Z #8 18.68 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-03-16T16:33:33Z #8 18.74 Selecting previously unselected package libjbig0:amd64. +2024-03-16T16:33:33Z #8 18.74 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-03-16T16:33:33Z #8 18.75 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-03-16T16:33:33Z #8 18.80 Selecting previously unselected package libwebp6:amd64. +2024-03-16T16:33:33Z #8 18.81 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-03-16T16:33:33Z #8 18.81 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-16T16:33:33Z #8 18.90 Selecting previously unselected package libtiff5:amd64. +2024-03-16T16:33:33Z #8 18.90 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-03-16T16:33:33Z #8 18.92 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-03-16T16:33:33Z #8 19.03 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-03-16T16:33:33Z #8 19.04 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-03-16T16:33:33Z #8 19.05 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-16T16:33:33Z #8 19.12 Selecting previously unselected package gtk-update-icon-cache. +2024-03-16T16:33:33Z #8 19.13 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-03-16T16:33:33Z #8 19.13 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-03-16T16:33:33Z #8 19.26 Selecting previously unselected package adwaita-icon-theme. +2024-03-16T16:33:33Z #8 19.26 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-03-16T16:33:33Z #8 19.27 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-03-16T16:33:36Z #8 22.09 Selecting previously unselected package alsa-topology-conf. +2024-03-16T16:33:36Z #8 22.09 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-03-16T16:33:36Z #8 22.10 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-03-16T16:33:36Z #8 22.14 Selecting previously unselected package libasound2-data. +2024-03-16T16:33:36Z #8 22.14 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-03-16T16:33:36Z #8 22.15 Unpacking libasound2-data (1.2.4-1.1) ... +2024-03-16T16:33:36Z #8 22.23 Selecting previously unselected package libasound2:amd64. +2024-03-16T16:33:36Z #8 22.23 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-03-16T16:33:36Z #8 22.24 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-03-16T16:33:36Z #8 22.36 Selecting previously unselected package alsa-ucm-conf. +2024-03-16T16:33:36Z #8 22.37 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-03-16T16:33:36Z #8 22.38 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-03-16T16:33:36Z #8 22.48 Selecting previously unselected package libatspi2.0-0:amd64. +2024-03-16T16:33:36Z #8 22.49 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-03-16T16:33:36Z #8 22.49 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-03-16T16:33:36Z #8 22.57 Selecting previously unselected package libxi6:amd64. +2024-03-16T16:33:36Z #8 22.58 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-03-16T16:33:37Z #8 22.58 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-03-16T16:33:37Z #8 22.65 Selecting previously unselected package libxtst6:amd64. +2024-03-16T16:33:37Z #8 22.65 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-03-16T16:33:37Z #8 22.66 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-03-16T16:33:37Z #8 22.71 Selecting previously unselected package at-spi2-core. +2024-03-16T16:33:37Z #8 22.71 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-03-16T16:33:37Z #8 22.72 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-03-16T16:33:37Z #8 22.79 Selecting previously unselected package binutils-common:amd64. +2024-03-16T16:33:37Z #8 22.80 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-03-16T16:33:37Z #8 22.80 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-03-16T16:33:37Z #8 23.23 Selecting previously unselected package libbinutils:amd64. +2024-03-16T16:33:37Z #8 23.24 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-03-16T16:33:37Z #8 23.24 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-03-16T16:33:37Z #8 23.40 Selecting previously unselected package libctf-nobfd0:amd64. +2024-03-16T16:33:37Z #8 23.40 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-03-16T16:33:37Z #8 23.40 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-03-16T16:33:37Z #8 23.46 Selecting previously unselected package libctf0:amd64. +2024-03-16T16:33:38Z #8 23.46 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-03-16T16:33:38Z #8 23.47 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-03-16T16:33:38Z #8 23.51 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-03-16T16:33:38Z #8 23.51 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-03-16T16:33:38Z #8 23.52 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-03-16T16:33:38Z #8 23.95 Selecting previously unselected package binutils. +2024-03-16T16:33:38Z #8 23.95 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-03-16T16:33:38Z #8 23.96 Unpacking binutils (2.35.2-2) ... +2024-03-16T16:33:38Z #8 24.02 Selecting previously unselected package libisl23:amd64. +2024-03-16T16:33:38Z #8 24.02 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-03-16T16:33:38Z #8 24.03 Unpacking libisl23:amd64 (0.23-1) ... +2024-03-16T16:33:38Z #8 24.20 Selecting previously unselected package libmpfr6:amd64. +2024-03-16T16:33:38Z #8 24.20 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-03-16T16:33:38Z #8 24.20 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-03-16T16:33:38Z #8 24.43 Selecting previously unselected package libmpc3:amd64. +2024-03-16T16:33:38Z #8 24.43 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-03-16T16:33:38Z #8 24.43 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-03-16T16:33:38Z #8 24.49 Selecting previously unselected package cpp-10. +2024-03-16T16:33:38Z #8 24.49 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-03-16T16:33:38Z #8 24.49 Unpacking cpp-10 (10.2.1-6) ... +2024-03-16T16:33:40Z #8 26.02 Selecting previously unselected package cpp. +2024-03-16T16:33:40Z #8 26.02 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-03-16T16:33:40Z #8 26.03 Unpacking cpp (4:10.2.1-1) ... +2024-03-16T16:33:40Z #8 26.06 Selecting previously unselected package dbus-user-session. +2024-03-16T16:33:40Z #8 26.07 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-03-16T16:33:40Z #8 26.07 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-03-16T16:33:40Z #8 26.12 Selecting previously unselected package libdconf1:amd64. +2024-03-16T16:33:40Z #8 26.13 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-03-16T16:33:40Z #8 26.13 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-03-16T16:33:40Z #8 26.17 Selecting previously unselected package dconf-service. +2024-03-16T16:33:40Z #8 26.17 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-03-16T16:33:40Z #8 26.18 Unpacking dconf-service (0.38.0-2) ... +2024-03-16T16:33:40Z #8 26.22 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-03-16T16:33:40Z #8 26.23 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-03-16T16:33:40Z #8 26.23 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-03-16T16:33:40Z #8 26.27 Selecting previously unselected package libatk1.0-data. +2024-03-16T16:33:40Z #8 26.28 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-03-16T16:33:40Z #8 26.28 Unpacking libatk1.0-data (2.36.0-2) ... +2024-03-16T16:33:40Z #8 26.37 Selecting previously unselected package libatk1.0-0:amd64. +2024-03-16T16:33:40Z #8 26.38 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-03-16T16:33:40Z #8 26.38 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-03-16T16:33:40Z #8 26.43 Selecting previously unselected package libfreetype6:amd64. +2024-03-16T16:33:40Z #8 26.44 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-03-16T16:33:40Z #8 26.44 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-03-16T16:33:41Z #8 26.55 Selecting previously unselected package fonts-dejavu-core. +2024-03-16T16:33:41Z #8 26.56 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-03-16T16:33:41Z #8 26.56 Unpacking fonts-dejavu-core (2.37-2) ... +2024-03-16T16:33:41Z #8 26.81 Selecting previously unselected package fontconfig-config. +2024-03-16T16:33:41Z #8 26.82 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-03-16T16:33:41Z #8 26.98 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-03-16T16:33:41Z #8 27.06 Selecting previously unselected package libfontconfig1:amd64. +2024-03-16T16:33:41Z #8 27.06 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-03-16T16:33:41Z #8 27.06 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-03-16T16:33:41Z #8 27.14 Selecting previously unselected package libpixman-1-0:amd64. +2024-03-16T16:33:41Z #8 27.14 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-03-16T16:33:41Z #8 27.15 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-03-16T16:33:41Z #8 27.24 Selecting previously unselected package libxcb-render0:amd64. +2024-03-16T16:33:41Z #8 27.25 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-03-16T16:33:41Z #8 27.25 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-03-16T16:33:41Z #8 27.31 Selecting previously unselected package libxcb-shm0:amd64. +2024-03-16T16:33:41Z #8 27.32 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-03-16T16:33:41Z #8 27.32 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-03-16T16:33:41Z #8 27.38 Selecting previously unselected package libcairo2:amd64. +2024-03-16T16:33:41Z #8 27.38 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-03-16T16:33:41Z #8 27.38 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-03-16T16:33:42Z #8 27.54 Selecting previously unselected package libcairo-gobject2:amd64. +2024-03-16T16:33:42Z #8 27.54 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-03-16T16:33:42Z #8 27.55 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-03-16T16:33:42Z #8 27.61 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-03-16T16:33:42Z #8 27.62 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-03-16T16:33:42Z #8 27.62 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-03-16T16:33:42Z #8 27.67 Selecting previously unselected package libevent-2.1-7:amd64. +2024-03-16T16:33:42Z #8 27.68 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-03-16T16:33:42Z #8 27.68 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-03-16T16:33:42Z #8 27.75 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-03-16T16:33:42Z #8 27.75 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-03-16T16:33:42Z #8 27.75 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-03-16T16:33:42Z #8 27.80 Selecting previously unselected package liblcms2-2:amd64. +2024-03-16T16:33:42Z #8 27.81 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-03-16T16:33:42Z #8 27.82 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-03-16T16:33:42Z #8 27.88 Selecting previously unselected package libcolord2:amd64. +2024-03-16T16:33:42Z #8 27.89 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-03-16T16:33:42Z #8 27.89 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-03-16T16:33:42Z #8 27.96 Selecting previously unselected package libavahi-common-data:amd64. +2024-03-16T16:33:42Z #8 27.96 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-03-16T16:33:42Z #8 27.97 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-03-16T16:33:42Z #8 28.04 Selecting previously unselected package libavahi-common3:amd64. +2024-03-16T16:33:42Z #8 28.04 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-03-16T16:33:42Z #8 28.05 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-03-16T16:33:42Z #8 28.10 Selecting previously unselected package libavahi-client3:amd64. +2024-03-16T16:33:42Z #8 28.11 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-03-16T16:33:42Z #8 28.11 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-03-16T16:33:42Z #8 28.17 Selecting previously unselected package libcups2:amd64. +2024-03-16T16:33:42Z #8 28.17 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-03-16T16:33:42Z #8 28.18 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-03-16T16:33:42Z #8 28.32 Selecting previously unselected package libepoxy0:amd64. +2024-03-16T16:33:42Z #8 28.32 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-03-16T16:33:42Z #8 28.33 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-03-16T16:33:42Z #8 28.42 Selecting previously unselected package libfribidi0:amd64. +2024-03-16T16:33:42Z #8 28.42 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-03-16T16:33:42Z #8 28.43 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-03-16T16:33:42Z #8 28.49 Selecting previously unselected package libgraphite2-3:amd64. +2024-03-16T16:33:42Z #8 28.49 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-03-16T16:33:42Z #8 28.49 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-03-16T16:33:43Z #8 28.55 Selecting previously unselected package libharfbuzz0b:amd64. +2024-03-16T16:33:43Z #8 28.56 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-03-16T16:33:43Z #8 28.57 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-03-16T16:33:43Z #8 28.68 Selecting previously unselected package libjson-glib-1.0-common. +2024-03-16T16:33:43Z #8 28.68 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-03-16T16:33:43Z #8 28.69 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-03-16T16:33:43Z #8 28.75 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-03-16T16:33:43Z #8 28.76 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-03-16T16:33:43Z #8 28.76 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-03-16T16:33:43Z #8 28.81 Selecting previously unselected package fontconfig. +2024-03-16T16:33:43Z #8 28.82 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-03-16T16:33:43Z #8 28.83 Unpacking fontconfig (2.13.1-4.2) ... +2024-03-16T16:33:43Z #8 28.90 Selecting previously unselected package libthai-data. +2024-03-16T16:33:43Z #8 28.90 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-03-16T16:33:43Z #8 28.91 Unpacking libthai-data (0.1.28-3) ... +2024-03-16T16:33:43Z #8 28.99 Selecting previously unselected package libdatrie1:amd64. +2024-03-16T16:33:43Z #8 29.00 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-03-16T16:33:43Z #8 29.01 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-03-16T16:33:43Z #8 29.07 Selecting previously unselected package libthai0:amd64. +2024-03-16T16:33:43Z #8 29.08 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-03-16T16:33:43Z #8 29.09 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-03-16T16:33:43Z #8 29.14 Selecting previously unselected package libpango-1.0-0:amd64. +2024-03-16T16:33:43Z #8 29.14 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-03-16T16:33:43Z #8 29.15 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-03-16T16:33:43Z #8 29.23 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-03-16T16:33:43Z #8 29.24 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-03-16T16:33:43Z #8 29.24 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-03-16T16:33:43Z #8 29.30 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-03-16T16:33:43Z #8 29.30 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-03-16T16:33:43Z #8 29.31 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-03-16T16:33:43Z #8 29.35 Selecting previously unselected package libproxy1v5:amd64. +2024-03-16T16:33:43Z #8 29.36 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-03-16T16:33:43Z #8 29.37 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-03-16T16:33:43Z #8 29.41 Selecting previously unselected package glib-networking-common. +2024-03-16T16:33:43Z #8 29.41 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-03-16T16:33:43Z #8 29.42 Unpacking glib-networking-common (2.66.0-2) ... +2024-03-16T16:33:44Z #8 29.47 Selecting previously unselected package glib-networking-services. +2024-03-16T16:33:44Z #8 29.48 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-03-16T16:33:44Z #8 29.48 Unpacking glib-networking-services (2.66.0-2) ... +2024-03-16T16:33:44Z #8 29.52 Selecting previously unselected package gsettings-desktop-schemas. +2024-03-16T16:33:44Z #8 29.53 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-03-16T16:33:44Z #8 29.53 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-03-16T16:33:44Z #8 29.72 Selecting previously unselected package glib-networking:amd64. +2024-03-16T16:33:44Z #8 29.72 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-03-16T16:33:44Z #8 29.73 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-03-16T16:33:44Z #8 29.79 Selecting previously unselected package libsoup2.4-1:amd64. +2024-03-16T16:33:44Z #8 29.79 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-03-16T16:33:44Z #8 29.79 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-03-16T16:33:44Z #8 29.92 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-03-16T16:33:44Z #8 29.92 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-03-16T16:33:44Z #8 29.93 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-03-16T16:33:44Z #8 29.98 Selecting previously unselected package librest-0.7-0:amd64. +2024-03-16T16:33:44Z #8 29.99 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-03-16T16:33:44Z #8 29.99 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-03-16T16:33:44Z #8 30.05 Selecting previously unselected package libwayland-client0:amd64. +2024-03-16T16:33:44Z #8 30.05 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-03-16T16:33:44Z #8 30.06 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-03-16T16:33:44Z #8 30.10 Selecting previously unselected package libwayland-cursor0:amd64. +2024-03-16T16:33:44Z #8 30.11 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-03-16T16:33:44Z #8 30.12 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-03-16T16:33:44Z #8 30.16 Selecting previously unselected package libwayland-egl1:amd64. +2024-03-16T16:33:44Z #8 30.17 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-03-16T16:33:44Z #8 30.17 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-03-16T16:33:44Z #8 30.22 Selecting previously unselected package libxcomposite1:amd64. +2024-03-16T16:33:44Z #8 30.23 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-03-16T16:33:44Z #8 30.23 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-03-16T16:33:44Z #8 30.28 Selecting previously unselected package libxfixes3:amd64. +2024-03-16T16:33:44Z #8 30.28 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-03-16T16:33:44Z #8 30.29 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-03-16T16:33:44Z #8 30.33 Selecting previously unselected package libxcursor1:amd64. +2024-03-16T16:33:44Z #8 30.34 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-03-16T16:33:44Z #8 30.35 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-03-16T16:33:44Z #8 30.40 Selecting previously unselected package libxdamage1:amd64. +2024-03-16T16:33:44Z #8 30.40 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-03-16T16:33:44Z #8 30.41 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-03-16T16:33:45Z #8 30.45 Selecting previously unselected package libxinerama1:amd64. +2024-03-16T16:33:45Z #8 30.46 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-03-16T16:33:45Z #8 30.47 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-03-16T16:33:45Z #8 30.51 Selecting previously unselected package xkb-data. +2024-03-16T16:33:45Z #8 30.52 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-03-16T16:33:45Z #8 30.52 Unpacking xkb-data (2.29-2) ... +2024-03-16T16:33:45Z #8 30.78 Selecting previously unselected package libxkbcommon0:amd64. +2024-03-16T16:33:45Z #8 30.78 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-03-16T16:33:45Z #8 30.79 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-03-16T16:33:45Z #8 30.86 Selecting previously unselected package libxrandr2:amd64. +2024-03-16T16:33:45Z #8 30.87 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-03-16T16:33:45Z #8 30.87 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-03-16T16:33:45Z #8 30.91 Selecting previously unselected package libgtk-3-common. +2024-03-16T16:33:45Z #8 30.91 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-03-16T16:33:45Z #8 30.92 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-03-16T16:33:46Z #8 31.73 Selecting previously unselected package libgtk-3-0:amd64. +2024-03-16T16:33:46Z #8 31.74 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-03-16T16:33:46Z #8 31.74 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-03-16T16:33:46Z #8 32.29 Selecting previously unselected package libx11-xcb1:amd64. +2024-03-16T16:33:46Z #8 32.29 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-03-16T16:33:46Z #8 32.30 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-03-16T16:33:46Z #8 32.35 Selecting previously unselected package firefox-esr. +2024-03-16T16:33:46Z #8 32.35 Preparing to unpack .../099-firefox-esr_115.8.0esr-1~deb11u1_amd64.deb ... +2024-03-16T16:33:46Z #8 32.37 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-03-16T16:33:46Z #8 32.38 Unpacking firefox-esr (115.8.0esr-1~deb11u1) ... +2024-03-16T16:33:58Z #8 43.58 Selecting previously unselected package fonts-humor-sans. +2024-03-16T16:33:58Z #8 43.58 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-03-16T16:33:58Z #8 43.59 Unpacking fonts-humor-sans (1.0-4) ... +2024-03-16T16:33:58Z #8 43.63 Selecting previously unselected package libcc1-0:amd64. +2024-03-16T16:33:58Z #8 43.63 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-03-16T16:33:58Z #8 43.64 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-03-16T16:33:58Z #8 43.69 Selecting previously unselected package libgomp1:amd64. +2024-03-16T16:33:58Z #8 43.70 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-03-16T16:33:58Z #8 43.70 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-03-16T16:33:58Z #8 43.75 Selecting previously unselected package libitm1:amd64. +2024-03-16T16:33:58Z #8 43.75 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-03-16T16:33:58Z #8 43.76 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-03-16T16:33:58Z #8 43.80 Selecting previously unselected package libatomic1:amd64. +2024-03-16T16:33:58Z #8 43.80 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-03-16T16:33:58Z #8 43.81 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-03-16T16:33:58Z #8 43.85 Selecting previously unselected package libasan6:amd64. +2024-03-16T16:33:58Z #8 43.85 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-03-16T16:33:58Z #8 43.86 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-03-16T16:33:58Z #8 44.31 Selecting previously unselected package liblsan0:amd64. +2024-03-16T16:33:58Z #8 44.32 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-03-16T16:33:58Z #8 44.32 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-03-16T16:33:59Z #8 44.52 Selecting previously unselected package libtsan0:amd64. +2024-03-16T16:33:59Z #8 44.53 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-03-16T16:33:59Z #8 44.53 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-03-16T16:33:59Z #8 45.01 Selecting previously unselected package libubsan1:amd64. +2024-03-16T16:33:59Z #8 45.02 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-03-16T16:33:59Z #8 45.03 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-03-16T16:33:59Z #8 45.21 Selecting previously unselected package libquadmath0:amd64. +2024-03-16T16:33:59Z #8 45.21 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-03-16T16:33:59Z #8 45.22 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-03-16T16:33:59Z #8 45.28 Selecting previously unselected package libgcc-10-dev:amd64. +2024-03-16T16:33:59Z #8 45.29 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-03-16T16:33:59Z #8 45.29 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-03-16T16:34:00Z #8 45.75 Selecting previously unselected package gcc-10. +2024-03-16T16:34:00Z #8 45.76 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-03-16T16:34:00Z #8 45.76 Unpacking gcc-10 (10.2.1-6) ... +2024-03-16T16:34:03Z #8 48.76 Selecting previously unselected package gcc. +2024-03-16T16:34:03Z #8 48.76 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-03-16T16:34:03Z #8 48.76 Unpacking gcc (4:10.2.1-1) ... +2024-03-16T16:34:03Z #8 48.81 Selecting previously unselected package libva2:amd64. +2024-03-16T16:34:03Z #8 48.81 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-03-16T16:34:03Z #8 48.82 Unpacking libva2:amd64 (2.10.0-1) ... +2024-03-16T16:34:03Z #8 48.87 Selecting previously unselected package libdrm-common. +2024-03-16T16:34:03Z #8 48.88 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-03-16T16:34:03Z #8 48.88 Unpacking libdrm-common (2.4.104-1) ... +2024-03-16T16:34:03Z #8 48.93 Selecting previously unselected package libdrm2:amd64. +2024-03-16T16:34:03Z #8 48.93 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-03-16T16:34:03Z #8 48.94 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-03-16T16:34:03Z #8 48.99 Selecting previously unselected package libpciaccess0:amd64. +2024-03-16T16:34:03Z #8 49.00 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-03-16T16:34:03Z #8 49.00 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-03-16T16:34:03Z #8 49.05 Selecting previously unselected package libdrm-intel1:amd64. +2024-03-16T16:34:03Z #8 49.06 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-03-16T16:34:03Z #8 49.07 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-03-16T16:34:03Z #8 49.12 Selecting previously unselected package i965-va-driver:amd64. +2024-03-16T16:34:03Z #8 49.13 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-03-16T16:34:03Z #8 49.13 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-03-16T16:34:03Z #8 49.24 Selecting previously unselected package libigdgmm11:amd64. +2024-03-16T16:34:03Z #8 49.25 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-03-16T16:34:03Z #8 49.25 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-03-16T16:34:03Z #8 49.32 Selecting previously unselected package intel-media-va-driver:amd64. +2024-03-16T16:34:03Z #8 49.32 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-03-16T16:34:03Z #8 49.33 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-03-16T16:34:04Z #8 49.71 Selecting previously unselected package libaom0:amd64. +2024-03-16T16:34:04Z #8 49.72 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-03-16T16:34:04Z #8 49.72 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-03-16T16:34:04Z #8 49.97 Selecting previously unselected package libmfx1:amd64. +2024-03-16T16:34:04Z #8 49.98 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-03-16T16:34:04Z #8 49.98 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-03-16T16:34:05Z #8 50.79 Selecting previously unselected package libva-drm2:amd64. +2024-03-16T16:34:05Z #8 50.79 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-03-16T16:34:05Z #8 50.79 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-03-16T16:34:05Z #8 50.84 Selecting previously unselected package libva-x11-2:amd64. +2024-03-16T16:34:05Z #8 50.85 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-03-16T16:34:05Z #8 50.86 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-03-16T16:34:05Z #8 50.90 Selecting previously unselected package libvdpau1:amd64. +2024-03-16T16:34:05Z #8 50.91 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-03-16T16:34:05Z #8 50.91 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-03-16T16:34:05Z #8 50.96 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-03-16T16:34:05Z #8 50.96 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-03-16T16:34:05Z #8 50.97 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-03-16T16:34:05Z #8 51.02 Selecting previously unselected package libavutil56:amd64. +2024-03-16T16:34:05Z #8 51.02 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-16T16:34:05Z #8 51.02 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-16T16:34:05Z #8 51.13 Selecting previously unselected package libcodec2-0.9:amd64. +2024-03-16T16:34:05Z #8 51.13 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-03-16T16:34:05Z #8 51.14 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-03-16T16:34:06Z #8 52.40 Selecting previously unselected package libdav1d4:amd64. +2024-03-16T16:34:06Z #8 52.41 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-03-16T16:34:06Z #8 52.41 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-03-16T16:34:06Z #8 52.51 Selecting previously unselected package libgsm1:amd64. +2024-03-16T16:34:06Z #8 52.51 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-03-16T16:34:07Z #8 52.52 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-03-16T16:34:07Z #8 52.56 Selecting previously unselected package libmp3lame0:amd64. +2024-03-16T16:34:07Z #8 52.57 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-03-16T16:34:07Z #8 52.57 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-03-16T16:34:07Z #8 52.65 Selecting previously unselected package libopenjp2-7:amd64. +2024-03-16T16:34:07Z #8 52.66 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-03-16T16:34:07Z #8 52.66 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-03-16T16:34:07Z #8 52.73 Selecting previously unselected package libopus0:amd64. +2024-03-16T16:34:07Z #8 52.74 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-03-16T16:34:07Z #8 52.74 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-03-16T16:34:07Z #8 52.81 Selecting previously unselected package librsvg2-2:amd64. +2024-03-16T16:34:07Z #8 52.81 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-03-16T16:34:07Z #8 52.82 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-16T16:34:07Z #8 53.28 Selecting previously unselected package libshine3:amd64. +2024-03-16T16:34:07Z #8 53.28 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-03-16T16:34:07Z #8 53.29 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-03-16T16:34:07Z #8 53.34 Selecting previously unselected package libsnappy1v5:amd64. +2024-03-16T16:34:07Z #8 53.34 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-03-16T16:34:07Z #8 53.34 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-03-16T16:34:07Z #8 53.38 Selecting previously unselected package libspeex1:amd64. +2024-03-16T16:34:07Z #8 53.39 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-03-16T16:34:07Z #8 53.39 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-03-16T16:34:07Z #8 53.44 Selecting previously unselected package libsoxr0:amd64. +2024-03-16T16:34:07Z #8 53.44 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-03-16T16:34:07Z #8 53.44 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-03-16T16:34:07Z #8 53.50 Selecting previously unselected package libswresample3:amd64. +2024-03-16T16:34:08Z #8 53.50 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-16T16:34:08Z #8 53.51 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-16T16:34:08Z #8 53.57 Selecting previously unselected package libogg0:amd64. +2024-03-16T16:34:08Z #8 53.57 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-03-16T16:34:08Z #8 53.58 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-03-16T16:34:08Z #8 53.62 Selecting previously unselected package libtheora0:amd64. +2024-03-16T16:34:08Z #8 53.63 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-03-16T16:34:08Z #8 53.63 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-03-16T16:34:08Z #8 53.72 Selecting previously unselected package libtwolame0:amd64. +2024-03-16T16:34:08Z #8 53.72 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-03-16T16:34:08Z #8 53.73 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-03-16T16:34:08Z #8 53.78 Selecting previously unselected package libvorbis0a:amd64. +2024-03-16T16:34:08Z #8 53.78 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-03-16T16:34:08Z #8 53.79 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-03-16T16:34:08Z #8 53.84 Selecting previously unselected package libvorbisenc2:amd64. +2024-03-16T16:34:08Z #8 53.85 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-03-16T16:34:08Z #8 53.86 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-03-16T16:34:08Z #8 53.91 Selecting previously unselected package libvpx6:amd64. +2024-03-16T16:34:08Z #8 53.92 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-03-16T16:34:08Z #8 53.93 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-03-16T16:34:08Z #8 54.11 Selecting previously unselected package libwavpack1:amd64. +2024-03-16T16:34:08Z #8 54.12 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-03-16T16:34:08Z #8 54.12 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-03-16T16:34:08Z #8 54.18 Selecting previously unselected package libwebpmux3:amd64. +2024-03-16T16:34:08Z #8 54.19 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-03-16T16:34:08Z #8 54.19 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-16T16:34:08Z #8 54.25 Selecting previously unselected package libx264-160:amd64. +2024-03-16T16:34:08Z #8 54.26 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-03-16T16:34:08Z #8 54.26 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-03-16T16:34:08Z #8 54.41 Selecting previously unselected package libnuma1:amd64. +2024-03-16T16:34:08Z #8 54.42 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-03-16T16:34:08Z #8 54.42 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-03-16T16:34:09Z #8 54.52 Selecting previously unselected package libx265-192:amd64. +2024-03-16T16:34:09Z #8 54.52 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-03-16T16:34:09Z #8 54.53 Unpacking libx265-192:amd64 (3.4-2) ... +2024-03-16T16:34:09Z #8 54.91 Selecting previously unselected package libxvidcore4:amd64. +2024-03-16T16:34:09Z #8 54.91 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-03-16T16:34:09Z #8 54.92 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-03-16T16:34:09Z #8 54.98 Selecting previously unselected package libzvbi-common. +2024-03-16T16:34:09Z #8 54.98 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-03-16T16:34:09Z #8 54.99 Unpacking libzvbi-common (0.2.35-18) ... +2024-03-16T16:34:09Z #8 55.04 Selecting previously unselected package libzvbi0:amd64. +2024-03-16T16:34:09Z #8 55.04 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-03-16T16:34:09Z #8 55.05 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-03-16T16:34:09Z #8 55.12 Selecting previously unselected package libavcodec58:amd64. +2024-03-16T16:34:09Z #8 55.13 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-16T16:34:09Z #8 55.13 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-16T16:34:10Z #8 55.97 Selecting previously unselected package libc-dev-bin. +2024-03-16T16:34:10Z #8 55.97 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... +2024-03-16T16:34:10Z #8 55.97 Unpacking libc-dev-bin (2.31-13+deb11u8) ... +2024-03-16T16:34:10Z #8 56.03 Selecting previously unselected package libxpm4:amd64. +2024-03-16T16:34:10Z #8 56.03 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-03-16T16:34:10Z #8 56.03 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-03-16T16:34:10Z #8 56.08 Selecting previously unselected package libgd3:amd64. +2024-03-16T16:34:10Z #8 56.09 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-03-16T16:34:10Z #8 56.10 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-03-16T16:34:10Z #8 56.16 Selecting previously unselected package libc-devtools. +2024-03-16T16:34:10Z #8 56.16 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... +2024-03-16T16:34:10Z #8 56.17 Unpacking libc-devtools (2.31-13+deb11u8) ... +2024-03-16T16:34:10Z #8 56.23 Selecting previously unselected package linux-libc-dev:amd64. +2024-03-16T16:34:10Z #8 56.24 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-03-16T16:34:10Z #8 56.24 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-03-16T16:34:11Z #8 56.59 Selecting previously unselected package libcrypt-dev:amd64. +2024-03-16T16:34:11Z #8 56.60 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-03-16T16:34:11Z #8 56.60 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-03-16T16:34:11Z #8 56.65 Selecting previously unselected package libtirpc-dev:amd64. +2024-03-16T16:34:11Z #8 56.66 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-03-16T16:34:11Z #8 56.66 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-03-16T16:34:11Z #8 56.73 Selecting previously unselected package libnsl-dev:amd64. +2024-03-16T16:34:11Z #8 56.73 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-03-16T16:34:11Z #8 56.74 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-03-16T16:34:11Z #8 56.82 Selecting previously unselected package libc6-dev:amd64. +2024-03-16T16:34:11Z #8 56.83 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... +2024-03-16T16:34:11Z #8 56.83 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-03-16T16:34:11Z #8 57.38 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-03-16T16:34:11Z #8 57.38 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-03-16T16:34:11Z #8 57.39 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-03-16T16:34:11Z #8 57.43 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-03-16T16:34:11Z #8 57.43 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-03-16T16:34:11Z #8 57.44 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-03-16T16:34:12Z #8 57.52 Selecting previously unselected package libdrm-radeon1:amd64. +2024-03-16T16:34:12Z #8 57.53 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-03-16T16:34:12Z #8 57.53 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-03-16T16:34:12Z #8 57.58 Selecting previously unselected package libelf1:amd64. +2024-03-16T16:34:12Z #8 57.58 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-03-16T16:34:12Z #8 57.59 Unpacking libelf1:amd64 (0.183-1) ... +2024-03-16T16:34:12Z #8 57.65 Selecting previously unselected package libfontenc1:amd64. +2024-03-16T16:34:12Z #8 57.66 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-03-16T16:34:12Z #8 57.66 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-03-16T16:34:12Z #8 57.71 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-03-16T16:34:12Z #8 57.71 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-03-16T16:34:12Z #8 57.72 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-03-16T16:34:12Z #8 57.76 Selecting previously unselected package libglapi-mesa:amd64. +2024-03-16T16:34:12Z #8 57.77 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-03-16T16:34:12Z #8 57.77 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-03-16T16:34:12Z #8 57.82 Selecting previously unselected package libz3-4:amd64. +2024-03-16T16:34:12Z #8 57.83 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-03-16T16:34:12Z #8 57.83 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-03-16T16:34:13Z #8 58.95 Selecting previously unselected package libllvm11:amd64. +2024-03-16T16:34:13Z #8 58.95 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-03-16T16:34:13Z #8 58.95 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-03-16T16:34:16Z #8 61.94 Selecting previously unselected package libsensors-config. +2024-03-16T16:34:16Z #8 61.94 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-03-16T16:34:16Z #8 61.95 Unpacking libsensors-config (1:3.6.0-7) ... +2024-03-16T16:34:16Z #8 61.99 Selecting previously unselected package libsensors5:amd64. +2024-03-16T16:34:16Z #8 61.99 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-03-16T16:34:16Z #8 62.03 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-03-16T16:34:16Z #8 62.07 Selecting previously unselected package libvulkan1:amd64. +2024-03-16T16:34:16Z #8 62.08 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-03-16T16:34:16Z #8 62.08 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-03-16T16:34:16Z #8 62.14 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-03-16T16:34:16Z #8 62.14 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-03-16T16:34:16Z #8 62.16 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-03-16T16:34:18Z #8 63.64 Selecting previously unselected package libglvnd0:amd64. +2024-03-16T16:34:18Z #8 63.64 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-03-16T16:34:18Z #8 63.65 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-03-16T16:34:18Z #8 63.70 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-03-16T16:34:18Z #8 63.71 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-03-16T16:34:18Z #8 63.71 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-03-16T16:34:18Z #8 63.77 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-03-16T16:34:18Z #8 63.77 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-03-16T16:34:18Z #8 63.78 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-03-16T16:34:18Z #8 63.83 Selecting previously unselected package libxcb-glx0:amd64. +2024-03-16T16:34:18Z #8 63.83 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-03-16T16:34:18Z #8 63.84 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-03-16T16:34:18Z #8 63.89 Selecting previously unselected package libxcb-present0:amd64. +2024-03-16T16:34:18Z #8 63.89 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-03-16T16:34:18Z #8 63.90 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-03-16T16:34:18Z #8 63.95 Selecting previously unselected package libxcb-sync1:amd64. +2024-03-16T16:34:18Z #8 63.95 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-03-16T16:34:18Z #8 63.96 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-03-16T16:34:18Z #8 64.01 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-03-16T16:34:18Z #8 64.01 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-03-16T16:34:18Z #8 64.02 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-03-16T16:34:18Z #8 64.07 Selecting previously unselected package libxshmfence1:amd64. +2024-03-16T16:34:18Z #8 64.07 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-03-16T16:34:18Z #8 64.08 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-03-16T16:34:18Z #8 64.11 Selecting previously unselected package libxxf86vm1:amd64. +2024-03-16T16:34:18Z #8 64.12 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-03-16T16:34:18Z #8 64.12 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-03-16T16:34:18Z #8 64.16 Selecting previously unselected package libglx-mesa0:amd64. +2024-03-16T16:34:18Z #8 64.16 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-03-16T16:34:18Z #8 64.17 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-03-16T16:34:18Z #8 64.23 Selecting previously unselected package libgtk-3-bin. +2024-03-16T16:34:18Z #8 64.23 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-03-16T16:34:18Z #8 64.24 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-03-16T16:34:18Z #8 64.29 Selecting previously unselected package librsvg2-common:amd64. +2024-03-16T16:34:18Z #8 64.29 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-03-16T16:34:18Z #8 64.30 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-16T16:34:18Z #8 64.34 Selecting previously unselected package libglx0:amd64. +2024-03-16T16:34:18Z #8 64.35 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-03-16T16:34:18Z #8 64.35 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-03-16T16:34:18Z #8 64.40 Selecting previously unselected package libgl1:amd64. +2024-03-16T16:34:18Z #8 64.41 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-03-16T16:34:18Z #8 64.41 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-03-16T16:34:19Z #8 64.46 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-03-16T16:34:19Z #8 64.47 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-03-16T16:34:19Z #8 64.47 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-03-16T16:34:19Z #8 64.53 Selecting previously unselected package libxt6:amd64. +2024-03-16T16:34:19Z #8 64.53 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-03-16T16:34:19Z #8 64.53 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-03-16T16:34:19Z #8 64.60 Selecting previously unselected package libxmu6:amd64. +2024-03-16T16:34:19Z #8 64.60 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-03-16T16:34:19Z #8 64.61 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-03-16T16:34:19Z #8 64.65 Selecting previously unselected package libxaw7:amd64. +2024-03-16T16:34:19Z #8 64.66 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-03-16T16:34:19Z #8 64.66 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-03-16T16:34:19Z #8 64.73 Selecting previously unselected package libxcb-randr0:amd64. +2024-03-16T16:34:19Z #8 64.74 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-03-16T16:34:19Z #8 64.74 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-03-16T16:34:19Z #8 64.79 Selecting previously unselected package libxcb-shape0:amd64. +2024-03-16T16:34:19Z #8 64.80 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-03-16T16:34:19Z #8 64.80 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-03-16T16:34:19Z #8 64.85 Selecting previously unselected package libxft2:amd64. +2024-03-16T16:34:19Z #8 64.86 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-03-16T16:34:19Z #8 64.86 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-03-16T16:34:19Z #8 64.90 Selecting previously unselected package libxkbfile1:amd64. +2024-03-16T16:34:19Z #8 64.91 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-03-16T16:34:19Z #8 64.93 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-03-16T16:34:19Z #8 64.99 Selecting previously unselected package libxmuu1:amd64. +2024-03-16T16:34:19Z #8 64.99 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-03-16T16:34:19Z #8 65.00 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-03-16T16:34:19Z #8 65.04 Selecting previously unselected package libxv1:amd64. +2024-03-16T16:34:19Z #8 65.04 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-03-16T16:34:19Z #8 65.05 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-03-16T16:34:19Z #8 65.08 Selecting previously unselected package libxxf86dga1:amd64. +2024-03-16T16:34:19Z #8 65.09 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-03-16T16:34:19Z #8 65.09 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-03-16T16:34:19Z #8 65.13 Selecting previously unselected package manpages-dev. +2024-03-16T16:34:19Z #8 65.14 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-03-16T16:34:19Z #8 65.14 Unpacking manpages-dev (5.10-1) ... +2024-03-16T16:34:20Z #8 65.55 Selecting previously unselected package mesa-va-drivers:amd64. +2024-03-16T16:34:20Z #8 65.55 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-03-16T16:34:20Z #8 65.55 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-03-16T16:34:20Z #8 66.01 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-03-16T16:34:20Z #8 66.01 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-03-16T16:34:20Z #8 66.03 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-03-16T16:34:21Z #8 66.52 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-03-16T16:34:21Z #8 66.52 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-03-16T16:34:21Z #8 66.53 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-03-16T16:34:21Z #8 67.23 Selecting previously unselected package patch. +2024-03-16T16:34:21Z #8 67.24 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-03-16T16:34:21Z #8 67.24 Unpacking patch (2.7.6-7) ... +2024-03-16T16:34:21Z #8 67.31 Selecting previously unselected package unzip. +2024-03-16T16:34:21Z #8 67.31 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-03-16T16:34:21Z #8 67.32 Unpacking unzip (6.0-26+deb11u1) ... +2024-03-16T16:34:21Z #8 67.37 Selecting previously unselected package va-driver-all:amd64. +2024-03-16T16:34:21Z #8 67.38 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-03-16T16:34:21Z #8 67.38 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-03-16T16:34:21Z #8 67.42 Selecting previously unselected package vdpau-driver-all:amd64. +2024-03-16T16:34:21Z #8 67.42 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-03-16T16:34:21Z #8 67.43 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-03-16T16:34:21Z #8 67.47 Selecting previously unselected package x11-utils. +2024-03-16T16:34:21Z #8 67.47 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-03-16T16:34:21Z #8 67.47 Unpacking x11-utils (7.7+5) ... +2024-03-16T16:34:22Z #8 67.64 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-03-16T16:34:22Z #8 67.65 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-03-16T16:34:22Z #8 67.67 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-03-16T16:34:22Z #8 67.69 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-03-16T16:34:22Z #8 67.70 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-03-16T16:34:22Z #8 67.71 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-03-16T16:34:22Z #8 67.73 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-03-16T16:34:22Z #8 67.74 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-03-16T16:34:22Z #8 67.76 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-03-16T16:34:22Z #8 67.77 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-03-16T16:34:22Z #8 67.78 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-03-16T16:34:22Z #8 67.80 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-03-16T16:34:22Z #8 67.81 Setting up libshine3:amd64 (3.1.1-2) ... +2024-03-16T16:34:22Z #8 67.82 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-03-16T16:34:22Z #8 67.83 Setting up hicolor-icon-theme (0.17-2) ... +2024-03-16T16:34:22Z #8 67.86 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-03-16T16:34:22Z #8 67.87 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-03-16T16:34:22Z #8 67.89 Setting up libicu67:amd64 (67.1-7) ... +2024-03-16T16:34:22Z #8 67.90 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-03-16T16:34:22Z #8 67.91 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-03-16T16:34:22Z #8 67.92 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-03-16T16:34:22Z #8 67.93 Setting up manpages (5.10-1) ... +2024-03-16T16:34:22Z #8 67.95 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-03-16T16:34:22Z #8 67.96 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-03-16T16:34:22Z #8 67.97 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-03-16T16:34:22Z #8 67.98 Setting up unzip (6.0-26+deb11u1) ... +2024-03-16T16:34:22Z #8 68.00 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-03-16T16:34:22Z #8 68.01 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-03-16T16:34:22Z #8 68.02 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-03-16T16:34:22Z #8 68.03 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-03-16T16:34:22Z #8 68.05 Setting up libsensors-config (1:3.6.0-7) ... +2024-03-16T16:34:22Z #8 68.07 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-03-16T16:34:22Z #8 68.08 Setting up libdeflate0:amd64 (1.7-1) ... +2024-03-16T16:34:22Z #8 68.09 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-03-16T16:34:22Z #8 68.11 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-03-16T16:34:22Z #8 68.12 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-16T16:34:22Z #8 68.13 First installation detected... +2024-03-16T16:34:22Z #8 68.13 Checking NSS setup... +2024-03-16T16:34:22Z #8 68.13 Setting up xkb-data (2.29-2) ... +2024-03-16T16:34:22Z #8 68.15 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-03-16T16:34:22Z #8 68.16 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-03-16T16:34:22Z #8 68.17 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-03-16T16:34:22Z #8 68.18 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-03-16T16:34:22Z #8 68.19 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-03-16T16:34:22Z #8 68.20 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-03-16T16:34:22Z #8 68.22 Setting up libasan6:amd64 (10.2.1-6) ... +2024-03-16T16:34:22Z #8 68.23 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-03-16T16:34:22Z #8 68.24 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-03-16T16:34:22Z #8 68.25 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-03-16T16:34:22Z #8 68.26 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-03-16T16:34:22Z #8 68.28 Setting up libasound2-data (1.2.4-1.1) ... +2024-03-16T16:34:22Z #8 68.29 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-03-16T16:34:22Z #8 68.30 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-03-16T16:34:22Z #8 68.32 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-03-16T16:34:22Z #8 68.33 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-03-16T16:34:22Z #8 68.34 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-03-16T16:34:22Z #8 68.36 Setting up libva2:amd64 (2.10.0-1) ... +2024-03-16T16:34:22Z #8 68.37 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-03-16T16:34:22Z #8 68.38 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-03-16T16:34:22Z #8 68.39 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-03-16T16:34:22Z #8 68.40 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-03-16T16:34:22Z #8 68.42 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-03-16T16:34:22Z #8 68.43 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-03-16T16:34:23Z #8 69.16 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-03-16T16:34:24Z #8 69.91 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-03-16T16:34:25Z #8 70.71 Setting up dbus (1.12.28-0+deb11u1) ... +2024-03-16T16:34:25Z #8 70.97 invoke-rc.d: could not determine current runlevel +2024-03-16T16:34:25Z #8 70.97 invoke-rc.d: policy-rc.d denied execution of start. +2024-03-16T16:34:25Z #8 70.98 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-03-16T16:34:25Z #8 70.99 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-03-16T16:34:25Z #8 71.00 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-03-16T16:34:25Z #8 71.01 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-03-16T16:34:25Z #8 71.02 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-03-16T16:34:25Z #8 71.03 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-03-16T16:34:25Z #8 71.05 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-03-16T16:34:25Z #8 71.06 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-03-16T16:34:25Z #8 71.07 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-03-16T16:34:25Z #8 71.41 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-03-16T16:34:25Z #8 71.41 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-03-16T16:34:25Z #8 71.42 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-03-16T16:34:25Z #8 71.43 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-03-16T16:34:25Z #8 71.44 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-03-16T16:34:25Z #8 71.45 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-03-16T16:34:25Z #8 71.46 Setting up patch (2.7.6-7) ... +2024-03-16T16:34:26Z #8 71.47 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-16T16:34:26Z #8 71.49 Setting up fonts-dejavu-core (2.37-2) ... +2024-03-16T16:34:26Z #8 71.62 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-03-16T16:34:26Z #8 71.63 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-03-16T16:34:26Z #8 71.64 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-03-16T16:34:26Z #8 71.66 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-03-16T16:34:26Z #8 71.67 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-03-16T16:34:26Z #8 71.68 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-03-16T16:34:26Z #8 71.69 Setting up libatk1.0-data (2.36.0-2) ... +2024-03-16T16:34:26Z #8 71.70 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-03-16T16:34:26Z #8 71.71 Setting up alsa-topology-conf (1.2.4-1) ... +2024-03-16T16:34:26Z #8 71.73 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-03-16T16:34:26Z #8 71.74 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-03-16T16:34:26Z #8 71.75 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-03-16T16:34:26Z #8 71.76 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-03-16T16:34:26Z #8 71.78 Setting up libvdpau1:amd64 (1.4-3) ... +2024-03-16T16:34:26Z #8 71.79 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-03-16T16:34:26Z #8 71.80 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-03-16T16:34:26Z #8 71.81 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-03-16T16:34:26Z #8 71.83 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-03-16T16:34:26Z #8 71.84 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-16T16:34:26Z #8 72.09 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-03-16T16:34:26Z #8 72.10 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-03-16T16:34:26Z #8 72.11 Setting up libthai-data (0.1.28-3) ... +2024-03-16T16:34:26Z #8 72.13 Setting up fonts-humor-sans (1.0-4) ... +2024-03-16T16:34:26Z #8 72.14 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-03-16T16:34:26Z #8 72.15 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-03-16T16:34:26Z #8 72.16 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-03-16T16:34:26Z #8 72.17 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-03-16T16:34:26Z #8 72.18 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-03-16T16:34:26Z #8 72.20 Setting up glib-networking-common (2.66.0-2) ... +2024-03-16T16:34:26Z #8 72.21 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-03-16T16:34:26Z #8 72.22 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-03-16T16:34:26Z #8 72.23 Setting up libisl23:amd64 (0.23-1) ... +2024-03-16T16:34:26Z #8 72.24 Setting up libc-dev-bin (2.31-13+deb11u8) ... +2024-03-16T16:34:26Z #8 72.26 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-16T16:34:26Z #8 72.27 Setting up libdrm-common (2.4.104-1) ... +2024-03-16T16:34:26Z #8 72.28 Setting up libelf1:amd64 (0.183-1) ... +2024-03-16T16:34:26Z #8 72.30 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-03-16T16:34:26Z #8 72.32 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-03-16T16:34:26Z #8 72.33 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-03-16T16:34:26Z #8 72.34 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-03-16T16:34:26Z #8 72.35 Setting up libzvbi-common (0.2.35-18) ... +2024-03-16T16:34:26Z #8 72.37 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-03-16T16:34:26Z #8 72.38 Setting up cpp-10 (10.2.1-6) ... +2024-03-16T16:34:26Z #8 72.39 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-03-16T16:34:26Z #8 72.40 Setting up libitm1:amd64 (10.2.1-6) ... +2024-03-16T16:34:26Z #8 72.41 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-03-16T16:34:26Z #8 72.43 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-03-16T16:34:26Z #8 72.44 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-03-16T16:34:26Z #8 72.45 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-03-16T16:34:26Z #8 72.46 Setting up libctf0:amd64 (2.35.2-2) ... +2024-03-16T16:34:26Z #8 72.47 Setting up glib-networking-services (2.66.0-2) ... +2024-03-16T16:34:26Z #8 72.48 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-03-16T16:34:26Z #8 72.49 Setting up manpages-dev (5.10-1) ... +2024-03-16T16:34:27Z #8 72.50 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-03-16T16:34:27Z #8 72.52 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-03-16T16:34:27Z #8 72.53 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-03-16T16:34:27Z #8 72.54 Setting up fontconfig-config (2.13.1-4.2) ... +2024-03-16T16:34:27Z #8 72.90 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-03-16T16:34:27Z #8 72.91 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-03-16T16:34:27Z #8 72.93 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-03-16T16:34:27Z #8 72.94 Setting up libx265-192:amd64 (3.4-2) ... +2024-03-16T16:34:27Z #8 72.95 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-03-16T16:34:27Z #8 72.96 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-03-16T16:34:27Z #8 72.98 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-03-16T16:34:27Z #8 72.99 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-03-16T16:34:27Z #8 73.00 Setting up libthai0:amd64 (0.1.28-3) ... +2024-03-16T16:34:27Z #8 73.01 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-03-16T16:34:27Z #8 73.03 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-03-16T16:34:27Z #8 73.05 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-03-16T16:34:27Z #8 73.06 Setting up shared-mime-info (2.0-1) ... +2024-03-16T16:34:30Z #8 75.63 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-03-16T16:34:30Z #8 75.65 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-03-16T16:34:30Z #8 75.66 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-03-16T16:34:30Z #8 75.68 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-03-16T16:34:30Z #8 75.69 Setting up cpp (4:10.2.1-1) ... +2024-03-16T16:34:30Z #8 75.71 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-03-16T16:34:30Z #8 75.73 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-03-16T16:34:30Z #8 75.74 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-16T16:34:30Z #8 75.78 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-03-16T16:34:30Z #8 76.30 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-03-16T16:34:31Z #8 77.10 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-03-16T16:34:31Z #8 77.22 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-03-16T16:34:31Z #8 77.23 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-03-16T16:34:31Z #8 77.24 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-03-16T16:34:31Z #8 77.25 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-03-16T16:34:31Z #8 77.26 Setting up fontconfig (2.13.1-4.2) ... +2024-03-16T16:34:33Z #8 77.27 Regenerating fonts cache... done. +2024-03-16T16:34:33Z #8 79.30 Setting up libxft2:amd64 (2.3.2-2) ... +2024-03-16T16:34:33Z #8 79.31 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-03-16T16:34:33Z #8 79.32 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-03-16T16:34:33Z #8 79.34 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-03-16T16:34:33Z #8 79.35 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-03-16T16:34:33Z #8 79.36 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-03-16T16:34:33Z #8 79.38 Setting up dconf-service (0.38.0-2) ... +2024-03-16T16:34:33Z #8 79.40 Setting up binutils (2.35.2-2) ... +2024-03-16T16:34:33Z #8 79.42 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-03-16T16:34:33Z #8 79.43 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-16T16:34:33Z #8 79.44 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-03-16T16:34:34Z #8 79.53 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-03-16T16:34:34Z #8 79.54 Setting up libgd3:amd64 (2.3.0-2) ... +2024-03-16T16:34:34Z #8 79.55 Setting up gcc-10 (10.2.1-6) ... +2024-03-16T16:34:34Z #8 79.57 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-03-16T16:34:34Z #8 79.58 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-03-16T16:34:34Z #8 79.60 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-03-16T16:34:34Z #8 79.61 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-03-16T16:34:34Z #8 79.63 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-03-16T16:34:34Z #8 79.64 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-03-16T16:34:34Z #8 79.66 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-03-16T16:34:34Z #8 79.67 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-03-16T16:34:34Z #8 79.69 Setting up libc-devtools (2.31-13+deb11u8) ... +2024-03-16T16:34:34Z #8 79.70 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-03-16T16:34:34Z #8 79.72 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-03-16T16:34:34Z #8 79.73 Setting up libglx0:amd64 (1.3.2-1) ... +2024-03-16T16:34:34Z #8 79.74 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-03-16T16:34:34Z #8 79.76 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-16T16:34:34Z #8 79.77 Setting up gcc (4:10.2.1-1) ... +2024-03-16T16:34:34Z #8 79.80 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-16T16:34:34Z #8 79.81 Setting up libgl1:amd64 (1.3.2-1) ... +2024-03-16T16:34:34Z #8 79.82 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-03-16T16:34:34Z #8 79.83 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-16T16:34:34Z #8 79.86 Setting up x11-utils (7.7+5) ... +2024-03-16T16:34:34Z #8 79.91 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-16T16:34:34Z #8 79.92 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-03-16T16:34:34Z #8 79.94 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-03-16T16:34:34Z #8 79.96 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-03-16T16:34:34Z #8 79.98 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-03-16T16:34:34Z #8 80.00 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-03-16T16:34:34Z #8 80.04 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-03-16T16:34:34Z #8 80.08 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-03-16T16:34:34Z #8 80.10 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-03-16T16:34:34Z #8 80.12 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-03-16T16:34:34Z #8 80.13 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-03-16T16:34:34Z #8 80.15 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-03-16T16:34:34Z #8 80.18 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-03-16T16:34:34Z #8 80.20 Setting up firefox-esr (115.8.0esr-1~deb11u1) ... +2024-03-16T16:34:34Z #8 80.21 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-03-16T16:34:34Z #8 80.21 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-03-16T16:34:34Z #8 80.22 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-03-16T16:34:34Z #8 80.22 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-03-16T16:34:34Z #8 80.23 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-16T16:34:34Z #8 80.26 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-03-16T16:34:39Z #8 DONE 85.2s +2024-03-16T16:34:39Z +2024-03-16T16:34:39Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-03-16T16:35:21Z #9 DONE 42.2s +2024-03-16T16:35:21Z +2024-03-16T16:35:21Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-03-16T16:35:21Z #6 ... +2024-03-16T16:35:21Z +2024-03-16T16:35:21Z #10 [ 5/10] COPY environment.yml /environment.yml +2024-03-16T16:35:21Z #10 DONE 0.0s +2024-03-16T16:35:21Z +2024-03-16T16:35:21Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-03-16T16:37:51Z #11 149.4 Transaction +2024-03-16T16:37:51Z #11 149.4 +2024-03-16T16:37:51Z #11 149.4 Prefix: /opt/conda/envs/birdy +2024-03-16T16:37:51Z #11 149.4 +2024-03-16T16:37:51Z #11 149.4 Updating specs: +2024-03-16T16:37:51Z #11 149.4 +2024-03-16T16:37:51Z #11 149.4 - xclim +2024-03-16T16:37:51Z #11 149.4 - ravenpy +2024-03-16T16:37:51Z #11 149.4 - python=3.10 +2024-03-16T16:37:51Z #11 149.4 +2024-03-16T16:37:51Z #11 149.4 +2024-03-16T16:37:51Z #11 149.5 Package Version Build Channel Size +2024-03-16T16:37:51Z #11 149.5 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-16T16:37:51Z #11 149.5 Install: +2024-03-16T16:37:51Z #11 149.5 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-16T16:37:51Z #11 149.5 +2024-03-16T16:37:51Z #11 149.5 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-03-16T16:37:51Z #11 149.5 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-03-16T16:37:51Z #11 149.5 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-03-16T16:37:51Z #11 149.5 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-03-16T16:37:51Z #11 149.5 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + fonts-conda-forge 1 0 conda-forge 4kB +2024-03-16T16:37:51Z #11 149.5 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-03-16T16:37:51Z #11 149.5 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-03-16T16:37:51Z #11 149.5 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + python_abi 3.10 4_cp310 conda-forge 6kB +2024-03-16T16:37:51Z #11 149.5 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB +2024-03-16T16:37:51Z #11 149.5 + ca-certificates 2024.2.2 hbcca054_0 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + libboost-headers 1.84.0 ha770c72_1 conda-forge 14MB +2024-03-16T16:37:51Z #11 149.5 + mpi 1.0 openmpi conda-forge 4kB +2024-03-16T16:37:51Z #11 149.5 + libgomp 13.2.0 h807b86a_5 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-03-16T16:37:51Z #11 149.5 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + lzo 2.10 h516909a_1000 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-03-16T16:37:51Z #11 149.5 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-03-16T16:37:51Z #11 149.5 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-03-16T16:37:51Z #11 149.5 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-03-16T16:37:51Z #11 149.5 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-03-16T16:37:51Z #11 149.5 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-03-16T16:37:51Z #11 149.5 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-03-16T16:37:51Z #11 149.5 + libev 4.33 hd590300_2 conda-forge 113kB +2024-03-16T16:37:51Z #11 149.5 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-03-16T16:37:51Z #11 149.5 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-03-16T16:37:51Z #11 149.5 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-03-16T16:37:51Z #11 149.5 + aws-c-common 0.9.14 hd590300_0 conda-forge 226kB +2024-03-16T16:37:51Z #11 149.5 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB +2024-03-16T16:37:51Z #11 149.5 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB +2024-03-16T16:37:51Z #11 149.5 + libaec 1.1.2 h59595ed_1 conda-forge 35kB +2024-03-16T16:37:51Z #11 149.5 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-03-16T16:37:51Z #11 149.5 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-03-16T16:37:51Z #11 149.5 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-03-16T16:37:51Z #11 149.5 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-03-16T16:37:51Z #11 149.5 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB +2024-03-16T16:37:51Z #11 149.5 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-03-16T16:37:51Z #11 149.5 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-03-16T16:37:51Z #11 149.5 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-03-16T16:37:51Z #11 149.5 + ncurses 6.4 h59595ed_2 conda-forge 884kB +2024-03-16T16:37:51Z #11 149.5 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-03-16T16:37:51Z #11 149.5 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-03-16T16:37:51Z #11 149.5 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-03-16T16:37:51Z #11 149.5 + c-ares 1.27.0 hd590300_0 conda-forge 164kB +2024-03-16T16:37:51Z #11 149.5 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-03-16T16:37:51Z #11 149.5 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-03-16T16:37:51Z #11 149.5 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB +2024-03-16T16:37:51Z #11 149.5 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-03-16T16:37:51Z #11 149.5 + snappy 1.1.10 h9fff704_0 conda-forge 39kB +2024-03-16T16:37:51Z #11 149.5 + icu 73.2 h59595ed_0 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB +2024-03-16T16:37:51Z #11 149.5 + libdeflate 1.19 hd590300_0 conda-forge 67kB +2024-03-16T16:37:51Z #11 149.5 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-03-16T16:37:51Z #11 149.5 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-03-16T16:37:51Z #11 149.5 + openssl 3.2.1 hd590300_0 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB +2024-03-16T16:37:51Z #11 149.5 + libnsl 2.0.1 hd590300_0 conda-forge 33kB +2024-03-16T16:37:51Z #11 149.5 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-03-16T16:37:51Z #11 149.5 + rdma-core 50.0 hd3aeb46_1 conda-forge 5MB +2024-03-16T16:37:51Z #11 149.5 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-03-16T16:37:51Z #11 149.5 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-03-16T16:37:51Z #11 149.5 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-03-16T16:37:51Z #11 149.5 + aws-c-compression 0.2.18 h4466546_2 conda-forge 19kB +2024-03-16T16:37:51Z #11 149.5 + aws-checksums 0.1.18 h4466546_2 conda-forge 50kB +2024-03-16T16:37:51Z #11 149.5 + aws-c-sdkutils 0.1.15 h4466546_2 conda-forge 55kB +2024-03-16T16:37:51Z #11 149.5 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB +2024-03-16T16:37:51Z #11 149.5 + expat 2.6.2 h59595ed_0 conda-forge 138kB +2024-03-16T16:37:51Z #11 149.5 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-03-16T16:37:51Z #11 149.5 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-03-16T16:37:51Z #11 149.5 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-03-16T16:37:51Z #11 149.5 + readline 8.2 h8228510_1 conda-forge 281kB +2024-03-16T16:37:51Z #11 149.5 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB +2024-03-16T16:37:51Z #11 149.5 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-03-16T16:37:51Z #11 149.5 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-03-16T16:37:51Z #11 149.5 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-03-16T16:37:51Z #11 149.5 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB +2024-03-16T16:37:51Z #11 149.5 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB +2024-03-16T16:37:51Z #11 149.5 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB +2024-03-16T16:37:51Z #11 149.5 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2024-03-16T16:37:51Z #11 149.5 + pcre2 10.43 hcad00b1_0 conda-forge 951kB +2024-03-16T16:37:51Z #11 149.5 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-03-16T16:37:51Z #11 149.5 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-03-16T16:37:51Z #11 149.5 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-03-16T16:37:51Z #11 149.5 + s2n 1.4.7 h06160fa_0 conda-forge 339kB +2024-03-16T16:37:51Z #11 149.5 + aws-c-cal 0.6.10 ha9bf9b1_2 conda-forge 55kB +2024-03-16T16:37:51Z #11 149.5 + libnghttp2 1.58.0 h47da74e_1 conda-forge 632kB +2024-03-16T16:37:51Z #11 149.5 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-03-16T16:37:51Z #11 149.5 + libssh2 1.11.0 h0841786_0 conda-forge 271kB +2024-03-16T16:37:51Z #11 149.5 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-03-16T16:37:51Z #11 149.5 + libxml2 2.12.5 h232c23b_0 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + ucx 1.15.0 h11edf95_7 conda-forge 7MB +2024-03-16T16:37:51Z #11 149.5 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-03-16T16:37:51Z #11 149.5 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-03-16T16:37:51Z #11 149.5 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB +2024-03-16T16:37:51Z #11 149.5 + krb5 1.21.2 h659d440_0 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB +2024-03-16T16:37:51Z #11 149.5 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB +2024-03-16T16:37:51Z #11 149.5 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + python 3.10.13 hd12c33a_1_cpython conda-forge 26MB +2024-03-16T16:37:51Z #11 149.5 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB +2024-03-16T16:37:51Z #11 149.5 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-03-16T16:37:51Z #11 149.5 + libtiff 4.6.0 ha9c0a0a_2 conda-forge 283kB +2024-03-16T16:37:51Z #11 149.5 + orc 2.0.0 h1e5e2c1_0 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB +2024-03-16T16:37:51Z #11 149.5 + libglib 2.80.0 hf2295e7_0 conda-forge 3MB +2024-03-16T16:37:51Z #11 149.5 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-03-16T16:37:51Z #11 149.5 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-03-16T16:37:51Z #11 149.5 + aws-c-io 0.14.6 h6b388c4_1 conda-forge 158kB +2024-03-16T16:37:51Z #11 149.5 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-03-16T16:37:51Z #11 149.5 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-03-16T16:37:51Z #11 149.5 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-03-16T16:37:51Z #11 149.5 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB +2024-03-16T16:37:51Z #11 149.5 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-03-16T16:37:51Z #11 149.5 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-03-16T16:37:51Z #11 149.5 + libcurl 8.6.0 hca28451_0 conda-forge 391kB +2024-03-16T16:37:51Z #11 149.5 + libpq 16.2 h33b98f1_0 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-16T16:37:51Z #11 149.5 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-03-16T16:37:51Z #11 149.5 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-03-16T16:37:51Z #11 149.5 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-03-16T16:37:51Z #11 149.5 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-03-16T16:37:51Z #11 149.5 + aws-c-http 0.8.1 hbfc29b2_7 conda-forge 194kB +2024-03-16T16:37:51Z #11 149.5 + aws-c-event-stream 0.4.2 he635cd5_6 conda-forge 54kB +2024-03-16T16:37:51Z #11 149.5 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB +2024-03-16T16:37:51Z #11 149.5 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB +2024-03-16T16:37:51Z #11 149.5 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + proj 9.3.1 h1d62c97_0 conda-forge 3MB +2024-03-16T16:37:51Z #11 149.5 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB +2024-03-16T16:37:51Z #11 149.5 + postgresql 16.2 h7387d8b_0 conda-forge 5MB +2024-03-16T16:37:51Z #11 149.5 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-16T16:37:51Z #11 149.5 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-16T16:37:51Z #11 149.5 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-03-16T16:37:51Z #11 149.5 + aws-c-mqtt 0.10.3 hffff1cc_2 conda-forge 163kB +2024-03-16T16:37:51Z #11 149.5 + aws-c-auth 0.7.16 haed3651_8 conda-forge 103kB +2024-03-16T16:37:51Z #11 149.5 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB +2024-03-16T16:37:51Z #11 149.5 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-03-16T16:37:51Z #11 149.5 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-03-16T16:37:51Z #11 149.5 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB +2024-03-16T16:37:51Z #11 149.5 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB +2024-03-16T16:37:51Z #11 149.5 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB +2024-03-16T16:37:51Z #11 149.5 + poppler 24.03.0 h590f24d_0 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + aws-c-s3 0.5.2 h4893938_2 conda-forge 105kB +2024-03-16T16:37:51Z #11 149.5 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB +2024-03-16T16:37:51Z #11 149.5 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-03-16T16:37:51Z #11 149.5 + aws-crt-cpp 0.26.3 h137ae52_2 conda-forge 334kB +2024-03-16T16:37:51Z #11 149.5 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB +2024-03-16T16:37:51Z #11 149.5 + aws-sdk-cpp 1.11.267 he0cb598_3 conda-forge 4MB +2024-03-16T16:37:51Z #11 149.5 + tiledb 2.20.1 h99d63bd_4 conda-forge 5MB +2024-03-16T16:37:51Z #11 149.5 + libarrow 15.0.1 h6bfc85a_2_cpu conda-forge 8MB +2024-03-16T16:37:51Z #11 149.5 + libgdal 3.8.4 hab4ef92_3 conda-forge 11MB +2024-03-16T16:37:51Z #11 149.5 + libparquet 15.0.1 h352af49_2_cpu conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + libarrow-gandiva 15.0.1 hb016d2e_2_cpu conda-forge 897kB +2024-03-16T16:37:51Z #11 149.5 + libarrow-flight 15.0.1 hc6145d9_2_cpu conda-forge 505kB +2024-03-16T16:37:51Z #11 149.5 + libarrow-acero 15.0.1 h59595ed_2_cpu conda-forge 598kB +2024-03-16T16:37:51Z #11 149.5 + libarrow-flight-sql 15.0.1 h757c851_2_cpu conda-forge 196kB +2024-03-16T16:37:51Z #11 149.5 + libarrow-dataset 15.0.1 h59595ed_2_cpu conda-forge 585kB +2024-03-16T16:37:51Z #11 149.5 + libarrow-substrait 15.0.1 h757c851_2_cpu conda-forge 521kB +2024-03-16T16:37:51Z #11 149.5 + wheel 0.42.0 pyhd8ed1ab_0 conda-forge 58kB +2024-03-16T16:37:51Z #11 149.5 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB +2024-03-16T16:37:51Z #11 149.5 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + threadpoolctl 3.3.0 pyhc1e730c_0 conda-forge 23kB +2024-03-16T16:37:51Z #11 149.5 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB +2024-03-16T16:37:51Z #11 149.5 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB +2024-03-16T16:37:51Z #11 149.5 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + appdirs 1.4.4 pyh9f0ad1d_0 conda-forge 13kB +2024-03-16T16:37:51Z #11 149.5 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-03-16T16:37:51Z #11 149.5 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB +2024-03-16T16:37:51Z #11 149.5 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-03-16T16:37:51Z #11 149.5 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-03-16T16:37:51Z #11 149.5 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-03-16T16:37:51Z #11 149.5 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-03-16T16:37:51Z #11 149.5 + boltons 23.1.1 pyhd8ed1ab_0 conda-forge 304kB +2024-03-16T16:37:51Z #11 149.5 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-03-16T16:37:51Z #11 149.5 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-03-16T16:37:51Z #11 149.5 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-03-16T16:37:51Z #11 149.5 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-03-16T16:37:51Z #11 149.5 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-03-16T16:37:51Z #11 149.5 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-03-16T16:37:51Z #11 149.5 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-03-16T16:37:51Z #11 149.5 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-03-16T16:37:51Z #11 149.5 + fsspec 2024.2.0 pyhca7485f_0 conda-forge 129kB +2024-03-16T16:37:51Z #11 149.5 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-03-16T16:37:51Z #11 149.5 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-03-16T16:37:51Z #11 149.5 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-03-16T16:37:51Z #11 149.5 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-03-16T16:37:51Z #11 149.5 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB +2024-03-16T16:37:51Z #11 149.5 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB +2024-03-16T16:37:51Z #11 149.5 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-03-16T16:37:51Z #11 149.5 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-03-16T16:37:51Z #11 149.5 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-03-16T16:37:51Z #11 149.5 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB +2024-03-16T16:37:51Z #11 149.5 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB +2024-03-16T16:37:51Z #11 149.5 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-03-16T16:37:51Z #11 149.5 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-03-16T16:37:51Z #11 149.5 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-03-16T16:37:51Z #11 149.5 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-03-16T16:37:51Z #11 149.5 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-03-16T16:37:51Z #11 149.5 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB +2024-03-16T16:37:51Z #11 149.5 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-03-16T16:37:51Z #11 149.5 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-03-16T16:37:51Z #11 149.5 + importlib-metadata 7.0.2 pyha770c72_0 conda-forge 27kB +2024-03-16T16:37:51Z #11 149.5 + pytools 2023.1.1 pyhd8ed1ab_0 conda-forge 71kB +2024-03-16T16:37:51Z #11 149.5 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-03-16T16:37:51Z #11 149.5 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB +2024-03-16T16:37:51Z #11 149.5 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-03-16T16:37:51Z #11 149.5 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-03-16T16:37:51Z #11 149.5 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-03-16T16:37:51Z #11 149.5 + importlib_metadata 7.0.2 hd8ed1ab_0 conda-forge 9kB +2024-03-16T16:37:51Z #11 149.5 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB +2024-03-16T16:37:51Z #11 149.5 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB +2024-03-16T16:37:51Z #11 149.5 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB +2024-03-16T16:37:51Z #11 149.5 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB +2024-03-16T16:37:51Z #11 149.5 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB +2024-03-16T16:37:51Z #11 149.5 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB +2024-03-16T16:37:51Z #11 149.5 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB +2024-03-16T16:37:51Z #11 149.5 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB +2024-03-16T16:37:51Z #11 149.5 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB +2024-03-16T16:37:51Z #11 149.5 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB +2024-03-16T16:37:51Z #11 149.5 + tornado 6.4 py310h2372a71_0 conda-forge 651kB +2024-03-16T16:37:51Z #11 149.5 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB +2024-03-16T16:37:51Z #11 149.5 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB +2024-03-16T16:37:51Z #11 149.5 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB +2024-03-16T16:37:51Z #11 149.5 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB +2024-03-16T16:37:51Z #11 149.5 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB +2024-03-16T16:37:51Z #11 149.5 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB +2024-03-16T16:37:51Z #11 149.5 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB +2024-03-16T16:37:51Z #11 149.5 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB +2024-03-16T16:37:51Z #11 149.5 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB +2024-03-16T16:37:51Z #11 149.5 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + fonttools 4.49.0 py310h2372a71_0 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + pyarrow 15.0.1 py310hf9e7431_2_cpu conda-forge 4MB +2024-03-16T16:37:51Z #11 149.5 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB +2024-03-16T16:37:51Z #11 149.5 + h5py 3.10.0 nompi_py310h65828d5_101 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB +2024-03-16T16:37:51Z #11 149.5 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB +2024-03-16T16:37:51Z #11 149.5 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB +2024-03-16T16:37:51Z #11 149.5 + gdal 3.8.4 py310he073c5f_3 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + numba 0.59.0 py310h7dc5dd1_1 conda-forge 4MB +2024-03-16T16:37:51Z #11 149.5 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB +2024-03-16T16:37:51Z #11 149.5 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB +2024-03-16T16:37:51Z #11 149.5 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB +2024-03-16T16:37:51Z #11 149.5 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB +2024-03-16T16:37:51Z #11 149.5 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB +2024-03-16T16:37:51Z #11 149.5 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB +2024-03-16T16:37:51Z #11 149.5 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB +2024-03-16T16:37:51Z #11 149.5 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-03-16T16:37:51Z #11 149.5 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-03-16T16:37:51Z #11 149.5 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB +2024-03-16T16:37:51Z #11 149.5 + dask-core 2024.3.0 pyhd8ed1ab_0 conda-forge 881kB +2024-03-16T16:37:51Z #11 149.5 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB +2024-03-16T16:37:51Z #11 149.5 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-03-16T16:37:51Z #11 149.5 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-03-16T16:37:51Z #11 149.5 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-03-16T16:37:51Z #11 149.5 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-03-16T16:37:51Z #11 149.5 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-03-16T16:37:51Z #11 149.5 + pydantic 2.6.3 pyhd8ed1ab_0 conda-forge 272kB +2024-03-16T16:37:51Z #11 149.5 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-03-16T16:37:51Z #11 149.5 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB +2024-03-16T16:37:51Z #11 149.5 + xarray 2024.2.0 pyhd8ed1ab_0 conda-forge 742kB +2024-03-16T16:37:51Z #11 149.5 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB +2024-03-16T16:37:51Z #11 149.5 + properscoring 0.1 py_0 conda-forge 22kB +2024-03-16T16:37:51Z #11 149.5 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-03-16T16:37:51Z #11 149.5 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-03-16T16:37:51Z #11 149.5 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-03-16T16:37:51Z #11 149.5 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB +2024-03-16T16:37:51Z #11 149.5 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB +2024-03-16T16:37:51Z #11 149.5 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-03-16T16:37:51Z #11 149.5 + dask-expr 1.0.2 pyhd8ed1ab_0 conda-forge 140kB +2024-03-16T16:37:51Z #11 149.5 + distributed 2024.3.0 pyhd8ed1ab_0 conda-forge 794kB +2024-03-16T16:37:51Z #11 149.5 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-03-16T16:37:51Z #11 149.5 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-03-16T16:37:51Z #11 149.5 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-03-16T16:37:51Z #11 149.5 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-03-16T16:37:51Z #11 149.5 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-03-16T16:37:51Z #11 149.5 + dask 2024.3.0 pyhd8ed1ab_1 conda-forge 7kB +2024-03-16T16:37:51Z #11 149.5 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB +2024-03-16T16:37:51Z #11 149.5 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB +2024-03-16T16:37:51Z #11 149.5 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-03-16T16:37:51Z #11 149.5 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-03-16T16:37:51Z #11 149.5 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB +2024-03-16T16:37:51Z #11 149.5 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB +2024-03-16T16:37:51Z #11 149.5 + rioxarray 0.15.1 pyhd8ed1ab_0 conda-forge 48kB +2024-03-16T16:37:51Z #11 149.5 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB +2024-03-16T16:37:51Z #11 149.5 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-03-16T16:37:51Z #11 149.5 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB +2024-03-16T16:37:51Z #11 149.5 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-03-16T16:37:51Z #11 149.5 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB +2024-03-16T16:37:51Z #11 149.5 +2024-03-16T16:37:51Z #11 149.5 Summary: +2024-03-16T16:37:51Z #11 149.5 +2024-03-16T16:37:51Z #11 149.5 Install: 300 packages +2024-03-16T16:37:51Z #11 149.5 +2024-03-16T16:37:51Z #11 149.5 Total download: 441MB +2024-03-16T16:37:51Z #11 149.5 +2024-03-16T16:37:51Z #11 149.5 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-16T16:37:51Z #11 149.5 +2024-03-16T16:37:51Z #11 149.5 +2024-03-16T16:39:29Z #11 247.7 +2024-03-16T16:39:29Z #11 247.7 Looking for: ['xclim', 'ravenpy', 'python=3.10'] +2024-03-16T16:39:29Z #11 247.7 +2024-03-16T16:39:29Z #11 247.7 +2024-03-16T16:39:29Z #11 247.7 Downloading and Extracting Packages: ...working... done +2024-03-16T16:39:33Z #11 247.7 Preparing transaction: ...working... done +2024-03-16T16:39:47Z #11 252.0 Verifying transaction: ...working... done +2024-03-16T16:40:21Z #11 265.4 Executing transaction: ...working... +2024-03-16T16:40:21Z #11 299.5 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-03-16T16:40:21Z #11 299.5 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-03-16T16:40:21Z #11 299.5 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-03-16T16:40:21Z #11 299.5 mpiexec --mca opal_cuda_support 1 ... +2024-03-16T16:40:21Z #11 299.5 +2024-03-16T16:40:21Z #11 299.5 In addition, the UCX support is also built but disabled by default. +2024-03-16T16:40:21Z #11 299.5 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-03-16T16:40:21Z #11 299.5 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-03-16T16:40:21Z #11 299.5 Equivalently, you can set the MCA parameters in the command line: +2024-03-16T16:40:21Z #11 299.5 mpiexec --mca pml ucx --mca osc ucx ... +2024-03-16T16:40:21Z #11 299.5 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-03-16T16:40:21Z #11 299.5 Please consult UCX's documentation for detail. +2024-03-16T16:40:21Z #11 299.5 +2024-03-16T16:40:21Z #11 299.5 +2024-03-16T16:40:21Z #11 299.5 done +2024-03-16T16:40:21Z #11 299.6 +2024-03-16T16:40:21Z #11 299.6 To activate this environment, use +2024-03-16T16:40:21Z #11 299.6 +2024-03-16T16:40:21Z #11 299.6 $ mamba activate birdy +2024-03-16T16:40:21Z #11 299.6 +2024-03-16T16:40:21Z #11 299.6 To deactivate an active environment, use +2024-03-16T16:40:21Z #11 299.6 +2024-03-16T16:40:21Z #11 299.6 $ mamba deactivate +2024-03-16T16:40:21Z #11 299.6 +2024-03-16T16:40:25Z #11 303.1 Channels: +2024-03-16T16:40:25Z #11 303.1 - conda-forge +2024-03-16T16:40:25Z #11 303.1 - cdat +2024-03-16T16:40:25Z #11 303.1 - bokeh +2024-03-16T16:40:25Z #11 303.1 - pyviz/label/dev +2024-03-16T16:40:25Z #11 303.1 - defaults +2024-03-16T16:40:25Z #11 303.1 Platform: linux-64 +2024-03-16T16:41:01Z #11 303.1 Collecting package metadata (repodata.json): ...working... done +2024-03-16T16:42:03Z #11 340.0 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.8 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-16T16:45:05Z #11 583.3 done +2024-03-16T16:47:02Z #11 700.2 +2024-03-16T16:47:02Z #11 700.2 Downloading and Extracting Packages: ...working... done +2024-03-16T16:47:11Z #11 700.2 Preparing transaction: ...working... done +2024-03-16T16:47:35Z #11 710.0 Verifying transaction: ...working... done +2024-03-16T16:48:30Z #11 734.0 Executing transaction: ...working... +2024-03-16T16:48:30Z #11 788.8 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-03-16T16:48:30Z #11 788.8 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-03-16T16:48:30Z #11 788.8 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-03-16T16:48:30Z #11 788.8 mpiexec --mca opal_cuda_support 1 ... +2024-03-16T16:48:30Z #11 788.8 +2024-03-16T16:48:30Z #11 788.8 In addition, the UCX support is also built but disabled by default. +2024-03-16T16:48:30Z #11 788.8 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-03-16T16:48:30Z #11 788.8 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-03-16T16:48:30Z #11 788.8 Equivalently, you can set the MCA parameters in the command line: +2024-03-16T16:48:30Z #11 788.8 mpiexec --mca pml ucx --mca osc ucx ... +2024-03-16T16:48:30Z #11 788.8 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-03-16T16:48:30Z #11 788.8 Please consult UCX's documentation for detail. +2024-03-16T16:48:30Z #11 788.8 +2024-03-16T16:48:30Z #11 788.8 +2024-03-16T16:48:30Z #11 788.8 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-03-16T16:48:30Z #11 788.8 given by the platformdirs library. To remove this warning and +2024-03-16T16:48:30Z #11 788.8 see the appropriate new directories, set the environment variable +2024-03-16T16:48:30Z #11 788.8 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-03-16T16:48:30Z #11 788.8 The use of platformdirs will be the default in `jupyter_core` v6 +2024-03-16T16:48:30Z #11 788.8 from . import paths +2024-03-16T16:48:30Z #11 788.8 Enabling: jupyterlab_git +2024-03-16T16:48:30Z #11 788.8 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-16T16:48:30Z #11 788.8 - Validating... +2024-03-16T16:48:30Z #11 788.8 jupyterlab_git OK +2024-03-16T16:48:30Z #11 788.8 +2024-03-16T16:48:30Z #11 788.8 done +2024-03-16T16:49:16Z #11 796.5 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-03-16T16:49:16Z #11 834.6 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.jofvnsgm.requirements.txt', '--exists-action=b'] +2024-03-16T16:49:16Z #11 834.6 Pip subprocess output: +2024-03-16T16:49:16Z #11 834.6 Collecting xncml (from -r /condaenv.jofvnsgm.requirements.txt (line 1)) +2024-03-16T16:49:16Z #11 834.6 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting hsclient (from -r /condaenv.jofvnsgm.requirements.txt (line 2)) +2024-03-16T16:49:16Z #11 834.6 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting fstd2nc (from -r /condaenv.jofvnsgm.requirements.txt (line 3)) +2024-03-16T16:49:16Z #11 834.6 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 8.0 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Installing build dependencies: started +2024-03-16T16:49:16Z #11 834.6 Installing build dependencies: finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Getting requirements to build wheel: started +2024-03-16T16:49:16Z #11 834.6 Getting requirements to build wheel: finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Installing backend dependencies: started +2024-03-16T16:49:16Z #11 834.6 Installing backend dependencies: finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Preparing metadata (pyproject.toml): started +2024-03-16T16:49:16Z #11 834.6 Preparing metadata (pyproject.toml): finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Collecting figanos (from -r /condaenv.jofvnsgm.requirements.txt (line 4)) +2024-03-16T16:49:16Z #11 834.6 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting pixiedust (from -r /condaenv.jofvnsgm.requirements.txt (line 5)) +2024-03-16T16:49:16Z #11 834.6 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 22.9 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): started +2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Collecting ipython_blocking (from -r /condaenv.jofvnsgm.requirements.txt (line 6)) +2024-03-16T16:49:16Z #11 834.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting jupyternotify (from -r /condaenv.jofvnsgm.requirements.txt (line 7)) +2024-03-16T16:49:16Z #11 834.6 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): started +2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Collecting jupyterlab-logout (from -r /condaenv.jofvnsgm.requirements.txt (line 8)) +2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.jofvnsgm.requirements.txt (line 9)) +2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting pytest-tornasync (from -r /condaenv.jofvnsgm.requirements.txt (line 10)) +2024-03-16T16:49:16Z #11 834.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting xmltodict (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) +2024-03-16T16:49:16Z #11 834.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting xsdata (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) +2024-03-16T16:49:16Z #11 834.6 Downloading xsdata-24.3.1-py3-none-any.whl.metadata (6.3 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (2023.8.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (1.6.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (1.6.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (2024.3.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (5.9.8) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (69.2.0) +2024-03-16T16:49:16Z #11 834.6 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) +2024-03-16T16:49:16Z #11 834.6 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2.31.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (1.4.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.jofvnsgm.requirements.txt (line 3)) (1.24.4) +2024-03-16T16:49:16Z #11 834.6 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.jofvnsgm.requirements.txt (line 3)) +2024-03-16T16:49:16Z #11 834.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-03-16T16:49:16Z #11 834.6 Collecting progress (from fstd2nc->-r /condaenv.jofvnsgm.requirements.txt (line 3)) +2024-03-16T16:49:16Z #11 834.6 Downloading progress-1.6.tar.gz (7.8 kB) +2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): started +2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.22.0) +2024-03-16T16:49:16Z #11 834.6 Collecting cairosvg (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) +2024-03-16T16:49:16Z #11 834.6 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.14.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.8.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.1.4) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (4.2.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (6.0.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.13.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.22.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.47.0) +2024-03-16T16:49:16Z #11 834.6 Collecting geojson (from pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) +2024-03-16T16:49:16Z #11 834.6 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting astunparse (from pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) +2024-03-16T16:49:16Z #11 834.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) (3.6) +2024-03-16T16:49:16Z #11 834.6 Collecting colour (from pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) +2024-03-16T16:49:16Z #11 834.6 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (8.22.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (8.1.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.7.4) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (1.0.0) +2024-03-16T16:49:16Z #11 834.6 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) +2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab-4.1.5-py3-none-any.whl.metadata (15 kB) +2024-03-16T16:49:16Z #11 834.6 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-03-16T16:49:16Z #11 834.6 Collecting jupyterlab-logout (from -r /condaenv.jofvnsgm.requirements.txt (line 8)) +2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.6.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (3.6.7) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (23.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (6.4) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (5.7.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.25.4) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.13.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.2.4) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.8.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.0.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (6.5.6) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (3.1.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.0.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.jofvnsgm.requirements.txt (line 10)) (8.1.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.jofvnsgm.requirements.txt (line 3)) (2024.1) +2024-03-16T16:49:16Z #11 834.6 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) +2024-03-16T16:49:16Z #11 834.6 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2.6.3) +2024-03-16T16:49:16Z #11 834.6 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) +2024-03-16T16:49:16Z #11 834.6 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (0.6.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2.16.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (4.10.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.jofvnsgm.requirements.txt (line 10)) (2.0.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.jofvnsgm.requirements.txt (line 10)) (1.4.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.jofvnsgm.requirements.txt (line 10)) (1.2.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (23.1.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.3.8) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.9.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (8.1.7) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.0.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.0.6) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.59.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.23) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.4.1.post1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.12.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.14.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (3.0.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (2024.2.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (1.4.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (0.12.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (7.0.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.9.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2024.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) (0.42.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) (1.16.0) +2024-03-16T16:49:16Z #11 834.6 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) +2024-03-16T16:49:16Z #11 834.6 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) +2024-03-16T16:49:16Z #11 834.6 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) +2024-03-16T16:49:16Z #11 834.6 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.7.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (9.4.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.2.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.0.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.3.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.5.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.2.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.12.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (4.49.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.4.5) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.1.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.9.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (5.1.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.19.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.1.6) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (3.0.42) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (2.17.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.6.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (5.14.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (4.9.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.2.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (4.0.10) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (3.0.10) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (5.5.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (6.6.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (7.16.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (6.29.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (7.4.9) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (5.10.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (3.3.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (3.6) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2.0.7) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2024.2.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (3.2.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.2.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.34.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2023.8.12) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (23.2.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.1.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.7.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (4.0.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (3.17.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.8.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.1.5) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.4) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (1.6.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (24.0.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (4.3.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (23.1.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.9.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.5.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (7.7.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.20.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.8.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.18.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.7.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.9.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.8.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.5.9) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.14.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.9.22) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (4.21.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (4.12.3) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (6.1.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (0.3.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (3.0.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (1.5.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (2.19.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.2.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.2.4) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (1.0.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.7.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.2.13) +2024-03-16T16:49:16Z #11 834.6 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) +2024-03-16T16:49:16Z #11 834.6 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.3.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.3.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.16.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.5.1) +2024-03-16T16:49:16Z #11 834.6 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) +2024-03-16T16:49:16Z #11 834.6 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (1.8.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.42.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (2.4.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (2.0.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (2.4.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.2.2) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.5.6) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.3.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.21) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2023.12.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.33.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.18.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.0.7) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.1.4) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.1.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (22.1.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.19.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (21.2.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (2.5) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.5.1) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (20.11.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.4) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.3.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.13) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.3.0) +2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.9.0.20240316) +2024-03-16T16:49:16Z #11 834.6 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 50.7 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.0 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 38.8 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 64.8 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 5.8 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading xsdata-24.3.1-py3-none-any.whl (224 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 224.1/224.1 kB 26.4 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 24.2 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 10.7 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-03-16T16:49:16Z #11 834.6 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 31.0 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.2 MB/s eta 0:00:00 +2024-03-16T16:49:16Z #11 834.6 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress +2024-03-16T16:49:16Z #11 834.6 Building wheel for fstd2nc (pyproject.toml): started +2024-03-16T16:49:16Z #11 834.6 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=b6084247f096a9b81af085c06aecc40cde7e5aa1a7ac836f961443b8a834349a +2024-03-16T16:49:16Z #11 834.6 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a +2024-03-16T16:49:16Z #11 834.6 Building wheel for pixiedust (setup.py): started +2024-03-16T16:49:16Z #11 834.6 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=8cbc66381c46bd2640c1c9ab1730fcd0cd882d462ecf13c3ff1ff2ae04cb075c +2024-03-16T16:49:16Z #11 834.6 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 +2024-03-16T16:49:16Z #11 834.6 Building wheel for jupyternotify (setup.py): started +2024-03-16T16:49:16Z #11 834.6 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=598719bbc6e9c10fc33980fe15b8c5f099f1a27a9e33854d2e0da02a67fc9bfb +2024-03-16T16:49:16Z #11 834.6 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 +2024-03-16T16:49:16Z #11 834.6 Building wheel for progress (setup.py): started +2024-03-16T16:49:16Z #11 834.6 Building wheel for progress (setup.py): finished with status 'done' +2024-03-16T16:49:16Z #11 834.6 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9612 sha256=4dd68c8c07071108890eb7f49a4313b45396aebf5fa6d49d5376337bd6a7c54a +2024-03-16T16:49:16Z #11 834.6 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 +2024-03-16T16:49:16Z #11 834.6 Successfully built fstd2nc pixiedust jupyternotify progress +2024-03-16T16:49:16Z #11 834.6 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-03-16T16:49:16Z #11 834.6 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.3.1 +2024-03-16T16:49:16Z #11 834.6 +2024-03-16T16:49:16Z #11 834.6 done +2024-03-16T16:49:16Z #11 834.6 # +2024-03-16T16:49:16Z #11 834.6 # To activate this environment, use +2024-03-16T16:49:16Z #11 834.6 # +2024-03-16T16:49:16Z #11 834.6 # $ conda activate birdy +2024-03-16T16:49:16Z #11 834.6 # +2024-03-16T16:49:16Z #11 834.6 # To deactivate an active environment, use +2024-03-16T16:49:16Z #11 834.6 # +2024-03-16T16:49:16Z #11 834.6 # $ conda deactivate +2024-03-16T16:49:16Z #11 834.6 +2024-03-16T16:49:36Z #11 854.4 Will remove 787 (1.19 GB) tarball(s). +2024-03-16T16:49:36Z #11 854.4 Will remove 1 index cache(s). +2024-03-16T16:49:36Z #11 854.4 Will remove 145 (1.21 GB) package(s). +2024-03-16T16:49:36Z #11 854.4 There are no tempfile(s) to remove. +2024-03-16T16:49:36Z #11 854.4 There are no logfile(s) to remove. +2024-03-16T16:49:37Z #11 DONE 855.2s +2024-03-16T16:49:37Z +2024-03-16T16:49:37Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2024-03-16T16:49:38Z #12 1.266 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-03-16T16:49:38Z #12 DONE 1.4s +2024-03-16T16:49:38Z +2024-03-16T16:49:38Z #13 [ 8/10] RUN jupyter lab build +2024-03-16T16:49:40Z #13 1.924 [LabBuildApp] JupyterLab 3.6.7 +2024-03-16T16:49:40Z #13 1.925 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2024-03-16T16:49:41Z #13 2.571 [LabBuildApp] Building jupyterlab assets (production, minimized) +2024-03-16T16:49:41Z #13 2.589 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. +2024-03-16T16:49:41Z #13 2.589 +2024-03-16T16:51:59Z #13 2.594 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ +2024-03-16T16:51:59Z #13 DONE 140.7s +2024-03-16T16:51:59Z +2024-03-16T16:51:59Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-03-16T16:51:59Z #14 0.636 Enabling: voila +2024-03-16T16:51:59Z #14 0.636 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-16T16:51:59Z #14 0.638 - Validating... +2024-03-16T16:52:00Z #14 1.331 voila 0.5.5 OK +2024-03-16T16:52:01Z #14 1.710 Enabling: panel.io.jupyter_server_extension +2024-03-16T16:52:01Z #14 1.710 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-16T16:52:01Z #14 1.712 - Validating... +2024-03-16T16:52:02Z #14 3.295 panel.io.jupyter_server_extension OK +2024-03-16T16:52:03Z #14 3.782 - Validating... +2024-03-16T16:52:03Z #14 4.630 dask_labextension 6.2.0 OK +2024-03-16T16:52:03Z #14 4.630 - Validating... +2024-03-16T16:52:03Z #14 4.630 jupyter_server_proxy 4.1.1-0.dev OK +2024-03-16T16:52:03Z #14 4.631 - Validating... +2024-03-16T16:52:04Z #14 4.805 jupyter_resource_usage 0.7.1 OK +2024-03-16T16:52:04Z #14 4.805 - Validating... +2024-03-16T16:52:04Z #14 4.864  X is jupyter_server_ydoc importable? +2024-03-16T16:52:04Z #14 4.864 - Validating... +2024-03-16T16:52:04Z #14 4.937 jupyterlab 3.6.7 OK +2024-03-16T16:52:04Z #14 4.937 - Validating... +2024-03-16T16:52:04Z #14 5.115 jupyterlab_jupytext OK +2024-03-16T16:52:04Z #14 5.115 - Validating... +2024-03-16T16:52:04Z #14 5.119 mamba_gator 5.2.1 OK +2024-03-16T16:52:04Z #14 5.120 - Validating... +2024-03-16T16:52:04Z #14 5.136 nbdime 4.0.1 OK +2024-03-16T16:52:04Z #14 5.136 - Validating... +2024-03-16T16:52:05Z #14 6.211 panel.io.jupyter_server_extension OK +2024-03-16T16:52:05Z #14 6.211 - Validating... +2024-03-16T16:52:05Z #14 6.280 nbresuse OK +2024-03-16T16:52:05Z #14 6.280 - Validating... +2024-03-16T16:52:05Z #14 6.542 voila.server_extension OK +2024-03-16T16:52:05Z #14 6.542 - Validating... +2024-03-16T16:52:05Z #14 6.544 jupyterlab_git OK +2024-03-16T16:52:05Z #14 6.544 - Validating... +2024-03-16T16:52:05Z #14 6.545 voila 0.5.5 OK +2024-03-16T16:52:05Z #14 6.546 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-03-16T16:52:05Z #14 6.546 dask_labextension  enabled  +2024-03-16T16:52:05Z #14 6.546 jupyter_server_proxy  enabled  +2024-03-16T16:52:05Z #14 6.546 jupyter_resource_usage  enabled  +2024-03-16T16:52:05Z #14 6.546 jupyter_server_ydoc  enabled  +2024-03-16T16:52:05Z #14 6.546 jupyterlab  enabled  +2024-03-16T16:52:05Z #14 6.546 jupyterlab_jupytext  enabled  +2024-03-16T16:52:05Z #14 6.546 mamba_gator  enabled  +2024-03-16T16:52:05Z #14 6.546 nbdime  enabled  +2024-03-16T16:52:05Z #14 6.546 panel.io.jupyter_server_extension  enabled  +2024-03-16T16:52:05Z #14 6.546 nbresuse  enabled  +2024-03-16T16:52:05Z #14 6.546 voila.server_extension  enabled  +2024-03-16T16:52:05Z #14 6.546 jupyterlab_git  enabled  +2024-03-16T16:52:05Z #14 6.546 voila  enabled  +2024-03-16T16:52:06Z #14 DONE 7.0s +2024-03-16T16:52:06Z +2024-03-16T16:52:06Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-03-16T16:52:06Z #6 ... +2024-03-16T16:52:06Z +2024-03-16T16:52:06Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-03-16T16:52:06Z #15 0.412 --2024-03-16 16:52:06-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-03-16T16:52:06Z #15 0.438 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.110.133, 185.199.111.133, ... +2024-03-16T16:52:06Z #15 0.442 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-03-16T16:52:06Z #15 0.445 HTTP request sent, awaiting response... 200 OK +2024-03-16T16:52:06Z #15 0.510 Length: 9769 (9.5K) [text/plain] +2024-03-16T16:52:06Z #15 0.510 Saving to: ‘/usr/local/bin/start.sh’ +2024-03-16T16:52:06Z #15 0.510 +2024-03-16T16:52:06Z #15 0.510 0K ......... 100% 18.2M=0.001s +2024-03-16T16:52:06Z #15 0.512 +2024-03-16T16:52:06Z #15 0.512 2024-03-16 16:52:06 (18.2 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-03-16T16:52:06Z #15 0.512 +2024-03-16T16:52:06Z #15 0.515 --2024-03-16 16:52:06-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-03-16T16:52:06Z #15 0.540 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2024-03-16T16:52:06Z #15 0.541 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-03-16T16:52:06Z #15 0.545 HTTP request sent, awaiting response... 200 OK +2024-03-16T16:52:06Z #15 0.616 Length: 359 [text/plain] +2024-03-16T16:52:06Z #15 0.616 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-03-16T16:52:06Z #15 0.616 +2024-03-16T16:52:06Z #15 0.616 0K 100% 926K=0s +2024-03-16T16:52:06Z #15 0.618 +2024-03-16T16:52:06Z #15 0.618 2024-03-16 16:52:06 (926 KB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-03-16T16:52:06Z #15 0.618 +2024-03-16T16:52:06Z #15 0.622 --2024-03-16 16:52:06-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-03-16T16:52:06Z #15 0.645 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2024-03-16T16:52:06Z #15 0.647 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-03-16T16:52:06Z #15 0.651 HTTP request sent, awaiting response... 200 OK +2024-03-16T16:52:06Z #15 0.741 Length: 852 [text/plain] +2024-03-16T16:52:06Z #15 0.741 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-03-16T16:52:07Z #15 0.741 +2024-03-16T16:52:07Z #15 0.741 0K 100% 34.5M=0s +2024-03-16T16:52:07Z #15 0.743 +2024-03-16T16:52:07Z #15 0.743 2024-03-16 16:52:06 (34.5 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-03-16T16:52:07Z #15 0.743 +2024-03-16T16:52:07Z #15 0.747 --2024-03-16 16:52:06-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-03-16T16:52:07Z #15 0.771 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2024-03-16T16:52:07Z #15 0.772 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-03-16T16:52:07Z #15 0.777 HTTP request sent, awaiting response... 200 OK +2024-03-16T16:52:07Z #15 0.845 Length: 1034 (1.0K) [text/plain] +2024-03-16T16:52:07Z #15 0.845 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-03-16T16:52:07Z #15 0.845 +2024-03-16T16:52:07Z #15 0.845 0K . 100% 39.9M=0s +2024-03-16T16:52:07Z #15 0.847 +2024-03-16T16:52:07Z #15 0.847 2024-03-16 16:52:07 (39.9 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-03-16T16:52:07Z #15 0.847 +2024-03-16T16:52:07Z #15 0.853 --2024-03-16 16:52:07-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-03-16T16:52:07Z #15 0.877 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2024-03-16T16:52:07Z #15 0.878 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-03-16T16:52:07Z #15 0.883 HTTP request sent, awaiting response... 200 OK +2024-03-16T16:52:07Z #15 0.948 Length: 1836 (1.8K) [text/plain] +2024-03-16T16:52:07Z #15 0.948 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-03-16T16:52:07Z #15 0.949 +2024-03-16T16:52:07Z #15 0.949 0K . 100% 12.5M=0s +2024-03-16T16:52:07Z #15 0.949 +2024-03-16T16:52:07Z #15 0.949 2024-03-16 16:52:07 (12.5 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-03-16T16:52:07Z #15 0.949 +2024-03-16T16:52:07Z #15 1.125 --2024-03-16 16:52:07-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-03-16T16:52:07Z #15 1.149 Resolving downloads.globus.org (downloads.globus.org)... 52.85.132.25, 52.85.132.96, 52.85.132.85, ... +2024-03-16T16:52:07Z #15 1.155 Connecting to downloads.globus.org (downloads.globus.org)|52.85.132.25|:443... connected. +2024-03-16T16:52:07Z #15 1.162 HTTP request sent, awaiting response... 200 OK +2024-03-16T16:52:07Z #15 1.190 Length: 129825343 (124M) [application/x-tar] +2024-03-16T16:52:07Z #15 1.190 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-03-16T16:52:07Z #15 1.192 +2024-03-16T16:52:07Z #15 1.192 0K .......... .......... .......... .......... .......... 0% 13.7M 9s +2024-03-16T16:52:07Z #15 1.194 50K .......... .......... .......... .......... .......... 0% 37.3M 6s +2024-03-16T16:52:07Z #15 1.195 100K .......... .......... .......... .......... .......... 0% 47.2M 5s +2024-03-16T16:52:07Z #15 1.196 150K .......... .......... .......... .......... .......... 0% 34.9M 5s +2024-03-16T16:52:07Z #15 1.198 200K .......... .......... .......... .......... .......... 0% 45.1M 4s +2024-03-16T16:52:07Z #15 1.199 250K .......... .......... .......... .......... .......... 0% 43.9M 4s +2024-03-16T16:52:07Z #15 1.200 300K .......... .......... .......... .......... .......... 0% 43.7M 4s +2024-03-16T16:52:07Z #15 1.205 350K .......... .......... .......... .......... .......... 0% 46.0M 4s +2024-03-16T16:52:07Z #15 1.205 400K .......... .......... .......... .......... .......... 0% 50.5M 4s +2024-03-16T16:52:07Z #15 1.205 450K .......... .......... .......... .......... .......... 0% 53.6M 3s +2024-03-16T16:52:07Z #15 1.205 500K .......... .......... .......... .......... .......... 0% 36.7M 3s +2024-03-16T16:52:07Z #15 1.205 550K .......... .......... .......... .......... .......... 0% 38.1M 3s +2024-03-16T16:52:07Z #15 1.206 600K .......... .......... .......... .......... .......... 0% 45.3M 3s +2024-03-16T16:52:07Z #15 1.207 650K .......... .......... .......... .......... .......... 0% 48.1M 3s +2024-03-16T16:52:07Z #15 1.208 700K .......... .......... .......... .......... .......... 0% 48.2M 3s +2024-03-16T16:52:07Z #15 1.209 750K .......... .......... .......... .......... .......... 0% 43.0M 3s +2024-03-16T16:52:07Z #15 1.210 800K .......... .......... .......... .......... .......... 0% 46.6M 3s +2024-03-16T16:52:07Z #15 1.211 850K .......... .......... .......... .......... .......... 0% 67.0M 3s +2024-03-16T16:52:07Z #15 1.218 900K .......... .......... .......... .......... .......... 0% 132M 3s +2024-03-16T16:52:07Z #15 1.218 950K .......... .......... .......... .......... .......... 0% 138M 3s +2024-03-16T16:52:07Z #15 1.218 1000K .......... .......... .......... .......... .......... 0% 143M 3s +2024-03-16T16:52:07Z #15 1.218 1050K .......... .......... .......... .......... .......... 0% 131M 3s +2024-03-16T16:52:07Z #15 1.218 1100K .......... .......... .......... .......... .......... 0% 111M 3s +2024-03-16T16:52:07Z #15 1.218 1150K .......... .......... .......... .......... .......... 0% 121M 3s +2024-03-16T16:52:07Z #15 1.218 1200K .......... .......... .......... .......... .......... 0% 110M 3s +2024-03-16T16:52:07Z #15 1.218 1250K .......... .......... .......... .......... .......... 1% 131M 2s +2024-03-16T16:52:07Z #15 1.218 1300K .......... .......... .......... .......... .......... 1% 128M 2s +2024-03-16T16:52:07Z #15 1.218 1350K .......... .......... .......... .......... .......... 1% 119M 2s +2024-03-16T16:52:07Z #15 1.218 1400K .......... .......... .......... .......... .......... 1% 137M 2s +2024-03-16T16:52:07Z #15 1.218 1450K .......... .......... .......... .......... .......... 1% 144M 2s +2024-03-16T16:52:07Z #15 1.218 1500K .......... .......... .......... .......... .......... 1% 115M 2s +2024-03-16T16:52:07Z #15 1.218 1550K .......... .......... .......... .......... .......... 1% 97.1M 2s +2024-03-16T16:52:07Z #15 1.218 1600K .......... .......... .......... .......... .......... 1% 58.6M 2s +2024-03-16T16:52:07Z #15 1.219 1650K .......... .......... .......... .......... .......... 1% 55.6M 2s +2024-03-16T16:52:07Z #15 1.219 1700K .......... .......... .......... .......... .......... 1% 48.0M 2s +2024-03-16T16:52:07Z #15 1.220 1750K .......... .......... .......... .......... .......... 1% 43.9M 2s +2024-03-16T16:52:07Z #15 1.221 1800K .......... .......... .......... .......... .......... 1% 51.1M 2s +2024-03-16T16:52:07Z #15 1.222 1850K .......... .......... .......... .......... .......... 1% 49.1M 2s +2024-03-16T16:52:07Z #15 1.223 1900K .......... .......... .......... .......... .......... 1% 52.0M 2s +2024-03-16T16:52:07Z #15 1.224 1950K .......... .......... .......... .......... .......... 1% 44.5M 2s +2024-03-16T16:52:07Z #15 1.225 2000K .......... .......... .......... .......... .......... 1% 49.3M 2s +2024-03-16T16:52:07Z #15 1.226 2050K .......... .......... .......... .......... .......... 1% 55.1M 2s +2024-03-16T16:52:07Z #15 1.227 2100K .......... .......... .......... .......... .......... 1% 46.8M 2s +2024-03-16T16:52:07Z #15 1.228 2150K .......... .......... .......... .......... .......... 1% 69.6M 2s +2024-03-16T16:52:07Z #15 1.234 2200K .......... .......... .......... .......... .......... 1% 145M 2s +2024-03-16T16:52:07Z #15 1.234 2250K .......... .......... .......... .......... .......... 1% 146M 2s +2024-03-16T16:52:07Z #15 1.234 2300K .......... .......... .......... .......... .......... 1% 103M 2s +2024-03-16T16:52:07Z #15 1.234 2350K .......... .......... .......... .......... .......... 1% 107M 2s +2024-03-16T16:52:07Z #15 1.234 2400K .......... .......... .......... .......... .......... 1% 118M 2s +2024-03-16T16:52:07Z #15 1.234 2450K .......... .......... .......... .......... .......... 1% 124M 2s +2024-03-16T16:52:07Z #15 1.234 2500K .......... .......... .......... .......... .......... 2% 146M 2s +2024-03-16T16:52:07Z #15 1.234 2550K .......... .......... .......... .......... .......... 2% 108M 2s +2024-03-16T16:52:07Z #15 1.234 2600K .......... .......... .......... .......... .......... 2% 152M 2s +2024-03-16T16:52:07Z #15 1.234 2650K .......... .......... .......... .......... .......... 2% 120M 2s +2024-03-16T16:52:07Z #15 1.234 2700K .......... .......... .......... .......... .......... 2% 113M 2s +2024-03-16T16:52:07Z #15 1.234 2750K .......... .......... .......... .......... .......... 2% 76.1M 2s +2024-03-16T16:52:07Z #15 1.234 2800K .......... .......... .......... .......... .......... 2% 51.8M 2s +2024-03-16T16:52:07Z #15 1.235 2850K .......... .......... .......... .......... .......... 2% 52.8M 2s +2024-03-16T16:52:07Z #15 1.236 2900K .......... .......... .......... .......... .......... 2% 45.5M 2s +2024-03-16T16:52:07Z #15 1.237 2950K .......... .......... .......... .......... .......... 2% 135M 2s +2024-03-16T16:52:07Z #15 1.237 3000K .......... .......... .......... .......... .......... 2% 58.0M 2s +2024-03-16T16:52:07Z #15 1.238 3050K .......... .......... .......... .......... .......... 2% 116M 2s +2024-03-16T16:52:07Z #15 1.240 3100K .......... .......... .......... .......... .......... 2% 147M 2s +2024-03-16T16:52:07Z #15 1.240 3150K .......... .......... .......... .......... .......... 2% 98.2M 2s +2024-03-16T16:52:07Z #15 1.240 3200K .......... .......... .......... .......... .......... 2% 129M 2s +2024-03-16T16:52:07Z #15 1.240 3250K .......... .......... .......... .......... .......... 2% 116M 2s +2024-03-16T16:52:07Z #15 1.240 3300K .......... .......... .......... .......... .......... 2% 57.3M 2s +2024-03-16T16:52:07Z #15 1.242 3350K .......... .......... .......... .......... .......... 2% 30.2M 2s +2024-03-16T16:52:07Z #15 1.243 3400K .......... .......... .......... .......... .......... 2% 52.6M 2s +2024-03-16T16:52:07Z #15 1.244 3450K .......... .......... .......... .......... .......... 2% 57.0M 2s +2024-03-16T16:52:07Z #15 1.244 3500K .......... .......... .......... .......... .......... 2% 69.4M 2s +2024-03-16T16:52:07Z #15 1.245 3550K .......... .......... .......... .......... .......... 2% 54.5M 2s +2024-03-16T16:52:07Z #15 1.246 3600K .......... .......... .......... .......... .......... 2% 78.7M 2s +2024-03-16T16:52:07Z #15 1.247 3650K .......... .......... .......... .......... .......... 2% 60.1M 2s +2024-03-16T16:52:07Z #15 1.248 3700K .......... .......... .......... .......... .......... 2% 63.7M 2s +2024-03-16T16:52:07Z #15 1.248 3750K .......... .......... .......... .......... .......... 2% 58.2M 2s +2024-03-16T16:52:07Z #15 1.249 3800K .......... .......... .......... .......... .......... 3% 81.4M 2s +2024-03-16T16:52:07Z #15 1.250 3850K .......... .......... .......... .......... .......... 3% 90.6M 2s +2024-03-16T16:52:07Z #15 1.250 3900K .......... .......... .......... .......... .......... 3% 45.6M 2s +2024-03-16T16:52:07Z #15 1.251 3950K .......... .......... .......... .......... .......... 3% 43.6M 2s +2024-03-16T16:52:07Z #15 1.252 4000K .......... .......... .......... .......... .......... 3% 56.1M 2s +2024-03-16T16:52:07Z #15 1.253 4050K .......... .......... .......... .......... .......... 3% 59.6M 2s +2024-03-16T16:52:07Z #15 1.254 4100K .......... .......... .......... .......... .......... 3% 148M 2s +2024-03-16T16:52:07Z #15 1.254 4150K .......... .......... .......... .......... .......... 3% 32.6M 2s +2024-03-16T16:52:07Z #15 1.256 4200K .......... .......... .......... .......... .......... 3% 43.6M 2s +2024-03-16T16:52:07Z #15 1.257 4250K .......... .......... .......... .......... .......... 3% 56.0M 2s +2024-03-16T16:52:07Z #15 1.258 4300K .......... .......... .......... .......... .......... 3% 53.7M 2s +2024-03-16T16:52:07Z #15 1.260 4350K .......... .......... .......... .......... .......... 3% 116M 2s +2024-03-16T16:52:07Z #15 1.260 4400K .......... .......... .......... .......... .......... 3% 116M 2s +2024-03-16T16:52:07Z #15 1.260 4450K .......... .......... .......... .......... .......... 3% 124M 2s +2024-03-16T16:52:07Z #15 1.260 4500K .......... .......... .......... .......... .......... 3% 46.2M 2s +2024-03-16T16:52:07Z #15 1.261 4550K .......... .......... .......... .......... .......... 3% 82.2M 2s +2024-03-16T16:52:07Z #15 1.262 4600K .......... .......... .......... .......... .......... 3% 57.5M 2s +2024-03-16T16:52:07Z #15 1.263 4650K .......... .......... .......... .......... .......... 3% 73.8M 2s +2024-03-16T16:52:07Z #15 1.263 4700K .......... .......... .......... .......... .......... 3% 62.6M 2s +2024-03-16T16:52:07Z #15 1.264 4750K .......... .......... .......... .......... .......... 3% 52.3M 2s +2024-03-16T16:52:07Z #15 1.265 4800K .......... .......... .......... .......... .......... 3% 86.2M 2s +2024-03-16T16:52:07Z #15 1.266 4850K .......... .......... .......... .......... .......... 3% 30.8M 2s +2024-03-16T16:52:07Z #15 1.267 4900K .......... .......... .......... .......... .......... 3% 51.7M 2s +2024-03-16T16:52:07Z #15 1.268 4950K .......... .......... .......... .......... .......... 3% 82.8M 2s +2024-03-16T16:52:07Z #15 1.269 5000K .......... .......... .......... .......... .......... 3% 58.8M 2s +2024-03-16T16:52:07Z #15 1.270 5050K .......... .......... .......... .......... .......... 4% 10.7M 2s +2024-03-16T16:52:07Z #15 1.274 5100K .......... .......... .......... .......... .......... 4% 30.0M 2s +2024-03-16T16:52:07Z #15 1.276 5150K .......... .......... .......... .......... .......... 4% 26.8M 2s +2024-03-16T16:52:07Z #15 1.278 5200K .......... .......... .......... .......... .......... 4% 142M 2s +2024-03-16T16:52:07Z #15 1.278 5250K .......... .......... .......... .......... .......... 4% 156M 2s +2024-03-16T16:52:07Z #15 1.279 5300K .......... .......... .......... .......... .......... 4% 116M 2s +2024-03-16T16:52:07Z #15 1.279 5350K .......... .......... .......... .......... .......... 4% 81.5M 2s +2024-03-16T16:52:07Z #15 1.280 5400K .......... .......... .......... .......... .......... 4% 139M 2s +2024-03-16T16:52:07Z #15 1.280 5450K .......... .......... .......... .......... .......... 4% 60.6M 2s +2024-03-16T16:52:07Z #15 1.280 5500K .......... .......... .......... .......... .......... 4% 20.3M 2s +2024-03-16T16:52:07Z #15 1.283 5550K .......... .......... .......... .......... .......... 4% 36.2M 2s +2024-03-16T16:52:07Z #15 1.284 5600K .......... .......... .......... .......... .......... 4% 99.6M 2s +2024-03-16T16:52:07Z #15 1.285 5650K .......... .......... .......... .......... .......... 4% 125M 2s +2024-03-16T16:52:07Z #15 1.286 5700K .......... .......... .......... .......... .......... 4% 104M 2s +2024-03-16T16:52:07Z #15 1.286 5750K .......... .......... .......... .......... .......... 4% 61.5M 2s +2024-03-16T16:52:07Z #15 1.286 5800K .......... .......... .......... .......... .......... 4% 73.0M 2s +2024-03-16T16:52:07Z #15 1.287 5850K .......... .......... .......... .......... .......... 4% 39.9M 2s +2024-03-16T16:52:07Z #15 1.288 5900K .......... .......... .......... .......... .......... 4% 48.3M 2s +2024-03-16T16:52:07Z #15 1.291 5950K .......... .......... .......... .......... .......... 4% 111M 2s +2024-03-16T16:52:07Z #15 1.291 6000K .......... .......... .......... .......... .......... 4% 119M 2s +2024-03-16T16:52:07Z #15 1.291 6050K .......... .......... .......... .......... .......... 4% 117M 2s +2024-03-16T16:52:07Z #15 1.291 6100K .......... .......... .......... .......... .......... 4% 126M 2s +2024-03-16T16:52:07Z #15 1.291 6150K .......... .......... .......... .......... .......... 4% 140M 2s +2024-03-16T16:52:07Z #15 1.291 6200K .......... .......... .......... .......... .......... 4% 38.8M 2s +2024-03-16T16:52:07Z #15 1.292 6250K .......... .......... .......... .......... .......... 4% 63.3M 2s +2024-03-16T16:52:07Z #15 1.293 6300K .......... .......... .......... .......... .......... 5% 55.9M 2s +2024-03-16T16:52:07Z #15 1.294 6350K .......... .......... .......... .......... .......... 5% 55.0M 2s +2024-03-16T16:52:07Z #15 1.295 6400K .......... .......... .......... .......... .......... 5% 118M 2s +2024-03-16T16:52:07Z #15 1.296 6450K .......... .......... .......... .......... .......... 5% 36.5M 2s +2024-03-16T16:52:07Z #15 1.297 6500K .......... .......... .......... .......... .......... 5% 31.1M 2s +2024-03-16T16:52:07Z #15 1.298 6550K .......... .......... .......... .......... .......... 5% 93.2M 2s +2024-03-16T16:52:07Z #15 1.299 6600K .......... .......... .......... .......... .......... 5% 103M 2s +2024-03-16T16:52:07Z #15 1.300 6650K .......... .......... .......... .......... .......... 5% 110M 2s +2024-03-16T16:52:07Z #15 1.300 6700K .......... .......... .......... .......... .......... 5% 78.3M 2s +2024-03-16T16:52:07Z #15 1.300 6750K .......... .......... .......... .......... .......... 5% 64.9M 2s +2024-03-16T16:52:07Z #15 1.302 6800K .......... .......... .......... .......... .......... 5% 89.0M 2s +2024-03-16T16:52:07Z #15 1.302 6850K .......... .......... .......... .......... .......... 5% 83.2M 2s +2024-03-16T16:52:07Z #15 1.303 6900K .......... .......... .......... .......... .......... 5% 107M 2s +2024-03-16T16:52:07Z #15 1.303 6950K .......... .......... .......... .......... .......... 5% 105M 2s +2024-03-16T16:52:07Z #15 1.303 7000K .......... .......... .......... .......... .......... 5% 66.2M 2s +2024-03-16T16:52:07Z #15 1.304 7050K .......... .......... .......... .......... .......... 5% 167M 2s +2024-03-16T16:52:07Z #15 1.304 7100K .......... .......... .......... .......... .......... 5% 53.0M 2s +2024-03-16T16:52:07Z #15 1.305 7150K .......... .......... .......... .......... .......... 5% 55.8M 2s +2024-03-16T16:52:07Z #15 1.307 7200K .......... .......... .......... .......... .......... 5% 40.8M 2s +2024-03-16T16:52:07Z #15 1.307 7250K .......... .......... .......... .......... .......... 5% 60.4M 2s +2024-03-16T16:52:07Z #15 1.309 7300K .......... .......... .......... .......... .......... 5% 116M 2s +2024-03-16T16:52:07Z #15 1.309 7350K .......... .......... .......... .......... .......... 5% 103M 2s +2024-03-16T16:52:07Z #15 1.309 7400K .......... .......... .......... .......... .......... 5% 30.5M 2s +2024-03-16T16:52:07Z #15 1.310 7450K .......... .......... .......... .......... .......... 5% 23.9M 2s +2024-03-16T16:52:07Z #15 1.312 7500K .......... .......... .......... .......... .......... 5% 38.0M 2s +2024-03-16T16:52:07Z #15 1.314 7550K .......... .......... .......... .......... .......... 5% 48.5M 2s +2024-03-16T16:52:07Z #15 1.315 7600K .......... .......... .......... .......... .......... 6% 45.7M 2s +2024-03-16T16:52:07Z #15 1.317 7650K .......... .......... .......... .......... .......... 6% 49.3M 2s +2024-03-16T16:52:07Z #15 1.317 7700K .......... .......... .......... .......... .......... 6% 25.4M 2s +2024-03-16T16:52:07Z #15 1.319 7750K .......... .......... .......... .......... .......... 6% 28.9M 2s +2024-03-16T16:52:07Z #15 1.320 7800K .......... .......... .......... .......... .......... 6% 45.5M 2s +2024-03-16T16:52:07Z #15 1.324 7850K .......... .......... .......... .......... .......... 6% 117M 2s +2024-03-16T16:52:07Z #15 1.324 7900K .......... .......... .......... .......... .......... 6% 113M 2s +2024-03-16T16:52:07Z #15 1.324 7950K .......... .......... .......... .......... .......... 6% 101M 2s +2024-03-16T16:52:07Z #15 1.324 8000K .......... .......... .......... .......... .......... 6% 118M 2s +2024-03-16T16:52:07Z #15 1.324 8050K .......... .......... .......... .......... .......... 6% 121M 2s +2024-03-16T16:52:07Z #15 1.324 8100K .......... .......... .......... .......... .......... 6% 14.8M 2s +2024-03-16T16:52:07Z #15 1.327 8150K .......... .......... .......... .......... .......... 6% 38.7M 2s +2024-03-16T16:52:07Z #15 1.328 8200K .......... .......... .......... .......... .......... 6% 51.8M 2s +2024-03-16T16:52:07Z #15 1.329 8250K .......... .......... .......... .......... .......... 6% 41.9M 2s +2024-03-16T16:52:07Z #15 1.330 8300K .......... .......... .......... .......... .......... 6% 41.2M 2s +2024-03-16T16:52:07Z #15 1.332 8350K .......... .......... .......... .......... .......... 6% 31.2M 2s +2024-03-16T16:52:07Z #15 1.334 8400K .......... .......... .......... .......... .......... 6% 34.4M 2s +2024-03-16T16:52:07Z #15 1.334 8450K .......... .......... .......... .......... .......... 6% 52.6M 2s +2024-03-16T16:52:07Z #15 1.336 8500K .......... .......... .......... .......... .......... 6% 45.9M 2s +2024-03-16T16:52:07Z #15 1.337 8550K .......... .......... .......... .......... .......... 6% 32.1M 2s +2024-03-16T16:52:07Z #15 1.338 8600K .......... .......... .......... .......... .......... 6% 39.7M 2s +2024-03-16T16:52:07Z #15 1.339 8650K .......... .......... .......... .......... .......... 6% 42.5M 2s +2024-03-16T16:52:07Z #15 1.340 8700K .......... .......... .......... .......... .......... 6% 54.5M 2s +2024-03-16T16:52:07Z #15 1.341 8750K .......... .......... .......... .......... .......... 6% 47.3M 2s +2024-03-16T16:52:07Z #15 1.342 8800K .......... .......... .......... .......... .......... 6% 59.2M 2s +2024-03-16T16:52:07Z #15 1.343 8850K .......... .......... .......... .......... .......... 7% 102M 2s +2024-03-16T16:52:07Z #15 1.346 8900K .......... .......... .......... .......... .......... 7% 35.7M 2s +2024-03-16T16:52:07Z #15 1.346 8950K .......... .......... .......... .......... .......... 7% 54.5M 2s +2024-03-16T16:52:07Z #15 1.346 9000K .......... .......... .......... .......... .......... 7% 32.9M 2s +2024-03-16T16:52:07Z #15 1.348 9050K .......... .......... .......... .......... .......... 7% 36.3M 2s +2024-03-16T16:52:07Z #15 1.349 9100K .......... .......... .......... .......... .......... 7% 63.5M 2s +2024-03-16T16:52:07Z #15 1.349 9150K .......... .......... .......... .......... .......... 7% 40.0M 2s +2024-03-16T16:52:07Z #15 1.351 9200K .......... .......... .......... .......... .......... 7% 154M 2s +2024-03-16T16:52:07Z #15 1.351 9250K .......... .......... .......... .......... .......... 7% 72.9M 2s +2024-03-16T16:52:07Z #15 1.352 9300K .......... .......... .......... .......... .......... 7% 49.5M 2s +2024-03-16T16:52:07Z #15 1.353 9350K .......... .......... .......... .......... .......... 7% 55.1M 2s +2024-03-16T16:52:07Z #15 1.358 9400K .......... .......... .......... .......... .......... 7% 97.4M 2s +2024-03-16T16:52:07Z #15 1.358 9450K .......... .......... .......... .......... .......... 7% 82.9M 2s +2024-03-16T16:52:07Z #15 1.358 9500K .......... .......... .......... .......... .......... 7% 148M 2s +2024-03-16T16:52:07Z #15 1.358 9550K .......... .......... .......... .......... .......... 7% 122M 2s +2024-03-16T16:52:07Z #15 1.358 9600K .......... .......... .......... .......... .......... 7% 154M 2s +2024-03-16T16:52:07Z #15 1.358 9650K .......... .......... .......... .......... .......... 7% 167M 2s +2024-03-16T16:52:07Z #15 1.358 9700K .......... .......... .......... .......... .......... 7% 143M 2s +2024-03-16T16:52:07Z #15 1.358 9750K .......... .......... .......... .......... .......... 7% 132M 2s +2024-03-16T16:52:07Z #15 1.358 9800K .......... .......... .......... .......... .......... 7% 177M 2s +2024-03-16T16:52:07Z #15 1.358 9850K .......... .......... .......... .......... .......... 7% 159M 2s +2024-03-16T16:52:07Z #15 1.358 9900K .......... .......... .......... .......... .......... 7% 145M 2s +2024-03-16T16:52:07Z #15 1.358 9950K .......... .......... .......... .......... .......... 7% 122M 2s +2024-03-16T16:52:07Z #15 1.358 10000K .......... .......... .......... .......... .......... 7% 159M 2s +2024-03-16T16:52:07Z #15 1.358 10050K .......... .......... .......... .......... .......... 7% 93.8M 2s +2024-03-16T16:52:07Z #15 1.359 10100K .......... .......... .......... .......... .......... 8% 64.1M 2s +2024-03-16T16:52:07Z #15 1.360 10150K .......... .......... .......... .......... .......... 8% 56.6M 2s +2024-03-16T16:52:07Z #15 1.360 10200K .......... .......... .......... .......... .......... 8% 51.2M 2s +2024-03-16T16:52:07Z #15 1.362 10250K .......... .......... .......... .......... .......... 8% 38.0M 2s +2024-03-16T16:52:07Z #15 1.363 10300K .......... .......... .......... .......... .......... 8% 47.9M 2s +2024-03-16T16:52:07Z #15 1.364 10350K .......... .......... .......... .......... .......... 8% 41.4M 2s +2024-03-16T16:52:07Z #15 1.365 10400K .......... .......... .......... .......... .......... 8% 47.6M 2s +2024-03-16T16:52:07Z #15 1.366 10450K .......... .......... .......... .......... .......... 8% 42.6M 2s +2024-03-16T16:52:07Z #15 1.370 10500K .......... .......... .......... .......... .......... 8% 48.0M 2s +2024-03-16T16:52:07Z #15 1.370 10550K .......... .......... .......... .......... .......... 8% 46.6M 2s +2024-03-16T16:52:07Z #15 1.370 10600K .......... .......... .......... .......... .......... 8% 58.0M 2s +2024-03-16T16:52:07Z #15 1.370 10650K .......... .......... .......... .......... .......... 8% 31.8M 2s +2024-03-16T16:52:07Z #15 1.372 10700K .......... .......... .......... .......... .......... 8% 22.9M 2s +2024-03-16T16:52:07Z #15 1.374 10750K .......... .......... .......... .......... .......... 8% 33.2M 2s +2024-03-16T16:52:07Z #15 1.375 10800K .......... .......... .......... .......... .......... 8% 21.4M 2s +2024-03-16T16:52:07Z #15 1.382 10850K .......... .......... .......... .......... .......... 8% 112M 2s +2024-03-16T16:52:07Z #15 1.382 10900K .......... .......... .......... .......... .......... 8% 111M 2s +2024-03-16T16:52:07Z #15 1.382 10950K .......... .......... .......... .......... .......... 8% 110M 2s +2024-03-16T16:52:07Z #15 1.382 11000K .......... .......... .......... .......... .......... 8% 110M 2s +2024-03-16T16:52:07Z #15 1.382 11050K .......... .......... .......... .......... .......... 8% 137M 2s +2024-03-16T16:52:07Z #15 1.382 11100K .......... .......... .......... .......... .......... 8% 135M 2s +2024-03-16T16:52:07Z #15 1.382 11150K .......... .......... .......... .......... .......... 8% 102M 2s +2024-03-16T16:52:07Z #15 1.382 11200K .......... .......... .......... .......... .......... 8% 125M 2s +2024-03-16T16:52:07Z #15 1.382 11250K .......... .......... .......... .......... .......... 8% 102M 2s +2024-03-16T16:52:07Z #15 1.382 11300K .......... .......... .......... .......... .......... 8% 26.6M 2s +2024-03-16T16:52:07Z #15 1.383 11350K .......... .......... .......... .......... .......... 8% 26.8M 2s +2024-03-16T16:52:07Z #15 1.385 11400K .......... .......... .......... .......... .......... 9% 26.6M 2s +2024-03-16T16:52:07Z #15 1.390 11450K .......... .......... .......... .......... .......... 9% 120M 2s +2024-03-16T16:52:07Z #15 1.390 11500K .......... .......... .......... .......... .......... 9% 136M 2s +2024-03-16T16:52:07Z #15 1.390 11550K .......... .......... .......... .......... .......... 9% 106M 2s +2024-03-16T16:52:07Z #15 1.390 11600K .......... .......... .......... .......... .......... 9% 126M 2s +2024-03-16T16:52:07Z #15 1.390 11650K .......... .......... .......... .......... .......... 9% 139M 2s +2024-03-16T16:52:07Z #15 1.390 11700K .......... .......... .......... .......... .......... 9% 118M 2s +2024-03-16T16:52:07Z #15 1.390 11750K .......... .......... .......... .......... .......... 9% 98.4M 2s +2024-03-16T16:52:07Z #15 1.390 11800K .......... .......... .......... .......... .......... 9% 23.1M 2s +2024-03-16T16:52:07Z #15 1.392 11850K .......... .......... .......... .......... .......... 9% 30.8M 2s +2024-03-16T16:52:07Z #15 1.393 11900K .......... .......... .......... .......... .......... 9% 39.0M 2s +2024-03-16T16:52:07Z #15 1.395 11950K .......... .......... .......... .......... .......... 9% 35.0M 2s +2024-03-16T16:52:07Z #15 1.397 12000K .......... .......... .......... .......... .......... 9% 43.9M 2s +2024-03-16T16:52:07Z #15 1.397 12050K .......... .......... .......... .......... .......... 9% 41.4M 2s +2024-03-16T16:52:07Z #15 1.400 12100K .......... .......... .......... .......... .......... 9% 53.6M 2s +2024-03-16T16:52:07Z #15 1.400 12150K .......... .......... .......... .......... .......... 9% 32.2M 2s +2024-03-16T16:52:07Z #15 1.401 12200K .......... .......... .......... .......... .......... 9% 25.0M 2s +2024-03-16T16:52:07Z #15 1.404 12250K .......... .......... .......... .......... .......... 9% 37.5M 2s +2024-03-16T16:52:07Z #15 1.404 12300K .......... .......... .......... .......... .......... 9% 34.9M 2s +2024-03-16T16:52:07Z #15 1.406 12350K .......... .......... .......... .......... .......... 9% 33.6M 2s +2024-03-16T16:52:07Z #15 1.410 12400K .......... .......... .......... .......... .......... 9% 44.6M 2s +2024-03-16T16:52:07Z #15 1.410 12450K .......... .......... .......... .......... .......... 9% 50.8M 2s +2024-03-16T16:52:07Z #15 1.410 12500K .......... .......... .......... .......... .......... 9% 46.5M 2s +2024-03-16T16:52:07Z #15 1.410 12550K .......... .......... .......... .......... .......... 9% 55.3M 2s +2024-03-16T16:52:07Z #15 1.411 12600K .......... .......... .......... .......... .......... 9% 29.1M 2s +2024-03-16T16:52:07Z #15 1.413 12650K .......... .......... .......... .......... .......... 10% 38.5M 2s +2024-03-16T16:52:07Z #15 1.414 12700K .......... .......... .......... .......... .......... 10% 23.6M 2s +2024-03-16T16:52:07Z #15 1.416 12750K .......... .......... .......... .......... .......... 10% 47.1M 2s +2024-03-16T16:52:07Z #15 1.422 12800K .......... .......... .......... .......... .......... 10% 156M 2s +2024-03-16T16:52:07Z #15 1.422 12850K .......... .......... .......... .......... .......... 10% 154M 2s +2024-03-16T16:52:07Z #15 1.422 12900K .......... .......... .......... .......... .......... 10% 120M 2s +2024-03-16T16:52:07Z #15 1.422 12950K .......... .......... .......... .......... .......... 10% 106M 2s +2024-03-16T16:52:07Z #15 1.422 13000K .......... .......... .......... .......... .......... 10% 142M 2s +2024-03-16T16:52:07Z #15 1.422 13050K .......... .......... .......... .......... .......... 10% 112M 2s +2024-03-16T16:52:07Z #15 1.422 13100K .......... .......... .......... .......... .......... 10% 100M 2s +2024-03-16T16:52:07Z #15 1.422 13150K .......... .......... .......... .......... .......... 10% 112M 2s +2024-03-16T16:52:07Z #15 1.422 13200K .......... .......... .......... .......... .......... 10% 124M 2s +2024-03-16T16:52:07Z #15 1.422 13250K .......... .......... .......... .......... .......... 10% 128M 2s +2024-03-16T16:52:07Z #15 1.422 13300K .......... .......... .......... .......... .......... 10% 120M 2s +2024-03-16T16:52:07Z #15 1.422 13350K .......... .......... .......... .......... .......... 10% 109M 2s +2024-03-16T16:52:07Z #15 1.422 13400K .......... .......... .......... .......... .......... 10% 29.1M 2s +2024-03-16T16:52:07Z #15 1.424 13450K .......... .......... .......... .......... .......... 10% 99.1M 2s +2024-03-16T16:52:07Z #15 1.424 13500K .......... .......... .......... .......... .......... 10% 48.0M 2s +2024-03-16T16:52:07Z #15 1.425 13550K .......... .......... .......... .......... .......... 10% 50.3M 2s +2024-03-16T16:52:07Z #15 1.426 13600K .......... .......... .......... .......... .......... 10% 35.7M 2s +2024-03-16T16:52:07Z #15 1.427 13650K .......... .......... .......... .......... .......... 10% 26.9M 2s +2024-03-16T16:52:07Z #15 1.430 13700K .......... .......... .......... .......... .......... 10% 58.6M 2s +2024-03-16T16:52:07Z #15 1.430 13750K .......... .......... .......... .......... .......... 10% 41.3M 2s +2024-03-16T16:52:07Z #15 1.434 13800K .......... .......... .......... .......... .......... 10% 45.4M 2s +2024-03-16T16:52:07Z #15 1.434 13850K .......... .......... .......... .......... .......... 10% 57.0M 2s +2024-03-16T16:52:07Z #15 1.434 13900K .......... .......... .......... .......... .......... 11% 45.5M 2s +2024-03-16T16:52:07Z #15 1.434 13950K .......... .......... .......... .......... .......... 11% 39.2M 2s +2024-03-16T16:52:07Z #15 1.435 14000K .......... .......... .......... .......... .......... 11% 35.8M 2s +2024-03-16T16:52:07Z #15 1.437 14050K .......... .......... .......... .......... .......... 11% 28.1M 2s +2024-03-16T16:52:07Z #15 1.439 14100K .......... .......... .......... .......... .......... 11% 40.7M 2s +2024-03-16T16:52:07Z #15 1.440 14150K .......... .......... .......... .......... .......... 11% 33.2M 2s +2024-03-16T16:52:07Z #15 1.442 14200K .......... .......... .......... .......... .......... 11% 44.4M 2s +2024-03-16T16:52:07Z #15 1.442 14250K .......... .......... .......... .......... .......... 11% 20.3M 2s +2024-03-16T16:52:07Z #15 1.445 14300K .......... .......... .......... .......... .......... 11% 41.1M 2s +2024-03-16T16:52:07Z #15 1.450 14350K .......... .......... .......... .......... .......... 11% 126M 2s +2024-03-16T16:52:07Z #15 1.450 14400K .......... .......... .......... .......... .......... 11% 154M 2s +2024-03-16T16:52:07Z #15 1.450 14450K .......... .......... .......... .......... .......... 11% 131M 2s +2024-03-16T16:52:07Z #15 1.450 14500K .......... .......... .......... .......... .......... 11% 149M 2s +2024-03-16T16:52:07Z #15 1.450 14550K .......... .......... .......... .......... .......... 11% 134M 2s +2024-03-16T16:52:07Z #15 1.450 14600K .......... .......... .......... .......... .......... 11% 134M 2s +2024-03-16T16:52:07Z #15 1.450 14650K .......... .......... .......... .......... .......... 11% 154M 2s +2024-03-16T16:52:07Z #15 1.450 14700K .......... .......... .......... .......... .......... 11% 167M 2s +2024-03-16T16:52:07Z #15 1.450 14750K .......... .......... .......... .......... .......... 11% 111M 2s +2024-03-16T16:52:07Z #15 1.450 14800K .......... .......... .......... .......... .......... 11% 155M 2s +2024-03-16T16:52:07Z #15 1.450 14850K .......... .......... .......... .......... .......... 11% 144M 2s +2024-03-16T16:52:07Z #15 1.450 14900K .......... .......... .......... .......... .......... 11% 32.2M 2s +2024-03-16T16:52:07Z #15 1.452 14950K .......... .......... .......... .......... .......... 11% 68.7M 2s +2024-03-16T16:52:07Z #15 1.452 15000K .......... .......... .......... .......... .......... 11% 33.8M 2s +2024-03-16T16:52:07Z #15 1.453 15050K .......... .......... .......... .......... .......... 11% 60.9M 2s +2024-03-16T16:52:07Z #15 1.454 15100K .......... .......... .......... .......... .......... 11% 47.8M 2s +2024-03-16T16:52:07Z #15 1.455 15150K .......... .......... .......... .......... .......... 11% 72.0M 2s +2024-03-16T16:52:07Z #15 1.456 15200K .......... .......... .......... .......... .......... 12% 70.2M 2s +2024-03-16T16:52:07Z #15 1.457 15250K .......... .......... .......... .......... .......... 12% 65.9M 2s +2024-03-16T16:52:07Z #15 1.458 15300K .......... .......... .......... .......... .......... 12% 110M 2s +2024-03-16T16:52:07Z #15 1.458 15350K .......... .......... .......... .......... .......... 12% 57.0M 2s +2024-03-16T16:52:07Z #15 1.459 15400K .......... .......... .......... .......... .......... 12% 97.7M 2s +2024-03-16T16:52:07Z #15 1.459 15450K .......... .......... .......... .......... .......... 12% 92.9M 2s +2024-03-16T16:52:07Z #15 1.460 15500K .......... .......... .......... .......... .......... 12% 111M 2s +2024-03-16T16:52:07Z #15 1.460 15550K .......... .......... .......... .......... .......... 12% 65.5M 2s +2024-03-16T16:52:07Z #15 1.466 15600K .......... .......... .......... .......... .......... 12% 121M 2s +2024-03-16T16:52:07Z #15 1.466 15650K .......... .......... .......... .......... .......... 12% 111M 2s +2024-03-16T16:52:07Z #15 1.466 15700K .......... .......... .......... .......... .......... 12% 102M 2s +2024-03-16T16:52:07Z #15 1.466 15750K .......... .......... .......... .......... .......... 12% 130M 2s +2024-03-16T16:52:07Z #15 1.466 15800K .......... .......... .......... .......... .......... 12% 116M 2s +2024-03-16T16:52:07Z #15 1.466 15850K .......... .......... .......... .......... .......... 12% 113M 2s +2024-03-16T16:52:07Z #15 1.466 15900K .......... .......... .......... .......... .......... 12% 129M 2s +2024-03-16T16:52:07Z #15 1.466 15950K .......... .......... .......... .......... .......... 12% 98.5M 2s +2024-03-16T16:52:07Z #15 1.466 16000K .......... .......... .......... .......... .......... 12% 112M 2s +2024-03-16T16:52:07Z #15 1.466 16050K .......... .......... .......... .......... .......... 12% 132M 2s +2024-03-16T16:52:07Z #15 1.466 16100K .......... .......... .......... .......... .......... 12% 105M 2s +2024-03-16T16:52:07Z #15 1.466 16150K .......... .......... .......... .......... .......... 12% 95.4M 2s +2024-03-16T16:52:07Z #15 1.466 16200K .......... .......... .......... .......... .......... 12% 38.4M 2s +2024-03-16T16:52:07Z #15 1.467 16250K .......... .......... .......... .......... .......... 12% 32.2M 2s +2024-03-16T16:52:07Z #15 1.469 16300K .......... .......... .......... .......... .......... 12% 39.1M 2s +2024-03-16T16:52:07Z #15 1.474 16350K .......... .......... .......... .......... .......... 12% 34.9M 2s +2024-03-16T16:52:07Z #15 1.474 16400K .......... .......... .......... .......... .......... 12% 39.9M 2s +2024-03-16T16:52:07Z #15 1.474 16450K .......... .......... .......... .......... .......... 13% 43.7M 2s +2024-03-16T16:52:07Z #15 1.474 16500K .......... .......... .......... .......... .......... 13% 127M 2s +2024-03-16T16:52:07Z #15 1.474 16550K .......... .......... .......... .......... .......... 13% 40.6M 2s +2024-03-16T16:52:07Z #15 1.475 16600K .......... .......... .......... .......... .......... 13% 47.0M 2s +2024-03-16T16:52:07Z #15 1.477 16650K .......... .......... .......... .......... .......... 13% 54.6M 2s +2024-03-16T16:52:07Z #15 1.477 16700K .......... .......... .......... .......... .......... 13% 47.5M 2s +2024-03-16T16:52:07Z #15 1.478 16750K .......... .......... .......... .......... .......... 13% 39.1M 2s +2024-03-16T16:52:07Z #15 1.482 16800K .......... .......... .......... .......... .......... 13% 53.4M 2s +2024-03-16T16:52:07Z #15 1.482 16850K .......... .......... .......... .......... .......... 13% 51.3M 2s +2024-03-16T16:52:07Z #15 1.482 16900K .......... .......... .......... .......... .......... 13% 40.5M 2s +2024-03-16T16:52:07Z #15 1.483 16950K .......... .......... .......... .......... .......... 13% 35.1M 2s +2024-03-16T16:52:07Z #15 1.484 17000K .......... .......... .......... .......... .......... 13% 40.7M 2s +2024-03-16T16:52:07Z #15 1.485 17050K .......... .......... .......... .......... .......... 13% 44.2M 2s +2024-03-16T16:52:07Z #15 1.486 17100K .......... .......... .......... .......... .......... 13% 58.8M 2s +2024-03-16T16:52:07Z #15 1.487 17150K .......... .......... .......... .......... .......... 13% 46.5M 2s +2024-03-16T16:52:07Z #15 1.488 17200K .......... .......... .......... .......... .......... 13% 46.5M 2s +2024-03-16T16:52:07Z #15 1.489 17250K .......... .......... .......... .......... .......... 13% 63.7M 2s +2024-03-16T16:52:07Z #15 1.490 17300K .......... .......... .......... .......... .......... 13% 45.8M 2s +2024-03-16T16:52:07Z #15 1.491 17350K .......... .......... .......... .......... .......... 13% 50.1M 2s +2024-03-16T16:52:07Z #15 1.492 17400K .......... .......... .......... .......... .......... 13% 72.0M 2s +2024-03-16T16:52:07Z #15 1.493 17450K .......... .......... .......... .......... .......... 13% 97.1M 2s +2024-03-16T16:52:07Z #15 1.493 17500K .......... .......... .......... .......... .......... 13% 55.9M 2s +2024-03-16T16:52:07Z #15 1.494 17550K .......... .......... .......... .......... .......... 13% 57.0M 2s +2024-03-16T16:52:07Z #15 1.495 17600K .......... .......... .......... .......... .......... 13% 93.1M 2s +2024-03-16T16:52:07Z #15 1.496 17650K .......... .......... .......... .......... .......... 13% 131M 2s +2024-03-16T16:52:07Z #15 1.496 17700K .......... .......... .......... .......... .......... 14% 27.3M 2s +2024-03-16T16:52:07Z #15 1.502 17750K .......... .......... .......... .......... .......... 14% 80.8M 2s +2024-03-16T16:52:07Z #15 1.502 17800K .......... .......... .......... .......... .......... 14% 112M 2s +2024-03-16T16:52:07Z #15 1.502 17850K .......... .......... .......... .......... .......... 14% 115M 2s +2024-03-16T16:52:07Z #15 1.502 17900K .......... .......... .......... .......... .......... 14% 119M 2s +2024-03-16T16:52:07Z #15 1.502 17950K .......... .......... .......... .......... .......... 14% 101M 2s +2024-03-16T16:52:07Z #15 1.502 18000K .......... .......... .......... .......... .......... 14% 116M 2s +2024-03-16T16:52:07Z #15 1.502 18050K .......... .......... .......... .......... .......... 14% 132M 2s +2024-03-16T16:52:07Z #15 1.502 18100K .......... .......... .......... .......... .......... 14% 113M 2s +2024-03-16T16:52:07Z #15 1.502 18150K .......... .......... .......... .......... .......... 14% 111M 2s +2024-03-16T16:52:07Z #15 1.502 18200K .......... .......... .......... .......... .......... 14% 40.7M 2s +2024-03-16T16:52:07Z #15 1.503 18250K .......... .......... .......... .......... .......... 14% 29.6M 2s +2024-03-16T16:52:07Z #15 1.505 18300K .......... .......... .......... .......... .......... 14% 39.8M 2s +2024-03-16T16:52:07Z #15 1.506 18350K .......... .......... .......... .......... .......... 14% 69.2M 2s +2024-03-16T16:52:07Z #15 1.507 18400K .......... .......... .......... .......... .......... 14% 78.3M 2s +2024-03-16T16:52:07Z #15 1.507 18450K .......... .......... .......... .......... .......... 14% 42.1M 2s +2024-03-16T16:52:07Z #15 1.510 18500K .......... .......... .......... .......... .......... 14% 89.7M 2s +2024-03-16T16:52:07Z #15 1.510 18550K .......... .......... .......... .......... .......... 14% 133M 2s +2024-03-16T16:52:07Z #15 1.510 18600K .......... .......... .......... .......... .......... 14% 147M 2s +2024-03-16T16:52:07Z #15 1.510 18650K .......... .......... .......... .......... .......... 14% 123M 2s +2024-03-16T16:52:07Z #15 1.510 18700K .......... .......... .......... .......... .......... 14% 59.9M 2s +2024-03-16T16:52:07Z #15 1.511 18750K .......... .......... .......... .......... .......... 14% 37.3M 2s +2024-03-16T16:52:07Z #15 1.512 18800K .......... .......... .......... .......... .......... 14% 42.3M 2s +2024-03-16T16:52:07Z #15 1.513 18850K .......... .......... .......... .......... .......... 14% 36.3M 2s +2024-03-16T16:52:07Z #15 1.515 18900K .......... .......... .......... .......... .......... 14% 37.9M 2s +2024-03-16T16:52:07Z #15 1.516 18950K .......... .......... .......... .......... .......... 14% 32.3M 2s +2024-03-16T16:52:07Z #15 1.517 19000K .......... .......... .......... .......... .......... 15% 47.5M 2s +2024-03-16T16:52:07Z #15 1.519 19050K .......... .......... .......... .......... .......... 15% 98.6M 2s +2024-03-16T16:52:07Z #15 1.519 19100K .......... .......... .......... .......... .......... 15% 46.2M 2s +2024-03-16T16:52:07Z #15 1.520 19150K .......... .......... .......... .......... .......... 15% 59.0M 2s +2024-03-16T16:52:07Z #15 1.521 19200K .......... .......... .......... .......... .......... 15% 72.6M 2s +2024-03-16T16:52:07Z #15 1.521 19250K .......... .......... .......... .......... .......... 15% 21.0M 2s +2024-03-16T16:52:07Z #15 1.524 19300K .......... .......... .......... .......... .......... 15% 45.2M 2s +2024-03-16T16:52:07Z #15 1.526 19350K .......... .......... .......... .......... .......... 15% 47.3M 2s +2024-03-16T16:52:07Z #15 1.526 19400K .......... .......... .......... .......... .......... 15% 49.4M 2s +2024-03-16T16:52:07Z #15 1.527 19450K .......... .......... .......... .......... .......... 15% 66.5M 2s +2024-03-16T16:52:07Z #15 1.527 19500K .......... .......... .......... .......... .......... 15% 49.7M 2s +2024-03-16T16:52:07Z #15 1.529 19550K .......... .......... .......... .......... .......... 15% 31.0M 2s +2024-03-16T16:52:07Z #15 1.530 19600K .......... .......... .......... .......... .......... 15% 44.9M 2s +2024-03-16T16:52:07Z #15 1.534 19650K .......... .......... .......... .......... .......... 15% 155M 2s +2024-03-16T16:52:07Z #15 1.534 19700K .......... .......... .......... .......... .......... 15% 149M 2s +2024-03-16T16:52:07Z #15 1.534 19750K .......... .......... .......... .......... .......... 15% 114M 2s +2024-03-16T16:52:07Z #15 1.534 19800K .......... .......... .......... .......... .......... 15% 138M 2s +2024-03-16T16:52:07Z #15 1.534 19850K .......... .......... .......... .......... .......... 15% 146M 2s +2024-03-16T16:52:07Z #15 1.534 19900K .......... .......... .......... .......... .......... 15% 151M 2s +2024-03-16T16:52:07Z #15 1.534 19950K .......... .......... .......... .......... .......... 15% 129M 2s +2024-03-16T16:52:07Z #15 1.534 20000K .......... .......... .......... .......... .......... 15% 39.8M 2s +2024-03-16T16:52:07Z #15 1.536 20050K .......... .......... .......... .......... .......... 15% 35.7M 2s +2024-03-16T16:52:07Z #15 1.538 20100K .......... .......... .......... .......... .......... 15% 20.2M 2s +2024-03-16T16:52:07Z #15 1.539 20150K .......... .......... .......... .......... .......... 15% 61.3M 2s +2024-03-16T16:52:07Z #15 1.539 20200K .......... .......... .......... .......... .......... 15% 52.7M 2s +2024-03-16T16:52:07Z #15 1.540 20250K .......... .......... .......... .......... .......... 16% 50.7M 2s +2024-03-16T16:52:07Z #15 1.542 20300K .......... .......... .......... .......... .......... 16% 35.8M 2s +2024-03-16T16:52:07Z #15 1.543 20350K .......... .......... .......... .......... .......... 16% 43.3M 2s +2024-03-16T16:52:07Z #15 1.544 20400K .......... .......... .......... .......... .......... 16% 87.9M 2s +2024-03-16T16:52:07Z #15 1.544 20450K .......... .......... .......... .......... .......... 16% 68.4M 2s +2024-03-16T16:52:07Z #15 1.545 20500K .......... .......... .......... .......... .......... 16% 49.4M 2s +2024-03-16T16:52:07Z #15 1.546 20550K .......... .......... .......... .......... .......... 16% 46.0M 2s +2024-03-16T16:52:07Z #15 1.547 20600K .......... .......... .......... .......... .......... 16% 41.2M 2s +2024-03-16T16:52:07Z #15 1.548 20650K .......... .......... .......... .......... .......... 16% 72.1M 2s +2024-03-16T16:52:07Z #15 1.550 20700K .......... .......... .......... .......... .......... 16% 168M 2s +2024-03-16T16:52:07Z #15 1.550 20750K .......... .......... .......... .......... .......... 16% 128M 2s +2024-03-16T16:52:07Z #15 1.550 20800K .......... .......... .......... .......... .......... 16% 36.5M 2s +2024-03-16T16:52:07Z #15 1.554 20850K .......... .......... .......... .......... .......... 16% 57.2M 2s +2024-03-16T16:52:07Z #15 1.554 20900K .......... .......... .......... .......... .......... 16% 140M 2s +2024-03-16T16:52:07Z #15 1.554 20950K .......... .......... .......... .......... .......... 16% 133M 2s +2024-03-16T16:52:07Z #15 1.554 21000K .......... .......... .......... .......... .......... 16% 139M 2s +2024-03-16T16:52:07Z #15 1.554 21050K .......... .......... .......... .......... .......... 16% 156M 2s +2024-03-16T16:52:07Z #15 1.554 21100K .......... .......... .......... .......... .......... 16% 138M 2s +2024-03-16T16:52:07Z #15 1.554 21150K .......... .......... .......... .......... .......... 16% 69.5M 2s +2024-03-16T16:52:07Z #15 1.554 21200K .......... .......... .......... .......... .......... 16% 36.8M 2s +2024-03-16T16:52:07Z #15 1.556 21250K .......... .......... .......... .......... .......... 16% 18.3M 2s +2024-03-16T16:52:07Z #15 1.558 21300K .......... .......... .......... .......... .......... 16% 94.9M 2s +2024-03-16T16:52:07Z #15 1.559 21350K .......... .......... .......... .......... .......... 16% 33.4M 2s +2024-03-16T16:52:07Z #15 1.560 21400K .......... .......... .......... .......... .......... 16% 71.0M 2s +2024-03-16T16:52:07Z #15 1.561 21450K .......... .......... .......... .......... .......... 16% 25.7M 2s +2024-03-16T16:52:07Z #15 1.563 21500K .......... .......... .......... .......... .......... 16% 54.4M 2s +2024-03-16T16:52:07Z #15 1.564 21550K .......... .......... .......... .......... .......... 17% 49.5M 2s +2024-03-16T16:52:07Z #15 1.565 21600K .......... .......... .......... .......... .......... 17% 54.0M 2s +2024-03-16T16:52:07Z #15 1.566 21650K .......... .......... .......... .......... .......... 17% 44.3M 2s +2024-03-16T16:52:07Z #15 1.567 21700K .......... .......... .......... .......... .......... 17% 82.2M 2s +2024-03-16T16:52:07Z #15 1.567 21750K .......... .......... .......... .......... .......... 17% 44.6M 2s +2024-03-16T16:52:07Z #15 1.569 21800K .......... .......... .......... .......... .......... 17% 39.8M 2s +2024-03-16T16:52:07Z #15 1.570 21850K .......... .......... .......... .......... .......... 17% 50.8M 2s +2024-03-16T16:52:07Z #15 1.571 21900K .......... .......... .......... .......... .......... 17% 47.6M 2s +2024-03-16T16:52:07Z #15 1.572 21950K .......... .......... .......... .......... .......... 17% 105M 2s +2024-03-16T16:52:07Z #15 1.572 22000K .......... .......... .......... .......... .......... 17% 118M 2s +2024-03-16T16:52:07Z #15 1.572 22050K .......... .......... .......... .......... .......... 17% 47.7M 2s +2024-03-16T16:52:07Z #15 1.574 22100K .......... .......... .......... .......... .......... 17% 35.6M 2s +2024-03-16T16:52:07Z #15 1.575 22150K .......... .......... .......... .......... .......... 17% 40.1M 2s +2024-03-16T16:52:07Z #15 1.576 22200K .......... .......... .......... .......... .......... 17% 41.6M 2s +2024-03-16T16:52:07Z #15 1.577 22250K .......... .......... .......... .......... .......... 17% 75.6M 2s +2024-03-16T16:52:07Z #15 1.578 22300K .......... .......... .......... .......... .......... 17% 27.0M 2s +2024-03-16T16:52:07Z #15 1.582 22350K .......... .......... .......... .......... .......... 17% 56.2M 2s +2024-03-16T16:52:07Z #15 1.582 22400K .......... .......... .......... .......... .......... 17% 154M 2s +2024-03-16T16:52:07Z #15 1.582 22450K .......... .......... .......... .......... .......... 17% 158M 2s +2024-03-16T16:52:07Z #15 1.582 22500K .......... .......... .......... .......... .......... 17% 38.0M 2s +2024-03-16T16:52:07Z #15 1.583 22550K .......... .......... .......... .......... .......... 17% 24.4M 2s +2024-03-16T16:52:07Z #15 1.584 22600K .......... .......... .......... .......... .......... 17% 55.9M 2s +2024-03-16T16:52:07Z #15 1.585 22650K .......... .......... .......... .......... .......... 17% 31.9M 2s +2024-03-16T16:52:07Z #15 1.587 22700K .......... .......... .......... .......... .......... 17% 28.2M 2s +2024-03-16T16:52:07Z #15 1.589 22750K .......... .......... .......... .......... .......... 17% 87.8M 2s +2024-03-16T16:52:07Z #15 1.589 22800K .......... .......... .......... .......... .......... 18% 60.0M 2s +2024-03-16T16:52:07Z #15 1.590 22850K .......... .......... .......... .......... .......... 18% 43.5M 2s +2024-03-16T16:52:07Z #15 1.591 22900K .......... .......... .......... .......... .......... 18% 63.5M 2s +2024-03-16T16:52:07Z #15 1.592 22950K .......... .......... .......... .......... .......... 18% 31.3M 2s +2024-03-16T16:52:07Z #15 1.598 23000K .......... .......... .......... .......... .......... 18% 47.3M 2s +2024-03-16T16:52:07Z #15 1.598 23050K .......... .......... .......... .......... .......... 18% 71.3M 2s +2024-03-16T16:52:07Z #15 1.598 23100K .......... .......... .......... .......... .......... 18% 141M 2s +2024-03-16T16:52:07Z #15 1.598 23150K .......... .......... .......... .......... .......... 18% 121M 2s +2024-03-16T16:52:07Z #15 1.598 23200K .......... .......... .......... .......... .......... 18% 148M 2s +2024-03-16T16:52:07Z #15 1.598 23250K .......... .......... .......... .......... .......... 18% 133M 2s +2024-03-16T16:52:07Z #15 1.598 23300K .......... .......... .......... .......... .......... 18% 168M 2s +2024-03-16T16:52:07Z #15 1.598 23350K .......... .......... .......... .......... .......... 18% 142M 2s +2024-03-16T16:52:07Z #15 1.598 23400K .......... .......... .......... .......... .......... 18% 144M 2s +2024-03-16T16:52:07Z #15 1.598 23450K .......... .......... .......... .......... .......... 18% 92.3M 2s +2024-03-16T16:52:07Z #15 1.598 23500K .......... .......... .......... .......... .......... 18% 65.2M 2s +2024-03-16T16:52:07Z #15 1.599 23550K .......... .......... .......... .......... .......... 18% 58.4M 2s +2024-03-16T16:52:07Z #15 1.600 23600K .......... .......... .......... .......... .......... 18% 38.4M 2s +2024-03-16T16:52:07Z #15 1.601 23650K .......... .......... .......... .......... .......... 18% 8.64M 2s +2024-03-16T16:52:07Z #15 1.607 23700K .......... .......... .......... .......... .......... 18% 20.1M 2s +2024-03-16T16:52:07Z #15 1.609 23750K .......... .......... .......... .......... .......... 18% 58.0M 2s +2024-03-16T16:52:07Z #15 1.612 23800K .......... .......... .......... .......... .......... 18% 69.1M 2s +2024-03-16T16:52:07Z #15 1.612 23850K .......... .......... .......... .......... .......... 18% 130M 2s +2024-03-16T16:52:07Z #15 1.612 23900K .......... .......... .......... .......... .......... 18% 117M 2s +2024-03-16T16:52:07Z #15 1.612 23950K .......... .......... .......... .......... .......... 18% 16.3M 2s +2024-03-16T16:52:07Z #15 1.614 24000K .......... .......... .......... .......... .......... 18% 168M 2s +2024-03-16T16:52:07Z #15 1.615 24050K .......... .......... .......... .......... .......... 19% 138M 2s +2024-03-16T16:52:07Z #15 1.615 24100K .......... .......... .......... .......... .......... 19% 75.0M 2s +2024-03-16T16:52:07Z #15 1.616 24150K .......... .......... .......... .......... .......... 19% 113M 2s +2024-03-16T16:52:07Z #15 1.616 24200K .......... .......... .......... .......... .......... 19% 151M 2s +2024-03-16T16:52:07Z #15 1.616 24250K .......... .......... .......... .......... .......... 19% 29.9M 2s +2024-03-16T16:52:07Z #15 1.618 24300K .......... .......... .......... .......... .......... 19% 54.3M 2s +2024-03-16T16:52:07Z #15 1.619 24350K .......... .......... .......... .......... .......... 19% 35.5M 2s +2024-03-16T16:52:07Z #15 1.620 24400K .......... .......... .......... .......... .......... 19% 51.4M 2s +2024-03-16T16:52:07Z #15 1.622 24450K .......... .......... .......... .......... .......... 19% 46.6M 2s +2024-03-16T16:52:07Z #15 1.623 24500K .......... .......... .......... .......... .......... 19% 64.1M 2s +2024-03-16T16:52:07Z #15 1.623 24550K .......... .......... .......... .......... .......... 19% 112M 2s +2024-03-16T16:52:07Z #15 1.624 24600K .......... .......... .......... .......... .......... 19% 64.4M 2s +2024-03-16T16:52:07Z #15 1.625 24650K .......... .......... .......... .......... .......... 19% 80.6M 2s +2024-03-16T16:52:07Z #15 1.625 24700K .......... .......... .......... .......... .......... 19% 95.5M 2s +2024-03-16T16:52:07Z #15 1.625 24750K .......... .......... .......... .......... .......... 19% 73.1M 2s +2024-03-16T16:52:07Z #15 1.626 24800K .......... .......... .......... .......... .......... 19% 156M 2s +2024-03-16T16:52:07Z #15 1.626 24850K .......... .......... .......... .......... .......... 19% 46.2M 2s +2024-03-16T16:52:07Z #15 1.627 24900K .......... .......... .......... .......... .......... 19% 125M 2s +2024-03-16T16:52:07Z #15 1.628 24950K .......... .......... .......... .......... .......... 19% 63.5M 2s +2024-03-16T16:52:07Z #15 1.629 25000K .......... .......... .......... .......... .......... 19% 38.8M 2s +2024-03-16T16:52:07Z #15 1.630 25050K .......... .......... .......... .......... .......... 19% 82.1M 2s +2024-03-16T16:52:07Z #15 1.631 25100K .......... .......... .......... .......... .......... 19% 31.0M 2s +2024-03-16T16:52:07Z #15 1.634 25150K .......... .......... .......... .......... .......... 19% 54.9M 2s +2024-03-16T16:52:07Z #15 1.634 25200K .......... .......... .......... .......... .......... 19% 31.2M 2s +2024-03-16T16:52:07Z #15 1.635 25250K .......... .......... .......... .......... .......... 19% 17.2M 2s +2024-03-16T16:52:07Z #15 1.637 25300K .......... .......... .......... .......... .......... 19% 165M 2s +2024-03-16T16:52:07Z #15 1.638 25350K .......... .......... .......... .......... .......... 20% 126M 2s +2024-03-16T16:52:07Z #15 1.638 25400K .......... .......... .......... .......... .......... 20% 172M 2s +2024-03-16T16:52:07Z #15 1.638 25450K .......... .......... .......... .......... .......... 20% 45.3M 2s +2024-03-16T16:52:07Z #15 1.639 25500K .......... .......... .......... .......... .......... 20% 138M 2s +2024-03-16T16:52:07Z #15 1.640 25550K .......... .......... .......... .......... .......... 20% 71.1M 2s +2024-03-16T16:52:07Z #15 1.641 25600K .......... .......... .......... .......... .......... 20% 143M 2s +2024-03-16T16:52:07Z #15 1.641 25650K .......... .......... .......... .......... .......... 20% 40.8M 2s +2024-03-16T16:52:07Z #15 1.642 25700K .......... .......... .......... .......... .......... 20% 89.9M 2s +2024-03-16T16:52:07Z #15 1.642 25750K .......... .......... .......... .......... .......... 20% 138M 2s +2024-03-16T16:52:07Z #15 1.643 25800K .......... .......... .......... .......... .......... 20% 139M 2s +2024-03-16T16:52:07Z #15 1.643 25850K .......... .......... .......... .......... .......... 20% 28.7M 2s +2024-03-16T16:52:07Z #15 1.645 25900K .......... .......... .......... .......... .......... 20% 51.8M 2s +2024-03-16T16:52:07Z #15 1.646 25950K .......... .......... .......... .......... .......... 20% 42.9M 2s +2024-03-16T16:52:07Z #15 1.647 26000K .......... .......... .......... .......... .......... 20% 56.5M 2s +2024-03-16T16:52:07Z #15 1.648 26050K .......... .......... .......... .......... .......... 20% 165M 2s +2024-03-16T16:52:07Z #15 1.650 26100K .......... .......... .......... .......... .......... 20% 132M 2s +2024-03-16T16:52:07Z #15 1.650 26150K .......... .......... .......... .......... .......... 20% 141M 2s +2024-03-16T16:52:07Z #15 1.650 26200K .......... .......... .......... .......... .......... 20% 85.3M 2s +2024-03-16T16:52:07Z #15 1.650 26250K .......... .......... .......... .......... .......... 20% 45.8M 2s +2024-03-16T16:52:07Z #15 1.651 26300K .......... .......... .......... .......... .......... 20% 32.2M 2s +2024-03-16T16:52:07Z #15 1.652 26350K .......... .......... .......... .......... .......... 20% 33.6M 2s +2024-03-16T16:52:07Z #15 1.654 26400K .......... .......... .......... .......... .......... 20% 21.9M 2s +2024-03-16T16:52:07Z #15 1.656 26450K .......... .......... .......... .......... .......... 20% 58.3M 2s +2024-03-16T16:52:07Z #15 1.657 26500K .......... .......... .......... .......... .......... 20% 40.9M 2s +2024-03-16T16:52:07Z #15 1.658 26550K .......... .......... .......... .......... .......... 20% 49.3M 2s +2024-03-16T16:52:07Z #15 1.659 26600K .......... .......... .......... .......... .......... 21% 51.2M 2s +2024-03-16T16:52:07Z #15 1.660 26650K .......... .......... .......... .......... .......... 21% 96.0M 2s +2024-03-16T16:52:07Z #15 1.660 26700K .......... .......... .......... .......... .......... 21% 140M 2s +2024-03-16T16:52:07Z #15 1.661 26750K .......... .......... .......... .......... .......... 21% 86.6M 2s +2024-03-16T16:52:07Z #15 1.661 26800K .......... .......... .......... .......... .......... 21% 49.1M 2s +2024-03-16T16:52:07Z #15 1.662 26850K .......... .......... .......... .......... .......... 21% 99.0M 2s +2024-03-16T16:52:07Z #15 1.663 26900K .......... .......... .......... .......... .......... 21% 145M 2s +2024-03-16T16:52:07Z #15 1.663 26950K .......... .......... .......... .......... .......... 21% 41.6M 2s +2024-03-16T16:52:07Z #15 1.664 27000K .......... .......... .......... .......... .......... 21% 150M 2s +2024-03-16T16:52:07Z #15 1.665 27050K .......... .......... .......... .......... .......... 21% 79.3M 2s +2024-03-16T16:52:07Z #15 1.665 27100K .......... .......... .......... .......... .......... 21% 84.5M 2s +2024-03-16T16:52:07Z #15 1.666 27150K .......... .......... .......... .......... .......... 21% 118M 2s +2024-03-16T16:52:07Z #15 1.666 27200K .......... .......... .......... .......... .......... 21% 52.9M 2s +2024-03-16T16:52:07Z #15 1.667 27250K .......... .......... .......... .......... .......... 21% 122M 2s +2024-03-16T16:52:07Z #15 1.667 27300K .......... .......... .......... .......... .......... 21% 70.6M 2s +2024-03-16T16:52:07Z #15 1.668 27350K .......... .......... .......... .......... .......... 21% 139M 2s +2024-03-16T16:52:07Z #15 1.668 27400K .......... .......... .......... .......... .......... 21% 41.6M 2s +2024-03-16T16:52:07Z #15 1.670 27450K .......... .......... .......... .......... .......... 21% 89.5M 2s +2024-03-16T16:52:07Z #15 1.670 27500K .......... .......... .......... .......... .......... 21% 147M 2s +2024-03-16T16:52:07Z #15 1.671 27550K .......... .......... .......... .......... .......... 21% 49.0M 2s +2024-03-16T16:52:07Z #15 1.671 27600K .......... .......... .......... .......... .......... 21% 157M 2s +2024-03-16T16:52:07Z #15 1.674 27650K .......... .......... .......... .......... .......... 21% 187M 2s +2024-03-16T16:52:07Z #15 1.674 27700K .......... .......... .......... .......... .......... 21% 129M 2s +2024-03-16T16:52:07Z #15 1.674 27750K .......... .......... .......... .......... .......... 21% 76.1M 2s +2024-03-16T16:52:07Z #15 1.674 27800K .......... .......... .......... .......... .......... 21% 83.3M 2s +2024-03-16T16:52:07Z #15 1.674 27850K .......... .......... .......... .......... .......... 22% 70.5M 2s +2024-03-16T16:52:07Z #15 1.674 27900K .......... .......... .......... .......... .......... 22% 152M 2s +2024-03-16T16:52:07Z #15 1.675 27950K .......... .......... .......... .......... .......... 22% 112M 2s +2024-03-16T16:52:07Z #15 1.675 28000K .......... .......... .......... .......... .......... 22% 80.5M 2s +2024-03-16T16:52:07Z #15 1.676 28050K .......... .......... .......... .......... .......... 22% 93.8M 2s +2024-03-16T16:52:07Z #15 1.676 28100K .......... .......... .......... .......... .......... 22% 133M 2s +2024-03-16T16:52:07Z #15 1.676 28150K .......... .......... .......... .......... .......... 22% 129M 2s +2024-03-16T16:52:07Z #15 1.677 28200K .......... .......... .......... .......... .......... 22% 92.9M 2s +2024-03-16T16:52:07Z #15 1.677 28250K .......... .......... .......... .......... .......... 22% 31.9M 2s +2024-03-16T16:52:07Z #15 1.679 28300K .......... .......... .......... .......... .......... 22% 38.5M 2s +2024-03-16T16:52:07Z #15 1.680 28350K .......... .......... .......... .......... .......... 22% 46.7M 2s +2024-03-16T16:52:07Z #15 1.681 28400K .......... .......... .......... .......... .......... 22% 34.2M 2s +2024-03-16T16:52:07Z #15 1.683 28450K .......... .......... .......... .......... .......... 22% 42.1M 2s +2024-03-16T16:52:07Z #15 1.684 28500K .......... .......... .......... .......... .......... 22% 44.3M 2s +2024-03-16T16:52:07Z #15 1.685 28550K .......... .......... .......... .......... .......... 22% 11.5M 2s +2024-03-16T16:52:07Z #15 1.689 28600K .......... .......... .......... .......... .......... 22% 73.7M 2s +2024-03-16T16:52:07Z #15 1.690 28650K .......... .......... .......... .......... .......... 22% 77.3M 2s +2024-03-16T16:52:07Z #15 1.690 28700K .......... .......... .......... .......... .......... 22% 49.2M 2s +2024-03-16T16:52:07Z #15 1.691 28750K .......... .......... .......... .......... .......... 22% 132M 2s +2024-03-16T16:52:07Z #15 1.692 28800K .......... .......... .......... .......... .......... 22% 151M 2s +2024-03-16T16:52:07Z #15 1.692 28850K .......... .......... .......... .......... .......... 22% 156M 2s +2024-03-16T16:52:07Z #15 1.693 28900K .......... .......... .......... .......... .......... 22% 27.3M 2s +2024-03-16T16:52:07Z #15 1.694 28950K .......... .......... .......... .......... .......... 22% 125M 2s +2024-03-16T16:52:07Z #15 1.695 29000K .......... .......... .......... .......... .......... 22% 91.0M 2s +2024-03-16T16:52:07Z #15 1.695 29050K .......... .......... .......... .......... .......... 22% 23.5M 2s +2024-03-16T16:52:07Z #15 1.697 29100K .......... .......... .......... .......... .......... 22% 116M 2s +2024-03-16T16:52:07Z #15 1.698 29150K .......... .......... .......... .......... .......... 23% 128M 2s +2024-03-16T16:52:07Z #15 1.698 29200K .......... .......... .......... .......... .......... 23% 152M 2s +2024-03-16T16:52:07Z #15 1.698 29250K .......... .......... .......... .......... .......... 23% 139M 2s +2024-03-16T16:52:07Z #15 1.699 29300K .......... .......... .......... .......... .......... 23% 143M 2s +2024-03-16T16:52:07Z #15 1.699 29350K .......... .......... .......... .......... .......... 23% 151M 2s +2024-03-16T16:52:07Z #15 1.699 29400K .......... .......... .......... .......... .......... 23% 169M 2s +2024-03-16T16:52:07Z #15 1.700 29450K .......... .......... .......... .......... .......... 23% 153M 2s +2024-03-16T16:52:07Z #15 1.700 29500K .......... .......... .......... .......... .......... 23% 162M 2s +2024-03-16T16:52:07Z #15 1.700 29550K .......... .......... .......... .......... .......... 23% 21.1M 2s +2024-03-16T16:52:07Z #15 1.703 29600K .......... .......... .......... .......... .......... 23% 129M 2s +2024-03-16T16:52:07Z #15 1.703 29650K .......... .......... .......... .......... .......... 23% 152M 2s +2024-03-16T16:52:07Z #15 1.703 29700K .......... .......... .......... .......... .......... 23% 145M 2s +2024-03-16T16:52:07Z #15 1.704 29750K .......... .......... .......... .......... .......... 23% 86.8M 2s +2024-03-16T16:52:07Z #15 1.704 29800K .......... .......... .......... .......... .......... 23% 158M 2s +2024-03-16T16:52:07Z #15 1.705 29850K .......... .......... .......... .......... .......... 23% 161M 2s +2024-03-16T16:52:07Z #15 1.705 29900K .......... .......... .......... .......... .......... 23% 162M 2s +2024-03-16T16:52:07Z #15 1.705 29950K .......... .......... .......... .......... .......... 23% 137M 2s +2024-03-16T16:52:07Z #15 1.706 30000K .......... .......... .......... .......... .......... 23% 10.4M 2s +2024-03-16T16:52:07Z #15 1.710 30050K .......... .......... .......... .......... .......... 23% 174M 2s +2024-03-16T16:52:07Z #15 1.710 30100K .......... .......... .......... .......... .......... 23% 54.9M 2s +2024-03-16T16:52:07Z #15 1.712 30150K .......... .......... .......... .......... .......... 23% 83.3M 2s +2024-03-16T16:52:07Z #15 1.712 30200K .......... .......... .......... .......... .......... 23% 50.4M 2s +2024-03-16T16:52:07Z #15 1.713 30250K .......... .......... .......... .......... .......... 23% 58.5M 2s +2024-03-16T16:52:07Z #15 1.714 30300K .......... .......... .......... .......... .......... 23% 44.5M 2s +2024-03-16T16:52:07Z #15 1.715 30350K .......... .......... .......... .......... .......... 23% 53.7M 2s +2024-03-16T16:52:07Z #15 1.716 30400K .......... .......... .......... .......... .......... 24% 158M 2s +2024-03-16T16:52:07Z #15 1.716 30450K .......... .......... .......... .......... .......... 24% 62.6M 2s +2024-03-16T16:52:07Z #15 1.717 30500K .......... .......... .......... .......... .......... 24% 54.6M 2s +2024-03-16T16:52:07Z #15 1.718 30550K .......... .......... .......... .......... .......... 24% 66.4M 2s +2024-03-16T16:52:07Z #15 1.719 30600K .......... .......... .......... .......... .......... 24% 67.4M 2s +2024-03-16T16:52:07Z #15 1.720 30650K .......... .......... .......... .......... .......... 24% 76.6M 2s +2024-03-16T16:52:07Z #15 1.720 30700K .......... .......... .......... .......... .......... 24% 89.3M 2s +2024-03-16T16:52:07Z #15 1.726 30750K .......... .......... .......... .......... .......... 24% 51.6M 2s +2024-03-16T16:52:07Z #15 1.726 30800K .......... .......... .......... .......... .......... 24% 38.9M 2s +2024-03-16T16:52:07Z #15 1.726 30850K .......... .......... .......... .......... .......... 24% 119M 2s +2024-03-16T16:52:07Z #15 1.726 30900K .......... .......... .......... .......... .......... 24% 83.2M 2s +2024-03-16T16:52:07Z #15 1.726 30950K .......... .......... .......... .......... .......... 24% 145M 2s +2024-03-16T16:52:07Z #15 1.726 31000K .......... .......... .......... .......... .......... 24% 79.6M 2s +2024-03-16T16:52:07Z #15 1.726 31050K .......... .......... .......... .......... .......... 24% 177M 2s +2024-03-16T16:52:07Z #15 1.726 31100K .......... .......... .......... .......... .......... 24% 166M 2s +2024-03-16T16:52:07Z #15 1.726 31150K .......... .......... .......... .......... .......... 24% 74.6M 2s +2024-03-16T16:52:07Z #15 1.726 31200K .......... .......... .......... .......... .......... 24% 161M 2s +2024-03-16T16:52:07Z #15 1.726 31250K .......... .......... .......... .......... .......... 24% 80.4M 2s +2024-03-16T16:52:07Z #15 1.727 31300K .......... .......... .......... .......... .......... 24% 146M 2s +2024-03-16T16:52:07Z #15 1.727 31350K .......... .......... .......... .......... .......... 24% 138M 2s +2024-03-16T16:52:07Z #15 1.728 31400K .......... .......... .......... .......... .......... 24% 90.7M 2s +2024-03-16T16:52:07Z #15 1.728 31450K .......... .......... .......... .......... .......... 24% 169M 2s +2024-03-16T16:52:07Z #15 1.728 31500K .......... .......... .......... .......... .......... 24% 79.1M 2s +2024-03-16T16:52:07Z #15 1.729 31550K .......... .......... .......... .......... .......... 24% 152M 2s +2024-03-16T16:52:07Z #15 1.729 31600K .......... .......... .......... .......... .......... 24% 151M 2s +2024-03-16T16:52:07Z #15 1.730 31650K .......... .......... .......... .......... .......... 25% 89.9M 2s +2024-03-16T16:52:07Z #15 1.730 31700K .......... .......... .......... .......... .......... 25% 143M 2s +2024-03-16T16:52:08Z #15 1.730 31750K .......... .......... .......... .......... .......... 25% 92.2M 2s +2024-03-16T16:52:08Z #15 1.731 31800K .......... .......... .......... .......... .......... 25% 115M 2s +2024-03-16T16:52:08Z #15 1.732 31850K .......... .......... .......... .......... .......... 25% 94.1M 2s +2024-03-16T16:52:08Z #15 1.732 31900K .......... .......... .......... .......... .......... 25% 167M 2s +2024-03-16T16:52:08Z #15 1.732 31950K .......... .......... .......... .......... .......... 25% 69.0M 2s +2024-03-16T16:52:08Z #15 1.733 32000K .......... .......... .......... .......... .......... 25% 167M 2s +2024-03-16T16:52:08Z #15 1.733 32050K .......... .......... .......... .......... .......... 25% 68.8M 2s +2024-03-16T16:52:08Z #15 1.734 32100K .......... .......... .......... .......... .......... 25% 58.1M 2s +2024-03-16T16:52:08Z #15 1.735 32150K .......... .......... .......... .......... .......... 25% 24.3M 2s +2024-03-16T16:52:08Z #15 1.737 32200K .......... .......... .......... .......... .......... 25% 24.7M 2s +2024-03-16T16:52:08Z #15 1.739 32250K .......... .......... .......... .......... .......... 25% 24.6M 2s +2024-03-16T16:52:08Z #15 1.741 32300K .......... .......... .......... .......... .......... 25% 30.6M 2s +2024-03-16T16:52:08Z #15 1.742 32350K .......... .......... .......... .......... .......... 25% 27.0M 2s +2024-03-16T16:52:08Z #15 1.744 32400K .......... .......... .......... .......... .......... 25% 32.1M 2s +2024-03-16T16:52:08Z #15 1.746 32450K .......... .......... .......... .......... .......... 25% 134M 2s +2024-03-16T16:52:08Z #15 1.746 32500K .......... .......... .......... .......... .......... 25% 81.7M 2s +2024-03-16T16:52:08Z #15 1.747 32550K .......... .......... .......... .......... .......... 25% 81.3M 2s +2024-03-16T16:52:08Z #15 1.747 32600K .......... .......... .......... .......... .......... 25% 75.4M 2s +2024-03-16T16:52:08Z #15 1.748 32650K .......... .......... .......... .......... .......... 25% 101M 2s +2024-03-16T16:52:08Z #15 1.748 32700K .......... .......... .......... .......... .......... 25% 119M 2s +2024-03-16T16:52:08Z #15 1.749 32750K .......... .......... .......... .......... .......... 25% 135M 2s +2024-03-16T16:52:08Z #15 1.750 32800K .......... .......... .......... .......... .......... 25% 72.0M 2s +2024-03-16T16:52:08Z #15 1.750 32850K .......... .......... .......... .......... .......... 25% 162M 2s +2024-03-16T16:52:08Z #15 1.750 32900K .......... .......... .......... .......... .......... 25% 68.6M 2s +2024-03-16T16:52:08Z #15 1.751 32950K .......... .......... .......... .......... .......... 26% 135M 2s +2024-03-16T16:52:08Z #15 1.751 33000K .......... .......... .......... .......... .......... 26% 153M 2s +2024-03-16T16:52:08Z #15 1.751 33050K .......... .......... .......... .......... .......... 26% 150M 2s +2024-03-16T16:52:08Z #15 1.752 33100K .......... .......... .......... .......... .......... 26% 148M 2s +2024-03-16T16:52:08Z #15 1.752 33150K .......... .......... .......... .......... .......... 26% 51.1M 2s +2024-03-16T16:52:08Z #15 1.753 33200K .......... .......... .......... .......... .......... 26% 63.1M 2s +2024-03-16T16:52:08Z #15 1.754 33250K .......... .......... .......... .......... .......... 26% 57.0M 2s +2024-03-16T16:52:08Z #15 1.755 33300K .......... .......... .......... .......... .......... 26% 73.4M 2s +2024-03-16T16:52:08Z #15 1.755 33350K .......... .......... .......... .......... .......... 26% 96.5M 2s +2024-03-16T16:52:08Z #15 1.756 33400K .......... .......... .......... .......... .......... 26% 65.1M 2s +2024-03-16T16:52:08Z #15 1.757 33450K .......... .......... .......... .......... .......... 26% 155M 2s +2024-03-16T16:52:08Z #15 1.757 33500K .......... .......... .......... .......... .......... 26% 53.5M 2s +2024-03-16T16:52:08Z #15 1.758 33550K .......... .......... .......... .......... .......... 26% 63.6M 2s +2024-03-16T16:52:08Z #15 1.759 33600K .......... .......... .......... .......... .......... 26% 59.3M 2s +2024-03-16T16:52:08Z #15 1.759 33650K .......... .......... .......... .......... .......... 26% 82.3M 2s +2024-03-16T16:52:08Z #15 1.760 33700K .......... .......... .......... .......... .......... 26% 70.6M 2s +2024-03-16T16:52:08Z #15 1.762 33750K .......... .......... .......... .......... .......... 26% 94.3M 2s +2024-03-16T16:52:08Z #15 1.762 33800K .......... .......... .......... .......... .......... 26% 172M 2s +2024-03-16T16:52:08Z #15 1.762 33850K .......... .......... .......... .......... .......... 26% 66.2M 2s +2024-03-16T16:52:08Z #15 1.763 33900K .......... .......... .......... .......... .......... 26% 59.7M 2s +2024-03-16T16:52:08Z #15 1.763 33950K .......... .......... .......... .......... .......... 26% 56.5M 2s +2024-03-16T16:52:08Z #15 1.764 34000K .......... .......... .......... .......... .......... 26% 90.8M 2s +2024-03-16T16:52:08Z #15 1.764 34050K .......... .......... .......... .......... .......... 26% 160M 2s +2024-03-16T16:52:08Z #15 1.765 34100K .......... .......... .......... .......... .......... 26% 31.7M 2s +2024-03-16T16:52:08Z #15 1.766 34150K .......... .......... .......... .......... .......... 26% 25.1M 2s +2024-03-16T16:52:08Z #15 1.768 34200K .......... .......... .......... .......... .......... 27% 58.4M 2s +2024-03-16T16:52:08Z #15 1.769 34250K .......... .......... .......... .......... .......... 27% 21.7M 2s +2024-03-16T16:52:08Z #15 1.771 34300K .......... .......... .......... .......... .......... 27% 164M 2s +2024-03-16T16:52:08Z #15 1.772 34350K .......... .......... .......... .......... .......... 27% 30.3M 2s +2024-03-16T16:52:08Z #15 1.773 34400K .......... .......... .......... .......... .......... 27% 50.5M 2s +2024-03-16T16:52:08Z #15 1.798 34450K .......... .......... .......... .......... .......... 27% 63.8M 2s +2024-03-16T16:52:08Z #15 1.798 34500K .......... .......... .......... .......... .......... 27% 65.8M 2s +2024-03-16T16:52:08Z #15 1.798 34550K .......... .......... .......... .......... .......... 27% 59.4M 2s +2024-03-16T16:52:08Z #15 1.798 34600K .......... .......... .......... .......... .......... 27% 45.1M 2s +2024-03-16T16:52:08Z #15 1.798 34650K .......... .......... .......... .......... .......... 27% 74.0M 2s +2024-03-16T16:52:08Z #15 1.798 34700K .......... .......... .......... .......... .......... 27% 107M 2s +2024-03-16T16:52:08Z #15 1.798 34750K .......... .......... .......... .......... .......... 27% 81.4M 2s +2024-03-16T16:52:08Z #15 1.798 34800K .......... .......... .......... .......... .......... 27% 191M 2s +2024-03-16T16:52:08Z #15 1.798 34850K .......... .......... .......... .......... .......... 27% 88.1M 2s +2024-03-16T16:52:08Z #15 1.798 34900K .......... .......... .......... .......... .......... 27% 177M 2s +2024-03-16T16:52:08Z #15 1.798 34950K .......... .......... .......... .......... .......... 27% 139M 2s +2024-03-16T16:52:08Z #15 1.798 35000K .......... .......... .......... .......... .......... 27% 171M 2s +2024-03-16T16:52:08Z #15 1.798 35050K .......... .......... .......... .......... .......... 27% 117M 2s +2024-03-16T16:52:08Z #15 1.798 35100K .......... .......... .......... .......... .......... 27% 155M 2s +2024-03-16T16:52:08Z #15 1.798 35150K .......... .......... .......... .......... .......... 27% 143M 2s +2024-03-16T16:52:08Z #15 1.798 35200K .......... .......... .......... .......... .......... 27% 134M 2s +2024-03-16T16:52:08Z #15 1.798 35250K .......... .......... .......... .......... .......... 27% 168M 2s +2024-03-16T16:52:08Z #15 1.798 35300K .......... .......... .......... .......... .......... 27% 29.7M 2s +2024-03-16T16:52:08Z #15 1.798 35350K .......... .......... .......... .......... .......... 27% 124M 2s +2024-03-16T16:52:08Z #15 1.798 35400K .......... .......... .......... .......... .......... 27% 171M 2s +2024-03-16T16:52:08Z #15 1.798 35450K .......... .......... .......... .......... .......... 28% 176M 2s +2024-03-16T16:52:08Z #15 1.798 35500K .......... .......... .......... .......... .......... 28% 67.1M 2s +2024-03-16T16:52:08Z #15 1.798 35550K .......... .......... .......... .......... .......... 28% 180M 2s +2024-03-16T16:52:08Z #15 1.798 35600K .......... .......... .......... .......... .......... 28% 114M 2s +2024-03-16T16:52:08Z #15 1.798 35650K .......... .......... .......... .......... .......... 28% 177M 2s +2024-03-16T16:52:08Z #15 1.798 35700K .......... .......... .......... .......... .......... 28% 79.1M 2s +2024-03-16T16:52:08Z #15 1.798 35750K .......... .......... .......... .......... .......... 28% 35.1M 2s +2024-03-16T16:52:08Z #15 1.798 35800K .......... .......... .......... .......... .......... 28% 115M 2s +2024-03-16T16:52:08Z #15 1.798 35850K .......... .......... .......... .......... .......... 28% 171M 2s +2024-03-16T16:52:08Z #15 1.798 35900K .......... .......... .......... .......... .......... 28% 34.1M 2s +2024-03-16T16:52:08Z #15 1.798 35950K .......... .......... .......... .......... .......... 28% 41.5M 2s +2024-03-16T16:52:08Z #15 1.798 36000K .......... .......... .......... .......... .......... 28% 163M 2s +2024-03-16T16:52:08Z #15 1.798 36050K .......... .......... .......... .......... .......... 28% 56.7M 2s +2024-03-16T16:52:08Z #15 1.798 36100K .......... .......... .......... .......... .......... 28% 139M 2s +2024-03-16T16:52:08Z #15 1.798 36150K .......... .......... .......... .......... .......... 28% 40.4M 2s +2024-03-16T16:52:08Z #15 1.798 36200K .......... .......... .......... .......... .......... 28% 41.8M 2s +2024-03-16T16:52:08Z #15 1.798 36250K .......... .......... .......... .......... .......... 28% 53.8M 2s +2024-03-16T16:52:08Z #15 1.803 36300K .......... .......... .......... .......... .......... 28% 27.4M 2s +2024-03-16T16:52:08Z #15 1.803 36350K .......... .......... .......... .......... .......... 28% 50.2M 2s +2024-03-16T16:52:08Z #15 1.803 36400K .......... .......... .......... .......... .......... 28% 54.1M 2s +2024-03-16T16:52:08Z #15 1.803 36450K .......... .......... .......... .......... .......... 28% 40.2M 2s +2024-03-16T16:52:08Z #15 1.803 36500K .......... .......... .......... .......... .......... 28% 24.7M 2s +2024-03-16T16:52:08Z #15 1.805 36550K .......... .......... .......... .......... .......... 28% 19.1M 2s +2024-03-16T16:52:08Z #15 1.818 36600K .......... .......... .......... .......... .......... 28% 53.4M 2s +2024-03-16T16:52:08Z #15 1.818 36650K .......... .......... .......... .......... .......... 28% 69.1M 2s +2024-03-16T16:52:08Z #15 1.818 36700K .......... .......... .......... .......... .......... 28% 56.5M 2s +2024-03-16T16:52:08Z #15 1.818 36750K .......... .......... .......... .......... .......... 29% 67.6M 2s +2024-03-16T16:52:08Z #15 1.818 36800K .......... .......... .......... .......... .......... 29% 213M 2s +2024-03-16T16:52:08Z #15 1.818 36850K .......... .......... .......... .......... .......... 29% 216M 2s +2024-03-16T16:52:08Z #15 1.818 36900K .......... .......... .......... .......... .......... 29% 228M 2s +2024-03-16T16:52:08Z #15 1.818 36950K .......... .......... .......... .......... .......... 29% 34.7M 2s +2024-03-16T16:52:08Z #15 1.818 37000K .......... .......... .......... .......... .......... 29% 68.8M 2s +2024-03-16T16:52:08Z #15 1.818 37050K .......... .......... .......... .......... .......... 29% 36.8M 2s +2024-03-16T16:52:08Z #15 1.818 37100K .......... .......... .......... .......... .......... 29% 53.4M 2s +2024-03-16T16:52:08Z #15 1.818 37150K .......... .......... .......... .......... .......... 29% 38.4M 2s +2024-03-16T16:52:08Z #15 1.818 37200K .......... .......... .......... .......... .......... 29% 41.9M 2s +2024-03-16T16:52:08Z #15 1.818 37250K .......... .......... .......... .......... .......... 29% 181M 2s +2024-03-16T16:52:08Z #15 1.818 37300K .......... .......... .......... .......... .......... 29% 21.5M 2s +2024-03-16T16:52:08Z #15 1.822 37350K .......... .......... .......... .......... .......... 29% 45.2M 2s +2024-03-16T16:52:08Z #15 1.822 37400K .......... .......... .......... .......... .......... 29% 52.9M 2s +2024-03-16T16:52:08Z #15 1.822 37450K .......... .......... .......... .......... .......... 29% 52.6M 2s +2024-03-16T16:52:08Z #15 1.826 37500K .......... .......... .......... .......... .......... 29% 80.2M 2s +2024-03-16T16:52:08Z #15 1.826 37550K .......... .......... .......... .......... .......... 29% 60.4M 2s +2024-03-16T16:52:08Z #15 1.826 37600K .......... .......... .......... .......... .......... 29% 47.8M 2s +2024-03-16T16:52:08Z #15 1.826 37650K .......... .......... .......... .......... .......... 29% 21.7M 2s +2024-03-16T16:52:08Z #15 1.828 37700K .......... .......... .......... .......... .......... 29% 36.4M 2s +2024-03-16T16:52:08Z #15 1.829 37750K .......... .......... .......... .......... .......... 29% 32.1M 2s +2024-03-16T16:52:08Z #15 1.830 37800K .......... .......... .......... .......... .......... 29% 41.6M 2s +2024-03-16T16:52:08Z #15 1.832 37850K .......... .......... .......... .......... .......... 29% 31.8M 2s +2024-03-16T16:52:08Z #15 1.834 37900K .......... .......... .......... .......... .......... 29% 28.1M 2s +2024-03-16T16:52:08Z #15 1.835 37950K .......... .......... .......... .......... .......... 29% 23.6M 2s +2024-03-16T16:52:08Z #15 1.837 38000K .......... .......... .......... .......... .......... 30% 24.1M 2s +2024-03-16T16:52:08Z #15 1.840 38050K .......... .......... .......... .......... .......... 30% 25.3M 2s +2024-03-16T16:52:08Z #15 1.841 38100K .......... .......... .......... .......... .......... 30% 19.1M 2s +2024-03-16T16:52:08Z #15 1.845 38150K .......... .......... .......... .......... .......... 30% 15.6M 2s +2024-03-16T16:52:08Z #15 1.847 38200K .......... .......... .......... .......... .......... 30% 31.4M 2s +2024-03-16T16:52:08Z #15 1.848 38250K .......... .......... .......... .......... .......... 30% 56.4M 2s +2024-03-16T16:52:08Z #15 1.849 38300K .......... .......... .......... .......... .......... 30% 33.3M 2s +2024-03-16T16:52:08Z #15 1.851 38350K .......... .......... .......... .......... .......... 30% 38.8M 2s +2024-03-16T16:52:08Z #15 1.854 38400K .......... .......... .......... .......... .......... 30% 93.3M 2s +2024-03-16T16:52:08Z #15 1.854 38450K .......... .......... .......... .......... .......... 30% 179M 2s +2024-03-16T16:52:08Z #15 1.854 38500K .......... .......... .......... .......... .......... 30% 157M 2s +2024-03-16T16:52:08Z #15 1.854 38550K .......... .......... .......... .......... .......... 30% 106M 2s +2024-03-16T16:52:08Z #15 1.854 38600K .......... .......... .......... .......... .......... 30% 150M 2s +2024-03-16T16:52:08Z #15 1.854 38650K .......... .......... .......... .......... .......... 30% 8.94M 2s +2024-03-16T16:52:08Z #15 1.862 38700K .......... .......... .......... .......... .......... 30% 175M 2s +2024-03-16T16:52:08Z #15 1.862 38750K .......... .......... .......... .......... .......... 30% 89.7M 2s +2024-03-16T16:52:08Z #15 1.862 38800K .......... .......... .......... .......... .......... 30% 173M 2s +2024-03-16T16:52:08Z #15 1.862 38850K .......... .......... .......... .......... .......... 30% 115M 2s +2024-03-16T16:52:08Z #15 1.862 38900K .......... .......... .......... .......... .......... 30% 113M 2s +2024-03-16T16:52:08Z #15 1.862 38950K .......... .......... .......... .......... .......... 30% 170M 2s +2024-03-16T16:52:08Z #15 1.862 39000K .......... .......... .......... .......... .......... 30% 16.3M 2s +2024-03-16T16:52:08Z #15 1.865 39050K .......... .......... .......... .......... .......... 30% 11.5M 2s +2024-03-16T16:52:08Z #15 1.869 39100K .......... .......... .......... .......... .......... 30% 21.0M 2s +2024-03-16T16:52:08Z #15 1.871 39150K .......... .......... .......... .......... .......... 30% 38.5M 2s +2024-03-16T16:52:08Z #15 1.874 39200K .......... .......... .......... .......... .......... 30% 80.1M 2s +2024-03-16T16:52:08Z #15 1.874 39250K .......... .......... .......... .......... .......... 30% 177M 2s +2024-03-16T16:52:08Z #15 1.874 39300K .......... .......... .......... .......... .......... 31% 102M 2s +2024-03-16T16:52:08Z #15 1.874 39350K .......... .......... .......... .......... .......... 31% 35.1M 2s +2024-03-16T16:52:08Z #15 1.875 39400K .......... .......... .......... .......... .......... 31% 35.9M 2s +2024-03-16T16:52:08Z #15 1.876 39450K .......... .......... .......... .......... .......... 31% 14.3M 2s +2024-03-16T16:52:08Z #15 1.880 39500K .......... .......... .......... .......... .......... 31% 45.7M 2s +2024-03-16T16:52:08Z #15 1.881 39550K .......... .......... .......... .......... .......... 31% 31.3M 2s +2024-03-16T16:52:08Z #15 1.882 39600K .......... .......... .......... .......... .......... 31% 25.6M 2s +2024-03-16T16:52:08Z #15 1.884 39650K .......... .......... .......... .......... .......... 31% 71.5M 2s +2024-03-16T16:52:08Z #15 1.885 39700K .......... .......... .......... .......... .......... 31% 118M 2s +2024-03-16T16:52:08Z #15 1.885 39750K .......... .......... .......... .......... .......... 31% 22.6M 2s +2024-03-16T16:52:08Z #15 1.888 39800K .......... .......... .......... .......... .......... 31% 22.0M 2s +2024-03-16T16:52:08Z #15 1.894 39850K .......... .......... .......... .......... .......... 31% 153M 2s +2024-03-16T16:52:08Z #15 1.894 39900K .......... .......... .......... .......... .......... 31% 142M 2s +2024-03-16T16:52:08Z #15 1.894 39950K .......... .......... .......... .......... .......... 31% 151M 2s +2024-03-16T16:52:08Z #15 1.894 40000K .......... .......... .......... .......... .......... 31% 69.7M 2s +2024-03-16T16:52:08Z #15 1.894 40050K .......... .......... .......... .......... .......... 31% 74.9M 2s +2024-03-16T16:52:08Z #15 1.894 40100K .......... .......... .......... .......... .......... 31% 126M 2s +2024-03-16T16:52:08Z #15 1.894 40150K .......... .......... .......... .......... .......... 31% 114M 2s +2024-03-16T16:52:08Z #15 1.894 40200K .......... .......... .......... .......... .......... 31% 103M 2s +2024-03-16T16:52:08Z #15 1.894 40250K .......... .......... .......... .......... .......... 31% 18.8M 2s +2024-03-16T16:52:08Z #15 1.896 40300K .......... .......... .......... .......... .......... 31% 43.0M 2s +2024-03-16T16:52:08Z #15 1.897 40350K .......... .......... .......... .......... .......... 31% 26.6M 2s +2024-03-16T16:52:08Z #15 1.899 40400K .......... .......... .......... .......... .......... 31% 70.6M 2s +2024-03-16T16:52:08Z #15 1.900 40450K .......... .......... .......... .......... .......... 31% 37.9M 2s +2024-03-16T16:52:08Z #15 1.901 40500K .......... .......... .......... .......... .......... 31% 30.8M 2s +2024-03-16T16:52:08Z #15 1.902 40550K .......... .......... .......... .......... .......... 32% 38.9M 2s +2024-03-16T16:52:08Z #15 1.904 40600K .......... .......... .......... .......... .......... 32% 51.9M 2s +2024-03-16T16:52:08Z #15 1.905 40650K .......... .......... .......... .......... .......... 32% 31.3M 2s +2024-03-16T16:52:08Z #15 1.906 40700K .......... .......... .......... .......... .......... 32% 72.3M 2s +2024-03-16T16:52:08Z #15 1.907 40750K .......... .......... .......... .......... .......... 32% 29.0M 2s +2024-03-16T16:52:08Z #15 1.909 40800K .......... .......... .......... .......... .......... 32% 24.0M 2s +2024-03-16T16:52:08Z #15 1.911 40850K .......... .......... .......... .......... .......... 32% 35.1M 2s +2024-03-16T16:52:08Z #15 1.912 40900K .......... .......... .......... .......... .......... 32% 36.9M 2s +2024-03-16T16:52:08Z #15 1.913 40950K .......... .......... .......... .......... .......... 32% 35.0M 2s +2024-03-16T16:52:08Z #15 1.915 41000K .......... .......... .......... .......... .......... 32% 23.6M 2s +2024-03-16T16:52:08Z #15 1.917 41050K .......... .......... .......... .......... .......... 32% 36.9M 2s +2024-03-16T16:52:08Z #15 1.918 41100K .......... .......... .......... .......... .......... 32% 49.6M 2s +2024-03-16T16:52:08Z #15 1.922 41150K .......... .......... .......... .......... .......... 32% 52.3M 2s +2024-03-16T16:52:08Z #15 1.922 41200K .......... .......... .......... .......... .......... 32% 37.1M 2s +2024-03-16T16:52:08Z #15 1.922 41250K .......... .......... .......... .......... .......... 32% 50.2M 2s +2024-03-16T16:52:08Z #15 1.922 41300K .......... .......... .......... .......... .......... 32% 47.6M 2s +2024-03-16T16:52:08Z #15 1.923 41350K .......... .......... .......... .......... .......... 32% 41.7M 2s +2024-03-16T16:52:08Z #15 1.930 41400K .......... .......... .......... .......... .......... 32% 38.3M 2s +2024-03-16T16:52:08Z #15 1.930 41450K .......... .......... .......... .......... .......... 32% 58.7M 2s +2024-03-16T16:52:08Z #15 1.930 41500K .......... .......... .......... .......... .......... 32% 55.6M 2s +2024-03-16T16:52:08Z #15 1.930 41550K .......... .......... .......... .......... .......... 32% 31.8M 2s +2024-03-16T16:52:08Z #15 1.930 41600K .......... .......... .......... .......... .......... 32% 53.2M 2s +2024-03-16T16:52:08Z #15 1.930 41650K .......... .......... .......... .......... .......... 32% 48.0M 2s +2024-03-16T16:52:08Z #15 1.931 41700K .......... .......... .......... .......... .......... 32% 84.2M 2s +2024-03-16T16:52:08Z #15 1.931 41750K .......... .......... .......... .......... .......... 32% 140M 2s +2024-03-16T16:52:08Z #15 1.932 41800K .......... .......... .......... .......... .......... 33% 60.4M 2s +2024-03-16T16:52:08Z #15 1.933 41850K .......... .......... .......... .......... .......... 33% 141M 2s +2024-03-16T16:52:08Z #15 1.933 41900K .......... .......... .......... .......... .......... 33% 140M 2s +2024-03-16T16:52:08Z #15 1.933 41950K .......... .......... .......... .......... .......... 33% 162M 2s +2024-03-16T16:52:08Z #15 1.934 42000K .......... .......... .......... .......... .......... 33% 125M 1s +2024-03-16T16:52:08Z #15 1.934 42050K .......... .......... .......... .......... .......... 33% 78.9M 1s +2024-03-16T16:52:08Z #15 1.934 42100K .......... .......... .......... .......... .......... 33% 157M 1s +2024-03-16T16:52:08Z #15 1.935 42150K .......... .......... .......... .......... .......... 33% 125M 1s +2024-03-16T16:52:08Z #15 1.935 42200K .......... .......... .......... .......... .......... 33% 80.6M 1s +2024-03-16T16:52:08Z #15 1.936 42250K .......... .......... .......... .......... .......... 33% 110M 1s +2024-03-16T16:52:08Z #15 1.936 42300K .......... .......... .......... .......... .......... 33% 138M 1s +2024-03-16T16:52:08Z #15 1.937 42350K .......... .......... .......... .......... .......... 33% 130M 1s +2024-03-16T16:52:08Z #15 1.937 42400K .......... .......... .......... .......... .......... 33% 86.5M 1s +2024-03-16T16:52:08Z #15 1.938 42450K .......... .......... .......... .......... .......... 33% 85.4M 1s +2024-03-16T16:52:08Z #15 1.938 42500K .......... .......... .......... .......... .......... 33% 70.5M 1s +2024-03-16T16:52:08Z #15 1.939 42550K .......... .......... .......... .......... .......... 33% 89.2M 1s +2024-03-16T16:52:08Z #15 1.939 42600K .......... .......... .......... .......... .......... 33% 36.1M 1s +2024-03-16T16:52:08Z #15 1.941 42650K .......... .......... .......... .......... .......... 33% 42.4M 1s +2024-03-16T16:52:08Z #15 1.946 42700K .......... .......... .......... .......... .......... 33% 59.9M 1s +2024-03-16T16:52:08Z #15 1.946 42750K .......... .......... .......... .......... .......... 33% 44.1M 1s +2024-03-16T16:52:08Z #15 1.946 42800K .......... .......... .......... .......... .......... 33% 47.6M 1s +2024-03-16T16:52:08Z #15 1.946 42850K .......... .......... .......... .......... .......... 33% 53.6M 1s +2024-03-16T16:52:08Z #15 1.946 42900K .......... .......... .......... .......... .......... 33% 81.1M 1s +2024-03-16T16:52:08Z #15 1.946 42950K .......... .......... .......... .......... .......... 33% 77.5M 1s +2024-03-16T16:52:08Z #15 1.947 43000K .......... .......... .......... .......... .......... 33% 87.4M 1s +2024-03-16T16:52:08Z #15 1.948 43050K .......... .......... .......... .......... .......... 33% 66.5M 1s +2024-03-16T16:52:08Z #15 1.948 43100K .......... .......... .......... .......... .......... 34% 105M 1s +2024-03-16T16:52:08Z #15 1.949 43150K .......... .......... .......... .......... .......... 34% 110M 1s +2024-03-16T16:52:08Z #15 1.949 43200K .......... .......... .......... .......... .......... 34% 144M 1s +2024-03-16T16:52:08Z #15 1.950 43250K .......... .......... .......... .......... .......... 34% 60.2M 1s +2024-03-16T16:52:08Z #15 1.950 43300K .......... .......... .......... .......... .......... 34% 115M 1s +2024-03-16T16:52:08Z #15 1.951 43350K .......... .......... .......... .......... .......... 34% 117M 1s +2024-03-16T16:52:08Z #15 1.951 43400K .......... .......... .......... .......... .......... 34% 134M 1s +2024-03-16T16:52:08Z #15 1.952 43450K .......... .......... .......... .......... .......... 34% 80.5M 1s +2024-03-16T16:52:08Z #15 1.954 43500K .......... .......... .......... .......... .......... 34% 130M 1s +2024-03-16T16:52:08Z #15 1.954 43550K .......... .......... .......... .......... .......... 34% 81.2M 1s +2024-03-16T16:52:08Z #15 1.954 43600K .......... .......... .......... .......... .......... 34% 176M 1s +2024-03-16T16:52:08Z #15 1.954 43650K .......... .......... .......... .......... .......... 34% 111M 1s +2024-03-16T16:52:08Z #15 1.954 43700K .......... .......... .......... .......... .......... 34% 96.6M 1s +2024-03-16T16:52:08Z #15 1.954 43750K .......... .......... .......... .......... .......... 34% 75.7M 1s +2024-03-16T16:52:08Z #15 1.955 43800K .......... .......... .......... .......... .......... 34% 127M 1s +2024-03-16T16:52:08Z #15 1.955 43850K .......... .......... .......... .......... .......... 34% 163M 1s +2024-03-16T16:52:08Z #15 1.956 43900K .......... .......... .......... .......... .......... 34% 89.8M 1s +2024-03-16T16:52:08Z #15 1.956 43950K .......... .......... .......... .......... .......... 34% 136M 1s +2024-03-16T16:52:08Z #15 1.957 44000K .......... .......... .......... .......... .......... 34% 137M 1s +2024-03-16T16:52:08Z #15 1.957 44050K .......... .......... .......... .......... .......... 34% 160M 1s +2024-03-16T16:52:08Z #15 1.957 44100K .......... .......... .......... .......... .......... 34% 164M 1s +2024-03-16T16:52:08Z #15 1.958 44150K .......... .......... .......... .......... .......... 34% 68.0M 1s +2024-03-16T16:52:08Z #15 1.958 44200K .......... .......... .......... .......... .......... 34% 139M 1s +2024-03-16T16:52:08Z #15 1.959 44250K .......... .......... .......... .......... .......... 34% 72.2M 1s +2024-03-16T16:52:08Z #15 1.959 44300K .......... .......... .......... .......... .......... 34% 140M 1s +2024-03-16T16:52:08Z #15 1.960 44350K .......... .......... .......... .......... .......... 35% 79.4M 1s +2024-03-16T16:52:08Z #15 1.960 44400K .......... .......... .......... .......... .......... 35% 152M 1s +2024-03-16T16:52:08Z #15 1.961 44450K .......... .......... .......... .......... .......... 35% 149M 1s +2024-03-16T16:52:08Z #15 1.961 44500K .......... .......... .......... .......... .......... 35% 130M 1s +2024-03-16T16:52:08Z #15 1.961 44550K .......... .......... .......... .......... .......... 35% 76.9M 1s +2024-03-16T16:52:08Z #15 1.962 44600K .......... .......... .......... .......... .......... 35% 129M 1s +2024-03-16T16:52:08Z #15 1.962 44650K .......... .......... .......... .......... .......... 35% 149M 1s +2024-03-16T16:52:08Z #15 1.963 44700K .......... .......... .......... .......... .......... 35% 74.5M 1s +2024-03-16T16:52:08Z #15 1.963 44750K .......... .......... .......... .......... .......... 35% 102M 1s +2024-03-16T16:52:08Z #15 1.964 44800K .......... .......... .......... .......... .......... 35% 92.0M 1s +2024-03-16T16:52:08Z #15 1.964 44850K .......... .......... .......... .......... .......... 35% 145M 1s +2024-03-16T16:52:08Z #15 1.965 44900K .......... .......... .......... .......... .......... 35% 159M 1s +2024-03-16T16:52:08Z #15 1.965 44950K .......... .......... .......... .......... .......... 35% 139M 1s +2024-03-16T16:52:08Z #15 1.965 45000K .......... .......... .......... .......... .......... 35% 81.2M 1s +2024-03-16T16:52:08Z #15 1.966 45050K .......... .......... .......... .......... .......... 35% 124M 1s +2024-03-16T16:52:08Z #15 1.966 45100K .......... .......... .......... .......... .......... 35% 151M 1s +2024-03-16T16:52:08Z #15 1.967 45150K .......... .......... .......... .......... .......... 35% 68.9M 1s +2024-03-16T16:52:08Z #15 1.967 45200K .......... .......... .......... .......... .......... 35% 152M 1s +2024-03-16T16:52:08Z #15 1.968 45250K .......... .......... .......... .......... .......... 35% 139M 1s +2024-03-16T16:52:08Z #15 1.968 45300K .......... .......... .......... .......... .......... 35% 88.6M 1s +2024-03-16T16:52:08Z #15 1.969 45350K .......... .......... .......... .......... .......... 35% 48.4M 1s +2024-03-16T16:52:08Z #15 1.970 45400K .......... .......... .......... .......... .......... 35% 90.1M 1s +2024-03-16T16:52:08Z #15 1.970 45450K .......... .......... .......... .......... .......... 35% 88.5M 1s +2024-03-16T16:52:08Z #15 1.971 45500K .......... .......... .......... .......... .......... 35% 68.0M 1s +2024-03-16T16:52:08Z #15 1.972 45550K .......... .......... .......... .......... .......... 35% 49.3M 1s +2024-03-16T16:52:08Z #15 1.972 45600K .......... .......... .......... .......... .......... 36% 75.3M 1s +2024-03-16T16:52:08Z #15 1.973 45650K .......... .......... .......... .......... .......... 36% 47.3M 1s +2024-03-16T16:52:08Z #15 1.974 45700K .......... .......... .......... .......... .......... 36% 55.0M 1s +2024-03-16T16:52:08Z #15 1.975 45750K .......... .......... .......... .......... .......... 36% 72.1M 1s +2024-03-16T16:52:08Z #15 1.976 45800K .......... .......... .......... .......... .......... 36% 73.9M 1s +2024-03-16T16:52:08Z #15 1.976 45850K .......... .......... .......... .......... .......... 36% 129M 1s +2024-03-16T16:52:08Z #15 1.977 45900K .......... .......... .......... .......... .......... 36% 84.4M 1s +2024-03-16T16:52:08Z #15 1.977 45950K .......... .......... .......... .......... .......... 36% 128M 1s +2024-03-16T16:52:08Z #15 1.978 46000K .......... .......... .......... .......... .......... 36% 74.4M 1s +2024-03-16T16:52:08Z #15 1.978 46050K .......... .......... .......... .......... .......... 36% 135M 1s +2024-03-16T16:52:08Z #15 1.979 46100K .......... .......... .......... .......... .......... 36% 68.8M 1s +2024-03-16T16:52:08Z #15 1.979 46150K .......... .......... .......... .......... .......... 36% 130M 1s +2024-03-16T16:52:08Z #15 1.980 46200K .......... .......... .......... .......... .......... 36% 78.7M 1s +2024-03-16T16:52:08Z #15 1.980 46250K .......... .......... .......... .......... .......... 36% 126M 1s +2024-03-16T16:52:08Z #15 1.981 46300K .......... .......... .......... .......... .......... 36% 127M 1s +2024-03-16T16:52:08Z #15 1.981 46350K .......... .......... .......... .......... .......... 36% 69.1M 1s +2024-03-16T16:52:08Z #15 1.982 46400K .......... .......... .......... .......... .......... 36% 92.1M 1s +2024-03-16T16:52:08Z #15 1.982 46450K .......... .......... .......... .......... .......... 36% 146M 1s +2024-03-16T16:52:08Z #15 1.983 46500K .......... .......... .......... .......... .......... 36% 148M 1s +2024-03-16T16:52:08Z #15 1.983 46550K .......... .......... .......... .......... .......... 36% 140M 1s +2024-03-16T16:52:08Z #15 1.983 46600K .......... .......... .......... .......... .......... 36% 116M 1s +2024-03-16T16:52:08Z #15 1.984 46650K .......... .......... .......... .......... .......... 36% 111M 1s +2024-03-16T16:52:08Z #15 1.984 46700K .......... .......... .......... .......... .......... 36% 67.8M 1s +2024-03-16T16:52:08Z #15 1.985 46750K .......... .......... .......... .......... .......... 36% 45.8M 1s +2024-03-16T16:52:08Z #15 1.986 46800K .......... .......... .......... .......... .......... 36% 79.0M 1s +2024-03-16T16:52:08Z #15 1.987 46850K .......... .......... .......... .......... .......... 36% 121M 1s +2024-03-16T16:52:08Z #15 1.987 46900K .......... .......... .......... .......... .......... 37% 61.6M 1s +2024-03-16T16:52:08Z #15 1.988 46950K .......... .......... .......... .......... .......... 37% 22.2M 1s +2024-03-16T16:52:08Z #15 1.990 47000K .......... .......... .......... .......... .......... 37% 48.5M 1s +2024-03-16T16:52:08Z #15 1.991 47050K .......... .......... .......... .......... .......... 37% 118M 1s +2024-03-16T16:52:08Z #15 1.991 47100K .......... .......... .......... .......... .......... 37% 38.4M 1s +2024-03-16T16:52:08Z #15 1.993 47150K .......... .......... .......... .......... .......... 37% 146M 1s +2024-03-16T16:52:08Z #15 1.993 47200K .......... .......... .......... .......... .......... 37% 71.3M 1s +2024-03-16T16:52:08Z #15 1.994 47250K .......... .......... .......... .......... .......... 37% 29.0M 1s +2024-03-16T16:52:08Z #15 1.995 47300K .......... .......... .......... .......... .......... 37% 125M 1s +2024-03-16T16:52:08Z #15 1.996 47350K .......... .......... .......... .......... .......... 37% 29.9M 1s +2024-03-16T16:52:08Z #15 1.997 47400K .......... .......... .......... .......... .......... 37% 27.2M 1s +2024-03-16T16:52:08Z #15 1.999 47450K .......... .......... .......... .......... .......... 37% 46.7M 1s +2024-03-16T16:52:08Z #15 2.000 47500K .......... .......... .......... .......... .......... 37% 124M 1s +2024-03-16T16:52:08Z #15 2.001 47550K .......... .......... .......... .......... .......... 37% 65.0M 1s +2024-03-16T16:52:08Z #15 2.001 47600K .......... .......... .......... .......... .......... 37% 24.7M 1s +2024-03-16T16:52:08Z #15 2.004 47650K .......... .......... .......... .......... .......... 37% 31.5M 1s +2024-03-16T16:52:08Z #15 2.005 47700K .......... .......... .......... .......... .......... 37% 75.3M 1s +2024-03-16T16:52:08Z #15 2.006 47750K .......... .......... .......... .......... .......... 37% 103M 1s +2024-03-16T16:52:08Z #15 2.006 47800K .......... .......... .......... .......... .......... 37% 109M 1s +2024-03-16T16:52:08Z #15 2.006 47850K .......... .......... .......... .......... .......... 37% 119M 1s +2024-03-16T16:52:08Z #15 2.007 47900K .......... .......... .......... .......... .......... 37% 114M 1s +2024-03-16T16:52:08Z #15 2.007 47950K .......... .......... .......... .......... .......... 37% 96.3M 1s +2024-03-16T16:52:08Z #15 2.008 48000K .......... .......... .......... .......... .......... 37% 135M 1s +2024-03-16T16:52:08Z #15 2.008 48050K .......... .......... .......... .......... .......... 37% 58.4M 1s +2024-03-16T16:52:08Z #15 2.009 48100K .......... .......... .......... .......... .......... 37% 85.3M 1s +2024-03-16T16:52:08Z #15 2.010 48150K .......... .......... .......... .......... .......... 38% 53.8M 1s +2024-03-16T16:52:08Z #15 2.011 48200K .......... .......... .......... .......... .......... 38% 113M 1s +2024-03-16T16:52:08Z #15 2.011 48250K .......... .......... .......... .......... .......... 38% 16.6M 1s +2024-03-16T16:52:08Z #15 2.015 48300K .......... .......... .......... .......... .......... 38% 102M 1s +2024-03-16T16:52:08Z #15 2.015 48350K .......... .......... .......... .......... .......... 38% 80.5M 1s +2024-03-16T16:52:08Z #15 2.015 48400K .......... .......... .......... .......... .......... 38% 85.2M 1s +2024-03-16T16:52:08Z #15 2.017 48450K .......... .......... .......... .......... .......... 38% 160M 1s +2024-03-16T16:52:08Z #15 2.017 48500K .......... .......... .......... .......... .......... 38% 116M 1s +2024-03-16T16:52:08Z #15 2.017 48550K .......... .......... .......... .......... .......... 38% 116M 1s +2024-03-16T16:52:08Z #15 2.017 48600K .......... .......... .......... .......... .......... 38% 63.5M 1s +2024-03-16T16:52:08Z #15 2.018 48650K .......... .......... .......... .......... .......... 38% 80.1M 1s +2024-03-16T16:52:08Z #15 2.019 48700K .......... .......... .......... .......... .......... 38% 110M 1s +2024-03-16T16:52:08Z #15 2.019 48750K .......... .......... .......... .......... .......... 38% 43.9M 1s +2024-03-16T16:52:08Z #15 2.022 48800K .......... .......... .......... .......... .......... 38% 6.00M 1s +2024-03-16T16:52:08Z #15 2.028 48850K .......... .......... .......... .......... .......... 38% 48.5M 1s +2024-03-16T16:52:08Z #15 2.030 48900K .......... .......... .......... .......... .......... 38% 139M 1s +2024-03-16T16:52:08Z #15 2.030 48950K .......... .......... .......... .......... .......... 38% 150M 1s +2024-03-16T16:52:08Z #15 2.030 49000K .......... .......... .......... .......... .......... 38% 61.5M 1s +2024-03-16T16:52:08Z #15 2.032 49050K .......... .......... .......... .......... .......... 38% 157M 1s +2024-03-16T16:52:08Z #15 2.032 49100K .......... .......... .......... .......... .......... 38% 141M 1s +2024-03-16T16:52:08Z #15 2.032 49150K .......... .......... .......... .......... .......... 38% 171M 1s +2024-03-16T16:52:08Z #15 2.032 49200K .......... .......... .......... .......... .......... 38% 132M 1s +2024-03-16T16:52:08Z #15 2.032 49250K .......... .......... .......... .......... .......... 38% 20.2M 1s +2024-03-16T16:52:08Z #15 2.034 49300K .......... .......... .......... .......... .......... 38% 84.3M 1s +2024-03-16T16:52:08Z #15 2.035 49350K .......... .......... .......... .......... .......... 38% 42.3M 1s +2024-03-16T16:52:08Z #15 2.036 49400K .......... .......... .......... .......... .......... 39% 19.4M 1s +2024-03-16T16:52:08Z #15 2.038 49450K .......... .......... .......... .......... .......... 39% 29.0M 1s +2024-03-16T16:52:08Z #15 2.040 49500K .......... .......... .......... .......... .......... 39% 35.4M 1s +2024-03-16T16:52:08Z #15 2.041 49550K .......... .......... .......... .......... .......... 39% 35.9M 1s +2024-03-16T16:52:08Z #15 2.043 49600K .......... .......... .......... .......... .......... 39% 34.8M 1s +2024-03-16T16:52:08Z #15 2.044 49650K .......... .......... .......... .......... .......... 39% 57.2M 1s +2024-03-16T16:52:08Z #15 2.045 49700K .......... .......... .......... .......... .......... 39% 42.8M 1s +2024-03-16T16:52:08Z #15 2.046 49750K .......... .......... .......... .......... .......... 39% 66.1M 1s +2024-03-16T16:52:08Z #15 2.047 49800K .......... .......... .......... .......... .......... 39% 15.6M 1s +2024-03-16T16:52:08Z #15 2.050 49850K .......... .......... .......... .......... .......... 39% 27.4M 1s +2024-03-16T16:52:08Z #15 2.052 49900K .......... .......... .......... .......... .......... 39% 24.9M 1s +2024-03-16T16:52:08Z #15 2.054 49950K .......... .......... .......... .......... .......... 39% 21.9M 1s +2024-03-16T16:52:08Z #15 2.058 50000K .......... .......... .......... .......... .......... 39% 88.2M 1s +2024-03-16T16:52:08Z #15 2.058 50050K .......... .......... .......... .......... .......... 39% 158M 1s +2024-03-16T16:52:08Z #15 2.058 50100K .......... .......... .......... .......... .......... 39% 138M 1s +2024-03-16T16:52:08Z #15 2.058 50150K .......... .......... .......... .......... .......... 39% 168M 1s +2024-03-16T16:52:08Z #15 2.058 50200K .......... .......... .......... .......... .......... 39% 33.0M 1s +2024-03-16T16:52:08Z #15 2.059 50250K .......... .......... .......... .......... .......... 39% 19.0M 1s +2024-03-16T16:52:08Z #15 2.066 50300K .......... .......... .......... .......... .......... 39% 31.1M 1s +2024-03-16T16:52:08Z #15 2.066 50350K .......... .......... .......... .......... .......... 39% 27.1M 1s +2024-03-16T16:52:08Z #15 2.066 50400K .......... .......... .......... .......... .......... 39% 48.5M 1s +2024-03-16T16:52:08Z #15 2.066 50450K .......... .......... .......... .......... .......... 39% 124M 1s +2024-03-16T16:52:08Z #15 2.066 50500K .......... .......... .......... .......... .......... 39% 61.7M 1s +2024-03-16T16:52:08Z #15 2.067 50550K .......... .......... .......... .......... .......... 39% 19.2M 1s +2024-03-16T16:52:08Z #15 2.075 50600K .......... .......... .......... .......... .......... 39% 38.9M 1s +2024-03-16T16:52:08Z #15 2.075 50650K .......... .......... .......... .......... .......... 39% 31.6M 1s +2024-03-16T16:52:08Z #15 2.075 50700K .......... .......... .......... .......... .......... 40% 33.8M 1s +2024-03-16T16:52:08Z #15 2.075 50750K .......... .......... .......... .......... .......... 40% 32.1M 1s +2024-03-16T16:52:08Z #15 2.076 50800K .......... .......... .......... .......... .......... 40% 96.8M 1s +2024-03-16T16:52:08Z #15 2.076 50850K .......... .......... .......... .......... .......... 40% 35.3M 1s +2024-03-16T16:52:08Z #15 2.077 50900K .......... .......... .......... .......... .......... 40% 29.1M 1s +2024-03-16T16:52:08Z #15 2.080 50950K .......... .......... .......... .......... .......... 40% 49.7M 1s +2024-03-16T16:52:08Z #15 2.080 51000K .......... .......... .......... .......... .......... 40% 34.0M 1s +2024-03-16T16:52:08Z #15 2.081 51050K .......... .......... .......... .......... .......... 40% 27.8M 1s +2024-03-16T16:52:08Z #15 2.083 51100K .......... .......... .......... .......... .......... 40% 36.6M 1s +2024-03-16T16:52:08Z #15 2.086 51150K .......... .......... .......... .......... .......... 40% 47.8M 1s +2024-03-16T16:52:08Z #15 2.086 51200K .......... .......... .......... .......... .......... 40% 21.6M 1s +2024-03-16T16:52:08Z #15 2.088 51250K .......... .......... .......... .......... .......... 40% 74.9M 1s +2024-03-16T16:52:08Z #15 2.088 51300K .......... .......... .......... .......... .......... 40% 49.2M 1s +2024-03-16T16:52:08Z #15 2.090 51350K .......... .......... .......... .......... .......... 40% 48.3M 1s +2024-03-16T16:52:08Z #15 2.090 51400K .......... .......... .......... .......... .......... 40% 109M 1s +2024-03-16T16:52:08Z #15 2.092 51450K .......... .......... .......... .......... .......... 40% 73.0M 1s +2024-03-16T16:52:08Z #15 2.092 51500K .......... .......... .......... .......... .......... 40% 76.1M 1s +2024-03-16T16:52:08Z #15 2.092 51550K .......... .......... .......... .......... .......... 40% 28.6M 1s +2024-03-16T16:52:08Z #15 2.095 51600K .......... .......... .......... .......... .......... 40% 127M 1s +2024-03-16T16:52:08Z #15 2.095 51650K .......... .......... .......... .......... .......... 40% 96.9M 1s +2024-03-16T16:52:08Z #15 2.095 51700K .......... .......... .......... .......... .......... 40% 34.8M 1s +2024-03-16T16:52:08Z #15 2.096 51750K .......... .......... .......... .......... .......... 40% 54.0M 1s +2024-03-16T16:52:08Z #15 2.097 51800K .......... .......... .......... .......... .......... 40% 49.8M 1s +2024-03-16T16:52:08Z #15 2.102 51850K .......... .......... .......... .......... .......... 40% 175M 1s +2024-03-16T16:52:08Z #15 2.102 51900K .......... .......... .......... .......... .......... 40% 145M 1s +2024-03-16T16:52:08Z #15 2.102 51950K .......... .......... .......... .......... .......... 41% 129M 1s +2024-03-16T16:52:08Z #15 2.102 52000K .......... .......... .......... .......... .......... 41% 131M 1s +2024-03-16T16:52:08Z #15 2.102 52050K .......... .......... .......... .......... .......... 41% 148M 1s +2024-03-16T16:52:08Z #15 2.102 52100K .......... .......... .......... .......... .......... 41% 175M 1s +2024-03-16T16:52:08Z #15 2.102 52150K .......... .......... .......... .......... .......... 41% 122M 1s +2024-03-16T16:52:08Z #15 2.102 52200K .......... .......... .......... .......... .......... 41% 150M 1s +2024-03-16T16:52:08Z #15 2.102 52250K .......... .......... .......... .......... .......... 41% 154M 1s +2024-03-16T16:52:08Z #15 2.102 52300K .......... .......... .......... .......... .......... 41% 133M 1s +2024-03-16T16:52:08Z #15 2.102 52350K .......... .......... .......... .......... .......... 41% 48.9M 1s +2024-03-16T16:52:08Z #15 2.102 52400K .......... .......... .......... .......... .......... 41% 41.0M 1s +2024-03-16T16:52:08Z #15 2.104 52450K .......... .......... .......... .......... .......... 41% 43.8M 1s +2024-03-16T16:52:08Z #15 2.105 52500K .......... .......... .......... .......... .......... 41% 41.2M 1s +2024-03-16T16:52:08Z #15 2.106 52550K .......... .......... .......... .......... .......... 41% 41.4M 1s +2024-03-16T16:52:08Z #15 2.107 52600K .......... .......... .......... .......... .......... 41% 45.0M 1s +2024-03-16T16:52:08Z #15 2.108 52650K .......... .......... .......... .......... .......... 41% 31.5M 1s +2024-03-16T16:52:08Z #15 2.110 52700K .......... .......... .......... .......... .......... 41% 29.7M 1s +2024-03-16T16:52:08Z #15 2.112 52750K .......... .......... .......... .......... .......... 41% 78.0M 1s +2024-03-16T16:52:08Z #15 2.112 52800K .......... .......... .......... .......... .......... 41% 41.3M 1s +2024-03-16T16:52:08Z #15 2.113 52850K .......... .......... .......... .......... .......... 41% 38.5M 1s +2024-03-16T16:52:08Z #15 2.115 52900K .......... .......... .......... .......... .......... 41% 40.0M 1s +2024-03-16T16:52:08Z #15 2.116 52950K .......... .......... .......... .......... .......... 41% 47.9M 1s +2024-03-16T16:52:08Z #15 2.117 53000K .......... .......... .......... .......... .......... 41% 51.9M 1s +2024-03-16T16:52:08Z #15 2.118 53050K .......... .......... .......... .......... .......... 41% 124M 1s +2024-03-16T16:52:08Z #15 2.118 53100K .......... .......... .......... .......... .......... 41% 40.9M 1s +2024-03-16T16:52:08Z #15 2.119 53150K .......... .......... .......... .......... .......... 41% 29.8M 1s +2024-03-16T16:52:08Z #15 2.121 53200K .......... .......... .......... .......... .......... 42% 31.3M 1s +2024-03-16T16:52:08Z #15 2.126 53250K .......... .......... .......... .......... .......... 42% 163M 1s +2024-03-16T16:52:08Z #15 2.126 53300K .......... .......... .......... .......... .......... 42% 143M 1s +2024-03-16T16:52:08Z #15 2.126 53350K .......... .......... .......... .......... .......... 42% 139M 1s +2024-03-16T16:52:08Z #15 2.126 53400K .......... .......... .......... .......... .......... 42% 138M 1s +2024-03-16T16:52:08Z #15 2.126 53450K .......... .......... .......... .......... .......... 42% 153M 1s +2024-03-16T16:52:08Z #15 2.126 53500K .......... .......... .......... .......... .......... 42% 185M 1s +2024-03-16T16:52:08Z #15 2.126 53550K .......... .......... .......... .......... .......... 42% 130M 1s +2024-03-16T16:52:08Z #15 2.126 53600K .......... .......... .......... .......... .......... 42% 146M 1s +2024-03-16T16:52:08Z #15 2.126 53650K .......... .......... .......... .......... .......... 42% 166M 1s +2024-03-16T16:52:08Z #15 2.126 53700K .......... .......... .......... .......... .......... 42% 166M 1s +2024-03-16T16:52:08Z #15 2.126 53750K .......... .......... .......... .......... .......... 42% 22.9M 1s +2024-03-16T16:52:08Z #15 2.128 53800K .......... .......... .......... .......... .......... 42% 32.1M 1s +2024-03-16T16:52:08Z #15 2.129 53850K .......... .......... .......... .......... .......... 42% 31.8M 1s +2024-03-16T16:52:08Z #15 2.131 53900K .......... .......... .......... .......... .......... 42% 41.9M 1s +2024-03-16T16:52:08Z #15 2.132 53950K .......... .......... .......... .......... .......... 42% 33.8M 1s +2024-03-16T16:52:08Z #15 2.134 54000K .......... .......... .......... .......... .......... 42% 31.8M 1s +2024-03-16T16:52:08Z #15 2.135 54050K .......... .......... .......... .......... .......... 42% 92.8M 1s +2024-03-16T16:52:08Z #15 2.136 54100K .......... .......... .......... .......... .......... 42% 30.2M 1s +2024-03-16T16:52:08Z #15 2.138 54150K .......... .......... .......... .......... .......... 42% 31.2M 1s +2024-03-16T16:52:08Z #15 2.139 54200K .......... .......... .......... .......... .......... 42% 39.4M 1s +2024-03-16T16:52:08Z #15 2.140 54250K .......... .......... .......... .......... .......... 42% 41.8M 1s +2024-03-16T16:52:08Z #15 2.141 54300K .......... .......... .......... .......... .......... 42% 38.2M 1s +2024-03-16T16:52:08Z #15 2.143 54350K .......... .......... .......... .......... .......... 42% 36.5M 1s +2024-03-16T16:52:08Z #15 2.144 54400K .......... .......... .......... .......... .......... 42% 38.3M 1s +2024-03-16T16:52:08Z #15 2.146 54450K .......... .......... .......... .......... .......... 42% 92.8M 1s +2024-03-16T16:52:08Z #15 2.146 54500K .......... .......... .......... .......... .......... 43% 80.8M 1s +2024-03-16T16:52:08Z #15 2.146 54550K .......... .......... .......... .......... .......... 43% 21.1M 1s +2024-03-16T16:52:08Z #15 2.149 54600K .......... .......... .......... .......... .......... 43% 74.4M 1s +2024-03-16T16:52:08Z #15 2.149 54650K .......... .......... .......... .......... .......... 43% 24.1M 1s +2024-03-16T16:52:08Z #15 2.151 54700K .......... .......... .......... .......... .......... 43% 54.3M 1s +2024-03-16T16:52:08Z #15 2.152 54750K .......... .......... .......... .......... .......... 43% 31.8M 1s +2024-03-16T16:52:08Z #15 2.154 54800K .......... .......... .......... .......... .......... 43% 27.2M 1s +2024-03-16T16:52:08Z #15 2.158 54850K .......... .......... .......... .......... .......... 43% 154M 1s +2024-03-16T16:52:08Z #15 2.158 54900K .......... .......... .......... .......... .......... 43% 149M 1s +2024-03-16T16:52:08Z #15 2.158 54950K .......... .......... .......... .......... .......... 43% 136M 1s +2024-03-16T16:52:08Z #15 2.158 55000K .......... .......... .......... .......... .......... 43% 169M 1s +2024-03-16T16:52:08Z #15 2.158 55050K .......... .......... .......... .......... .......... 43% 167M 1s +2024-03-16T16:52:08Z #15 2.158 55100K .......... .......... .......... .......... .......... 43% 135M 1s +2024-03-16T16:52:08Z #15 2.158 55150K .......... .......... .......... .......... .......... 43% 91.4M 1s +2024-03-16T16:52:08Z #15 2.158 55200K .......... .......... .......... .......... .......... 43% 19.0M 1s +2024-03-16T16:52:08Z #15 2.160 55250K .......... .......... .......... .......... .......... 43% 30.9M 1s +2024-03-16T16:52:08Z #15 2.163 55300K .......... .......... .......... .......... .......... 43% 47.2M 1s +2024-03-16T16:52:08Z #15 2.163 55350K .......... .......... .......... .......... .......... 43% 41.0M 1s +2024-03-16T16:52:08Z #15 2.164 55400K .......... .......... .......... .......... .......... 43% 47.9M 1s +2024-03-16T16:52:08Z #15 2.165 55450K .......... .......... .......... .......... .......... 43% 55.4M 1s +2024-03-16T16:52:08Z #15 2.166 55500K .......... .......... .......... .......... .......... 43% 48.4M 1s +2024-03-16T16:52:08Z #15 2.167 55550K .......... .......... .......... .......... .......... 43% 56.5M 1s +2024-03-16T16:52:08Z #15 2.168 55600K .......... .......... .......... .......... .......... 43% 56.0M 1s +2024-03-16T16:52:08Z #15 2.169 55650K .......... .......... .......... .......... .......... 43% 127M 1s +2024-03-16T16:52:08Z #15 2.169 55700K .......... .......... .......... .......... .......... 43% 40.9M 1s +2024-03-16T16:52:08Z #15 2.171 55750K .......... .......... .......... .......... .......... 44% 42.2M 1s +2024-03-16T16:52:08Z #15 2.172 55800K .......... .......... .......... .......... .......... 44% 60.3M 1s +2024-03-16T16:52:08Z #15 2.172 55850K .......... .......... .......... .......... .......... 44% 45.2M 1s +2024-03-16T16:52:08Z #15 2.174 55900K .......... .......... .......... .......... .......... 44% 51.1M 1s +2024-03-16T16:52:08Z #15 2.175 55950K .......... .......... .......... .......... .......... 44% 72.6M 1s +2024-03-16T16:52:08Z #15 2.175 56000K .......... .......... .......... .......... .......... 44% 44.0M 1s +2024-03-16T16:52:08Z #15 2.176 56050K .......... .......... .......... .......... .......... 44% 32.5M 1s +2024-03-16T16:52:08Z #15 2.178 56100K .......... .......... .......... .......... .......... 44% 79.6M 1s +2024-03-16T16:52:08Z #15 2.178 56150K .......... .......... .......... .......... .......... 44% 45.7M 1s +2024-03-16T16:52:08Z #15 2.179 56200K .......... .......... .......... .......... .......... 44% 39.9M 1s +2024-03-16T16:52:08Z #15 2.181 56250K .......... .......... .......... .......... .......... 44% 44.1M 1s +2024-03-16T16:52:08Z #15 2.183 56300K .......... .......... .......... .......... .......... 44% 55.6M 1s +2024-03-16T16:52:08Z #15 2.183 56350K .......... .......... .......... .......... .......... 44% 41.9M 1s +2024-03-16T16:52:08Z #15 2.184 56400K .......... .......... .......... .......... .......... 44% 56.9M 1s +2024-03-16T16:52:08Z #15 2.185 56450K .......... .......... .......... .......... .......... 44% 49.1M 1s +2024-03-16T16:52:08Z #15 2.186 56500K .......... .......... .......... .......... .......... 44% 30.1M 1s +2024-03-16T16:52:08Z #15 2.188 56550K .......... .......... .......... .......... .......... 44% 36.9M 1s +2024-03-16T16:52:08Z #15 2.189 56600K .......... .......... .......... .......... .......... 44% 35.3M 1s +2024-03-16T16:52:08Z #15 2.190 56650K .......... .......... .......... .......... .......... 44% 54.4M 1s +2024-03-16T16:52:08Z #15 2.191 56700K .......... .......... .......... .......... .......... 44% 40.5M 1s +2024-03-16T16:52:08Z #15 2.193 56750K .......... .......... .......... .......... .......... 44% 33.9M 1s +2024-03-16T16:52:08Z #15 2.194 56800K .......... .......... .......... .......... .......... 44% 31.0M 1s +2024-03-16T16:52:08Z #15 2.195 56850K .......... .......... .......... .......... .......... 44% 61.0M 1s +2024-03-16T16:52:08Z #15 2.196 56900K .......... .......... .......... .......... .......... 44% 38.0M 1s +2024-03-16T16:52:08Z #15 2.197 56950K .......... .......... .......... .......... .......... 44% 40.7M 1s +2024-03-16T16:52:08Z #15 2.202 57000K .......... .......... .......... .......... .......... 44% 153M 1s +2024-03-16T16:52:08Z #15 2.202 57050K .......... .......... .......... .......... .......... 45% 141M 1s +2024-03-16T16:52:08Z #15 2.202 57100K .......... .......... .......... .......... .......... 45% 128M 1s +2024-03-16T16:52:08Z #15 2.202 57150K .......... .......... .......... .......... .......... 45% 123M 1s +2024-03-16T16:52:08Z #15 2.202 57200K .......... .......... .......... .......... .......... 45% 162M 1s +2024-03-16T16:52:08Z #15 2.202 57250K .......... .......... .......... .......... .......... 45% 140M 1s +2024-03-16T16:52:08Z #15 2.202 57300K .......... .......... .......... .......... .......... 45% 150M 1s +2024-03-16T16:52:08Z #15 2.202 57350K .......... .......... .......... .......... .......... 45% 162M 1s +2024-03-16T16:52:08Z #15 2.202 57400K .......... .......... .......... .......... .......... 45% 153M 1s +2024-03-16T16:52:08Z #15 2.202 57450K .......... .......... .......... .......... .......... 45% 79.2M 1s +2024-03-16T16:52:08Z #15 2.202 57500K .......... .......... .......... .......... .......... 45% 34.4M 1s +2024-03-16T16:52:08Z #15 2.204 57550K .......... .......... .......... .......... .......... 45% 39.4M 1s +2024-03-16T16:52:08Z #15 2.205 57600K .......... .......... .......... .......... .......... 45% 42.3M 1s +2024-03-16T16:52:08Z #15 2.206 57650K .......... .......... .......... .......... .......... 45% 44.3M 1s +2024-03-16T16:52:08Z #15 2.208 57700K .......... .......... .......... .......... .......... 45% 106M 1s +2024-03-16T16:52:08Z #15 2.208 57750K .......... .......... .......... .......... .......... 45% 56.6M 1s +2024-03-16T16:52:08Z #15 2.208 57800K .......... .......... .......... .......... .......... 45% 49.5M 1s +2024-03-16T16:52:08Z #15 2.209 57850K .......... .......... .......... .......... .......... 45% 40.3M 1s +2024-03-16T16:52:08Z #15 2.210 57900K .......... .......... .......... .......... .......... 45% 66.5M 1s +2024-03-16T16:52:08Z #15 2.214 57950K .......... .......... .......... .......... .......... 45% 122M 1s +2024-03-16T16:52:08Z #15 2.214 58000K .......... .......... .......... .......... .......... 45% 140M 1s +2024-03-16T16:52:08Z #15 2.214 58050K .......... .......... .......... .......... .......... 45% 146M 1s +2024-03-16T16:52:08Z #15 2.214 58100K .......... .......... .......... .......... .......... 45% 142M 1s +2024-03-16T16:52:08Z #15 2.214 58150K .......... .......... .......... .......... .......... 45% 139M 1s +2024-03-16T16:52:08Z #15 2.214 58200K .......... .......... .......... .......... .......... 45% 145M 1s +2024-03-16T16:52:08Z #15 2.214 58250K .......... .......... .......... .......... .......... 45% 139M 1s +2024-03-16T16:52:08Z #15 2.214 58300K .......... .......... .......... .......... .......... 46% 40.2M 1s +2024-03-16T16:52:08Z #15 2.215 58350K .......... .......... .......... .......... .......... 46% 43.2M 1s +2024-03-16T16:52:08Z #15 2.216 58400K .......... .......... .......... .......... .......... 46% 28.1M 1s +2024-03-16T16:52:08Z #15 2.218 58450K .......... .......... .......... .......... .......... 46% 35.7M 1s +2024-03-16T16:52:08Z #15 2.219 58500K .......... .......... .......... .......... .......... 46% 40.7M 1s +2024-03-16T16:52:08Z #15 2.225 58550K .......... .......... .......... .......... .......... 46% 45.4M 1s +2024-03-16T16:52:08Z #15 2.225 58600K .......... .......... .......... .......... .......... 46% 52.3M 1s +2024-03-16T16:52:08Z #15 2.225 58650K .......... .......... .......... .......... .......... 46% 47.6M 1s +2024-03-16T16:52:08Z #15 2.225 58700K .......... .......... .......... .......... .......... 46% 55.8M 1s +2024-03-16T16:52:08Z #15 2.225 58750K .......... .......... .......... .......... .......... 46% 89.0M 1s +2024-03-16T16:52:08Z #15 2.225 58800K .......... .......... .......... .......... .......... 46% 117M 1s +2024-03-16T16:52:08Z #15 2.225 58850K .......... .......... .......... .......... .......... 46% 66.3M 1s +2024-03-16T16:52:08Z #15 2.226 58900K .......... .......... .......... .......... .......... 46% 51.3M 1s +2024-03-16T16:52:08Z #15 2.227 58950K .......... .......... .......... .......... .......... 46% 28.8M 1s +2024-03-16T16:52:08Z #15 2.229 59000K .......... .......... .......... .......... .......... 46% 35.2M 1s +2024-03-16T16:52:08Z #15 2.230 59050K .......... .......... .......... .......... .......... 46% 49.6M 1s +2024-03-16T16:52:08Z #15 2.234 59100K .......... .......... .......... .......... .......... 46% 47.3M 1s +2024-03-16T16:52:08Z #15 2.234 59150K .......... .......... .......... .......... .......... 46% 31.0M 1s +2024-03-16T16:52:08Z #15 2.234 59200K .......... .......... .......... .......... .......... 46% 37.3M 1s +2024-03-16T16:52:08Z #15 2.235 59250K .......... .......... .......... .......... .......... 46% 41.3M 1s +2024-03-16T16:52:08Z #15 2.236 59300K .......... .......... .......... .......... .......... 46% 41.9M 1s +2024-03-16T16:52:08Z #15 2.237 59350K .......... .......... .......... .......... .......... 46% 41.8M 1s +2024-03-16T16:52:08Z #15 2.240 59400K .......... .......... .......... .......... .......... 46% 123M 1s +2024-03-16T16:52:08Z #15 2.240 59450K .......... .......... .......... .......... .......... 46% 126M 1s +2024-03-16T16:52:08Z #15 2.240 59500K .......... .......... .......... .......... .......... 46% 121M 1s +2024-03-16T16:52:08Z #15 2.240 59550K .......... .......... .......... .......... .......... 47% 40.4M 1s +2024-03-16T16:52:08Z #15 2.241 59600K .......... .......... .......... .......... .......... 47% 33.8M 1s +2024-03-16T16:52:08Z #15 2.242 59650K .......... .......... .......... .......... .......... 47% 58.4M 1s +2024-03-16T16:52:08Z #15 2.245 59700K .......... .......... .......... .......... .......... 47% 137M 1s +2024-03-16T16:52:08Z #15 2.245 59750K .......... .......... .......... .......... .......... 47% 124M 1s +2024-03-16T16:52:08Z #15 2.245 59800K .......... .......... .......... .......... .......... 47% 148M 1s +2024-03-16T16:52:08Z #15 2.245 59850K .......... .......... .......... .......... .......... 47% 157M 1s +2024-03-16T16:52:08Z #15 2.245 59900K .......... .......... .......... .......... .......... 47% 168M 1s +2024-03-16T16:52:08Z #15 2.245 59950K .......... .......... .......... .......... .......... 47% 112M 1s +2024-03-16T16:52:08Z #15 2.245 60000K .......... .......... .......... .......... .......... 47% 24.6M 1s +2024-03-16T16:52:08Z #15 2.247 60050K .......... .......... .......... .......... .......... 47% 46.5M 1s +2024-03-16T16:52:08Z #15 2.248 60100K .......... .......... .......... .......... .......... 47% 82.5M 1s +2024-03-16T16:52:08Z #15 2.250 60150K .......... .......... .......... .......... .......... 47% 144M 1s +2024-03-16T16:52:08Z #15 2.250 60200K .......... .......... .......... .......... .......... 47% 135M 1s +2024-03-16T16:52:08Z #15 2.250 60250K .......... .......... .......... .......... .......... 47% 134M 1s +2024-03-16T16:52:08Z #15 2.250 60300K .......... .......... .......... .......... .......... 47% 141M 1s +2024-03-16T16:52:08Z #15 2.250 60350K .......... .......... .......... .......... .......... 47% 125M 1s +2024-03-16T16:52:08Z #15 2.251 60400K .......... .......... .......... .......... .......... 47% 24.9M 1s +2024-03-16T16:52:08Z #15 2.253 60450K .......... .......... .......... .......... .......... 47% 49.2M 1s +2024-03-16T16:52:08Z #15 2.258 60500K .......... .......... .......... .......... .......... 47% 72.6M 1s +2024-03-16T16:52:08Z #15 2.258 60550K .......... .......... .......... .......... .......... 47% 138M 1s +2024-03-16T16:52:08Z #15 2.258 60600K .......... .......... .......... .......... .......... 47% 116M 1s +2024-03-16T16:52:08Z #15 2.258 60650K .......... .......... .......... .......... .......... 47% 157M 1s +2024-03-16T16:52:08Z #15 2.258 60700K .......... .......... .......... .......... .......... 47% 168M 1s +2024-03-16T16:52:08Z #15 2.258 60750K .......... .......... .......... .......... .......... 47% 160M 1s +2024-03-16T16:52:08Z #15 2.258 60800K .......... .......... .......... .......... .......... 47% 161M 1s +2024-03-16T16:52:08Z #15 2.258 60850K .......... .......... .......... .......... .......... 48% 155M 1s +2024-03-16T16:52:08Z #15 2.258 60900K .......... .......... .......... .......... .......... 48% 165M 1s +2024-03-16T16:52:08Z #15 2.258 60950K .......... .......... .......... .......... .......... 48% 175M 1s +2024-03-16T16:52:08Z #15 2.258 61000K .......... .......... .......... .......... .......... 48% 195M 1s +2024-03-16T16:52:08Z #15 2.258 61050K .......... .......... .......... .......... .......... 48% 122M 1s +2024-03-16T16:52:08Z #15 2.258 61100K .......... .......... .......... .......... .......... 48% 25.5M 1s +2024-03-16T16:52:08Z #15 2.260 61150K .......... .......... .......... .......... .......... 48% 37.1M 1s +2024-03-16T16:52:08Z #15 2.266 61200K .......... .......... .......... .......... .......... 48% 126M 1s +2024-03-16T16:52:08Z #15 2.266 61250K .......... .......... .......... .......... .......... 48% 200M 1s +2024-03-16T16:52:08Z #15 2.266 61300K .......... .......... .......... .......... .......... 48% 158M 1s +2024-03-16T16:52:08Z #15 2.266 61350K .......... .......... .......... .......... .......... 48% 136M 1s +2024-03-16T16:52:08Z #15 2.266 61400K .......... .......... .......... .......... .......... 48% 146M 1s +2024-03-16T16:52:08Z #15 2.266 61450K .......... .......... .......... .......... .......... 48% 224M 1s +2024-03-16T16:52:08Z #15 2.266 61500K .......... .......... .......... .......... .......... 48% 168M 1s +2024-03-16T16:52:08Z #15 2.266 61550K .......... .......... .......... .......... .......... 48% 159M 1s +2024-03-16T16:52:08Z #15 2.266 61600K .......... .......... .......... .......... .......... 48% 176M 1s +2024-03-16T16:52:08Z #15 2.266 61650K .......... .......... .......... .......... .......... 48% 146M 1s +2024-03-16T16:52:08Z #15 2.266 61700K .......... .......... .......... .......... .......... 48% 189M 1s +2024-03-16T16:52:08Z #15 2.266 61750K .......... .......... .......... .......... .......... 48% 169M 1s +2024-03-16T16:52:08Z #15 2.266 61800K .......... .......... .......... .......... .......... 48% 196M 1s +2024-03-16T16:52:08Z #15 2.266 61850K .......... .......... .......... .......... .......... 48% 161M 1s +2024-03-16T16:52:08Z #15 2.266 61900K .......... .......... .......... .......... .......... 48% 196M 1s +2024-03-16T16:52:08Z #15 2.266 61950K .......... .......... .......... .......... .......... 48% 120M 1s +2024-03-16T16:52:08Z #15 2.266 62000K .......... .......... .......... .......... .......... 48% 24.8M 1s +2024-03-16T16:52:08Z #15 2.268 62050K .......... .......... .......... .......... .......... 48% 41.4M 1s +2024-03-16T16:52:08Z #15 2.269 62100K .......... .......... .......... .......... .......... 49% 77.1M 1s +2024-03-16T16:52:08Z #15 2.270 62150K .......... .......... .......... .......... .......... 49% 35.8M 1s +2024-03-16T16:52:08Z #15 2.271 62200K .......... .......... .......... .......... .......... 49% 87.9M 1s +2024-03-16T16:52:08Z #15 2.272 62250K .......... .......... .......... .......... .......... 49% 38.3M 1s +2024-03-16T16:52:08Z #15 2.273 62300K .......... .......... .......... .......... .......... 49% 44.7M 1s +2024-03-16T16:52:08Z #15 2.274 62350K .......... .......... .......... .......... .......... 49% 43.3M 1s +2024-03-16T16:52:08Z #15 2.275 62400K .......... .......... .......... .......... .......... 49% 54.0M 1s +2024-03-16T16:52:08Z #15 2.276 62450K .......... .......... .......... .......... .......... 49% 58.1M 1s +2024-03-16T16:52:08Z #15 2.278 62500K .......... .......... .......... .......... .......... 49% 102M 1s +2024-03-16T16:52:08Z #15 2.278 62550K .......... .......... .......... .......... .......... 49% 140M 1s +2024-03-16T16:52:08Z #15 2.278 62600K .......... .......... .......... .......... .......... 49% 26.6M 1s +2024-03-16T16:52:08Z #15 2.280 62650K .......... .......... .......... .......... .......... 49% 102M 1s +2024-03-16T16:52:08Z #15 2.280 62700K .......... .......... .......... .......... .......... 49% 154M 1s +2024-03-16T16:52:08Z #15 2.280 62750K .......... .......... .......... .......... .......... 49% 31.4M 1s +2024-03-16T16:52:08Z #15 2.282 62800K .......... .......... .......... .......... .......... 49% 34.5M 1s +2024-03-16T16:52:08Z #15 2.283 62850K .......... .......... .......... .......... .......... 49% 48.7M 1s +2024-03-16T16:52:08Z #15 2.284 62900K .......... .......... .......... .......... .......... 49% 35.7M 1s +2024-03-16T16:52:08Z #15 2.290 62950K .......... .......... .......... .......... .......... 49% 66.0M 1s +2024-03-16T16:52:08Z #15 2.290 63000K .......... .......... .......... .......... .......... 49% 167M 1s +2024-03-16T16:52:08Z #15 2.290 63050K .......... .......... .......... .......... .......... 49% 129M 1s +2024-03-16T16:52:08Z #15 2.290 63100K .......... .......... .......... .......... .......... 49% 165M 1s +2024-03-16T16:52:08Z #15 2.290 63150K .......... .......... .......... .......... .......... 49% 119M 1s +2024-03-16T16:52:08Z #15 2.290 63200K .......... .......... .......... .......... .......... 49% 153M 1s +2024-03-16T16:52:08Z #15 2.290 63250K .......... .......... .......... .......... .......... 49% 158M 1s +2024-03-16T16:52:08Z #15 2.290 63300K .......... .......... .......... .......... .......... 49% 154M 1s +2024-03-16T16:52:08Z #15 2.290 63350K .......... .......... .......... .......... .......... 50% 149M 1s +2024-03-16T16:52:08Z #15 2.290 63400K .......... .......... .......... .......... .......... 50% 138M 1s +2024-03-16T16:52:08Z #15 2.290 63450K .......... .......... .......... .......... .......... 50% 167M 1s +2024-03-16T16:52:08Z #15 2.290 63500K .......... .......... .......... .......... .......... 50% 45.3M 1s +2024-03-16T16:52:08Z #15 2.294 63550K .......... .......... .......... .......... .......... 50% 68.9M 1s +2024-03-16T16:52:08Z #15 2.294 63600K .......... .......... .......... .......... .......... 50% 135M 1s +2024-03-16T16:52:08Z #15 2.294 63650K .......... .......... .......... .......... .......... 50% 118M 1s +2024-03-16T16:52:08Z #15 2.294 63700K .......... .......... .......... .......... .......... 50% 133M 1s +2024-03-16T16:52:08Z #15 2.294 63750K .......... .......... .......... .......... .......... 50% 110M 1s +2024-03-16T16:52:08Z #15 2.294 63800K .......... .......... .......... .......... .......... 50% 148M 1s +2024-03-16T16:52:08Z #15 2.294 63850K .......... .......... .......... .......... .......... 50% 77.0M 1s +2024-03-16T16:52:08Z #15 2.294 63900K .......... .......... .......... .......... .......... 50% 48.6M 1s +2024-03-16T16:52:08Z #15 2.295 63950K .......... .......... .......... .......... .......... 50% 52.4M 1s +2024-03-16T16:52:08Z #15 2.296 64000K .......... .......... .......... .......... .......... 50% 154M 1s +2024-03-16T16:52:08Z #15 2.296 64050K .......... .......... .......... .......... .......... 50% 60.1M 1s +2024-03-16T16:52:08Z #15 2.297 64100K .......... .......... .......... .......... .......... 50% 33.3M 1s +2024-03-16T16:52:08Z #15 2.299 64150K .......... .......... .......... .......... .......... 50% 36.6M 1s +2024-03-16T16:52:08Z #15 2.300 64200K .......... .......... .......... .......... .......... 50% 45.5M 1s +2024-03-16T16:52:08Z #15 2.302 64250K .......... .......... .......... .......... .......... 50% 138M 1s +2024-03-16T16:52:08Z #15 2.302 64300K .......... .......... .......... .......... .......... 50% 133M 1s +2024-03-16T16:52:08Z #15 2.302 64350K .......... .......... .......... .......... .......... 50% 34.8M 1s +2024-03-16T16:52:08Z #15 2.303 64400K .......... .......... .......... .......... .......... 50% 45.4M 1s +2024-03-16T16:52:08Z #15 2.304 64450K .......... .......... .......... .......... .......... 50% 62.4M 1s +2024-03-16T16:52:08Z #15 2.305 64500K .......... .......... .......... .......... .......... 50% 47.3M 1s +2024-03-16T16:52:08Z #15 2.310 64550K .......... .......... .......... .......... .......... 50% 135M 1s +2024-03-16T16:52:08Z #15 2.310 64600K .......... .......... .......... .......... .......... 50% 155M 1s +2024-03-16T16:52:08Z #15 2.310 64650K .......... .......... .......... .......... .......... 51% 180M 1s +2024-03-16T16:52:08Z #15 2.310 64700K .......... .......... .......... .......... .......... 51% 152M 1s +2024-03-16T16:52:08Z #15 2.310 64750K .......... .......... .......... .......... .......... 51% 128M 1s +2024-03-16T16:52:08Z #15 2.310 64800K .......... .......... .......... .......... .......... 51% 155M 1s +2024-03-16T16:52:08Z #15 2.310 64850K .......... .......... .......... .......... .......... 51% 152M 1s +2024-03-16T16:52:08Z #15 2.310 64900K .......... .......... .......... .......... .......... 51% 168M 1s +2024-03-16T16:52:08Z #15 2.310 64950K .......... .......... .......... .......... .......... 51% 154M 1s +2024-03-16T16:52:08Z #15 2.310 65000K .......... .......... .......... .......... .......... 51% 182M 1s +2024-03-16T16:52:08Z #15 2.310 65050K .......... .......... .......... .......... .......... 51% 163M 1s +2024-03-16T16:52:08Z #15 2.310 65100K .......... .......... .......... .......... .......... 51% 156M 1s +2024-03-16T16:52:08Z #15 2.310 65150K .......... .......... .......... .......... .......... 51% 31.4M 1s +2024-03-16T16:52:08Z #15 2.311 65200K .......... .......... .......... .......... .......... 51% 43.8M 1s +2024-03-16T16:52:08Z #15 2.312 65250K .......... .......... .......... .......... .......... 51% 42.0M 1s +2024-03-16T16:52:08Z #15 2.314 65300K .......... .......... .......... .......... .......... 51% 60.5M 1s +2024-03-16T16:52:08Z #15 2.315 65350K .......... .......... .......... .......... .......... 51% 145M 1s +2024-03-16T16:52:08Z #15 2.315 65400K .......... .......... .......... .......... .......... 51% 30.3M 1s +2024-03-16T16:52:08Z #15 2.317 65450K .......... .......... .......... .......... .......... 51% 136M 1s +2024-03-16T16:52:08Z #15 2.317 65500K .......... .......... .......... .......... .......... 51% 48.0M 1s +2024-03-16T16:52:08Z #15 2.318 65550K .......... .......... .......... .......... .......... 51% 56.3M 1s +2024-03-16T16:52:08Z #15 2.319 65600K .......... .......... .......... .......... .......... 51% 138M 1s +2024-03-16T16:52:08Z #15 2.319 65650K .......... .......... .......... .......... .......... 51% 36.7M 1s +2024-03-16T16:52:08Z #15 2.320 65700K .......... .......... .......... .......... .......... 51% 108M 1s +2024-03-16T16:52:08Z #15 2.321 65750K .......... .......... .......... .......... .......... 51% 37.5M 1s +2024-03-16T16:52:08Z #15 2.322 65800K .......... .......... .......... .......... .......... 51% 59.7M 1s +2024-03-16T16:52:08Z #15 2.323 65850K .......... .......... .......... .......... .......... 51% 49.5M 1s +2024-03-16T16:52:08Z #15 2.324 65900K .......... .......... .......... .......... .......... 52% 64.9M 1s +2024-03-16T16:52:08Z #15 2.325 65950K .......... .......... .......... .......... .......... 52% 124M 1s +2024-03-16T16:52:08Z #15 2.325 66000K .......... .......... .......... .......... .......... 52% 39.3M 1s +2024-03-16T16:52:08Z #15 2.327 66050K .......... .......... .......... .......... .......... 52% 50.7M 1s +2024-03-16T16:52:08Z #15 2.327 66100K .......... .......... .......... .......... .......... 52% 60.9M 1s +2024-03-16T16:52:08Z #15 2.328 66150K .......... .......... .......... .......... .......... 52% 77.0M 1s +2024-03-16T16:52:08Z #15 2.328 66200K .......... .......... .......... .......... .......... 52% 56.4M 1s +2024-03-16T16:52:08Z #15 2.330 66250K .......... .......... .......... .......... .......... 52% 181M 1s +2024-03-16T16:52:08Z #15 2.330 66300K .......... .......... .......... .......... .......... 52% 35.6M 1s +2024-03-16T16:52:08Z #15 2.331 66350K .......... .......... .......... .......... .......... 52% 64.4M 1s +2024-03-16T16:52:08Z #15 2.332 66400K .......... .......... .......... .......... .......... 52% 37.0M 1s +2024-03-16T16:52:08Z #15 2.333 66450K .......... .......... .......... .......... .......... 52% 95.2M 1s +2024-03-16T16:52:08Z #15 2.334 66500K .......... .......... .......... .......... .......... 52% 33.3M 1s +2024-03-16T16:52:08Z #15 2.335 66550K .......... .......... .......... .......... .......... 52% 156M 1s +2024-03-16T16:52:08Z #15 2.335 66600K .......... .......... .......... .......... .......... 52% 36.6M 1s +2024-03-16T16:52:08Z #15 2.342 66650K .......... .......... .......... .......... .......... 52% 74.4M 1s +2024-03-16T16:52:08Z #15 2.342 66700K .......... .......... .......... .......... .......... 52% 140M 1s +2024-03-16T16:52:08Z #15 2.342 66750K .......... .......... .......... .......... .......... 52% 153M 1s +2024-03-16T16:52:08Z #15 2.342 66800K .......... .......... .......... .......... .......... 52% 155M 1s +2024-03-16T16:52:08Z #15 2.342 66850K .......... .......... .......... .......... .......... 52% 161M 1s +2024-03-16T16:52:08Z #15 2.342 66900K .......... .......... .......... .......... .......... 52% 155M 1s +2024-03-16T16:52:08Z #15 2.342 66950K .......... .......... .......... .......... .......... 52% 138M 1s +2024-03-16T16:52:08Z #15 2.342 67000K .......... .......... .......... .......... .......... 52% 26.1M 1s +2024-03-16T16:52:08Z #15 2.342 67050K .......... .......... .......... .......... .......... 52% 13.8M 1s +2024-03-16T16:52:08Z #15 2.345 67100K .......... .......... .......... .......... .......... 52% 28.8M 1s +2024-03-16T16:52:08Z #15 2.347 67150K .......... .......... .......... .......... .......... 53% 30.8M 1s +2024-03-16T16:52:08Z #15 2.348 67200K .......... .......... .......... .......... .......... 53% 157M 1s +2024-03-16T16:52:08Z #15 2.348 67250K .......... .......... .......... .......... .......... 53% 43.4M 1s +2024-03-16T16:52:08Z #15 2.350 67300K .......... .......... .......... .......... .......... 53% 68.7M 1s +2024-03-16T16:52:08Z #15 2.350 67350K .......... .......... .......... .......... .......... 53% 21.7M 1s +2024-03-16T16:52:08Z #15 2.353 67400K .......... .......... .......... .......... .......... 53% 50.7M 1s +2024-03-16T16:52:08Z #15 2.354 67450K .......... .......... .......... .......... .......... 53% 39.3M 1s +2024-03-16T16:52:08Z #15 2.355 67500K .......... .......... .......... .......... .......... 53% 63.3M 1s +2024-03-16T16:52:08Z #15 2.356 67550K .......... .......... .......... .......... .......... 53% 38.1M 1s +2024-03-16T16:52:08Z #15 2.357 67600K .......... .......... .......... .......... .......... 53% 53.7M 1s +2024-03-16T16:52:08Z #15 2.358 67650K .......... .......... .......... .......... .......... 53% 42.3M 1s +2024-03-16T16:52:08Z #15 2.359 67700K .......... .......... .......... .......... .......... 53% 35.5M 1s +2024-03-16T16:52:08Z #15 2.360 67750K .......... .......... .......... .......... .......... 53% 57.4M 1s +2024-03-16T16:52:08Z #15 2.361 67800K .......... .......... .......... .......... .......... 53% 32.7M 1s +2024-03-16T16:52:08Z #15 2.366 67850K .......... .......... .......... .......... .......... 53% 158M 1s +2024-03-16T16:52:08Z #15 2.366 67900K .......... .......... .......... .......... .......... 53% 126M 1s +2024-03-16T16:52:08Z #15 2.366 67950K .......... .......... .......... .......... .......... 53% 139M 1s +2024-03-16T16:52:08Z #15 2.366 68000K .......... .......... .......... .......... .......... 53% 165M 1s +2024-03-16T16:52:08Z #15 2.366 68050K .......... .......... .......... .......... .......... 53% 150M 1s +2024-03-16T16:52:08Z #15 2.366 68100K .......... .......... .......... .......... .......... 53% 172M 1s +2024-03-16T16:52:08Z #15 2.366 68150K .......... .......... .......... .......... .......... 53% 154M 1s +2024-03-16T16:52:08Z #15 2.366 68200K .......... .......... .......... .......... .......... 53% 164M 1s +2024-03-16T16:52:08Z #15 2.366 68250K .......... .......... .......... .......... .......... 53% 159M 1s +2024-03-16T16:52:08Z #15 2.366 68300K .......... .......... .......... .......... .......... 53% 24.0M 1s +2024-03-16T16:52:08Z #15 2.368 68350K .......... .......... .......... .......... .......... 53% 25.2M 1s +2024-03-16T16:52:08Z #15 2.370 68400K .......... .......... .......... .......... .......... 53% 32.1M 1s +2024-03-16T16:52:08Z #15 2.371 68450K .......... .......... .......... .......... .......... 54% 30.2M 1s +2024-03-16T16:52:08Z #15 2.373 68500K .......... .......... .......... .......... .......... 54% 32.6M 1s +2024-03-16T16:52:08Z #15 2.374 68550K .......... .......... .......... .......... .......... 54% 58.2M 1s +2024-03-16T16:52:08Z #15 2.375 68600K .......... .......... .......... .......... .......... 54% 39.8M 1s +2024-03-16T16:52:08Z #15 2.376 68650K .......... .......... .......... .......... .......... 54% 94.5M 1s +2024-03-16T16:52:08Z #15 2.377 68700K .......... .......... .......... .......... .......... 54% 30.3M 1s +2024-03-16T16:52:08Z #15 2.378 68750K .......... .......... .......... .......... .......... 54% 29.0M 1s +2024-03-16T16:52:08Z #15 2.382 68800K .......... .......... .......... .......... .......... 54% 91.2M 1s +2024-03-16T16:52:08Z #15 2.382 68850K .......... .......... .......... .......... .......... 54% 154M 1s +2024-03-16T16:52:08Z #15 2.382 68900K .......... .......... .......... .......... .......... 54% 170M 1s +2024-03-16T16:52:08Z #15 2.382 68950K .......... .......... .......... .......... .......... 54% 128M 1s +2024-03-16T16:52:08Z #15 2.382 69000K .......... .......... .......... .......... .......... 54% 157M 1s +2024-03-16T16:52:08Z #15 2.382 69050K .......... .......... .......... .......... .......... 54% 18.4M 1s +2024-03-16T16:52:08Z #15 2.385 69100K .......... .......... .......... .......... .......... 54% 26.4M 1s +2024-03-16T16:52:08Z #15 2.386 69150K .......... .......... .......... .......... .......... 54% 19.0M 1s +2024-03-16T16:52:08Z #15 2.390 69200K .......... .......... .......... .......... .......... 54% 149M 1s +2024-03-16T16:52:08Z #15 2.390 69250K .......... .......... .......... .......... .......... 54% 179M 1s +2024-03-16T16:52:08Z #15 2.390 69300K .......... .......... .......... .......... .......... 54% 62.6M 1s +2024-03-16T16:52:08Z #15 2.391 69350K .......... .......... .......... .......... .......... 54% 20.5M 1s +2024-03-16T16:52:08Z #15 2.393 69400K .......... .......... .......... .......... .......... 54% 27.2M 1s +2024-03-16T16:52:08Z #15 2.394 69450K .......... .......... .......... .......... .......... 54% 44.4M 1s +2024-03-16T16:52:08Z #15 2.395 69500K .......... .......... .......... .......... .......... 54% 34.4M 1s +2024-03-16T16:52:08Z #15 2.397 69550K .......... .......... .......... .......... .......... 54% 28.6M 1s +2024-03-16T16:52:08Z #15 2.399 69600K .......... .......... .......... .......... .......... 54% 31.8M 1s +2024-03-16T16:52:08Z #15 2.400 69650K .......... .......... .......... .......... .......... 54% 32.6M 1s +2024-03-16T16:52:08Z #15 2.402 69700K .......... .......... .......... .......... .......... 55% 56.7M 1s +2024-03-16T16:52:08Z #15 2.403 69750K .......... .......... .......... .......... .......... 55% 23.5M 1s +2024-03-16T16:52:08Z #15 2.405 69800K .......... .......... .......... .......... .......... 55% 6.36M 1s +2024-03-16T16:52:08Z #15 2.422 69850K .......... .......... .......... .......... .......... 55% 150M 1s +2024-03-16T16:52:08Z #15 2.422 69900K .......... .......... .......... .......... .......... 55% 127M 1s +2024-03-16T16:52:08Z #15 2.422 69950K .......... .......... .......... .......... .......... 55% 100M 1s +2024-03-16T16:52:08Z #15 2.422 70000K .......... .......... .......... .......... .......... 55% 125M 1s +2024-03-16T16:52:08Z #15 2.422 70050K .......... .......... .......... .......... .......... 55% 126M 1s +2024-03-16T16:52:08Z #15 2.422 70100K .......... .......... .......... .......... .......... 55% 124M 1s +2024-03-16T16:52:08Z #15 2.422 70150K .......... .......... .......... .......... .......... 55% 118M 1s +2024-03-16T16:52:08Z #15 2.422 70200K .......... .......... .......... .......... .......... 55% 130M 1s +2024-03-16T16:52:08Z #15 2.422 70250K .......... .......... .......... .......... .......... 55% 125M 1s +2024-03-16T16:52:08Z #15 2.422 70300K .......... .......... .......... .......... .......... 55% 118M 1s +2024-03-16T16:52:08Z #15 2.422 70350K .......... .......... .......... .......... .......... 55% 111M 1s +2024-03-16T16:52:08Z #15 2.422 70400K .......... .......... .......... .......... .......... 55% 138M 1s +2024-03-16T16:52:08Z #15 2.422 70450K .......... .......... .......... .......... .......... 55% 123M 1s +2024-03-16T16:52:08Z #15 2.422 70500K .......... .......... .......... .......... .......... 55% 104M 1s +2024-03-16T16:52:08Z #15 2.422 70550K .......... .......... .......... .......... .......... 55% 145M 1s +2024-03-16T16:52:08Z #15 2.422 70600K .......... .......... .......... .......... .......... 55% 174M 1s +2024-03-16T16:52:08Z #15 2.422 70650K .......... .......... .......... .......... .......... 55% 158M 1s +2024-03-16T16:52:08Z #15 2.422 70700K .......... .......... .......... .......... .......... 55% 135M 1s +2024-03-16T16:52:08Z #15 2.422 70750K .......... .......... .......... .......... .......... 55% 142M 1s +2024-03-16T16:52:08Z #15 2.422 70800K .......... .......... .......... .......... .......... 55% 152M 1s +2024-03-16T16:52:08Z #15 2.422 70850K .......... .......... .......... .......... .......... 55% 159M 1s +2024-03-16T16:52:08Z #15 2.422 70900K .......... .......... .......... .......... .......... 55% 142M 1s +2024-03-16T16:52:08Z #15 2.422 70950K .......... .......... .......... .......... .......... 56% 167M 1s +2024-03-16T16:52:08Z #15 2.422 71000K .......... .......... .......... .......... .......... 56% 160M 1s +2024-03-16T16:52:08Z #15 2.422 71050K .......... .......... .......... .......... .......... 56% 166M 1s +2024-03-16T16:52:08Z #15 2.422 71100K .......... .......... .......... .......... .......... 56% 160M 1s +2024-03-16T16:52:08Z #15 2.422 71150K .......... .......... .......... .......... .......... 56% 115M 1s +2024-03-16T16:52:08Z #15 2.422 71200K .......... .......... .......... .......... .......... 56% 139M 1s +2024-03-16T16:52:08Z #15 2.423 71250K .......... .......... .......... .......... .......... 56% 133M 1s +2024-03-16T16:52:08Z #15 2.423 71300K .......... .......... .......... .......... .......... 56% 127M 1s +2024-03-16T16:52:08Z #15 2.423 71350K .......... .......... .......... .......... .......... 56% 133M 1s +2024-03-16T16:52:08Z #15 2.424 71400K .......... .......... .......... .......... .......... 56% 128M 1s +2024-03-16T16:52:08Z #15 2.424 71450K .......... .......... .......... .......... .......... 56% 94.2M 1s +2024-03-16T16:52:08Z #15 2.425 71500K .......... .......... .......... .......... .......... 56% 72.1M 1s +2024-03-16T16:52:08Z #15 2.430 71550K .......... .......... .......... .......... .......... 56% 84.9M 1s +2024-03-16T16:52:08Z #15 2.430 71600K .......... .......... .......... .......... .......... 56% 154M 1s +2024-03-16T16:52:08Z #15 2.430 71650K .......... .......... .......... .......... .......... 56% 146M 1s +2024-03-16T16:52:08Z #15 2.430 71700K .......... .......... .......... .......... .......... 56% 189M 1s +2024-03-16T16:52:08Z #15 2.430 71750K .......... .......... .......... .......... .......... 56% 160M 1s +2024-03-16T16:52:08Z #15 2.430 71800K .......... .......... .......... .......... .......... 56% 140M 1s +2024-03-16T16:52:08Z #15 2.430 71850K .......... .......... .......... .......... .......... 56% 169M 1s +2024-03-16T16:52:08Z #15 2.430 71900K .......... .......... .......... .......... .......... 56% 168M 1s +2024-03-16T16:52:08Z #15 2.430 71950K .......... .......... .......... .......... .......... 56% 138M 1s +2024-03-16T16:52:08Z #15 2.430 72000K .......... .......... .......... .......... .......... 56% 180M 1s +2024-03-16T16:52:08Z #15 2.430 72050K .......... .......... .......... .......... .......... 56% 159M 1s +2024-03-16T16:52:08Z #15 2.430 72100K .......... .......... .......... .......... .......... 56% 149M 1s +2024-03-16T16:52:08Z #15 2.430 72150K .......... .......... .......... .......... .......... 56% 146M 1s +2024-03-16T16:52:08Z #15 2.430 72200K .......... .......... .......... .......... .......... 56% 178M 1s +2024-03-16T16:52:08Z #15 2.430 72250K .......... .......... .......... .......... .......... 57% 153M 1s +2024-03-16T16:52:08Z #15 2.430 72300K .......... .......... .......... .......... .......... 57% 169M 1s +2024-03-16T16:52:08Z #15 2.430 72350K .......... .......... .......... .......... .......... 57% 114M 1s +2024-03-16T16:52:08Z #15 2.431 72400K .......... .......... .......... .......... .......... 57% 145M 1s +2024-03-16T16:52:08Z #15 2.431 72450K .......... .......... .......... .......... .......... 57% 155M 1s +2024-03-16T16:52:08Z #15 2.432 72500K .......... .......... .......... .......... .......... 57% 142M 1s +2024-03-16T16:52:08Z #15 2.432 72550K .......... .......... .......... .......... .......... 57% 145M 1s +2024-03-16T16:52:08Z #15 2.432 72600K .......... .......... .......... .......... .......... 57% 153M 1s +2024-03-16T16:52:08Z #15 2.432 72650K .......... .......... .......... .......... .......... 57% 169M 1s +2024-03-16T16:52:08Z #15 2.433 72700K .......... .......... .......... .......... .......... 57% 104M 1s +2024-03-16T16:52:08Z #15 2.433 72750K .......... .......... .......... .......... .......... 57% 28.8M 1s +2024-03-16T16:52:08Z #15 2.435 72800K .......... .......... .......... .......... .......... 57% 36.5M 1s +2024-03-16T16:52:08Z #15 2.437 72850K .......... .......... .......... .......... .......... 57% 41.5M 1s +2024-03-16T16:52:08Z #15 2.437 72900K .......... .......... .......... .......... .......... 57% 32.3M 1s +2024-03-16T16:52:08Z #15 2.439 72950K .......... .......... .......... .......... .......... 57% 45.9M 1s +2024-03-16T16:52:08Z #15 2.440 73000K .......... .......... .......... .......... .......... 57% 84.8M 1s +2024-03-16T16:52:08Z #15 2.441 73050K .......... .......... .......... .......... .......... 57% 63.1M 1s +2024-03-16T16:52:08Z #15 2.442 73100K .......... .......... .......... .......... .......... 57% 175M 1s +2024-03-16T16:52:08Z #15 2.442 73150K .......... .......... .......... .......... .......... 57% 73.2M 1s +2024-03-16T16:52:08Z #15 2.442 73200K .......... .......... .......... .......... .......... 57% 83.6M 1s +2024-03-16T16:52:08Z #15 2.443 73250K .......... .......... .......... .......... .......... 57% 110M 1s +2024-03-16T16:52:08Z #15 2.443 73300K .......... .......... .......... .......... .......... 57% 152M 1s +2024-03-16T16:52:08Z #15 2.443 73350K .......... .......... .......... .......... .......... 57% 148M 1s +2024-03-16T16:52:08Z #15 2.444 73400K .......... .......... .......... .......... .......... 57% 158M 1s +2024-03-16T16:52:08Z #15 2.444 73450K .......... .......... .......... .......... .......... 57% 39.9M 1s +2024-03-16T16:52:08Z #15 2.450 73500K .......... .......... .......... .......... .......... 58% 29.1M 1s +2024-03-16T16:52:08Z #15 2.450 73550K .......... .......... .......... .......... .......... 58% 50.5M 1s +2024-03-16T16:52:08Z #15 2.450 73600K .......... .......... .......... .......... .......... 58% 55.0M 1s +2024-03-16T16:52:08Z #15 2.450 73650K .......... .......... .......... .......... .......... 58% 43.6M 1s +2024-03-16T16:52:08Z #15 2.450 73700K .......... .......... .......... .......... .......... 58% 63.8M 1s +2024-03-16T16:52:08Z #15 2.451 73750K .......... .......... .......... .......... .......... 58% 38.5M 1s +2024-03-16T16:52:08Z #15 2.452 73800K .......... .......... .......... .......... .......... 58% 65.4M 1s +2024-03-16T16:52:08Z #15 2.453 73850K .......... .......... .......... .......... .......... 58% 80.2M 1s +2024-03-16T16:52:08Z #15 2.454 73900K .......... .......... .......... .......... .......... 58% 31.3M 1s +2024-03-16T16:52:08Z #15 2.458 73950K .......... .......... .......... .......... .......... 58% 91.7M 1s +2024-03-16T16:52:08Z #15 2.458 74000K .......... .......... .......... .......... .......... 58% 103M 1s +2024-03-16T16:52:08Z #15 2.458 74050K .......... .......... .......... .......... .......... 58% 134M 1s +2024-03-16T16:52:08Z #15 2.458 74100K .......... .......... .......... .......... .......... 58% 132M 1s +2024-03-16T16:52:08Z #15 2.458 74150K .......... .......... .......... .......... .......... 58% 109M 1s +2024-03-16T16:52:08Z #15 2.458 74200K .......... .......... .......... .......... .......... 58% 142M 1s +2024-03-16T16:52:08Z #15 2.458 74250K .......... .......... .......... .......... .......... 58% 33.5M 1s +2024-03-16T16:52:08Z #15 2.459 74300K .......... .......... .......... .......... .......... 58% 65.9M 1s +2024-03-16T16:52:08Z #15 2.460 74350K .......... .......... .......... .......... .......... 58% 47.7M 1s +2024-03-16T16:52:08Z #15 2.466 74400K .......... .......... .......... .......... .......... 58% 54.6M 1s +2024-03-16T16:52:08Z #15 2.466 74450K .......... .......... .......... .......... .......... 58% 53.0M 1s +2024-03-16T16:52:08Z #15 2.466 74500K .......... .......... .......... .......... .......... 58% 57.6M 1s +2024-03-16T16:52:08Z #15 2.466 74550K .......... .......... .......... .......... .......... 58% 50.0M 1s +2024-03-16T16:52:08Z #15 2.466 74600K .......... .......... .......... .......... .......... 58% 56.3M 1s +2024-03-16T16:52:08Z #15 2.466 74650K .......... .......... .......... .......... .......... 58% 64.6M 1s +2024-03-16T16:52:08Z #15 2.466 74700K .......... .......... .......... .......... .......... 58% 109M 1s +2024-03-16T16:52:08Z #15 2.467 74750K .......... .......... .......... .......... .......... 58% 71.0M 1s +2024-03-16T16:52:08Z #15 2.467 74800K .......... .......... .......... .......... .......... 59% 74.6M 1s +2024-03-16T16:52:08Z #15 2.468 74850K .......... .......... .......... .......... .......... 59% 75.4M 1s +2024-03-16T16:52:08Z #15 2.468 74900K .......... .......... .......... .......... .......... 59% 9.22M 1s +2024-03-16T16:52:08Z #15 2.474 74950K .......... .......... .......... .......... .......... 59% 131M 1s +2024-03-16T16:52:08Z #15 2.474 75000K .......... .......... .......... .......... .......... 59% 170M 1s +2024-03-16T16:52:08Z #15 2.474 75050K .......... .......... .......... .......... .......... 59% 159M 1s +2024-03-16T16:52:08Z #15 2.475 75100K .......... .......... .......... .......... .......... 59% 146M 1s +2024-03-16T16:52:08Z #15 2.475 75150K .......... .......... .......... .......... .......... 59% 131M 1s +2024-03-16T16:52:08Z #15 2.476 75200K .......... .......... .......... .......... .......... 59% 157M 1s +2024-03-16T16:52:08Z #15 2.476 75250K .......... .......... .......... .......... .......... 59% 168M 1s +2024-03-16T16:52:08Z #15 2.476 75300K .......... .......... .......... .......... .......... 59% 155M 1s +2024-03-16T16:52:08Z #15 2.476 75350K .......... .......... .......... .......... .......... 59% 33.1M 1s +2024-03-16T16:52:08Z #15 2.478 75400K .......... .......... .......... .......... .......... 59% 163M 1s +2024-03-16T16:52:08Z #15 2.478 75450K .......... .......... .......... .......... .......... 59% 96.2M 1s +2024-03-16T16:52:08Z #15 2.479 75500K .......... .......... .......... .......... .......... 59% 51.3M 1s +2024-03-16T16:52:08Z #15 2.480 75550K .......... .......... .......... .......... .......... 59% 65.2M 1s +2024-03-16T16:52:08Z #15 2.480 75600K .......... .......... .......... .......... .......... 59% 47.4M 1s +2024-03-16T16:52:08Z #15 2.481 75650K .......... .......... .......... .......... .......... 59% 134M 1s +2024-03-16T16:52:08Z #15 2.482 75700K .......... .......... .......... .......... .......... 59% 39.7M 1s +2024-03-16T16:52:08Z #15 2.483 75750K .......... .......... .......... .......... .......... 59% 43.5M 1s +2024-03-16T16:52:08Z #15 2.484 75800K .......... .......... .......... .......... .......... 59% 53.2M 1s +2024-03-16T16:52:08Z #15 2.485 75850K .......... .......... .......... .......... .......... 59% 110M 1s +2024-03-16T16:52:08Z #15 2.485 75900K .......... .......... .......... .......... .......... 59% 70.8M 1s +2024-03-16T16:52:08Z #15 2.486 75950K .......... .......... .......... .......... .......... 59% 59.1M 1s +2024-03-16T16:52:08Z #15 2.487 76000K .......... .......... .......... .......... .......... 59% 50.7M 1s +2024-03-16T16:52:08Z #15 2.488 76050K .......... .......... .......... .......... .......... 60% 80.6M 1s +2024-03-16T16:52:08Z #15 2.489 76100K .......... .......... .......... .......... .......... 60% 139M 1s +2024-03-16T16:52:08Z #15 2.489 76150K .......... .......... .......... .......... .......... 60% 77.5M 1s +2024-03-16T16:52:08Z #15 2.490 76200K .......... .......... .......... .......... .......... 60% 41.0M 1s +2024-03-16T16:52:08Z #15 2.491 76250K .......... .......... .......... .......... .......... 60% 35.7M 1s +2024-03-16T16:52:08Z #15 2.492 76300K .......... .......... .......... .......... .......... 60% 148M 1s +2024-03-16T16:52:08Z #15 2.493 76350K .......... .......... .......... .......... .......... 60% 44.6M 1s +2024-03-16T16:52:08Z #15 2.494 76400K .......... .......... .......... .......... .......... 60% 69.2M 1s +2024-03-16T16:52:08Z #15 2.494 76450K .......... .......... .......... .......... .......... 60% 75.7M 1s +2024-03-16T16:52:08Z #15 2.495 76500K .......... .......... .......... .......... .......... 60% 60.8M 1s +2024-03-16T16:52:08Z #15 2.496 76550K .......... .......... .......... .......... .......... 60% 70.8M 1s +2024-03-16T16:52:08Z #15 2.496 76600K .......... .......... .......... .......... .......... 60% 58.8M 1s +2024-03-16T16:52:08Z #15 2.497 76650K .......... .......... .......... .......... .......... 60% 48.2M 1s +2024-03-16T16:52:08Z #15 2.498 76700K .......... .......... .......... .......... .......... 60% 48.6M 1s +2024-03-16T16:52:08Z #15 2.499 76750K .......... .......... .......... .......... .......... 60% 109M 1s +2024-03-16T16:52:08Z #15 2.502 76800K .......... .......... .......... .......... .......... 60% 17.0M 1s +2024-03-16T16:52:08Z #15 2.502 76850K .......... .......... .......... .......... .......... 60% 62.9M 1s +2024-03-16T16:52:08Z #15 2.503 76900K .......... .......... .......... .......... .......... 60% 40.9M 1s +2024-03-16T16:52:08Z #15 2.505 76950K .......... .......... .......... .......... .......... 60% 84.9M 1s +2024-03-16T16:52:08Z #15 2.506 77000K .......... .......... .......... .......... .......... 60% 139M 1s +2024-03-16T16:52:08Z #15 2.506 77050K .......... .......... .......... .......... .......... 60% 107M 1s +2024-03-16T16:52:08Z #15 2.506 77100K .......... .......... .......... .......... .......... 60% 55.5M 1s +2024-03-16T16:52:08Z #15 2.507 77150K .......... .......... .......... .......... .......... 60% 63.8M 1s +2024-03-16T16:52:08Z #15 2.507 77200K .......... .......... .......... .......... .......... 60% 16.8M 1s +2024-03-16T16:52:08Z #15 2.511 77250K .......... .......... .......... .......... .......... 60% 121M 1s +2024-03-16T16:52:08Z #15 2.511 77300K .......... .......... .......... .......... .......... 61% 15.9M 1s +2024-03-16T16:52:08Z #15 2.514 77350K .......... .......... .......... .......... .......... 61% 59.4M 1s +2024-03-16T16:52:08Z #15 2.515 77400K .......... .......... .......... .......... .......... 61% 47.7M 1s +2024-03-16T16:52:08Z #15 2.516 77450K .......... .......... .......... .......... .......... 61% 157M 1s +2024-03-16T16:52:08Z #15 2.517 77500K .......... .......... .......... .......... .......... 61% 49.9M 1s +2024-03-16T16:52:08Z #15 2.517 77550K .......... .......... .......... .......... .......... 61% 57.4M 1s +2024-03-16T16:52:08Z #15 2.518 77600K .......... .......... .......... .......... .......... 61% 48.6M 1s +2024-03-16T16:52:08Z #15 2.519 77650K .......... .......... .......... .......... .......... 61% 54.1M 1s +2024-03-16T16:52:08Z #15 2.520 77700K .......... .......... .......... .......... .......... 61% 134M 1s +2024-03-16T16:52:08Z #15 2.521 77750K .......... .......... .......... .......... .......... 61% 25.3M 1s +2024-03-16T16:52:08Z #15 2.522 77800K .......... .......... .......... .......... .......... 61% 16.5M 1s +2024-03-16T16:52:08Z #15 2.525 77850K .......... .......... .......... .......... .......... 61% 130M 1s +2024-03-16T16:52:08Z #15 2.526 77900K .......... .......... .......... .......... .......... 61% 133M 1s +2024-03-16T16:52:08Z #15 2.526 77950K .......... .......... .......... .......... .......... 61% 107M 1s +2024-03-16T16:52:08Z #15 2.526 78000K .......... .......... .......... .......... .......... 61% 124M 1s +2024-03-16T16:52:08Z #15 2.527 78050K .......... .......... .......... .......... .......... 61% 134M 1s +2024-03-16T16:52:08Z #15 2.527 78100K .......... .......... .......... .......... .......... 61% 35.9M 1s +2024-03-16T16:52:08Z #15 2.531 78150K .......... .......... .......... .......... .......... 61% 74.8M 1s +2024-03-16T16:52:08Z #15 2.531 78200K .......... .......... .......... .......... .......... 61% 92.6M 1s +2024-03-16T16:52:08Z #15 2.531 78250K .......... .......... .......... .......... .......... 61% 155M 1s +2024-03-16T16:52:08Z #15 2.531 78300K .......... .......... .......... .......... .......... 61% 132M 1s +2024-03-16T16:52:08Z #15 2.531 78350K .......... .......... .......... .......... .......... 61% 47.8M 1s +2024-03-16T16:52:08Z #15 2.531 78400K .......... .......... .......... .......... .......... 61% 42.6M 1s +2024-03-16T16:52:08Z #15 2.532 78450K .......... .......... .......... .......... .......... 61% 62.5M 1s +2024-03-16T16:52:08Z #15 2.534 78500K .......... .......... .......... .......... .......... 61% 123M 1s +2024-03-16T16:52:08Z #15 2.534 78550K .......... .......... .......... .......... .......... 61% 112M 1s +2024-03-16T16:52:08Z #15 2.535 78600K .......... .......... .......... .......... .......... 62% 169M 1s +2024-03-16T16:52:08Z #15 2.535 78650K .......... .......... .......... .......... .......... 62% 62.8M 1s +2024-03-16T16:52:08Z #15 2.535 78700K .......... .......... .......... .......... .......... 62% 102M 1s +2024-03-16T16:52:08Z #15 2.536 78750K .......... .......... .......... .......... .......... 62% 54.9M 1s +2024-03-16T16:52:08Z #15 2.537 78800K .......... .......... .......... .......... .......... 62% 50.1M 1s +2024-03-16T16:52:08Z #15 2.538 78850K .......... .......... .......... .......... .......... 62% 120M 1s +2024-03-16T16:52:08Z #15 2.538 78900K .......... .......... .......... .......... .......... 62% 63.8M 1s +2024-03-16T16:52:08Z #15 2.539 78950K .......... .......... .......... .......... .......... 62% 77.3M 1s +2024-03-16T16:52:08Z #15 2.539 79000K .......... .......... .......... .......... .......... 62% 51.3M 1s +2024-03-16T16:52:08Z #15 2.540 79050K .......... .......... .......... .......... .......... 62% 127M 1s +2024-03-16T16:52:08Z #15 2.541 79100K .......... .......... .......... .......... .......... 62% 37.3M 1s +2024-03-16T16:52:08Z #15 2.542 79150K .......... .......... .......... .......... .......... 62% 52.6M 1s +2024-03-16T16:52:08Z #15 2.543 79200K .......... .......... .......... .......... .......... 62% 122M 1s +2024-03-16T16:52:08Z #15 2.543 79250K .......... .......... .......... .......... .......... 62% 15.9M 1s +2024-03-16T16:52:08Z #15 2.549 79300K .......... .......... .......... .......... .......... 62% 67.4M 1s +2024-03-16T16:52:08Z #15 2.549 79350K .......... .......... .......... .......... .......... 62% 78.5M 1s +2024-03-16T16:52:08Z #15 2.549 79400K .......... .......... .......... .......... .......... 62% 183M 1s +2024-03-16T16:52:08Z #15 2.549 79450K .......... .......... .......... .......... .......... 62% 147M 1s +2024-03-16T16:52:08Z #15 2.549 79500K .......... .......... .......... .......... .......... 62% 103M 1s +2024-03-16T16:52:08Z #15 2.549 79550K .......... .......... .......... .......... .......... 62% 163M 1s +2024-03-16T16:52:08Z #15 2.549 79600K .......... .......... .......... .......... .......... 62% 31.0M 1s +2024-03-16T16:52:08Z #15 2.552 79650K .......... .......... .......... .......... .......... 62% 52.4M 1s +2024-03-16T16:52:08Z #15 2.554 79700K .......... .......... .......... .......... .......... 62% 33.4M 1s +2024-03-16T16:52:08Z #15 2.554 79750K .......... .......... .......... .......... .......... 62% 87.5M 1s +2024-03-16T16:52:08Z #15 2.554 79800K .......... .......... .......... .......... .......... 62% 119M 1s +2024-03-16T16:52:08Z #15 2.554 79850K .......... .......... .......... .......... .......... 63% 26.3M 1s +2024-03-16T16:52:08Z #15 2.557 79900K .......... .......... .......... .......... .......... 63% 28.0M 1s +2024-03-16T16:52:08Z #15 2.561 79950K .......... .......... .......... .......... .......... 63% 126M 1s +2024-03-16T16:52:08Z #15 2.561 80000K .......... .......... .......... .......... .......... 63% 122M 1s +2024-03-16T16:52:08Z #15 2.561 80050K .......... .......... .......... .......... .......... 63% 124M 1s +2024-03-16T16:52:08Z #15 2.561 80100K .......... .......... .......... .......... .......... 63% 165M 1s +2024-03-16T16:52:08Z #15 2.561 80150K .......... .......... .......... .......... .......... 63% 97.0M 1s +2024-03-16T16:52:08Z #15 2.561 80200K .......... .......... .......... .......... .......... 63% 120M 1s +2024-03-16T16:52:08Z #15 2.561 80250K .......... .......... .......... .......... .......... 63% 6.97M 1s +2024-03-16T16:52:08Z #15 2.567 80300K .......... .......... .......... .......... .......... 63% 13.6M 1s +2024-03-16T16:52:08Z #15 2.571 80350K .......... .......... .......... .......... .......... 63% 13.5M 1s +2024-03-16T16:52:08Z #15 2.574 80400K .......... .......... .......... .......... .......... 63% 26.5M 1s +2024-03-16T16:52:08Z #15 2.576 80450K .......... .......... .......... .......... .......... 63% 39.2M 1s +2024-03-16T16:52:08Z #15 2.577 80500K .......... .......... .......... .......... .......... 63% 26.6M 1s +2024-03-16T16:52:08Z #15 2.579 80550K .......... .......... .......... .......... .......... 63% 127M 1s +2024-03-16T16:52:08Z #15 2.580 80600K .......... .......... .......... .......... .......... 63% 27.3M 1s +2024-03-16T16:52:08Z #15 2.581 80650K .......... .......... .......... .......... .......... 63% 66.9M 1s +2024-03-16T16:52:08Z #15 2.582 80700K .......... .......... .......... .......... .......... 63% 69.4M 1s +2024-03-16T16:52:08Z #15 2.583 80750K .......... .......... .......... .......... .......... 63% 47.9M 1s +2024-03-16T16:52:08Z #15 2.584 80800K .......... .......... .......... .......... .......... 63% 87.0M 1s +2024-03-16T16:52:08Z #15 2.584 80850K .......... .......... .......... .......... .......... 63% 31.5M 1s +2024-03-16T16:52:08Z #15 2.586 80900K .......... .......... .......... .......... .......... 63% 52.3M 1s +2024-03-16T16:52:08Z #15 2.587 80950K .......... .......... .......... .......... .......... 63% 64.1M 1s +2024-03-16T16:52:08Z #15 2.588 81000K .......... .......... .......... .......... .......... 63% 82.1M 1s +2024-03-16T16:52:08Z #15 2.588 81050K .......... .......... .......... .......... .......... 63% 128M 1s +2024-03-16T16:52:08Z #15 2.588 81100K .......... .......... .......... .......... .......... 64% 138M 1s +2024-03-16T16:52:08Z #15 2.589 81150K .......... .......... .......... .......... .......... 64% 139M 1s +2024-03-16T16:52:08Z #15 2.589 81200K .......... .......... .......... .......... .......... 64% 49.5M 1s +2024-03-16T16:52:08Z #15 2.590 81250K .......... .......... .......... .......... .......... 64% 42.5M 1s +2024-03-16T16:52:08Z #15 2.591 81300K .......... .......... .......... .......... .......... 64% 76.1M 1s +2024-03-16T16:52:08Z #15 2.592 81350K .......... .......... .......... .......... .......... 64% 44.5M 1s +2024-03-16T16:52:08Z #15 2.593 81400K .......... .......... .......... .......... .......... 64% 154M 1s +2024-03-16T16:52:08Z #15 2.593 81450K .......... .......... .......... .......... .......... 64% 172M 1s +2024-03-16T16:52:08Z #15 2.594 81500K .......... .......... .......... .......... .......... 64% 154M 1s +2024-03-16T16:52:08Z #15 2.594 81550K .......... .......... .......... .......... .......... 64% 78.2M 1s +2024-03-16T16:52:08Z #15 2.595 81600K .......... .......... .......... .......... .......... 64% 96.2M 1s +2024-03-16T16:52:08Z #15 2.595 81650K .......... .......... .......... .......... .......... 64% 153M 1s +2024-03-16T16:52:08Z #15 2.595 81700K .......... .......... .......... .......... .......... 64% 80.4M 1s +2024-03-16T16:52:08Z #15 2.596 81750K .......... .......... .......... .......... .......... 64% 143M 1s +2024-03-16T16:52:08Z #15 2.596 81800K .......... .......... .......... .......... .......... 64% 40.2M 1s +2024-03-16T16:52:08Z #15 2.597 81850K .......... .......... .......... .......... .......... 64% 49.8M 1s +2024-03-16T16:52:08Z #15 2.599 81900K .......... .......... .......... .......... .......... 64% 173M 1s +2024-03-16T16:52:08Z #15 2.599 81950K .......... .......... .......... .......... .......... 64% 86.6M 1s +2024-03-16T16:52:08Z #15 2.599 82000K .......... .......... .......... .......... .......... 64% 71.8M 1s +2024-03-16T16:52:08Z #15 2.600 82050K .......... .......... .......... .......... .......... 64% 96.2M 1s +2024-03-16T16:52:08Z #15 2.601 82100K .......... .......... .......... .......... .......... 64% 131M 1s +2024-03-16T16:52:08Z #15 2.601 82150K .......... .......... .......... .......... .......... 64% 92.0M 1s +2024-03-16T16:52:08Z #15 2.602 82200K .......... .......... .......... .......... .......... 64% 80.0M 1s +2024-03-16T16:52:08Z #15 2.602 82250K .......... .......... .......... .......... .......... 64% 168M 1s +2024-03-16T16:52:08Z #15 2.603 82300K .......... .......... .......... .......... .......... 64% 169M 1s +2024-03-16T16:52:08Z #15 2.603 82350K .......... .......... .......... .......... .......... 64% 81.4M 1s +2024-03-16T16:52:08Z #15 2.603 82400K .......... .......... .......... .......... .......... 65% 157M 1s +2024-03-16T16:52:08Z #15 2.604 82450K .......... .......... .......... .......... .......... 65% 158M 1s +2024-03-16T16:52:08Z #15 2.604 82500K .......... .......... .......... .......... .......... 65% 90.4M 1s +2024-03-16T16:52:08Z #15 2.605 82550K .......... .......... .......... .......... .......... 65% 136M 1s +2024-03-16T16:52:08Z #15 2.605 82600K .......... .......... .......... .......... .......... 65% 73.9M 1s +2024-03-16T16:52:08Z #15 2.605 82650K .......... .......... .......... .......... .......... 65% 147M 1s +2024-03-16T16:52:08Z #15 2.606 82700K .......... .......... .......... .......... .......... 65% 142M 1s +2024-03-16T16:52:08Z #15 2.606 82750K .......... .......... .......... .......... .......... 65% 167M 1s +2024-03-16T16:52:08Z #15 2.606 82800K .......... .......... .......... .......... .......... 65% 88.1M 1s +2024-03-16T16:52:08Z #15 2.607 82850K .......... .......... .......... .......... .......... 65% 160M 1s +2024-03-16T16:52:08Z #15 2.607 82900K .......... .......... .......... .......... .......... 65% 120M 1s +2024-03-16T16:52:08Z #15 2.608 82950K .......... .......... .......... .......... .......... 65% 177M 1s +2024-03-16T16:52:08Z #15 2.608 83000K .......... .......... .......... .......... .......... 65% 117M 1s +2024-03-16T16:52:08Z #15 2.608 83050K .......... .......... .......... .......... .......... 65% 86.2M 1s +2024-03-16T16:52:08Z #15 2.609 83100K .......... .......... .......... .......... .......... 65% 159M 1s +2024-03-16T16:52:08Z #15 2.609 83150K .......... .......... .......... .......... .......... 65% 32.4M 1s +2024-03-16T16:52:08Z #15 2.611 83200K .......... .......... .......... .......... .......... 65% 28.3M 1s +2024-03-16T16:52:08Z #15 2.613 83250K .......... .......... .......... .......... .......... 65% 34.5M 1s +2024-03-16T16:52:08Z #15 2.618 83300K .......... .......... .......... .......... .......... 65% 71.3M 1s +2024-03-16T16:52:08Z #15 2.618 83350K .......... .......... .......... .......... .......... 65% 77.8M 1s +2024-03-16T16:52:08Z #15 2.618 83400K .......... .......... .......... .......... .......... 65% 149M 1s +2024-03-16T16:52:08Z #15 2.618 83450K .......... .......... .......... .......... .......... 65% 114M 1s +2024-03-16T16:52:08Z #15 2.618 83500K .......... .......... .......... .......... .......... 65% 104M 1s +2024-03-16T16:52:08Z #15 2.618 83550K .......... .......... .......... .......... .......... 65% 111M 1s +2024-03-16T16:52:08Z #15 2.618 83600K .......... .......... .......... .......... .......... 65% 127M 1s +2024-03-16T16:52:08Z #15 2.618 83650K .......... .......... .......... .......... .......... 66% 109M 1s +2024-03-16T16:52:08Z #15 2.619 83700K .......... .......... .......... .......... .......... 66% 91.7M 1s +2024-03-16T16:52:08Z #15 2.619 83750K .......... .......... .......... .......... .......... 66% 116M 1s +2024-03-16T16:52:08Z #15 2.619 83800K .......... .......... .......... .......... .......... 66% 70.2M 1s +2024-03-16T16:52:08Z #15 2.623 83850K .......... .......... .......... .......... .......... 66% 120M 1s +2024-03-16T16:52:08Z #15 2.623 83900K .......... .......... .......... .......... .......... 66% 124M 1s +2024-03-16T16:52:08Z #15 2.623 83950K .......... .......... .......... .......... .......... 66% 135M 1s +2024-03-16T16:52:08Z #15 2.623 84000K .......... .......... .......... .......... .......... 66% 124M 1s +2024-03-16T16:52:08Z #15 2.623 84050K .......... .......... .......... .......... .......... 66% 149M 1s +2024-03-16T16:52:08Z #15 2.623 84100K .......... .......... .......... .......... .......... 66% 133M 1s +2024-03-16T16:52:08Z #15 2.623 84150K .......... .......... .......... .......... .......... 66% 109M 1s +2024-03-16T16:52:08Z #15 2.623 84200K .......... .......... .......... .......... .......... 66% 120M 1s +2024-03-16T16:52:08Z #15 2.623 84250K .......... .......... .......... .......... .......... 66% 120M 1s +2024-03-16T16:52:08Z #15 2.623 84300K .......... .......... .......... .......... .......... 66% 110M 1s +2024-03-16T16:52:08Z #15 2.623 84350K .......... .......... .......... .......... .......... 66% 58.5M 1s +2024-03-16T16:52:08Z #15 2.625 84400K .......... .......... .......... .......... .......... 66% 119M 1s +2024-03-16T16:52:08Z #15 2.625 84450K .......... .......... .......... .......... .......... 66% 52.5M 1s +2024-03-16T16:52:08Z #15 2.626 84500K .......... .......... .......... .......... .......... 66% 99.5M 1s +2024-03-16T16:52:08Z #15 2.626 84550K .......... .......... .......... .......... .......... 66% 124M 1s +2024-03-16T16:52:08Z #15 2.626 84600K .......... .......... .......... .......... .......... 66% 64.7M 1s +2024-03-16T16:52:08Z #15 2.627 84650K .......... .......... .......... .......... .......... 66% 59.2M 1s +2024-03-16T16:52:08Z #15 2.628 84700K .......... .......... .......... .......... .......... 66% 9.53M 1s +2024-03-16T16:52:08Z #15 2.633 84750K .......... .......... .......... .......... .......... 66% 27.0M 1s +2024-03-16T16:52:08Z #15 2.635 84800K .......... .......... .......... .......... .......... 66% 4.43M 1s +2024-03-16T16:52:08Z #15 2.646 84850K .......... .......... .......... .......... .......... 66% 124M 1s +2024-03-16T16:52:08Z #15 2.646 84900K .......... .......... .......... .......... .......... 67% 165M 1s +2024-03-16T16:52:08Z #15 2.647 84950K .......... .......... .......... .......... .......... 67% 140M 1s +2024-03-16T16:52:08Z #15 2.647 85000K .......... .......... .......... .......... .......... 67% 129M 1s +2024-03-16T16:52:08Z #15 2.647 85050K .......... .......... .......... .......... .......... 67% 169M 1s +2024-03-16T16:52:08Z #15 2.648 85100K .......... .......... .......... .......... .......... 67% 161M 1s +2024-03-16T16:52:08Z #15 2.648 85150K .......... .......... .......... .......... .......... 67% 116M 1s +2024-03-16T16:52:08Z #15 2.648 85200K .......... .......... .......... .......... .......... 67% 158M 1s +2024-03-16T16:52:08Z #15 2.649 85250K .......... .......... .......... .......... .......... 67% 159M 1s +2024-03-16T16:52:08Z #15 2.649 85300K .......... .......... .......... .......... .......... 67% 147M 1s +2024-03-16T16:52:08Z #15 2.649 85350K .......... .......... .......... .......... .......... 67% 149M 1s +2024-03-16T16:52:08Z #15 2.650 85400K .......... .......... .......... .......... .......... 67% 122M 1s +2024-03-16T16:52:08Z #15 2.650 85450K .......... .......... .......... .......... .......... 67% 166M 1s +2024-03-16T16:52:08Z #15 2.651 85500K .......... .......... .......... .......... .......... 67% 164M 1s +2024-03-16T16:52:08Z #15 2.651 85550K .......... .......... .......... .......... .......... 67% 129M 1s +2024-03-16T16:52:08Z #15 2.651 85600K .......... .......... .......... .......... .......... 67% 155M 1s +2024-03-16T16:52:08Z #15 2.651 85650K .......... .......... .......... .......... .......... 67% 157M 1s +2024-03-16T16:52:08Z #15 2.651 85700K .......... .......... .......... .......... .......... 67% 175M 1s +2024-03-16T16:52:08Z #15 2.652 85750K .......... .......... .......... .......... .......... 67% 123M 1s +2024-03-16T16:52:08Z #15 2.652 85800K .......... .......... .......... .......... .......... 67% 146M 1s +2024-03-16T16:52:08Z #15 2.652 85850K .......... .......... .......... .......... .......... 67% 151M 1s +2024-03-16T16:52:08Z #15 2.653 85900K .......... .......... .......... .......... .......... 67% 150M 1s +2024-03-16T16:52:08Z #15 2.654 85950K .......... .......... .......... .......... .......... 67% 144M 1s +2024-03-16T16:52:08Z #15 2.654 86000K .......... .......... .......... .......... .......... 67% 120M 1s +2024-03-16T16:52:08Z #15 2.654 86050K .......... .......... .......... .......... .......... 67% 160M 1s +2024-03-16T16:52:08Z #15 2.654 86100K .......... .......... .......... .......... .......... 67% 144M 1s +2024-03-16T16:52:08Z #15 2.655 86150K .......... .......... .......... .......... .......... 67% 146M 1s +2024-03-16T16:52:08Z #15 2.655 86200K .......... .......... .......... .......... .......... 68% 151M 1s +2024-03-16T16:52:08Z #15 2.655 86250K .......... .......... .......... .......... .......... 68% 47.4M 1s +2024-03-16T16:52:08Z #15 2.656 86300K .......... .......... .......... .......... .......... 68% 53.9M 1s +2024-03-16T16:52:08Z #15 2.657 86350K .......... .......... .......... .......... .......... 68% 73.8M 1s +2024-03-16T16:52:08Z #15 2.658 86400K .......... .......... .......... .......... .......... 68% 81.9M 1s +2024-03-16T16:52:08Z #15 2.658 86450K .......... .......... .......... .......... .......... 68% 80.1M 1s +2024-03-16T16:52:08Z #15 2.659 86500K .......... .......... .......... .......... .......... 68% 36.6M 1s +2024-03-16T16:52:08Z #15 2.660 86550K .......... .......... .......... .......... .......... 68% 25.5M 1s +2024-03-16T16:52:08Z #15 2.662 86600K .......... .......... .......... .......... .......... 68% 153M 1s +2024-03-16T16:52:08Z #15 2.663 86650K .......... .......... .......... .......... .......... 68% 136M 1s +2024-03-16T16:52:08Z #15 2.663 86700K .......... .......... .......... .......... .......... 68% 150M 1s +2024-03-16T16:52:08Z #15 2.664 86750K .......... .......... .......... .......... .......... 68% 121M 1s +2024-03-16T16:52:08Z #15 2.664 86800K .......... .......... .......... .......... .......... 68% 8.02M 1s +2024-03-16T16:52:08Z #15 2.678 86850K .......... .......... .......... .......... .......... 68% 79.7M 1s +2024-03-16T16:52:08Z #15 2.678 86900K .......... .......... .......... .......... .......... 68% 115M 1s +2024-03-16T16:52:08Z #15 2.678 86950K .......... .......... .......... .......... .......... 68% 124M 1s +2024-03-16T16:52:08Z #15 2.678 87000K .......... .......... .......... .......... .......... 68% 91.2M 1s +2024-03-16T16:52:08Z #15 2.678 87050K .......... .......... .......... .......... .......... 68% 81.5M 1s +2024-03-16T16:52:08Z #15 2.678 87100K .......... .......... .......... .......... .......... 68% 179M 1s +2024-03-16T16:52:08Z #15 2.678 87150K .......... .......... .......... .......... .......... 68% 141M 1s +2024-03-16T16:52:08Z #15 2.678 87200K .......... .......... .......... .......... .......... 68% 91.9M 1s +2024-03-16T16:52:08Z #15 2.678 87250K .......... .......... .......... .......... .......... 68% 67.7M 1s +2024-03-16T16:52:08Z #15 2.678 87300K .......... .......... .......... .......... .......... 68% 75.2M 1s +2024-03-16T16:52:08Z #15 2.678 87350K .......... .......... .......... .......... .......... 68% 105M 1s +2024-03-16T16:52:08Z #15 2.678 87400K .......... .......... .......... .......... .......... 68% 83.1M 1s +2024-03-16T16:52:08Z #15 2.678 87450K .......... .......... .......... .......... .......... 69% 173M 1s +2024-03-16T16:52:08Z #15 2.678 87500K .......... .......... .......... .......... .......... 69% 111M 1s +2024-03-16T16:52:08Z #15 2.678 87550K .......... .......... .......... .......... .......... 69% 158M 1s +2024-03-16T16:52:08Z #15 2.678 87600K .......... .......... .......... .......... .......... 69% 116M 1s +2024-03-16T16:52:08Z #15 2.678 87650K .......... .......... .......... .......... .......... 69% 65.5M 1s +2024-03-16T16:52:08Z #15 2.679 87700K .......... .......... .......... .......... .......... 69% 14.8M 1s +2024-03-16T16:52:08Z #15 2.682 87750K .......... .......... .......... .......... .......... 69% 15.7M 1s +2024-03-16T16:52:08Z #15 2.685 87800K .......... .......... .......... .......... .......... 69% 28.1M 1s +2024-03-16T16:52:08Z #15 2.686 87850K .......... .......... .......... .......... .......... 69% 138M 1s +2024-03-16T16:52:08Z #15 2.687 87900K .......... .......... .......... .......... .......... 69% 151M 1s +2024-03-16T16:52:08Z #15 2.687 87950K .......... .......... .......... .......... .......... 69% 141M 1s +2024-03-16T16:52:08Z #15 2.687 88000K .......... .......... .......... .......... .......... 69% 154M 1s +2024-03-16T16:52:08Z #15 2.688 88050K .......... .......... .......... .......... .......... 69% 165M 1s +2024-03-16T16:52:08Z #15 2.688 88100K .......... .......... .......... .......... .......... 69% 174M 1s +2024-03-16T16:52:08Z #15 2.688 88150K .......... .......... .......... .......... .......... 69% 9.17M 1s +2024-03-16T16:52:08Z #15 2.694 88200K .......... .......... .......... .......... .......... 69% 112M 1s +2024-03-16T16:52:08Z #15 2.694 88250K .......... .......... .......... .......... .......... 69% 27.6M 1s +2024-03-16T16:52:08Z #15 2.696 88300K .......... .......... .......... .......... .......... 69% 66.8M 1s +2024-03-16T16:52:08Z #15 2.696 88350K .......... .......... .......... .......... .......... 69% 41.8M 1s +2024-03-16T16:52:08Z #15 2.698 88400K .......... .......... .......... .......... .......... 69% 62.3M 1s +2024-03-16T16:52:08Z #15 2.699 88450K .......... .......... .......... .......... .......... 69% 116M 1s +2024-03-16T16:52:08Z #15 2.699 88500K .......... .......... .......... .......... .......... 69% 45.3M 1s +2024-03-16T16:52:08Z #15 2.700 88550K .......... .......... .......... .......... .......... 69% 32.7M 1s +2024-03-16T16:52:08Z #15 2.702 88600K .......... .......... .......... .......... .......... 69% 47.5M 1s +2024-03-16T16:52:08Z #15 2.702 88650K .......... .......... .......... .......... .......... 69% 61.8M 1s +2024-03-16T16:52:08Z #15 2.703 88700K .......... .......... .......... .......... .......... 70% 73.3M 1s +2024-03-16T16:52:08Z #15 2.704 88750K .......... .......... .......... .......... .......... 70% 38.8M 1s +2024-03-16T16:52:08Z #15 2.705 88800K .......... .......... .......... .......... .......... 70% 135M 1s +2024-03-16T16:52:08Z #15 2.706 88850K .......... .......... .......... .......... .......... 70% 69.9M 1s +2024-03-16T16:52:08Z #15 2.706 88900K .......... .......... .......... .......... .......... 70% 175M 1s +2024-03-16T16:52:08Z #15 2.707 88950K .......... .......... .......... .......... .......... 70% 89.7M 1s +2024-03-16T16:52:08Z #15 2.707 89000K .......... .......... .......... .......... .......... 70% 58.9M 1s +2024-03-16T16:52:08Z #15 2.708 89050K .......... .......... .......... .......... .......... 70% 48.5M 1s +2024-03-16T16:52:08Z #15 2.709 89100K .......... .......... .......... .......... .......... 70% 168M 1s +2024-03-16T16:52:08Z #15 2.709 89150K .......... .......... .......... .......... .......... 70% 21.4M 1s +2024-03-16T16:52:08Z #15 2.711 89200K .......... .......... .......... .......... .......... 70% 38.1M 1s +2024-03-16T16:52:08Z #15 2.713 89250K .......... .......... .......... .......... .......... 70% 56.9M 1s +2024-03-16T16:52:08Z #15 2.714 89300K .......... .......... .......... .......... .......... 70% 50.5M 1s +2024-03-16T16:52:08Z #15 2.714 89350K .......... .......... .......... .......... .......... 70% 68.0M 1s +2024-03-16T16:52:08Z #15 2.715 89400K .......... .......... .......... .......... .......... 70% 52.2M 1s +2024-03-16T16:52:08Z #15 2.716 89450K .......... .......... .......... .......... .......... 70% 54.0M 1s +2024-03-16T16:52:08Z #15 2.717 89500K .......... .......... .......... .......... .......... 70% 57.2M 1s +2024-03-16T16:52:08Z #15 2.718 89550K .......... .......... .......... .......... .......... 70% 69.2M 1s +2024-03-16T16:52:08Z #15 2.719 89600K .......... .......... .......... .......... .......... 70% 90.0M 1s +2024-03-16T16:52:08Z #15 2.719 89650K .......... .......... .......... .......... .......... 70% 64.0M 1s +2024-03-16T16:52:08Z #15 2.720 89700K .......... .......... .......... .......... .......... 70% 68.8M 1s +2024-03-16T16:52:08Z #15 2.721 89750K .......... .......... .......... .......... .......... 70% 59.6M 1s +2024-03-16T16:52:08Z #15 2.721 89800K .......... .......... .......... .......... .......... 70% 72.6M 1s +2024-03-16T16:52:08Z #15 2.723 89850K .......... .......... .......... .......... .......... 70% 54.2M 1s +2024-03-16T16:52:08Z #15 2.723 89900K .......... .......... .......... .......... .......... 70% 73.9M 1s +2024-03-16T16:52:08Z #15 2.724 89950K .......... .......... .......... .......... .......... 70% 61.3M 1s +2024-03-16T16:52:08Z #15 2.725 90000K .......... .......... .......... .......... .......... 71% 74.2M 1s +2024-03-16T16:52:08Z #15 2.725 90050K .......... .......... .......... .......... .......... 71% 76.3M 1s +2024-03-16T16:52:08Z #15 2.726 90100K .......... .......... .......... .......... .......... 71% 78.3M 1s +2024-03-16T16:52:08Z #15 2.727 90150K .......... .......... .......... .......... .......... 71% 44.5M 1s +2024-03-16T16:52:08Z #15 2.728 90200K .......... .......... .......... .......... .......... 71% 32.7M 1s +2024-03-16T16:52:08Z #15 2.729 90250K .......... .......... .......... .......... .......... 71% 66.2M 1s +2024-03-16T16:52:08Z #15 2.730 90300K .......... .......... .......... .......... .......... 71% 57.7M 1s +2024-03-16T16:52:08Z #15 2.731 90350K .......... .......... .......... .......... .......... 71% 30.9M 1s +2024-03-16T16:52:08Z #15 2.732 90400K .......... .......... .......... .......... .......... 71% 71.8M 1s +2024-03-16T16:52:08Z #15 2.733 90450K .......... .......... .......... .......... .......... 71% 45.4M 1s +2024-03-16T16:52:08Z #15 2.734 90500K .......... .......... .......... .......... .......... 71% 72.0M 1s +2024-03-16T16:52:08Z #15 2.735 90550K .......... .......... .......... .......... .......... 71% 42.7M 1s +2024-03-16T16:52:08Z #15 2.736 90600K .......... .......... .......... .......... .......... 71% 7.81M 1s +2024-03-16T16:52:08Z #15 2.742 90650K .......... .......... .......... .......... .......... 71% 153M 1s +2024-03-16T16:52:08Z #15 2.742 90700K .......... .......... .......... .......... .......... 71% 160M 1s +2024-03-16T16:52:08Z #15 2.743 90750K .......... .......... .......... .......... .......... 71% 130M 1s +2024-03-16T16:52:08Z #15 2.743 90800K .......... .......... .......... .......... .......... 71% 145M 1s +2024-03-16T16:52:08Z #15 2.743 90850K .......... .......... .......... .......... .......... 71% 161M 1s +2024-03-16T16:52:08Z #15 2.744 90900K .......... .......... .......... .......... .......... 71% 37.2M 1s +2024-03-16T16:52:08Z #15 2.745 90950K .......... .......... .......... .......... .......... 71% 134M 1s +2024-03-16T16:52:08Z #15 2.745 91000K .......... .......... .......... .......... .......... 71% 10.5M 1s +2024-03-16T16:52:08Z #15 2.750 91050K .......... .......... .......... .......... .......... 71% 166M 1s +2024-03-16T16:52:08Z #15 2.750 91100K .......... .......... .......... .......... .......... 71% 156M 1s +2024-03-16T16:52:08Z #15 2.751 91150K .......... .......... .......... .......... .......... 71% 139M 1s +2024-03-16T16:52:08Z #15 2.751 91200K .......... .......... .......... .......... .......... 71% 81.9M 1s +2024-03-16T16:52:08Z #15 2.752 91250K .......... .......... .......... .......... .......... 72% 46.3M 1s +2024-03-16T16:52:08Z #15 2.753 91300K .......... .......... .......... .......... .......... 72% 59.8M 1s +2024-03-16T16:52:08Z #15 2.754 91350K .......... .......... .......... .......... .......... 72% 43.8M 1s +2024-03-16T16:52:08Z #15 2.755 91400K .......... .......... .......... .......... .......... 72% 157M 1s +2024-03-16T16:52:08Z #15 2.755 91450K .......... .......... .......... .......... .......... 72% 43.9M 1s +2024-03-16T16:52:08Z #15 2.756 91500K .......... .......... .......... .......... .......... 72% 169M 1s +2024-03-16T16:52:08Z #15 2.756 91550K .......... .......... .......... .......... .......... 72% 50.7M 1s +2024-03-16T16:52:08Z #15 2.757 91600K .......... .......... .......... .......... .......... 72% 76.6M 1s +2024-03-16T16:52:08Z #15 2.758 91650K .......... .......... .......... .......... .......... 72% 164M 1s +2024-03-16T16:52:08Z #15 2.758 91700K .......... .......... .......... .......... .......... 72% 57.2M 1s +2024-03-16T16:52:08Z #15 2.759 91750K .......... .......... .......... .......... .......... 72% 27.3M 1s +2024-03-16T16:52:08Z #15 2.761 91800K .......... .......... .......... .......... .......... 72% 23.3M 1s +2024-03-16T16:52:08Z #15 2.763 91850K .......... .......... .......... .......... .......... 72% 150M 1s +2024-03-16T16:52:08Z #15 2.764 91900K .......... .......... .......... .......... .......... 72% 176M 1s +2024-03-16T16:52:09Z #15 2.764 91950K .......... .......... .......... .......... .......... 72% 133M 1s +2024-03-16T16:52:09Z #15 2.764 92000K .......... .......... .......... .......... .......... 72% 67.1M 1s +2024-03-16T16:52:09Z #15 2.765 92050K .......... .......... .......... .......... .......... 72% 141M 1s +2024-03-16T16:52:09Z #15 2.765 92100K .......... .......... .......... .......... .......... 72% 169M 1s +2024-03-16T16:52:09Z #15 2.765 92150K .......... .......... .......... .......... .......... 72% 54.3M 1s +2024-03-16T16:52:09Z #15 2.766 92200K .......... .......... .......... .......... .......... 72% 67.7M 1s +2024-03-16T16:52:09Z #15 2.767 92250K .......... .......... .......... .......... .......... 72% 69.2M 1s +2024-03-16T16:52:09Z #15 2.768 92300K .......... .......... .......... .......... .......... 72% 163M 1s +2024-03-16T16:52:09Z #15 2.768 92350K .......... .......... .......... .......... .......... 72% 49.9M 1s +2024-03-16T16:52:09Z #15 2.769 92400K .......... .......... .......... .......... .......... 72% 65.5M 1s +2024-03-16T16:52:09Z #15 2.770 92450K .......... .......... .......... .......... .......... 72% 49.4M 1s +2024-03-16T16:52:09Z #15 2.771 92500K .......... .......... .......... .......... .......... 72% 49.7M 1s +2024-03-16T16:52:09Z #15 2.772 92550K .......... .......... .......... .......... .......... 73% 133M 1s +2024-03-16T16:52:09Z #15 2.772 92600K .......... .......... .......... .......... .......... 73% 45.4M 1s +2024-03-16T16:52:09Z #15 2.773 92650K .......... .......... .......... .......... .......... 73% 60.3M 1s +2024-03-16T16:52:09Z #15 2.774 92700K .......... .......... .......... .......... .......... 73% 51.2M 1s +2024-03-16T16:52:09Z #15 2.775 92750K .......... .......... .......... .......... .......... 73% 68.7M 1s +2024-03-16T16:52:09Z #15 2.776 92800K .......... .......... .......... .......... .......... 73% 146M 1s +2024-03-16T16:52:09Z #15 2.776 92850K .......... .......... .......... .......... .......... 73% 80.4M 1s +2024-03-16T16:52:09Z #15 2.776 92900K .......... .......... .......... .......... .......... 73% 62.6M 1s +2024-03-16T16:52:09Z #15 2.777 92950K .......... .......... .......... .......... .......... 73% 51.4M 1s +2024-03-16T16:52:09Z #15 2.778 93000K .......... .......... .......... .......... .......... 73% 162M 1s +2024-03-16T16:52:09Z #15 2.779 93050K .......... .......... .......... .......... .......... 73% 51.5M 1s +2024-03-16T16:52:09Z #15 2.779 93100K .......... .......... .......... .......... .......... 73% 62.1M 1s +2024-03-16T16:52:09Z #15 2.780 93150K .......... .......... .......... .......... .......... 73% 51.7M 1s +2024-03-16T16:52:09Z #15 2.781 93200K .......... .......... .......... .......... .......... 73% 77.0M 1s +2024-03-16T16:52:09Z #15 2.782 93250K .......... .......... .......... .......... .......... 73% 163M 1s +2024-03-16T16:52:09Z #15 2.782 93300K .......... .......... .......... .......... .......... 73% 24.6M 1s +2024-03-16T16:52:09Z #15 2.784 93350K .......... .......... .......... .......... .......... 73% 140M 1s +2024-03-16T16:52:09Z #15 2.784 93400K .......... .......... .......... .......... .......... 73% 61.9M 1s +2024-03-16T16:52:09Z #15 2.785 93450K .......... .......... .......... .......... .......... 73% 167M 1s +2024-03-16T16:52:09Z #15 2.786 93500K .......... .......... .......... .......... .......... 73% 95.9M 1s +2024-03-16T16:52:09Z #15 2.786 93550K .......... .......... .......... .......... .......... 73% 48.8M 1s +2024-03-16T16:52:09Z #15 2.787 93600K .......... .......... .......... .......... .......... 73% 157M 1s +2024-03-16T16:52:09Z #15 2.787 93650K .......... .......... .......... .......... .......... 73% 40.5M 1s +2024-03-16T16:52:09Z #15 2.788 93700K .......... .......... .......... .......... .......... 73% 91.8M 1s +2024-03-16T16:52:09Z #15 2.789 93750K .......... .......... .......... .......... .......... 73% 80.3M 1s +2024-03-16T16:52:09Z #15 2.790 93800K .......... .......... .......... .......... .......... 74% 76.6M 1s +2024-03-16T16:52:09Z #15 2.790 93850K .......... .......... .......... .......... .......... 74% 82.1M 1s +2024-03-16T16:52:09Z #15 2.791 93900K .......... .......... .......... .......... .......... 74% 71.7M 1s +2024-03-16T16:52:09Z #15 2.792 93950K .......... .......... .......... .......... .......... 74% 75.6M 1s +2024-03-16T16:52:09Z #15 2.792 94000K .......... .......... .......... .......... .......... 74% 42.7M 1s +2024-03-16T16:52:09Z #15 2.793 94050K .......... .......... .......... .......... .......... 74% 164M 1s +2024-03-16T16:52:09Z #15 2.794 94100K .......... .......... .......... .......... .......... 74% 74.7M 1s +2024-03-16T16:52:09Z #15 2.794 94150K .......... .......... .......... .......... .......... 74% 65.1M 1s +2024-03-16T16:52:09Z #15 2.795 94200K .......... .......... .......... .......... .......... 74% 69.0M 1s +2024-03-16T16:52:09Z #15 2.796 94250K .......... .......... .......... .......... .......... 74% 41.8M 1s +2024-03-16T16:52:09Z #15 2.797 94300K .......... .......... .......... .......... .......... 74% 44.0M 1s +2024-03-16T16:52:09Z #15 2.798 94350K .......... .......... .......... .......... .......... 74% 68.1M 1s +2024-03-16T16:52:09Z #15 2.799 94400K .......... .......... .......... .......... .......... 74% 99.2M 1s +2024-03-16T16:52:09Z #15 2.799 94450K .......... .......... .......... .......... .......... 74% 74.9M 1s +2024-03-16T16:52:09Z #15 2.800 94500K .......... .......... .......... .......... .......... 74% 47.6M 1s +2024-03-16T16:52:09Z #15 2.801 94550K .......... .......... .......... .......... .......... 74% 70.2M 1s +2024-03-16T16:52:09Z #15 2.802 94600K .......... .......... .......... .......... .......... 74% 84.3M 1s +2024-03-16T16:52:09Z #15 2.802 94650K .......... .......... .......... .......... .......... 74% 71.4M 1s +2024-03-16T16:52:09Z #15 2.803 94700K .......... .......... .......... .......... .......... 74% 37.3M 1s +2024-03-16T16:52:09Z #15 2.804 94750K .......... .......... .......... .......... .......... 74% 44.8M 1s +2024-03-16T16:52:09Z #15 2.805 94800K .......... .......... .......... .......... .......... 74% 59.4M 1s +2024-03-16T16:52:09Z #15 2.806 94850K .......... .......... .......... .......... .......... 74% 46.3M 1s +2024-03-16T16:52:09Z #15 2.808 94900K .......... .......... .......... .......... .......... 74% 41.8M 1s +2024-03-16T16:52:09Z #15 2.809 94950K .......... .......... .......... .......... .......... 74% 102M 1s +2024-03-16T16:52:09Z #15 2.809 95000K .......... .......... .......... .......... .......... 74% 40.6M 1s +2024-03-16T16:52:09Z #15 2.810 95050K .......... .......... .......... .......... .......... 75% 69.1M 1s +2024-03-16T16:52:09Z #15 2.811 95100K .......... .......... .......... .......... .......... 75% 23.0M 1s +2024-03-16T16:52:09Z #15 2.813 95150K .......... .......... .......... .......... .......... 75% 25.1M 1s +2024-03-16T16:52:09Z #15 2.815 95200K .......... .......... .......... .......... .......... 75% 28.5M 1s +2024-03-16T16:52:09Z #15 2.816 95250K .......... .......... .......... .......... .......... 75% 92.8M 1s +2024-03-16T16:52:09Z #15 2.817 95300K .......... .......... .......... .......... .......... 75% 158M 1s +2024-03-16T16:52:09Z #15 2.817 95350K .......... .......... .......... .......... .......... 75% 41.8M 1s +2024-03-16T16:52:09Z #15 2.818 95400K .......... .......... .......... .......... .......... 75% 26.3M 1s +2024-03-16T16:52:09Z #15 2.822 95450K .......... .......... .......... .......... .......... 75% 124M 1s +2024-03-16T16:52:09Z #15 2.822 95500K .......... .......... .......... .......... .......... 75% 110M 1s +2024-03-16T16:52:09Z #15 2.822 95550K .......... .......... .......... .......... .......... 75% 123M 1s +2024-03-16T16:52:09Z #15 2.822 95600K .......... .......... .......... .......... .......... 75% 73.0M 1s +2024-03-16T16:52:09Z #15 2.822 95650K .......... .......... .......... .......... .......... 75% 42.5M 1s +2024-03-16T16:52:09Z #15 2.823 95700K .......... .......... .......... .......... .......... 75% 57.8M 1s +2024-03-16T16:52:09Z #15 2.824 95750K .......... .......... .......... .......... .......... 75% 62.9M 1s +2024-03-16T16:52:09Z #15 2.825 95800K .......... .......... .......... .......... .......... 75% 86.8M 1s +2024-03-16T16:52:09Z #15 2.826 95850K .......... .......... .......... .......... .......... 75% 66.4M 1s +2024-03-16T16:52:09Z #15 2.826 95900K .......... .......... .......... .......... .......... 75% 67.9M 1s +2024-03-16T16:52:09Z #15 2.827 95950K .......... .......... .......... .......... .......... 75% 53.1M 1s +2024-03-16T16:52:09Z #15 2.828 96000K .......... .......... .......... .......... .......... 75% 78.3M 1s +2024-03-16T16:52:09Z #15 2.829 96050K .......... .......... .......... .......... .......... 75% 62.8M 1s +2024-03-16T16:52:09Z #15 2.829 96100K .......... .......... .......... .......... .......... 75% 65.6M 1s +2024-03-16T16:52:09Z #15 2.830 96150K .......... .......... .......... .......... .......... 75% 58.2M 1s +2024-03-16T16:52:09Z #15 2.831 96200K .......... .......... .......... .......... .......... 75% 69.9M 1s +2024-03-16T16:52:09Z #15 2.831 96250K .......... .......... .......... .......... .......... 75% 38.6M 1s +2024-03-16T16:52:09Z #15 2.833 96300K .......... .......... .......... .......... .......... 75% 40.2M 1s +2024-03-16T16:52:09Z #15 2.834 96350K .......... .......... .......... .......... .......... 76% 33.3M 1s +2024-03-16T16:52:09Z #15 2.842 96400K .......... .......... .......... .......... .......... 76% 48.5M 1s +2024-03-16T16:52:09Z #15 2.842 96450K .......... .......... .......... .......... .......... 76% 158M 1s +2024-03-16T16:52:09Z #15 2.842 96500K .......... .......... .......... .......... .......... 76% 156M 1s +2024-03-16T16:52:09Z #15 2.842 96550K .......... .......... .......... .......... .......... 76% 150M 1s +2024-03-16T16:52:09Z #15 2.842 96600K .......... .......... .......... .......... .......... 76% 124M 1s +2024-03-16T16:52:09Z #15 2.842 96650K .......... .......... .......... .......... .......... 76% 123M 1s +2024-03-16T16:52:09Z #15 2.842 96700K .......... .......... .......... .......... .......... 76% 163M 1s +2024-03-16T16:52:09Z #15 2.842 96750K .......... .......... .......... .......... .......... 76% 88.7M 1s +2024-03-16T16:52:09Z #15 2.842 96800K .......... .......... .......... .......... .......... 76% 49.4M 1s +2024-03-16T16:52:09Z #15 2.842 96850K .......... .......... .......... .......... .......... 76% 21.0M 1s +2024-03-16T16:52:09Z #15 2.844 96900K .......... .......... .......... .......... .......... 76% 13.6M 1s +2024-03-16T16:52:09Z #15 2.846 96950K .......... .......... .......... .......... .......... 76% 41.0M 1s +2024-03-16T16:52:09Z #15 2.847 97000K .......... .......... .......... .......... .......... 76% 32.7M 1s +2024-03-16T16:52:09Z #15 2.849 97050K .......... .......... .......... .......... .......... 76% 36.9M 1s +2024-03-16T16:52:09Z #15 2.850 97100K .......... .......... .......... .......... .......... 76% 37.3M 1s +2024-03-16T16:52:09Z #15 2.852 97150K .......... .......... .......... .......... .......... 76% 44.8M 1s +2024-03-16T16:52:09Z #15 2.853 97200K .......... .......... .......... .......... .......... 76% 56.2M 1s +2024-03-16T16:52:09Z #15 2.853 97250K .......... .......... .......... .......... .......... 76% 36.8M 1s +2024-03-16T16:52:09Z #15 2.855 97300K .......... .......... .......... .......... .......... 76% 61.1M 1s +2024-03-16T16:52:09Z #15 2.855 97350K .......... .......... .......... .......... .......... 76% 33.2M 1s +2024-03-16T16:52:09Z #15 2.857 97400K .......... .......... .......... .......... .......... 76% 49.2M 1s +2024-03-16T16:52:09Z #15 2.858 97450K .......... .......... .......... .......... .......... 76% 25.9M 1s +2024-03-16T16:52:09Z #15 2.862 97500K .......... .......... .......... .......... .......... 76% 134M 1s +2024-03-16T16:52:09Z #15 2.862 97550K .......... .......... .......... .......... .......... 76% 127M 0s +2024-03-16T16:52:09Z #15 2.862 97600K .......... .......... .......... .......... .......... 77% 174M 0s +2024-03-16T16:52:09Z #15 2.862 97650K .......... .......... .......... .......... .......... 77% 151M 0s +2024-03-16T16:52:09Z #15 2.862 97700K .......... .......... .......... .......... .......... 77% 165M 0s +2024-03-16T16:52:09Z #15 2.862 97750K .......... .......... .......... .......... .......... 77% 13.5M 0s +2024-03-16T16:52:09Z #15 2.866 97800K .......... .......... .......... .......... .......... 77% 148M 0s +2024-03-16T16:52:09Z #15 2.866 97850K .......... .......... .......... .......... .......... 77% 82.1M 0s +2024-03-16T16:52:09Z #15 2.867 97900K .......... .......... .......... .......... .......... 77% 29.2M 0s +2024-03-16T16:52:09Z #15 2.869 97950K .......... .......... .......... .......... .......... 77% 141M 0s +2024-03-16T16:52:09Z #15 2.869 98000K .......... .......... .......... .......... .......... 77% 169M 0s +2024-03-16T16:52:09Z #15 2.869 98050K .......... .......... .......... .......... .......... 77% 163M 0s +2024-03-16T16:52:09Z #15 2.869 98100K .......... .......... .......... .......... .......... 77% 165M 0s +2024-03-16T16:52:09Z #15 2.869 98150K .......... .......... .......... .......... .......... 77% 142M 0s +2024-03-16T16:52:09Z #15 2.869 98200K .......... .......... .......... .......... .......... 77% 28.2M 0s +2024-03-16T16:52:09Z #15 2.872 98250K .......... .......... .......... .......... .......... 77% 19.8M 0s +2024-03-16T16:52:09Z #15 2.874 98300K .......... .......... .......... .......... .......... 77% 49.8M 0s +2024-03-16T16:52:09Z #15 2.876 98350K .......... .......... .......... .......... .......... 77% 149M 0s +2024-03-16T16:52:09Z #15 2.876 98400K .......... .......... .......... .......... .......... 77% 151M 0s +2024-03-16T16:52:09Z #15 2.876 98450K .......... .......... .......... .......... .......... 77% 145M 0s +2024-03-16T16:52:09Z #15 2.876 98500K .......... .......... .......... .......... .......... 77% 179M 0s +2024-03-16T16:52:09Z #15 2.876 98550K .......... .......... .......... .......... .......... 77% 19.9M 0s +2024-03-16T16:52:09Z #15 2.879 98600K .......... .......... .......... .......... .......... 77% 26.8M 0s +2024-03-16T16:52:09Z #15 2.881 98650K .......... .......... .......... .......... .......... 77% 163M 0s +2024-03-16T16:52:09Z #15 2.881 98700K .......... .......... .......... .......... .......... 77% 172M 0s +2024-03-16T16:52:09Z #15 2.881 98750K .......... .......... .......... .......... .......... 77% 141M 0s +2024-03-16T16:52:09Z #15 2.881 98800K .......... .......... .......... .......... .......... 77% 156M 0s +2024-03-16T16:52:09Z #15 2.881 98850K .......... .......... .......... .......... .......... 78% 23.5M 0s +2024-03-16T16:52:09Z #15 2.884 98900K .......... .......... .......... .......... .......... 78% 17.1M 0s +2024-03-16T16:52:09Z #15 2.888 98950K .......... .......... .......... .......... .......... 78% 78.8M 0s +2024-03-16T16:52:09Z #15 2.888 99000K .......... .......... .......... .......... .......... 78% 139M 0s +2024-03-16T16:52:09Z #15 2.888 99050K .......... .......... .......... .......... .......... 78% 172M 0s +2024-03-16T16:52:09Z #15 2.888 99100K .......... .......... .......... .......... .......... 78% 157M 0s +2024-03-16T16:52:09Z #15 2.888 99150K .......... .......... .......... .......... .......... 78% 131M 0s +2024-03-16T16:52:09Z #15 2.888 99200K .......... .......... .......... .......... .......... 78% 171M 0s +2024-03-16T16:52:09Z #15 2.888 99250K .......... .......... .......... .......... .......... 78% 18.5M 0s +2024-03-16T16:52:09Z #15 2.891 99300K .......... .......... .......... .......... .......... 78% 24.4M 0s +2024-03-16T16:52:09Z #15 2.897 99350K .......... .......... .......... .......... .......... 78% 28.8M 0s +2024-03-16T16:52:09Z #15 2.897 99400K .......... .......... .......... .......... .......... 78% 33.0M 0s +2024-03-16T16:52:09Z #15 2.897 99450K .......... .......... .......... .......... .......... 78% 29.6M 0s +2024-03-16T16:52:09Z #15 2.898 99500K .......... .......... .......... .......... .......... 78% 37.7M 0s +2024-03-16T16:52:09Z #15 2.899 99550K .......... .......... .......... .......... .......... 78% 24.3M 0s +2024-03-16T16:52:09Z #15 2.902 99600K .......... .......... .......... .......... .......... 78% 76.4M 0s +2024-03-16T16:52:09Z #15 2.902 99650K .......... .......... .......... .......... .......... 78% 83.5M 0s +2024-03-16T16:52:09Z #15 2.904 99700K .......... .......... .......... .......... .......... 78% 142M 0s +2024-03-16T16:52:09Z #15 2.904 99750K .......... .......... .......... .......... .......... 78% 156M 0s +2024-03-16T16:52:09Z #15 2.904 99800K .......... .......... .......... .......... .......... 78% 173M 0s +2024-03-16T16:52:09Z #15 2.904 99850K .......... .......... .......... .......... .......... 78% 180M 0s +2024-03-16T16:52:09Z #15 2.904 99900K .......... .......... .......... .......... .......... 78% 22.9M 0s +2024-03-16T16:52:09Z #15 2.907 99950K .......... .......... .......... .......... .......... 78% 10.4M 0s +2024-03-16T16:52:09Z #15 2.914 100000K .......... .......... .......... .......... .......... 78% 135M 0s +2024-03-16T16:52:09Z #15 2.914 100050K .......... .......... .......... .......... .......... 78% 165M 0s +2024-03-16T16:52:09Z #15 2.914 100100K .......... .......... .......... .......... .......... 78% 158M 0s +2024-03-16T16:52:09Z #15 2.914 100150K .......... .......... .......... .......... .......... 79% 129M 0s +2024-03-16T16:52:09Z #15 2.914 100200K .......... .......... .......... .......... .......... 79% 144M 0s +2024-03-16T16:52:09Z #15 2.914 100250K .......... .......... .......... .......... .......... 79% 143M 0s +2024-03-16T16:52:09Z #15 2.914 100300K .......... .......... .......... .......... .......... 79% 151M 0s +2024-03-16T16:52:09Z #15 2.914 100350K .......... .......... .......... .......... .......... 79% 189M 0s +2024-03-16T16:52:09Z #15 2.914 100400K .......... .......... .......... .......... .......... 79% 140M 0s +2024-03-16T16:52:09Z #15 2.914 100450K .......... .......... .......... .......... .......... 79% 165M 0s +2024-03-16T16:52:09Z #15 2.917 100500K .......... .......... .......... .......... .......... 79% 8.94M 0s +2024-03-16T16:52:09Z #15 2.922 100550K .......... .......... .......... .......... .......... 79% 151M 0s +2024-03-16T16:52:09Z #15 2.922 100600K .......... .......... .......... .......... .......... 79% 150M 0s +2024-03-16T16:52:09Z #15 2.922 100650K .......... .......... .......... .......... .......... 79% 168M 0s +2024-03-16T16:52:09Z #15 2.922 100700K .......... .......... .......... .......... .......... 79% 141M 0s +2024-03-16T16:52:09Z #15 2.922 100750K .......... .......... .......... .......... .......... 79% 167M 0s +2024-03-16T16:52:09Z #15 2.922 100800K .......... .......... .......... .......... .......... 79% 162M 0s +2024-03-16T16:52:09Z #15 2.922 100850K .......... .......... .......... .......... .......... 79% 159M 0s +2024-03-16T16:52:09Z #15 2.922 100900K .......... .......... .......... .......... .......... 79% 157M 0s +2024-03-16T16:52:09Z #15 2.922 100950K .......... .......... .......... .......... .......... 79% 20.0M 0s +2024-03-16T16:52:09Z #15 2.924 101000K .......... .......... .......... .......... .......... 79% 17.9M 0s +2024-03-16T16:52:09Z #15 2.927 101050K .......... .......... .......... .......... .......... 79% 151M 0s +2024-03-16T16:52:09Z #15 2.927 101100K .......... .......... .......... .......... .......... 79% 6.20M 0s +2024-03-16T16:52:09Z #15 2.935 101150K .......... .......... .......... .......... .......... 79% 45.7M 0s +2024-03-16T16:52:09Z #15 2.936 101200K .......... .......... .......... .......... .......... 79% 8.54M 0s +2024-03-16T16:52:09Z #15 2.942 101250K .......... .......... .......... .......... .......... 79% 143M 0s +2024-03-16T16:52:09Z #15 2.942 101300K .......... .......... .......... .......... .......... 79% 132M 0s +2024-03-16T16:52:09Z #15 2.942 101350K .......... .......... .......... .......... .......... 79% 159M 0s +2024-03-16T16:52:09Z #15 2.943 101400K .......... .......... .......... .......... .......... 80% 130M 0s +2024-03-16T16:52:09Z #15 2.944 101450K .......... .......... .......... .......... .......... 80% 166M 0s +2024-03-16T16:52:09Z #15 2.944 101500K .......... .......... .......... .......... .......... 80% 150M 0s +2024-03-16T16:52:09Z #15 2.944 101550K .......... .......... .......... .......... .......... 80% 125M 0s +2024-03-16T16:52:09Z #15 2.944 101600K .......... .......... .......... .......... .......... 80% 177M 0s +2024-03-16T16:52:09Z #15 2.944 101650K .......... .......... .......... .......... .......... 80% 57.4M 0s +2024-03-16T16:52:09Z #15 2.946 101700K .......... .......... .......... .......... .......... 80% 160M 0s +2024-03-16T16:52:09Z #15 2.950 101750K .......... .......... .......... .......... .......... 80% 11.1M 0s +2024-03-16T16:52:09Z #15 2.952 101800K .......... .......... .......... .......... .......... 80% 167M 0s +2024-03-16T16:52:09Z #15 2.952 101850K .......... .......... .......... .......... .......... 80% 176M 0s +2024-03-16T16:52:09Z #15 2.952 101900K .......... .......... .......... .......... .......... 80% 140M 0s +2024-03-16T16:52:09Z #15 2.952 101950K .......... .......... .......... .......... .......... 80% 162M 0s +2024-03-16T16:52:09Z #15 2.952 102000K .......... .......... .......... .......... .......... 80% 189M 0s +2024-03-16T16:52:09Z #15 2.952 102050K .......... .......... .......... .......... .......... 80% 182M 0s +2024-03-16T16:52:09Z #15 2.952 102100K .......... .......... .......... .......... .......... 80% 63.0M 0s +2024-03-16T16:52:09Z #15 2.953 102150K .......... .......... .......... .......... .......... 80% 24.5M 0s +2024-03-16T16:52:09Z #15 2.955 102200K .......... .......... .......... .......... .......... 80% 70.6M 0s +2024-03-16T16:52:09Z #15 2.955 102250K .......... .......... .......... .......... .......... 80% 79.7M 0s +2024-03-16T16:52:09Z #15 2.956 102300K .......... .......... .......... .......... .......... 80% 142M 0s +2024-03-16T16:52:09Z #15 2.956 102350K .......... .......... .......... .......... .......... 80% 157M 0s +2024-03-16T16:52:09Z #15 2.957 102400K .......... .......... .......... .......... .......... 80% 50.0M 0s +2024-03-16T16:52:09Z #15 2.957 102450K .......... .......... .......... .......... .......... 80% 78.8M 0s +2024-03-16T16:52:09Z #15 2.958 102500K .......... .......... .......... .......... .......... 80% 63.0M 0s +2024-03-16T16:52:09Z #15 2.959 102550K .......... .......... .......... .......... .......... 80% 64.9M 0s +2024-03-16T16:52:09Z #15 2.961 102600K .......... .......... .......... .......... .......... 80% 157M 0s +2024-03-16T16:52:09Z #15 2.961 102650K .......... .......... .......... .......... .......... 81% 45.9M 0s +2024-03-16T16:52:09Z #15 2.961 102700K .......... .......... .......... .......... .......... 81% 110M 0s +2024-03-16T16:52:09Z #15 2.962 102750K .......... .......... .......... .......... .......... 81% 57.7M 0s +2024-03-16T16:52:09Z #15 2.962 102800K .......... .......... .......... .......... .......... 81% 60.0M 0s +2024-03-16T16:52:09Z #15 2.963 102850K .......... .......... .......... .......... .......... 81% 156M 0s +2024-03-16T16:52:09Z #15 2.963 102900K .......... .......... .......... .......... .......... 81% 56.9M 0s +2024-03-16T16:52:09Z #15 2.964 102950K .......... .......... .......... .......... .......... 81% 70.3M 0s +2024-03-16T16:52:09Z #15 2.965 103000K .......... .......... .......... .......... .......... 81% 62.7M 0s +2024-03-16T16:52:09Z #15 2.966 103050K .......... .......... .......... .......... .......... 81% 176M 0s +2024-03-16T16:52:09Z #15 2.966 103100K .......... .......... .......... .......... .......... 81% 53.1M 0s +2024-03-16T16:52:09Z #15 2.967 103150K .......... .......... .......... .......... .......... 81% 67.1M 0s +2024-03-16T16:52:09Z #15 2.968 103200K .......... .......... .......... .......... .......... 81% 69.4M 0s +2024-03-16T16:52:09Z #15 2.969 103250K .......... .......... .......... .......... .......... 81% 49.4M 0s +2024-03-16T16:52:09Z #15 2.970 103300K .......... .......... .......... .......... .......... 81% 161M 0s +2024-03-16T16:52:09Z #15 2.970 103350K .......... .......... .......... .......... .......... 81% 79.4M 0s +2024-03-16T16:52:09Z #15 2.970 103400K .......... .......... .......... .......... .......... 81% 28.2M 0s +2024-03-16T16:52:09Z #15 2.973 103450K .......... .......... .......... .......... .......... 81% 39.1M 0s +2024-03-16T16:52:09Z #15 2.973 103500K .......... .......... .......... .......... .......... 81% 23.5M 0s +2024-03-16T16:52:09Z #15 2.976 103550K .......... .......... .......... .......... .......... 81% 39.1M 0s +2024-03-16T16:52:09Z #15 2.976 103600K .......... .......... .......... .......... .......... 81% 65.8M 0s +2024-03-16T16:52:09Z #15 2.977 103650K .......... .......... .......... .......... .......... 81% 64.5M 0s +2024-03-16T16:52:09Z #15 2.978 103700K .......... .......... .......... .......... .......... 81% 71.9M 0s +2024-03-16T16:52:09Z #15 2.979 103750K .......... .......... .......... .......... .......... 81% 62.1M 0s +2024-03-16T16:52:09Z #15 2.979 103800K .......... .......... .......... .......... .......... 81% 75.2M 0s +2024-03-16T16:52:09Z #15 2.980 103850K .......... .......... .......... .......... .......... 81% 73.2M 0s +2024-03-16T16:52:09Z #15 2.981 103900K .......... .......... .......... .......... .......... 81% 62.4M 0s +2024-03-16T16:52:09Z #15 2.982 103950K .......... .......... .......... .......... .......... 82% 72.4M 0s +2024-03-16T16:52:09Z #15 2.982 104000K .......... .......... .......... .......... .......... 82% 31.2M 0s +2024-03-16T16:52:09Z #15 2.984 104050K .......... .......... .......... .......... .......... 82% 74.8M 0s +2024-03-16T16:52:09Z #15 2.984 104100K .......... .......... .......... .......... .......... 82% 58.0M 0s +2024-03-16T16:52:09Z #15 2.985 104150K .......... .......... .......... .......... .......... 82% 59.8M 0s +2024-03-16T16:52:09Z #15 2.986 104200K .......... .......... .......... .......... .......... 82% 130M 0s +2024-03-16T16:52:09Z #15 2.987 104250K .......... .......... .......... .......... .......... 82% 105M 0s +2024-03-16T16:52:09Z #15 2.987 104300K .......... .......... .......... .......... .......... 82% 111M 0s +2024-03-16T16:52:09Z #15 2.987 104350K .......... .......... .......... .......... .......... 82% 134M 0s +2024-03-16T16:52:09Z #15 2.988 104400K .......... .......... .......... .......... .......... 82% 132M 0s +2024-03-16T16:52:09Z #15 2.988 104450K .......... .......... .......... .......... .......... 82% 148M 0s +2024-03-16T16:52:09Z #15 2.989 104500K .......... .......... .......... .......... .......... 82% 116M 0s +2024-03-16T16:52:09Z #15 2.989 104550K .......... .......... .......... .......... .......... 82% 105M 0s +2024-03-16T16:52:09Z #15 2.989 104600K .......... .......... .......... .......... .......... 82% 17.3M 0s +2024-03-16T16:52:09Z #15 2.993 104650K .......... .......... .......... .......... .......... 82% 86.2M 0s +2024-03-16T16:52:09Z #15 2.993 104700K .......... .......... .......... .......... .......... 82% 27.8M 0s +2024-03-16T16:52:09Z #15 2.995 104750K .......... .......... .......... .......... .......... 82% 75.3M 0s +2024-03-16T16:52:09Z #15 2.995 104800K .......... .......... .......... .......... .......... 82% 99.3M 0s +2024-03-16T16:52:09Z #15 2.996 104850K .......... .......... .......... .......... .......... 82% 48.9M 0s +2024-03-16T16:52:09Z #15 2.997 104900K .......... .......... .......... .......... .......... 82% 146M 0s +2024-03-16T16:52:09Z #15 2.997 104950K .......... .......... .......... .......... .......... 82% 31.4M 0s +2024-03-16T16:52:09Z #15 2.998 105000K .......... .......... .......... .......... .......... 82% 54.5M 0s +2024-03-16T16:52:09Z #15 2.999 105050K .......... .......... .......... .......... .......... 82% 30.1M 0s +2024-03-16T16:52:09Z #15 3.001 105100K .......... .......... .......... .......... .......... 82% 123M 0s +2024-03-16T16:52:09Z #15 3.001 105150K .......... .......... .......... .......... .......... 82% 9.91M 0s +2024-03-16T16:52:09Z #15 3.007 105200K .......... .......... .......... .......... .......... 83% 16.4M 0s +2024-03-16T16:52:09Z #15 3.009 105250K .......... .......... .......... .......... .......... 83% 35.1M 0s +2024-03-16T16:52:09Z #15 3.011 105300K .......... .......... .......... .......... .......... 83% 40.2M 0s +2024-03-16T16:52:09Z #15 3.012 105350K .......... .......... .......... .......... .......... 83% 122M 0s +2024-03-16T16:52:09Z #15 3.012 105400K .......... .......... .......... .......... .......... 83% 43.4M 0s +2024-03-16T16:52:09Z #15 3.014 105450K .......... .......... .......... .......... .......... 83% 78.5M 0s +2024-03-16T16:52:09Z #15 3.014 105500K .......... .......... .......... .......... .......... 83% 106M 0s +2024-03-16T16:52:09Z #15 3.015 105550K .......... .......... .......... .......... .......... 83% 27.5M 0s +2024-03-16T16:52:09Z #15 3.016 105600K .......... .......... .......... .......... .......... 83% 125M 0s +2024-03-16T16:52:09Z #15 3.017 105650K .......... .......... .......... .......... .......... 83% 41.1M 0s +2024-03-16T16:52:09Z #15 3.018 105700K .......... .......... .......... .......... .......... 83% 42.0M 0s +2024-03-16T16:52:09Z #15 3.019 105750K .......... .......... .......... .......... .......... 83% 36.7M 0s +2024-03-16T16:52:09Z #15 3.020 105800K .......... .......... .......... .......... .......... 83% 24.2M 0s +2024-03-16T16:52:09Z #15 3.023 105850K .......... .......... .......... .......... .......... 83% 45.8M 0s +2024-03-16T16:52:09Z #15 3.024 105900K .......... .......... .......... .......... .......... 83% 75.8M 0s +2024-03-16T16:52:09Z #15 3.024 105950K .......... .......... .......... .......... .......... 83% 79.0M 0s +2024-03-16T16:52:09Z #15 3.025 106000K .......... .......... .......... .......... .......... 83% 44.5M 0s +2024-03-16T16:52:09Z #15 3.026 106050K .......... .......... .......... .......... .......... 83% 68.7M 0s +2024-03-16T16:52:09Z #15 3.027 106100K .......... .......... .......... .......... .......... 83% 92.1M 0s +2024-03-16T16:52:09Z #15 3.027 106150K .......... .......... .......... .......... .......... 83% 156M 0s +2024-03-16T16:52:09Z #15 3.027 106200K .......... .......... .......... .......... .......... 83% 71.9M 0s +2024-03-16T16:52:09Z #15 3.028 106250K .......... .......... .......... .......... .......... 83% 50.2M 0s +2024-03-16T16:52:09Z #15 3.029 106300K .......... .......... .......... .......... .......... 83% 51.8M 0s +2024-03-16T16:52:09Z #15 3.030 106350K .......... .......... .......... .......... .......... 83% 53.9M 0s +2024-03-16T16:52:09Z #15 3.031 106400K .......... .......... .......... .......... .......... 83% 56.1M 0s +2024-03-16T16:52:09Z #15 3.032 106450K .......... .......... .......... .......... .......... 84% 49.8M 0s +2024-03-16T16:52:09Z #15 3.033 106500K .......... .......... .......... .......... .......... 84% 77.3M 0s +2024-03-16T16:52:09Z #15 3.034 106550K .......... .......... .......... .......... .......... 84% 57.4M 0s +2024-03-16T16:52:09Z #15 3.035 106600K .......... .......... .......... .......... .......... 84% 70.8M 0s +2024-03-16T16:52:09Z #15 3.035 106650K .......... .......... .......... .......... .......... 84% 60.3M 0s +2024-03-16T16:52:09Z #15 3.036 106700K .......... .......... .......... .......... .......... 84% 8.46M 0s +2024-03-16T16:52:09Z #15 3.042 106750K .......... .......... .......... .......... .......... 84% 117M 0s +2024-03-16T16:52:09Z #15 3.043 106800K .......... .......... .......... .......... .......... 84% 124M 0s +2024-03-16T16:52:09Z #15 3.043 106850K .......... .......... .......... .......... .......... 84% 127M 0s +2024-03-16T16:52:09Z #15 3.043 106900K .......... .......... .......... .......... .......... 84% 131M 0s +2024-03-16T16:52:09Z #15 3.043 106950K .......... .......... .......... .......... .......... 84% 108M 0s +2024-03-16T16:52:09Z #15 3.043 107000K .......... .......... .......... .......... .......... 84% 125M 0s +2024-03-16T16:52:09Z #15 3.044 107050K .......... .......... .......... .......... .......... 84% 143M 0s +2024-03-16T16:52:09Z #15 3.044 107100K .......... .......... .......... .......... .......... 84% 108M 0s +2024-03-16T16:52:09Z #15 3.045 107150K .......... .......... .......... .......... .......... 84% 95.0M 0s +2024-03-16T16:52:09Z #15 3.045 107200K .......... .......... .......... .......... .......... 84% 137M 0s +2024-03-16T16:52:09Z #15 3.048 107250K .......... .......... .......... .......... .......... 84% 28.3M 0s +2024-03-16T16:52:09Z #15 3.048 107300K .......... .......... .......... .......... .......... 84% 110M 0s +2024-03-16T16:52:09Z #15 3.048 107350K .......... .......... .......... .......... .......... 84% 104M 0s +2024-03-16T16:52:09Z #15 3.048 107400K .......... .......... .......... .......... .......... 84% 141M 0s +2024-03-16T16:52:09Z #15 3.049 107450K .......... .......... .......... .......... .......... 84% 9.04M 0s +2024-03-16T16:52:09Z #15 3.054 107500K .......... .......... .......... .......... .......... 84% 132M 0s +2024-03-16T16:52:09Z #15 3.054 107550K .......... .......... .......... .......... .......... 84% 114M 0s +2024-03-16T16:52:09Z #15 3.055 107600K .......... .......... .......... .......... .......... 84% 125M 0s +2024-03-16T16:52:09Z #15 3.055 107650K .......... .......... .......... .......... .......... 84% 144M 0s +2024-03-16T16:52:09Z #15 3.055 107700K .......... .......... .......... .......... .......... 84% 135M 0s +2024-03-16T16:52:09Z #15 3.056 107750K .......... .......... .......... .......... .......... 85% 120M 0s +2024-03-16T16:52:09Z #15 3.057 107800K .......... .......... .......... .......... .......... 85% 23.1M 0s +2024-03-16T16:52:09Z #15 3.059 107850K .......... .......... .......... .......... .......... 85% 144M 0s +2024-03-16T16:52:09Z #15 3.059 107900K .......... .......... .......... .......... .......... 85% 124M 0s +2024-03-16T16:52:09Z #15 3.059 107950K .......... .......... .......... .......... .......... 85% 127M 0s +2024-03-16T16:52:09Z #15 3.060 108000K .......... .......... .......... .......... .......... 85% 115M 0s +2024-03-16T16:52:09Z #15 3.061 108050K .......... .......... .......... .......... .......... 85% 129M 0s +2024-03-16T16:52:09Z #15 3.061 108100K .......... .......... .......... .......... .......... 85% 128M 0s +2024-03-16T16:52:09Z #15 3.062 108150K .......... .......... .......... .......... .......... 85% 39.0M 0s +2024-03-16T16:52:09Z #15 3.063 108200K .......... .......... .......... .......... .......... 85% 35.7M 0s +2024-03-16T16:52:09Z #15 3.064 108250K .......... .......... .......... .......... .......... 85% 152M 0s +2024-03-16T16:52:09Z #15 3.064 108300K .......... .......... .......... .......... .......... 85% 150M 0s +2024-03-16T16:52:09Z #15 3.064 108350K .......... .......... .......... .......... .......... 85% 57.0M 0s +2024-03-16T16:52:09Z #15 3.065 108400K .......... .......... .......... .......... .......... 85% 85.0M 0s +2024-03-16T16:52:09Z #15 3.066 108450K .......... .......... .......... .......... .......... 85% 57.6M 0s +2024-03-16T16:52:09Z #15 3.066 108500K .......... .......... .......... .......... .......... 85% 38.6M 0s +2024-03-16T16:52:09Z #15 3.068 108550K .......... .......... .......... .......... .......... 85% 62.7M 0s +2024-03-16T16:52:09Z #15 3.069 108600K .......... .......... .......... .......... .......... 85% 169M 0s +2024-03-16T16:52:09Z #15 3.069 108650K .......... .......... .......... .......... .......... 85% 51.9M 0s +2024-03-16T16:52:09Z #15 3.069 108700K .......... .......... .......... .......... .......... 85% 62.0M 0s +2024-03-16T16:52:09Z #15 3.072 108750K .......... .......... .......... .......... .......... 85% 46.8M 0s +2024-03-16T16:52:09Z #15 3.072 108800K .......... .......... .......... .......... .......... 85% 53.0M 0s +2024-03-16T16:52:09Z #15 3.072 108850K .......... .......... .......... .......... .......... 85% 108M 0s +2024-03-16T16:52:09Z #15 3.073 108900K .......... .......... .......... .......... .......... 85% 19.7M 0s +2024-03-16T16:52:09Z #15 3.076 108950K .......... .......... .......... .......... .......... 85% 23.8M 0s +2024-03-16T16:52:09Z #15 3.077 109000K .......... .......... .......... .......... .......... 86% 107M 0s +2024-03-16T16:52:09Z #15 3.078 109050K .......... .......... .......... .......... .......... 86% 99.6M 0s +2024-03-16T16:52:09Z #15 3.078 109100K .......... .......... .......... .......... .......... 86% 30.5M 0s +2024-03-16T16:52:09Z #15 3.080 109150K .......... .......... .......... .......... .......... 86% 46.0M 0s +2024-03-16T16:52:09Z #15 3.081 109200K .......... .......... .......... .......... .......... 86% 64.2M 0s +2024-03-16T16:52:09Z #15 3.082 109250K .......... .......... .......... .......... .......... 86% 59.4M 0s +2024-03-16T16:52:09Z #15 3.084 109300K .......... .......... .......... .......... .......... 86% 177M 0s +2024-03-16T16:52:09Z #15 3.084 109350K .......... .......... .......... .......... .......... 86% 151M 0s +2024-03-16T16:52:09Z #15 3.084 109400K .......... .......... .......... .......... .......... 86% 183M 0s +2024-03-16T16:52:09Z #15 3.084 109450K .......... .......... .......... .......... .......... 86% 175M 0s +2024-03-16T16:52:09Z #15 3.084 109500K .......... .......... .......... .......... .......... 86% 91.7M 0s +2024-03-16T16:52:09Z #15 3.084 109550K .......... .......... .......... .......... .......... 86% 97.7M 0s +2024-03-16T16:52:09Z #15 3.085 109600K .......... .......... .......... .......... .......... 86% 30.9M 0s +2024-03-16T16:52:09Z #15 3.087 109650K .......... .......... .......... .......... .......... 86% 30.0M 0s +2024-03-16T16:52:09Z #15 3.088 109700K .......... .......... .......... .......... .......... 86% 59.0M 0s +2024-03-16T16:52:09Z #15 3.089 109750K .......... .......... .......... .......... .......... 86% 52.1M 0s +2024-03-16T16:52:09Z #15 3.090 109800K .......... .......... .......... .......... .......... 86% 120M 0s +2024-03-16T16:52:09Z #15 3.090 109850K .......... .......... .......... .......... .......... 86% 120M 0s +2024-03-16T16:52:09Z #15 3.090 109900K .......... .......... .......... .......... .......... 86% 101M 0s +2024-03-16T16:52:09Z #15 3.091 109950K .......... .......... .......... .......... .......... 86% 111M 0s +2024-03-16T16:52:09Z #15 3.091 110000K .......... .......... .......... .......... .......... 86% 113M 0s +2024-03-16T16:52:09Z #15 3.092 110050K .......... .......... .......... .......... .......... 86% 48.7M 0s +2024-03-16T16:52:09Z #15 3.093 110100K .......... .......... .......... .......... .......... 86% 64.4M 0s +2024-03-16T16:52:09Z #15 3.094 110150K .......... .......... .......... .......... .......... 86% 91.3M 0s +2024-03-16T16:52:09Z #15 3.094 110200K .......... .......... .......... .......... .......... 86% 58.5M 0s +2024-03-16T16:52:09Z #15 3.095 110250K .......... .......... .......... .......... .......... 86% 63.7M 0s +2024-03-16T16:52:09Z #15 3.096 110300K .......... .......... .......... .......... .......... 87% 118M 0s +2024-03-16T16:52:09Z #15 3.096 110350K .......... .......... .......... .......... .......... 87% 91.6M 0s +2024-03-16T16:52:09Z #15 3.097 110400K .......... .......... .......... .......... .......... 87% 119M 0s +2024-03-16T16:52:09Z #15 3.097 110450K .......... .......... .......... .......... .......... 87% 61.1M 0s +2024-03-16T16:52:09Z #15 3.098 110500K .......... .......... .......... .......... .......... 87% 120M 0s +2024-03-16T16:52:09Z #15 3.098 110550K .......... .......... .......... .......... .......... 87% 59.6M 0s +2024-03-16T16:52:09Z #15 3.099 110600K .......... .......... .......... .......... .......... 87% 90.0M 0s +2024-03-16T16:52:09Z #15 3.100 110650K .......... .......... .......... .......... .......... 87% 54.8M 0s +2024-03-16T16:52:09Z #15 3.100 110700K .......... .......... .......... .......... .......... 87% 59.0M 0s +2024-03-16T16:52:09Z #15 3.101 110750K .......... .......... .......... .......... .......... 87% 49.6M 0s +2024-03-16T16:52:09Z #15 3.102 110800K .......... .......... .......... .......... .......... 87% 72.9M 0s +2024-03-16T16:52:09Z #15 3.103 110850K .......... .......... .......... .......... .......... 87% 58.4M 0s +2024-03-16T16:52:09Z #15 3.104 110900K .......... .......... .......... .......... .......... 87% 62.8M 0s +2024-03-16T16:52:09Z #15 3.105 110950K .......... .......... .......... .......... .......... 87% 53.8M 0s +2024-03-16T16:52:09Z #15 3.106 111000K .......... .......... .......... .......... .......... 87% 54.8M 0s +2024-03-16T16:52:09Z #15 3.107 111050K .......... .......... .......... .......... .......... 87% 90.0M 0s +2024-03-16T16:52:09Z #15 3.107 111100K .......... .......... .......... .......... .......... 87% 100M 0s +2024-03-16T16:52:09Z #15 3.107 111150K .......... .......... .......... .......... .......... 87% 54.0M 0s +2024-03-16T16:52:09Z #15 3.109 111200K .......... .......... .......... .......... .......... 87% 57.5M 0s +2024-03-16T16:52:09Z #15 3.109 111250K .......... .......... .......... .......... .......... 87% 17.9M 0s +2024-03-16T16:52:09Z #15 3.112 111300K .......... .......... .......... .......... .......... 87% 48.9M 0s +2024-03-16T16:52:09Z #15 3.113 111350K .......... .......... .......... .......... .......... 87% 23.7M 0s +2024-03-16T16:52:09Z #15 3.115 111400K .......... .......... .......... .......... .......... 87% 29.7M 0s +2024-03-16T16:52:09Z #15 3.116 111450K .......... .......... .......... .......... .......... 87% 33.2M 0s +2024-03-16T16:52:09Z #15 3.118 111500K .......... .......... .......... .......... .......... 87% 74.6M 0s +2024-03-16T16:52:09Z #15 3.119 111550K .......... .......... .......... .......... .......... 88% 60.5M 0s +2024-03-16T16:52:09Z #15 3.120 111600K .......... .......... .......... .......... .......... 88% 74.5M 0s +2024-03-16T16:52:09Z #15 3.122 111650K .......... .......... .......... .......... .......... 88% 74.0M 0s +2024-03-16T16:52:09Z #15 3.122 111700K .......... .......... .......... .......... .......... 88% 91.6M 0s +2024-03-16T16:52:09Z #15 3.122 111750K .......... .......... .......... .......... .......... 88% 56.4M 0s +2024-03-16T16:52:09Z #15 3.124 111800K .......... .......... .......... .......... .......... 88% 102M 0s +2024-03-16T16:52:09Z #15 3.124 111850K .......... .......... .......... .......... .......... 88% 92.8M 0s +2024-03-16T16:52:09Z #15 3.124 111900K .......... .......... .......... .......... .......... 88% 82.4M 0s +2024-03-16T16:52:09Z #15 3.124 111950K .......... .......... .......... .......... .......... 88% 66.5M 0s +2024-03-16T16:52:09Z #15 3.125 112000K .......... .......... .......... .......... .......... 88% 31.1M 0s +2024-03-16T16:52:09Z #15 3.126 112050K .......... .......... .......... .......... .......... 88% 36.8M 0s +2024-03-16T16:52:09Z #15 3.129 112100K .......... .......... .......... .......... .......... 88% 131M 0s +2024-03-16T16:52:09Z #15 3.129 112150K .......... .......... .......... .......... .......... 88% 136M 0s +2024-03-16T16:52:09Z #15 3.129 112200K .......... .......... .......... .......... .......... 88% 134M 0s +2024-03-16T16:52:09Z #15 3.129 112250K .......... .......... .......... .......... .......... 88% 115M 0s +2024-03-16T16:52:09Z #15 3.129 112300K .......... .......... .......... .......... .......... 88% 28.6M 0s +2024-03-16T16:52:09Z #15 3.132 112350K .......... .......... .......... .......... .......... 88% 110M 0s +2024-03-16T16:52:09Z #15 3.132 112400K .......... .......... .......... .......... .......... 88% 142M 0s +2024-03-16T16:52:09Z #15 3.132 112450K .......... .......... .......... .......... .......... 88% 143M 0s +2024-03-16T16:52:09Z #15 3.132 112500K .......... .......... .......... .......... .......... 88% 54.6M 0s +2024-03-16T16:52:09Z #15 3.133 112550K .......... .......... .......... .......... .......... 88% 70.6M 0s +2024-03-16T16:52:09Z #15 3.133 112600K .......... .......... .......... .......... .......... 88% 54.4M 0s +2024-03-16T16:52:09Z #15 3.134 112650K .......... .......... .......... .......... .......... 88% 146M 0s +2024-03-16T16:52:09Z #15 3.135 112700K .......... .......... .......... .......... .......... 88% 61.7M 0s +2024-03-16T16:52:09Z #15 3.135 112750K .......... .......... .......... .......... .......... 88% 60.0M 0s +2024-03-16T16:52:09Z #15 3.136 112800K .......... .......... .......... .......... .......... 89% 5.03M 0s +2024-03-16T16:52:09Z #15 3.146 112850K .......... .......... .......... .......... .......... 89% 73.0M 0s +2024-03-16T16:52:09Z #15 3.147 112900K .......... .......... .......... .......... .......... 89% 117M 0s +2024-03-16T16:52:09Z #15 3.147 112950K .......... .......... .......... .......... .......... 89% 62.3M 0s +2024-03-16T16:52:09Z #15 3.148 113000K .......... .......... .......... .......... .......... 89% 62.3M 0s +2024-03-16T16:52:09Z #15 3.149 113050K .......... .......... .......... .......... .......... 89% 78.5M 0s +2024-03-16T16:52:09Z #15 3.149 113100K .......... .......... .......... .......... .......... 89% 82.7M 0s +2024-03-16T16:52:09Z #15 3.150 113150K .......... .......... .......... .......... .......... 89% 70.0M 0s +2024-03-16T16:52:09Z #15 3.150 113200K .......... .......... .......... .......... .......... 89% 70.8M 0s +2024-03-16T16:52:09Z #15 3.151 113250K .......... .......... .......... .......... .......... 89% 62.6M 0s +2024-03-16T16:52:09Z #15 3.152 113300K .......... .......... .......... .......... .......... 89% 56.1M 0s +2024-03-16T16:52:09Z #15 3.153 113350K .......... .......... .......... .......... .......... 89% 67.8M 0s +2024-03-16T16:52:09Z #15 3.154 113400K .......... .......... .......... .......... .......... 89% 79.8M 0s +2024-03-16T16:52:09Z #15 3.155 113450K .......... .......... .......... .......... .......... 89% 147M 0s +2024-03-16T16:52:09Z #15 3.155 113500K .......... .......... .......... .......... .......... 89% 27.4M 0s +2024-03-16T16:52:09Z #15 3.156 113550K .......... .......... .......... .......... .......... 89% 106M 0s +2024-03-16T16:52:09Z #15 3.157 113600K .......... .......... .......... .......... .......... 89% 154M 0s +2024-03-16T16:52:09Z #15 3.157 113650K .......... .......... .......... .......... .......... 89% 131M 0s +2024-03-16T16:52:09Z #15 3.157 113700K .......... .......... .......... .......... .......... 89% 117M 0s +2024-03-16T16:52:09Z #15 3.158 113750K .......... .......... .......... .......... .......... 89% 116M 0s +2024-03-16T16:52:09Z #15 3.158 113800K .......... .......... .......... .......... .......... 89% 118M 0s +2024-03-16T16:52:09Z #15 3.161 113850K .......... .......... .......... .......... .......... 89% 20.0M 0s +2024-03-16T16:52:09Z #15 3.161 113900K .......... .......... .......... .......... .......... 89% 103M 0s +2024-03-16T16:52:09Z #15 3.162 113950K .......... .......... .......... .......... .......... 89% 84.5M 0s +2024-03-16T16:52:09Z #15 3.163 114000K .......... .......... .......... .......... .......... 89% 145M 0s +2024-03-16T16:52:09Z #15 3.163 114050K .......... .......... .......... .......... .......... 89% 142M 0s +2024-03-16T16:52:09Z #15 3.163 114100K .......... .......... .......... .......... .......... 90% 108M 0s +2024-03-16T16:52:09Z #15 3.163 114150K .......... .......... .......... .......... .......... 90% 113M 0s +2024-03-16T16:52:09Z #15 3.164 114200K .......... .......... .......... .......... .......... 90% 7.94M 0s +2024-03-16T16:52:09Z #15 3.170 114250K .......... .......... .......... .......... .......... 90% 129M 0s +2024-03-16T16:52:09Z #15 3.170 114300K .......... .......... .......... .......... .......... 90% 139M 0s +2024-03-16T16:52:09Z #15 3.171 114350K .......... .......... .......... .......... .......... 90% 100M 0s +2024-03-16T16:52:09Z #15 3.171 114400K .......... .......... .......... .......... .......... 90% 101M 0s +2024-03-16T16:52:09Z #15 3.172 114450K .......... .......... .......... .......... .......... 90% 136M 0s +2024-03-16T16:52:09Z #15 3.172 114500K .......... .......... .......... .......... .......... 90% 130M 0s +2024-03-16T16:52:09Z #15 3.172 114550K .......... .......... .......... .......... .......... 90% 106M 0s +2024-03-16T16:52:09Z #15 3.173 114600K .......... .......... .......... .......... .......... 90% 107M 0s +2024-03-16T16:52:09Z #15 3.174 114650K .......... .......... .......... .......... .......... 90% 108M 0s +2024-03-16T16:52:09Z #15 3.174 114700K .......... .......... .......... .......... .......... 90% 99.6M 0s +2024-03-16T16:52:09Z #15 3.174 114750K .......... .......... .......... .......... .......... 90% 75.5M 0s +2024-03-16T16:52:09Z #15 3.175 114800K .......... .......... .......... .......... .......... 90% 70.7M 0s +2024-03-16T16:52:09Z #15 3.175 114850K .......... .......... .......... .......... .......... 90% 71.9M 0s +2024-03-16T16:52:09Z #15 3.176 114900K .......... .......... .......... .......... .......... 90% 67.6M 0s +2024-03-16T16:52:09Z #15 3.178 114950K .......... .......... .......... .......... .......... 90% 94.1M 0s +2024-03-16T16:52:09Z #15 3.178 115000K .......... .......... .......... .......... .......... 90% 64.1M 0s +2024-03-16T16:52:09Z #15 3.178 115050K .......... .......... .......... .......... .......... 90% 65.3M 0s +2024-03-16T16:52:09Z #15 3.180 115100K .......... .......... .......... .......... .......... 90% 61.6M 0s +2024-03-16T16:52:09Z #15 3.180 115150K .......... .......... .......... .......... .......... 90% 74.4M 0s +2024-03-16T16:52:09Z #15 3.181 115200K .......... .......... .......... .......... .......... 90% 62.4M 0s +2024-03-16T16:52:09Z #15 3.181 115250K .......... .......... .......... .......... .......... 90% 68.9M 0s +2024-03-16T16:52:09Z #15 3.182 115300K .......... .......... .......... .......... .......... 90% 117M 0s +2024-03-16T16:52:09Z #15 3.182 115350K .......... .......... .......... .......... .......... 91% 133M 0s +2024-03-16T16:52:09Z #15 3.183 115400K .......... .......... .......... .......... .......... 91% 146M 0s +2024-03-16T16:52:09Z #15 3.183 115450K .......... .......... .......... .......... .......... 91% 104M 0s +2024-03-16T16:52:09Z #15 3.183 115500K .......... .......... .......... .......... .......... 91% 23.1M 0s +2024-03-16T16:52:09Z #15 3.186 115550K .......... .......... .......... .......... .......... 91% 47.0M 0s +2024-03-16T16:52:09Z #15 3.187 115600K .......... .......... .......... .......... .......... 91% 42.3M 0s +2024-03-16T16:52:09Z #15 3.188 115650K .......... .......... .......... .......... .......... 91% 143M 0s +2024-03-16T16:52:09Z #15 3.188 115700K .......... .......... .......... .......... .......... 91% 65.6M 0s +2024-03-16T16:52:09Z #15 3.189 115750K .......... .......... .......... .......... .......... 91% 46.5M 0s +2024-03-16T16:52:09Z #15 3.190 115800K .......... .......... .......... .......... .......... 91% 107M 0s +2024-03-16T16:52:09Z #15 3.190 115850K .......... .......... .......... .......... .......... 91% 125M 0s +2024-03-16T16:52:09Z #15 3.191 115900K .......... .......... .......... .......... .......... 91% 34.0M 0s +2024-03-16T16:52:09Z #15 3.192 115950K .......... .......... .......... .......... .......... 91% 103M 0s +2024-03-16T16:52:09Z #15 3.194 116000K .......... .......... .......... .......... .......... 91% 71.1M 0s +2024-03-16T16:52:09Z #15 3.194 116050K .......... .......... .......... .......... .......... 91% 122M 0s +2024-03-16T16:52:09Z #15 3.194 116100K .......... .......... .......... .......... .......... 91% 104M 0s +2024-03-16T16:52:09Z #15 3.194 116150K .......... .......... .......... .......... .......... 91% 127M 0s +2024-03-16T16:52:09Z #15 3.195 116200K .......... .......... .......... .......... .......... 91% 143M 0s +2024-03-16T16:52:09Z #15 3.195 116250K .......... .......... .......... .......... .......... 91% 107M 0s +2024-03-16T16:52:09Z #15 3.195 116300K .......... .......... .......... .......... .......... 91% 111M 0s +2024-03-16T16:52:09Z #15 3.196 116350K .......... .......... .......... .......... .......... 91% 115M 0s +2024-03-16T16:52:09Z #15 3.196 116400K .......... .......... .......... .......... .......... 91% 112M 0s +2024-03-16T16:52:09Z #15 3.197 116450K .......... .......... .......... .......... .......... 91% 121M 0s +2024-03-16T16:52:09Z #15 3.197 116500K .......... .......... .......... .......... .......... 91% 123M 0s +2024-03-16T16:52:09Z #15 3.197 116550K .......... .......... .......... .......... .......... 91% 8.14M 0s +2024-03-16T16:52:09Z #15 3.204 116600K .......... .......... .......... .......... .......... 92% 112M 0s +2024-03-16T16:52:09Z #15 3.204 116650K .......... .......... .......... .......... .......... 92% 123M 0s +2024-03-16T16:52:09Z #15 3.204 116700K .......... .......... .......... .......... .......... 92% 115M 0s +2024-03-16T16:52:09Z #15 3.207 116750K .......... .......... .......... .......... .......... 92% 125M 0s +2024-03-16T16:52:09Z #15 3.207 116800K .......... .......... .......... .......... .......... 92% 140M 0s +2024-03-16T16:52:09Z #15 3.207 116850K .......... .......... .......... .......... .......... 92% 123M 0s +2024-03-16T16:52:09Z #15 3.207 116900K .......... .......... .......... .......... .......... 92% 123M 0s +2024-03-16T16:52:09Z #15 3.207 116950K .......... .......... .......... .......... .......... 92% 102M 0s +2024-03-16T16:52:09Z #15 3.207 117000K .......... .......... .......... .......... .......... 92% 132M 0s +2024-03-16T16:52:09Z #15 3.207 117050K .......... .......... .......... .......... .......... 92% 128M 0s +2024-03-16T16:52:09Z #15 3.208 117100K .......... .......... .......... .......... .......... 92% 111M 0s +2024-03-16T16:52:09Z #15 3.208 117150K .......... .......... .......... .......... .......... 92% 111M 0s +2024-03-16T16:52:09Z #15 3.208 117200K .......... .......... .......... .......... .......... 92% 116M 0s +2024-03-16T16:52:09Z #15 3.209 117250K .......... .......... .......... .......... .......... 92% 127M 0s +2024-03-16T16:52:09Z #15 3.209 117300K .......... .......... .......... .......... .......... 92% 121M 0s +2024-03-16T16:52:09Z #15 3.210 117350K .......... .......... .......... .......... .......... 92% 92.1M 0s +2024-03-16T16:52:09Z #15 3.211 117400K .......... .......... .......... .......... .......... 92% 99.7M 0s +2024-03-16T16:52:09Z #15 3.211 117450K .......... .......... .......... .......... .......... 92% 48.3M 0s +2024-03-16T16:52:09Z #15 3.212 117500K .......... .......... .......... .......... .......... 92% 82.8M 0s +2024-03-16T16:52:09Z #15 3.213 117550K .......... .......... .......... .......... .......... 92% 127M 0s +2024-03-16T16:52:09Z #15 3.213 117600K .......... .......... .......... .......... .......... 92% 36.5M 0s +2024-03-16T16:52:09Z #15 3.214 117650K .......... .......... .......... .......... .......... 92% 10.5M 0s +2024-03-16T16:52:09Z #15 3.219 117700K .......... .......... .......... .......... .......... 92% 47.5M 0s +2024-03-16T16:52:09Z #15 3.220 117750K .......... .......... .......... .......... .......... 92% 53.9M 0s +2024-03-16T16:52:09Z #15 3.221 117800K .......... .......... .......... .......... .......... 92% 79.2M 0s +2024-03-16T16:52:09Z #15 3.222 117850K .......... .......... .......... .......... .......... 92% 152M 0s +2024-03-16T16:52:09Z #15 3.222 117900K .......... .......... .......... .......... .......... 93% 55.7M 0s +2024-03-16T16:52:09Z #15 3.223 117950K .......... .......... .......... .......... .......... 93% 73.0M 0s +2024-03-16T16:52:09Z #15 3.223 118000K .......... .......... .......... .......... .......... 93% 113M 0s +2024-03-16T16:52:09Z #15 3.224 118050K .......... .......... .......... .......... .......... 93% 32.5M 0s +2024-03-16T16:52:09Z #15 3.225 118100K .......... .......... .......... .......... .......... 93% 34.4M 0s +2024-03-16T16:52:09Z #15 3.226 118150K .......... .......... .......... .......... .......... 93% 48.2M 0s +2024-03-16T16:52:09Z #15 3.227 118200K .......... .......... .......... .......... .......... 93% 50.3M 0s +2024-03-16T16:52:09Z #15 3.229 118250K .......... .......... .......... .......... .......... 93% 144M 0s +2024-03-16T16:52:09Z #15 3.229 118300K .......... .......... .......... .......... .......... 93% 51.9M 0s +2024-03-16T16:52:09Z #15 3.230 118350K .......... .......... .......... .......... .......... 93% 39.2M 0s +2024-03-16T16:52:09Z #15 3.231 118400K .......... .......... .......... .......... .......... 93% 140M 0s +2024-03-16T16:52:09Z #15 3.231 118450K .......... .......... .......... .......... .......... 93% 41.8M 0s +2024-03-16T16:52:09Z #15 3.232 118500K .......... .......... .......... .......... .......... 93% 47.5M 0s +2024-03-16T16:52:09Z #15 3.234 118550K .......... .......... .......... .......... .......... 93% 76.7M 0s +2024-03-16T16:52:09Z #15 3.234 118600K .......... .......... .......... .......... .......... 93% 49.7M 0s +2024-03-16T16:52:09Z #15 3.235 118650K .......... .......... .......... .......... .......... 93% 46.9M 0s +2024-03-16T16:52:09Z #15 3.236 118700K .......... .......... .......... .......... .......... 93% 55.0M 0s +2024-03-16T16:52:09Z #15 3.238 118750K .......... .......... .......... .......... .......... 93% 8.72M 0s +2024-03-16T16:52:09Z #15 3.244 118800K .......... .......... .......... .......... .......... 93% 116M 0s +2024-03-16T16:52:09Z #15 3.244 118850K .......... .......... .......... .......... .......... 93% 112M 0s +2024-03-16T16:52:09Z #15 3.244 118900K .......... .......... .......... .......... .......... 93% 127M 0s +2024-03-16T16:52:09Z #15 3.244 118950K .......... .......... .......... .......... .......... 93% 103M 0s +2024-03-16T16:52:09Z #15 3.245 119000K .......... .......... .......... .......... .......... 93% 147M 0s +2024-03-16T16:52:09Z #15 3.245 119050K .......... .......... .......... .......... .......... 93% 136M 0s +2024-03-16T16:52:09Z #15 3.245 119100K .......... .......... .......... .......... .......... 93% 123M 0s +2024-03-16T16:52:09Z #15 3.246 119150K .......... .......... .......... .......... .......... 94% 26.6M 0s +2024-03-16T16:52:09Z #15 3.248 119200K .......... .......... .......... .......... .......... 94% 125M 0s +2024-03-16T16:52:09Z #15 3.248 119250K .......... .......... .......... .......... .......... 94% 123M 0s +2024-03-16T16:52:09Z #15 3.248 119300K .......... .......... .......... .......... .......... 94% 112M 0s +2024-03-16T16:52:09Z #15 3.248 119350K .......... .......... .......... .......... .......... 94% 117M 0s +2024-03-16T16:52:09Z #15 3.249 119400K .......... .......... .......... .......... .......... 94% 122M 0s +2024-03-16T16:52:09Z #15 3.249 119450K .......... .......... .......... .......... .......... 94% 115M 0s +2024-03-16T16:52:09Z #15 3.251 119500K .......... .......... .......... .......... .......... 94% 137M 0s +2024-03-16T16:52:09Z #15 3.251 119550K .......... .......... .......... .......... .......... 94% 126M 0s +2024-03-16T16:52:09Z #15 3.251 119600K .......... .......... .......... .......... .......... 94% 134M 0s +2024-03-16T16:52:09Z #15 3.251 119650K .......... .......... .......... .......... .......... 94% 9.88M 0s +2024-03-16T16:52:09Z #15 3.256 119700K .......... .......... .......... .......... .......... 94% 108M 0s +2024-03-16T16:52:09Z #15 3.256 119750K .......... .......... .......... .......... .......... 94% 113M 0s +2024-03-16T16:52:09Z #15 3.257 119800K .......... .......... .......... .......... .......... 94% 137M 0s +2024-03-16T16:52:09Z #15 3.258 119850K .......... .......... .......... .......... .......... 94% 138M 0s +2024-03-16T16:52:09Z #15 3.258 119900K .......... .......... .......... .......... .......... 94% 135M 0s +2024-03-16T16:52:09Z #15 3.258 119950K .......... .......... .......... .......... .......... 94% 115M 0s +2024-03-16T16:52:09Z #15 3.258 120000K .......... .......... .......... .......... .......... 94% 150M 0s +2024-03-16T16:52:09Z #15 3.259 120050K .......... .......... .......... .......... .......... 94% 140M 0s +2024-03-16T16:52:09Z #15 3.259 120100K .......... .......... .......... .......... .......... 94% 159M 0s +2024-03-16T16:52:09Z #15 3.259 120150K .......... .......... .......... .......... .......... 94% 100M 0s +2024-03-16T16:52:09Z #15 3.260 120200K .......... .......... .......... .......... .......... 94% 134M 0s +2024-03-16T16:52:09Z #15 3.260 120250K .......... .......... .......... .......... .......... 94% 145M 0s +2024-03-16T16:52:09Z #15 3.260 120300K .......... .......... .......... .......... .......... 94% 8.63M 0s +2024-03-16T16:52:09Z #15 3.266 120350K .......... .......... .......... .......... .......... 94% 137M 0s +2024-03-16T16:52:09Z #15 3.266 120400K .......... .......... .......... .......... .......... 95% 143M 0s +2024-03-16T16:52:09Z #15 3.267 120450K .......... .......... .......... .......... .......... 95% 147M 0s +2024-03-16T16:52:09Z #15 3.267 120500K .......... .......... .......... .......... .......... 95% 123M 0s +2024-03-16T16:52:09Z #15 3.267 120550K .......... .......... .......... .......... .......... 95% 97.9M 0s +2024-03-16T16:52:09Z #15 3.268 120600K .......... .......... .......... .......... .......... 95% 137M 0s +2024-03-16T16:52:09Z #15 3.268 120650K .......... .......... .......... .......... .......... 95% 111M 0s +2024-03-16T16:52:09Z #15 3.269 120700K .......... .......... .......... .......... .......... 95% 138M 0s +2024-03-16T16:52:09Z #15 3.269 120750K .......... .......... .......... .......... .......... 95% 98.1M 0s +2024-03-16T16:52:09Z #15 3.270 120800K .......... .......... .......... .......... .......... 95% 97.4M 0s +2024-03-16T16:52:09Z #15 3.271 120850K .......... .......... .......... .......... .......... 95% 140M 0s +2024-03-16T16:52:09Z #15 3.271 120900K .......... .......... .......... .......... .......... 95% 133M 0s +2024-03-16T16:52:09Z #15 3.271 120950K .......... .......... .......... .......... .......... 95% 109M 0s +2024-03-16T16:52:09Z #15 3.271 121000K .......... .......... .......... .......... .......... 95% 125M 0s +2024-03-16T16:52:09Z #15 3.272 121050K .......... .......... .......... .......... .......... 95% 131M 0s +2024-03-16T16:52:09Z #15 3.272 121100K .......... .......... .......... .......... .......... 95% 121M 0s +2024-03-16T16:52:09Z #15 3.272 121150K .......... .......... .......... .......... .......... 95% 114M 0s +2024-03-16T16:52:09Z #15 3.273 121200K .......... .......... .......... .......... .......... 95% 35.4M 0s +2024-03-16T16:52:09Z #15 3.275 121250K .......... .......... .......... .......... .......... 95% 114M 0s +2024-03-16T16:52:09Z #15 3.275 121300K .......... .......... .......... .......... .......... 95% 47.2M 0s +2024-03-16T16:52:09Z #15 3.276 121350K .......... .......... .......... .......... .......... 95% 51.7M 0s +2024-03-16T16:52:09Z #15 3.277 121400K .......... .......... .......... .......... .......... 95% 129M 0s +2024-03-16T16:52:09Z #15 3.277 121450K .......... .......... .......... .......... .......... 95% 27.0M 0s +2024-03-16T16:52:09Z #15 3.279 121500K .......... .......... .......... .......... .......... 95% 135M 0s +2024-03-16T16:52:09Z #15 3.279 121550K .......... .......... .......... .......... .......... 95% 100M 0s +2024-03-16T16:52:09Z #15 3.280 121600K .......... .......... .......... .......... .......... 95% 127M 0s +2024-03-16T16:52:09Z #15 3.280 121650K .......... .......... .......... .......... .......... 95% 48.5M 0s +2024-03-16T16:52:09Z #15 3.281 121700K .......... .......... .......... .......... .......... 96% 33.9M 0s +2024-03-16T16:52:09Z #15 3.283 121750K .......... .......... .......... .......... .......... 96% 54.9M 0s +2024-03-16T16:52:09Z #15 3.283 121800K .......... .......... .......... .......... .......... 96% 62.9M 0s +2024-03-16T16:52:09Z #15 3.284 121850K .......... .......... .......... .......... .......... 96% 101M 0s +2024-03-16T16:52:09Z #15 3.285 121900K .......... .......... .......... .......... .......... 96% 6.88M 0s +2024-03-16T16:52:09Z #15 3.292 121950K .......... .......... .......... .......... .......... 96% 14.1M 0s +2024-03-16T16:52:09Z #15 3.295 122000K .......... .......... .......... .......... .......... 96% 39.0M 0s +2024-03-16T16:52:09Z #15 3.297 122050K .......... .......... .......... .......... .......... 96% 141M 0s +2024-03-16T16:52:09Z #15 3.297 122100K .......... .......... .......... .......... .......... 96% 25.6M 0s +2024-03-16T16:52:09Z #15 3.299 122150K .......... .......... .......... .......... .......... 96% 69.4M 0s +2024-03-16T16:52:09Z #15 3.299 122200K .......... .......... .......... .......... .......... 96% 25.0M 0s +2024-03-16T16:52:09Z #15 3.301 122250K .......... .......... .......... .......... .......... 96% 43.2M 0s +2024-03-16T16:52:09Z #15 3.302 122300K .......... .......... .......... .......... .......... 96% 136M 0s +2024-03-16T16:52:09Z #15 3.303 122350K .......... .......... .......... .......... .......... 96% 37.6M 0s +2024-03-16T16:52:09Z #15 3.304 122400K .......... .......... .......... .......... .......... 96% 49.5M 0s +2024-03-16T16:52:09Z #15 3.305 122450K .......... .......... .......... .......... .......... 96% 48.5M 0s +2024-03-16T16:52:09Z #15 3.306 122500K .......... .......... .......... .......... .......... 96% 83.8M 0s +2024-03-16T16:52:09Z #15 3.307 122550K .......... .......... .......... .......... .......... 96% 65.4M 0s +2024-03-16T16:52:09Z #15 3.307 122600K .......... .......... .......... .......... .......... 96% 81.5M 0s +2024-03-16T16:52:09Z #15 3.308 122650K .......... .......... .......... .......... .......... 96% 85.3M 0s +2024-03-16T16:52:09Z #15 3.309 122700K .......... .......... .......... .......... .......... 96% 70.8M 0s +2024-03-16T16:52:09Z #15 3.309 122750K .......... .......... .......... .......... .......... 96% 65.2M 0s +2024-03-16T16:52:09Z #15 3.310 122800K .......... .......... .......... .......... .......... 96% 75.4M 0s +2024-03-16T16:52:09Z #15 3.311 122850K .......... .......... .......... .......... .......... 96% 67.5M 0s +2024-03-16T16:52:09Z #15 3.311 122900K .......... .......... .......... .......... .......... 96% 45.4M 0s +2024-03-16T16:52:09Z #15 3.313 122950K .......... .......... .......... .......... .......... 97% 30.3M 0s +2024-03-16T16:52:09Z #15 3.314 123000K .......... .......... .......... .......... .......... 97% 74.5M 0s +2024-03-16T16:52:09Z #15 3.315 123050K .......... .......... .......... .......... .......... 97% 54.1M 0s +2024-03-16T16:52:09Z #15 3.316 123100K .......... .......... .......... .......... .......... 97% 52.5M 0s +2024-03-16T16:52:09Z #15 3.317 123150K .......... .......... .......... .......... .......... 97% 57.0M 0s +2024-03-16T16:52:09Z #15 3.318 123200K .......... .......... .......... .......... .......... 97% 62.6M 0s +2024-03-16T16:52:09Z #15 3.318 123250K .......... .......... .......... .......... .......... 97% 39.8M 0s +2024-03-16T16:52:09Z #15 3.320 123300K .......... .......... .......... .......... .......... 97% 63.8M 0s +2024-03-16T16:52:09Z #15 3.320 123350K .......... .......... .......... .......... .......... 97% 49.1M 0s +2024-03-16T16:52:09Z #15 3.321 123400K .......... .......... .......... .......... .......... 97% 63.7M 0s +2024-03-16T16:52:09Z #15 3.322 123450K .......... .......... .......... .......... .......... 97% 52.8M 0s +2024-03-16T16:52:09Z #15 3.323 123500K .......... .......... .......... .......... .......... 97% 85.7M 0s +2024-03-16T16:52:09Z #15 3.323 123550K .......... .......... .......... .......... .......... 97% 53.0M 0s +2024-03-16T16:52:09Z #15 3.324 123600K .......... .......... .......... .......... .......... 97% 42.2M 0s +2024-03-16T16:52:09Z #15 3.326 123650K .......... .......... .......... .......... .......... 97% 46.7M 0s +2024-03-16T16:52:09Z #15 3.327 123700K .......... .......... .......... .......... .......... 97% 57.3M 0s +2024-03-16T16:52:09Z #15 3.327 123750K .......... .......... .......... .......... .......... 97% 34.8M 0s +2024-03-16T16:52:09Z #15 3.329 123800K .......... .......... .......... .......... .......... 97% 59.7M 0s +2024-03-16T16:52:09Z #15 3.330 123850K .......... .......... .......... .......... .......... 97% 52.0M 0s +2024-03-16T16:52:09Z #15 3.331 123900K .......... .......... .......... .......... .......... 97% 49.0M 0s +2024-03-16T16:52:09Z #15 3.332 123950K .......... .......... .......... .......... .......... 97% 37.9M 0s +2024-03-16T16:52:09Z #15 3.333 124000K .......... .......... .......... .......... .......... 97% 53.1M 0s +2024-03-16T16:52:09Z #15 3.334 124050K .......... .......... .......... .......... .......... 97% 61.4M 0s +2024-03-16T16:52:09Z #15 3.335 124100K .......... .......... .......... .......... .......... 97% 58.0M 0s +2024-03-16T16:52:09Z #15 3.336 124150K .......... .......... .......... .......... .......... 97% 55.0M 0s +2024-03-16T16:52:09Z #15 3.337 124200K .......... .......... .......... .......... .......... 98% 61.2M 0s +2024-03-16T16:52:09Z #15 3.338 124250K .......... .......... .......... .......... .......... 98% 9.64M 0s +2024-03-16T16:52:09Z #15 3.347 124300K .......... .......... .......... .......... .......... 98% 159M 0s +2024-03-16T16:52:09Z #15 3.347 124350K .......... .......... .......... .......... .......... 98% 154M 0s +2024-03-16T16:52:09Z #15 3.347 124400K .......... .......... .......... .......... .......... 98% 164M 0s +2024-03-16T16:52:09Z #15 3.347 124450K .......... .......... .......... .......... .......... 98% 178M 0s +2024-03-16T16:52:09Z #15 3.347 124500K .......... .......... .......... .......... .......... 98% 161M 0s +2024-03-16T16:52:09Z #15 3.347 124550K .......... .......... .......... .......... .......... 98% 67.8M 0s +2024-03-16T16:52:09Z #15 3.347 124600K .......... .......... .......... .......... .......... 98% 95.9M 0s +2024-03-16T16:52:09Z #15 3.347 124650K .......... .......... .......... .......... .......... 98% 164M 0s +2024-03-16T16:52:09Z #15 3.347 124700K .......... .......... .......... .......... .......... 98% 185M 0s +2024-03-16T16:52:09Z #15 3.347 124750K .......... .......... .......... .......... .......... 98% 83.7M 0s +2024-03-16T16:52:09Z #15 3.347 124800K .......... .......... .......... .......... .......... 98% 170M 0s +2024-03-16T16:52:09Z #15 3.347 124850K .......... .......... .......... .......... .......... 98% 32.7M 0s +2024-03-16T16:52:09Z #15 3.349 124900K .......... .......... .......... .......... .......... 98% 132M 0s +2024-03-16T16:52:09Z #15 3.349 124950K .......... .......... .......... .......... .......... 98% 30.8M 0s +2024-03-16T16:52:09Z #15 3.350 125000K .......... .......... .......... .......... .......... 98% 54.7M 0s +2024-03-16T16:52:09Z #15 3.351 125050K .......... .......... .......... .......... .......... 98% 163M 0s +2024-03-16T16:52:09Z #15 3.351 125100K .......... .......... .......... .......... .......... 98% 40.8M 0s +2024-03-16T16:52:09Z #15 3.352 125150K .......... .......... .......... .......... .......... 98% 46.6M 0s +2024-03-16T16:52:09Z #15 3.354 125200K .......... .......... .......... .......... .......... 98% 32.4M 0s +2024-03-16T16:52:09Z #15 3.356 125250K .......... .......... .......... .......... .......... 98% 165M 0s +2024-03-16T16:52:09Z #15 3.356 125300K .......... .......... .......... .......... .......... 98% 73.3M 0s +2024-03-16T16:52:09Z #15 3.356 125350K .......... .......... .......... .......... .......... 98% 41.6M 0s +2024-03-16T16:52:09Z #15 3.358 125400K .......... .......... .......... .......... .......... 98% 80.2M 0s +2024-03-16T16:52:09Z #15 3.358 125450K .......... .......... .......... .......... .......... 98% 34.3M 0s +2024-03-16T16:52:09Z #15 3.361 125500K .......... .......... .......... .......... .......... 99% 131M 0s +2024-03-16T16:52:09Z #15 3.361 125550K .......... .......... .......... .......... .......... 99% 81.7M 0s +2024-03-16T16:52:09Z #15 3.361 125600K .......... .......... .......... .......... .......... 99% 169M 0s +2024-03-16T16:52:09Z #15 3.361 125650K .......... .......... .......... .......... .......... 99% 32.0M 0s +2024-03-16T16:52:09Z #15 3.364 125700K .......... .......... .......... .......... .......... 99% 167M 0s +2024-03-16T16:52:09Z #15 3.364 125750K .......... .......... .......... .......... .......... 99% 78.1M 0s +2024-03-16T16:52:09Z #15 3.364 125800K .......... .......... .......... .......... .......... 99% 158M 0s +2024-03-16T16:52:09Z #15 3.364 125850K .......... .......... .......... .......... .......... 99% 100M 0s +2024-03-16T16:52:09Z #15 3.364 125900K .......... .......... .......... .......... .......... 99% 48.2M 0s +2024-03-16T16:52:09Z #15 3.365 125950K .......... .......... .......... .......... .......... 99% 68.4M 0s +2024-03-16T16:52:09Z #15 3.367 126000K .......... .......... .......... .......... .......... 99% 130M 0s +2024-03-16T16:52:09Z #15 3.367 126050K .......... .......... .......... .......... .......... 99% 73.1M 0s +2024-03-16T16:52:09Z #15 3.367 126100K .......... .......... .......... .......... .......... 99% 39.6M 0s +2024-03-16T16:52:09Z #15 3.368 126150K .......... .......... .......... .......... .......... 99% 11.4M 0s +2024-03-16T16:52:09Z #15 3.372 126200K .......... .......... .......... .......... .......... 99% 23.6M 0s +2024-03-16T16:52:09Z #15 3.374 126250K .......... .......... .......... .......... .......... 99% 30.6M 0s +2024-03-16T16:52:09Z #15 3.376 126300K .......... .......... .......... .......... .......... 99% 28.6M 0s +2024-03-16T16:52:09Z #15 3.377 126350K .......... .......... .......... .......... .......... 99% 31.7M 0s +2024-03-16T16:52:09Z #15 3.379 126400K .......... .......... .......... .......... .......... 99% 34.8M 0s +2024-03-16T16:52:09Z #15 3.381 126450K .......... .......... .......... .......... .......... 99% 34.9M 0s +2024-03-16T16:52:09Z #15 3.385 126500K .......... .......... .......... .......... .......... 99% 29.0M 0s +2024-03-16T16:52:09Z #15 3.385 126550K .......... .......... .......... .......... .......... 99% 26.6M 0s +2024-03-16T16:52:09Z #15 3.385 126600K .......... .......... .......... .......... .......... 99% 29.9M 0s +2024-03-16T16:52:09Z #15 3.387 126650K .......... .......... .......... .......... .......... 99% 30.9M 0s +2024-03-16T16:52:09Z #15 3.389 126700K .......... .......... .......... .......... .......... 99% 29.2M 0s +2024-03-16T16:52:09Z #15 3.392 126750K .......... .......... .......... .. 100% 29.6M=2.2s +2024-03-16T16:52:09Z #15 3.392 +2024-03-16T16:52:09Z #15 3.392 2024-03-16 16:52:09 (56.2 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] +2024-03-16T16:52:09Z #15 3.392 +2024-03-16T16:52:10Z #15 4.841 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' +2024-03-16T16:52:11Z #15 4.864 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-03-16T16:52:11Z #15 DONE 5.2s +2024-03-16T16:52:11Z +2024-03-16T16:52:11Z #16 exporting to image +2024-03-16T16:52:11Z #16 exporting layers +2024-03-16T16:54:39Z #16 exporting layers 148.1s done +2024-03-16T16:54:39Z #16 writing image sha256:d2c65bc7504bf6d02693ee0b017c32f35b9c13c89a59772b1939dec177d6fb5d done +2024-03-16T16:54:39Z #16 naming to docker.io/pavics/workflow-tests:py310-240316 done +2024-03-16T16:54:39Z #16 DONE 148.1s +2024-03-16T16:54:39Z +2024-03-16T16:54:39Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-03-16T16:54:39Z Pushing index.docker.io/pavics/workflow-tests:py310-240316... +2024-03-16T17:02:01Z Done! +2024-03-16T17:02:01Z Build finished From 67999aba4a27e101f562ddf46394724a83706e75 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 23 Mar 2024 13:16:43 -0400 Subject: [PATCH 043/104] docker: py310-240316 conda env, jenkins default and raven nb --- docker/saved_buildout/conda-env-export.yml | 39 +- .../jenkins-buildlogs-default.txt | 2892 ++++++----- .../jenkins-buildlogs-raven.txt | 4290 ++++++++--------- 3 files changed, 3774 insertions(+), 3447 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index 337038b..30c9bc3 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -9,7 +9,7 @@ dependencies: - affine=2.4.0=pyhd8ed1ab_0 - aiobotocore=2.12.1=pyhd8ed1ab_0 - aiofiles=22.1.0=pyhd8ed1ab_0 - - aiohttp=3.9.3=py310h2372a71_0 + - aiohttp=3.9.3=py310h2372a71_1 - aioitertools=0.11.0=pyhd8ed1ab_0 - aiosignal=1.3.1=pyhd8ed1ab_0 - aiosqlite=0.19.0=pyhd8ed1ab_0 @@ -17,7 +17,6 @@ dependencies: - alsa-lib=1.2.8=h166bdaf_0 - altair=5.2.0=pyhd8ed1ab_0 - annotated-types=0.6.0=pyhd8ed1ab_0 - - ansi2html=1.9.1=py310hff52083_0 - anyio=4.3.0=pyhd8ed1ab_0 - aom=3.5.0=h27087fc_0 - appdirs=1.4.4=pyh9f0ad1d_0 @@ -49,7 +48,7 @@ dependencies: - bcrypt=4.1.2=py310hcb5633a_0 - beautifulsoup4=4.12.3=pyha770c72_0 - bias_correction=0.4=pyhd8ed1ab_0 - - birdy=0.8.4=pyh1a96a4e_0 + - birdy=0.8.5=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - blinker=1.7.0=pyhd8ed1ab_0 - blosc=1.21.5=h0f2a231_0 @@ -94,17 +93,18 @@ dependencies: - cloudpickle=3.0.0=pyhd8ed1ab_0 - colorama=0.4.6=pyhd8ed1ab_0 - colorcet=3.1.0=pyhd8ed1ab_0 - - comm=0.2.1=pyhd8ed1ab_0 + - comm=0.2.2=pyhd8ed1ab_0 - configurable-http-proxy=4.5.4=he2f69ee_2 - contourpy=1.2.0=py310hd41b1e2_0 - - coverage=7.4.3=py310h2372a71_1 + - coverage=7.4.4=py310h2372a71_0 - cryptography=42.0.2=py310hb8475ec_0 - curl=7.88.1=hdc1c0ab_1 - cycler=0.12.1=pyhd8ed1ab_0 - cytoolz=0.12.3=py310h2372a71_0 - dash=2.16.1=pyhd8ed1ab_0 - - dask=2024.2.1=pyhd8ed1ab_0 - - dask-core=2024.2.1=pyhd8ed1ab_0 + - dask=2024.3.0=pyhd8ed1ab_1 + - dask-core=2024.3.0=pyhd8ed1ab_0 + - dask-expr=1.0.2=pyhd8ed1ab_0 - dask-labextension=6.2.0=pyhd8ed1ab_0 - dataclasses=0.8=pyhc8e2a94_3 - datashader=0.16.0=pyhd8ed1ab_0 @@ -117,7 +117,7 @@ dependencies: - dill=0.3.8=pyhd8ed1ab_0 - distarray=2.12.2=pyh050c7b8_4 - distlib=0.3.8=pyhd8ed1ab_0 - - distributed=2024.2.1=pyhd8ed1ab_0 + - distributed=2024.3.0=pyhd8ed1ab_0 - docopt=0.6.2=py_1 - docrep=0.3.2=pyh44b312d_0 - eccodes=2.28.0=h7513371_1 @@ -131,7 +131,7 @@ dependencies: - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.0.2=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - - expat=2.6.1=h59595ed_0 + - expat=2.6.2=h59595ed_0 - fasteners=0.17.3=pyhd8ed1ab_0 - fastprogress=1.0.3=pyhd8ed1ab_0 - fftw=3.3.10=nompi_hc118613_108 @@ -139,7 +139,7 @@ dependencies: - findlibs=0.0.5=pyhd8ed1ab_0 - fiona=1.9.1=py310ha325b7b_0 - flask=3.0.2=pyhd8ed1ab_0 - - flox=0.9.2=pyhd8ed1ab_0 + - flox=0.9.4=pyhd8ed1ab_0 - fmt=10.2.1=h00ab1b0_0 - folium=0.16.0=pyhd8ed1ab_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 @@ -209,7 +209,7 @@ dependencies: - imageio=2.34.0=pyh4b66e23_0 - importlib-metadata=7.0.2=pyha770c72_0 - importlib_metadata=7.0.2=hd8ed1ab_0 - - importlib_resources=6.1.3=pyhd8ed1ab_0 + - importlib_resources=6.3.0=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - intake=0.7.0=pyhd8ed1ab_0 - intake-esm=2024.2.6=pyhd8ed1ab_1 @@ -239,10 +239,9 @@ dependencies: - jsonschema-with-format-nongpl=4.21.1=pyhd8ed1ab_0 - jupyter=1.0.0=pyhd8ed1ab_10 - jupyter-archive=3.4.0=pyhd8ed1ab_0 - - jupyter-dash=0.4.2=pyhd8ed1ab_1 - jupyter-resource-usage=0.7.1=pyhd8ed1ab_0 - jupyter-server-mathjax=0.2.6=pyh5bfe37b_1 - - jupyter-server-proxy=4.1.0=pyhd8ed1ab_0 + - jupyter-server-proxy=4.1.2=pyhd8ed1ab_0 - jupyter_bokeh=3.0.7=pyhd8ed1ab_0 - jupyter_client=7.4.9=pyhd8ed1ab_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 @@ -301,7 +300,7 @@ dependencies: - libedit=3.1.20191231=he28a2e2_2 - libev=4.33=hd590300_2 - libevent=2.1.10=h28343ad_4 - - libexpat=2.6.1=h59595ed_0 + - libexpat=2.6.2=h59595ed_0 - libffi=3.4.2=h7f98852_5 - libflac=1.4.3=h59595ed_0 - libgcc-ng=13.2.0=h807b86a_5 @@ -328,7 +327,7 @@ dependencies: - libnghttp2=1.58.0=h47da74e_0 - libnl=3.9.0=hd590300_0 - libnsl=2.0.1=hd590300_0 - - libnuma=2.0.16=h0b41bf4_1 + - libnuma=2.0.18=hd590300_0 - libogg=1.3.4=h7f98852_1 - libopenblas=0.3.26=pthreads_h413a1c8_0 - libopus=1.3.1=h7f98852_1 @@ -376,7 +375,7 @@ dependencies: - mako=1.3.2=pyhd8ed1ab_0 - mamba_gator=5.2.1=pyhd8ed1ab_0 - mapclassify=2.6.1=pyhd8ed1ab_0 - - markdown=3.5.2=pyhd8ed1ab_0 + - markdown=3.6=pyhd8ed1ab_0 - markdown-it-py=3.0.0=pyhd8ed1ab_0 - markupsafe=2.1.5=py310h2372a71_0 - matplotlib=3.8.3=py310hff52083_0 @@ -407,7 +406,7 @@ dependencies: - nbconvert-core=7.16.2=pyhd8ed1ab_0 - nbconvert-pandoc=7.16.2=pyhd8ed1ab_0 - nbdime=4.0.1=pyhd8ed1ab_0 - - nbformat=5.10.2=pyhd8ed1ab_0 + - nbformat=5.10.3=pyhd8ed1ab_0 - nbresuse=0.4.0=pyhd8ed1ab_0 - nbval=0.11.0=pyhd8ed1ab_0 - nc-time-axis=1.4.1=pyhd8ed1ab_0 @@ -568,7 +567,7 @@ dependencies: - selenium=4.18.1=pyhd8ed1ab_0 - selenium-manager=4.18.1=he8a937b_0 - send2trash=1.8.2=pyh41d4057_0 - - setuptools=69.1.1=pyhd8ed1ab_0 + - setuptools=69.2.0=pyhd8ed1ab_0 - shapely=2.0.1=py310h8b84c32_0 - simpervisor=1.0.0=pyhd8ed1ab_0 - sip=6.7.12=py310hc6cd4ac_0 @@ -587,7 +586,7 @@ dependencies: - sqlite=3.45.2=h2c6b66d_0 - stack_data=0.6.2=pyhd8ed1ab_0 - statsmodels=0.14.1=py310h1f7b6fc_0 - - streamlit=1.32.0=pyhd8ed1ab_0 + - streamlit=1.32.2=pyhd8ed1ab_0 - tblib=3.0.0=pyhd8ed1ab_0 - tenacity=8.2.3=pyhd8ed1ab_0 - terminado=0.18.1=pyh0d859eb_0 @@ -606,7 +605,7 @@ dependencies: - traittypes=0.2.1=pyh9f0ad1d_2 - trio=0.24.0=py310hff52083_0 - trio-websocket=0.11.1=pyhd8ed1ab_0 - - types-python-dateutil=2.8.19.20240311=pyhd8ed1ab_0 + - types-python-dateutil=2.9.0.20240316=pyhd8ed1ab_0 - typing-extensions=4.10.0=hd8ed1ab_0 - typing_extensions=4.10.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index 02ac4e5..1ca63d2 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -1,5 +1,4 @@ Started by user Long Vu -Replayed #249 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -12,12 +11,13 @@ Seen branch in repository origin/current-production-version Seen branch in repository origin/devel-new-extensions Seen branch in repository origin/extended_tests Seen branch in repository origin/master +Seen branch in repository origin/new-build-no-jupyter-dash Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 8 remote branches -Obtained Jenkinsfile from 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f +Seen 9 remote branches +Obtained Jenkinsfile from 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -29,15 +29,15 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f (new-docker-build) -Commit message: "release: update to use image pavics/workflow-tests:py310-240312" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d (new-docker-build) +Commit message: "release: update to use image pavics/workflow-tests:py310-240316" > git config core.sparsecheckout # timeout=10 - > git checkout -f 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f # timeout=10 + > git checkout -f 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d # timeout=10 > git rev-list --no-walk 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f # timeout=10 [Pipeline] } [Pipeline] // stage @@ -45,1169 +45,1705 @@ Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240312 -. ++ docker inspect -f . pavics/workflow-tests:py310-240316 + +Error: No such object: pavics/workflow-tests:py310-240316 +[Pipeline] isUnix +[Pipeline] sh ++ docker pull pavics/workflow-tests:py310-240316 +py310-240316: Pulling from pavics/workflow-tests +5d0aeceef7ee: Already exists +c3d69dcd5caa: Already exists +0bacf10028c5: Already exists +fdb612a3ab15: Pulling fs layer +a8e12b2a3dd1: Pulling fs layer +b57a345c42b1: Pulling fs layer +d8fec0096d40: Pulling fs layer +cc3fd5b45f7f: Pulling fs layer +635650bebf1e: Pulling fs layer +ea86c19a87f1: Pulling fs layer +3a2ffbd0ebd5: Pulling fs layer +5e5c12753eb3: Pulling fs layer +d8fec0096d40: Waiting +cc3fd5b45f7f: Waiting +635650bebf1e: Waiting +ea86c19a87f1: Waiting +3a2ffbd0ebd5: Waiting +5e5c12753eb3: Waiting +fdb612a3ab15: Verifying Checksum +fdb612a3ab15: Download complete +d8fec0096d40: Verifying Checksum +d8fec0096d40: Download complete +fdb612a3ab15: Pull complete +b57a345c42b1: Verifying Checksum +b57a345c42b1: Download complete +635650bebf1e: Verifying Checksum +635650bebf1e: Download complete +ea86c19a87f1: Verifying Checksum +ea86c19a87f1: Download complete +3a2ffbd0ebd5: Verifying Checksum +3a2ffbd0ebd5: Download complete +a8e12b2a3dd1: Verifying Checksum +a8e12b2a3dd1: Download complete +a8e12b2a3dd1: Pull complete +5e5c12753eb3: Verifying Checksum +5e5c12753eb3: Download complete +b57a345c42b1: Pull complete +d8fec0096d40: Pull complete +cc3fd5b45f7f: Download complete +cc3fd5b45f7f: Pull complete +635650bebf1e: Pull complete +ea86c19a87f1: Pull complete +3a2ffbd0ebd5: Pull complete +5e5c12753eb3: Pull complete +Digest: sha256:3528bfebfe44edfc1598dcfc48e4f8e2558bc104df06bbdac60cef9eb3d57ee0 +Status: Downloaded newer image for pavics/workflow-tests:py310-240316 [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240312 cat -$ docker top 9daac0be1774778111989f5fb4bfbd66cd47d496c133be5d02c08474feb6830b -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240316 cat +$ docker top 983d2dda09c5e58f84e165072cad4fd912e034462e027a43442d196da0ca8c47 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-14T19:18:32.044Z] Timeout set to expire in 2 hr 0 min +[2024-03-16T18:04:18.764Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-14T19:18:32.338Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-03-16T18:04:19.976Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-14T19:18:32.637Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-14T19:18:32.637Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-14T19:18:32.637Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-03-14T19:18:32.637Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-14T19:18:32.637Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-14T19:18:32.637Z] FINCH_BRANCH has been set to 'master' -[2024-03-14T19:18:32.637Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-14T19:18:32.637Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-14T19:18:32.637Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-03-14T19:18:32.637Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-14T19:18:32.637Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-14T19:18:32.637Z] RAVEN_BRANCH has been set to 'main' -[2024-03-14T19:18:32.637Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-14T19:18:32.637Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-14T19:18:32.637Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-14T19:18:32.637Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-14T19:18:32.637Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-14T19:18:32.637Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-14T19:18:32.637Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-14T19:18:32.637Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-14T19:18:32.637Z] + git clean -fdx -[2024-03-14T19:18:32.904Z] Removing .pytest_cache/ -[2024-03-14T19:18:32.905Z] Removing PAVICS-landing-master/ -[2024-03-14T19:18:32.905Z] Removing RavenPy-master/ -[2024-03-14T19:18:32.905Z] Removing __pycache__/ -[2024-03-14T19:18:32.905Z] Removing buildout/ -[2024-03-14T19:18:32.905Z] Removing esgf-compute-api-devel/ -[2024-03-14T19:18:32.905Z] Removing finch-master/ -[2024-03-14T19:18:32.905Z] Removing pavics-sdi-master/ -[2024-03-14T19:18:32.905Z] Removing raven-main/ -[2024-03-14T19:18:32.905Z] + ./downloadrepos -[2024-03-14T19:18:32.905Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-14T19:18:32.905Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-03-14T19:18:32.905Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-14T19:18:32.905Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-14T19:18:32.905Z] FINCH_BRANCH has been set to 'master' -[2024-03-14T19:18:32.905Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-14T19:18:32.905Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-14T19:18:32.905Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-03-14T19:18:32.905Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-14T19:18:32.905Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-14T19:18:32.905Z] RAVEN_BRANCH has been set to 'main' -[2024-03-14T19:18:32.905Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-14T19:18:32.905Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-14T19:18:32.905Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-14T19:18:32.905Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-14T19:18:32.905Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-14T19:18:32.905Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-14T19:18:32.905Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-14T19:18:32.905Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-14T19:18:32.905Z] + rm -rf pavics-sdi-* -[2024-03-14T19:18:32.905Z] + ls -[2024-03-14T19:18:32.905Z] + grep pavics-sdi -[2024-03-14T19:18:32.905Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha -[2024-03-14T19:18:32.905Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-14T19:18:32.905Z] + shift -[2024-03-14T19:18:32.905Z] + branch=fix_nbs_jupyter_alpha -[2024-03-14T19:18:32.905Z] + shift -[2024-03-14T19:18:32.905Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha.tar.gz -[2024-03-14T19:18:32.905Z] + tar xz -[2024-03-14T19:18:37.095Z] + ls -[2024-03-14T19:18:37.095Z] + grep pavics-sdi -[2024-03-14T19:18:37.095Z] pavics-sdi-fix_nbs_jupyter_alpha -[2024-03-14T19:18:37.095Z] + set +x -[2024-03-14T19:18:37.095Z] + rm -rf finch-* -[2024-03-14T19:18:37.095Z] + ls -[2024-03-14T19:18:37.095Z] + grep finch -[2024-03-14T19:18:37.095Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-14T19:18:37.095Z] + github_repo=https://github.com/bird-house/finch -[2024-03-14T19:18:37.095Z] + shift -[2024-03-14T19:18:37.095Z] + branch=master -[2024-03-14T19:18:37.095Z] + shift -[2024-03-14T19:18:37.095Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-03-14T19:18:37.095Z] + tar xz -[2024-03-14T19:18:38.472Z] + ls -[2024-03-14T19:18:38.472Z] + grep finch -[2024-03-14T19:18:38.472Z] finch-master -[2024-03-14T19:18:38.472Z] + set +x -[2024-03-14T19:18:38.472Z] + rm -rf PAVICS-landing-* -[2024-03-14T19:18:38.472Z] + ls -[2024-03-14T19:18:38.472Z] + grep PAVICS-landing -[2024-03-14T19:18:38.472Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha -[2024-03-14T19:18:38.472Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-14T19:18:38.472Z] + shift -[2024-03-14T19:18:38.472Z] + branch=fix_nbs_jupyter_alpha -[2024-03-14T19:18:38.472Z] + shift -[2024-03-14T19:18:38.472Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha.tar.gz -[2024-03-14T19:18:38.472Z] + tar xz -[2024-03-14T19:18:46.579Z] + ls -[2024-03-14T19:18:46.579Z] + grep PAVICS-landing -[2024-03-14T19:18:46.579Z] PAVICS-landing-fix_nbs_jupyter_alpha -[2024-03-14T19:18:46.579Z] + set +x -[2024-03-14T19:18:46.579Z] + rm -rf raven-* -[2024-03-14T19:18:46.579Z] + ls -[2024-03-14T19:18:46.579Z] + grep raven -[2024-03-14T19:18:46.579Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-14T19:18:46.579Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-14T19:18:46.579Z] + shift -[2024-03-14T19:18:46.579Z] + branch=main -[2024-03-14T19:18:46.579Z] + shift -[2024-03-14T19:18:46.579Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-14T19:18:46.579Z] + tar xz -[2024-03-14T19:18:47.522Z] + ls -[2024-03-14T19:18:47.522Z] + grep raven -[2024-03-14T19:18:47.522Z] raven-main -[2024-03-14T19:18:47.522Z] + set +x -[2024-03-14T19:18:47.522Z] + rm -rf RavenPy-* -[2024-03-14T19:18:47.522Z] + ls -[2024-03-14T19:18:47.522Z] + grep RavenPy -[2024-03-14T19:18:47.522Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-14T19:18:47.522Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-14T19:18:47.522Z] + shift -[2024-03-14T19:18:47.522Z] + branch=master -[2024-03-14T19:18:47.522Z] + shift -[2024-03-14T19:18:47.522Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-14T19:18:47.522Z] + tar xz -[2024-03-14T19:18:49.439Z] + ls -[2024-03-14T19:18:49.439Z] + grep RavenPy -[2024-03-14T19:18:49.439Z] RavenPy-master -[2024-03-14T19:18:49.439Z] + set +x -[2024-03-14T19:18:49.439Z] + rm -rf esgf-compute-api-* -[2024-03-14T19:18:49.439Z] + ls -[2024-03-14T19:18:49.439Z] + grep esgf-compute-api -[2024-03-14T19:18:49.439Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-14T19:18:49.439Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-14T19:18:49.439Z] + shift -[2024-03-14T19:18:49.439Z] + branch=devel -[2024-03-14T19:18:49.439Z] + shift -[2024-03-14T19:18:49.439Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-03-14T19:18:49.439Z] + tar xz -[2024-03-14T19:18:50.377Z] + ls -[2024-03-14T19:18:50.377Z] + grep esgf-compute-api -[2024-03-14T19:18:50.377Z] esgf-compute-api-devel -[2024-03-14T19:18:50.377Z] + set +x -[2024-03-14T19:18:50.377Z] + echo fix_nbs_jupyter_alpha -[2024-03-14T19:18:50.377Z] + sed s@/@-@g -[2024-03-14T19:18:50.377Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha -[2024-03-14T19:18:50.377Z] + echo Ouranosinc/pavics-sdi -[2024-03-14T19:18:50.377Z] + sed s@^.*/@@g -[2024-03-14T19:18:50.377Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-14T19:18:50.377Z] + echo master -[2024-03-14T19:18:50.377Z] + sed s@/@-@g -[2024-03-14T19:18:50.377Z] + FINCH_BRANCH=master -[2024-03-14T19:18:50.377Z] + echo bird-house/finch -[2024-03-14T19:18:50.377Z] + sed s@^.*/@@g -[2024-03-14T19:18:50.377Z] + FINCH_REPO_NAME=finch -[2024-03-14T19:18:50.377Z] + echo fix_nbs_jupyter_alpha -[2024-03-14T19:18:50.377Z] + sed s@/@-@g -[2024-03-14T19:18:50.377Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha -[2024-03-14T19:18:50.378Z] + echo Ouranosinc/PAVICS-landing -[2024-03-14T19:18:50.378Z] + sed s@^.*/@@g -[2024-03-14T19:18:50.378Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-14T19:18:50.378Z] + echo main -[2024-03-14T19:18:50.378Z] + sed s@/@-@g -[2024-03-14T19:18:50.378Z] + RAVEN_BRANCH=main -[2024-03-14T19:18:50.378Z] + echo Ouranosinc/raven -[2024-03-14T19:18:50.637Z] + sed s@^.*/@@g -[2024-03-14T19:18:50.638Z] + RAVEN_REPO_NAME=raven -[2024-03-14T19:18:50.638Z] + echo master -[2024-03-14T19:18:50.638Z] + sed s@/@-@g -[2024-03-14T19:18:50.638Z] + RAVENPY_BRANCH=master -[2024-03-14T19:18:50.638Z] + echo CSHS-CWRA/RavenPy -[2024-03-14T19:18:50.638Z] + sed s@^.*/@@g -[2024-03-14T19:18:50.638Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-14T19:18:50.638Z] + echo devel -[2024-03-14T19:18:50.638Z] + sed s@/@-@g -[2024-03-14T19:18:50.638Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-14T19:18:50.638Z] + echo ESGF/esgf-compute-api -[2024-03-14T19:18:50.638Z] + sed s@^.*/@@g -[2024-03-14T19:18:50.638Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-14T19:18:50.638Z] + echo pavics-sdi-fix_nbs_jupyter_alpha -[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T19:18:50.638Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha -[2024-03-14T19:18:50.638Z] + echo finch-master -[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T19:18:50.638Z] + FINCH_DIR=finch-master -[2024-03-14T19:18:50.638Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha -[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T19:18:50.638Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha -[2024-03-14T19:18:50.638Z] + echo raven-main -[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T19:18:50.638Z] + RAVEN_DIR=raven-main -[2024-03-14T19:18:50.638Z] + echo RavenPy-master -[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T19:18:50.638Z] + RAVENPY_DIR=RavenPy-master -[2024-03-14T19:18:50.638Z] + echo esgf-compute-api-devel -[2024-03-14T19:18:50.638Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T19:18:50.638Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-14T19:18:50.638Z] + echo true -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + VERIFY_SSL=true -[2024-03-14T19:18:50.638Z] + [ xtrue = xfalse ] -[2024-03-14T19:18:50.638Z] + rm -v finch-master/setup.cfg -[2024-03-14T19:18:50.638Z] removed 'finch-master/setup.cfg' -[2024-03-14T19:18:50.638Z] + rm -v raven-main/setup.cfg -[2024-03-14T19:18:50.638Z] removed 'raven-main/setup.cfg' -[2024-03-14T19:18:50.638Z] + rm -v raven-main/pyproject.toml -[2024-03-14T19:18:50.638Z] removed 'raven-main/pyproject.toml' -[2024-03-14T19:18:50.638Z] + rm -v RavenPy-master/setup.cfg -[2024-03-14T19:18:50.638Z] removed 'RavenPy-master/setup.cfg' -[2024-03-14T19:18:50.638Z] + rm -v RavenPy-master/tox.ini -[2024-03-14T19:18:50.638Z] removed 'RavenPy-master/tox.ini' -[2024-03-14T19:18:50.638Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-14T19:18:50.638Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-14T19:18:50.638Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-14T19:18:50.638Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-14T19:18:50.638Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-14T19:18:50.638Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-14T19:18:50.638Z] + echo false -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + TEST_MAGPIE_AUTH=false -[2024-03-14T19:18:50.638Z] + echo true -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + TEST_PAVICS_SDI_REPO=true -[2024-03-14T19:18:50.638Z] + echo false -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-14T19:18:50.638Z] + echo true -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + TEST_FINCH_REPO=true -[2024-03-14T19:18:50.638Z] + echo true -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + TEST_PAVICS_LANDING_REPO=true -[2024-03-14T19:18:50.638Z] + echo false -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + TEST_RAVEN_REPO=false -[2024-03-14T19:18:50.638Z] + echo false -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + TEST_RAVENPY_REPO=false -[2024-03-14T19:18:50.638Z] + echo false -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-14T19:18:50.638Z] + echo true -[2024-03-14T19:18:50.638Z] + tr [:upper:] [:lower:] -[2024-03-14T19:18:50.638Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-03-14T19:18:50.638Z] + NOTEBOOKS_TO_TEST= -[2024-03-14T19:18:50.638Z] + [ xfalse = xtrue ] -[2024-03-14T19:18:50.638Z] + [ xtrue = xtrue ] -[2024-03-14T19:18:50.638Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb -[2024-03-14T19:18:50.638Z] + [ xfalse = xtrue ] -[2024-03-14T19:18:50.638Z] + [ xtrue = xtrue ] -[2024-03-14T19:18:50.638Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-03-14T19:18:50.638Z] + [ xtrue = xtrue ] -[2024-03-14T19:18:50.638Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb -[2024-03-14T19:18:50.638Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-14T19:18:50.638Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-03-14T19:18:50.638Z] + PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-14T19:18:50.638Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-14T19:18:50.638Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-14T19:18:50.639Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-14T19:18:50.639Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators -[2024-03-14T19:18:50.639Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-14T19:18:50.639Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-14T19:18:50.639Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-03-14T19:18:52.011Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.011Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.012Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.588Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.847Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-14T19:18:52.848Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-03-14T19:18:52.848Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-03-14T19:18:52.848Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-03-14T19:18:52.848Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data' -[2024-03-14T19:18:52.848Z] + [ xfalse = xtrue ] -[2024-03-14T19:18:52.848Z] + [ xfalse = xtrue ] -[2024-03-14T19:18:52.848Z] + [ xfalse = xtrue ] -[2024-03-14T19:18:52.848Z] + [ xtrue = xtrue ] -[2024-03-14T19:18:52.848Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-14T19:18:52.848Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-14T19:18:52.848Z] + [ -n ] -[2024-03-14T19:18:52.848Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-14T19:18:52.848Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-14T19:18:52.848Z] Will run notebooks against pavics.ouranos.ca -[2024-03-14T19:18:52.848Z] + [ -z ] -[2024-03-14T19:18:52.848Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-03-14T19:18:52.848Z] + git diff -[2024-03-14T19:18:52.848Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-14T19:18:52.850Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-03-14T19:18:55.382Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-14T19:18:55.382Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-14T19:18:55.642Z] ============================= test session starts ============================== -[2024-03-14T19:18:55.642Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-03-14T19:18:55.642Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-03-14T19:18:55.642Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-03-14T19:18:55.642Z] collected 214 items -[2024-03-14T19:18:55.642Z] -[2024-03-14T19:18:59.829Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb . [ 0%] -[2024-03-14T19:19:06.233Z] ...... [ 3%] -[2024-03-14T19:19:08.153Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb . [ 3%] -[2024-03-14T19:19:15.570Z] ..... [ 6%] -[2024-03-14T19:19:16.528Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb . [ 6%] -[2024-03-14T19:19:21.874Z] ....... [ 9%] -[2024-03-14T19:19:37.516Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb .... [ 11%] -[2024-03-14T19:21:58.883Z] .F..F... [ 15%] -[2024-03-14T19:21:58.883Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 15%] -[2024-03-14T19:22:05.753Z] ............... [ 22%] -[2024-03-14T19:22:08.287Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 23%] -[2024-03-14T19:22:13.073Z] .... [ 25%] -[2024-03-14T19:22:14.985Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb .. [ 26%] -[2024-03-14T19:22:20.775Z] .... [ 28%] -[2024-03-14T19:22:28.984Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb . [ 28%] -[2024-03-14T19:22:37.511Z] ..... [ 30%] -[2024-03-14T19:22:40.855Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb ... [ 32%] -[2024-03-14T19:22:41.682Z] .... [ 34%] -[2024-03-14T19:22:42.630Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb . [ 34%] -[2024-03-14T19:22:46.708Z] .... [ 36%] -[2024-03-14T19:23:04.802Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb . [ 36%] -[2024-03-14T19:24:40.524Z] ...F.FF............F......F [ 49%] -[2024-03-14T19:24:40.524Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb . [ 50%] -[2024-03-14T19:24:40.524Z] ... [ 51%] -[2024-03-14T19:24:40.786Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb . [ 51%] -[2024-03-14T19:24:59.167Z] .............F.......... [ 63%] -[2024-03-14T19:25:01.706Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb . [ 63%] -[2024-03-14T19:25:05.877Z] ..... [ 65%] -[2024-03-14T19:25:14.577Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] -[2024-03-14T19:25:21.872Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...F.. [ 73%] -[2024-03-14T19:25:23.325Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 74%] -[2024-03-14T19:25:26.114Z] ...... [ 77%] -[2024-03-14T19:25:32.701Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb F [ 77%] -[2024-03-14T19:25:43.693Z] F.F.......... [ 83%] -[2024-03-14T19:25:51.805Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-03-14T19:26:10.516Z] .F..s [ 86%] -[2024-03-14T19:26:17.069Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 86%] -[2024-03-14T19:26:27.722Z] .F. [ 88%] -[2024-03-14T19:26:39.934Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 88%] -[2024-03-14T19:27:28.613Z] ...... [ 91%] -[2024-03-14T19:27:31.078Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-03-14T19:29:40.592Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-03-14T19:29:40.592Z] -[2024-03-14T19:29:40.592Z] =================================== FAILURES =================================== -[2024-03-14T19:29:40.592Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 5 __ -[2024-03-14T19:29:40.592Z] Notebook cell execution failed -[2024-03-14T19:29:40.592Z] Cell 5: Cell outputs differ -[2024-03-14T19:29:40.592Z] -[2024-03-14T19:29:40.592Z] Input: -[2024-03-14T19:29:40.592Z] ds = xr.open_dataset( -[2024-03-14T19:29:40.592Z] url, chunks=dict(realization=1, time=365, rlat=50 * 3, rlon=50 * 3) -[2024-03-14T19:29:40.592Z] ) -[2024-03-14T19:29:40.592Z] xclim.set_options(check_missing="pct", missing_options={"pct": {"tolerance": 0.05}}) -[2024-03-14T19:29:40.593Z] sdii = xclim.atmos.daily_pr_intensity(pr=ds.pr.sel(time="2000")) -[2024-03-14T19:29:40.593Z] sdii -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] Traceback: -[2024-03-14T19:29:40.593Z] Unexpected output fields from running code: {'stderr'} -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 8 __ -[2024-03-14T19:29:40.593Z] Notebook cell execution failed -[2024-03-14T19:29:40.593Z] Cell 8: Cell outputs differ -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] Input: -[2024-03-14T19:29:40.593Z] # Subset over the Montreal gridpoint -[2024-03-14T19:29:40.593Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) -[2024-03-14T19:29:40.593Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) -[2024-03-14T19:29:40.593Z] print("Input dataset for Montreal :") -[2024-03-14T19:29:40.593Z] display(pt) -[2024-03-14T19:29:40.593Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") -[2024-03-14T19:29:40.593Z] print("Maximim 1-day precipitation `lazy` output ..") -[2024-03-14T19:29:40.593Z] out -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] Traceback: -[2024-03-14T19:29:40.593Z] Unexpected output fields from running code: {'stderr'} -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 4 _ -[2024-03-14T19:29:40.593Z] Notebook cell execution failed -[2024-03-14T19:29:40.593Z] Cell 4: Cell outputs differ -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] Input: -[2024-03-14T19:29:40.593Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) -[2024-03-14T19:29:40.593Z] plt.title("Target regular grid"); -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] Traceback: -[2024-03-14T19:29:40.593Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-14T19:29:40.593Z]
-[2024-03-14T19:29:40.593Z] ============ disagrees with newly computed (test) output: -[2024-03-14T19:29:40.593Z] Text(0.5, 1.0, 'Target regular grid') -[2024-03-14T19:29:40.593Z]
-[2024-03-14T19:29:40.593Z] >>>>>>>>>>>> -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 6 _ -[2024-03-14T19:29:40.593Z] Notebook cell execution failed -[2024-03-14T19:29:40.593Z] Cell 6: Cell outputs differ -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] Input: -[2024-03-14T19:29:40.593Z] reg_bil = xe.Regridder(ds_in, ds_tgt, "bilinear") -[2024-03-14T19:29:40.593Z] reg_bil # Show information about the regridding -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] Traceback: -[2024-03-14T19:29:40.593Z] Missing output fields from running code: {'stderr'} -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 7 _ -[2024-03-14T19:29:40.593Z] Notebook cell execution failed -[2024-03-14T19:29:40.593Z] Cell 7: Cell outputs differ -[2024-03-14T19:29:40.593Z] -[2024-03-14T19:29:40.593Z] Input: -[2024-03-14T19:29:40.594Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. -[2024-03-14T19:29:40.594Z] warnings.filterwarnings("ignore", category=FutureWarning) -[2024-03-14T19:29:40.594Z] -[2024-03-14T19:29:40.594Z] # Apply the regridding weights to the input sea ice concentration data -[2024-03-14T19:29:40.594Z] sic_bil = reg_bil(ds_in.siconc) -[2024-03-14T19:29:40.594Z] -[2024-03-14T19:29:40.594Z] # Plot the results -[2024-03-14T19:29:40.594Z] sic_bil.isel(time=0).plot(cmap=cmap) -[2024-03-14T19:29:40.594Z] plt.title("Regridded sic data (Jan 2020)"); -[2024-03-14T19:29:40.594Z] -[2024-03-14T19:29:40.594Z] Traceback: -[2024-03-14T19:29:40.594Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-14T19:29:40.594Z]
-[2024-03-14T19:29:40.594Z] ============ disagrees with newly computed (test) output: -[2024-03-14T19:29:40.594Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') -[2024-03-14T19:29:40.594Z]
-[2024-03-14T19:29:40.594Z] >>>>>>>>>>>> -[2024-03-14T19:29:40.594Z] -[2024-03-14T19:29:40.594Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 20 _ -[2024-03-14T19:29:40.594Z] Notebook cell execution failed -[2024-03-14T19:29:40.594Z] Cell 20: Cell outputs differ -[2024-03-14T19:29:40.594Z] -[2024-03-14T19:29:40.594Z] Input: -[2024-03-14T19:29:40.594Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") -[2024-03-14T19:29:40.594Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) -[2024-03-14T19:29:40.594Z] -[2024-03-14T19:29:40.594Z] fig, ax = plt.subplots(figsize=(6, 4)) -[2024-03-14T19:29:40.594Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) -[2024-03-14T19:29:40.594Z] ax.set_xlim(210, 320) -[2024-03-14T19:29:40.594Z] ax.set_ylim(38, 86) -[2024-03-14T19:29:40.594Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") -[2024-03-14T19:29:40.594Z] ax.annotate( -[2024-03-14T19:29:40.594Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", -[2024-03-14T19:29:40.594Z] (280, 40), -[2024-03-14T19:29:40.594Z] xytext=(1.3, 0.3), -[2024-03-14T19:29:40.594Z] xycoords="data", -[2024-03-14T19:29:40.594Z] textcoords="axes fraction", -[2024-03-14T19:29:40.594Z] fontsize="x-large", -[2024-03-14T19:29:40.594Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), -[2024-03-14T19:29:40.594Z] ); -[2024-03-14T19:29:40.594Z] -[2024-03-14T19:29:40.594Z] Traceback: -[2024-03-14T19:29:40.594Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-14T19:29:40.594Z]
-[2024-03-14T19:29:40.595Z] ============ disagrees with newly computed (test) output: -[2024-03-14T19:29:40.595Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') -[2024-03-14T19:29:40.595Z]
-[2024-03-14T19:29:40.595Z] >>>>>>>>>>>> -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 27 _ -[2024-03-14T19:29:40.595Z] Notebook cell execution failed -[2024-03-14T19:29:40.595Z] Cell 27: Cell outputs differ -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] Input: -[2024-03-14T19:29:40.595Z] # Now we can plot easily the results as a choropleth map! -[2024-03-14T19:29:40.595Z] ax = shapes_data.plot( -[2024-03-14T19:29:40.595Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} -[2024-03-14T19:29:40.595Z] ) -[2024-03-14T19:29:40.595Z] ax.set_ylabel("Latitude") -[2024-03-14T19:29:40.595Z] ax.set_xlabel("Longitude"); -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] Traceback: -[2024-03-14T19:29:40.595Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-14T19:29:40.595Z]
-[2024-03-14T19:29:40.595Z] ============ disagrees with newly computed (test) output: -[2024-03-14T19:29:40.595Z] Text(0.5, 91.20243008191655, 'Longitude') -[2024-03-14T19:29:40.595Z]
-[2024-03-14T19:29:40.595Z] >>>>>>>>>>>> -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb::Cell 14 _ -[2024-03-14T19:29:40.595Z] Notebook cell execution failed -[2024-03-14T19:29:40.595Z] Cell 14: Cell outputs differ -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] Input: -[2024-03-14T19:29:40.595Z] lon0 = float(bounds.minx) -[2024-03-14T19:29:40.595Z] lon1 = float(bounds.maxx) -[2024-03-14T19:29:40.595Z] lat0 = float(bounds.miny) -[2024-03-14T19:29:40.595Z] lat1 = float(bounds.maxy) -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] result_tasmin = finch.subset_bbox( -[2024-03-14T19:29:40.595Z] resource=data, -[2024-03-14T19:29:40.595Z] variable="tasmin", -[2024-03-14T19:29:40.595Z] lon0=lon0, -[2024-03-14T19:29:40.595Z] lon1=lon1, -[2024-03-14T19:29:40.595Z] lat0=lat0, -[2024-03-14T19:29:40.595Z] lat1=lat1, -[2024-03-14T19:29:40.595Z] start_date="1958-01-01", -[2024-03-14T19:29:40.595Z] end_date="1958-12-31", -[2024-03-14T19:29:40.595Z] ) -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] Traceback: -[2024-03-14T19:29:40.595Z]  mismatch 'stderr' -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] assert reference_output == test_output failed: -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] '/tmp/ipykern...ounds.maxy)\n' == '/tmp/ipykern...ounds.maxy)\n' -[2024-03-14T19:29:40.595Z] -[2024-03-14T19:29:40.595Z] Skipping 179 identical trailing characters in diff, use -v to show -[2024-03-14T19:29:40.595Z] - /tmp/ipykernel_1027/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-14T19:29:40.596Z] ? ^^ -[2024-03-14T19:29:40.596Z] + /tmp/ipykernel_1086/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-14T19:29:40.596Z] ? ^^ -[2024-03-14T19:29:40.596Z] lon0 = float(bounds.minx) -[2024-03-14T19:29:40.596Z] - /tmp/ipykernel_1027/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-14T19:29:40.596Z] ? ^^ -[2024-03-14T19:29:40.596Z] + /tmp/ipykernel_1086/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-14T19:29:40.596Z] ? ^^ -[2024-03-14T19:29:40.596Z] lon1 = float(bounds.maxx) -[2024-03-14T19:29:40.596Z] - /tmp/ipykernel_1027/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-14T19:29:40.596Z] ? ^^ -[2024-03-14T19:29:40.596Z] + /tmp/ipykernel_1086/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-14T19:29:40.596Z] ? ^^ -[2024-03-14T19:29:40.596Z] lat0 = float(bounds.miny) -[2024-03-14T19:29:40.596Z] - /tmp/ipykernel_1027/85701396 -[2024-03-14T19:29:40.596Z] ? ^^ -[2024-03-14T19:29:40.596Z] + /tmp/ipykernel_1086/85701396 -[2024-03-14T19:29:40.596Z] ? ^^ -[2024-03-14T19:29:40.596Z]  -[2024-03-14T19:29:40.596Z] -[2024-03-14T19:29:40.596Z] _________ finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 _________ -[2024-03-14T19:29:40.596Z] Notebook cell execution failed -[2024-03-14T19:29:40.596Z] Cell 3: Cell outputs differ -[2024-03-14T19:29:40.596Z] -[2024-03-14T19:29:40.596Z] Input: -[2024-03-14T19:29:40.596Z] print("Process status: ", resp.status) -[2024-03-14T19:29:40.596Z] urls = resp.get() -[2024-03-14T19:29:40.596Z] print("Link to process output: ", urls.output) -[2024-03-14T19:29:40.596Z] -[2024-03-14T19:29:40.596Z] Traceback: -[2024-03-14T19:29:40.596Z]  mismatch 'stdout' -[2024-03-14T19:29:40.596Z] -[2024-03-14T19:29:40.596Z] assert reference_output == test_output failed: -[2024-03-14T19:29:40.596Z] -[2024-03-14T19:29:40.596Z] 'Process stat...20650101.nc\n' == 'Process stat...20650101.nc\n' -[2024-03-14T19:29:40.596Z] -[2024-03-14T19:29:40.596Z] Skipping 49 identical leading characters in diff, use -v to show -[2024-03-14T19:29:40.597Z] - output: https://WPS_HOST/wpsoutputs/STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc -[2024-03-14T19:29:40.597Z] ? --------------------------- -[2024-03-14T19:29:40.597Z] + output: /STATUS_FILE/frost_days_sres_a2_experiment_20460101_20650101.nc -[2024-03-14T19:29:40.597Z]  -[2024-03-14T19:29:40.597Z] -[2024-03-14T19:29:40.597Z] _ PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 _ -[2024-03-14T19:29:40.597Z] Notebook cell execution failed -[2024-03-14T19:29:40.597Z] Cell 0: Cell outputs differ -[2024-03-14T19:29:40.597Z] -[2024-03-14T19:29:40.597Z] Input: -[2024-03-14T19:29:40.597Z] import warnings -[2024-03-14T19:29:40.597Z] -[2024-03-14T19:29:40.597Z] import xarray as xr -[2024-03-14T19:29:40.597Z] from IPython.display import display # Fancy representation of xarray objects -[2024-03-14T19:29:40.597Z] from siphon.catalog import TDSCatalog -[2024-03-14T19:29:40.597Z] -[2024-03-14T19:29:40.597Z] warnings.simplefilter("ignore") -[2024-03-14T19:29:40.597Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA -[2024-03-14T19:29:40.597Z] -[2024-03-14T19:29:40.597Z] # Create Catalog -[2024-03-14T19:29:40.597Z] cat = TDSCatalog(url) -[2024-03-14T19:29:40.597Z] -[2024-03-14T19:29:40.597Z] # DAP link for this demo -[2024-03-14T19:29:40.597Z] ds_url = cat.datasets[0].access_urls["OPENDAP"] -[2024-03-14T19:29:40.597Z] -[2024-03-14T19:29:40.597Z] # xarray.Dataset -[2024-03-14T19:29:40.597Z] ds = xr.open_dataset(ds_url, chunks=dict(time=256 * 2, lon=32, lat=32)) -[2024-03-14T19:29:40.597Z] display(ds) -[2024-03-14T19:29:40.598Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) -[2024-03-14T19:29:40.598Z] -[2024-03-14T19:29:40.598Z] Traceback: -[2024-03-14T19:29:40.598Z]  mismatch 'text/plain' -[2024-03-14T19:29:40.598Z] -[2024-03-14T19:29:40.598Z] assert reference_output == test_output failed: -[2024-03-14T19:29:40.598Z] -[2024-03-14T19:29:40.598Z] ' 20 plt.title(pos_f.description.split(".")[0]) -[2024-03-14T19:29:40.602Z]  22 display() -[2024-03-14T19:29:40.602Z] -[2024-03-14T19:29:40.602Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-03-14T19:29:40.602Z]  275 with suppress(KeyError): -[2024-03-14T19:29:40.602Z]  276 return source[name] -[2024-03-14T19:29:40.602Z] --> 277 raise AttributeError( -[2024-03-14T19:29:40.602Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-03-14T19:29:40.602Z]  279 ) -[2024-03-14T19:29:40.602Z] -[2024-03-14T19:29:40.602Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-03-14T19:29:40.602Z] -[2024-03-14T19:29:40.602Z] =========================== short test summary info ============================ -[2024-03-14T19:29:40.602Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 5 -[2024-03-14T19:29:40.602Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 8 -[2024-03-14T19:29:40.602Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 4 -[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 6 -[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 7 -[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 20 -[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 27 -[2024-03-14T19:29:40.603Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb::Cell 14 -[2024-03-14T19:29:40.603Z] FAILED finch-master/docs/source/notebooks/finch-usage.ipynb::Cell 3 -[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 -[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 1 -[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 3 -[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 -[2024-03-14T19:29:40.603Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-03-14T19:29:40.603Z] ============ 14 failed, 199 passed, 1 skipped in 641.45s (0:10:41) ============= -[2024-03-14T19:29:40.603Z] + EXIT_CODE=1 -[2024-03-14T19:29:40.603Z] + echo true -[2024-03-14T19:29:40.603Z] + tr [:upper:] [:lower:] -[2024-03-14T19:29:40.603Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-14T19:29:40.603Z] + [ xtrue = xtrue ] -[2024-03-14T19:29:40.603Z] + mkdir -p buildout -[2024-03-14T19:29:40.603Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb -[2024-03-14T19:29:40.603Z] + filename=WCS_example.ipynb -[2024-03-14T19:29:40.603Z] + echo WCS_example.ipynb -[2024-03-14T19:29:40.603Z] + sed s/.ipynb$// -[2024-03-14T19:29:40.603Z] + filename=WCS_example -[2024-03-14T19:29:40.603Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-03-14T19:29:40.603Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb -[2024-03-14T19:29:40.603Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-03-14T19:29:50.697Z] [NbConvertApp] Writing 143815 bytes to buildout/WCS_example.output.ipynb -[2024-03-14T19:29:50.697Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb -[2024-03-14T19:29:50.697Z] + filename=WFS_example.ipynb -[2024-03-14T19:29:50.697Z] + + sed s/.ipynb$// -[2024-03-14T19:29:50.697Z] echo WFS_example.ipynb -[2024-03-14T19:29:50.697Z] + filename=WFS_example -[2024-03-14T19:29:50.697Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-03-14T19:29:50.698Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb -[2024-03-14T19:29:51.636Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-03-14T19:30:01.635Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb -[2024-03-14T19:30:01.898Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb -[2024-03-14T19:30:01.899Z] + filename=WMS_example.ipynb -[2024-03-14T19:30:01.899Z] + echo WMS_example.ipynb -[2024-03-14T19:30:01.899Z] + sed s/.ipynb$// -[2024-03-14T19:30:01.899Z] + filename=WMS_example -[2024-03-14T19:30:01.899Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-03-14T19:30:01.899Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb -[2024-03-14T19:30:03.813Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-03-14T19:30:11.942Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb -[2024-03-14T19:30:11.943Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb -[2024-03-14T19:30:11.943Z] + filename=climex.ipynb -[2024-03-14T19:30:11.943Z] + echo climex.ipynb -[2024-03-14T19:30:11.943Z] + sed s/.ipynb$// -[2024-03-14T19:30:11.943Z] + filename=climex -[2024-03-14T19:30:11.943Z] + [ -e buildout/climex.output.ipynb ] -[2024-03-14T19:30:11.943Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb -[2024-03-14T19:30:13.333Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb to notebook -[2024-03-14T19:33:04.951Z] [NbConvertApp] Writing 1789572 bytes to buildout/climex.output.ipynb -[2024-03-14T19:33:04.952Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-14T19:33:04.952Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-03-14T19:33:04.952Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-03-14T19:33:04.952Z] + sed s/.ipynb$// -[2024-03-14T19:33:04.952Z] + filename=eccc-geoapi-climate-stations -[2024-03-14T19:33:04.952Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-03-14T19:33:04.952Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-14T19:33:04.952Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-03-14T19:33:10.237Z] [NbConvertApp] Writing 279164 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-03-14T19:33:10.237Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-14T19:33:10.237Z] + filename=eccc-geoapi-xclim.ipynb -[2024-03-14T19:33:10.496Z] + echo eccc-geoapi-xclim.ipynb -[2024-03-14T19:33:10.496Z] + sed s/.ipynb$// -[2024-03-14T19:33:10.496Z] + filename=eccc-geoapi-xclim -[2024-03-14T19:33:10.496Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-03-14T19:33:10.496Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-14T19:33:12.404Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-03-14T19:33:22.402Z] [NbConvertApp] Writing 108300 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-03-14T19:33:22.402Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb -[2024-03-14T19:33:22.402Z] + filename=esgf-dap.ipynb -[2024-03-14T19:33:22.402Z] + + sed s/.ipynb$// -[2024-03-14T19:33:22.402Z] echo esgf-dap.ipynb -[2024-03-14T19:33:22.402Z] + filename=esgf-dap -[2024-03-14T19:33:22.402Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-03-14T19:33:22.402Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb -[2024-03-14T19:33:22.664Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-03-14T19:33:30.798Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb -[2024-03-14T19:33:30.798Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb -[2024-03-14T19:33:30.798Z] + filename=forecasts.ipynb -[2024-03-14T19:33:30.798Z] + echo forecasts.ipynb -[2024-03-14T19:33:30.798Z] + sed s/.ipynb$// -[2024-03-14T19:33:30.798Z] + filename=forecasts -[2024-03-14T19:33:30.798Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-03-14T19:33:30.798Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb -[2024-03-14T19:33:32.177Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb to notebook -[2024-03-14T19:33:50.355Z] [NbConvertApp] Writing 181149 bytes to buildout/forecasts.output.ipynb -[2024-03-14T19:33:50.355Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-14T19:33:50.355Z] + filename=jupyter_extensions.ipynb -[2024-03-14T19:33:50.355Z] + echo jupyter_extensions.ipynb -[2024-03-14T19:33:50.355Z] + sed s/.ipynb$// -[2024-03-14T19:33:50.355Z] + filename=jupyter_extensions -[2024-03-14T19:33:50.355Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-03-14T19:33:50.355Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-14T19:33:51.293Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-03-14T19:33:53.210Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb -[2024-03-14T19:33:53.210Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb -[2024-03-14T19:33:53.210Z] + filename=opendap.ipynb -[2024-03-14T19:33:53.210Z] + sed s/.ipynb$// -[2024-03-14T19:33:53.210Z] + echo opendap.ipynb -[2024-03-14T19:33:53.210Z] + filename=opendap -[2024-03-14T19:33:53.210Z] + [ -e buildout/opendap.output.ipynb ] -[2024-03-14T19:33:53.210Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb -[2024-03-14T19:33:55.120Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb to notebook -[2024-03-14T19:34:00.404Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb -[2024-03-14T19:34:00.404Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-14T19:34:00.405Z] + filename=pavics_thredds.ipynb -[2024-03-14T19:34:00.405Z] + echo pavics_thredds.ipynb -[2024-03-14T19:34:00.405Z] + sed s/.ipynb$// -[2024-03-14T19:34:00.405Z] + filename=pavics_thredds -[2024-03-14T19:34:00.405Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-03-14T19:34:00.405Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-14T19:34:01.791Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-03-14T19:34:05.083Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-14T19:34:05.083Z] context: Access to service is forbidden. -[2024-03-14T19:34:05.345Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-14T19:34:05.345Z] context: Access to service is forbidden. -[2024-03-14T19:34:08.643Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb -[2024-03-14T19:34:08.643Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb -[2024-03-14T19:34:08.643Z] + filename=regridding.ipynb -[2024-03-14T19:34:08.643Z] + echo regridding.ipynb -[2024-03-14T19:34:08.643Z] + sed s/.ipynb$// -[2024-03-14T19:34:08.643Z] + filename=regridding -[2024-03-14T19:34:08.643Z] + [ -e buildout/regridding.output.ipynb ] -[2024-03-14T19:34:08.643Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb -[2024-03-14T19:34:10.553Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb to notebook -[2024-03-14T19:35:47.053Z] [NbConvertApp] Writing 1239791 bytes to buildout/regridding.output.ipynb -[2024-03-14T19:35:47.053Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb -[2024-03-14T19:35:47.053Z] + filename=rendering.ipynb -[2024-03-14T19:35:47.053Z] + + sed s/.ipynb$// -[2024-03-14T19:35:47.053Z] echo rendering.ipynb -[2024-03-14T19:35:47.053Z] + filename=rendering -[2024-03-14T19:35:47.053Z] + [ -e buildout/rendering.output.ipynb ] -[2024-03-14T19:35:47.053Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb -[2024-03-14T19:35:47.381Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb to notebook -[2024-03-14T19:35:51.592Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb -[2024-03-14T19:35:51.592Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb -[2024-03-14T19:35:51.592Z] + filename=subset-user-input.ipynb -[2024-03-14T19:35:51.592Z] + echo subset-user-input.ipynb -[2024-03-14T19:35:51.592Z] + sed s/.ipynb$// -[2024-03-14T19:35:51.592Z] + filename=subset-user-input -[2024-03-14T19:35:51.592Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-03-14T19:35:51.592Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb -[2024-03-14T19:35:52.975Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-03-14T19:36:14.939Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb -[2024-03-14T19:36:14.939Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb -[2024-03-14T19:36:14.939Z] + filename=subsetting.ipynb -[2024-03-14T19:36:14.939Z] + echo subsetting.ipynb -[2024-03-14T19:36:14.939Z] + sed s/.ipynb$// -[2024-03-14T19:36:14.939Z] + filename=subsetting -[2024-03-14T19:36:14.939Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-03-14T19:36:14.939Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb -[2024-03-14T19:36:14.939Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb to notebook -[2024-03-14T19:36:23.064Z] [NbConvertApp] Writing 93314 bytes to buildout/subsetting.output.ipynb -[2024-03-14T19:36:23.064Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-14T19:36:23.064Z] + filename=dap_subset.ipynb -[2024-03-14T19:36:23.064Z] + + sed s/.ipynb$// -[2024-03-14T19:36:23.064Z] echo dap_subset.ipynb -[2024-03-14T19:36:23.064Z] + filename=dap_subset -[2024-03-14T19:36:23.064Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-03-14T19:36:23.064Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-14T19:36:24.968Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-03-14T19:36:34.952Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb -[2024-03-14T19:36:34.952Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-14T19:36:34.952Z] + filename=finch-usage.ipynb -[2024-03-14T19:36:34.952Z] + echo finch-usage.ipynb -[2024-03-14T19:36:34.952Z] + sed s/.ipynb$// -[2024-03-14T19:36:34.952Z] + filename=finch-usage -[2024-03-14T19:36:34.952Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-03-14T19:36:34.952Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-14T19:36:35.519Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-03-14T19:36:45.582Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb -[2024-03-14T19:36:45.582Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-14T19:36:45.582Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-14T19:36:45.582Z] + + sed s/.ipynb$// -[2024-03-14T19:36:45.582Z] echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-14T19:36:45.582Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-03-14T19:36:45.582Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-03-14T19:36:45.582Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-14T19:36:46.532Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-03-14T19:36:51.817Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-03-14T19:36:51.818Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-14T19:36:51.818Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-14T19:36:51.818Z] + + sed s/.ipynb$// -[2024-03-14T19:36:51.818Z] echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-14T19:36:51.818Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-03-14T19:36:51.818Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-03-14T19:36:51.818Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-14T19:36:53.726Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-03-14T19:37:15.675Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-03-14T19:37:15.675Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-14T19:37:15.675Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-14T19:37:15.675Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-14T19:37:15.675Z] + sed s/.ipynb$// -[2024-03-14T19:37:15.675Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-03-14T19:37:15.675Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-03-14T19:37:15.675Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-14T19:37:15.675Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-03-14T19:41:52.321Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). -[2024-03-14T19:41:52.321Z] Traceback (most recent call last): -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply -[2024-03-14T19:41:52.321Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async -[2024-03-14T19:41:52.321Z] result = await obj -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg -[2024-03-14T19:41:52.321Z] raise Empty -[2024-03-14T19:41:52.321Z] _queue.Empty -[2024-03-14T19:41:52.321Z] -[2024-03-14T19:41:52.321Z] During handling of the above exception, another exception occurred: -[2024-03-14T19:41:52.321Z] -[2024-03-14T19:41:52.321Z] Traceback (most recent call last): -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-03-14T19:41:52.321Z] sys.exit(main()) -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance -[2024-03-14T19:41:52.321Z] super().launch_instance(argv=argv, **kwargs) -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance -[2024-03-14T19:41:52.321Z] app.start() -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start -[2024-03-14T19:41:52.321Z] self.convert_notebooks() -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks -[2024-03-14T19:41:52.321Z] self.convert_single_notebook(notebook_filename) -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook -[2024-03-14T19:41:52.321Z] output, resources = self.export_single_notebook( -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook -[2024-03-14T19:41:52.321Z] output, resources = self.exporter.from_filename( -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-03-14T19:41:52.321Z] return self.from_file(f, resources=resources, **kw) -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-03-14T19:41:52.321Z] return self.from_notebook_node( -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-03-14T19:41:52.321Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-03-14T19:41:52.321Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess -[2024-03-14T19:41:52.321Z] nbc, resc = preprocessor(nbc, resc) -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-03-14T19:41:52.321Z] return self.preprocess(nb, resources) -[2024-03-14T19:41:52.321Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess -[2024-03-14T19:41:52.321Z] self.preprocess_cell(cell, resources, index) -[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell -[2024-03-14T19:41:52.322Z] cell = self.execute_cell(cell, index, store_history=True) -[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped -[2024-03-14T19:41:52.322Z] return loop.run_until_complete(inner) -[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-03-14T19:41:52.322Z] return future.result() -[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell -[2024-03-14T19:41:52.322Z] exec_reply = await self.task_poll_for_reply -[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply -[2024-03-14T19:41:52.322Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) -[2024-03-14T19:41:52.322Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout -[2024-03-14T19:41:52.322Z] raise CellTimeoutError.error_from_timeout_and_cell( -[2024-03-14T19:41:52.322Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. -[2024-03-14T19:41:52.322Z] The message was: Cell execution timed out. -[2024-03-14T19:41:52.322Z] Here is a preview of the cell contents: -[2024-03-14T19:41:52.322Z] ------------------- -[2024-03-14T19:41:52.322Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] -[2024-03-14T19:41:52.322Z] ... -[2024-03-14T19:41:52.322Z] [' print("finished")', ' ', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] -[2024-03-14T19:41:52.322Z] ------------------- -[2024-03-14T19:41:52.322Z] -[2024-03-14T19:41:52.322Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-14T19:41:52.322Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-14T19:41:52.322Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-14T19:41:52.322Z] + sed s/.ipynb$// -[2024-03-14T19:41:52.322Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-03-14T19:41:52.322Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-03-14T19:41:52.322Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-14T19:41:52.322Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-03-14T19:42:04.531Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-03-14T19:42:04.531Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-14T19:42:04.531Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-14T19:42:04.531Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-14T19:42:04.531Z] + sed s/.ipynb$// -[2024-03-14T19:42:04.531Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-03-14T19:42:04.531Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-03-14T19:42:04.531Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-14T19:42:04.791Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-03-14T19:43:12.486Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-03-14T19:43:12.486Z] + basename notebooks/hummingbird.ipynb -[2024-03-14T19:43:12.486Z] + filename=hummingbird.ipynb -[2024-03-14T19:43:12.486Z] + echo hummingbird.ipynb -[2024-03-14T19:43:12.486Z] + sed s/.ipynb$// -[2024-03-14T19:43:12.486Z] + filename=hummingbird -[2024-03-14T19:43:12.487Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-03-14T19:43:12.487Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-03-14T19:43:12.487Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-03-14T19:43:12.487Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb -[2024-03-14T19:43:12.487Z] + basename notebooks/stress-tests.ipynb -[2024-03-14T19:43:12.487Z] + filename=stress-tests.ipynb -[2024-03-14T19:43:12.487Z] + echo stress-tests.ipynb -[2024-03-14T19:43:12.487Z] + sed s/.ipynb$// -[2024-03-14T19:43:12.487Z] + filename=stress-tests -[2024-03-14T19:43:12.487Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-03-14T19:43:12.487Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-03-14T19:43:12.746Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-03-14T19:45:19.290Z] [NbConvertApp] Writing 428650 bytes to buildout/stress-tests.output.ipynb -[2024-03-14T19:45:19.290Z] + exit 1 -[2024-03-14T19:45:19.290Z] + EXIT_CODE=1 -[2024-03-14T19:45:19.291Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-14T19:45:19.291Z] + mkdir -p buildout/env-dump -[2024-03-14T19:45:19.291Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-14T19:45:19.291Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-14T19:45:19.291Z] + conda env export -n birdy -[2024-03-14T19:45:31.514Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-14T19:45:31.514Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-14T19:45:31.514Z] + conda list -n birdy --explicit -[2024-03-14T19:45:41.479Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-14T19:45:41.479Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-14T19:45:41.479Z] + pip freeze -[2024-03-14T19:45:41.743Z] + exit 1 +[2024-03-16T18:04:20.263Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-16T18:04:20.263Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-16T18:04:20.263Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-03-16T18:04:20.263Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-16T18:04:20.263Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-16T18:04:20.263Z] FINCH_BRANCH has been set to 'master' +[2024-03-16T18:04:20.263Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-16T18:04:20.263Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-16T18:04:20.263Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-03-16T18:04:20.263Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-16T18:04:20.263Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-16T18:04:20.263Z] RAVEN_BRANCH has been set to 'main' +[2024-03-16T18:04:20.263Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-16T18:04:20.263Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-16T18:04:20.263Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-16T18:04:20.263Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-16T18:04:20.263Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-16T18:04:20.263Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-16T18:04:20.263Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-16T18:04:20.263Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-16T18:04:20.263Z] + git clean -fdx +[2024-03-16T18:04:20.263Z] Removing .pytest_cache/ +[2024-03-16T18:04:20.263Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha/ +[2024-03-16T18:04:20.263Z] Removing RavenPy-master/ +[2024-03-16T18:04:20.263Z] Removing __pycache__/ +[2024-03-16T18:04:20.263Z] Removing buildout/ +[2024-03-16T18:04:20.263Z] Removing esgf-compute-api-devel/ +[2024-03-16T18:04:20.263Z] Removing finch-master/ +[2024-03-16T18:04:20.263Z] Removing pavics-sdi-fix_nbs_jupyter_alpha/ +[2024-03-16T18:04:20.263Z] Removing raven-main/ +[2024-03-16T18:04:20.263Z] + ./downloadrepos +[2024-03-16T18:04:20.263Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-16T18:04:20.263Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-03-16T18:04:20.263Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-16T18:04:20.263Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-16T18:04:20.263Z] FINCH_BRANCH has been set to 'master' +[2024-03-16T18:04:20.263Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-16T18:04:20.263Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-16T18:04:20.264Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-03-16T18:04:20.264Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-16T18:04:20.264Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-16T18:04:20.264Z] RAVEN_BRANCH has been set to 'main' +[2024-03-16T18:04:20.264Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-16T18:04:20.264Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-16T18:04:20.264Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-16T18:04:20.264Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-16T18:04:20.264Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-16T18:04:20.264Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-16T18:04:20.264Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-16T18:04:20.264Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-16T18:04:20.264Z] + rm -rf pavics-sdi-* +[2024-03-16T18:04:20.264Z] + ls +[2024-03-16T18:04:20.264Z] + grep pavics-sdi +[2024-03-16T18:04:20.520Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha +[2024-03-16T18:04:20.520Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-16T18:04:20.520Z] + shift +[2024-03-16T18:04:20.520Z] + branch=fix_nbs_jupyter_alpha +[2024-03-16T18:04:20.520Z] + shift +[2024-03-16T18:04:20.520Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-03-16T18:04:20.520Z] + tar xz +[2024-03-16T18:05:41.919Z] + ls +[2024-03-16T18:05:41.919Z] + grep pavics-sdi +[2024-03-16T18:05:41.919Z] pavics-sdi-fix_nbs_jupyter_alpha +[2024-03-16T18:05:41.919Z] + set +x +[2024-03-16T18:05:41.919Z] + rm -rf finch-* +[2024-03-16T18:05:41.919Z] + ls +[2024-03-16T18:05:41.919Z] + grep finch +[2024-03-16T18:05:41.920Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-16T18:05:41.920Z] + github_repo=https://github.com/bird-house/finch +[2024-03-16T18:05:41.920Z] + shift +[2024-03-16T18:05:41.920Z] + branch=master +[2024-03-16T18:05:41.920Z] + shift +[2024-03-16T18:05:41.920Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-03-16T18:05:41.920Z] + tar xz +[2024-03-16T18:05:47.185Z] + ls +[2024-03-16T18:05:47.186Z] + grep finch +[2024-03-16T18:05:47.186Z] finch-master +[2024-03-16T18:05:47.186Z] + set +x +[2024-03-16T18:05:47.186Z] + rm -rf PAVICS-landing-* +[2024-03-16T18:05:47.186Z] + ls +[2024-03-16T18:05:47.186Z] + grep PAVICS-landing +[2024-03-16T18:05:47.186Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha +[2024-03-16T18:05:47.186Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-16T18:05:47.186Z] + shift +[2024-03-16T18:05:47.186Z] + branch=fix_nbs_jupyter_alpha +[2024-03-16T18:05:47.186Z] + shift +[2024-03-16T18:05:47.186Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-03-16T18:05:47.186Z] + tar xz +[2024-03-16T18:12:08.872Z] + grep PAVICS-landing +[2024-03-16T18:12:08.872Z] + ls +[2024-03-16T18:12:08.872Z] PAVICS-landing-fix_nbs_jupyter_alpha +[2024-03-16T18:12:08.872Z] + set +x +[2024-03-16T18:12:08.872Z] + rm -rf raven-* +[2024-03-16T18:12:08.872Z] + ls +[2024-03-16T18:12:08.872Z] + grep raven +[2024-03-16T18:12:08.872Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-16T18:12:08.872Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-16T18:12:08.872Z] + shift +[2024-03-16T18:12:08.872Z] + branch=main +[2024-03-16T18:12:08.872Z] + shift +[2024-03-16T18:12:08.872Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-16T18:12:08.872Z] + tar xz +[2024-03-16T18:12:13.058Z] + + ls +[2024-03-16T18:12:13.058Z] grep raven +[2024-03-16T18:12:13.058Z] raven-main +[2024-03-16T18:12:13.058Z] + set +x +[2024-03-16T18:12:13.058Z] + rm -rf RavenPy-* +[2024-03-16T18:12:13.058Z] + ls +[2024-03-16T18:12:13.058Z] + grep RavenPy +[2024-03-16T18:12:13.058Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-16T18:12:13.058Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-16T18:12:13.058Z] + shift +[2024-03-16T18:12:13.058Z] + branch=master +[2024-03-16T18:12:13.058Z] + shift +[2024-03-16T18:12:13.058Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-16T18:12:13.058Z] + tar xz +[2024-03-16T18:12:51.797Z] + grep RavenPy +[2024-03-16T18:12:51.797Z] + ls +[2024-03-16T18:12:51.797Z] RavenPy-master +[2024-03-16T18:12:51.797Z] + set +x +[2024-03-16T18:12:51.797Z] + rm -rf esgf-compute-api-* +[2024-03-16T18:12:51.797Z] + ls +[2024-03-16T18:12:51.797Z] + grep esgf-compute-api +[2024-03-16T18:12:51.797Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-16T18:12:51.797Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-16T18:12:51.797Z] + shift +[2024-03-16T18:12:51.797Z] + branch=devel +[2024-03-16T18:12:51.797Z] + shift +[2024-03-16T18:12:51.797Z] + wget+ --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-03-16T18:12:51.797Z] tar xz +[2024-03-16T18:12:51.797Z] + grep esgf-compute-api +[2024-03-16T18:12:51.797Z] + ls +[2024-03-16T18:12:51.797Z] esgf-compute-api-devel +[2024-03-16T18:12:51.797Z] + set +x +[2024-03-16T18:12:51.797Z] + echo fix_nbs_jupyter_alpha +[2024-03-16T18:12:51.797Z] + sed s@/@-@g +[2024-03-16T18:12:51.797Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha +[2024-03-16T18:12:51.797Z] + echo Ouranosinc/pavics-sdi +[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g +[2024-03-16T18:12:51.797Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-16T18:12:51.797Z] + echo master +[2024-03-16T18:12:51.797Z] + sed s@/@-@g +[2024-03-16T18:12:51.797Z] + FINCH_BRANCH=master +[2024-03-16T18:12:51.797Z] + echo bird-house/finch +[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g +[2024-03-16T18:12:51.797Z] + FINCH_REPO_NAME=finch +[2024-03-16T18:12:51.797Z] + sed s@/@-@g +[2024-03-16T18:12:51.797Z] + echo fix_nbs_jupyter_alpha +[2024-03-16T18:12:51.797Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha +[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g +[2024-03-16T18:12:51.797Z] + echo Ouranosinc/PAVICS-landing +[2024-03-16T18:12:51.797Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-16T18:12:51.797Z] + sed s@/@-@g+ +[2024-03-16T18:12:51.797Z] echo main +[2024-03-16T18:12:51.797Z] + RAVEN_BRANCH=main +[2024-03-16T18:12:51.797Z] + + sed s@^.*/@@g +[2024-03-16T18:12:51.797Z] echo Ouranosinc/raven +[2024-03-16T18:12:51.797Z] + RAVEN_REPO_NAME=raven +[2024-03-16T18:12:51.797Z] + + sed s@/@-@g +[2024-03-16T18:12:51.797Z] echo master +[2024-03-16T18:12:51.797Z] + RAVENPY_BRANCH=master +[2024-03-16T18:12:51.797Z] + echo CSHS-CWRA/RavenPy +[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g +[2024-03-16T18:12:51.797Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-16T18:12:51.797Z] + echo devel +[2024-03-16T18:12:51.797Z] + sed s@/@-@g +[2024-03-16T18:12:51.797Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-16T18:12:51.797Z] + echo ESGF/esgf-compute-api +[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g +[2024-03-16T18:12:51.797Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-16T18:12:51.797Z] + echo pavics-sdi-fix_nbs_jupyter_alpha +[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:12:51.797Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha +[2024-03-16T18:12:51.797Z] + echo finch-master +[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:12:51.797Z] + FINCH_DIR=finch-master +[2024-03-16T18:12:51.797Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha +[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:12:51.797Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha +[2024-03-16T18:12:51.797Z] + echo raven-main +[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:12:51.797Z] + RAVEN_DIR=raven-main +[2024-03-16T18:12:51.797Z] + echo RavenPy-master +[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:12:51.797Z] + RAVENPY_DIR=RavenPy-master +[2024-03-16T18:12:51.797Z] + echo esgf-compute-api-devel +[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:12:51.798Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-16T18:12:51.798Z] + echo true +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + VERIFY_SSL=true +[2024-03-16T18:12:51.798Z] + [ xtrue = xfalse ] +[2024-03-16T18:12:51.798Z] + rm -v finch-master/setup.cfg +[2024-03-16T18:12:51.798Z] removed 'finch-master/setup.cfg' +[2024-03-16T18:12:51.798Z] + rm -v raven-main/setup.cfg +[2024-03-16T18:12:51.798Z] removed 'raven-main/setup.cfg' +[2024-03-16T18:12:51.798Z] + rm -v raven-main/pyproject.toml +[2024-03-16T18:12:51.798Z] removed 'raven-main/pyproject.toml' +[2024-03-16T18:12:51.798Z] + rm -v RavenPy-master/setup.cfg +[2024-03-16T18:12:51.798Z] removed 'RavenPy-master/setup.cfg' +[2024-03-16T18:12:51.798Z] + rm -v RavenPy-master/tox.ini +[2024-03-16T18:12:51.798Z] removed 'RavenPy-master/tox.ini' +[2024-03-16T18:12:51.798Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-16T18:12:51.798Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-16T18:12:51.798Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-16T18:12:51.798Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-16T18:12:51.798Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-16T18:12:51.798Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-16T18:12:51.798Z] + echo false +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + TEST_MAGPIE_AUTH=false +[2024-03-16T18:12:51.798Z] + echo true +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + TEST_PAVICS_SDI_REPO=true +[2024-03-16T18:12:51.798Z] + echo false +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-16T18:12:51.798Z] + echo true +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + TEST_FINCH_REPO=true +[2024-03-16T18:12:51.798Z] + echo true +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + TEST_PAVICS_LANDING_REPO=true +[2024-03-16T18:12:51.798Z] + echo false +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + TEST_RAVEN_REPO=false +[2024-03-16T18:12:51.798Z] + echo false +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + TEST_RAVENPY_REPO=false +[2024-03-16T18:12:51.798Z] + echo false +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-16T18:12:51.798Z] + echo true +[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] +[2024-03-16T18:12:51.798Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-03-16T18:12:51.798Z] + NOTEBOOKS_TO_TEST= +[2024-03-16T18:12:51.798Z] + [ xfalse = xtrue ] +[2024-03-16T18:12:51.798Z] + [ xtrue = xtrue ] +[2024-03-16T18:12:51.798Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb +[2024-03-16T18:12:51.798Z] + [ xfalse = xtrue ] +[2024-03-16T18:12:51.798Z] + [ xtrue = xtrue ] +[2024-03-16T18:12:51.798Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-03-16T18:12:51.798Z] + [ xtrue = xtrue ] +[2024-03-16T18:12:51.798Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb +[2024-03-16T18:12:51.798Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-16T18:12:51.798Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-03-16T18:12:51.798Z] + PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-16T18:12:51.798Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-16T18:12:51.798Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-16T18:12:51.798Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-16T18:12:51.798Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators +[2024-03-16T18:12:51.798Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-16T18:12:51.798Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-16T18:12:51.798Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-03-16T18:12:51.798Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-16T18:12:51.801Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-03-16T18:12:51.801Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-03-16T18:12:51.801Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-03-16T18:12:51.801Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data' +[2024-03-16T18:12:51.801Z] + [ xfalse = xtrue ] +[2024-03-16T18:12:51.801Z] + [ xfalse = xtrue ] +[2024-03-16T18:12:51.801Z] + [ xfalse = xtrue ] +[2024-03-16T18:12:51.801Z] + [ xtrue = xtrue ] +[2024-03-16T18:12:51.801Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-16T18:12:51.801Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-16T18:12:51.801Z] + [ -n ] +[2024-03-16T18:12:51.801Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-16T18:12:51.801Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-16T18:12:51.801Z] Will run notebooks against pavics.ouranos.ca +[2024-03-16T18:12:51.801Z] + [ -z ] +[2024-03-16T18:12:51.801Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-03-16T18:12:51.801Z] + git diff +[2024-03-16T18:12:51.801Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-16T18:12:51.802Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-03-16T18:12:51.802Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-16T18:12:51.802Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-16T18:12:52.145Z] ============================= test session starts ============================== +[2024-03-16T18:12:52.145Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-03-16T18:12:52.145Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-03-16T18:12:52.145Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-03-16T18:12:52.145Z] collected 214 items +[2024-03-16T18:12:52.145Z] +[2024-03-16T18:12:54.056Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb . [ 0%] +[2024-03-16T18:13:15.449Z] ...... [ 3%] +[2024-03-16T18:13:16.837Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb . [ 3%] +[2024-03-16T18:13:23.244Z] ..... [ 6%] +[2024-03-16T18:13:23.812Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb . [ 6%] +[2024-03-16T18:13:56.803Z] FFFFFFF [ 9%] +[2024-03-16T18:14:10.286Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb .... [ 11%] +[2024-03-16T18:17:43.309Z] .F..F... [ 15%] +[2024-03-16T18:17:43.310Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 15%] +[2024-03-16T18:17:47.493Z] ............... [ 22%] +[2024-03-16T18:17:51.692Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 23%] +[2024-03-16T18:17:56.400Z] .... [ 25%] +[2024-03-16T18:17:58.319Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb .. [ 26%] +[2024-03-16T18:18:03.563Z] .... [ 28%] +[2024-03-16T18:18:11.698Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb . [ 28%] +[2024-03-16T18:18:18.916Z] ..... [ 30%] +[2024-03-16T18:19:58.670Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb ... [ 32%] +[2024-03-16T18:20:37.401Z] .... [ 34%] +[2024-03-16T18:20:37.401Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb . [ 34%] +[2024-03-16T18:20:40.789Z] .... [ 36%] +[2024-03-16T18:20:58.920Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb . [ 36%] +[2024-03-16T18:22:28.626Z] ...F.FF............F......F [ 49%] +[2024-03-16T18:22:29.195Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb . [ 50%] +[2024-03-16T18:22:31.374Z] ... [ 51%] +[2024-03-16T18:22:32.757Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb . [ 51%] +[2024-03-16T18:22:52.144Z] .............F.......... [ 63%] +[2024-03-16T18:22:55.424Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb . [ 63%] +[2024-03-16T18:22:59.870Z] ..... [ 65%] +[2024-03-16T18:23:09.667Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] +[2024-03-16T18:23:18.585Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 73%] +[2024-03-16T18:23:19.948Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 74%] +[2024-03-16T18:23:23.236Z] ...... [ 77%] +[2024-03-16T18:23:45.205Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb F [ 77%] +[2024-03-16T18:24:03.055Z] F.F.......... [ 83%] +[2024-03-16T18:24:11.142Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-03-16T18:24:50.086Z] .F..s [ 86%] +[2024-03-16T18:24:56.624Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 86%] +[2024-03-16T18:25:07.976Z] .F. [ 88%] +[2024-03-16T18:25:20.138Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 88%] +[2024-03-16T18:26:09.331Z] ...... [ 91%] +[2024-03-16T18:26:09.589Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-03-16T18:28:54.924Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] =================================== FAILURES =================================== +[2024-03-16T18:28:54.924Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 1 _ +[2024-03-16T18:28:54.924Z] Notebook cell execution failed +[2024-03-16T18:28:54.924Z] Cell 1: Cell execution caused an exception +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] Input: +[2024-03-16T18:28:54.924Z] wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") +[2024-03-16T18:28:54.924Z] print("Title: ", wms.identification.title) +[2024-03-16T18:28:54.924Z] print("Type: ", wms.identification.type) +[2024-03-16T18:28:54.924Z] print("Operations: ", [op.name for op in wms.operations]) +[2024-03-16T18:28:54.924Z] print("GetMap options: ", wms.getOperationByName("GetMap").formatOptions) +[2024-03-16T18:28:54.924Z] wms.contents.keys() +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] Traceback: +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] --------------------------------------------------------------------------- +[2024-03-16T18:28:54.924Z] TimeoutError Traceback (most recent call last) +[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:537, in HTTPConnectionPool._make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length) +[2024-03-16T18:28:54.924Z]  536 try: +[2024-03-16T18:28:54.924Z] --> 537 response = conn.getresponse() +[2024-03-16T18:28:54.924Z]  538 except (BaseSSLError, OSError) as e: +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connection.py:461, in HTTPConnection.getresponse(self) +[2024-03-16T18:28:54.924Z]  460 # Get the response from http.client.HTTPConnection +[2024-03-16T18:28:54.924Z] --> 461 httplib_response = super().getresponse() +[2024-03-16T18:28:54.924Z]  463 try: +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/http/client.py:1375, in HTTPConnection.getresponse(self) +[2024-03-16T18:28:54.924Z]  1374 try: +[2024-03-16T18:28:54.924Z] -> 1375 response.begin() +[2024-03-16T18:28:54.924Z]  1376 except ConnectionError: +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/http/client.py:318, in HTTPResponse.begin(self) +[2024-03-16T18:28:54.924Z]  317 while True: +[2024-03-16T18:28:54.924Z] --> 318 version, status, reason = self._read_status() +[2024-03-16T18:28:54.924Z]  319 if status != CONTINUE: +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/http/client.py:279, in HTTPResponse._read_status(self) +[2024-03-16T18:28:54.924Z]  278 def _read_status(self): +[2024-03-16T18:28:54.924Z] --> 279 line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") +[2024-03-16T18:28:54.924Z]  280 if len(line) > _MAXLINE: +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/socket.py:705, in SocketIO.readinto(self, b) +[2024-03-16T18:28:54.924Z]  704 try: +[2024-03-16T18:28:54.924Z] --> 705 return self._sock.recv_into(b) +[2024-03-16T18:28:54.924Z]  706 except timeout: +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/ssl.py:1307, in SSLSocket.recv_into(self, buffer, nbytes, flags) +[2024-03-16T18:28:54.924Z]  1304 raise ValueError( +[2024-03-16T18:28:54.924Z]  1305 "non-zero flags not allowed in calls to recv_into() on %s" % +[2024-03-16T18:28:54.924Z]  1306 self.__class__) +[2024-03-16T18:28:54.924Z] -> 1307 return self.read(nbytes, buffer) +[2024-03-16T18:28:54.924Z]  1308 else: +[2024-03-16T18:28:54.924Z] +[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/ssl.py:1163, in SSLSocket.read(self, len, buffer) +[2024-03-16T18:28:54.925Z]  1162 if buffer is not None: +[2024-03-16T18:28:54.925Z] -> 1163 return self._sslobj.read(len, buffer) +[2024-03-16T18:28:54.925Z]  1164 else: +[2024-03-16T18:28:54.925Z] +[2024-03-16T18:28:54.925Z] TimeoutError: The read operation timed out +[2024-03-16T18:28:54.925Z] +[2024-03-16T18:28:54.925Z] The above exception was the direct cause of the following exception: +[2024-03-16T18:28:54.925Z] +[2024-03-16T18:28:54.925Z] ReadTimeoutError Traceback (most recent call last) +[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/adapters.py:486, in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies) +[2024-03-16T18:28:54.925Z]  485 try: +[2024-03-16T18:28:54.925Z] --> 486 resp = conn.urlopen( +[2024-03-16T18:28:54.925Z]  487  method=request.method, +[2024-03-16T18:28:54.925Z]  488  url=url, +[2024-03-16T18:28:54.925Z]  489  body=request.body, +[2024-03-16T18:28:54.925Z]  490  headers=request.headers, +[2024-03-16T18:28:54.925Z]  491  redirect=False, +[2024-03-16T18:28:54.925Z]  492  assert_same_host=False, +[2024-03-16T18:28:54.925Z]  493  preload_content=False, +[2024-03-16T18:28:54.925Z]  494  decode_content=False, +[2024-03-16T18:28:54.925Z]  495  retries=self.max_retries, +[2024-03-16T18:28:54.925Z]  496  timeout=timeout, +[2024-03-16T18:28:54.925Z]  497  chunked=chunked, +[2024-03-16T18:28:54.925Z]  498  ) +[2024-03-16T18:28:54.925Z]  500 except (ProtocolError, OSError) as err: +[2024-03-16T18:28:54.925Z] +[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:845, in HTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw) +[2024-03-16T18:28:54.925Z]  843 new_e = ProtocolError("Connection aborted.", new_e) +[2024-03-16T18:28:54.925Z] --> 845 retries = retries.increment( +[2024-03-16T18:28:54.925Z]  846  method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] +[2024-03-16T18:28:54.925Z]  847 ) +[2024-03-16T18:28:54.925Z]  848 retries.sleep() +[2024-03-16T18:28:54.925Z] +[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/util/retry.py:470, in Retry.increment(self, method, url, response, error, _pool, _stacktrace) +[2024-03-16T18:28:54.925Z]  469 if read is False or method is None or not self._is_method_retryable(method): +[2024-03-16T18:28:54.925Z] --> 470 raise reraise(type(error), error, _stacktrace) +[2024-03-16T18:28:54.925Z]  471 elif read is not None: +[2024-03-16T18:28:54.925Z] +[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/util/util.py:39, in reraise(tp, value, tb) +[2024-03-16T18:28:54.925Z]  38 raise value.with_traceback(tb) +[2024-03-16T18:28:54.925Z] ---> 39 raise value +[2024-03-16T18:28:54.925Z]  40 finally: +[2024-03-16T18:28:54.925Z] +[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:791, in HTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw) +[2024-03-16T18:28:54.925Z]  790 # Make the request on the HTTPConnection object +[2024-03-16T18:28:54.925Z] --> 791 response = self._make_request( +[2024-03-16T18:28:54.925Z]  792  conn, +[2024-03-16T18:28:54.925Z]  793  method, +[2024-03-16T18:28:54.925Z]  794  url, +[2024-03-16T18:28:54.925Z]  795  timeout=timeout_obj, +[2024-03-16T18:28:54.925Z]  796  body=body, +[2024-03-16T18:28:54.925Z]  797  headers=headers, +[2024-03-16T18:28:54.925Z]  798  chunked=chunked, +[2024-03-16T18:28:54.925Z]  799  retries=retries, +[2024-03-16T18:28:54.925Z]  800  response_conn=response_conn, +[2024-03-16T18:28:54.925Z]  801  preload_content=preload_content, +[2024-03-16T18:28:54.925Z]  802  decode_content=decode_content, +[2024-03-16T18:28:54.925Z]  803  **response_kw, +[2024-03-16T18:28:54.925Z]  804 ) +[2024-03-16T18:28:54.925Z]  806 # Everything went great! +[2024-03-16T18:28:54.925Z] +[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:539, in HTTPConnectionPool._make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length) +[2024-03-16T18:28:54.925Z]  538 except (BaseSSLError, OSError) as e: +[2024-03-16T18:28:54.926Z] --> 539 self._raise_timeout(err=e, url=url, timeout_value=read_timeout) +[2024-03-16T18:28:54.926Z]  540 raise +[2024-03-16T18:28:54.926Z] +[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:371, in HTTPConnectionPool._raise_timeout(self, err, url, timeout_value) +[2024-03-16T18:28:54.926Z]  370 if isinstance(err, SocketTimeout): +[2024-03-16T18:28:54.926Z] --> 371 raise ReadTimeoutError( +[2024-03-16T18:28:54.926Z]  372 self, url, f"Read timed out. (read timeout={timeout_value})" +[2024-03-16T18:28:54.926Z]  373 ) from err +[2024-03-16T18:28:54.926Z]  375 # See the above comment about EAGAIN in Python 3. +[2024-03-16T18:28:54.926Z] +[2024-03-16T18:28:54.926Z] ReadTimeoutError: HTTPSConnectionPool(host='neo.gsfc.nasa.gov', port=443): Read timed out. (read timeout=30) +[2024-03-16T18:28:54.926Z] +[2024-03-16T18:28:54.926Z] During handling of the above exception, another exception occurred: +[2024-03-16T18:28:54.926Z] +[2024-03-16T18:28:54.926Z] ReadTimeout Traceback (most recent call last) +[2024-03-16T18:28:54.926Z] Cell In[1], line 1 +[2024-03-16T18:28:54.926Z] ----> 1 wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") +[2024-03-16T18:28:54.926Z]  2 print("Title: ", wms.identification.title) +[2024-03-16T18:28:54.926Z]  3 print("Type: ", wms.identification.type) +[2024-03-16T18:28:54.926Z] +[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/wms.py:50, in WebMapService(url, version, xml, username, password, parse_remote_metadata, timeout, headers, auth) +[2024-03-16T18:28:54.926Z]  47 clean_url = clean_ows_url(url) +[2024-03-16T18:28:54.926Z]  49 if version in ['1.1.1']: +[2024-03-16T18:28:54.926Z] ---> 50 return wms111.WebMapService_1_1_1( +[2024-03-16T18:28:54.926Z]  51  clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, +[2024-03-16T18:28:54.926Z]  52  timeout=timeout, headers=headers, auth=auth) +[2024-03-16T18:28:54.926Z]  53 elif version in ['1.3.0']: +[2024-03-16T18:28:54.926Z]  54 return wms130.WebMapService_1_3_0( +[2024-03-16T18:28:54.926Z]  55 clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, +[2024-03-16T18:28:54.926Z]  56 timeout=timeout, headers=headers, auth=auth) +[2024-03-16T18:28:54.926Z] +[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/wms111.py:75, in WebMapService_1_1_1.__init__(self, url, version, xml, username, password, parse_remote_metadata, headers, timeout, auth) +[2024-03-16T18:28:54.926Z]  73 self._capabilities = reader.readString(xml) +[2024-03-16T18:28:54.926Z]  74 else: # read from server +[2024-03-16T18:28:54.926Z] ---> 75 self._capabilities = reader.read(self.url, timeout=self.timeout) +[2024-03-16T18:28:54.926Z]  77 self.request = reader.request +[2024-03-16T18:28:54.926Z]  79 # avoid building capabilities metadata if the +[2024-03-16T18:28:54.926Z]  80 # response is a ServiceExceptionReport +[2024-03-16T18:28:54.926Z] +[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/common.py:65, in WMSCapabilitiesReader.read(self, service_url, timeout) +[2024-03-16T18:28:54.926Z]  63 # now split it up again to use the generic openURL function... +[2024-03-16T18:28:54.926Z]  64 spliturl = self.request.split('?') +[2024-03-16T18:28:54.926Z] ---> 65 u = openURL(spliturl[0], spliturl[1], method='Get', +[2024-03-16T18:28:54.926Z]  66  timeout=timeout, headers=self.headers, auth=self.auth) +[2024-03-16T18:28:54.926Z]  68 raw_text = strip_bom(u.read()) +[2024-03-16T18:28:54.926Z]  69 return etree.fromstring(raw_text) +[2024-03-16T18:28:54.926Z] +[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/util.py:208, in openURL(url_base, data, method, cookies, username, password, timeout, headers, verify, cert, auth) +[2024-03-16T18:28:54.926Z]  205 if cookies is not None: +[2024-03-16T18:28:54.926Z]  206 rkwargs['cookies'] = cookies +[2024-03-16T18:28:54.926Z] --> 208 req = requests.request(method.upper(), url_base, headers=headers, **rkwargs) +[2024-03-16T18:28:54.926Z]  210 if req.status_code in [400, 401]: +[2024-03-16T18:28:54.926Z]  211 raise ServiceException(req.text) +[2024-03-16T18:28:54.926Z] +[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/api.py:59, in request(method, url, **kwargs) +[2024-03-16T18:28:54.926Z]  55 # By using the 'with' statement we are sure the session is closed, thus we +[2024-03-16T18:28:54.927Z]  56 # avoid leaving sockets open which can trigger a ResourceWarning in some +[2024-03-16T18:28:54.927Z]  57 # cases, and look like a memory leak in others. +[2024-03-16T18:28:54.927Z]  58 with sessions.Session() as session: +[2024-03-16T18:28:54.927Z] ---> 59 return session.request(method=method, url=url, **kwargs) +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/sessions.py:589, in Session.request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json) +[2024-03-16T18:28:54.927Z]  584 send_kwargs = { +[2024-03-16T18:28:54.927Z]  585 "timeout": timeout, +[2024-03-16T18:28:54.927Z]  586 "allow_redirects": allow_redirects, +[2024-03-16T18:28:54.927Z]  587 } +[2024-03-16T18:28:54.927Z]  588 send_kwargs.update(settings) +[2024-03-16T18:28:54.927Z] --> 589 resp = self.send(prep, **send_kwargs) +[2024-03-16T18:28:54.927Z]  591 return resp +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/sessions.py:703, in Session.send(self, request, **kwargs) +[2024-03-16T18:28:54.927Z]  700 start = preferred_clock() +[2024-03-16T18:28:54.927Z]  702 # Send the request +[2024-03-16T18:28:54.927Z] --> 703 r = adapter.send(request, **kwargs) +[2024-03-16T18:28:54.927Z]  705 # Total elapsed time of the request (approximately) +[2024-03-16T18:28:54.927Z]  706 elapsed = preferred_clock() - start +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/adapters.py:532, in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies) +[2024-03-16T18:28:54.927Z]  530 raise SSLError(e, request=request) +[2024-03-16T18:28:54.927Z]  531 elif isinstance(e, ReadTimeoutError): +[2024-03-16T18:28:54.927Z] --> 532 raise ReadTimeout(e, request=request) +[2024-03-16T18:28:54.927Z]  533 elif isinstance(e, _InvalidHeader): +[2024-03-16T18:28:54.927Z]  534 raise InvalidHeader(e, request=request) +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] ReadTimeout: HTTPSConnectionPool(host='neo.gsfc.nasa.gov', port=443): Read timed out. (read timeout=30) +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 2 _ +[2024-03-16T18:28:54.927Z] Notebook cell execution failed +[2024-03-16T18:28:54.927Z] Cell 2: Cell execution caused an exception +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] Input: +[2024-03-16T18:28:54.927Z] for key in [ +[2024-03-16T18:28:54.927Z] "MOD14A1_M_FIRE", +[2024-03-16T18:28:54.927Z] "CERES_LWFLUX_M", +[2024-03-16T18:28:54.927Z] "ICESAT_ELEV_G", +[2024-03-16T18:28:54.927Z] "MODAL2_M_CLD_WP", +[2024-03-16T18:28:54.927Z] "MOD_143D_RR", +[2024-03-16T18:28:54.927Z] ]: +[2024-03-16T18:28:54.927Z] print(wms.contents[key].title) +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] Traceback: +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] --------------------------------------------------------------------------- +[2024-03-16T18:28:54.927Z] NameError Traceback (most recent call last) +[2024-03-16T18:28:54.927Z] Cell In[1], line 8 +[2024-03-16T18:28:54.927Z]  1 for key in [ +[2024-03-16T18:28:54.927Z]  2 "MOD14A1_M_FIRE", +[2024-03-16T18:28:54.927Z]  3 "CERES_LWFLUX_M", +[2024-03-16T18:28:54.927Z]  (...) +[2024-03-16T18:28:54.927Z]  6 "MOD_143D_RR", +[2024-03-16T18:28:54.927Z]  7 ]: +[2024-03-16T18:28:54.927Z] ----> 8 print(wms.contents[key].title) +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] NameError: name 'wms' is not defined +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 3 _ +[2024-03-16T18:28:54.927Z] Notebook cell execution failed +[2024-03-16T18:28:54.927Z] Cell 3: Cell execution caused an exception +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] Input: +[2024-03-16T18:28:54.927Z] # NBVAL_IGNORE_OUTPUT +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] from IPython.core.display import HTML +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] name = "MOD_143D_RR" +[2024-03-16T18:28:54.927Z] layer = wms.contents[name] +[2024-03-16T18:28:54.927Z] print("Abstract: ", layer.abstract) +[2024-03-16T18:28:54.927Z] print("BBox: ", layer.boundingBoxWGS84) +[2024-03-16T18:28:54.927Z] print("CRS: ", layer.crsOptions) +[2024-03-16T18:28:54.927Z] print("Styles: ", layer.styles) +[2024-03-16T18:28:54.927Z] print("Timestamps: ", layer.timepositions) +[2024-03-16T18:28:54.927Z] HTML(layer.parent.abstract) +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] Traceback: +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] --------------------------------------------------------------------------- +[2024-03-16T18:28:54.927Z] NameError Traceback (most recent call last) +[2024-03-16T18:28:54.927Z] Cell In[1], line 6 +[2024-03-16T18:28:54.927Z]  3 from IPython.core.display import HTML +[2024-03-16T18:28:54.927Z]  5 name = "MOD_143D_RR" +[2024-03-16T18:28:54.927Z] ----> 6 layer = wms.contents[name] +[2024-03-16T18:28:54.927Z]  7 print("Abstract: ", layer.abstract) +[2024-03-16T18:28:54.927Z]  8 print("BBox: ", layer.boundingBoxWGS84) +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] NameError: name 'wms' is not defined +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 4 _ +[2024-03-16T18:28:54.927Z] Notebook cell execution failed +[2024-03-16T18:28:54.927Z] Cell 4: Cell execution caused an exception +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] Input: +[2024-03-16T18:28:54.927Z] response = wms.getmap( +[2024-03-16T18:28:54.927Z] layers=[ +[2024-03-16T18:28:54.927Z] name, +[2024-03-16T18:28:54.927Z] ], +[2024-03-16T18:28:54.927Z] styles=["rgb"], +[2024-03-16T18:28:54.927Z] bbox=(-180, -90, 180, 90), # Left, bottom, right, top +[2024-03-16T18:28:54.927Z] format="image/png", +[2024-03-16T18:28:54.927Z] size=(600, 600), +[2024-03-16T18:28:54.927Z] srs="EPSG:4326", +[2024-03-16T18:28:54.927Z] time="2018-09-16", +[2024-03-16T18:28:54.927Z] transparent=True, +[2024-03-16T18:28:54.927Z] ) +[2024-03-16T18:28:54.927Z] response +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] Traceback: +[2024-03-16T18:28:54.927Z] +[2024-03-16T18:28:54.927Z] --------------------------------------------------------------------------- +[2024-03-16T18:28:54.927Z] NameError Traceback (most recent call last) +[2024-03-16T18:28:54.927Z] Cell In[1], line 1 +[2024-03-16T18:28:54.927Z] ----> 1 response = wms.getmap( +[2024-03-16T18:28:54.927Z]  2 layers=[ +[2024-03-16T18:28:54.927Z]  3 name, +[2024-03-16T18:28:54.927Z]  4 ], +[2024-03-16T18:28:54.927Z]  5 styles=["rgb"], +[2024-03-16T18:28:54.928Z]  6 bbox=(-180, -90, 180, 90), # Left, bottom, right, top +[2024-03-16T18:28:54.928Z]  7 format="image/png", +[2024-03-16T18:28:54.928Z]  8 size=(600, 600), +[2024-03-16T18:28:54.928Z]  9 srs="EPSG:4326", +[2024-03-16T18:28:54.928Z]  10 time="2018-09-16", +[2024-03-16T18:28:54.928Z]  11 transparent=True, +[2024-03-16T18:28:54.928Z]  12 ) +[2024-03-16T18:28:54.928Z]  13 response +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] NameError: name 'wms' is not defined +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 5 _ +[2024-03-16T18:28:54.928Z] Notebook cell execution failed +[2024-03-16T18:28:54.928Z] Cell 5: Cell execution caused an exception +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Input: +[2024-03-16T18:28:54.928Z] from IPython.display import Image +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Image(response.read()) +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Traceback: +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] --------------------------------------------------------------------------- +[2024-03-16T18:28:54.928Z] NameError Traceback (most recent call last) +[2024-03-16T18:28:54.928Z] Cell In[1], line 3 +[2024-03-16T18:28:54.928Z]  1 from IPython.display import Image +[2024-03-16T18:28:54.928Z] ----> 3 Image(response.read()) +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] NameError: name 'response' is not defined +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 6 _ +[2024-03-16T18:28:54.928Z] Notebook cell execution failed +[2024-03-16T18:28:54.928Z] Cell 6: Cell execution caused an exception +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Input: +[2024-03-16T18:28:54.928Z] import io +[2024-03-16T18:28:54.928Z] import warnings +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] import cartopy +[2024-03-16T18:28:54.928Z] import matplotlib.pyplot as plt +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] image = io.BytesIO(response.read()) +[2024-03-16T18:28:54.928Z] data = plt.imread(image) +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Traceback: +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] --------------------------------------------------------------------------- +[2024-03-16T18:28:54.928Z] NameError Traceback (most recent call last) +[2024-03-16T18:28:54.928Z] Cell In[1], line 7 +[2024-03-16T18:28:54.928Z]  4 import cartopy +[2024-03-16T18:28:54.928Z]  5 import matplotlib.pyplot as plt +[2024-03-16T18:28:54.928Z] ----> 7 image = io.BytesIO(response.read()) +[2024-03-16T18:28:54.928Z]  8 data = plt.imread(image) +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] NameError: name 'response' is not defined +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 7 _ +[2024-03-16T18:28:54.928Z] Notebook cell execution failed +[2024-03-16T18:28:54.928Z] Cell 7: Cell execution caused an exception +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Input: +[2024-03-16T18:28:54.928Z] warnings.filterwarnings("ignore", category=cartopy.io.DownloadWarning) +[2024-03-16T18:28:54.928Z] fig = plt.figure(figsize=(8, 6)) +[2024-03-16T18:28:54.928Z] ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) +[2024-03-16T18:28:54.928Z] ax.imshow( +[2024-03-16T18:28:54.928Z] data, +[2024-03-16T18:28:54.928Z] origin="upper", +[2024-03-16T18:28:54.928Z] extent=(-180, 180, -90, 90), +[2024-03-16T18:28:54.928Z] transform=cartopy.crs.PlateCarree(), +[2024-03-16T18:28:54.928Z] ) +[2024-03-16T18:28:54.928Z] ax.coastlines() +[2024-03-16T18:28:54.928Z] plt.show() +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Traceback: +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] --------------------------------------------------------------------------- +[2024-03-16T18:28:54.928Z] NameError Traceback (most recent call last) +[2024-03-16T18:28:54.928Z] Cell In[1], line 5 +[2024-03-16T18:28:54.928Z]  2 fig = plt.figure(figsize=(8, 6)) +[2024-03-16T18:28:54.928Z]  3 ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) +[2024-03-16T18:28:54.928Z]  4 ax.imshow( +[2024-03-16T18:28:54.928Z] ----> 5 data, +[2024-03-16T18:28:54.928Z]  6 origin="upper", +[2024-03-16T18:28:54.928Z]  7 extent=(-180, 180, -90, 90), +[2024-03-16T18:28:54.928Z]  8 transform=cartopy.crs.PlateCarree(), +[2024-03-16T18:28:54.928Z]  9 ) +[2024-03-16T18:28:54.928Z]  10 ax.coastlines() +[2024-03-16T18:28:54.928Z]  11 plt.show() +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] NameError: name 'data' is not defined +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 5 __ +[2024-03-16T18:28:54.928Z] Notebook cell execution failed +[2024-03-16T18:28:54.928Z] Cell 5: Cell outputs differ +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Input: +[2024-03-16T18:28:54.928Z] ds = xr.open_dataset( +[2024-03-16T18:28:54.928Z] url, chunks=dict(realization=1, time=365, rlat=50 * 3, rlon=50 * 3) +[2024-03-16T18:28:54.928Z] ) +[2024-03-16T18:28:54.928Z] xclim.set_options(check_missing="pct", missing_options={"pct": {"tolerance": 0.05}}) +[2024-03-16T18:28:54.928Z] sdii = xclim.atmos.daily_pr_intensity(pr=ds.pr.sel(time="2000")) +[2024-03-16T18:28:54.928Z] sdii +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Traceback: +[2024-03-16T18:28:54.928Z] Unexpected output fields from running code: {'stderr'} +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 8 __ +[2024-03-16T18:28:54.928Z] Notebook cell execution failed +[2024-03-16T18:28:54.928Z] Cell 8: Cell outputs differ +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Input: +[2024-03-16T18:28:54.928Z] # Subset over the Montreal gridpoint +[2024-03-16T18:28:54.928Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) +[2024-03-16T18:28:54.928Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) +[2024-03-16T18:28:54.928Z] print("Input dataset for Montreal :") +[2024-03-16T18:28:54.928Z] display(pt) +[2024-03-16T18:28:54.928Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") +[2024-03-16T18:28:54.928Z] print("Maximim 1-day precipitation `lazy` output ..") +[2024-03-16T18:28:54.928Z] out +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Traceback: +[2024-03-16T18:28:54.928Z] Unexpected output fields from running code: {'stderr'} +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 4 _ +[2024-03-16T18:28:54.928Z] Notebook cell execution failed +[2024-03-16T18:28:54.928Z] Cell 4: Cell outputs differ +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Input: +[2024-03-16T18:28:54.928Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) +[2024-03-16T18:28:54.928Z] plt.title("Target regular grid"); +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Traceback: +[2024-03-16T18:28:54.928Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-16T18:28:54.928Z]
+[2024-03-16T18:28:54.928Z] ============ disagrees with newly computed (test) output: +[2024-03-16T18:28:54.928Z] Text(0.5, 1.0, 'Target regular grid') +[2024-03-16T18:28:54.928Z]
+[2024-03-16T18:28:54.928Z] >>>>>>>>>>>> +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 6 _ +[2024-03-16T18:28:54.928Z] Notebook cell execution failed +[2024-03-16T18:28:54.928Z] Cell 6: Cell outputs differ +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Input: +[2024-03-16T18:28:54.928Z] reg_bil = xe.Regridder(ds_in, ds_tgt, "bilinear") +[2024-03-16T18:28:54.928Z] reg_bil # Show information about the regridding +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Traceback: +[2024-03-16T18:28:54.928Z] Missing output fields from running code: {'stderr'} +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 7 _ +[2024-03-16T18:28:54.928Z] Notebook cell execution failed +[2024-03-16T18:28:54.928Z] Cell 7: Cell outputs differ +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] Input: +[2024-03-16T18:28:54.928Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. +[2024-03-16T18:28:54.928Z] warnings.filterwarnings("ignore", category=FutureWarning) +[2024-03-16T18:28:54.928Z] +[2024-03-16T18:28:54.928Z] # Apply the regridding weights to the input sea ice concentration data +[2024-03-16T18:28:54.928Z] sic_bil = reg_bil(ds_in.siconc) +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] # Plot the results +[2024-03-16T18:28:54.929Z] sic_bil.isel(time=0).plot(cmap=cmap) +[2024-03-16T18:28:54.929Z] plt.title("Regridded sic data (Jan 2020)"); +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Traceback: +[2024-03-16T18:28:54.929Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-16T18:28:54.929Z]
+[2024-03-16T18:28:54.929Z] ============ disagrees with newly computed (test) output: +[2024-03-16T18:28:54.929Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') +[2024-03-16T18:28:54.929Z]
+[2024-03-16T18:28:54.929Z] >>>>>>>>>>>> +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 20 _ +[2024-03-16T18:28:54.929Z] Notebook cell execution failed +[2024-03-16T18:28:54.929Z] Cell 20: Cell outputs differ +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Input: +[2024-03-16T18:28:54.929Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") +[2024-03-16T18:28:54.929Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] fig, ax = plt.subplots(figsize=(6, 4)) +[2024-03-16T18:28:54.929Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) +[2024-03-16T18:28:54.929Z] ax.set_xlim(210, 320) +[2024-03-16T18:28:54.929Z] ax.set_ylim(38, 86) +[2024-03-16T18:28:54.929Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") +[2024-03-16T18:28:54.929Z] ax.annotate( +[2024-03-16T18:28:54.929Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", +[2024-03-16T18:28:54.929Z] (280, 40), +[2024-03-16T18:28:54.929Z] xytext=(1.3, 0.3), +[2024-03-16T18:28:54.929Z] xycoords="data", +[2024-03-16T18:28:54.929Z] textcoords="axes fraction", +[2024-03-16T18:28:54.929Z] fontsize="x-large", +[2024-03-16T18:28:54.929Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), +[2024-03-16T18:28:54.929Z] ); +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Traceback: +[2024-03-16T18:28:54.929Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-16T18:28:54.929Z]
+[2024-03-16T18:28:54.929Z] ============ disagrees with newly computed (test) output: +[2024-03-16T18:28:54.929Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') +[2024-03-16T18:28:54.929Z]
+[2024-03-16T18:28:54.929Z] >>>>>>>>>>>> +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 27 _ +[2024-03-16T18:28:54.929Z] Notebook cell execution failed +[2024-03-16T18:28:54.929Z] Cell 27: Cell outputs differ +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Input: +[2024-03-16T18:28:54.929Z] # Now we can plot easily the results as a choropleth map! +[2024-03-16T18:28:54.929Z] ax = shapes_data.plot( +[2024-03-16T18:28:54.929Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} +[2024-03-16T18:28:54.929Z] ) +[2024-03-16T18:28:54.929Z] ax.set_ylabel("Latitude") +[2024-03-16T18:28:54.929Z] ax.set_xlabel("Longitude"); +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Traceback: +[2024-03-16T18:28:54.929Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-16T18:28:54.929Z]
+[2024-03-16T18:28:54.929Z] ============ disagrees with newly computed (test) output: +[2024-03-16T18:28:54.929Z] Text(0.5, 91.20243008191655, 'Longitude') +[2024-03-16T18:28:54.929Z]
+[2024-03-16T18:28:54.929Z] >>>>>>>>>>>> +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb::Cell 14 _ +[2024-03-16T18:28:54.929Z] Notebook cell execution failed +[2024-03-16T18:28:54.929Z] Cell 14: Cell outputs differ +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Input: +[2024-03-16T18:28:54.929Z] lon0 = float(bounds.minx) +[2024-03-16T18:28:54.929Z] lon1 = float(bounds.maxx) +[2024-03-16T18:28:54.929Z] lat0 = float(bounds.miny) +[2024-03-16T18:28:54.929Z] lat1 = float(bounds.maxy) +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] result_tasmin = finch.subset_bbox( +[2024-03-16T18:28:54.929Z] resource=data, +[2024-03-16T18:28:54.929Z] variable="tasmin", +[2024-03-16T18:28:54.929Z] lon0=lon0, +[2024-03-16T18:28:54.929Z] lon1=lon1, +[2024-03-16T18:28:54.929Z] lat0=lat0, +[2024-03-16T18:28:54.929Z] lat1=lat1, +[2024-03-16T18:28:54.929Z] start_date="1958-01-01", +[2024-03-16T18:28:54.929Z] end_date="1958-12-31", +[2024-03-16T18:28:54.929Z] ) +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Traceback: +[2024-03-16T18:28:54.929Z]  mismatch 'stderr' +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] assert reference_output == test_output failed: +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] '/tmp/ipykern...ounds.maxy)\n' == '/tmp/ipykern...ounds.maxy)\n' +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Skipping 179 identical trailing characters in diff, use -v to show +[2024-03-16T18:28:54.929Z] - /tmp/ipykernel_1505/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-16T18:28:54.929Z] ? - ^ +[2024-03-16T18:28:54.929Z] + /tmp/ipykernel_1086/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-16T18:28:54.929Z] ? ^^ +[2024-03-16T18:28:54.929Z] lon0 = float(bounds.minx) +[2024-03-16T18:28:54.929Z] - /tmp/ipykernel_1505/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-16T18:28:54.929Z] ? - ^ +[2024-03-16T18:28:54.929Z] + /tmp/ipykernel_1086/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-16T18:28:54.929Z] ? ^^ +[2024-03-16T18:28:54.929Z] lon1 = float(bounds.maxx) +[2024-03-16T18:28:54.929Z] - /tmp/ipykernel_1505/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-16T18:28:54.929Z] ? - ^ +[2024-03-16T18:28:54.929Z] + /tmp/ipykernel_1086/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +[2024-03-16T18:28:54.929Z] ? ^^ +[2024-03-16T18:28:54.929Z] lat0 = float(bounds.miny) +[2024-03-16T18:28:54.929Z] - /tmp/ipykernel_1505/85701396 +[2024-03-16T18:28:54.929Z] ? - ^ +[2024-03-16T18:28:54.929Z] + /tmp/ipykernel_1086/85701396 +[2024-03-16T18:28:54.929Z] ? ^^ +[2024-03-16T18:28:54.929Z]  +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] _ PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 _ +[2024-03-16T18:28:54.929Z] Notebook cell execution failed +[2024-03-16T18:28:54.929Z] Cell 0: Cell outputs differ +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Input: +[2024-03-16T18:28:54.929Z] import warnings +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] import xarray as xr +[2024-03-16T18:28:54.929Z] from IPython.display import display # Fancy representation of xarray objects +[2024-03-16T18:28:54.929Z] from siphon.catalog import TDSCatalog +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] warnings.simplefilter("ignore") +[2024-03-16T18:28:54.929Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] # Create Catalog +[2024-03-16T18:28:54.929Z] cat = TDSCatalog(url) +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] # DAP link for this demo +[2024-03-16T18:28:54.929Z] ds_url = cat.datasets[0].access_urls["OPENDAP"] +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] # xarray.Dataset +[2024-03-16T18:28:54.929Z] ds = xr.open_dataset(ds_url, chunks=dict(time=256 * 2, lon=32, lat=32)) +[2024-03-16T18:28:54.929Z] display(ds) +[2024-03-16T18:28:54.929Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] Traceback: +[2024-03-16T18:28:54.929Z]  mismatch 'text/plain' +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] assert reference_output == test_output failed: +[2024-03-16T18:28:54.929Z] +[2024-03-16T18:28:54.929Z] ' 20 plt.title(pos_f.description.split(".")[0]) +[2024-03-16T18:28:54.931Z]  22 display() +[2024-03-16T18:28:54.931Z] +[2024-03-16T18:28:54.931Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-03-16T18:28:54.931Z]  275 with suppress(KeyError): +[2024-03-16T18:28:54.931Z]  276 return source[name] +[2024-03-16T18:28:54.931Z] --> 277 raise AttributeError( +[2024-03-16T18:28:54.931Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-03-16T18:28:54.931Z]  279 ) +[2024-03-16T18:28:54.931Z] +[2024-03-16T18:28:54.931Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-03-16T18:28:54.931Z] +[2024-03-16T18:28:54.931Z] =========================== short test summary info ============================ +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 1 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 2 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 3 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 4 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 5 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 6 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 7 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 5 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 8 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 4 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 6 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 7 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 20 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 27 +[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb::Cell 14 +[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 +[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 1 +[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 3 +[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 +[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-03-16T18:28:54.931Z] ============ 20 failed, 193 passed, 1 skipped in 959.44s (0:15:59) ============= +[2024-03-16T18:28:54.931Z] + EXIT_CODE=1 +[2024-03-16T18:28:54.931Z] + echo true +[2024-03-16T18:28:54.931Z] + tr [:upper:] [:lower:] +[2024-03-16T18:28:54.931Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-16T18:28:54.931Z] + [ xtrue = xtrue ] +[2024-03-16T18:28:54.931Z] + mkdir -p buildout +[2024-03-16T18:28:54.931Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-03-16T18:28:54.931Z] + filename=WCS_example.ipynb +[2024-03-16T18:28:54.931Z] + echo WCS_example.ipynb +[2024-03-16T18:28:54.931Z] + sed s/.ipynb$// +[2024-03-16T18:28:54.931Z] + filename=WCS_example +[2024-03-16T18:28:54.931Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-03-16T18:28:54.931Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-03-16T18:28:54.931Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-03-16T18:29:16.824Z] [NbConvertApp] Writing 144574 bytes to buildout/WCS_example.output.ipynb +[2024-03-16T18:29:17.082Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-03-16T18:29:17.082Z] + filename=WFS_example.ipynb +[2024-03-16T18:29:17.082Z] + echo WFS_example.ipynb +[2024-03-16T18:29:17.082Z] + sed s/.ipynb$// +[2024-03-16T18:29:17.082Z] + filename=WFS_example +[2024-03-16T18:29:17.082Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-03-16T18:29:17.082Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-03-16T18:29:18.969Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-03-16T18:29:28.917Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb +[2024-03-16T18:29:29.173Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-03-16T18:29:29.173Z] + filename=WMS_example.ipynb +[2024-03-16T18:29:29.173Z] + echo WMS_example.ipynb +[2024-03-16T18:29:29.173Z] + sed s/.ipynb$// +[2024-03-16T18:29:29.173Z] + filename=WMS_example +[2024-03-16T18:29:29.173Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-03-16T18:29:29.173Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-03-16T18:29:31.064Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-03-16T18:30:09.751Z] [NbConvertApp] Writing 73952 bytes to buildout/WMS_example.output.ipynb +[2024-03-16T18:30:09.751Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-03-16T18:30:09.751Z] + filename=climex.ipynb +[2024-03-16T18:30:09.751Z] + echo climex.ipynb +[2024-03-16T18:30:09.751Z] + sed s/.ipynb$// +[2024-03-16T18:30:09.751Z] + filename=climex +[2024-03-16T18:30:09.751Z] + [ -e buildout/climex.output.ipynb ] +[2024-03-16T18:30:09.751Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-03-16T18:30:09.751Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb to notebook +[2024-03-16T18:32:01.167Z] 2024-03-16 18:31:54,727 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. +[2024-03-16T18:32:01.167Z] Traceback (most recent call last): +[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read +[2024-03-16T18:32:01.167Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) +[2024-03-16T18:32:01.167Z] tornado.iostream.StreamClosedError: Stream is closed +[2024-03-16T18:32:01.167Z] +[2024-03-16T18:32:01.167Z] The above exception was the direct cause of the following exception: +[2024-03-16T18:32:01.167Z] +[2024-03-16T18:32:01.167Z] Traceback (most recent call last): +[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat +[2024-03-16T18:32:01.167Z] response = await retry_operation( +[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation +[2024-03-16T18:32:01.167Z] return await retry( +[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry +[2024-03-16T18:32:01.167Z] return await coro() +[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc +[2024-03-16T18:32:01.167Z] return await send_recv(comm=comm, op=key, **kwargs) +[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv +[2024-03-16T18:32:01.167Z] response = await comm.read(deserializers=deserializers) +[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read +[2024-03-16T18:32:01.167Z] convert_stream_closed_error(self, e) +[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error +[2024-03-16T18:32:01.167Z] raise CommClosedError(f"in {obj}: {exc}") from exc +[2024-03-16T18:32:01.167Z] distributed.comm.core.CommClosedError: in : Stream is closed +[2024-03-16T18:33:52.575Z] 2024-03-16 18:33:45,863 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. +[2024-03-16T18:33:52.575Z] Traceback (most recent call last): +[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read +[2024-03-16T18:33:52.575Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) +[2024-03-16T18:33:52.575Z] tornado.iostream.StreamClosedError: Stream is closed +[2024-03-16T18:33:52.575Z] +[2024-03-16T18:33:52.575Z] The above exception was the direct cause of the following exception: +[2024-03-16T18:33:52.575Z] +[2024-03-16T18:33:52.575Z] Traceback (most recent call last): +[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat +[2024-03-16T18:33:52.575Z] response = await retry_operation( +[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation +[2024-03-16T18:33:52.575Z] return await retry( +[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry +[2024-03-16T18:33:52.575Z] return await coro() +[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc +[2024-03-16T18:33:52.575Z] return await send_recv(comm=comm, op=key, **kwargs) +[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv +[2024-03-16T18:33:52.575Z] response = await comm.read(deserializers=deserializers) +[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read +[2024-03-16T18:33:52.575Z] convert_stream_closed_error(self, e) +[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error +[2024-03-16T18:33:52.575Z] raise CommClosedError(f"in {obj}: {exc}") from exc +[2024-03-16T18:33:52.575Z] distributed.comm.core.CommClosedError: in : Stream is closed +[2024-03-16T18:33:52.575Z] [NbConvertApp] Writing 1790801 bytes to buildout/climex.output.ipynb +[2024-03-16T18:33:52.575Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-16T18:33:52.575Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-03-16T18:33:52.575Z] + + echo eccc-geoapi-climate-stations.ipynbsed +[2024-03-16T18:33:52.575Z] s/.ipynb$// +[2024-03-16T18:33:52.575Z] + filename=eccc-geoapi-climate-stations +[2024-03-16T18:33:52.575Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-03-16T18:33:52.575Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-16T18:33:53.953Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-03-16T18:34:08.901Z] [NbConvertApp] Writing 279294 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-03-16T18:34:08.902Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-16T18:34:08.902Z] + filename=eccc-geoapi-xclim.ipynb +[2024-03-16T18:34:08.902Z] + sed s/.ipynb$// +[2024-03-16T18:34:08.902Z] + echo eccc-geoapi-xclim.ipynb +[2024-03-16T18:34:08.902Z] + filename=eccc-geoapi-xclim +[2024-03-16T18:34:08.902Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-03-16T18:34:08.902Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-16T18:34:09.467Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-03-16T18:34:21.673Z] [NbConvertApp] Writing 108292 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-03-16T18:34:21.673Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-03-16T18:34:21.673Z] + filename=esgf-dap.ipynb +[2024-03-16T18:34:21.673Z] + sed s/.ipynb$// +[2024-03-16T18:34:21.673Z] + echo esgf-dap.ipynb +[2024-03-16T18:34:21.673Z] + filename=esgf-dap +[2024-03-16T18:34:21.673Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-03-16T18:34:21.674Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-03-16T18:34:21.674Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-03-16T18:34:29.810Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb +[2024-03-16T18:34:29.810Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-03-16T18:34:29.810Z] + filename=forecasts.ipynb +[2024-03-16T18:34:29.810Z] + echo forecasts.ipynb +[2024-03-16T18:34:29.810Z] + sed s/.ipynb$// +[2024-03-16T18:34:29.810Z] + filename=forecasts +[2024-03-16T18:34:29.810Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-03-16T18:34:29.810Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-03-16T18:34:31.187Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb to notebook +[2024-03-16T18:34:49.279Z] [NbConvertApp] Writing 181135 bytes to buildout/forecasts.output.ipynb +[2024-03-16T18:34:49.279Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-16T18:34:49.279Z] + filename=jupyter_extensions.ipynb +[2024-03-16T18:34:49.279Z] + echo jupyter_extensions.ipynb +[2024-03-16T18:34:49.279Z] + sed s/.ipynb$// +[2024-03-16T18:34:49.279Z] + filename=jupyter_extensions +[2024-03-16T18:34:49.279Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-03-16T18:34:49.279Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-16T18:34:50.645Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-03-16T18:34:57.244Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb +[2024-03-16T18:34:57.245Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-03-16T18:34:57.245Z] + filename=opendap.ipynb +[2024-03-16T18:34:57.245Z] + echo opendap.ipynb +[2024-03-16T18:34:57.245Z] + sed s/.ipynb$// +[2024-03-16T18:34:57.245Z] + filename=opendap +[2024-03-16T18:34:57.245Z] + [ -e buildout/opendap.output.ipynb ] +[2024-03-16T18:34:57.245Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-03-16T18:34:58.607Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb to notebook +[2024-03-16T18:36:06.331Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb +[2024-03-16T18:36:06.331Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-16T18:36:06.331Z] + filename=pavics_thredds.ipynb +[2024-03-16T18:36:06.331Z] + sed s/.ipynb$// +[2024-03-16T18:36:06.331Z] + echo pavics_thredds.ipynb +[2024-03-16T18:36:06.331Z] + filename=pavics_thredds +[2024-03-16T18:36:06.331Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-03-16T18:36:06.331Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-16T18:36:06.331Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-03-16T18:36:10.524Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-16T18:36:10.524Z] context: Access to service is forbidden. +[2024-03-16T18:36:10.524Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-16T18:36:10.524Z] context: Access to service is forbidden. +[2024-03-16T18:36:13.092Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb +[2024-03-16T18:36:13.374Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-03-16T18:36:13.374Z] + filename=regridding.ipynb +[2024-03-16T18:36:13.374Z] + echo regridding.ipynb +[2024-03-16T18:36:13.374Z] + sed s/.ipynb$// +[2024-03-16T18:36:13.374Z] + filename=regridding +[2024-03-16T18:36:13.374Z] + [ -e buildout/regridding.output.ipynb ] +[2024-03-16T18:36:13.374Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-03-16T18:36:15.268Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb to notebook +[2024-03-16T18:38:06.740Z] [NbConvertApp] Writing 1239788 bytes to buildout/regridding.output.ipynb +[2024-03-16T18:38:06.740Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-03-16T18:38:06.740Z] + filename=rendering.ipynb +[2024-03-16T18:38:06.740Z] + echo rendering.ipynb +[2024-03-16T18:38:06.740Z] + sed s/.ipynb$// +[2024-03-16T18:38:06.740Z] + filename=rendering +[2024-03-16T18:38:06.740Z] + [ -e buildout/rendering.output.ipynb ] +[2024-03-16T18:38:06.740Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-03-16T18:38:06.740Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb to notebook +[2024-03-16T18:38:06.740Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb +[2024-03-16T18:38:06.740Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-03-16T18:38:06.740Z] + filename=subset-user-input.ipynb +[2024-03-16T18:38:06.740Z] + echo subset-user-input.ipynb +[2024-03-16T18:38:06.740Z] + sed s/.ipynb$// +[2024-03-16T18:38:06.740Z] + filename=subset-user-input +[2024-03-16T18:38:06.740Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-03-16T18:38:06.740Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-03-16T18:38:07.671Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-03-16T18:38:29.603Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb +[2024-03-16T18:38:29.603Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-03-16T18:38:29.603Z] + filename=subsetting.ipynb +[2024-03-16T18:38:29.603Z] + echo subsetting.ipynb +[2024-03-16T18:38:29.603Z] + sed s/.ipynb$// +[2024-03-16T18:38:29.603Z] + filename=subsetting +[2024-03-16T18:38:29.603Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-03-16T18:38:29.603Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-03-16T18:38:31.505Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb to notebook +[2024-03-16T18:38:41.469Z] [NbConvertApp] Writing 93401 bytes to buildout/subsetting.output.ipynb +[2024-03-16T18:38:41.469Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-16T18:38:41.469Z] + filename=dap_subset.ipynb +[2024-03-16T18:38:41.469Z] + echo dap_subset.ipynb +[2024-03-16T18:38:41.469Z] + sed s/.ipynb$// +[2024-03-16T18:38:41.469Z] + filename=dap_subset +[2024-03-16T18:38:41.469Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-03-16T18:38:41.469Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-16T18:38:42.845Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-03-16T18:38:55.106Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb +[2024-03-16T18:38:55.106Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-16T18:38:55.106Z] + filename=finch-usage.ipynb +[2024-03-16T18:38:55.106Z] + echo finch-usage.ipynb +[2024-03-16T18:38:55.106Z] + sed s/.ipynb$// +[2024-03-16T18:38:55.106Z] + filename=finch-usage +[2024-03-16T18:38:55.106Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-03-16T18:38:55.106Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-16T18:38:56.476Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-03-16T18:39:06.431Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb +[2024-03-16T18:39:06.689Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-16T18:39:06.689Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-16T18:39:06.689Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-16T18:39:06.689Z] + sed s/.ipynb$// +[2024-03-16T18:39:06.689Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-03-16T18:39:06.689Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-03-16T18:39:06.689Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-16T18:39:08.648Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-03-16T18:39:15.207Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-03-16T18:39:15.207Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-16T18:39:15.207Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-16T18:39:15.207Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-16T18:39:15.207Z] + sed s/.ipynb$// +[2024-03-16T18:39:15.207Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-03-16T18:39:15.207Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-03-16T18:39:15.207Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-16T18:39:16.139Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-03-16T18:39:17.512Z] Traceback (most recent call last): +[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/runpy.py", line 196, in _run_module_as_main +[2024-03-16T18:39:17.512Z] return _run_code(code, main_globals, None, +[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/runpy.py", line 86, in _run_code +[2024-03-16T18:39:17.512Z] exec(code, run_globals) +[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel_launcher.py", line 18, in +[2024-03-16T18:39:17.512Z] app.launch_new_instance() +[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1074, in launch_instance +[2024-03-16T18:39:17.512Z] app.initialize(argv) +[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 118, in inner +[2024-03-16T18:39:17.512Z] return method(app, *args, **kwargs) +[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 692, in initialize +[2024-03-16T18:39:17.512Z] self.init_sockets() +[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 345, in init_sockets +[2024-03-16T18:39:17.513Z] self.init_control(context) +[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 352, in init_control +[2024-03-16T18:39:17.513Z] self.control_port = self._bind_socket(self.control_socket, self.control_port) +[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 253, in _bind_socket +[2024-03-16T18:39:17.513Z] return self._try_bind_socket(s, port) +[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 229, in _try_bind_socket +[2024-03-16T18:39:17.513Z] s.bind("tcp://%s:%i" % (self.ip, port)) +[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/zmq/sugar/socket.py", line 232, in bind +[2024-03-16T18:39:17.513Z] super().bind(addr) +[2024-03-16T18:39:17.513Z] File "zmq/backend/cython/socket.pyx", line 568, in zmq.backend.cython.socket.Socket.bind +[2024-03-16T18:39:17.513Z] File "zmq/backend/cython/checkrc.pxd", line 28, in zmq.backend.cython.checkrc._check_rc +[2024-03-16T18:39:17.513Z] zmq.error.ZMQError: Address already in use +[2024-03-16T18:39:17.771Z] [NbConvertApp] ERROR | Error occurred while starting new kernel client for kernel 6bd2e909-86ec-49f7-b57d-eacaaad68c3b: Kernel died before replying to kernel_info +[2024-03-16T18:39:17.771Z] Traceback (most recent call last): +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-03-16T18:39:17.771Z] sys.exit(main()) +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance +[2024-03-16T18:39:17.771Z] super().launch_instance(argv=argv, **kwargs) +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance +[2024-03-16T18:39:17.771Z] app.start() +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start +[2024-03-16T18:39:17.771Z] self.convert_notebooks() +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks +[2024-03-16T18:39:17.771Z] self.convert_single_notebook(notebook_filename) +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook +[2024-03-16T18:39:17.771Z] output, resources = self.export_single_notebook( +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook +[2024-03-16T18:39:17.771Z] output, resources = self.exporter.from_filename( +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-03-16T18:39:17.771Z] return self.from_file(f, resources=resources, **kw) +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-03-16T18:39:17.771Z] return self.from_notebook_node( +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-03-16T18:39:17.771Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-03-16T18:39:17.771Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess +[2024-03-16T18:39:17.771Z] nbc, resc = preprocessor(nbc, resc) +[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-03-16T18:39:17.772Z] return self.preprocess(nb, resources) +[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 96, in preprocess +[2024-03-16T18:39:17.772Z] with self.setup_kernel(): +[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/contextlib.py", line 135, in __enter__ +[2024-03-16T18:39:17.772Z] return next(self.gen) +[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 599, in setup_kernel +[2024-03-16T18:39:17.772Z] self.start_new_kernel_client() +[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped +[2024-03-16T18:39:17.772Z] return loop.run_until_complete(inner) +[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-03-16T18:39:17.772Z] return future.result() +[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 562, in async_start_new_kernel_client +[2024-03-16T18:39:17.772Z] await ensure_async(self.kc.wait_for_ready(timeout=self.startup_timeout)) +[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async +[2024-03-16T18:39:17.772Z] result = await obj +[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py", line 202, in _async_wait_for_ready +[2024-03-16T18:39:17.772Z] raise RuntimeError("Kernel died before replying to kernel_info") +[2024-03-16T18:39:17.772Z] RuntimeError: Kernel died before replying to kernel_info +[2024-03-16T18:39:18.708Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-16T18:39:18.708Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-16T18:39:18.708Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-16T18:39:18.708Z] + sed s/.ipynb$// +[2024-03-16T18:39:18.708Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-03-16T18:39:18.708Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-03-16T18:39:18.708Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-16T18:39:20.606Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-03-16T18:44:12.191Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). +[2024-03-16T18:44:13.559Z] Traceback (most recent call last): +[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply +[2024-03-16T18:44:13.559Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) +[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async +[2024-03-16T18:44:13.559Z] result = await obj +[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg +[2024-03-16T18:44:13.559Z] raise Empty +[2024-03-16T18:44:13.559Z] _queue.Empty +[2024-03-16T18:44:13.559Z] +[2024-03-16T18:44:13.559Z] During handling of the above exception, another exception occurred: +[2024-03-16T18:44:13.559Z] +[2024-03-16T18:44:13.559Z] Traceback (most recent call last): +[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-03-16T18:44:13.559Z] sys.exit(main()) +[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance +[2024-03-16T18:44:13.559Z] super().launch_instance(argv=argv, **kwargs) +[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance +[2024-03-16T18:44:13.559Z] app.start() +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start +[2024-03-16T18:44:13.560Z] self.convert_notebooks() +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks +[2024-03-16T18:44:13.560Z] self.convert_single_notebook(notebook_filename) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook +[2024-03-16T18:44:13.560Z] output, resources = self.export_single_notebook( +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook +[2024-03-16T18:44:13.560Z] output, resources = self.exporter.from_filename( +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-03-16T18:44:13.560Z] return self.from_file(f, resources=resources, **kw) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-03-16T18:44:13.560Z] return self.from_notebook_node( +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-03-16T18:44:13.560Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-03-16T18:44:13.560Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess +[2024-03-16T18:44:13.560Z] nbc, resc = preprocessor(nbc, resc) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-03-16T18:44:13.560Z] return self.preprocess(nb, resources) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess +[2024-03-16T18:44:13.560Z] self.preprocess_cell(cell, resources, index) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell +[2024-03-16T18:44:13.560Z] cell = self.execute_cell(cell, index, store_history=True) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped +[2024-03-16T18:44:13.560Z] return loop.run_until_complete(inner) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-03-16T18:44:13.560Z] return future.result() +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell +[2024-03-16T18:44:13.560Z] exec_reply = await self.task_poll_for_reply +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply +[2024-03-16T18:44:13.560Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) +[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout +[2024-03-16T18:44:13.560Z] raise CellTimeoutError.error_from_timeout_and_cell( +[2024-03-16T18:44:13.560Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. +[2024-03-16T18:44:13.560Z] The message was: Cell execution timed out. +[2024-03-16T18:44:13.560Z] Here is a preview of the cell contents: +[2024-03-16T18:44:13.560Z] ------------------- +[2024-03-16T18:44:13.560Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] +[2024-03-16T18:44:13.560Z] ... +[2024-03-16T18:44:13.560Z] [' print("finished")', ' ', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] +[2024-03-16T18:44:13.560Z] ------------------- +[2024-03-16T18:44:13.560Z] +[2024-03-16T18:44:13.859Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-16T18:44:13.859Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-16T18:44:13.859Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-16T18:44:13.859Z] + sed s/.ipynb$// +[2024-03-16T18:44:13.859Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-03-16T18:44:13.859Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-03-16T18:44:13.859Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-16T18:44:15.748Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-03-16T18:44:37.691Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-03-16T18:44:37.691Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-16T18:44:37.691Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-16T18:44:37.691Z] + echo+ PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-16T18:44:37.691Z] sed s/.ipynb$// +[2024-03-16T18:44:37.691Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-03-16T18:44:37.691Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-03-16T18:44:37.691Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-16T18:44:37.691Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-03-16T18:45:45.379Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-03-16T18:45:45.379Z] + basename notebooks/hummingbird.ipynb +[2024-03-16T18:45:45.379Z] + filename=hummingbird.ipynb +[2024-03-16T18:45:45.379Z] + echo hummingbird.ipynb +[2024-03-16T18:45:45.379Z] + sed s/.ipynb$// +[2024-03-16T18:45:45.379Z] + filename=hummingbird +[2024-03-16T18:45:45.379Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-03-16T18:45:45.379Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-03-16T18:45:45.380Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-03-16T18:45:47.907Z] [NbConvertApp] Writing 15951 bytes to buildout/hummingbird.output.ipynb +[2024-03-16T18:45:47.907Z] + basename notebooks/stress-tests.ipynb +[2024-03-16T18:45:47.907Z] + filename=stress-tests.ipynb +[2024-03-16T18:45:47.907Z] + echo stress-tests.ipynb +[2024-03-16T18:45:47.907Z] + sed s/.ipynb$// +[2024-03-16T18:45:47.907Z] + filename=stress-tests +[2024-03-16T18:45:47.907Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-03-16T18:45:47.907Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-03-16T18:45:49.276Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-03-16T18:48:40.807Z] [NbConvertApp] Writing 428476 bytes to buildout/stress-tests.output.ipynb +[2024-03-16T18:48:40.807Z] + exit 1 +[2024-03-16T18:48:40.807Z] + EXIT_CODE=1 +[2024-03-16T18:48:40.807Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-16T18:48:40.807Z] + mkdir -p buildout/env-dump +[2024-03-16T18:48:40.807Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-16T18:48:40.807Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-16T18:48:40.807Z] + conda env export -n birdy +[2024-03-16T18:48:50.887Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-16T18:48:50.887Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-16T18:48:50.887Z] + conda list -n birdy --explicit +[2024-03-16T18:49:00.985Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-16T18:49:00.985Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-16T18:49:00.985Z] + pip freeze +[2024-03-16T18:49:01.923Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -1217,41 +1753,41 @@ $ docker top 9daac0be1774778111989f5fb4bfbd66cd47d496c133be5d02c08474feb6830b -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-14T19:45:43.529Z] Archiving artifacts -[2024-03-14T19:45:43.553Z] Recording fingerprints +[2024-03-16T18:49:02.541Z] Archiving artifacts +[2024-03-16T18:49:02.563Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:43.733Z] Archiving artifacts -[2024-03-14T19:45:44.384Z] Recording fingerprints +[2024-03-16T18:49:02.599Z] Archiving artifacts +[2024-03-16T18:49:03.305Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:45.163Z] Archiving artifacts -[2024-03-14T19:45:45.353Z] Recording fingerprints +[2024-03-16T18:49:04.250Z] Archiving artifacts +[2024-03-16T18:49:04.263Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:45.659Z] Archiving artifacts -[2024-03-14T19:45:45.678Z] Recording fingerprints +[2024-03-16T18:49:04.292Z] Archiving artifacts +[2024-03-16T18:49:04.311Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:45.764Z] Archiving artifacts -[2024-03-14T19:45:45.894Z] Recording fingerprints +[2024-03-16T18:49:04.390Z] Archiving artifacts +[2024-03-16T18:49:04.416Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:45.955Z] Archiving artifacts -[2024-03-14T19:45:45.994Z] Recording fingerprints +[2024-03-16T18:49:04.447Z] Archiving artifacts +[2024-03-16T18:49:04.510Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:47.773Z] Archiving artifacts -[2024-03-14T19:45:47.948Z] Recording fingerprints +[2024-03-16T18:49:04.955Z] Archiving artifacts +[2024-03-16T18:49:04.978Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:48.007Z] Archiving artifacts -[2024-03-14T19:45:48.057Z] Recording fingerprints +[2024-03-16T18:49:05.049Z] Archiving artifacts +[2024-03-16T18:49:05.113Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:48.222Z] Archiving artifacts -[2024-03-14T19:45:48.579Z] Recording fingerprints +[2024-03-16T18:49:05.253Z] Archiving artifacts +[2024-03-16T18:49:05.811Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:49.566Z] Archiving artifacts -[2024-03-14T19:45:50.520Z] Recording fingerprints +[2024-03-16T18:49:06.243Z] Archiving artifacts +[2024-03-16T18:49:07.179Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T19:45:56.128Z] Archiving artifacts -[2024-03-14T19:45:56.146Z] Recording fingerprints +[2024-03-16T18:49:07.441Z] Archiving artifacts +[2024-03-16T18:49:07.460Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-14T19:45:56.336Z] Sending e-mails to: vu.long@ouranos.ca +[2024-03-16T18:49:07.667Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -1261,8 +1797,8 @@ $ docker top 9daac0be1774778111989f5fb4bfbd66cd47d496c133be5d02c08474feb6830b -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 9daac0be1774778111989f5fb4bfbd66cd47d496c133be5d02c08474feb6830b -$ docker rm -f 9daac0be1774778111989f5fb4bfbd66cd47d496c133be5d02c08474feb6830b +$ docker stop --time=1 983d2dda09c5e58f84e165072cad4fd912e034462e027a43442d196da0ca8c47 +$ docker rm -f 983d2dda09c5e58f84e165072cad4fd912e034462e027a43442d196da0ca8c47 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index 1c57860..f5f3d75 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -11,16 +11,17 @@ Seen branch in repository origin/current-production-version Seen branch in repository origin/devel-new-extensions Seen branch in repository origin/extended_tests Seen branch in repository origin/master +Seen branch in repository origin/new-build-no-jupyter-dash Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 8 remote branches -Obtained Jenkinsfile from 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f +Seen 9 remote branches +Obtained Jenkinsfile from 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -28,2256 +29,2047 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f (new-docker-build) -Commit message: "release: update to use image pavics/workflow-tests:py310-240312" +Checking out Revision 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d (new-docker-build) +Commit message: "release: update to use image pavics/workflow-tests:py310-240316" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 > git config core.sparsecheckout # timeout=10 - > git checkout -f 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f # timeout=10 - > git rev-list --no-walk 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f # timeout=10 + > git checkout -f 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d # timeout=10 + > git rev-list --no-walk 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240312 ++ docker inspect -f . pavics/workflow-tests:py310-240316 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240312 cat -$ docker top 79c3fe0822c47e861fa6c0d57168d64385acf39f8343c4eb14af36bde8510ee6 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240316 cat +$ docker top 7c83b119fa591b77c96fbb1844a5b1e12a65c7feabd647b27ba0948bace7a2f1 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-14T18:12:22.784Z] Timeout set to expire in 2 hr 0 min +[2024-03-16T18:15:44.266Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-14T18:12:22.992Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-03-16T18:15:44.984Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-14T18:12:23.376Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-14T18:12:23.376Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-14T18:12:23.376Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-14T18:12:23.376Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-14T18:12:23.376Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-14T18:12:23.376Z] FINCH_BRANCH has been set to 'master' -[2024-03-14T18:12:23.376Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-14T18:12:23.376Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-14T18:12:23.376Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-14T18:12:23.376Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-14T18:12:23.376Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-14T18:12:23.376Z] RAVEN_BRANCH has been set to 'main' -[2024-03-14T18:12:23.376Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-14T18:12:23.376Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-14T18:12:23.376Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-14T18:12:23.376Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-14T18:12:23.376Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-14T18:12:23.376Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-14T18:12:23.376Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-14T18:12:23.376Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-03-14T18:12:23.376Z] + git clean -fdx -[2024-03-14T18:12:23.638Z] Removing .pytest_cache/ -[2024-03-14T18:12:23.638Z] Removing PAVICS-landing-master/ -[2024-03-14T18:12:23.638Z] Removing RavenPy-master/ -[2024-03-14T18:12:23.638Z] Removing __pycache__/ -[2024-03-14T18:12:23.638Z] Removing buildout/ -[2024-03-14T18:12:23.638Z] Removing esgf-compute-api-devel/ -[2024-03-14T18:12:23.638Z] Removing finch-master/ -[2024-03-14T18:12:23.638Z] Removing pavics-sdi-master/ -[2024-03-14T18:12:23.638Z] Removing raven-main/ -[2024-03-14T18:12:23.638Z] + ./downloadrepos -[2024-03-14T18:12:23.638Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-14T18:12:23.638Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-14T18:12:23.638Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-14T18:12:23.638Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-14T18:12:23.638Z] FINCH_BRANCH has been set to 'master' -[2024-03-14T18:12:23.638Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-14T18:12:23.638Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-14T18:12:23.638Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-14T18:12:23.638Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-14T18:12:23.638Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-14T18:12:23.638Z] RAVEN_BRANCH has been set to 'main' -[2024-03-14T18:12:23.638Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-14T18:12:23.638Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-14T18:12:23.638Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-14T18:12:23.638Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-14T18:12:23.638Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-14T18:12:23.638Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-14T18:12:23.638Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-14T18:12:23.638Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-03-14T18:12:23.638Z] + rm -rf pavics-sdi-* -[2024-03-14T18:12:23.638Z] + ls -[2024-03-14T18:12:23.638Z] + grep pavics-sdi -[2024-03-14T18:12:23.638Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-03-14T18:12:23.638Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-14T18:12:23.638Z] + shift -[2024-03-14T18:12:23.638Z] + branch=master -[2024-03-14T18:12:23.638Z] + shift -[2024-03-14T18:12:23.638Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-03-14T18:12:23.638Z] + tar xz -[2024-03-14T18:12:26.929Z] + ls -[2024-03-14T18:12:26.929Z] + grep pavics-sdi -[2024-03-14T18:12:26.929Z] pavics-sdi-master -[2024-03-14T18:12:26.929Z] + set +x -[2024-03-14T18:12:26.929Z] + rm -rf finch-* -[2024-03-14T18:12:26.929Z] + + ls -[2024-03-14T18:12:26.929Z] grep finch -[2024-03-14T18:12:26.929Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-14T18:12:26.929Z] + github_repo=https://github.com/bird-house/finch -[2024-03-14T18:12:26.929Z] + shift -[2024-03-14T18:12:26.929Z] + branch=master -[2024-03-14T18:12:26.929Z] + shift -[2024-03-14T18:12:26.929Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-03-14T18:12:26.929Z] + tar xz -[2024-03-14T18:12:28.311Z] + ls -[2024-03-14T18:12:28.311Z] + grep finch -[2024-03-14T18:12:28.311Z] finch-master -[2024-03-14T18:12:28.311Z] + set +x -[2024-03-14T18:12:28.311Z] + rm -rf PAVICS-landing-* -[2024-03-14T18:12:28.311Z] + grep PAVICS-landing -[2024-03-14T18:12:28.311Z] + ls -[2024-03-14T18:12:28.311Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-03-14T18:12:28.311Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-14T18:12:28.311Z] + shift -[2024-03-14T18:12:28.311Z] + branch=master -[2024-03-14T18:12:28.311Z] + shift -[2024-03-14T18:12:28.311Z] + tar xz -[2024-03-14T18:12:28.311Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-03-14T18:12:43.218Z] + grep PAVICS-landing -[2024-03-14T18:12:43.218Z] + ls -[2024-03-14T18:12:43.218Z] PAVICS-landing-master -[2024-03-14T18:12:43.218Z] + set +x -[2024-03-14T18:12:43.218Z] + rm -rf raven-* -[2024-03-14T18:12:43.218Z] + ls -[2024-03-14T18:12:43.218Z] + grep raven -[2024-03-14T18:12:43.218Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-14T18:12:43.218Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-14T18:12:43.218Z] + shift -[2024-03-14T18:12:43.218Z] + branch=main -[2024-03-14T18:12:43.218Z] + shift -[2024-03-14T18:12:43.218Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-14T18:12:43.218Z] + tar xz -[2024-03-14T18:12:43.789Z] + ls -[2024-03-14T18:12:43.789Z] + grep raven -[2024-03-14T18:12:43.789Z] raven-main -[2024-03-14T18:12:43.789Z] + set +x -[2024-03-14T18:12:43.789Z] + rm -rf RavenPy-* -[2024-03-14T18:12:43.789Z] + ls -[2024-03-14T18:12:43.789Z] + grep RavenPy -[2024-03-14T18:12:43.790Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-14T18:12:43.790Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-14T18:12:43.790Z] + shift -[2024-03-14T18:12:43.790Z] + branch=master -[2024-03-14T18:12:43.790Z] + shift -[2024-03-14T18:12:43.790Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-14T18:12:43.790Z] + tar xz -[2024-03-14T18:12:45.713Z] + ls -[2024-03-14T18:12:45.713Z] + grep RavenPy -[2024-03-14T18:12:45.713Z] RavenPy-master -[2024-03-14T18:12:45.713Z] + set +x -[2024-03-14T18:12:45.713Z] + rm -rf esgf-compute-api-* -[2024-03-14T18:12:45.713Z] + ls -[2024-03-14T18:12:45.713Z] + grep esgf-compute-api -[2024-03-14T18:12:45.713Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-14T18:12:45.713Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-14T18:12:45.713Z] + shift -[2024-03-14T18:12:45.713Z] + branch=devel -[2024-03-14T18:12:45.713Z] + shift -[2024-03-14T18:12:45.713Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-03-14T18:12:45.713Z] + tar xz -[2024-03-14T18:12:46.657Z] + ls -[2024-03-14T18:12:46.658Z] + grep esgf-compute-api -[2024-03-14T18:12:46.658Z] esgf-compute-api-devel -[2024-03-14T18:12:46.658Z] + set +x -[2024-03-14T18:12:46.658Z] + echo master -[2024-03-14T18:12:46.658Z] + sed s@/@-@g -[2024-03-14T18:12:46.658Z] + PAVICS_SDI_BRANCH=master -[2024-03-14T18:12:46.658Z] + echo Ouranosinc/pavics-sdi -[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g -[2024-03-14T18:12:46.658Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-14T18:12:46.658Z] + echo master -[2024-03-14T18:12:46.658Z] + sed s@/@-@g -[2024-03-14T18:12:46.658Z] + FINCH_BRANCH=master -[2024-03-14T18:12:46.658Z] + echo bird-house/finch -[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g -[2024-03-14T18:12:46.658Z] + FINCH_REPO_NAME=finch -[2024-03-14T18:12:46.658Z] + echo master -[2024-03-14T18:12:46.658Z] + sed s@/@-@g -[2024-03-14T18:12:46.658Z] + PAVICS_LANDING_BRANCH=master -[2024-03-14T18:12:46.658Z] + echo Ouranosinc/PAVICS-landing -[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g -[2024-03-14T18:12:46.658Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-14T18:12:46.658Z] + echo main -[2024-03-14T18:12:46.658Z] + sed s@/@-@g -[2024-03-14T18:12:46.658Z] + RAVEN_BRANCH=main -[2024-03-14T18:12:46.658Z] + echo Ouranosinc/raven -[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g -[2024-03-14T18:12:46.658Z] + RAVEN_REPO_NAME=raven -[2024-03-14T18:12:46.658Z] + echo master -[2024-03-14T18:12:46.658Z] + sed s@/@-@g -[2024-03-14T18:12:46.658Z] + RAVENPY_BRANCH=master -[2024-03-14T18:12:46.658Z] + echo CSHS-CWRA/RavenPy -[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g -[2024-03-14T18:12:46.658Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-14T18:12:46.658Z] + echo devel -[2024-03-14T18:12:46.658Z] + sed s@/@-@g -[2024-03-14T18:12:46.658Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-14T18:12:46.658Z] + echo ESGF/esgf-compute-api -[2024-03-14T18:12:46.658Z] + sed s@^.*/@@g -[2024-03-14T18:12:46.658Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-14T18:12:46.658Z] + echo pavics-sdi-master -[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T18:12:46.658Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-03-14T18:12:46.658Z] + echo finch-master -[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T18:12:46.658Z] + FINCH_DIR=finch-master -[2024-03-14T18:12:46.658Z] + echo PAVICS-landing-master -[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T18:12:46.658Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-03-14T18:12:46.658Z] + echo raven-main -[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T18:12:46.658Z] + RAVEN_DIR=raven-main -[2024-03-14T18:12:46.658Z] + echo RavenPy-master -[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T18:12:46.658Z] + RAVENPY_DIR=RavenPy-master -[2024-03-14T18:12:46.658Z] + echo esgf-compute-api-devel -[2024-03-14T18:12:46.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-14T18:12:46.658Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-14T18:12:46.658Z] + echo true -[2024-03-14T18:12:46.658Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.658Z] + VERIFY_SSL=true -[2024-03-14T18:12:46.658Z] + [ xtrue = xfalse ] -[2024-03-14T18:12:46.658Z] + rm -v finch-master/setup.cfg -[2024-03-14T18:12:46.658Z] removed 'finch-master/setup.cfg' -[2024-03-14T18:12:46.658Z] + rm -v raven-main/setup.cfg -[2024-03-14T18:12:46.658Z] removed 'raven-main/setup.cfg' -[2024-03-14T18:12:46.658Z] + rm -v raven-main/pyproject.toml -[2024-03-14T18:12:46.658Z] removed 'raven-main/pyproject.toml' -[2024-03-14T18:12:46.658Z] + rm -v RavenPy-master/setup.cfg -[2024-03-14T18:12:46.658Z] removed 'RavenPy-master/setup.cfg' -[2024-03-14T18:12:46.658Z] + rm -v RavenPy-master/tox.ini -[2024-03-14T18:12:46.658Z] removed 'RavenPy-master/tox.ini' -[2024-03-14T18:12:46.658Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-14T18:12:46.659Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-14T18:12:46.659Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-14T18:12:46.659Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-14T18:12:46.659Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-14T18:12:46.659Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-14T18:12:46.659Z] + echo false -[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.659Z] + TEST_MAGPIE_AUTH=false -[2024-03-14T18:12:46.659Z] + echo false -[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.659Z] + TEST_PAVICS_SDI_REPO=false -[2024-03-14T18:12:46.659Z] + echo false -[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.659Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-14T18:12:46.659Z] + echo false -[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.659Z] + TEST_FINCH_REPO=false -[2024-03-14T18:12:46.659Z] + echo false -[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.659Z] + TEST_PAVICS_LANDING_REPO=false -[2024-03-14T18:12:46.659Z] + echo true -[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.659Z] + TEST_RAVEN_REPO=true -[2024-03-14T18:12:46.659Z] + echo true -[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.659Z] + TEST_RAVENPY_REPO=true -[2024-03-14T18:12:46.659Z] + echo false -[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.659Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-14T18:12:46.659Z] + echo false -[2024-03-14T18:12:46.659Z] + tr [:upper:] [:lower:] -[2024-03-14T18:12:46.659Z] + TEST_LOCAL_NOTEBOOKS=false -[2024-03-14T18:12:46.659Z] + NOTEBOOKS_TO_TEST= -[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] -[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] -[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] -[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] -[2024-03-14T18:12:46.659Z] + [ xtrue = xtrue ] -[2024-03-14T18:12:46.659Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-03-14T18:12:46.659Z] + [ xtrue = xtrue ] -[2024-03-14T18:12:46.659Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-03-14T18:12:46.659Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] -[2024-03-14T18:12:46.659Z] + [ xfalse = xtrue ] -[2024-03-14T18:12:46.659Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-03-14T18:12:46.659Z] + [ -n ] -[2024-03-14T18:12:46.659Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-14T18:12:46.659Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-14T18:12:46.659Z] Will run notebooks against pavics.ouranos.ca -[2024-03-14T18:12:46.659Z] + [ -z ] -[2024-03-14T18:12:46.660Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-14T18:12:46.660Z] + git diff -[2024-03-14T18:12:46.660Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-14T18:12:46.661Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-03-14T18:12:49.956Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-14T18:12:49.956Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-14T18:12:49.956Z] ============================= test session starts ============================== -[2024-03-14T18:12:49.956Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-03-14T18:12:49.956Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-03-14T18:12:49.956Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-03-14T18:12:49.956Z] collected 242 items -[2024-03-14T18:12:49.956Z] -[2024-03-14T18:13:01.438Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-03-14T18:13:03.972Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] -[2024-03-14T18:13:17.724Z] ...... [ 6%] -[2024-03-14T18:13:19.635Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] -[2024-03-14T18:13:19.635Z] [ 9%] -[2024-03-14T18:13:22.077Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-03-14T18:13:30.204Z] .... [ 12%] -[2024-03-14T18:13:36.767Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] -[2024-03-14T18:13:43.549Z] ....FFFF.FF.F [ 18%] -[2024-03-14T18:14:14.018Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] -[2024-03-14T18:15:22.705Z] .. [ 22%] -[2024-03-14T18:15:26.584Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] -[2024-03-14T18:15:35.254Z] ..FFFFFFFF....... [ 30%] -[2024-03-14T18:15:42.767Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] -[2024-03-14T18:15:51.970Z] ........... [ 36%] -[2024-03-14T18:16:00.982Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] -[2024-03-14T18:16:05.182Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] -[2024-03-14T18:16:11.673Z] ..... [ 41%] -[2024-03-14T18:16:13.045Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] -[2024-03-14T18:20:23.541Z] ................. [ 48%] -[2024-03-14T18:20:27.707Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] -[2024-03-14T18:20:35.487Z] .... [ 50%] -[2024-03-14T18:21:18.475Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] -[2024-03-14T18:21:27.272Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] -[2024-03-14T18:21:56.015Z] ...... [ 57%] -[2024-03-14T18:22:02.564Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] -[2024-03-14T18:22:12.781Z] ....... [ 60%] -[2024-03-14T18:22:20.037Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] -[2024-03-14T18:22:35.377Z] .... [ 64%] -[2024-03-14T18:22:43.504Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] -[2024-03-14T18:23:02.227Z] ....... [ 67%] -[2024-03-14T18:23:05.520Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] -[2024-03-14T18:23:31.892Z] ....... [ 70%] -[2024-03-14T18:23:35.196Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] -[2024-03-14T18:23:45.868Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] -[2024-03-14T18:23:52.594Z] .... [ 74%] -[2024-03-14T18:24:09.085Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] -[2024-03-14T18:24:34.382Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] -[2024-03-14T18:24:34.382Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] -[2024-03-14T18:24:47.822Z] ............. [ 84%] -[2024-03-14T18:25:04.510Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] -[2024-03-14T18:25:13.152Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] -[2024-03-14T18:25:23.137Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] -[2024-03-14T18:26:34.175Z] ......FFFFFFFFFFFFFF [100%] -[2024-03-14T18:26:34.175Z] -[2024-03-14T18:26:34.175Z] =================================== FAILURES =================================== -[2024-03-14T18:26:34.175Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ -[2024-03-14T18:26:34.175Z] Notebook cell execution failed -[2024-03-14T18:26:34.175Z] Cell 5: Cell execution caused an exception -[2024-03-14T18:26:34.175Z] -[2024-03-14T18:26:34.175Z] Input: -[2024-03-14T18:26:34.175Z] features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-14T18:26:34.175Z] grid = raster[0] -[2024-03-14T18:26:34.175Z] grid.plot() -[2024-03-14T18:26:34.175Z] -[2024-03-14T18:26:34.175Z] Traceback: -[2024-03-14T18:26:34.175Z] -[2024-03-14T18:26:34.175Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.175Z] AttributeError Traceback (most recent call last) -[2024-03-14T18:26:34.175Z] Cell In[1], line 1 -[2024-03-14T18:26:34.175Z] ----> 1 features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-14T18:26:34.175Z]  2 grid = raster[0] -[2024-03-14T18:26:34.175Z]  3 grid.plot() -[2024-03-14T18:26:34.175Z] -[2024-03-14T18:26:34.175Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-14T18:26:34.175Z]  38 if not self.isSucceded(): -[2024-03-14T18:26:34.175Z]  39 # TODO: add reason for failure -[2024-03-14T18:26:34.175Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-14T18:26:34.175Z] ---> 41 return self._make_output(asobj) -[2024-03-14T18:26:34.175Z] -[2024-03-14T18:26:34.175Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-14T18:26:34.175Z]  44 Output = namedtuple( -[2024-03-14T18:26:34.175Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-14T18:26:34.175Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-14T18:26:34.175Z]  47 ) -[2024-03-14T18:26:34.175Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-14T18:26:34.175Z]  49 return Output( -[2024-03-14T18:26:34.175Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-14T18:26:34.175Z]  51 ) -[2024-03-14T18:26:34.175Z] -[2024-03-14T18:26:34.175Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-14T18:26:34.175Z]  44 Output = namedtuple( -[2024-03-14T18:26:34.175Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-14T18:26:34.175Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-14T18:26:34.175Z]  47 ) -[2024-03-14T18:26:34.175Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-14T18:26:34.175Z]  49 return Output( -[2024-03-14T18:26:34.175Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-14T18:26:34.175Z]  51 ) -[2024-03-14T18:26:34.175Z] -[2024-03-14T18:26:34.175Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-14T18:26:34.176Z]  68 return delist(data) -[2024-03-14T18:26:34.176Z]  70 if convert_objects: -[2024-03-14T18:26:34.176Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-14T18:26:34.176Z]  72 else: -[2024-03-14T18:26:34.176Z]  73 return output.reference -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) -[2024-03-14T18:26:34.176Z]  374 out = converter.convert() -[2024-03-14T18:26:34.176Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-14T18:26:34.176Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-14T18:26:34.176Z]  377 return out -[2024-03-14T18:26:34.176Z]  379 except (ImportError, NotImplementedError): -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) -[2024-03-14T18:26:34.176Z]  374 out = converter.convert() -[2024-03-14T18:26:34.176Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-14T18:26:34.176Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-14T18:26:34.176Z]  377 return out -[2024-03-14T18:26:34.176Z]  379 except (ImportError, NotImplementedError): -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-14T18:26:34.176Z]  372 try: -[2024-03-14T18:26:34.176Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-14T18:26:34.176Z] --> 374 out = converter.convert() -[2024-03-14T18:26:34.176Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-14T18:26:34.176Z]  376 out = [convert(o, path) for o in out] -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-14T18:26:34.176Z]  263 import xarray # isort: skip -[2024-03-14T18:26:34.176Z]  264 import rioxarray # noqa -[2024-03-14T18:26:34.176Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 _ -[2024-03-14T18:26:34.176Z] Notebook cell execution failed -[2024-03-14T18:26:34.176Z] Cell 6: Cell execution caused an exception -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] Input: -[2024-03-14T18:26:34.176Z] lu = statistics[0] -[2024-03-14T18:26:34.176Z] total = sum(lu.values()) -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] land_use = {k: (v / total) for (k, v) in lu.items()} -[2024-03-14T18:26:34.176Z] display("Land use ratios", land_use) -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} -[2024-03-14T18:26:34.176Z] display("Land use percentages", land_use_pct) -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] Traceback: -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.176Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.176Z] Cell In[1], line 1 -[2024-03-14T18:26:34.176Z] ----> 1 lu = statistics[0] -[2024-03-14T18:26:34.176Z]  2 total = sum(lu.values()) -[2024-03-14T18:26:34.176Z]  4 land_use = {k: (v / total) for (k, v) in lu.items()} -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] NameError: name 'statistics' is not defined -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ -[2024-03-14T18:26:34.176Z] Notebook cell execution failed -[2024-03-14T18:26:34.176Z] Cell 7: Cell execution caused an exception -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] Input: -[2024-03-14T18:26:34.176Z] unique, counts = np.unique(grid, return_counts=True) -[2024-03-14T18:26:34.176Z] print("The land-use categories available are: " + str(unique)) -[2024-03-14T18:26:34.176Z] print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] # Pixels values at '127' are NaN and can be ignored. -[2024-03-14T18:26:34.176Z] from matplotlib.colors import Normalize -[2024-03-14T18:26:34.176Z] -[2024-03-14T18:26:34.176Z] norm = Normalize() -[2024-03-14T18:26:34.176Z] norm.autoscale(unique[:-1]) -[2024-03-14T18:26:34.176Z] cm = mpl.colormaps["tab20"] -[2024-03-14T18:26:34.177Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] # plt.bar(unique[:-1], counts[:-1]) -[2024-03-14T18:26:34.177Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) -[2024-03-14T18:26:34.177Z] plt.xlabel("Land-use categories") -[2024-03-14T18:26:34.177Z] plt.ylabel("Number of pixels") -[2024-03-14T18:26:34.177Z] plt.show() -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") -[2024-03-14T18:26:34.177Z] grid.name = "Land-use categories" -[2024-03-14T18:26:34.177Z] plt.show() -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] Traceback: -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.177Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.177Z] Cell In[1], line 1 -[2024-03-14T18:26:34.177Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) -[2024-03-14T18:26:34.177Z]  2 print("The land-use categories available are: " + str(unique)) -[2024-03-14T18:26:34.177Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] NameError: name 'grid' is not defined -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ -[2024-03-14T18:26:34.177Z] Notebook cell execution failed -[2024-03-14T18:26:34.177Z] Cell 8: Cell execution caused an exception -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] Input: -[2024-03-14T18:26:34.177Z] import cartopy.crs as ccrs -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] # Set a CRS transformation: -[2024-03-14T18:26:34.177Z] crs = ccrs.LambertConformal( -[2024-03-14T18:26:34.177Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-14T18:26:34.177Z] ) -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] ax = plt.subplot(projection=crs) -[2024-03-14T18:26:34.177Z] grid.name = "Land-use categories" -[2024-03-14T18:26:34.177Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-14T18:26:34.177Z] plt.show() -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] Traceback: -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.177Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.177Z] Cell In[1], line 9 -[2024-03-14T18:26:34.177Z]  4 crs = ccrs.LambertConformal( -[2024-03-14T18:26:34.177Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-14T18:26:34.177Z]  6 ) -[2024-03-14T18:26:34.177Z]  8 ax = plt.subplot(projection=crs) -[2024-03-14T18:26:34.177Z] ----> 9 grid.name = "Land-use categories" -[2024-03-14T18:26:34.177Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-14T18:26:34.177Z]  11 plt.show() -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] NameError: name 'grid' is not defined -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 _ -[2024-03-14T18:26:34.177Z] Notebook cell execution failed -[2024-03-14T18:26:34.177Z] Cell 10: Cell execution caused an exception -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] Input: -[2024-03-14T18:26:34.177Z] properties, dem = terrain_resp.get(asobj=True) -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] elevation = properties[0]["elevation"] -[2024-03-14T18:26:34.177Z] slope = properties[0]["slope"] -[2024-03-14T18:26:34.177Z] aspect = properties[0]["aspect"] -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} -[2024-03-14T18:26:34.177Z] display(terrain) -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] Traceback: -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.177Z] AttributeError Traceback (most recent call last) -[2024-03-14T18:26:34.177Z] Cell In[1], line 1 -[2024-03-14T18:26:34.177Z] ----> 1 properties, dem = terrain_resp.get(asobj=True) -[2024-03-14T18:26:34.177Z]  3 elevation = properties[0]["elevation"] -[2024-03-14T18:26:34.177Z]  4 slope = properties[0]["slope"] -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-14T18:26:34.177Z]  38 if not self.isSucceded(): -[2024-03-14T18:26:34.177Z]  39 # TODO: add reason for failure -[2024-03-14T18:26:34.177Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-14T18:26:34.177Z] ---> 41 return self._make_output(asobj) -[2024-03-14T18:26:34.177Z] -[2024-03-14T18:26:34.177Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-14T18:26:34.177Z]  44 Output = namedtuple( -[2024-03-14T18:26:34.178Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-14T18:26:34.178Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-14T18:26:34.178Z]  47 ) -[2024-03-14T18:26:34.178Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-14T18:26:34.178Z]  49 return Output( -[2024-03-14T18:26:34.178Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-14T18:26:34.178Z]  51 ) -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-14T18:26:34.178Z]  44 Output = namedtuple( -[2024-03-14T18:26:34.178Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-14T18:26:34.178Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-14T18:26:34.178Z]  47 ) -[2024-03-14T18:26:34.178Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-14T18:26:34.178Z]  49 return Output( -[2024-03-14T18:26:34.178Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-14T18:26:34.178Z]  51 ) -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-14T18:26:34.178Z]  68 return delist(data) -[2024-03-14T18:26:34.178Z]  70 if convert_objects: -[2024-03-14T18:26:34.178Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-14T18:26:34.178Z]  72 else: -[2024-03-14T18:26:34.178Z]  73 return output.reference -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-14T18:26:34.178Z]  372 try: -[2024-03-14T18:26:34.178Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-14T18:26:34.178Z] --> 374 out = converter.convert() -[2024-03-14T18:26:34.178Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-14T18:26:34.178Z]  376 out = [convert(o, path) for o in out] -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-14T18:26:34.178Z]  263 import xarray # isort: skip -[2024-03-14T18:26:34.178Z]  264 import rioxarray # noqa -[2024-03-14T18:26:34.178Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ -[2024-03-14T18:26:34.178Z] Notebook cell execution failed -[2024-03-14T18:26:34.178Z] Cell 11: Cell execution caused an exception -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] Input: -[2024-03-14T18:26:34.178Z] crs = ccrs.LambertConformal( -[2024-03-14T18:26:34.178Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-14T18:26:34.178Z] ) -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] dem.name = "Elevation" -[2024-03-14T18:26:34.178Z] dem.attrs["units"] = "m" -[2024-03-14T18:26:34.178Z] ax = plt.subplot(projection=crs) -[2024-03-14T18:26:34.178Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") -[2024-03-14T18:26:34.178Z] plt.show() -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] Traceback: -[2024-03-14T18:26:34.178Z] -[2024-03-14T18:26:34.178Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.178Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.178Z] Cell In[1], line 5 -[2024-03-14T18:26:34.178Z]  1 crs = ccrs.LambertConformal( -[2024-03-14T18:26:34.178Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-14T18:26:34.178Z]  3 ) -[2024-03-14T18:26:34.179Z] ----> 5 dem.name = "Elevation" -[2024-03-14T18:26:34.179Z]  6 dem.attrs["units"] = "m" -[2024-03-14T18:26:34.179Z]  7 ax = plt.subplot(projection=crs) -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] NameError: name 'dem' is not defined -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 _ -[2024-03-14T18:26:34.179Z] Notebook cell execution failed -[2024-03-14T18:26:34.179Z] Cell 13: Cell execution caused an exception -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] Input: -[2024-03-14T18:26:34.179Z] all_properties = {**shape_info, **land_use, **terrain} -[2024-03-14T18:26:34.179Z] display(all_properties) -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] Traceback: -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.179Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.179Z] Cell In[1], line 1 -[2024-03-14T18:26:34.179Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} -[2024-03-14T18:26:34.179Z]  2 display(all_properties) -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] NameError: name 'land_use' is not defined -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-03-14T18:26:34.179Z] Notebook cell execution failed -[2024-03-14T18:26:34.179Z] Cell 5: Cell execution caused an exception -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] Input: -[2024-03-14T18:26:34.179Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-03-14T18:26:34.179Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-03-14T18:26:34.179Z] from ravenpy import OutputReader -[2024-03-14T18:26:34.179Z] from ravenpy.ravenpy import run -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-03-14T18:26:34.179Z] run_name = run_name -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-03-14T18:26:34.179Z] # subfolder called "outputs" -[2024-03-14T18:26:34.179Z] configdir = workdir -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-14T18:26:34.179Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] # Get the outputs using the Output Reader object. -[2024-03-14T18:26:34.179Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] Traceback: -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.179Z] RavenError Traceback (most recent call last) -[2024-03-14T18:26:34.179Z] Cell In[1], line 14 -[2024-03-14T18:26:34.179Z]  11 configdir = workdir -[2024-03-14T18:26:34.179Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-14T18:26:34.179Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-14T18:26:34.179Z]  16 # Get the outputs using the Output Reader object. -[2024-03-14T18:26:34.179Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-14T18:26:34.179Z]  320 warn(msg, category=RavenWarning) -[2024-03-14T18:26:34.179Z]  322 if messages["ERROR"]: -[2024-03-14T18:26:34.179Z] --> 323 raise RavenError( -[2024-03-14T18:26:34.179Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-14T18:26:34.179Z]  325 ) -[2024-03-14T18:26:34.179Z]  327 if returncode != 0: -[2024-03-14T18:26:34.179Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] RavenError: Config directory: /tmp/NB4xkvb_v2v -[2024-03-14T18:26:34.179Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-03-14T18:26:34.179Z] Notebook cell execution failed -[2024-03-14T18:26:34.179Z] Cell 6: Cell execution caused an exception -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] Input: -[2024-03-14T18:26:34.179Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-03-14T18:26:34.179Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-03-14T18:26:34.179Z] from ravenpy import Emulator -[2024-03-14T18:26:34.179Z] -[2024-03-14T18:26:34.179Z] # Prepare the emulator by writing files on disk -[2024-03-14T18:26:34.179Z] e = Emulator(config=m) -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] # Run the model and get the outputs. -[2024-03-14T18:26:34.180Z] outputs = e.run() -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] Traceback: -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.180Z] RavenError Traceback (most recent call last) -[2024-03-14T18:26:34.180Z] Cell In[1], line 9 -[2024-03-14T18:26:34.180Z]  6 e = Emulator(config=m) -[2024-03-14T18:26:34.180Z]  8 # Run the model and get the outputs. -[2024-03-14T18:26:34.180Z] ----> 9 outputs = e.run() -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-03-14T18:26:34.180Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-03-14T18:26:34.180Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-03-14T18:26:34.180Z]  66 self.write_rv(overwrite=overwrite) -[2024-03-14T18:26:34.180Z] ---> 68 self._output_path = run( -[2024-03-14T18:26:34.180Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-03-14T18:26:34.180Z]  70 ) -[2024-03-14T18:26:34.180Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-03-14T18:26:34.180Z]  72 return self._output -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-14T18:26:34.180Z]  320 warn(msg, category=RavenWarning) -[2024-03-14T18:26:34.180Z]  322 if messages["ERROR"]: -[2024-03-14T18:26:34.180Z] --> 323 raise RavenError( -[2024-03-14T18:26:34.180Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-14T18:26:34.180Z]  325 ) -[2024-03-14T18:26:34.180Z]  327 if returncode != 0: -[2024-03-14T18:26:34.180Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] RavenError: Config directory: /tmp/tmpx0zqd1su -[2024-03-14T18:26:34.180Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-03-14T18:26:34.180Z] Notebook cell execution failed -[2024-03-14T18:26:34.180Z] Cell 7: Cell execution caused an exception -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] Input: -[2024-03-14T18:26:34.180Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-14T18:26:34.180Z] outputs.files -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] Traceback: -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.180Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.180Z] Cell In[1], line 2 -[2024-03-14T18:26:34.180Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-14T18:26:34.180Z] ----> 2 outputs.files -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] NameError: name 'outputs' is not defined -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-03-14T18:26:34.180Z] Notebook cell execution failed -[2024-03-14T18:26:34.180Z] Cell 8: Cell execution caused an exception -[2024-03-14T18:26:34.180Z] -[2024-03-14T18:26:34.180Z] Input: -[2024-03-14T18:26:34.180Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-14T18:26:34.180Z] print("----------------HYDROGRAPH----------------") -[2024-03-14T18:26:34.180Z] display(outputs.hydrograph) -[2024-03-14T18:26:34.181Z] print("") -[2024-03-14T18:26:34.181Z] print("-----------------STORAGE------------------") -[2024-03-14T18:26:34.181Z] display(outputs.storage) -[2024-03-14T18:26:34.181Z] print("") -[2024-03-14T18:26:34.181Z] print("-----------------SOLUTION-----------------") -[2024-03-14T18:26:34.181Z] display(outputs.solution) -[2024-03-14T18:26:34.181Z] print("") -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Traceback: -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.181Z] Cell In[1], line 3 -[2024-03-14T18:26:34.181Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-14T18:26:34.181Z]  2 print("----------------HYDROGRAPH----------------") -[2024-03-14T18:26:34.181Z] ----> 3 display(outputs.hydrograph) -[2024-03-14T18:26:34.181Z]  4 print("") -[2024-03-14T18:26:34.181Z]  5 print("-----------------STORAGE------------------") -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-03-14T18:26:34.181Z] Notebook cell execution failed -[2024-03-14T18:26:34.181Z] Cell 9: Cell execution caused an exception -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Input: -[2024-03-14T18:26:34.181Z] # Import the graphing utility built to handle Raven model outputs -[2024-03-14T18:26:34.181Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] hydrograph_objects = outputs.hydrograph -[2024-03-14T18:26:34.181Z] hydrographs(hydrograph_objects) -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Traceback: -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.181Z] Cell In[1], line 4 -[2024-03-14T18:26:34.181Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-03-14T18:26:34.181Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-14T18:26:34.181Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-03-14T18:26:34.181Z]  5 hydrographs(hydrograph_objects) -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-03-14T18:26:34.181Z] Notebook cell execution failed -[2024-03-14T18:26:34.181Z] Cell 10: Cell execution caused an exception -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Input: -[2024-03-14T18:26:34.181Z] outputs.hydrograph.q_sim.plot() -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Traceback: -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.181Z] Cell In[1], line 1 -[2024-03-14T18:26:34.181Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-03-14T18:26:34.181Z] Notebook cell execution failed -[2024-03-14T18:26:34.181Z] Cell 11: Cell execution caused an exception -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Input: -[2024-03-14T18:26:34.181Z] print(list(outputs.storage.keys())) -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Traceback: -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.181Z] Cell In[1], line 1 -[2024-03-14T18:26:34.181Z] ----> 1 print(list(outputs.storage.keys())) -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-03-14T18:26:34.181Z] Notebook cell execution failed -[2024-03-14T18:26:34.181Z] Cell 12: Cell execution caused an exception -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Input: -[2024-03-14T18:26:34.181Z] # Plot the "Snow" variable -[2024-03-14T18:26:34.181Z] outputs.storage["Snow"].plot() -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Traceback: -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.181Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.181Z] Cell In[1], line 2 -[2024-03-14T18:26:34.181Z]  1 # Plot the "Snow" variable -[2024-03-14T18:26:34.181Z] ----> 2 outputs.storage["Snow"].plot() -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] NameError: name 'outputs' is not defined -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ -[2024-03-14T18:26:34.181Z] Notebook cell execution failed -[2024-03-14T18:26:34.181Z] Cell 0: Cell execution caused an exception -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] Input: -[2024-03-14T18:26:34.181Z] import os -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] from hsclient import HydroShare, Token -[2024-03-14T18:26:34.181Z] -[2024-03-14T18:26:34.181Z] # Authentication method using username and password -[2024-03-14T18:26:34.181Z] """ -[2024-03-14T18:26:34.181Z] username = 'XXXXX' -[2024-03-14T18:26:34.181Z] password = 'XXXXX' -[2024-03-14T18:26:34.182Z] hs = HydroShare(username=username, password=password) -[2024-03-14T18:26:34.182Z] """ -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-03-14T18:26:34.182Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] token = Token(access_token=access_token, token_type="bearer") -[2024-03-14T18:26:34.182Z] hs = HydroShare(client_id=client_id, token=token) -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] Traceback: -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.182Z] ValidationError Traceback (most recent call last) -[2024-03-14T18:26:34.182Z] Cell In[1], line 15 -[2024-03-14T18:26:34.182Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-03-14T18:26:34.182Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-03-14T18:26:34.182Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") -[2024-03-14T18:26:34.182Z]  16 hs = HydroShare(client_id=client_id, token=token) -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) -[2024-03-14T18:26:34.182Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks -[2024-03-14T18:26:34.182Z]  170 __tracebackhide__ = True -[2024-03-14T18:26:34.182Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] ValidationError: 4 validation errors for Token -[2024-03-14T18:26:34.182Z] scope -[2024-03-14T18:26:34.182Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) -[2024-03-14T18:26:34.182Z]  2 for r in results: -[2024-03-14T18:26:34.182Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] NameError: name 'hs' is not defined -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ -[2024-03-14T18:26:34.182Z] Notebook cell execution failed -[2024-03-14T18:26:34.182Z] Cell 2: Cell execution caused an exception -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] Input: -[2024-03-14T18:26:34.182Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-14T18:26:34.182Z] res.files() -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] Traceback: -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.182Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.182Z] Cell In[1], line 1 -[2024-03-14T18:26:34.182Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-14T18:26:34.182Z]  2 res.files() -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] NameError: name 'hs' is not defined -[2024-03-14T18:26:34.182Z] -[2024-03-14T18:26:34.182Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ -[2024-03-14T18:26:34.182Z] Notebook cell execution failed -[2024-03-14T18:26:34.183Z] Cell 3: Cell execution caused an exception -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] Input: -[2024-03-14T18:26:34.183Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] Traceback: -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.183Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.183Z] Cell In[1], line 1 -[2024-03-14T18:26:34.183Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] NameError: name 'res' is not defined -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 _ -[2024-03-14T18:26:34.183Z] Notebook cell execution failed -[2024-03-14T18:26:34.183Z] Cell 7: Cell execution caused an exception -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] Input: -[2024-03-14T18:26:34.183Z] features, statistics, grid0 = stats_resp.get(asobj=True) -[2024-03-14T18:26:34.183Z] lu = statistics[0] -[2024-03-14T18:26:34.183Z] total = sum(lu.values()) -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] land_use = {k: (v / total) for (k, v) in lu.items()} -[2024-03-14T18:26:34.183Z] display("Land use ratios", land_use) -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] land_use_pct = {k: f"{np.round(v/total*100, 2)} %" for (k, v) in lu.items()} -[2024-03-14T18:26:34.183Z] display("Land use percentages", land_use_pct) -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] Traceback: -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.183Z] AttributeError Traceback (most recent call last) -[2024-03-14T18:26:34.183Z] Cell In[1], line 1 -[2024-03-14T18:26:34.183Z] ----> 1 features, statistics, grid0 = stats_resp.get(asobj=True) -[2024-03-14T18:26:34.183Z]  2 lu = statistics[0] -[2024-03-14T18:26:34.183Z]  3 total = sum(lu.values()) -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-14T18:26:34.183Z]  38 if not self.isSucceded(): -[2024-03-14T18:26:34.183Z]  39 # TODO: add reason for failure -[2024-03-14T18:26:34.183Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-14T18:26:34.183Z] ---> 41 return self._make_output(asobj) -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-14T18:26:34.183Z]  44 Output = namedtuple( -[2024-03-14T18:26:34.183Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-14T18:26:34.183Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-14T18:26:34.183Z]  47 ) -[2024-03-14T18:26:34.183Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-14T18:26:34.183Z]  49 return Output( -[2024-03-14T18:26:34.183Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-14T18:26:34.183Z]  51 ) -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-14T18:26:34.183Z]  44 Output = namedtuple( -[2024-03-14T18:26:34.183Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-14T18:26:34.183Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-14T18:26:34.183Z]  47 ) -[2024-03-14T18:26:34.183Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-14T18:26:34.183Z]  49 return Output( -[2024-03-14T18:26:34.183Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-14T18:26:34.183Z]  51 ) -[2024-03-14T18:26:34.183Z] -[2024-03-14T18:26:34.183Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-14T18:26:34.183Z]  68 return delist(data) -[2024-03-14T18:26:34.183Z]  70 if convert_objects: -[2024-03-14T18:26:34.184Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-14T18:26:34.184Z]  72 else: -[2024-03-14T18:26:34.184Z]  73 return output.reference -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in convert(output, path, converters, verify) -[2024-03-14T18:26:34.184Z]  374 out = converter.convert() -[2024-03-14T18:26:34.184Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-14T18:26:34.184Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-14T18:26:34.184Z]  377 return out -[2024-03-14T18:26:34.184Z]  379 except (ImportError, NotImplementedError): -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:376, in (.0) -[2024-03-14T18:26:34.184Z]  374 out = converter.convert() -[2024-03-14T18:26:34.184Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-14T18:26:34.184Z] --> 376 out = [convert(o, path) for o in out] -[2024-03-14T18:26:34.184Z]  377 return out -[2024-03-14T18:26:34.184Z]  379 except (ImportError, NotImplementedError): -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-14T18:26:34.184Z]  372 try: -[2024-03-14T18:26:34.184Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-14T18:26:34.184Z] --> 374 out = converter.convert() -[2024-03-14T18:26:34.184Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-14T18:26:34.184Z]  376 out = [convert(o, path) for o in out] -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-14T18:26:34.184Z]  263 import xarray # isort: skip -[2024-03-14T18:26:34.184Z]  264 import rioxarray # noqa -[2024-03-14T18:26:34.184Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 _ -[2024-03-14T18:26:34.184Z] Notebook cell execution failed -[2024-03-14T18:26:34.184Z] Cell 8: Cell execution caused an exception -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] Input: -[2024-03-14T18:26:34.184Z] terrain_resp = wps.terrain_analysis( -[2024-03-14T18:26:34.184Z] shape=basin_contour, select_all_touching=True, projected_crs=3978 -[2024-03-14T18:26:34.184Z] ) -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] properties, dem0 = terrain_resp.get(asobj=True) -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] elevation = properties[0]["elevation"] -[2024-03-14T18:26:34.184Z] slope = properties[0]["slope"] -[2024-03-14T18:26:34.184Z] aspect = properties[0]["aspect"] -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] terrain = {"elevation": elevation, "slope": slope, "aspect": aspect} -[2024-03-14T18:26:34.184Z] display(terrain) -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] Traceback: -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.184Z] AttributeError Traceback (most recent call last) -[2024-03-14T18:26:34.184Z] Cell In[1], line 5 -[2024-03-14T18:26:34.184Z]  1 terrain_resp = wps.terrain_analysis( -[2024-03-14T18:26:34.184Z]  2 shape=basin_contour, select_all_touching=True, projected_crs=3978 -[2024-03-14T18:26:34.184Z]  3 ) -[2024-03-14T18:26:34.184Z] ----> 5 properties, dem0 = terrain_resp.get(asobj=True) -[2024-03-14T18:26:34.184Z]  7 elevation = properties[0]["elevation"] -[2024-03-14T18:26:34.184Z]  8 slope = properties[0]["slope"] -[2024-03-14T18:26:34.184Z] -[2024-03-14T18:26:34.184Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:41, in WPSResult.get(self, asobj) -[2024-03-14T18:26:34.184Z]  38 if not self.isSucceded(): -[2024-03-14T18:26:34.185Z]  39 # TODO: add reason for failure -[2024-03-14T18:26:34.185Z]  40 raise ProcessFailed("Sorry, process failed.") -[2024-03-14T18:26:34.185Z] ---> 41 return self._make_output(asobj) -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in WPSResult._make_output(self, convert_objects) -[2024-03-14T18:26:34.185Z]  44 Output = namedtuple( -[2024-03-14T18:26:34.185Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-14T18:26:34.185Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-14T18:26:34.185Z]  47 ) -[2024-03-14T18:26:34.185Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-14T18:26:34.185Z]  49 return Output( -[2024-03-14T18:26:34.185Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-14T18:26:34.185Z]  51 ) -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:50, in (.0) -[2024-03-14T18:26:34.185Z]  44 Output = namedtuple( -[2024-03-14T18:26:34.185Z]  45 sanitize(self.process.identifier) + "Response", -[2024-03-14T18:26:34.185Z]  46 [sanitize(o.identifier) for o in self.processOutputs], -[2024-03-14T18:26:34.185Z]  47 ) -[2024-03-14T18:26:34.185Z]  48 Output.__repr__ = utils.pretty_repr -[2024-03-14T18:26:34.185Z]  49 return Output( -[2024-03-14T18:26:34.185Z] ---> 50 *[self._process_output(o, convert_objects) for o in self.processOutputs] -[2024-03-14T18:26:34.185Z]  51 ) -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/outputs.py:71, in WPSResult._process_output(self, output, convert_objects) -[2024-03-14T18:26:34.185Z]  68 return delist(data) -[2024-03-14T18:26:34.185Z]  70 if convert_objects: -[2024-03-14T18:26:34.185Z] ---> 71 return convert(output, self._path, self._converters, self.auth.verify) -[2024-03-14T18:26:34.185Z]  72 else: -[2024-03-14T18:26:34.185Z]  73 return output.reference -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:374, in convert(output, path, converters, verify) -[2024-03-14T18:26:34.185Z]  372 try: -[2024-03-14T18:26:34.185Z]  373 converter = cls(output, path=path, verify=verify) -[2024-03-14T18:26:34.185Z] --> 374 out = converter.convert() -[2024-03-14T18:26:34.185Z]  375 if converter.nested: # Then the output is a list of files. -[2024-03-14T18:26:34.185Z]  376 out = [convert(o, path) for o in out] -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.185Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/birdy/client/converters.py:266, in GeotiffRioxarrayConverter.convert(self) -[2024-03-14T18:26:34.185Z]  263 import xarray # isort: skip -[2024-03-14T18:26:34.185Z]  264 import rioxarray # noqa -[2024-03-14T18:26:34.185Z] --> 266 return xarray.open_rasterio(self.file) -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.185Z] AttributeError: module 'xarray' has no attribute 'open_rasterio' -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.185Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 _ -[2024-03-14T18:26:34.185Z] Notebook cell execution failed -[2024-03-14T18:26:34.185Z] Cell 9: Cell execution caused an exception -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.185Z] Input: -[2024-03-14T18:26:34.185Z] all_properties = {**shape_info, **land_use, **terrain} -[2024-03-14T18:26:34.185Z] display(all_properties) -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.185Z] Traceback: -[2024-03-14T18:26:34.185Z] -[2024-03-14T18:26:34.186Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.186Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.186Z] Cell In[1], line 1 -[2024-03-14T18:26:34.186Z] ----> 1 all_properties = {**shape_info, **land_use, **terrain} -[2024-03-14T18:26:34.186Z]  2 display(all_properties) -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] NameError: name 'land_use' is not defined -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ -[2024-03-14T18:26:34.186Z] Notebook cell execution failed -[2024-03-14T18:26:34.186Z] Cell 10: Cell execution caused an exception -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] Input: -[2024-03-14T18:26:34.186Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. -[2024-03-14T18:26:34.186Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" -[2024-03-14T18:26:34.186Z] cat = intake.open_catalog(catalog_name) -[2024-03-14T18:26:34.186Z] ds = cat.era5_reanalysis_single_levels.to_dask() -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] """ -[2024-03-14T18:26:34.186Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, -[2024-03-14T18:26:34.186Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total -[2024-03-14T18:26:34.186Z] precipitation. -[2024-03-14T18:26:34.186Z] """ -[2024-03-14T18:26:34.186Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, -[2024-03-14T18:26:34.186Z] # such as units and variable names. -[2024-03-14T18:26:34.186Z] with xr.set_options(keep_attrs=True): -[2024-03-14T18:26:34.186Z] ERA5_reference = subset.subset_shape( -[2024-03-14T18:26:34.186Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour -[2024-03-14T18:26:34.186Z] ) -[2024-03-14T18:26:34.186Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) -[2024-03-14T18:26:34.186Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) -[2024-03-14T18:26:34.186Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] # Change the units -[2024-03-14T18:26:34.186Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C -[2024-03-14T18:26:34.186Z] ERA5_tmin.attrs["units"] = "degC" -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C -[2024-03-14T18:26:34.186Z] ERA5_tmax.attrs["units"] = "degC" -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] ERA5_pr = ERA5_pr * 1000 # m to mm -[2024-03-14T18:26:34.186Z] ERA5_pr.attrs["units"] = "mm" -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] # Average the variables spatially -[2024-03-14T18:26:34.186Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-03-14T18:26:34.186Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-03-14T18:26:34.186Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-14T18:26:34.186Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-14T18:26:34.186Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-14T18:26:34.186Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-03-14T18:26:34.186Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the -[2024-03-14T18:26:34.186Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. -[2024-03-14T18:26:34.186Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) -[2024-03-14T18:26:34.186Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] Traceback: -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.186Z] KeyError Traceback (most recent call last) -[2024-03-14T18:26:34.186Z] Cell In[1], line 37 -[2024-03-14T18:26:34.186Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-14T18:26:34.186Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-14T18:26:34.186Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-14T18:26:34.186Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-14T18:26:34.186Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-14T18:26:34.186Z] -[2024-03-14T18:26:34.186Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-03-14T18:26:34.186Z]  851 self.coords[key] = value -[2024-03-14T18:26:34.186Z]  852 else: -[2024-03-14T18:26:34.186Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-03-14T18:26:34.186Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-03-14T18:26:34.186Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-03-14T18:26:34.186Z] --> 856 obj = self[key] -[2024-03-14T18:26:34.187Z]  857 if isinstance(value, DataArray): -[2024-03-14T18:26:34.187Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-03-14T18:26:34.187Z] -[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-03-14T18:26:34.187Z]  844 return self._getitem_coord(key) -[2024-03-14T18:26:34.187Z]  845 else: -[2024-03-14T18:26:34.187Z]  846 # xarray-style array indexing -[2024-03-14T18:26:34.187Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-03-14T18:26:34.187Z] -[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-03-14T18:26:34.187Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-03-14T18:26:34.187Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-03-14T18:26:34.187Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-03-14T18:26:34.187Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-03-14T18:26:34.187Z]  1447  ) -[2024-03-14T18:26:34.187Z]  1448 return self._from_temp_dataset(ds) -[2024-03-14T18:26:34.187Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-03-14T18:26:34.187Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-03-14T18:26:34.187Z] -[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-03-14T18:26:34.187Z]  2926 var_indexers = { -[2024-03-14T18:26:34.187Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-03-14T18:26:34.187Z]  2928 } -[2024-03-14T18:26:34.187Z]  2929 if var_indexers: -[2024-03-14T18:26:34.187Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-03-14T18:26:34.187Z]  2931 # drop scalar coordinates -[2024-03-14T18:26:34.187Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-03-14T18:26:34.187Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-03-14T18:26:34.187Z] -[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-03-14T18:26:34.187Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-03-14T18:26:34.187Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-03-14T18:26:34.187Z] -> 1368 return self[key] -[2024-03-14T18:26:34.187Z] -[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-03-14T18:26:34.187Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-03-14T18:26:34.187Z]  879  """Return a new Variable object whose contents are consistent with -[2024-03-14T18:26:34.187Z]  880  getting the provided key from the underlying data. -[2024-03-14T18:26:34.187Z]  881 -[2024-03-14T18:26:34.187Z]  (...) -[2024-03-14T18:26:34.187Z]  889  array `x.values` directly. -[2024-03-14T18:26:34.187Z]  890  """ -[2024-03-14T18:26:34.187Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-03-14T18:26:34.187Z]  892 data = as_indexable(self._data)[indexer] -[2024-03-14T18:26:34.187Z]  893 if new_order: -[2024-03-14T18:26:34.187Z] -[2024-03-14T18:26:34.187Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-03-14T18:26:34.187Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-03-14T18:26:34.187Z]  722 return self._broadcast_indexes_basic(key) -[2024-03-14T18:26:34.188Z] --> 724 self._validate_indexers(key) -[2024-03-14T18:26:34.188Z]  725 # Detect it can be mapped as an outer indexer -[2024-03-14T18:26:34.188Z]  726 # If all key is unlabeled, or -[2024-03-14T18:26:34.188Z]  727 # key can be mapped as an OuterIndexer. -[2024-03-14T18:26:34.188Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-03-14T18:26:34.188Z] -[2024-03-14T18:26:34.188Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-03-14T18:26:34.188Z]  771 raise IndexError( -[2024-03-14T18:26:34.188Z]  772 "{}-dimensional boolean indexing is " -[2024-03-14T18:26:34.188Z]  773 "not supported. ".format(k.ndim) -[2024-03-14T18:26:34.188Z]  774 ) -[2024-03-14T18:26:34.188Z]  775 if is_duck_dask_array(k.data): -[2024-03-14T18:26:34.188Z] --> 776 raise KeyError( -[2024-03-14T18:26:34.188Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-03-14T18:26:34.188Z]  778 "This will result in a dask array of unknown shape. " -[2024-03-14T18:26:34.188Z]  779 "Such arrays are unsupported by Xarray." -[2024-03-14T18:26:34.188Z]  780 "Please compute the indexer first using .compute()" -[2024-03-14T18:26:34.188Z]  781 ) -[2024-03-14T18:26:34.188Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-03-14T18:26:34.188Z]  783 raise IndexError( -[2024-03-14T18:26:34.188Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-03-14T18:26:34.188Z]  785 "same dimension to the indexed array. Indexer is " -[2024-03-14T18:26:34.188Z]  (...) -[2024-03-14T18:26:34.188Z]  788 ) -[2024-03-14T18:26:34.188Z]  789 ) -[2024-03-14T18:26:34.188Z] -[2024-03-14T18:26:34.188Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-03-14T18:26:34.188Z] -[2024-03-14T18:26:34.188Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ -[2024-03-14T18:26:34.188Z] Notebook cell execution failed -[2024-03-14T18:26:34.188Z] Cell 11: Cell execution caused an exception -[2024-03-14T18:26:34.188Z] -[2024-03-14T18:26:34.188Z] Input: -[2024-03-14T18:26:34.188Z] # Climate model to use -[2024-03-14T18:26:34.188Z] climate_model = "MIROC6" -[2024-03-14T18:26:34.188Z] -[2024-03-14T18:26:34.188Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. -[2024-03-14T18:26:34.188Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") -[2024-03-14T18:26:34.188Z] col = intake.open_esm_datastore( -[2024-03-14T18:26:34.188Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" -[2024-03-14T18:26:34.188Z] ) -[2024-03-14T18:26:34.188Z] -[2024-03-14T18:26:34.188Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. -[2024-03-14T18:26:34.188Z] with xr.set_options(keep_attrs=True): -[2024-03-14T18:26:34.188Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. -[2024-03-14T18:26:34.188Z] out = {} -[2024-03-14T18:26:34.188Z] for exp in ["historical", "ssp585"]: -[2024-03-14T18:26:34.188Z] if exp == "historical": -[2024-03-14T18:26:34.188Z] period_start = reference_start_day -[2024-03-14T18:26:34.188Z] period_end = reference_end_day -[2024-03-14T18:26:34.188Z] else: -[2024-03-14T18:26:34.188Z] period_start = future_start_day -[2024-03-14T18:26:34.188Z] period_end = future_end_day -[2024-03-14T18:26:34.188Z] -[2024-03-14T18:26:34.188Z] out[exp] = {} -[2024-03-14T18:26:34.188Z] for variable in ["tasmin", "tasmax", "pr"]: -[2024-03-14T18:26:34.188Z] print(exp, variable) -[2024-03-14T18:26:34.188Z] query = dict( -[2024-03-14T18:26:34.188Z] experiment_id=exp, -[2024-03-14T18:26:34.188Z] table_id="day", -[2024-03-14T18:26:34.188Z] variable_id=variable, -[2024-03-14T18:26:34.188Z] member_id="r1i1p1f1", -[2024-03-14T18:26:34.188Z] source_id=climate_model, -[2024-03-14T18:26:34.188Z] ) -[2024-03-14T18:26:34.188Z] col_subset = col.search(require_all_on=["source_id"], **query) -[2024-03-14T18:26:34.188Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) -[2024-03-14T18:26:34.188Z] -[2024-03-14T18:26:34.188Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. -[2024-03-14T18:26:34.188Z] if variable == "pr": -[2024-03-14T18:26:34.188Z] out[exp][variable] = average.average_shape( -[2024-03-14T18:26:34.188Z] xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-14T18:26:34.188Z] time=slice(period_start, period_end) -[2024-03-14T18:26:34.188Z] )[variable], -[2024-03-14T18:26:34.188Z] basin_contour, -[2024-03-14T18:26:34.188Z] ).chunk(-1) -[2024-03-14T18:26:34.188Z] else: -[2024-03-14T18:26:34.188Z] out[exp][variable] = average.average_shape( -[2024-03-14T18:26:34.188Z] xr.open_zarr(mapper, consolidated=True) -[2024-03-14T18:26:34.188Z] .sel(time=slice(period_start, period_end)) -[2024-03-14T18:26:34.188Z] .reset_coords("height", drop=True)[variable], -[2024-03-14T18:26:34.188Z] basin_contour, -[2024-03-14T18:26:34.188Z] ).chunk(-1) -[2024-03-14T18:26:34.188Z] -[2024-03-14T18:26:34.188Z] # We can now extract the variables that we will need later: -[2024-03-14T18:26:34.188Z] historical_tasmax = out["historical"]["tasmax"] -[2024-03-14T18:26:34.189Z] historical_tasmin = out["historical"]["tasmin"] -[2024-03-14T18:26:34.189Z] historical_pr = out["historical"]["pr"] -[2024-03-14T18:26:34.189Z] future_tasmax = out["ssp585"]["tasmax"] -[2024-03-14T18:26:34.189Z] future_tasmin = out["ssp585"]["tasmin"] -[2024-03-14T18:26:34.189Z] future_pr = out["ssp585"]["pr"] -[2024-03-14T18:26:34.189Z] -[2024-03-14T18:26:34.189Z] Traceback: -[2024-03-14T18:26:34.189Z] -[2024-03-14T18:26:34.189Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.189Z] KeyError Traceback (most recent call last) -[2024-03-14T18:26:34.189Z] Cell In[1], line 44 -[2024-03-14T18:26:34.189Z]  37 out[exp][variable] = average.average_shape( -[2024-03-14T18:26:34.189Z]  38 xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-14T18:26:34.189Z]  39 time=slice(period_start, period_end) -[2024-03-14T18:26:34.189Z]  40 )[variable], -[2024-03-14T18:26:34.189Z]  41 basin_contour, -[2024-03-14T18:26:34.189Z]  42 ).chunk(-1) -[2024-03-14T18:26:34.189Z]  43 else: -[2024-03-14T18:26:34.189Z] ---> 44 out[exp][variable] = average.average_shape( -[2024-03-14T18:26:34.189Z]  45  xr.open_zarr(mapper, consolidated=True) -[2024-03-14T18:26:34.189Z]  46  .sel(time=slice(period_start, period_end)) -[2024-03-14T18:26:34.189Z]  47  .reset_coords("height", drop=True)[variable], -[2024-03-14T18:26:34.189Z]  48  basin_contour, -[2024-03-14T18:26:34.189Z]  49  ).chunk(-1) -[2024-03-14T18:26:34.189Z]  51 # We can now extract the variables that we will need later: -[2024-03-14T18:26:34.189Z]  52 historical_tasmax = out["historical"]["tasmax"] -[2024-03-14T18:26:34.189Z] -[2024-03-14T18:26:34.189Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) -[2024-03-14T18:26:34.189Z]  105 ds_sub = ds_copy.isel(indexer) -[2024-03-14T18:26:34.189Z]  107 # Compute the weights -[2024-03-14T18:26:34.189Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) -[2024-03-14T18:26:34.189Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. -[2024-03-14T18:26:34.189Z]  111 nonnull = ( -[2024-03-14T18:26:34.189Z]  112 savger.weights.data.nnz -[2024-03-14T18:26:34.189Z]  113 if isinstance(savger.weights, xr.DataArray) -[2024-03-14T18:26:34.189Z]  114 else savger.weights.nnz -[2024-03-14T18:26:34.189Z]  115 ) -[2024-03-14T18:26:34.189Z] -[2024-03-14T18:26:34.189Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) -[2024-03-14T18:26:34.189Z]  1182 if isinstance(ds_in, xr.DataArray): -[2024-03-14T18:26:34.189Z]  1183 ds_in = ds_in._to_temp_dataset() -[2024-03-14T18:26:34.189Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) -[2024-03-14T18:26:34.189Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. -[2024-03-14T18:26:34.189Z]  1188 # Latitude and longitude coordinates are the polygon centroid. -[2024-03-14T18:26:34.189Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) -[2024-03-14T18:26:34.189Z] -[2024-03-14T18:26:34.189Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) -[2024-03-14T18:26:34.189Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) -[2024-03-14T18:26:34.189Z]  166 if need_bounds: -[2024-03-14T18:26:34.189Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) -[2024-03-14T18:26:34.189Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) -[2024-03-14T18:26:34.189Z]  169 add_corner(grid, lon_b.T, lat_b.T) -[2024-03-14T18:26:34.189Z] -[2024-03-14T18:26:34.190Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) -[2024-03-14T18:26:34.190Z]  105 lat_bnds = ds.cf.get_bounds('latitude') -[2024-03-14T18:26:34.190Z]  107 # Convert from CF bounds to xESMF bounds. -[2024-03-14T18:26:34.190Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. -[2024-03-14T18:26:34.190Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) -[2024-03-14T18:26:34.190Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) -[2024-03-14T18:26:34.190Z]  111 return lon_b, lat_b -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) -[2024-03-14T18:26:34.190Z]  2400 filtered = [ -[2024-03-14T18:26:34.190Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs -[2024-03-14T18:26:34.190Z]  2402 ] -[2024-03-14T18:26:34.190Z]  2403 if len(filtered) > 1: -[2024-03-14T18:26:34.190Z] -> 2404 raise KeyError( -[2024-03-14T18:26:34.190Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " -[2024-03-14T18:26:34.190Z]  2406 ) -[2024-03-14T18:26:34.190Z]  2408 (crd_name,) = filtered -[2024-03-14T18:26:34.190Z]  2409 crd = variables[crd_name] -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon', 'lon_bounds'] " -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ -[2024-03-14T18:26:34.190Z] Notebook cell execution failed -[2024-03-14T18:26:34.190Z] Cell 12: Cell execution caused an exception -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] Input: -[2024-03-14T18:26:34.190Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-14T18:26:34.190Z] # and make sure everything is consistent. -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] # Let's start with precipitation: -[2024-03-14T18:26:34.190Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-14T18:26:34.190Z] historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-14T18:26:34.190Z] future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] # Now we can actually convert units in absolute terms. -[2024-03-14T18:26:34.190Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") -[2024-03-14T18:26:34.190Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] # Now let's do temperature: -[2024-03-14T18:26:34.190Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") -[2024-03-14T18:26:34.190Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") -[2024-03-14T18:26:34.190Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") -[2024-03-14T18:26:34.190Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] Traceback: -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.190Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.190Z] Cell In[1], line 6 -[2024-03-14T18:26:34.190Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-14T18:26:34.190Z]  2 # and make sure everything is consistent. -[2024-03-14T18:26:34.190Z]  3 -[2024-03-14T18:26:34.190Z]  4 # Let's start with precipitation: -[2024-03-14T18:26:34.190Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-14T18:26:34.190Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-14T18:26:34.190Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-14T18:26:34.190Z]  9 # Now we can actually convert units in absolute terms. -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] NameError: name 'historical_pr' is not defined -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ -[2024-03-14T18:26:34.190Z] Notebook cell execution failed -[2024-03-14T18:26:34.190Z] Cell 13: Cell execution caused an exception -[2024-03-14T18:26:34.190Z] -[2024-03-14T18:26:34.190Z] Input: -[2024-03-14T18:26:34.190Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. -[2024-03-14T18:26:34.191Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-14T18:26:34.191Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-14T18:26:34.191Z] ref=ERA5_weather.pr, -[2024-03-14T18:26:34.191Z] hist=historical_pr, -[2024-03-14T18:26:34.191Z] nquantiles=50, -[2024-03-14T18:26:34.191Z] kind="+", -[2024-03-14T18:26:34.191Z] group=group_month_window, -[2024-03-14T18:26:34.191Z] ) -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Apply the correction factors on the reference period -[2024-03-14T18:26:34.191Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Apply the correction factors on the future period -[2024-03-14T18:26:34.191Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Ensure that the precipitation is non-negative, which can happen with some climate models -[2024-03-14T18:26:34.191Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) -[2024-03-14T18:26:34.191Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data -[2024-03-14T18:26:34.191Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-14T18:26:34.191Z] ref=ERA5_weather.tmax, -[2024-03-14T18:26:34.191Z] hist=historical_tasmax, -[2024-03-14T18:26:34.191Z] nquantiles=50, -[2024-03-14T18:26:34.191Z] kind="+", -[2024-03-14T18:26:34.191Z] group=group_month_window, -[2024-03-14T18:26:34.191Z] ) -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Apply the correction factors on the reference period -[2024-03-14T18:26:34.191Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Apply the correction factors on the future period -[2024-03-14T18:26:34.191Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data -[2024-03-14T18:26:34.191Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-14T18:26:34.191Z] ref=ERA5_weather.tmin, -[2024-03-14T18:26:34.191Z] hist=historical_tasmin, -[2024-03-14T18:26:34.191Z] nquantiles=50, -[2024-03-14T18:26:34.191Z] kind="+", -[2024-03-14T18:26:34.191Z] group=group_month_window, -[2024-03-14T18:26:34.191Z] ) -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Apply the correction factors on the reference period -[2024-03-14T18:26:34.191Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Apply the correction factors on the future period -[2024-03-14T18:26:34.191Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] Traceback: -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.191Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.191Z] Cell In[1], line 6 -[2024-03-14T18:26:34.191Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-14T18:26:34.191Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-14T18:26:34.191Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-14T18:26:34.191Z] ----> 6 ref=ERA5_weather.pr, -[2024-03-14T18:26:34.191Z]  7 hist=historical_pr, -[2024-03-14T18:26:34.191Z]  8 nquantiles=50, -[2024-03-14T18:26:34.191Z]  9 kind="+", -[2024-03-14T18:26:34.191Z]  10 group=group_month_window, -[2024-03-14T18:26:34.191Z]  11 ) -[2024-03-14T18:26:34.191Z]  13 # Apply the correction factors on the reference period -[2024-03-14T18:26:34.191Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] NameError: name 'ERA5_weather' is not defined -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ -[2024-03-14T18:26:34.191Z] Notebook cell execution failed -[2024-03-14T18:26:34.191Z] Cell 14: Cell execution caused an exception -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] Input: -[2024-03-14T18:26:34.191Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-14T18:26:34.191Z] ref_dataset = xr.merge( -[2024-03-14T18:26:34.191Z] [ -[2024-03-14T18:26:34.191Z] corrected_ref_precip.to_dataset(name="pr"), -[2024-03-14T18:26:34.191Z] corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-14T18:26:34.191Z] corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-14T18:26:34.191Z] ] -[2024-03-14T18:26:34.191Z] ) -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Write to temporary folder -[2024-03-14T18:26:34.191Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-14T18:26:34.191Z] ref_dataset.to_netcdf(fn_tmp_ref) -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Convert the future corrected data into netCDF file -[2024-03-14T18:26:34.191Z] fut_dataset = xr.merge( -[2024-03-14T18:26:34.191Z] [ -[2024-03-14T18:26:34.191Z] corrected_fut_precip.to_dataset(name="pr"), -[2024-03-14T18:26:34.191Z] corrected_fut_tasmax.to_dataset(name="tasmax"), -[2024-03-14T18:26:34.191Z] corrected_fut_tasmin.to_dataset(name="tasmin"), -[2024-03-14T18:26:34.191Z] ] -[2024-03-14T18:26:34.191Z] ) -[2024-03-14T18:26:34.191Z] # Write to temporary folder -[2024-03-14T18:26:34.191Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" -[2024-03-14T18:26:34.191Z] fut_dataset.to_netcdf(fn_tmp_fut) -[2024-03-14T18:26:34.191Z] -[2024-03-14T18:26:34.191Z] # Write the data to disk to a temporary location for future use. -[2024-03-14T18:26:34.192Z] ref_dataset = xr.open_dataset(fn_tmp_ref) -[2024-03-14T18:26:34.192Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] fut_dataset = xr.open_dataset(fn_tmp_fut) -[2024-03-14T18:26:34.192Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] Traceback: -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.192Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.192Z] Cell In[1], line 4 -[2024-03-14T18:26:34.192Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-14T18:26:34.192Z]  2 ref_dataset = xr.merge( -[2024-03-14T18:26:34.192Z]  3 [ -[2024-03-14T18:26:34.192Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), -[2024-03-14T18:26:34.192Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-14T18:26:34.192Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-14T18:26:34.192Z]  7 ] -[2024-03-14T18:26:34.192Z]  8 ) -[2024-03-14T18:26:34.192Z]  10 # Write to temporary folder -[2024-03-14T18:26:34.192Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] NameError: name 'corrected_ref_precip' is not defined -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ -[2024-03-14T18:26:34.192Z] Notebook cell execution failed -[2024-03-14T18:26:34.192Z] Cell 15: Cell execution caused an exception -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] Input: -[2024-03-14T18:26:34.192Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-03-14T18:26:34.192Z] # populate the fields for the HRU. -[2024-03-14T18:26:34.192Z] hru = {} -[2024-03-14T18:26:34.192Z] hru = dict( -[2024-03-14T18:26:34.192Z] area=all_properties["area"], -[2024-03-14T18:26:34.192Z] elevation=all_properties["elevation"], -[2024-03-14T18:26:34.192Z] latitude=all_properties["latitude"], -[2024-03-14T18:26:34.192Z] longitude=all_properties["longitude"], -[2024-03-14T18:26:34.192Z] hru_type="land", -[2024-03-14T18:26:34.192Z] ) -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-03-14T18:26:34.192Z] # will simply execute the model which has been pre-configured to run on this period. -[2024-03-14T18:26:34.192Z] start_date = dt.datetime(1981, 1, 1) -[2024-03-14T18:26:34.192Z] end_date = dt.datetime(1985, 12, 31) -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. -[2024-03-14T18:26:34.192Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] # Alternative variable names as described in the tutorial. -[2024-03-14T18:26:34.192Z] alt_names = { -[2024-03-14T18:26:34.192Z] "TEMP_MIN": "tmin", -[2024-03-14T18:26:34.192Z] "TEMP_MAX": "tmax", -[2024-03-14T18:26:34.192Z] "PRECIP": "pr", -[2024-03-14T18:26:34.192Z] } -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here -[2024-03-14T18:26:34.192Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. -[2024-03-14T18:26:34.192Z] data_kwds = { -[2024-03-14T18:26:34.192Z] "ALL": { -[2024-03-14T18:26:34.192Z] "elevation": hru["elevation"], -[2024-03-14T18:26:34.192Z] "latitude": hru["latitude"], -[2024-03-14T18:26:34.192Z] "longitude": hru["longitude"], -[2024-03-14T18:26:34.192Z] } -[2024-03-14T18:26:34.192Z] } -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] # Give a name to the simulation -[2024-03-14T18:26:34.192Z] run_name = "Paper_example_simulation" -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] # Setup the gauge object that includes meteorological data from ERA5 -[2024-03-14T18:26:34.192Z] gauge = [ -[2024-03-14T18:26:34.192Z] rc.Gauge.from_nc( -[2024-03-14T18:26:34.192Z] tmp -[2024-03-14T18:26:34.192Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-03-14T18:26:34.192Z] data_type=data_type, # Note that this is the list of all the variables -[2024-03-14T18:26:34.192Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-03-14T18:26:34.192Z] data_kwds=data_kwds, -[2024-03-14T18:26:34.192Z] ) -[2024-03-14T18:26:34.192Z] ] -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] # Read the streamflow from the HYSETS catchment data for this basin -[2024-03-14T18:26:34.192Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, -[2024-03-14T18:26:34.192Z] # and the optimizer will read it directly to calibrate. -[2024-03-14T18:26:34.192Z] eval_metrics = ("NASH_SUTCLIFFE",) -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] # Build the model configuration according to user preferences and inputs -[2024-03-14T18:26:34.192Z] model_config = GR4JCN( -[2024-03-14T18:26:34.192Z] ObservationData=discharge_data, -[2024-03-14T18:26:34.192Z] Gauge=gauge, -[2024-03-14T18:26:34.192Z] HRUs=[hru], -[2024-03-14T18:26:34.192Z] StartDate=start_date, -[2024-03-14T18:26:34.192Z] EndDate=end_date, -[2024-03-14T18:26:34.192Z] RunName=run_name, -[2024-03-14T18:26:34.192Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. -[2024-03-14T18:26:34.192Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. -[2024-03-14T18:26:34.192Z] ) -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] Traceback: -[2024-03-14T18:26:34.192Z] -[2024-03-14T18:26:34.192Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.192Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.192Z] Cell In[1], line 5 -[2024-03-14T18:26:34.192Z]  1 # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-03-14T18:26:34.193Z]  2 # populate the fields for the HRU. -[2024-03-14T18:26:34.193Z]  3 hru = {} -[2024-03-14T18:26:34.193Z]  4 hru = dict( -[2024-03-14T18:26:34.193Z] ----> 5 area=all_properties["area"], -[2024-03-14T18:26:34.193Z]  6 elevation=all_properties["elevation"], -[2024-03-14T18:26:34.193Z]  7 latitude=all_properties["latitude"], -[2024-03-14T18:26:34.193Z]  8 longitude=all_properties["longitude"], -[2024-03-14T18:26:34.193Z]  9 hru_type="land", -[2024-03-14T18:26:34.193Z]  10 ) -[2024-03-14T18:26:34.193Z]  12 # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-03-14T18:26:34.193Z]  13 # will simply execute the model which has been pre-configured to run on this period. -[2024-03-14T18:26:34.193Z]  14 start_date = dt.datetime(1981, 1, 1) -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] NameError: name 'all_properties' is not defined -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ -[2024-03-14T18:26:34.193Z] Notebook cell execution failed -[2024-03-14T18:26:34.193Z] Cell 16: Cell execution caused an exception -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] Input: -[2024-03-14T18:26:34.193Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, -[2024-03-14T18:26:34.193Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. -[2024-03-14T18:26:34.193Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) -[2024-03-14T18:26:34.193Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. -[2024-03-14T18:26:34.193Z] random_seed = 42 -[2024-03-14T18:26:34.193Z] np.random.seed(random_seed) -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] # Build the optimizer object -[2024-03-14T18:26:34.193Z] spot_setup = SpotSetup( -[2024-03-14T18:26:34.193Z] config=model_config, -[2024-03-14T18:26:34.193Z] low=low, -[2024-03-14T18:26:34.193Z] high=high, -[2024-03-14T18:26:34.193Z] ) -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-14T18:26:34.193Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-14T18:26:34.193Z] max_iterations = 200 -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer -[2024-03-14T18:26:34.193Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most -[2024-03-14T18:26:34.193Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation -[2024-03-14T18:26:34.193Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small -[2024-03-14T18:26:34.193Z] # evaluation budgets. For more details on DDS, see: -[2024-03-14T18:26:34.193Z] # -[2024-03-14T18:26:34.193Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water -[2024-03-14T18:26:34.193Z] # Resources Research, 43(1) -[2024-03-14T18:26:34.193Z] sampler = spotpy.algorithms.dds( -[2024-03-14T18:26:34.193Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False -[2024-03-14T18:26:34.193Z] ) -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and -[2024-03-14T18:26:34.193Z] # the best overall value from all trials is returned. -[2024-03-14T18:26:34.193Z] sampler.sample(max_iterations, trials=1) -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] # Get the model diagnostics -[2024-03-14T18:26:34.193Z] diag = spot_setup.diagnostics -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] # Get all the values of each iteration -[2024-03-14T18:26:34.193Z] results = sampler.getdata() -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] # Get the raw resutlts directly in an array -[2024-03-14T18:26:34.193Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( -[2024-03-14T18:26:34.193Z] results -[2024-03-14T18:26:34.193Z] ) # Want to get the MAX NSE (change for min for RMSE) -[2024-03-14T18:26:34.193Z] best_model_run = list( -[2024-03-14T18:26:34.193Z] results[bestindex][0] -[2024-03-14T18:26:34.193Z] ) # Get the parameter set returning the best NSE -[2024-03-14T18:26:34.193Z] optimized_parameters = best_model_run[ -[2024-03-14T18:26:34.193Z] 1:-1 -[2024-03-14T18:26:34.193Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] # Display the parameter set ready to use in a future run: -[2024-03-14T18:26:34.193Z] print(optimized_parameters) -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] Traceback: -[2024-03-14T18:26:34.193Z] -[2024-03-14T18:26:34.193Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.193Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.193Z] Cell In[1], line 12 -[2024-03-14T18:26:34.193Z]  8 np.random.seed(random_seed) -[2024-03-14T18:26:34.193Z]  10 # Build the optimizer object -[2024-03-14T18:26:34.193Z]  11 spot_setup = SpotSetup( -[2024-03-14T18:26:34.193Z] ---> 12 config=model_config, -[2024-03-14T18:26:34.193Z]  13 low=low, -[2024-03-14T18:26:34.193Z]  14 high=high, -[2024-03-14T18:26:34.193Z]  15 ) -[2024-03-14T18:26:34.193Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-14T18:26:34.193Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-14T18:26:34.194Z]  19 max_iterations = 200 -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] NameError: name 'model_config' is not defined -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ -[2024-03-14T18:26:34.194Z] Notebook cell execution failed -[2024-03-14T18:26:34.194Z] Cell 17: Cell execution caused an exception -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] Input: -[2024-03-14T18:26:34.194Z] # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-14T18:26:34.194Z] model_validation = model_config.duplicate( -[2024-03-14T18:26:34.194Z] params=optimized_parameters, -[2024-03-14T18:26:34.194Z] StartDate=dt.datetime(1986, 1, 1), -[2024-03-14T18:26:34.194Z] EndDate=dt.datetime(1990, 12, 31), -[2024-03-14T18:26:34.194Z] SuppressOutput=False, -[2024-03-14T18:26:34.194Z] ) -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] sim_output = Emulator(config=model_validation).run() -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-14T18:26:34.194Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] # Plot the model output -[2024-03-14T18:26:34.194Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") -[2024-03-14T18:26:34.194Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-14T18:26:34.194Z] plt.legend() -[2024-03-14T18:26:34.194Z] plt.title("Validation period - NSE=" + str(NSE[0])) -[2024-03-14T18:26:34.194Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-14T18:26:34.194Z] plt.grid() -[2024-03-14T18:26:34.194Z] plt.show() -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] Traceback: -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.194Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.194Z] Cell In[1], line 2 -[2024-03-14T18:26:34.194Z]  1 # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-14T18:26:34.194Z] ----> 2 model_validation = model_config.duplicate( -[2024-03-14T18:26:34.194Z]  3 params=optimized_parameters, -[2024-03-14T18:26:34.194Z]  4 StartDate=dt.datetime(1986, 1, 1), -[2024-03-14T18:26:34.194Z]  5 EndDate=dt.datetime(1990, 12, 31), -[2024-03-14T18:26:34.194Z]  6 SuppressOutput=False, -[2024-03-14T18:26:34.194Z]  7 ) -[2024-03-14T18:26:34.194Z]  9 sim_output = Emulator(config=model_validation).run() -[2024-03-14T18:26:34.194Z]  11 # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] NameError: name 'model_config' is not defined -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ -[2024-03-14T18:26:34.194Z] Notebook cell execution failed -[2024-03-14T18:26:34.194Z] Cell 18: Cell execution caused an exception -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] Input: -[2024-03-14T18:26:34.194Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-14T18:26:34.194Z] gauge_ref = [ -[2024-03-14T18:26:34.194Z] rc.Gauge.from_nc( -[2024-03-14T18:26:34.194Z] tmp -[2024-03-14T18:26:34.194Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-14T18:26:34.194Z] data_type=data_type, -[2024-03-14T18:26:34.194Z] alt_names=alt_names, -[2024-03-14T18:26:34.194Z] data_kwds=data_kwds, -[2024-03-14T18:26:34.194Z] ) -[2024-03-14T18:26:34.194Z] ] -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-14T18:26:34.194Z] model_config_reference = model_validation.duplicate( -[2024-03-14T18:26:34.194Z] Gauge=gauge_ref, -[2024-03-14T18:26:34.194Z] StartDate=reference_start_day -[2024-03-14T18:26:34.194Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-14T18:26:34.194Z] EndDate=reference_end_day, -[2024-03-14T18:26:34.194Z] ) -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] # Run the model from the configuration and get the outputs. -[2024-03-14T18:26:34.194Z] ref_output = Emulator(config=model_config_reference).run() -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] # Plot the model output. Note that both simulations should have similar hydrological -[2024-03-14T18:26:34.194Z] # regime but day-to-day variability is not expected to match. -[2024-03-14T18:26:34.194Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") -[2024-03-14T18:26:34.194Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-14T18:26:34.194Z] plt.legend() -[2024-03-14T18:26:34.194Z] plt.title("Reference period") -[2024-03-14T18:26:34.194Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-14T18:26:34.194Z] plt.grid() -[2024-03-14T18:26:34.194Z] plt.show() -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] Traceback: -[2024-03-14T18:26:34.194Z] -[2024-03-14T18:26:34.194Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.194Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.194Z] Cell In[1], line 6 -[2024-03-14T18:26:34.194Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-14T18:26:34.194Z]  2 gauge_ref = [ -[2024-03-14T18:26:34.194Z]  3 rc.Gauge.from_nc( -[2024-03-14T18:26:34.194Z]  4 tmp -[2024-03-14T18:26:34.195Z]  5 / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-14T18:26:34.195Z] ----> 6 data_type=data_type, -[2024-03-14T18:26:34.195Z]  7 alt_names=alt_names, -[2024-03-14T18:26:34.195Z]  8 data_kwds=data_kwds, -[2024-03-14T18:26:34.195Z]  9 ) -[2024-03-14T18:26:34.195Z]  10 ] -[2024-03-14T18:26:34.195Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-14T18:26:34.195Z]  13 model_config_reference = model_validation.duplicate( -[2024-03-14T18:26:34.195Z]  14 Gauge=gauge_ref, -[2024-03-14T18:26:34.195Z]  15 StartDate=reference_start_day -[2024-03-14T18:26:34.195Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-14T18:26:34.195Z]  17 EndDate=reference_end_day, -[2024-03-14T18:26:34.195Z]  18 ) -[2024-03-14T18:26:34.195Z] -[2024-03-14T18:26:34.195Z] NameError: name 'data_type' is not defined -[2024-03-14T18:26:34.195Z] -[2024-03-14T18:26:34.195Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ -[2024-03-14T18:26:34.195Z] Notebook cell execution failed -[2024-03-14T18:26:34.195Z] Cell 19: Cell execution caused an exception -[2024-03-14T18:26:34.195Z] -[2024-03-14T18:26:34.195Z] Input: -[2024-03-14T18:26:34.195Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-14T18:26:34.195Z] gauge_fut = [ -[2024-03-14T18:26:34.195Z] rc.Gauge.from_nc( -[2024-03-14T18:26:34.195Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-14T18:26:34.195Z] data_type=data_type, -[2024-03-14T18:26:34.195Z] alt_names=alt_names, -[2024-03-14T18:26:34.195Z] data_kwds=data_kwds, -[2024-03-14T18:26:34.195Z] ) -[2024-03-14T18:26:34.195Z] ] -[2024-03-14T18:26:34.195Z] -[2024-03-14T18:26:34.195Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-14T18:26:34.195Z] model_config_future = model_validation.duplicate( -[2024-03-14T18:26:34.195Z] Gauge=gauge_fut, -[2024-03-14T18:26:34.195Z] StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-14T18:26:34.195Z] EndDate=future_end_day, -[2024-03-14T18:26:34.195Z] ObservationData=None, # There are no observations for the future period. -[2024-03-14T18:26:34.195Z] ) -[2024-03-14T18:26:34.195Z] -[2024-03-14T18:26:34.195Z] # Run the model and get the outputs and hydrographs. -[2024-03-14T18:26:34.195Z] fut_output = Emulator(config=model_config_future).run() -[2024-03-14T18:26:34.195Z] -[2024-03-14T18:26:34.195Z] # Plot the model output -[2024-03-14T18:26:34.195Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") -[2024-03-14T18:26:34.195Z] plt.legend() -[2024-03-14T18:26:34.195Z] plt.title("Future period") -[2024-03-14T18:26:34.195Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-14T18:26:34.195Z] plt.grid() -[2024-03-14T18:26:34.196Z] plt.show() -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] Traceback: -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.196Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.196Z] Cell In[1], line 5 -[2024-03-14T18:26:34.196Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-14T18:26:34.196Z]  2 gauge_fut = [ -[2024-03-14T18:26:34.196Z]  3 rc.Gauge.from_nc( -[2024-03-14T18:26:34.196Z]  4 tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-14T18:26:34.196Z] ----> 5 data_type=data_type, -[2024-03-14T18:26:34.196Z]  6 alt_names=alt_names, -[2024-03-14T18:26:34.196Z]  7 data_kwds=data_kwds, -[2024-03-14T18:26:34.196Z]  8 ) -[2024-03-14T18:26:34.196Z]  9 ] -[2024-03-14T18:26:34.196Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-14T18:26:34.196Z]  12 model_config_future = model_validation.duplicate( -[2024-03-14T18:26:34.196Z]  13 Gauge=gauge_fut, -[2024-03-14T18:26:34.196Z]  14 StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-14T18:26:34.196Z]  15 EndDate=future_end_day, -[2024-03-14T18:26:34.196Z]  16 ObservationData=None, # There are no observations for the future period. -[2024-03-14T18:26:34.196Z]  17 ) -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] NameError: name 'data_type' is not defined -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ -[2024-03-14T18:26:34.196Z] Notebook cell execution failed -[2024-03-14T18:26:34.196Z] Cell 20: Cell execution caused an exception -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] Input: -[2024-03-14T18:26:34.196Z] # Extract the mean annual hydrograph for each simulation. -[2024-03-14T18:26:34.196Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-14T18:26:34.196Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-14T18:26:34.196Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-14T18:26:34.196Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] # Plot the model output -[2024-03-14T18:26:34.196Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") -[2024-03-14T18:26:34.196Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") -[2024-03-14T18:26:34.196Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") -[2024-03-14T18:26:34.196Z] future_flows.plot(color="red", label="Future", x="dayofyear") -[2024-03-14T18:26:34.196Z] plt.legend() -[2024-03-14T18:26:34.196Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-14T18:26:34.196Z] plt.xlabel("Day of year") -[2024-03-14T18:26:34.196Z] plt.xlim([0, 365]) -[2024-03-14T18:26:34.196Z] plt.title("Comparison of mean annual hydrographs") -[2024-03-14T18:26:34.196Z] plt.grid() -[2024-03-14T18:26:34.196Z] plt.show() -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] Traceback: -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] --------------------------------------------------------------------------- -[2024-03-14T18:26:34.196Z] NameError Traceback (most recent call last) -[2024-03-14T18:26:34.196Z] Cell In[1], line 2 -[2024-03-14T18:26:34.196Z]  1 # Extract the mean annual hydrograph for each simulation. -[2024-03-14T18:26:34.196Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-14T18:26:34.196Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-14T18:26:34.196Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] NameError: name 'ref_output' is not defined -[2024-03-14T18:26:34.196Z] -[2024-03-14T18:26:34.196Z] =========================== short test summary info ============================ -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 6 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 10 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 13 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 7 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 8 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 9 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 -[2024-03-14T18:26:34.197Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 -[2024-03-14T18:26:34.197Z] ================== 33 failed, 209 passed in 824.70s (0:13:44) ================== -[2024-03-14T18:26:34.459Z] + EXIT_CODE=1 -[2024-03-14T18:26:34.459Z] + tr [:upper:] [:lower:] -[2024-03-14T18:26:34.459Z] + echo true -[2024-03-14T18:26:34.459Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-14T18:26:34.459Z] + [ xtrue = xtrue ] -[2024-03-14T18:26:34.459Z] + mkdir -p buildout -[2024-03-14T18:26:34.459Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-14T18:26:34.459Z] + filename=Region_selection.ipynb -[2024-03-14T18:26:34.459Z] + echo Region_selection.ipynb -[2024-03-14T18:26:34.459Z] + sed s/.ipynb$// -[2024-03-14T18:26:34.459Z] + filename=Region_selection -[2024-03-14T18:26:34.459Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-03-14T18:26:34.459Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-14T18:26:36.352Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-03-14T18:26:46.328Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb -[2024-03-14T18:26:46.589Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-14T18:26:46.589Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-03-14T18:26:46.589Z] + echo Subset_climate_data_over_watershed.ipynb+ -[2024-03-14T18:26:46.589Z] sed s/.ipynb$// -[2024-03-14T18:26:46.589Z] + filename=Subset_climate_data_over_watershed -[2024-03-14T18:26:46.589Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-03-14T18:26:46.589Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-14T18:26:48.504Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-03-14T18:27:03.408Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-03-14T18:27:03.408Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-14T18:27:03.408Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-03-14T18:27:03.408Z] + echo 00_Introduction_to_JupyterLab.ipynb -[2024-03-14T18:27:03.408Z] + sed s/.ipynb$// -[2024-03-14T18:27:03.408Z] + filename=00_Introduction_to_JupyterLab -[2024-03-14T18:27:03.408Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-03-14T18:27:03.408Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-14T18:27:04.895Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-03-14T18:27:07.430Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-03-14T18:27:07.430Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-14T18:27:07.430Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-03-14T18:27:07.430Z] + echo 01_Getting_watershed_boundaries.ipynb -[2024-03-14T18:27:07.430Z] + sed s/.ipynb$// -[2024-03-14T18:27:07.430Z] + filename=01_Getting_watershed_boundaries -[2024-03-14T18:27:07.430Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-03-14T18:27:07.430Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-14T18:27:09.333Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-03-14T18:27:19.339Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-03-14T18:27:19.598Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-14T18:27:19.598Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-03-14T18:27:19.598Z] + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-03-14T18:27:19.598Z] + sed s/.ipynb$// -[2024-03-14T18:27:19.598Z] + filename=02_Extract_geographical_watershed_properties -[2024-03-14T18:27:19.598Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-03-14T18:27:19.598Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-14T18:27:20.973Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-03-14T18:27:39.132Z] [NbConvertApp] Writing 95487 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-03-14T18:27:39.132Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-14T18:27:39.132Z] + filename=03_Extracting_forcing_data.ipynb -[2024-03-14T18:27:39.132Z] + echo 03_Extracting_forcing_data.ipynb -[2024-03-14T18:27:39.132Z] + sed s/.ipynb$// -[2024-03-14T18:27:39.132Z] + filename=03_Extracting_forcing_data -[2024-03-14T18:27:39.132Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-03-14T18:27:39.132Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-14T18:27:39.132Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-03-14T18:29:15.610Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-03-14T18:29:15.610Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-14T18:29:15.610Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-03-14T18:29:15.610Z] + echo 04_Emulating_hydrological_models.ipynb -[2024-03-14T18:29:15.610Z] + sed s/.ipynb$// -[2024-03-14T18:29:15.610Z] + filename=04_Emulating_hydrological_models -[2024-03-14T18:29:15.611Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-03-14T18:29:15.611Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-14T18:29:16.990Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-03-14T18:29:31.990Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-03-14T18:29:31.990Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-14T18:29:31.990Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-03-14T18:29:31.990Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-03-14T18:29:31.990Z] + sed s/.ipynb$// -[2024-03-14T18:29:31.990Z] + filename=05_Advanced_RavenPy_configuration -[2024-03-14T18:29:31.990Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-03-14T18:29:31.990Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-14T18:29:32.252Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-03-14T18:29:50.355Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-03-14T18:29:50.355Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-14T18:29:50.355Z] + filename=06_Raven_calibration.ipynb -[2024-03-14T18:29:50.355Z] + echo 06_Raven_calibration.ipynb -[2024-03-14T18:29:50.355Z] + sed s/.ipynb$// -[2024-03-14T18:29:50.355Z] + filename=06_Raven_calibration -[2024-03-14T18:29:50.355Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-03-14T18:29:50.355Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-14T18:29:51.302Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-03-14T18:30:03.536Z] [NbConvertApp] Writing 24091 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-03-14T18:30:03.536Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-14T18:30:03.536Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-03-14T18:30:03.536Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-03-14T18:30:03.536Z] + sed s/.ipynb$// -[2024-03-14T18:30:03.536Z] + filename=07_Making_and_using_hotstart_files -[2024-03-14T18:30:03.536Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-03-14T18:30:03.536Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-14T18:30:03.536Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-03-14T18:30:15.752Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-03-14T18:30:15.752Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-14T18:30:15.752Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-14T18:30:15.752Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-14T18:30:15.752Z] + sed s/.ipynb$// -[2024-03-14T18:30:15.752Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-03-14T18:30:15.752Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-03-14T18:30:15.753Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-14T18:30:17.143Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-03-14T18:34:08.675Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb -[2024-03-14T18:34:08.675Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-14T18:34:08.675Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-14T18:34:08.675Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-14T18:34:08.675Z] + sed s/.ipynb$// -[2024-03-14T18:34:08.675Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-03-14T18:34:08.675Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-03-14T18:34:08.675Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-14T18:34:08.675Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-03-14T18:34:20.895Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-03-14T18:34:20.895Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-14T18:34:20.895Z] + filename=10_Data_assimilation.ipynb -[2024-03-14T18:34:20.895Z] + + echo 10_Data_assimilation.ipynb -[2024-03-14T18:34:20.895Z] sed s/.ipynb$// -[2024-03-14T18:34:20.895Z] + filename=10_Data_assimilation -[2024-03-14T18:34:20.895Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-03-14T18:34:20.895Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-14T18:34:21.466Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-03-14T18:35:17.721Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-03-14T18:35:17.721Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-14T18:35:17.721Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-03-14T18:35:17.721Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-03-14T18:35:17.721Z] + sed s/.ipynb$// -[2024-03-14T18:35:17.721Z] + filename=11_Climatological_ESP_forecasting -[2024-03-14T18:35:17.721Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-03-14T18:35:17.721Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-14T18:35:17.722Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-03-14T18:35:56.511Z] [NbConvertApp] Writing 556782 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-03-14T18:35:56.511Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-14T18:35:56.511Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-03-14T18:35:56.511Z] + echo 12_Performing_hindcasting_experiments.ipynb -[2024-03-14T18:35:56.511Z] + sed s/.ipynb$// -[2024-03-14T18:35:56.511Z] + filename=12_Performing_hindcasting_experiments -[2024-03-14T18:35:56.511Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-03-14T18:35:56.511Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-14T18:35:56.511Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-03-14T18:36:14.634Z] [NbConvertApp] Writing 298489 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-03-14T18:36:14.634Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-14T18:36:14.634Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-03-14T18:36:14.634Z] + echo+ Assess_probabilistic_flood_risk.ipynb -[2024-03-14T18:36:14.634Z] sed s/.ipynb$// -[2024-03-14T18:36:14.634Z] + filename=Assess_probabilistic_flood_risk -[2024-03-14T18:36:14.634Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-03-14T18:36:14.634Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-14T18:36:14.634Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-03-14T18:36:41.218Z] [NbConvertApp] Writing 549338 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-03-14T18:36:41.218Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-14T18:36:41.218Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-14T18:36:41.218Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-14T18:36:41.218Z] + sed s/.ipynb$// -[2024-03-14T18:36:41.218Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-03-14T18:36:41.218Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-03-14T18:36:41.218Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-14T18:36:41.218Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-03-14T18:37:13.301Z] [NbConvertApp] Writing 748540 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-03-14T18:37:13.301Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-14T18:37:13.301Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-03-14T18:37:13.301Z] + echo Distributed_hydrological_modelling.ipynb -[2024-03-14T18:37:13.302Z] + sed s/.ipynb$// -[2024-03-14T18:37:13.302Z] + filename=Distributed_hydrological_modelling -[2024-03-14T18:37:13.302Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-03-14T18:37:13.302Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-14T18:37:14.674Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-03-14T18:37:46.844Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-03-14T18:37:46.844Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-14T18:37:46.844Z] + filename=HydroShare_integration.ipynb -[2024-03-14T18:37:46.844Z] + sed s/.ipynb$// -[2024-03-14T18:37:46.844Z] + echo HydroShare_integration.ipynb -[2024-03-14T18:37:46.844Z] + filename=HydroShare_integration -[2024-03-14T18:37:46.844Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-03-14T18:37:46.844Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-14T18:37:47.104Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-03-14T18:37:51.294Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb -[2024-03-14T18:37:51.557Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-14T18:37:51.557Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-03-14T18:37:51.557Z] + sed s/.ipynb$// -[2024-03-14T18:37:51.557Z] + echo Hydrological_realtime_forecasting.ipynb -[2024-03-14T18:37:51.557Z] + filename=Hydrological_realtime_forecasting -[2024-03-14T18:37:51.557Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-03-14T18:37:51.558Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-14T18:37:53.468Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-03-14T18:38:15.405Z] [NbConvertApp] Writing 279375 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-03-14T18:38:15.405Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-14T18:38:15.405Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-03-14T18:38:15.405Z] + echo Managing_Jupyter_Environments.ipynb -[2024-03-14T18:38:15.405Z] + sed s/.ipynb$// -[2024-03-14T18:38:15.405Z] + filename=Managing_Jupyter_Environments -[2024-03-14T18:38:15.405Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-03-14T18:38:15.405Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-14T18:38:16.790Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-03-14T18:38:55.536Z] [NbConvertApp] Writing 97691 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-03-14T18:38:55.536Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-14T18:38:55.536Z] + filename=Perform_Regionalization.ipynb -[2024-03-14T18:38:55.536Z] + echo Perform_Regionalization.ipynb -[2024-03-14T18:38:55.537Z] + sed s/.ipynb$// -[2024-03-14T18:38:55.537Z] + filename=Perform_Regionalization -[2024-03-14T18:38:55.537Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-03-14T18:38:55.537Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-14T18:38:55.537Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-03-14T18:39:22.164Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-03-14T18:39:22.164Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-14T18:39:22.165Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-14T18:39:22.165Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-14T18:39:22.165Z] + sed s/.ipynb$// -[2024-03-14T18:39:22.165Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-03-14T18:39:22.165Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-03-14T18:39:22.165Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-14T18:39:22.165Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-03-14T18:39:40.270Z] [NbConvertApp] Writing 113738 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-03-14T18:39:40.270Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-14T18:39:40.270Z] + filename=Sensitivity_analysis.ipynb -[2024-03-14T18:39:40.270Z] + sed s/.ipynb$// -[2024-03-14T18:39:40.270Z] + echo Sensitivity_analysis.ipynb -[2024-03-14T18:39:40.270Z] + filename=Sensitivity_analysis -[2024-03-14T18:39:40.270Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-03-14T18:39:40.271Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-14T18:39:40.271Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-03-14T18:39:58.377Z] [NbConvertApp] Writing 35367 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-03-14T18:39:58.377Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-14T18:39:58.377Z] + filename=time_series_analysis.ipynb -[2024-03-14T18:39:58.377Z] + + echo time_series_analysis.ipynb -[2024-03-14T18:39:58.377Z] sed s/.ipynb$// -[2024-03-14T18:39:58.377Z] + filename=time_series_analysis -[2024-03-14T18:39:58.377Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-03-14T18:39:58.377Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-14T18:39:59.320Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-03-14T18:40:09.330Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb -[2024-03-14T18:40:09.592Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-14T18:40:09.592Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-14T18:40:09.592Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-14T18:40:09.592Z] + sed s/.ipynb$// -[2024-03-14T18:40:09.592Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-03-14T18:40:09.592Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-03-14T18:40:09.592Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-14T18:40:11.503Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-03-14T18:41:33.007Z] [NbConvertApp] Writing 131058 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-03-14T18:41:33.007Z] + exit 1 -[2024-03-14T18:41:33.007Z] + EXIT_CODE=1 -[2024-03-14T18:41:33.007Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-14T18:41:33.007Z] + mkdir -p buildout/env-dump -[2024-03-14T18:41:33.007Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-14T18:41:33.007Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-14T18:41:33.007Z] + conda env export -n birdy -[2024-03-14T18:41:43.001Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-14T18:41:43.002Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-14T18:41:43.002Z] + conda list -n birdy --explicit -[2024-03-14T18:41:52.991Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-14T18:41:52.991Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-14T18:41:52.991Z] + pip freeze -[2024-03-14T18:41:53.254Z] + exit 1 +[2024-03-16T18:15:45.686Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-16T18:15:45.686Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-16T18:15:45.686Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-16T18:15:45.686Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-16T18:15:45.686Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-16T18:15:45.686Z] FINCH_BRANCH has been set to 'master' +[2024-03-16T18:15:45.686Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-16T18:15:45.686Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-16T18:15:45.686Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-16T18:15:45.686Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-16T18:15:45.686Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-16T18:15:45.686Z] RAVEN_BRANCH has been set to 'main' +[2024-03-16T18:15:45.686Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-16T18:15:45.686Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-16T18:15:45.686Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-16T18:15:45.686Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-16T18:15:45.686Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-16T18:15:45.686Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-16T18:15:45.686Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-16T18:15:45.686Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-03-16T18:15:45.686Z] + git clean -fdx +[2024-03-16T18:15:46.274Z] Removing .pytest_cache/ +[2024-03-16T18:15:46.274Z] Removing PAVICS-landing-master/ +[2024-03-16T18:15:46.274Z] Removing RavenPy-master/ +[2024-03-16T18:15:46.274Z] Removing __pycache__/ +[2024-03-16T18:15:46.274Z] Removing buildout/ +[2024-03-16T18:15:46.274Z] Removing esgf-compute-api-devel/ +[2024-03-16T18:15:46.274Z] Removing finch-master/ +[2024-03-16T18:15:46.274Z] Removing pavics-sdi-master/ +[2024-03-16T18:15:46.274Z] Removing raven-main/ +[2024-03-16T18:15:46.274Z] + ./downloadrepos +[2024-03-16T18:15:46.274Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-16T18:15:46.274Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-16T18:15:46.274Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-16T18:15:46.274Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-16T18:15:46.274Z] FINCH_BRANCH has been set to 'master' +[2024-03-16T18:15:46.274Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-16T18:15:46.274Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-16T18:15:46.274Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-16T18:15:46.274Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-16T18:15:46.274Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-16T18:15:46.274Z] RAVEN_BRANCH has been set to 'main' +[2024-03-16T18:15:46.274Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-16T18:15:46.274Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-16T18:15:46.274Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-16T18:15:46.274Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-16T18:15:46.274Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-16T18:15:46.274Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-16T18:15:46.274Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-16T18:15:46.274Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-03-16T18:15:46.274Z] + rm -rf pavics-sdi-* +[2024-03-16T18:15:46.274Z] + ls +[2024-03-16T18:15:46.274Z] + grep pavics-sdi +[2024-03-16T18:15:46.274Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-03-16T18:15:46.274Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-16T18:15:46.274Z] + shift +[2024-03-16T18:15:46.274Z] + branch=master +[2024-03-16T18:15:46.274Z] + shift +[2024-03-16T18:15:46.274Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-03-16T18:15:46.274Z] + tar xz +[2024-03-16T18:16:53.954Z] + ls +[2024-03-16T18:16:53.954Z] + grep pavics-sdi +[2024-03-16T18:16:53.954Z] pavics-sdi-master +[2024-03-16T18:16:53.954Z] + set +x +[2024-03-16T18:16:53.954Z] + rm -rf finch-* +[2024-03-16T18:16:53.954Z] + grep finch +[2024-03-16T18:16:53.954Z] + ls +[2024-03-16T18:16:53.954Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-16T18:16:53.954Z] + github_repo=https://github.com/bird-house/finch +[2024-03-16T18:16:53.954Z] + shift +[2024-03-16T18:16:53.954Z] + branch=master +[2024-03-16T18:16:53.955Z] + shift +[2024-03-16T18:16:53.955Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-03-16T18:16:53.955Z] + tar xz +[2024-03-16T18:16:53.955Z] + ls +[2024-03-16T18:16:53.955Z] + grep finch +[2024-03-16T18:16:53.955Z] finch-master +[2024-03-16T18:16:53.955Z] + set +x +[2024-03-16T18:16:53.955Z] + rm -rf PAVICS-landing-* +[2024-03-16T18:16:53.955Z] + ls +[2024-03-16T18:16:53.955Z] + grep PAVICS-landing +[2024-03-16T18:16:53.955Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-03-16T18:16:53.955Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-16T18:16:53.955Z] + shift +[2024-03-16T18:16:53.955Z] + branch=master +[2024-03-16T18:16:53.955Z] + shift +[2024-03-16T18:16:53.955Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-03-16T18:16:53.955Z] + tar xz +[2024-03-16T18:16:53.955Z] + ls +[2024-03-16T18:16:53.955Z] + grep PAVICS-landing +[2024-03-16T18:16:53.955Z] PAVICS-landing-master +[2024-03-16T18:16:53.955Z] + set +x +[2024-03-16T18:16:53.955Z] + rm -rf raven-* +[2024-03-16T18:16:53.955Z] + ls +[2024-03-16T18:16:53.955Z] + grep raven +[2024-03-16T18:16:53.955Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-16T18:16:53.955Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-16T18:16:53.955Z] + shift +[2024-03-16T18:16:53.955Z] + branch=main +[2024-03-16T18:16:53.955Z] + shift +[2024-03-16T18:16:53.955Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-16T18:16:53.955Z] + tar xz +[2024-03-16T18:16:54.892Z] + grep raven +[2024-03-16T18:16:54.892Z] + ls +[2024-03-16T18:16:54.892Z] raven-main +[2024-03-16T18:16:54.892Z] + set +x +[2024-03-16T18:16:54.892Z] + rm -rf RavenPy-* +[2024-03-16T18:16:54.892Z] + ls +[2024-03-16T18:16:54.892Z] + grep RavenPy +[2024-03-16T18:16:54.892Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-16T18:16:54.892Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-16T18:16:54.892Z] + shift +[2024-03-16T18:16:54.892Z] + branch=master +[2024-03-16T18:16:54.892Z] + shift +[2024-03-16T18:16:54.892Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-16T18:16:54.892Z] + tar xz +[2024-03-16T18:16:56.826Z] + ls +[2024-03-16T18:16:56.827Z] + grep RavenPy +[2024-03-16T18:16:56.827Z] RavenPy-master +[2024-03-16T18:16:56.827Z] + set +x +[2024-03-16T18:16:56.827Z] + rm -rf esgf-compute-api-* +[2024-03-16T18:16:56.827Z] + ls +[2024-03-16T18:16:56.827Z] + grep esgf-compute-api +[2024-03-16T18:16:56.827Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-16T18:16:56.827Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-16T18:16:56.827Z] + shift +[2024-03-16T18:16:56.827Z] + branch=devel +[2024-03-16T18:16:56.827Z] + shift +[2024-03-16T18:16:56.827Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-03-16T18:16:56.827Z] + tar xz +[2024-03-16T18:16:57.762Z] + ls +[2024-03-16T18:16:57.762Z] + grep esgf-compute-api +[2024-03-16T18:16:57.762Z] esgf-compute-api-devel +[2024-03-16T18:16:57.762Z] + set +x +[2024-03-16T18:16:57.762Z] + echo master +[2024-03-16T18:16:57.762Z] + sed s@/@-@g +[2024-03-16T18:16:57.762Z] + PAVICS_SDI_BRANCH=master +[2024-03-16T18:16:57.762Z] + echo Ouranosinc/pavics-sdi +[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g +[2024-03-16T18:16:57.762Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-16T18:16:57.762Z] + echo master +[2024-03-16T18:16:57.762Z] + sed s@/@-@g +[2024-03-16T18:16:57.762Z] + FINCH_BRANCH=master +[2024-03-16T18:16:57.762Z] + echo bird-house/finch +[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g +[2024-03-16T18:16:57.762Z] + FINCH_REPO_NAME=finch +[2024-03-16T18:16:57.762Z] + echo master +[2024-03-16T18:16:57.762Z] + sed s@/@-@g +[2024-03-16T18:16:57.762Z] + PAVICS_LANDING_BRANCH=master +[2024-03-16T18:16:57.762Z] + echo Ouranosinc/PAVICS-landing +[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g +[2024-03-16T18:16:57.762Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-16T18:16:57.762Z] + echo main +[2024-03-16T18:16:57.762Z] + sed s@/@-@g +[2024-03-16T18:16:57.762Z] + RAVEN_BRANCH=main +[2024-03-16T18:16:57.762Z] + echo Ouranosinc/raven +[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g +[2024-03-16T18:16:57.762Z] + RAVEN_REPO_NAME=raven +[2024-03-16T18:16:57.762Z] + echo+ master +[2024-03-16T18:16:57.762Z] sed s@/@-@g +[2024-03-16T18:16:57.762Z] + RAVENPY_BRANCH=master +[2024-03-16T18:16:57.762Z] + echo CSHS-CWRA/RavenPy +[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g +[2024-03-16T18:16:57.762Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-16T18:16:57.762Z] + echo devel +[2024-03-16T18:16:57.762Z] + sed s@/@-@g +[2024-03-16T18:16:57.762Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-16T18:16:57.762Z] + echo ESGF/esgf-compute-api +[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g +[2024-03-16T18:16:57.762Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-16T18:16:57.762Z] + + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:16:57.762Z] echo pavics-sdi-master +[2024-03-16T18:16:57.762Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-03-16T18:16:57.762Z] + echo finch-master +[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:16:57.762Z] + FINCH_DIR=finch-master +[2024-03-16T18:16:57.762Z] + echo PAVICS-landing-master +[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:16:57.762Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-03-16T18:16:57.762Z] + echo raven-main +[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:16:57.762Z] + RAVEN_DIR=raven-main +[2024-03-16T18:16:57.762Z] + echo RavenPy-master +[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:16:57.762Z] + RAVENPY_DIR=RavenPy-master +[2024-03-16T18:16:57.762Z] + echo esgf-compute-api-devel +[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-16T18:16:57.762Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-16T18:16:57.762Z] + echo true +[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + VERIFY_SSL=true +[2024-03-16T18:16:57.762Z] + [ xtrue = xfalse ] +[2024-03-16T18:16:57.762Z] + rm -v finch-master/setup.cfg +[2024-03-16T18:16:57.762Z] removed 'finch-master/setup.cfg' +[2024-03-16T18:16:57.762Z] + rm -v raven-main/setup.cfg +[2024-03-16T18:16:57.762Z] removed 'raven-main/setup.cfg' +[2024-03-16T18:16:57.762Z] + rm -v raven-main/pyproject.toml +[2024-03-16T18:16:57.762Z] removed 'raven-main/pyproject.toml' +[2024-03-16T18:16:57.762Z] + rm -v RavenPy-master/setup.cfg +[2024-03-16T18:16:57.762Z] removed 'RavenPy-master/setup.cfg' +[2024-03-16T18:16:57.762Z] + rm -v RavenPy-master/tox.ini +[2024-03-16T18:16:57.762Z] removed 'RavenPy-master/tox.ini' +[2024-03-16T18:16:57.762Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-16T18:16:57.762Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-16T18:16:57.762Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-16T18:16:57.762Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-16T18:16:57.762Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-16T18:16:57.762Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-16T18:16:57.762Z] + echo false +[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + TEST_MAGPIE_AUTH=false +[2024-03-16T18:16:57.762Z] + echo false +[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + TEST_PAVICS_SDI_REPO=false +[2024-03-16T18:16:57.762Z] + echo false +[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-16T18:16:57.762Z] + echo false +[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + TEST_FINCH_REPO=false +[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + echo false +[2024-03-16T18:16:57.762Z] + TEST_PAVICS_LANDING_REPO=false +[2024-03-16T18:16:57.762Z] + echo true +[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + TEST_RAVEN_REPO=true +[2024-03-16T18:16:57.762Z] + echo true +[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + TEST_RAVENPY_REPO=true +[2024-03-16T18:16:57.762Z] + echo false+ +[2024-03-16T18:16:57.762Z] tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-16T18:16:57.762Z] + echo false +[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] +[2024-03-16T18:16:57.762Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-03-16T18:16:57.762Z] + NOTEBOOKS_TO_TEST= +[2024-03-16T18:16:57.762Z] + [ xfalse = xtrue ] +[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] +[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] +[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] +[2024-03-16T18:16:57.763Z] + [ xtrue = xtrue ] +[2024-03-16T18:16:57.763Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-03-16T18:16:57.763Z] + [ xtrue = xtrue ] +[2024-03-16T18:16:57.763Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-03-16T18:16:57.763Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] +[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] +[2024-03-16T18:16:57.763Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-03-16T18:16:57.763Z] + [ -n ] +[2024-03-16T18:16:57.763Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-16T18:16:57.763Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-16T18:16:57.763Z] Will run notebooks against pavics.ouranos.ca +[2024-03-16T18:16:57.763Z] + [ -z ] +[2024-03-16T18:16:57.763Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-16T18:16:57.763Z] + git diff +[2024-03-16T18:16:57.763Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-16T18:16:57.763Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-03-16T18:16:59.666Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-16T18:16:59.666Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-16T18:16:59.926Z] ============================= test session starts ============================== +[2024-03-16T18:16:59.926Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-03-16T18:16:59.926Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-03-16T18:16:59.926Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-03-16T18:16:59.926Z] collected 242 items +[2024-03-16T18:16:59.926Z] +[2024-03-16T18:17:12.355Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-03-16T18:17:13.297Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-03-16T18:17:27.050Z] ...... [ 6%] +[2024-03-16T18:17:29.586Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] +[2024-03-16T18:17:29.586Z] [ 9%] +[2024-03-16T18:17:31.751Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-03-16T18:17:39.896Z] .... [ 12%] +[2024-03-16T18:17:45.189Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-03-16T18:17:53.005Z] ....F.FF..F.. [ 18%] +[2024-03-16T18:18:25.867Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] +[2024-03-16T18:19:39.155Z] .. [ 22%] +[2024-03-16T18:19:40.094Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] +[2024-03-16T18:19:50.086Z] ..FFFFFFFF....... [ 30%] +[2024-03-16T18:19:58.644Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] +[2024-03-16T18:20:08.916Z] ........... [ 36%] +[2024-03-16T18:20:19.431Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] +[2024-03-16T18:20:26.055Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-03-16T18:20:32.062Z] ..... [ 41%] +[2024-03-16T18:20:33.977Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-03-16T18:33:31.477Z] ................. [ 48%] +[2024-03-16T18:33:36.787Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-03-16T18:33:43.938Z] .... [ 50%] +[2024-03-16T18:34:24.369Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] +[2024-03-16T18:34:33.108Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] +[2024-03-16T18:34:59.122Z] ...... [ 57%] +[2024-03-16T18:35:05.698Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] +[2024-03-16T18:35:16.653Z] ....... [ 60%] +[2024-03-16T18:35:23.846Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] +[2024-03-16T18:35:38.246Z] .... [ 64%] +[2024-03-16T18:35:46.384Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-03-16T18:36:07.108Z] ....... [ 67%] +[2024-03-16T18:36:10.403Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-03-16T18:36:36.462Z] ....... [ 70%] +[2024-03-16T18:36:39.748Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] +[2024-03-16T18:36:52.121Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] +[2024-03-16T18:36:58.464Z] .... [ 74%] +[2024-03-16T18:38:07.142Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] +[2024-03-16T18:38:31.016Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] +[2024-03-16T18:38:34.295Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-03-16T18:38:49.100Z] ............. [ 84%] +[2024-03-16T18:39:09.049Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] +[2024-03-16T18:39:17.943Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] +[2024-03-16T18:39:27.907Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-03-16T18:44:09.603Z] .........FFFFFFFFFFF [100%] +[2024-03-16T18:44:09.603Z] +[2024-03-16T18:44:09.603Z] =================================== FAILURES =================================== +[2024-03-16T18:44:09.603Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ +[2024-03-16T18:44:09.603Z] Notebook cell execution failed +[2024-03-16T18:44:09.603Z] Cell 5: Cell execution caused an exception +[2024-03-16T18:44:09.603Z] +[2024-03-16T18:44:09.603Z] Input: +[2024-03-16T18:44:09.603Z] features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-16T18:44:09.603Z] grid = raster[0] +[2024-03-16T18:44:09.603Z] grid.plot() +[2024-03-16T18:44:09.603Z] +[2024-03-16T18:44:09.603Z] Traceback: +[2024-03-16T18:44:09.603Z] +[2024-03-16T18:44:09.603Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.603Z] ValueError Traceback (most recent call last) +[2024-03-16T18:44:09.603Z] Cell In[1], line 3 +[2024-03-16T18:44:09.603Z]  1 features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-16T18:44:09.604Z]  2 grid = raster[0] +[2024-03-16T18:44:09.604Z] ----> 3 grid.plot() +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) +[2024-03-16T18:44:09.604Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: +[2024-03-16T18:44:09.604Z] --> 942 raise ValueError( +[2024-03-16T18:44:09.604Z]  943 "Dataset.plot cannot be called directly. Use " +[2024-03-16T18:44:09.604Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" +[2024-03-16T18:44:09.604Z]  945 ) +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ +[2024-03-16T18:44:09.604Z] Notebook cell execution failed +[2024-03-16T18:44:09.604Z] Cell 7: Cell execution caused an exception +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] Input: +[2024-03-16T18:44:09.604Z] unique, counts = np.unique(grid, return_counts=True) +[2024-03-16T18:44:09.604Z] print("The land-use categories available are: " + str(unique)) +[2024-03-16T18:44:09.604Z] print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] # Pixels values at '127' are NaN and can be ignored. +[2024-03-16T18:44:09.604Z] from matplotlib.colors import Normalize +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] norm = Normalize() +[2024-03-16T18:44:09.604Z] norm.autoscale(unique[:-1]) +[2024-03-16T18:44:09.604Z] cm = mpl.colormaps["tab20"] +[2024-03-16T18:44:09.604Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] # plt.bar(unique[:-1], counts[:-1]) +[2024-03-16T18:44:09.604Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) +[2024-03-16T18:44:09.604Z] plt.xlabel("Land-use categories") +[2024-03-16T18:44:09.604Z] plt.ylabel("Number of pixels") +[2024-03-16T18:44:09.604Z] plt.show() +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") +[2024-03-16T18:44:09.604Z] grid.name = "Land-use categories" +[2024-03-16T18:44:09.604Z] plt.show() +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] Traceback: +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.604Z] TypeError Traceback (most recent call last) +[2024-03-16T18:44:09.604Z] /tmp/ipykernel_391/750628277.py in ?() +[2024-03-16T18:44:09.604Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) +[2024-03-16T18:44:09.604Z]  2 print("The land-use categories available are: " + str(unique)) +[2024-03-16T18:44:09.604Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-16T18:44:09.604Z]  4  +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] <__array_function__ internals> in ?(*args, **kwargs) +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) +[2024-03-16T18:44:09.604Z]  268 >>> np.repeat(values, counts) +[2024-03-16T18:44:09.604Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved +[2024-03-16T18:44:09.604Z]  270  +[2024-03-16T18:44:09.604Z]  271 """ +[2024-03-16T18:44:09.604Z] --> 272 ar = np.asanyarray(ar) +[2024-03-16T18:44:09.604Z]  273 if axis is None: +[2024-03-16T18:44:09.604Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, +[2024-03-16T18:44:09.604Z]  275 equal_nan=equal_nan) +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) +[2024-03-16T18:44:09.604Z]  1472 def __array__(self, dtype=None): +[2024-03-16T18:44:09.604Z] -> 1473 raise TypeError( +[2024-03-16T18:44:09.604Z]  1474 "cannot directly convert an xarray.Dataset into a " +[2024-03-16T18:44:09.604Z]  1475 "numpy array. Instead, create an xarray.DataArray " +[2024-03-16T18:44:09.604Z]  1476 "first, either with indexing on the Dataset or by " +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ +[2024-03-16T18:44:09.604Z] Notebook cell execution failed +[2024-03-16T18:44:09.604Z] Cell 8: Cell execution caused an exception +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] Input: +[2024-03-16T18:44:09.604Z] import cartopy.crs as ccrs +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] # Set a CRS transformation: +[2024-03-16T18:44:09.604Z] crs = ccrs.LambertConformal( +[2024-03-16T18:44:09.604Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-16T18:44:09.604Z] ) +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] ax = plt.subplot(projection=crs) +[2024-03-16T18:44:09.604Z] grid.name = "Land-use categories" +[2024-03-16T18:44:09.604Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-16T18:44:09.604Z] plt.show() +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] Traceback: +[2024-03-16T18:44:09.604Z] +[2024-03-16T18:44:09.604Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.604Z] AttributeError Traceback (most recent call last) +[2024-03-16T18:44:09.604Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-03-16T18:44:09.604Z]  304 try: +[2024-03-16T18:44:09.605Z] --> 305 object.__setattr__(self, name, value) +[2024-03-16T18:44:09.605Z]  306 except AttributeError as e: +[2024-03-16T18:44:09.605Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-03-16T18:44:09.605Z]  308 # DataArray.dims.setter +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] The above exception was the direct cause of the following exception: +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] AttributeError Traceback (most recent call last) +[2024-03-16T18:44:09.605Z] Cell In[1], line 9 +[2024-03-16T18:44:09.605Z]  4 crs = ccrs.LambertConformal( +[2024-03-16T18:44:09.605Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-16T18:44:09.605Z]  6 ) +[2024-03-16T18:44:09.605Z]  8 ax = plt.subplot(projection=crs) +[2024-03-16T18:44:09.605Z] ----> 9 grid.name = "Land-use categories" +[2024-03-16T18:44:09.605Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-16T18:44:09.605Z]  11 plt.show() +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-03-16T18:44:09.605Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-03-16T18:44:09.605Z]  310 raise +[2024-03-16T18:44:09.605Z] --> 311 raise AttributeError( +[2024-03-16T18:44:09.605Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-03-16T18:44:09.605Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-03-16T18:44:09.605Z]  314 ) from e +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ +[2024-03-16T18:44:09.605Z] Notebook cell execution failed +[2024-03-16T18:44:09.605Z] Cell 11: Cell execution caused an exception +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] Input: +[2024-03-16T18:44:09.605Z] crs = ccrs.LambertConformal( +[2024-03-16T18:44:09.605Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-16T18:44:09.605Z] ) +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] dem.name = "Elevation" +[2024-03-16T18:44:09.605Z] dem.attrs["units"] = "m" +[2024-03-16T18:44:09.605Z] ax = plt.subplot(projection=crs) +[2024-03-16T18:44:09.605Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") +[2024-03-16T18:44:09.605Z] plt.show() +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] Traceback: +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.605Z] AttributeError Traceback (most recent call last) +[2024-03-16T18:44:09.605Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-03-16T18:44:09.605Z]  304 try: +[2024-03-16T18:44:09.605Z] --> 305 object.__setattr__(self, name, value) +[2024-03-16T18:44:09.605Z]  306 except AttributeError as e: +[2024-03-16T18:44:09.605Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-03-16T18:44:09.605Z]  308 # DataArray.dims.setter +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] The above exception was the direct cause of the following exception: +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.605Z] AttributeError Traceback (most recent call last) +[2024-03-16T18:44:09.605Z] Cell In[1], line 5 +[2024-03-16T18:44:09.605Z]  1 crs = ccrs.LambertConformal( +[2024-03-16T18:44:09.605Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-16T18:44:09.605Z]  3 ) +[2024-03-16T18:44:09.605Z] ----> 5 dem.name = "Elevation" +[2024-03-16T18:44:09.605Z]  6 dem.attrs["units"] = "m" +[2024-03-16T18:44:09.605Z]  7 ax = plt.subplot(projection=crs) +[2024-03-16T18:44:09.605Z] +[2024-03-16T18:44:09.606Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-03-16T18:44:09.606Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-03-16T18:44:09.606Z]  310 raise +[2024-03-16T18:44:09.606Z] --> 311 raise AttributeError( +[2024-03-16T18:44:09.606Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-03-16T18:44:09.606Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-03-16T18:44:09.606Z]  314 ) from e +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-03-16T18:44:09.606Z] Notebook cell execution failed +[2024-03-16T18:44:09.606Z] Cell 5: Cell execution caused an exception +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] Input: +[2024-03-16T18:44:09.606Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-03-16T18:44:09.606Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-03-16T18:44:09.606Z] from ravenpy import OutputReader +[2024-03-16T18:44:09.606Z] from ravenpy.ravenpy import run +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-03-16T18:44:09.606Z] run_name = run_name +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-03-16T18:44:09.606Z] # subfolder called "outputs" +[2024-03-16T18:44:09.606Z] configdir = workdir +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-16T18:44:09.606Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] # Get the outputs using the Output Reader object. +[2024-03-16T18:44:09.606Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] Traceback: +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.606Z] RavenError Traceback (most recent call last) +[2024-03-16T18:44:09.606Z] Cell In[1], line 14 +[2024-03-16T18:44:09.606Z]  11 configdir = workdir +[2024-03-16T18:44:09.606Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-16T18:44:09.606Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-16T18:44:09.606Z]  16 # Get the outputs using the Output Reader object. +[2024-03-16T18:44:09.606Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-16T18:44:09.606Z]  320 warn(msg, category=RavenWarning) +[2024-03-16T18:44:09.606Z]  322 if messages["ERROR"]: +[2024-03-16T18:44:09.606Z] --> 323 raise RavenError( +[2024-03-16T18:44:09.606Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-16T18:44:09.606Z]  325 ) +[2024-03-16T18:44:09.606Z]  327 if returncode != 0: +[2024-03-16T18:44:09.606Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] RavenError: Config directory: /tmp/NB4wuwg3s5n +[2024-03-16T18:44:09.606Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-03-16T18:44:09.606Z] Notebook cell execution failed +[2024-03-16T18:44:09.606Z] Cell 6: Cell execution caused an exception +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] Input: +[2024-03-16T18:44:09.606Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-03-16T18:44:09.606Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-03-16T18:44:09.606Z] from ravenpy import Emulator +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] # Prepare the emulator by writing files on disk +[2024-03-16T18:44:09.606Z] e = Emulator(config=m) +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] # Run the model and get the outputs. +[2024-03-16T18:44:09.606Z] outputs = e.run() +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] Traceback: +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.606Z] RavenError Traceback (most recent call last) +[2024-03-16T18:44:09.606Z] Cell In[1], line 9 +[2024-03-16T18:44:09.606Z]  6 e = Emulator(config=m) +[2024-03-16T18:44:09.606Z]  8 # Run the model and get the outputs. +[2024-03-16T18:44:09.606Z] ----> 9 outputs = e.run() +[2024-03-16T18:44:09.606Z] +[2024-03-16T18:44:09.606Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-03-16T18:44:09.606Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-03-16T18:44:09.606Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-03-16T18:44:09.606Z]  66 self.write_rv(overwrite=overwrite) +[2024-03-16T18:44:09.607Z] ---> 68 self._output_path = run( +[2024-03-16T18:44:09.607Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-03-16T18:44:09.607Z]  70 ) +[2024-03-16T18:44:09.607Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-03-16T18:44:09.607Z]  72 return self._output +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-16T18:44:09.607Z]  320 warn(msg, category=RavenWarning) +[2024-03-16T18:44:09.607Z]  322 if messages["ERROR"]: +[2024-03-16T18:44:09.607Z] --> 323 raise RavenError( +[2024-03-16T18:44:09.607Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-16T18:44:09.607Z]  325 ) +[2024-03-16T18:44:09.607Z]  327 if returncode != 0: +[2024-03-16T18:44:09.607Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] RavenError: Config directory: /tmp/tmp8sa6j0x_ +[2024-03-16T18:44:09.607Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-03-16T18:44:09.607Z] Notebook cell execution failed +[2024-03-16T18:44:09.607Z] Cell 7: Cell execution caused an exception +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] Input: +[2024-03-16T18:44:09.607Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-16T18:44:09.607Z] outputs.files +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] Traceback: +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.607Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.607Z] Cell In[1], line 2 +[2024-03-16T18:44:09.607Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-16T18:44:09.607Z] ----> 2 outputs.files +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] NameError: name 'outputs' is not defined +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-03-16T18:44:09.607Z] Notebook cell execution failed +[2024-03-16T18:44:09.607Z] Cell 8: Cell execution caused an exception +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] Input: +[2024-03-16T18:44:09.607Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-16T18:44:09.607Z] print("----------------HYDROGRAPH----------------") +[2024-03-16T18:44:09.607Z] display(outputs.hydrograph) +[2024-03-16T18:44:09.607Z] print("") +[2024-03-16T18:44:09.607Z] print("-----------------STORAGE------------------") +[2024-03-16T18:44:09.607Z] display(outputs.storage) +[2024-03-16T18:44:09.607Z] print("") +[2024-03-16T18:44:09.607Z] print("-----------------SOLUTION-----------------") +[2024-03-16T18:44:09.607Z] display(outputs.solution) +[2024-03-16T18:44:09.607Z] print("") +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] Traceback: +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.607Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.607Z] Cell In[1], line 3 +[2024-03-16T18:44:09.607Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-16T18:44:09.607Z]  2 print("----------------HYDROGRAPH----------------") +[2024-03-16T18:44:09.607Z] ----> 3 display(outputs.hydrograph) +[2024-03-16T18:44:09.607Z]  4 print("") +[2024-03-16T18:44:09.607Z]  5 print("-----------------STORAGE------------------") +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] NameError: name 'outputs' is not defined +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-03-16T18:44:09.607Z] Notebook cell execution failed +[2024-03-16T18:44:09.607Z] Cell 9: Cell execution caused an exception +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] Input: +[2024-03-16T18:44:09.607Z] # Import the graphing utility built to handle Raven model outputs +[2024-03-16T18:44:09.607Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] hydrograph_objects = outputs.hydrograph +[2024-03-16T18:44:09.607Z] hydrographs(hydrograph_objects) +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] Traceback: +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.607Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.607Z] Cell In[1], line 4 +[2024-03-16T18:44:09.607Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-03-16T18:44:09.607Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-16T18:44:09.607Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-03-16T18:44:09.607Z]  5 hydrographs(hydrograph_objects) +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] NameError: name 'outputs' is not defined +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-03-16T18:44:09.607Z] Notebook cell execution failed +[2024-03-16T18:44:09.607Z] Cell 10: Cell execution caused an exception +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] Input: +[2024-03-16T18:44:09.607Z] outputs.hydrograph.q_sim.plot() +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] Traceback: +[2024-03-16T18:44:09.607Z] +[2024-03-16T18:44:09.607Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.608Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.608Z] Cell In[1], line 1 +[2024-03-16T18:44:09.608Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] NameError: name 'outputs' is not defined +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-03-16T18:44:09.608Z] Notebook cell execution failed +[2024-03-16T18:44:09.608Z] Cell 11: Cell execution caused an exception +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] Input: +[2024-03-16T18:44:09.608Z] print(list(outputs.storage.keys())) +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] Traceback: +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.608Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.608Z] Cell In[1], line 1 +[2024-03-16T18:44:09.608Z] ----> 1 print(list(outputs.storage.keys())) +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] NameError: name 'outputs' is not defined +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-03-16T18:44:09.608Z] Notebook cell execution failed +[2024-03-16T18:44:09.608Z] Cell 12: Cell execution caused an exception +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] Input: +[2024-03-16T18:44:09.608Z] # Plot the "Snow" variable +[2024-03-16T18:44:09.608Z] outputs.storage["Snow"].plot() +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] Traceback: +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.608Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.608Z] Cell In[1], line 2 +[2024-03-16T18:44:09.608Z]  1 # Plot the "Snow" variable +[2024-03-16T18:44:09.608Z] ----> 2 outputs.storage["Snow"].plot() +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] NameError: name 'outputs' is not defined +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ +[2024-03-16T18:44:09.608Z] Notebook cell execution failed +[2024-03-16T18:44:09.608Z] Cell 0: Cell execution caused an exception +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] Input: +[2024-03-16T18:44:09.608Z] import os +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] from hsclient import HydroShare, Token +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] # Authentication method using username and password +[2024-03-16T18:44:09.608Z] """ +[2024-03-16T18:44:09.608Z] username = 'XXXXX' +[2024-03-16T18:44:09.608Z] password = 'XXXXX' +[2024-03-16T18:44:09.608Z] hs = HydroShare(username=username, password=password) +[2024-03-16T18:44:09.608Z] """ +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-03-16T18:44:09.608Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] token = Token(access_token=access_token, token_type="bearer") +[2024-03-16T18:44:09.608Z] hs = HydroShare(client_id=client_id, token=token) +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] Traceback: +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.608Z] ValidationError Traceback (most recent call last) +[2024-03-16T18:44:09.608Z] Cell In[1], line 15 +[2024-03-16T18:44:09.608Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-03-16T18:44:09.608Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-03-16T18:44:09.608Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-03-16T18:44:09.608Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) +[2024-03-16T18:44:09.608Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-03-16T18:44:09.608Z]  170 __tracebackhide__ = True +[2024-03-16T18:44:09.608Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-03-16T18:44:09.608Z] +[2024-03-16T18:44:09.608Z] ValidationError: 4 validation errors for Token +[2024-03-16T18:44:09.608Z] scope +[2024-03-16T18:44:09.608Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-03-16T18:44:09.608Z]  2 for r in results: +[2024-03-16T18:44:09.609Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] NameError: name 'hs' is not defined +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ +[2024-03-16T18:44:09.609Z] Notebook cell execution failed +[2024-03-16T18:44:09.609Z] Cell 2: Cell execution caused an exception +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] Input: +[2024-03-16T18:44:09.609Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-16T18:44:09.609Z] res.files() +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] Traceback: +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.609Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.609Z] Cell In[1], line 1 +[2024-03-16T18:44:09.609Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-16T18:44:09.609Z]  2 res.files() +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] NameError: name 'hs' is not defined +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ +[2024-03-16T18:44:09.609Z] Notebook cell execution failed +[2024-03-16T18:44:09.609Z] Cell 3: Cell execution caused an exception +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] Input: +[2024-03-16T18:44:09.609Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] Traceback: +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.609Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.609Z] Cell In[1], line 1 +[2024-03-16T18:44:09.609Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] NameError: name 'res' is not defined +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ +[2024-03-16T18:44:09.609Z] Notebook cell execution failed +[2024-03-16T18:44:09.609Z] Cell 10: Cell execution caused an exception +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] Input: +[2024-03-16T18:44:09.609Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. +[2024-03-16T18:44:09.609Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" +[2024-03-16T18:44:09.609Z] cat = intake.open_catalog(catalog_name) +[2024-03-16T18:44:09.609Z] ds = cat.era5_reanalysis_single_levels.to_dask() +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] """ +[2024-03-16T18:44:09.609Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, +[2024-03-16T18:44:09.609Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total +[2024-03-16T18:44:09.609Z] precipitation. +[2024-03-16T18:44:09.609Z] """ +[2024-03-16T18:44:09.609Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, +[2024-03-16T18:44:09.609Z] # such as units and variable names. +[2024-03-16T18:44:09.609Z] with xr.set_options(keep_attrs=True): +[2024-03-16T18:44:09.609Z] ERA5_reference = subset.subset_shape( +[2024-03-16T18:44:09.609Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour +[2024-03-16T18:44:09.609Z] ) +[2024-03-16T18:44:09.609Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) +[2024-03-16T18:44:09.609Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) +[2024-03-16T18:44:09.609Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] # Change the units +[2024-03-16T18:44:09.609Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C +[2024-03-16T18:44:09.609Z] ERA5_tmin.attrs["units"] = "degC" +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C +[2024-03-16T18:44:09.609Z] ERA5_tmax.attrs["units"] = "degC" +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] ERA5_pr = ERA5_pr * 1000 # m to mm +[2024-03-16T18:44:09.609Z] ERA5_pr.attrs["units"] = "mm" +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] # Average the variables spatially +[2024-03-16T18:44:09.609Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-03-16T18:44:09.609Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-03-16T18:44:09.609Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-16T18:44:09.609Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-16T18:44:09.609Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-16T18:44:09.609Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-03-16T18:44:09.609Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the +[2024-03-16T18:44:09.609Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. +[2024-03-16T18:44:09.609Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) +[2024-03-16T18:44:09.609Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] Traceback: +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.609Z] KeyError Traceback (most recent call last) +[2024-03-16T18:44:09.609Z] Cell In[1], line 37 +[2024-03-16T18:44:09.609Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-16T18:44:09.609Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-16T18:44:09.609Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-16T18:44:09.609Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-16T18:44:09.609Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-16T18:44:09.609Z] +[2024-03-16T18:44:09.609Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-03-16T18:44:09.609Z]  851 self.coords[key] = value +[2024-03-16T18:44:09.609Z]  852 else: +[2024-03-16T18:44:09.609Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-03-16T18:44:09.609Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-03-16T18:44:09.610Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-03-16T18:44:09.610Z] --> 856 obj = self[key] +[2024-03-16T18:44:09.610Z]  857 if isinstance(value, DataArray): +[2024-03-16T18:44:09.610Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-03-16T18:44:09.610Z] +[2024-03-16T18:44:09.610Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-03-16T18:44:09.610Z]  844 return self._getitem_coord(key) +[2024-03-16T18:44:09.610Z]  845 else: +[2024-03-16T18:44:09.610Z]  846 # xarray-style array indexing +[2024-03-16T18:44:09.610Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-03-16T18:44:09.610Z] +[2024-03-16T18:44:09.610Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-03-16T18:44:09.610Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-03-16T18:44:09.610Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-03-16T18:44:09.610Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-03-16T18:44:09.610Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-03-16T18:44:09.610Z]  1447  ) +[2024-03-16T18:44:09.610Z]  1448 return self._from_temp_dataset(ds) +[2024-03-16T18:44:09.610Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-03-16T18:44:09.610Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-03-16T18:44:09.610Z] +[2024-03-16T18:44:09.610Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-03-16T18:44:09.610Z]  2926 var_indexers = { +[2024-03-16T18:44:09.610Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-03-16T18:44:09.610Z]  2928 } +[2024-03-16T18:44:09.610Z]  2929 if var_indexers: +[2024-03-16T18:44:09.610Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-03-16T18:44:09.610Z]  2931 # drop scalar coordinates +[2024-03-16T18:44:09.610Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-03-16T18:44:09.610Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-03-16T18:44:09.610Z] +[2024-03-16T18:44:09.610Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-03-16T18:44:09.610Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-03-16T18:44:09.612Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-03-16T18:44:09.612Z] -> 1368 return self[key] +[2024-03-16T18:44:09.612Z] +[2024-03-16T18:44:09.612Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-03-16T18:44:09.612Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-03-16T18:44:09.612Z]  879  """Return a new Variable object whose contents are consistent with +[2024-03-16T18:44:09.612Z]  880  getting the provided key from the underlying data. +[2024-03-16T18:44:09.612Z]  881 +[2024-03-16T18:44:09.612Z]  (...) +[2024-03-16T18:44:09.612Z]  889  array `x.values` directly. +[2024-03-16T18:44:09.612Z]  890  """ +[2024-03-16T18:44:09.612Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-03-16T18:44:09.612Z]  892 data = as_indexable(self._data)[indexer] +[2024-03-16T18:44:09.612Z]  893 if new_order: +[2024-03-16T18:44:09.612Z] +[2024-03-16T18:44:09.612Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-03-16T18:44:09.612Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-03-16T18:44:09.612Z]  722 return self._broadcast_indexes_basic(key) +[2024-03-16T18:44:09.613Z] --> 724 self._validate_indexers(key) +[2024-03-16T18:44:09.613Z]  725 # Detect it can be mapped as an outer indexer +[2024-03-16T18:44:09.613Z]  726 # If all key is unlabeled, or +[2024-03-16T18:44:09.613Z]  727 # key can be mapped as an OuterIndexer. +[2024-03-16T18:44:09.613Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-03-16T18:44:09.613Z]  771 raise IndexError( +[2024-03-16T18:44:09.613Z]  772 "{}-dimensional boolean indexing is " +[2024-03-16T18:44:09.613Z]  773 "not supported. ".format(k.ndim) +[2024-03-16T18:44:09.613Z]  774 ) +[2024-03-16T18:44:09.613Z]  775 if is_duck_dask_array(k.data): +[2024-03-16T18:44:09.613Z] --> 776 raise KeyError( +[2024-03-16T18:44:09.613Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-03-16T18:44:09.613Z]  778 "This will result in a dask array of unknown shape. " +[2024-03-16T18:44:09.613Z]  779 "Such arrays are unsupported by Xarray." +[2024-03-16T18:44:09.613Z]  780 "Please compute the indexer first using .compute()" +[2024-03-16T18:44:09.613Z]  781 ) +[2024-03-16T18:44:09.613Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-03-16T18:44:09.613Z]  783 raise IndexError( +[2024-03-16T18:44:09.613Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-03-16T18:44:09.613Z]  785 "same dimension to the indexed array. Indexer is " +[2024-03-16T18:44:09.613Z]  (...) +[2024-03-16T18:44:09.613Z]  788 ) +[2024-03-16T18:44:09.613Z]  789 ) +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ +[2024-03-16T18:44:09.613Z] Notebook cell execution failed +[2024-03-16T18:44:09.613Z] Cell 11: Cell execution caused an exception +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] Input: +[2024-03-16T18:44:09.613Z] # Climate model to use +[2024-03-16T18:44:09.613Z] climate_model = "MIROC6" +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. +[2024-03-16T18:44:09.613Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") +[2024-03-16T18:44:09.613Z] col = intake.open_esm_datastore( +[2024-03-16T18:44:09.613Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" +[2024-03-16T18:44:09.613Z] ) +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. +[2024-03-16T18:44:09.613Z] with xr.set_options(keep_attrs=True): +[2024-03-16T18:44:09.613Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. +[2024-03-16T18:44:09.613Z] out = {} +[2024-03-16T18:44:09.613Z] for exp in ["historical", "ssp585"]: +[2024-03-16T18:44:09.613Z] if exp == "historical": +[2024-03-16T18:44:09.613Z] period_start = reference_start_day +[2024-03-16T18:44:09.613Z] period_end = reference_end_day +[2024-03-16T18:44:09.613Z] else: +[2024-03-16T18:44:09.613Z] period_start = future_start_day +[2024-03-16T18:44:09.613Z] period_end = future_end_day +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] out[exp] = {} +[2024-03-16T18:44:09.613Z] for variable in ["tasmin", "tasmax", "pr"]: +[2024-03-16T18:44:09.613Z] print(exp, variable) +[2024-03-16T18:44:09.613Z] query = dict( +[2024-03-16T18:44:09.613Z] experiment_id=exp, +[2024-03-16T18:44:09.613Z] table_id="day", +[2024-03-16T18:44:09.613Z] variable_id=variable, +[2024-03-16T18:44:09.613Z] member_id="r1i1p1f1", +[2024-03-16T18:44:09.613Z] source_id=climate_model, +[2024-03-16T18:44:09.613Z] ) +[2024-03-16T18:44:09.613Z] col_subset = col.search(require_all_on=["source_id"], **query) +[2024-03-16T18:44:09.613Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. +[2024-03-16T18:44:09.613Z] if variable == "pr": +[2024-03-16T18:44:09.613Z] out[exp][variable] = average.average_shape( +[2024-03-16T18:44:09.613Z] xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-16T18:44:09.613Z] time=slice(period_start, period_end) +[2024-03-16T18:44:09.613Z] )[variable], +[2024-03-16T18:44:09.613Z] basin_contour, +[2024-03-16T18:44:09.613Z] ).chunk(-1) +[2024-03-16T18:44:09.613Z] else: +[2024-03-16T18:44:09.613Z] out[exp][variable] = average.average_shape( +[2024-03-16T18:44:09.613Z] xr.open_zarr(mapper, consolidated=True) +[2024-03-16T18:44:09.613Z] .sel(time=slice(period_start, period_end)) +[2024-03-16T18:44:09.613Z] .reset_coords("height", drop=True)[variable], +[2024-03-16T18:44:09.613Z] basin_contour, +[2024-03-16T18:44:09.613Z] ).chunk(-1) +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] # We can now extract the variables that we will need later: +[2024-03-16T18:44:09.613Z] historical_tasmax = out["historical"]["tasmax"] +[2024-03-16T18:44:09.613Z] historical_tasmin = out["historical"]["tasmin"] +[2024-03-16T18:44:09.613Z] historical_pr = out["historical"]["pr"] +[2024-03-16T18:44:09.613Z] future_tasmax = out["ssp585"]["tasmax"] +[2024-03-16T18:44:09.613Z] future_tasmin = out["ssp585"]["tasmin"] +[2024-03-16T18:44:09.613Z] future_pr = out["ssp585"]["pr"] +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] Traceback: +[2024-03-16T18:44:09.613Z] +[2024-03-16T18:44:09.613Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.613Z] KeyError Traceback (most recent call last) +[2024-03-16T18:44:09.613Z] Cell In[1], line 44 +[2024-03-16T18:44:09.613Z]  37 out[exp][variable] = average.average_shape( +[2024-03-16T18:44:09.613Z]  38 xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-16T18:44:09.613Z]  39 time=slice(period_start, period_end) +[2024-03-16T18:44:09.614Z]  40 )[variable], +[2024-03-16T18:44:09.614Z]  41 basin_contour, +[2024-03-16T18:44:09.614Z]  42 ).chunk(-1) +[2024-03-16T18:44:09.614Z]  43 else: +[2024-03-16T18:44:09.614Z] ---> 44 out[exp][variable] = average.average_shape( +[2024-03-16T18:44:09.614Z]  45  xr.open_zarr(mapper, consolidated=True) +[2024-03-16T18:44:09.614Z]  46  .sel(time=slice(period_start, period_end)) +[2024-03-16T18:44:09.614Z]  47  .reset_coords("height", drop=True)[variable], +[2024-03-16T18:44:09.614Z]  48  basin_contour, +[2024-03-16T18:44:09.614Z]  49  ).chunk(-1) +[2024-03-16T18:44:09.614Z]  51 # We can now extract the variables that we will need later: +[2024-03-16T18:44:09.614Z]  52 historical_tasmax = out["historical"]["tasmax"] +[2024-03-16T18:44:09.614Z] +[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) +[2024-03-16T18:44:09.614Z]  105 ds_sub = ds_copy.isel(indexer) +[2024-03-16T18:44:09.614Z]  107 # Compute the weights +[2024-03-16T18:44:09.614Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) +[2024-03-16T18:44:09.614Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. +[2024-03-16T18:44:09.614Z]  111 nonnull = ( +[2024-03-16T18:44:09.614Z]  112 savger.weights.data.nnz +[2024-03-16T18:44:09.614Z]  113 if isinstance(savger.weights, xr.DataArray) +[2024-03-16T18:44:09.614Z]  114 else savger.weights.nnz +[2024-03-16T18:44:09.614Z]  115 ) +[2024-03-16T18:44:09.614Z] +[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) +[2024-03-16T18:44:09.614Z]  1182 if isinstance(ds_in, xr.DataArray): +[2024-03-16T18:44:09.614Z]  1183 ds_in = ds_in._to_temp_dataset() +[2024-03-16T18:44:09.614Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) +[2024-03-16T18:44:09.614Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. +[2024-03-16T18:44:09.614Z]  1188 # Latitude and longitude coordinates are the polygon centroid. +[2024-03-16T18:44:09.614Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) +[2024-03-16T18:44:09.614Z] +[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) +[2024-03-16T18:44:09.614Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) +[2024-03-16T18:44:09.614Z]  166 if need_bounds: +[2024-03-16T18:44:09.614Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) +[2024-03-16T18:44:09.614Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) +[2024-03-16T18:44:09.614Z]  169 add_corner(grid, lon_b.T, lat_b.T) +[2024-03-16T18:44:09.614Z] +[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) +[2024-03-16T18:44:09.614Z]  105 lat_bnds = ds.cf.get_bounds('latitude') +[2024-03-16T18:44:09.614Z]  107 # Convert from CF bounds to xESMF bounds. +[2024-03-16T18:44:09.614Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. +[2024-03-16T18:44:09.614Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) +[2024-03-16T18:44:09.614Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) +[2024-03-16T18:44:09.614Z]  111 return lon_b, lat_b +[2024-03-16T18:44:09.614Z] +[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) +[2024-03-16T18:44:09.614Z]  2400 filtered = [ +[2024-03-16T18:44:09.614Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs +[2024-03-16T18:44:09.614Z]  2402 ] +[2024-03-16T18:44:09.614Z]  2403 if len(filtered) > 1: +[2024-03-16T18:44:09.614Z] -> 2404 raise KeyError( +[2024-03-16T18:44:09.615Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " +[2024-03-16T18:44:09.615Z]  2406 ) +[2024-03-16T18:44:09.615Z]  2408 (crd_name,) = filtered +[2024-03-16T18:44:09.615Z]  2409 crd = variables[crd_name] +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon', 'lon_bounds'] " +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ +[2024-03-16T18:44:09.615Z] Notebook cell execution failed +[2024-03-16T18:44:09.615Z] Cell 12: Cell execution caused an exception +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] Input: +[2024-03-16T18:44:09.615Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-16T18:44:09.615Z] # and make sure everything is consistent. +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Let's start with precipitation: +[2024-03-16T18:44:09.615Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-16T18:44:09.615Z] historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-16T18:44:09.615Z] future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Now we can actually convert units in absolute terms. +[2024-03-16T18:44:09.615Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") +[2024-03-16T18:44:09.615Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Now let's do temperature: +[2024-03-16T18:44:09.615Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") +[2024-03-16T18:44:09.615Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") +[2024-03-16T18:44:09.615Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") +[2024-03-16T18:44:09.615Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] Traceback: +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.615Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.615Z] Cell In[1], line 6 +[2024-03-16T18:44:09.615Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-16T18:44:09.615Z]  2 # and make sure everything is consistent. +[2024-03-16T18:44:09.615Z]  3 +[2024-03-16T18:44:09.615Z]  4 # Let's start with precipitation: +[2024-03-16T18:44:09.615Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-16T18:44:09.615Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-16T18:44:09.615Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-16T18:44:09.615Z]  9 # Now we can actually convert units in absolute terms. +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] NameError: name 'historical_pr' is not defined +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ +[2024-03-16T18:44:09.615Z] Notebook cell execution failed +[2024-03-16T18:44:09.615Z] Cell 13: Cell execution caused an exception +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] Input: +[2024-03-16T18:44:09.615Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. +[2024-03-16T18:44:09.615Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-16T18:44:09.615Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-16T18:44:09.615Z] ref=ERA5_weather.pr, +[2024-03-16T18:44:09.615Z] hist=historical_pr, +[2024-03-16T18:44:09.615Z] nquantiles=50, +[2024-03-16T18:44:09.615Z] kind="+", +[2024-03-16T18:44:09.615Z] group=group_month_window, +[2024-03-16T18:44:09.615Z] ) +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Apply the correction factors on the reference period +[2024-03-16T18:44:09.615Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Apply the correction factors on the future period +[2024-03-16T18:44:09.615Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Ensure that the precipitation is non-negative, which can happen with some climate models +[2024-03-16T18:44:09.615Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) +[2024-03-16T18:44:09.615Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data +[2024-03-16T18:44:09.615Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-16T18:44:09.615Z] ref=ERA5_weather.tmax, +[2024-03-16T18:44:09.615Z] hist=historical_tasmax, +[2024-03-16T18:44:09.615Z] nquantiles=50, +[2024-03-16T18:44:09.615Z] kind="+", +[2024-03-16T18:44:09.615Z] group=group_month_window, +[2024-03-16T18:44:09.615Z] ) +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Apply the correction factors on the reference period +[2024-03-16T18:44:09.615Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Apply the correction factors on the future period +[2024-03-16T18:44:09.615Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data +[2024-03-16T18:44:09.615Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-16T18:44:09.615Z] ref=ERA5_weather.tmin, +[2024-03-16T18:44:09.615Z] hist=historical_tasmin, +[2024-03-16T18:44:09.615Z] nquantiles=50, +[2024-03-16T18:44:09.615Z] kind="+", +[2024-03-16T18:44:09.615Z] group=group_month_window, +[2024-03-16T18:44:09.615Z] ) +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Apply the correction factors on the reference period +[2024-03-16T18:44:09.615Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] # Apply the correction factors on the future period +[2024-03-16T18:44:09.615Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] Traceback: +[2024-03-16T18:44:09.615Z] +[2024-03-16T18:44:09.615Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.615Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.615Z] Cell In[1], line 6 +[2024-03-16T18:44:09.615Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-16T18:44:09.615Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-16T18:44:09.615Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-16T18:44:09.615Z] ----> 6 ref=ERA5_weather.pr, +[2024-03-16T18:44:09.615Z]  7 hist=historical_pr, +[2024-03-16T18:44:09.615Z]  8 nquantiles=50, +[2024-03-16T18:44:09.615Z]  9 kind="+", +[2024-03-16T18:44:09.615Z]  10 group=group_month_window, +[2024-03-16T18:44:09.615Z]  11 ) +[2024-03-16T18:44:09.615Z]  13 # Apply the correction factors on the reference period +[2024-03-16T18:44:09.616Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] NameError: name 'ERA5_weather' is not defined +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ +[2024-03-16T18:44:09.616Z] Notebook cell execution failed +[2024-03-16T18:44:09.616Z] Cell 14: Cell execution caused an exception +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] Input: +[2024-03-16T18:44:09.616Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-16T18:44:09.616Z] ref_dataset = xr.merge( +[2024-03-16T18:44:09.616Z] [ +[2024-03-16T18:44:09.616Z] corrected_ref_precip.to_dataset(name="pr"), +[2024-03-16T18:44:09.616Z] corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-16T18:44:09.616Z] corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-16T18:44:09.616Z] ] +[2024-03-16T18:44:09.616Z] ) +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Write to temporary folder +[2024-03-16T18:44:09.616Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-16T18:44:09.616Z] ref_dataset.to_netcdf(fn_tmp_ref) +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Convert the future corrected data into netCDF file +[2024-03-16T18:44:09.616Z] fut_dataset = xr.merge( +[2024-03-16T18:44:09.616Z] [ +[2024-03-16T18:44:09.616Z] corrected_fut_precip.to_dataset(name="pr"), +[2024-03-16T18:44:09.616Z] corrected_fut_tasmax.to_dataset(name="tasmax"), +[2024-03-16T18:44:09.616Z] corrected_fut_tasmin.to_dataset(name="tasmin"), +[2024-03-16T18:44:09.616Z] ] +[2024-03-16T18:44:09.616Z] ) +[2024-03-16T18:44:09.616Z] # Write to temporary folder +[2024-03-16T18:44:09.616Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" +[2024-03-16T18:44:09.616Z] fut_dataset.to_netcdf(fn_tmp_fut) +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Write the data to disk to a temporary location for future use. +[2024-03-16T18:44:09.616Z] ref_dataset = xr.open_dataset(fn_tmp_ref) +[2024-03-16T18:44:09.616Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] fut_dataset = xr.open_dataset(fn_tmp_fut) +[2024-03-16T18:44:09.616Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] Traceback: +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.616Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.616Z] Cell In[1], line 4 +[2024-03-16T18:44:09.616Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-16T18:44:09.616Z]  2 ref_dataset = xr.merge( +[2024-03-16T18:44:09.616Z]  3 [ +[2024-03-16T18:44:09.616Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), +[2024-03-16T18:44:09.616Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-16T18:44:09.616Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-16T18:44:09.616Z]  7 ] +[2024-03-16T18:44:09.616Z]  8 ) +[2024-03-16T18:44:09.616Z]  10 # Write to temporary folder +[2024-03-16T18:44:09.616Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] NameError: name 'corrected_ref_precip' is not defined +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ +[2024-03-16T18:44:09.616Z] Notebook cell execution failed +[2024-03-16T18:44:09.616Z] Cell 15: Cell execution caused an exception +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] Input: +[2024-03-16T18:44:09.616Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-03-16T18:44:09.616Z] # populate the fields for the HRU. +[2024-03-16T18:44:09.616Z] hru = {} +[2024-03-16T18:44:09.616Z] hru = dict( +[2024-03-16T18:44:09.616Z] area=all_properties["area"], +[2024-03-16T18:44:09.616Z] elevation=all_properties["elevation"], +[2024-03-16T18:44:09.616Z] latitude=all_properties["latitude"], +[2024-03-16T18:44:09.616Z] longitude=all_properties["longitude"], +[2024-03-16T18:44:09.616Z] hru_type="land", +[2024-03-16T18:44:09.616Z] ) +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-03-16T18:44:09.616Z] # will simply execute the model which has been pre-configured to run on this period. +[2024-03-16T18:44:09.616Z] start_date = dt.datetime(1981, 1, 1) +[2024-03-16T18:44:09.616Z] end_date = dt.datetime(1985, 12, 31) +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. +[2024-03-16T18:44:09.616Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Alternative variable names as described in the tutorial. +[2024-03-16T18:44:09.616Z] alt_names = { +[2024-03-16T18:44:09.616Z] "TEMP_MIN": "tmin", +[2024-03-16T18:44:09.616Z] "TEMP_MAX": "tmax", +[2024-03-16T18:44:09.616Z] "PRECIP": "pr", +[2024-03-16T18:44:09.616Z] } +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here +[2024-03-16T18:44:09.616Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. +[2024-03-16T18:44:09.616Z] data_kwds = { +[2024-03-16T18:44:09.616Z] "ALL": { +[2024-03-16T18:44:09.616Z] "elevation": hru["elevation"], +[2024-03-16T18:44:09.616Z] "latitude": hru["latitude"], +[2024-03-16T18:44:09.616Z] "longitude": hru["longitude"], +[2024-03-16T18:44:09.616Z] } +[2024-03-16T18:44:09.616Z] } +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Give a name to the simulation +[2024-03-16T18:44:09.616Z] run_name = "Paper_example_simulation" +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Setup the gauge object that includes meteorological data from ERA5 +[2024-03-16T18:44:09.616Z] gauge = [ +[2024-03-16T18:44:09.616Z] rc.Gauge.from_nc( +[2024-03-16T18:44:09.616Z] tmp +[2024-03-16T18:44:09.616Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-03-16T18:44:09.616Z] data_type=data_type, # Note that this is the list of all the variables +[2024-03-16T18:44:09.616Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-03-16T18:44:09.616Z] data_kwds=data_kwds, +[2024-03-16T18:44:09.616Z] ) +[2024-03-16T18:44:09.616Z] ] +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Read the streamflow from the HYSETS catchment data for this basin +[2024-03-16T18:44:09.616Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, +[2024-03-16T18:44:09.616Z] # and the optimizer will read it directly to calibrate. +[2024-03-16T18:44:09.616Z] eval_metrics = ("NASH_SUTCLIFFE",) +[2024-03-16T18:44:09.616Z] +[2024-03-16T18:44:09.616Z] # Build the model configuration according to user preferences and inputs +[2024-03-16T18:44:09.616Z] model_config = GR4JCN( +[2024-03-16T18:44:09.616Z] ObservationData=discharge_data, +[2024-03-16T18:44:09.616Z] Gauge=gauge, +[2024-03-16T18:44:09.616Z] HRUs=[hru], +[2024-03-16T18:44:09.616Z] StartDate=start_date, +[2024-03-16T18:44:09.616Z] EndDate=end_date, +[2024-03-16T18:44:09.617Z] RunName=run_name, +[2024-03-16T18:44:09.617Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. +[2024-03-16T18:44:09.617Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. +[2024-03-16T18:44:09.617Z] ) +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] Traceback: +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.617Z] ValueError Traceback (most recent call last) +[2024-03-16T18:44:09.617Z] Cell In[1], line 42 +[2024-03-16T18:44:09.617Z]  38 run_name = "Paper_example_simulation" +[2024-03-16T18:44:09.617Z]  40 # Setup the gauge object that includes meteorological data from ERA5 +[2024-03-16T18:44:09.617Z]  41 gauge = [ +[2024-03-16T18:44:09.617Z] ---> 42 rc.Gauge.from_nc( +[2024-03-16T18:44:09.617Z]  43  tmp +[2024-03-16T18:44:09.617Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-03-16T18:44:09.617Z]  45  data_type=data_type, # Note that this is the list of all the variables +[2024-03-16T18:44:09.617Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-03-16T18:44:09.617Z]  47  data_kwds=data_kwds, +[2024-03-16T18:44:09.617Z]  48  ) +[2024-03-16T18:44:09.617Z]  49 ] +[2024-03-16T18:44:09.617Z]  51 # Read the streamflow from the HYSETS catchment data for this basin +[2024-03-16T18:44:09.617Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-03-16T18:44:09.617Z]  751 forcings.difference_update(data) +[2024-03-16T18:44:09.617Z]  753 if len(data) == 0: +[2024-03-16T18:44:09.617Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-03-16T18:44:09.617Z]  756 # Default Gauge name +[2024-03-16T18:44:09.617Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] ValueError: No data found in netCDF files. +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ +[2024-03-16T18:44:09.617Z] Notebook cell execution failed +[2024-03-16T18:44:09.617Z] Cell 16: Cell execution caused an exception +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] Input: +[2024-03-16T18:44:09.617Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, +[2024-03-16T18:44:09.617Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. +[2024-03-16T18:44:09.617Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) +[2024-03-16T18:44:09.617Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. +[2024-03-16T18:44:09.617Z] random_seed = 42 +[2024-03-16T18:44:09.617Z] np.random.seed(random_seed) +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] # Build the optimizer object +[2024-03-16T18:44:09.617Z] spot_setup = SpotSetup( +[2024-03-16T18:44:09.617Z] config=model_config, +[2024-03-16T18:44:09.617Z] low=low, +[2024-03-16T18:44:09.617Z] high=high, +[2024-03-16T18:44:09.617Z] ) +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-16T18:44:09.617Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-16T18:44:09.617Z] max_iterations = 200 +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer +[2024-03-16T18:44:09.617Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most +[2024-03-16T18:44:09.617Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation +[2024-03-16T18:44:09.617Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small +[2024-03-16T18:44:09.617Z] # evaluation budgets. For more details on DDS, see: +[2024-03-16T18:44:09.617Z] # +[2024-03-16T18:44:09.617Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water +[2024-03-16T18:44:09.617Z] # Resources Research, 43(1) +[2024-03-16T18:44:09.617Z] sampler = spotpy.algorithms.dds( +[2024-03-16T18:44:09.617Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False +[2024-03-16T18:44:09.617Z] ) +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and +[2024-03-16T18:44:09.617Z] # the best overall value from all trials is returned. +[2024-03-16T18:44:09.617Z] sampler.sample(max_iterations, trials=1) +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] # Get the model diagnostics +[2024-03-16T18:44:09.617Z] diag = spot_setup.diagnostics +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] # Get all the values of each iteration +[2024-03-16T18:44:09.617Z] results = sampler.getdata() +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] # Get the raw resutlts directly in an array +[2024-03-16T18:44:09.617Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( +[2024-03-16T18:44:09.617Z] results +[2024-03-16T18:44:09.617Z] ) # Want to get the MAX NSE (change for min for RMSE) +[2024-03-16T18:44:09.617Z] best_model_run = list( +[2024-03-16T18:44:09.617Z] results[bestindex][0] +[2024-03-16T18:44:09.617Z] ) # Get the parameter set returning the best NSE +[2024-03-16T18:44:09.617Z] optimized_parameters = best_model_run[ +[2024-03-16T18:44:09.617Z] 1:-1 +[2024-03-16T18:44:09.617Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] # Display the parameter set ready to use in a future run: +[2024-03-16T18:44:09.617Z] print(optimized_parameters) +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] Traceback: +[2024-03-16T18:44:09.617Z] +[2024-03-16T18:44:09.617Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.617Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.617Z] Cell In[1], line 12 +[2024-03-16T18:44:09.617Z]  8 np.random.seed(random_seed) +[2024-03-16T18:44:09.617Z]  10 # Build the optimizer object +[2024-03-16T18:44:09.617Z]  11 spot_setup = SpotSetup( +[2024-03-16T18:44:09.617Z] ---> 12 config=model_config, +[2024-03-16T18:44:09.617Z]  13 low=low, +[2024-03-16T18:44:09.617Z]  14 high=high, +[2024-03-16T18:44:09.618Z]  15 ) +[2024-03-16T18:44:09.618Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-16T18:44:09.618Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-16T18:44:09.618Z]  19 max_iterations = 200 +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] NameError: name 'model_config' is not defined +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ +[2024-03-16T18:44:09.618Z] Notebook cell execution failed +[2024-03-16T18:44:09.618Z] Cell 17: Cell execution caused an exception +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] Input: +[2024-03-16T18:44:09.618Z] # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-16T18:44:09.618Z] model_validation = model_config.duplicate( +[2024-03-16T18:44:09.618Z] params=optimized_parameters, +[2024-03-16T18:44:09.618Z] StartDate=dt.datetime(1986, 1, 1), +[2024-03-16T18:44:09.618Z] EndDate=dt.datetime(1990, 12, 31), +[2024-03-16T18:44:09.618Z] SuppressOutput=False, +[2024-03-16T18:44:09.618Z] ) +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] sim_output = Emulator(config=model_validation).run() +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-16T18:44:09.618Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] # Plot the model output +[2024-03-16T18:44:09.618Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") +[2024-03-16T18:44:09.618Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-16T18:44:09.618Z] plt.legend() +[2024-03-16T18:44:09.618Z] plt.title("Validation period - NSE=" + str(NSE[0])) +[2024-03-16T18:44:09.618Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-16T18:44:09.618Z] plt.grid() +[2024-03-16T18:44:09.618Z] plt.show() +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] Traceback: +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.618Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.618Z] Cell In[1], line 2 +[2024-03-16T18:44:09.618Z]  1 # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-16T18:44:09.618Z] ----> 2 model_validation = model_config.duplicate( +[2024-03-16T18:44:09.618Z]  3 params=optimized_parameters, +[2024-03-16T18:44:09.618Z]  4 StartDate=dt.datetime(1986, 1, 1), +[2024-03-16T18:44:09.618Z]  5 EndDate=dt.datetime(1990, 12, 31), +[2024-03-16T18:44:09.618Z]  6 SuppressOutput=False, +[2024-03-16T18:44:09.618Z]  7 ) +[2024-03-16T18:44:09.618Z]  9 sim_output = Emulator(config=model_validation).run() +[2024-03-16T18:44:09.618Z]  11 # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] NameError: name 'model_config' is not defined +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ +[2024-03-16T18:44:09.618Z] Notebook cell execution failed +[2024-03-16T18:44:09.618Z] Cell 18: Cell execution caused an exception +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] Input: +[2024-03-16T18:44:09.618Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-16T18:44:09.618Z] gauge_ref = [ +[2024-03-16T18:44:09.618Z] rc.Gauge.from_nc( +[2024-03-16T18:44:09.618Z] tmp +[2024-03-16T18:44:09.618Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-16T18:44:09.618Z] data_type=data_type, +[2024-03-16T18:44:09.618Z] alt_names=alt_names, +[2024-03-16T18:44:09.618Z] data_kwds=data_kwds, +[2024-03-16T18:44:09.618Z] ) +[2024-03-16T18:44:09.618Z] ] +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-16T18:44:09.618Z] model_config_reference = model_validation.duplicate( +[2024-03-16T18:44:09.618Z] Gauge=gauge_ref, +[2024-03-16T18:44:09.618Z] StartDate=reference_start_day +[2024-03-16T18:44:09.618Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-16T18:44:09.618Z] EndDate=reference_end_day, +[2024-03-16T18:44:09.618Z] ) +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] # Run the model from the configuration and get the outputs. +[2024-03-16T18:44:09.618Z] ref_output = Emulator(config=model_config_reference).run() +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] # Plot the model output. Note that both simulations should have similar hydrological +[2024-03-16T18:44:09.618Z] # regime but day-to-day variability is not expected to match. +[2024-03-16T18:44:09.618Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") +[2024-03-16T18:44:09.618Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-16T18:44:09.618Z] plt.legend() +[2024-03-16T18:44:09.618Z] plt.title("Reference period") +[2024-03-16T18:44:09.618Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-16T18:44:09.618Z] plt.grid() +[2024-03-16T18:44:09.618Z] plt.show() +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] Traceback: +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.618Z] ValueError Traceback (most recent call last) +[2024-03-16T18:44:09.618Z] Cell In[1], line 3 +[2024-03-16T18:44:09.618Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-16T18:44:09.618Z]  2 gauge_ref = [ +[2024-03-16T18:44:09.618Z] ----> 3 rc.Gauge.from_nc( +[2024-03-16T18:44:09.618Z]  4  tmp +[2024-03-16T18:44:09.618Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-16T18:44:09.618Z]  6  data_type=data_type, +[2024-03-16T18:44:09.618Z]  7  alt_names=alt_names, +[2024-03-16T18:44:09.618Z]  8  data_kwds=data_kwds, +[2024-03-16T18:44:09.618Z]  9  ) +[2024-03-16T18:44:09.618Z]  10 ] +[2024-03-16T18:44:09.618Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-16T18:44:09.618Z]  13 model_config_reference = model_validation.duplicate( +[2024-03-16T18:44:09.618Z]  14 Gauge=gauge_ref, +[2024-03-16T18:44:09.618Z]  15 StartDate=reference_start_day +[2024-03-16T18:44:09.618Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-16T18:44:09.618Z]  17 EndDate=reference_end_day, +[2024-03-16T18:44:09.618Z]  18 ) +[2024-03-16T18:44:09.618Z] +[2024-03-16T18:44:09.618Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-03-16T18:44:09.618Z]  751 forcings.difference_update(data) +[2024-03-16T18:44:09.618Z]  753 if len(data) == 0: +[2024-03-16T18:44:09.618Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-03-16T18:44:09.618Z]  756 # Default Gauge name +[2024-03-16T18:44:09.619Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] ValueError: No data found in netCDF files. +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ +[2024-03-16T18:44:09.619Z] Notebook cell execution failed +[2024-03-16T18:44:09.619Z] Cell 19: Cell execution caused an exception +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] Input: +[2024-03-16T18:44:09.619Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-16T18:44:09.619Z] gauge_fut = [ +[2024-03-16T18:44:09.619Z] rc.Gauge.from_nc( +[2024-03-16T18:44:09.619Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-16T18:44:09.619Z] data_type=data_type, +[2024-03-16T18:44:09.619Z] alt_names=alt_names, +[2024-03-16T18:44:09.619Z] data_kwds=data_kwds, +[2024-03-16T18:44:09.619Z] ) +[2024-03-16T18:44:09.619Z] ] +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-16T18:44:09.619Z] model_config_future = model_validation.duplicate( +[2024-03-16T18:44:09.619Z] Gauge=gauge_fut, +[2024-03-16T18:44:09.619Z] StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-16T18:44:09.619Z] EndDate=future_end_day, +[2024-03-16T18:44:09.619Z] ObservationData=None, # There are no observations for the future period. +[2024-03-16T18:44:09.619Z] ) +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] # Run the model and get the outputs and hydrographs. +[2024-03-16T18:44:09.619Z] fut_output = Emulator(config=model_config_future).run() +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] # Plot the model output +[2024-03-16T18:44:09.619Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") +[2024-03-16T18:44:09.619Z] plt.legend() +[2024-03-16T18:44:09.619Z] plt.title("Future period") +[2024-03-16T18:44:09.619Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-16T18:44:09.619Z] plt.grid() +[2024-03-16T18:44:09.619Z] plt.show() +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] Traceback: +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.619Z] ValueError Traceback (most recent call last) +[2024-03-16T18:44:09.619Z] Cell In[1], line 3 +[2024-03-16T18:44:09.619Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-16T18:44:09.619Z]  2 gauge_fut = [ +[2024-03-16T18:44:09.619Z] ----> 3 rc.Gauge.from_nc( +[2024-03-16T18:44:09.619Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-16T18:44:09.619Z]  5  data_type=data_type, +[2024-03-16T18:44:09.619Z]  6  alt_names=alt_names, +[2024-03-16T18:44:09.619Z]  7  data_kwds=data_kwds, +[2024-03-16T18:44:09.619Z]  8  ) +[2024-03-16T18:44:09.619Z]  9 ] +[2024-03-16T18:44:09.619Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-16T18:44:09.619Z]  12 model_config_future = model_validation.duplicate( +[2024-03-16T18:44:09.619Z]  13 Gauge=gauge_fut, +[2024-03-16T18:44:09.619Z]  14 StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-16T18:44:09.619Z]  15 EndDate=future_end_day, +[2024-03-16T18:44:09.619Z]  16 ObservationData=None, # There are no observations for the future period. +[2024-03-16T18:44:09.619Z]  17 ) +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-03-16T18:44:09.619Z]  751 forcings.difference_update(data) +[2024-03-16T18:44:09.619Z]  753 if len(data) == 0: +[2024-03-16T18:44:09.619Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-03-16T18:44:09.619Z]  756 # Default Gauge name +[2024-03-16T18:44:09.619Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] ValueError: No data found in netCDF files. +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ +[2024-03-16T18:44:09.619Z] Notebook cell execution failed +[2024-03-16T18:44:09.619Z] Cell 20: Cell execution caused an exception +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] Input: +[2024-03-16T18:44:09.619Z] # Extract the mean annual hydrograph for each simulation. +[2024-03-16T18:44:09.619Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-16T18:44:09.619Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-16T18:44:09.619Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-16T18:44:09.619Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] # Plot the model output +[2024-03-16T18:44:09.619Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") +[2024-03-16T18:44:09.619Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") +[2024-03-16T18:44:09.619Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") +[2024-03-16T18:44:09.619Z] future_flows.plot(color="red", label="Future", x="dayofyear") +[2024-03-16T18:44:09.619Z] plt.legend() +[2024-03-16T18:44:09.619Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-16T18:44:09.619Z] plt.xlabel("Day of year") +[2024-03-16T18:44:09.619Z] plt.xlim([0, 365]) +[2024-03-16T18:44:09.619Z] plt.title("Comparison of mean annual hydrographs") +[2024-03-16T18:44:09.619Z] plt.grid() +[2024-03-16T18:44:09.619Z] plt.show() +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] Traceback: +[2024-03-16T18:44:09.619Z] +[2024-03-16T18:44:09.619Z] --------------------------------------------------------------------------- +[2024-03-16T18:44:09.619Z] NameError Traceback (most recent call last) +[2024-03-16T18:44:09.620Z] Cell In[1], line 2 +[2024-03-16T18:44:09.620Z]  1 # Extract the mean annual hydrograph for each simulation. +[2024-03-16T18:44:09.620Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-16T18:44:09.620Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-16T18:44:09.620Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-16T18:44:09.620Z] +[2024-03-16T18:44:09.620Z] NameError: name 'ref_output' is not defined +[2024-03-16T18:44:09.620Z] +[2024-03-16T18:44:09.620Z] =========================== short test summary info ============================ +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 +[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 +[2024-03-16T18:44:09.620Z] ================= 27 failed, 215 passed in 1625.68s (0:27:05) ================== +[2024-03-16T18:44:09.620Z] + EXIT_CODE=1 +[2024-03-16T18:44:09.620Z] + echo true +[2024-03-16T18:44:09.620Z] + tr [:upper:] [:lower:] +[2024-03-16T18:44:09.620Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-16T18:44:09.620Z] + [ xtrue = xtrue ] +[2024-03-16T18:44:09.620Z] + mkdir -p buildout +[2024-03-16T18:44:09.620Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-16T18:44:09.620Z] + filename=Region_selection.ipynb +[2024-03-16T18:44:09.620Z] + echo Region_selection.ipynb +[2024-03-16T18:44:09.620Z] + sed s/.ipynb$// +[2024-03-16T18:44:09.620Z] + filename=Region_selection +[2024-03-16T18:44:09.620Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-03-16T18:44:09.620Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-16T18:44:09.620Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-03-16T18:44:19.581Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb +[2024-03-16T18:44:19.581Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-16T18:44:19.581Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-03-16T18:44:19.581Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-03-16T18:44:19.581Z] + sed s/.ipynb$// +[2024-03-16T18:44:19.581Z] + filename=Subset_climate_data_over_watershed +[2024-03-16T18:44:19.581Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-03-16T18:44:19.581Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-16T18:44:20.150Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-03-16T18:44:38.244Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-03-16T18:44:38.244Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-16T18:44:38.244Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-03-16T18:44:38.244Z] + sed s/.ipynb$// +[2024-03-16T18:44:38.244Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-03-16T18:44:38.244Z] + filename=00_Introduction_to_JupyterLab +[2024-03-16T18:44:38.244Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-03-16T18:44:38.245Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-16T18:44:38.245Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-03-16T18:44:43.510Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-03-16T18:44:43.510Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-16T18:44:43.510Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-03-16T18:44:43.510Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-03-16T18:44:43.510Z] + sed s/.ipynb$// +[2024-03-16T18:44:43.510Z] + filename=01_Getting_watershed_boundaries +[2024-03-16T18:44:43.510Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-03-16T18:44:43.510Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-16T18:44:45.413Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-03-16T18:44:57.632Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-03-16T18:44:57.632Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-16T18:44:57.632Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-03-16T18:44:57.632Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-03-16T18:44:57.632Z] + sed s/.ipynb$// +[2024-03-16T18:44:57.632Z] + filename=02_Extract_geographical_watershed_properties +[2024-03-16T18:44:57.632Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-03-16T18:44:57.632Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-16T18:44:57.891Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-03-16T18:45:15.995Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-03-16T18:45:15.995Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-16T18:45:15.995Z] + filename=03_Extracting_forcing_data.ipynb +[2024-03-16T18:45:15.995Z] + echo 03_Extracting_forcing_data.ipynb +[2024-03-16T18:45:15.995Z] + sed s/.ipynb$// +[2024-03-16T18:45:15.995Z] + filename=03_Extracting_forcing_data +[2024-03-16T18:45:15.995Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-03-16T18:45:15.995Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-16T18:45:16.257Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-03-16T18:47:22.777Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-03-16T18:47:22.777Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-16T18:47:22.777Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-03-16T18:47:22.777Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-03-16T18:47:22.777Z] + sed s/.ipynb$// +[2024-03-16T18:47:22.777Z] + filename=04_Emulating_hydrological_models +[2024-03-16T18:47:22.777Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-03-16T18:47:22.778Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-16T18:47:22.778Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-03-16T18:47:40.890Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-03-16T18:47:40.890Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-16T18:47:40.890Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-03-16T18:47:40.890Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-03-16T18:47:40.890Z] + sed s/.ipynb$// +[2024-03-16T18:47:40.890Z] + filename=05_Advanced_RavenPy_configuration +[2024-03-16T18:47:40.890Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-03-16T18:47:40.890Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-16T18:47:40.890Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-03-16T18:48:02.848Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-03-16T18:48:02.848Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-16T18:48:02.848Z] + filename=06_Raven_calibration.ipynb +[2024-03-16T18:48:02.848Z] + echo 06_Raven_calibration.ipynb +[2024-03-16T18:48:02.848Z] + sed s/.ipynb$// +[2024-03-16T18:48:02.848Z] + filename=06_Raven_calibration +[2024-03-16T18:48:02.848Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-03-16T18:48:02.848Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-16T18:48:04.770Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-03-16T18:48:19.668Z] [NbConvertApp] Writing 24094 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-03-16T18:48:19.668Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-16T18:48:19.668Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-03-16T18:48:19.668Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-03-16T18:48:19.668Z] + sed s/.ipynb$// +[2024-03-16T18:48:19.668Z] + filename=07_Making_and_using_hotstart_files +[2024-03-16T18:48:19.668Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-03-16T18:48:19.668Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-16T18:48:19.668Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-03-16T18:48:34.696Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-03-16T18:48:34.696Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-16T18:48:34.696Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-16T18:48:34.696Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-16T18:48:34.696Z] + sed s/.ipynb$// +[2024-03-16T18:48:34.696Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-03-16T18:48:34.696Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-03-16T18:48:34.696Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-16T18:48:36.616Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-03-16T18:53:43.348Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). +[2024-03-16T18:53:44.720Z] Traceback (most recent call last): +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply +[2024-03-16T18:53:44.720Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async +[2024-03-16T18:53:44.720Z] result = await obj +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg +[2024-03-16T18:53:44.720Z] raise Empty +[2024-03-16T18:53:44.720Z] _queue.Empty +[2024-03-16T18:53:44.720Z] +[2024-03-16T18:53:44.720Z] During handling of the above exception, another exception occurred: +[2024-03-16T18:53:44.720Z] +[2024-03-16T18:53:44.720Z] Traceback (most recent call last): +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-03-16T18:53:44.720Z] sys.exit(main()) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance +[2024-03-16T18:53:44.720Z] super().launch_instance(argv=argv, **kwargs) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance +[2024-03-16T18:53:44.720Z] app.start() +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start +[2024-03-16T18:53:44.720Z] self.convert_notebooks() +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks +[2024-03-16T18:53:44.720Z] self.convert_single_notebook(notebook_filename) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook +[2024-03-16T18:53:44.720Z] output, resources = self.export_single_notebook( +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook +[2024-03-16T18:53:44.720Z] output, resources = self.exporter.from_filename( +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-03-16T18:53:44.720Z] return self.from_file(f, resources=resources, **kw) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-03-16T18:53:44.720Z] return self.from_notebook_node( +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-03-16T18:53:44.720Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-03-16T18:53:44.720Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess +[2024-03-16T18:53:44.720Z] nbc, resc = preprocessor(nbc, resc) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-03-16T18:53:44.720Z] return self.preprocess(nb, resources) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess +[2024-03-16T18:53:44.720Z] self.preprocess_cell(cell, resources, index) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell +[2024-03-16T18:53:44.720Z] cell = self.execute_cell(cell, index, store_history=True) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped +[2024-03-16T18:53:44.720Z] return loop.run_until_complete(inner) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-03-16T18:53:44.720Z] return future.result() +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell +[2024-03-16T18:53:44.720Z] exec_reply = await self.task_poll_for_reply +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply +[2024-03-16T18:53:44.720Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) +[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout +[2024-03-16T18:53:44.720Z] raise CellTimeoutError.error_from_timeout_and_cell( +[2024-03-16T18:53:44.720Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. +[2024-03-16T18:53:44.720Z] The message was: Cell execution timed out. +[2024-03-16T18:53:44.720Z] Here is a preview of the cell contents: +[2024-03-16T18:53:44.720Z] ------------------- +[2024-03-16T18:53:44.720Z] ['# Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models.', 'ref_dataset = xr.merge(', ' [', ' corrected_ref_precip.to_dataset(name="pr"),', ' corrected_ref_tasmax.to_dataset(name="tasmax"),'] +[2024-03-16T18:53:44.720Z] ... +[2024-03-16T18:53:44.720Z] [' ]', ')', '', 'fn_fut = tmp / "future_dataset.nc"', 'fut_dataset.to_netcdf(fn_fut)'] +[2024-03-16T18:53:44.720Z] ------------------- +[2024-03-16T18:53:44.720Z] +[2024-03-16T18:53:44.982Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-16T18:53:44.982Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-16T18:53:44.982Z] + sed s/.ipynb$// +[2024-03-16T18:53:44.982Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-16T18:53:44.982Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-03-16T18:53:44.982Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-03-16T18:53:44.982Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-16T18:53:47.509Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-03-16T18:54:05.595Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-03-16T18:54:05.595Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-16T18:54:05.595Z] + filename=10_Data_assimilation.ipynb +[2024-03-16T18:54:05.595Z] + echo 10_Data_assimilation.ipynb +[2024-03-16T18:54:05.595Z] + sed s/.ipynb$// +[2024-03-16T18:54:05.595Z] + filename=10_Data_assimilation +[2024-03-16T18:54:05.595Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-03-16T18:54:05.595Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-16T18:54:07.495Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-03-16T18:54:54.173Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-03-16T18:54:54.173Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-16T18:54:54.173Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-03-16T18:54:54.173Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-03-16T18:54:54.173Z] + sed s/.ipynb$// +[2024-03-16T18:54:54.173Z] + filename=11_Climatological_ESP_forecasting +[2024-03-16T18:54:54.173Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-03-16T18:54:54.173Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-16T18:54:54.173Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-03-16T18:55:32.873Z] [NbConvertApp] Writing 556695 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-03-16T18:55:32.873Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-16T18:55:32.873Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-03-16T18:55:32.873Z] + + sed s/.ipynb$// +[2024-03-16T18:55:32.873Z] echo 12_Performing_hindcasting_experiments.ipynb +[2024-03-16T18:55:32.873Z] + filename=12_Performing_hindcasting_experiments +[2024-03-16T18:55:32.873Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-03-16T18:55:32.873Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-16T18:55:34.778Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-03-16T18:55:56.767Z] [NbConvertApp] Writing 298402 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-03-16T18:55:56.768Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-16T18:55:56.768Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-03-16T18:55:56.768Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-03-16T18:55:56.768Z] + sed s/.ipynb$// +[2024-03-16T18:55:56.768Z] + filename=Assess_probabilistic_flood_risk +[2024-03-16T18:55:56.768Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-03-16T18:55:56.768Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-16T18:55:56.768Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-03-16T18:56:28.853Z] [NbConvertApp] Writing 549251 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-03-16T18:56:28.853Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-16T18:56:28.853Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-16T18:56:28.853Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-16T18:56:28.853Z] + sed s/.ipynb$// +[2024-03-16T18:56:28.853Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-03-16T18:56:28.853Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-03-16T18:56:28.853Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-16T18:56:28.853Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-03-16T18:57:00.961Z] [NbConvertApp] Writing 747757 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-03-16T18:57:00.961Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-16T18:57:00.961Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-03-16T18:57:00.961Z] + + sed s/.ipynb$// +[2024-03-16T18:57:00.961Z] echo Distributed_hydrological_modelling.ipynb +[2024-03-16T18:57:00.961Z] + filename=Distributed_hydrological_modelling +[2024-03-16T18:57:00.961Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-03-16T18:57:00.961Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-16T18:57:00.961Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-03-16T18:57:33.048Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-03-16T18:57:33.048Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-16T18:57:33.048Z] + filename=HydroShare_integration.ipynb +[2024-03-16T18:57:33.048Z] + sed s/.ipynb$// +[2024-03-16T18:57:33.048Z] + echo HydroShare_integration.ipynb +[2024-03-16T18:57:33.048Z] + filename=HydroShare_integration +[2024-03-16T18:57:33.048Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-03-16T18:57:33.048Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-16T18:57:34.436Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-03-16T18:57:42.552Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb +[2024-03-16T18:57:42.552Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-16T18:57:42.552Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-03-16T18:57:42.552Z] + echo Hydrological_realtime_forecasting.ipynb +[2024-03-16T18:57:42.552Z] + sed s/.ipynb$// +[2024-03-16T18:57:42.552Z] + filename=Hydrological_realtime_forecasting +[2024-03-16T18:57:42.552Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-03-16T18:57:42.552Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-16T18:57:42.815Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-03-16T18:58:04.756Z] [NbConvertApp] Writing 281445 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-03-16T18:58:04.756Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-16T18:58:04.756Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-03-16T18:58:04.756Z] + + sed s/.ipynb$// +[2024-03-16T18:58:04.756Z] echo Managing_Jupyter_Environments.ipynb +[2024-03-16T18:58:04.756Z] + filename=Managing_Jupyter_Environments +[2024-03-16T18:58:04.756Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-03-16T18:58:04.756Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-16T18:58:05.705Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-03-16T18:58:15.678Z] [NbConvertApp] Writing 9577 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-03-16T18:58:15.678Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-16T18:58:15.678Z] + filename=Perform_Regionalization.ipynb +[2024-03-16T18:58:15.678Z] + echo Perform_Regionalization.ipynb +[2024-03-16T18:58:15.678Z] + sed s/.ipynb$// +[2024-03-16T18:58:15.678Z] + filename=Perform_Regionalization +[2024-03-16T18:58:15.678Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-03-16T18:58:15.678Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-16T18:58:17.588Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-03-16T18:58:49.677Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-03-16T18:58:49.677Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-16T18:58:49.677Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-16T18:58:49.677Z] + sed s/.ipynb$// +[2024-03-16T18:58:49.677Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-16T18:58:49.677Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-03-16T18:58:49.677Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-03-16T18:58:49.677Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-16T18:58:49.677Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-03-16T18:59:07.771Z] [NbConvertApp] Writing 109086 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-03-16T18:59:07.771Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-16T18:59:07.771Z] + filename=Sensitivity_analysis.ipynb +[2024-03-16T18:59:07.771Z] + + sed s/.ipynb$// +[2024-03-16T18:59:07.771Z] echo Sensitivity_analysis.ipynb +[2024-03-16T18:59:07.771Z] + filename=Sensitivity_analysis +[2024-03-16T18:59:07.771Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-03-16T18:59:07.771Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-16T18:59:07.771Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-03-16T18:59:29.730Z] [NbConvertApp] Writing 35133 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-03-16T18:59:29.730Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-16T18:59:29.730Z] + filename=time_series_analysis.ipynb +[2024-03-16T18:59:29.730Z] + echo time_series_analysis.ipynb +[2024-03-16T18:59:29.730Z] + sed s/.ipynb$// +[2024-03-16T18:59:29.730Z] + filename=time_series_analysis +[2024-03-16T18:59:29.730Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-03-16T18:59:29.730Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-16T18:59:29.730Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-03-16T18:59:39.725Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb +[2024-03-16T18:59:39.725Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-16T18:59:39.725Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-16T18:59:39.725Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-16T18:59:39.725Z] + sed s/.ipynb$// +[2024-03-16T18:59:39.725Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-03-16T18:59:39.725Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-03-16T18:59:39.725Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-16T18:59:39.987Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-03-16T19:01:46.477Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-03-16T19:01:46.477Z] + exit 1 +[2024-03-16T19:01:46.477Z] + EXIT_CODE=1 +[2024-03-16T19:01:46.477Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-16T19:01:46.477Z] + mkdir -p buildout/env-dump +[2024-03-16T19:01:46.477Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-16T19:01:46.477Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-16T19:01:46.477Z] + conda env export -n birdy +[2024-03-16T19:01:54.575Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-16T19:01:54.575Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-16T19:01:54.575Z] + conda list -n birdy --explicit +[2024-03-16T19:02:04.545Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-16T19:02:04.545Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-16T19:02:04.545Z] + pip freeze +[2024-03-16T19:02:04.545Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -2287,41 +2079,41 @@ $ docker top 79c3fe0822c47e861fa6c0d57168d64385acf39f8343c4eb14af36bde8510ee6 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-14T18:41:55.206Z] Archiving artifacts -[2024-03-14T18:41:55.401Z] Recording fingerprints +[2024-03-16T19:02:04.973Z] Archiving artifacts +[2024-03-16T19:02:05.023Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:41:55.612Z] Archiving artifacts -[2024-03-14T18:41:57.929Z] Recording fingerprints +[2024-03-16T19:02:05.057Z] Archiving artifacts +[2024-03-16T19:02:07.325Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:41:59.090Z] Archiving artifacts -[2024-03-14T18:41:59.106Z] Recording fingerprints +[2024-03-16T19:02:07.717Z] Archiving artifacts +[2024-03-16T19:02:07.765Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:41:59.141Z] Archiving artifacts -[2024-03-14T18:41:59.160Z] Recording fingerprints +[2024-03-16T19:02:07.856Z] Archiving artifacts +[2024-03-16T19:02:07.903Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:41:59.194Z] Archiving artifacts -[2024-03-14T18:41:59.213Z] Recording fingerprints +[2024-03-16T19:02:07.956Z] Archiving artifacts +[2024-03-16T19:02:07.995Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:41:59.271Z] Archiving artifacts -[2024-03-14T18:41:59.310Z] Recording fingerprints +[2024-03-16T19:02:08.022Z] Archiving artifacts +[2024-03-16T19:02:08.231Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:42:00.029Z] Archiving artifacts -[2024-03-14T18:42:00.047Z] Recording fingerprints +[2024-03-16T19:02:08.530Z] Archiving artifacts +[2024-03-16T19:02:08.564Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:42:00.134Z] Archiving artifacts -[2024-03-14T18:42:00.172Z] Recording fingerprints +[2024-03-16T19:02:08.631Z] Archiving artifacts +[2024-03-16T19:02:08.677Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:42:00.998Z] Archiving artifacts -[2024-03-14T18:42:01.376Z] Recording fingerprints +[2024-03-16T19:02:08.792Z] Archiving artifacts +[2024-03-16T19:02:09.262Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:42:01.491Z] Archiving artifacts -[2024-03-14T18:42:01.895Z] Recording fingerprints +[2024-03-16T19:02:09.378Z] Archiving artifacts +[2024-03-16T19:02:09.710Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-14T18:42:03.038Z] Archiving artifacts -[2024-03-14T18:42:03.056Z] Recording fingerprints +[2024-03-16T19:02:10.157Z] Archiving artifacts +[2024-03-16T19:02:10.179Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-14T18:42:03.131Z] Sending e-mails to: vu.long@ouranos.ca +[2024-03-16T19:02:10.293Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -2331,8 +2123,8 @@ $ docker top 79c3fe0822c47e861fa6c0d57168d64385acf39f8343c4eb14af36bde8510ee6 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 79c3fe0822c47e861fa6c0d57168d64385acf39f8343c4eb14af36bde8510ee6 -$ docker rm -f 79c3fe0822c47e861fa6c0d57168d64385acf39f8343c4eb14af36bde8510ee6 +$ docker stop --time=1 7c83b119fa591b77c96fbb1844a5b1e12a65c7feabd647b27ba0948bace7a2f1 +$ docker rm -f 7c83b119fa591b77c96fbb1844a5b1e12a65c7feabd647b27ba0948bace7a2f1 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 4fcedaf28732cf4ec885c9bd695610e2b80253a4 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 23 Mar 2024 13:17:53 -0400 Subject: [PATCH 044/104] release: update to use image pavics/workflow-tests:py310-240323 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c37cfc3..d0f1779 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-240316" + image "pavics/workflow-tests:py310-240323" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index ddba8d5..9f4a8d9 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-240316 +FROM pavics/workflow-tests:py310-240323 USER root diff --git a/launchcontainer b/launchcontainer index 262081e..7a2b32e 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240316" + DOCKER_IMAGE="pavics/workflow-tests:py310-240323" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index b23765a..2d09f49 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240316" + DOCKER_IMAGE="pavics/workflow-tests:py310-240323" fi if [ -z "$CONTAINER_NAME" ]; then From e42adfc17796a3fd14a4cc28d45c30d6b003480a Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 23 Mar 2024 14:14:37 -0400 Subject: [PATCH 045/104] docker: py310-240323: build log --- docker/saved_buildout/docker-buildlogs.txt | 15168 ++++++++++++------- 1 file changed, 9343 insertions(+), 5825 deletions(-) diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index 02964c7..2233e5d 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,5825 +1,9343 @@ -2024-03-16T16:31:47Z Building in Docker Cloud's infrastructure... -2024-03-16T16:31:47Z Cloning into '.'... -2024-03-16T16:31:48Z Warning: Permanently added the RSA host key for IP address '140.82.112.3' to the list of known hosts. -2024-03-16T16:31:49Z Switched to a new branch 'docker-py310-240316' -2024-03-16T16:31:49Z KernelVersion: 5.4.0-1068-aws -2024-03-16T16:31:49Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-03-16T16:31:49Z Arch: amd64 -2024-03-16T16:31:49Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-03-16T16:31:49Z ApiVersion: 1.41 -2024-03-16T16:31:49Z Platform: {u'Name': u'Docker Engine - Community'} -2024-03-16T16:31:49Z Version: 20.10.15 -2024-03-16T16:31:49Z MinAPIVersion: 1.12 -2024-03-16T16:31:49Z GitCommit: 4433bf6 -2024-03-16T16:31:49Z Os: linux -2024-03-16T16:31:49Z GoVersion: go1.17.9 -2024-03-16T16:31:49Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240316... -2024-03-16T16:31:54Z #1 [internal] load build definition from Dockerfile -2024-03-16T16:31:54Z #1 transferring dockerfile: 6.98kB done -2024-03-16T16:31:54Z #1 DONE 0.1s -2024-03-16T16:31:54Z -2024-03-16T16:31:54Z #2 [internal] load .dockerignore -2024-03-16T16:31:54Z #2 transferring context: 2B done -2024-03-16T16:31:54Z #2 DONE 0.0s -2024-03-16T16:31:54Z -2024-03-16T16:31:54Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-03-16T16:31:55Z #3 ... -2024-03-16T16:31:55Z -2024-03-16T16:31:55Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-03-16T16:31:55Z #4 DONE 0.0s -2024-03-16T16:31:55Z -2024-03-16T16:31:55Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-03-16T16:31:55Z #3 DONE 0.7s -2024-03-16T16:31:55Z -2024-03-16T16:31:55Z #5 [internal] load build context -2024-03-16T16:31:55Z #5 transferring context: 9.58kB done -2024-03-16T16:31:55Z #5 DONE 0.0s -2024-03-16T16:31:55Z -2024-03-16T16:31:55Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-03-16T16:31:55Z #6 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done -2024-03-16T16:31:55Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.2s -2024-03-16T16:31:55Z #6 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done -2024-03-16T16:31:55Z #6 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done -2024-03-16T16:31:55Z #6 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done -2024-03-16T16:31:55Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 14.68MB / 31.42MB 0.2s -2024-03-16T16:31:55Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 1.05MB / 50.08MB 0.2s -2024-03-16T16:31:55Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 18.87MB / 31.42MB 0.3s -2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 9.44MB / 147.31MB 0.4s -2024-03-16T16:31:56Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 20.97MB / 31.42MB 0.4s -2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 10.49MB / 50.08MB 0.4s -2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 22.02MB / 147.31MB 0.6s -2024-03-16T16:31:56Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 26.21MB / 31.42MB 0.6s -2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 19.92MB / 50.08MB 0.6s -2024-03-16T16:31:56Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 30.41MB / 31.42MB 0.7s -2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 24.83MB / 50.08MB 0.7s -2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 32.51MB / 147.31MB 0.8s -2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 30.41MB / 50.08MB 0.8s -2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 45.09MB / 147.31MB 1.0s -2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 43.41MB / 50.08MB 1.0s -2024-03-16T16:31:56Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.1s done -2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 47.19MB / 50.08MB 1.1s -2024-03-16T16:31:56Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 54.53MB / 147.31MB 1.2s -2024-03-16T16:31:56Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.2s -2024-03-16T16:31:57Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 62.85MB / 147.31MB 1.4s -2024-03-16T16:31:57Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.3s done -2024-03-16T16:31:57Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 -2024-03-16T16:31:57Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 76.55MB / 147.31MB 2.2s -2024-03-16T16:31:57Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 85.98MB / 147.31MB 2.3s -2024-03-16T16:31:58Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 94.37MB / 147.31MB 2.7s -2024-03-16T16:31:58Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 114.29MB / 147.31MB 2.9s -2024-03-16T16:31:58Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 126.88MB / 147.31MB 3.1s -2024-03-16T16:31:58Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 137.26MB / 147.31MB 3.3s -2024-03-16T16:31:59Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 145.75MB / 147.31MB 3.4s -2024-03-16T16:32:00Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 4.5s done -2024-03-16T16:32:01Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 4.8s done -2024-03-16T16:32:02Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0.1s -2024-03-16T16:32:07Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.3s -2024-03-16T16:32:08Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.4s done -2024-03-16T16:32:09Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c -2024-03-16T16:32:14Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.0s -2024-03-16T16:32:19Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.1s -2024-03-16T16:32:22Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 13.9s done -2024-03-16T16:32:23Z #6 ... -2024-03-16T16:32:23Z -2024-03-16T16:32:23Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-03-16T16:32:24Z #7 1.518 Channels: -2024-03-16T16:32:24Z #7 1.518 - defaults -2024-03-16T16:32:24Z #7 1.518 Platform: linux-64 -2024-03-16T16:32:29Z #7 1.518 Collecting package metadata (repodata.json): ...working... done -2024-03-16T16:32:29Z #7 5.671 Solving environment: ...working... done -2024-03-16T16:32:29Z #7 5.989 -2024-03-16T16:32:29Z #7 5.989 # All requested packages already installed. -2024-03-16T16:32:29Z #7 5.989 -2024-03-16T16:32:30Z #7 7.222 Channels: -2024-03-16T16:32:30Z #7 7.222 - conda-forge -2024-03-16T16:32:30Z #7 7.222 - defaults -2024-03-16T16:32:30Z #7 7.222 Platform: linux-64 -2024-03-16T16:32:56Z #7 7.222 Collecting package metadata (repodata.json): ...working... done -2024-03-16T16:32:58Z #7 33.19 Solving environment: ...working... done -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 ## Package Plan ## -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 environment location: /opt/conda -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 added / updated specs: -2024-03-16T16:32:58Z #7 35.23 - mamba -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 The following packages will be downloaded: -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 package | build -2024-03-16T16:32:58Z #7 35.23 ---------------------------|----------------- -2024-03-16T16:32:58Z #7 35.23 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 ca-certificates-2024.2.2 | hbcca054_0 152 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 conda-24.1.2 | py311h38be061_0 1.2 MB conda-forge -2024-03-16T16:32:58Z #7 35.23 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-03-16T16:32:58Z #7 35.23 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 libmamba-1.5.7 | had39da4_0 1.6 MB conda-forge -2024-03-16T16:32:58Z #7 35.23 libmambapy-1.5.7 | py311hf2555c7_0 305 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge -2024-03-16T16:32:58Z #7 35.23 libxml2-2.12.5 | h232c23b_0 688 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 lzo-2.10 | h516909a_1000 314 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 mamba-1.5.7 | py311h3072747_0 65 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 openssl-3.2.1 | hd590300_0 2.7 MB conda-forge -2024-03-16T16:32:58Z #7 35.23 python_abi-3.11 | 2_cp311 5 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-03-16T16:32:58Z #7 35.23 ------------------------------------------------------------ -2024-03-16T16:32:58Z #7 35.23 Total: 25.3 MB -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 The following NEW packages will be INSTALLED: -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-03-16T16:32:58Z #7 35.23 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-03-16T16:32:58Z #7 35.23 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 -2024-03-16T16:32:58Z #7 35.23 mamba conda-forge/linux-64::mamba-1.5.7-py311h3072747_0 -2024-03-16T16:32:58Z #7 35.23 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 The following packages will be UPDATED: -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 ca-certificates pkgs/main::ca-certificates-2023.12.12~ --> conda-forge::ca-certificates-2024.2.2-hbcca054_0 -2024-03-16T16:32:58Z #7 35.23 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-03-16T16:32:58Z #7 35.23 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-03-16T16:32:58Z #7 35.23 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-03-16T16:32:58Z #7 35.23 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 -2024-03-16T16:32:58Z #7 35.23 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 -2024-03-16T16:32:58Z #7 35.23 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.7-had39da4_0 -2024-03-16T16:32:58Z #7 35.23 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.7-py311hf2555c7_0 -2024-03-16T16:32:58Z #7 35.23 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 -2024-03-16T16:32:58Z #7 35.23 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.5-h232c23b_0 -2024-03-16T16:32:58Z #7 35.23 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_0 -2024-03-16T16:32:58Z #7 35.23 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 The following packages will be SUPERSEDED by a higher-priority channel: -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-03-16T16:32:58Z #7 35.23 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-03-16T16:32:58Z #7 35.23 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-03-16T16:32:58Z #7 35.23 conda pkgs/main::conda-24.1.2-py311h06a4308~ --> conda-forge::conda-24.1.2-py311h38be061_0 -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 -2024-03-16T16:32:58Z #7 35.23 Proceed ([y]/n)? -2024-03-16T16:33:00Z #7 37.32 -2024-03-16T16:33:00Z #7 37.32 Downloading and Extracting Packages: ...working... done -2024-03-16T16:33:00Z #7 37.32 Preparing transaction: ...working... done -2024-03-16T16:33:01Z #7 37.42 Verifying transaction: ...working... done -2024-03-16T16:33:09Z #7 37.83 Executing transaction: ...working... done -2024-03-16T16:33:10Z #7 47.52 Will remove 21 (25.3 MB) tarball(s). -2024-03-16T16:33:10Z #7 47.52 Will remove 1 index cache(s). -2024-03-16T16:33:10Z #7 47.52 Will remove 3 (118 KB) package(s). -2024-03-16T16:33:10Z #7 47.52 There are no tempfile(s) to remove. -2024-03-16T16:33:10Z #7 47.52 There are no logfile(s) to remove. -2024-03-16T16:33:12Z #7 48.94 bin/micromamba -2024-03-16T16:33:14Z #7 DONE 51.1s -2024-03-16T16:33:14Z -2024-03-16T16:33:14Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-03-16T16:33:15Z #8 0.606 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-03-16T16:33:15Z #8 0.619 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-03-16T16:33:15Z #8 0.632 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-03-16T16:33:15Z #8 0.748 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-03-16T16:33:15Z #8 0.988 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [269 kB] -2024-03-16T16:33:15Z #8 1.112 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-03-16T16:33:17Z #8 2.685 Fetched 8564 kB in 2s (4106 kB/s) -2024-03-16T16:33:18Z #8 2.685 Reading package lists... -2024-03-16T16:33:19Z #8 3.671 Reading package lists... -2024-03-16T16:33:19Z #8 4.646 Building dependency tree... -2024-03-16T16:33:19Z #8 4.866 Reading state information... -2024-03-16T16:33:19Z #8 5.192 git is already the newest version (1:2.30.2-1+deb11u2). -2024-03-16T16:33:19Z #8 5.192 mercurial is already the newest version (5.6.1-4). -2024-03-16T16:33:19Z #8 5.192 The following additional packages will be installed: -2024-03-16T16:33:19Z #8 5.193 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-03-16T16:33:19Z #8 5.193 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-03-16T16:33:19Z #8 5.193 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-03-16T16:33:19Z #8 5.193 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-03-16T16:33:19Z #8 5.193 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-03-16T16:33:19Z #8 5.194 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-03-16T16:33:19Z #8 5.194 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-03-16T16:33:19Z #8 5.194 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-03-16T16:33:19Z #8 5.194 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-03-16T16:33:19Z #8 5.194 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-03-16T16:33:19Z #8 5.194 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-03-16T16:33:19Z #8 5.194 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-03-16T16:33:19Z #8 5.194 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-03-16T16:33:19Z #8 5.194 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-03-16T16:33:19Z #8 5.195 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-03-16T16:33:19Z #8 5.195 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-03-16T16:33:19Z #8 5.195 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-03-16T16:33:19Z #8 5.195 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-03-16T16:33:19Z #8 5.195 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-03-16T16:33:19Z #8 5.195 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-03-16T16:33:19Z #8 5.195 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-03-16T16:33:19Z #8 5.195 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-03-16T16:33:19Z #8 5.195 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-03-16T16:33:19Z #8 5.196 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-03-16T16:33:19Z #8 5.196 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-03-16T16:33:19Z #8 5.196 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-03-16T16:33:19Z #8 5.196 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-03-16T16:33:19Z #8 5.197 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-03-16T16:33:19Z #8 5.197 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-03-16T16:33:19Z #8 5.197 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-03-16T16:33:19Z #8 5.197 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-03-16T16:33:19Z #8 5.197 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-03-16T16:33:19Z #8 5.197 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-03-16T16:33:19Z #8 5.197 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-03-16T16:33:19Z #8 5.197 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-03-16T16:33:19Z #8 5.197 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-03-16T16:33:19Z #8 5.197 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-03-16T16:33:19Z #8 5.198 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv -2024-03-16T16:33:19Z #8 5.199 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data -2024-03-16T16:33:19Z #8 5.201 Suggested packages: -2024-03-16T16:33:19Z #8 5.201 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-03-16T16:33:19Z #8 5.201 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-03-16T16:33:19Z #8 5.201 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-03-16T16:33:19Z #8 5.201 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs -2024-03-16T16:33:19Z #8 5.201 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser -2024-03-16T16:33:19Z #8 5.201 opencl-icd ed diffutils-doc systemd-container policykit-1 zip -2024-03-16T16:33:19Z #8 5.201 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-03-16T16:33:19Z #8 5.201 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-03-16T16:33:19Z #8 5.201 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-03-16T16:33:21Z #8 6.836 The following NEW packages will be installed: -2024-03-16T16:33:21Z #8 6.837 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-03-16T16:33:21Z #8 6.838 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-03-16T16:33:21Z #8 6.838 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-03-16T16:33:21Z #8 6.838 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-03-16T16:33:21Z #8 6.839 glib-networking glib-networking-common glib-networking-services -2024-03-16T16:33:21Z #8 6.839 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-03-16T16:33:21Z #8 6.840 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-03-16T16:33:21Z #8 6.840 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-03-16T16:33:21Z #8 6.840 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-03-16T16:33:21Z #8 6.848 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-03-16T16:33:21Z #8 6.848 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-03-16T16:33:21Z #8 6.848 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-03-16T16:33:21Z #8 6.848 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-03-16T16:33:21Z #8 6.848 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-03-16T16:33:21Z #8 6.848 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-03-16T16:33:21Z #8 6.848 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-03-16T16:33:21Z #8 6.848 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-03-16T16:33:21Z #8 6.848 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-03-16T16:33:21Z #8 6.848 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-03-16T16:33:21Z #8 6.848 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-03-16T16:33:21Z #8 6.848 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-03-16T16:33:21Z #8 6.848 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-03-16T16:33:21Z #8 6.848 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-03-16T16:33:21Z #8 6.848 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-03-16T16:33:21Z #8 6.848 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-03-16T16:33:21Z #8 6.848 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-03-16T16:33:21Z #8 6.848 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-03-16T16:33:21Z #8 6.848 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-03-16T16:33:21Z #8 6.848 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-03-16T16:33:21Z #8 6.848 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-03-16T16:33:21Z #8 6.848 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-03-16T16:33:21Z #8 6.848 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-03-16T16:33:21Z #8 6.848 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-03-16T16:33:21Z #8 6.848 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-03-16T16:33:21Z #8 6.848 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-03-16T16:33:21Z #8 6.848 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-03-16T16:33:21Z #8 6.848 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-03-16T16:33:21Z #8 6.848 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-03-16T16:33:21Z #8 6.848 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-03-16T16:33:21Z #8 6.848 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-03-16T16:33:21Z #8 6.848 x11-utils xkb-data -2024-03-16T16:33:21Z #8 6.881 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. -2024-03-16T16:33:21Z #8 6.881 Need to get 236 MB of archives. -2024-03-16T16:33:21Z #8 6.881 After this operation, 891 MB of additional disk space will be used. -2024-03-16T16:33:21Z #8 6.881 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-03-16T16:33:21Z #8 6.889 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-03-16T16:33:21Z #8 6.890 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-03-16T16:33:21Z #8 6.911 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-03-16T16:33:21Z #8 6.915 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-03-16T16:33:21Z #8 6.919 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-03-16T16:33:21Z #8 6.922 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-03-16T16:33:21Z #8 6.929 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-03-16T16:33:21Z #8 6.930 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-03-16T16:33:21Z #8 6.941 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-03-16T16:33:21Z #8 7.047 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-03-16T16:33:21Z #8 7.050 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-03-16T16:33:21Z #8 7.055 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-03-16T16:33:21Z #8 7.059 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-03-16T16:33:21Z #8 7.063 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-03-16T16:33:21Z #8 7.067 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-03-16T16:33:21Z #8 7.087 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-03-16T16:33:21Z #8 7.090 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-03-16T16:33:21Z #8 7.098 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-03-16T16:33:21Z #8 7.103 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-03-16T16:33:21Z #8 7.314 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-03-16T16:33:21Z #8 7.324 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-03-16T16:33:21Z #8 7.334 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-03-16T16:33:21Z #8 7.337 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-03-16T16:33:21Z #8 7.341 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-03-16T16:33:21Z #8 7.343 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-03-16T16:33:21Z #8 7.346 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-03-16T16:33:21Z #8 7.350 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-03-16T16:33:21Z #8 7.355 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-03-16T16:33:21Z #8 7.358 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-03-16T16:33:21Z #8 7.360 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-03-16T16:33:22Z #8 7.603 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-03-16T16:33:22Z #8 7.605 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-03-16T16:33:22Z #8 7.607 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-03-16T16:33:22Z #8 7.612 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-03-16T16:33:22Z #8 7.614 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-03-16T16:33:22Z #8 7.616 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-03-16T16:33:22Z #8 7.618 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-03-16T16:33:22Z #8 7.619 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-03-16T16:33:22Z #8 7.622 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-03-16T16:33:22Z #8 7.649 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-03-16T16:33:22Z #8 7.657 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-03-16T16:33:22Z #8 7.683 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-03-16T16:33:22Z #8 7.685 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-03-16T16:33:22Z #8 7.712 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-03-16T16:33:22Z #8 7.721 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-03-16T16:33:22Z #8 7.730 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-03-16T16:33:22Z #8 7.756 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-03-16T16:33:22Z #8 7.758 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-03-16T16:33:22Z #8 7.933 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-03-16T16:33:22Z #8 7.934 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-03-16T16:33:22Z #8 7.936 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-03-16T16:33:22Z #8 7.942 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-03-16T16:33:22Z #8 7.944 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-03-16T16:33:22Z #8 7.946 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-03-16T16:33:22Z #8 7.949 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-03-16T16:33:22Z #8 7.951 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-03-16T16:33:22Z #8 7.959 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-03-16T16:33:22Z #8 7.981 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-03-16T16:33:22Z #8 7.994 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-03-16T16:33:22Z #8 7.999 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-03-16T16:33:22Z #8 8.023 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-03-16T16:33:22Z #8 8.025 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-03-16T16:33:22Z #8 8.027 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-03-16T16:33:22Z #8 8.035 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-03-16T16:33:22Z #8 8.037 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-03-16T16:33:22Z #8 8.039 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-03-16T16:33:22Z #8 8.042 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-03-16T16:33:22Z #8 8.044 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-03-16T16:33:22Z #8 8.047 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-03-16T16:33:22Z #8 8.051 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-03-16T16:33:22Z #8 8.053 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-03-16T16:33:22Z #8 8.056 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-03-16T16:33:22Z #8 8.058 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-03-16T16:33:22Z #8 8.076 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-03-16T16:33:22Z #8 8.080 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-03-16T16:33:22Z #8 8.083 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-03-16T16:33:22Z #8 8.093 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-03-16T16:33:22Z #8 8.109 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-03-16T16:33:22Z #8 8.111 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-03-16T16:33:22Z #8 8.113 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-03-16T16:33:22Z #8 8.118 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-03-16T16:33:22Z #8 8.121 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-03-16T16:33:22Z #8 8.123 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-03-16T16:33:22Z #8 8.124 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-03-16T16:33:22Z #8 8.128 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-03-16T16:33:22Z #8 8.130 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-03-16T16:33:22Z #8 8.132 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-03-16T16:33:22Z #8 8.134 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-03-16T16:33:22Z #8 8.137 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-03-16T16:33:22Z #8 8.139 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-03-16T16:33:22Z #8 8.147 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-03-16T16:33:22Z #8 8.149 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-03-16T16:33:22Z #8 8.153 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-03-16T16:33:22Z #8 8.154 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-03-16T16:33:22Z #8 8.156 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-03-16T16:33:22Z #8 8.157 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-03-16T16:33:22Z #8 8.159 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-03-16T16:33:22Z #8 8.160 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-03-16T16:33:22Z #8 8.162 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-03-16T16:33:22Z #8 8.186 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-03-16T16:33:22Z #8 8.199 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-03-16T16:33:22Z #8 8.201 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-03-16T16:33:22Z #8 8.203 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-03-16T16:33:22Z #8 8.215 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-03-16T16:33:22Z #8 8.217 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-03-16T16:33:22Z #8 8.219 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-03-16T16:33:22Z #8 8.330 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-03-16T16:33:22Z #8 8.369 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-03-16T16:33:22Z #8 8.374 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.8.0esr-1~deb11u1 [63.7 MB] -2024-03-16T16:33:24Z #8 9.834 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-03-16T16:33:24Z #8 9.836 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-03-16T16:33:24Z #8 9.838 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-03-16T16:33:24Z #8 9.840 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-03-16T16:33:24Z #8 9.849 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-03-16T16:33:24Z #8 9.852 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-03-16T16:33:24Z #8 9.891 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-03-16T16:33:24Z #8 9.902 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-03-16T16:33:24Z #8 9.934 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-03-16T16:33:24Z #8 9.946 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-03-16T16:33:24Z #8 9.951 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-03-16T16:33:24Z #8 9.983 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-03-16T16:33:24Z #8 10.37 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-03-16T16:33:24Z #8 10.37 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-03-16T16:33:24Z #8 10.38 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-03-16T16:33:24Z #8 10.38 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-03-16T16:33:24Z #8 10.38 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-03-16T16:33:24Z #8 10.39 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-03-16T16:33:24Z #8 10.39 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-03-16T16:33:24Z #8 10.40 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-03-16T16:33:24Z #8 10.40 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-03-16T16:33:24Z #8 10.42 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-03-16T16:33:24Z #8 10.46 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-03-16T16:33:25Z #8 10.53 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-03-16T16:33:25Z #8 10.53 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-03-16T16:33:25Z #8 10.53 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-03-16T16:33:25Z #8 10.53 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-03-16T16:33:25Z #8 10.54 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-03-16T16:33:25Z #8 10.55 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-03-16T16:33:25Z #8 10.73 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-03-16T16:33:25Z #8 10.73 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-03-16T16:33:25Z #8 10.74 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-03-16T16:33:25Z #8 10.76 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-03-16T16:33:25Z #8 10.76 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-03-16T16:33:25Z #8 10.77 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-03-16T16:33:25Z #8 10.79 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-03-16T16:33:25Z #8 10.80 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-03-16T16:33:25Z #8 10.80 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-03-16T16:33:25Z #8 10.80 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-03-16T16:33:25Z #8 10.81 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-03-16T16:33:25Z #8 10.81 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-03-16T16:33:25Z #8 10.81 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-03-16T16:33:25Z #8 10.81 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-03-16T16:33:25Z #8 10.82 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-03-16T16:33:25Z #8 10.82 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-03-16T16:33:25Z #8 10.82 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-03-16T16:33:25Z #8 10.83 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-03-16T16:33:25Z #8 10.83 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-03-16T16:33:25Z #8 10.84 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-03-16T16:33:25Z #8 10.85 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-03-16T16:33:25Z #8 10.85 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-03-16T16:33:25Z #8 10.88 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-03-16T16:33:25Z #8 10.88 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-03-16T16:33:25Z #8 10.88 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-03-16T16:33:25Z #8 10.89 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-03-16T16:33:25Z #8 11.00 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] -2024-03-16T16:33:25Z #8 11.01 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-03-16T16:33:25Z #8 11.01 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-03-16T16:33:25Z #8 11.02 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] -2024-03-16T16:33:25Z #8 11.02 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-03-16T16:33:25Z #8 11.04 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-03-16T16:33:25Z #8 11.04 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-03-16T16:33:25Z #8 11.05 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-03-16T16:33:25Z #8 11.05 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] -2024-03-16T16:33:25Z #8 11.09 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-03-16T16:33:25Z #8 11.09 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-03-16T16:33:25Z #8 11.09 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-03-16T16:33:25Z #8 11.12 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-03-16T16:33:25Z #8 11.12 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-03-16T16:33:25Z #8 11.13 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-03-16T16:33:25Z #8 11.13 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-03-16T16:33:25Z #8 11.14 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-03-16T16:33:25Z #8 11.31 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-03-16T16:33:26Z #8 11.71 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-03-16T16:33:26Z #8 11.72 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-03-16T16:33:26Z #8 11.72 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-03-16T16:33:26Z #8 11.73 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-03-16T16:33:26Z #8 12.01 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-03-16T16:33:26Z #8 12.02 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-03-16T16:33:26Z #8 12.02 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-03-16T16:33:26Z #8 12.02 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-03-16T16:33:26Z #8 12.02 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-03-16T16:33:26Z #8 12.03 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-03-16T16:33:26Z #8 12.03 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-03-16T16:33:26Z #8 12.03 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-03-16T16:33:26Z #8 12.03 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-03-16T16:33:26Z #8 12.04 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-03-16T16:33:26Z #8 12.04 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-03-16T16:33:26Z #8 12.05 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-03-16T16:33:26Z #8 12.05 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-03-16T16:33:26Z #8 12.05 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-03-16T16:33:26Z #8 12.06 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-03-16T16:33:26Z #8 12.06 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-03-16T16:33:26Z #8 12.06 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-03-16T16:33:26Z #8 12.06 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-03-16T16:33:26Z #8 12.06 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-03-16T16:33:26Z #8 12.07 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-03-16T16:33:26Z #8 12.07 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-03-16T16:33:26Z #8 12.07 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-03-16T16:33:26Z #8 12.07 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-03-16T16:33:26Z #8 12.08 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-03-16T16:33:26Z #8 12.08 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-03-16T16:33:26Z #8 12.08 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-03-16T16:33:26Z #8 12.11 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-03-16T16:33:26Z #8 12.18 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-03-16T16:33:26Z #8 12.21 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-03-16T16:33:26Z #8 12.29 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-03-16T16:33:26Z #8 12.30 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-03-16T16:33:26Z #8 12.30 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-03-16T16:33:26Z #8 12.30 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-03-16T16:33:26Z #8 12.30 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-03-16T16:33:27Z #8 12.59 debconf: delaying package configuration, since apt-utils is not installed -2024-03-16T16:33:27Z #8 12.65 Fetched 236 MB in 5s (43.3 MB/s) -2024-03-16T16:33:27Z #8 12.69 Selecting previously unselected package libapparmor1:amd64. -2024-03-16T16:33:27Z #8 12.69 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-03-16T16:33:27Z #8 12.72 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-03-16T16:33:27Z #8 12.73 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-03-16T16:33:27Z #8 12.79 Selecting previously unselected package libcap2:amd64. -2024-03-16T16:33:27Z #8 12.80 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-03-16T16:33:27Z #8 12.80 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-03-16T16:33:27Z #8 12.86 Selecting previously unselected package libargon2-1:amd64. -2024-03-16T16:33:27Z #8 12.86 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-03-16T16:33:27Z #8 12.87 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-03-16T16:33:27Z #8 12.91 Selecting previously unselected package dmsetup. -2024-03-16T16:33:27Z #8 12.92 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-03-16T16:33:27Z #8 12.92 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-03-16T16:33:27Z #8 12.98 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-03-16T16:33:27Z #8 12.99 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-03-16T16:33:27Z #8 12.99 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-03-16T16:33:27Z #8 13.06 Selecting previously unselected package libjson-c5:amd64. -2024-03-16T16:33:27Z #8 13.07 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-03-16T16:33:27Z #8 13.07 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-03-16T16:33:27Z #8 13.13 Selecting previously unselected package libcryptsetup12:amd64. -2024-03-16T16:33:27Z #8 13.14 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-03-16T16:33:27Z #8 13.14 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-03-16T16:33:27Z #8 13.24 Selecting previously unselected package libip4tc2:amd64. -2024-03-16T16:33:27Z #8 13.24 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-03-16T16:33:27Z #8 13.25 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-03-16T16:33:27Z #8 13.30 Selecting previously unselected package libkmod2:amd64. -2024-03-16T16:33:27Z #8 13.30 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-03-16T16:33:27Z #8 13.31 Unpacking libkmod2:amd64 (28-1) ... -2024-03-16T16:33:27Z #8 13.42 Selecting previously unselected package systemd. -2024-03-16T16:33:27Z #8 13.43 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-16T16:33:27Z #8 13.49 Unpacking systemd (247.3-7+deb11u4) ... -2024-03-16T16:33:29Z #8 14.50 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-03-16T16:33:29Z #8 14.52 Setting up libcap2:amd64 (1:2.44-1) ... -2024-03-16T16:33:29Z #8 14.53 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-03-16T16:33:29Z #8 14.55 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-03-16T16:33:29Z #8 14.56 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-03-16T16:33:29Z #8 14.57 Setting up libkmod2:amd64 (28-1) ... -2024-03-16T16:33:29Z #8 14.59 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-03-16T16:33:29Z #8 14.61 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-03-16T16:33:29Z #8 14.63 Setting up systemd (247.3-7+deb11u4) ... -2024-03-16T16:33:29Z #8 14.69 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-03-16T16:33:29Z #8 14.70 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-03-16T16:33:29Z #8 14.70 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-03-16T16:33:29Z #8 14.73 Initializing machine ID from KVM UUID. -2024-03-16T16:33:29Z #8 15.24 Setting up dmsetup (2:1.02.175-2.1) ... -2024-03-16T16:33:29Z #8 15.34 Selecting previously unselected package systemd-sysv. -2024-03-16T16:33:29Z #8 15.34 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-03-16T16:33:29Z #8 15.36 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-03-16T16:33:29Z #8 15.37 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-03-16T16:33:29Z #8 15.43 Selecting previously unselected package libdbus-1-3:amd64. -2024-03-16T16:33:29Z #8 15.44 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-03-16T16:33:29Z #8 15.45 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-03-16T16:33:30Z #8 15.55 Selecting previously unselected package dbus. -2024-03-16T16:33:30Z #8 15.56 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-03-16T16:33:30Z #8 15.58 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-03-16T16:33:30Z #8 15.67 Selecting previously unselected package libnss-systemd:amd64. -2024-03-16T16:33:30Z #8 15.68 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-16T16:33:30Z #8 15.68 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-16T16:33:30Z #8 15.75 Selecting previously unselected package libpam-systemd:amd64. -2024-03-16T16:33:30Z #8 15.75 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-16T16:33:30Z #8 15.76 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-16T16:33:30Z #8 15.83 Selecting previously unselected package manpages. -2024-03-16T16:33:30Z #8 15.83 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-03-16T16:33:30Z #8 15.84 Unpacking manpages (5.10-1) ... -2024-03-16T16:33:30Z #8 16.08 Selecting previously unselected package systemd-timesyncd. -2024-03-16T16:33:30Z #8 16.08 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-03-16T16:33:30Z #8 16.09 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-03-16T16:33:30Z #8 16.16 Selecting previously unselected package hicolor-icon-theme. -2024-03-16T16:33:30Z #8 16.17 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-03-16T16:33:30Z #8 16.18 Unpacking hicolor-icon-theme (0.17-2) ... -2024-03-16T16:33:30Z #8 16.30 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-03-16T16:33:30Z #8 16.30 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-03-16T16:33:30Z #8 16.31 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-03-16T16:33:30Z #8 16.46 Selecting previously unselected package libicu67:amd64. -2024-03-16T16:33:30Z #8 16.46 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-03-16T16:33:30Z #8 16.47 Unpacking libicu67:amd64 (67.1-7) ... -2024-03-16T16:33:32Z #8 18.14 Selecting previously unselected package libxml2:amd64. -2024-03-16T16:33:32Z #8 18.14 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-03-16T16:33:32Z #8 18.15 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-03-16T16:33:32Z #8 18.32 Selecting previously unselected package shared-mime-info. -2024-03-16T16:33:32Z #8 18.32 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-03-16T16:33:32Z #8 18.32 Unpacking shared-mime-info (2.0-1) ... -2024-03-16T16:33:32Z #8 18.50 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-03-16T16:33:32Z #8 18.51 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-03-16T16:33:32Z #8 18.51 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-03-16T16:33:33Z #8 18.58 Selecting previously unselected package libpng16-16:amd64. -2024-03-16T16:33:33Z #8 18.59 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-03-16T16:33:33Z #8 18.59 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-03-16T16:33:33Z #8 18.67 Selecting previously unselected package libdeflate0:amd64. -2024-03-16T16:33:33Z #8 18.68 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-03-16T16:33:33Z #8 18.68 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-03-16T16:33:33Z #8 18.74 Selecting previously unselected package libjbig0:amd64. -2024-03-16T16:33:33Z #8 18.74 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-03-16T16:33:33Z #8 18.75 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-03-16T16:33:33Z #8 18.80 Selecting previously unselected package libwebp6:amd64. -2024-03-16T16:33:33Z #8 18.81 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-03-16T16:33:33Z #8 18.81 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-16T16:33:33Z #8 18.90 Selecting previously unselected package libtiff5:amd64. -2024-03-16T16:33:33Z #8 18.90 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-03-16T16:33:33Z #8 18.92 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-03-16T16:33:33Z #8 19.03 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-03-16T16:33:33Z #8 19.04 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-03-16T16:33:33Z #8 19.05 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-16T16:33:33Z #8 19.12 Selecting previously unselected package gtk-update-icon-cache. -2024-03-16T16:33:33Z #8 19.13 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-03-16T16:33:33Z #8 19.13 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-03-16T16:33:33Z #8 19.26 Selecting previously unselected package adwaita-icon-theme. -2024-03-16T16:33:33Z #8 19.26 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-03-16T16:33:33Z #8 19.27 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-03-16T16:33:36Z #8 22.09 Selecting previously unselected package alsa-topology-conf. -2024-03-16T16:33:36Z #8 22.09 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-03-16T16:33:36Z #8 22.10 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-03-16T16:33:36Z #8 22.14 Selecting previously unselected package libasound2-data. -2024-03-16T16:33:36Z #8 22.14 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-03-16T16:33:36Z #8 22.15 Unpacking libasound2-data (1.2.4-1.1) ... -2024-03-16T16:33:36Z #8 22.23 Selecting previously unselected package libasound2:amd64. -2024-03-16T16:33:36Z #8 22.23 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-03-16T16:33:36Z #8 22.24 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-03-16T16:33:36Z #8 22.36 Selecting previously unselected package alsa-ucm-conf. -2024-03-16T16:33:36Z #8 22.37 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-03-16T16:33:36Z #8 22.38 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-03-16T16:33:36Z #8 22.48 Selecting previously unselected package libatspi2.0-0:amd64. -2024-03-16T16:33:36Z #8 22.49 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-03-16T16:33:36Z #8 22.49 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-03-16T16:33:36Z #8 22.57 Selecting previously unselected package libxi6:amd64. -2024-03-16T16:33:36Z #8 22.58 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-03-16T16:33:37Z #8 22.58 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-03-16T16:33:37Z #8 22.65 Selecting previously unselected package libxtst6:amd64. -2024-03-16T16:33:37Z #8 22.65 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-03-16T16:33:37Z #8 22.66 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-03-16T16:33:37Z #8 22.71 Selecting previously unselected package at-spi2-core. -2024-03-16T16:33:37Z #8 22.71 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-03-16T16:33:37Z #8 22.72 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-03-16T16:33:37Z #8 22.79 Selecting previously unselected package binutils-common:amd64. -2024-03-16T16:33:37Z #8 22.80 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-03-16T16:33:37Z #8 22.80 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-03-16T16:33:37Z #8 23.23 Selecting previously unselected package libbinutils:amd64. -2024-03-16T16:33:37Z #8 23.24 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-03-16T16:33:37Z #8 23.24 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-03-16T16:33:37Z #8 23.40 Selecting previously unselected package libctf-nobfd0:amd64. -2024-03-16T16:33:37Z #8 23.40 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-03-16T16:33:37Z #8 23.40 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-03-16T16:33:37Z #8 23.46 Selecting previously unselected package libctf0:amd64. -2024-03-16T16:33:38Z #8 23.46 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-03-16T16:33:38Z #8 23.47 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-03-16T16:33:38Z #8 23.51 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-03-16T16:33:38Z #8 23.51 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-03-16T16:33:38Z #8 23.52 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-03-16T16:33:38Z #8 23.95 Selecting previously unselected package binutils. -2024-03-16T16:33:38Z #8 23.95 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-03-16T16:33:38Z #8 23.96 Unpacking binutils (2.35.2-2) ... -2024-03-16T16:33:38Z #8 24.02 Selecting previously unselected package libisl23:amd64. -2024-03-16T16:33:38Z #8 24.02 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-03-16T16:33:38Z #8 24.03 Unpacking libisl23:amd64 (0.23-1) ... -2024-03-16T16:33:38Z #8 24.20 Selecting previously unselected package libmpfr6:amd64. -2024-03-16T16:33:38Z #8 24.20 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-03-16T16:33:38Z #8 24.20 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-03-16T16:33:38Z #8 24.43 Selecting previously unselected package libmpc3:amd64. -2024-03-16T16:33:38Z #8 24.43 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-03-16T16:33:38Z #8 24.43 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-03-16T16:33:38Z #8 24.49 Selecting previously unselected package cpp-10. -2024-03-16T16:33:38Z #8 24.49 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-03-16T16:33:38Z #8 24.49 Unpacking cpp-10 (10.2.1-6) ... -2024-03-16T16:33:40Z #8 26.02 Selecting previously unselected package cpp. -2024-03-16T16:33:40Z #8 26.02 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-03-16T16:33:40Z #8 26.03 Unpacking cpp (4:10.2.1-1) ... -2024-03-16T16:33:40Z #8 26.06 Selecting previously unselected package dbus-user-session. -2024-03-16T16:33:40Z #8 26.07 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-03-16T16:33:40Z #8 26.07 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-03-16T16:33:40Z #8 26.12 Selecting previously unselected package libdconf1:amd64. -2024-03-16T16:33:40Z #8 26.13 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-03-16T16:33:40Z #8 26.13 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-03-16T16:33:40Z #8 26.17 Selecting previously unselected package dconf-service. -2024-03-16T16:33:40Z #8 26.17 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-03-16T16:33:40Z #8 26.18 Unpacking dconf-service (0.38.0-2) ... -2024-03-16T16:33:40Z #8 26.22 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-03-16T16:33:40Z #8 26.23 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-03-16T16:33:40Z #8 26.23 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-03-16T16:33:40Z #8 26.27 Selecting previously unselected package libatk1.0-data. -2024-03-16T16:33:40Z #8 26.28 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-03-16T16:33:40Z #8 26.28 Unpacking libatk1.0-data (2.36.0-2) ... -2024-03-16T16:33:40Z #8 26.37 Selecting previously unselected package libatk1.0-0:amd64. -2024-03-16T16:33:40Z #8 26.38 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-03-16T16:33:40Z #8 26.38 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-03-16T16:33:40Z #8 26.43 Selecting previously unselected package libfreetype6:amd64. -2024-03-16T16:33:40Z #8 26.44 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-03-16T16:33:40Z #8 26.44 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-03-16T16:33:41Z #8 26.55 Selecting previously unselected package fonts-dejavu-core. -2024-03-16T16:33:41Z #8 26.56 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-03-16T16:33:41Z #8 26.56 Unpacking fonts-dejavu-core (2.37-2) ... -2024-03-16T16:33:41Z #8 26.81 Selecting previously unselected package fontconfig-config. -2024-03-16T16:33:41Z #8 26.82 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-03-16T16:33:41Z #8 26.98 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-03-16T16:33:41Z #8 27.06 Selecting previously unselected package libfontconfig1:amd64. -2024-03-16T16:33:41Z #8 27.06 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-03-16T16:33:41Z #8 27.06 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-03-16T16:33:41Z #8 27.14 Selecting previously unselected package libpixman-1-0:amd64. -2024-03-16T16:33:41Z #8 27.14 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-03-16T16:33:41Z #8 27.15 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-03-16T16:33:41Z #8 27.24 Selecting previously unselected package libxcb-render0:amd64. -2024-03-16T16:33:41Z #8 27.25 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-03-16T16:33:41Z #8 27.25 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-03-16T16:33:41Z #8 27.31 Selecting previously unselected package libxcb-shm0:amd64. -2024-03-16T16:33:41Z #8 27.32 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-03-16T16:33:41Z #8 27.32 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-03-16T16:33:41Z #8 27.38 Selecting previously unselected package libcairo2:amd64. -2024-03-16T16:33:41Z #8 27.38 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-03-16T16:33:41Z #8 27.38 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-03-16T16:33:42Z #8 27.54 Selecting previously unselected package libcairo-gobject2:amd64. -2024-03-16T16:33:42Z #8 27.54 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-03-16T16:33:42Z #8 27.55 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-03-16T16:33:42Z #8 27.61 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-03-16T16:33:42Z #8 27.62 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-03-16T16:33:42Z #8 27.62 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-03-16T16:33:42Z #8 27.67 Selecting previously unselected package libevent-2.1-7:amd64. -2024-03-16T16:33:42Z #8 27.68 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-03-16T16:33:42Z #8 27.68 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-03-16T16:33:42Z #8 27.75 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-03-16T16:33:42Z #8 27.75 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-03-16T16:33:42Z #8 27.75 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-03-16T16:33:42Z #8 27.80 Selecting previously unselected package liblcms2-2:amd64. -2024-03-16T16:33:42Z #8 27.81 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-03-16T16:33:42Z #8 27.82 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-03-16T16:33:42Z #8 27.88 Selecting previously unselected package libcolord2:amd64. -2024-03-16T16:33:42Z #8 27.89 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-03-16T16:33:42Z #8 27.89 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-03-16T16:33:42Z #8 27.96 Selecting previously unselected package libavahi-common-data:amd64. -2024-03-16T16:33:42Z #8 27.96 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-03-16T16:33:42Z #8 27.97 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-03-16T16:33:42Z #8 28.04 Selecting previously unselected package libavahi-common3:amd64. -2024-03-16T16:33:42Z #8 28.04 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-03-16T16:33:42Z #8 28.05 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-03-16T16:33:42Z #8 28.10 Selecting previously unselected package libavahi-client3:amd64. -2024-03-16T16:33:42Z #8 28.11 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-03-16T16:33:42Z #8 28.11 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-03-16T16:33:42Z #8 28.17 Selecting previously unselected package libcups2:amd64. -2024-03-16T16:33:42Z #8 28.17 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-03-16T16:33:42Z #8 28.18 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-03-16T16:33:42Z #8 28.32 Selecting previously unselected package libepoxy0:amd64. -2024-03-16T16:33:42Z #8 28.32 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-03-16T16:33:42Z #8 28.33 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-03-16T16:33:42Z #8 28.42 Selecting previously unselected package libfribidi0:amd64. -2024-03-16T16:33:42Z #8 28.42 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-03-16T16:33:42Z #8 28.43 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-03-16T16:33:42Z #8 28.49 Selecting previously unselected package libgraphite2-3:amd64. -2024-03-16T16:33:42Z #8 28.49 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-03-16T16:33:42Z #8 28.49 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-03-16T16:33:43Z #8 28.55 Selecting previously unselected package libharfbuzz0b:amd64. -2024-03-16T16:33:43Z #8 28.56 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-03-16T16:33:43Z #8 28.57 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-03-16T16:33:43Z #8 28.68 Selecting previously unselected package libjson-glib-1.0-common. -2024-03-16T16:33:43Z #8 28.68 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-03-16T16:33:43Z #8 28.69 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-03-16T16:33:43Z #8 28.75 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-03-16T16:33:43Z #8 28.76 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-03-16T16:33:43Z #8 28.76 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-03-16T16:33:43Z #8 28.81 Selecting previously unselected package fontconfig. -2024-03-16T16:33:43Z #8 28.82 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-03-16T16:33:43Z #8 28.83 Unpacking fontconfig (2.13.1-4.2) ... -2024-03-16T16:33:43Z #8 28.90 Selecting previously unselected package libthai-data. -2024-03-16T16:33:43Z #8 28.90 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-03-16T16:33:43Z #8 28.91 Unpacking libthai-data (0.1.28-3) ... -2024-03-16T16:33:43Z #8 28.99 Selecting previously unselected package libdatrie1:amd64. -2024-03-16T16:33:43Z #8 29.00 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-03-16T16:33:43Z #8 29.01 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-03-16T16:33:43Z #8 29.07 Selecting previously unselected package libthai0:amd64. -2024-03-16T16:33:43Z #8 29.08 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-03-16T16:33:43Z #8 29.09 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-03-16T16:33:43Z #8 29.14 Selecting previously unselected package libpango-1.0-0:amd64. -2024-03-16T16:33:43Z #8 29.14 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-03-16T16:33:43Z #8 29.15 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-03-16T16:33:43Z #8 29.23 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-03-16T16:33:43Z #8 29.24 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-03-16T16:33:43Z #8 29.24 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-03-16T16:33:43Z #8 29.30 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-03-16T16:33:43Z #8 29.30 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-03-16T16:33:43Z #8 29.31 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-03-16T16:33:43Z #8 29.35 Selecting previously unselected package libproxy1v5:amd64. -2024-03-16T16:33:43Z #8 29.36 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-03-16T16:33:43Z #8 29.37 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-03-16T16:33:43Z #8 29.41 Selecting previously unselected package glib-networking-common. -2024-03-16T16:33:43Z #8 29.41 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-03-16T16:33:43Z #8 29.42 Unpacking glib-networking-common (2.66.0-2) ... -2024-03-16T16:33:44Z #8 29.47 Selecting previously unselected package glib-networking-services. -2024-03-16T16:33:44Z #8 29.48 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-03-16T16:33:44Z #8 29.48 Unpacking glib-networking-services (2.66.0-2) ... -2024-03-16T16:33:44Z #8 29.52 Selecting previously unselected package gsettings-desktop-schemas. -2024-03-16T16:33:44Z #8 29.53 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-03-16T16:33:44Z #8 29.53 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-03-16T16:33:44Z #8 29.72 Selecting previously unselected package glib-networking:amd64. -2024-03-16T16:33:44Z #8 29.72 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-03-16T16:33:44Z #8 29.73 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-03-16T16:33:44Z #8 29.79 Selecting previously unselected package libsoup2.4-1:amd64. -2024-03-16T16:33:44Z #8 29.79 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-03-16T16:33:44Z #8 29.79 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-03-16T16:33:44Z #8 29.92 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-03-16T16:33:44Z #8 29.92 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-03-16T16:33:44Z #8 29.93 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-03-16T16:33:44Z #8 29.98 Selecting previously unselected package librest-0.7-0:amd64. -2024-03-16T16:33:44Z #8 29.99 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-03-16T16:33:44Z #8 29.99 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-03-16T16:33:44Z #8 30.05 Selecting previously unselected package libwayland-client0:amd64. -2024-03-16T16:33:44Z #8 30.05 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-03-16T16:33:44Z #8 30.06 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-03-16T16:33:44Z #8 30.10 Selecting previously unselected package libwayland-cursor0:amd64. -2024-03-16T16:33:44Z #8 30.11 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-03-16T16:33:44Z #8 30.12 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-03-16T16:33:44Z #8 30.16 Selecting previously unselected package libwayland-egl1:amd64. -2024-03-16T16:33:44Z #8 30.17 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-03-16T16:33:44Z #8 30.17 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-03-16T16:33:44Z #8 30.22 Selecting previously unselected package libxcomposite1:amd64. -2024-03-16T16:33:44Z #8 30.23 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-03-16T16:33:44Z #8 30.23 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-03-16T16:33:44Z #8 30.28 Selecting previously unselected package libxfixes3:amd64. -2024-03-16T16:33:44Z #8 30.28 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-03-16T16:33:44Z #8 30.29 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-03-16T16:33:44Z #8 30.33 Selecting previously unselected package libxcursor1:amd64. -2024-03-16T16:33:44Z #8 30.34 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-03-16T16:33:44Z #8 30.35 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-03-16T16:33:44Z #8 30.40 Selecting previously unselected package libxdamage1:amd64. -2024-03-16T16:33:44Z #8 30.40 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-03-16T16:33:44Z #8 30.41 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-03-16T16:33:45Z #8 30.45 Selecting previously unselected package libxinerama1:amd64. -2024-03-16T16:33:45Z #8 30.46 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-03-16T16:33:45Z #8 30.47 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-03-16T16:33:45Z #8 30.51 Selecting previously unselected package xkb-data. -2024-03-16T16:33:45Z #8 30.52 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-03-16T16:33:45Z #8 30.52 Unpacking xkb-data (2.29-2) ... -2024-03-16T16:33:45Z #8 30.78 Selecting previously unselected package libxkbcommon0:amd64. -2024-03-16T16:33:45Z #8 30.78 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-03-16T16:33:45Z #8 30.79 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-03-16T16:33:45Z #8 30.86 Selecting previously unselected package libxrandr2:amd64. -2024-03-16T16:33:45Z #8 30.87 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-03-16T16:33:45Z #8 30.87 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-03-16T16:33:45Z #8 30.91 Selecting previously unselected package libgtk-3-common. -2024-03-16T16:33:45Z #8 30.91 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-03-16T16:33:45Z #8 30.92 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-03-16T16:33:46Z #8 31.73 Selecting previously unselected package libgtk-3-0:amd64. -2024-03-16T16:33:46Z #8 31.74 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-03-16T16:33:46Z #8 31.74 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-03-16T16:33:46Z #8 32.29 Selecting previously unselected package libx11-xcb1:amd64. -2024-03-16T16:33:46Z #8 32.29 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-03-16T16:33:46Z #8 32.30 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-03-16T16:33:46Z #8 32.35 Selecting previously unselected package firefox-esr. -2024-03-16T16:33:46Z #8 32.35 Preparing to unpack .../099-firefox-esr_115.8.0esr-1~deb11u1_amd64.deb ... -2024-03-16T16:33:46Z #8 32.37 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-03-16T16:33:46Z #8 32.38 Unpacking firefox-esr (115.8.0esr-1~deb11u1) ... -2024-03-16T16:33:58Z #8 43.58 Selecting previously unselected package fonts-humor-sans. -2024-03-16T16:33:58Z #8 43.58 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-03-16T16:33:58Z #8 43.59 Unpacking fonts-humor-sans (1.0-4) ... -2024-03-16T16:33:58Z #8 43.63 Selecting previously unselected package libcc1-0:amd64. -2024-03-16T16:33:58Z #8 43.63 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-03-16T16:33:58Z #8 43.64 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-03-16T16:33:58Z #8 43.69 Selecting previously unselected package libgomp1:amd64. -2024-03-16T16:33:58Z #8 43.70 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-03-16T16:33:58Z #8 43.70 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-03-16T16:33:58Z #8 43.75 Selecting previously unselected package libitm1:amd64. -2024-03-16T16:33:58Z #8 43.75 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-03-16T16:33:58Z #8 43.76 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-03-16T16:33:58Z #8 43.80 Selecting previously unselected package libatomic1:amd64. -2024-03-16T16:33:58Z #8 43.80 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-03-16T16:33:58Z #8 43.81 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-03-16T16:33:58Z #8 43.85 Selecting previously unselected package libasan6:amd64. -2024-03-16T16:33:58Z #8 43.85 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-03-16T16:33:58Z #8 43.86 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-03-16T16:33:58Z #8 44.31 Selecting previously unselected package liblsan0:amd64. -2024-03-16T16:33:58Z #8 44.32 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-03-16T16:33:58Z #8 44.32 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-03-16T16:33:59Z #8 44.52 Selecting previously unselected package libtsan0:amd64. -2024-03-16T16:33:59Z #8 44.53 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-03-16T16:33:59Z #8 44.53 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-03-16T16:33:59Z #8 45.01 Selecting previously unselected package libubsan1:amd64. -2024-03-16T16:33:59Z #8 45.02 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-03-16T16:33:59Z #8 45.03 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-03-16T16:33:59Z #8 45.21 Selecting previously unselected package libquadmath0:amd64. -2024-03-16T16:33:59Z #8 45.21 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-03-16T16:33:59Z #8 45.22 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-03-16T16:33:59Z #8 45.28 Selecting previously unselected package libgcc-10-dev:amd64. -2024-03-16T16:33:59Z #8 45.29 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-03-16T16:33:59Z #8 45.29 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-03-16T16:34:00Z #8 45.75 Selecting previously unselected package gcc-10. -2024-03-16T16:34:00Z #8 45.76 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-03-16T16:34:00Z #8 45.76 Unpacking gcc-10 (10.2.1-6) ... -2024-03-16T16:34:03Z #8 48.76 Selecting previously unselected package gcc. -2024-03-16T16:34:03Z #8 48.76 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-03-16T16:34:03Z #8 48.76 Unpacking gcc (4:10.2.1-1) ... -2024-03-16T16:34:03Z #8 48.81 Selecting previously unselected package libva2:amd64. -2024-03-16T16:34:03Z #8 48.81 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-03-16T16:34:03Z #8 48.82 Unpacking libva2:amd64 (2.10.0-1) ... -2024-03-16T16:34:03Z #8 48.87 Selecting previously unselected package libdrm-common. -2024-03-16T16:34:03Z #8 48.88 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-03-16T16:34:03Z #8 48.88 Unpacking libdrm-common (2.4.104-1) ... -2024-03-16T16:34:03Z #8 48.93 Selecting previously unselected package libdrm2:amd64. -2024-03-16T16:34:03Z #8 48.93 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-03-16T16:34:03Z #8 48.94 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-03-16T16:34:03Z #8 48.99 Selecting previously unselected package libpciaccess0:amd64. -2024-03-16T16:34:03Z #8 49.00 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-03-16T16:34:03Z #8 49.00 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-03-16T16:34:03Z #8 49.05 Selecting previously unselected package libdrm-intel1:amd64. -2024-03-16T16:34:03Z #8 49.06 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-03-16T16:34:03Z #8 49.07 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-03-16T16:34:03Z #8 49.12 Selecting previously unselected package i965-va-driver:amd64. -2024-03-16T16:34:03Z #8 49.13 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-03-16T16:34:03Z #8 49.13 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-03-16T16:34:03Z #8 49.24 Selecting previously unselected package libigdgmm11:amd64. -2024-03-16T16:34:03Z #8 49.25 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-03-16T16:34:03Z #8 49.25 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-03-16T16:34:03Z #8 49.32 Selecting previously unselected package intel-media-va-driver:amd64. -2024-03-16T16:34:03Z #8 49.32 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-03-16T16:34:03Z #8 49.33 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-03-16T16:34:04Z #8 49.71 Selecting previously unselected package libaom0:amd64. -2024-03-16T16:34:04Z #8 49.72 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-03-16T16:34:04Z #8 49.72 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-03-16T16:34:04Z #8 49.97 Selecting previously unselected package libmfx1:amd64. -2024-03-16T16:34:04Z #8 49.98 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-03-16T16:34:04Z #8 49.98 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-03-16T16:34:05Z #8 50.79 Selecting previously unselected package libva-drm2:amd64. -2024-03-16T16:34:05Z #8 50.79 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-03-16T16:34:05Z #8 50.79 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-03-16T16:34:05Z #8 50.84 Selecting previously unselected package libva-x11-2:amd64. -2024-03-16T16:34:05Z #8 50.85 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-03-16T16:34:05Z #8 50.86 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-03-16T16:34:05Z #8 50.90 Selecting previously unselected package libvdpau1:amd64. -2024-03-16T16:34:05Z #8 50.91 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-03-16T16:34:05Z #8 50.91 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-03-16T16:34:05Z #8 50.96 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-03-16T16:34:05Z #8 50.96 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-03-16T16:34:05Z #8 50.97 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-03-16T16:34:05Z #8 51.02 Selecting previously unselected package libavutil56:amd64. -2024-03-16T16:34:05Z #8 51.02 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-16T16:34:05Z #8 51.02 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-16T16:34:05Z #8 51.13 Selecting previously unselected package libcodec2-0.9:amd64. -2024-03-16T16:34:05Z #8 51.13 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-03-16T16:34:05Z #8 51.14 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-03-16T16:34:06Z #8 52.40 Selecting previously unselected package libdav1d4:amd64. -2024-03-16T16:34:06Z #8 52.41 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-03-16T16:34:06Z #8 52.41 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-03-16T16:34:06Z #8 52.51 Selecting previously unselected package libgsm1:amd64. -2024-03-16T16:34:06Z #8 52.51 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-03-16T16:34:07Z #8 52.52 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-03-16T16:34:07Z #8 52.56 Selecting previously unselected package libmp3lame0:amd64. -2024-03-16T16:34:07Z #8 52.57 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-03-16T16:34:07Z #8 52.57 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-03-16T16:34:07Z #8 52.65 Selecting previously unselected package libopenjp2-7:amd64. -2024-03-16T16:34:07Z #8 52.66 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-03-16T16:34:07Z #8 52.66 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-03-16T16:34:07Z #8 52.73 Selecting previously unselected package libopus0:amd64. -2024-03-16T16:34:07Z #8 52.74 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-03-16T16:34:07Z #8 52.74 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-03-16T16:34:07Z #8 52.81 Selecting previously unselected package librsvg2-2:amd64. -2024-03-16T16:34:07Z #8 52.81 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-03-16T16:34:07Z #8 52.82 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-16T16:34:07Z #8 53.28 Selecting previously unselected package libshine3:amd64. -2024-03-16T16:34:07Z #8 53.28 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-03-16T16:34:07Z #8 53.29 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-03-16T16:34:07Z #8 53.34 Selecting previously unselected package libsnappy1v5:amd64. -2024-03-16T16:34:07Z #8 53.34 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-03-16T16:34:07Z #8 53.34 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-03-16T16:34:07Z #8 53.38 Selecting previously unselected package libspeex1:amd64. -2024-03-16T16:34:07Z #8 53.39 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-03-16T16:34:07Z #8 53.39 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-03-16T16:34:07Z #8 53.44 Selecting previously unselected package libsoxr0:amd64. -2024-03-16T16:34:07Z #8 53.44 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-03-16T16:34:07Z #8 53.44 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-03-16T16:34:07Z #8 53.50 Selecting previously unselected package libswresample3:amd64. -2024-03-16T16:34:08Z #8 53.50 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-16T16:34:08Z #8 53.51 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-16T16:34:08Z #8 53.57 Selecting previously unselected package libogg0:amd64. -2024-03-16T16:34:08Z #8 53.57 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-03-16T16:34:08Z #8 53.58 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-03-16T16:34:08Z #8 53.62 Selecting previously unselected package libtheora0:amd64. -2024-03-16T16:34:08Z #8 53.63 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-03-16T16:34:08Z #8 53.63 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-03-16T16:34:08Z #8 53.72 Selecting previously unselected package libtwolame0:amd64. -2024-03-16T16:34:08Z #8 53.72 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-03-16T16:34:08Z #8 53.73 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-03-16T16:34:08Z #8 53.78 Selecting previously unselected package libvorbis0a:amd64. -2024-03-16T16:34:08Z #8 53.78 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-03-16T16:34:08Z #8 53.79 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-03-16T16:34:08Z #8 53.84 Selecting previously unselected package libvorbisenc2:amd64. -2024-03-16T16:34:08Z #8 53.85 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-03-16T16:34:08Z #8 53.86 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-03-16T16:34:08Z #8 53.91 Selecting previously unselected package libvpx6:amd64. -2024-03-16T16:34:08Z #8 53.92 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-03-16T16:34:08Z #8 53.93 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-03-16T16:34:08Z #8 54.11 Selecting previously unselected package libwavpack1:amd64. -2024-03-16T16:34:08Z #8 54.12 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-03-16T16:34:08Z #8 54.12 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-03-16T16:34:08Z #8 54.18 Selecting previously unselected package libwebpmux3:amd64. -2024-03-16T16:34:08Z #8 54.19 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-03-16T16:34:08Z #8 54.19 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-16T16:34:08Z #8 54.25 Selecting previously unselected package libx264-160:amd64. -2024-03-16T16:34:08Z #8 54.26 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-03-16T16:34:08Z #8 54.26 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-03-16T16:34:08Z #8 54.41 Selecting previously unselected package libnuma1:amd64. -2024-03-16T16:34:08Z #8 54.42 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-03-16T16:34:08Z #8 54.42 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-03-16T16:34:09Z #8 54.52 Selecting previously unselected package libx265-192:amd64. -2024-03-16T16:34:09Z #8 54.52 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-03-16T16:34:09Z #8 54.53 Unpacking libx265-192:amd64 (3.4-2) ... -2024-03-16T16:34:09Z #8 54.91 Selecting previously unselected package libxvidcore4:amd64. -2024-03-16T16:34:09Z #8 54.91 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-03-16T16:34:09Z #8 54.92 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-03-16T16:34:09Z #8 54.98 Selecting previously unselected package libzvbi-common. -2024-03-16T16:34:09Z #8 54.98 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-03-16T16:34:09Z #8 54.99 Unpacking libzvbi-common (0.2.35-18) ... -2024-03-16T16:34:09Z #8 55.04 Selecting previously unselected package libzvbi0:amd64. -2024-03-16T16:34:09Z #8 55.04 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-03-16T16:34:09Z #8 55.05 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-03-16T16:34:09Z #8 55.12 Selecting previously unselected package libavcodec58:amd64. -2024-03-16T16:34:09Z #8 55.13 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-16T16:34:09Z #8 55.13 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-16T16:34:10Z #8 55.97 Selecting previously unselected package libc-dev-bin. -2024-03-16T16:34:10Z #8 55.97 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... -2024-03-16T16:34:10Z #8 55.97 Unpacking libc-dev-bin (2.31-13+deb11u8) ... -2024-03-16T16:34:10Z #8 56.03 Selecting previously unselected package libxpm4:amd64. -2024-03-16T16:34:10Z #8 56.03 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-03-16T16:34:10Z #8 56.03 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-03-16T16:34:10Z #8 56.08 Selecting previously unselected package libgd3:amd64. -2024-03-16T16:34:10Z #8 56.09 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-03-16T16:34:10Z #8 56.10 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-03-16T16:34:10Z #8 56.16 Selecting previously unselected package libc-devtools. -2024-03-16T16:34:10Z #8 56.16 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... -2024-03-16T16:34:10Z #8 56.17 Unpacking libc-devtools (2.31-13+deb11u8) ... -2024-03-16T16:34:10Z #8 56.23 Selecting previously unselected package linux-libc-dev:amd64. -2024-03-16T16:34:10Z #8 56.24 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-03-16T16:34:10Z #8 56.24 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-03-16T16:34:11Z #8 56.59 Selecting previously unselected package libcrypt-dev:amd64. -2024-03-16T16:34:11Z #8 56.60 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-03-16T16:34:11Z #8 56.60 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-03-16T16:34:11Z #8 56.65 Selecting previously unselected package libtirpc-dev:amd64. -2024-03-16T16:34:11Z #8 56.66 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-03-16T16:34:11Z #8 56.66 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-03-16T16:34:11Z #8 56.73 Selecting previously unselected package libnsl-dev:amd64. -2024-03-16T16:34:11Z #8 56.73 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-03-16T16:34:11Z #8 56.74 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-03-16T16:34:11Z #8 56.82 Selecting previously unselected package libc6-dev:amd64. -2024-03-16T16:34:11Z #8 56.83 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... -2024-03-16T16:34:11Z #8 56.83 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-03-16T16:34:11Z #8 57.38 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-03-16T16:34:11Z #8 57.38 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-03-16T16:34:11Z #8 57.39 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-03-16T16:34:11Z #8 57.43 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-03-16T16:34:11Z #8 57.43 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-03-16T16:34:11Z #8 57.44 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-03-16T16:34:12Z #8 57.52 Selecting previously unselected package libdrm-radeon1:amd64. -2024-03-16T16:34:12Z #8 57.53 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-03-16T16:34:12Z #8 57.53 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-03-16T16:34:12Z #8 57.58 Selecting previously unselected package libelf1:amd64. -2024-03-16T16:34:12Z #8 57.58 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-03-16T16:34:12Z #8 57.59 Unpacking libelf1:amd64 (0.183-1) ... -2024-03-16T16:34:12Z #8 57.65 Selecting previously unselected package libfontenc1:amd64. -2024-03-16T16:34:12Z #8 57.66 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-03-16T16:34:12Z #8 57.66 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-03-16T16:34:12Z #8 57.71 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-03-16T16:34:12Z #8 57.71 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-03-16T16:34:12Z #8 57.72 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-03-16T16:34:12Z #8 57.76 Selecting previously unselected package libglapi-mesa:amd64. -2024-03-16T16:34:12Z #8 57.77 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-03-16T16:34:12Z #8 57.77 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-03-16T16:34:12Z #8 57.82 Selecting previously unselected package libz3-4:amd64. -2024-03-16T16:34:12Z #8 57.83 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-03-16T16:34:12Z #8 57.83 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-03-16T16:34:13Z #8 58.95 Selecting previously unselected package libllvm11:amd64. -2024-03-16T16:34:13Z #8 58.95 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-03-16T16:34:13Z #8 58.95 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-03-16T16:34:16Z #8 61.94 Selecting previously unselected package libsensors-config. -2024-03-16T16:34:16Z #8 61.94 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-03-16T16:34:16Z #8 61.95 Unpacking libsensors-config (1:3.6.0-7) ... -2024-03-16T16:34:16Z #8 61.99 Selecting previously unselected package libsensors5:amd64. -2024-03-16T16:34:16Z #8 61.99 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-03-16T16:34:16Z #8 62.03 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-03-16T16:34:16Z #8 62.07 Selecting previously unselected package libvulkan1:amd64. -2024-03-16T16:34:16Z #8 62.08 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-03-16T16:34:16Z #8 62.08 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-03-16T16:34:16Z #8 62.14 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-03-16T16:34:16Z #8 62.14 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-03-16T16:34:16Z #8 62.16 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-03-16T16:34:18Z #8 63.64 Selecting previously unselected package libglvnd0:amd64. -2024-03-16T16:34:18Z #8 63.64 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-03-16T16:34:18Z #8 63.65 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-03-16T16:34:18Z #8 63.70 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-03-16T16:34:18Z #8 63.71 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-03-16T16:34:18Z #8 63.71 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-03-16T16:34:18Z #8 63.77 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-03-16T16:34:18Z #8 63.77 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-03-16T16:34:18Z #8 63.78 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-03-16T16:34:18Z #8 63.83 Selecting previously unselected package libxcb-glx0:amd64. -2024-03-16T16:34:18Z #8 63.83 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-03-16T16:34:18Z #8 63.84 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-03-16T16:34:18Z #8 63.89 Selecting previously unselected package libxcb-present0:amd64. -2024-03-16T16:34:18Z #8 63.89 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-03-16T16:34:18Z #8 63.90 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-03-16T16:34:18Z #8 63.95 Selecting previously unselected package libxcb-sync1:amd64. -2024-03-16T16:34:18Z #8 63.95 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-03-16T16:34:18Z #8 63.96 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-03-16T16:34:18Z #8 64.01 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-03-16T16:34:18Z #8 64.01 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-03-16T16:34:18Z #8 64.02 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-03-16T16:34:18Z #8 64.07 Selecting previously unselected package libxshmfence1:amd64. -2024-03-16T16:34:18Z #8 64.07 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-03-16T16:34:18Z #8 64.08 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-03-16T16:34:18Z #8 64.11 Selecting previously unselected package libxxf86vm1:amd64. -2024-03-16T16:34:18Z #8 64.12 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-03-16T16:34:18Z #8 64.12 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-03-16T16:34:18Z #8 64.16 Selecting previously unselected package libglx-mesa0:amd64. -2024-03-16T16:34:18Z #8 64.16 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-03-16T16:34:18Z #8 64.17 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-03-16T16:34:18Z #8 64.23 Selecting previously unselected package libgtk-3-bin. -2024-03-16T16:34:18Z #8 64.23 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-03-16T16:34:18Z #8 64.24 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-03-16T16:34:18Z #8 64.29 Selecting previously unselected package librsvg2-common:amd64. -2024-03-16T16:34:18Z #8 64.29 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-03-16T16:34:18Z #8 64.30 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-16T16:34:18Z #8 64.34 Selecting previously unselected package libglx0:amd64. -2024-03-16T16:34:18Z #8 64.35 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-03-16T16:34:18Z #8 64.35 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-03-16T16:34:18Z #8 64.40 Selecting previously unselected package libgl1:amd64. -2024-03-16T16:34:18Z #8 64.41 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-03-16T16:34:18Z #8 64.41 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-03-16T16:34:19Z #8 64.46 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-03-16T16:34:19Z #8 64.47 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-03-16T16:34:19Z #8 64.47 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-03-16T16:34:19Z #8 64.53 Selecting previously unselected package libxt6:amd64. -2024-03-16T16:34:19Z #8 64.53 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-03-16T16:34:19Z #8 64.53 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-03-16T16:34:19Z #8 64.60 Selecting previously unselected package libxmu6:amd64. -2024-03-16T16:34:19Z #8 64.60 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-03-16T16:34:19Z #8 64.61 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-03-16T16:34:19Z #8 64.65 Selecting previously unselected package libxaw7:amd64. -2024-03-16T16:34:19Z #8 64.66 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-03-16T16:34:19Z #8 64.66 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-03-16T16:34:19Z #8 64.73 Selecting previously unselected package libxcb-randr0:amd64. -2024-03-16T16:34:19Z #8 64.74 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-03-16T16:34:19Z #8 64.74 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-03-16T16:34:19Z #8 64.79 Selecting previously unselected package libxcb-shape0:amd64. -2024-03-16T16:34:19Z #8 64.80 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-03-16T16:34:19Z #8 64.80 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-03-16T16:34:19Z #8 64.85 Selecting previously unselected package libxft2:amd64. -2024-03-16T16:34:19Z #8 64.86 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-03-16T16:34:19Z #8 64.86 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-03-16T16:34:19Z #8 64.90 Selecting previously unselected package libxkbfile1:amd64. -2024-03-16T16:34:19Z #8 64.91 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-03-16T16:34:19Z #8 64.93 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-03-16T16:34:19Z #8 64.99 Selecting previously unselected package libxmuu1:amd64. -2024-03-16T16:34:19Z #8 64.99 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-03-16T16:34:19Z #8 65.00 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-03-16T16:34:19Z #8 65.04 Selecting previously unselected package libxv1:amd64. -2024-03-16T16:34:19Z #8 65.04 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-03-16T16:34:19Z #8 65.05 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-03-16T16:34:19Z #8 65.08 Selecting previously unselected package libxxf86dga1:amd64. -2024-03-16T16:34:19Z #8 65.09 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-03-16T16:34:19Z #8 65.09 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-03-16T16:34:19Z #8 65.13 Selecting previously unselected package manpages-dev. -2024-03-16T16:34:19Z #8 65.14 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-03-16T16:34:19Z #8 65.14 Unpacking manpages-dev (5.10-1) ... -2024-03-16T16:34:20Z #8 65.55 Selecting previously unselected package mesa-va-drivers:amd64. -2024-03-16T16:34:20Z #8 65.55 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-03-16T16:34:20Z #8 65.55 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-03-16T16:34:20Z #8 66.01 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-03-16T16:34:20Z #8 66.01 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-03-16T16:34:20Z #8 66.03 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-03-16T16:34:21Z #8 66.52 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-03-16T16:34:21Z #8 66.52 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-03-16T16:34:21Z #8 66.53 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-03-16T16:34:21Z #8 67.23 Selecting previously unselected package patch. -2024-03-16T16:34:21Z #8 67.24 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-03-16T16:34:21Z #8 67.24 Unpacking patch (2.7.6-7) ... -2024-03-16T16:34:21Z #8 67.31 Selecting previously unselected package unzip. -2024-03-16T16:34:21Z #8 67.31 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-03-16T16:34:21Z #8 67.32 Unpacking unzip (6.0-26+deb11u1) ... -2024-03-16T16:34:21Z #8 67.37 Selecting previously unselected package va-driver-all:amd64. -2024-03-16T16:34:21Z #8 67.38 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-03-16T16:34:21Z #8 67.38 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-03-16T16:34:21Z #8 67.42 Selecting previously unselected package vdpau-driver-all:amd64. -2024-03-16T16:34:21Z #8 67.42 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-03-16T16:34:21Z #8 67.43 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-03-16T16:34:21Z #8 67.47 Selecting previously unselected package x11-utils. -2024-03-16T16:34:21Z #8 67.47 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-03-16T16:34:21Z #8 67.47 Unpacking x11-utils (7.7+5) ... -2024-03-16T16:34:22Z #8 67.64 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-03-16T16:34:22Z #8 67.65 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-03-16T16:34:22Z #8 67.67 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-03-16T16:34:22Z #8 67.69 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-03-16T16:34:22Z #8 67.70 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-03-16T16:34:22Z #8 67.71 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-03-16T16:34:22Z #8 67.73 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-03-16T16:34:22Z #8 67.74 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-03-16T16:34:22Z #8 67.76 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-03-16T16:34:22Z #8 67.77 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-03-16T16:34:22Z #8 67.78 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-03-16T16:34:22Z #8 67.80 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-03-16T16:34:22Z #8 67.81 Setting up libshine3:amd64 (3.1.1-2) ... -2024-03-16T16:34:22Z #8 67.82 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-03-16T16:34:22Z #8 67.83 Setting up hicolor-icon-theme (0.17-2) ... -2024-03-16T16:34:22Z #8 67.86 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-03-16T16:34:22Z #8 67.87 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-03-16T16:34:22Z #8 67.89 Setting up libicu67:amd64 (67.1-7) ... -2024-03-16T16:34:22Z #8 67.90 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-03-16T16:34:22Z #8 67.91 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-03-16T16:34:22Z #8 67.92 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-03-16T16:34:22Z #8 67.93 Setting up manpages (5.10-1) ... -2024-03-16T16:34:22Z #8 67.95 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-03-16T16:34:22Z #8 67.96 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-03-16T16:34:22Z #8 67.97 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-03-16T16:34:22Z #8 67.98 Setting up unzip (6.0-26+deb11u1) ... -2024-03-16T16:34:22Z #8 68.00 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-03-16T16:34:22Z #8 68.01 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-03-16T16:34:22Z #8 68.02 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-03-16T16:34:22Z #8 68.03 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-03-16T16:34:22Z #8 68.05 Setting up libsensors-config (1:3.6.0-7) ... -2024-03-16T16:34:22Z #8 68.07 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-03-16T16:34:22Z #8 68.08 Setting up libdeflate0:amd64 (1.7-1) ... -2024-03-16T16:34:22Z #8 68.09 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-03-16T16:34:22Z #8 68.11 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-03-16T16:34:22Z #8 68.12 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-16T16:34:22Z #8 68.13 First installation detected... -2024-03-16T16:34:22Z #8 68.13 Checking NSS setup... -2024-03-16T16:34:22Z #8 68.13 Setting up xkb-data (2.29-2) ... -2024-03-16T16:34:22Z #8 68.15 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-03-16T16:34:22Z #8 68.16 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-03-16T16:34:22Z #8 68.17 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-03-16T16:34:22Z #8 68.18 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-03-16T16:34:22Z #8 68.19 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-03-16T16:34:22Z #8 68.20 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-03-16T16:34:22Z #8 68.22 Setting up libasan6:amd64 (10.2.1-6) ... -2024-03-16T16:34:22Z #8 68.23 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-03-16T16:34:22Z #8 68.24 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-03-16T16:34:22Z #8 68.25 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-03-16T16:34:22Z #8 68.26 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-03-16T16:34:22Z #8 68.28 Setting up libasound2-data (1.2.4-1.1) ... -2024-03-16T16:34:22Z #8 68.29 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-03-16T16:34:22Z #8 68.30 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-03-16T16:34:22Z #8 68.32 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-03-16T16:34:22Z #8 68.33 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-03-16T16:34:22Z #8 68.34 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-03-16T16:34:22Z #8 68.36 Setting up libva2:amd64 (2.10.0-1) ... -2024-03-16T16:34:22Z #8 68.37 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-03-16T16:34:22Z #8 68.38 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-03-16T16:34:22Z #8 68.39 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-03-16T16:34:22Z #8 68.40 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-03-16T16:34:22Z #8 68.42 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-03-16T16:34:22Z #8 68.43 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-03-16T16:34:23Z #8 69.16 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-03-16T16:34:24Z #8 69.91 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-03-16T16:34:25Z #8 70.71 Setting up dbus (1.12.28-0+deb11u1) ... -2024-03-16T16:34:25Z #8 70.97 invoke-rc.d: could not determine current runlevel -2024-03-16T16:34:25Z #8 70.97 invoke-rc.d: policy-rc.d denied execution of start. -2024-03-16T16:34:25Z #8 70.98 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-03-16T16:34:25Z #8 70.99 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-03-16T16:34:25Z #8 71.00 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-03-16T16:34:25Z #8 71.01 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-03-16T16:34:25Z #8 71.02 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-03-16T16:34:25Z #8 71.03 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-03-16T16:34:25Z #8 71.05 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-03-16T16:34:25Z #8 71.06 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-03-16T16:34:25Z #8 71.07 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-03-16T16:34:25Z #8 71.41 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-03-16T16:34:25Z #8 71.41 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-03-16T16:34:25Z #8 71.42 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-03-16T16:34:25Z #8 71.43 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-03-16T16:34:25Z #8 71.44 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-03-16T16:34:25Z #8 71.45 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-03-16T16:34:25Z #8 71.46 Setting up patch (2.7.6-7) ... -2024-03-16T16:34:26Z #8 71.47 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-16T16:34:26Z #8 71.49 Setting up fonts-dejavu-core (2.37-2) ... -2024-03-16T16:34:26Z #8 71.62 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-03-16T16:34:26Z #8 71.63 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-03-16T16:34:26Z #8 71.64 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-03-16T16:34:26Z #8 71.66 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-03-16T16:34:26Z #8 71.67 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-03-16T16:34:26Z #8 71.68 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-03-16T16:34:26Z #8 71.69 Setting up libatk1.0-data (2.36.0-2) ... -2024-03-16T16:34:26Z #8 71.70 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-03-16T16:34:26Z #8 71.71 Setting up alsa-topology-conf (1.2.4-1) ... -2024-03-16T16:34:26Z #8 71.73 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-03-16T16:34:26Z #8 71.74 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-03-16T16:34:26Z #8 71.75 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-03-16T16:34:26Z #8 71.76 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-03-16T16:34:26Z #8 71.78 Setting up libvdpau1:amd64 (1.4-3) ... -2024-03-16T16:34:26Z #8 71.79 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-03-16T16:34:26Z #8 71.80 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-03-16T16:34:26Z #8 71.81 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-03-16T16:34:26Z #8 71.83 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-03-16T16:34:26Z #8 71.84 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-16T16:34:26Z #8 72.09 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-03-16T16:34:26Z #8 72.10 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-03-16T16:34:26Z #8 72.11 Setting up libthai-data (0.1.28-3) ... -2024-03-16T16:34:26Z #8 72.13 Setting up fonts-humor-sans (1.0-4) ... -2024-03-16T16:34:26Z #8 72.14 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-03-16T16:34:26Z #8 72.15 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-03-16T16:34:26Z #8 72.16 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-03-16T16:34:26Z #8 72.17 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-03-16T16:34:26Z #8 72.18 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-03-16T16:34:26Z #8 72.20 Setting up glib-networking-common (2.66.0-2) ... -2024-03-16T16:34:26Z #8 72.21 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-03-16T16:34:26Z #8 72.22 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-03-16T16:34:26Z #8 72.23 Setting up libisl23:amd64 (0.23-1) ... -2024-03-16T16:34:26Z #8 72.24 Setting up libc-dev-bin (2.31-13+deb11u8) ... -2024-03-16T16:34:26Z #8 72.26 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-16T16:34:26Z #8 72.27 Setting up libdrm-common (2.4.104-1) ... -2024-03-16T16:34:26Z #8 72.28 Setting up libelf1:amd64 (0.183-1) ... -2024-03-16T16:34:26Z #8 72.30 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-03-16T16:34:26Z #8 72.32 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-03-16T16:34:26Z #8 72.33 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-03-16T16:34:26Z #8 72.34 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-03-16T16:34:26Z #8 72.35 Setting up libzvbi-common (0.2.35-18) ... -2024-03-16T16:34:26Z #8 72.37 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-03-16T16:34:26Z #8 72.38 Setting up cpp-10 (10.2.1-6) ... -2024-03-16T16:34:26Z #8 72.39 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-03-16T16:34:26Z #8 72.40 Setting up libitm1:amd64 (10.2.1-6) ... -2024-03-16T16:34:26Z #8 72.41 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-03-16T16:34:26Z #8 72.43 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-03-16T16:34:26Z #8 72.44 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-03-16T16:34:26Z #8 72.45 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-03-16T16:34:26Z #8 72.46 Setting up libctf0:amd64 (2.35.2-2) ... -2024-03-16T16:34:26Z #8 72.47 Setting up glib-networking-services (2.66.0-2) ... -2024-03-16T16:34:26Z #8 72.48 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-03-16T16:34:26Z #8 72.49 Setting up manpages-dev (5.10-1) ... -2024-03-16T16:34:27Z #8 72.50 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-03-16T16:34:27Z #8 72.52 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-03-16T16:34:27Z #8 72.53 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-03-16T16:34:27Z #8 72.54 Setting up fontconfig-config (2.13.1-4.2) ... -2024-03-16T16:34:27Z #8 72.90 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-03-16T16:34:27Z #8 72.91 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-03-16T16:34:27Z #8 72.93 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-03-16T16:34:27Z #8 72.94 Setting up libx265-192:amd64 (3.4-2) ... -2024-03-16T16:34:27Z #8 72.95 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-03-16T16:34:27Z #8 72.96 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-03-16T16:34:27Z #8 72.98 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-03-16T16:34:27Z #8 72.99 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-03-16T16:34:27Z #8 73.00 Setting up libthai0:amd64 (0.1.28-3) ... -2024-03-16T16:34:27Z #8 73.01 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-03-16T16:34:27Z #8 73.03 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-03-16T16:34:27Z #8 73.05 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-03-16T16:34:27Z #8 73.06 Setting up shared-mime-info (2.0-1) ... -2024-03-16T16:34:30Z #8 75.63 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-03-16T16:34:30Z #8 75.65 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-03-16T16:34:30Z #8 75.66 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-03-16T16:34:30Z #8 75.68 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-03-16T16:34:30Z #8 75.69 Setting up cpp (4:10.2.1-1) ... -2024-03-16T16:34:30Z #8 75.71 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-03-16T16:34:30Z #8 75.73 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-03-16T16:34:30Z #8 75.74 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-16T16:34:30Z #8 75.78 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-03-16T16:34:30Z #8 76.30 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-03-16T16:34:31Z #8 77.10 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-03-16T16:34:31Z #8 77.22 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-03-16T16:34:31Z #8 77.23 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-03-16T16:34:31Z #8 77.24 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-03-16T16:34:31Z #8 77.25 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-03-16T16:34:31Z #8 77.26 Setting up fontconfig (2.13.1-4.2) ... -2024-03-16T16:34:33Z #8 77.27 Regenerating fonts cache... done. -2024-03-16T16:34:33Z #8 79.30 Setting up libxft2:amd64 (2.3.2-2) ... -2024-03-16T16:34:33Z #8 79.31 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-03-16T16:34:33Z #8 79.32 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-03-16T16:34:33Z #8 79.34 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-03-16T16:34:33Z #8 79.35 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-03-16T16:34:33Z #8 79.36 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-03-16T16:34:33Z #8 79.38 Setting up dconf-service (0.38.0-2) ... -2024-03-16T16:34:33Z #8 79.40 Setting up binutils (2.35.2-2) ... -2024-03-16T16:34:33Z #8 79.42 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-03-16T16:34:33Z #8 79.43 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-16T16:34:33Z #8 79.44 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-03-16T16:34:34Z #8 79.53 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-03-16T16:34:34Z #8 79.54 Setting up libgd3:amd64 (2.3.0-2) ... -2024-03-16T16:34:34Z #8 79.55 Setting up gcc-10 (10.2.1-6) ... -2024-03-16T16:34:34Z #8 79.57 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-03-16T16:34:34Z #8 79.58 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-03-16T16:34:34Z #8 79.60 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-03-16T16:34:34Z #8 79.61 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-03-16T16:34:34Z #8 79.63 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-03-16T16:34:34Z #8 79.64 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-03-16T16:34:34Z #8 79.66 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-03-16T16:34:34Z #8 79.67 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-03-16T16:34:34Z #8 79.69 Setting up libc-devtools (2.31-13+deb11u8) ... -2024-03-16T16:34:34Z #8 79.70 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-03-16T16:34:34Z #8 79.72 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-03-16T16:34:34Z #8 79.73 Setting up libglx0:amd64 (1.3.2-1) ... -2024-03-16T16:34:34Z #8 79.74 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-03-16T16:34:34Z #8 79.76 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-16T16:34:34Z #8 79.77 Setting up gcc (4:10.2.1-1) ... -2024-03-16T16:34:34Z #8 79.80 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-16T16:34:34Z #8 79.81 Setting up libgl1:amd64 (1.3.2-1) ... -2024-03-16T16:34:34Z #8 79.82 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-03-16T16:34:34Z #8 79.83 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-16T16:34:34Z #8 79.86 Setting up x11-utils (7.7+5) ... -2024-03-16T16:34:34Z #8 79.91 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-16T16:34:34Z #8 79.92 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-03-16T16:34:34Z #8 79.94 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-03-16T16:34:34Z #8 79.96 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-03-16T16:34:34Z #8 79.98 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-03-16T16:34:34Z #8 80.00 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-03-16T16:34:34Z #8 80.04 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-03-16T16:34:34Z #8 80.08 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-03-16T16:34:34Z #8 80.10 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-03-16T16:34:34Z #8 80.12 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-03-16T16:34:34Z #8 80.13 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-03-16T16:34:34Z #8 80.15 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-03-16T16:34:34Z #8 80.18 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-03-16T16:34:34Z #8 80.20 Setting up firefox-esr (115.8.0esr-1~deb11u1) ... -2024-03-16T16:34:34Z #8 80.21 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-03-16T16:34:34Z #8 80.21 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-03-16T16:34:34Z #8 80.22 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-03-16T16:34:34Z #8 80.22 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-03-16T16:34:34Z #8 80.23 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-16T16:34:34Z #8 80.26 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-03-16T16:34:39Z #8 DONE 85.2s -2024-03-16T16:34:39Z -2024-03-16T16:34:39Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-03-16T16:35:21Z #9 DONE 42.2s -2024-03-16T16:35:21Z -2024-03-16T16:35:21Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-03-16T16:35:21Z #6 ... -2024-03-16T16:35:21Z -2024-03-16T16:35:21Z #10 [ 5/10] COPY environment.yml /environment.yml -2024-03-16T16:35:21Z #10 DONE 0.0s -2024-03-16T16:35:21Z -2024-03-16T16:35:21Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-03-16T16:37:51Z #11 149.4 Transaction -2024-03-16T16:37:51Z #11 149.4 -2024-03-16T16:37:51Z #11 149.4 Prefix: /opt/conda/envs/birdy -2024-03-16T16:37:51Z #11 149.4 -2024-03-16T16:37:51Z #11 149.4 Updating specs: -2024-03-16T16:37:51Z #11 149.4 -2024-03-16T16:37:51Z #11 149.4 - xclim -2024-03-16T16:37:51Z #11 149.4 - ravenpy -2024-03-16T16:37:51Z #11 149.4 - python=3.10 -2024-03-16T16:37:51Z #11 149.4 -2024-03-16T16:37:51Z #11 149.4 -2024-03-16T16:37:51Z #11 149.5 Package Version Build Channel Size -2024-03-16T16:37:51Z #11 149.5 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-16T16:37:51Z #11 149.5 Install: -2024-03-16T16:37:51Z #11 149.5 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-16T16:37:51Z #11 149.5 -2024-03-16T16:37:51Z #11 149.5 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-03-16T16:37:51Z #11 149.5 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-03-16T16:37:51Z #11 149.5 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-03-16T16:37:51Z #11 149.5 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-03-16T16:37:51Z #11 149.5 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + fonts-conda-forge 1 0 conda-forge 4kB -2024-03-16T16:37:51Z #11 149.5 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-03-16T16:37:51Z #11 149.5 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-03-16T16:37:51Z #11 149.5 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + python_abi 3.10 4_cp310 conda-forge 6kB -2024-03-16T16:37:51Z #11 149.5 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB -2024-03-16T16:37:51Z #11 149.5 + ca-certificates 2024.2.2 hbcca054_0 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + libboost-headers 1.84.0 ha770c72_1 conda-forge 14MB -2024-03-16T16:37:51Z #11 149.5 + mpi 1.0 openmpi conda-forge 4kB -2024-03-16T16:37:51Z #11 149.5 + libgomp 13.2.0 h807b86a_5 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-03-16T16:37:51Z #11 149.5 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + lzo 2.10 h516909a_1000 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-03-16T16:37:51Z #11 149.5 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-03-16T16:37:51Z #11 149.5 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-03-16T16:37:51Z #11 149.5 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-03-16T16:37:51Z #11 149.5 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-03-16T16:37:51Z #11 149.5 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-03-16T16:37:51Z #11 149.5 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-03-16T16:37:51Z #11 149.5 + libev 4.33 hd590300_2 conda-forge 113kB -2024-03-16T16:37:51Z #11 149.5 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-03-16T16:37:51Z #11 149.5 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-03-16T16:37:51Z #11 149.5 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-03-16T16:37:51Z #11 149.5 + aws-c-common 0.9.14 hd590300_0 conda-forge 226kB -2024-03-16T16:37:51Z #11 149.5 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB -2024-03-16T16:37:51Z #11 149.5 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB -2024-03-16T16:37:51Z #11 149.5 + libaec 1.1.2 h59595ed_1 conda-forge 35kB -2024-03-16T16:37:51Z #11 149.5 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-03-16T16:37:51Z #11 149.5 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-03-16T16:37:51Z #11 149.5 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-03-16T16:37:51Z #11 149.5 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-03-16T16:37:51Z #11 149.5 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB -2024-03-16T16:37:51Z #11 149.5 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-03-16T16:37:51Z #11 149.5 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-03-16T16:37:51Z #11 149.5 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-03-16T16:37:51Z #11 149.5 + ncurses 6.4 h59595ed_2 conda-forge 884kB -2024-03-16T16:37:51Z #11 149.5 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-03-16T16:37:51Z #11 149.5 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-03-16T16:37:51Z #11 149.5 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-03-16T16:37:51Z #11 149.5 + c-ares 1.27.0 hd590300_0 conda-forge 164kB -2024-03-16T16:37:51Z #11 149.5 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-03-16T16:37:51Z #11 149.5 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-03-16T16:37:51Z #11 149.5 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB -2024-03-16T16:37:51Z #11 149.5 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-03-16T16:37:51Z #11 149.5 + snappy 1.1.10 h9fff704_0 conda-forge 39kB -2024-03-16T16:37:51Z #11 149.5 + icu 73.2 h59595ed_0 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB -2024-03-16T16:37:51Z #11 149.5 + libdeflate 1.19 hd590300_0 conda-forge 67kB -2024-03-16T16:37:51Z #11 149.5 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-03-16T16:37:51Z #11 149.5 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-03-16T16:37:51Z #11 149.5 + openssl 3.2.1 hd590300_0 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB -2024-03-16T16:37:51Z #11 149.5 + libnsl 2.0.1 hd590300_0 conda-forge 33kB -2024-03-16T16:37:51Z #11 149.5 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-03-16T16:37:51Z #11 149.5 + rdma-core 50.0 hd3aeb46_1 conda-forge 5MB -2024-03-16T16:37:51Z #11 149.5 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-03-16T16:37:51Z #11 149.5 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-03-16T16:37:51Z #11 149.5 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-03-16T16:37:51Z #11 149.5 + aws-c-compression 0.2.18 h4466546_2 conda-forge 19kB -2024-03-16T16:37:51Z #11 149.5 + aws-checksums 0.1.18 h4466546_2 conda-forge 50kB -2024-03-16T16:37:51Z #11 149.5 + aws-c-sdkutils 0.1.15 h4466546_2 conda-forge 55kB -2024-03-16T16:37:51Z #11 149.5 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB -2024-03-16T16:37:51Z #11 149.5 + expat 2.6.2 h59595ed_0 conda-forge 138kB -2024-03-16T16:37:51Z #11 149.5 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-03-16T16:37:51Z #11 149.5 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-03-16T16:37:51Z #11 149.5 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-03-16T16:37:51Z #11 149.5 + readline 8.2 h8228510_1 conda-forge 281kB -2024-03-16T16:37:51Z #11 149.5 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB -2024-03-16T16:37:51Z #11 149.5 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-03-16T16:37:51Z #11 149.5 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-03-16T16:37:51Z #11 149.5 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-03-16T16:37:51Z #11 149.5 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB -2024-03-16T16:37:51Z #11 149.5 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB -2024-03-16T16:37:51Z #11 149.5 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB -2024-03-16T16:37:51Z #11 149.5 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2024-03-16T16:37:51Z #11 149.5 + pcre2 10.43 hcad00b1_0 conda-forge 951kB -2024-03-16T16:37:51Z #11 149.5 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-03-16T16:37:51Z #11 149.5 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-03-16T16:37:51Z #11 149.5 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-03-16T16:37:51Z #11 149.5 + s2n 1.4.7 h06160fa_0 conda-forge 339kB -2024-03-16T16:37:51Z #11 149.5 + aws-c-cal 0.6.10 ha9bf9b1_2 conda-forge 55kB -2024-03-16T16:37:51Z #11 149.5 + libnghttp2 1.58.0 h47da74e_1 conda-forge 632kB -2024-03-16T16:37:51Z #11 149.5 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-03-16T16:37:51Z #11 149.5 + libssh2 1.11.0 h0841786_0 conda-forge 271kB -2024-03-16T16:37:51Z #11 149.5 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-03-16T16:37:51Z #11 149.5 + libxml2 2.12.5 h232c23b_0 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + ucx 1.15.0 h11edf95_7 conda-forge 7MB -2024-03-16T16:37:51Z #11 149.5 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-03-16T16:37:51Z #11 149.5 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-03-16T16:37:51Z #11 149.5 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB -2024-03-16T16:37:51Z #11 149.5 + krb5 1.21.2 h659d440_0 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB -2024-03-16T16:37:51Z #11 149.5 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB -2024-03-16T16:37:51Z #11 149.5 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + python 3.10.13 hd12c33a_1_cpython conda-forge 26MB -2024-03-16T16:37:51Z #11 149.5 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB -2024-03-16T16:37:51Z #11 149.5 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-03-16T16:37:51Z #11 149.5 + libtiff 4.6.0 ha9c0a0a_2 conda-forge 283kB -2024-03-16T16:37:51Z #11 149.5 + orc 2.0.0 h1e5e2c1_0 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB -2024-03-16T16:37:51Z #11 149.5 + libglib 2.80.0 hf2295e7_0 conda-forge 3MB -2024-03-16T16:37:51Z #11 149.5 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-03-16T16:37:51Z #11 149.5 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-03-16T16:37:51Z #11 149.5 + aws-c-io 0.14.6 h6b388c4_1 conda-forge 158kB -2024-03-16T16:37:51Z #11 149.5 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-03-16T16:37:51Z #11 149.5 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-03-16T16:37:51Z #11 149.5 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-03-16T16:37:51Z #11 149.5 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB -2024-03-16T16:37:51Z #11 149.5 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-03-16T16:37:51Z #11 149.5 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-03-16T16:37:51Z #11 149.5 + libcurl 8.6.0 hca28451_0 conda-forge 391kB -2024-03-16T16:37:51Z #11 149.5 + libpq 16.2 h33b98f1_0 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-16T16:37:51Z #11 149.5 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-03-16T16:37:51Z #11 149.5 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-03-16T16:37:51Z #11 149.5 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-03-16T16:37:51Z #11 149.5 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-03-16T16:37:51Z #11 149.5 + aws-c-http 0.8.1 hbfc29b2_7 conda-forge 194kB -2024-03-16T16:37:51Z #11 149.5 + aws-c-event-stream 0.4.2 he635cd5_6 conda-forge 54kB -2024-03-16T16:37:51Z #11 149.5 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB -2024-03-16T16:37:51Z #11 149.5 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB -2024-03-16T16:37:51Z #11 149.5 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + proj 9.3.1 h1d62c97_0 conda-forge 3MB -2024-03-16T16:37:51Z #11 149.5 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB -2024-03-16T16:37:51Z #11 149.5 + postgresql 16.2 h7387d8b_0 conda-forge 5MB -2024-03-16T16:37:51Z #11 149.5 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-16T16:37:51Z #11 149.5 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-16T16:37:51Z #11 149.5 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-03-16T16:37:51Z #11 149.5 + aws-c-mqtt 0.10.3 hffff1cc_2 conda-forge 163kB -2024-03-16T16:37:51Z #11 149.5 + aws-c-auth 0.7.16 haed3651_8 conda-forge 103kB -2024-03-16T16:37:51Z #11 149.5 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB -2024-03-16T16:37:51Z #11 149.5 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-03-16T16:37:51Z #11 149.5 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-03-16T16:37:51Z #11 149.5 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB -2024-03-16T16:37:51Z #11 149.5 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB -2024-03-16T16:37:51Z #11 149.5 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB -2024-03-16T16:37:51Z #11 149.5 + poppler 24.03.0 h590f24d_0 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + aws-c-s3 0.5.2 h4893938_2 conda-forge 105kB -2024-03-16T16:37:51Z #11 149.5 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB -2024-03-16T16:37:51Z #11 149.5 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-03-16T16:37:51Z #11 149.5 + aws-crt-cpp 0.26.3 h137ae52_2 conda-forge 334kB -2024-03-16T16:37:51Z #11 149.5 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB -2024-03-16T16:37:51Z #11 149.5 + aws-sdk-cpp 1.11.267 he0cb598_3 conda-forge 4MB -2024-03-16T16:37:51Z #11 149.5 + tiledb 2.20.1 h99d63bd_4 conda-forge 5MB -2024-03-16T16:37:51Z #11 149.5 + libarrow 15.0.1 h6bfc85a_2_cpu conda-forge 8MB -2024-03-16T16:37:51Z #11 149.5 + libgdal 3.8.4 hab4ef92_3 conda-forge 11MB -2024-03-16T16:37:51Z #11 149.5 + libparquet 15.0.1 h352af49_2_cpu conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + libarrow-gandiva 15.0.1 hb016d2e_2_cpu conda-forge 897kB -2024-03-16T16:37:51Z #11 149.5 + libarrow-flight 15.0.1 hc6145d9_2_cpu conda-forge 505kB -2024-03-16T16:37:51Z #11 149.5 + libarrow-acero 15.0.1 h59595ed_2_cpu conda-forge 598kB -2024-03-16T16:37:51Z #11 149.5 + libarrow-flight-sql 15.0.1 h757c851_2_cpu conda-forge 196kB -2024-03-16T16:37:51Z #11 149.5 + libarrow-dataset 15.0.1 h59595ed_2_cpu conda-forge 585kB -2024-03-16T16:37:51Z #11 149.5 + libarrow-substrait 15.0.1 h757c851_2_cpu conda-forge 521kB -2024-03-16T16:37:51Z #11 149.5 + wheel 0.42.0 pyhd8ed1ab_0 conda-forge 58kB -2024-03-16T16:37:51Z #11 149.5 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB -2024-03-16T16:37:51Z #11 149.5 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + threadpoolctl 3.3.0 pyhc1e730c_0 conda-forge 23kB -2024-03-16T16:37:51Z #11 149.5 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB -2024-03-16T16:37:51Z #11 149.5 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB -2024-03-16T16:37:51Z #11 149.5 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + appdirs 1.4.4 pyh9f0ad1d_0 conda-forge 13kB -2024-03-16T16:37:51Z #11 149.5 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-03-16T16:37:51Z #11 149.5 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB -2024-03-16T16:37:51Z #11 149.5 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-03-16T16:37:51Z #11 149.5 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-03-16T16:37:51Z #11 149.5 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-03-16T16:37:51Z #11 149.5 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-03-16T16:37:51Z #11 149.5 + boltons 23.1.1 pyhd8ed1ab_0 conda-forge 304kB -2024-03-16T16:37:51Z #11 149.5 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-03-16T16:37:51Z #11 149.5 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-03-16T16:37:51Z #11 149.5 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-03-16T16:37:51Z #11 149.5 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-03-16T16:37:51Z #11 149.5 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-03-16T16:37:51Z #11 149.5 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-03-16T16:37:51Z #11 149.5 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-03-16T16:37:51Z #11 149.5 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-03-16T16:37:51Z #11 149.5 + fsspec 2024.2.0 pyhca7485f_0 conda-forge 129kB -2024-03-16T16:37:51Z #11 149.5 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-03-16T16:37:51Z #11 149.5 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-03-16T16:37:51Z #11 149.5 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-03-16T16:37:51Z #11 149.5 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-03-16T16:37:51Z #11 149.5 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB -2024-03-16T16:37:51Z #11 149.5 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB -2024-03-16T16:37:51Z #11 149.5 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-03-16T16:37:51Z #11 149.5 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-03-16T16:37:51Z #11 149.5 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-03-16T16:37:51Z #11 149.5 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB -2024-03-16T16:37:51Z #11 149.5 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB -2024-03-16T16:37:51Z #11 149.5 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-03-16T16:37:51Z #11 149.5 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-03-16T16:37:51Z #11 149.5 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-03-16T16:37:51Z #11 149.5 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-03-16T16:37:51Z #11 149.5 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-03-16T16:37:51Z #11 149.5 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB -2024-03-16T16:37:51Z #11 149.5 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-03-16T16:37:51Z #11 149.5 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-03-16T16:37:51Z #11 149.5 + importlib-metadata 7.0.2 pyha770c72_0 conda-forge 27kB -2024-03-16T16:37:51Z #11 149.5 + pytools 2023.1.1 pyhd8ed1ab_0 conda-forge 71kB -2024-03-16T16:37:51Z #11 149.5 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-03-16T16:37:51Z #11 149.5 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB -2024-03-16T16:37:51Z #11 149.5 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-03-16T16:37:51Z #11 149.5 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-03-16T16:37:51Z #11 149.5 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-03-16T16:37:51Z #11 149.5 + importlib_metadata 7.0.2 hd8ed1ab_0 conda-forge 9kB -2024-03-16T16:37:51Z #11 149.5 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB -2024-03-16T16:37:51Z #11 149.5 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB -2024-03-16T16:37:51Z #11 149.5 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB -2024-03-16T16:37:51Z #11 149.5 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB -2024-03-16T16:37:51Z #11 149.5 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB -2024-03-16T16:37:51Z #11 149.5 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB -2024-03-16T16:37:51Z #11 149.5 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB -2024-03-16T16:37:51Z #11 149.5 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB -2024-03-16T16:37:51Z #11 149.5 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB -2024-03-16T16:37:51Z #11 149.5 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB -2024-03-16T16:37:51Z #11 149.5 + tornado 6.4 py310h2372a71_0 conda-forge 651kB -2024-03-16T16:37:51Z #11 149.5 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB -2024-03-16T16:37:51Z #11 149.5 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB -2024-03-16T16:37:51Z #11 149.5 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB -2024-03-16T16:37:51Z #11 149.5 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB -2024-03-16T16:37:51Z #11 149.5 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB -2024-03-16T16:37:51Z #11 149.5 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB -2024-03-16T16:37:51Z #11 149.5 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB -2024-03-16T16:37:51Z #11 149.5 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB -2024-03-16T16:37:51Z #11 149.5 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB -2024-03-16T16:37:51Z #11 149.5 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + fonttools 4.49.0 py310h2372a71_0 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + pyarrow 15.0.1 py310hf9e7431_2_cpu conda-forge 4MB -2024-03-16T16:37:51Z #11 149.5 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB -2024-03-16T16:37:51Z #11 149.5 + h5py 3.10.0 nompi_py310h65828d5_101 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB -2024-03-16T16:37:51Z #11 149.5 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB -2024-03-16T16:37:51Z #11 149.5 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB -2024-03-16T16:37:51Z #11 149.5 + gdal 3.8.4 py310he073c5f_3 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + numba 0.59.0 py310h7dc5dd1_1 conda-forge 4MB -2024-03-16T16:37:51Z #11 149.5 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB -2024-03-16T16:37:51Z #11 149.5 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB -2024-03-16T16:37:51Z #11 149.5 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB -2024-03-16T16:37:51Z #11 149.5 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB -2024-03-16T16:37:51Z #11 149.5 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB -2024-03-16T16:37:51Z #11 149.5 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB -2024-03-16T16:37:51Z #11 149.5 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB -2024-03-16T16:37:51Z #11 149.5 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-03-16T16:37:51Z #11 149.5 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-03-16T16:37:51Z #11 149.5 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB -2024-03-16T16:37:51Z #11 149.5 + dask-core 2024.3.0 pyhd8ed1ab_0 conda-forge 881kB -2024-03-16T16:37:51Z #11 149.5 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB -2024-03-16T16:37:51Z #11 149.5 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-03-16T16:37:51Z #11 149.5 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-03-16T16:37:51Z #11 149.5 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-03-16T16:37:51Z #11 149.5 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-03-16T16:37:51Z #11 149.5 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-03-16T16:37:51Z #11 149.5 + pydantic 2.6.3 pyhd8ed1ab_0 conda-forge 272kB -2024-03-16T16:37:51Z #11 149.5 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-03-16T16:37:51Z #11 149.5 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB -2024-03-16T16:37:51Z #11 149.5 + xarray 2024.2.0 pyhd8ed1ab_0 conda-forge 742kB -2024-03-16T16:37:51Z #11 149.5 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB -2024-03-16T16:37:51Z #11 149.5 + properscoring 0.1 py_0 conda-forge 22kB -2024-03-16T16:37:51Z #11 149.5 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-03-16T16:37:51Z #11 149.5 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-03-16T16:37:51Z #11 149.5 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-03-16T16:37:51Z #11 149.5 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB -2024-03-16T16:37:51Z #11 149.5 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB -2024-03-16T16:37:51Z #11 149.5 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-03-16T16:37:51Z #11 149.5 + dask-expr 1.0.2 pyhd8ed1ab_0 conda-forge 140kB -2024-03-16T16:37:51Z #11 149.5 + distributed 2024.3.0 pyhd8ed1ab_0 conda-forge 794kB -2024-03-16T16:37:51Z #11 149.5 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-03-16T16:37:51Z #11 149.5 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-03-16T16:37:51Z #11 149.5 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-03-16T16:37:51Z #11 149.5 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-03-16T16:37:51Z #11 149.5 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-03-16T16:37:51Z #11 149.5 + dask 2024.3.0 pyhd8ed1ab_1 conda-forge 7kB -2024-03-16T16:37:51Z #11 149.5 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB -2024-03-16T16:37:51Z #11 149.5 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB -2024-03-16T16:37:51Z #11 149.5 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-03-16T16:37:51Z #11 149.5 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-03-16T16:37:51Z #11 149.5 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB -2024-03-16T16:37:51Z #11 149.5 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB -2024-03-16T16:37:51Z #11 149.5 + rioxarray 0.15.1 pyhd8ed1ab_0 conda-forge 48kB -2024-03-16T16:37:51Z #11 149.5 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB -2024-03-16T16:37:51Z #11 149.5 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-03-16T16:37:51Z #11 149.5 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB -2024-03-16T16:37:51Z #11 149.5 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-03-16T16:37:51Z #11 149.5 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB -2024-03-16T16:37:51Z #11 149.5 -2024-03-16T16:37:51Z #11 149.5 Summary: -2024-03-16T16:37:51Z #11 149.5 -2024-03-16T16:37:51Z #11 149.5 Install: 300 packages -2024-03-16T16:37:51Z #11 149.5 -2024-03-16T16:37:51Z #11 149.5 Total download: 441MB -2024-03-16T16:37:51Z #11 149.5 -2024-03-16T16:37:51Z #11 149.5 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-16T16:37:51Z #11 149.5 -2024-03-16T16:37:51Z #11 149.5 -2024-03-16T16:39:29Z #11 247.7 -2024-03-16T16:39:29Z #11 247.7 Looking for: ['xclim', 'ravenpy', 'python=3.10'] -2024-03-16T16:39:29Z #11 247.7 -2024-03-16T16:39:29Z #11 247.7 -2024-03-16T16:39:29Z #11 247.7 Downloading and Extracting Packages: ...working... done -2024-03-16T16:39:33Z #11 247.7 Preparing transaction: ...working... done -2024-03-16T16:39:47Z #11 252.0 Verifying transaction: ...working... done -2024-03-16T16:40:21Z #11 265.4 Executing transaction: ...working... -2024-03-16T16:40:21Z #11 299.5 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-03-16T16:40:21Z #11 299.5 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-03-16T16:40:21Z #11 299.5 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-03-16T16:40:21Z #11 299.5 mpiexec --mca opal_cuda_support 1 ... -2024-03-16T16:40:21Z #11 299.5 -2024-03-16T16:40:21Z #11 299.5 In addition, the UCX support is also built but disabled by default. -2024-03-16T16:40:21Z #11 299.5 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-03-16T16:40:21Z #11 299.5 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-03-16T16:40:21Z #11 299.5 Equivalently, you can set the MCA parameters in the command line: -2024-03-16T16:40:21Z #11 299.5 mpiexec --mca pml ucx --mca osc ucx ... -2024-03-16T16:40:21Z #11 299.5 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-03-16T16:40:21Z #11 299.5 Please consult UCX's documentation for detail. -2024-03-16T16:40:21Z #11 299.5 -2024-03-16T16:40:21Z #11 299.5 -2024-03-16T16:40:21Z #11 299.5 done -2024-03-16T16:40:21Z #11 299.6 -2024-03-16T16:40:21Z #11 299.6 To activate this environment, use -2024-03-16T16:40:21Z #11 299.6 -2024-03-16T16:40:21Z #11 299.6 $ mamba activate birdy -2024-03-16T16:40:21Z #11 299.6 -2024-03-16T16:40:21Z #11 299.6 To deactivate an active environment, use -2024-03-16T16:40:21Z #11 299.6 -2024-03-16T16:40:21Z #11 299.6 $ mamba deactivate -2024-03-16T16:40:21Z #11 299.6 -2024-03-16T16:40:25Z #11 303.1 Channels: -2024-03-16T16:40:25Z #11 303.1 - conda-forge -2024-03-16T16:40:25Z #11 303.1 - cdat -2024-03-16T16:40:25Z #11 303.1 - bokeh -2024-03-16T16:40:25Z #11 303.1 - pyviz/label/dev -2024-03-16T16:40:25Z #11 303.1 - defaults -2024-03-16T16:40:25Z #11 303.1 Platform: linux-64 -2024-03-16T16:41:01Z #11 303.1 Collecting package metadata (repodata.json): ...working... done -2024-03-16T16:42:03Z #11 340.0 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.8 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 401.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:03Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:04Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:57Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:42:58Z #11 456.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-16T16:45:05Z #11 583.3 done -2024-03-16T16:47:02Z #11 700.2 -2024-03-16T16:47:02Z #11 700.2 Downloading and Extracting Packages: ...working... done -2024-03-16T16:47:11Z #11 700.2 Preparing transaction: ...working... done -2024-03-16T16:47:35Z #11 710.0 Verifying transaction: ...working... done -2024-03-16T16:48:30Z #11 734.0 Executing transaction: ...working... -2024-03-16T16:48:30Z #11 788.8 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-03-16T16:48:30Z #11 788.8 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-03-16T16:48:30Z #11 788.8 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-03-16T16:48:30Z #11 788.8 mpiexec --mca opal_cuda_support 1 ... -2024-03-16T16:48:30Z #11 788.8 -2024-03-16T16:48:30Z #11 788.8 In addition, the UCX support is also built but disabled by default. -2024-03-16T16:48:30Z #11 788.8 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-03-16T16:48:30Z #11 788.8 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-03-16T16:48:30Z #11 788.8 Equivalently, you can set the MCA parameters in the command line: -2024-03-16T16:48:30Z #11 788.8 mpiexec --mca pml ucx --mca osc ucx ... -2024-03-16T16:48:30Z #11 788.8 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-03-16T16:48:30Z #11 788.8 Please consult UCX's documentation for detail. -2024-03-16T16:48:30Z #11 788.8 -2024-03-16T16:48:30Z #11 788.8 -2024-03-16T16:48:30Z #11 788.8 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-03-16T16:48:30Z #11 788.8 given by the platformdirs library. To remove this warning and -2024-03-16T16:48:30Z #11 788.8 see the appropriate new directories, set the environment variable -2024-03-16T16:48:30Z #11 788.8 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-03-16T16:48:30Z #11 788.8 The use of platformdirs will be the default in `jupyter_core` v6 -2024-03-16T16:48:30Z #11 788.8 from . import paths -2024-03-16T16:48:30Z #11 788.8 Enabling: jupyterlab_git -2024-03-16T16:48:30Z #11 788.8 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-16T16:48:30Z #11 788.8 - Validating... -2024-03-16T16:48:30Z #11 788.8 jupyterlab_git OK -2024-03-16T16:48:30Z #11 788.8 -2024-03-16T16:48:30Z #11 788.8 done -2024-03-16T16:49:16Z #11 796.5 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-03-16T16:49:16Z #11 834.6 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.jofvnsgm.requirements.txt', '--exists-action=b'] -2024-03-16T16:49:16Z #11 834.6 Pip subprocess output: -2024-03-16T16:49:16Z #11 834.6 Collecting xncml (from -r /condaenv.jofvnsgm.requirements.txt (line 1)) -2024-03-16T16:49:16Z #11 834.6 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting hsclient (from -r /condaenv.jofvnsgm.requirements.txt (line 2)) -2024-03-16T16:49:16Z #11 834.6 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting fstd2nc (from -r /condaenv.jofvnsgm.requirements.txt (line 3)) -2024-03-16T16:49:16Z #11 834.6 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 8.0 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Installing build dependencies: started -2024-03-16T16:49:16Z #11 834.6 Installing build dependencies: finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Getting requirements to build wheel: started -2024-03-16T16:49:16Z #11 834.6 Getting requirements to build wheel: finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Installing backend dependencies: started -2024-03-16T16:49:16Z #11 834.6 Installing backend dependencies: finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Preparing metadata (pyproject.toml): started -2024-03-16T16:49:16Z #11 834.6 Preparing metadata (pyproject.toml): finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Collecting figanos (from -r /condaenv.jofvnsgm.requirements.txt (line 4)) -2024-03-16T16:49:16Z #11 834.6 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting pixiedust (from -r /condaenv.jofvnsgm.requirements.txt (line 5)) -2024-03-16T16:49:16Z #11 834.6 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 22.9 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): started -2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Collecting ipython_blocking (from -r /condaenv.jofvnsgm.requirements.txt (line 6)) -2024-03-16T16:49:16Z #11 834.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting jupyternotify (from -r /condaenv.jofvnsgm.requirements.txt (line 7)) -2024-03-16T16:49:16Z #11 834.6 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): started -2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Collecting jupyterlab-logout (from -r /condaenv.jofvnsgm.requirements.txt (line 8)) -2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.jofvnsgm.requirements.txt (line 9)) -2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting pytest-tornasync (from -r /condaenv.jofvnsgm.requirements.txt (line 10)) -2024-03-16T16:49:16Z #11 834.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting xmltodict (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) -2024-03-16T16:49:16Z #11 834.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting xsdata (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) -2024-03-16T16:49:16Z #11 834.6 Downloading xsdata-24.3.1-py3-none-any.whl.metadata (6.3 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (2023.8.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (1.6.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (1.6.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (2024.3.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (5.9.8) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (69.2.0) -2024-03-16T16:49:16Z #11 834.6 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) -2024-03-16T16:49:16Z #11 834.6 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2.31.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (1.4.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.jofvnsgm.requirements.txt (line 3)) (1.24.4) -2024-03-16T16:49:16Z #11 834.6 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.jofvnsgm.requirements.txt (line 3)) -2024-03-16T16:49:16Z #11 834.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-03-16T16:49:16Z #11 834.6 Collecting progress (from fstd2nc->-r /condaenv.jofvnsgm.requirements.txt (line 3)) -2024-03-16T16:49:16Z #11 834.6 Downloading progress-1.6.tar.gz (7.8 kB) -2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): started -2024-03-16T16:49:16Z #11 834.6 Preparing metadata (setup.py): finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.22.0) -2024-03-16T16:49:16Z #11 834.6 Collecting cairosvg (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) -2024-03-16T16:49:16Z #11 834.6 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.14.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.8.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.1.4) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (4.2.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (6.0.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.13.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.22.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.47.0) -2024-03-16T16:49:16Z #11 834.6 Collecting geojson (from pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) -2024-03-16T16:49:16Z #11 834.6 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting astunparse (from pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) -2024-03-16T16:49:16Z #11 834.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) (3.6) -2024-03-16T16:49:16Z #11 834.6 Collecting colour (from pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) -2024-03-16T16:49:16Z #11 834.6 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (8.22.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (8.1.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.7.4) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (1.0.0) -2024-03-16T16:49:16Z #11 834.6 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) -2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab-4.1.5-py3-none-any.whl.metadata (15 kB) -2024-03-16T16:49:16Z #11 834.6 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-03-16T16:49:16Z #11 834.6 Collecting jupyterlab-logout (from -r /condaenv.jofvnsgm.requirements.txt (line 8)) -2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.6.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (3.6.7) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (23.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (6.4) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (5.7.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.25.4) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.13.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.2.4) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.8.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.0.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (6.5.6) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (3.1.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.0.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.jofvnsgm.requirements.txt (line 10)) (8.1.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.jofvnsgm.requirements.txt (line 3)) (2024.1) -2024-03-16T16:49:16Z #11 834.6 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) -2024-03-16T16:49:16Z #11 834.6 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2.6.3) -2024-03-16T16:49:16Z #11 834.6 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) -2024-03-16T16:49:16Z #11 834.6 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (0.6.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2.16.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (4.10.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.jofvnsgm.requirements.txt (line 10)) (2.0.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.jofvnsgm.requirements.txt (line 10)) (1.4.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.jofvnsgm.requirements.txt (line 10)) (1.2.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (23.1.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.3.8) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.9.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (8.1.7) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.0.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.0.6) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.59.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.23) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.4.1.post1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.12.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.14.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (3.0.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (2024.2.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (1.4.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (0.12.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (7.0.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.9.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2024.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) (0.42.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.jofvnsgm.requirements.txt (line 5)) (1.16.0) -2024-03-16T16:49:16Z #11 834.6 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) -2024-03-16T16:49:16Z #11 834.6 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) -2024-03-16T16:49:16Z #11 834.6 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) -2024-03-16T16:49:16Z #11 834.6 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.7.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (9.4.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.2.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.0.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.3.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.5.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.2.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.12.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (4.49.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.4.5) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.1.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.9.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (5.1.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.19.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.1.6) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (3.0.42) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (2.17.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.6.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (5.14.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (4.9.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.2.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (4.0.10) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (3.0.10) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (5.5.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (6.6.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (7.16.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (6.29.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (7.4.9) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (5.10.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (3.3.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (3.6) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2.0.7) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (2024.2.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) (3.2.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.2.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.34.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2023.8.12) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (23.2.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.1.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.7.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (4.0.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (3.17.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.8.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.1.5) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.4) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (1.6.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (24.0.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (4.3.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (23.1.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.9.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.5.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (7.7.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.20.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.8.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.18.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.7.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.9.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.8.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.5.9) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.14.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.9.22) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (4.21.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (4.12.3) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (6.1.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (0.3.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (3.0.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (1.5.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (2.19.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.2.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.2.4) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.jofvnsgm.requirements.txt (line 1)) (1.0.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.7.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.2.13) -2024-03-16T16:49:16Z #11 834.6 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) -2024-03-16T16:49:16Z #11 834.6 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.3.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (3.3.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (1.16.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.5.1) -2024-03-16T16:49:16Z #11 834.6 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.jofvnsgm.requirements.txt (line 2)) -2024-03-16T16:49:16Z #11 834.6 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (1.8.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.42.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (2.4.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (2.0.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (2.4.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.jofvnsgm.requirements.txt (line 6)) (0.2.2) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (0.5.6) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.3.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.jofvnsgm.requirements.txt (line 4)) (2.21) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2023.12.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.33.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.18.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.0.7) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.1.4) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.1.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (22.1.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (0.19.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (21.2.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.jofvnsgm.requirements.txt (line 7)) (2.5) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.5.1) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (20.11.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.4) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.3.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.13) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (1.3.0) -2024-03-16T16:49:16Z #11 834.6 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.jofvnsgm.requirements.txt (line 8)) (2.9.0.20240316) -2024-03-16T16:49:16Z #11 834.6 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 50.7 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.0 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 38.8 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 64.8 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 5.8 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading xsdata-24.3.1-py3-none-any.whl (224 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 224.1/224.1 kB 26.4 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 24.2 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 10.7 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-03-16T16:49:16Z #11 834.6 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 31.0 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-03-16T16:49:16Z #11 834.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.2 MB/s eta 0:00:00 -2024-03-16T16:49:16Z #11 834.6 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress -2024-03-16T16:49:16Z #11 834.6 Building wheel for fstd2nc (pyproject.toml): started -2024-03-16T16:49:16Z #11 834.6 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=b6084247f096a9b81af085c06aecc40cde7e5aa1a7ac836f961443b8a834349a -2024-03-16T16:49:16Z #11 834.6 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a -2024-03-16T16:49:16Z #11 834.6 Building wheel for pixiedust (setup.py): started -2024-03-16T16:49:16Z #11 834.6 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=8cbc66381c46bd2640c1c9ab1730fcd0cd882d462ecf13c3ff1ff2ae04cb075c -2024-03-16T16:49:16Z #11 834.6 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 -2024-03-16T16:49:16Z #11 834.6 Building wheel for jupyternotify (setup.py): started -2024-03-16T16:49:16Z #11 834.6 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=598719bbc6e9c10fc33980fe15b8c5f099f1a27a9e33854d2e0da02a67fc9bfb -2024-03-16T16:49:16Z #11 834.6 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 -2024-03-16T16:49:16Z #11 834.6 Building wheel for progress (setup.py): started -2024-03-16T16:49:16Z #11 834.6 Building wheel for progress (setup.py): finished with status 'done' -2024-03-16T16:49:16Z #11 834.6 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9612 sha256=4dd68c8c07071108890eb7f49a4313b45396aebf5fa6d49d5376337bd6a7c54a -2024-03-16T16:49:16Z #11 834.6 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 -2024-03-16T16:49:16Z #11 834.6 Successfully built fstd2nc pixiedust jupyternotify progress -2024-03-16T16:49:16Z #11 834.6 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-03-16T16:49:16Z #11 834.6 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.3.1 -2024-03-16T16:49:16Z #11 834.6 -2024-03-16T16:49:16Z #11 834.6 done -2024-03-16T16:49:16Z #11 834.6 # -2024-03-16T16:49:16Z #11 834.6 # To activate this environment, use -2024-03-16T16:49:16Z #11 834.6 # -2024-03-16T16:49:16Z #11 834.6 # $ conda activate birdy -2024-03-16T16:49:16Z #11 834.6 # -2024-03-16T16:49:16Z #11 834.6 # To deactivate an active environment, use -2024-03-16T16:49:16Z #11 834.6 # -2024-03-16T16:49:16Z #11 834.6 # $ conda deactivate -2024-03-16T16:49:16Z #11 834.6 -2024-03-16T16:49:36Z #11 854.4 Will remove 787 (1.19 GB) tarball(s). -2024-03-16T16:49:36Z #11 854.4 Will remove 1 index cache(s). -2024-03-16T16:49:36Z #11 854.4 Will remove 145 (1.21 GB) package(s). -2024-03-16T16:49:36Z #11 854.4 There are no tempfile(s) to remove. -2024-03-16T16:49:36Z #11 854.4 There are no logfile(s) to remove. -2024-03-16T16:49:37Z #11 DONE 855.2s -2024-03-16T16:49:37Z -2024-03-16T16:49:37Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2024-03-16T16:49:38Z #12 1.266 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-03-16T16:49:38Z #12 DONE 1.4s -2024-03-16T16:49:38Z -2024-03-16T16:49:38Z #13 [ 8/10] RUN jupyter lab build -2024-03-16T16:49:40Z #13 1.924 [LabBuildApp] JupyterLab 3.6.7 -2024-03-16T16:49:40Z #13 1.925 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2024-03-16T16:49:41Z #13 2.571 [LabBuildApp] Building jupyterlab assets (production, minimized) -2024-03-16T16:49:41Z #13 2.589 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. -2024-03-16T16:49:41Z #13 2.589 -2024-03-16T16:51:59Z #13 2.594 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ -2024-03-16T16:51:59Z #13 DONE 140.7s -2024-03-16T16:51:59Z -2024-03-16T16:51:59Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-03-16T16:51:59Z #14 0.636 Enabling: voila -2024-03-16T16:51:59Z #14 0.636 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-16T16:51:59Z #14 0.638 - Validating... -2024-03-16T16:52:00Z #14 1.331 voila 0.5.5 OK -2024-03-16T16:52:01Z #14 1.710 Enabling: panel.io.jupyter_server_extension -2024-03-16T16:52:01Z #14 1.710 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-16T16:52:01Z #14 1.712 - Validating... -2024-03-16T16:52:02Z #14 3.295 panel.io.jupyter_server_extension OK -2024-03-16T16:52:03Z #14 3.782 - Validating... -2024-03-16T16:52:03Z #14 4.630 dask_labextension 6.2.0 OK -2024-03-16T16:52:03Z #14 4.630 - Validating... -2024-03-16T16:52:03Z #14 4.630 jupyter_server_proxy 4.1.1-0.dev OK -2024-03-16T16:52:03Z #14 4.631 - Validating... -2024-03-16T16:52:04Z #14 4.805 jupyter_resource_usage 0.7.1 OK -2024-03-16T16:52:04Z #14 4.805 - Validating... -2024-03-16T16:52:04Z #14 4.864  X is jupyter_server_ydoc importable? -2024-03-16T16:52:04Z #14 4.864 - Validating... -2024-03-16T16:52:04Z #14 4.937 jupyterlab 3.6.7 OK -2024-03-16T16:52:04Z #14 4.937 - Validating... -2024-03-16T16:52:04Z #14 5.115 jupyterlab_jupytext OK -2024-03-16T16:52:04Z #14 5.115 - Validating... -2024-03-16T16:52:04Z #14 5.119 mamba_gator 5.2.1 OK -2024-03-16T16:52:04Z #14 5.120 - Validating... -2024-03-16T16:52:04Z #14 5.136 nbdime 4.0.1 OK -2024-03-16T16:52:04Z #14 5.136 - Validating... -2024-03-16T16:52:05Z #14 6.211 panel.io.jupyter_server_extension OK -2024-03-16T16:52:05Z #14 6.211 - Validating... -2024-03-16T16:52:05Z #14 6.280 nbresuse OK -2024-03-16T16:52:05Z #14 6.280 - Validating... -2024-03-16T16:52:05Z #14 6.542 voila.server_extension OK -2024-03-16T16:52:05Z #14 6.542 - Validating... -2024-03-16T16:52:05Z #14 6.544 jupyterlab_git OK -2024-03-16T16:52:05Z #14 6.544 - Validating... -2024-03-16T16:52:05Z #14 6.545 voila 0.5.5 OK -2024-03-16T16:52:05Z #14 6.546 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-03-16T16:52:05Z #14 6.546 dask_labextension  enabled  -2024-03-16T16:52:05Z #14 6.546 jupyter_server_proxy  enabled  -2024-03-16T16:52:05Z #14 6.546 jupyter_resource_usage  enabled  -2024-03-16T16:52:05Z #14 6.546 jupyter_server_ydoc  enabled  -2024-03-16T16:52:05Z #14 6.546 jupyterlab  enabled  -2024-03-16T16:52:05Z #14 6.546 jupyterlab_jupytext  enabled  -2024-03-16T16:52:05Z #14 6.546 mamba_gator  enabled  -2024-03-16T16:52:05Z #14 6.546 nbdime  enabled  -2024-03-16T16:52:05Z #14 6.546 panel.io.jupyter_server_extension  enabled  -2024-03-16T16:52:05Z #14 6.546 nbresuse  enabled  -2024-03-16T16:52:05Z #14 6.546 voila.server_extension  enabled  -2024-03-16T16:52:05Z #14 6.546 jupyterlab_git  enabled  -2024-03-16T16:52:05Z #14 6.546 voila  enabled  -2024-03-16T16:52:06Z #14 DONE 7.0s -2024-03-16T16:52:06Z -2024-03-16T16:52:06Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-03-16T16:52:06Z #6 ... -2024-03-16T16:52:06Z -2024-03-16T16:52:06Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-03-16T16:52:06Z #15 0.412 --2024-03-16 16:52:06-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-03-16T16:52:06Z #15 0.438 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.110.133, 185.199.111.133, ... -2024-03-16T16:52:06Z #15 0.442 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-03-16T16:52:06Z #15 0.445 HTTP request sent, awaiting response... 200 OK -2024-03-16T16:52:06Z #15 0.510 Length: 9769 (9.5K) [text/plain] -2024-03-16T16:52:06Z #15 0.510 Saving to: ‘/usr/local/bin/start.sh’ -2024-03-16T16:52:06Z #15 0.510 -2024-03-16T16:52:06Z #15 0.510 0K ......... 100% 18.2M=0.001s -2024-03-16T16:52:06Z #15 0.512 -2024-03-16T16:52:06Z #15 0.512 2024-03-16 16:52:06 (18.2 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-03-16T16:52:06Z #15 0.512 -2024-03-16T16:52:06Z #15 0.515 --2024-03-16 16:52:06-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-03-16T16:52:06Z #15 0.540 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2024-03-16T16:52:06Z #15 0.541 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-03-16T16:52:06Z #15 0.545 HTTP request sent, awaiting response... 200 OK -2024-03-16T16:52:06Z #15 0.616 Length: 359 [text/plain] -2024-03-16T16:52:06Z #15 0.616 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-03-16T16:52:06Z #15 0.616 -2024-03-16T16:52:06Z #15 0.616 0K 100% 926K=0s -2024-03-16T16:52:06Z #15 0.618 -2024-03-16T16:52:06Z #15 0.618 2024-03-16 16:52:06 (926 KB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-03-16T16:52:06Z #15 0.618 -2024-03-16T16:52:06Z #15 0.622 --2024-03-16 16:52:06-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-03-16T16:52:06Z #15 0.645 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2024-03-16T16:52:06Z #15 0.647 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-03-16T16:52:06Z #15 0.651 HTTP request sent, awaiting response... 200 OK -2024-03-16T16:52:06Z #15 0.741 Length: 852 [text/plain] -2024-03-16T16:52:06Z #15 0.741 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-03-16T16:52:07Z #15 0.741 -2024-03-16T16:52:07Z #15 0.741 0K 100% 34.5M=0s -2024-03-16T16:52:07Z #15 0.743 -2024-03-16T16:52:07Z #15 0.743 2024-03-16 16:52:06 (34.5 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-03-16T16:52:07Z #15 0.743 -2024-03-16T16:52:07Z #15 0.747 --2024-03-16 16:52:06-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-03-16T16:52:07Z #15 0.771 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2024-03-16T16:52:07Z #15 0.772 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-03-16T16:52:07Z #15 0.777 HTTP request sent, awaiting response... 200 OK -2024-03-16T16:52:07Z #15 0.845 Length: 1034 (1.0K) [text/plain] -2024-03-16T16:52:07Z #15 0.845 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-03-16T16:52:07Z #15 0.845 -2024-03-16T16:52:07Z #15 0.845 0K . 100% 39.9M=0s -2024-03-16T16:52:07Z #15 0.847 -2024-03-16T16:52:07Z #15 0.847 2024-03-16 16:52:07 (39.9 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-03-16T16:52:07Z #15 0.847 -2024-03-16T16:52:07Z #15 0.853 --2024-03-16 16:52:07-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-03-16T16:52:07Z #15 0.877 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2024-03-16T16:52:07Z #15 0.878 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-03-16T16:52:07Z #15 0.883 HTTP request sent, awaiting response... 200 OK -2024-03-16T16:52:07Z #15 0.948 Length: 1836 (1.8K) [text/plain] -2024-03-16T16:52:07Z #15 0.948 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-03-16T16:52:07Z #15 0.949 -2024-03-16T16:52:07Z #15 0.949 0K . 100% 12.5M=0s -2024-03-16T16:52:07Z #15 0.949 -2024-03-16T16:52:07Z #15 0.949 2024-03-16 16:52:07 (12.5 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-03-16T16:52:07Z #15 0.949 -2024-03-16T16:52:07Z #15 1.125 --2024-03-16 16:52:07-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-03-16T16:52:07Z #15 1.149 Resolving downloads.globus.org (downloads.globus.org)... 52.85.132.25, 52.85.132.96, 52.85.132.85, ... -2024-03-16T16:52:07Z #15 1.155 Connecting to downloads.globus.org (downloads.globus.org)|52.85.132.25|:443... connected. -2024-03-16T16:52:07Z #15 1.162 HTTP request sent, awaiting response... 200 OK -2024-03-16T16:52:07Z #15 1.190 Length: 129825343 (124M) [application/x-tar] -2024-03-16T16:52:07Z #15 1.190 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-03-16T16:52:07Z #15 1.192 -2024-03-16T16:52:07Z #15 1.192 0K .......... .......... .......... .......... .......... 0% 13.7M 9s -2024-03-16T16:52:07Z #15 1.194 50K .......... .......... .......... .......... .......... 0% 37.3M 6s -2024-03-16T16:52:07Z #15 1.195 100K .......... .......... .......... .......... .......... 0% 47.2M 5s -2024-03-16T16:52:07Z #15 1.196 150K .......... .......... .......... .......... .......... 0% 34.9M 5s -2024-03-16T16:52:07Z #15 1.198 200K .......... .......... .......... .......... .......... 0% 45.1M 4s -2024-03-16T16:52:07Z #15 1.199 250K .......... .......... .......... .......... .......... 0% 43.9M 4s -2024-03-16T16:52:07Z #15 1.200 300K .......... .......... .......... .......... .......... 0% 43.7M 4s -2024-03-16T16:52:07Z #15 1.205 350K .......... .......... .......... .......... .......... 0% 46.0M 4s -2024-03-16T16:52:07Z #15 1.205 400K .......... .......... .......... .......... .......... 0% 50.5M 4s -2024-03-16T16:52:07Z #15 1.205 450K .......... .......... .......... .......... .......... 0% 53.6M 3s -2024-03-16T16:52:07Z #15 1.205 500K .......... .......... .......... .......... .......... 0% 36.7M 3s -2024-03-16T16:52:07Z #15 1.205 550K .......... .......... .......... .......... .......... 0% 38.1M 3s -2024-03-16T16:52:07Z #15 1.206 600K .......... .......... .......... .......... .......... 0% 45.3M 3s -2024-03-16T16:52:07Z #15 1.207 650K .......... .......... .......... .......... .......... 0% 48.1M 3s -2024-03-16T16:52:07Z #15 1.208 700K .......... .......... .......... .......... .......... 0% 48.2M 3s -2024-03-16T16:52:07Z #15 1.209 750K .......... .......... .......... .......... .......... 0% 43.0M 3s -2024-03-16T16:52:07Z #15 1.210 800K .......... .......... .......... .......... .......... 0% 46.6M 3s -2024-03-16T16:52:07Z #15 1.211 850K .......... .......... .......... .......... .......... 0% 67.0M 3s -2024-03-16T16:52:07Z #15 1.218 900K .......... .......... .......... .......... .......... 0% 132M 3s -2024-03-16T16:52:07Z #15 1.218 950K .......... .......... .......... .......... .......... 0% 138M 3s -2024-03-16T16:52:07Z #15 1.218 1000K .......... .......... .......... .......... .......... 0% 143M 3s -2024-03-16T16:52:07Z #15 1.218 1050K .......... .......... .......... .......... .......... 0% 131M 3s -2024-03-16T16:52:07Z #15 1.218 1100K .......... .......... .......... .......... .......... 0% 111M 3s -2024-03-16T16:52:07Z #15 1.218 1150K .......... .......... .......... .......... .......... 0% 121M 3s -2024-03-16T16:52:07Z #15 1.218 1200K .......... .......... .......... .......... .......... 0% 110M 3s -2024-03-16T16:52:07Z #15 1.218 1250K .......... .......... .......... .......... .......... 1% 131M 2s -2024-03-16T16:52:07Z #15 1.218 1300K .......... .......... .......... .......... .......... 1% 128M 2s -2024-03-16T16:52:07Z #15 1.218 1350K .......... .......... .......... .......... .......... 1% 119M 2s -2024-03-16T16:52:07Z #15 1.218 1400K .......... .......... .......... .......... .......... 1% 137M 2s -2024-03-16T16:52:07Z #15 1.218 1450K .......... .......... .......... .......... .......... 1% 144M 2s -2024-03-16T16:52:07Z #15 1.218 1500K .......... .......... .......... .......... .......... 1% 115M 2s -2024-03-16T16:52:07Z #15 1.218 1550K .......... .......... .......... .......... .......... 1% 97.1M 2s -2024-03-16T16:52:07Z #15 1.218 1600K .......... .......... .......... .......... .......... 1% 58.6M 2s -2024-03-16T16:52:07Z #15 1.219 1650K .......... .......... .......... .......... .......... 1% 55.6M 2s -2024-03-16T16:52:07Z #15 1.219 1700K .......... .......... .......... .......... .......... 1% 48.0M 2s -2024-03-16T16:52:07Z #15 1.220 1750K .......... .......... .......... .......... .......... 1% 43.9M 2s -2024-03-16T16:52:07Z #15 1.221 1800K .......... .......... .......... .......... .......... 1% 51.1M 2s -2024-03-16T16:52:07Z #15 1.222 1850K .......... .......... .......... .......... .......... 1% 49.1M 2s -2024-03-16T16:52:07Z #15 1.223 1900K .......... .......... .......... .......... .......... 1% 52.0M 2s -2024-03-16T16:52:07Z #15 1.224 1950K .......... .......... .......... .......... .......... 1% 44.5M 2s -2024-03-16T16:52:07Z #15 1.225 2000K .......... .......... .......... .......... .......... 1% 49.3M 2s -2024-03-16T16:52:07Z #15 1.226 2050K .......... .......... .......... .......... .......... 1% 55.1M 2s -2024-03-16T16:52:07Z #15 1.227 2100K .......... .......... .......... .......... .......... 1% 46.8M 2s -2024-03-16T16:52:07Z #15 1.228 2150K .......... .......... .......... .......... .......... 1% 69.6M 2s -2024-03-16T16:52:07Z #15 1.234 2200K .......... .......... .......... .......... .......... 1% 145M 2s -2024-03-16T16:52:07Z #15 1.234 2250K .......... .......... .......... .......... .......... 1% 146M 2s -2024-03-16T16:52:07Z #15 1.234 2300K .......... .......... .......... .......... .......... 1% 103M 2s -2024-03-16T16:52:07Z #15 1.234 2350K .......... .......... .......... .......... .......... 1% 107M 2s -2024-03-16T16:52:07Z #15 1.234 2400K .......... .......... .......... .......... .......... 1% 118M 2s -2024-03-16T16:52:07Z #15 1.234 2450K .......... .......... .......... .......... .......... 1% 124M 2s -2024-03-16T16:52:07Z #15 1.234 2500K .......... .......... .......... .......... .......... 2% 146M 2s -2024-03-16T16:52:07Z #15 1.234 2550K .......... .......... .......... .......... .......... 2% 108M 2s -2024-03-16T16:52:07Z #15 1.234 2600K .......... .......... .......... .......... .......... 2% 152M 2s -2024-03-16T16:52:07Z #15 1.234 2650K .......... .......... .......... .......... .......... 2% 120M 2s -2024-03-16T16:52:07Z #15 1.234 2700K .......... .......... .......... .......... .......... 2% 113M 2s -2024-03-16T16:52:07Z #15 1.234 2750K .......... .......... .......... .......... .......... 2% 76.1M 2s -2024-03-16T16:52:07Z #15 1.234 2800K .......... .......... .......... .......... .......... 2% 51.8M 2s -2024-03-16T16:52:07Z #15 1.235 2850K .......... .......... .......... .......... .......... 2% 52.8M 2s -2024-03-16T16:52:07Z #15 1.236 2900K .......... .......... .......... .......... .......... 2% 45.5M 2s -2024-03-16T16:52:07Z #15 1.237 2950K .......... .......... .......... .......... .......... 2% 135M 2s -2024-03-16T16:52:07Z #15 1.237 3000K .......... .......... .......... .......... .......... 2% 58.0M 2s -2024-03-16T16:52:07Z #15 1.238 3050K .......... .......... .......... .......... .......... 2% 116M 2s -2024-03-16T16:52:07Z #15 1.240 3100K .......... .......... .......... .......... .......... 2% 147M 2s -2024-03-16T16:52:07Z #15 1.240 3150K .......... .......... .......... .......... .......... 2% 98.2M 2s -2024-03-16T16:52:07Z #15 1.240 3200K .......... .......... .......... .......... .......... 2% 129M 2s -2024-03-16T16:52:07Z #15 1.240 3250K .......... .......... .......... .......... .......... 2% 116M 2s -2024-03-16T16:52:07Z #15 1.240 3300K .......... .......... .......... .......... .......... 2% 57.3M 2s -2024-03-16T16:52:07Z #15 1.242 3350K .......... .......... .......... .......... .......... 2% 30.2M 2s -2024-03-16T16:52:07Z #15 1.243 3400K .......... .......... .......... .......... .......... 2% 52.6M 2s -2024-03-16T16:52:07Z #15 1.244 3450K .......... .......... .......... .......... .......... 2% 57.0M 2s -2024-03-16T16:52:07Z #15 1.244 3500K .......... .......... .......... .......... .......... 2% 69.4M 2s -2024-03-16T16:52:07Z #15 1.245 3550K .......... .......... .......... .......... .......... 2% 54.5M 2s -2024-03-16T16:52:07Z #15 1.246 3600K .......... .......... .......... .......... .......... 2% 78.7M 2s -2024-03-16T16:52:07Z #15 1.247 3650K .......... .......... .......... .......... .......... 2% 60.1M 2s -2024-03-16T16:52:07Z #15 1.248 3700K .......... .......... .......... .......... .......... 2% 63.7M 2s -2024-03-16T16:52:07Z #15 1.248 3750K .......... .......... .......... .......... .......... 2% 58.2M 2s -2024-03-16T16:52:07Z #15 1.249 3800K .......... .......... .......... .......... .......... 3% 81.4M 2s -2024-03-16T16:52:07Z #15 1.250 3850K .......... .......... .......... .......... .......... 3% 90.6M 2s -2024-03-16T16:52:07Z #15 1.250 3900K .......... .......... .......... .......... .......... 3% 45.6M 2s -2024-03-16T16:52:07Z #15 1.251 3950K .......... .......... .......... .......... .......... 3% 43.6M 2s -2024-03-16T16:52:07Z #15 1.252 4000K .......... .......... .......... .......... .......... 3% 56.1M 2s -2024-03-16T16:52:07Z #15 1.253 4050K .......... .......... .......... .......... .......... 3% 59.6M 2s -2024-03-16T16:52:07Z #15 1.254 4100K .......... .......... .......... .......... .......... 3% 148M 2s -2024-03-16T16:52:07Z #15 1.254 4150K .......... .......... .......... .......... .......... 3% 32.6M 2s -2024-03-16T16:52:07Z #15 1.256 4200K .......... .......... .......... .......... .......... 3% 43.6M 2s -2024-03-16T16:52:07Z #15 1.257 4250K .......... .......... .......... .......... .......... 3% 56.0M 2s -2024-03-16T16:52:07Z #15 1.258 4300K .......... .......... .......... .......... .......... 3% 53.7M 2s -2024-03-16T16:52:07Z #15 1.260 4350K .......... .......... .......... .......... .......... 3% 116M 2s -2024-03-16T16:52:07Z #15 1.260 4400K .......... .......... .......... .......... .......... 3% 116M 2s -2024-03-16T16:52:07Z #15 1.260 4450K .......... .......... .......... .......... .......... 3% 124M 2s -2024-03-16T16:52:07Z #15 1.260 4500K .......... .......... .......... .......... .......... 3% 46.2M 2s -2024-03-16T16:52:07Z #15 1.261 4550K .......... .......... .......... .......... .......... 3% 82.2M 2s -2024-03-16T16:52:07Z #15 1.262 4600K .......... .......... .......... .......... .......... 3% 57.5M 2s -2024-03-16T16:52:07Z #15 1.263 4650K .......... .......... .......... .......... .......... 3% 73.8M 2s -2024-03-16T16:52:07Z #15 1.263 4700K .......... .......... .......... .......... .......... 3% 62.6M 2s -2024-03-16T16:52:07Z #15 1.264 4750K .......... .......... .......... .......... .......... 3% 52.3M 2s -2024-03-16T16:52:07Z #15 1.265 4800K .......... .......... .......... .......... .......... 3% 86.2M 2s -2024-03-16T16:52:07Z #15 1.266 4850K .......... .......... .......... .......... .......... 3% 30.8M 2s -2024-03-16T16:52:07Z #15 1.267 4900K .......... .......... .......... .......... .......... 3% 51.7M 2s -2024-03-16T16:52:07Z #15 1.268 4950K .......... .......... .......... .......... .......... 3% 82.8M 2s -2024-03-16T16:52:07Z #15 1.269 5000K .......... .......... .......... .......... .......... 3% 58.8M 2s -2024-03-16T16:52:07Z #15 1.270 5050K .......... .......... .......... .......... .......... 4% 10.7M 2s -2024-03-16T16:52:07Z #15 1.274 5100K .......... .......... .......... .......... .......... 4% 30.0M 2s -2024-03-16T16:52:07Z #15 1.276 5150K .......... .......... .......... .......... .......... 4% 26.8M 2s -2024-03-16T16:52:07Z #15 1.278 5200K .......... .......... .......... .......... .......... 4% 142M 2s -2024-03-16T16:52:07Z #15 1.278 5250K .......... .......... .......... .......... .......... 4% 156M 2s -2024-03-16T16:52:07Z #15 1.279 5300K .......... .......... .......... .......... .......... 4% 116M 2s -2024-03-16T16:52:07Z #15 1.279 5350K .......... .......... .......... .......... .......... 4% 81.5M 2s -2024-03-16T16:52:07Z #15 1.280 5400K .......... .......... .......... .......... .......... 4% 139M 2s -2024-03-16T16:52:07Z #15 1.280 5450K .......... .......... .......... .......... .......... 4% 60.6M 2s -2024-03-16T16:52:07Z #15 1.280 5500K .......... .......... .......... .......... .......... 4% 20.3M 2s -2024-03-16T16:52:07Z #15 1.283 5550K .......... .......... .......... .......... .......... 4% 36.2M 2s -2024-03-16T16:52:07Z #15 1.284 5600K .......... .......... .......... .......... .......... 4% 99.6M 2s -2024-03-16T16:52:07Z #15 1.285 5650K .......... .......... .......... .......... .......... 4% 125M 2s -2024-03-16T16:52:07Z #15 1.286 5700K .......... .......... .......... .......... .......... 4% 104M 2s -2024-03-16T16:52:07Z #15 1.286 5750K .......... .......... .......... .......... .......... 4% 61.5M 2s -2024-03-16T16:52:07Z #15 1.286 5800K .......... .......... .......... .......... .......... 4% 73.0M 2s -2024-03-16T16:52:07Z #15 1.287 5850K .......... .......... .......... .......... .......... 4% 39.9M 2s -2024-03-16T16:52:07Z #15 1.288 5900K .......... .......... .......... .......... .......... 4% 48.3M 2s -2024-03-16T16:52:07Z #15 1.291 5950K .......... .......... .......... .......... .......... 4% 111M 2s -2024-03-16T16:52:07Z #15 1.291 6000K .......... .......... .......... .......... .......... 4% 119M 2s -2024-03-16T16:52:07Z #15 1.291 6050K .......... .......... .......... .......... .......... 4% 117M 2s -2024-03-16T16:52:07Z #15 1.291 6100K .......... .......... .......... .......... .......... 4% 126M 2s -2024-03-16T16:52:07Z #15 1.291 6150K .......... .......... .......... .......... .......... 4% 140M 2s -2024-03-16T16:52:07Z #15 1.291 6200K .......... .......... .......... .......... .......... 4% 38.8M 2s -2024-03-16T16:52:07Z #15 1.292 6250K .......... .......... .......... .......... .......... 4% 63.3M 2s -2024-03-16T16:52:07Z #15 1.293 6300K .......... .......... .......... .......... .......... 5% 55.9M 2s -2024-03-16T16:52:07Z #15 1.294 6350K .......... .......... .......... .......... .......... 5% 55.0M 2s -2024-03-16T16:52:07Z #15 1.295 6400K .......... .......... .......... .......... .......... 5% 118M 2s -2024-03-16T16:52:07Z #15 1.296 6450K .......... .......... .......... .......... .......... 5% 36.5M 2s -2024-03-16T16:52:07Z #15 1.297 6500K .......... .......... .......... .......... .......... 5% 31.1M 2s -2024-03-16T16:52:07Z #15 1.298 6550K .......... .......... .......... .......... .......... 5% 93.2M 2s -2024-03-16T16:52:07Z #15 1.299 6600K .......... .......... .......... .......... .......... 5% 103M 2s -2024-03-16T16:52:07Z #15 1.300 6650K .......... .......... .......... .......... .......... 5% 110M 2s -2024-03-16T16:52:07Z #15 1.300 6700K .......... .......... .......... .......... .......... 5% 78.3M 2s -2024-03-16T16:52:07Z #15 1.300 6750K .......... .......... .......... .......... .......... 5% 64.9M 2s -2024-03-16T16:52:07Z #15 1.302 6800K .......... .......... .......... .......... .......... 5% 89.0M 2s -2024-03-16T16:52:07Z #15 1.302 6850K .......... .......... .......... .......... .......... 5% 83.2M 2s -2024-03-16T16:52:07Z #15 1.303 6900K .......... .......... .......... .......... .......... 5% 107M 2s -2024-03-16T16:52:07Z #15 1.303 6950K .......... .......... .......... .......... .......... 5% 105M 2s -2024-03-16T16:52:07Z #15 1.303 7000K .......... .......... .......... .......... .......... 5% 66.2M 2s -2024-03-16T16:52:07Z #15 1.304 7050K .......... .......... .......... .......... .......... 5% 167M 2s -2024-03-16T16:52:07Z #15 1.304 7100K .......... .......... .......... .......... .......... 5% 53.0M 2s -2024-03-16T16:52:07Z #15 1.305 7150K .......... .......... .......... .......... .......... 5% 55.8M 2s -2024-03-16T16:52:07Z #15 1.307 7200K .......... .......... .......... .......... .......... 5% 40.8M 2s -2024-03-16T16:52:07Z #15 1.307 7250K .......... .......... .......... .......... .......... 5% 60.4M 2s -2024-03-16T16:52:07Z #15 1.309 7300K .......... .......... .......... .......... .......... 5% 116M 2s -2024-03-16T16:52:07Z #15 1.309 7350K .......... .......... .......... .......... .......... 5% 103M 2s -2024-03-16T16:52:07Z #15 1.309 7400K .......... .......... .......... .......... .......... 5% 30.5M 2s -2024-03-16T16:52:07Z #15 1.310 7450K .......... .......... .......... .......... .......... 5% 23.9M 2s -2024-03-16T16:52:07Z #15 1.312 7500K .......... .......... .......... .......... .......... 5% 38.0M 2s -2024-03-16T16:52:07Z #15 1.314 7550K .......... .......... .......... .......... .......... 5% 48.5M 2s -2024-03-16T16:52:07Z #15 1.315 7600K .......... .......... .......... .......... .......... 6% 45.7M 2s -2024-03-16T16:52:07Z #15 1.317 7650K .......... .......... .......... .......... .......... 6% 49.3M 2s -2024-03-16T16:52:07Z #15 1.317 7700K .......... .......... .......... .......... .......... 6% 25.4M 2s -2024-03-16T16:52:07Z #15 1.319 7750K .......... .......... .......... .......... .......... 6% 28.9M 2s -2024-03-16T16:52:07Z #15 1.320 7800K .......... .......... .......... .......... .......... 6% 45.5M 2s -2024-03-16T16:52:07Z #15 1.324 7850K .......... .......... .......... .......... .......... 6% 117M 2s -2024-03-16T16:52:07Z #15 1.324 7900K .......... .......... .......... .......... .......... 6% 113M 2s -2024-03-16T16:52:07Z #15 1.324 7950K .......... .......... .......... .......... .......... 6% 101M 2s -2024-03-16T16:52:07Z #15 1.324 8000K .......... .......... .......... .......... .......... 6% 118M 2s -2024-03-16T16:52:07Z #15 1.324 8050K .......... .......... .......... .......... .......... 6% 121M 2s -2024-03-16T16:52:07Z #15 1.324 8100K .......... .......... .......... .......... .......... 6% 14.8M 2s -2024-03-16T16:52:07Z #15 1.327 8150K .......... .......... .......... .......... .......... 6% 38.7M 2s -2024-03-16T16:52:07Z #15 1.328 8200K .......... .......... .......... .......... .......... 6% 51.8M 2s -2024-03-16T16:52:07Z #15 1.329 8250K .......... .......... .......... .......... .......... 6% 41.9M 2s -2024-03-16T16:52:07Z #15 1.330 8300K .......... .......... .......... .......... .......... 6% 41.2M 2s -2024-03-16T16:52:07Z #15 1.332 8350K .......... .......... .......... .......... .......... 6% 31.2M 2s -2024-03-16T16:52:07Z #15 1.334 8400K .......... .......... .......... .......... .......... 6% 34.4M 2s -2024-03-16T16:52:07Z #15 1.334 8450K .......... .......... .......... .......... .......... 6% 52.6M 2s -2024-03-16T16:52:07Z #15 1.336 8500K .......... .......... .......... .......... .......... 6% 45.9M 2s -2024-03-16T16:52:07Z #15 1.337 8550K .......... .......... .......... .......... .......... 6% 32.1M 2s -2024-03-16T16:52:07Z #15 1.338 8600K .......... .......... .......... .......... .......... 6% 39.7M 2s -2024-03-16T16:52:07Z #15 1.339 8650K .......... .......... .......... .......... .......... 6% 42.5M 2s -2024-03-16T16:52:07Z #15 1.340 8700K .......... .......... .......... .......... .......... 6% 54.5M 2s -2024-03-16T16:52:07Z #15 1.341 8750K .......... .......... .......... .......... .......... 6% 47.3M 2s -2024-03-16T16:52:07Z #15 1.342 8800K .......... .......... .......... .......... .......... 6% 59.2M 2s -2024-03-16T16:52:07Z #15 1.343 8850K .......... .......... .......... .......... .......... 7% 102M 2s -2024-03-16T16:52:07Z #15 1.346 8900K .......... .......... .......... .......... .......... 7% 35.7M 2s -2024-03-16T16:52:07Z #15 1.346 8950K .......... .......... .......... .......... .......... 7% 54.5M 2s -2024-03-16T16:52:07Z #15 1.346 9000K .......... .......... .......... .......... .......... 7% 32.9M 2s -2024-03-16T16:52:07Z #15 1.348 9050K .......... .......... .......... .......... .......... 7% 36.3M 2s -2024-03-16T16:52:07Z #15 1.349 9100K .......... .......... .......... .......... .......... 7% 63.5M 2s -2024-03-16T16:52:07Z #15 1.349 9150K .......... .......... .......... .......... .......... 7% 40.0M 2s -2024-03-16T16:52:07Z #15 1.351 9200K .......... .......... .......... .......... .......... 7% 154M 2s -2024-03-16T16:52:07Z #15 1.351 9250K .......... .......... .......... .......... .......... 7% 72.9M 2s -2024-03-16T16:52:07Z #15 1.352 9300K .......... .......... .......... .......... .......... 7% 49.5M 2s -2024-03-16T16:52:07Z #15 1.353 9350K .......... .......... .......... .......... .......... 7% 55.1M 2s -2024-03-16T16:52:07Z #15 1.358 9400K .......... .......... .......... .......... .......... 7% 97.4M 2s -2024-03-16T16:52:07Z #15 1.358 9450K .......... .......... .......... .......... .......... 7% 82.9M 2s -2024-03-16T16:52:07Z #15 1.358 9500K .......... .......... .......... .......... .......... 7% 148M 2s -2024-03-16T16:52:07Z #15 1.358 9550K .......... .......... .......... .......... .......... 7% 122M 2s -2024-03-16T16:52:07Z #15 1.358 9600K .......... .......... .......... .......... .......... 7% 154M 2s -2024-03-16T16:52:07Z #15 1.358 9650K .......... .......... .......... .......... .......... 7% 167M 2s -2024-03-16T16:52:07Z #15 1.358 9700K .......... .......... .......... .......... .......... 7% 143M 2s -2024-03-16T16:52:07Z #15 1.358 9750K .......... .......... .......... .......... .......... 7% 132M 2s -2024-03-16T16:52:07Z #15 1.358 9800K .......... .......... .......... .......... .......... 7% 177M 2s -2024-03-16T16:52:07Z #15 1.358 9850K .......... .......... .......... .......... .......... 7% 159M 2s -2024-03-16T16:52:07Z #15 1.358 9900K .......... .......... .......... .......... .......... 7% 145M 2s -2024-03-16T16:52:07Z #15 1.358 9950K .......... .......... .......... .......... .......... 7% 122M 2s -2024-03-16T16:52:07Z #15 1.358 10000K .......... .......... .......... .......... .......... 7% 159M 2s -2024-03-16T16:52:07Z #15 1.358 10050K .......... .......... .......... .......... .......... 7% 93.8M 2s -2024-03-16T16:52:07Z #15 1.359 10100K .......... .......... .......... .......... .......... 8% 64.1M 2s -2024-03-16T16:52:07Z #15 1.360 10150K .......... .......... .......... .......... .......... 8% 56.6M 2s -2024-03-16T16:52:07Z #15 1.360 10200K .......... .......... .......... .......... .......... 8% 51.2M 2s -2024-03-16T16:52:07Z #15 1.362 10250K .......... .......... .......... .......... .......... 8% 38.0M 2s -2024-03-16T16:52:07Z #15 1.363 10300K .......... .......... .......... .......... .......... 8% 47.9M 2s -2024-03-16T16:52:07Z #15 1.364 10350K .......... .......... .......... .......... .......... 8% 41.4M 2s -2024-03-16T16:52:07Z #15 1.365 10400K .......... .......... .......... .......... .......... 8% 47.6M 2s -2024-03-16T16:52:07Z #15 1.366 10450K .......... .......... .......... .......... .......... 8% 42.6M 2s -2024-03-16T16:52:07Z #15 1.370 10500K .......... .......... .......... .......... .......... 8% 48.0M 2s -2024-03-16T16:52:07Z #15 1.370 10550K .......... .......... .......... .......... .......... 8% 46.6M 2s -2024-03-16T16:52:07Z #15 1.370 10600K .......... .......... .......... .......... .......... 8% 58.0M 2s -2024-03-16T16:52:07Z #15 1.370 10650K .......... .......... .......... .......... .......... 8% 31.8M 2s -2024-03-16T16:52:07Z #15 1.372 10700K .......... .......... .......... .......... .......... 8% 22.9M 2s -2024-03-16T16:52:07Z #15 1.374 10750K .......... .......... .......... .......... .......... 8% 33.2M 2s -2024-03-16T16:52:07Z #15 1.375 10800K .......... .......... .......... .......... .......... 8% 21.4M 2s -2024-03-16T16:52:07Z #15 1.382 10850K .......... .......... .......... .......... .......... 8% 112M 2s -2024-03-16T16:52:07Z #15 1.382 10900K .......... .......... .......... .......... .......... 8% 111M 2s -2024-03-16T16:52:07Z #15 1.382 10950K .......... .......... .......... .......... .......... 8% 110M 2s -2024-03-16T16:52:07Z #15 1.382 11000K .......... .......... .......... .......... .......... 8% 110M 2s -2024-03-16T16:52:07Z #15 1.382 11050K .......... .......... .......... .......... .......... 8% 137M 2s -2024-03-16T16:52:07Z #15 1.382 11100K .......... .......... .......... .......... .......... 8% 135M 2s -2024-03-16T16:52:07Z #15 1.382 11150K .......... .......... .......... .......... .......... 8% 102M 2s -2024-03-16T16:52:07Z #15 1.382 11200K .......... .......... .......... .......... .......... 8% 125M 2s -2024-03-16T16:52:07Z #15 1.382 11250K .......... .......... .......... .......... .......... 8% 102M 2s -2024-03-16T16:52:07Z #15 1.382 11300K .......... .......... .......... .......... .......... 8% 26.6M 2s -2024-03-16T16:52:07Z #15 1.383 11350K .......... .......... .......... .......... .......... 8% 26.8M 2s -2024-03-16T16:52:07Z #15 1.385 11400K .......... .......... .......... .......... .......... 9% 26.6M 2s -2024-03-16T16:52:07Z #15 1.390 11450K .......... .......... .......... .......... .......... 9% 120M 2s -2024-03-16T16:52:07Z #15 1.390 11500K .......... .......... .......... .......... .......... 9% 136M 2s -2024-03-16T16:52:07Z #15 1.390 11550K .......... .......... .......... .......... .......... 9% 106M 2s -2024-03-16T16:52:07Z #15 1.390 11600K .......... .......... .......... .......... .......... 9% 126M 2s -2024-03-16T16:52:07Z #15 1.390 11650K .......... .......... .......... .......... .......... 9% 139M 2s -2024-03-16T16:52:07Z #15 1.390 11700K .......... .......... .......... .......... .......... 9% 118M 2s -2024-03-16T16:52:07Z #15 1.390 11750K .......... .......... .......... .......... .......... 9% 98.4M 2s -2024-03-16T16:52:07Z #15 1.390 11800K .......... .......... .......... .......... .......... 9% 23.1M 2s -2024-03-16T16:52:07Z #15 1.392 11850K .......... .......... .......... .......... .......... 9% 30.8M 2s -2024-03-16T16:52:07Z #15 1.393 11900K .......... .......... .......... .......... .......... 9% 39.0M 2s -2024-03-16T16:52:07Z #15 1.395 11950K .......... .......... .......... .......... .......... 9% 35.0M 2s -2024-03-16T16:52:07Z #15 1.397 12000K .......... .......... .......... .......... .......... 9% 43.9M 2s -2024-03-16T16:52:07Z #15 1.397 12050K .......... .......... .......... .......... .......... 9% 41.4M 2s -2024-03-16T16:52:07Z #15 1.400 12100K .......... .......... .......... .......... .......... 9% 53.6M 2s -2024-03-16T16:52:07Z #15 1.400 12150K .......... .......... .......... .......... .......... 9% 32.2M 2s -2024-03-16T16:52:07Z #15 1.401 12200K .......... .......... .......... .......... .......... 9% 25.0M 2s -2024-03-16T16:52:07Z #15 1.404 12250K .......... .......... .......... .......... .......... 9% 37.5M 2s -2024-03-16T16:52:07Z #15 1.404 12300K .......... .......... .......... .......... .......... 9% 34.9M 2s -2024-03-16T16:52:07Z #15 1.406 12350K .......... .......... .......... .......... .......... 9% 33.6M 2s -2024-03-16T16:52:07Z #15 1.410 12400K .......... .......... .......... .......... .......... 9% 44.6M 2s -2024-03-16T16:52:07Z #15 1.410 12450K .......... .......... .......... .......... .......... 9% 50.8M 2s -2024-03-16T16:52:07Z #15 1.410 12500K .......... .......... .......... .......... .......... 9% 46.5M 2s -2024-03-16T16:52:07Z #15 1.410 12550K .......... .......... .......... .......... .......... 9% 55.3M 2s -2024-03-16T16:52:07Z #15 1.411 12600K .......... .......... .......... .......... .......... 9% 29.1M 2s -2024-03-16T16:52:07Z #15 1.413 12650K .......... .......... .......... .......... .......... 10% 38.5M 2s -2024-03-16T16:52:07Z #15 1.414 12700K .......... .......... .......... .......... .......... 10% 23.6M 2s -2024-03-16T16:52:07Z #15 1.416 12750K .......... .......... .......... .......... .......... 10% 47.1M 2s -2024-03-16T16:52:07Z #15 1.422 12800K .......... .......... .......... .......... .......... 10% 156M 2s -2024-03-16T16:52:07Z #15 1.422 12850K .......... .......... .......... .......... .......... 10% 154M 2s -2024-03-16T16:52:07Z #15 1.422 12900K .......... .......... .......... .......... .......... 10% 120M 2s -2024-03-16T16:52:07Z #15 1.422 12950K .......... .......... .......... .......... .......... 10% 106M 2s -2024-03-16T16:52:07Z #15 1.422 13000K .......... .......... .......... .......... .......... 10% 142M 2s -2024-03-16T16:52:07Z #15 1.422 13050K .......... .......... .......... .......... .......... 10% 112M 2s -2024-03-16T16:52:07Z #15 1.422 13100K .......... .......... .......... .......... .......... 10% 100M 2s -2024-03-16T16:52:07Z #15 1.422 13150K .......... .......... .......... .......... .......... 10% 112M 2s -2024-03-16T16:52:07Z #15 1.422 13200K .......... .......... .......... .......... .......... 10% 124M 2s -2024-03-16T16:52:07Z #15 1.422 13250K .......... .......... .......... .......... .......... 10% 128M 2s -2024-03-16T16:52:07Z #15 1.422 13300K .......... .......... .......... .......... .......... 10% 120M 2s -2024-03-16T16:52:07Z #15 1.422 13350K .......... .......... .......... .......... .......... 10% 109M 2s -2024-03-16T16:52:07Z #15 1.422 13400K .......... .......... .......... .......... .......... 10% 29.1M 2s -2024-03-16T16:52:07Z #15 1.424 13450K .......... .......... .......... .......... .......... 10% 99.1M 2s -2024-03-16T16:52:07Z #15 1.424 13500K .......... .......... .......... .......... .......... 10% 48.0M 2s -2024-03-16T16:52:07Z #15 1.425 13550K .......... .......... .......... .......... .......... 10% 50.3M 2s -2024-03-16T16:52:07Z #15 1.426 13600K .......... .......... .......... .......... .......... 10% 35.7M 2s -2024-03-16T16:52:07Z #15 1.427 13650K .......... .......... .......... .......... .......... 10% 26.9M 2s -2024-03-16T16:52:07Z #15 1.430 13700K .......... .......... .......... .......... .......... 10% 58.6M 2s -2024-03-16T16:52:07Z #15 1.430 13750K .......... .......... .......... .......... .......... 10% 41.3M 2s -2024-03-16T16:52:07Z #15 1.434 13800K .......... .......... .......... .......... .......... 10% 45.4M 2s -2024-03-16T16:52:07Z #15 1.434 13850K .......... .......... .......... .......... .......... 10% 57.0M 2s -2024-03-16T16:52:07Z #15 1.434 13900K .......... .......... .......... .......... .......... 11% 45.5M 2s -2024-03-16T16:52:07Z #15 1.434 13950K .......... .......... .......... .......... .......... 11% 39.2M 2s -2024-03-16T16:52:07Z #15 1.435 14000K .......... .......... .......... .......... .......... 11% 35.8M 2s -2024-03-16T16:52:07Z #15 1.437 14050K .......... .......... .......... .......... .......... 11% 28.1M 2s -2024-03-16T16:52:07Z #15 1.439 14100K .......... .......... .......... .......... .......... 11% 40.7M 2s -2024-03-16T16:52:07Z #15 1.440 14150K .......... .......... .......... .......... .......... 11% 33.2M 2s -2024-03-16T16:52:07Z #15 1.442 14200K .......... .......... .......... .......... .......... 11% 44.4M 2s -2024-03-16T16:52:07Z #15 1.442 14250K .......... .......... .......... .......... .......... 11% 20.3M 2s -2024-03-16T16:52:07Z #15 1.445 14300K .......... .......... .......... .......... .......... 11% 41.1M 2s -2024-03-16T16:52:07Z #15 1.450 14350K .......... .......... .......... .......... .......... 11% 126M 2s -2024-03-16T16:52:07Z #15 1.450 14400K .......... .......... .......... .......... .......... 11% 154M 2s -2024-03-16T16:52:07Z #15 1.450 14450K .......... .......... .......... .......... .......... 11% 131M 2s -2024-03-16T16:52:07Z #15 1.450 14500K .......... .......... .......... .......... .......... 11% 149M 2s -2024-03-16T16:52:07Z #15 1.450 14550K .......... .......... .......... .......... .......... 11% 134M 2s -2024-03-16T16:52:07Z #15 1.450 14600K .......... .......... .......... .......... .......... 11% 134M 2s -2024-03-16T16:52:07Z #15 1.450 14650K .......... .......... .......... .......... .......... 11% 154M 2s -2024-03-16T16:52:07Z #15 1.450 14700K .......... .......... .......... .......... .......... 11% 167M 2s -2024-03-16T16:52:07Z #15 1.450 14750K .......... .......... .......... .......... .......... 11% 111M 2s -2024-03-16T16:52:07Z #15 1.450 14800K .......... .......... .......... .......... .......... 11% 155M 2s -2024-03-16T16:52:07Z #15 1.450 14850K .......... .......... .......... .......... .......... 11% 144M 2s -2024-03-16T16:52:07Z #15 1.450 14900K .......... .......... .......... .......... .......... 11% 32.2M 2s -2024-03-16T16:52:07Z #15 1.452 14950K .......... .......... .......... .......... .......... 11% 68.7M 2s -2024-03-16T16:52:07Z #15 1.452 15000K .......... .......... .......... .......... .......... 11% 33.8M 2s -2024-03-16T16:52:07Z #15 1.453 15050K .......... .......... .......... .......... .......... 11% 60.9M 2s -2024-03-16T16:52:07Z #15 1.454 15100K .......... .......... .......... .......... .......... 11% 47.8M 2s -2024-03-16T16:52:07Z #15 1.455 15150K .......... .......... .......... .......... .......... 11% 72.0M 2s -2024-03-16T16:52:07Z #15 1.456 15200K .......... .......... .......... .......... .......... 12% 70.2M 2s -2024-03-16T16:52:07Z #15 1.457 15250K .......... .......... .......... .......... .......... 12% 65.9M 2s -2024-03-16T16:52:07Z #15 1.458 15300K .......... .......... .......... .......... .......... 12% 110M 2s -2024-03-16T16:52:07Z #15 1.458 15350K .......... .......... .......... .......... .......... 12% 57.0M 2s -2024-03-16T16:52:07Z #15 1.459 15400K .......... .......... .......... .......... .......... 12% 97.7M 2s -2024-03-16T16:52:07Z #15 1.459 15450K .......... .......... .......... .......... .......... 12% 92.9M 2s -2024-03-16T16:52:07Z #15 1.460 15500K .......... .......... .......... .......... .......... 12% 111M 2s -2024-03-16T16:52:07Z #15 1.460 15550K .......... .......... .......... .......... .......... 12% 65.5M 2s -2024-03-16T16:52:07Z #15 1.466 15600K .......... .......... .......... .......... .......... 12% 121M 2s -2024-03-16T16:52:07Z #15 1.466 15650K .......... .......... .......... .......... .......... 12% 111M 2s -2024-03-16T16:52:07Z #15 1.466 15700K .......... .......... .......... .......... .......... 12% 102M 2s -2024-03-16T16:52:07Z #15 1.466 15750K .......... .......... .......... .......... .......... 12% 130M 2s -2024-03-16T16:52:07Z #15 1.466 15800K .......... .......... .......... .......... .......... 12% 116M 2s -2024-03-16T16:52:07Z #15 1.466 15850K .......... .......... .......... .......... .......... 12% 113M 2s -2024-03-16T16:52:07Z #15 1.466 15900K .......... .......... .......... .......... .......... 12% 129M 2s -2024-03-16T16:52:07Z #15 1.466 15950K .......... .......... .......... .......... .......... 12% 98.5M 2s -2024-03-16T16:52:07Z #15 1.466 16000K .......... .......... .......... .......... .......... 12% 112M 2s -2024-03-16T16:52:07Z #15 1.466 16050K .......... .......... .......... .......... .......... 12% 132M 2s -2024-03-16T16:52:07Z #15 1.466 16100K .......... .......... .......... .......... .......... 12% 105M 2s -2024-03-16T16:52:07Z #15 1.466 16150K .......... .......... .......... .......... .......... 12% 95.4M 2s -2024-03-16T16:52:07Z #15 1.466 16200K .......... .......... .......... .......... .......... 12% 38.4M 2s -2024-03-16T16:52:07Z #15 1.467 16250K .......... .......... .......... .......... .......... 12% 32.2M 2s -2024-03-16T16:52:07Z #15 1.469 16300K .......... .......... .......... .......... .......... 12% 39.1M 2s -2024-03-16T16:52:07Z #15 1.474 16350K .......... .......... .......... .......... .......... 12% 34.9M 2s -2024-03-16T16:52:07Z #15 1.474 16400K .......... .......... .......... .......... .......... 12% 39.9M 2s -2024-03-16T16:52:07Z #15 1.474 16450K .......... .......... .......... .......... .......... 13% 43.7M 2s -2024-03-16T16:52:07Z #15 1.474 16500K .......... .......... .......... .......... .......... 13% 127M 2s -2024-03-16T16:52:07Z #15 1.474 16550K .......... .......... .......... .......... .......... 13% 40.6M 2s -2024-03-16T16:52:07Z #15 1.475 16600K .......... .......... .......... .......... .......... 13% 47.0M 2s -2024-03-16T16:52:07Z #15 1.477 16650K .......... .......... .......... .......... .......... 13% 54.6M 2s -2024-03-16T16:52:07Z #15 1.477 16700K .......... .......... .......... .......... .......... 13% 47.5M 2s -2024-03-16T16:52:07Z #15 1.478 16750K .......... .......... .......... .......... .......... 13% 39.1M 2s -2024-03-16T16:52:07Z #15 1.482 16800K .......... .......... .......... .......... .......... 13% 53.4M 2s -2024-03-16T16:52:07Z #15 1.482 16850K .......... .......... .......... .......... .......... 13% 51.3M 2s -2024-03-16T16:52:07Z #15 1.482 16900K .......... .......... .......... .......... .......... 13% 40.5M 2s -2024-03-16T16:52:07Z #15 1.483 16950K .......... .......... .......... .......... .......... 13% 35.1M 2s -2024-03-16T16:52:07Z #15 1.484 17000K .......... .......... .......... .......... .......... 13% 40.7M 2s -2024-03-16T16:52:07Z #15 1.485 17050K .......... .......... .......... .......... .......... 13% 44.2M 2s -2024-03-16T16:52:07Z #15 1.486 17100K .......... .......... .......... .......... .......... 13% 58.8M 2s -2024-03-16T16:52:07Z #15 1.487 17150K .......... .......... .......... .......... .......... 13% 46.5M 2s -2024-03-16T16:52:07Z #15 1.488 17200K .......... .......... .......... .......... .......... 13% 46.5M 2s -2024-03-16T16:52:07Z #15 1.489 17250K .......... .......... .......... .......... .......... 13% 63.7M 2s -2024-03-16T16:52:07Z #15 1.490 17300K .......... .......... .......... .......... .......... 13% 45.8M 2s -2024-03-16T16:52:07Z #15 1.491 17350K .......... .......... .......... .......... .......... 13% 50.1M 2s -2024-03-16T16:52:07Z #15 1.492 17400K .......... .......... .......... .......... .......... 13% 72.0M 2s -2024-03-16T16:52:07Z #15 1.493 17450K .......... .......... .......... .......... .......... 13% 97.1M 2s -2024-03-16T16:52:07Z #15 1.493 17500K .......... .......... .......... .......... .......... 13% 55.9M 2s -2024-03-16T16:52:07Z #15 1.494 17550K .......... .......... .......... .......... .......... 13% 57.0M 2s -2024-03-16T16:52:07Z #15 1.495 17600K .......... .......... .......... .......... .......... 13% 93.1M 2s -2024-03-16T16:52:07Z #15 1.496 17650K .......... .......... .......... .......... .......... 13% 131M 2s -2024-03-16T16:52:07Z #15 1.496 17700K .......... .......... .......... .......... .......... 14% 27.3M 2s -2024-03-16T16:52:07Z #15 1.502 17750K .......... .......... .......... .......... .......... 14% 80.8M 2s -2024-03-16T16:52:07Z #15 1.502 17800K .......... .......... .......... .......... .......... 14% 112M 2s -2024-03-16T16:52:07Z #15 1.502 17850K .......... .......... .......... .......... .......... 14% 115M 2s -2024-03-16T16:52:07Z #15 1.502 17900K .......... .......... .......... .......... .......... 14% 119M 2s -2024-03-16T16:52:07Z #15 1.502 17950K .......... .......... .......... .......... .......... 14% 101M 2s -2024-03-16T16:52:07Z #15 1.502 18000K .......... .......... .......... .......... .......... 14% 116M 2s -2024-03-16T16:52:07Z #15 1.502 18050K .......... .......... .......... .......... .......... 14% 132M 2s -2024-03-16T16:52:07Z #15 1.502 18100K .......... .......... .......... .......... .......... 14% 113M 2s -2024-03-16T16:52:07Z #15 1.502 18150K .......... .......... .......... .......... .......... 14% 111M 2s -2024-03-16T16:52:07Z #15 1.502 18200K .......... .......... .......... .......... .......... 14% 40.7M 2s -2024-03-16T16:52:07Z #15 1.503 18250K .......... .......... .......... .......... .......... 14% 29.6M 2s -2024-03-16T16:52:07Z #15 1.505 18300K .......... .......... .......... .......... .......... 14% 39.8M 2s -2024-03-16T16:52:07Z #15 1.506 18350K .......... .......... .......... .......... .......... 14% 69.2M 2s -2024-03-16T16:52:07Z #15 1.507 18400K .......... .......... .......... .......... .......... 14% 78.3M 2s -2024-03-16T16:52:07Z #15 1.507 18450K .......... .......... .......... .......... .......... 14% 42.1M 2s -2024-03-16T16:52:07Z #15 1.510 18500K .......... .......... .......... .......... .......... 14% 89.7M 2s -2024-03-16T16:52:07Z #15 1.510 18550K .......... .......... .......... .......... .......... 14% 133M 2s -2024-03-16T16:52:07Z #15 1.510 18600K .......... .......... .......... .......... .......... 14% 147M 2s -2024-03-16T16:52:07Z #15 1.510 18650K .......... .......... .......... .......... .......... 14% 123M 2s -2024-03-16T16:52:07Z #15 1.510 18700K .......... .......... .......... .......... .......... 14% 59.9M 2s -2024-03-16T16:52:07Z #15 1.511 18750K .......... .......... .......... .......... .......... 14% 37.3M 2s -2024-03-16T16:52:07Z #15 1.512 18800K .......... .......... .......... .......... .......... 14% 42.3M 2s -2024-03-16T16:52:07Z #15 1.513 18850K .......... .......... .......... .......... .......... 14% 36.3M 2s -2024-03-16T16:52:07Z #15 1.515 18900K .......... .......... .......... .......... .......... 14% 37.9M 2s -2024-03-16T16:52:07Z #15 1.516 18950K .......... .......... .......... .......... .......... 14% 32.3M 2s -2024-03-16T16:52:07Z #15 1.517 19000K .......... .......... .......... .......... .......... 15% 47.5M 2s -2024-03-16T16:52:07Z #15 1.519 19050K .......... .......... .......... .......... .......... 15% 98.6M 2s -2024-03-16T16:52:07Z #15 1.519 19100K .......... .......... .......... .......... .......... 15% 46.2M 2s -2024-03-16T16:52:07Z #15 1.520 19150K .......... .......... .......... .......... .......... 15% 59.0M 2s -2024-03-16T16:52:07Z #15 1.521 19200K .......... .......... .......... .......... .......... 15% 72.6M 2s -2024-03-16T16:52:07Z #15 1.521 19250K .......... .......... .......... .......... .......... 15% 21.0M 2s -2024-03-16T16:52:07Z #15 1.524 19300K .......... .......... .......... .......... .......... 15% 45.2M 2s -2024-03-16T16:52:07Z #15 1.526 19350K .......... .......... .......... .......... .......... 15% 47.3M 2s -2024-03-16T16:52:07Z #15 1.526 19400K .......... .......... .......... .......... .......... 15% 49.4M 2s -2024-03-16T16:52:07Z #15 1.527 19450K .......... .......... .......... .......... .......... 15% 66.5M 2s -2024-03-16T16:52:07Z #15 1.527 19500K .......... .......... .......... .......... .......... 15% 49.7M 2s -2024-03-16T16:52:07Z #15 1.529 19550K .......... .......... .......... .......... .......... 15% 31.0M 2s -2024-03-16T16:52:07Z #15 1.530 19600K .......... .......... .......... .......... .......... 15% 44.9M 2s -2024-03-16T16:52:07Z #15 1.534 19650K .......... .......... .......... .......... .......... 15% 155M 2s -2024-03-16T16:52:07Z #15 1.534 19700K .......... .......... .......... .......... .......... 15% 149M 2s -2024-03-16T16:52:07Z #15 1.534 19750K .......... .......... .......... .......... .......... 15% 114M 2s -2024-03-16T16:52:07Z #15 1.534 19800K .......... .......... .......... .......... .......... 15% 138M 2s -2024-03-16T16:52:07Z #15 1.534 19850K .......... .......... .......... .......... .......... 15% 146M 2s -2024-03-16T16:52:07Z #15 1.534 19900K .......... .......... .......... .......... .......... 15% 151M 2s -2024-03-16T16:52:07Z #15 1.534 19950K .......... .......... .......... .......... .......... 15% 129M 2s -2024-03-16T16:52:07Z #15 1.534 20000K .......... .......... .......... .......... .......... 15% 39.8M 2s -2024-03-16T16:52:07Z #15 1.536 20050K .......... .......... .......... .......... .......... 15% 35.7M 2s -2024-03-16T16:52:07Z #15 1.538 20100K .......... .......... .......... .......... .......... 15% 20.2M 2s -2024-03-16T16:52:07Z #15 1.539 20150K .......... .......... .......... .......... .......... 15% 61.3M 2s -2024-03-16T16:52:07Z #15 1.539 20200K .......... .......... .......... .......... .......... 15% 52.7M 2s -2024-03-16T16:52:07Z #15 1.540 20250K .......... .......... .......... .......... .......... 16% 50.7M 2s -2024-03-16T16:52:07Z #15 1.542 20300K .......... .......... .......... .......... .......... 16% 35.8M 2s -2024-03-16T16:52:07Z #15 1.543 20350K .......... .......... .......... .......... .......... 16% 43.3M 2s -2024-03-16T16:52:07Z #15 1.544 20400K .......... .......... .......... .......... .......... 16% 87.9M 2s -2024-03-16T16:52:07Z #15 1.544 20450K .......... .......... .......... .......... .......... 16% 68.4M 2s -2024-03-16T16:52:07Z #15 1.545 20500K .......... .......... .......... .......... .......... 16% 49.4M 2s -2024-03-16T16:52:07Z #15 1.546 20550K .......... .......... .......... .......... .......... 16% 46.0M 2s -2024-03-16T16:52:07Z #15 1.547 20600K .......... .......... .......... .......... .......... 16% 41.2M 2s -2024-03-16T16:52:07Z #15 1.548 20650K .......... .......... .......... .......... .......... 16% 72.1M 2s -2024-03-16T16:52:07Z #15 1.550 20700K .......... .......... .......... .......... .......... 16% 168M 2s -2024-03-16T16:52:07Z #15 1.550 20750K .......... .......... .......... .......... .......... 16% 128M 2s -2024-03-16T16:52:07Z #15 1.550 20800K .......... .......... .......... .......... .......... 16% 36.5M 2s -2024-03-16T16:52:07Z #15 1.554 20850K .......... .......... .......... .......... .......... 16% 57.2M 2s -2024-03-16T16:52:07Z #15 1.554 20900K .......... .......... .......... .......... .......... 16% 140M 2s -2024-03-16T16:52:07Z #15 1.554 20950K .......... .......... .......... .......... .......... 16% 133M 2s -2024-03-16T16:52:07Z #15 1.554 21000K .......... .......... .......... .......... .......... 16% 139M 2s -2024-03-16T16:52:07Z #15 1.554 21050K .......... .......... .......... .......... .......... 16% 156M 2s -2024-03-16T16:52:07Z #15 1.554 21100K .......... .......... .......... .......... .......... 16% 138M 2s -2024-03-16T16:52:07Z #15 1.554 21150K .......... .......... .......... .......... .......... 16% 69.5M 2s -2024-03-16T16:52:07Z #15 1.554 21200K .......... .......... .......... .......... .......... 16% 36.8M 2s -2024-03-16T16:52:07Z #15 1.556 21250K .......... .......... .......... .......... .......... 16% 18.3M 2s -2024-03-16T16:52:07Z #15 1.558 21300K .......... .......... .......... .......... .......... 16% 94.9M 2s -2024-03-16T16:52:07Z #15 1.559 21350K .......... .......... .......... .......... .......... 16% 33.4M 2s -2024-03-16T16:52:07Z #15 1.560 21400K .......... .......... .......... .......... .......... 16% 71.0M 2s -2024-03-16T16:52:07Z #15 1.561 21450K .......... .......... .......... .......... .......... 16% 25.7M 2s -2024-03-16T16:52:07Z #15 1.563 21500K .......... .......... .......... .......... .......... 16% 54.4M 2s -2024-03-16T16:52:07Z #15 1.564 21550K .......... .......... .......... .......... .......... 17% 49.5M 2s -2024-03-16T16:52:07Z #15 1.565 21600K .......... .......... .......... .......... .......... 17% 54.0M 2s -2024-03-16T16:52:07Z #15 1.566 21650K .......... .......... .......... .......... .......... 17% 44.3M 2s -2024-03-16T16:52:07Z #15 1.567 21700K .......... .......... .......... .......... .......... 17% 82.2M 2s -2024-03-16T16:52:07Z #15 1.567 21750K .......... .......... .......... .......... .......... 17% 44.6M 2s -2024-03-16T16:52:07Z #15 1.569 21800K .......... .......... .......... .......... .......... 17% 39.8M 2s -2024-03-16T16:52:07Z #15 1.570 21850K .......... .......... .......... .......... .......... 17% 50.8M 2s -2024-03-16T16:52:07Z #15 1.571 21900K .......... .......... .......... .......... .......... 17% 47.6M 2s -2024-03-16T16:52:07Z #15 1.572 21950K .......... .......... .......... .......... .......... 17% 105M 2s -2024-03-16T16:52:07Z #15 1.572 22000K .......... .......... .......... .......... .......... 17% 118M 2s -2024-03-16T16:52:07Z #15 1.572 22050K .......... .......... .......... .......... .......... 17% 47.7M 2s -2024-03-16T16:52:07Z #15 1.574 22100K .......... .......... .......... .......... .......... 17% 35.6M 2s -2024-03-16T16:52:07Z #15 1.575 22150K .......... .......... .......... .......... .......... 17% 40.1M 2s -2024-03-16T16:52:07Z #15 1.576 22200K .......... .......... .......... .......... .......... 17% 41.6M 2s -2024-03-16T16:52:07Z #15 1.577 22250K .......... .......... .......... .......... .......... 17% 75.6M 2s -2024-03-16T16:52:07Z #15 1.578 22300K .......... .......... .......... .......... .......... 17% 27.0M 2s -2024-03-16T16:52:07Z #15 1.582 22350K .......... .......... .......... .......... .......... 17% 56.2M 2s -2024-03-16T16:52:07Z #15 1.582 22400K .......... .......... .......... .......... .......... 17% 154M 2s -2024-03-16T16:52:07Z #15 1.582 22450K .......... .......... .......... .......... .......... 17% 158M 2s -2024-03-16T16:52:07Z #15 1.582 22500K .......... .......... .......... .......... .......... 17% 38.0M 2s -2024-03-16T16:52:07Z #15 1.583 22550K .......... .......... .......... .......... .......... 17% 24.4M 2s -2024-03-16T16:52:07Z #15 1.584 22600K .......... .......... .......... .......... .......... 17% 55.9M 2s -2024-03-16T16:52:07Z #15 1.585 22650K .......... .......... .......... .......... .......... 17% 31.9M 2s -2024-03-16T16:52:07Z #15 1.587 22700K .......... .......... .......... .......... .......... 17% 28.2M 2s -2024-03-16T16:52:07Z #15 1.589 22750K .......... .......... .......... .......... .......... 17% 87.8M 2s -2024-03-16T16:52:07Z #15 1.589 22800K .......... .......... .......... .......... .......... 18% 60.0M 2s -2024-03-16T16:52:07Z #15 1.590 22850K .......... .......... .......... .......... .......... 18% 43.5M 2s -2024-03-16T16:52:07Z #15 1.591 22900K .......... .......... .......... .......... .......... 18% 63.5M 2s -2024-03-16T16:52:07Z #15 1.592 22950K .......... .......... .......... .......... .......... 18% 31.3M 2s -2024-03-16T16:52:07Z #15 1.598 23000K .......... .......... .......... .......... .......... 18% 47.3M 2s -2024-03-16T16:52:07Z #15 1.598 23050K .......... .......... .......... .......... .......... 18% 71.3M 2s -2024-03-16T16:52:07Z #15 1.598 23100K .......... .......... .......... .......... .......... 18% 141M 2s -2024-03-16T16:52:07Z #15 1.598 23150K .......... .......... .......... .......... .......... 18% 121M 2s -2024-03-16T16:52:07Z #15 1.598 23200K .......... .......... .......... .......... .......... 18% 148M 2s -2024-03-16T16:52:07Z #15 1.598 23250K .......... .......... .......... .......... .......... 18% 133M 2s -2024-03-16T16:52:07Z #15 1.598 23300K .......... .......... .......... .......... .......... 18% 168M 2s -2024-03-16T16:52:07Z #15 1.598 23350K .......... .......... .......... .......... .......... 18% 142M 2s -2024-03-16T16:52:07Z #15 1.598 23400K .......... .......... .......... .......... .......... 18% 144M 2s -2024-03-16T16:52:07Z #15 1.598 23450K .......... .......... .......... .......... .......... 18% 92.3M 2s -2024-03-16T16:52:07Z #15 1.598 23500K .......... .......... .......... .......... .......... 18% 65.2M 2s -2024-03-16T16:52:07Z #15 1.599 23550K .......... .......... .......... .......... .......... 18% 58.4M 2s -2024-03-16T16:52:07Z #15 1.600 23600K .......... .......... .......... .......... .......... 18% 38.4M 2s -2024-03-16T16:52:07Z #15 1.601 23650K .......... .......... .......... .......... .......... 18% 8.64M 2s -2024-03-16T16:52:07Z #15 1.607 23700K .......... .......... .......... .......... .......... 18% 20.1M 2s -2024-03-16T16:52:07Z #15 1.609 23750K .......... .......... .......... .......... .......... 18% 58.0M 2s -2024-03-16T16:52:07Z #15 1.612 23800K .......... .......... .......... .......... .......... 18% 69.1M 2s -2024-03-16T16:52:07Z #15 1.612 23850K .......... .......... .......... .......... .......... 18% 130M 2s -2024-03-16T16:52:07Z #15 1.612 23900K .......... .......... .......... .......... .......... 18% 117M 2s -2024-03-16T16:52:07Z #15 1.612 23950K .......... .......... .......... .......... .......... 18% 16.3M 2s -2024-03-16T16:52:07Z #15 1.614 24000K .......... .......... .......... .......... .......... 18% 168M 2s -2024-03-16T16:52:07Z #15 1.615 24050K .......... .......... .......... .......... .......... 19% 138M 2s -2024-03-16T16:52:07Z #15 1.615 24100K .......... .......... .......... .......... .......... 19% 75.0M 2s -2024-03-16T16:52:07Z #15 1.616 24150K .......... .......... .......... .......... .......... 19% 113M 2s -2024-03-16T16:52:07Z #15 1.616 24200K .......... .......... .......... .......... .......... 19% 151M 2s -2024-03-16T16:52:07Z #15 1.616 24250K .......... .......... .......... .......... .......... 19% 29.9M 2s -2024-03-16T16:52:07Z #15 1.618 24300K .......... .......... .......... .......... .......... 19% 54.3M 2s -2024-03-16T16:52:07Z #15 1.619 24350K .......... .......... .......... .......... .......... 19% 35.5M 2s -2024-03-16T16:52:07Z #15 1.620 24400K .......... .......... .......... .......... .......... 19% 51.4M 2s -2024-03-16T16:52:07Z #15 1.622 24450K .......... .......... .......... .......... .......... 19% 46.6M 2s -2024-03-16T16:52:07Z #15 1.623 24500K .......... .......... .......... .......... .......... 19% 64.1M 2s -2024-03-16T16:52:07Z #15 1.623 24550K .......... .......... .......... .......... .......... 19% 112M 2s -2024-03-16T16:52:07Z #15 1.624 24600K .......... .......... .......... .......... .......... 19% 64.4M 2s -2024-03-16T16:52:07Z #15 1.625 24650K .......... .......... .......... .......... .......... 19% 80.6M 2s -2024-03-16T16:52:07Z #15 1.625 24700K .......... .......... .......... .......... .......... 19% 95.5M 2s -2024-03-16T16:52:07Z #15 1.625 24750K .......... .......... .......... .......... .......... 19% 73.1M 2s -2024-03-16T16:52:07Z #15 1.626 24800K .......... .......... .......... .......... .......... 19% 156M 2s -2024-03-16T16:52:07Z #15 1.626 24850K .......... .......... .......... .......... .......... 19% 46.2M 2s -2024-03-16T16:52:07Z #15 1.627 24900K .......... .......... .......... .......... .......... 19% 125M 2s -2024-03-16T16:52:07Z #15 1.628 24950K .......... .......... .......... .......... .......... 19% 63.5M 2s -2024-03-16T16:52:07Z #15 1.629 25000K .......... .......... .......... .......... .......... 19% 38.8M 2s -2024-03-16T16:52:07Z #15 1.630 25050K .......... .......... .......... .......... .......... 19% 82.1M 2s -2024-03-16T16:52:07Z #15 1.631 25100K .......... .......... .......... .......... .......... 19% 31.0M 2s -2024-03-16T16:52:07Z #15 1.634 25150K .......... .......... .......... .......... .......... 19% 54.9M 2s -2024-03-16T16:52:07Z #15 1.634 25200K .......... .......... .......... .......... .......... 19% 31.2M 2s -2024-03-16T16:52:07Z #15 1.635 25250K .......... .......... .......... .......... .......... 19% 17.2M 2s -2024-03-16T16:52:07Z #15 1.637 25300K .......... .......... .......... .......... .......... 19% 165M 2s -2024-03-16T16:52:07Z #15 1.638 25350K .......... .......... .......... .......... .......... 20% 126M 2s -2024-03-16T16:52:07Z #15 1.638 25400K .......... .......... .......... .......... .......... 20% 172M 2s -2024-03-16T16:52:07Z #15 1.638 25450K .......... .......... .......... .......... .......... 20% 45.3M 2s -2024-03-16T16:52:07Z #15 1.639 25500K .......... .......... .......... .......... .......... 20% 138M 2s -2024-03-16T16:52:07Z #15 1.640 25550K .......... .......... .......... .......... .......... 20% 71.1M 2s -2024-03-16T16:52:07Z #15 1.641 25600K .......... .......... .......... .......... .......... 20% 143M 2s -2024-03-16T16:52:07Z #15 1.641 25650K .......... .......... .......... .......... .......... 20% 40.8M 2s -2024-03-16T16:52:07Z #15 1.642 25700K .......... .......... .......... .......... .......... 20% 89.9M 2s -2024-03-16T16:52:07Z #15 1.642 25750K .......... .......... .......... .......... .......... 20% 138M 2s -2024-03-16T16:52:07Z #15 1.643 25800K .......... .......... .......... .......... .......... 20% 139M 2s -2024-03-16T16:52:07Z #15 1.643 25850K .......... .......... .......... .......... .......... 20% 28.7M 2s -2024-03-16T16:52:07Z #15 1.645 25900K .......... .......... .......... .......... .......... 20% 51.8M 2s -2024-03-16T16:52:07Z #15 1.646 25950K .......... .......... .......... .......... .......... 20% 42.9M 2s -2024-03-16T16:52:07Z #15 1.647 26000K .......... .......... .......... .......... .......... 20% 56.5M 2s -2024-03-16T16:52:07Z #15 1.648 26050K .......... .......... .......... .......... .......... 20% 165M 2s -2024-03-16T16:52:07Z #15 1.650 26100K .......... .......... .......... .......... .......... 20% 132M 2s -2024-03-16T16:52:07Z #15 1.650 26150K .......... .......... .......... .......... .......... 20% 141M 2s -2024-03-16T16:52:07Z #15 1.650 26200K .......... .......... .......... .......... .......... 20% 85.3M 2s -2024-03-16T16:52:07Z #15 1.650 26250K .......... .......... .......... .......... .......... 20% 45.8M 2s -2024-03-16T16:52:07Z #15 1.651 26300K .......... .......... .......... .......... .......... 20% 32.2M 2s -2024-03-16T16:52:07Z #15 1.652 26350K .......... .......... .......... .......... .......... 20% 33.6M 2s -2024-03-16T16:52:07Z #15 1.654 26400K .......... .......... .......... .......... .......... 20% 21.9M 2s -2024-03-16T16:52:07Z #15 1.656 26450K .......... .......... .......... .......... .......... 20% 58.3M 2s -2024-03-16T16:52:07Z #15 1.657 26500K .......... .......... .......... .......... .......... 20% 40.9M 2s -2024-03-16T16:52:07Z #15 1.658 26550K .......... .......... .......... .......... .......... 20% 49.3M 2s -2024-03-16T16:52:07Z #15 1.659 26600K .......... .......... .......... .......... .......... 21% 51.2M 2s -2024-03-16T16:52:07Z #15 1.660 26650K .......... .......... .......... .......... .......... 21% 96.0M 2s -2024-03-16T16:52:07Z #15 1.660 26700K .......... .......... .......... .......... .......... 21% 140M 2s -2024-03-16T16:52:07Z #15 1.661 26750K .......... .......... .......... .......... .......... 21% 86.6M 2s -2024-03-16T16:52:07Z #15 1.661 26800K .......... .......... .......... .......... .......... 21% 49.1M 2s -2024-03-16T16:52:07Z #15 1.662 26850K .......... .......... .......... .......... .......... 21% 99.0M 2s -2024-03-16T16:52:07Z #15 1.663 26900K .......... .......... .......... .......... .......... 21% 145M 2s -2024-03-16T16:52:07Z #15 1.663 26950K .......... .......... .......... .......... .......... 21% 41.6M 2s -2024-03-16T16:52:07Z #15 1.664 27000K .......... .......... .......... .......... .......... 21% 150M 2s -2024-03-16T16:52:07Z #15 1.665 27050K .......... .......... .......... .......... .......... 21% 79.3M 2s -2024-03-16T16:52:07Z #15 1.665 27100K .......... .......... .......... .......... .......... 21% 84.5M 2s -2024-03-16T16:52:07Z #15 1.666 27150K .......... .......... .......... .......... .......... 21% 118M 2s -2024-03-16T16:52:07Z #15 1.666 27200K .......... .......... .......... .......... .......... 21% 52.9M 2s -2024-03-16T16:52:07Z #15 1.667 27250K .......... .......... .......... .......... .......... 21% 122M 2s -2024-03-16T16:52:07Z #15 1.667 27300K .......... .......... .......... .......... .......... 21% 70.6M 2s -2024-03-16T16:52:07Z #15 1.668 27350K .......... .......... .......... .......... .......... 21% 139M 2s -2024-03-16T16:52:07Z #15 1.668 27400K .......... .......... .......... .......... .......... 21% 41.6M 2s -2024-03-16T16:52:07Z #15 1.670 27450K .......... .......... .......... .......... .......... 21% 89.5M 2s -2024-03-16T16:52:07Z #15 1.670 27500K .......... .......... .......... .......... .......... 21% 147M 2s -2024-03-16T16:52:07Z #15 1.671 27550K .......... .......... .......... .......... .......... 21% 49.0M 2s -2024-03-16T16:52:07Z #15 1.671 27600K .......... .......... .......... .......... .......... 21% 157M 2s -2024-03-16T16:52:07Z #15 1.674 27650K .......... .......... .......... .......... .......... 21% 187M 2s -2024-03-16T16:52:07Z #15 1.674 27700K .......... .......... .......... .......... .......... 21% 129M 2s -2024-03-16T16:52:07Z #15 1.674 27750K .......... .......... .......... .......... .......... 21% 76.1M 2s -2024-03-16T16:52:07Z #15 1.674 27800K .......... .......... .......... .......... .......... 21% 83.3M 2s -2024-03-16T16:52:07Z #15 1.674 27850K .......... .......... .......... .......... .......... 22% 70.5M 2s -2024-03-16T16:52:07Z #15 1.674 27900K .......... .......... .......... .......... .......... 22% 152M 2s -2024-03-16T16:52:07Z #15 1.675 27950K .......... .......... .......... .......... .......... 22% 112M 2s -2024-03-16T16:52:07Z #15 1.675 28000K .......... .......... .......... .......... .......... 22% 80.5M 2s -2024-03-16T16:52:07Z #15 1.676 28050K .......... .......... .......... .......... .......... 22% 93.8M 2s -2024-03-16T16:52:07Z #15 1.676 28100K .......... .......... .......... .......... .......... 22% 133M 2s -2024-03-16T16:52:07Z #15 1.676 28150K .......... .......... .......... .......... .......... 22% 129M 2s -2024-03-16T16:52:07Z #15 1.677 28200K .......... .......... .......... .......... .......... 22% 92.9M 2s -2024-03-16T16:52:07Z #15 1.677 28250K .......... .......... .......... .......... .......... 22% 31.9M 2s -2024-03-16T16:52:07Z #15 1.679 28300K .......... .......... .......... .......... .......... 22% 38.5M 2s -2024-03-16T16:52:07Z #15 1.680 28350K .......... .......... .......... .......... .......... 22% 46.7M 2s -2024-03-16T16:52:07Z #15 1.681 28400K .......... .......... .......... .......... .......... 22% 34.2M 2s -2024-03-16T16:52:07Z #15 1.683 28450K .......... .......... .......... .......... .......... 22% 42.1M 2s -2024-03-16T16:52:07Z #15 1.684 28500K .......... .......... .......... .......... .......... 22% 44.3M 2s -2024-03-16T16:52:07Z #15 1.685 28550K .......... .......... .......... .......... .......... 22% 11.5M 2s -2024-03-16T16:52:07Z #15 1.689 28600K .......... .......... .......... .......... .......... 22% 73.7M 2s -2024-03-16T16:52:07Z #15 1.690 28650K .......... .......... .......... .......... .......... 22% 77.3M 2s -2024-03-16T16:52:07Z #15 1.690 28700K .......... .......... .......... .......... .......... 22% 49.2M 2s -2024-03-16T16:52:07Z #15 1.691 28750K .......... .......... .......... .......... .......... 22% 132M 2s -2024-03-16T16:52:07Z #15 1.692 28800K .......... .......... .......... .......... .......... 22% 151M 2s -2024-03-16T16:52:07Z #15 1.692 28850K .......... .......... .......... .......... .......... 22% 156M 2s -2024-03-16T16:52:07Z #15 1.693 28900K .......... .......... .......... .......... .......... 22% 27.3M 2s -2024-03-16T16:52:07Z #15 1.694 28950K .......... .......... .......... .......... .......... 22% 125M 2s -2024-03-16T16:52:07Z #15 1.695 29000K .......... .......... .......... .......... .......... 22% 91.0M 2s -2024-03-16T16:52:07Z #15 1.695 29050K .......... .......... .......... .......... .......... 22% 23.5M 2s -2024-03-16T16:52:07Z #15 1.697 29100K .......... .......... .......... .......... .......... 22% 116M 2s -2024-03-16T16:52:07Z #15 1.698 29150K .......... .......... .......... .......... .......... 23% 128M 2s -2024-03-16T16:52:07Z #15 1.698 29200K .......... .......... .......... .......... .......... 23% 152M 2s -2024-03-16T16:52:07Z #15 1.698 29250K .......... .......... .......... .......... .......... 23% 139M 2s -2024-03-16T16:52:07Z #15 1.699 29300K .......... .......... .......... .......... .......... 23% 143M 2s -2024-03-16T16:52:07Z #15 1.699 29350K .......... .......... .......... .......... .......... 23% 151M 2s -2024-03-16T16:52:07Z #15 1.699 29400K .......... .......... .......... .......... .......... 23% 169M 2s -2024-03-16T16:52:07Z #15 1.700 29450K .......... .......... .......... .......... .......... 23% 153M 2s -2024-03-16T16:52:07Z #15 1.700 29500K .......... .......... .......... .......... .......... 23% 162M 2s -2024-03-16T16:52:07Z #15 1.700 29550K .......... .......... .......... .......... .......... 23% 21.1M 2s -2024-03-16T16:52:07Z #15 1.703 29600K .......... .......... .......... .......... .......... 23% 129M 2s -2024-03-16T16:52:07Z #15 1.703 29650K .......... .......... .......... .......... .......... 23% 152M 2s -2024-03-16T16:52:07Z #15 1.703 29700K .......... .......... .......... .......... .......... 23% 145M 2s -2024-03-16T16:52:07Z #15 1.704 29750K .......... .......... .......... .......... .......... 23% 86.8M 2s -2024-03-16T16:52:07Z #15 1.704 29800K .......... .......... .......... .......... .......... 23% 158M 2s -2024-03-16T16:52:07Z #15 1.705 29850K .......... .......... .......... .......... .......... 23% 161M 2s -2024-03-16T16:52:07Z #15 1.705 29900K .......... .......... .......... .......... .......... 23% 162M 2s -2024-03-16T16:52:07Z #15 1.705 29950K .......... .......... .......... .......... .......... 23% 137M 2s -2024-03-16T16:52:07Z #15 1.706 30000K .......... .......... .......... .......... .......... 23% 10.4M 2s -2024-03-16T16:52:07Z #15 1.710 30050K .......... .......... .......... .......... .......... 23% 174M 2s -2024-03-16T16:52:07Z #15 1.710 30100K .......... .......... .......... .......... .......... 23% 54.9M 2s -2024-03-16T16:52:07Z #15 1.712 30150K .......... .......... .......... .......... .......... 23% 83.3M 2s -2024-03-16T16:52:07Z #15 1.712 30200K .......... .......... .......... .......... .......... 23% 50.4M 2s -2024-03-16T16:52:07Z #15 1.713 30250K .......... .......... .......... .......... .......... 23% 58.5M 2s -2024-03-16T16:52:07Z #15 1.714 30300K .......... .......... .......... .......... .......... 23% 44.5M 2s -2024-03-16T16:52:07Z #15 1.715 30350K .......... .......... .......... .......... .......... 23% 53.7M 2s -2024-03-16T16:52:07Z #15 1.716 30400K .......... .......... .......... .......... .......... 24% 158M 2s -2024-03-16T16:52:07Z #15 1.716 30450K .......... .......... .......... .......... .......... 24% 62.6M 2s -2024-03-16T16:52:07Z #15 1.717 30500K .......... .......... .......... .......... .......... 24% 54.6M 2s -2024-03-16T16:52:07Z #15 1.718 30550K .......... .......... .......... .......... .......... 24% 66.4M 2s -2024-03-16T16:52:07Z #15 1.719 30600K .......... .......... .......... .......... .......... 24% 67.4M 2s -2024-03-16T16:52:07Z #15 1.720 30650K .......... .......... .......... .......... .......... 24% 76.6M 2s -2024-03-16T16:52:07Z #15 1.720 30700K .......... .......... .......... .......... .......... 24% 89.3M 2s -2024-03-16T16:52:07Z #15 1.726 30750K .......... .......... .......... .......... .......... 24% 51.6M 2s -2024-03-16T16:52:07Z #15 1.726 30800K .......... .......... .......... .......... .......... 24% 38.9M 2s -2024-03-16T16:52:07Z #15 1.726 30850K .......... .......... .......... .......... .......... 24% 119M 2s -2024-03-16T16:52:07Z #15 1.726 30900K .......... .......... .......... .......... .......... 24% 83.2M 2s -2024-03-16T16:52:07Z #15 1.726 30950K .......... .......... .......... .......... .......... 24% 145M 2s -2024-03-16T16:52:07Z #15 1.726 31000K .......... .......... .......... .......... .......... 24% 79.6M 2s -2024-03-16T16:52:07Z #15 1.726 31050K .......... .......... .......... .......... .......... 24% 177M 2s -2024-03-16T16:52:07Z #15 1.726 31100K .......... .......... .......... .......... .......... 24% 166M 2s -2024-03-16T16:52:07Z #15 1.726 31150K .......... .......... .......... .......... .......... 24% 74.6M 2s -2024-03-16T16:52:07Z #15 1.726 31200K .......... .......... .......... .......... .......... 24% 161M 2s -2024-03-16T16:52:07Z #15 1.726 31250K .......... .......... .......... .......... .......... 24% 80.4M 2s -2024-03-16T16:52:07Z #15 1.727 31300K .......... .......... .......... .......... .......... 24% 146M 2s -2024-03-16T16:52:07Z #15 1.727 31350K .......... .......... .......... .......... .......... 24% 138M 2s -2024-03-16T16:52:07Z #15 1.728 31400K .......... .......... .......... .......... .......... 24% 90.7M 2s -2024-03-16T16:52:07Z #15 1.728 31450K .......... .......... .......... .......... .......... 24% 169M 2s -2024-03-16T16:52:07Z #15 1.728 31500K .......... .......... .......... .......... .......... 24% 79.1M 2s -2024-03-16T16:52:07Z #15 1.729 31550K .......... .......... .......... .......... .......... 24% 152M 2s -2024-03-16T16:52:07Z #15 1.729 31600K .......... .......... .......... .......... .......... 24% 151M 2s -2024-03-16T16:52:07Z #15 1.730 31650K .......... .......... .......... .......... .......... 25% 89.9M 2s -2024-03-16T16:52:07Z #15 1.730 31700K .......... .......... .......... .......... .......... 25% 143M 2s -2024-03-16T16:52:08Z #15 1.730 31750K .......... .......... .......... .......... .......... 25% 92.2M 2s -2024-03-16T16:52:08Z #15 1.731 31800K .......... .......... .......... .......... .......... 25% 115M 2s -2024-03-16T16:52:08Z #15 1.732 31850K .......... .......... .......... .......... .......... 25% 94.1M 2s -2024-03-16T16:52:08Z #15 1.732 31900K .......... .......... .......... .......... .......... 25% 167M 2s -2024-03-16T16:52:08Z #15 1.732 31950K .......... .......... .......... .......... .......... 25% 69.0M 2s -2024-03-16T16:52:08Z #15 1.733 32000K .......... .......... .......... .......... .......... 25% 167M 2s -2024-03-16T16:52:08Z #15 1.733 32050K .......... .......... .......... .......... .......... 25% 68.8M 2s -2024-03-16T16:52:08Z #15 1.734 32100K .......... .......... .......... .......... .......... 25% 58.1M 2s -2024-03-16T16:52:08Z #15 1.735 32150K .......... .......... .......... .......... .......... 25% 24.3M 2s -2024-03-16T16:52:08Z #15 1.737 32200K .......... .......... .......... .......... .......... 25% 24.7M 2s -2024-03-16T16:52:08Z #15 1.739 32250K .......... .......... .......... .......... .......... 25% 24.6M 2s -2024-03-16T16:52:08Z #15 1.741 32300K .......... .......... .......... .......... .......... 25% 30.6M 2s -2024-03-16T16:52:08Z #15 1.742 32350K .......... .......... .......... .......... .......... 25% 27.0M 2s -2024-03-16T16:52:08Z #15 1.744 32400K .......... .......... .......... .......... .......... 25% 32.1M 2s -2024-03-16T16:52:08Z #15 1.746 32450K .......... .......... .......... .......... .......... 25% 134M 2s -2024-03-16T16:52:08Z #15 1.746 32500K .......... .......... .......... .......... .......... 25% 81.7M 2s -2024-03-16T16:52:08Z #15 1.747 32550K .......... .......... .......... .......... .......... 25% 81.3M 2s -2024-03-16T16:52:08Z #15 1.747 32600K .......... .......... .......... .......... .......... 25% 75.4M 2s -2024-03-16T16:52:08Z #15 1.748 32650K .......... .......... .......... .......... .......... 25% 101M 2s -2024-03-16T16:52:08Z #15 1.748 32700K .......... .......... .......... .......... .......... 25% 119M 2s -2024-03-16T16:52:08Z #15 1.749 32750K .......... .......... .......... .......... .......... 25% 135M 2s -2024-03-16T16:52:08Z #15 1.750 32800K .......... .......... .......... .......... .......... 25% 72.0M 2s -2024-03-16T16:52:08Z #15 1.750 32850K .......... .......... .......... .......... .......... 25% 162M 2s -2024-03-16T16:52:08Z #15 1.750 32900K .......... .......... .......... .......... .......... 25% 68.6M 2s -2024-03-16T16:52:08Z #15 1.751 32950K .......... .......... .......... .......... .......... 26% 135M 2s -2024-03-16T16:52:08Z #15 1.751 33000K .......... .......... .......... .......... .......... 26% 153M 2s -2024-03-16T16:52:08Z #15 1.751 33050K .......... .......... .......... .......... .......... 26% 150M 2s -2024-03-16T16:52:08Z #15 1.752 33100K .......... .......... .......... .......... .......... 26% 148M 2s -2024-03-16T16:52:08Z #15 1.752 33150K .......... .......... .......... .......... .......... 26% 51.1M 2s -2024-03-16T16:52:08Z #15 1.753 33200K .......... .......... .......... .......... .......... 26% 63.1M 2s -2024-03-16T16:52:08Z #15 1.754 33250K .......... .......... .......... .......... .......... 26% 57.0M 2s -2024-03-16T16:52:08Z #15 1.755 33300K .......... .......... .......... .......... .......... 26% 73.4M 2s -2024-03-16T16:52:08Z #15 1.755 33350K .......... .......... .......... .......... .......... 26% 96.5M 2s -2024-03-16T16:52:08Z #15 1.756 33400K .......... .......... .......... .......... .......... 26% 65.1M 2s -2024-03-16T16:52:08Z #15 1.757 33450K .......... .......... .......... .......... .......... 26% 155M 2s -2024-03-16T16:52:08Z #15 1.757 33500K .......... .......... .......... .......... .......... 26% 53.5M 2s -2024-03-16T16:52:08Z #15 1.758 33550K .......... .......... .......... .......... .......... 26% 63.6M 2s -2024-03-16T16:52:08Z #15 1.759 33600K .......... .......... .......... .......... .......... 26% 59.3M 2s -2024-03-16T16:52:08Z #15 1.759 33650K .......... .......... .......... .......... .......... 26% 82.3M 2s -2024-03-16T16:52:08Z #15 1.760 33700K .......... .......... .......... .......... .......... 26% 70.6M 2s -2024-03-16T16:52:08Z #15 1.762 33750K .......... .......... .......... .......... .......... 26% 94.3M 2s -2024-03-16T16:52:08Z #15 1.762 33800K .......... .......... .......... .......... .......... 26% 172M 2s -2024-03-16T16:52:08Z #15 1.762 33850K .......... .......... .......... .......... .......... 26% 66.2M 2s -2024-03-16T16:52:08Z #15 1.763 33900K .......... .......... .......... .......... .......... 26% 59.7M 2s -2024-03-16T16:52:08Z #15 1.763 33950K .......... .......... .......... .......... .......... 26% 56.5M 2s -2024-03-16T16:52:08Z #15 1.764 34000K .......... .......... .......... .......... .......... 26% 90.8M 2s -2024-03-16T16:52:08Z #15 1.764 34050K .......... .......... .......... .......... .......... 26% 160M 2s -2024-03-16T16:52:08Z #15 1.765 34100K .......... .......... .......... .......... .......... 26% 31.7M 2s -2024-03-16T16:52:08Z #15 1.766 34150K .......... .......... .......... .......... .......... 26% 25.1M 2s -2024-03-16T16:52:08Z #15 1.768 34200K .......... .......... .......... .......... .......... 27% 58.4M 2s -2024-03-16T16:52:08Z #15 1.769 34250K .......... .......... .......... .......... .......... 27% 21.7M 2s -2024-03-16T16:52:08Z #15 1.771 34300K .......... .......... .......... .......... .......... 27% 164M 2s -2024-03-16T16:52:08Z #15 1.772 34350K .......... .......... .......... .......... .......... 27% 30.3M 2s -2024-03-16T16:52:08Z #15 1.773 34400K .......... .......... .......... .......... .......... 27% 50.5M 2s -2024-03-16T16:52:08Z #15 1.798 34450K .......... .......... .......... .......... .......... 27% 63.8M 2s -2024-03-16T16:52:08Z #15 1.798 34500K .......... .......... .......... .......... .......... 27% 65.8M 2s -2024-03-16T16:52:08Z #15 1.798 34550K .......... .......... .......... .......... .......... 27% 59.4M 2s -2024-03-16T16:52:08Z #15 1.798 34600K .......... .......... .......... .......... .......... 27% 45.1M 2s -2024-03-16T16:52:08Z #15 1.798 34650K .......... .......... .......... .......... .......... 27% 74.0M 2s -2024-03-16T16:52:08Z #15 1.798 34700K .......... .......... .......... .......... .......... 27% 107M 2s -2024-03-16T16:52:08Z #15 1.798 34750K .......... .......... .......... .......... .......... 27% 81.4M 2s -2024-03-16T16:52:08Z #15 1.798 34800K .......... .......... .......... .......... .......... 27% 191M 2s -2024-03-16T16:52:08Z #15 1.798 34850K .......... .......... .......... .......... .......... 27% 88.1M 2s -2024-03-16T16:52:08Z #15 1.798 34900K .......... .......... .......... .......... .......... 27% 177M 2s -2024-03-16T16:52:08Z #15 1.798 34950K .......... .......... .......... .......... .......... 27% 139M 2s -2024-03-16T16:52:08Z #15 1.798 35000K .......... .......... .......... .......... .......... 27% 171M 2s -2024-03-16T16:52:08Z #15 1.798 35050K .......... .......... .......... .......... .......... 27% 117M 2s -2024-03-16T16:52:08Z #15 1.798 35100K .......... .......... .......... .......... .......... 27% 155M 2s -2024-03-16T16:52:08Z #15 1.798 35150K .......... .......... .......... .......... .......... 27% 143M 2s -2024-03-16T16:52:08Z #15 1.798 35200K .......... .......... .......... .......... .......... 27% 134M 2s -2024-03-16T16:52:08Z #15 1.798 35250K .......... .......... .......... .......... .......... 27% 168M 2s -2024-03-16T16:52:08Z #15 1.798 35300K .......... .......... .......... .......... .......... 27% 29.7M 2s -2024-03-16T16:52:08Z #15 1.798 35350K .......... .......... .......... .......... .......... 27% 124M 2s -2024-03-16T16:52:08Z #15 1.798 35400K .......... .......... .......... .......... .......... 27% 171M 2s -2024-03-16T16:52:08Z #15 1.798 35450K .......... .......... .......... .......... .......... 28% 176M 2s -2024-03-16T16:52:08Z #15 1.798 35500K .......... .......... .......... .......... .......... 28% 67.1M 2s -2024-03-16T16:52:08Z #15 1.798 35550K .......... .......... .......... .......... .......... 28% 180M 2s -2024-03-16T16:52:08Z #15 1.798 35600K .......... .......... .......... .......... .......... 28% 114M 2s -2024-03-16T16:52:08Z #15 1.798 35650K .......... .......... .......... .......... .......... 28% 177M 2s -2024-03-16T16:52:08Z #15 1.798 35700K .......... .......... .......... .......... .......... 28% 79.1M 2s -2024-03-16T16:52:08Z #15 1.798 35750K .......... .......... .......... .......... .......... 28% 35.1M 2s -2024-03-16T16:52:08Z #15 1.798 35800K .......... .......... .......... .......... .......... 28% 115M 2s -2024-03-16T16:52:08Z #15 1.798 35850K .......... .......... .......... .......... .......... 28% 171M 2s -2024-03-16T16:52:08Z #15 1.798 35900K .......... .......... .......... .......... .......... 28% 34.1M 2s -2024-03-16T16:52:08Z #15 1.798 35950K .......... .......... .......... .......... .......... 28% 41.5M 2s -2024-03-16T16:52:08Z #15 1.798 36000K .......... .......... .......... .......... .......... 28% 163M 2s -2024-03-16T16:52:08Z #15 1.798 36050K .......... .......... .......... .......... .......... 28% 56.7M 2s -2024-03-16T16:52:08Z #15 1.798 36100K .......... .......... .......... .......... .......... 28% 139M 2s -2024-03-16T16:52:08Z #15 1.798 36150K .......... .......... .......... .......... .......... 28% 40.4M 2s -2024-03-16T16:52:08Z #15 1.798 36200K .......... .......... .......... .......... .......... 28% 41.8M 2s -2024-03-16T16:52:08Z #15 1.798 36250K .......... .......... .......... .......... .......... 28% 53.8M 2s -2024-03-16T16:52:08Z #15 1.803 36300K .......... .......... .......... .......... .......... 28% 27.4M 2s -2024-03-16T16:52:08Z #15 1.803 36350K .......... .......... .......... .......... .......... 28% 50.2M 2s -2024-03-16T16:52:08Z #15 1.803 36400K .......... .......... .......... .......... .......... 28% 54.1M 2s -2024-03-16T16:52:08Z #15 1.803 36450K .......... .......... .......... .......... .......... 28% 40.2M 2s -2024-03-16T16:52:08Z #15 1.803 36500K .......... .......... .......... .......... .......... 28% 24.7M 2s -2024-03-16T16:52:08Z #15 1.805 36550K .......... .......... .......... .......... .......... 28% 19.1M 2s -2024-03-16T16:52:08Z #15 1.818 36600K .......... .......... .......... .......... .......... 28% 53.4M 2s -2024-03-16T16:52:08Z #15 1.818 36650K .......... .......... .......... .......... .......... 28% 69.1M 2s -2024-03-16T16:52:08Z #15 1.818 36700K .......... .......... .......... .......... .......... 28% 56.5M 2s -2024-03-16T16:52:08Z #15 1.818 36750K .......... .......... .......... .......... .......... 29% 67.6M 2s -2024-03-16T16:52:08Z #15 1.818 36800K .......... .......... .......... .......... .......... 29% 213M 2s -2024-03-16T16:52:08Z #15 1.818 36850K .......... .......... .......... .......... .......... 29% 216M 2s -2024-03-16T16:52:08Z #15 1.818 36900K .......... .......... .......... .......... .......... 29% 228M 2s -2024-03-16T16:52:08Z #15 1.818 36950K .......... .......... .......... .......... .......... 29% 34.7M 2s -2024-03-16T16:52:08Z #15 1.818 37000K .......... .......... .......... .......... .......... 29% 68.8M 2s -2024-03-16T16:52:08Z #15 1.818 37050K .......... .......... .......... .......... .......... 29% 36.8M 2s -2024-03-16T16:52:08Z #15 1.818 37100K .......... .......... .......... .......... .......... 29% 53.4M 2s -2024-03-16T16:52:08Z #15 1.818 37150K .......... .......... .......... .......... .......... 29% 38.4M 2s -2024-03-16T16:52:08Z #15 1.818 37200K .......... .......... .......... .......... .......... 29% 41.9M 2s -2024-03-16T16:52:08Z #15 1.818 37250K .......... .......... .......... .......... .......... 29% 181M 2s -2024-03-16T16:52:08Z #15 1.818 37300K .......... .......... .......... .......... .......... 29% 21.5M 2s -2024-03-16T16:52:08Z #15 1.822 37350K .......... .......... .......... .......... .......... 29% 45.2M 2s -2024-03-16T16:52:08Z #15 1.822 37400K .......... .......... .......... .......... .......... 29% 52.9M 2s -2024-03-16T16:52:08Z #15 1.822 37450K .......... .......... .......... .......... .......... 29% 52.6M 2s -2024-03-16T16:52:08Z #15 1.826 37500K .......... .......... .......... .......... .......... 29% 80.2M 2s -2024-03-16T16:52:08Z #15 1.826 37550K .......... .......... .......... .......... .......... 29% 60.4M 2s -2024-03-16T16:52:08Z #15 1.826 37600K .......... .......... .......... .......... .......... 29% 47.8M 2s -2024-03-16T16:52:08Z #15 1.826 37650K .......... .......... .......... .......... .......... 29% 21.7M 2s -2024-03-16T16:52:08Z #15 1.828 37700K .......... .......... .......... .......... .......... 29% 36.4M 2s -2024-03-16T16:52:08Z #15 1.829 37750K .......... .......... .......... .......... .......... 29% 32.1M 2s -2024-03-16T16:52:08Z #15 1.830 37800K .......... .......... .......... .......... .......... 29% 41.6M 2s -2024-03-16T16:52:08Z #15 1.832 37850K .......... .......... .......... .......... .......... 29% 31.8M 2s -2024-03-16T16:52:08Z #15 1.834 37900K .......... .......... .......... .......... .......... 29% 28.1M 2s -2024-03-16T16:52:08Z #15 1.835 37950K .......... .......... .......... .......... .......... 29% 23.6M 2s -2024-03-16T16:52:08Z #15 1.837 38000K .......... .......... .......... .......... .......... 30% 24.1M 2s -2024-03-16T16:52:08Z #15 1.840 38050K .......... .......... .......... .......... .......... 30% 25.3M 2s -2024-03-16T16:52:08Z #15 1.841 38100K .......... .......... .......... .......... .......... 30% 19.1M 2s -2024-03-16T16:52:08Z #15 1.845 38150K .......... .......... .......... .......... .......... 30% 15.6M 2s -2024-03-16T16:52:08Z #15 1.847 38200K .......... .......... .......... .......... .......... 30% 31.4M 2s -2024-03-16T16:52:08Z #15 1.848 38250K .......... .......... .......... .......... .......... 30% 56.4M 2s -2024-03-16T16:52:08Z #15 1.849 38300K .......... .......... .......... .......... .......... 30% 33.3M 2s -2024-03-16T16:52:08Z #15 1.851 38350K .......... .......... .......... .......... .......... 30% 38.8M 2s -2024-03-16T16:52:08Z #15 1.854 38400K .......... .......... .......... .......... .......... 30% 93.3M 2s -2024-03-16T16:52:08Z #15 1.854 38450K .......... .......... .......... .......... .......... 30% 179M 2s -2024-03-16T16:52:08Z #15 1.854 38500K .......... .......... .......... .......... .......... 30% 157M 2s -2024-03-16T16:52:08Z #15 1.854 38550K .......... .......... .......... .......... .......... 30% 106M 2s -2024-03-16T16:52:08Z #15 1.854 38600K .......... .......... .......... .......... .......... 30% 150M 2s -2024-03-16T16:52:08Z #15 1.854 38650K .......... .......... .......... .......... .......... 30% 8.94M 2s -2024-03-16T16:52:08Z #15 1.862 38700K .......... .......... .......... .......... .......... 30% 175M 2s -2024-03-16T16:52:08Z #15 1.862 38750K .......... .......... .......... .......... .......... 30% 89.7M 2s -2024-03-16T16:52:08Z #15 1.862 38800K .......... .......... .......... .......... .......... 30% 173M 2s -2024-03-16T16:52:08Z #15 1.862 38850K .......... .......... .......... .......... .......... 30% 115M 2s -2024-03-16T16:52:08Z #15 1.862 38900K .......... .......... .......... .......... .......... 30% 113M 2s -2024-03-16T16:52:08Z #15 1.862 38950K .......... .......... .......... .......... .......... 30% 170M 2s -2024-03-16T16:52:08Z #15 1.862 39000K .......... .......... .......... .......... .......... 30% 16.3M 2s -2024-03-16T16:52:08Z #15 1.865 39050K .......... .......... .......... .......... .......... 30% 11.5M 2s -2024-03-16T16:52:08Z #15 1.869 39100K .......... .......... .......... .......... .......... 30% 21.0M 2s -2024-03-16T16:52:08Z #15 1.871 39150K .......... .......... .......... .......... .......... 30% 38.5M 2s -2024-03-16T16:52:08Z #15 1.874 39200K .......... .......... .......... .......... .......... 30% 80.1M 2s -2024-03-16T16:52:08Z #15 1.874 39250K .......... .......... .......... .......... .......... 30% 177M 2s -2024-03-16T16:52:08Z #15 1.874 39300K .......... .......... .......... .......... .......... 31% 102M 2s -2024-03-16T16:52:08Z #15 1.874 39350K .......... .......... .......... .......... .......... 31% 35.1M 2s -2024-03-16T16:52:08Z #15 1.875 39400K .......... .......... .......... .......... .......... 31% 35.9M 2s -2024-03-16T16:52:08Z #15 1.876 39450K .......... .......... .......... .......... .......... 31% 14.3M 2s -2024-03-16T16:52:08Z #15 1.880 39500K .......... .......... .......... .......... .......... 31% 45.7M 2s -2024-03-16T16:52:08Z #15 1.881 39550K .......... .......... .......... .......... .......... 31% 31.3M 2s -2024-03-16T16:52:08Z #15 1.882 39600K .......... .......... .......... .......... .......... 31% 25.6M 2s -2024-03-16T16:52:08Z #15 1.884 39650K .......... .......... .......... .......... .......... 31% 71.5M 2s -2024-03-16T16:52:08Z #15 1.885 39700K .......... .......... .......... .......... .......... 31% 118M 2s -2024-03-16T16:52:08Z #15 1.885 39750K .......... .......... .......... .......... .......... 31% 22.6M 2s -2024-03-16T16:52:08Z #15 1.888 39800K .......... .......... .......... .......... .......... 31% 22.0M 2s -2024-03-16T16:52:08Z #15 1.894 39850K .......... .......... .......... .......... .......... 31% 153M 2s -2024-03-16T16:52:08Z #15 1.894 39900K .......... .......... .......... .......... .......... 31% 142M 2s -2024-03-16T16:52:08Z #15 1.894 39950K .......... .......... .......... .......... .......... 31% 151M 2s -2024-03-16T16:52:08Z #15 1.894 40000K .......... .......... .......... .......... .......... 31% 69.7M 2s -2024-03-16T16:52:08Z #15 1.894 40050K .......... .......... .......... .......... .......... 31% 74.9M 2s -2024-03-16T16:52:08Z #15 1.894 40100K .......... .......... .......... .......... .......... 31% 126M 2s -2024-03-16T16:52:08Z #15 1.894 40150K .......... .......... .......... .......... .......... 31% 114M 2s -2024-03-16T16:52:08Z #15 1.894 40200K .......... .......... .......... .......... .......... 31% 103M 2s -2024-03-16T16:52:08Z #15 1.894 40250K .......... .......... .......... .......... .......... 31% 18.8M 2s -2024-03-16T16:52:08Z #15 1.896 40300K .......... .......... .......... .......... .......... 31% 43.0M 2s -2024-03-16T16:52:08Z #15 1.897 40350K .......... .......... .......... .......... .......... 31% 26.6M 2s -2024-03-16T16:52:08Z #15 1.899 40400K .......... .......... .......... .......... .......... 31% 70.6M 2s -2024-03-16T16:52:08Z #15 1.900 40450K .......... .......... .......... .......... .......... 31% 37.9M 2s -2024-03-16T16:52:08Z #15 1.901 40500K .......... .......... .......... .......... .......... 31% 30.8M 2s -2024-03-16T16:52:08Z #15 1.902 40550K .......... .......... .......... .......... .......... 32% 38.9M 2s -2024-03-16T16:52:08Z #15 1.904 40600K .......... .......... .......... .......... .......... 32% 51.9M 2s -2024-03-16T16:52:08Z #15 1.905 40650K .......... .......... .......... .......... .......... 32% 31.3M 2s -2024-03-16T16:52:08Z #15 1.906 40700K .......... .......... .......... .......... .......... 32% 72.3M 2s -2024-03-16T16:52:08Z #15 1.907 40750K .......... .......... .......... .......... .......... 32% 29.0M 2s -2024-03-16T16:52:08Z #15 1.909 40800K .......... .......... .......... .......... .......... 32% 24.0M 2s -2024-03-16T16:52:08Z #15 1.911 40850K .......... .......... .......... .......... .......... 32% 35.1M 2s -2024-03-16T16:52:08Z #15 1.912 40900K .......... .......... .......... .......... .......... 32% 36.9M 2s -2024-03-16T16:52:08Z #15 1.913 40950K .......... .......... .......... .......... .......... 32% 35.0M 2s -2024-03-16T16:52:08Z #15 1.915 41000K .......... .......... .......... .......... .......... 32% 23.6M 2s -2024-03-16T16:52:08Z #15 1.917 41050K .......... .......... .......... .......... .......... 32% 36.9M 2s -2024-03-16T16:52:08Z #15 1.918 41100K .......... .......... .......... .......... .......... 32% 49.6M 2s -2024-03-16T16:52:08Z #15 1.922 41150K .......... .......... .......... .......... .......... 32% 52.3M 2s -2024-03-16T16:52:08Z #15 1.922 41200K .......... .......... .......... .......... .......... 32% 37.1M 2s -2024-03-16T16:52:08Z #15 1.922 41250K .......... .......... .......... .......... .......... 32% 50.2M 2s -2024-03-16T16:52:08Z #15 1.922 41300K .......... .......... .......... .......... .......... 32% 47.6M 2s -2024-03-16T16:52:08Z #15 1.923 41350K .......... .......... .......... .......... .......... 32% 41.7M 2s -2024-03-16T16:52:08Z #15 1.930 41400K .......... .......... .......... .......... .......... 32% 38.3M 2s -2024-03-16T16:52:08Z #15 1.930 41450K .......... .......... .......... .......... .......... 32% 58.7M 2s -2024-03-16T16:52:08Z #15 1.930 41500K .......... .......... .......... .......... .......... 32% 55.6M 2s -2024-03-16T16:52:08Z #15 1.930 41550K .......... .......... .......... .......... .......... 32% 31.8M 2s -2024-03-16T16:52:08Z #15 1.930 41600K .......... .......... .......... .......... .......... 32% 53.2M 2s -2024-03-16T16:52:08Z #15 1.930 41650K .......... .......... .......... .......... .......... 32% 48.0M 2s -2024-03-16T16:52:08Z #15 1.931 41700K .......... .......... .......... .......... .......... 32% 84.2M 2s -2024-03-16T16:52:08Z #15 1.931 41750K .......... .......... .......... .......... .......... 32% 140M 2s -2024-03-16T16:52:08Z #15 1.932 41800K .......... .......... .......... .......... .......... 33% 60.4M 2s -2024-03-16T16:52:08Z #15 1.933 41850K .......... .......... .......... .......... .......... 33% 141M 2s -2024-03-16T16:52:08Z #15 1.933 41900K .......... .......... .......... .......... .......... 33% 140M 2s -2024-03-16T16:52:08Z #15 1.933 41950K .......... .......... .......... .......... .......... 33% 162M 2s -2024-03-16T16:52:08Z #15 1.934 42000K .......... .......... .......... .......... .......... 33% 125M 1s -2024-03-16T16:52:08Z #15 1.934 42050K .......... .......... .......... .......... .......... 33% 78.9M 1s -2024-03-16T16:52:08Z #15 1.934 42100K .......... .......... .......... .......... .......... 33% 157M 1s -2024-03-16T16:52:08Z #15 1.935 42150K .......... .......... .......... .......... .......... 33% 125M 1s -2024-03-16T16:52:08Z #15 1.935 42200K .......... .......... .......... .......... .......... 33% 80.6M 1s -2024-03-16T16:52:08Z #15 1.936 42250K .......... .......... .......... .......... .......... 33% 110M 1s -2024-03-16T16:52:08Z #15 1.936 42300K .......... .......... .......... .......... .......... 33% 138M 1s -2024-03-16T16:52:08Z #15 1.937 42350K .......... .......... .......... .......... .......... 33% 130M 1s -2024-03-16T16:52:08Z #15 1.937 42400K .......... .......... .......... .......... .......... 33% 86.5M 1s -2024-03-16T16:52:08Z #15 1.938 42450K .......... .......... .......... .......... .......... 33% 85.4M 1s -2024-03-16T16:52:08Z #15 1.938 42500K .......... .......... .......... .......... .......... 33% 70.5M 1s -2024-03-16T16:52:08Z #15 1.939 42550K .......... .......... .......... .......... .......... 33% 89.2M 1s -2024-03-16T16:52:08Z #15 1.939 42600K .......... .......... .......... .......... .......... 33% 36.1M 1s -2024-03-16T16:52:08Z #15 1.941 42650K .......... .......... .......... .......... .......... 33% 42.4M 1s -2024-03-16T16:52:08Z #15 1.946 42700K .......... .......... .......... .......... .......... 33% 59.9M 1s -2024-03-16T16:52:08Z #15 1.946 42750K .......... .......... .......... .......... .......... 33% 44.1M 1s -2024-03-16T16:52:08Z #15 1.946 42800K .......... .......... .......... .......... .......... 33% 47.6M 1s -2024-03-16T16:52:08Z #15 1.946 42850K .......... .......... .......... .......... .......... 33% 53.6M 1s -2024-03-16T16:52:08Z #15 1.946 42900K .......... .......... .......... .......... .......... 33% 81.1M 1s -2024-03-16T16:52:08Z #15 1.946 42950K .......... .......... .......... .......... .......... 33% 77.5M 1s -2024-03-16T16:52:08Z #15 1.947 43000K .......... .......... .......... .......... .......... 33% 87.4M 1s -2024-03-16T16:52:08Z #15 1.948 43050K .......... .......... .......... .......... .......... 33% 66.5M 1s -2024-03-16T16:52:08Z #15 1.948 43100K .......... .......... .......... .......... .......... 34% 105M 1s -2024-03-16T16:52:08Z #15 1.949 43150K .......... .......... .......... .......... .......... 34% 110M 1s -2024-03-16T16:52:08Z #15 1.949 43200K .......... .......... .......... .......... .......... 34% 144M 1s -2024-03-16T16:52:08Z #15 1.950 43250K .......... .......... .......... .......... .......... 34% 60.2M 1s -2024-03-16T16:52:08Z #15 1.950 43300K .......... .......... .......... .......... .......... 34% 115M 1s -2024-03-16T16:52:08Z #15 1.951 43350K .......... .......... .......... .......... .......... 34% 117M 1s -2024-03-16T16:52:08Z #15 1.951 43400K .......... .......... .......... .......... .......... 34% 134M 1s -2024-03-16T16:52:08Z #15 1.952 43450K .......... .......... .......... .......... .......... 34% 80.5M 1s -2024-03-16T16:52:08Z #15 1.954 43500K .......... .......... .......... .......... .......... 34% 130M 1s -2024-03-16T16:52:08Z #15 1.954 43550K .......... .......... .......... .......... .......... 34% 81.2M 1s -2024-03-16T16:52:08Z #15 1.954 43600K .......... .......... .......... .......... .......... 34% 176M 1s -2024-03-16T16:52:08Z #15 1.954 43650K .......... .......... .......... .......... .......... 34% 111M 1s -2024-03-16T16:52:08Z #15 1.954 43700K .......... .......... .......... .......... .......... 34% 96.6M 1s -2024-03-16T16:52:08Z #15 1.954 43750K .......... .......... .......... .......... .......... 34% 75.7M 1s -2024-03-16T16:52:08Z #15 1.955 43800K .......... .......... .......... .......... .......... 34% 127M 1s -2024-03-16T16:52:08Z #15 1.955 43850K .......... .......... .......... .......... .......... 34% 163M 1s -2024-03-16T16:52:08Z #15 1.956 43900K .......... .......... .......... .......... .......... 34% 89.8M 1s -2024-03-16T16:52:08Z #15 1.956 43950K .......... .......... .......... .......... .......... 34% 136M 1s -2024-03-16T16:52:08Z #15 1.957 44000K .......... .......... .......... .......... .......... 34% 137M 1s -2024-03-16T16:52:08Z #15 1.957 44050K .......... .......... .......... .......... .......... 34% 160M 1s -2024-03-16T16:52:08Z #15 1.957 44100K .......... .......... .......... .......... .......... 34% 164M 1s -2024-03-16T16:52:08Z #15 1.958 44150K .......... .......... .......... .......... .......... 34% 68.0M 1s -2024-03-16T16:52:08Z #15 1.958 44200K .......... .......... .......... .......... .......... 34% 139M 1s -2024-03-16T16:52:08Z #15 1.959 44250K .......... .......... .......... .......... .......... 34% 72.2M 1s -2024-03-16T16:52:08Z #15 1.959 44300K .......... .......... .......... .......... .......... 34% 140M 1s -2024-03-16T16:52:08Z #15 1.960 44350K .......... .......... .......... .......... .......... 35% 79.4M 1s -2024-03-16T16:52:08Z #15 1.960 44400K .......... .......... .......... .......... .......... 35% 152M 1s -2024-03-16T16:52:08Z #15 1.961 44450K .......... .......... .......... .......... .......... 35% 149M 1s -2024-03-16T16:52:08Z #15 1.961 44500K .......... .......... .......... .......... .......... 35% 130M 1s -2024-03-16T16:52:08Z #15 1.961 44550K .......... .......... .......... .......... .......... 35% 76.9M 1s -2024-03-16T16:52:08Z #15 1.962 44600K .......... .......... .......... .......... .......... 35% 129M 1s -2024-03-16T16:52:08Z #15 1.962 44650K .......... .......... .......... .......... .......... 35% 149M 1s -2024-03-16T16:52:08Z #15 1.963 44700K .......... .......... .......... .......... .......... 35% 74.5M 1s -2024-03-16T16:52:08Z #15 1.963 44750K .......... .......... .......... .......... .......... 35% 102M 1s -2024-03-16T16:52:08Z #15 1.964 44800K .......... .......... .......... .......... .......... 35% 92.0M 1s -2024-03-16T16:52:08Z #15 1.964 44850K .......... .......... .......... .......... .......... 35% 145M 1s -2024-03-16T16:52:08Z #15 1.965 44900K .......... .......... .......... .......... .......... 35% 159M 1s -2024-03-16T16:52:08Z #15 1.965 44950K .......... .......... .......... .......... .......... 35% 139M 1s -2024-03-16T16:52:08Z #15 1.965 45000K .......... .......... .......... .......... .......... 35% 81.2M 1s -2024-03-16T16:52:08Z #15 1.966 45050K .......... .......... .......... .......... .......... 35% 124M 1s -2024-03-16T16:52:08Z #15 1.966 45100K .......... .......... .......... .......... .......... 35% 151M 1s -2024-03-16T16:52:08Z #15 1.967 45150K .......... .......... .......... .......... .......... 35% 68.9M 1s -2024-03-16T16:52:08Z #15 1.967 45200K .......... .......... .......... .......... .......... 35% 152M 1s -2024-03-16T16:52:08Z #15 1.968 45250K .......... .......... .......... .......... .......... 35% 139M 1s -2024-03-16T16:52:08Z #15 1.968 45300K .......... .......... .......... .......... .......... 35% 88.6M 1s -2024-03-16T16:52:08Z #15 1.969 45350K .......... .......... .......... .......... .......... 35% 48.4M 1s -2024-03-16T16:52:08Z #15 1.970 45400K .......... .......... .......... .......... .......... 35% 90.1M 1s -2024-03-16T16:52:08Z #15 1.970 45450K .......... .......... .......... .......... .......... 35% 88.5M 1s -2024-03-16T16:52:08Z #15 1.971 45500K .......... .......... .......... .......... .......... 35% 68.0M 1s -2024-03-16T16:52:08Z #15 1.972 45550K .......... .......... .......... .......... .......... 35% 49.3M 1s -2024-03-16T16:52:08Z #15 1.972 45600K .......... .......... .......... .......... .......... 36% 75.3M 1s -2024-03-16T16:52:08Z #15 1.973 45650K .......... .......... .......... .......... .......... 36% 47.3M 1s -2024-03-16T16:52:08Z #15 1.974 45700K .......... .......... .......... .......... .......... 36% 55.0M 1s -2024-03-16T16:52:08Z #15 1.975 45750K .......... .......... .......... .......... .......... 36% 72.1M 1s -2024-03-16T16:52:08Z #15 1.976 45800K .......... .......... .......... .......... .......... 36% 73.9M 1s -2024-03-16T16:52:08Z #15 1.976 45850K .......... .......... .......... .......... .......... 36% 129M 1s -2024-03-16T16:52:08Z #15 1.977 45900K .......... .......... .......... .......... .......... 36% 84.4M 1s -2024-03-16T16:52:08Z #15 1.977 45950K .......... .......... .......... .......... .......... 36% 128M 1s -2024-03-16T16:52:08Z #15 1.978 46000K .......... .......... .......... .......... .......... 36% 74.4M 1s -2024-03-16T16:52:08Z #15 1.978 46050K .......... .......... .......... .......... .......... 36% 135M 1s -2024-03-16T16:52:08Z #15 1.979 46100K .......... .......... .......... .......... .......... 36% 68.8M 1s -2024-03-16T16:52:08Z #15 1.979 46150K .......... .......... .......... .......... .......... 36% 130M 1s -2024-03-16T16:52:08Z #15 1.980 46200K .......... .......... .......... .......... .......... 36% 78.7M 1s -2024-03-16T16:52:08Z #15 1.980 46250K .......... .......... .......... .......... .......... 36% 126M 1s -2024-03-16T16:52:08Z #15 1.981 46300K .......... .......... .......... .......... .......... 36% 127M 1s -2024-03-16T16:52:08Z #15 1.981 46350K .......... .......... .......... .......... .......... 36% 69.1M 1s -2024-03-16T16:52:08Z #15 1.982 46400K .......... .......... .......... .......... .......... 36% 92.1M 1s -2024-03-16T16:52:08Z #15 1.982 46450K .......... .......... .......... .......... .......... 36% 146M 1s -2024-03-16T16:52:08Z #15 1.983 46500K .......... .......... .......... .......... .......... 36% 148M 1s -2024-03-16T16:52:08Z #15 1.983 46550K .......... .......... .......... .......... .......... 36% 140M 1s -2024-03-16T16:52:08Z #15 1.983 46600K .......... .......... .......... .......... .......... 36% 116M 1s -2024-03-16T16:52:08Z #15 1.984 46650K .......... .......... .......... .......... .......... 36% 111M 1s -2024-03-16T16:52:08Z #15 1.984 46700K .......... .......... .......... .......... .......... 36% 67.8M 1s -2024-03-16T16:52:08Z #15 1.985 46750K .......... .......... .......... .......... .......... 36% 45.8M 1s -2024-03-16T16:52:08Z #15 1.986 46800K .......... .......... .......... .......... .......... 36% 79.0M 1s -2024-03-16T16:52:08Z #15 1.987 46850K .......... .......... .......... .......... .......... 36% 121M 1s -2024-03-16T16:52:08Z #15 1.987 46900K .......... .......... .......... .......... .......... 37% 61.6M 1s -2024-03-16T16:52:08Z #15 1.988 46950K .......... .......... .......... .......... .......... 37% 22.2M 1s -2024-03-16T16:52:08Z #15 1.990 47000K .......... .......... .......... .......... .......... 37% 48.5M 1s -2024-03-16T16:52:08Z #15 1.991 47050K .......... .......... .......... .......... .......... 37% 118M 1s -2024-03-16T16:52:08Z #15 1.991 47100K .......... .......... .......... .......... .......... 37% 38.4M 1s -2024-03-16T16:52:08Z #15 1.993 47150K .......... .......... .......... .......... .......... 37% 146M 1s -2024-03-16T16:52:08Z #15 1.993 47200K .......... .......... .......... .......... .......... 37% 71.3M 1s -2024-03-16T16:52:08Z #15 1.994 47250K .......... .......... .......... .......... .......... 37% 29.0M 1s -2024-03-16T16:52:08Z #15 1.995 47300K .......... .......... .......... .......... .......... 37% 125M 1s -2024-03-16T16:52:08Z #15 1.996 47350K .......... .......... .......... .......... .......... 37% 29.9M 1s -2024-03-16T16:52:08Z #15 1.997 47400K .......... .......... .......... .......... .......... 37% 27.2M 1s -2024-03-16T16:52:08Z #15 1.999 47450K .......... .......... .......... .......... .......... 37% 46.7M 1s -2024-03-16T16:52:08Z #15 2.000 47500K .......... .......... .......... .......... .......... 37% 124M 1s -2024-03-16T16:52:08Z #15 2.001 47550K .......... .......... .......... .......... .......... 37% 65.0M 1s -2024-03-16T16:52:08Z #15 2.001 47600K .......... .......... .......... .......... .......... 37% 24.7M 1s -2024-03-16T16:52:08Z #15 2.004 47650K .......... .......... .......... .......... .......... 37% 31.5M 1s -2024-03-16T16:52:08Z #15 2.005 47700K .......... .......... .......... .......... .......... 37% 75.3M 1s -2024-03-16T16:52:08Z #15 2.006 47750K .......... .......... .......... .......... .......... 37% 103M 1s -2024-03-16T16:52:08Z #15 2.006 47800K .......... .......... .......... .......... .......... 37% 109M 1s -2024-03-16T16:52:08Z #15 2.006 47850K .......... .......... .......... .......... .......... 37% 119M 1s -2024-03-16T16:52:08Z #15 2.007 47900K .......... .......... .......... .......... .......... 37% 114M 1s -2024-03-16T16:52:08Z #15 2.007 47950K .......... .......... .......... .......... .......... 37% 96.3M 1s -2024-03-16T16:52:08Z #15 2.008 48000K .......... .......... .......... .......... .......... 37% 135M 1s -2024-03-16T16:52:08Z #15 2.008 48050K .......... .......... .......... .......... .......... 37% 58.4M 1s -2024-03-16T16:52:08Z #15 2.009 48100K .......... .......... .......... .......... .......... 37% 85.3M 1s -2024-03-16T16:52:08Z #15 2.010 48150K .......... .......... .......... .......... .......... 38% 53.8M 1s -2024-03-16T16:52:08Z #15 2.011 48200K .......... .......... .......... .......... .......... 38% 113M 1s -2024-03-16T16:52:08Z #15 2.011 48250K .......... .......... .......... .......... .......... 38% 16.6M 1s -2024-03-16T16:52:08Z #15 2.015 48300K .......... .......... .......... .......... .......... 38% 102M 1s -2024-03-16T16:52:08Z #15 2.015 48350K .......... .......... .......... .......... .......... 38% 80.5M 1s -2024-03-16T16:52:08Z #15 2.015 48400K .......... .......... .......... .......... .......... 38% 85.2M 1s -2024-03-16T16:52:08Z #15 2.017 48450K .......... .......... .......... .......... .......... 38% 160M 1s -2024-03-16T16:52:08Z #15 2.017 48500K .......... .......... .......... .......... .......... 38% 116M 1s -2024-03-16T16:52:08Z #15 2.017 48550K .......... .......... .......... .......... .......... 38% 116M 1s -2024-03-16T16:52:08Z #15 2.017 48600K .......... .......... .......... .......... .......... 38% 63.5M 1s -2024-03-16T16:52:08Z #15 2.018 48650K .......... .......... .......... .......... .......... 38% 80.1M 1s -2024-03-16T16:52:08Z #15 2.019 48700K .......... .......... .......... .......... .......... 38% 110M 1s -2024-03-16T16:52:08Z #15 2.019 48750K .......... .......... .......... .......... .......... 38% 43.9M 1s -2024-03-16T16:52:08Z #15 2.022 48800K .......... .......... .......... .......... .......... 38% 6.00M 1s -2024-03-16T16:52:08Z #15 2.028 48850K .......... .......... .......... .......... .......... 38% 48.5M 1s -2024-03-16T16:52:08Z #15 2.030 48900K .......... .......... .......... .......... .......... 38% 139M 1s -2024-03-16T16:52:08Z #15 2.030 48950K .......... .......... .......... .......... .......... 38% 150M 1s -2024-03-16T16:52:08Z #15 2.030 49000K .......... .......... .......... .......... .......... 38% 61.5M 1s -2024-03-16T16:52:08Z #15 2.032 49050K .......... .......... .......... .......... .......... 38% 157M 1s -2024-03-16T16:52:08Z #15 2.032 49100K .......... .......... .......... .......... .......... 38% 141M 1s -2024-03-16T16:52:08Z #15 2.032 49150K .......... .......... .......... .......... .......... 38% 171M 1s -2024-03-16T16:52:08Z #15 2.032 49200K .......... .......... .......... .......... .......... 38% 132M 1s -2024-03-16T16:52:08Z #15 2.032 49250K .......... .......... .......... .......... .......... 38% 20.2M 1s -2024-03-16T16:52:08Z #15 2.034 49300K .......... .......... .......... .......... .......... 38% 84.3M 1s -2024-03-16T16:52:08Z #15 2.035 49350K .......... .......... .......... .......... .......... 38% 42.3M 1s -2024-03-16T16:52:08Z #15 2.036 49400K .......... .......... .......... .......... .......... 39% 19.4M 1s -2024-03-16T16:52:08Z #15 2.038 49450K .......... .......... .......... .......... .......... 39% 29.0M 1s -2024-03-16T16:52:08Z #15 2.040 49500K .......... .......... .......... .......... .......... 39% 35.4M 1s -2024-03-16T16:52:08Z #15 2.041 49550K .......... .......... .......... .......... .......... 39% 35.9M 1s -2024-03-16T16:52:08Z #15 2.043 49600K .......... .......... .......... .......... .......... 39% 34.8M 1s -2024-03-16T16:52:08Z #15 2.044 49650K .......... .......... .......... .......... .......... 39% 57.2M 1s -2024-03-16T16:52:08Z #15 2.045 49700K .......... .......... .......... .......... .......... 39% 42.8M 1s -2024-03-16T16:52:08Z #15 2.046 49750K .......... .......... .......... .......... .......... 39% 66.1M 1s -2024-03-16T16:52:08Z #15 2.047 49800K .......... .......... .......... .......... .......... 39% 15.6M 1s -2024-03-16T16:52:08Z #15 2.050 49850K .......... .......... .......... .......... .......... 39% 27.4M 1s -2024-03-16T16:52:08Z #15 2.052 49900K .......... .......... .......... .......... .......... 39% 24.9M 1s -2024-03-16T16:52:08Z #15 2.054 49950K .......... .......... .......... .......... .......... 39% 21.9M 1s -2024-03-16T16:52:08Z #15 2.058 50000K .......... .......... .......... .......... .......... 39% 88.2M 1s -2024-03-16T16:52:08Z #15 2.058 50050K .......... .......... .......... .......... .......... 39% 158M 1s -2024-03-16T16:52:08Z #15 2.058 50100K .......... .......... .......... .......... .......... 39% 138M 1s -2024-03-16T16:52:08Z #15 2.058 50150K .......... .......... .......... .......... .......... 39% 168M 1s -2024-03-16T16:52:08Z #15 2.058 50200K .......... .......... .......... .......... .......... 39% 33.0M 1s -2024-03-16T16:52:08Z #15 2.059 50250K .......... .......... .......... .......... .......... 39% 19.0M 1s -2024-03-16T16:52:08Z #15 2.066 50300K .......... .......... .......... .......... .......... 39% 31.1M 1s -2024-03-16T16:52:08Z #15 2.066 50350K .......... .......... .......... .......... .......... 39% 27.1M 1s -2024-03-16T16:52:08Z #15 2.066 50400K .......... .......... .......... .......... .......... 39% 48.5M 1s -2024-03-16T16:52:08Z #15 2.066 50450K .......... .......... .......... .......... .......... 39% 124M 1s -2024-03-16T16:52:08Z #15 2.066 50500K .......... .......... .......... .......... .......... 39% 61.7M 1s -2024-03-16T16:52:08Z #15 2.067 50550K .......... .......... .......... .......... .......... 39% 19.2M 1s -2024-03-16T16:52:08Z #15 2.075 50600K .......... .......... .......... .......... .......... 39% 38.9M 1s -2024-03-16T16:52:08Z #15 2.075 50650K .......... .......... .......... .......... .......... 39% 31.6M 1s -2024-03-16T16:52:08Z #15 2.075 50700K .......... .......... .......... .......... .......... 40% 33.8M 1s -2024-03-16T16:52:08Z #15 2.075 50750K .......... .......... .......... .......... .......... 40% 32.1M 1s -2024-03-16T16:52:08Z #15 2.076 50800K .......... .......... .......... .......... .......... 40% 96.8M 1s -2024-03-16T16:52:08Z #15 2.076 50850K .......... .......... .......... .......... .......... 40% 35.3M 1s -2024-03-16T16:52:08Z #15 2.077 50900K .......... .......... .......... .......... .......... 40% 29.1M 1s -2024-03-16T16:52:08Z #15 2.080 50950K .......... .......... .......... .......... .......... 40% 49.7M 1s -2024-03-16T16:52:08Z #15 2.080 51000K .......... .......... .......... .......... .......... 40% 34.0M 1s -2024-03-16T16:52:08Z #15 2.081 51050K .......... .......... .......... .......... .......... 40% 27.8M 1s -2024-03-16T16:52:08Z #15 2.083 51100K .......... .......... .......... .......... .......... 40% 36.6M 1s -2024-03-16T16:52:08Z #15 2.086 51150K .......... .......... .......... .......... .......... 40% 47.8M 1s -2024-03-16T16:52:08Z #15 2.086 51200K .......... .......... .......... .......... .......... 40% 21.6M 1s -2024-03-16T16:52:08Z #15 2.088 51250K .......... .......... .......... .......... .......... 40% 74.9M 1s -2024-03-16T16:52:08Z #15 2.088 51300K .......... .......... .......... .......... .......... 40% 49.2M 1s -2024-03-16T16:52:08Z #15 2.090 51350K .......... .......... .......... .......... .......... 40% 48.3M 1s -2024-03-16T16:52:08Z #15 2.090 51400K .......... .......... .......... .......... .......... 40% 109M 1s -2024-03-16T16:52:08Z #15 2.092 51450K .......... .......... .......... .......... .......... 40% 73.0M 1s -2024-03-16T16:52:08Z #15 2.092 51500K .......... .......... .......... .......... .......... 40% 76.1M 1s -2024-03-16T16:52:08Z #15 2.092 51550K .......... .......... .......... .......... .......... 40% 28.6M 1s -2024-03-16T16:52:08Z #15 2.095 51600K .......... .......... .......... .......... .......... 40% 127M 1s -2024-03-16T16:52:08Z #15 2.095 51650K .......... .......... .......... .......... .......... 40% 96.9M 1s -2024-03-16T16:52:08Z #15 2.095 51700K .......... .......... .......... .......... .......... 40% 34.8M 1s -2024-03-16T16:52:08Z #15 2.096 51750K .......... .......... .......... .......... .......... 40% 54.0M 1s -2024-03-16T16:52:08Z #15 2.097 51800K .......... .......... .......... .......... .......... 40% 49.8M 1s -2024-03-16T16:52:08Z #15 2.102 51850K .......... .......... .......... .......... .......... 40% 175M 1s -2024-03-16T16:52:08Z #15 2.102 51900K .......... .......... .......... .......... .......... 40% 145M 1s -2024-03-16T16:52:08Z #15 2.102 51950K .......... .......... .......... .......... .......... 41% 129M 1s -2024-03-16T16:52:08Z #15 2.102 52000K .......... .......... .......... .......... .......... 41% 131M 1s -2024-03-16T16:52:08Z #15 2.102 52050K .......... .......... .......... .......... .......... 41% 148M 1s -2024-03-16T16:52:08Z #15 2.102 52100K .......... .......... .......... .......... .......... 41% 175M 1s -2024-03-16T16:52:08Z #15 2.102 52150K .......... .......... .......... .......... .......... 41% 122M 1s -2024-03-16T16:52:08Z #15 2.102 52200K .......... .......... .......... .......... .......... 41% 150M 1s -2024-03-16T16:52:08Z #15 2.102 52250K .......... .......... .......... .......... .......... 41% 154M 1s -2024-03-16T16:52:08Z #15 2.102 52300K .......... .......... .......... .......... .......... 41% 133M 1s -2024-03-16T16:52:08Z #15 2.102 52350K .......... .......... .......... .......... .......... 41% 48.9M 1s -2024-03-16T16:52:08Z #15 2.102 52400K .......... .......... .......... .......... .......... 41% 41.0M 1s -2024-03-16T16:52:08Z #15 2.104 52450K .......... .......... .......... .......... .......... 41% 43.8M 1s -2024-03-16T16:52:08Z #15 2.105 52500K .......... .......... .......... .......... .......... 41% 41.2M 1s -2024-03-16T16:52:08Z #15 2.106 52550K .......... .......... .......... .......... .......... 41% 41.4M 1s -2024-03-16T16:52:08Z #15 2.107 52600K .......... .......... .......... .......... .......... 41% 45.0M 1s -2024-03-16T16:52:08Z #15 2.108 52650K .......... .......... .......... .......... .......... 41% 31.5M 1s -2024-03-16T16:52:08Z #15 2.110 52700K .......... .......... .......... .......... .......... 41% 29.7M 1s -2024-03-16T16:52:08Z #15 2.112 52750K .......... .......... .......... .......... .......... 41% 78.0M 1s -2024-03-16T16:52:08Z #15 2.112 52800K .......... .......... .......... .......... .......... 41% 41.3M 1s -2024-03-16T16:52:08Z #15 2.113 52850K .......... .......... .......... .......... .......... 41% 38.5M 1s -2024-03-16T16:52:08Z #15 2.115 52900K .......... .......... .......... .......... .......... 41% 40.0M 1s -2024-03-16T16:52:08Z #15 2.116 52950K .......... .......... .......... .......... .......... 41% 47.9M 1s -2024-03-16T16:52:08Z #15 2.117 53000K .......... .......... .......... .......... .......... 41% 51.9M 1s -2024-03-16T16:52:08Z #15 2.118 53050K .......... .......... .......... .......... .......... 41% 124M 1s -2024-03-16T16:52:08Z #15 2.118 53100K .......... .......... .......... .......... .......... 41% 40.9M 1s -2024-03-16T16:52:08Z #15 2.119 53150K .......... .......... .......... .......... .......... 41% 29.8M 1s -2024-03-16T16:52:08Z #15 2.121 53200K .......... .......... .......... .......... .......... 42% 31.3M 1s -2024-03-16T16:52:08Z #15 2.126 53250K .......... .......... .......... .......... .......... 42% 163M 1s -2024-03-16T16:52:08Z #15 2.126 53300K .......... .......... .......... .......... .......... 42% 143M 1s -2024-03-16T16:52:08Z #15 2.126 53350K .......... .......... .......... .......... .......... 42% 139M 1s -2024-03-16T16:52:08Z #15 2.126 53400K .......... .......... .......... .......... .......... 42% 138M 1s -2024-03-16T16:52:08Z #15 2.126 53450K .......... .......... .......... .......... .......... 42% 153M 1s -2024-03-16T16:52:08Z #15 2.126 53500K .......... .......... .......... .......... .......... 42% 185M 1s -2024-03-16T16:52:08Z #15 2.126 53550K .......... .......... .......... .......... .......... 42% 130M 1s -2024-03-16T16:52:08Z #15 2.126 53600K .......... .......... .......... .......... .......... 42% 146M 1s -2024-03-16T16:52:08Z #15 2.126 53650K .......... .......... .......... .......... .......... 42% 166M 1s -2024-03-16T16:52:08Z #15 2.126 53700K .......... .......... .......... .......... .......... 42% 166M 1s -2024-03-16T16:52:08Z #15 2.126 53750K .......... .......... .......... .......... .......... 42% 22.9M 1s -2024-03-16T16:52:08Z #15 2.128 53800K .......... .......... .......... .......... .......... 42% 32.1M 1s -2024-03-16T16:52:08Z #15 2.129 53850K .......... .......... .......... .......... .......... 42% 31.8M 1s -2024-03-16T16:52:08Z #15 2.131 53900K .......... .......... .......... .......... .......... 42% 41.9M 1s -2024-03-16T16:52:08Z #15 2.132 53950K .......... .......... .......... .......... .......... 42% 33.8M 1s -2024-03-16T16:52:08Z #15 2.134 54000K .......... .......... .......... .......... .......... 42% 31.8M 1s -2024-03-16T16:52:08Z #15 2.135 54050K .......... .......... .......... .......... .......... 42% 92.8M 1s -2024-03-16T16:52:08Z #15 2.136 54100K .......... .......... .......... .......... .......... 42% 30.2M 1s -2024-03-16T16:52:08Z #15 2.138 54150K .......... .......... .......... .......... .......... 42% 31.2M 1s -2024-03-16T16:52:08Z #15 2.139 54200K .......... .......... .......... .......... .......... 42% 39.4M 1s -2024-03-16T16:52:08Z #15 2.140 54250K .......... .......... .......... .......... .......... 42% 41.8M 1s -2024-03-16T16:52:08Z #15 2.141 54300K .......... .......... .......... .......... .......... 42% 38.2M 1s -2024-03-16T16:52:08Z #15 2.143 54350K .......... .......... .......... .......... .......... 42% 36.5M 1s -2024-03-16T16:52:08Z #15 2.144 54400K .......... .......... .......... .......... .......... 42% 38.3M 1s -2024-03-16T16:52:08Z #15 2.146 54450K .......... .......... .......... .......... .......... 42% 92.8M 1s -2024-03-16T16:52:08Z #15 2.146 54500K .......... .......... .......... .......... .......... 43% 80.8M 1s -2024-03-16T16:52:08Z #15 2.146 54550K .......... .......... .......... .......... .......... 43% 21.1M 1s -2024-03-16T16:52:08Z #15 2.149 54600K .......... .......... .......... .......... .......... 43% 74.4M 1s -2024-03-16T16:52:08Z #15 2.149 54650K .......... .......... .......... .......... .......... 43% 24.1M 1s -2024-03-16T16:52:08Z #15 2.151 54700K .......... .......... .......... .......... .......... 43% 54.3M 1s -2024-03-16T16:52:08Z #15 2.152 54750K .......... .......... .......... .......... .......... 43% 31.8M 1s -2024-03-16T16:52:08Z #15 2.154 54800K .......... .......... .......... .......... .......... 43% 27.2M 1s -2024-03-16T16:52:08Z #15 2.158 54850K .......... .......... .......... .......... .......... 43% 154M 1s -2024-03-16T16:52:08Z #15 2.158 54900K .......... .......... .......... .......... .......... 43% 149M 1s -2024-03-16T16:52:08Z #15 2.158 54950K .......... .......... .......... .......... .......... 43% 136M 1s -2024-03-16T16:52:08Z #15 2.158 55000K .......... .......... .......... .......... .......... 43% 169M 1s -2024-03-16T16:52:08Z #15 2.158 55050K .......... .......... .......... .......... .......... 43% 167M 1s -2024-03-16T16:52:08Z #15 2.158 55100K .......... .......... .......... .......... .......... 43% 135M 1s -2024-03-16T16:52:08Z #15 2.158 55150K .......... .......... .......... .......... .......... 43% 91.4M 1s -2024-03-16T16:52:08Z #15 2.158 55200K .......... .......... .......... .......... .......... 43% 19.0M 1s -2024-03-16T16:52:08Z #15 2.160 55250K .......... .......... .......... .......... .......... 43% 30.9M 1s -2024-03-16T16:52:08Z #15 2.163 55300K .......... .......... .......... .......... .......... 43% 47.2M 1s -2024-03-16T16:52:08Z #15 2.163 55350K .......... .......... .......... .......... .......... 43% 41.0M 1s -2024-03-16T16:52:08Z #15 2.164 55400K .......... .......... .......... .......... .......... 43% 47.9M 1s -2024-03-16T16:52:08Z #15 2.165 55450K .......... .......... .......... .......... .......... 43% 55.4M 1s -2024-03-16T16:52:08Z #15 2.166 55500K .......... .......... .......... .......... .......... 43% 48.4M 1s -2024-03-16T16:52:08Z #15 2.167 55550K .......... .......... .......... .......... .......... 43% 56.5M 1s -2024-03-16T16:52:08Z #15 2.168 55600K .......... .......... .......... .......... .......... 43% 56.0M 1s -2024-03-16T16:52:08Z #15 2.169 55650K .......... .......... .......... .......... .......... 43% 127M 1s -2024-03-16T16:52:08Z #15 2.169 55700K .......... .......... .......... .......... .......... 43% 40.9M 1s -2024-03-16T16:52:08Z #15 2.171 55750K .......... .......... .......... .......... .......... 44% 42.2M 1s -2024-03-16T16:52:08Z #15 2.172 55800K .......... .......... .......... .......... .......... 44% 60.3M 1s -2024-03-16T16:52:08Z #15 2.172 55850K .......... .......... .......... .......... .......... 44% 45.2M 1s -2024-03-16T16:52:08Z #15 2.174 55900K .......... .......... .......... .......... .......... 44% 51.1M 1s -2024-03-16T16:52:08Z #15 2.175 55950K .......... .......... .......... .......... .......... 44% 72.6M 1s -2024-03-16T16:52:08Z #15 2.175 56000K .......... .......... .......... .......... .......... 44% 44.0M 1s -2024-03-16T16:52:08Z #15 2.176 56050K .......... .......... .......... .......... .......... 44% 32.5M 1s -2024-03-16T16:52:08Z #15 2.178 56100K .......... .......... .......... .......... .......... 44% 79.6M 1s -2024-03-16T16:52:08Z #15 2.178 56150K .......... .......... .......... .......... .......... 44% 45.7M 1s -2024-03-16T16:52:08Z #15 2.179 56200K .......... .......... .......... .......... .......... 44% 39.9M 1s -2024-03-16T16:52:08Z #15 2.181 56250K .......... .......... .......... .......... .......... 44% 44.1M 1s -2024-03-16T16:52:08Z #15 2.183 56300K .......... .......... .......... .......... .......... 44% 55.6M 1s -2024-03-16T16:52:08Z #15 2.183 56350K .......... .......... .......... .......... .......... 44% 41.9M 1s -2024-03-16T16:52:08Z #15 2.184 56400K .......... .......... .......... .......... .......... 44% 56.9M 1s -2024-03-16T16:52:08Z #15 2.185 56450K .......... .......... .......... .......... .......... 44% 49.1M 1s -2024-03-16T16:52:08Z #15 2.186 56500K .......... .......... .......... .......... .......... 44% 30.1M 1s -2024-03-16T16:52:08Z #15 2.188 56550K .......... .......... .......... .......... .......... 44% 36.9M 1s -2024-03-16T16:52:08Z #15 2.189 56600K .......... .......... .......... .......... .......... 44% 35.3M 1s -2024-03-16T16:52:08Z #15 2.190 56650K .......... .......... .......... .......... .......... 44% 54.4M 1s -2024-03-16T16:52:08Z #15 2.191 56700K .......... .......... .......... .......... .......... 44% 40.5M 1s -2024-03-16T16:52:08Z #15 2.193 56750K .......... .......... .......... .......... .......... 44% 33.9M 1s -2024-03-16T16:52:08Z #15 2.194 56800K .......... .......... .......... .......... .......... 44% 31.0M 1s -2024-03-16T16:52:08Z #15 2.195 56850K .......... .......... .......... .......... .......... 44% 61.0M 1s -2024-03-16T16:52:08Z #15 2.196 56900K .......... .......... .......... .......... .......... 44% 38.0M 1s -2024-03-16T16:52:08Z #15 2.197 56950K .......... .......... .......... .......... .......... 44% 40.7M 1s -2024-03-16T16:52:08Z #15 2.202 57000K .......... .......... .......... .......... .......... 44% 153M 1s -2024-03-16T16:52:08Z #15 2.202 57050K .......... .......... .......... .......... .......... 45% 141M 1s -2024-03-16T16:52:08Z #15 2.202 57100K .......... .......... .......... .......... .......... 45% 128M 1s -2024-03-16T16:52:08Z #15 2.202 57150K .......... .......... .......... .......... .......... 45% 123M 1s -2024-03-16T16:52:08Z #15 2.202 57200K .......... .......... .......... .......... .......... 45% 162M 1s -2024-03-16T16:52:08Z #15 2.202 57250K .......... .......... .......... .......... .......... 45% 140M 1s -2024-03-16T16:52:08Z #15 2.202 57300K .......... .......... .......... .......... .......... 45% 150M 1s -2024-03-16T16:52:08Z #15 2.202 57350K .......... .......... .......... .......... .......... 45% 162M 1s -2024-03-16T16:52:08Z #15 2.202 57400K .......... .......... .......... .......... .......... 45% 153M 1s -2024-03-16T16:52:08Z #15 2.202 57450K .......... .......... .......... .......... .......... 45% 79.2M 1s -2024-03-16T16:52:08Z #15 2.202 57500K .......... .......... .......... .......... .......... 45% 34.4M 1s -2024-03-16T16:52:08Z #15 2.204 57550K .......... .......... .......... .......... .......... 45% 39.4M 1s -2024-03-16T16:52:08Z #15 2.205 57600K .......... .......... .......... .......... .......... 45% 42.3M 1s -2024-03-16T16:52:08Z #15 2.206 57650K .......... .......... .......... .......... .......... 45% 44.3M 1s -2024-03-16T16:52:08Z #15 2.208 57700K .......... .......... .......... .......... .......... 45% 106M 1s -2024-03-16T16:52:08Z #15 2.208 57750K .......... .......... .......... .......... .......... 45% 56.6M 1s -2024-03-16T16:52:08Z #15 2.208 57800K .......... .......... .......... .......... .......... 45% 49.5M 1s -2024-03-16T16:52:08Z #15 2.209 57850K .......... .......... .......... .......... .......... 45% 40.3M 1s -2024-03-16T16:52:08Z #15 2.210 57900K .......... .......... .......... .......... .......... 45% 66.5M 1s -2024-03-16T16:52:08Z #15 2.214 57950K .......... .......... .......... .......... .......... 45% 122M 1s -2024-03-16T16:52:08Z #15 2.214 58000K .......... .......... .......... .......... .......... 45% 140M 1s -2024-03-16T16:52:08Z #15 2.214 58050K .......... .......... .......... .......... .......... 45% 146M 1s -2024-03-16T16:52:08Z #15 2.214 58100K .......... .......... .......... .......... .......... 45% 142M 1s -2024-03-16T16:52:08Z #15 2.214 58150K .......... .......... .......... .......... .......... 45% 139M 1s -2024-03-16T16:52:08Z #15 2.214 58200K .......... .......... .......... .......... .......... 45% 145M 1s -2024-03-16T16:52:08Z #15 2.214 58250K .......... .......... .......... .......... .......... 45% 139M 1s -2024-03-16T16:52:08Z #15 2.214 58300K .......... .......... .......... .......... .......... 46% 40.2M 1s -2024-03-16T16:52:08Z #15 2.215 58350K .......... .......... .......... .......... .......... 46% 43.2M 1s -2024-03-16T16:52:08Z #15 2.216 58400K .......... .......... .......... .......... .......... 46% 28.1M 1s -2024-03-16T16:52:08Z #15 2.218 58450K .......... .......... .......... .......... .......... 46% 35.7M 1s -2024-03-16T16:52:08Z #15 2.219 58500K .......... .......... .......... .......... .......... 46% 40.7M 1s -2024-03-16T16:52:08Z #15 2.225 58550K .......... .......... .......... .......... .......... 46% 45.4M 1s -2024-03-16T16:52:08Z #15 2.225 58600K .......... .......... .......... .......... .......... 46% 52.3M 1s -2024-03-16T16:52:08Z #15 2.225 58650K .......... .......... .......... .......... .......... 46% 47.6M 1s -2024-03-16T16:52:08Z #15 2.225 58700K .......... .......... .......... .......... .......... 46% 55.8M 1s -2024-03-16T16:52:08Z #15 2.225 58750K .......... .......... .......... .......... .......... 46% 89.0M 1s -2024-03-16T16:52:08Z #15 2.225 58800K .......... .......... .......... .......... .......... 46% 117M 1s -2024-03-16T16:52:08Z #15 2.225 58850K .......... .......... .......... .......... .......... 46% 66.3M 1s -2024-03-16T16:52:08Z #15 2.226 58900K .......... .......... .......... .......... .......... 46% 51.3M 1s -2024-03-16T16:52:08Z #15 2.227 58950K .......... .......... .......... .......... .......... 46% 28.8M 1s -2024-03-16T16:52:08Z #15 2.229 59000K .......... .......... .......... .......... .......... 46% 35.2M 1s -2024-03-16T16:52:08Z #15 2.230 59050K .......... .......... .......... .......... .......... 46% 49.6M 1s -2024-03-16T16:52:08Z #15 2.234 59100K .......... .......... .......... .......... .......... 46% 47.3M 1s -2024-03-16T16:52:08Z #15 2.234 59150K .......... .......... .......... .......... .......... 46% 31.0M 1s -2024-03-16T16:52:08Z #15 2.234 59200K .......... .......... .......... .......... .......... 46% 37.3M 1s -2024-03-16T16:52:08Z #15 2.235 59250K .......... .......... .......... .......... .......... 46% 41.3M 1s -2024-03-16T16:52:08Z #15 2.236 59300K .......... .......... .......... .......... .......... 46% 41.9M 1s -2024-03-16T16:52:08Z #15 2.237 59350K .......... .......... .......... .......... .......... 46% 41.8M 1s -2024-03-16T16:52:08Z #15 2.240 59400K .......... .......... .......... .......... .......... 46% 123M 1s -2024-03-16T16:52:08Z #15 2.240 59450K .......... .......... .......... .......... .......... 46% 126M 1s -2024-03-16T16:52:08Z #15 2.240 59500K .......... .......... .......... .......... .......... 46% 121M 1s -2024-03-16T16:52:08Z #15 2.240 59550K .......... .......... .......... .......... .......... 47% 40.4M 1s -2024-03-16T16:52:08Z #15 2.241 59600K .......... .......... .......... .......... .......... 47% 33.8M 1s -2024-03-16T16:52:08Z #15 2.242 59650K .......... .......... .......... .......... .......... 47% 58.4M 1s -2024-03-16T16:52:08Z #15 2.245 59700K .......... .......... .......... .......... .......... 47% 137M 1s -2024-03-16T16:52:08Z #15 2.245 59750K .......... .......... .......... .......... .......... 47% 124M 1s -2024-03-16T16:52:08Z #15 2.245 59800K .......... .......... .......... .......... .......... 47% 148M 1s -2024-03-16T16:52:08Z #15 2.245 59850K .......... .......... .......... .......... .......... 47% 157M 1s -2024-03-16T16:52:08Z #15 2.245 59900K .......... .......... .......... .......... .......... 47% 168M 1s -2024-03-16T16:52:08Z #15 2.245 59950K .......... .......... .......... .......... .......... 47% 112M 1s -2024-03-16T16:52:08Z #15 2.245 60000K .......... .......... .......... .......... .......... 47% 24.6M 1s -2024-03-16T16:52:08Z #15 2.247 60050K .......... .......... .......... .......... .......... 47% 46.5M 1s -2024-03-16T16:52:08Z #15 2.248 60100K .......... .......... .......... .......... .......... 47% 82.5M 1s -2024-03-16T16:52:08Z #15 2.250 60150K .......... .......... .......... .......... .......... 47% 144M 1s -2024-03-16T16:52:08Z #15 2.250 60200K .......... .......... .......... .......... .......... 47% 135M 1s -2024-03-16T16:52:08Z #15 2.250 60250K .......... .......... .......... .......... .......... 47% 134M 1s -2024-03-16T16:52:08Z #15 2.250 60300K .......... .......... .......... .......... .......... 47% 141M 1s -2024-03-16T16:52:08Z #15 2.250 60350K .......... .......... .......... .......... .......... 47% 125M 1s -2024-03-16T16:52:08Z #15 2.251 60400K .......... .......... .......... .......... .......... 47% 24.9M 1s -2024-03-16T16:52:08Z #15 2.253 60450K .......... .......... .......... .......... .......... 47% 49.2M 1s -2024-03-16T16:52:08Z #15 2.258 60500K .......... .......... .......... .......... .......... 47% 72.6M 1s -2024-03-16T16:52:08Z #15 2.258 60550K .......... .......... .......... .......... .......... 47% 138M 1s -2024-03-16T16:52:08Z #15 2.258 60600K .......... .......... .......... .......... .......... 47% 116M 1s -2024-03-16T16:52:08Z #15 2.258 60650K .......... .......... .......... .......... .......... 47% 157M 1s -2024-03-16T16:52:08Z #15 2.258 60700K .......... .......... .......... .......... .......... 47% 168M 1s -2024-03-16T16:52:08Z #15 2.258 60750K .......... .......... .......... .......... .......... 47% 160M 1s -2024-03-16T16:52:08Z #15 2.258 60800K .......... .......... .......... .......... .......... 47% 161M 1s -2024-03-16T16:52:08Z #15 2.258 60850K .......... .......... .......... .......... .......... 48% 155M 1s -2024-03-16T16:52:08Z #15 2.258 60900K .......... .......... .......... .......... .......... 48% 165M 1s -2024-03-16T16:52:08Z #15 2.258 60950K .......... .......... .......... .......... .......... 48% 175M 1s -2024-03-16T16:52:08Z #15 2.258 61000K .......... .......... .......... .......... .......... 48% 195M 1s -2024-03-16T16:52:08Z #15 2.258 61050K .......... .......... .......... .......... .......... 48% 122M 1s -2024-03-16T16:52:08Z #15 2.258 61100K .......... .......... .......... .......... .......... 48% 25.5M 1s -2024-03-16T16:52:08Z #15 2.260 61150K .......... .......... .......... .......... .......... 48% 37.1M 1s -2024-03-16T16:52:08Z #15 2.266 61200K .......... .......... .......... .......... .......... 48% 126M 1s -2024-03-16T16:52:08Z #15 2.266 61250K .......... .......... .......... .......... .......... 48% 200M 1s -2024-03-16T16:52:08Z #15 2.266 61300K .......... .......... .......... .......... .......... 48% 158M 1s -2024-03-16T16:52:08Z #15 2.266 61350K .......... .......... .......... .......... .......... 48% 136M 1s -2024-03-16T16:52:08Z #15 2.266 61400K .......... .......... .......... .......... .......... 48% 146M 1s -2024-03-16T16:52:08Z #15 2.266 61450K .......... .......... .......... .......... .......... 48% 224M 1s -2024-03-16T16:52:08Z #15 2.266 61500K .......... .......... .......... .......... .......... 48% 168M 1s -2024-03-16T16:52:08Z #15 2.266 61550K .......... .......... .......... .......... .......... 48% 159M 1s -2024-03-16T16:52:08Z #15 2.266 61600K .......... .......... .......... .......... .......... 48% 176M 1s -2024-03-16T16:52:08Z #15 2.266 61650K .......... .......... .......... .......... .......... 48% 146M 1s -2024-03-16T16:52:08Z #15 2.266 61700K .......... .......... .......... .......... .......... 48% 189M 1s -2024-03-16T16:52:08Z #15 2.266 61750K .......... .......... .......... .......... .......... 48% 169M 1s -2024-03-16T16:52:08Z #15 2.266 61800K .......... .......... .......... .......... .......... 48% 196M 1s -2024-03-16T16:52:08Z #15 2.266 61850K .......... .......... .......... .......... .......... 48% 161M 1s -2024-03-16T16:52:08Z #15 2.266 61900K .......... .......... .......... .......... .......... 48% 196M 1s -2024-03-16T16:52:08Z #15 2.266 61950K .......... .......... .......... .......... .......... 48% 120M 1s -2024-03-16T16:52:08Z #15 2.266 62000K .......... .......... .......... .......... .......... 48% 24.8M 1s -2024-03-16T16:52:08Z #15 2.268 62050K .......... .......... .......... .......... .......... 48% 41.4M 1s -2024-03-16T16:52:08Z #15 2.269 62100K .......... .......... .......... .......... .......... 49% 77.1M 1s -2024-03-16T16:52:08Z #15 2.270 62150K .......... .......... .......... .......... .......... 49% 35.8M 1s -2024-03-16T16:52:08Z #15 2.271 62200K .......... .......... .......... .......... .......... 49% 87.9M 1s -2024-03-16T16:52:08Z #15 2.272 62250K .......... .......... .......... .......... .......... 49% 38.3M 1s -2024-03-16T16:52:08Z #15 2.273 62300K .......... .......... .......... .......... .......... 49% 44.7M 1s -2024-03-16T16:52:08Z #15 2.274 62350K .......... .......... .......... .......... .......... 49% 43.3M 1s -2024-03-16T16:52:08Z #15 2.275 62400K .......... .......... .......... .......... .......... 49% 54.0M 1s -2024-03-16T16:52:08Z #15 2.276 62450K .......... .......... .......... .......... .......... 49% 58.1M 1s -2024-03-16T16:52:08Z #15 2.278 62500K .......... .......... .......... .......... .......... 49% 102M 1s -2024-03-16T16:52:08Z #15 2.278 62550K .......... .......... .......... .......... .......... 49% 140M 1s -2024-03-16T16:52:08Z #15 2.278 62600K .......... .......... .......... .......... .......... 49% 26.6M 1s -2024-03-16T16:52:08Z #15 2.280 62650K .......... .......... .......... .......... .......... 49% 102M 1s -2024-03-16T16:52:08Z #15 2.280 62700K .......... .......... .......... .......... .......... 49% 154M 1s -2024-03-16T16:52:08Z #15 2.280 62750K .......... .......... .......... .......... .......... 49% 31.4M 1s -2024-03-16T16:52:08Z #15 2.282 62800K .......... .......... .......... .......... .......... 49% 34.5M 1s -2024-03-16T16:52:08Z #15 2.283 62850K .......... .......... .......... .......... .......... 49% 48.7M 1s -2024-03-16T16:52:08Z #15 2.284 62900K .......... .......... .......... .......... .......... 49% 35.7M 1s -2024-03-16T16:52:08Z #15 2.290 62950K .......... .......... .......... .......... .......... 49% 66.0M 1s -2024-03-16T16:52:08Z #15 2.290 63000K .......... .......... .......... .......... .......... 49% 167M 1s -2024-03-16T16:52:08Z #15 2.290 63050K .......... .......... .......... .......... .......... 49% 129M 1s -2024-03-16T16:52:08Z #15 2.290 63100K .......... .......... .......... .......... .......... 49% 165M 1s -2024-03-16T16:52:08Z #15 2.290 63150K .......... .......... .......... .......... .......... 49% 119M 1s -2024-03-16T16:52:08Z #15 2.290 63200K .......... .......... .......... .......... .......... 49% 153M 1s -2024-03-16T16:52:08Z #15 2.290 63250K .......... .......... .......... .......... .......... 49% 158M 1s -2024-03-16T16:52:08Z #15 2.290 63300K .......... .......... .......... .......... .......... 49% 154M 1s -2024-03-16T16:52:08Z #15 2.290 63350K .......... .......... .......... .......... .......... 50% 149M 1s -2024-03-16T16:52:08Z #15 2.290 63400K .......... .......... .......... .......... .......... 50% 138M 1s -2024-03-16T16:52:08Z #15 2.290 63450K .......... .......... .......... .......... .......... 50% 167M 1s -2024-03-16T16:52:08Z #15 2.290 63500K .......... .......... .......... .......... .......... 50% 45.3M 1s -2024-03-16T16:52:08Z #15 2.294 63550K .......... .......... .......... .......... .......... 50% 68.9M 1s -2024-03-16T16:52:08Z #15 2.294 63600K .......... .......... .......... .......... .......... 50% 135M 1s -2024-03-16T16:52:08Z #15 2.294 63650K .......... .......... .......... .......... .......... 50% 118M 1s -2024-03-16T16:52:08Z #15 2.294 63700K .......... .......... .......... .......... .......... 50% 133M 1s -2024-03-16T16:52:08Z #15 2.294 63750K .......... .......... .......... .......... .......... 50% 110M 1s -2024-03-16T16:52:08Z #15 2.294 63800K .......... .......... .......... .......... .......... 50% 148M 1s -2024-03-16T16:52:08Z #15 2.294 63850K .......... .......... .......... .......... .......... 50% 77.0M 1s -2024-03-16T16:52:08Z #15 2.294 63900K .......... .......... .......... .......... .......... 50% 48.6M 1s -2024-03-16T16:52:08Z #15 2.295 63950K .......... .......... .......... .......... .......... 50% 52.4M 1s -2024-03-16T16:52:08Z #15 2.296 64000K .......... .......... .......... .......... .......... 50% 154M 1s -2024-03-16T16:52:08Z #15 2.296 64050K .......... .......... .......... .......... .......... 50% 60.1M 1s -2024-03-16T16:52:08Z #15 2.297 64100K .......... .......... .......... .......... .......... 50% 33.3M 1s -2024-03-16T16:52:08Z #15 2.299 64150K .......... .......... .......... .......... .......... 50% 36.6M 1s -2024-03-16T16:52:08Z #15 2.300 64200K .......... .......... .......... .......... .......... 50% 45.5M 1s -2024-03-16T16:52:08Z #15 2.302 64250K .......... .......... .......... .......... .......... 50% 138M 1s -2024-03-16T16:52:08Z #15 2.302 64300K .......... .......... .......... .......... .......... 50% 133M 1s -2024-03-16T16:52:08Z #15 2.302 64350K .......... .......... .......... .......... .......... 50% 34.8M 1s -2024-03-16T16:52:08Z #15 2.303 64400K .......... .......... .......... .......... .......... 50% 45.4M 1s -2024-03-16T16:52:08Z #15 2.304 64450K .......... .......... .......... .......... .......... 50% 62.4M 1s -2024-03-16T16:52:08Z #15 2.305 64500K .......... .......... .......... .......... .......... 50% 47.3M 1s -2024-03-16T16:52:08Z #15 2.310 64550K .......... .......... .......... .......... .......... 50% 135M 1s -2024-03-16T16:52:08Z #15 2.310 64600K .......... .......... .......... .......... .......... 50% 155M 1s -2024-03-16T16:52:08Z #15 2.310 64650K .......... .......... .......... .......... .......... 51% 180M 1s -2024-03-16T16:52:08Z #15 2.310 64700K .......... .......... .......... .......... .......... 51% 152M 1s -2024-03-16T16:52:08Z #15 2.310 64750K .......... .......... .......... .......... .......... 51% 128M 1s -2024-03-16T16:52:08Z #15 2.310 64800K .......... .......... .......... .......... .......... 51% 155M 1s -2024-03-16T16:52:08Z #15 2.310 64850K .......... .......... .......... .......... .......... 51% 152M 1s -2024-03-16T16:52:08Z #15 2.310 64900K .......... .......... .......... .......... .......... 51% 168M 1s -2024-03-16T16:52:08Z #15 2.310 64950K .......... .......... .......... .......... .......... 51% 154M 1s -2024-03-16T16:52:08Z #15 2.310 65000K .......... .......... .......... .......... .......... 51% 182M 1s -2024-03-16T16:52:08Z #15 2.310 65050K .......... .......... .......... .......... .......... 51% 163M 1s -2024-03-16T16:52:08Z #15 2.310 65100K .......... .......... .......... .......... .......... 51% 156M 1s -2024-03-16T16:52:08Z #15 2.310 65150K .......... .......... .......... .......... .......... 51% 31.4M 1s -2024-03-16T16:52:08Z #15 2.311 65200K .......... .......... .......... .......... .......... 51% 43.8M 1s -2024-03-16T16:52:08Z #15 2.312 65250K .......... .......... .......... .......... .......... 51% 42.0M 1s -2024-03-16T16:52:08Z #15 2.314 65300K .......... .......... .......... .......... .......... 51% 60.5M 1s -2024-03-16T16:52:08Z #15 2.315 65350K .......... .......... .......... .......... .......... 51% 145M 1s -2024-03-16T16:52:08Z #15 2.315 65400K .......... .......... .......... .......... .......... 51% 30.3M 1s -2024-03-16T16:52:08Z #15 2.317 65450K .......... .......... .......... .......... .......... 51% 136M 1s -2024-03-16T16:52:08Z #15 2.317 65500K .......... .......... .......... .......... .......... 51% 48.0M 1s -2024-03-16T16:52:08Z #15 2.318 65550K .......... .......... .......... .......... .......... 51% 56.3M 1s -2024-03-16T16:52:08Z #15 2.319 65600K .......... .......... .......... .......... .......... 51% 138M 1s -2024-03-16T16:52:08Z #15 2.319 65650K .......... .......... .......... .......... .......... 51% 36.7M 1s -2024-03-16T16:52:08Z #15 2.320 65700K .......... .......... .......... .......... .......... 51% 108M 1s -2024-03-16T16:52:08Z #15 2.321 65750K .......... .......... .......... .......... .......... 51% 37.5M 1s -2024-03-16T16:52:08Z #15 2.322 65800K .......... .......... .......... .......... .......... 51% 59.7M 1s -2024-03-16T16:52:08Z #15 2.323 65850K .......... .......... .......... .......... .......... 51% 49.5M 1s -2024-03-16T16:52:08Z #15 2.324 65900K .......... .......... .......... .......... .......... 52% 64.9M 1s -2024-03-16T16:52:08Z #15 2.325 65950K .......... .......... .......... .......... .......... 52% 124M 1s -2024-03-16T16:52:08Z #15 2.325 66000K .......... .......... .......... .......... .......... 52% 39.3M 1s -2024-03-16T16:52:08Z #15 2.327 66050K .......... .......... .......... .......... .......... 52% 50.7M 1s -2024-03-16T16:52:08Z #15 2.327 66100K .......... .......... .......... .......... .......... 52% 60.9M 1s -2024-03-16T16:52:08Z #15 2.328 66150K .......... .......... .......... .......... .......... 52% 77.0M 1s -2024-03-16T16:52:08Z #15 2.328 66200K .......... .......... .......... .......... .......... 52% 56.4M 1s -2024-03-16T16:52:08Z #15 2.330 66250K .......... .......... .......... .......... .......... 52% 181M 1s -2024-03-16T16:52:08Z #15 2.330 66300K .......... .......... .......... .......... .......... 52% 35.6M 1s -2024-03-16T16:52:08Z #15 2.331 66350K .......... .......... .......... .......... .......... 52% 64.4M 1s -2024-03-16T16:52:08Z #15 2.332 66400K .......... .......... .......... .......... .......... 52% 37.0M 1s -2024-03-16T16:52:08Z #15 2.333 66450K .......... .......... .......... .......... .......... 52% 95.2M 1s -2024-03-16T16:52:08Z #15 2.334 66500K .......... .......... .......... .......... .......... 52% 33.3M 1s -2024-03-16T16:52:08Z #15 2.335 66550K .......... .......... .......... .......... .......... 52% 156M 1s -2024-03-16T16:52:08Z #15 2.335 66600K .......... .......... .......... .......... .......... 52% 36.6M 1s -2024-03-16T16:52:08Z #15 2.342 66650K .......... .......... .......... .......... .......... 52% 74.4M 1s -2024-03-16T16:52:08Z #15 2.342 66700K .......... .......... .......... .......... .......... 52% 140M 1s -2024-03-16T16:52:08Z #15 2.342 66750K .......... .......... .......... .......... .......... 52% 153M 1s -2024-03-16T16:52:08Z #15 2.342 66800K .......... .......... .......... .......... .......... 52% 155M 1s -2024-03-16T16:52:08Z #15 2.342 66850K .......... .......... .......... .......... .......... 52% 161M 1s -2024-03-16T16:52:08Z #15 2.342 66900K .......... .......... .......... .......... .......... 52% 155M 1s -2024-03-16T16:52:08Z #15 2.342 66950K .......... .......... .......... .......... .......... 52% 138M 1s -2024-03-16T16:52:08Z #15 2.342 67000K .......... .......... .......... .......... .......... 52% 26.1M 1s -2024-03-16T16:52:08Z #15 2.342 67050K .......... .......... .......... .......... .......... 52% 13.8M 1s -2024-03-16T16:52:08Z #15 2.345 67100K .......... .......... .......... .......... .......... 52% 28.8M 1s -2024-03-16T16:52:08Z #15 2.347 67150K .......... .......... .......... .......... .......... 53% 30.8M 1s -2024-03-16T16:52:08Z #15 2.348 67200K .......... .......... .......... .......... .......... 53% 157M 1s -2024-03-16T16:52:08Z #15 2.348 67250K .......... .......... .......... .......... .......... 53% 43.4M 1s -2024-03-16T16:52:08Z #15 2.350 67300K .......... .......... .......... .......... .......... 53% 68.7M 1s -2024-03-16T16:52:08Z #15 2.350 67350K .......... .......... .......... .......... .......... 53% 21.7M 1s -2024-03-16T16:52:08Z #15 2.353 67400K .......... .......... .......... .......... .......... 53% 50.7M 1s -2024-03-16T16:52:08Z #15 2.354 67450K .......... .......... .......... .......... .......... 53% 39.3M 1s -2024-03-16T16:52:08Z #15 2.355 67500K .......... .......... .......... .......... .......... 53% 63.3M 1s -2024-03-16T16:52:08Z #15 2.356 67550K .......... .......... .......... .......... .......... 53% 38.1M 1s -2024-03-16T16:52:08Z #15 2.357 67600K .......... .......... .......... .......... .......... 53% 53.7M 1s -2024-03-16T16:52:08Z #15 2.358 67650K .......... .......... .......... .......... .......... 53% 42.3M 1s -2024-03-16T16:52:08Z #15 2.359 67700K .......... .......... .......... .......... .......... 53% 35.5M 1s -2024-03-16T16:52:08Z #15 2.360 67750K .......... .......... .......... .......... .......... 53% 57.4M 1s -2024-03-16T16:52:08Z #15 2.361 67800K .......... .......... .......... .......... .......... 53% 32.7M 1s -2024-03-16T16:52:08Z #15 2.366 67850K .......... .......... .......... .......... .......... 53% 158M 1s -2024-03-16T16:52:08Z #15 2.366 67900K .......... .......... .......... .......... .......... 53% 126M 1s -2024-03-16T16:52:08Z #15 2.366 67950K .......... .......... .......... .......... .......... 53% 139M 1s -2024-03-16T16:52:08Z #15 2.366 68000K .......... .......... .......... .......... .......... 53% 165M 1s -2024-03-16T16:52:08Z #15 2.366 68050K .......... .......... .......... .......... .......... 53% 150M 1s -2024-03-16T16:52:08Z #15 2.366 68100K .......... .......... .......... .......... .......... 53% 172M 1s -2024-03-16T16:52:08Z #15 2.366 68150K .......... .......... .......... .......... .......... 53% 154M 1s -2024-03-16T16:52:08Z #15 2.366 68200K .......... .......... .......... .......... .......... 53% 164M 1s -2024-03-16T16:52:08Z #15 2.366 68250K .......... .......... .......... .......... .......... 53% 159M 1s -2024-03-16T16:52:08Z #15 2.366 68300K .......... .......... .......... .......... .......... 53% 24.0M 1s -2024-03-16T16:52:08Z #15 2.368 68350K .......... .......... .......... .......... .......... 53% 25.2M 1s -2024-03-16T16:52:08Z #15 2.370 68400K .......... .......... .......... .......... .......... 53% 32.1M 1s -2024-03-16T16:52:08Z #15 2.371 68450K .......... .......... .......... .......... .......... 54% 30.2M 1s -2024-03-16T16:52:08Z #15 2.373 68500K .......... .......... .......... .......... .......... 54% 32.6M 1s -2024-03-16T16:52:08Z #15 2.374 68550K .......... .......... .......... .......... .......... 54% 58.2M 1s -2024-03-16T16:52:08Z #15 2.375 68600K .......... .......... .......... .......... .......... 54% 39.8M 1s -2024-03-16T16:52:08Z #15 2.376 68650K .......... .......... .......... .......... .......... 54% 94.5M 1s -2024-03-16T16:52:08Z #15 2.377 68700K .......... .......... .......... .......... .......... 54% 30.3M 1s -2024-03-16T16:52:08Z #15 2.378 68750K .......... .......... .......... .......... .......... 54% 29.0M 1s -2024-03-16T16:52:08Z #15 2.382 68800K .......... .......... .......... .......... .......... 54% 91.2M 1s -2024-03-16T16:52:08Z #15 2.382 68850K .......... .......... .......... .......... .......... 54% 154M 1s -2024-03-16T16:52:08Z #15 2.382 68900K .......... .......... .......... .......... .......... 54% 170M 1s -2024-03-16T16:52:08Z #15 2.382 68950K .......... .......... .......... .......... .......... 54% 128M 1s -2024-03-16T16:52:08Z #15 2.382 69000K .......... .......... .......... .......... .......... 54% 157M 1s -2024-03-16T16:52:08Z #15 2.382 69050K .......... .......... .......... .......... .......... 54% 18.4M 1s -2024-03-16T16:52:08Z #15 2.385 69100K .......... .......... .......... .......... .......... 54% 26.4M 1s -2024-03-16T16:52:08Z #15 2.386 69150K .......... .......... .......... .......... .......... 54% 19.0M 1s -2024-03-16T16:52:08Z #15 2.390 69200K .......... .......... .......... .......... .......... 54% 149M 1s -2024-03-16T16:52:08Z #15 2.390 69250K .......... .......... .......... .......... .......... 54% 179M 1s -2024-03-16T16:52:08Z #15 2.390 69300K .......... .......... .......... .......... .......... 54% 62.6M 1s -2024-03-16T16:52:08Z #15 2.391 69350K .......... .......... .......... .......... .......... 54% 20.5M 1s -2024-03-16T16:52:08Z #15 2.393 69400K .......... .......... .......... .......... .......... 54% 27.2M 1s -2024-03-16T16:52:08Z #15 2.394 69450K .......... .......... .......... .......... .......... 54% 44.4M 1s -2024-03-16T16:52:08Z #15 2.395 69500K .......... .......... .......... .......... .......... 54% 34.4M 1s -2024-03-16T16:52:08Z #15 2.397 69550K .......... .......... .......... .......... .......... 54% 28.6M 1s -2024-03-16T16:52:08Z #15 2.399 69600K .......... .......... .......... .......... .......... 54% 31.8M 1s -2024-03-16T16:52:08Z #15 2.400 69650K .......... .......... .......... .......... .......... 54% 32.6M 1s -2024-03-16T16:52:08Z #15 2.402 69700K .......... .......... .......... .......... .......... 55% 56.7M 1s -2024-03-16T16:52:08Z #15 2.403 69750K .......... .......... .......... .......... .......... 55% 23.5M 1s -2024-03-16T16:52:08Z #15 2.405 69800K .......... .......... .......... .......... .......... 55% 6.36M 1s -2024-03-16T16:52:08Z #15 2.422 69850K .......... .......... .......... .......... .......... 55% 150M 1s -2024-03-16T16:52:08Z #15 2.422 69900K .......... .......... .......... .......... .......... 55% 127M 1s -2024-03-16T16:52:08Z #15 2.422 69950K .......... .......... .......... .......... .......... 55% 100M 1s -2024-03-16T16:52:08Z #15 2.422 70000K .......... .......... .......... .......... .......... 55% 125M 1s -2024-03-16T16:52:08Z #15 2.422 70050K .......... .......... .......... .......... .......... 55% 126M 1s -2024-03-16T16:52:08Z #15 2.422 70100K .......... .......... .......... .......... .......... 55% 124M 1s -2024-03-16T16:52:08Z #15 2.422 70150K .......... .......... .......... .......... .......... 55% 118M 1s -2024-03-16T16:52:08Z #15 2.422 70200K .......... .......... .......... .......... .......... 55% 130M 1s -2024-03-16T16:52:08Z #15 2.422 70250K .......... .......... .......... .......... .......... 55% 125M 1s -2024-03-16T16:52:08Z #15 2.422 70300K .......... .......... .......... .......... .......... 55% 118M 1s -2024-03-16T16:52:08Z #15 2.422 70350K .......... .......... .......... .......... .......... 55% 111M 1s -2024-03-16T16:52:08Z #15 2.422 70400K .......... .......... .......... .......... .......... 55% 138M 1s -2024-03-16T16:52:08Z #15 2.422 70450K .......... .......... .......... .......... .......... 55% 123M 1s -2024-03-16T16:52:08Z #15 2.422 70500K .......... .......... .......... .......... .......... 55% 104M 1s -2024-03-16T16:52:08Z #15 2.422 70550K .......... .......... .......... .......... .......... 55% 145M 1s -2024-03-16T16:52:08Z #15 2.422 70600K .......... .......... .......... .......... .......... 55% 174M 1s -2024-03-16T16:52:08Z #15 2.422 70650K .......... .......... .......... .......... .......... 55% 158M 1s -2024-03-16T16:52:08Z #15 2.422 70700K .......... .......... .......... .......... .......... 55% 135M 1s -2024-03-16T16:52:08Z #15 2.422 70750K .......... .......... .......... .......... .......... 55% 142M 1s -2024-03-16T16:52:08Z #15 2.422 70800K .......... .......... .......... .......... .......... 55% 152M 1s -2024-03-16T16:52:08Z #15 2.422 70850K .......... .......... .......... .......... .......... 55% 159M 1s -2024-03-16T16:52:08Z #15 2.422 70900K .......... .......... .......... .......... .......... 55% 142M 1s -2024-03-16T16:52:08Z #15 2.422 70950K .......... .......... .......... .......... .......... 56% 167M 1s -2024-03-16T16:52:08Z #15 2.422 71000K .......... .......... .......... .......... .......... 56% 160M 1s -2024-03-16T16:52:08Z #15 2.422 71050K .......... .......... .......... .......... .......... 56% 166M 1s -2024-03-16T16:52:08Z #15 2.422 71100K .......... .......... .......... .......... .......... 56% 160M 1s -2024-03-16T16:52:08Z #15 2.422 71150K .......... .......... .......... .......... .......... 56% 115M 1s -2024-03-16T16:52:08Z #15 2.422 71200K .......... .......... .......... .......... .......... 56% 139M 1s -2024-03-16T16:52:08Z #15 2.423 71250K .......... .......... .......... .......... .......... 56% 133M 1s -2024-03-16T16:52:08Z #15 2.423 71300K .......... .......... .......... .......... .......... 56% 127M 1s -2024-03-16T16:52:08Z #15 2.423 71350K .......... .......... .......... .......... .......... 56% 133M 1s -2024-03-16T16:52:08Z #15 2.424 71400K .......... .......... .......... .......... .......... 56% 128M 1s -2024-03-16T16:52:08Z #15 2.424 71450K .......... .......... .......... .......... .......... 56% 94.2M 1s -2024-03-16T16:52:08Z #15 2.425 71500K .......... .......... .......... .......... .......... 56% 72.1M 1s -2024-03-16T16:52:08Z #15 2.430 71550K .......... .......... .......... .......... .......... 56% 84.9M 1s -2024-03-16T16:52:08Z #15 2.430 71600K .......... .......... .......... .......... .......... 56% 154M 1s -2024-03-16T16:52:08Z #15 2.430 71650K .......... .......... .......... .......... .......... 56% 146M 1s -2024-03-16T16:52:08Z #15 2.430 71700K .......... .......... .......... .......... .......... 56% 189M 1s -2024-03-16T16:52:08Z #15 2.430 71750K .......... .......... .......... .......... .......... 56% 160M 1s -2024-03-16T16:52:08Z #15 2.430 71800K .......... .......... .......... .......... .......... 56% 140M 1s -2024-03-16T16:52:08Z #15 2.430 71850K .......... .......... .......... .......... .......... 56% 169M 1s -2024-03-16T16:52:08Z #15 2.430 71900K .......... .......... .......... .......... .......... 56% 168M 1s -2024-03-16T16:52:08Z #15 2.430 71950K .......... .......... .......... .......... .......... 56% 138M 1s -2024-03-16T16:52:08Z #15 2.430 72000K .......... .......... .......... .......... .......... 56% 180M 1s -2024-03-16T16:52:08Z #15 2.430 72050K .......... .......... .......... .......... .......... 56% 159M 1s -2024-03-16T16:52:08Z #15 2.430 72100K .......... .......... .......... .......... .......... 56% 149M 1s -2024-03-16T16:52:08Z #15 2.430 72150K .......... .......... .......... .......... .......... 56% 146M 1s -2024-03-16T16:52:08Z #15 2.430 72200K .......... .......... .......... .......... .......... 56% 178M 1s -2024-03-16T16:52:08Z #15 2.430 72250K .......... .......... .......... .......... .......... 57% 153M 1s -2024-03-16T16:52:08Z #15 2.430 72300K .......... .......... .......... .......... .......... 57% 169M 1s -2024-03-16T16:52:08Z #15 2.430 72350K .......... .......... .......... .......... .......... 57% 114M 1s -2024-03-16T16:52:08Z #15 2.431 72400K .......... .......... .......... .......... .......... 57% 145M 1s -2024-03-16T16:52:08Z #15 2.431 72450K .......... .......... .......... .......... .......... 57% 155M 1s -2024-03-16T16:52:08Z #15 2.432 72500K .......... .......... .......... .......... .......... 57% 142M 1s -2024-03-16T16:52:08Z #15 2.432 72550K .......... .......... .......... .......... .......... 57% 145M 1s -2024-03-16T16:52:08Z #15 2.432 72600K .......... .......... .......... .......... .......... 57% 153M 1s -2024-03-16T16:52:08Z #15 2.432 72650K .......... .......... .......... .......... .......... 57% 169M 1s -2024-03-16T16:52:08Z #15 2.433 72700K .......... .......... .......... .......... .......... 57% 104M 1s -2024-03-16T16:52:08Z #15 2.433 72750K .......... .......... .......... .......... .......... 57% 28.8M 1s -2024-03-16T16:52:08Z #15 2.435 72800K .......... .......... .......... .......... .......... 57% 36.5M 1s -2024-03-16T16:52:08Z #15 2.437 72850K .......... .......... .......... .......... .......... 57% 41.5M 1s -2024-03-16T16:52:08Z #15 2.437 72900K .......... .......... .......... .......... .......... 57% 32.3M 1s -2024-03-16T16:52:08Z #15 2.439 72950K .......... .......... .......... .......... .......... 57% 45.9M 1s -2024-03-16T16:52:08Z #15 2.440 73000K .......... .......... .......... .......... .......... 57% 84.8M 1s -2024-03-16T16:52:08Z #15 2.441 73050K .......... .......... .......... .......... .......... 57% 63.1M 1s -2024-03-16T16:52:08Z #15 2.442 73100K .......... .......... .......... .......... .......... 57% 175M 1s -2024-03-16T16:52:08Z #15 2.442 73150K .......... .......... .......... .......... .......... 57% 73.2M 1s -2024-03-16T16:52:08Z #15 2.442 73200K .......... .......... .......... .......... .......... 57% 83.6M 1s -2024-03-16T16:52:08Z #15 2.443 73250K .......... .......... .......... .......... .......... 57% 110M 1s -2024-03-16T16:52:08Z #15 2.443 73300K .......... .......... .......... .......... .......... 57% 152M 1s -2024-03-16T16:52:08Z #15 2.443 73350K .......... .......... .......... .......... .......... 57% 148M 1s -2024-03-16T16:52:08Z #15 2.444 73400K .......... .......... .......... .......... .......... 57% 158M 1s -2024-03-16T16:52:08Z #15 2.444 73450K .......... .......... .......... .......... .......... 57% 39.9M 1s -2024-03-16T16:52:08Z #15 2.450 73500K .......... .......... .......... .......... .......... 58% 29.1M 1s -2024-03-16T16:52:08Z #15 2.450 73550K .......... .......... .......... .......... .......... 58% 50.5M 1s -2024-03-16T16:52:08Z #15 2.450 73600K .......... .......... .......... .......... .......... 58% 55.0M 1s -2024-03-16T16:52:08Z #15 2.450 73650K .......... .......... .......... .......... .......... 58% 43.6M 1s -2024-03-16T16:52:08Z #15 2.450 73700K .......... .......... .......... .......... .......... 58% 63.8M 1s -2024-03-16T16:52:08Z #15 2.451 73750K .......... .......... .......... .......... .......... 58% 38.5M 1s -2024-03-16T16:52:08Z #15 2.452 73800K .......... .......... .......... .......... .......... 58% 65.4M 1s -2024-03-16T16:52:08Z #15 2.453 73850K .......... .......... .......... .......... .......... 58% 80.2M 1s -2024-03-16T16:52:08Z #15 2.454 73900K .......... .......... .......... .......... .......... 58% 31.3M 1s -2024-03-16T16:52:08Z #15 2.458 73950K .......... .......... .......... .......... .......... 58% 91.7M 1s -2024-03-16T16:52:08Z #15 2.458 74000K .......... .......... .......... .......... .......... 58% 103M 1s -2024-03-16T16:52:08Z #15 2.458 74050K .......... .......... .......... .......... .......... 58% 134M 1s -2024-03-16T16:52:08Z #15 2.458 74100K .......... .......... .......... .......... .......... 58% 132M 1s -2024-03-16T16:52:08Z #15 2.458 74150K .......... .......... .......... .......... .......... 58% 109M 1s -2024-03-16T16:52:08Z #15 2.458 74200K .......... .......... .......... .......... .......... 58% 142M 1s -2024-03-16T16:52:08Z #15 2.458 74250K .......... .......... .......... .......... .......... 58% 33.5M 1s -2024-03-16T16:52:08Z #15 2.459 74300K .......... .......... .......... .......... .......... 58% 65.9M 1s -2024-03-16T16:52:08Z #15 2.460 74350K .......... .......... .......... .......... .......... 58% 47.7M 1s -2024-03-16T16:52:08Z #15 2.466 74400K .......... .......... .......... .......... .......... 58% 54.6M 1s -2024-03-16T16:52:08Z #15 2.466 74450K .......... .......... .......... .......... .......... 58% 53.0M 1s -2024-03-16T16:52:08Z #15 2.466 74500K .......... .......... .......... .......... .......... 58% 57.6M 1s -2024-03-16T16:52:08Z #15 2.466 74550K .......... .......... .......... .......... .......... 58% 50.0M 1s -2024-03-16T16:52:08Z #15 2.466 74600K .......... .......... .......... .......... .......... 58% 56.3M 1s -2024-03-16T16:52:08Z #15 2.466 74650K .......... .......... .......... .......... .......... 58% 64.6M 1s -2024-03-16T16:52:08Z #15 2.466 74700K .......... .......... .......... .......... .......... 58% 109M 1s -2024-03-16T16:52:08Z #15 2.467 74750K .......... .......... .......... .......... .......... 58% 71.0M 1s -2024-03-16T16:52:08Z #15 2.467 74800K .......... .......... .......... .......... .......... 59% 74.6M 1s -2024-03-16T16:52:08Z #15 2.468 74850K .......... .......... .......... .......... .......... 59% 75.4M 1s -2024-03-16T16:52:08Z #15 2.468 74900K .......... .......... .......... .......... .......... 59% 9.22M 1s -2024-03-16T16:52:08Z #15 2.474 74950K .......... .......... .......... .......... .......... 59% 131M 1s -2024-03-16T16:52:08Z #15 2.474 75000K .......... .......... .......... .......... .......... 59% 170M 1s -2024-03-16T16:52:08Z #15 2.474 75050K .......... .......... .......... .......... .......... 59% 159M 1s -2024-03-16T16:52:08Z #15 2.475 75100K .......... .......... .......... .......... .......... 59% 146M 1s -2024-03-16T16:52:08Z #15 2.475 75150K .......... .......... .......... .......... .......... 59% 131M 1s -2024-03-16T16:52:08Z #15 2.476 75200K .......... .......... .......... .......... .......... 59% 157M 1s -2024-03-16T16:52:08Z #15 2.476 75250K .......... .......... .......... .......... .......... 59% 168M 1s -2024-03-16T16:52:08Z #15 2.476 75300K .......... .......... .......... .......... .......... 59% 155M 1s -2024-03-16T16:52:08Z #15 2.476 75350K .......... .......... .......... .......... .......... 59% 33.1M 1s -2024-03-16T16:52:08Z #15 2.478 75400K .......... .......... .......... .......... .......... 59% 163M 1s -2024-03-16T16:52:08Z #15 2.478 75450K .......... .......... .......... .......... .......... 59% 96.2M 1s -2024-03-16T16:52:08Z #15 2.479 75500K .......... .......... .......... .......... .......... 59% 51.3M 1s -2024-03-16T16:52:08Z #15 2.480 75550K .......... .......... .......... .......... .......... 59% 65.2M 1s -2024-03-16T16:52:08Z #15 2.480 75600K .......... .......... .......... .......... .......... 59% 47.4M 1s -2024-03-16T16:52:08Z #15 2.481 75650K .......... .......... .......... .......... .......... 59% 134M 1s -2024-03-16T16:52:08Z #15 2.482 75700K .......... .......... .......... .......... .......... 59% 39.7M 1s -2024-03-16T16:52:08Z #15 2.483 75750K .......... .......... .......... .......... .......... 59% 43.5M 1s -2024-03-16T16:52:08Z #15 2.484 75800K .......... .......... .......... .......... .......... 59% 53.2M 1s -2024-03-16T16:52:08Z #15 2.485 75850K .......... .......... .......... .......... .......... 59% 110M 1s -2024-03-16T16:52:08Z #15 2.485 75900K .......... .......... .......... .......... .......... 59% 70.8M 1s -2024-03-16T16:52:08Z #15 2.486 75950K .......... .......... .......... .......... .......... 59% 59.1M 1s -2024-03-16T16:52:08Z #15 2.487 76000K .......... .......... .......... .......... .......... 59% 50.7M 1s -2024-03-16T16:52:08Z #15 2.488 76050K .......... .......... .......... .......... .......... 60% 80.6M 1s -2024-03-16T16:52:08Z #15 2.489 76100K .......... .......... .......... .......... .......... 60% 139M 1s -2024-03-16T16:52:08Z #15 2.489 76150K .......... .......... .......... .......... .......... 60% 77.5M 1s -2024-03-16T16:52:08Z #15 2.490 76200K .......... .......... .......... .......... .......... 60% 41.0M 1s -2024-03-16T16:52:08Z #15 2.491 76250K .......... .......... .......... .......... .......... 60% 35.7M 1s -2024-03-16T16:52:08Z #15 2.492 76300K .......... .......... .......... .......... .......... 60% 148M 1s -2024-03-16T16:52:08Z #15 2.493 76350K .......... .......... .......... .......... .......... 60% 44.6M 1s -2024-03-16T16:52:08Z #15 2.494 76400K .......... .......... .......... .......... .......... 60% 69.2M 1s -2024-03-16T16:52:08Z #15 2.494 76450K .......... .......... .......... .......... .......... 60% 75.7M 1s -2024-03-16T16:52:08Z #15 2.495 76500K .......... .......... .......... .......... .......... 60% 60.8M 1s -2024-03-16T16:52:08Z #15 2.496 76550K .......... .......... .......... .......... .......... 60% 70.8M 1s -2024-03-16T16:52:08Z #15 2.496 76600K .......... .......... .......... .......... .......... 60% 58.8M 1s -2024-03-16T16:52:08Z #15 2.497 76650K .......... .......... .......... .......... .......... 60% 48.2M 1s -2024-03-16T16:52:08Z #15 2.498 76700K .......... .......... .......... .......... .......... 60% 48.6M 1s -2024-03-16T16:52:08Z #15 2.499 76750K .......... .......... .......... .......... .......... 60% 109M 1s -2024-03-16T16:52:08Z #15 2.502 76800K .......... .......... .......... .......... .......... 60% 17.0M 1s -2024-03-16T16:52:08Z #15 2.502 76850K .......... .......... .......... .......... .......... 60% 62.9M 1s -2024-03-16T16:52:08Z #15 2.503 76900K .......... .......... .......... .......... .......... 60% 40.9M 1s -2024-03-16T16:52:08Z #15 2.505 76950K .......... .......... .......... .......... .......... 60% 84.9M 1s -2024-03-16T16:52:08Z #15 2.506 77000K .......... .......... .......... .......... .......... 60% 139M 1s -2024-03-16T16:52:08Z #15 2.506 77050K .......... .......... .......... .......... .......... 60% 107M 1s -2024-03-16T16:52:08Z #15 2.506 77100K .......... .......... .......... .......... .......... 60% 55.5M 1s -2024-03-16T16:52:08Z #15 2.507 77150K .......... .......... .......... .......... .......... 60% 63.8M 1s -2024-03-16T16:52:08Z #15 2.507 77200K .......... .......... .......... .......... .......... 60% 16.8M 1s -2024-03-16T16:52:08Z #15 2.511 77250K .......... .......... .......... .......... .......... 60% 121M 1s -2024-03-16T16:52:08Z #15 2.511 77300K .......... .......... .......... .......... .......... 61% 15.9M 1s -2024-03-16T16:52:08Z #15 2.514 77350K .......... .......... .......... .......... .......... 61% 59.4M 1s -2024-03-16T16:52:08Z #15 2.515 77400K .......... .......... .......... .......... .......... 61% 47.7M 1s -2024-03-16T16:52:08Z #15 2.516 77450K .......... .......... .......... .......... .......... 61% 157M 1s -2024-03-16T16:52:08Z #15 2.517 77500K .......... .......... .......... .......... .......... 61% 49.9M 1s -2024-03-16T16:52:08Z #15 2.517 77550K .......... .......... .......... .......... .......... 61% 57.4M 1s -2024-03-16T16:52:08Z #15 2.518 77600K .......... .......... .......... .......... .......... 61% 48.6M 1s -2024-03-16T16:52:08Z #15 2.519 77650K .......... .......... .......... .......... .......... 61% 54.1M 1s -2024-03-16T16:52:08Z #15 2.520 77700K .......... .......... .......... .......... .......... 61% 134M 1s -2024-03-16T16:52:08Z #15 2.521 77750K .......... .......... .......... .......... .......... 61% 25.3M 1s -2024-03-16T16:52:08Z #15 2.522 77800K .......... .......... .......... .......... .......... 61% 16.5M 1s -2024-03-16T16:52:08Z #15 2.525 77850K .......... .......... .......... .......... .......... 61% 130M 1s -2024-03-16T16:52:08Z #15 2.526 77900K .......... .......... .......... .......... .......... 61% 133M 1s -2024-03-16T16:52:08Z #15 2.526 77950K .......... .......... .......... .......... .......... 61% 107M 1s -2024-03-16T16:52:08Z #15 2.526 78000K .......... .......... .......... .......... .......... 61% 124M 1s -2024-03-16T16:52:08Z #15 2.527 78050K .......... .......... .......... .......... .......... 61% 134M 1s -2024-03-16T16:52:08Z #15 2.527 78100K .......... .......... .......... .......... .......... 61% 35.9M 1s -2024-03-16T16:52:08Z #15 2.531 78150K .......... .......... .......... .......... .......... 61% 74.8M 1s -2024-03-16T16:52:08Z #15 2.531 78200K .......... .......... .......... .......... .......... 61% 92.6M 1s -2024-03-16T16:52:08Z #15 2.531 78250K .......... .......... .......... .......... .......... 61% 155M 1s -2024-03-16T16:52:08Z #15 2.531 78300K .......... .......... .......... .......... .......... 61% 132M 1s -2024-03-16T16:52:08Z #15 2.531 78350K .......... .......... .......... .......... .......... 61% 47.8M 1s -2024-03-16T16:52:08Z #15 2.531 78400K .......... .......... .......... .......... .......... 61% 42.6M 1s -2024-03-16T16:52:08Z #15 2.532 78450K .......... .......... .......... .......... .......... 61% 62.5M 1s -2024-03-16T16:52:08Z #15 2.534 78500K .......... .......... .......... .......... .......... 61% 123M 1s -2024-03-16T16:52:08Z #15 2.534 78550K .......... .......... .......... .......... .......... 61% 112M 1s -2024-03-16T16:52:08Z #15 2.535 78600K .......... .......... .......... .......... .......... 62% 169M 1s -2024-03-16T16:52:08Z #15 2.535 78650K .......... .......... .......... .......... .......... 62% 62.8M 1s -2024-03-16T16:52:08Z #15 2.535 78700K .......... .......... .......... .......... .......... 62% 102M 1s -2024-03-16T16:52:08Z #15 2.536 78750K .......... .......... .......... .......... .......... 62% 54.9M 1s -2024-03-16T16:52:08Z #15 2.537 78800K .......... .......... .......... .......... .......... 62% 50.1M 1s -2024-03-16T16:52:08Z #15 2.538 78850K .......... .......... .......... .......... .......... 62% 120M 1s -2024-03-16T16:52:08Z #15 2.538 78900K .......... .......... .......... .......... .......... 62% 63.8M 1s -2024-03-16T16:52:08Z #15 2.539 78950K .......... .......... .......... .......... .......... 62% 77.3M 1s -2024-03-16T16:52:08Z #15 2.539 79000K .......... .......... .......... .......... .......... 62% 51.3M 1s -2024-03-16T16:52:08Z #15 2.540 79050K .......... .......... .......... .......... .......... 62% 127M 1s -2024-03-16T16:52:08Z #15 2.541 79100K .......... .......... .......... .......... .......... 62% 37.3M 1s -2024-03-16T16:52:08Z #15 2.542 79150K .......... .......... .......... .......... .......... 62% 52.6M 1s -2024-03-16T16:52:08Z #15 2.543 79200K .......... .......... .......... .......... .......... 62% 122M 1s -2024-03-16T16:52:08Z #15 2.543 79250K .......... .......... .......... .......... .......... 62% 15.9M 1s -2024-03-16T16:52:08Z #15 2.549 79300K .......... .......... .......... .......... .......... 62% 67.4M 1s -2024-03-16T16:52:08Z #15 2.549 79350K .......... .......... .......... .......... .......... 62% 78.5M 1s -2024-03-16T16:52:08Z #15 2.549 79400K .......... .......... .......... .......... .......... 62% 183M 1s -2024-03-16T16:52:08Z #15 2.549 79450K .......... .......... .......... .......... .......... 62% 147M 1s -2024-03-16T16:52:08Z #15 2.549 79500K .......... .......... .......... .......... .......... 62% 103M 1s -2024-03-16T16:52:08Z #15 2.549 79550K .......... .......... .......... .......... .......... 62% 163M 1s -2024-03-16T16:52:08Z #15 2.549 79600K .......... .......... .......... .......... .......... 62% 31.0M 1s -2024-03-16T16:52:08Z #15 2.552 79650K .......... .......... .......... .......... .......... 62% 52.4M 1s -2024-03-16T16:52:08Z #15 2.554 79700K .......... .......... .......... .......... .......... 62% 33.4M 1s -2024-03-16T16:52:08Z #15 2.554 79750K .......... .......... .......... .......... .......... 62% 87.5M 1s -2024-03-16T16:52:08Z #15 2.554 79800K .......... .......... .......... .......... .......... 62% 119M 1s -2024-03-16T16:52:08Z #15 2.554 79850K .......... .......... .......... .......... .......... 63% 26.3M 1s -2024-03-16T16:52:08Z #15 2.557 79900K .......... .......... .......... .......... .......... 63% 28.0M 1s -2024-03-16T16:52:08Z #15 2.561 79950K .......... .......... .......... .......... .......... 63% 126M 1s -2024-03-16T16:52:08Z #15 2.561 80000K .......... .......... .......... .......... .......... 63% 122M 1s -2024-03-16T16:52:08Z #15 2.561 80050K .......... .......... .......... .......... .......... 63% 124M 1s -2024-03-16T16:52:08Z #15 2.561 80100K .......... .......... .......... .......... .......... 63% 165M 1s -2024-03-16T16:52:08Z #15 2.561 80150K .......... .......... .......... .......... .......... 63% 97.0M 1s -2024-03-16T16:52:08Z #15 2.561 80200K .......... .......... .......... .......... .......... 63% 120M 1s -2024-03-16T16:52:08Z #15 2.561 80250K .......... .......... .......... .......... .......... 63% 6.97M 1s -2024-03-16T16:52:08Z #15 2.567 80300K .......... .......... .......... .......... .......... 63% 13.6M 1s -2024-03-16T16:52:08Z #15 2.571 80350K .......... .......... .......... .......... .......... 63% 13.5M 1s -2024-03-16T16:52:08Z #15 2.574 80400K .......... .......... .......... .......... .......... 63% 26.5M 1s -2024-03-16T16:52:08Z #15 2.576 80450K .......... .......... .......... .......... .......... 63% 39.2M 1s -2024-03-16T16:52:08Z #15 2.577 80500K .......... .......... .......... .......... .......... 63% 26.6M 1s -2024-03-16T16:52:08Z #15 2.579 80550K .......... .......... .......... .......... .......... 63% 127M 1s -2024-03-16T16:52:08Z #15 2.580 80600K .......... .......... .......... .......... .......... 63% 27.3M 1s -2024-03-16T16:52:08Z #15 2.581 80650K .......... .......... .......... .......... .......... 63% 66.9M 1s -2024-03-16T16:52:08Z #15 2.582 80700K .......... .......... .......... .......... .......... 63% 69.4M 1s -2024-03-16T16:52:08Z #15 2.583 80750K .......... .......... .......... .......... .......... 63% 47.9M 1s -2024-03-16T16:52:08Z #15 2.584 80800K .......... .......... .......... .......... .......... 63% 87.0M 1s -2024-03-16T16:52:08Z #15 2.584 80850K .......... .......... .......... .......... .......... 63% 31.5M 1s -2024-03-16T16:52:08Z #15 2.586 80900K .......... .......... .......... .......... .......... 63% 52.3M 1s -2024-03-16T16:52:08Z #15 2.587 80950K .......... .......... .......... .......... .......... 63% 64.1M 1s -2024-03-16T16:52:08Z #15 2.588 81000K .......... .......... .......... .......... .......... 63% 82.1M 1s -2024-03-16T16:52:08Z #15 2.588 81050K .......... .......... .......... .......... .......... 63% 128M 1s -2024-03-16T16:52:08Z #15 2.588 81100K .......... .......... .......... .......... .......... 64% 138M 1s -2024-03-16T16:52:08Z #15 2.589 81150K .......... .......... .......... .......... .......... 64% 139M 1s -2024-03-16T16:52:08Z #15 2.589 81200K .......... .......... .......... .......... .......... 64% 49.5M 1s -2024-03-16T16:52:08Z #15 2.590 81250K .......... .......... .......... .......... .......... 64% 42.5M 1s -2024-03-16T16:52:08Z #15 2.591 81300K .......... .......... .......... .......... .......... 64% 76.1M 1s -2024-03-16T16:52:08Z #15 2.592 81350K .......... .......... .......... .......... .......... 64% 44.5M 1s -2024-03-16T16:52:08Z #15 2.593 81400K .......... .......... .......... .......... .......... 64% 154M 1s -2024-03-16T16:52:08Z #15 2.593 81450K .......... .......... .......... .......... .......... 64% 172M 1s -2024-03-16T16:52:08Z #15 2.594 81500K .......... .......... .......... .......... .......... 64% 154M 1s -2024-03-16T16:52:08Z #15 2.594 81550K .......... .......... .......... .......... .......... 64% 78.2M 1s -2024-03-16T16:52:08Z #15 2.595 81600K .......... .......... .......... .......... .......... 64% 96.2M 1s -2024-03-16T16:52:08Z #15 2.595 81650K .......... .......... .......... .......... .......... 64% 153M 1s -2024-03-16T16:52:08Z #15 2.595 81700K .......... .......... .......... .......... .......... 64% 80.4M 1s -2024-03-16T16:52:08Z #15 2.596 81750K .......... .......... .......... .......... .......... 64% 143M 1s -2024-03-16T16:52:08Z #15 2.596 81800K .......... .......... .......... .......... .......... 64% 40.2M 1s -2024-03-16T16:52:08Z #15 2.597 81850K .......... .......... .......... .......... .......... 64% 49.8M 1s -2024-03-16T16:52:08Z #15 2.599 81900K .......... .......... .......... .......... .......... 64% 173M 1s -2024-03-16T16:52:08Z #15 2.599 81950K .......... .......... .......... .......... .......... 64% 86.6M 1s -2024-03-16T16:52:08Z #15 2.599 82000K .......... .......... .......... .......... .......... 64% 71.8M 1s -2024-03-16T16:52:08Z #15 2.600 82050K .......... .......... .......... .......... .......... 64% 96.2M 1s -2024-03-16T16:52:08Z #15 2.601 82100K .......... .......... .......... .......... .......... 64% 131M 1s -2024-03-16T16:52:08Z #15 2.601 82150K .......... .......... .......... .......... .......... 64% 92.0M 1s -2024-03-16T16:52:08Z #15 2.602 82200K .......... .......... .......... .......... .......... 64% 80.0M 1s -2024-03-16T16:52:08Z #15 2.602 82250K .......... .......... .......... .......... .......... 64% 168M 1s -2024-03-16T16:52:08Z #15 2.603 82300K .......... .......... .......... .......... .......... 64% 169M 1s -2024-03-16T16:52:08Z #15 2.603 82350K .......... .......... .......... .......... .......... 64% 81.4M 1s -2024-03-16T16:52:08Z #15 2.603 82400K .......... .......... .......... .......... .......... 65% 157M 1s -2024-03-16T16:52:08Z #15 2.604 82450K .......... .......... .......... .......... .......... 65% 158M 1s -2024-03-16T16:52:08Z #15 2.604 82500K .......... .......... .......... .......... .......... 65% 90.4M 1s -2024-03-16T16:52:08Z #15 2.605 82550K .......... .......... .......... .......... .......... 65% 136M 1s -2024-03-16T16:52:08Z #15 2.605 82600K .......... .......... .......... .......... .......... 65% 73.9M 1s -2024-03-16T16:52:08Z #15 2.605 82650K .......... .......... .......... .......... .......... 65% 147M 1s -2024-03-16T16:52:08Z #15 2.606 82700K .......... .......... .......... .......... .......... 65% 142M 1s -2024-03-16T16:52:08Z #15 2.606 82750K .......... .......... .......... .......... .......... 65% 167M 1s -2024-03-16T16:52:08Z #15 2.606 82800K .......... .......... .......... .......... .......... 65% 88.1M 1s -2024-03-16T16:52:08Z #15 2.607 82850K .......... .......... .......... .......... .......... 65% 160M 1s -2024-03-16T16:52:08Z #15 2.607 82900K .......... .......... .......... .......... .......... 65% 120M 1s -2024-03-16T16:52:08Z #15 2.608 82950K .......... .......... .......... .......... .......... 65% 177M 1s -2024-03-16T16:52:08Z #15 2.608 83000K .......... .......... .......... .......... .......... 65% 117M 1s -2024-03-16T16:52:08Z #15 2.608 83050K .......... .......... .......... .......... .......... 65% 86.2M 1s -2024-03-16T16:52:08Z #15 2.609 83100K .......... .......... .......... .......... .......... 65% 159M 1s -2024-03-16T16:52:08Z #15 2.609 83150K .......... .......... .......... .......... .......... 65% 32.4M 1s -2024-03-16T16:52:08Z #15 2.611 83200K .......... .......... .......... .......... .......... 65% 28.3M 1s -2024-03-16T16:52:08Z #15 2.613 83250K .......... .......... .......... .......... .......... 65% 34.5M 1s -2024-03-16T16:52:08Z #15 2.618 83300K .......... .......... .......... .......... .......... 65% 71.3M 1s -2024-03-16T16:52:08Z #15 2.618 83350K .......... .......... .......... .......... .......... 65% 77.8M 1s -2024-03-16T16:52:08Z #15 2.618 83400K .......... .......... .......... .......... .......... 65% 149M 1s -2024-03-16T16:52:08Z #15 2.618 83450K .......... .......... .......... .......... .......... 65% 114M 1s -2024-03-16T16:52:08Z #15 2.618 83500K .......... .......... .......... .......... .......... 65% 104M 1s -2024-03-16T16:52:08Z #15 2.618 83550K .......... .......... .......... .......... .......... 65% 111M 1s -2024-03-16T16:52:08Z #15 2.618 83600K .......... .......... .......... .......... .......... 65% 127M 1s -2024-03-16T16:52:08Z #15 2.618 83650K .......... .......... .......... .......... .......... 66% 109M 1s -2024-03-16T16:52:08Z #15 2.619 83700K .......... .......... .......... .......... .......... 66% 91.7M 1s -2024-03-16T16:52:08Z #15 2.619 83750K .......... .......... .......... .......... .......... 66% 116M 1s -2024-03-16T16:52:08Z #15 2.619 83800K .......... .......... .......... .......... .......... 66% 70.2M 1s -2024-03-16T16:52:08Z #15 2.623 83850K .......... .......... .......... .......... .......... 66% 120M 1s -2024-03-16T16:52:08Z #15 2.623 83900K .......... .......... .......... .......... .......... 66% 124M 1s -2024-03-16T16:52:08Z #15 2.623 83950K .......... .......... .......... .......... .......... 66% 135M 1s -2024-03-16T16:52:08Z #15 2.623 84000K .......... .......... .......... .......... .......... 66% 124M 1s -2024-03-16T16:52:08Z #15 2.623 84050K .......... .......... .......... .......... .......... 66% 149M 1s -2024-03-16T16:52:08Z #15 2.623 84100K .......... .......... .......... .......... .......... 66% 133M 1s -2024-03-16T16:52:08Z #15 2.623 84150K .......... .......... .......... .......... .......... 66% 109M 1s -2024-03-16T16:52:08Z #15 2.623 84200K .......... .......... .......... .......... .......... 66% 120M 1s -2024-03-16T16:52:08Z #15 2.623 84250K .......... .......... .......... .......... .......... 66% 120M 1s -2024-03-16T16:52:08Z #15 2.623 84300K .......... .......... .......... .......... .......... 66% 110M 1s -2024-03-16T16:52:08Z #15 2.623 84350K .......... .......... .......... .......... .......... 66% 58.5M 1s -2024-03-16T16:52:08Z #15 2.625 84400K .......... .......... .......... .......... .......... 66% 119M 1s -2024-03-16T16:52:08Z #15 2.625 84450K .......... .......... .......... .......... .......... 66% 52.5M 1s -2024-03-16T16:52:08Z #15 2.626 84500K .......... .......... .......... .......... .......... 66% 99.5M 1s -2024-03-16T16:52:08Z #15 2.626 84550K .......... .......... .......... .......... .......... 66% 124M 1s -2024-03-16T16:52:08Z #15 2.626 84600K .......... .......... .......... .......... .......... 66% 64.7M 1s -2024-03-16T16:52:08Z #15 2.627 84650K .......... .......... .......... .......... .......... 66% 59.2M 1s -2024-03-16T16:52:08Z #15 2.628 84700K .......... .......... .......... .......... .......... 66% 9.53M 1s -2024-03-16T16:52:08Z #15 2.633 84750K .......... .......... .......... .......... .......... 66% 27.0M 1s -2024-03-16T16:52:08Z #15 2.635 84800K .......... .......... .......... .......... .......... 66% 4.43M 1s -2024-03-16T16:52:08Z #15 2.646 84850K .......... .......... .......... .......... .......... 66% 124M 1s -2024-03-16T16:52:08Z #15 2.646 84900K .......... .......... .......... .......... .......... 67% 165M 1s -2024-03-16T16:52:08Z #15 2.647 84950K .......... .......... .......... .......... .......... 67% 140M 1s -2024-03-16T16:52:08Z #15 2.647 85000K .......... .......... .......... .......... .......... 67% 129M 1s -2024-03-16T16:52:08Z #15 2.647 85050K .......... .......... .......... .......... .......... 67% 169M 1s -2024-03-16T16:52:08Z #15 2.648 85100K .......... .......... .......... .......... .......... 67% 161M 1s -2024-03-16T16:52:08Z #15 2.648 85150K .......... .......... .......... .......... .......... 67% 116M 1s -2024-03-16T16:52:08Z #15 2.648 85200K .......... .......... .......... .......... .......... 67% 158M 1s -2024-03-16T16:52:08Z #15 2.649 85250K .......... .......... .......... .......... .......... 67% 159M 1s -2024-03-16T16:52:08Z #15 2.649 85300K .......... .......... .......... .......... .......... 67% 147M 1s -2024-03-16T16:52:08Z #15 2.649 85350K .......... .......... .......... .......... .......... 67% 149M 1s -2024-03-16T16:52:08Z #15 2.650 85400K .......... .......... .......... .......... .......... 67% 122M 1s -2024-03-16T16:52:08Z #15 2.650 85450K .......... .......... .......... .......... .......... 67% 166M 1s -2024-03-16T16:52:08Z #15 2.651 85500K .......... .......... .......... .......... .......... 67% 164M 1s -2024-03-16T16:52:08Z #15 2.651 85550K .......... .......... .......... .......... .......... 67% 129M 1s -2024-03-16T16:52:08Z #15 2.651 85600K .......... .......... .......... .......... .......... 67% 155M 1s -2024-03-16T16:52:08Z #15 2.651 85650K .......... .......... .......... .......... .......... 67% 157M 1s -2024-03-16T16:52:08Z #15 2.651 85700K .......... .......... .......... .......... .......... 67% 175M 1s -2024-03-16T16:52:08Z #15 2.652 85750K .......... .......... .......... .......... .......... 67% 123M 1s -2024-03-16T16:52:08Z #15 2.652 85800K .......... .......... .......... .......... .......... 67% 146M 1s -2024-03-16T16:52:08Z #15 2.652 85850K .......... .......... .......... .......... .......... 67% 151M 1s -2024-03-16T16:52:08Z #15 2.653 85900K .......... .......... .......... .......... .......... 67% 150M 1s -2024-03-16T16:52:08Z #15 2.654 85950K .......... .......... .......... .......... .......... 67% 144M 1s -2024-03-16T16:52:08Z #15 2.654 86000K .......... .......... .......... .......... .......... 67% 120M 1s -2024-03-16T16:52:08Z #15 2.654 86050K .......... .......... .......... .......... .......... 67% 160M 1s -2024-03-16T16:52:08Z #15 2.654 86100K .......... .......... .......... .......... .......... 67% 144M 1s -2024-03-16T16:52:08Z #15 2.655 86150K .......... .......... .......... .......... .......... 67% 146M 1s -2024-03-16T16:52:08Z #15 2.655 86200K .......... .......... .......... .......... .......... 68% 151M 1s -2024-03-16T16:52:08Z #15 2.655 86250K .......... .......... .......... .......... .......... 68% 47.4M 1s -2024-03-16T16:52:08Z #15 2.656 86300K .......... .......... .......... .......... .......... 68% 53.9M 1s -2024-03-16T16:52:08Z #15 2.657 86350K .......... .......... .......... .......... .......... 68% 73.8M 1s -2024-03-16T16:52:08Z #15 2.658 86400K .......... .......... .......... .......... .......... 68% 81.9M 1s -2024-03-16T16:52:08Z #15 2.658 86450K .......... .......... .......... .......... .......... 68% 80.1M 1s -2024-03-16T16:52:08Z #15 2.659 86500K .......... .......... .......... .......... .......... 68% 36.6M 1s -2024-03-16T16:52:08Z #15 2.660 86550K .......... .......... .......... .......... .......... 68% 25.5M 1s -2024-03-16T16:52:08Z #15 2.662 86600K .......... .......... .......... .......... .......... 68% 153M 1s -2024-03-16T16:52:08Z #15 2.663 86650K .......... .......... .......... .......... .......... 68% 136M 1s -2024-03-16T16:52:08Z #15 2.663 86700K .......... .......... .......... .......... .......... 68% 150M 1s -2024-03-16T16:52:08Z #15 2.664 86750K .......... .......... .......... .......... .......... 68% 121M 1s -2024-03-16T16:52:08Z #15 2.664 86800K .......... .......... .......... .......... .......... 68% 8.02M 1s -2024-03-16T16:52:08Z #15 2.678 86850K .......... .......... .......... .......... .......... 68% 79.7M 1s -2024-03-16T16:52:08Z #15 2.678 86900K .......... .......... .......... .......... .......... 68% 115M 1s -2024-03-16T16:52:08Z #15 2.678 86950K .......... .......... .......... .......... .......... 68% 124M 1s -2024-03-16T16:52:08Z #15 2.678 87000K .......... .......... .......... .......... .......... 68% 91.2M 1s -2024-03-16T16:52:08Z #15 2.678 87050K .......... .......... .......... .......... .......... 68% 81.5M 1s -2024-03-16T16:52:08Z #15 2.678 87100K .......... .......... .......... .......... .......... 68% 179M 1s -2024-03-16T16:52:08Z #15 2.678 87150K .......... .......... .......... .......... .......... 68% 141M 1s -2024-03-16T16:52:08Z #15 2.678 87200K .......... .......... .......... .......... .......... 68% 91.9M 1s -2024-03-16T16:52:08Z #15 2.678 87250K .......... .......... .......... .......... .......... 68% 67.7M 1s -2024-03-16T16:52:08Z #15 2.678 87300K .......... .......... .......... .......... .......... 68% 75.2M 1s -2024-03-16T16:52:08Z #15 2.678 87350K .......... .......... .......... .......... .......... 68% 105M 1s -2024-03-16T16:52:08Z #15 2.678 87400K .......... .......... .......... .......... .......... 68% 83.1M 1s -2024-03-16T16:52:08Z #15 2.678 87450K .......... .......... .......... .......... .......... 69% 173M 1s -2024-03-16T16:52:08Z #15 2.678 87500K .......... .......... .......... .......... .......... 69% 111M 1s -2024-03-16T16:52:08Z #15 2.678 87550K .......... .......... .......... .......... .......... 69% 158M 1s -2024-03-16T16:52:08Z #15 2.678 87600K .......... .......... .......... .......... .......... 69% 116M 1s -2024-03-16T16:52:08Z #15 2.678 87650K .......... .......... .......... .......... .......... 69% 65.5M 1s -2024-03-16T16:52:08Z #15 2.679 87700K .......... .......... .......... .......... .......... 69% 14.8M 1s -2024-03-16T16:52:08Z #15 2.682 87750K .......... .......... .......... .......... .......... 69% 15.7M 1s -2024-03-16T16:52:08Z #15 2.685 87800K .......... .......... .......... .......... .......... 69% 28.1M 1s -2024-03-16T16:52:08Z #15 2.686 87850K .......... .......... .......... .......... .......... 69% 138M 1s -2024-03-16T16:52:08Z #15 2.687 87900K .......... .......... .......... .......... .......... 69% 151M 1s -2024-03-16T16:52:08Z #15 2.687 87950K .......... .......... .......... .......... .......... 69% 141M 1s -2024-03-16T16:52:08Z #15 2.687 88000K .......... .......... .......... .......... .......... 69% 154M 1s -2024-03-16T16:52:08Z #15 2.688 88050K .......... .......... .......... .......... .......... 69% 165M 1s -2024-03-16T16:52:08Z #15 2.688 88100K .......... .......... .......... .......... .......... 69% 174M 1s -2024-03-16T16:52:08Z #15 2.688 88150K .......... .......... .......... .......... .......... 69% 9.17M 1s -2024-03-16T16:52:08Z #15 2.694 88200K .......... .......... .......... .......... .......... 69% 112M 1s -2024-03-16T16:52:08Z #15 2.694 88250K .......... .......... .......... .......... .......... 69% 27.6M 1s -2024-03-16T16:52:08Z #15 2.696 88300K .......... .......... .......... .......... .......... 69% 66.8M 1s -2024-03-16T16:52:08Z #15 2.696 88350K .......... .......... .......... .......... .......... 69% 41.8M 1s -2024-03-16T16:52:08Z #15 2.698 88400K .......... .......... .......... .......... .......... 69% 62.3M 1s -2024-03-16T16:52:08Z #15 2.699 88450K .......... .......... .......... .......... .......... 69% 116M 1s -2024-03-16T16:52:08Z #15 2.699 88500K .......... .......... .......... .......... .......... 69% 45.3M 1s -2024-03-16T16:52:08Z #15 2.700 88550K .......... .......... .......... .......... .......... 69% 32.7M 1s -2024-03-16T16:52:08Z #15 2.702 88600K .......... .......... .......... .......... .......... 69% 47.5M 1s -2024-03-16T16:52:08Z #15 2.702 88650K .......... .......... .......... .......... .......... 69% 61.8M 1s -2024-03-16T16:52:08Z #15 2.703 88700K .......... .......... .......... .......... .......... 70% 73.3M 1s -2024-03-16T16:52:08Z #15 2.704 88750K .......... .......... .......... .......... .......... 70% 38.8M 1s -2024-03-16T16:52:08Z #15 2.705 88800K .......... .......... .......... .......... .......... 70% 135M 1s -2024-03-16T16:52:08Z #15 2.706 88850K .......... .......... .......... .......... .......... 70% 69.9M 1s -2024-03-16T16:52:08Z #15 2.706 88900K .......... .......... .......... .......... .......... 70% 175M 1s -2024-03-16T16:52:08Z #15 2.707 88950K .......... .......... .......... .......... .......... 70% 89.7M 1s -2024-03-16T16:52:08Z #15 2.707 89000K .......... .......... .......... .......... .......... 70% 58.9M 1s -2024-03-16T16:52:08Z #15 2.708 89050K .......... .......... .......... .......... .......... 70% 48.5M 1s -2024-03-16T16:52:08Z #15 2.709 89100K .......... .......... .......... .......... .......... 70% 168M 1s -2024-03-16T16:52:08Z #15 2.709 89150K .......... .......... .......... .......... .......... 70% 21.4M 1s -2024-03-16T16:52:08Z #15 2.711 89200K .......... .......... .......... .......... .......... 70% 38.1M 1s -2024-03-16T16:52:08Z #15 2.713 89250K .......... .......... .......... .......... .......... 70% 56.9M 1s -2024-03-16T16:52:08Z #15 2.714 89300K .......... .......... .......... .......... .......... 70% 50.5M 1s -2024-03-16T16:52:08Z #15 2.714 89350K .......... .......... .......... .......... .......... 70% 68.0M 1s -2024-03-16T16:52:08Z #15 2.715 89400K .......... .......... .......... .......... .......... 70% 52.2M 1s -2024-03-16T16:52:08Z #15 2.716 89450K .......... .......... .......... .......... .......... 70% 54.0M 1s -2024-03-16T16:52:08Z #15 2.717 89500K .......... .......... .......... .......... .......... 70% 57.2M 1s -2024-03-16T16:52:08Z #15 2.718 89550K .......... .......... .......... .......... .......... 70% 69.2M 1s -2024-03-16T16:52:08Z #15 2.719 89600K .......... .......... .......... .......... .......... 70% 90.0M 1s -2024-03-16T16:52:08Z #15 2.719 89650K .......... .......... .......... .......... .......... 70% 64.0M 1s -2024-03-16T16:52:08Z #15 2.720 89700K .......... .......... .......... .......... .......... 70% 68.8M 1s -2024-03-16T16:52:08Z #15 2.721 89750K .......... .......... .......... .......... .......... 70% 59.6M 1s -2024-03-16T16:52:08Z #15 2.721 89800K .......... .......... .......... .......... .......... 70% 72.6M 1s -2024-03-16T16:52:08Z #15 2.723 89850K .......... .......... .......... .......... .......... 70% 54.2M 1s -2024-03-16T16:52:08Z #15 2.723 89900K .......... .......... .......... .......... .......... 70% 73.9M 1s -2024-03-16T16:52:08Z #15 2.724 89950K .......... .......... .......... .......... .......... 70% 61.3M 1s -2024-03-16T16:52:08Z #15 2.725 90000K .......... .......... .......... .......... .......... 71% 74.2M 1s -2024-03-16T16:52:08Z #15 2.725 90050K .......... .......... .......... .......... .......... 71% 76.3M 1s -2024-03-16T16:52:08Z #15 2.726 90100K .......... .......... .......... .......... .......... 71% 78.3M 1s -2024-03-16T16:52:08Z #15 2.727 90150K .......... .......... .......... .......... .......... 71% 44.5M 1s -2024-03-16T16:52:08Z #15 2.728 90200K .......... .......... .......... .......... .......... 71% 32.7M 1s -2024-03-16T16:52:08Z #15 2.729 90250K .......... .......... .......... .......... .......... 71% 66.2M 1s -2024-03-16T16:52:08Z #15 2.730 90300K .......... .......... .......... .......... .......... 71% 57.7M 1s -2024-03-16T16:52:08Z #15 2.731 90350K .......... .......... .......... .......... .......... 71% 30.9M 1s -2024-03-16T16:52:08Z #15 2.732 90400K .......... .......... .......... .......... .......... 71% 71.8M 1s -2024-03-16T16:52:08Z #15 2.733 90450K .......... .......... .......... .......... .......... 71% 45.4M 1s -2024-03-16T16:52:08Z #15 2.734 90500K .......... .......... .......... .......... .......... 71% 72.0M 1s -2024-03-16T16:52:08Z #15 2.735 90550K .......... .......... .......... .......... .......... 71% 42.7M 1s -2024-03-16T16:52:08Z #15 2.736 90600K .......... .......... .......... .......... .......... 71% 7.81M 1s -2024-03-16T16:52:08Z #15 2.742 90650K .......... .......... .......... .......... .......... 71% 153M 1s -2024-03-16T16:52:08Z #15 2.742 90700K .......... .......... .......... .......... .......... 71% 160M 1s -2024-03-16T16:52:08Z #15 2.743 90750K .......... .......... .......... .......... .......... 71% 130M 1s -2024-03-16T16:52:08Z #15 2.743 90800K .......... .......... .......... .......... .......... 71% 145M 1s -2024-03-16T16:52:08Z #15 2.743 90850K .......... .......... .......... .......... .......... 71% 161M 1s -2024-03-16T16:52:08Z #15 2.744 90900K .......... .......... .......... .......... .......... 71% 37.2M 1s -2024-03-16T16:52:08Z #15 2.745 90950K .......... .......... .......... .......... .......... 71% 134M 1s -2024-03-16T16:52:08Z #15 2.745 91000K .......... .......... .......... .......... .......... 71% 10.5M 1s -2024-03-16T16:52:08Z #15 2.750 91050K .......... .......... .......... .......... .......... 71% 166M 1s -2024-03-16T16:52:08Z #15 2.750 91100K .......... .......... .......... .......... .......... 71% 156M 1s -2024-03-16T16:52:08Z #15 2.751 91150K .......... .......... .......... .......... .......... 71% 139M 1s -2024-03-16T16:52:08Z #15 2.751 91200K .......... .......... .......... .......... .......... 71% 81.9M 1s -2024-03-16T16:52:08Z #15 2.752 91250K .......... .......... .......... .......... .......... 72% 46.3M 1s -2024-03-16T16:52:08Z #15 2.753 91300K .......... .......... .......... .......... .......... 72% 59.8M 1s -2024-03-16T16:52:08Z #15 2.754 91350K .......... .......... .......... .......... .......... 72% 43.8M 1s -2024-03-16T16:52:08Z #15 2.755 91400K .......... .......... .......... .......... .......... 72% 157M 1s -2024-03-16T16:52:08Z #15 2.755 91450K .......... .......... .......... .......... .......... 72% 43.9M 1s -2024-03-16T16:52:08Z #15 2.756 91500K .......... .......... .......... .......... .......... 72% 169M 1s -2024-03-16T16:52:08Z #15 2.756 91550K .......... .......... .......... .......... .......... 72% 50.7M 1s -2024-03-16T16:52:08Z #15 2.757 91600K .......... .......... .......... .......... .......... 72% 76.6M 1s -2024-03-16T16:52:08Z #15 2.758 91650K .......... .......... .......... .......... .......... 72% 164M 1s -2024-03-16T16:52:08Z #15 2.758 91700K .......... .......... .......... .......... .......... 72% 57.2M 1s -2024-03-16T16:52:08Z #15 2.759 91750K .......... .......... .......... .......... .......... 72% 27.3M 1s -2024-03-16T16:52:08Z #15 2.761 91800K .......... .......... .......... .......... .......... 72% 23.3M 1s -2024-03-16T16:52:08Z #15 2.763 91850K .......... .......... .......... .......... .......... 72% 150M 1s -2024-03-16T16:52:08Z #15 2.764 91900K .......... .......... .......... .......... .......... 72% 176M 1s -2024-03-16T16:52:09Z #15 2.764 91950K .......... .......... .......... .......... .......... 72% 133M 1s -2024-03-16T16:52:09Z #15 2.764 92000K .......... .......... .......... .......... .......... 72% 67.1M 1s -2024-03-16T16:52:09Z #15 2.765 92050K .......... .......... .......... .......... .......... 72% 141M 1s -2024-03-16T16:52:09Z #15 2.765 92100K .......... .......... .......... .......... .......... 72% 169M 1s -2024-03-16T16:52:09Z #15 2.765 92150K .......... .......... .......... .......... .......... 72% 54.3M 1s -2024-03-16T16:52:09Z #15 2.766 92200K .......... .......... .......... .......... .......... 72% 67.7M 1s -2024-03-16T16:52:09Z #15 2.767 92250K .......... .......... .......... .......... .......... 72% 69.2M 1s -2024-03-16T16:52:09Z #15 2.768 92300K .......... .......... .......... .......... .......... 72% 163M 1s -2024-03-16T16:52:09Z #15 2.768 92350K .......... .......... .......... .......... .......... 72% 49.9M 1s -2024-03-16T16:52:09Z #15 2.769 92400K .......... .......... .......... .......... .......... 72% 65.5M 1s -2024-03-16T16:52:09Z #15 2.770 92450K .......... .......... .......... .......... .......... 72% 49.4M 1s -2024-03-16T16:52:09Z #15 2.771 92500K .......... .......... .......... .......... .......... 72% 49.7M 1s -2024-03-16T16:52:09Z #15 2.772 92550K .......... .......... .......... .......... .......... 73% 133M 1s -2024-03-16T16:52:09Z #15 2.772 92600K .......... .......... .......... .......... .......... 73% 45.4M 1s -2024-03-16T16:52:09Z #15 2.773 92650K .......... .......... .......... .......... .......... 73% 60.3M 1s -2024-03-16T16:52:09Z #15 2.774 92700K .......... .......... .......... .......... .......... 73% 51.2M 1s -2024-03-16T16:52:09Z #15 2.775 92750K .......... .......... .......... .......... .......... 73% 68.7M 1s -2024-03-16T16:52:09Z #15 2.776 92800K .......... .......... .......... .......... .......... 73% 146M 1s -2024-03-16T16:52:09Z #15 2.776 92850K .......... .......... .......... .......... .......... 73% 80.4M 1s -2024-03-16T16:52:09Z #15 2.776 92900K .......... .......... .......... .......... .......... 73% 62.6M 1s -2024-03-16T16:52:09Z #15 2.777 92950K .......... .......... .......... .......... .......... 73% 51.4M 1s -2024-03-16T16:52:09Z #15 2.778 93000K .......... .......... .......... .......... .......... 73% 162M 1s -2024-03-16T16:52:09Z #15 2.779 93050K .......... .......... .......... .......... .......... 73% 51.5M 1s -2024-03-16T16:52:09Z #15 2.779 93100K .......... .......... .......... .......... .......... 73% 62.1M 1s -2024-03-16T16:52:09Z #15 2.780 93150K .......... .......... .......... .......... .......... 73% 51.7M 1s -2024-03-16T16:52:09Z #15 2.781 93200K .......... .......... .......... .......... .......... 73% 77.0M 1s -2024-03-16T16:52:09Z #15 2.782 93250K .......... .......... .......... .......... .......... 73% 163M 1s -2024-03-16T16:52:09Z #15 2.782 93300K .......... .......... .......... .......... .......... 73% 24.6M 1s -2024-03-16T16:52:09Z #15 2.784 93350K .......... .......... .......... .......... .......... 73% 140M 1s -2024-03-16T16:52:09Z #15 2.784 93400K .......... .......... .......... .......... .......... 73% 61.9M 1s -2024-03-16T16:52:09Z #15 2.785 93450K .......... .......... .......... .......... .......... 73% 167M 1s -2024-03-16T16:52:09Z #15 2.786 93500K .......... .......... .......... .......... .......... 73% 95.9M 1s -2024-03-16T16:52:09Z #15 2.786 93550K .......... .......... .......... .......... .......... 73% 48.8M 1s -2024-03-16T16:52:09Z #15 2.787 93600K .......... .......... .......... .......... .......... 73% 157M 1s -2024-03-16T16:52:09Z #15 2.787 93650K .......... .......... .......... .......... .......... 73% 40.5M 1s -2024-03-16T16:52:09Z #15 2.788 93700K .......... .......... .......... .......... .......... 73% 91.8M 1s -2024-03-16T16:52:09Z #15 2.789 93750K .......... .......... .......... .......... .......... 73% 80.3M 1s -2024-03-16T16:52:09Z #15 2.790 93800K .......... .......... .......... .......... .......... 74% 76.6M 1s -2024-03-16T16:52:09Z #15 2.790 93850K .......... .......... .......... .......... .......... 74% 82.1M 1s -2024-03-16T16:52:09Z #15 2.791 93900K .......... .......... .......... .......... .......... 74% 71.7M 1s -2024-03-16T16:52:09Z #15 2.792 93950K .......... .......... .......... .......... .......... 74% 75.6M 1s -2024-03-16T16:52:09Z #15 2.792 94000K .......... .......... .......... .......... .......... 74% 42.7M 1s -2024-03-16T16:52:09Z #15 2.793 94050K .......... .......... .......... .......... .......... 74% 164M 1s -2024-03-16T16:52:09Z #15 2.794 94100K .......... .......... .......... .......... .......... 74% 74.7M 1s -2024-03-16T16:52:09Z #15 2.794 94150K .......... .......... .......... .......... .......... 74% 65.1M 1s -2024-03-16T16:52:09Z #15 2.795 94200K .......... .......... .......... .......... .......... 74% 69.0M 1s -2024-03-16T16:52:09Z #15 2.796 94250K .......... .......... .......... .......... .......... 74% 41.8M 1s -2024-03-16T16:52:09Z #15 2.797 94300K .......... .......... .......... .......... .......... 74% 44.0M 1s -2024-03-16T16:52:09Z #15 2.798 94350K .......... .......... .......... .......... .......... 74% 68.1M 1s -2024-03-16T16:52:09Z #15 2.799 94400K .......... .......... .......... .......... .......... 74% 99.2M 1s -2024-03-16T16:52:09Z #15 2.799 94450K .......... .......... .......... .......... .......... 74% 74.9M 1s -2024-03-16T16:52:09Z #15 2.800 94500K .......... .......... .......... .......... .......... 74% 47.6M 1s -2024-03-16T16:52:09Z #15 2.801 94550K .......... .......... .......... .......... .......... 74% 70.2M 1s -2024-03-16T16:52:09Z #15 2.802 94600K .......... .......... .......... .......... .......... 74% 84.3M 1s -2024-03-16T16:52:09Z #15 2.802 94650K .......... .......... .......... .......... .......... 74% 71.4M 1s -2024-03-16T16:52:09Z #15 2.803 94700K .......... .......... .......... .......... .......... 74% 37.3M 1s -2024-03-16T16:52:09Z #15 2.804 94750K .......... .......... .......... .......... .......... 74% 44.8M 1s -2024-03-16T16:52:09Z #15 2.805 94800K .......... .......... .......... .......... .......... 74% 59.4M 1s -2024-03-16T16:52:09Z #15 2.806 94850K .......... .......... .......... .......... .......... 74% 46.3M 1s -2024-03-16T16:52:09Z #15 2.808 94900K .......... .......... .......... .......... .......... 74% 41.8M 1s -2024-03-16T16:52:09Z #15 2.809 94950K .......... .......... .......... .......... .......... 74% 102M 1s -2024-03-16T16:52:09Z #15 2.809 95000K .......... .......... .......... .......... .......... 74% 40.6M 1s -2024-03-16T16:52:09Z #15 2.810 95050K .......... .......... .......... .......... .......... 75% 69.1M 1s -2024-03-16T16:52:09Z #15 2.811 95100K .......... .......... .......... .......... .......... 75% 23.0M 1s -2024-03-16T16:52:09Z #15 2.813 95150K .......... .......... .......... .......... .......... 75% 25.1M 1s -2024-03-16T16:52:09Z #15 2.815 95200K .......... .......... .......... .......... .......... 75% 28.5M 1s -2024-03-16T16:52:09Z #15 2.816 95250K .......... .......... .......... .......... .......... 75% 92.8M 1s -2024-03-16T16:52:09Z #15 2.817 95300K .......... .......... .......... .......... .......... 75% 158M 1s -2024-03-16T16:52:09Z #15 2.817 95350K .......... .......... .......... .......... .......... 75% 41.8M 1s -2024-03-16T16:52:09Z #15 2.818 95400K .......... .......... .......... .......... .......... 75% 26.3M 1s -2024-03-16T16:52:09Z #15 2.822 95450K .......... .......... .......... .......... .......... 75% 124M 1s -2024-03-16T16:52:09Z #15 2.822 95500K .......... .......... .......... .......... .......... 75% 110M 1s -2024-03-16T16:52:09Z #15 2.822 95550K .......... .......... .......... .......... .......... 75% 123M 1s -2024-03-16T16:52:09Z #15 2.822 95600K .......... .......... .......... .......... .......... 75% 73.0M 1s -2024-03-16T16:52:09Z #15 2.822 95650K .......... .......... .......... .......... .......... 75% 42.5M 1s -2024-03-16T16:52:09Z #15 2.823 95700K .......... .......... .......... .......... .......... 75% 57.8M 1s -2024-03-16T16:52:09Z #15 2.824 95750K .......... .......... .......... .......... .......... 75% 62.9M 1s -2024-03-16T16:52:09Z #15 2.825 95800K .......... .......... .......... .......... .......... 75% 86.8M 1s -2024-03-16T16:52:09Z #15 2.826 95850K .......... .......... .......... .......... .......... 75% 66.4M 1s -2024-03-16T16:52:09Z #15 2.826 95900K .......... .......... .......... .......... .......... 75% 67.9M 1s -2024-03-16T16:52:09Z #15 2.827 95950K .......... .......... .......... .......... .......... 75% 53.1M 1s -2024-03-16T16:52:09Z #15 2.828 96000K .......... .......... .......... .......... .......... 75% 78.3M 1s -2024-03-16T16:52:09Z #15 2.829 96050K .......... .......... .......... .......... .......... 75% 62.8M 1s -2024-03-16T16:52:09Z #15 2.829 96100K .......... .......... .......... .......... .......... 75% 65.6M 1s -2024-03-16T16:52:09Z #15 2.830 96150K .......... .......... .......... .......... .......... 75% 58.2M 1s -2024-03-16T16:52:09Z #15 2.831 96200K .......... .......... .......... .......... .......... 75% 69.9M 1s -2024-03-16T16:52:09Z #15 2.831 96250K .......... .......... .......... .......... .......... 75% 38.6M 1s -2024-03-16T16:52:09Z #15 2.833 96300K .......... .......... .......... .......... .......... 75% 40.2M 1s -2024-03-16T16:52:09Z #15 2.834 96350K .......... .......... .......... .......... .......... 76% 33.3M 1s -2024-03-16T16:52:09Z #15 2.842 96400K .......... .......... .......... .......... .......... 76% 48.5M 1s -2024-03-16T16:52:09Z #15 2.842 96450K .......... .......... .......... .......... .......... 76% 158M 1s -2024-03-16T16:52:09Z #15 2.842 96500K .......... .......... .......... .......... .......... 76% 156M 1s -2024-03-16T16:52:09Z #15 2.842 96550K .......... .......... .......... .......... .......... 76% 150M 1s -2024-03-16T16:52:09Z #15 2.842 96600K .......... .......... .......... .......... .......... 76% 124M 1s -2024-03-16T16:52:09Z #15 2.842 96650K .......... .......... .......... .......... .......... 76% 123M 1s -2024-03-16T16:52:09Z #15 2.842 96700K .......... .......... .......... .......... .......... 76% 163M 1s -2024-03-16T16:52:09Z #15 2.842 96750K .......... .......... .......... .......... .......... 76% 88.7M 1s -2024-03-16T16:52:09Z #15 2.842 96800K .......... .......... .......... .......... .......... 76% 49.4M 1s -2024-03-16T16:52:09Z #15 2.842 96850K .......... .......... .......... .......... .......... 76% 21.0M 1s -2024-03-16T16:52:09Z #15 2.844 96900K .......... .......... .......... .......... .......... 76% 13.6M 1s -2024-03-16T16:52:09Z #15 2.846 96950K .......... .......... .......... .......... .......... 76% 41.0M 1s -2024-03-16T16:52:09Z #15 2.847 97000K .......... .......... .......... .......... .......... 76% 32.7M 1s -2024-03-16T16:52:09Z #15 2.849 97050K .......... .......... .......... .......... .......... 76% 36.9M 1s -2024-03-16T16:52:09Z #15 2.850 97100K .......... .......... .......... .......... .......... 76% 37.3M 1s -2024-03-16T16:52:09Z #15 2.852 97150K .......... .......... .......... .......... .......... 76% 44.8M 1s -2024-03-16T16:52:09Z #15 2.853 97200K .......... .......... .......... .......... .......... 76% 56.2M 1s -2024-03-16T16:52:09Z #15 2.853 97250K .......... .......... .......... .......... .......... 76% 36.8M 1s -2024-03-16T16:52:09Z #15 2.855 97300K .......... .......... .......... .......... .......... 76% 61.1M 1s -2024-03-16T16:52:09Z #15 2.855 97350K .......... .......... .......... .......... .......... 76% 33.2M 1s -2024-03-16T16:52:09Z #15 2.857 97400K .......... .......... .......... .......... .......... 76% 49.2M 1s -2024-03-16T16:52:09Z #15 2.858 97450K .......... .......... .......... .......... .......... 76% 25.9M 1s -2024-03-16T16:52:09Z #15 2.862 97500K .......... .......... .......... .......... .......... 76% 134M 1s -2024-03-16T16:52:09Z #15 2.862 97550K .......... .......... .......... .......... .......... 76% 127M 0s -2024-03-16T16:52:09Z #15 2.862 97600K .......... .......... .......... .......... .......... 77% 174M 0s -2024-03-16T16:52:09Z #15 2.862 97650K .......... .......... .......... .......... .......... 77% 151M 0s -2024-03-16T16:52:09Z #15 2.862 97700K .......... .......... .......... .......... .......... 77% 165M 0s -2024-03-16T16:52:09Z #15 2.862 97750K .......... .......... .......... .......... .......... 77% 13.5M 0s -2024-03-16T16:52:09Z #15 2.866 97800K .......... .......... .......... .......... .......... 77% 148M 0s -2024-03-16T16:52:09Z #15 2.866 97850K .......... .......... .......... .......... .......... 77% 82.1M 0s -2024-03-16T16:52:09Z #15 2.867 97900K .......... .......... .......... .......... .......... 77% 29.2M 0s -2024-03-16T16:52:09Z #15 2.869 97950K .......... .......... .......... .......... .......... 77% 141M 0s -2024-03-16T16:52:09Z #15 2.869 98000K .......... .......... .......... .......... .......... 77% 169M 0s -2024-03-16T16:52:09Z #15 2.869 98050K .......... .......... .......... .......... .......... 77% 163M 0s -2024-03-16T16:52:09Z #15 2.869 98100K .......... .......... .......... .......... .......... 77% 165M 0s -2024-03-16T16:52:09Z #15 2.869 98150K .......... .......... .......... .......... .......... 77% 142M 0s -2024-03-16T16:52:09Z #15 2.869 98200K .......... .......... .......... .......... .......... 77% 28.2M 0s -2024-03-16T16:52:09Z #15 2.872 98250K .......... .......... .......... .......... .......... 77% 19.8M 0s -2024-03-16T16:52:09Z #15 2.874 98300K .......... .......... .......... .......... .......... 77% 49.8M 0s -2024-03-16T16:52:09Z #15 2.876 98350K .......... .......... .......... .......... .......... 77% 149M 0s -2024-03-16T16:52:09Z #15 2.876 98400K .......... .......... .......... .......... .......... 77% 151M 0s -2024-03-16T16:52:09Z #15 2.876 98450K .......... .......... .......... .......... .......... 77% 145M 0s -2024-03-16T16:52:09Z #15 2.876 98500K .......... .......... .......... .......... .......... 77% 179M 0s -2024-03-16T16:52:09Z #15 2.876 98550K .......... .......... .......... .......... .......... 77% 19.9M 0s -2024-03-16T16:52:09Z #15 2.879 98600K .......... .......... .......... .......... .......... 77% 26.8M 0s -2024-03-16T16:52:09Z #15 2.881 98650K .......... .......... .......... .......... .......... 77% 163M 0s -2024-03-16T16:52:09Z #15 2.881 98700K .......... .......... .......... .......... .......... 77% 172M 0s -2024-03-16T16:52:09Z #15 2.881 98750K .......... .......... .......... .......... .......... 77% 141M 0s -2024-03-16T16:52:09Z #15 2.881 98800K .......... .......... .......... .......... .......... 77% 156M 0s -2024-03-16T16:52:09Z #15 2.881 98850K .......... .......... .......... .......... .......... 78% 23.5M 0s -2024-03-16T16:52:09Z #15 2.884 98900K .......... .......... .......... .......... .......... 78% 17.1M 0s -2024-03-16T16:52:09Z #15 2.888 98950K .......... .......... .......... .......... .......... 78% 78.8M 0s -2024-03-16T16:52:09Z #15 2.888 99000K .......... .......... .......... .......... .......... 78% 139M 0s -2024-03-16T16:52:09Z #15 2.888 99050K .......... .......... .......... .......... .......... 78% 172M 0s -2024-03-16T16:52:09Z #15 2.888 99100K .......... .......... .......... .......... .......... 78% 157M 0s -2024-03-16T16:52:09Z #15 2.888 99150K .......... .......... .......... .......... .......... 78% 131M 0s -2024-03-16T16:52:09Z #15 2.888 99200K .......... .......... .......... .......... .......... 78% 171M 0s -2024-03-16T16:52:09Z #15 2.888 99250K .......... .......... .......... .......... .......... 78% 18.5M 0s -2024-03-16T16:52:09Z #15 2.891 99300K .......... .......... .......... .......... .......... 78% 24.4M 0s -2024-03-16T16:52:09Z #15 2.897 99350K .......... .......... .......... .......... .......... 78% 28.8M 0s -2024-03-16T16:52:09Z #15 2.897 99400K .......... .......... .......... .......... .......... 78% 33.0M 0s -2024-03-16T16:52:09Z #15 2.897 99450K .......... .......... .......... .......... .......... 78% 29.6M 0s -2024-03-16T16:52:09Z #15 2.898 99500K .......... .......... .......... .......... .......... 78% 37.7M 0s -2024-03-16T16:52:09Z #15 2.899 99550K .......... .......... .......... .......... .......... 78% 24.3M 0s -2024-03-16T16:52:09Z #15 2.902 99600K .......... .......... .......... .......... .......... 78% 76.4M 0s -2024-03-16T16:52:09Z #15 2.902 99650K .......... .......... .......... .......... .......... 78% 83.5M 0s -2024-03-16T16:52:09Z #15 2.904 99700K .......... .......... .......... .......... .......... 78% 142M 0s -2024-03-16T16:52:09Z #15 2.904 99750K .......... .......... .......... .......... .......... 78% 156M 0s -2024-03-16T16:52:09Z #15 2.904 99800K .......... .......... .......... .......... .......... 78% 173M 0s -2024-03-16T16:52:09Z #15 2.904 99850K .......... .......... .......... .......... .......... 78% 180M 0s -2024-03-16T16:52:09Z #15 2.904 99900K .......... .......... .......... .......... .......... 78% 22.9M 0s -2024-03-16T16:52:09Z #15 2.907 99950K .......... .......... .......... .......... .......... 78% 10.4M 0s -2024-03-16T16:52:09Z #15 2.914 100000K .......... .......... .......... .......... .......... 78% 135M 0s -2024-03-16T16:52:09Z #15 2.914 100050K .......... .......... .......... .......... .......... 78% 165M 0s -2024-03-16T16:52:09Z #15 2.914 100100K .......... .......... .......... .......... .......... 78% 158M 0s -2024-03-16T16:52:09Z #15 2.914 100150K .......... .......... .......... .......... .......... 79% 129M 0s -2024-03-16T16:52:09Z #15 2.914 100200K .......... .......... .......... .......... .......... 79% 144M 0s -2024-03-16T16:52:09Z #15 2.914 100250K .......... .......... .......... .......... .......... 79% 143M 0s -2024-03-16T16:52:09Z #15 2.914 100300K .......... .......... .......... .......... .......... 79% 151M 0s -2024-03-16T16:52:09Z #15 2.914 100350K .......... .......... .......... .......... .......... 79% 189M 0s -2024-03-16T16:52:09Z #15 2.914 100400K .......... .......... .......... .......... .......... 79% 140M 0s -2024-03-16T16:52:09Z #15 2.914 100450K .......... .......... .......... .......... .......... 79% 165M 0s -2024-03-16T16:52:09Z #15 2.917 100500K .......... .......... .......... .......... .......... 79% 8.94M 0s -2024-03-16T16:52:09Z #15 2.922 100550K .......... .......... .......... .......... .......... 79% 151M 0s -2024-03-16T16:52:09Z #15 2.922 100600K .......... .......... .......... .......... .......... 79% 150M 0s -2024-03-16T16:52:09Z #15 2.922 100650K .......... .......... .......... .......... .......... 79% 168M 0s -2024-03-16T16:52:09Z #15 2.922 100700K .......... .......... .......... .......... .......... 79% 141M 0s -2024-03-16T16:52:09Z #15 2.922 100750K .......... .......... .......... .......... .......... 79% 167M 0s -2024-03-16T16:52:09Z #15 2.922 100800K .......... .......... .......... .......... .......... 79% 162M 0s -2024-03-16T16:52:09Z #15 2.922 100850K .......... .......... .......... .......... .......... 79% 159M 0s -2024-03-16T16:52:09Z #15 2.922 100900K .......... .......... .......... .......... .......... 79% 157M 0s -2024-03-16T16:52:09Z #15 2.922 100950K .......... .......... .......... .......... .......... 79% 20.0M 0s -2024-03-16T16:52:09Z #15 2.924 101000K .......... .......... .......... .......... .......... 79% 17.9M 0s -2024-03-16T16:52:09Z #15 2.927 101050K .......... .......... .......... .......... .......... 79% 151M 0s -2024-03-16T16:52:09Z #15 2.927 101100K .......... .......... .......... .......... .......... 79% 6.20M 0s -2024-03-16T16:52:09Z #15 2.935 101150K .......... .......... .......... .......... .......... 79% 45.7M 0s -2024-03-16T16:52:09Z #15 2.936 101200K .......... .......... .......... .......... .......... 79% 8.54M 0s -2024-03-16T16:52:09Z #15 2.942 101250K .......... .......... .......... .......... .......... 79% 143M 0s -2024-03-16T16:52:09Z #15 2.942 101300K .......... .......... .......... .......... .......... 79% 132M 0s -2024-03-16T16:52:09Z #15 2.942 101350K .......... .......... .......... .......... .......... 79% 159M 0s -2024-03-16T16:52:09Z #15 2.943 101400K .......... .......... .......... .......... .......... 80% 130M 0s -2024-03-16T16:52:09Z #15 2.944 101450K .......... .......... .......... .......... .......... 80% 166M 0s -2024-03-16T16:52:09Z #15 2.944 101500K .......... .......... .......... .......... .......... 80% 150M 0s -2024-03-16T16:52:09Z #15 2.944 101550K .......... .......... .......... .......... .......... 80% 125M 0s -2024-03-16T16:52:09Z #15 2.944 101600K .......... .......... .......... .......... .......... 80% 177M 0s -2024-03-16T16:52:09Z #15 2.944 101650K .......... .......... .......... .......... .......... 80% 57.4M 0s -2024-03-16T16:52:09Z #15 2.946 101700K .......... .......... .......... .......... .......... 80% 160M 0s -2024-03-16T16:52:09Z #15 2.950 101750K .......... .......... .......... .......... .......... 80% 11.1M 0s -2024-03-16T16:52:09Z #15 2.952 101800K .......... .......... .......... .......... .......... 80% 167M 0s -2024-03-16T16:52:09Z #15 2.952 101850K .......... .......... .......... .......... .......... 80% 176M 0s -2024-03-16T16:52:09Z #15 2.952 101900K .......... .......... .......... .......... .......... 80% 140M 0s -2024-03-16T16:52:09Z #15 2.952 101950K .......... .......... .......... .......... .......... 80% 162M 0s -2024-03-16T16:52:09Z #15 2.952 102000K .......... .......... .......... .......... .......... 80% 189M 0s -2024-03-16T16:52:09Z #15 2.952 102050K .......... .......... .......... .......... .......... 80% 182M 0s -2024-03-16T16:52:09Z #15 2.952 102100K .......... .......... .......... .......... .......... 80% 63.0M 0s -2024-03-16T16:52:09Z #15 2.953 102150K .......... .......... .......... .......... .......... 80% 24.5M 0s -2024-03-16T16:52:09Z #15 2.955 102200K .......... .......... .......... .......... .......... 80% 70.6M 0s -2024-03-16T16:52:09Z #15 2.955 102250K .......... .......... .......... .......... .......... 80% 79.7M 0s -2024-03-16T16:52:09Z #15 2.956 102300K .......... .......... .......... .......... .......... 80% 142M 0s -2024-03-16T16:52:09Z #15 2.956 102350K .......... .......... .......... .......... .......... 80% 157M 0s -2024-03-16T16:52:09Z #15 2.957 102400K .......... .......... .......... .......... .......... 80% 50.0M 0s -2024-03-16T16:52:09Z #15 2.957 102450K .......... .......... .......... .......... .......... 80% 78.8M 0s -2024-03-16T16:52:09Z #15 2.958 102500K .......... .......... .......... .......... .......... 80% 63.0M 0s -2024-03-16T16:52:09Z #15 2.959 102550K .......... .......... .......... .......... .......... 80% 64.9M 0s -2024-03-16T16:52:09Z #15 2.961 102600K .......... .......... .......... .......... .......... 80% 157M 0s -2024-03-16T16:52:09Z #15 2.961 102650K .......... .......... .......... .......... .......... 81% 45.9M 0s -2024-03-16T16:52:09Z #15 2.961 102700K .......... .......... .......... .......... .......... 81% 110M 0s -2024-03-16T16:52:09Z #15 2.962 102750K .......... .......... .......... .......... .......... 81% 57.7M 0s -2024-03-16T16:52:09Z #15 2.962 102800K .......... .......... .......... .......... .......... 81% 60.0M 0s -2024-03-16T16:52:09Z #15 2.963 102850K .......... .......... .......... .......... .......... 81% 156M 0s -2024-03-16T16:52:09Z #15 2.963 102900K .......... .......... .......... .......... .......... 81% 56.9M 0s -2024-03-16T16:52:09Z #15 2.964 102950K .......... .......... .......... .......... .......... 81% 70.3M 0s -2024-03-16T16:52:09Z #15 2.965 103000K .......... .......... .......... .......... .......... 81% 62.7M 0s -2024-03-16T16:52:09Z #15 2.966 103050K .......... .......... .......... .......... .......... 81% 176M 0s -2024-03-16T16:52:09Z #15 2.966 103100K .......... .......... .......... .......... .......... 81% 53.1M 0s -2024-03-16T16:52:09Z #15 2.967 103150K .......... .......... .......... .......... .......... 81% 67.1M 0s -2024-03-16T16:52:09Z #15 2.968 103200K .......... .......... .......... .......... .......... 81% 69.4M 0s -2024-03-16T16:52:09Z #15 2.969 103250K .......... .......... .......... .......... .......... 81% 49.4M 0s -2024-03-16T16:52:09Z #15 2.970 103300K .......... .......... .......... .......... .......... 81% 161M 0s -2024-03-16T16:52:09Z #15 2.970 103350K .......... .......... .......... .......... .......... 81% 79.4M 0s -2024-03-16T16:52:09Z #15 2.970 103400K .......... .......... .......... .......... .......... 81% 28.2M 0s -2024-03-16T16:52:09Z #15 2.973 103450K .......... .......... .......... .......... .......... 81% 39.1M 0s -2024-03-16T16:52:09Z #15 2.973 103500K .......... .......... .......... .......... .......... 81% 23.5M 0s -2024-03-16T16:52:09Z #15 2.976 103550K .......... .......... .......... .......... .......... 81% 39.1M 0s -2024-03-16T16:52:09Z #15 2.976 103600K .......... .......... .......... .......... .......... 81% 65.8M 0s -2024-03-16T16:52:09Z #15 2.977 103650K .......... .......... .......... .......... .......... 81% 64.5M 0s -2024-03-16T16:52:09Z #15 2.978 103700K .......... .......... .......... .......... .......... 81% 71.9M 0s -2024-03-16T16:52:09Z #15 2.979 103750K .......... .......... .......... .......... .......... 81% 62.1M 0s -2024-03-16T16:52:09Z #15 2.979 103800K .......... .......... .......... .......... .......... 81% 75.2M 0s -2024-03-16T16:52:09Z #15 2.980 103850K .......... .......... .......... .......... .......... 81% 73.2M 0s -2024-03-16T16:52:09Z #15 2.981 103900K .......... .......... .......... .......... .......... 81% 62.4M 0s -2024-03-16T16:52:09Z #15 2.982 103950K .......... .......... .......... .......... .......... 82% 72.4M 0s -2024-03-16T16:52:09Z #15 2.982 104000K .......... .......... .......... .......... .......... 82% 31.2M 0s -2024-03-16T16:52:09Z #15 2.984 104050K .......... .......... .......... .......... .......... 82% 74.8M 0s -2024-03-16T16:52:09Z #15 2.984 104100K .......... .......... .......... .......... .......... 82% 58.0M 0s -2024-03-16T16:52:09Z #15 2.985 104150K .......... .......... .......... .......... .......... 82% 59.8M 0s -2024-03-16T16:52:09Z #15 2.986 104200K .......... .......... .......... .......... .......... 82% 130M 0s -2024-03-16T16:52:09Z #15 2.987 104250K .......... .......... .......... .......... .......... 82% 105M 0s -2024-03-16T16:52:09Z #15 2.987 104300K .......... .......... .......... .......... .......... 82% 111M 0s -2024-03-16T16:52:09Z #15 2.987 104350K .......... .......... .......... .......... .......... 82% 134M 0s -2024-03-16T16:52:09Z #15 2.988 104400K .......... .......... .......... .......... .......... 82% 132M 0s -2024-03-16T16:52:09Z #15 2.988 104450K .......... .......... .......... .......... .......... 82% 148M 0s -2024-03-16T16:52:09Z #15 2.989 104500K .......... .......... .......... .......... .......... 82% 116M 0s -2024-03-16T16:52:09Z #15 2.989 104550K .......... .......... .......... .......... .......... 82% 105M 0s -2024-03-16T16:52:09Z #15 2.989 104600K .......... .......... .......... .......... .......... 82% 17.3M 0s -2024-03-16T16:52:09Z #15 2.993 104650K .......... .......... .......... .......... .......... 82% 86.2M 0s -2024-03-16T16:52:09Z #15 2.993 104700K .......... .......... .......... .......... .......... 82% 27.8M 0s -2024-03-16T16:52:09Z #15 2.995 104750K .......... .......... .......... .......... .......... 82% 75.3M 0s -2024-03-16T16:52:09Z #15 2.995 104800K .......... .......... .......... .......... .......... 82% 99.3M 0s -2024-03-16T16:52:09Z #15 2.996 104850K .......... .......... .......... .......... .......... 82% 48.9M 0s -2024-03-16T16:52:09Z #15 2.997 104900K .......... .......... .......... .......... .......... 82% 146M 0s -2024-03-16T16:52:09Z #15 2.997 104950K .......... .......... .......... .......... .......... 82% 31.4M 0s -2024-03-16T16:52:09Z #15 2.998 105000K .......... .......... .......... .......... .......... 82% 54.5M 0s -2024-03-16T16:52:09Z #15 2.999 105050K .......... .......... .......... .......... .......... 82% 30.1M 0s -2024-03-16T16:52:09Z #15 3.001 105100K .......... .......... .......... .......... .......... 82% 123M 0s -2024-03-16T16:52:09Z #15 3.001 105150K .......... .......... .......... .......... .......... 82% 9.91M 0s -2024-03-16T16:52:09Z #15 3.007 105200K .......... .......... .......... .......... .......... 83% 16.4M 0s -2024-03-16T16:52:09Z #15 3.009 105250K .......... .......... .......... .......... .......... 83% 35.1M 0s -2024-03-16T16:52:09Z #15 3.011 105300K .......... .......... .......... .......... .......... 83% 40.2M 0s -2024-03-16T16:52:09Z #15 3.012 105350K .......... .......... .......... .......... .......... 83% 122M 0s -2024-03-16T16:52:09Z #15 3.012 105400K .......... .......... .......... .......... .......... 83% 43.4M 0s -2024-03-16T16:52:09Z #15 3.014 105450K .......... .......... .......... .......... .......... 83% 78.5M 0s -2024-03-16T16:52:09Z #15 3.014 105500K .......... .......... .......... .......... .......... 83% 106M 0s -2024-03-16T16:52:09Z #15 3.015 105550K .......... .......... .......... .......... .......... 83% 27.5M 0s -2024-03-16T16:52:09Z #15 3.016 105600K .......... .......... .......... .......... .......... 83% 125M 0s -2024-03-16T16:52:09Z #15 3.017 105650K .......... .......... .......... .......... .......... 83% 41.1M 0s -2024-03-16T16:52:09Z #15 3.018 105700K .......... .......... .......... .......... .......... 83% 42.0M 0s -2024-03-16T16:52:09Z #15 3.019 105750K .......... .......... .......... .......... .......... 83% 36.7M 0s -2024-03-16T16:52:09Z #15 3.020 105800K .......... .......... .......... .......... .......... 83% 24.2M 0s -2024-03-16T16:52:09Z #15 3.023 105850K .......... .......... .......... .......... .......... 83% 45.8M 0s -2024-03-16T16:52:09Z #15 3.024 105900K .......... .......... .......... .......... .......... 83% 75.8M 0s -2024-03-16T16:52:09Z #15 3.024 105950K .......... .......... .......... .......... .......... 83% 79.0M 0s -2024-03-16T16:52:09Z #15 3.025 106000K .......... .......... .......... .......... .......... 83% 44.5M 0s -2024-03-16T16:52:09Z #15 3.026 106050K .......... .......... .......... .......... .......... 83% 68.7M 0s -2024-03-16T16:52:09Z #15 3.027 106100K .......... .......... .......... .......... .......... 83% 92.1M 0s -2024-03-16T16:52:09Z #15 3.027 106150K .......... .......... .......... .......... .......... 83% 156M 0s -2024-03-16T16:52:09Z #15 3.027 106200K .......... .......... .......... .......... .......... 83% 71.9M 0s -2024-03-16T16:52:09Z #15 3.028 106250K .......... .......... .......... .......... .......... 83% 50.2M 0s -2024-03-16T16:52:09Z #15 3.029 106300K .......... .......... .......... .......... .......... 83% 51.8M 0s -2024-03-16T16:52:09Z #15 3.030 106350K .......... .......... .......... .......... .......... 83% 53.9M 0s -2024-03-16T16:52:09Z #15 3.031 106400K .......... .......... .......... .......... .......... 83% 56.1M 0s -2024-03-16T16:52:09Z #15 3.032 106450K .......... .......... .......... .......... .......... 84% 49.8M 0s -2024-03-16T16:52:09Z #15 3.033 106500K .......... .......... .......... .......... .......... 84% 77.3M 0s -2024-03-16T16:52:09Z #15 3.034 106550K .......... .......... .......... .......... .......... 84% 57.4M 0s -2024-03-16T16:52:09Z #15 3.035 106600K .......... .......... .......... .......... .......... 84% 70.8M 0s -2024-03-16T16:52:09Z #15 3.035 106650K .......... .......... .......... .......... .......... 84% 60.3M 0s -2024-03-16T16:52:09Z #15 3.036 106700K .......... .......... .......... .......... .......... 84% 8.46M 0s -2024-03-16T16:52:09Z #15 3.042 106750K .......... .......... .......... .......... .......... 84% 117M 0s -2024-03-16T16:52:09Z #15 3.043 106800K .......... .......... .......... .......... .......... 84% 124M 0s -2024-03-16T16:52:09Z #15 3.043 106850K .......... .......... .......... .......... .......... 84% 127M 0s -2024-03-16T16:52:09Z #15 3.043 106900K .......... .......... .......... .......... .......... 84% 131M 0s -2024-03-16T16:52:09Z #15 3.043 106950K .......... .......... .......... .......... .......... 84% 108M 0s -2024-03-16T16:52:09Z #15 3.043 107000K .......... .......... .......... .......... .......... 84% 125M 0s -2024-03-16T16:52:09Z #15 3.044 107050K .......... .......... .......... .......... .......... 84% 143M 0s -2024-03-16T16:52:09Z #15 3.044 107100K .......... .......... .......... .......... .......... 84% 108M 0s -2024-03-16T16:52:09Z #15 3.045 107150K .......... .......... .......... .......... .......... 84% 95.0M 0s -2024-03-16T16:52:09Z #15 3.045 107200K .......... .......... .......... .......... .......... 84% 137M 0s -2024-03-16T16:52:09Z #15 3.048 107250K .......... .......... .......... .......... .......... 84% 28.3M 0s -2024-03-16T16:52:09Z #15 3.048 107300K .......... .......... .......... .......... .......... 84% 110M 0s -2024-03-16T16:52:09Z #15 3.048 107350K .......... .......... .......... .......... .......... 84% 104M 0s -2024-03-16T16:52:09Z #15 3.048 107400K .......... .......... .......... .......... .......... 84% 141M 0s -2024-03-16T16:52:09Z #15 3.049 107450K .......... .......... .......... .......... .......... 84% 9.04M 0s -2024-03-16T16:52:09Z #15 3.054 107500K .......... .......... .......... .......... .......... 84% 132M 0s -2024-03-16T16:52:09Z #15 3.054 107550K .......... .......... .......... .......... .......... 84% 114M 0s -2024-03-16T16:52:09Z #15 3.055 107600K .......... .......... .......... .......... .......... 84% 125M 0s -2024-03-16T16:52:09Z #15 3.055 107650K .......... .......... .......... .......... .......... 84% 144M 0s -2024-03-16T16:52:09Z #15 3.055 107700K .......... .......... .......... .......... .......... 84% 135M 0s -2024-03-16T16:52:09Z #15 3.056 107750K .......... .......... .......... .......... .......... 85% 120M 0s -2024-03-16T16:52:09Z #15 3.057 107800K .......... .......... .......... .......... .......... 85% 23.1M 0s -2024-03-16T16:52:09Z #15 3.059 107850K .......... .......... .......... .......... .......... 85% 144M 0s -2024-03-16T16:52:09Z #15 3.059 107900K .......... .......... .......... .......... .......... 85% 124M 0s -2024-03-16T16:52:09Z #15 3.059 107950K .......... .......... .......... .......... .......... 85% 127M 0s -2024-03-16T16:52:09Z #15 3.060 108000K .......... .......... .......... .......... .......... 85% 115M 0s -2024-03-16T16:52:09Z #15 3.061 108050K .......... .......... .......... .......... .......... 85% 129M 0s -2024-03-16T16:52:09Z #15 3.061 108100K .......... .......... .......... .......... .......... 85% 128M 0s -2024-03-16T16:52:09Z #15 3.062 108150K .......... .......... .......... .......... .......... 85% 39.0M 0s -2024-03-16T16:52:09Z #15 3.063 108200K .......... .......... .......... .......... .......... 85% 35.7M 0s -2024-03-16T16:52:09Z #15 3.064 108250K .......... .......... .......... .......... .......... 85% 152M 0s -2024-03-16T16:52:09Z #15 3.064 108300K .......... .......... .......... .......... .......... 85% 150M 0s -2024-03-16T16:52:09Z #15 3.064 108350K .......... .......... .......... .......... .......... 85% 57.0M 0s -2024-03-16T16:52:09Z #15 3.065 108400K .......... .......... .......... .......... .......... 85% 85.0M 0s -2024-03-16T16:52:09Z #15 3.066 108450K .......... .......... .......... .......... .......... 85% 57.6M 0s -2024-03-16T16:52:09Z #15 3.066 108500K .......... .......... .......... .......... .......... 85% 38.6M 0s -2024-03-16T16:52:09Z #15 3.068 108550K .......... .......... .......... .......... .......... 85% 62.7M 0s -2024-03-16T16:52:09Z #15 3.069 108600K .......... .......... .......... .......... .......... 85% 169M 0s -2024-03-16T16:52:09Z #15 3.069 108650K .......... .......... .......... .......... .......... 85% 51.9M 0s -2024-03-16T16:52:09Z #15 3.069 108700K .......... .......... .......... .......... .......... 85% 62.0M 0s -2024-03-16T16:52:09Z #15 3.072 108750K .......... .......... .......... .......... .......... 85% 46.8M 0s -2024-03-16T16:52:09Z #15 3.072 108800K .......... .......... .......... .......... .......... 85% 53.0M 0s -2024-03-16T16:52:09Z #15 3.072 108850K .......... .......... .......... .......... .......... 85% 108M 0s -2024-03-16T16:52:09Z #15 3.073 108900K .......... .......... .......... .......... .......... 85% 19.7M 0s -2024-03-16T16:52:09Z #15 3.076 108950K .......... .......... .......... .......... .......... 85% 23.8M 0s -2024-03-16T16:52:09Z #15 3.077 109000K .......... .......... .......... .......... .......... 86% 107M 0s -2024-03-16T16:52:09Z #15 3.078 109050K .......... .......... .......... .......... .......... 86% 99.6M 0s -2024-03-16T16:52:09Z #15 3.078 109100K .......... .......... .......... .......... .......... 86% 30.5M 0s -2024-03-16T16:52:09Z #15 3.080 109150K .......... .......... .......... .......... .......... 86% 46.0M 0s -2024-03-16T16:52:09Z #15 3.081 109200K .......... .......... .......... .......... .......... 86% 64.2M 0s -2024-03-16T16:52:09Z #15 3.082 109250K .......... .......... .......... .......... .......... 86% 59.4M 0s -2024-03-16T16:52:09Z #15 3.084 109300K .......... .......... .......... .......... .......... 86% 177M 0s -2024-03-16T16:52:09Z #15 3.084 109350K .......... .......... .......... .......... .......... 86% 151M 0s -2024-03-16T16:52:09Z #15 3.084 109400K .......... .......... .......... .......... .......... 86% 183M 0s -2024-03-16T16:52:09Z #15 3.084 109450K .......... .......... .......... .......... .......... 86% 175M 0s -2024-03-16T16:52:09Z #15 3.084 109500K .......... .......... .......... .......... .......... 86% 91.7M 0s -2024-03-16T16:52:09Z #15 3.084 109550K .......... .......... .......... .......... .......... 86% 97.7M 0s -2024-03-16T16:52:09Z #15 3.085 109600K .......... .......... .......... .......... .......... 86% 30.9M 0s -2024-03-16T16:52:09Z #15 3.087 109650K .......... .......... .......... .......... .......... 86% 30.0M 0s -2024-03-16T16:52:09Z #15 3.088 109700K .......... .......... .......... .......... .......... 86% 59.0M 0s -2024-03-16T16:52:09Z #15 3.089 109750K .......... .......... .......... .......... .......... 86% 52.1M 0s -2024-03-16T16:52:09Z #15 3.090 109800K .......... .......... .......... .......... .......... 86% 120M 0s -2024-03-16T16:52:09Z #15 3.090 109850K .......... .......... .......... .......... .......... 86% 120M 0s -2024-03-16T16:52:09Z #15 3.090 109900K .......... .......... .......... .......... .......... 86% 101M 0s -2024-03-16T16:52:09Z #15 3.091 109950K .......... .......... .......... .......... .......... 86% 111M 0s -2024-03-16T16:52:09Z #15 3.091 110000K .......... .......... .......... .......... .......... 86% 113M 0s -2024-03-16T16:52:09Z #15 3.092 110050K .......... .......... .......... .......... .......... 86% 48.7M 0s -2024-03-16T16:52:09Z #15 3.093 110100K .......... .......... .......... .......... .......... 86% 64.4M 0s -2024-03-16T16:52:09Z #15 3.094 110150K .......... .......... .......... .......... .......... 86% 91.3M 0s -2024-03-16T16:52:09Z #15 3.094 110200K .......... .......... .......... .......... .......... 86% 58.5M 0s -2024-03-16T16:52:09Z #15 3.095 110250K .......... .......... .......... .......... .......... 86% 63.7M 0s -2024-03-16T16:52:09Z #15 3.096 110300K .......... .......... .......... .......... .......... 87% 118M 0s -2024-03-16T16:52:09Z #15 3.096 110350K .......... .......... .......... .......... .......... 87% 91.6M 0s -2024-03-16T16:52:09Z #15 3.097 110400K .......... .......... .......... .......... .......... 87% 119M 0s -2024-03-16T16:52:09Z #15 3.097 110450K .......... .......... .......... .......... .......... 87% 61.1M 0s -2024-03-16T16:52:09Z #15 3.098 110500K .......... .......... .......... .......... .......... 87% 120M 0s -2024-03-16T16:52:09Z #15 3.098 110550K .......... .......... .......... .......... .......... 87% 59.6M 0s -2024-03-16T16:52:09Z #15 3.099 110600K .......... .......... .......... .......... .......... 87% 90.0M 0s -2024-03-16T16:52:09Z #15 3.100 110650K .......... .......... .......... .......... .......... 87% 54.8M 0s -2024-03-16T16:52:09Z #15 3.100 110700K .......... .......... .......... .......... .......... 87% 59.0M 0s -2024-03-16T16:52:09Z #15 3.101 110750K .......... .......... .......... .......... .......... 87% 49.6M 0s -2024-03-16T16:52:09Z #15 3.102 110800K .......... .......... .......... .......... .......... 87% 72.9M 0s -2024-03-16T16:52:09Z #15 3.103 110850K .......... .......... .......... .......... .......... 87% 58.4M 0s -2024-03-16T16:52:09Z #15 3.104 110900K .......... .......... .......... .......... .......... 87% 62.8M 0s -2024-03-16T16:52:09Z #15 3.105 110950K .......... .......... .......... .......... .......... 87% 53.8M 0s -2024-03-16T16:52:09Z #15 3.106 111000K .......... .......... .......... .......... .......... 87% 54.8M 0s -2024-03-16T16:52:09Z #15 3.107 111050K .......... .......... .......... .......... .......... 87% 90.0M 0s -2024-03-16T16:52:09Z #15 3.107 111100K .......... .......... .......... .......... .......... 87% 100M 0s -2024-03-16T16:52:09Z #15 3.107 111150K .......... .......... .......... .......... .......... 87% 54.0M 0s -2024-03-16T16:52:09Z #15 3.109 111200K .......... .......... .......... .......... .......... 87% 57.5M 0s -2024-03-16T16:52:09Z #15 3.109 111250K .......... .......... .......... .......... .......... 87% 17.9M 0s -2024-03-16T16:52:09Z #15 3.112 111300K .......... .......... .......... .......... .......... 87% 48.9M 0s -2024-03-16T16:52:09Z #15 3.113 111350K .......... .......... .......... .......... .......... 87% 23.7M 0s -2024-03-16T16:52:09Z #15 3.115 111400K .......... .......... .......... .......... .......... 87% 29.7M 0s -2024-03-16T16:52:09Z #15 3.116 111450K .......... .......... .......... .......... .......... 87% 33.2M 0s -2024-03-16T16:52:09Z #15 3.118 111500K .......... .......... .......... .......... .......... 87% 74.6M 0s -2024-03-16T16:52:09Z #15 3.119 111550K .......... .......... .......... .......... .......... 88% 60.5M 0s -2024-03-16T16:52:09Z #15 3.120 111600K .......... .......... .......... .......... .......... 88% 74.5M 0s -2024-03-16T16:52:09Z #15 3.122 111650K .......... .......... .......... .......... .......... 88% 74.0M 0s -2024-03-16T16:52:09Z #15 3.122 111700K .......... .......... .......... .......... .......... 88% 91.6M 0s -2024-03-16T16:52:09Z #15 3.122 111750K .......... .......... .......... .......... .......... 88% 56.4M 0s -2024-03-16T16:52:09Z #15 3.124 111800K .......... .......... .......... .......... .......... 88% 102M 0s -2024-03-16T16:52:09Z #15 3.124 111850K .......... .......... .......... .......... .......... 88% 92.8M 0s -2024-03-16T16:52:09Z #15 3.124 111900K .......... .......... .......... .......... .......... 88% 82.4M 0s -2024-03-16T16:52:09Z #15 3.124 111950K .......... .......... .......... .......... .......... 88% 66.5M 0s -2024-03-16T16:52:09Z #15 3.125 112000K .......... .......... .......... .......... .......... 88% 31.1M 0s -2024-03-16T16:52:09Z #15 3.126 112050K .......... .......... .......... .......... .......... 88% 36.8M 0s -2024-03-16T16:52:09Z #15 3.129 112100K .......... .......... .......... .......... .......... 88% 131M 0s -2024-03-16T16:52:09Z #15 3.129 112150K .......... .......... .......... .......... .......... 88% 136M 0s -2024-03-16T16:52:09Z #15 3.129 112200K .......... .......... .......... .......... .......... 88% 134M 0s -2024-03-16T16:52:09Z #15 3.129 112250K .......... .......... .......... .......... .......... 88% 115M 0s -2024-03-16T16:52:09Z #15 3.129 112300K .......... .......... .......... .......... .......... 88% 28.6M 0s -2024-03-16T16:52:09Z #15 3.132 112350K .......... .......... .......... .......... .......... 88% 110M 0s -2024-03-16T16:52:09Z #15 3.132 112400K .......... .......... .......... .......... .......... 88% 142M 0s -2024-03-16T16:52:09Z #15 3.132 112450K .......... .......... .......... .......... .......... 88% 143M 0s -2024-03-16T16:52:09Z #15 3.132 112500K .......... .......... .......... .......... .......... 88% 54.6M 0s -2024-03-16T16:52:09Z #15 3.133 112550K .......... .......... .......... .......... .......... 88% 70.6M 0s -2024-03-16T16:52:09Z #15 3.133 112600K .......... .......... .......... .......... .......... 88% 54.4M 0s -2024-03-16T16:52:09Z #15 3.134 112650K .......... .......... .......... .......... .......... 88% 146M 0s -2024-03-16T16:52:09Z #15 3.135 112700K .......... .......... .......... .......... .......... 88% 61.7M 0s -2024-03-16T16:52:09Z #15 3.135 112750K .......... .......... .......... .......... .......... 88% 60.0M 0s -2024-03-16T16:52:09Z #15 3.136 112800K .......... .......... .......... .......... .......... 89% 5.03M 0s -2024-03-16T16:52:09Z #15 3.146 112850K .......... .......... .......... .......... .......... 89% 73.0M 0s -2024-03-16T16:52:09Z #15 3.147 112900K .......... .......... .......... .......... .......... 89% 117M 0s -2024-03-16T16:52:09Z #15 3.147 112950K .......... .......... .......... .......... .......... 89% 62.3M 0s -2024-03-16T16:52:09Z #15 3.148 113000K .......... .......... .......... .......... .......... 89% 62.3M 0s -2024-03-16T16:52:09Z #15 3.149 113050K .......... .......... .......... .......... .......... 89% 78.5M 0s -2024-03-16T16:52:09Z #15 3.149 113100K .......... .......... .......... .......... .......... 89% 82.7M 0s -2024-03-16T16:52:09Z #15 3.150 113150K .......... .......... .......... .......... .......... 89% 70.0M 0s -2024-03-16T16:52:09Z #15 3.150 113200K .......... .......... .......... .......... .......... 89% 70.8M 0s -2024-03-16T16:52:09Z #15 3.151 113250K .......... .......... .......... .......... .......... 89% 62.6M 0s -2024-03-16T16:52:09Z #15 3.152 113300K .......... .......... .......... .......... .......... 89% 56.1M 0s -2024-03-16T16:52:09Z #15 3.153 113350K .......... .......... .......... .......... .......... 89% 67.8M 0s -2024-03-16T16:52:09Z #15 3.154 113400K .......... .......... .......... .......... .......... 89% 79.8M 0s -2024-03-16T16:52:09Z #15 3.155 113450K .......... .......... .......... .......... .......... 89% 147M 0s -2024-03-16T16:52:09Z #15 3.155 113500K .......... .......... .......... .......... .......... 89% 27.4M 0s -2024-03-16T16:52:09Z #15 3.156 113550K .......... .......... .......... .......... .......... 89% 106M 0s -2024-03-16T16:52:09Z #15 3.157 113600K .......... .......... .......... .......... .......... 89% 154M 0s -2024-03-16T16:52:09Z #15 3.157 113650K .......... .......... .......... .......... .......... 89% 131M 0s -2024-03-16T16:52:09Z #15 3.157 113700K .......... .......... .......... .......... .......... 89% 117M 0s -2024-03-16T16:52:09Z #15 3.158 113750K .......... .......... .......... .......... .......... 89% 116M 0s -2024-03-16T16:52:09Z #15 3.158 113800K .......... .......... .......... .......... .......... 89% 118M 0s -2024-03-16T16:52:09Z #15 3.161 113850K .......... .......... .......... .......... .......... 89% 20.0M 0s -2024-03-16T16:52:09Z #15 3.161 113900K .......... .......... .......... .......... .......... 89% 103M 0s -2024-03-16T16:52:09Z #15 3.162 113950K .......... .......... .......... .......... .......... 89% 84.5M 0s -2024-03-16T16:52:09Z #15 3.163 114000K .......... .......... .......... .......... .......... 89% 145M 0s -2024-03-16T16:52:09Z #15 3.163 114050K .......... .......... .......... .......... .......... 89% 142M 0s -2024-03-16T16:52:09Z #15 3.163 114100K .......... .......... .......... .......... .......... 90% 108M 0s -2024-03-16T16:52:09Z #15 3.163 114150K .......... .......... .......... .......... .......... 90% 113M 0s -2024-03-16T16:52:09Z #15 3.164 114200K .......... .......... .......... .......... .......... 90% 7.94M 0s -2024-03-16T16:52:09Z #15 3.170 114250K .......... .......... .......... .......... .......... 90% 129M 0s -2024-03-16T16:52:09Z #15 3.170 114300K .......... .......... .......... .......... .......... 90% 139M 0s -2024-03-16T16:52:09Z #15 3.171 114350K .......... .......... .......... .......... .......... 90% 100M 0s -2024-03-16T16:52:09Z #15 3.171 114400K .......... .......... .......... .......... .......... 90% 101M 0s -2024-03-16T16:52:09Z #15 3.172 114450K .......... .......... .......... .......... .......... 90% 136M 0s -2024-03-16T16:52:09Z #15 3.172 114500K .......... .......... .......... .......... .......... 90% 130M 0s -2024-03-16T16:52:09Z #15 3.172 114550K .......... .......... .......... .......... .......... 90% 106M 0s -2024-03-16T16:52:09Z #15 3.173 114600K .......... .......... .......... .......... .......... 90% 107M 0s -2024-03-16T16:52:09Z #15 3.174 114650K .......... .......... .......... .......... .......... 90% 108M 0s -2024-03-16T16:52:09Z #15 3.174 114700K .......... .......... .......... .......... .......... 90% 99.6M 0s -2024-03-16T16:52:09Z #15 3.174 114750K .......... .......... .......... .......... .......... 90% 75.5M 0s -2024-03-16T16:52:09Z #15 3.175 114800K .......... .......... .......... .......... .......... 90% 70.7M 0s -2024-03-16T16:52:09Z #15 3.175 114850K .......... .......... .......... .......... .......... 90% 71.9M 0s -2024-03-16T16:52:09Z #15 3.176 114900K .......... .......... .......... .......... .......... 90% 67.6M 0s -2024-03-16T16:52:09Z #15 3.178 114950K .......... .......... .......... .......... .......... 90% 94.1M 0s -2024-03-16T16:52:09Z #15 3.178 115000K .......... .......... .......... .......... .......... 90% 64.1M 0s -2024-03-16T16:52:09Z #15 3.178 115050K .......... .......... .......... .......... .......... 90% 65.3M 0s -2024-03-16T16:52:09Z #15 3.180 115100K .......... .......... .......... .......... .......... 90% 61.6M 0s -2024-03-16T16:52:09Z #15 3.180 115150K .......... .......... .......... .......... .......... 90% 74.4M 0s -2024-03-16T16:52:09Z #15 3.181 115200K .......... .......... .......... .......... .......... 90% 62.4M 0s -2024-03-16T16:52:09Z #15 3.181 115250K .......... .......... .......... .......... .......... 90% 68.9M 0s -2024-03-16T16:52:09Z #15 3.182 115300K .......... .......... .......... .......... .......... 90% 117M 0s -2024-03-16T16:52:09Z #15 3.182 115350K .......... .......... .......... .......... .......... 91% 133M 0s -2024-03-16T16:52:09Z #15 3.183 115400K .......... .......... .......... .......... .......... 91% 146M 0s -2024-03-16T16:52:09Z #15 3.183 115450K .......... .......... .......... .......... .......... 91% 104M 0s -2024-03-16T16:52:09Z #15 3.183 115500K .......... .......... .......... .......... .......... 91% 23.1M 0s -2024-03-16T16:52:09Z #15 3.186 115550K .......... .......... .......... .......... .......... 91% 47.0M 0s -2024-03-16T16:52:09Z #15 3.187 115600K .......... .......... .......... .......... .......... 91% 42.3M 0s -2024-03-16T16:52:09Z #15 3.188 115650K .......... .......... .......... .......... .......... 91% 143M 0s -2024-03-16T16:52:09Z #15 3.188 115700K .......... .......... .......... .......... .......... 91% 65.6M 0s -2024-03-16T16:52:09Z #15 3.189 115750K .......... .......... .......... .......... .......... 91% 46.5M 0s -2024-03-16T16:52:09Z #15 3.190 115800K .......... .......... .......... .......... .......... 91% 107M 0s -2024-03-16T16:52:09Z #15 3.190 115850K .......... .......... .......... .......... .......... 91% 125M 0s -2024-03-16T16:52:09Z #15 3.191 115900K .......... .......... .......... .......... .......... 91% 34.0M 0s -2024-03-16T16:52:09Z #15 3.192 115950K .......... .......... .......... .......... .......... 91% 103M 0s -2024-03-16T16:52:09Z #15 3.194 116000K .......... .......... .......... .......... .......... 91% 71.1M 0s -2024-03-16T16:52:09Z #15 3.194 116050K .......... .......... .......... .......... .......... 91% 122M 0s -2024-03-16T16:52:09Z #15 3.194 116100K .......... .......... .......... .......... .......... 91% 104M 0s -2024-03-16T16:52:09Z #15 3.194 116150K .......... .......... .......... .......... .......... 91% 127M 0s -2024-03-16T16:52:09Z #15 3.195 116200K .......... .......... .......... .......... .......... 91% 143M 0s -2024-03-16T16:52:09Z #15 3.195 116250K .......... .......... .......... .......... .......... 91% 107M 0s -2024-03-16T16:52:09Z #15 3.195 116300K .......... .......... .......... .......... .......... 91% 111M 0s -2024-03-16T16:52:09Z #15 3.196 116350K .......... .......... .......... .......... .......... 91% 115M 0s -2024-03-16T16:52:09Z #15 3.196 116400K .......... .......... .......... .......... .......... 91% 112M 0s -2024-03-16T16:52:09Z #15 3.197 116450K .......... .......... .......... .......... .......... 91% 121M 0s -2024-03-16T16:52:09Z #15 3.197 116500K .......... .......... .......... .......... .......... 91% 123M 0s -2024-03-16T16:52:09Z #15 3.197 116550K .......... .......... .......... .......... .......... 91% 8.14M 0s -2024-03-16T16:52:09Z #15 3.204 116600K .......... .......... .......... .......... .......... 92% 112M 0s -2024-03-16T16:52:09Z #15 3.204 116650K .......... .......... .......... .......... .......... 92% 123M 0s -2024-03-16T16:52:09Z #15 3.204 116700K .......... .......... .......... .......... .......... 92% 115M 0s -2024-03-16T16:52:09Z #15 3.207 116750K .......... .......... .......... .......... .......... 92% 125M 0s -2024-03-16T16:52:09Z #15 3.207 116800K .......... .......... .......... .......... .......... 92% 140M 0s -2024-03-16T16:52:09Z #15 3.207 116850K .......... .......... .......... .......... .......... 92% 123M 0s -2024-03-16T16:52:09Z #15 3.207 116900K .......... .......... .......... .......... .......... 92% 123M 0s -2024-03-16T16:52:09Z #15 3.207 116950K .......... .......... .......... .......... .......... 92% 102M 0s -2024-03-16T16:52:09Z #15 3.207 117000K .......... .......... .......... .......... .......... 92% 132M 0s -2024-03-16T16:52:09Z #15 3.207 117050K .......... .......... .......... .......... .......... 92% 128M 0s -2024-03-16T16:52:09Z #15 3.208 117100K .......... .......... .......... .......... .......... 92% 111M 0s -2024-03-16T16:52:09Z #15 3.208 117150K .......... .......... .......... .......... .......... 92% 111M 0s -2024-03-16T16:52:09Z #15 3.208 117200K .......... .......... .......... .......... .......... 92% 116M 0s -2024-03-16T16:52:09Z #15 3.209 117250K .......... .......... .......... .......... .......... 92% 127M 0s -2024-03-16T16:52:09Z #15 3.209 117300K .......... .......... .......... .......... .......... 92% 121M 0s -2024-03-16T16:52:09Z #15 3.210 117350K .......... .......... .......... .......... .......... 92% 92.1M 0s -2024-03-16T16:52:09Z #15 3.211 117400K .......... .......... .......... .......... .......... 92% 99.7M 0s -2024-03-16T16:52:09Z #15 3.211 117450K .......... .......... .......... .......... .......... 92% 48.3M 0s -2024-03-16T16:52:09Z #15 3.212 117500K .......... .......... .......... .......... .......... 92% 82.8M 0s -2024-03-16T16:52:09Z #15 3.213 117550K .......... .......... .......... .......... .......... 92% 127M 0s -2024-03-16T16:52:09Z #15 3.213 117600K .......... .......... .......... .......... .......... 92% 36.5M 0s -2024-03-16T16:52:09Z #15 3.214 117650K .......... .......... .......... .......... .......... 92% 10.5M 0s -2024-03-16T16:52:09Z #15 3.219 117700K .......... .......... .......... .......... .......... 92% 47.5M 0s -2024-03-16T16:52:09Z #15 3.220 117750K .......... .......... .......... .......... .......... 92% 53.9M 0s -2024-03-16T16:52:09Z #15 3.221 117800K .......... .......... .......... .......... .......... 92% 79.2M 0s -2024-03-16T16:52:09Z #15 3.222 117850K .......... .......... .......... .......... .......... 92% 152M 0s -2024-03-16T16:52:09Z #15 3.222 117900K .......... .......... .......... .......... .......... 93% 55.7M 0s -2024-03-16T16:52:09Z #15 3.223 117950K .......... .......... .......... .......... .......... 93% 73.0M 0s -2024-03-16T16:52:09Z #15 3.223 118000K .......... .......... .......... .......... .......... 93% 113M 0s -2024-03-16T16:52:09Z #15 3.224 118050K .......... .......... .......... .......... .......... 93% 32.5M 0s -2024-03-16T16:52:09Z #15 3.225 118100K .......... .......... .......... .......... .......... 93% 34.4M 0s -2024-03-16T16:52:09Z #15 3.226 118150K .......... .......... .......... .......... .......... 93% 48.2M 0s -2024-03-16T16:52:09Z #15 3.227 118200K .......... .......... .......... .......... .......... 93% 50.3M 0s -2024-03-16T16:52:09Z #15 3.229 118250K .......... .......... .......... .......... .......... 93% 144M 0s -2024-03-16T16:52:09Z #15 3.229 118300K .......... .......... .......... .......... .......... 93% 51.9M 0s -2024-03-16T16:52:09Z #15 3.230 118350K .......... .......... .......... .......... .......... 93% 39.2M 0s -2024-03-16T16:52:09Z #15 3.231 118400K .......... .......... .......... .......... .......... 93% 140M 0s -2024-03-16T16:52:09Z #15 3.231 118450K .......... .......... .......... .......... .......... 93% 41.8M 0s -2024-03-16T16:52:09Z #15 3.232 118500K .......... .......... .......... .......... .......... 93% 47.5M 0s -2024-03-16T16:52:09Z #15 3.234 118550K .......... .......... .......... .......... .......... 93% 76.7M 0s -2024-03-16T16:52:09Z #15 3.234 118600K .......... .......... .......... .......... .......... 93% 49.7M 0s -2024-03-16T16:52:09Z #15 3.235 118650K .......... .......... .......... .......... .......... 93% 46.9M 0s -2024-03-16T16:52:09Z #15 3.236 118700K .......... .......... .......... .......... .......... 93% 55.0M 0s -2024-03-16T16:52:09Z #15 3.238 118750K .......... .......... .......... .......... .......... 93% 8.72M 0s -2024-03-16T16:52:09Z #15 3.244 118800K .......... .......... .......... .......... .......... 93% 116M 0s -2024-03-16T16:52:09Z #15 3.244 118850K .......... .......... .......... .......... .......... 93% 112M 0s -2024-03-16T16:52:09Z #15 3.244 118900K .......... .......... .......... .......... .......... 93% 127M 0s -2024-03-16T16:52:09Z #15 3.244 118950K .......... .......... .......... .......... .......... 93% 103M 0s -2024-03-16T16:52:09Z #15 3.245 119000K .......... .......... .......... .......... .......... 93% 147M 0s -2024-03-16T16:52:09Z #15 3.245 119050K .......... .......... .......... .......... .......... 93% 136M 0s -2024-03-16T16:52:09Z #15 3.245 119100K .......... .......... .......... .......... .......... 93% 123M 0s -2024-03-16T16:52:09Z #15 3.246 119150K .......... .......... .......... .......... .......... 94% 26.6M 0s -2024-03-16T16:52:09Z #15 3.248 119200K .......... .......... .......... .......... .......... 94% 125M 0s -2024-03-16T16:52:09Z #15 3.248 119250K .......... .......... .......... .......... .......... 94% 123M 0s -2024-03-16T16:52:09Z #15 3.248 119300K .......... .......... .......... .......... .......... 94% 112M 0s -2024-03-16T16:52:09Z #15 3.248 119350K .......... .......... .......... .......... .......... 94% 117M 0s -2024-03-16T16:52:09Z #15 3.249 119400K .......... .......... .......... .......... .......... 94% 122M 0s -2024-03-16T16:52:09Z #15 3.249 119450K .......... .......... .......... .......... .......... 94% 115M 0s -2024-03-16T16:52:09Z #15 3.251 119500K .......... .......... .......... .......... .......... 94% 137M 0s -2024-03-16T16:52:09Z #15 3.251 119550K .......... .......... .......... .......... .......... 94% 126M 0s -2024-03-16T16:52:09Z #15 3.251 119600K .......... .......... .......... .......... .......... 94% 134M 0s -2024-03-16T16:52:09Z #15 3.251 119650K .......... .......... .......... .......... .......... 94% 9.88M 0s -2024-03-16T16:52:09Z #15 3.256 119700K .......... .......... .......... .......... .......... 94% 108M 0s -2024-03-16T16:52:09Z #15 3.256 119750K .......... .......... .......... .......... .......... 94% 113M 0s -2024-03-16T16:52:09Z #15 3.257 119800K .......... .......... .......... .......... .......... 94% 137M 0s -2024-03-16T16:52:09Z #15 3.258 119850K .......... .......... .......... .......... .......... 94% 138M 0s -2024-03-16T16:52:09Z #15 3.258 119900K .......... .......... .......... .......... .......... 94% 135M 0s -2024-03-16T16:52:09Z #15 3.258 119950K .......... .......... .......... .......... .......... 94% 115M 0s -2024-03-16T16:52:09Z #15 3.258 120000K .......... .......... .......... .......... .......... 94% 150M 0s -2024-03-16T16:52:09Z #15 3.259 120050K .......... .......... .......... .......... .......... 94% 140M 0s -2024-03-16T16:52:09Z #15 3.259 120100K .......... .......... .......... .......... .......... 94% 159M 0s -2024-03-16T16:52:09Z #15 3.259 120150K .......... .......... .......... .......... .......... 94% 100M 0s -2024-03-16T16:52:09Z #15 3.260 120200K .......... .......... .......... .......... .......... 94% 134M 0s -2024-03-16T16:52:09Z #15 3.260 120250K .......... .......... .......... .......... .......... 94% 145M 0s -2024-03-16T16:52:09Z #15 3.260 120300K .......... .......... .......... .......... .......... 94% 8.63M 0s -2024-03-16T16:52:09Z #15 3.266 120350K .......... .......... .......... .......... .......... 94% 137M 0s -2024-03-16T16:52:09Z #15 3.266 120400K .......... .......... .......... .......... .......... 95% 143M 0s -2024-03-16T16:52:09Z #15 3.267 120450K .......... .......... .......... .......... .......... 95% 147M 0s -2024-03-16T16:52:09Z #15 3.267 120500K .......... .......... .......... .......... .......... 95% 123M 0s -2024-03-16T16:52:09Z #15 3.267 120550K .......... .......... .......... .......... .......... 95% 97.9M 0s -2024-03-16T16:52:09Z #15 3.268 120600K .......... .......... .......... .......... .......... 95% 137M 0s -2024-03-16T16:52:09Z #15 3.268 120650K .......... .......... .......... .......... .......... 95% 111M 0s -2024-03-16T16:52:09Z #15 3.269 120700K .......... .......... .......... .......... .......... 95% 138M 0s -2024-03-16T16:52:09Z #15 3.269 120750K .......... .......... .......... .......... .......... 95% 98.1M 0s -2024-03-16T16:52:09Z #15 3.270 120800K .......... .......... .......... .......... .......... 95% 97.4M 0s -2024-03-16T16:52:09Z #15 3.271 120850K .......... .......... .......... .......... .......... 95% 140M 0s -2024-03-16T16:52:09Z #15 3.271 120900K .......... .......... .......... .......... .......... 95% 133M 0s -2024-03-16T16:52:09Z #15 3.271 120950K .......... .......... .......... .......... .......... 95% 109M 0s -2024-03-16T16:52:09Z #15 3.271 121000K .......... .......... .......... .......... .......... 95% 125M 0s -2024-03-16T16:52:09Z #15 3.272 121050K .......... .......... .......... .......... .......... 95% 131M 0s -2024-03-16T16:52:09Z #15 3.272 121100K .......... .......... .......... .......... .......... 95% 121M 0s -2024-03-16T16:52:09Z #15 3.272 121150K .......... .......... .......... .......... .......... 95% 114M 0s -2024-03-16T16:52:09Z #15 3.273 121200K .......... .......... .......... .......... .......... 95% 35.4M 0s -2024-03-16T16:52:09Z #15 3.275 121250K .......... .......... .......... .......... .......... 95% 114M 0s -2024-03-16T16:52:09Z #15 3.275 121300K .......... .......... .......... .......... .......... 95% 47.2M 0s -2024-03-16T16:52:09Z #15 3.276 121350K .......... .......... .......... .......... .......... 95% 51.7M 0s -2024-03-16T16:52:09Z #15 3.277 121400K .......... .......... .......... .......... .......... 95% 129M 0s -2024-03-16T16:52:09Z #15 3.277 121450K .......... .......... .......... .......... .......... 95% 27.0M 0s -2024-03-16T16:52:09Z #15 3.279 121500K .......... .......... .......... .......... .......... 95% 135M 0s -2024-03-16T16:52:09Z #15 3.279 121550K .......... .......... .......... .......... .......... 95% 100M 0s -2024-03-16T16:52:09Z #15 3.280 121600K .......... .......... .......... .......... .......... 95% 127M 0s -2024-03-16T16:52:09Z #15 3.280 121650K .......... .......... .......... .......... .......... 95% 48.5M 0s -2024-03-16T16:52:09Z #15 3.281 121700K .......... .......... .......... .......... .......... 96% 33.9M 0s -2024-03-16T16:52:09Z #15 3.283 121750K .......... .......... .......... .......... .......... 96% 54.9M 0s -2024-03-16T16:52:09Z #15 3.283 121800K .......... .......... .......... .......... .......... 96% 62.9M 0s -2024-03-16T16:52:09Z #15 3.284 121850K .......... .......... .......... .......... .......... 96% 101M 0s -2024-03-16T16:52:09Z #15 3.285 121900K .......... .......... .......... .......... .......... 96% 6.88M 0s -2024-03-16T16:52:09Z #15 3.292 121950K .......... .......... .......... .......... .......... 96% 14.1M 0s -2024-03-16T16:52:09Z #15 3.295 122000K .......... .......... .......... .......... .......... 96% 39.0M 0s -2024-03-16T16:52:09Z #15 3.297 122050K .......... .......... .......... .......... .......... 96% 141M 0s -2024-03-16T16:52:09Z #15 3.297 122100K .......... .......... .......... .......... .......... 96% 25.6M 0s -2024-03-16T16:52:09Z #15 3.299 122150K .......... .......... .......... .......... .......... 96% 69.4M 0s -2024-03-16T16:52:09Z #15 3.299 122200K .......... .......... .......... .......... .......... 96% 25.0M 0s -2024-03-16T16:52:09Z #15 3.301 122250K .......... .......... .......... .......... .......... 96% 43.2M 0s -2024-03-16T16:52:09Z #15 3.302 122300K .......... .......... .......... .......... .......... 96% 136M 0s -2024-03-16T16:52:09Z #15 3.303 122350K .......... .......... .......... .......... .......... 96% 37.6M 0s -2024-03-16T16:52:09Z #15 3.304 122400K .......... .......... .......... .......... .......... 96% 49.5M 0s -2024-03-16T16:52:09Z #15 3.305 122450K .......... .......... .......... .......... .......... 96% 48.5M 0s -2024-03-16T16:52:09Z #15 3.306 122500K .......... .......... .......... .......... .......... 96% 83.8M 0s -2024-03-16T16:52:09Z #15 3.307 122550K .......... .......... .......... .......... .......... 96% 65.4M 0s -2024-03-16T16:52:09Z #15 3.307 122600K .......... .......... .......... .......... .......... 96% 81.5M 0s -2024-03-16T16:52:09Z #15 3.308 122650K .......... .......... .......... .......... .......... 96% 85.3M 0s -2024-03-16T16:52:09Z #15 3.309 122700K .......... .......... .......... .......... .......... 96% 70.8M 0s -2024-03-16T16:52:09Z #15 3.309 122750K .......... .......... .......... .......... .......... 96% 65.2M 0s -2024-03-16T16:52:09Z #15 3.310 122800K .......... .......... .......... .......... .......... 96% 75.4M 0s -2024-03-16T16:52:09Z #15 3.311 122850K .......... .......... .......... .......... .......... 96% 67.5M 0s -2024-03-16T16:52:09Z #15 3.311 122900K .......... .......... .......... .......... .......... 96% 45.4M 0s -2024-03-16T16:52:09Z #15 3.313 122950K .......... .......... .......... .......... .......... 97% 30.3M 0s -2024-03-16T16:52:09Z #15 3.314 123000K .......... .......... .......... .......... .......... 97% 74.5M 0s -2024-03-16T16:52:09Z #15 3.315 123050K .......... .......... .......... .......... .......... 97% 54.1M 0s -2024-03-16T16:52:09Z #15 3.316 123100K .......... .......... .......... .......... .......... 97% 52.5M 0s -2024-03-16T16:52:09Z #15 3.317 123150K .......... .......... .......... .......... .......... 97% 57.0M 0s -2024-03-16T16:52:09Z #15 3.318 123200K .......... .......... .......... .......... .......... 97% 62.6M 0s -2024-03-16T16:52:09Z #15 3.318 123250K .......... .......... .......... .......... .......... 97% 39.8M 0s -2024-03-16T16:52:09Z #15 3.320 123300K .......... .......... .......... .......... .......... 97% 63.8M 0s -2024-03-16T16:52:09Z #15 3.320 123350K .......... .......... .......... .......... .......... 97% 49.1M 0s -2024-03-16T16:52:09Z #15 3.321 123400K .......... .......... .......... .......... .......... 97% 63.7M 0s -2024-03-16T16:52:09Z #15 3.322 123450K .......... .......... .......... .......... .......... 97% 52.8M 0s -2024-03-16T16:52:09Z #15 3.323 123500K .......... .......... .......... .......... .......... 97% 85.7M 0s -2024-03-16T16:52:09Z #15 3.323 123550K .......... .......... .......... .......... .......... 97% 53.0M 0s -2024-03-16T16:52:09Z #15 3.324 123600K .......... .......... .......... .......... .......... 97% 42.2M 0s -2024-03-16T16:52:09Z #15 3.326 123650K .......... .......... .......... .......... .......... 97% 46.7M 0s -2024-03-16T16:52:09Z #15 3.327 123700K .......... .......... .......... .......... .......... 97% 57.3M 0s -2024-03-16T16:52:09Z #15 3.327 123750K .......... .......... .......... .......... .......... 97% 34.8M 0s -2024-03-16T16:52:09Z #15 3.329 123800K .......... .......... .......... .......... .......... 97% 59.7M 0s -2024-03-16T16:52:09Z #15 3.330 123850K .......... .......... .......... .......... .......... 97% 52.0M 0s -2024-03-16T16:52:09Z #15 3.331 123900K .......... .......... .......... .......... .......... 97% 49.0M 0s -2024-03-16T16:52:09Z #15 3.332 123950K .......... .......... .......... .......... .......... 97% 37.9M 0s -2024-03-16T16:52:09Z #15 3.333 124000K .......... .......... .......... .......... .......... 97% 53.1M 0s -2024-03-16T16:52:09Z #15 3.334 124050K .......... .......... .......... .......... .......... 97% 61.4M 0s -2024-03-16T16:52:09Z #15 3.335 124100K .......... .......... .......... .......... .......... 97% 58.0M 0s -2024-03-16T16:52:09Z #15 3.336 124150K .......... .......... .......... .......... .......... 97% 55.0M 0s -2024-03-16T16:52:09Z #15 3.337 124200K .......... .......... .......... .......... .......... 98% 61.2M 0s -2024-03-16T16:52:09Z #15 3.338 124250K .......... .......... .......... .......... .......... 98% 9.64M 0s -2024-03-16T16:52:09Z #15 3.347 124300K .......... .......... .......... .......... .......... 98% 159M 0s -2024-03-16T16:52:09Z #15 3.347 124350K .......... .......... .......... .......... .......... 98% 154M 0s -2024-03-16T16:52:09Z #15 3.347 124400K .......... .......... .......... .......... .......... 98% 164M 0s -2024-03-16T16:52:09Z #15 3.347 124450K .......... .......... .......... .......... .......... 98% 178M 0s -2024-03-16T16:52:09Z #15 3.347 124500K .......... .......... .......... .......... .......... 98% 161M 0s -2024-03-16T16:52:09Z #15 3.347 124550K .......... .......... .......... .......... .......... 98% 67.8M 0s -2024-03-16T16:52:09Z #15 3.347 124600K .......... .......... .......... .......... .......... 98% 95.9M 0s -2024-03-16T16:52:09Z #15 3.347 124650K .......... .......... .......... .......... .......... 98% 164M 0s -2024-03-16T16:52:09Z #15 3.347 124700K .......... .......... .......... .......... .......... 98% 185M 0s -2024-03-16T16:52:09Z #15 3.347 124750K .......... .......... .......... .......... .......... 98% 83.7M 0s -2024-03-16T16:52:09Z #15 3.347 124800K .......... .......... .......... .......... .......... 98% 170M 0s -2024-03-16T16:52:09Z #15 3.347 124850K .......... .......... .......... .......... .......... 98% 32.7M 0s -2024-03-16T16:52:09Z #15 3.349 124900K .......... .......... .......... .......... .......... 98% 132M 0s -2024-03-16T16:52:09Z #15 3.349 124950K .......... .......... .......... .......... .......... 98% 30.8M 0s -2024-03-16T16:52:09Z #15 3.350 125000K .......... .......... .......... .......... .......... 98% 54.7M 0s -2024-03-16T16:52:09Z #15 3.351 125050K .......... .......... .......... .......... .......... 98% 163M 0s -2024-03-16T16:52:09Z #15 3.351 125100K .......... .......... .......... .......... .......... 98% 40.8M 0s -2024-03-16T16:52:09Z #15 3.352 125150K .......... .......... .......... .......... .......... 98% 46.6M 0s -2024-03-16T16:52:09Z #15 3.354 125200K .......... .......... .......... .......... .......... 98% 32.4M 0s -2024-03-16T16:52:09Z #15 3.356 125250K .......... .......... .......... .......... .......... 98% 165M 0s -2024-03-16T16:52:09Z #15 3.356 125300K .......... .......... .......... .......... .......... 98% 73.3M 0s -2024-03-16T16:52:09Z #15 3.356 125350K .......... .......... .......... .......... .......... 98% 41.6M 0s -2024-03-16T16:52:09Z #15 3.358 125400K .......... .......... .......... .......... .......... 98% 80.2M 0s -2024-03-16T16:52:09Z #15 3.358 125450K .......... .......... .......... .......... .......... 98% 34.3M 0s -2024-03-16T16:52:09Z #15 3.361 125500K .......... .......... .......... .......... .......... 99% 131M 0s -2024-03-16T16:52:09Z #15 3.361 125550K .......... .......... .......... .......... .......... 99% 81.7M 0s -2024-03-16T16:52:09Z #15 3.361 125600K .......... .......... .......... .......... .......... 99% 169M 0s -2024-03-16T16:52:09Z #15 3.361 125650K .......... .......... .......... .......... .......... 99% 32.0M 0s -2024-03-16T16:52:09Z #15 3.364 125700K .......... .......... .......... .......... .......... 99% 167M 0s -2024-03-16T16:52:09Z #15 3.364 125750K .......... .......... .......... .......... .......... 99% 78.1M 0s -2024-03-16T16:52:09Z #15 3.364 125800K .......... .......... .......... .......... .......... 99% 158M 0s -2024-03-16T16:52:09Z #15 3.364 125850K .......... .......... .......... .......... .......... 99% 100M 0s -2024-03-16T16:52:09Z #15 3.364 125900K .......... .......... .......... .......... .......... 99% 48.2M 0s -2024-03-16T16:52:09Z #15 3.365 125950K .......... .......... .......... .......... .......... 99% 68.4M 0s -2024-03-16T16:52:09Z #15 3.367 126000K .......... .......... .......... .......... .......... 99% 130M 0s -2024-03-16T16:52:09Z #15 3.367 126050K .......... .......... .......... .......... .......... 99% 73.1M 0s -2024-03-16T16:52:09Z #15 3.367 126100K .......... .......... .......... .......... .......... 99% 39.6M 0s -2024-03-16T16:52:09Z #15 3.368 126150K .......... .......... .......... .......... .......... 99% 11.4M 0s -2024-03-16T16:52:09Z #15 3.372 126200K .......... .......... .......... .......... .......... 99% 23.6M 0s -2024-03-16T16:52:09Z #15 3.374 126250K .......... .......... .......... .......... .......... 99% 30.6M 0s -2024-03-16T16:52:09Z #15 3.376 126300K .......... .......... .......... .......... .......... 99% 28.6M 0s -2024-03-16T16:52:09Z #15 3.377 126350K .......... .......... .......... .......... .......... 99% 31.7M 0s -2024-03-16T16:52:09Z #15 3.379 126400K .......... .......... .......... .......... .......... 99% 34.8M 0s -2024-03-16T16:52:09Z #15 3.381 126450K .......... .......... .......... .......... .......... 99% 34.9M 0s -2024-03-16T16:52:09Z #15 3.385 126500K .......... .......... .......... .......... .......... 99% 29.0M 0s -2024-03-16T16:52:09Z #15 3.385 126550K .......... .......... .......... .......... .......... 99% 26.6M 0s -2024-03-16T16:52:09Z #15 3.385 126600K .......... .......... .......... .......... .......... 99% 29.9M 0s -2024-03-16T16:52:09Z #15 3.387 126650K .......... .......... .......... .......... .......... 99% 30.9M 0s -2024-03-16T16:52:09Z #15 3.389 126700K .......... .......... .......... .......... .......... 99% 29.2M 0s -2024-03-16T16:52:09Z #15 3.392 126750K .......... .......... .......... .. 100% 29.6M=2.2s -2024-03-16T16:52:09Z #15 3.392 -2024-03-16T16:52:09Z #15 3.392 2024-03-16 16:52:09 (56.2 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] -2024-03-16T16:52:09Z #15 3.392 -2024-03-16T16:52:10Z #15 4.841 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' -2024-03-16T16:52:11Z #15 4.864 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-03-16T16:52:11Z #15 DONE 5.2s -2024-03-16T16:52:11Z -2024-03-16T16:52:11Z #16 exporting to image -2024-03-16T16:52:11Z #16 exporting layers -2024-03-16T16:54:39Z #16 exporting layers 148.1s done -2024-03-16T16:54:39Z #16 writing image sha256:d2c65bc7504bf6d02693ee0b017c32f35b9c13c89a59772b1939dec177d6fb5d done -2024-03-16T16:54:39Z #16 naming to docker.io/pavics/workflow-tests:py310-240316 done -2024-03-16T16:54:39Z #16 DONE 148.1s -2024-03-16T16:54:39Z -2024-03-16T16:54:39Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-03-16T16:54:39Z Pushing index.docker.io/pavics/workflow-tests:py310-240316... -2024-03-16T17:02:01Z Done! -2024-03-16T17:02:01Z Build finished +2024-03-23T17:19:43Z Building in Docker Cloud's infrastructure... +2024-03-23T17:19:43Z Cloning into '.'... +2024-03-23T17:19:44Z Warning: Permanently added the RSA host key for IP address '140.82.112.3' to the list of known hosts. +2024-03-23T17:19:45Z Switched to a new branch 'docker-py310-240323' +2024-03-23T17:19:45Z KernelVersion: 5.4.0-1068-aws +2024-03-23T17:19:45Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-03-23T17:19:45Z Arch: amd64 +2024-03-23T17:19:45Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-03-23T17:19:45Z ApiVersion: 1.41 +2024-03-23T17:19:45Z Platform: {u'Name': u'Docker Engine - Community'} +2024-03-23T17:19:45Z Version: 20.10.15 +2024-03-23T17:19:45Z MinAPIVersion: 1.12 +2024-03-23T17:19:45Z GitCommit: 4433bf6 +2024-03-23T17:19:45Z Os: linux +2024-03-23T17:19:45Z GoVersion: go1.17.9 +2024-03-23T17:19:45Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240323... +2024-03-23T17:19:50Z #1 [internal] load build definition from Dockerfile +2024-03-23T17:19:50Z #1 transferring dockerfile: 6.98kB done +2024-03-23T17:19:50Z #1 DONE 0.1s +2024-03-23T17:19:50Z +2024-03-23T17:19:50Z #2 [internal] load .dockerignore +2024-03-23T17:19:50Z #2 transferring context: 2B done +2024-03-23T17:19:50Z #2 DONE 0.0s +2024-03-23T17:19:50Z +2024-03-23T17:19:50Z #3 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-03-23T17:19:50Z #3 DONE 0.0s +2024-03-23T17:19:50Z +2024-03-23T17:19:50Z #4 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-03-23T17:19:51Z #4 DONE 0.6s +2024-03-23T17:19:51Z +2024-03-23T17:19:51Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-03-23T17:19:51Z #5 DONE 0.0s +2024-03-23T17:19:51Z +2024-03-23T17:19:51Z #6 [internal] load build context +2024-03-23T17:19:51Z #6 DONE 0.0s +2024-03-23T17:19:51Z +2024-03-23T17:19:51Z #6 [internal] load build context +2024-03-23T17:19:51Z #6 transferring context: 9.58kB done +2024-03-23T17:19:51Z #6 DONE 0.0s +2024-03-23T17:19:51Z +2024-03-23T17:19:51Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-03-23T17:19:51Z #5 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done +2024-03-23T17:19:51Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s +2024-03-23T17:19:51Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.1s +2024-03-23T17:19:51Z #5 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done +2024-03-23T17:19:51Z #5 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done +2024-03-23T17:19:51Z #5 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done +2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 0B / 31.42MB 0.1s +2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.24MB / 31.42MB 0.2s +2024-03-23T17:19:51Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 4.19MB / 50.08MB 0.3s +2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 9.44MB / 31.42MB 0.3s +2024-03-23T17:19:51Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 8.39MB / 50.08MB 0.4s +2024-03-23T17:19:51Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 8.39MB / 147.31MB 0.4s +2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 13.63MB / 31.42MB 0.4s +2024-03-23T17:19:51Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 14.68MB / 50.08MB 0.6s +2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 27.26MB / 31.42MB 0.6s +2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 20.97MB / 50.08MB 0.7s +2024-03-23T17:19:52Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 17.83MB / 147.31MB 0.7s +2024-03-23T17:19:52Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 0.7s +2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 26.21MB / 50.08MB 0.8s +2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 35.65MB / 50.08MB 1.0s +2024-03-23T17:19:52Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 38.80MB / 147.31MB 1.0s +2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 45.09MB / 50.08MB 1.1s +2024-03-23T17:19:52Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.0s done +2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.2s +2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.3s done +2024-03-23T17:19:52Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 54.53MB / 147.31MB 1.4s +2024-03-23T17:19:52Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 +2024-03-23T17:19:52Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 67.11MB / 147.31MB 1.6s +2024-03-23T17:19:53Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 77.59MB / 147.31MB 1.8s +2024-03-23T17:19:53Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 88.08MB / 147.31MB 2.2s +2024-03-23T17:19:53Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 103.53MB / 147.31MB 2.5s +2024-03-23T17:19:54Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 112.20MB / 147.31MB 3.2s +2024-03-23T17:19:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 121.63MB / 147.31MB 3.7s +2024-03-23T17:19:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 130.08MB / 147.31MB 4.1s +2024-03-23T17:19:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 144.70MB / 147.31MB 4.4s +2024-03-23T17:19:57Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 5.5s done +2024-03-23T17:19:57Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.0s +2024-03-23T17:19:58Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.4s done +2024-03-23T17:19:58Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 +2024-03-23T17:20:03Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.0s +2024-03-23T17:20:04Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.2s done +2024-03-23T17:20:05Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c +2024-03-23T17:20:10Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.1s +2024-03-23T17:20:15Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.3s +2024-03-23T17:20:19Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.3s done +2024-03-23T17:20:19Z #5 DONE 28.5s +2024-03-23T17:20:19Z +2024-03-23T17:20:19Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-03-23T17:20:21Z #7 1.567 Channels: +2024-03-23T17:20:21Z #7 1.567 - defaults +2024-03-23T17:20:21Z #7 1.567 Platform: linux-64 +2024-03-23T17:20:25Z #7 1.567 Collecting package metadata (repodata.json): ...working... done +2024-03-23T17:20:25Z #7 5.798 Solving environment: ...working... done +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 ## Package Plan ## +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 environment location: /opt/conda +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 added / updated specs: +2024-03-23T17:20:26Z #7 6.106 - conda +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 The following packages will be downloaded: +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 package | build +2024-03-23T17:20:26Z #7 6.106 ---------------------------|----------------- +2024-03-23T17:20:26Z #7 6.106 archspec-0.2.3 | pyhd3eb1b0_0 47 KB +2024-03-23T17:20:26Z #7 6.106 ca-certificates-2024.3.11 | h06a4308_0 127 KB +2024-03-23T17:20:26Z #7 6.106 conda-24.3.0 | py311h06a4308_0 1.2 MB +2024-03-23T17:20:26Z #7 6.106 ------------------------------------------------------------ +2024-03-23T17:20:26Z #7 6.106 Total: 1.4 MB +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 The following packages will be UPDATED: +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 archspec 0.2.1-pyhd3eb1b0_0 --> 0.2.3-pyhd3eb1b0_0 +2024-03-23T17:20:26Z #7 6.106 ca-certificates 2023.12.12-h06a4308_0 --> 2024.3.11-h06a4308_0 +2024-03-23T17:20:26Z #7 6.106 conda 24.1.2-py311h06a4308_0 --> 24.3.0-py311h06a4308_0 +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 +2024-03-23T17:20:26Z #7 6.106 Proceed ([y]/n)? +2024-03-23T17:20:26Z #7 6.613 +2024-03-23T17:20:26Z #7 6.613 Downloading and Extracting Packages: ...working... done +2024-03-23T17:20:26Z #7 6.613 Preparing transaction: ...working... done +2024-03-23T17:20:26Z #7 6.672 Verifying transaction: ...working... done +2024-03-23T17:20:29Z #7 6.811 Executing transaction: ...working... done +2024-03-23T17:20:31Z #7 11.23 Channels: +2024-03-23T17:20:31Z #7 11.23 - conda-forge +2024-03-23T17:20:31Z #7 11.23 - defaults +2024-03-23T17:20:31Z #7 11.23 Platform: linux-64 +2024-03-23T17:20:56Z #7 11.23 Collecting package metadata (repodata.json): ...working... done +2024-03-23T17:20:58Z #7 36.97 Solving environment: ...working... done +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 ## Package Plan ## +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 environment location: /opt/conda +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 added / updated specs: +2024-03-23T17:20:58Z #7 39.00 - mamba +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 The following packages will be downloaded: +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 package | build +2024-03-23T17:20:58Z #7 39.00 ---------------------------|----------------- +2024-03-23T17:20:58Z #7 39.00 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-03-23T17:20:58Z #7 39.00 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 libmamba-1.5.7 | had39da4_0 1.6 MB conda-forge +2024-03-23T17:20:58Z #7 39.00 libmambapy-1.5.7 | py311hf2555c7_0 305 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge +2024-03-23T17:20:58Z #7 39.00 libxml2-2.12.6 | h232c23b_0 688 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 lzo-2.10 | h516909a_1000 314 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 mamba-1.5.7 | py311h3072747_0 65 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge +2024-03-23T17:20:58Z #7 39.00 python_abi-3.11 | 2_cp311 5 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-03-23T17:20:58Z #7 39.00 ------------------------------------------------------------ +2024-03-23T17:20:58Z #7 39.00 Total: 24.0 MB +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 The following NEW packages will be INSTALLED: +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-03-23T17:20:58Z #7 39.00 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-03-23T17:20:58Z #7 39.00 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 +2024-03-23T17:20:58Z #7 39.00 mamba conda-forge/linux-64::mamba-1.5.7-py311h3072747_0 +2024-03-23T17:20:58Z #7 39.00 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 The following packages will be UPDATED: +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-03-23T17:20:58Z #7 39.00 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-03-23T17:20:58Z #7 39.00 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-03-23T17:20:58Z #7 39.00 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 +2024-03-23T17:20:58Z #7 39.00 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 +2024-03-23T17:20:58Z #7 39.00 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.7-had39da4_0 +2024-03-23T17:20:58Z #7 39.00 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.7-py311hf2555c7_0 +2024-03-23T17:20:58Z #7 39.00 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 +2024-03-23T17:20:58Z #7 39.00 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_0 +2024-03-23T17:20:58Z #7 39.00 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 +2024-03-23T17:20:58Z #7 39.00 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 The following packages will be SUPERSEDED by a higher-priority channel: +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-03-23T17:20:58Z #7 39.00 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-03-23T17:20:58Z #7 39.00 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 +2024-03-23T17:20:58Z #7 39.00 Proceed ([y]/n)? +2024-03-23T17:21:00Z #7 40.98 +2024-03-23T17:21:00Z #7 40.98 Downloading and Extracting Packages: ...working... done +2024-03-23T17:21:00Z #7 40.98 Preparing transaction: ...working... done +2024-03-23T17:21:01Z #7 41.05 Verifying transaction: ...working... done +2024-03-23T17:21:07Z #7 41.29 Executing transaction: ...working... done +2024-03-23T17:21:08Z #7 48.58 Will remove 22 (25.4 MB) tarball(s). +2024-03-23T17:21:08Z #7 48.58 Will remove 1 index cache(s). +2024-03-23T17:21:08Z #7 48.58 Will remove 3 (118 KB) package(s). +2024-03-23T17:21:08Z #7 48.58 There are no tempfile(s) to remove. +2024-03-23T17:21:08Z #7 48.58 There are no logfile(s) to remove. +2024-03-23T17:21:10Z #7 50.45 bin/micromamba +2024-03-23T17:21:12Z #7 DONE 52.9s +2024-03-23T17:21:12Z +2024-03-23T17:21:12Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-03-23T17:21:13Z #8 0.541 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-03-23T17:21:13Z #8 0.559 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-03-23T17:21:13Z #8 0.559 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-03-23T17:21:13Z #8 0.707 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-03-23T17:21:13Z #8 0.947 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [270 kB] +2024-03-23T17:21:14Z #8 1.362 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-03-23T17:21:15Z #8 2.745 Fetched 8565 kB in 2s (3866 kB/s) +2024-03-23T17:21:16Z #8 2.745 Reading package lists... +2024-03-23T17:21:17Z #8 3.595 Reading package lists... +2024-03-23T17:21:17Z #8 4.450 Building dependency tree... +2024-03-23T17:21:17Z #8 4.660 Reading state information... +2024-03-23T17:21:17Z #8 4.954 git is already the newest version (1:2.30.2-1+deb11u2). +2024-03-23T17:21:17Z #8 4.954 mercurial is already the newest version (5.6.1-4). +2024-03-23T17:21:17Z #8 4.954 The following additional packages will be installed: +2024-03-23T17:21:17Z #8 4.954 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-03-23T17:21:17Z #8 4.954 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-03-23T17:21:17Z #8 4.954 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-03-23T17:21:17Z #8 4.954 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-03-23T17:21:17Z #8 4.954 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-03-23T17:21:17Z #8 4.954 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-03-23T17:21:17Z #8 4.954 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-03-23T17:21:17Z #8 4.954 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-03-23T17:21:17Z #8 4.954 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-03-23T17:21:17Z #8 4.955 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-03-23T17:21:17Z #8 4.955 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-03-23T17:21:17Z #8 4.955 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-03-23T17:21:17Z #8 4.955 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-03-23T17:21:17Z #8 4.955 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-03-23T17:21:17Z #8 4.955 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-03-23T17:21:17Z #8 4.955 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-03-23T17:21:17Z #8 4.955 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-03-23T17:21:17Z #8 4.955 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-03-23T17:21:17Z #8 4.955 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-03-23T17:21:17Z #8 4.955 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-03-23T17:21:17Z #8 4.955 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-03-23T17:21:17Z #8 4.956 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-03-23T17:21:17Z #8 4.956 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-03-23T17:21:17Z #8 4.956 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-03-23T17:21:17Z #8 4.956 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-03-23T17:21:17Z #8 4.956 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-03-23T17:21:17Z #8 4.956 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-03-23T17:21:17Z #8 4.956 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-03-23T17:21:17Z #8 4.956 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-03-23T17:21:17Z #8 4.956 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-03-23T17:21:17Z #8 4.956 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-03-23T17:21:17Z #8 4.956 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-03-23T17:21:17Z #8 4.956 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-03-23T17:21:17Z #8 4.956 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-03-23T17:21:17Z #8 4.956 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-03-23T17:21:17Z #8 4.956 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-03-23T17:21:17Z #8 4.957 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-03-23T17:21:17Z #8 4.957 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv +2024-03-23T17:21:17Z #8 4.957 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data +2024-03-23T17:21:17Z #8 4.959 Suggested packages: +2024-03-23T17:21:17Z #8 4.959 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-03-23T17:21:17Z #8 4.959 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-03-23T17:21:17Z #8 4.959 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-03-23T17:21:17Z #8 4.959 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs +2024-03-23T17:21:17Z #8 4.959 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser +2024-03-23T17:21:17Z #8 4.959 opencl-icd ed diffutils-doc systemd-container policykit-1 zip +2024-03-23T17:21:17Z #8 4.959 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-03-23T17:21:17Z #8 4.959 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-03-23T17:21:17Z #8 4.959 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-03-23T17:21:19Z #8 6.333 The following NEW packages will be installed: +2024-03-23T17:21:19Z #8 6.333 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-03-23T17:21:19Z #8 6.333 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-03-23T17:21:19Z #8 6.337 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-03-23T17:21:19Z #8 6.337 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-03-23T17:21:19Z #8 6.337 glib-networking glib-networking-common glib-networking-services +2024-03-23T17:21:19Z #8 6.337 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-03-23T17:21:19Z #8 6.337 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-03-23T17:21:19Z #8 6.337 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-03-23T17:21:19Z #8 6.337 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-03-23T17:21:19Z #8 6.337 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-03-23T17:21:19Z #8 6.337 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-03-23T17:21:19Z #8 6.337 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-03-23T17:21:19Z #8 6.337 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-03-23T17:21:19Z #8 6.337 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-03-23T17:21:19Z #8 6.337 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-03-23T17:21:19Z #8 6.337 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-03-23T17:21:19Z #8 6.337 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-03-23T17:21:19Z #8 6.337 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-03-23T17:21:19Z #8 6.337 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-03-23T17:21:19Z #8 6.337 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-03-23T17:21:19Z #8 6.337 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-03-23T17:21:19Z #8 6.337 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-03-23T17:21:19Z #8 6.337 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-03-23T17:21:19Z #8 6.337 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-03-23T17:21:19Z #8 6.337 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-03-23T17:21:19Z #8 6.337 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-03-23T17:21:19Z #8 6.337 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-03-23T17:21:19Z #8 6.337 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-03-23T17:21:19Z #8 6.337 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-03-23T17:21:19Z #8 6.337 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-03-23T17:21:19Z #8 6.337 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-03-23T17:21:19Z #8 6.337 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-03-23T17:21:19Z #8 6.337 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-03-23T17:21:19Z #8 6.337 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-03-23T17:21:19Z #8 6.337 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-03-23T17:21:19Z #8 6.337 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-03-23T17:21:19Z #8 6.337 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-03-23T17:21:19Z #8 6.337 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-03-23T17:21:19Z #8 6.337 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-03-23T17:21:19Z #8 6.337 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-03-23T17:21:19Z #8 6.337 x11-utils xkb-data +2024-03-23T17:21:19Z #8 6.365 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. +2024-03-23T17:21:19Z #8 6.365 Need to get 236 MB of archives. +2024-03-23T17:21:19Z #8 6.365 After this operation, 891 MB of additional disk space will be used. +2024-03-23T17:21:19Z #8 6.365 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-03-23T17:21:19Z #8 6.377 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-03-23T17:21:19Z #8 6.381 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-03-23T17:21:19Z #8 6.382 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-03-23T17:21:19Z #8 6.384 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-03-23T17:21:19Z #8 6.388 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-03-23T17:21:19Z #8 6.388 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-03-23T17:21:19Z #8 6.392 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-03-23T17:21:19Z #8 6.394 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-03-23T17:21:19Z #8 6.395 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-03-23T17:21:19Z #8 6.530 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-03-23T17:21:19Z #8 6.532 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-03-23T17:21:19Z #8 6.537 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-03-23T17:21:19Z #8 6.542 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-03-23T17:21:19Z #8 6.545 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-03-23T17:21:19Z #8 6.550 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-03-23T17:21:19Z #8 6.605 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-03-23T17:21:19Z #8 6.605 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-03-23T17:21:19Z #8 6.605 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-03-23T17:21:19Z #8 6.608 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-03-23T17:21:19Z #8 6.869 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-03-23T17:21:19Z #8 6.890 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-03-23T17:21:19Z #8 6.911 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-03-23T17:21:19Z #8 6.915 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-03-23T17:21:19Z #8 6.920 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-03-23T17:21:19Z #8 6.922 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-03-23T17:21:19Z #8 6.924 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-03-23T17:21:19Z #8 6.928 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-03-23T17:21:19Z #8 6.934 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-03-23T17:21:19Z #8 6.937 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-03-23T17:21:19Z #8 6.939 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-03-23T17:21:20Z #8 7.238 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-03-23T17:21:20Z #8 7.238 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-03-23T17:21:20Z #8 7.238 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-03-23T17:21:20Z #8 7.238 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-03-23T17:21:20Z #8 7.238 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-03-23T17:21:20Z #8 7.257 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-03-23T17:21:20Z #8 7.257 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-03-23T17:21:20Z #8 7.257 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-03-23T17:21:20Z #8 7.257 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-03-23T17:21:20Z #8 7.278 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-03-23T17:21:20Z #8 7.322 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-03-23T17:21:20Z #8 7.326 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-03-23T17:21:20Z #8 7.328 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-03-23T17:21:20Z #8 7.351 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-03-23T17:21:20Z #8 7.353 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-03-23T17:21:20Z #8 7.363 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-03-23T17:21:20Z #8 7.409 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-03-23T17:21:20Z #8 7.417 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-03-23T17:21:20Z #8 7.619 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-03-23T17:21:20Z #8 7.625 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-03-23T17:21:20Z #8 7.625 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-03-23T17:21:20Z #8 7.629 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-03-23T17:21:20Z #8 7.629 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-03-23T17:21:20Z #8 7.631 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-03-23T17:21:20Z #8 7.632 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-03-23T17:21:20Z #8 7.634 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-03-23T17:21:20Z #8 7.651 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-03-23T17:21:20Z #8 7.677 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-03-23T17:21:20Z #8 7.685 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-03-23T17:21:20Z #8 7.694 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-03-23T17:21:20Z #8 7.706 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-03-23T17:21:20Z #8 7.712 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-03-23T17:21:20Z #8 7.715 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-03-23T17:21:20Z #8 7.733 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-03-23T17:21:20Z #8 7.738 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-03-23T17:21:20Z #8 7.741 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-03-23T17:21:20Z #8 7.744 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-03-23T17:21:20Z #8 7.746 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-03-23T17:21:20Z #8 7.750 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-03-23T17:21:20Z #8 7.753 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-03-23T17:21:20Z #8 7.756 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-03-23T17:21:20Z #8 7.758 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-03-23T17:21:20Z #8 7.760 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-03-23T17:21:20Z #8 7.766 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-03-23T17:21:20Z #8 7.769 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-03-23T17:21:20Z #8 7.771 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-03-23T17:21:20Z #8 7.773 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-03-23T17:21:20Z #8 7.793 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-03-23T17:21:20Z #8 7.795 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-03-23T17:21:20Z #8 7.797 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-03-23T17:21:20Z #8 7.803 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-03-23T17:21:20Z #8 7.806 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-03-23T17:21:20Z #8 7.822 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-03-23T17:21:20Z #8 7.824 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-03-23T17:21:20Z #8 7.828 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-03-23T17:21:20Z #8 7.830 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-03-23T17:21:20Z #8 7.832 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-03-23T17:21:20Z #8 7.834 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-03-23T17:21:20Z #8 7.838 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-03-23T17:21:20Z #8 7.845 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-03-23T17:21:20Z #8 7.848 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-03-23T17:21:20Z #8 7.850 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-03-23T17:21:20Z #8 7.855 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-03-23T17:21:20Z #8 7.856 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-03-23T17:21:20Z #8 7.858 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-03-23T17:21:20Z #8 7.859 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-03-23T17:21:20Z #8 7.862 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-03-23T17:21:20Z #8 7.863 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-03-23T17:21:20Z #8 7.865 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-03-23T17:21:20Z #8 7.866 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-03-23T17:21:20Z #8 7.869 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-03-23T17:21:20Z #8 7.871 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-03-23T17:21:20Z #8 7.872 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-03-23T17:21:20Z #8 7.882 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-03-23T17:21:20Z #8 7.884 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-03-23T17:21:20Z #8 7.886 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-03-23T17:21:20Z #8 7.979 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-03-23T17:21:20Z #8 8.020 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-03-23T17:21:20Z #8 8.057 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.9.0esr-1~deb11u1 [63.7 MB] +2024-03-23T17:21:22Z #8 9.687 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-03-23T17:21:22Z #8 9.688 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-03-23T17:21:22Z #8 9.689 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-03-23T17:21:22Z #8 9.691 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-03-23T17:21:22Z #8 9.693 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-03-23T17:21:22Z #8 9.694 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-03-23T17:21:22Z #8 9.745 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-03-23T17:21:22Z #8 9.758 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-03-23T17:21:22Z #8 9.801 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-03-23T17:21:22Z #8 9.858 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-03-23T17:21:22Z #8 9.861 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-03-23T17:21:22Z #8 9.895 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-03-23T17:21:23Z #8 10.41 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-03-23T17:21:23Z #8 10.41 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-03-23T17:21:23Z #8 10.41 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-03-23T17:21:23Z #8 10.42 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-03-23T17:21:23Z #8 10.42 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-03-23T17:21:23Z #8 10.42 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-03-23T17:21:23Z #8 10.43 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-03-23T17:21:23Z #8 10.43 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-03-23T17:21:23Z #8 10.44 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-03-23T17:21:23Z #8 10.46 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-03-23T17:21:23Z #8 10.49 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-03-23T17:21:23Z #8 10.58 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-03-23T17:21:23Z #8 10.58 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-03-23T17:21:23Z #8 10.58 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-03-23T17:21:23Z #8 10.58 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-03-23T17:21:23Z #8 10.60 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-03-23T17:21:23Z #8 10.60 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-03-23T17:21:23Z #8 10.76 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-03-23T17:21:23Z #8 10.77 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-03-23T17:21:23Z #8 10.77 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-03-23T17:21:23Z #8 10.79 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-03-23T17:21:23Z #8 10.79 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-03-23T17:21:23Z #8 10.80 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-03-23T17:21:23Z #8 10.82 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-03-23T17:21:23Z #8 10.83 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-03-23T17:21:23Z #8 10.83 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-03-23T17:21:23Z #8 10.83 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-03-23T17:21:23Z #8 10.83 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-03-23T17:21:23Z #8 10.83 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-03-23T17:21:23Z #8 10.84 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-03-23T17:21:23Z #8 10.84 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-03-23T17:21:23Z #8 10.84 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-03-23T17:21:23Z #8 10.84 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-03-23T17:21:23Z #8 10.85 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-03-23T17:21:23Z #8 10.86 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-03-23T17:21:23Z #8 10.86 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-03-23T17:21:23Z #8 10.86 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-03-23T17:21:23Z #8 10.87 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-03-23T17:21:23Z #8 10.87 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-03-23T17:21:23Z #8 10.92 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-03-23T17:21:23Z #8 10.92 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-03-23T17:21:23Z #8 10.93 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-03-23T17:21:23Z #8 10.94 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-03-23T17:21:23Z #8 11.02 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] +2024-03-23T17:21:23Z #8 11.04 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-03-23T17:21:23Z #8 11.05 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-03-23T17:21:23Z #8 11.05 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] +2024-03-23T17:21:23Z #8 11.06 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-03-23T17:21:23Z #8 11.08 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-03-23T17:21:23Z #8 11.08 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-03-23T17:21:23Z #8 11.08 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-03-23T17:21:23Z #8 11.08 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] +2024-03-23T17:21:23Z #8 11.12 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-03-23T17:21:23Z #8 11.14 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-03-23T17:21:23Z #8 11.14 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-03-23T17:21:23Z #8 11.14 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-03-23T17:21:23Z #8 11.15 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-03-23T17:21:24Z #8 11.15 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-03-23T17:21:24Z #8 11.15 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-03-23T17:21:24Z #8 11.16 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-03-23T17:21:24Z #8 11.30 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-03-23T17:21:24Z #8 11.72 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-03-23T17:21:24Z #8 11.72 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-03-23T17:21:24Z #8 11.72 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-03-23T17:21:24Z #8 11.72 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-03-23T17:21:24Z #8 11.94 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-03-23T17:21:24Z #8 11.94 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-03-23T17:21:24Z #8 11.95 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-03-23T17:21:24Z #8 11.95 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-03-23T17:21:24Z #8 11.95 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-03-23T17:21:24Z #8 11.95 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-03-23T17:21:24Z #8 11.96 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-03-23T17:21:24Z #8 11.96 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-03-23T17:21:24Z #8 11.96 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-03-23T17:21:24Z #8 11.96 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-03-23T17:21:24Z #8 11.96 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-03-23T17:21:24Z #8 11.97 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-03-23T17:21:24Z #8 11.97 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-03-23T17:21:24Z #8 11.97 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-03-23T17:21:24Z #8 11.97 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-03-23T17:21:24Z #8 11.97 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-03-23T17:21:24Z #8 11.98 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-03-23T17:21:24Z #8 11.99 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-03-23T17:21:24Z #8 11.99 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-03-23T17:21:24Z #8 11.99 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-03-23T17:21:24Z #8 11.99 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-03-23T17:21:24Z #8 12.00 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-03-23T17:21:24Z #8 12.00 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-03-23T17:21:24Z #8 12.00 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-03-23T17:21:24Z #8 12.00 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-03-23T17:21:24Z #8 12.01 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-03-23T17:21:24Z #8 12.03 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-03-23T17:21:24Z #8 12.09 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-03-23T17:21:24Z #8 12.13 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-03-23T17:21:24Z #8 12.21 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-03-23T17:21:25Z #8 12.21 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-03-23T17:21:25Z #8 12.21 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-03-23T17:21:25Z #8 12.22 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-03-23T17:21:25Z #8 12.22 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-03-23T17:21:25Z #8 12.50 debconf: delaying package configuration, since apt-utils is not installed +2024-03-23T17:21:25Z #8 12.54 Fetched 236 MB in 6s (40.2 MB/s) +2024-03-23T17:21:25Z #8 12.57 Selecting previously unselected package libapparmor1:amd64. +2024-03-23T17:21:25Z #8 12.57 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-03-23T17:21:25Z #8 12.59 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-03-23T17:21:25Z #8 12.60 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-03-23T17:21:25Z #8 12.66 Selecting previously unselected package libcap2:amd64. +2024-03-23T17:21:25Z #8 12.66 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-03-23T17:21:25Z #8 12.67 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-03-23T17:21:25Z #8 12.72 Selecting previously unselected package libargon2-1:amd64. +2024-03-23T17:21:25Z #8 12.72 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-03-23T17:21:25Z #8 12.72 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-03-23T17:21:25Z #8 12.77 Selecting previously unselected package dmsetup. +2024-03-23T17:21:25Z #8 12.77 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-03-23T17:21:25Z #8 12.78 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-03-23T17:21:25Z #8 12.84 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-03-23T17:21:25Z #8 12.84 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-03-23T17:21:25Z #8 12.85 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-03-23T17:21:25Z #8 12.92 Selecting previously unselected package libjson-c5:amd64. +2024-03-23T17:21:25Z #8 12.92 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-03-23T17:21:25Z #8 12.93 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-03-23T17:21:25Z #8 12.99 Selecting previously unselected package libcryptsetup12:amd64. +2024-03-23T17:21:25Z #8 12.99 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-03-23T17:21:25Z #8 13.00 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-03-23T17:21:25Z #8 13.08 Selecting previously unselected package libip4tc2:amd64. +2024-03-23T17:21:25Z #8 13.08 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-03-23T17:21:25Z #8 13.09 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-03-23T17:21:25Z #8 13.14 Selecting previously unselected package libkmod2:amd64. +2024-03-23T17:21:25Z #8 13.14 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-03-23T17:21:25Z #8 13.14 Unpacking libkmod2:amd64 (28-1) ... +2024-03-23T17:21:25Z #8 13.21 Selecting previously unselected package systemd. +2024-03-23T17:21:26Z #8 13.21 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-23T17:21:26Z #8 13.28 Unpacking systemd (247.3-7+deb11u4) ... +2024-03-23T17:21:26Z #8 14.10 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-03-23T17:21:26Z #8 14.12 Setting up libcap2:amd64 (1:2.44-1) ... +2024-03-23T17:21:26Z #8 14.14 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-03-23T17:21:26Z #8 14.16 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-03-23T17:21:26Z #8 14.18 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-03-23T17:21:26Z #8 14.19 Setting up libkmod2:amd64 (28-1) ... +2024-03-23T17:21:27Z #8 14.21 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-03-23T17:21:27Z #8 14.23 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-03-23T17:21:27Z #8 14.25 Setting up systemd (247.3-7+deb11u4) ... +2024-03-23T17:21:27Z #8 14.30 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-03-23T17:21:27Z #8 14.30 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-03-23T17:21:27Z #8 14.31 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-03-23T17:21:27Z #8 14.34 Initializing machine ID from KVM UUID. +2024-03-23T17:21:27Z #8 14.75 Setting up dmsetup (2:1.02.175-2.1) ... +2024-03-23T17:21:27Z #8 14.84 Selecting previously unselected package systemd-sysv. +2024-03-23T17:21:27Z #8 14.84 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-03-23T17:21:27Z #8 14.87 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-03-23T17:21:27Z #8 14.88 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-03-23T17:21:27Z #8 14.93 Selecting previously unselected package libdbus-1-3:amd64. +2024-03-23T17:21:27Z #8 14.94 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-03-23T17:21:27Z #8 14.94 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-03-23T17:21:27Z #8 15.02 Selecting previously unselected package dbus. +2024-03-23T17:21:27Z #8 15.02 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-03-23T17:21:27Z #8 15.04 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-03-23T17:21:28Z #8 15.12 Selecting previously unselected package libnss-systemd:amd64. +2024-03-23T17:21:28Z #8 15.12 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-23T17:21:28Z #8 15.13 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-23T17:21:28Z #8 15.19 Selecting previously unselected package libpam-systemd:amd64. +2024-03-23T17:21:28Z #8 15.19 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-03-23T17:21:28Z #8 15.19 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-23T17:21:28Z #8 15.26 Selecting previously unselected package manpages. +2024-03-23T17:21:28Z #8 15.27 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-03-23T17:21:28Z #8 15.27 Unpacking manpages (5.10-1) ... +2024-03-23T17:21:28Z #8 15.47 Selecting previously unselected package systemd-timesyncd. +2024-03-23T17:21:28Z #8 15.47 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-03-23T17:21:28Z #8 15.48 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-03-23T17:21:28Z #8 15.54 Selecting previously unselected package hicolor-icon-theme. +2024-03-23T17:21:28Z #8 15.55 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-03-23T17:21:28Z #8 15.55 Unpacking hicolor-icon-theme (0.17-2) ... +2024-03-23T17:21:28Z #8 15.65 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-03-23T17:21:28Z #8 15.66 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-03-23T17:21:28Z #8 15.66 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-03-23T17:21:28Z #8 15.77 Selecting previously unselected package libicu67:amd64. +2024-03-23T17:21:28Z #8 15.77 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-03-23T17:21:28Z #8 15.78 Unpacking libicu67:amd64 (67.1-7) ... +2024-03-23T17:21:30Z #8 17.33 Selecting previously unselected package libxml2:amd64. +2024-03-23T17:21:30Z #8 17.34 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-03-23T17:21:30Z #8 17.34 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-03-23T17:21:30Z #8 17.48 Selecting previously unselected package shared-mime-info. +2024-03-23T17:21:30Z #8 17.49 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-03-23T17:21:30Z #8 17.49 Unpacking shared-mime-info (2.0-1) ... +2024-03-23T17:21:30Z #8 17.70 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-03-23T17:21:30Z #8 17.70 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-03-23T17:21:30Z #8 17.71 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-03-23T17:21:30Z #8 17.78 Selecting previously unselected package libpng16-16:amd64. +2024-03-23T17:21:30Z #8 17.78 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-03-23T17:21:30Z #8 17.79 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-03-23T17:21:30Z #8 17.85 Selecting previously unselected package libdeflate0:amd64. +2024-03-23T17:21:30Z #8 17.86 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-03-23T17:21:30Z #8 17.86 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-03-23T17:21:30Z #8 17.92 Selecting previously unselected package libjbig0:amd64. +2024-03-23T17:21:30Z #8 17.93 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-03-23T17:21:30Z #8 17.93 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-03-23T17:21:30Z #8 17.98 Selecting previously unselected package libwebp6:amd64. +2024-03-23T17:21:30Z #8 17.98 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-03-23T17:21:30Z #8 17.99 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-23T17:21:30Z #8 18.08 Selecting previously unselected package libtiff5:amd64. +2024-03-23T17:21:30Z #8 18.08 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-03-23T17:21:30Z #8 18.08 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-03-23T17:21:31Z #8 18.19 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-03-23T17:21:31Z #8 18.19 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-03-23T17:21:31Z #8 18.19 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-23T17:21:31Z #8 18.26 Selecting previously unselected package gtk-update-icon-cache. +2024-03-23T17:21:31Z #8 18.27 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-03-23T17:21:31Z #8 18.27 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-03-23T17:21:31Z #8 18.40 Selecting previously unselected package adwaita-icon-theme. +2024-03-23T17:21:31Z #8 18.40 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-03-23T17:21:31Z #8 18.41 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-03-23T17:21:34Z #8 21.18 Selecting previously unselected package alsa-topology-conf. +2024-03-23T17:21:34Z #8 21.19 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-03-23T17:21:34Z #8 21.19 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-03-23T17:21:34Z #8 21.24 Selecting previously unselected package libasound2-data. +2024-03-23T17:21:34Z #8 21.25 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-03-23T17:21:34Z #8 21.25 Unpacking libasound2-data (1.2.4-1.1) ... +2024-03-23T17:21:34Z #8 21.32 Selecting previously unselected package libasound2:amd64. +2024-03-23T17:21:34Z #8 21.33 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-03-23T17:21:34Z #8 21.34 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-03-23T17:21:34Z #8 21.46 Selecting previously unselected package alsa-ucm-conf. +2024-03-23T17:21:34Z #8 21.46 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-03-23T17:21:34Z #8 21.47 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-03-23T17:21:34Z #8 21.58 Selecting previously unselected package libatspi2.0-0:amd64. +2024-03-23T17:21:34Z #8 21.59 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-03-23T17:21:34Z #8 21.60 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-03-23T17:21:34Z #8 21.67 Selecting previously unselected package libxi6:amd64. +2024-03-23T17:21:34Z #8 21.67 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-03-23T17:21:34Z #8 21.68 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-03-23T17:21:34Z #8 21.74 Selecting previously unselected package libxtst6:amd64. +2024-03-23T17:21:34Z #8 21.75 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-03-23T17:21:34Z #8 21.75 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-03-23T17:21:34Z #8 21.81 Selecting previously unselected package at-spi2-core. +2024-03-23T17:21:34Z #8 21.81 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-03-23T17:21:34Z #8 21.82 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-03-23T17:21:34Z #8 21.90 Selecting previously unselected package binutils-common:amd64. +2024-03-23T17:21:34Z #8 21.90 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-03-23T17:21:34Z #8 21.91 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-03-23T17:21:35Z #8 22.43 Selecting previously unselected package libbinutils:amd64. +2024-03-23T17:21:35Z #8 22.43 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-03-23T17:21:35Z #8 22.44 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-03-23T17:21:35Z #8 22.65 Selecting previously unselected package libctf-nobfd0:amd64. +2024-03-23T17:21:35Z #8 22.66 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-03-23T17:21:35Z #8 22.66 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-03-23T17:21:35Z #8 22.72 Selecting previously unselected package libctf0:amd64. +2024-03-23T17:21:35Z #8 22.72 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-03-23T17:21:35Z #8 22.72 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-03-23T17:21:35Z #8 22.77 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-03-23T17:21:35Z #8 22.77 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-03-23T17:21:35Z #8 22.78 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-03-23T17:21:35Z #8 23.22 Selecting previously unselected package binutils. +2024-03-23T17:21:36Z #8 23.23 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-03-23T17:21:36Z #8 23.23 Unpacking binutils (2.35.2-2) ... +2024-03-23T17:21:36Z #8 23.29 Selecting previously unselected package libisl23:amd64. +2024-03-23T17:21:36Z #8 23.30 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-03-23T17:21:36Z #8 23.30 Unpacking libisl23:amd64 (0.23-1) ... +2024-03-23T17:21:36Z #8 23.47 Selecting previously unselected package libmpfr6:amd64. +2024-03-23T17:21:36Z #8 23.48 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-03-23T17:21:36Z #8 23.49 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-03-23T17:21:36Z #8 23.73 Selecting previously unselected package libmpc3:amd64. +2024-03-23T17:21:36Z #8 23.73 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-03-23T17:21:36Z #8 23.74 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-03-23T17:21:36Z #8 23.79 Selecting previously unselected package cpp-10. +2024-03-23T17:21:36Z #8 23.79 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-03-23T17:21:36Z #8 23.80 Unpacking cpp-10 (10.2.1-6) ... +2024-03-23T17:21:38Z #8 25.30 Selecting previously unselected package cpp. +2024-03-23T17:21:38Z #8 25.30 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-03-23T17:21:38Z #8 25.31 Unpacking cpp (4:10.2.1-1) ... +2024-03-23T17:21:38Z #8 25.35 Selecting previously unselected package dbus-user-session. +2024-03-23T17:21:38Z #8 25.35 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-03-23T17:21:38Z #8 25.36 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-03-23T17:21:38Z #8 25.42 Selecting previously unselected package libdconf1:amd64. +2024-03-23T17:21:38Z #8 25.42 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-03-23T17:21:38Z #8 25.43 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-03-23T17:21:38Z #8 25.47 Selecting previously unselected package dconf-service. +2024-03-23T17:21:38Z #8 25.47 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-03-23T17:21:38Z #8 25.48 Unpacking dconf-service (0.38.0-2) ... +2024-03-23T17:21:38Z #8 25.52 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-03-23T17:21:38Z #8 25.52 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-03-23T17:21:38Z #8 25.53 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-03-23T17:21:38Z #8 25.58 Selecting previously unselected package libatk1.0-data. +2024-03-23T17:21:38Z #8 25.59 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-03-23T17:21:38Z #8 25.59 Unpacking libatk1.0-data (2.36.0-2) ... +2024-03-23T17:21:38Z #8 25.68 Selecting previously unselected package libatk1.0-0:amd64. +2024-03-23T17:21:38Z #8 25.68 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-03-23T17:21:38Z #8 25.68 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-03-23T17:21:38Z #8 25.74 Selecting previously unselected package libfreetype6:amd64. +2024-03-23T17:21:38Z #8 25.74 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-03-23T17:21:38Z #8 25.75 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-03-23T17:21:38Z #8 25.84 Selecting previously unselected package fonts-dejavu-core. +2024-03-23T17:21:38Z #8 25.85 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-03-23T17:21:38Z #8 25.85 Unpacking fonts-dejavu-core (2.37-2) ... +2024-03-23T17:21:38Z #8 26.12 Selecting previously unselected package fontconfig-config. +2024-03-23T17:21:39Z #8 26.13 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-03-23T17:21:39Z #8 26.29 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-03-23T17:21:39Z #8 26.38 Selecting previously unselected package libfontconfig1:amd64. +2024-03-23T17:21:39Z #8 26.38 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-03-23T17:21:39Z #8 26.39 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-03-23T17:21:39Z #8 26.46 Selecting previously unselected package libpixman-1-0:amd64. +2024-03-23T17:21:39Z #8 26.47 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-03-23T17:21:39Z #8 26.47 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-03-23T17:21:39Z #8 26.57 Selecting previously unselected package libxcb-render0:amd64. +2024-03-23T17:21:39Z #8 26.57 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-03-23T17:21:39Z #8 26.58 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-03-23T17:21:39Z #8 26.64 Selecting previously unselected package libxcb-shm0:amd64. +2024-03-23T17:21:39Z #8 26.64 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-03-23T17:21:39Z #8 26.65 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-03-23T17:21:39Z #8 26.71 Selecting previously unselected package libcairo2:amd64. +2024-03-23T17:21:39Z #8 26.72 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-03-23T17:21:39Z #8 26.72 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-03-23T17:21:39Z #8 26.87 Selecting previously unselected package libcairo-gobject2:amd64. +2024-03-23T17:21:39Z #8 26.87 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-03-23T17:21:39Z #8 26.88 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-03-23T17:21:39Z #8 26.95 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-03-23T17:21:39Z #8 26.95 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-03-23T17:21:39Z #8 26.96 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-03-23T17:21:39Z #8 27.01 Selecting previously unselected package libevent-2.1-7:amd64. +2024-03-23T17:21:39Z #8 27.01 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-03-23T17:21:39Z #8 27.02 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-03-23T17:21:39Z #8 27.10 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-03-23T17:21:39Z #8 27.10 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-03-23T17:21:39Z #8 27.11 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-03-23T17:21:39Z #8 27.16 Selecting previously unselected package liblcms2-2:amd64. +2024-03-23T17:21:39Z #8 27.17 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-03-23T17:21:39Z #8 27.17 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-03-23T17:21:40Z #8 27.24 Selecting previously unselected package libcolord2:amd64. +2024-03-23T17:21:40Z #8 27.24 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-03-23T17:21:40Z #8 27.25 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-03-23T17:21:40Z #8 27.30 Selecting previously unselected package libavahi-common-data:amd64. +2024-03-23T17:21:40Z #8 27.31 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-03-23T17:21:40Z #8 27.31 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-03-23T17:21:40Z #8 27.38 Selecting previously unselected package libavahi-common3:amd64. +2024-03-23T17:21:40Z #8 27.39 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-03-23T17:21:40Z #8 27.39 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-03-23T17:21:40Z #8 27.44 Selecting previously unselected package libavahi-client3:amd64. +2024-03-23T17:21:40Z #8 27.45 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-03-23T17:21:40Z #8 27.45 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-03-23T17:21:40Z #8 27.51 Selecting previously unselected package libcups2:amd64. +2024-03-23T17:21:40Z #8 27.52 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-03-23T17:21:40Z #8 27.52 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-03-23T17:21:40Z #8 27.62 Selecting previously unselected package libepoxy0:amd64. +2024-03-23T17:21:40Z #8 27.62 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-03-23T17:21:40Z #8 27.63 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-03-23T17:21:40Z #8 27.72 Selecting previously unselected package libfribidi0:amd64. +2024-03-23T17:21:40Z #8 27.72 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-03-23T17:21:40Z #8 27.73 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-03-23T17:21:40Z #8 27.78 Selecting previously unselected package libgraphite2-3:amd64. +2024-03-23T17:21:40Z #8 27.78 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-03-23T17:21:40Z #8 27.79 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-03-23T17:21:40Z #8 27.85 Selecting previously unselected package libharfbuzz0b:amd64. +2024-03-23T17:21:40Z #8 27.85 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-03-23T17:21:40Z #8 27.86 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-03-23T17:21:40Z #8 27.97 Selecting previously unselected package libjson-glib-1.0-common. +2024-03-23T17:21:40Z #8 27.98 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-03-23T17:21:40Z #8 27.98 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-03-23T17:21:40Z #8 28.05 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-03-23T17:21:40Z #8 28.05 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-03-23T17:21:40Z #8 28.06 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-03-23T17:21:40Z #8 28.11 Selecting previously unselected package fontconfig. +2024-03-23T17:21:40Z #8 28.12 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-03-23T17:21:40Z #8 28.13 Unpacking fontconfig (2.13.1-4.2) ... +2024-03-23T17:21:40Z #8 28.20 Selecting previously unselected package libthai-data. +2024-03-23T17:21:40Z #8 28.21 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-03-23T17:21:41Z #8 28.22 Unpacking libthai-data (0.1.28-3) ... +2024-03-23T17:21:41Z #8 28.30 Selecting previously unselected package libdatrie1:amd64. +2024-03-23T17:21:41Z #8 28.30 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-03-23T17:21:41Z #8 28.31 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-03-23T17:21:41Z #8 28.37 Selecting previously unselected package libthai0:amd64. +2024-03-23T17:21:41Z #8 28.37 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-03-23T17:21:41Z #8 28.38 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-03-23T17:21:41Z #8 28.44 Selecting previously unselected package libpango-1.0-0:amd64. +2024-03-23T17:21:41Z #8 28.44 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-03-23T17:21:41Z #8 28.45 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-03-23T17:21:41Z #8 28.52 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-03-23T17:21:41Z #8 28.53 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-03-23T17:21:41Z #8 28.54 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-03-23T17:21:41Z #8 28.60 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-03-23T17:21:41Z #8 28.60 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-03-23T17:21:41Z #8 28.61 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-03-23T17:21:41Z #8 28.66 Selecting previously unselected package libproxy1v5:amd64. +2024-03-23T17:21:41Z #8 28.67 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-03-23T17:21:41Z #8 28.67 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-03-23T17:21:41Z #8 28.72 Selecting previously unselected package glib-networking-common. +2024-03-23T17:21:41Z #8 28.72 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-03-23T17:21:41Z #8 28.73 Unpacking glib-networking-common (2.66.0-2) ... +2024-03-23T17:21:41Z #8 28.79 Selecting previously unselected package glib-networking-services. +2024-03-23T17:21:41Z #8 28.79 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-03-23T17:21:41Z #8 28.80 Unpacking glib-networking-services (2.66.0-2) ... +2024-03-23T17:21:41Z #8 28.84 Selecting previously unselected package gsettings-desktop-schemas. +2024-03-23T17:21:41Z #8 28.84 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-03-23T17:21:41Z #8 28.85 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-03-23T17:21:41Z #8 29.03 Selecting previously unselected package glib-networking:amd64. +2024-03-23T17:21:41Z #8 29.03 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-03-23T17:21:41Z #8 29.04 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-03-23T17:21:41Z #8 29.10 Selecting previously unselected package libsoup2.4-1:amd64. +2024-03-23T17:21:41Z #8 29.11 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-03-23T17:21:41Z #8 29.11 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-03-23T17:21:42Z #8 29.26 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-03-23T17:21:42Z #8 29.26 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-03-23T17:21:42Z #8 29.27 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-03-23T17:21:42Z #8 29.32 Selecting previously unselected package librest-0.7-0:amd64. +2024-03-23T17:21:42Z #8 29.32 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-03-23T17:21:42Z #8 29.33 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-03-23T17:21:42Z #8 29.39 Selecting previously unselected package libwayland-client0:amd64. +2024-03-23T17:21:42Z #8 29.39 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-03-23T17:21:42Z #8 29.40 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-03-23T17:21:42Z #8 29.45 Selecting previously unselected package libwayland-cursor0:amd64. +2024-03-23T17:21:42Z #8 29.46 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-03-23T17:21:42Z #8 29.46 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-03-23T17:21:42Z #8 29.51 Selecting previously unselected package libwayland-egl1:amd64. +2024-03-23T17:21:42Z #8 29.52 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-03-23T17:21:42Z #8 29.52 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-03-23T17:21:42Z #8 29.57 Selecting previously unselected package libxcomposite1:amd64. +2024-03-23T17:21:42Z #8 29.57 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-03-23T17:21:42Z #8 29.58 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-03-23T17:21:42Z #8 29.64 Selecting previously unselected package libxfixes3:amd64. +2024-03-23T17:21:42Z #8 29.64 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-03-23T17:21:42Z #8 29.65 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-03-23T17:21:42Z #8 29.70 Selecting previously unselected package libxcursor1:amd64. +2024-03-23T17:21:42Z #8 29.70 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-03-23T17:21:42Z #8 29.71 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-03-23T17:21:42Z #8 29.76 Selecting previously unselected package libxdamage1:amd64. +2024-03-23T17:21:42Z #8 29.76 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-03-23T17:21:42Z #8 29.77 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-03-23T17:21:42Z #8 29.82 Selecting previously unselected package libxinerama1:amd64. +2024-03-23T17:21:42Z #8 29.83 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-03-23T17:21:42Z #8 29.83 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-03-23T17:21:42Z #8 29.87 Selecting previously unselected package xkb-data. +2024-03-23T17:21:42Z #8 29.88 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-03-23T17:21:42Z #8 29.89 Unpacking xkb-data (2.29-2) ... +2024-03-23T17:21:43Z #8 30.13 Selecting previously unselected package libxkbcommon0:amd64. +2024-03-23T17:21:43Z #8 30.14 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-03-23T17:21:43Z #8 30.14 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-03-23T17:21:43Z #8 30.20 Selecting previously unselected package libxrandr2:amd64. +2024-03-23T17:21:43Z #8 30.20 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-03-23T17:21:43Z #8 30.21 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-03-23T17:21:43Z #8 30.25 Selecting previously unselected package libgtk-3-common. +2024-03-23T17:21:43Z #8 30.25 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-03-23T17:21:43Z #8 30.26 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-03-23T17:21:43Z #8 31.05 Selecting previously unselected package libgtk-3-0:amd64. +2024-03-23T17:21:43Z #8 31.06 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-03-23T17:21:43Z #8 31.06 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-03-23T17:21:44Z #8 31.61 Selecting previously unselected package libx11-xcb1:amd64. +2024-03-23T17:21:44Z #8 31.61 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-03-23T17:21:44Z #8 31.62 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-03-23T17:21:44Z #8 31.69 Selecting previously unselected package firefox-esr. +2024-03-23T17:21:44Z #8 31.69 Preparing to unpack .../099-firefox-esr_115.9.0esr-1~deb11u1_amd64.deb ... +2024-03-23T17:21:44Z #8 31.71 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-03-23T17:21:44Z #8 31.72 Unpacking firefox-esr (115.9.0esr-1~deb11u1) ... +2024-03-23T17:21:55Z #8 42.85 Selecting previously unselected package fonts-humor-sans. +2024-03-23T17:21:55Z #8 42.85 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-03-23T17:21:55Z #8 42.86 Unpacking fonts-humor-sans (1.0-4) ... +2024-03-23T17:21:55Z #8 42.90 Selecting previously unselected package libcc1-0:amd64. +2024-03-23T17:21:55Z #8 42.90 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-03-23T17:21:55Z #8 42.90 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-03-23T17:21:55Z #8 42.95 Selecting previously unselected package libgomp1:amd64. +2024-03-23T17:21:55Z #8 42.96 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-03-23T17:21:55Z #8 42.96 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-03-23T17:21:55Z #8 43.02 Selecting previously unselected package libitm1:amd64. +2024-03-23T17:21:55Z #8 43.02 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-03-23T17:21:55Z #8 43.03 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-03-23T17:21:55Z #8 43.09 Selecting previously unselected package libatomic1:amd64. +2024-03-23T17:21:55Z #8 43.09 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-03-23T17:21:56Z #8 43.10 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-03-23T17:21:56Z #8 43.14 Selecting previously unselected package libasan6:amd64. +2024-03-23T17:21:56Z #8 43.15 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-03-23T17:21:56Z #8 43.15 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-03-23T17:21:56Z #8 43.61 Selecting previously unselected package liblsan0:amd64. +2024-03-23T17:21:56Z #8 43.61 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-03-23T17:21:56Z #8 43.62 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-03-23T17:21:56Z #8 43.89 Selecting previously unselected package libtsan0:amd64. +2024-03-23T17:21:56Z #8 43.89 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-03-23T17:21:56Z #8 43.89 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-03-23T17:21:57Z #8 44.36 Selecting previously unselected package libubsan1:amd64. +2024-03-23T17:21:57Z #8 44.36 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-03-23T17:21:57Z #8 44.37 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-03-23T17:21:57Z #8 44.55 Selecting previously unselected package libquadmath0:amd64. +2024-03-23T17:21:57Z #8 44.55 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-03-23T17:21:57Z #8 44.56 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-03-23T17:21:57Z #8 44.62 Selecting previously unselected package libgcc-10-dev:amd64. +2024-03-23T17:21:57Z #8 44.62 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-03-23T17:21:57Z #8 44.63 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-03-23T17:21:58Z #8 45.11 Selecting previously unselected package gcc-10. +2024-03-23T17:21:58Z #8 45.11 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-03-23T17:21:58Z #8 45.12 Unpacking gcc-10 (10.2.1-6) ... +2024-03-23T17:22:00Z #8 48.07 Selecting previously unselected package gcc. +2024-03-23T17:22:00Z #8 48.07 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-03-23T17:22:00Z #8 48.08 Unpacking gcc (4:10.2.1-1) ... +2024-03-23T17:22:00Z #8 48.13 Selecting previously unselected package libva2:amd64. +2024-03-23T17:22:00Z #8 48.13 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-03-23T17:22:00Z #8 48.14 Unpacking libva2:amd64 (2.10.0-1) ... +2024-03-23T17:22:00Z #8 48.19 Selecting previously unselected package libdrm-common. +2024-03-23T17:22:01Z #8 48.19 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-03-23T17:22:01Z #8 48.20 Unpacking libdrm-common (2.4.104-1) ... +2024-03-23T17:22:01Z #8 48.25 Selecting previously unselected package libdrm2:amd64. +2024-03-23T17:22:01Z #8 48.25 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-03-23T17:22:01Z #8 48.25 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-03-23T17:22:01Z #8 48.31 Selecting previously unselected package libpciaccess0:amd64. +2024-03-23T17:22:01Z #8 48.31 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-03-23T17:22:01Z #8 48.33 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-03-23T17:22:01Z #8 48.37 Selecting previously unselected package libdrm-intel1:amd64. +2024-03-23T17:22:01Z #8 48.38 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-03-23T17:22:01Z #8 48.38 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-03-23T17:22:01Z #8 48.44 Selecting previously unselected package i965-va-driver:amd64. +2024-03-23T17:22:01Z #8 48.44 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-03-23T17:22:01Z #8 48.45 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-03-23T17:22:01Z #8 48.56 Selecting previously unselected package libigdgmm11:amd64. +2024-03-23T17:22:01Z #8 48.56 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-03-23T17:22:01Z #8 48.57 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-03-23T17:22:01Z #8 48.62 Selecting previously unselected package intel-media-va-driver:amd64. +2024-03-23T17:22:01Z #8 48.63 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-03-23T17:22:01Z #8 48.64 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-03-23T17:22:01Z #8 49.03 Selecting previously unselected package libaom0:amd64. +2024-03-23T17:22:01Z #8 49.04 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-03-23T17:22:01Z #8 49.04 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-03-23T17:22:02Z #8 49.27 Selecting previously unselected package libmfx1:amd64. +2024-03-23T17:22:02Z #8 49.27 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-03-23T17:22:02Z #8 49.28 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-03-23T17:22:02Z #8 50.11 Selecting previously unselected package libva-drm2:amd64. +2024-03-23T17:22:02Z #8 50.11 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-03-23T17:22:02Z #8 50.12 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-03-23T17:22:02Z #8 50.17 Selecting previously unselected package libva-x11-2:amd64. +2024-03-23T17:22:02Z #8 50.18 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-03-23T17:22:02Z #8 50.18 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-03-23T17:22:03Z #8 50.24 Selecting previously unselected package libvdpau1:amd64. +2024-03-23T17:22:03Z #8 50.24 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-03-23T17:22:03Z #8 50.25 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-03-23T17:22:03Z #8 50.30 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-03-23T17:22:03Z #8 50.31 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-03-23T17:22:03Z #8 50.31 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-03-23T17:22:03Z #8 50.37 Selecting previously unselected package libavutil56:amd64. +2024-03-23T17:22:03Z #8 50.37 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-23T17:22:03Z #8 50.38 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-23T17:22:03Z #8 50.47 Selecting previously unselected package libcodec2-0.9:amd64. +2024-03-23T17:22:03Z #8 50.47 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-03-23T17:22:03Z #8 50.48 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-03-23T17:22:04Z #8 51.73 Selecting previously unselected package libdav1d4:amd64. +2024-03-23T17:22:04Z #8 51.73 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-03-23T17:22:04Z #8 51.73 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-03-23T17:22:04Z #8 51.84 Selecting previously unselected package libgsm1:amd64. +2024-03-23T17:22:04Z #8 51.85 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-03-23T17:22:04Z #8 51.89 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-03-23T17:22:04Z #8 52.08 Selecting previously unselected package libmp3lame0:amd64. +2024-03-23T17:22:04Z #8 52.08 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-03-23T17:22:04Z #8 52.11 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-03-23T17:22:04Z #8 52.21 Selecting previously unselected package libopenjp2-7:amd64. +2024-03-23T17:22:04Z #8 52.21 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-03-23T17:22:05Z #8 52.22 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-03-23T17:22:05Z #8 52.29 Selecting previously unselected package libopus0:amd64. +2024-03-23T17:22:05Z #8 52.29 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-03-23T17:22:05Z #8 52.30 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-03-23T17:22:05Z #8 52.38 Selecting previously unselected package librsvg2-2:amd64. +2024-03-23T17:22:05Z #8 52.38 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-03-23T17:22:05Z #8 52.38 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-23T17:22:05Z #8 52.91 Selecting previously unselected package libshine3:amd64. +2024-03-23T17:22:05Z #8 52.92 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-03-23T17:22:05Z #8 52.92 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-03-23T17:22:05Z #8 52.97 Selecting previously unselected package libsnappy1v5:amd64. +2024-03-23T17:22:05Z #8 52.98 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-03-23T17:22:05Z #8 52.98 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-03-23T17:22:05Z #8 53.03 Selecting previously unselected package libspeex1:amd64. +2024-03-23T17:22:05Z #8 53.04 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-03-23T17:22:05Z #8 53.04 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-03-23T17:22:05Z #8 53.10 Selecting previously unselected package libsoxr0:amd64. +2024-03-23T17:22:05Z #8 53.10 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-03-23T17:22:05Z #8 53.11 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-03-23T17:22:06Z #8 53.18 Selecting previously unselected package libswresample3:amd64. +2024-03-23T17:22:06Z #8 53.18 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-23T17:22:06Z #8 53.19 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-23T17:22:06Z #8 53.25 Selecting previously unselected package libogg0:amd64. +2024-03-23T17:22:06Z #8 53.26 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-03-23T17:22:06Z #8 53.26 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-03-23T17:22:06Z #8 53.31 Selecting previously unselected package libtheora0:amd64. +2024-03-23T17:22:06Z #8 53.32 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-03-23T17:22:06Z #8 53.32 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-03-23T17:22:06Z #8 53.40 Selecting previously unselected package libtwolame0:amd64. +2024-03-23T17:22:06Z #8 53.40 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-03-23T17:22:06Z #8 53.41 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-03-23T17:22:06Z #8 53.46 Selecting previously unselected package libvorbis0a:amd64. +2024-03-23T17:22:06Z #8 53.47 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-03-23T17:22:06Z #8 53.47 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-03-23T17:22:06Z #8 53.53 Selecting previously unselected package libvorbisenc2:amd64. +2024-03-23T17:22:06Z #8 53.54 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-03-23T17:22:06Z #8 53.54 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-03-23T17:22:06Z #8 53.60 Selecting previously unselected package libvpx6:amd64. +2024-03-23T17:22:06Z #8 53.60 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-03-23T17:22:06Z #8 53.61 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-03-23T17:22:06Z #8 53.79 Selecting previously unselected package libwavpack1:amd64. +2024-03-23T17:22:06Z #8 53.79 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-03-23T17:22:06Z #8 53.80 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-03-23T17:22:06Z #8 53.85 Selecting previously unselected package libwebpmux3:amd64. +2024-03-23T17:22:06Z #8 53.86 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-03-23T17:22:06Z #8 53.86 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-23T17:22:06Z #8 53.91 Selecting previously unselected package libx264-160:amd64. +2024-03-23T17:22:06Z #8 53.92 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-03-23T17:22:06Z #8 53.92 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-03-23T17:22:06Z #8 54.07 Selecting previously unselected package libnuma1:amd64. +2024-03-23T17:22:06Z #8 54.08 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-03-23T17:22:06Z #8 54.08 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-03-23T17:22:06Z #8 54.14 Selecting previously unselected package libx265-192:amd64. +2024-03-23T17:22:06Z #8 54.14 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-03-23T17:22:06Z #8 54.15 Unpacking libx265-192:amd64 (3.4-2) ... +2024-03-23T17:22:07Z #8 54.52 Selecting previously unselected package libxvidcore4:amd64. +2024-03-23T17:22:07Z #8 54.52 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-03-23T17:22:07Z #8 54.52 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-03-23T17:22:07Z #8 54.60 Selecting previously unselected package libzvbi-common. +2024-03-23T17:22:07Z #8 54.61 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-03-23T17:22:07Z #8 54.61 Unpacking libzvbi-common (0.2.35-18) ... +2024-03-23T17:22:07Z #8 54.67 Selecting previously unselected package libzvbi0:amd64. +2024-03-23T17:22:07Z #8 54.67 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-03-23T17:22:07Z #8 54.67 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-03-23T17:22:07Z #8 54.76 Selecting previously unselected package libavcodec58:amd64. +2024-03-23T17:22:07Z #8 54.77 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-03-23T17:22:07Z #8 54.77 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-23T17:22:08Z #8 55.62 Selecting previously unselected package libc-dev-bin. +2024-03-23T17:22:08Z #8 55.62 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... +2024-03-23T17:22:08Z #8 55.63 Unpacking libc-dev-bin (2.31-13+deb11u8) ... +2024-03-23T17:22:08Z #8 55.68 Selecting previously unselected package libxpm4:amd64. +2024-03-23T17:22:08Z #8 55.68 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-03-23T17:22:08Z #8 55.69 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-03-23T17:22:08Z #8 55.74 Selecting previously unselected package libgd3:amd64. +2024-03-23T17:22:08Z #8 55.74 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-03-23T17:22:08Z #8 55.74 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-03-23T17:22:08Z #8 55.80 Selecting previously unselected package libc-devtools. +2024-03-23T17:22:08Z #8 55.80 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... +2024-03-23T17:22:08Z #8 55.80 Unpacking libc-devtools (2.31-13+deb11u8) ... +2024-03-23T17:22:08Z #8 55.86 Selecting previously unselected package linux-libc-dev:amd64. +2024-03-23T17:22:08Z #8 55.86 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-03-23T17:22:08Z #8 55.87 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-03-23T17:22:09Z #8 56.22 Selecting previously unselected package libcrypt-dev:amd64. +2024-03-23T17:22:09Z #8 56.22 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-03-23T17:22:09Z #8 56.23 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-03-23T17:22:09Z #8 56.29 Selecting previously unselected package libtirpc-dev:amd64. +2024-03-23T17:22:09Z #8 56.29 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-03-23T17:22:09Z #8 56.30 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-03-23T17:22:09Z #8 56.36 Selecting previously unselected package libnsl-dev:amd64. +2024-03-23T17:22:09Z #8 56.36 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-03-23T17:22:09Z #8 56.37 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-03-23T17:22:09Z #8 56.41 Selecting previously unselected package libc6-dev:amd64. +2024-03-23T17:22:09Z #8 56.42 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... +2024-03-23T17:22:09Z #8 56.42 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-03-23T17:22:09Z #8 56.97 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-03-23T17:22:09Z #8 56.97 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-03-23T17:22:09Z #8 56.98 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-03-23T17:22:09Z #8 57.02 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-03-23T17:22:09Z #8 57.02 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-03-23T17:22:09Z #8 57.03 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-03-23T17:22:10Z #8 57.11 Selecting previously unselected package libdrm-radeon1:amd64. +2024-03-23T17:22:10Z #8 57.12 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-03-23T17:22:10Z #8 57.13 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-03-23T17:22:10Z #8 57.18 Selecting previously unselected package libelf1:amd64. +2024-03-23T17:22:10Z #8 57.18 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-03-23T17:22:10Z #8 57.19 Unpacking libelf1:amd64 (0.183-1) ... +2024-03-23T17:22:10Z #8 57.74 Selecting previously unselected package libfontenc1:amd64. +2024-03-23T17:22:10Z #8 57.74 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-03-23T17:22:10Z #8 57.75 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-03-23T17:22:10Z #8 57.79 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-03-23T17:22:10Z #8 57.79 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-03-23T17:22:10Z #8 57.80 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-03-23T17:22:10Z #8 57.85 Selecting previously unselected package libglapi-mesa:amd64. +2024-03-23T17:22:10Z #8 57.85 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-03-23T17:22:10Z #8 57.86 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-03-23T17:22:10Z #8 57.91 Selecting previously unselected package libz3-4:amd64. +2024-03-23T17:22:10Z #8 57.91 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-03-23T17:22:10Z #8 57.92 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-03-23T17:22:11Z #8 59.06 Selecting previously unselected package libllvm11:amd64. +2024-03-23T17:22:11Z #8 59.06 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-03-23T17:22:11Z #8 59.07 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-03-23T17:22:14Z #8 62.13 Selecting previously unselected package libsensors-config. +2024-03-23T17:22:14Z #8 62.14 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-03-23T17:22:14Z #8 62.14 Unpacking libsensors-config (1:3.6.0-7) ... +2024-03-23T17:22:14Z #8 62.19 Selecting previously unselected package libsensors5:amd64. +2024-03-23T17:22:15Z #8 62.19 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-03-23T17:22:15Z #8 62.24 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-03-23T17:22:15Z #8 62.29 Selecting previously unselected package libvulkan1:amd64. +2024-03-23T17:22:15Z #8 62.30 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-03-23T17:22:15Z #8 62.30 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-03-23T17:22:15Z #8 62.38 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-03-23T17:22:15Z #8 62.38 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-03-23T17:22:15Z #8 62.39 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-03-23T17:22:16Z #8 63.88 Selecting previously unselected package libglvnd0:amd64. +2024-03-23T17:22:16Z #8 63.89 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-03-23T17:22:16Z #8 63.89 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-03-23T17:22:16Z #8 63.94 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-03-23T17:22:16Z #8 63.95 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-03-23T17:22:16Z #8 63.95 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-03-23T17:22:16Z #8 64.00 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-03-23T17:22:16Z #8 64.01 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-03-23T17:22:16Z #8 64.01 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-03-23T17:22:16Z #8 64.06 Selecting previously unselected package libxcb-glx0:amd64. +2024-03-23T17:22:16Z #8 64.06 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-03-23T17:22:16Z #8 64.07 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-03-23T17:22:17Z #8 64.12 Selecting previously unselected package libxcb-present0:amd64. +2024-03-23T17:22:17Z #8 64.13 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-03-23T17:22:17Z #8 64.13 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-03-23T17:22:17Z #8 64.18 Selecting previously unselected package libxcb-sync1:amd64. +2024-03-23T17:22:17Z #8 64.19 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-03-23T17:22:17Z #8 64.19 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-03-23T17:22:17Z #8 64.24 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-03-23T17:22:17Z #8 64.25 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-03-23T17:22:17Z #8 64.25 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-03-23T17:22:17Z #8 64.30 Selecting previously unselected package libxshmfence1:amd64. +2024-03-23T17:22:17Z #8 64.30 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-03-23T17:22:17Z #8 64.31 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-03-23T17:22:17Z #8 64.35 Selecting previously unselected package libxxf86vm1:amd64. +2024-03-23T17:22:17Z #8 64.35 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-03-23T17:22:17Z #8 64.36 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-03-23T17:22:17Z #8 64.40 Selecting previously unselected package libglx-mesa0:amd64. +2024-03-23T17:22:17Z #8 64.40 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-03-23T17:22:17Z #8 64.40 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-03-23T17:22:17Z #8 64.46 Selecting previously unselected package libgtk-3-bin. +2024-03-23T17:22:17Z #8 64.47 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-03-23T17:22:17Z #8 64.48 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-03-23T17:22:17Z #8 64.53 Selecting previously unselected package librsvg2-common:amd64. +2024-03-23T17:22:17Z #8 64.54 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-03-23T17:22:17Z #8 64.54 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-23T17:22:17Z #8 64.58 Selecting previously unselected package libglx0:amd64. +2024-03-23T17:22:17Z #8 64.59 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-03-23T17:22:17Z #8 64.59 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-03-23T17:22:17Z #8 64.64 Selecting previously unselected package libgl1:amd64. +2024-03-23T17:22:17Z #8 64.64 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-03-23T17:22:17Z #8 64.65 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-03-23T17:22:17Z #8 64.70 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-03-23T17:22:17Z #8 64.71 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-03-23T17:22:17Z #8 64.71 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-03-23T17:22:17Z #8 64.77 Selecting previously unselected package libxt6:amd64. +2024-03-23T17:22:17Z #8 64.78 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-03-23T17:22:17Z #8 64.78 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-03-23T17:22:17Z #8 64.85 Selecting previously unselected package libxmu6:amd64. +2024-03-23T17:22:17Z #8 64.86 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-03-23T17:22:17Z #8 64.86 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-03-23T17:22:17Z #8 64.91 Selecting previously unselected package libxaw7:amd64. +2024-03-23T17:22:17Z #8 64.91 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-03-23T17:22:17Z #8 64.92 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-03-23T17:22:17Z #8 64.98 Selecting previously unselected package libxcb-randr0:amd64. +2024-03-23T17:22:17Z #8 64.99 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-03-23T17:22:17Z #8 64.99 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-03-23T17:22:17Z #8 65.05 Selecting previously unselected package libxcb-shape0:amd64. +2024-03-23T17:22:17Z #8 65.05 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-03-23T17:22:17Z #8 65.06 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-03-23T17:22:17Z #8 65.11 Selecting previously unselected package libxft2:amd64. +2024-03-23T17:22:17Z #8 65.12 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-03-23T17:22:17Z #8 65.12 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-03-23T17:22:17Z #8 65.17 Selecting previously unselected package libxkbfile1:amd64. +2024-03-23T17:22:17Z #8 65.18 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-03-23T17:22:17Z #8 65.18 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-03-23T17:22:18Z #8 65.23 Selecting previously unselected package libxmuu1:amd64. +2024-03-23T17:22:18Z #8 65.24 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-03-23T17:22:18Z #8 65.24 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-03-23T17:22:18Z #8 65.29 Selecting previously unselected package libxv1:amd64. +2024-03-23T17:22:18Z #8 65.29 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-03-23T17:22:18Z #8 65.29 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-03-23T17:22:18Z #8 65.34 Selecting previously unselected package libxxf86dga1:amd64. +2024-03-23T17:22:18Z #8 65.34 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-03-23T17:22:18Z #8 65.35 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-03-23T17:22:18Z #8 65.39 Selecting previously unselected package manpages-dev. +2024-03-23T17:22:18Z #8 65.40 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-03-23T17:22:18Z #8 65.40 Unpacking manpages-dev (5.10-1) ... +2024-03-23T17:22:18Z #8 65.82 Selecting previously unselected package mesa-va-drivers:amd64. +2024-03-23T17:22:18Z #8 65.82 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-03-23T17:22:18Z #8 65.83 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-03-23T17:22:19Z #8 66.27 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-03-23T17:22:19Z #8 66.27 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-03-23T17:22:19Z #8 66.27 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-03-23T17:22:19Z #8 66.74 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-03-23T17:22:19Z #8 66.75 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-03-23T17:22:19Z #8 66.75 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-03-23T17:22:20Z #8 67.43 Selecting previously unselected package patch. +2024-03-23T17:22:20Z #8 67.43 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-03-23T17:22:20Z #8 67.44 Unpacking patch (2.7.6-7) ... +2024-03-23T17:22:20Z #8 67.49 Selecting previously unselected package unzip. +2024-03-23T17:22:20Z #8 67.50 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-03-23T17:22:20Z #8 67.50 Unpacking unzip (6.0-26+deb11u1) ... +2024-03-23T17:22:20Z #8 67.56 Selecting previously unselected package va-driver-all:amd64. +2024-03-23T17:22:20Z #8 67.56 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-03-23T17:22:20Z #8 67.57 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-03-23T17:22:20Z #8 67.60 Selecting previously unselected package vdpau-driver-all:amd64. +2024-03-23T17:22:20Z #8 67.60 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-03-23T17:22:20Z #8 67.61 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-03-23T17:22:20Z #8 67.65 Selecting previously unselected package x11-utils. +2024-03-23T17:22:20Z #8 67.65 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-03-23T17:22:20Z #8 67.66 Unpacking x11-utils (7.7+5) ... +2024-03-23T17:22:20Z #8 67.81 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-03-23T17:22:20Z #8 67.83 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-03-23T17:22:20Z #8 67.84 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-03-23T17:22:20Z #8 67.86 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-03-23T17:22:20Z #8 67.87 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-03-23T17:22:20Z #8 67.88 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-03-23T17:22:20Z #8 67.90 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-03-23T17:22:20Z #8 67.91 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-03-23T17:22:20Z #8 67.93 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-03-23T17:22:20Z #8 67.94 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-03-23T17:22:20Z #8 67.95 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-03-23T17:22:20Z #8 67.97 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-03-23T17:22:20Z #8 67.98 Setting up libshine3:amd64 (3.1.1-2) ... +2024-03-23T17:22:20Z #8 67.99 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-03-23T17:22:20Z #8 68.00 Setting up hicolor-icon-theme (0.17-2) ... +2024-03-23T17:22:20Z #8 68.03 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-03-23T17:22:20Z #8 68.05 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-03-23T17:22:20Z #8 68.06 Setting up libicu67:amd64 (67.1-7) ... +2024-03-23T17:22:20Z #8 68.07 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-03-23T17:22:20Z #8 68.08 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-03-23T17:22:20Z #8 68.09 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-03-23T17:22:20Z #8 68.10 Setting up manpages (5.10-1) ... +2024-03-23T17:22:20Z #8 68.12 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-03-23T17:22:20Z #8 68.13 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-03-23T17:22:21Z #8 68.14 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-03-23T17:22:21Z #8 68.16 Setting up unzip (6.0-26+deb11u1) ... +2024-03-23T17:22:21Z #8 68.17 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-03-23T17:22:21Z #8 68.18 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-03-23T17:22:21Z #8 68.22 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-03-23T17:22:21Z #8 68.24 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-03-23T17:22:21Z #8 68.25 Setting up libsensors-config (1:3.6.0-7) ... +2024-03-23T17:22:21Z #8 68.27 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-03-23T17:22:21Z #8 68.29 Setting up libdeflate0:amd64 (1.7-1) ... +2024-03-23T17:22:21Z #8 68.30 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-03-23T17:22:21Z #8 68.31 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-03-23T17:22:21Z #8 68.32 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-23T17:22:21Z #8 68.33 First installation detected... +2024-03-23T17:22:21Z #8 68.33 Checking NSS setup... +2024-03-23T17:22:21Z #8 68.34 Setting up xkb-data (2.29-2) ... +2024-03-23T17:22:21Z #8 68.35 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-03-23T17:22:21Z #8 68.37 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-03-23T17:22:21Z #8 68.38 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-03-23T17:22:21Z #8 68.39 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-03-23T17:22:21Z #8 68.41 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-03-23T17:22:21Z #8 68.42 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-03-23T17:22:21Z #8 68.43 Setting up libasan6:amd64 (10.2.1-6) ... +2024-03-23T17:22:21Z #8 68.44 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-03-23T17:22:21Z #8 68.46 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-03-23T17:22:21Z #8 68.47 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-03-23T17:22:21Z #8 68.48 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-03-23T17:22:21Z #8 68.50 Setting up libasound2-data (1.2.4-1.1) ... +2024-03-23T17:22:21Z #8 68.51 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-03-23T17:22:21Z #8 68.53 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-03-23T17:22:21Z #8 68.54 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-03-23T17:22:21Z #8 68.55 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-03-23T17:22:21Z #8 68.56 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-03-23T17:22:21Z #8 68.58 Setting up libva2:amd64 (2.10.0-1) ... +2024-03-23T17:22:21Z #8 68.60 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-03-23T17:22:21Z #8 68.61 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-03-23T17:22:21Z #8 68.62 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-03-23T17:22:21Z #8 68.64 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-03-23T17:22:21Z #8 68.65 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-03-23T17:22:21Z #8 68.66 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-03-23T17:22:21Z #8 68.67 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-03-23T17:22:21Z #8 68.69 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-03-23T17:22:21Z #8 68.70 Setting up dbus (1.12.28-0+deb11u1) ... +2024-03-23T17:22:23Z #8 70.95 invoke-rc.d: could not determine current runlevel +2024-03-23T17:22:23Z #8 70.95 invoke-rc.d: policy-rc.d denied execution of start. +2024-03-23T17:22:23Z #8 70.96 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-03-23T17:22:23Z #8 70.97 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-03-23T17:22:23Z #8 70.98 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-03-23T17:22:23Z #8 70.99 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-03-23T17:22:23Z #8 71.01 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-03-23T17:22:23Z #8 71.02 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-03-23T17:22:23Z #8 71.03 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-03-23T17:22:23Z #8 71.05 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-03-23T17:22:23Z #8 71.06 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-03-23T17:22:24Z #8 71.40 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-03-23T17:22:24Z #8 71.41 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-03-23T17:22:24Z #8 71.41 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-03-23T17:22:24Z #8 71.43 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-03-23T17:22:24Z #8 71.44 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-03-23T17:22:24Z #8 71.45 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-03-23T17:22:24Z #8 71.47 Setting up patch (2.7.6-7) ... +2024-03-23T17:22:24Z #8 71.48 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-23T17:22:24Z #8 71.50 Setting up fonts-dejavu-core (2.37-2) ... +2024-03-23T17:22:24Z #8 71.60 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-03-23T17:22:24Z #8 71.61 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-03-23T17:22:24Z #8 71.62 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-03-23T17:22:24Z #8 71.64 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-03-23T17:22:24Z #8 71.65 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-03-23T17:22:24Z #8 71.66 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-03-23T17:22:24Z #8 71.68 Setting up libatk1.0-data (2.36.0-2) ... +2024-03-23T17:22:24Z #8 71.69 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-03-23T17:22:24Z #8 71.71 Setting up alsa-topology-conf (1.2.4-1) ... +2024-03-23T17:22:24Z #8 71.72 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-03-23T17:22:24Z #8 71.74 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-03-23T17:22:24Z #8 71.75 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-03-23T17:22:24Z #8 71.76 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-03-23T17:22:24Z #8 71.78 Setting up libvdpau1:amd64 (1.4-3) ... +2024-03-23T17:22:24Z #8 71.80 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-03-23T17:22:24Z #8 71.81 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-03-23T17:22:24Z #8 71.82 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-03-23T17:22:24Z #8 71.83 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-03-23T17:22:24Z #8 71.85 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-03-23T17:22:24Z #8 72.07 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-03-23T17:22:24Z #8 72.09 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-03-23T17:22:24Z #8 72.10 Setting up libthai-data (0.1.28-3) ... +2024-03-23T17:22:24Z #8 72.11 Setting up fonts-humor-sans (1.0-4) ... +2024-03-23T17:22:24Z #8 72.13 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-03-23T17:22:24Z #8 72.14 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-03-23T17:22:24Z #8 72.15 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-03-23T17:22:24Z #8 72.17 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-03-23T17:22:25Z #8 72.18 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-03-23T17:22:25Z #8 72.19 Setting up glib-networking-common (2.66.0-2) ... +2024-03-23T17:22:25Z #8 72.21 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-03-23T17:22:25Z #8 72.22 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-03-23T17:22:25Z #8 72.23 Setting up libisl23:amd64 (0.23-1) ... +2024-03-23T17:22:25Z #8 72.24 Setting up libc-dev-bin (2.31-13+deb11u8) ... +2024-03-23T17:22:25Z #8 72.25 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-03-23T17:22:25Z #8 72.27 Setting up libdrm-common (2.4.104-1) ... +2024-03-23T17:22:25Z #8 72.28 Setting up libelf1:amd64 (0.183-1) ... +2024-03-23T17:22:25Z #8 72.30 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-03-23T17:22:25Z #8 72.31 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-03-23T17:22:25Z #8 72.32 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-03-23T17:22:25Z #8 72.33 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-03-23T17:22:25Z #8 72.35 Setting up libzvbi-common (0.2.35-18) ... +2024-03-23T17:22:25Z #8 72.36 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-03-23T17:22:25Z #8 72.37 Setting up cpp-10 (10.2.1-6) ... +2024-03-23T17:22:25Z #8 72.38 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-03-23T17:22:25Z #8 72.40 Setting up libitm1:amd64 (10.2.1-6) ... +2024-03-23T17:22:25Z #8 72.41 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-03-23T17:22:25Z #8 72.43 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-03-23T17:22:25Z #8 72.44 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-03-23T17:22:25Z #8 72.46 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-03-23T17:22:25Z #8 72.47 Setting up libctf0:amd64 (2.35.2-2) ... +2024-03-23T17:22:25Z #8 72.50 Setting up glib-networking-services (2.66.0-2) ... +2024-03-23T17:22:25Z #8 72.52 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-03-23T17:22:25Z #8 72.53 Setting up manpages-dev (5.10-1) ... +2024-03-23T17:22:25Z #8 72.55 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-03-23T17:22:25Z #8 72.56 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-03-23T17:22:25Z #8 72.58 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-03-23T17:22:25Z #8 72.59 Setting up fontconfig-config (2.13.1-4.2) ... +2024-03-23T17:22:25Z #8 72.96 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-03-23T17:22:25Z #8 72.98 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-03-23T17:22:25Z #8 72.99 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-03-23T17:22:25Z #8 73.01 Setting up libx265-192:amd64 (3.4-2) ... +2024-03-23T17:22:25Z #8 73.02 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-03-23T17:22:25Z #8 73.03 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-03-23T17:22:25Z #8 73.05 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-03-23T17:22:25Z #8 73.06 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-03-23T17:22:25Z #8 73.08 Setting up libthai0:amd64 (0.1.28-3) ... +2024-03-23T17:22:25Z #8 73.09 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-03-23T17:22:25Z #8 73.11 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-03-23T17:22:25Z #8 73.12 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-03-23T17:22:25Z #8 73.13 Setting up shared-mime-info (2.0-1) ... +2024-03-23T17:22:28Z #8 75.72 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-03-23T17:22:28Z #8 75.73 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-03-23T17:22:28Z #8 75.74 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-03-23T17:22:28Z #8 75.77 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-03-23T17:22:28Z #8 75.78 Setting up cpp (4:10.2.1-1) ... +2024-03-23T17:22:28Z #8 75.80 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-03-23T17:22:28Z #8 75.82 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-03-23T17:22:28Z #8 75.83 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-23T17:22:28Z #8 75.87 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-03-23T17:22:29Z #8 76.26 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-03-23T17:22:29Z #8 76.93 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-03-23T17:22:30Z #8 77.65 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-03-23T17:22:30Z #8 77.67 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-03-23T17:22:30Z #8 77.68 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-03-23T17:22:30Z #8 77.69 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-03-23T17:22:30Z #8 77.70 Setting up fontconfig (2.13.1-4.2) ... +2024-03-23T17:22:32Z #8 77.71 Regenerating fonts cache... done. +2024-03-23T17:22:32Z #8 79.74 Setting up libxft2:amd64 (2.3.2-2) ... +2024-03-23T17:22:32Z #8 79.75 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-03-23T17:22:32Z #8 79.76 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-03-23T17:22:32Z #8 79.78 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-03-23T17:22:32Z #8 79.80 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-03-23T17:22:32Z #8 79.81 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-03-23T17:22:32Z #8 79.83 Setting up dconf-service (0.38.0-2) ... +2024-03-23T17:22:32Z #8 79.84 Setting up binutils (2.35.2-2) ... +2024-03-23T17:22:32Z #8 79.85 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-03-23T17:22:32Z #8 79.87 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-23T17:22:32Z #8 79.88 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-03-23T17:22:32Z #8 79.97 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-03-23T17:22:32Z #8 79.98 Setting up libgd3:amd64 (2.3.0-2) ... +2024-03-23T17:22:32Z #8 79.99 Setting up gcc-10 (10.2.1-6) ... +2024-03-23T17:22:32Z #8 80.01 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-03-23T17:22:32Z #8 80.02 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-03-23T17:22:32Z #8 80.04 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-03-23T17:22:32Z #8 80.06 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-03-23T17:22:32Z #8 80.07 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-03-23T17:22:32Z #8 80.09 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-03-23T17:22:32Z #8 80.11 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-03-23T17:22:32Z #8 80.13 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-03-23T17:22:32Z #8 80.14 Setting up libc-devtools (2.31-13+deb11u8) ... +2024-03-23T17:22:32Z #8 80.16 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-03-23T17:22:32Z #8 80.17 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-03-23T17:22:32Z #8 80.19 Setting up libglx0:amd64 (1.3.2-1) ... +2024-03-23T17:22:32Z #8 80.20 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-03-23T17:22:33Z #8 80.22 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-23T17:22:33Z #8 80.24 Setting up gcc (4:10.2.1-1) ... +2024-03-23T17:22:33Z #8 80.27 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-23T17:22:33Z #8 80.28 Setting up libgl1:amd64 (1.3.2-1) ... +2024-03-23T17:22:33Z #8 80.30 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-03-23T17:22:33Z #8 80.31 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-03-23T17:22:33Z #8 80.34 Setting up x11-utils (7.7+5) ... +2024-03-23T17:22:33Z #8 80.41 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-03-23T17:22:33Z #8 80.42 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-03-23T17:22:33Z #8 80.45 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-03-23T17:22:33Z #8 80.47 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-03-23T17:22:33Z #8 80.48 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-03-23T17:22:33Z #8 80.50 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-03-23T17:22:33Z #8 80.55 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-03-23T17:22:33Z #8 80.59 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-03-23T17:22:33Z #8 80.61 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-03-23T17:22:33Z #8 80.64 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-03-23T17:22:33Z #8 80.66 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-03-23T17:22:33Z #8 80.68 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-03-23T17:22:33Z #8 80.72 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-03-23T17:22:33Z #8 80.74 Setting up firefox-esr (115.9.0esr-1~deb11u1) ... +2024-03-23T17:22:33Z #8 80.75 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-03-23T17:22:33Z #8 80.75 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-03-23T17:22:33Z #8 80.78 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-03-23T17:22:33Z #8 80.79 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-03-23T17:22:33Z #8 80.80 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-03-23T17:22:33Z #8 80.85 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-03-23T17:22:38Z #8 DONE 85.9s +2024-03-23T17:22:38Z +2024-03-23T17:22:38Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-03-23T17:23:25Z #9 DONE 46.9s +2024-03-23T17:23:25Z +2024-03-23T17:23:25Z #10 [ 5/10] COPY environment.yml /environment.yml +2024-03-23T17:23:25Z #10 DONE 0.1s +2024-03-23T17:23:25Z +2024-03-23T17:23:25Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-03-23T17:25:58Z #11 152.9 Transaction +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 Prefix: /opt/conda/envs/birdy +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 Updating specs: +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 - xclim +2024-03-23T17:25:58Z #11 152.9 - ravenpy +2024-03-23T17:25:58Z #11 152.9 - python=3.10 +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 Package Version Build Channel Size +2024-03-23T17:25:58Z #11 152.9 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-23T17:25:58Z #11 152.9 Install: +2024-03-23T17:25:58Z #11 152.9 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-03-23T17:25:58Z #11 152.9 + python_abi 3.10 4_cp310 conda-forge 6kB +2024-03-23T17:25:58Z #11 152.9 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB +2024-03-23T17:25:58Z #11 152.9 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB +2024-03-23T17:25:58Z #11 152.9 + libboost-headers 1.84.0 ha770c72_1 conda-forge 14MB +2024-03-23T17:25:58Z #11 152.9 + mpi 1.0 openmpi conda-forge 4kB +2024-03-23T17:25:58Z #11 152.9 + libgomp 13.2.0 h807b86a_5 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-03-23T17:25:58Z #11 152.9 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + lzo 2.10 h516909a_1000 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-03-23T17:25:58Z #11 152.9 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-03-23T17:25:58Z #11 152.9 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-03-23T17:25:58Z #11 152.9 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-03-23T17:25:58Z #11 152.9 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-03-23T17:25:58Z #11 152.9 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-03-23T17:25:58Z #11 152.9 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-03-23T17:25:58Z #11 152.9 + libev 4.33 hd590300_2 conda-forge 113kB +2024-03-23T17:25:58Z #11 152.9 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-03-23T17:25:58Z #11 152.9 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-03-23T17:25:58Z #11 152.9 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB +2024-03-23T17:25:58Z #11 152.9 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB +2024-03-23T17:25:58Z #11 152.9 + libaec 1.1.3 h59595ed_0 conda-forge 35kB +2024-03-23T17:25:58Z #11 152.9 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-03-23T17:25:58Z #11 152.9 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-03-23T17:25:58Z #11 152.9 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-03-23T17:25:58Z #11 152.9 + gettext 0.21.1 h27087fc_0 conda-forge 4MB +2024-03-23T17:25:58Z #11 152.9 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB +2024-03-23T17:25:58Z #11 152.9 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-03-23T17:25:58Z #11 152.9 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-03-23T17:25:58Z #11 152.9 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-03-23T17:25:58Z #11 152.9 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-03-23T17:25:58Z #11 152.9 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-03-23T17:25:58Z #11 152.9 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-03-23T17:25:58Z #11 152.9 + icu 73.2 h59595ed_0 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-03-23T17:25:58Z #11 152.9 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB +2024-03-23T17:25:58Z #11 152.9 + libdeflate 1.19 hd590300_0 conda-forge 67kB +2024-03-23T17:25:58Z #11 152.9 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-03-23T17:25:58Z #11 152.9 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-03-23T17:25:58Z #11 152.9 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-03-23T17:25:58Z #11 152.9 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-03-23T17:25:58Z #11 152.9 + openssl 3.2.1 hd590300_1 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-03-23T17:25:58Z #11 152.9 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB +2024-03-23T17:25:58Z #11 152.9 + aws-c-common 0.9.14 hd590300_0 conda-forge 226kB +2024-03-23T17:25:58Z #11 152.9 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-03-23T17:25:58Z #11 152.9 + c-ares 1.27.0 hd590300_0 conda-forge 164kB +2024-03-23T17:25:58Z #11 152.9 + snappy 1.1.10 h9fff704_0 conda-forge 39kB +2024-03-23T17:25:58Z #11 152.9 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-03-23T17:25:58Z #11 152.9 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB +2024-03-23T17:25:58Z #11 152.9 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB +2024-03-23T17:25:58Z #11 152.9 + libnsl 2.0.1 hd590300_0 conda-forge 33kB +2024-03-23T17:25:58Z #11 152.9 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-03-23T17:25:58Z #11 152.9 + rdma-core 50.0 hd3aeb46_1 conda-forge 5MB +2024-03-23T17:25:58Z #11 152.9 + expat 2.6.2 h59595ed_0 conda-forge 138kB +2024-03-23T17:25:58Z #11 152.9 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-03-23T17:25:58Z #11 152.9 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB +2024-03-23T17:25:58Z #11 152.9 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-03-23T17:25:58Z #11 152.9 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-03-23T17:25:58Z #11 152.9 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-03-23T17:25:58Z #11 152.9 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-03-23T17:25:58Z #11 152.9 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-03-23T17:25:58Z #11 152.9 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB +2024-03-23T17:25:58Z #11 152.9 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + pcre2 10.42 hcad00b1_0 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2024-03-23T17:25:58Z #11 152.9 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB +2024-03-23T17:25:58Z #11 152.9 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-03-23T17:25:58Z #11 152.9 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-03-23T17:25:58Z #11 152.9 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-03-23T17:25:58Z #11 152.9 + s2n 1.4.7 h06160fa_0 conda-forge 339kB +2024-03-23T17:25:58Z #11 152.9 + libssh2 1.11.0 h0841786_0 conda-forge 271kB +2024-03-23T17:25:58Z #11 152.9 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-03-23T17:25:58Z #11 152.9 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-03-23T17:25:58Z #11 152.9 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-03-23T17:25:58Z #11 152.9 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB +2024-03-23T17:25:58Z #11 152.9 + aws-c-compression 0.2.18 h4466546_2 conda-forge 19kB +2024-03-23T17:25:58Z #11 152.9 + aws-c-sdkutils 0.1.15 h4466546_2 conda-forge 55kB +2024-03-23T17:25:58Z #11 152.9 + aws-c-cal 0.6.10 ha9bf9b1_2 conda-forge 55kB +2024-03-23T17:25:58Z #11 152.9 + aws-checksums 0.1.18 h4466546_2 conda-forge 50kB +2024-03-23T17:25:58Z #11 152.9 + libnghttp2 1.58.0 h47da74e_1 conda-forge 632kB +2024-03-23T17:25:58Z #11 152.9 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-03-23T17:25:58Z #11 152.9 + readline 8.2 h8228510_1 conda-forge 281kB +2024-03-23T17:25:58Z #11 152.9 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-03-23T17:25:58Z #11 152.9 + libxml2 2.12.6 h232c23b_0 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + ucx 1.15.0 h11edf95_7 conda-forge 7MB +2024-03-23T17:25:58Z #11 152.9 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB +2024-03-23T17:25:58Z #11 152.9 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB +2024-03-23T17:25:58Z #11 152.9 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-03-23T17:25:58Z #11 152.9 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB +2024-03-23T17:25:58Z #11 152.9 + libglib 2.78.4 h783c2da_0 conda-forge 3MB +2024-03-23T17:25:58Z #11 152.9 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-03-23T17:25:58Z #11 152.9 + libtiff 4.6.0 ha9c0a0a_2 conda-forge 283kB +2024-03-23T17:25:58Z #11 152.9 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB +2024-03-23T17:25:58Z #11 152.9 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-03-23T17:25:58Z #11 152.9 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-03-23T17:25:58Z #11 152.9 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-03-23T17:25:58Z #11 152.9 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-03-23T17:25:58Z #11 152.9 + orc 2.0.0 h1e5e2c1_0 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + aws-c-io 0.14.6 h6b388c4_1 conda-forge 158kB +2024-03-23T17:25:58Z #11 152.9 + krb5 1.21.2 h659d440_0 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB +2024-03-23T17:25:58Z #11 152.9 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-03-23T17:25:58Z #11 152.9 + tiledb 2.18.2 h99f50a1_1 conda-forge 6MB +2024-03-23T17:25:58Z #11 152.9 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-03-23T17:25:58Z #11 152.9 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-03-23T17:25:58Z #11 152.9 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-03-23T17:25:58Z #11 152.9 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-23T17:25:58Z #11 152.9 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-03-23T17:25:58Z #11 152.9 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-03-23T17:25:58Z #11 152.9 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-03-23T17:25:58Z #11 152.9 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-03-23T17:25:58Z #11 152.9 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-03-23T17:25:58Z #11 152.9 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB +2024-03-23T17:25:58Z #11 152.9 + aws-c-http 0.8.1 hbfc29b2_7 conda-forge 194kB +2024-03-23T17:25:58Z #11 152.9 + aws-c-event-stream 0.4.2 he635cd5_6 conda-forge 54kB +2024-03-23T17:25:58Z #11 152.9 + libpq 16.2 h33b98f1_1 conda-forge 3MB +2024-03-23T17:25:58Z #11 152.9 + libcurl 8.6.0 hca28451_0 conda-forge 391kB +2024-03-23T17:25:58Z #11 152.9 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-23T17:25:58Z #11 152.9 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB +2024-03-23T17:25:58Z #11 152.9 + aws-c-mqtt 0.10.3 hffff1cc_2 conda-forge 163kB +2024-03-23T17:25:58Z #11 152.9 + aws-c-auth 0.7.16 haed3651_8 conda-forge 103kB +2024-03-23T17:25:58Z #11 152.9 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-03-23T17:25:58Z #11 152.9 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB +2024-03-23T17:25:58Z #11 152.9 + proj 9.3.1 h1d62c97_0 conda-forge 3MB +2024-03-23T17:25:58Z #11 152.9 + cfitsio 4.3.1 hbdc6101_0 conda-forge 875kB +2024-03-23T17:25:58Z #11 152.9 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + aws-c-s3 0.5.3 h4893938_0 conda-forge 106kB +2024-03-23T17:25:58Z #11 152.9 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-03-23T17:25:58Z #11 152.9 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-03-23T17:25:58Z #11 152.9 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB +2024-03-23T17:25:58Z #11 152.9 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB +2024-03-23T17:25:58Z #11 152.9 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB +2024-03-23T17:25:58Z #11 152.9 + aws-crt-cpp 0.26.4 h335f1a1_1 conda-forge 337kB +2024-03-23T17:25:58Z #11 152.9 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-03-23T17:25:58Z #11 152.9 + aws-sdk-cpp 1.11.267 hb1af6a8_4 conda-forge 4MB +2024-03-23T17:25:58Z #11 152.9 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB +2024-03-23T17:25:58Z #11 152.9 + libarrow 15.0.2 hb86450c_1_cpu conda-forge 8MB +2024-03-23T17:25:58Z #11 152.9 + libparquet 15.0.2 h352af49_1_cpu conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + libarrow-gandiva 15.0.2 hb016d2e_1_cpu conda-forge 897kB +2024-03-23T17:25:58Z #11 152.9 + libarrow-flight 15.0.2 hc6145d9_1_cpu conda-forge 503kB +2024-03-23T17:25:58Z #11 152.9 + libarrow-acero 15.0.2 h59595ed_1_cpu conda-forge 597kB +2024-03-23T17:25:58Z #11 152.9 + libarrow-flight-sql 15.0.2 h757c851_1_cpu conda-forge 194kB +2024-03-23T17:25:58Z #11 152.9 + libarrow-dataset 15.0.2 h59595ed_1_cpu conda-forge 584kB +2024-03-23T17:25:58Z #11 152.9 + libarrow-substrait 15.0.2 h757c851_1_cpu conda-forge 519kB +2024-03-23T17:25:58Z #11 152.9 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-03-23T17:25:58Z #11 152.9 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-03-23T17:25:58Z #11 152.9 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-03-23T17:25:58Z #11 152.9 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB +2024-03-23T17:25:58Z #11 152.9 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-03-23T17:25:58Z #11 152.9 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-03-23T17:25:58Z #11 152.9 + fonts-conda-forge 1 0 conda-forge 4kB +2024-03-23T17:25:58Z #11 152.9 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-03-23T17:25:58Z #11 152.9 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB +2024-03-23T17:25:58Z #11 152.9 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB +2024-03-23T17:25:58Z #11 152.9 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-03-23T17:25:58Z #11 152.9 + poppler 23.12.0 h590f24d_0 conda-forge 2MB +2024-03-23T17:25:58Z #11 152.9 + libgdal 3.8.1 hed8bd54_4 conda-forge 11MB +2024-03-23T17:25:58Z #11 152.9 + wheel 0.43.0 pyhd8ed1ab_0 conda-forge 58kB +2024-03-23T17:25:58Z #11 152.9 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB +2024-03-23T17:25:58Z #11 152.9 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB +2024-03-23T17:25:58Z #11 152.9 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-03-23T17:25:58Z #11 152.9 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB +2024-03-23T17:25:58Z #11 152.9 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-03-23T17:25:58Z #11 152.9 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-03-23T17:25:58Z #11 152.9 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-03-23T17:25:58Z #11 152.9 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-03-23T17:25:58Z #11 152.9 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-03-23T17:25:58Z #11 152.9 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-03-23T17:25:58Z #11 152.9 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-03-23T17:25:58Z #11 152.9 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-03-23T17:25:58Z #11 152.9 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-03-23T17:25:58Z #11 152.9 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-03-23T17:25:58Z #11 152.9 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-03-23T17:25:58Z #11 152.9 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-03-23T17:25:58Z #11 152.9 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB +2024-03-23T17:25:58Z #11 152.9 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB +2024-03-23T17:25:58Z #11 152.9 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB +2024-03-23T17:25:58Z #11 152.9 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-03-23T17:25:58Z #11 152.9 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-03-23T17:25:58Z #11 152.9 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-03-23T17:25:58Z #11 152.9 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-03-23T17:25:58Z #11 152.9 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB +2024-03-23T17:25:58Z #11 152.9 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-03-23T17:25:58Z #11 152.9 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-03-23T17:25:58Z #11 152.9 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-03-23T17:25:58Z #11 152.9 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB +2024-03-23T17:25:58Z #11 152.9 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB +2024-03-23T17:25:58Z #11 152.9 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-03-23T17:25:58Z #11 152.9 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-03-23T17:25:58Z #11 152.9 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB +2024-03-23T17:25:58Z #11 152.9 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-03-23T17:25:58Z #11 152.9 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-03-23T17:25:58Z #11 152.9 + boltons 23.1.1 pyhd8ed1ab_0 conda-forge 304kB +2024-03-23T17:25:58Z #11 152.9 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-03-23T17:25:58Z #11 152.9 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB +2024-03-23T17:25:58Z #11 152.9 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-03-23T17:25:58Z #11 152.9 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-03-23T17:25:58Z #11 152.9 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB +2024-03-23T17:25:58Z #11 152.9 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB +2024-03-23T17:25:58Z #11 152.9 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB +2024-03-23T17:25:58Z #11 152.9 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-03-23T17:25:58Z #11 152.9 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-03-23T17:25:58Z #11 152.9 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-03-23T17:25:58Z #11 152.9 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-03-23T17:25:58Z #11 152.9 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB +2024-03-23T17:25:58Z #11 152.9 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB +2024-03-23T17:25:58Z #11 152.9 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB +2024-03-23T17:25:58Z #11 152.9 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB +2024-03-23T17:25:58Z #11 152.9 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB +2024-03-23T17:25:58Z #11 152.9 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB +2024-03-23T17:25:58Z #11 152.9 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB +2024-03-23T17:25:58Z #11 152.9 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB +2024-03-23T17:25:58Z #11 152.9 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB +2024-03-23T17:25:58Z #11 152.9 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB +2024-03-23T17:25:58Z #11 152.9 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB +2024-03-23T17:25:58Z #11 152.9 + tornado 6.4 py310h2372a71_0 conda-forge 651kB +2024-03-23T17:25:58Z #11 152.9 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB +2024-03-23T17:25:58Z #11 152.9 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB +2024-03-23T17:25:58Z #11 152.9 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB +2024-03-23T17:25:58Z #11 152.9 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB +2024-03-23T17:25:58Z #11 152.9 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB +2024-03-23T17:25:58Z #11 152.9 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB +2024-03-23T17:25:58Z #11 152.9 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB +2024-03-23T17:25:58Z #11 152.9 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB +2024-03-23T17:25:58Z #11 152.9 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB +2024-03-23T17:25:58Z #11 152.9 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB +2024-03-23T17:25:58Z #11 152.9 + fonttools 4.50.0 py310h2372a71_0 conda-forge 2MB +2024-03-23T17:25:58Z #11 152.9 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB +2024-03-23T17:25:58Z #11 152.9 + h5py 3.10.0 nompi_py310h65828d5_101 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB +2024-03-23T17:25:58Z #11 152.9 + gdal 3.8.1 py310haaa150b_4 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB +2024-03-23T17:25:58Z #11 152.9 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB +2024-03-23T17:25:58Z #11 152.9 + pyarrow 15.0.2 py310hf9e7431_1_cpu conda-forge 4MB +2024-03-23T17:25:58Z #11 152.9 + numba 0.59.0 py310h7dc5dd1_1 conda-forge 4MB +2024-03-23T17:25:58Z #11 152.9 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB +2024-03-23T17:25:58Z #11 152.9 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB +2024-03-23T17:25:58Z #11 152.9 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB +2024-03-23T17:25:58Z #11 152.9 + fiona 1.9.5 py310h0a1e91f_2 conda-forge 958kB +2024-03-23T17:25:58Z #11 152.9 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB +2024-03-23T17:25:58Z #11 152.9 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB +2024-03-23T17:25:58Z #11 152.9 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB +2024-03-23T17:25:58Z #11 152.9 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-03-23T17:25:58Z #11 152.9 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-03-23T17:25:58Z #11 152.9 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB +2024-03-23T17:25:58Z #11 152.9 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-03-23T17:25:58Z #11 152.9 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-03-23T17:25:58Z #11 152.9 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-03-23T17:25:58Z #11 152.9 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-03-23T17:25:58Z #11 152.9 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB +2024-03-23T17:25:58Z #11 152.9 + dask-core 2024.3.1 pyhd8ed1ab_0 conda-forge 880kB +2024-03-23T17:25:58Z #11 152.9 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-03-23T17:25:58Z #11 152.9 + pydantic 2.6.4 pyhd8ed1ab_0 conda-forge 272kB +2024-03-23T17:25:58Z #11 152.9 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB +2024-03-23T17:25:58Z #11 152.9 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB +2024-03-23T17:25:58Z #11 152.9 + xarray 2024.2.0 pyhd8ed1ab_0 conda-forge 742kB +2024-03-23T17:25:58Z #11 152.9 + properscoring 0.1 py_0 conda-forge 22kB +2024-03-23T17:25:58Z #11 152.9 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-03-23T17:25:58Z #11 152.9 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-03-23T17:25:58Z #11 152.9 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-03-23T17:25:58Z #11 152.9 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-03-23T17:25:58Z #11 152.9 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB +2024-03-23T17:25:58Z #11 152.9 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB +2024-03-23T17:25:58Z #11 152.9 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-03-23T17:25:58Z #11 152.9 + dask-expr 1.0.4 pyhd8ed1ab_0 conda-forge 141kB +2024-03-23T17:25:58Z #11 152.9 + distributed 2024.3.1 pyhd8ed1ab_0 conda-forge 795kB +2024-03-23T17:25:58Z #11 152.9 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-03-23T17:25:58Z #11 152.9 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-03-23T17:25:58Z #11 152.9 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-03-23T17:25:58Z #11 152.9 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-03-23T17:25:58Z #11 152.9 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-03-23T17:25:58Z #11 152.9 + dask 2024.3.1 pyhd8ed1ab_0 conda-forge 7kB +2024-03-23T17:25:58Z #11 152.9 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB +2024-03-23T17:25:58Z #11 152.9 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB +2024-03-23T17:25:58Z #11 152.9 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-03-23T17:25:58Z #11 152.9 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-03-23T17:25:58Z #11 152.9 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB +2024-03-23T17:25:58Z #11 152.9 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB +2024-03-23T17:25:58Z #11 152.9 + rioxarray 0.15.1 pyhd8ed1ab_0 conda-forge 48kB +2024-03-23T17:25:58Z #11 152.9 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB +2024-03-23T17:25:58Z #11 152.9 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-03-23T17:25:58Z #11 152.9 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB +2024-03-23T17:25:58Z #11 152.9 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-03-23T17:25:58Z #11 152.9 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 Summary: +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 Install: 295 packages +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 Total download: 446MB +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:25:58Z #11 152.9 +2024-03-23T17:27:34Z #11 249.2 +2024-03-23T17:27:34Z #11 249.2 Looking for: ['xclim', 'ravenpy', 'python=3.10'] +2024-03-23T17:27:34Z #11 249.2 +2024-03-23T17:27:34Z #11 249.2 +2024-03-23T17:27:34Z #11 249.2 Downloading and Extracting Packages: ...working... done +2024-03-23T17:27:39Z #11 249.2 Preparing transaction: ...working... done +2024-03-23T17:27:53Z #11 253.4 Verifying transaction: ...working... done +2024-03-23T17:28:27Z #11 267.6 Executing transaction: ...working... +2024-03-23T17:28:27Z #11 301.9 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-03-23T17:28:27Z #11 301.9 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-03-23T17:28:27Z #11 301.9 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-03-23T17:28:27Z #11 301.9 mpiexec --mca opal_cuda_support 1 ... +2024-03-23T17:28:27Z #11 301.9 +2024-03-23T17:28:27Z #11 301.9 In addition, the UCX support is also built but disabled by default. +2024-03-23T17:28:27Z #11 301.9 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-03-23T17:28:27Z #11 301.9 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-03-23T17:28:27Z #11 301.9 Equivalently, you can set the MCA parameters in the command line: +2024-03-23T17:28:27Z #11 301.9 mpiexec --mca pml ucx --mca osc ucx ... +2024-03-23T17:28:27Z #11 301.9 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-03-23T17:28:27Z #11 301.9 Please consult UCX's documentation for detail. +2024-03-23T17:28:27Z #11 301.9 +2024-03-23T17:28:27Z #11 301.9 +2024-03-23T17:28:27Z #11 301.9 done +2024-03-23T17:28:27Z #11 302.0 +2024-03-23T17:28:27Z #11 302.0 To activate this environment, use +2024-03-23T17:28:27Z #11 302.0 +2024-03-23T17:28:27Z #11 302.0 $ mamba activate birdy +2024-03-23T17:28:27Z #11 302.0 +2024-03-23T17:28:27Z #11 302.0 To deactivate an active environment, use +2024-03-23T17:28:27Z #11 302.0 +2024-03-23T17:28:27Z #11 302.0 $ mamba deactivate +2024-03-23T17:28:27Z #11 302.0 +2024-03-23T17:28:31Z #11 305.5 Channels: +2024-03-23T17:28:31Z #11 305.5 - conda-forge +2024-03-23T17:28:31Z #11 305.5 - cdat +2024-03-23T17:28:31Z #11 305.5 - bokeh +2024-03-23T17:28:31Z #11 305.5 - pyviz/label/dev +2024-03-23T17:28:31Z #11 305.5 - defaults +2024-03-23T17:28:31Z #11 305.5 Platform: linux-64 +2024-03-23T17:29:07Z #11 305.5 Collecting package metadata (repodata.json): ...working... done +2024-03-23T17:30:11Z #11 342.0 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.0 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-03-23T17:40:47Z #11 1041.3 done +2024-03-23T17:42:27Z #11 1141.5 +2024-03-23T17:42:27Z #11 1141.5 Downloading and Extracting Packages: ...working... done +2024-03-23T17:42:34Z #11 1141.5 Preparing transaction: ...working... done +2024-03-23T17:42:56Z #11 1148.3 Verifying transaction: ...working... done +2024-03-23T17:43:50Z #11 1170.5 Executing transaction: ...working... +2024-03-23T17:43:50Z #11 1225.1 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-03-23T17:43:50Z #11 1225.1 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-03-23T17:43:50Z #11 1225.1 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-03-23T17:43:50Z #11 1225.1 mpiexec --mca opal_cuda_support 1 ... +2024-03-23T17:43:50Z #11 1225.1 +2024-03-23T17:43:50Z #11 1225.1 In addition, the UCX support is also built but disabled by default. +2024-03-23T17:43:50Z #11 1225.1 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-03-23T17:43:50Z #11 1225.1 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-03-23T17:43:50Z #11 1225.1 Equivalently, you can set the MCA parameters in the command line: +2024-03-23T17:43:50Z #11 1225.1 mpiexec --mca pml ucx --mca osc ucx ... +2024-03-23T17:43:50Z #11 1225.1 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-03-23T17:43:50Z #11 1225.1 Please consult UCX's documentation for detail. +2024-03-23T17:43:50Z #11 1225.1 +2024-03-23T17:43:50Z #11 1225.1 +2024-03-23T17:43:50Z #11 1225.1 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-03-23T17:43:50Z #11 1225.1 given by the platformdirs library. To remove this warning and +2024-03-23T17:43:50Z #11 1225.1 see the appropriate new directories, set the environment variable +2024-03-23T17:43:50Z #11 1225.1 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-03-23T17:43:50Z #11 1225.1 The use of platformdirs will be the default in `jupyter_core` v6 +2024-03-23T17:43:50Z #11 1225.1 from . import paths +2024-03-23T17:43:50Z #11 1225.1 Enabling: jupyterlab_git +2024-03-23T17:43:50Z #11 1225.1 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-23T17:43:50Z #11 1225.1 - Validating... +2024-03-23T17:43:50Z #11 1225.1 jupyterlab_git OK +2024-03-23T17:43:50Z #11 1225.1 +2024-03-23T17:43:50Z #11 1225.1 done +2024-03-23T17:44:37Z #11 1232.9 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-03-23T17:44:37Z #11 1271.6 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.fslj1ola.requirements.txt', '--exists-action=b'] +2024-03-23T17:44:37Z #11 1271.6 Pip subprocess output: +2024-03-23T17:44:37Z #11 1271.6 Collecting xncml (from -r /condaenv.fslj1ola.requirements.txt (line 1)) +2024-03-23T17:44:37Z #11 1271.6 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting hsclient (from -r /condaenv.fslj1ola.requirements.txt (line 2)) +2024-03-23T17:44:37Z #11 1271.6 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting fstd2nc (from -r /condaenv.fslj1ola.requirements.txt (line 3)) +2024-03-23T17:44:37Z #11 1271.6 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 10.0 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Installing build dependencies: started +2024-03-23T17:44:37Z #11 1271.6 Installing build dependencies: finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Getting requirements to build wheel: started +2024-03-23T17:44:37Z #11 1271.6 Getting requirements to build wheel: finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Installing backend dependencies: started +2024-03-23T17:44:37Z #11 1271.6 Installing backend dependencies: finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (pyproject.toml): started +2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (pyproject.toml): finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Collecting figanos (from -r /condaenv.fslj1ola.requirements.txt (line 4)) +2024-03-23T17:44:37Z #11 1271.6 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting pixiedust (from -r /condaenv.fslj1ola.requirements.txt (line 5)) +2024-03-23T17:44:37Z #11 1271.6 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 20.7 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): started +2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Collecting ipython_blocking (from -r /condaenv.fslj1ola.requirements.txt (line 6)) +2024-03-23T17:44:37Z #11 1271.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting jupyternotify (from -r /condaenv.fslj1ola.requirements.txt (line 7)) +2024-03-23T17:44:37Z #11 1271.6 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): started +2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Collecting jupyterlab-logout (from -r /condaenv.fslj1ola.requirements.txt (line 8)) +2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.fslj1ola.requirements.txt (line 9)) +2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting pytest-tornasync (from -r /condaenv.fslj1ola.requirements.txt (line 10)) +2024-03-23T17:44:37Z #11 1271.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting xmltodict (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) +2024-03-23T17:44:37Z #11 1271.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting xsdata (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) +2024-03-23T17:44:37Z #11 1271.6 Downloading xsdata-24.3.1-py3-none-any.whl.metadata (6.3 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (2023.8.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (1.6.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (1.6.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (2024.3.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (5.9.8) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (69.2.0) +2024-03-23T17:44:37Z #11 1271.6 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) +2024-03-23T17:44:37Z #11 1271.6 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2.31.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (1.4.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.fslj1ola.requirements.txt (line 3)) (1.24.4) +2024-03-23T17:44:37Z #11 1271.6 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.fslj1ola.requirements.txt (line 3)) +2024-03-23T17:44:37Z #11 1271.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-03-23T17:44:37Z #11 1271.6 Collecting progress (from fstd2nc->-r /condaenv.fslj1ola.requirements.txt (line 3)) +2024-03-23T17:44:37Z #11 1271.6 Downloading progress-1.6.tar.gz (7.8 kB) +2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): started +2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.22.0) +2024-03-23T17:44:37Z #11 1271.6 Collecting cairosvg (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) +2024-03-23T17:44:37Z #11 1271.6 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.14.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.8.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.1.4) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (4.2.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (6.0.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.13.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.22.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.47.0) +2024-03-23T17:44:37Z #11 1271.6 Collecting geojson (from pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) +2024-03-23T17:44:37Z #11 1271.6 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting astunparse (from pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) +2024-03-23T17:44:37Z #11 1271.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) (3.6) +2024-03-23T17:44:37Z #11 1271.6 Collecting colour (from pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) +2024-03-23T17:44:37Z #11 1271.6 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (8.22.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (8.1.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.7.4) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (1.0.0) +2024-03-23T17:44:37Z #11 1271.6 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) +2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab-4.1.5-py3-none-any.whl.metadata (15 kB) +2024-03-23T17:44:37Z #11 1271.6 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-03-23T17:44:37Z #11 1271.6 Collecting jupyterlab-logout (from -r /condaenv.fslj1ola.requirements.txt (line 8)) +2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.6.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (3.6.7) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (23.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (6.4) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (5.7.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.25.4) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.13.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.2.4) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.8.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.0.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (6.5.6) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (3.1.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.0.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.fslj1ola.requirements.txt (line 10)) (8.1.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.fslj1ola.requirements.txt (line 3)) (2024.1) +2024-03-23T17:44:37Z #11 1271.6 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) +2024-03-23T17:44:37Z #11 1271.6 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2.6.4) +2024-03-23T17:44:37Z #11 1271.6 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) +2024-03-23T17:44:37Z #11 1271.6 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (0.6.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2.16.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (4.10.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.fslj1ola.requirements.txt (line 10)) (2.0.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.fslj1ola.requirements.txt (line 10)) (1.4.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.fslj1ola.requirements.txt (line 10)) (1.2.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (23.1.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.3.8) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.9.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (8.1.7) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.0.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.0.6) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.59.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.23) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.4.1.post1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.12.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.14.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (3.0.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (2024.3.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (1.4.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (0.12.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (7.1.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.9.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2024.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) (0.43.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) (1.16.0) +2024-03-23T17:44:37Z #11 1271.6 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) +2024-03-23T17:44:37Z #11 1271.6 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) +2024-03-23T17:44:37Z #11 1271.6 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) +2024-03-23T17:44:37Z #11 1271.6 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.7.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (9.4.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.2.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.0.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.3.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.5.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.2.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.12.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (4.50.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.4.5) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.1.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.9.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (5.1.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.19.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.1.6) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (3.0.42) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (2.17.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.6.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (5.14.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (4.9.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.2.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (4.0.10) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (3.0.10) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (5.5.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (6.6.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (7.16.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (6.29.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (7.4.9) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (5.10.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (3.3.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (3.6) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2.0.7) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2024.2.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (3.2.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.2.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.34.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2023.8.12) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (23.2.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.1.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.7.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (4.0.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (3.17.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.8.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.1.5) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.4) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (1.6.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (24.0.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (4.3.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (23.1.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.10.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.5.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (7.7.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.20.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.8.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.18.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.7.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.9.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.8.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.5.9) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.14.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.9.24) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (4.21.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (4.12.3) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (6.1.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (0.3.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (3.0.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (1.5.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (2.19.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.2.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.2.4) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (1.0.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.7.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.2.13) +2024-03-23T17:44:37Z #11 1271.6 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) +2024-03-23T17:44:37Z #11 1271.6 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.3.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.4.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.16.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.5.1) +2024-03-23T17:44:37Z #11 1271.6 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) +2024-03-23T17:44:37Z #11 1271.6 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (1.8.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.42.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (2.4.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (2.0.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (2.4.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.2.2) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.5.6) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.3.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.21) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2023.12.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.34.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.18.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.0.7) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.1.4) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.1.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (22.1.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.19.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (21.2.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (2.5) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.5.1) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (20.11.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.4) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.3.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.13) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.3.0) +2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.9.0.20240316) +2024-03-23T17:44:37Z #11 1271.6 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 41.0 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 8.0 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 33.0 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 57.6 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 4.8 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading xsdata-24.3.1-py3-none-any.whl (224 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 224.1/224.1 kB 19.1 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 22.9 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 8.9 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-03-23T17:44:37Z #11 1271.6 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 26.8 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.7 MB/s eta 0:00:00 +2024-03-23T17:44:37Z #11 1271.6 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress +2024-03-23T17:44:37Z #11 1271.6 Building wheel for fstd2nc (pyproject.toml): started +2024-03-23T17:44:37Z #11 1271.6 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=ce30e38e922de596b70b0a8f01ec7c98520338c0ea287baeb4b9ffb71109b627 +2024-03-23T17:44:37Z #11 1271.6 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a +2024-03-23T17:44:37Z #11 1271.6 Building wheel for pixiedust (setup.py): started +2024-03-23T17:44:37Z #11 1271.6 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=29025f156b21b11c7742068057a923b7b4bc2874597b9d53c476140499a4bb50 +2024-03-23T17:44:37Z #11 1271.6 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 +2024-03-23T17:44:37Z #11 1271.6 Building wheel for jupyternotify (setup.py): started +2024-03-23T17:44:37Z #11 1271.6 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=37c3d40b999d75f86297f24912e71416cc010ce46ccca2a2b87b91b840a89368 +2024-03-23T17:44:37Z #11 1271.6 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 +2024-03-23T17:44:37Z #11 1271.6 Building wheel for progress (setup.py): started +2024-03-23T17:44:37Z #11 1271.6 Building wheel for progress (setup.py): finished with status 'done' +2024-03-23T17:44:37Z #11 1271.6 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9614 sha256=5e89e1cecec32a6ea6e470bc9ab95ab43f16bd9de7e01e8102185f4a76fb5761 +2024-03-23T17:44:37Z #11 1271.6 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 +2024-03-23T17:44:37Z #11 1271.6 Successfully built fstd2nc pixiedust jupyternotify progress +2024-03-23T17:44:37Z #11 1271.6 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-03-23T17:44:37Z #11 1271.6 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.3.1 +2024-03-23T17:44:37Z #11 1271.6 +2024-03-23T17:44:37Z #11 1271.6 done +2024-03-23T17:44:37Z #11 1271.6 # +2024-03-23T17:44:37Z #11 1271.6 # To activate this environment, use +2024-03-23T17:44:37Z #11 1271.6 # +2024-03-23T17:44:37Z #11 1271.6 # $ conda activate birdy +2024-03-23T17:44:37Z #11 1271.6 # +2024-03-23T17:44:37Z #11 1271.6 # To deactivate an active environment, use +2024-03-23T17:44:37Z #11 1271.6 # +2024-03-23T17:44:37Z #11 1271.6 # $ conda deactivate +2024-03-23T17:44:37Z #11 1271.6 +2024-03-23T17:44:49Z #11 1283.7 Will remove 782 (1.20 GB) tarball(s). +2024-03-23T17:44:49Z #11 1283.7 Will remove 1 index cache(s). +2024-03-23T17:44:49Z #11 1283.7 Will remove 143 (1.22 GB) package(s). +2024-03-23T17:44:49Z #11 1283.7 There are no tempfile(s) to remove. +2024-03-23T17:44:49Z #11 1283.7 There are no logfile(s) to remove. +2024-03-23T17:44:50Z #11 DONE 1284.5s +2024-03-23T17:44:50Z +2024-03-23T17:44:50Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2024-03-23T17:44:51Z #12 1.340 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-03-23T17:44:51Z #12 DONE 1.5s +2024-03-23T17:44:51Z +2024-03-23T17:44:51Z #13 [ 8/10] RUN jupyter lab build +2024-03-23T17:44:53Z #13 2.059 [LabBuildApp] JupyterLab 3.6.7 +2024-03-23T17:44:53Z #13 2.059 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2024-03-23T17:44:54Z #13 2.707 [LabBuildApp] Building jupyterlab assets (production, minimized) +2024-03-23T17:44:54Z #13 2.727 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. +2024-03-23T17:44:54Z #13 2.727 +2024-03-23T17:47:11Z #13 2.733 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ +2024-03-23T17:47:11Z #13 DONE 140.0s +2024-03-23T17:47:11Z +2024-03-23T17:47:11Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-03-23T17:47:12Z #14 0.704 Enabling: voila +2024-03-23T17:47:12Z #14 0.704 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-23T17:47:12Z #14 0.706 - Validating... +2024-03-23T17:47:13Z #14 1.414 voila 0.5.5 OK +2024-03-23T17:47:13Z #14 1.796 Enabling: panel.io.jupyter_server_extension +2024-03-23T17:47:13Z #14 1.796 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-03-23T17:47:13Z #14 1.798 - Validating... +2024-03-23T17:47:15Z #14 3.385 panel.io.jupyter_server_extension OK +2024-03-23T17:47:15Z #14 3.878 - Validating... +2024-03-23T17:47:16Z #14 4.739 dask_labextension 6.2.0 OK +2024-03-23T17:47:16Z #14 4.739 - Validating... +2024-03-23T17:47:16Z #14 4.739 jupyter_server_proxy 4.1.1-0.dev OK +2024-03-23T17:47:16Z #14 4.739 - Validating... +2024-03-23T17:47:16Z #14 4.913 jupyter_resource_usage 0.7.1 OK +2024-03-23T17:47:16Z #14 4.913 - Validating... +2024-03-23T17:47:16Z #14 4.972  X is jupyter_server_ydoc importable? +2024-03-23T17:47:16Z #14 4.972 - Validating... +2024-03-23T17:47:16Z #14 5.047 jupyterlab 3.6.7 OK +2024-03-23T17:47:16Z #14 5.047 - Validating... +2024-03-23T17:47:17Z #14 5.221 jupyterlab_jupytext OK +2024-03-23T17:47:17Z #14 5.221 - Validating... +2024-03-23T17:47:17Z #14 5.226 mamba_gator 5.2.1 OK +2024-03-23T17:47:17Z #14 5.226 - Validating... +2024-03-23T17:47:17Z #14 5.243 nbdime 4.0.1 OK +2024-03-23T17:47:17Z #14 5.244 - Validating... +2024-03-23T17:47:18Z #14 6.312 panel.io.jupyter_server_extension OK +2024-03-23T17:47:18Z #14 6.312 - Validating... +2024-03-23T17:47:18Z #14 6.382 nbresuse OK +2024-03-23T17:47:18Z #14 6.382 - Validating... +2024-03-23T17:47:18Z #14 6.641 voila.server_extension OK +2024-03-23T17:47:18Z #14 6.641 - Validating... +2024-03-23T17:47:18Z #14 6.643 jupyterlab_git OK +2024-03-23T17:47:18Z #14 6.643 - Validating... +2024-03-23T17:47:18Z #14 6.644 voila 0.5.5 OK +2024-03-23T17:47:18Z #14 6.644 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-03-23T17:47:18Z #14 6.644 dask_labextension  enabled  +2024-03-23T17:47:18Z #14 6.644 jupyter_server_proxy  enabled  +2024-03-23T17:47:18Z #14 6.644 jupyter_resource_usage  enabled  +2024-03-23T17:47:18Z #14 6.644 jupyter_server_ydoc  enabled  +2024-03-23T17:47:18Z #14 6.644 jupyterlab  enabled  +2024-03-23T17:47:18Z #14 6.644 jupyterlab_jupytext  enabled  +2024-03-23T17:47:18Z #14 6.644 mamba_gator  enabled  +2024-03-23T17:47:18Z #14 6.644 nbdime  enabled  +2024-03-23T17:47:18Z #14 6.644 panel.io.jupyter_server_extension  enabled  +2024-03-23T17:47:18Z #14 6.644 nbresuse  enabled  +2024-03-23T17:47:18Z #14 6.644 voila.server_extension  enabled  +2024-03-23T17:47:18Z #14 6.644 jupyterlab_git  enabled  +2024-03-23T17:47:18Z #14 6.644 voila  enabled  +2024-03-23T17:47:18Z #14 DONE 7.1s +2024-03-23T17:47:18Z +2024-03-23T17:47:18Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-03-23T17:47:19Z #15 0.303 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-03-23T17:47:19Z #15 0.328 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.111.133, 185.199.108.133, ... +2024-03-23T17:47:19Z #15 0.331 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-03-23T17:47:19Z #15 0.337 HTTP request sent, awaiting response... 200 OK +2024-03-23T17:47:19Z #15 0.423 Length: 9769 (9.5K) [text/plain] +2024-03-23T17:47:19Z #15 0.423 Saving to: ‘/usr/local/bin/start.sh’ +2024-03-23T17:47:19Z #15 0.427 +2024-03-23T17:47:19Z #15 0.427 0K ......... 100% 4.90M=0.002s +2024-03-23T17:47:19Z #15 0.427 +2024-03-23T17:47:19Z #15 0.427 2024-03-23 17:47:19 (4.90 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-03-23T17:47:19Z #15 0.427 +2024-03-23T17:47:19Z #15 0.429 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-03-23T17:47:19Z #15 0.453 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2024-03-23T17:47:19Z #15 0.454 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-03-23T17:47:19Z #15 0.460 HTTP request sent, awaiting response... 200 OK +2024-03-23T17:47:19Z #15 0.539 Length: 359 [text/plain] +2024-03-23T17:47:19Z #15 0.539 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-03-23T17:47:19Z #15 0.539 +2024-03-23T17:47:19Z #15 0.539 0K 100% 16.3M=0s +2024-03-23T17:47:19Z #15 0.540 +2024-03-23T17:47:19Z #15 0.540 2024-03-23 17:47:19 (16.3 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-03-23T17:47:19Z #15 0.540 +2024-03-23T17:47:19Z #15 0.545 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-03-23T17:47:19Z #15 0.569 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2024-03-23T17:47:19Z #15 0.570 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-03-23T17:47:19Z #15 0.576 HTTP request sent, awaiting response... 200 OK +2024-03-23T17:47:19Z #15 0.652 Length: 852 [text/plain] +2024-03-23T17:47:19Z #15 0.652 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-03-23T17:47:19Z #15 0.653 +2024-03-23T17:47:19Z #15 0.653 0K 100% 39.0M=0s +2024-03-23T17:47:19Z #15 0.653 +2024-03-23T17:47:19Z #15 0.654 2024-03-23 17:47:19 (39.0 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-03-23T17:47:19Z #15 0.654 +2024-03-23T17:47:19Z #15 0.657 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-03-23T17:47:19Z #15 0.682 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2024-03-23T17:47:19Z #15 0.683 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-03-23T17:47:19Z #15 0.689 HTTP request sent, awaiting response... 200 OK +2024-03-23T17:47:19Z #15 0.749 Length: 1034 (1.0K) [text/plain] +2024-03-23T17:47:19Z #15 0.749 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-03-23T17:47:19Z #15 0.749 +2024-03-23T17:47:19Z #15 0.749 0K . 100% 46.1M=0s +2024-03-23T17:47:19Z #15 0.750 +2024-03-23T17:47:19Z #15 0.750 2024-03-23 17:47:19 (46.1 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-03-23T17:47:19Z #15 0.750 +2024-03-23T17:47:19Z #15 0.755 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-03-23T17:47:19Z #15 0.780 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2024-03-23T17:47:19Z #15 0.781 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-03-23T17:47:19Z #15 0.786 HTTP request sent, awaiting response... 200 OK +2024-03-23T17:47:19Z #15 0.846 Length: 1836 (1.8K) [text/plain] +2024-03-23T17:47:19Z #15 0.846 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-03-23T17:47:19Z #15 0.846 +2024-03-23T17:47:19Z #15 0.846 0K . 100% 6.08M=0s +2024-03-23T17:47:19Z #15 0.848 +2024-03-23T17:47:19Z #15 0.849 2024-03-23 17:47:19 (6.08 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-03-23T17:47:19Z #15 0.849 +2024-03-23T17:47:19Z #15 1.017 --2024-03-23 17:47:19-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-03-23T17:47:19Z #15 1.041 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.75, 3.162.103.84, 3.162.103.63, ... +2024-03-23T17:47:19Z #15 1.048 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.75|:443... connected. +2024-03-23T17:47:20Z #15 1.055 HTTP request sent, awaiting response... 200 OK +2024-03-23T17:47:20Z #15 1.196 Length: 129825343 (124M) [application/x-tar] +2024-03-23T17:47:20Z #15 1.196 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-03-23T17:47:20Z #15 1.197 +2024-03-23T17:47:20Z #15 1.197 0K .......... .......... .......... .......... .......... 0% 23.0M 5s +2024-03-23T17:47:20Z #15 1.199 50K .......... .......... .......... .......... .......... 0% 27.1M 5s +2024-03-23T17:47:20Z #15 1.200 100K .......... .......... .......... .......... .......... 0% 87.1M 4s +2024-03-23T17:47:20Z #15 1.201 150K .......... .......... .......... .......... .......... 0% 101M 3s +2024-03-23T17:47:20Z #15 1.201 200K .......... .......... .......... .......... .......... 0% 122M 3s +2024-03-23T17:47:20Z #15 1.202 250K .......... .......... .......... .......... .......... 0% 40.1M 3s +2024-03-23T17:47:20Z #15 1.203 300K .......... .......... .......... .......... .......... 0% 21.3M 3s +2024-03-23T17:47:20Z #15 1.205 350K .......... .......... .......... .......... .......... 0% 36.0M 3s +2024-03-23T17:47:20Z #15 1.207 400K .......... .......... .......... .......... .......... 0% 32.7M 3s +2024-03-23T17:47:20Z #15 1.208 450K .......... .......... .......... .......... .......... 0% 22.0M 4s +2024-03-23T17:47:20Z #15 1.210 500K .......... .......... .......... .......... .......... 0% 96.4M 3s +2024-03-23T17:47:20Z #15 1.211 550K .......... .......... .......... .......... .......... 0% 39.0M 3s +2024-03-23T17:47:20Z #15 1.212 600K .......... .......... .......... .......... .......... 0% 44.3M 3s +2024-03-23T17:47:20Z #15 1.213 650K .......... .......... .......... .......... .......... 0% 56.2M 3s +2024-03-23T17:47:20Z #15 1.214 700K .......... .......... .......... .......... .......... 0% 48.2M 3s +2024-03-23T17:47:20Z #15 1.215 750K .......... .......... .......... .......... .......... 0% 42.8M 3s +2024-03-23T17:47:20Z #15 1.217 800K .......... .......... .......... .......... .......... 0% 83.9M 3s +2024-03-23T17:47:20Z #15 1.217 850K .......... .......... .......... .......... .......... 0% 91.3M 3s +2024-03-23T17:47:20Z #15 1.218 900K .......... .......... .......... .......... .......... 0% 37.0M 3s +2024-03-23T17:47:20Z #15 1.219 950K .......... .......... .......... .......... .......... 0% 34.9M 3s +2024-03-23T17:47:20Z #15 1.220 1000K .......... .......... .......... .......... .......... 0% 32.6M 3s +2024-03-23T17:47:20Z #15 1.222 1050K .......... .......... .......... .......... .......... 0% 47.3M 3s +2024-03-23T17:47:20Z #15 1.223 1100K .......... .......... .......... .......... .......... 0% 32.0M 3s +2024-03-23T17:47:20Z #15 1.224 1150K .......... .......... .......... .......... .......... 0% 48.7M 3s +2024-03-23T17:47:20Z #15 1.226 1200K .......... .......... .......... .......... .......... 0% 55.3M 3s +2024-03-23T17:47:20Z #15 1.226 1250K .......... .......... .......... .......... .......... 1% 61.7M 3s +2024-03-23T17:47:20Z #15 1.227 1300K .......... .......... .......... .......... .......... 1% 62.1M 3s +2024-03-23T17:47:20Z #15 1.228 1350K .......... .......... .......... .......... .......... 1% 21.0M 3s +2024-03-23T17:47:20Z #15 1.230 1400K .......... .......... .......... .......... .......... 1% 84.3M 3s +2024-03-23T17:47:20Z #15 1.235 1450K .......... .......... .......... .......... .......... 1% 125M 3s +2024-03-23T17:47:20Z #15 1.235 1500K .......... .......... .......... .......... .......... 1% 126M 3s +2024-03-23T17:47:20Z #15 1.235 1550K .......... .......... .......... .......... .......... 1% 83.4M 3s +2024-03-23T17:47:20Z #15 1.235 1600K .......... .......... .......... .......... .......... 1% 99.1M 3s +2024-03-23T17:47:20Z #15 1.235 1650K .......... .......... .......... .......... .......... 1% 94.2M 3s +2024-03-23T17:47:20Z #15 1.235 1700K .......... .......... .......... .......... .......... 1% 107M 3s +2024-03-23T17:47:20Z #15 1.235 1750K .......... .......... .......... .......... .......... 1% 78.3M 3s +2024-03-23T17:47:20Z #15 1.235 1800K .......... .......... .......... .......... .......... 1% 93.1M 3s +2024-03-23T17:47:20Z #15 1.235 1850K .......... .......... .......... .......... .......... 1% 61.2M 3s +2024-03-23T17:47:20Z #15 1.236 1900K .......... .......... .......... .......... .......... 1% 34.1M 3s +2024-03-23T17:47:20Z #15 1.237 1950K .......... .......... .......... .......... .......... 1% 55.4M 3s +2024-03-23T17:47:20Z #15 1.238 2000K .......... .......... .......... .......... .......... 1% 47.0M 3s +2024-03-23T17:47:20Z #15 1.239 2050K .......... .......... .......... .......... .......... 1% 34.7M 3s +2024-03-23T17:47:20Z #15 1.240 2100K .......... .......... .......... .......... .......... 1% 46.1M 3s +2024-03-23T17:47:20Z #15 1.241 2150K .......... .......... .......... .......... .......... 1% 43.6M 3s +2024-03-23T17:47:20Z #15 1.242 2200K .......... .......... .......... .......... .......... 1% 42.7M 3s +2024-03-23T17:47:20Z #15 1.247 2250K .......... .......... .......... .......... .......... 1% 120M 3s +2024-03-23T17:47:20Z #15 1.247 2300K .......... .......... .......... .......... .......... 1% 78.5M 3s +2024-03-23T17:47:20Z #15 1.247 2350K .......... .......... .......... .......... .......... 1% 83.3M 3s +2024-03-23T17:47:20Z #15 1.247 2400K .......... .......... .......... .......... .......... 1% 82.9M 2s +2024-03-23T17:47:20Z #15 1.247 2450K .......... .......... .......... .......... .......... 1% 113M 2s +2024-03-23T17:47:20Z #15 1.247 2500K .......... .......... .......... .......... .......... 2% 84.8M 2s +2024-03-23T17:47:20Z #15 1.247 2550K .......... .......... .......... .......... .......... 2% 82.5M 2s +2024-03-23T17:47:20Z #15 1.247 2600K .......... .......... .......... .......... .......... 2% 94.1M 2s +2024-03-23T17:47:20Z #15 1.248 2650K .......... .......... .......... .......... .......... 2% 90.0M 2s +2024-03-23T17:47:20Z #15 1.249 2700K .......... .......... .......... .......... .......... 2% 123M 2s +2024-03-23T17:47:20Z #15 1.249 2750K .......... .......... .......... .......... .......... 2% 101M 2s +2024-03-23T17:47:20Z #15 1.249 2800K .......... .......... .......... .......... .......... 2% 92.7M 2s +2024-03-23T17:47:20Z #15 1.250 2850K .......... .......... .......... .......... .......... 2% 125M 2s +2024-03-23T17:47:20Z #15 1.250 2900K .......... .......... .......... .......... .......... 2% 92.1M 2s +2024-03-23T17:47:20Z #15 1.251 2950K .......... .......... .......... .......... .......... 2% 151M 2s +2024-03-23T17:47:20Z #15 1.251 3000K .......... .......... .......... .......... .......... 2% 95.3M 2s +2024-03-23T17:47:20Z #15 1.252 3050K .......... .......... .......... .......... .......... 2% 113M 2s +2024-03-23T17:47:20Z #15 1.252 3100K .......... .......... .......... .......... .......... 2% 84.2M 2s +2024-03-23T17:47:20Z #15 1.252 3150K .......... .......... .......... .......... .......... 2% 142M 2s +2024-03-23T17:47:20Z #15 1.253 3200K .......... .......... .......... .......... .......... 2% 85.1M 2s +2024-03-23T17:47:20Z #15 1.253 3250K .......... .......... .......... .......... .......... 2% 156M 2s +2024-03-23T17:47:20Z #15 1.254 3300K .......... .......... .......... .......... .......... 2% 88.5M 2s +2024-03-23T17:47:20Z #15 1.254 3350K .......... .......... .......... .......... .......... 2% 98.3M 2s +2024-03-23T17:47:20Z #15 1.255 3400K .......... .......... .......... .......... .......... 2% 80.8M 2s +2024-03-23T17:47:20Z #15 1.255 3450K .......... .......... .......... .......... .......... 2% 130M 2s +2024-03-23T17:47:20Z #15 1.256 3500K .......... .......... .......... .......... .......... 2% 111M 2s +2024-03-23T17:47:20Z #15 1.256 3550K .......... .......... .......... .......... .......... 2% 121M 2s +2024-03-23T17:47:20Z #15 1.257 3600K .......... .......... .......... .......... .......... 2% 80.7M 2s +2024-03-23T17:47:20Z #15 1.257 3650K .......... .......... .......... .......... .......... 2% 151M 2s +2024-03-23T17:47:20Z #15 1.258 3700K .......... .......... .......... .......... .......... 2% 97.8M 2s +2024-03-23T17:47:20Z #15 1.258 3750K .......... .......... .......... .......... .......... 2% 164M 2s +2024-03-23T17:47:20Z #15 1.258 3800K .......... .......... .......... .......... .......... 3% 76.4M 2s +2024-03-23T17:47:20Z #15 1.259 3850K .......... .......... .......... .......... .......... 3% 102M 2s +2024-03-23T17:47:20Z #15 1.259 3900K .......... .......... .......... .......... .......... 3% 118M 2s +2024-03-23T17:47:20Z #15 1.260 3950K .......... .......... .......... .......... .......... 3% 93.5M 2s +2024-03-23T17:47:20Z #15 1.260 4000K .......... .......... .......... .......... .......... 3% 102M 2s +2024-03-23T17:47:20Z #15 1.261 4050K .......... .......... .......... .......... .......... 3% 101M 2s +2024-03-23T17:47:20Z #15 1.262 4100K .......... .......... .......... .......... .......... 3% 163M 2s +2024-03-23T17:47:20Z #15 1.262 4150K .......... .......... .......... .......... .......... 3% 93.9M 2s +2024-03-23T17:47:20Z #15 1.262 4200K .......... .......... .......... .......... .......... 3% 110M 2s +2024-03-23T17:47:20Z #15 1.262 4250K .......... .......... .......... .......... .......... 3% 113M 2s +2024-03-23T17:47:20Z #15 1.263 4300K .......... .......... .......... .......... .......... 3% 122M 2s +2024-03-23T17:47:20Z #15 1.263 4350K .......... .......... .......... .......... .......... 3% 96.4M 2s +2024-03-23T17:47:20Z #15 1.264 4400K .......... .......... .......... .......... .......... 3% 78.1M 2s +2024-03-23T17:47:20Z #15 1.265 4450K .......... .......... .......... .......... .......... 3% 166M 2s +2024-03-23T17:47:20Z #15 1.265 4500K .......... .......... .......... .......... .......... 3% 95.1M 2s +2024-03-23T17:47:20Z #15 1.266 4550K .......... .......... .......... .......... .......... 3% 120M 2s +2024-03-23T17:47:20Z #15 1.266 4600K .......... .......... .......... .......... .......... 3% 88.8M 2s +2024-03-23T17:47:20Z #15 1.266 4650K .......... .......... .......... .......... .......... 3% 123M 2s +2024-03-23T17:47:20Z #15 1.267 4700K .......... .......... .......... .......... .......... 3% 118M 2s +2024-03-23T17:47:20Z #15 1.268 4750K .......... .......... .......... .......... .......... 3% 97.4M 2s +2024-03-23T17:47:20Z #15 1.268 4800K .......... .......... .......... .......... .......... 3% 83.9M 2s +2024-03-23T17:47:20Z #15 1.273 4850K .......... .......... .......... .......... .......... 3% 138M 2s +2024-03-23T17:47:20Z #15 1.273 4900K .......... .......... .......... .......... .......... 3% 62.5M 2s +2024-03-23T17:47:20Z #15 1.273 4950K .......... .......... .......... .......... .......... 3% 67.4M 2s +2024-03-23T17:47:20Z #15 1.273 5000K .......... .......... .......... .......... .......... 3% 72.1M 2s +2024-03-23T17:47:20Z #15 1.273 5050K .......... .......... .......... .......... .......... 4% 111M 2s +2024-03-23T17:47:20Z #15 1.274 5100K .......... .......... .......... .......... .......... 4% 95.1M 2s +2024-03-23T17:47:20Z #15 1.274 5150K .......... .......... .......... .......... .......... 4% 40.9M 2s +2024-03-23T17:47:20Z #15 1.274 5200K .......... .......... .......... .......... .......... 4% 70.0M 2s +2024-03-23T17:47:20Z #15 1.274 5250K .......... .......... .......... .......... .......... 4% 137M 2s +2024-03-23T17:47:20Z #15 1.274 5300K .......... .......... .......... .......... .......... 4% 150M 2s +2024-03-23T17:47:20Z #15 1.274 5350K .......... .......... .......... .......... .......... 4% 77.3M 2s +2024-03-23T17:47:20Z #15 1.275 5400K .......... .......... .......... .......... .......... 4% 117M 2s +2024-03-23T17:47:20Z #15 1.275 5450K .......... .......... .......... .......... .......... 4% 67.5M 2s +2024-03-23T17:47:20Z #15 1.276 5500K .......... .......... .......... .......... .......... 4% 115M 2s +2024-03-23T17:47:20Z #15 1.277 5550K .......... .......... .......... .......... .......... 4% 65.9M 2s +2024-03-23T17:47:20Z #15 1.278 5600K .......... .......... .......... .......... .......... 4% 117M 2s +2024-03-23T17:47:20Z #15 1.278 5650K .......... .......... .......... .......... .......... 4% 49.9M 2s +2024-03-23T17:47:20Z #15 1.279 5700K .......... .......... .......... .......... .......... 4% 80.2M 2s +2024-03-23T17:47:20Z #15 1.280 5750K .......... .......... .......... .......... .......... 4% 114M 2s +2024-03-23T17:47:20Z #15 1.280 5800K .......... .......... .......... .......... .......... 4% 89.9M 2s +2024-03-23T17:47:20Z #15 1.281 5850K .......... .......... .......... .......... .......... 4% 72.8M 2s +2024-03-23T17:47:20Z #15 1.281 5900K .......... .......... .......... .......... .......... 4% 111M 2s +2024-03-23T17:47:20Z #15 1.282 5950K .......... .......... .......... .......... .......... 4% 92.4M 2s +2024-03-23T17:47:20Z #15 1.282 6000K .......... .......... .......... .......... .......... 4% 74.7M 2s +2024-03-23T17:47:20Z #15 1.283 6050K .......... .......... .......... .......... .......... 4% 55.8M 2s +2024-03-23T17:47:20Z #15 1.284 6100K .......... .......... .......... .......... .......... 4% 118M 2s +2024-03-23T17:47:20Z #15 1.284 6150K .......... .......... .......... .......... .......... 4% 133M 2s +2024-03-23T17:47:20Z #15 1.284 6200K .......... .......... .......... .......... .......... 4% 89.9M 2s +2024-03-23T17:47:20Z #15 1.285 6250K .......... .......... .......... .......... .......... 4% 98.3M 2s +2024-03-23T17:47:20Z #15 1.286 6300K .......... .......... .......... .......... .......... 5% 47.2M 2s +2024-03-23T17:47:20Z #15 1.287 6350K .......... .......... .......... .......... .......... 5% 59.1M 2s +2024-03-23T17:47:20Z #15 1.288 6400K .......... .......... .......... .......... .......... 5% 96.2M 2s +2024-03-23T17:47:20Z #15 1.288 6450K .......... .......... .......... .......... .......... 5% 139M 2s +2024-03-23T17:47:20Z #15 1.288 6500K .......... .......... .......... .......... .......... 5% 78.7M 2s +2024-03-23T17:47:20Z #15 1.289 6550K .......... .......... .......... .......... .......... 5% 79.9M 2s +2024-03-23T17:47:20Z #15 1.289 6600K .......... .......... .......... .......... .......... 5% 97.5M 2s +2024-03-23T17:47:20Z #15 1.291 6650K .......... .......... .......... .......... .......... 5% 83.9M 2s +2024-03-23T17:47:20Z #15 1.291 6700K .......... .......... .......... .......... .......... 5% 99.0M 2s +2024-03-23T17:47:20Z #15 1.291 6750K .......... .......... .......... .......... .......... 5% 66.9M 2s +2024-03-23T17:47:20Z #15 1.292 6800K .......... .......... .......... .......... .......... 5% 106M 2s +2024-03-23T17:47:20Z #15 1.293 6850K .......... .......... .......... .......... .......... 5% 102M 2s +2024-03-23T17:47:20Z #15 1.293 6900K .......... .......... .......... .......... .......... 5% 56.7M 2s +2024-03-23T17:47:20Z #15 1.294 6950K .......... .......... .......... .......... .......... 5% 84.7M 2s +2024-03-23T17:47:20Z #15 1.294 7000K .......... .......... .......... .......... .......... 5% 108M 2s +2024-03-23T17:47:20Z #15 1.295 7050K .......... .......... .......... .......... .......... 5% 86.2M 2s +2024-03-23T17:47:20Z #15 1.295 7100K .......... .......... .......... .......... .......... 5% 50.2M 2s +2024-03-23T17:47:20Z #15 1.296 7150K .......... .......... .......... .......... .......... 5% 81.3M 2s +2024-03-23T17:47:20Z #15 1.296 7200K .......... .......... .......... .......... .......... 5% 100M 2s +2024-03-23T17:47:20Z #15 1.297 7250K .......... .......... .......... .......... .......... 5% 68.3M 2s +2024-03-23T17:47:20Z #15 1.298 7300K .......... .......... .......... .......... .......... 5% 57.3M 2s +2024-03-23T17:47:20Z #15 1.299 7350K .......... .......... .......... .......... .......... 5% 113M 2s +2024-03-23T17:47:20Z #15 1.299 7400K .......... .......... .......... .......... .......... 5% 77.9M 2s +2024-03-23T17:47:20Z #15 1.300 7450K .......... .......... .......... .......... .......... 5% 90.0M 2s +2024-03-23T17:47:20Z #15 1.300 7500K .......... .......... .......... .......... .......... 5% 36.3M 2s +2024-03-23T17:47:20Z #15 1.301 7550K .......... .......... .......... .......... .......... 5% 38.6M 2s +2024-03-23T17:47:20Z #15 1.303 7600K .......... .......... .......... .......... .......... 6% 25.4M 2s +2024-03-23T17:47:20Z #15 1.305 7650K .......... .......... .......... .......... .......... 6% 41.6M 2s +2024-03-23T17:47:20Z #15 1.306 7700K .......... .......... .......... .......... .......... 6% 40.2M 2s +2024-03-23T17:47:20Z #15 1.311 7750K .......... .......... .......... .......... .......... 6% 107M 2s +2024-03-23T17:47:20Z #15 1.311 7800K .......... .......... .......... .......... .......... 6% 108M 2s +2024-03-23T17:47:20Z #15 1.311 7850K .......... .......... .......... .......... .......... 6% 95.3M 2s +2024-03-23T17:47:20Z #15 1.311 7900K .......... .......... .......... .......... .......... 6% 71.3M 2s +2024-03-23T17:47:20Z #15 1.311 7950K .......... .......... .......... .......... .......... 6% 104M 2s +2024-03-23T17:47:20Z #15 1.311 8000K .......... .......... .......... .......... .......... 6% 90.6M 2s +2024-03-23T17:47:20Z #15 1.311 8050K .......... .......... .......... .......... .......... 6% 81.0M 2s +2024-03-23T17:47:20Z #15 1.311 8100K .......... .......... .......... .......... .......... 6% 22.9M 2s +2024-03-23T17:47:20Z #15 1.314 8150K .......... .......... .......... .......... .......... 6% 96.8M 2s +2024-03-23T17:47:20Z #15 1.314 8200K .......... .......... .......... .......... .......... 6% 97.1M 2s +2024-03-23T17:47:20Z #15 1.314 8250K .......... .......... .......... .......... .......... 6% 123M 2s +2024-03-23T17:47:20Z #15 1.315 8300K .......... .......... .......... .......... .......... 6% 24.3M 2s +2024-03-23T17:47:20Z #15 1.316 8350K .......... .......... .......... .......... .......... 6% 102M 2s +2024-03-23T17:47:20Z #15 1.319 8400K .......... .......... .......... .......... .......... 6% 84.6M 2s +2024-03-23T17:47:20Z #15 1.319 8450K .......... .......... .......... .......... .......... 6% 124M 2s +2024-03-23T17:47:20Z #15 1.319 8500K .......... .......... .......... .......... .......... 6% 68.3M 2s +2024-03-23T17:47:20Z #15 1.319 8550K .......... .......... .......... .......... .......... 6% 43.5M 2s +2024-03-23T17:47:20Z #15 1.320 8600K .......... .......... .......... .......... .......... 6% 37.8M 2s +2024-03-23T17:47:20Z #15 1.323 8650K .......... .......... .......... .......... .......... 6% 135M 2s +2024-03-23T17:47:20Z #15 1.323 8700K .......... .......... .......... .......... .......... 6% 92.9M 2s +2024-03-23T17:47:20Z #15 1.323 8750K .......... .......... .......... .......... .......... 6% 116M 2s +2024-03-23T17:47:20Z #15 1.323 8800K .......... .......... .......... .......... .......... 6% 85.7M 2s +2024-03-23T17:47:20Z #15 1.323 8850K .......... .......... .......... .......... .......... 7% 39.5M 2s +2024-03-23T17:47:20Z #15 1.325 8900K .......... .......... .......... .......... .......... 7% 91.2M 2s +2024-03-23T17:47:20Z #15 1.325 8950K .......... .......... .......... .......... .......... 7% 29.7M 2s +2024-03-23T17:47:20Z #15 1.327 9000K .......... .......... .......... .......... .......... 7% 24.4M 2s +2024-03-23T17:47:20Z #15 1.328 9050K .......... .......... .......... .......... .......... 7% 81.1M 2s +2024-03-23T17:47:20Z #15 1.329 9100K .......... .......... .......... .......... .......... 7% 118M 2s +2024-03-23T17:47:20Z #15 1.329 9150K .......... .......... .......... .......... .......... 7% 51.8M 2s +2024-03-23T17:47:20Z #15 1.330 9200K .......... .......... .......... .......... .......... 7% 77.7M 2s +2024-03-23T17:47:20Z #15 1.332 9250K .......... .......... .......... .......... .......... 7% 88.1M 2s +2024-03-23T17:47:20Z #15 1.332 9300K .......... .......... .......... .......... .......... 7% 81.4M 2s +2024-03-23T17:47:20Z #15 1.333 9350K .......... .......... .......... .......... .......... 7% 70.0M 2s +2024-03-23T17:47:20Z #15 1.333 9400K .......... .......... .......... .......... .......... 7% 67.2M 2s +2024-03-23T17:47:20Z #15 1.334 9450K .......... .......... .......... .......... .......... 7% 108M 2s +2024-03-23T17:47:20Z #15 1.334 9500K .......... .......... .......... .......... .......... 7% 79.4M 2s +2024-03-23T17:47:20Z #15 1.335 9550K .......... .......... .......... .......... .......... 7% 72.3M 2s +2024-03-23T17:47:20Z #15 1.335 9600K .......... .......... .......... .......... .......... 7% 96.0M 2s +2024-03-23T17:47:20Z #15 1.336 9650K .......... .......... .......... .......... .......... 7% 54.6M 2s +2024-03-23T17:47:20Z #15 1.337 9700K .......... .......... .......... .......... .......... 7% 59.3M 2s +2024-03-23T17:47:20Z #15 1.338 9750K .......... .......... .......... .......... .......... 7% 123M 2s +2024-03-23T17:47:20Z #15 1.338 9800K .......... .......... .......... .......... .......... 7% 76.7M 2s +2024-03-23T17:47:20Z #15 1.338 9850K .......... .......... .......... .......... .......... 7% 26.9M 2s +2024-03-23T17:47:20Z #15 1.340 9900K .......... .......... .......... .......... .......... 7% 25.4M 2s +2024-03-23T17:47:20Z #15 1.342 9950K .......... .......... .......... .......... .......... 7% 48.8M 2s +2024-03-23T17:47:20Z #15 1.348 10000K .......... .......... .......... .......... .......... 7% 168M 2s +2024-03-23T17:47:20Z #15 1.348 10050K .......... .......... .......... .......... .......... 7% 128M 2s +2024-03-23T17:47:20Z #15 1.348 10100K .......... .......... .......... .......... .......... 8% 103M 2s +2024-03-23T17:47:20Z #15 1.348 10150K .......... .......... .......... .......... .......... 8% 128M 2s +2024-03-23T17:47:20Z #15 1.348 10200K .......... .......... .......... .......... .......... 8% 86.7M 2s +2024-03-23T17:47:20Z #15 1.348 10250K .......... .......... .......... .......... .......... 8% 110M 2s +2024-03-23T17:47:20Z #15 1.348 10300K .......... .......... .......... .......... .......... 8% 97.5M 2s +2024-03-23T17:47:20Z #15 1.348 10350K .......... .......... .......... .......... .......... 8% 99.1M 2s +2024-03-23T17:47:20Z #15 1.348 10400K .......... .......... .......... .......... .......... 8% 79.2M 2s +2024-03-23T17:47:20Z #15 1.348 10450K .......... .......... .......... .......... .......... 8% 86.7M 2s +2024-03-23T17:47:20Z #15 1.348 10500K .......... .......... .......... .......... .......... 8% 21.0M 2s +2024-03-23T17:47:20Z #15 1.350 10550K .......... .......... .......... .......... .......... 8% 30.5M 2s +2024-03-23T17:47:20Z #15 1.352 10600K .......... .......... .......... .......... .......... 8% 146M 2s +2024-03-23T17:47:20Z #15 1.352 10650K .......... .......... .......... .......... .......... 8% 32.9M 2s +2024-03-23T17:47:20Z #15 1.354 10700K .......... .......... .......... .......... .......... 8% 33.9M 2s +2024-03-23T17:47:20Z #15 1.356 10750K .......... .......... .......... .......... .......... 8% 133M 2s +2024-03-23T17:47:20Z #15 1.356 10800K .......... .......... .......... .......... .......... 8% 141M 2s +2024-03-23T17:47:20Z #15 1.356 10850K .......... .......... .......... .......... .......... 8% 81.9M 2s +2024-03-23T17:47:20Z #15 1.357 10900K .......... .......... .......... .......... .......... 8% 74.6M 2s +2024-03-23T17:47:20Z #15 1.357 10950K .......... .......... .......... .......... .......... 8% 73.1M 2s +2024-03-23T17:47:20Z #15 1.358 11000K .......... .......... .......... .......... .......... 8% 45.9M 2s +2024-03-23T17:47:20Z #15 1.359 11050K .......... .......... .......... .......... .......... 8% 59.0M 2s +2024-03-23T17:47:20Z #15 1.360 11100K .......... .......... .......... .......... .......... 8% 92.0M 2s +2024-03-23T17:47:20Z #15 1.360 11150K .......... .......... .......... .......... .......... 8% 56.3M 2s +2024-03-23T17:47:20Z #15 1.361 11200K .......... .......... .......... .......... .......... 8% 48.0M 2s +2024-03-23T17:47:20Z #15 1.362 11250K .......... .......... .......... .......... .......... 8% 50.9M 2s +2024-03-23T17:47:20Z #15 1.363 11300K .......... .......... .......... .......... .......... 8% 91.7M 2s +2024-03-23T17:47:20Z #15 1.363 11350K .......... .......... .......... .......... .......... 8% 20.5M 2s +2024-03-23T17:47:20Z #15 1.366 11400K .......... .......... .......... .......... .......... 9% 40.5M 2s +2024-03-23T17:47:20Z #15 1.367 11450K .......... .......... .......... .......... .......... 9% 99.8M 2s +2024-03-23T17:47:20Z #15 1.367 11500K .......... .......... .......... .......... .......... 9% 79.1M 2s +2024-03-23T17:47:20Z #15 1.368 11550K .......... .......... .......... .......... .......... 9% 29.8M 2s +2024-03-23T17:47:20Z #15 1.370 11600K .......... .......... .......... .......... .......... 9% 49.2M 2s +2024-03-23T17:47:20Z #15 1.371 11650K .......... .......... .......... .......... .......... 9% 69.1M 2s +2024-03-23T17:47:20Z #15 1.372 11700K .......... .......... .......... .......... .......... 9% 55.2M 2s +2024-03-23T17:47:20Z #15 1.373 11750K .......... .......... .......... .......... .......... 9% 54.0M 2s +2024-03-23T17:47:20Z #15 1.374 11800K .......... .......... .......... .......... .......... 9% 82.1M 2s +2024-03-23T17:47:20Z #15 1.374 11850K .......... .......... .......... .......... .......... 9% 60.1M 2s +2024-03-23T17:47:20Z #15 1.375 11900K .......... .......... .......... .......... .......... 9% 52.4M 2s +2024-03-23T17:47:20Z #15 1.376 11950K .......... .......... .......... .......... .......... 9% 62.2M 2s +2024-03-23T17:47:20Z #15 1.376 12000K .......... .......... .......... .......... .......... 9% 71.7M 2s +2024-03-23T17:47:20Z #15 1.377 12050K .......... .......... .......... .......... .......... 9% 56.1M 2s +2024-03-23T17:47:20Z #15 1.378 12100K .......... .......... .......... .......... .......... 9% 121M 2s +2024-03-23T17:47:20Z #15 1.379 12150K .......... .......... .......... .......... .......... 9% 45.2M 2s +2024-03-23T17:47:20Z #15 1.380 12200K .......... .......... .......... .......... .......... 9% 103M 2s +2024-03-23T17:47:20Z #15 1.380 12250K .......... .......... .......... .......... .......... 9% 86.5M 2s +2024-03-23T17:47:20Z #15 1.381 12300K .......... .......... .......... .......... .......... 9% 44.2M 2s +2024-03-23T17:47:20Z #15 1.382 12350K .......... .......... .......... .......... .......... 9% 75.1M 2s +2024-03-23T17:47:20Z #15 1.382 12400K .......... .......... .......... .......... .......... 9% 60.5M 2s +2024-03-23T17:47:20Z #15 1.383 12450K .......... .......... .......... .......... .......... 9% 55.1M 2s +2024-03-23T17:47:20Z #15 1.384 12500K .......... .......... .......... .......... .......... 9% 62.7M 2s +2024-03-23T17:47:20Z #15 1.385 12550K .......... .......... .......... .......... .......... 9% 88.1M 2s +2024-03-23T17:47:20Z #15 1.386 12600K .......... .......... .......... .......... .......... 9% 55.7M 2s +2024-03-23T17:47:20Z #15 1.386 12650K .......... .......... .......... .......... .......... 10% 59.6M 2s +2024-03-23T17:47:20Z #15 1.387 12700K .......... .......... .......... .......... .......... 10% 64.6M 2s +2024-03-23T17:47:20Z #15 1.388 12750K .......... .......... .......... .......... .......... 10% 56.5M 2s +2024-03-23T17:47:20Z #15 1.389 12800K .......... .......... .......... .......... .......... 10% 54.4M 2s +2024-03-23T17:47:20Z #15 1.390 12850K .......... .......... .......... .......... .......... 10% 39.4M 2s +2024-03-23T17:47:20Z #15 1.391 12900K .......... .......... .......... .......... .......... 10% 32.5M 2s +2024-03-23T17:47:20Z #15 1.392 12950K .......... .......... .......... .......... .......... 10% 88.8M 2s +2024-03-23T17:47:20Z #15 1.395 13000K .......... .......... .......... .......... .......... 10% 155M 2s +2024-03-23T17:47:20Z #15 1.395 13050K .......... .......... .......... .......... .......... 10% 107M 2s +2024-03-23T17:47:20Z #15 1.395 13100K .......... .......... .......... .......... .......... 10% 178M 2s +2024-03-23T17:47:20Z #15 1.395 13150K .......... .......... .......... .......... .......... 10% 97.5M 2s +2024-03-23T17:47:20Z #15 1.395 13200K .......... .......... .......... .......... .......... 10% 122M 2s +2024-03-23T17:47:20Z #15 1.395 13250K .......... .......... .......... .......... .......... 10% 31.5M 2s +2024-03-23T17:47:20Z #15 1.396 13300K .......... .......... .......... .......... .......... 10% 62.2M 2s +2024-03-23T17:47:20Z #15 1.398 13350K .......... .......... .......... .......... .......... 10% 113M 2s +2024-03-23T17:47:20Z #15 1.398 13400K .......... .......... .......... .......... .......... 10% 165M 2s +2024-03-23T17:47:20Z #15 1.398 13450K .......... .......... .......... .......... .......... 10% 131M 2s +2024-03-23T17:47:20Z #15 1.398 13500K .......... .......... .......... .......... .......... 10% 96.3M 2s +2024-03-23T17:47:20Z #15 1.399 13550K .......... .......... .......... .......... .......... 10% 23.2M 2s +2024-03-23T17:47:20Z #15 1.401 13600K .......... .......... .......... .......... .......... 10% 89.4M 2s +2024-03-23T17:47:20Z #15 1.402 13650K .......... .......... .......... .......... .......... 10% 108M 2s +2024-03-23T17:47:20Z #15 1.402 13700K .......... .......... .......... .......... .......... 10% 57.1M 2s +2024-03-23T17:47:20Z #15 1.403 13750K .......... .......... .......... .......... .......... 10% 35.1M 2s +2024-03-23T17:47:20Z #15 1.404 13800K .......... .......... .......... .......... .......... 10% 29.8M 2s +2024-03-23T17:47:20Z #15 1.406 13850K .......... .......... .......... .......... .......... 10% 149M 2s +2024-03-23T17:47:20Z #15 1.406 13900K .......... .......... .......... .......... .......... 11% 53.0M 2s +2024-03-23T17:47:20Z #15 1.407 13950K .......... .......... .......... .......... .......... 11% 41.2M 2s +2024-03-23T17:47:20Z #15 1.408 14000K .......... .......... .......... .......... .......... 11% 98.4M 2s +2024-03-23T17:47:20Z #15 1.409 14050K .......... .......... .......... .......... .......... 11% 110M 2s +2024-03-23T17:47:20Z #15 1.409 14100K .......... .......... .......... .......... .......... 11% 32.8M 2s +2024-03-23T17:47:20Z #15 1.410 14150K .......... .......... .......... .......... .......... 11% 67.6M 2s +2024-03-23T17:47:20Z #15 1.411 14200K .......... .......... .......... .......... .......... 11% 138M 2s +2024-03-23T17:47:20Z #15 1.412 14250K .......... .......... .......... .......... .......... 11% 162M 2s +2024-03-23T17:47:20Z #15 1.412 14300K .......... .......... .......... .......... .......... 11% 98.0M 2s +2024-03-23T17:47:20Z #15 1.412 14350K .......... .......... .......... .......... .......... 11% 95.5M 2s +2024-03-23T17:47:20Z #15 1.413 14400K .......... .......... .......... .......... .......... 11% 91.8M 2s +2024-03-23T17:47:20Z #15 1.413 14450K .......... .......... .......... .......... .......... 11% 112M 2s +2024-03-23T17:47:20Z #15 1.414 14500K .......... .......... .......... .......... .......... 11% 171M 2s +2024-03-23T17:47:20Z #15 1.414 14550K .......... .......... .......... .......... .......... 11% 99.7M 2s +2024-03-23T17:47:20Z #15 1.415 14600K .......... .......... .......... .......... .......... 11% 89.1M 2s +2024-03-23T17:47:20Z #15 1.415 14650K .......... .......... .......... .......... .......... 11% 91.3M 2s +2024-03-23T17:47:20Z #15 1.416 14700K .......... .......... .......... .......... .......... 11% 131M 2s +2024-03-23T17:47:20Z #15 1.416 14750K .......... .......... .......... .......... .......... 11% 107M 2s +2024-03-23T17:47:20Z #15 1.417 14800K .......... .......... .......... .......... .......... 11% 84.4M 2s +2024-03-23T17:47:20Z #15 1.417 14850K .......... .......... .......... .......... .......... 11% 118M 2s +2024-03-23T17:47:20Z #15 1.418 14900K .......... .......... .......... .......... .......... 11% 91.9M 2s +2024-03-23T17:47:20Z #15 1.418 14950K .......... .......... .......... .......... .......... 11% 87.8M 2s +2024-03-23T17:47:20Z #15 1.418 15000K .......... .......... .......... .......... .......... 11% 112M 2s +2024-03-23T17:47:20Z #15 1.419 15050K .......... .......... .......... .......... .......... 11% 171M 2s +2024-03-23T17:47:20Z #15 1.420 15100K .......... .......... .......... .......... .......... 11% 82.8M 2s +2024-03-23T17:47:20Z #15 1.420 15150K .......... .......... .......... .......... .......... 11% 156M 2s +2024-03-23T17:47:20Z #15 1.420 15200K .......... .......... .......... .......... .......... 12% 59.4M 2s +2024-03-23T17:47:20Z #15 1.421 15250K .......... .......... .......... .......... .......... 12% 162M 2s +2024-03-23T17:47:20Z #15 1.421 15300K .......... .......... .......... .......... .......... 12% 77.0M 2s +2024-03-23T17:47:20Z #15 1.422 15350K .......... .......... .......... .......... .......... 12% 157M 2s +2024-03-23T17:47:20Z #15 1.422 15400K .......... .......... .......... .......... .......... 12% 101M 2s +2024-03-23T17:47:20Z #15 1.427 15450K .......... .......... .......... .......... .......... 12% 143M 2s +2024-03-23T17:47:20Z #15 1.427 15500K .......... .......... .......... .......... .......... 12% 175M 2s +2024-03-23T17:47:20Z #15 1.427 15550K .......... .......... .......... .......... .......... 12% 107M 2s +2024-03-23T17:47:20Z #15 1.427 15600K .......... .......... .......... .......... .......... 12% 82.5M 2s +2024-03-23T17:47:20Z #15 1.427 15650K .......... .......... .......... .......... .......... 12% 97.0M 2s +2024-03-23T17:47:20Z #15 1.427 15700K .......... .......... .......... .......... .......... 12% 156M 2s +2024-03-23T17:47:20Z #15 1.427 15750K .......... .......... .......... .......... .......... 12% 174M 2s +2024-03-23T17:47:20Z #15 1.427 15800K .......... .......... .......... .......... .......... 12% 79.1M 2s +2024-03-23T17:47:20Z #15 1.427 15850K .......... .......... .......... .......... .......... 12% 109M 2s +2024-03-23T17:47:20Z #15 1.427 15900K .......... .......... .......... .......... .......... 12% 76.8M 2s +2024-03-23T17:47:20Z #15 1.427 15950K .......... .......... .......... .......... .......... 12% 137M 2s +2024-03-23T17:47:20Z #15 1.427 16000K .......... .......... .......... .......... .......... 12% 102M 2s +2024-03-23T17:47:20Z #15 1.428 16050K .......... .......... .......... .......... .......... 12% 133M 2s +2024-03-23T17:47:20Z #15 1.428 16100K .......... .......... .......... .......... .......... 12% 95.0M 2s +2024-03-23T17:47:20Z #15 1.429 16150K .......... .......... .......... .......... .......... 12% 127M 2s +2024-03-23T17:47:20Z #15 1.429 16200K .......... .......... .......... .......... .......... 12% 96.4M 2s +2024-03-23T17:47:20Z #15 1.430 16250K .......... .......... .......... .......... .......... 12% 150M 2s +2024-03-23T17:47:20Z #15 1.430 16300K .......... .......... .......... .......... .......... 12% 90.3M 2s +2024-03-23T17:47:20Z #15 1.431 16350K .......... .......... .......... .......... .......... 12% 91.0M 2s +2024-03-23T17:47:20Z #15 1.431 16400K .......... .......... .......... .......... .......... 12% 103M 2s +2024-03-23T17:47:20Z #15 1.431 16450K .......... .......... .......... .......... .......... 13% 149M 2s +2024-03-23T17:47:20Z #15 1.432 16500K .......... .......... .......... .......... .......... 13% 85.1M 2s +2024-03-23T17:47:20Z #15 1.433 16550K .......... .......... .......... .......... .......... 13% 105M 2s +2024-03-23T17:47:20Z #15 1.433 16600K .......... .......... .......... .......... .......... 13% 121M 2s +2024-03-23T17:47:20Z #15 1.433 16650K .......... .......... .......... .......... .......... 13% 168M 2s +2024-03-23T17:47:20Z #15 1.434 16700K .......... .......... .......... .......... .......... 13% 101M 2s +2024-03-23T17:47:20Z #15 1.435 16750K .......... .......... .......... .......... .......... 13% 108M 2s +2024-03-23T17:47:20Z #15 1.435 16800K .......... .......... .......... .......... .......... 13% 151M 2s +2024-03-23T17:47:20Z #15 1.435 16850K .......... .......... .......... .......... .......... 13% 115M 2s +2024-03-23T17:47:20Z #15 1.435 16900K .......... .......... .......... .......... .......... 13% 95.9M 2s +2024-03-23T17:47:20Z #15 1.436 16950K .......... .......... .......... .......... .......... 13% 113M 2s +2024-03-23T17:47:20Z #15 1.437 17000K .......... .......... .......... .......... .......... 13% 168M 2s +2024-03-23T17:47:20Z #15 1.437 17050K .......... .......... .......... .......... .......... 13% 168M 2s +2024-03-23T17:47:20Z #15 1.437 17100K .......... .......... .......... .......... .......... 13% 152M 2s +2024-03-23T17:47:20Z #15 1.437 17150K .......... .......... .......... .......... .......... 13% 148M 2s +2024-03-23T17:47:20Z #15 1.437 17200K .......... .......... .......... .......... .......... 13% 159M 2s +2024-03-23T17:47:20Z #15 1.438 17250K .......... .......... .......... .......... .......... 13% 174M 2s +2024-03-23T17:47:20Z #15 1.439 17300K .......... .......... .......... .......... .......... 13% 1.44M 2s +2024-03-23T17:47:20Z #15 1.473 17350K .......... .......... .......... .......... .......... 13% 132M 2s +2024-03-23T17:47:20Z #15 1.474 17400K .......... .......... .......... .......... .......... 13% 96.5M 2s +2024-03-23T17:47:20Z #15 1.474 17450K .......... .......... .......... .......... .......... 13% 53.6M 2s +2024-03-23T17:47:20Z #15 1.474 17500K .......... .......... .......... .......... .......... 13% 58.0M 2s +2024-03-23T17:47:20Z #15 1.475 17550K .......... .......... .......... .......... .......... 13% 53.0M 2s +2024-03-23T17:47:20Z #15 1.479 17600K .......... .......... .......... .......... .......... 13% 60.8M 2s +2024-03-23T17:47:20Z #15 1.479 17650K .......... .......... .......... .......... .......... 13% 132M 2s +2024-03-23T17:47:20Z #15 1.479 17700K .......... .......... .......... .......... .......... 14% 138M 2s +2024-03-23T17:47:20Z #15 1.479 17750K .......... .......... .......... .......... .......... 14% 152M 2s +2024-03-23T17:47:20Z #15 1.479 17800K .......... .......... .......... .......... .......... 14% 161M 2s +2024-03-23T17:47:20Z #15 1.479 17850K .......... .......... .......... .......... .......... 14% 157M 2s +2024-03-23T17:47:20Z #15 1.479 17900K .......... .......... .......... .......... .......... 14% 138M 2s +2024-03-23T17:47:20Z #15 1.479 17950K .......... .......... .......... .......... .......... 14% 164M 2s +2024-03-23T17:47:20Z #15 1.483 18000K .......... .......... .......... .......... .......... 14% 6.83M 2s +2024-03-23T17:47:20Z #15 1.487 18050K .......... .......... .......... .......... .......... 14% 16.4M 2s +2024-03-23T17:47:20Z #15 1.491 18100K .......... .......... .......... .......... .......... 14% 27.2M 2s +2024-03-23T17:47:20Z #15 1.491 18150K .......... .......... .......... .......... .......... 14% 66.4M 2s +2024-03-23T17:47:20Z #15 1.491 18200K .......... .......... .......... .......... .......... 14% 156M 2s +2024-03-23T17:47:20Z #15 1.492 18250K .......... .......... .......... .......... .......... 14% 141M 2s +2024-03-23T17:47:20Z #15 1.492 18300K .......... .......... .......... .......... .......... 14% 130M 2s +2024-03-23T17:47:20Z #15 1.492 18350K .......... .......... .......... .......... .......... 14% 145M 2s +2024-03-23T17:47:20Z #15 1.493 18400K .......... .......... .......... .......... .......... 14% 155M 2s +2024-03-23T17:47:20Z #15 1.493 18450K .......... .......... .......... .......... .......... 14% 152M 2s +2024-03-23T17:47:20Z #15 1.493 18500K .......... .......... .......... .......... .......... 14% 11.0M 2s +2024-03-23T17:47:20Z #15 1.498 18550K .......... .......... .......... .......... .......... 14% 142M 2s +2024-03-23T17:47:20Z #15 1.498 18600K .......... .......... .......... .......... .......... 14% 141M 2s +2024-03-23T17:47:20Z #15 1.498 18650K .......... .......... .......... .......... .......... 14% 20.0M 2s +2024-03-23T17:47:20Z #15 1.501 18700K .......... .......... .......... .......... .......... 14% 20.3M 2s +2024-03-23T17:47:20Z #15 1.504 18750K .......... .......... .......... .......... .......... 14% 23.6M 2s +2024-03-23T17:47:20Z #15 1.507 18800K .......... .......... .......... .......... .......... 14% 31.3M 2s +2024-03-23T17:47:20Z #15 1.507 18850K .......... .......... .......... .......... .......... 14% 39.4M 2s +2024-03-23T17:47:20Z #15 1.508 18900K .......... .......... .......... .......... .......... 14% 123M 2s +2024-03-23T17:47:20Z #15 1.509 18950K .......... .......... .......... .......... .......... 14% 145M 2s +2024-03-23T17:47:20Z #15 1.509 19000K .......... .......... .......... .......... .......... 15% 86.1M 2s +2024-03-23T17:47:20Z #15 1.510 19050K .......... .......... .......... .......... .......... 15% 55.4M 2s +2024-03-23T17:47:20Z #15 1.510 19100K .......... .......... .......... .......... .......... 15% 18.7M 2s +2024-03-23T17:47:20Z #15 1.515 19150K .......... .......... .......... .......... .......... 15% 138M 2s +2024-03-23T17:47:20Z #15 1.515 19200K .......... .......... .......... .......... .......... 15% 148M 2s +2024-03-23T17:47:20Z #15 1.515 19250K .......... .......... .......... .......... .......... 15% 114M 2s +2024-03-23T17:47:20Z #15 1.515 19300K .......... .......... .......... .......... .......... 15% 105M 2s +2024-03-23T17:47:20Z #15 1.515 19350K .......... .......... .......... .......... .......... 15% 17.7M 2s +2024-03-23T17:47:20Z #15 1.523 19400K .......... .......... .......... .......... .......... 15% 173M 2s +2024-03-23T17:47:20Z #15 1.523 19450K .......... .......... .......... .......... .......... 15% 128M 2s +2024-03-23T17:47:20Z #15 1.523 19500K .......... .......... .......... .......... .......... 15% 149M 2s +2024-03-23T17:47:20Z #15 1.523 19550K .......... .......... .......... .......... .......... 15% 167M 2s +2024-03-23T17:47:20Z #15 1.523 19600K .......... .......... .......... .......... .......... 15% 60.2M 2s +2024-03-23T17:47:20Z #15 1.523 19650K .......... .......... .......... .......... .......... 15% 124M 2s +2024-03-23T17:47:20Z #15 1.523 19700K .......... .......... .......... .......... .......... 15% 89.4M 2s +2024-03-23T17:47:20Z #15 1.523 19750K .......... .......... .......... .......... .......... 15% 124M 2s +2024-03-23T17:47:20Z #15 1.523 19800K .......... .......... .......... .......... .......... 15% 99.5M 2s +2024-03-23T17:47:20Z #15 1.523 19850K .......... .......... .......... .......... .......... 15% 143M 2s +2024-03-23T17:47:20Z #15 1.523 19900K .......... .......... .......... .......... .......... 15% 65.7M 2s +2024-03-23T17:47:20Z #15 1.523 19950K .......... .......... .......... .......... .......... 15% 156M 2s +2024-03-23T17:47:20Z #15 1.523 20000K .......... .......... .......... .......... .......... 15% 12.9M 2s +2024-03-23T17:47:20Z #15 1.527 20050K .......... .......... .......... .......... .......... 15% 36.4M 2s +2024-03-23T17:47:20Z #15 1.528 20100K .......... .......... .......... .......... .......... 15% 40.8M 2s +2024-03-23T17:47:20Z #15 1.531 20150K .......... .......... .......... .......... .......... 15% 139M 2s +2024-03-23T17:47:20Z #15 1.531 20200K .......... .......... .......... .......... .......... 15% 144M 2s +2024-03-23T17:47:20Z #15 1.531 20250K .......... .......... .......... .......... .......... 16% 89.2M 2s +2024-03-23T17:47:20Z #15 1.531 20300K .......... .......... .......... .......... .......... 16% 19.0M 2s +2024-03-23T17:47:20Z #15 1.534 20350K .......... .......... .......... .......... .......... 16% 19.1M 2s +2024-03-23T17:47:20Z #15 1.535 20400K .......... .......... .......... .......... .......... 16% 117M 2s +2024-03-23T17:47:20Z #15 1.536 20450K .......... .......... .......... .......... .......... 16% 117M 2s +2024-03-23T17:47:20Z #15 1.536 20500K .......... .......... .......... .......... .......... 16% 148M 2s +2024-03-23T17:47:20Z #15 1.537 20550K .......... .......... .......... .......... .......... 16% 136M 2s +2024-03-23T17:47:20Z #15 1.537 20600K .......... .......... .......... .......... .......... 16% 140M 2s +2024-03-23T17:47:20Z #15 1.537 20650K .......... .......... .......... .......... .......... 16% 134M 2s +2024-03-23T17:47:20Z #15 1.538 20700K .......... .......... .......... .......... .......... 16% 126M 2s +2024-03-23T17:47:20Z #15 1.538 20750K .......... .......... .......... .......... .......... 16% 137M 2s +2024-03-23T17:47:20Z #15 1.538 20800K .......... .......... .......... .......... .......... 16% 113M 2s +2024-03-23T17:47:20Z #15 1.539 20850K .......... .......... .......... .......... .......... 16% 154M 2s +2024-03-23T17:47:20Z #15 1.539 20900K .......... .......... .......... .......... .......... 16% 123M 2s +2024-03-23T17:47:20Z #15 1.540 20950K .......... .......... .......... .......... .......... 16% 143M 2s +2024-03-23T17:47:20Z #15 1.540 21000K .......... .......... .......... .......... .......... 16% 143M 2s +2024-03-23T17:47:20Z #15 1.540 21050K .......... .......... .......... .......... .......... 16% 152M 2s +2024-03-23T17:47:20Z #15 1.541 21100K .......... .......... .......... .......... .......... 16% 123M 2s +2024-03-23T17:47:20Z #15 1.541 21150K .......... .......... .......... .......... .......... 16% 136M 2s +2024-03-23T17:47:20Z #15 1.541 21200K .......... .......... .......... .......... .......... 16% 141M 2s +2024-03-23T17:47:20Z #15 1.543 21250K .......... .......... .......... .......... .......... 16% 141M 2s +2024-03-23T17:47:20Z #15 1.543 21300K .......... .......... .......... .......... .......... 16% 159M 2s +2024-03-23T17:47:20Z #15 1.543 21350K .......... .......... .......... .......... .......... 16% 170M 2s +2024-03-23T17:47:20Z #15 1.543 21400K .......... .......... .......... .......... .......... 16% 33.6M 2s +2024-03-23T17:47:20Z #15 1.547 21450K .......... .......... .......... .......... .......... 16% 66.8M 2s +2024-03-23T17:47:20Z #15 1.547 21500K .......... .......... .......... .......... .......... 16% 72.0M 2s +2024-03-23T17:47:20Z #15 1.547 21550K .......... .......... .......... .......... .......... 17% 64.5M 2s +2024-03-23T17:47:20Z #15 1.547 21600K .......... .......... .......... .......... .......... 17% 51.3M 2s +2024-03-23T17:47:20Z #15 1.547 21650K .......... .......... .......... .......... .......... 17% 31.3M 2s +2024-03-23T17:47:20Z #15 1.549 21700K .......... .......... .......... .......... .......... 17% 25.5M 2s +2024-03-23T17:47:20Z #15 1.551 21750K .......... .......... .......... .......... .......... 17% 15.8M 2s +2024-03-23T17:47:20Z #15 1.554 21800K .......... .......... .......... .......... .......... 17% 67.4M 2s +2024-03-23T17:47:20Z #15 1.554 21850K .......... .......... .......... .......... .......... 17% 90.1M 2s +2024-03-23T17:47:20Z #15 1.555 21900K .......... .......... .......... .......... .......... 17% 80.8M 2s +2024-03-23T17:47:20Z #15 1.559 21950K .......... .......... .......... .......... .......... 17% 119M 2s +2024-03-23T17:47:20Z #15 1.559 22000K .......... .......... .......... .......... .......... 17% 143M 2s +2024-03-23T17:47:20Z #15 1.559 22050K .......... .......... .......... .......... .......... 17% 128M 2s +2024-03-23T17:47:20Z #15 1.559 22100K .......... .......... .......... .......... .......... 17% 139M 2s +2024-03-23T17:47:20Z #15 1.559 22150K .......... .......... .......... .......... .......... 17% 125M 2s +2024-03-23T17:47:20Z #15 1.559 22200K .......... .......... .......... .......... .......... 17% 145M 2s +2024-03-23T17:47:20Z #15 1.559 22250K .......... .......... .......... .......... .......... 17% 115M 2s +2024-03-23T17:47:20Z #15 1.559 22300K .......... .......... .......... .......... .......... 17% 125M 2s +2024-03-23T17:47:20Z #15 1.559 22350K .......... .......... .......... .......... .......... 17% 95.2M 2s +2024-03-23T17:47:20Z #15 1.559 22400K .......... .......... .......... .......... .......... 17% 114M 2s +2024-03-23T17:47:20Z #15 1.559 22450K .......... .......... .......... .......... .......... 17% 144M 2s +2024-03-23T17:47:20Z #15 1.560 22500K .......... .......... .......... .......... .......... 17% 139M 2s +2024-03-23T17:47:20Z #15 1.560 22550K .......... .......... .......... .......... .......... 17% 131M 2s +2024-03-23T17:47:20Z #15 1.561 22600K .......... .......... .......... .......... .......... 17% 153M 2s +2024-03-23T17:47:20Z #15 1.561 22650K .......... .......... .......... .......... .......... 17% 123M 2s +2024-03-23T17:47:20Z #15 1.561 22700K .......... .......... .......... .......... .......... 17% 142M 2s +2024-03-23T17:47:20Z #15 1.562 22750K .......... .......... .......... .......... .......... 17% 156M 2s +2024-03-23T17:47:20Z #15 1.563 22800K .......... .......... .......... .......... .......... 18% 128M 2s +2024-03-23T17:47:20Z #15 1.563 22850K .......... .......... .......... .......... .......... 18% 142M 2s +2024-03-23T17:47:20Z #15 1.563 22900K .......... .......... .......... .......... .......... 18% 49.3M 2s +2024-03-23T17:47:20Z #15 1.564 22950K .......... .......... .......... .......... .......... 18% 119M 2s +2024-03-23T17:47:20Z #15 1.564 23000K .......... .......... .......... .......... .......... 18% 142M 2s +2024-03-23T17:47:20Z #15 1.564 23050K .......... .......... .......... .......... .......... 18% 109M 2s +2024-03-23T17:47:20Z #15 1.565 23100K .......... .......... .......... .......... .......... 18% 155M 2s +2024-03-23T17:47:20Z #15 1.565 23150K .......... .......... .......... .......... .......... 18% 139M 2s +2024-03-23T17:47:20Z #15 1.566 23200K .......... .......... .......... .......... .......... 18% 130M 2s +2024-03-23T17:47:20Z #15 1.566 23250K .......... .......... .......... .......... .......... 18% 143M 2s +2024-03-23T17:47:20Z #15 1.566 23300K .......... .......... .......... .......... .......... 18% 148M 2s +2024-03-23T17:47:20Z #15 1.567 23350K .......... .......... .......... .......... .......... 18% 111M 2s +2024-03-23T17:47:20Z #15 1.567 23400K .......... .......... .......... .......... .......... 18% 151M 2s +2024-03-23T17:47:20Z #15 1.568 23450K .......... .......... .......... .......... .......... 18% 120M 2s +2024-03-23T17:47:20Z #15 1.568 23500K .......... .......... .......... .......... .......... 18% 138M 2s +2024-03-23T17:47:20Z #15 1.568 23550K .......... .......... .......... .......... .......... 18% 122M 2s +2024-03-23T17:47:20Z #15 1.568 23600K .......... .......... .......... .......... .......... 18% 144M 2s +2024-03-23T17:47:20Z #15 1.569 23650K .......... .......... .......... .......... .......... 18% 134M 2s +2024-03-23T17:47:20Z #15 1.569 23700K .......... .......... .......... .......... .......... 18% 128M 2s +2024-03-23T17:47:20Z #15 1.570 23750K .......... .......... .......... .......... .......... 18% 157M 2s +2024-03-23T17:47:20Z #15 1.570 23800K .......... .......... .......... .......... .......... 18% 149M 2s +2024-03-23T17:47:20Z #15 1.570 23850K .......... .......... .......... .......... .......... 18% 140M 2s +2024-03-23T17:47:20Z #15 1.570 23900K .......... .......... .......... .......... .......... 18% 130M 2s +2024-03-23T17:47:20Z #15 1.571 23950K .......... .......... .......... .......... .......... 18% 130M 2s +2024-03-23T17:47:20Z #15 1.571 24000K .......... .......... .......... .......... .......... 18% 129M 2s +2024-03-23T17:47:20Z #15 1.572 24050K .......... .......... .......... .......... .......... 19% 144M 2s +2024-03-23T17:47:20Z #15 1.572 24100K .......... .......... .......... .......... .......... 19% 20.3M 2s +2024-03-23T17:47:20Z #15 1.575 24150K .......... .......... .......... .......... .......... 19% 58.5M 2s +2024-03-23T17:47:20Z #15 1.575 24200K .......... .......... .......... .......... .......... 19% 69.8M 2s +2024-03-23T17:47:20Z #15 1.576 24250K .......... .......... .......... .......... .......... 19% 85.2M 2s +2024-03-23T17:47:20Z #15 1.577 24300K .......... .......... .......... .......... .......... 19% 153M 2s +2024-03-23T17:47:20Z #15 1.577 24350K .......... .......... .......... .......... .......... 19% 136M 2s +2024-03-23T17:47:20Z #15 1.577 24400K .......... .......... .......... .......... .......... 19% 146M 2s +2024-03-23T17:47:20Z #15 1.578 24450K .......... .......... .......... .......... .......... 19% 152M 2s +2024-03-23T17:47:20Z #15 1.578 24500K .......... .......... .......... .......... .......... 19% 138M 2s +2024-03-23T17:47:20Z #15 1.578 24550K .......... .......... .......... .......... .......... 19% 124M 2s +2024-03-23T17:47:20Z #15 1.579 24600K .......... .......... .......... .......... .......... 19% 87.6M 2s +2024-03-23T17:47:20Z #15 1.579 24650K .......... .......... .......... .......... .......... 19% 76.9M 2s +2024-03-23T17:47:20Z #15 1.583 24700K .......... .......... .......... .......... .......... 19% 47.3M 2s +2024-03-23T17:47:20Z #15 1.583 24750K .......... .......... .......... .......... .......... 19% 45.2M 2s +2024-03-23T17:47:20Z #15 1.583 24800K .......... .......... .......... .......... .......... 19% 53.0M 2s +2024-03-23T17:47:20Z #15 1.583 24850K .......... .......... .......... .......... .......... 19% 132M 2s +2024-03-23T17:47:20Z #15 1.583 24900K .......... .......... .......... .......... .......... 19% 158M 2s +2024-03-23T17:47:20Z #15 1.584 24950K .......... .......... .......... .......... .......... 19% 118M 2s +2024-03-23T17:47:20Z #15 1.584 25000K .......... .......... .......... .......... .......... 19% 138M 2s +2024-03-23T17:47:20Z #15 1.584 25050K .......... .......... .......... .......... .......... 19% 167M 2s +2024-03-23T17:47:20Z #15 1.585 25100K .......... .......... .......... .......... .......... 19% 140M 2s +2024-03-23T17:47:20Z #15 1.585 25150K .......... .......... .......... .......... .......... 19% 136M 2s +2024-03-23T17:47:20Z #15 1.585 25200K .......... .......... .......... .......... .......... 19% 168M 2s +2024-03-23T17:47:20Z #15 1.586 25250K .......... .......... .......... .......... .......... 19% 134M 2s +2024-03-23T17:47:20Z #15 1.586 25300K .......... .......... .......... .......... .......... 19% 140M 2s +2024-03-23T17:47:20Z #15 1.586 25350K .......... .......... .......... .......... .......... 20% 39.6M 2s +2024-03-23T17:47:20Z #15 1.591 25400K .......... .......... .......... .......... .......... 20% 90.1M 2s +2024-03-23T17:47:20Z #15 1.591 25450K .......... .......... .......... .......... .......... 20% 148M 2s +2024-03-23T17:47:20Z #15 1.591 25500K .......... .......... .......... .......... .......... 20% 143M 2s +2024-03-23T17:47:20Z #15 1.591 25550K .......... .......... .......... .......... .......... 20% 159M 2s +2024-03-23T17:47:20Z #15 1.591 25600K .......... .......... .......... .......... .......... 20% 157M 2s +2024-03-23T17:47:20Z #15 1.591 25650K .......... .......... .......... .......... .......... 20% 148M 2s +2024-03-23T17:47:20Z #15 1.591 25700K .......... .......... .......... .......... .......... 20% 128M 2s +2024-03-23T17:47:20Z #15 1.591 25750K .......... .......... .......... .......... .......... 20% 158M 2s +2024-03-23T17:47:20Z #15 1.591 25800K .......... .......... .......... .......... .......... 20% 119M 2s +2024-03-23T17:47:20Z #15 1.591 25850K .......... .......... .......... .......... .......... 20% 32.5M 2s +2024-03-23T17:47:20Z #15 1.592 25900K .......... .......... .......... .......... .......... 20% 21.7M 2s +2024-03-23T17:47:20Z #15 1.595 25950K .......... .......... .......... .......... .......... 20% 38.2M 2s +2024-03-23T17:47:20Z #15 1.596 26000K .......... .......... .......... .......... .......... 20% 61.0M 2s +2024-03-23T17:47:20Z #15 1.597 26050K .......... .......... .......... .......... .......... 20% 43.3M 2s +2024-03-23T17:47:20Z #15 1.598 26100K .......... .......... .......... .......... .......... 20% 70.7M 2s +2024-03-23T17:47:20Z #15 1.599 26150K .......... .......... .......... .......... .......... 20% 31.0M 2s +2024-03-23T17:47:20Z #15 1.600 26200K .......... .......... .......... .......... .......... 20% 78.7M 2s +2024-03-23T17:47:20Z #15 1.601 26250K .......... .......... .......... .......... .......... 20% 44.9M 2s +2024-03-23T17:47:20Z #15 1.602 26300K .......... .......... .......... .......... .......... 20% 128M 2s +2024-03-23T17:47:20Z #15 1.602 26350K .......... .......... .......... .......... .......... 20% 131M 2s +2024-03-23T17:47:20Z #15 1.602 26400K .......... .......... .......... .......... .......... 20% 114M 2s +2024-03-23T17:47:20Z #15 1.603 26450K .......... .......... .......... .......... .......... 20% 110M 2s +2024-03-23T17:47:20Z #15 1.603 26500K .......... .......... .......... .......... .......... 20% 139M 2s +2024-03-23T17:47:20Z #15 1.604 26550K .......... .......... .......... .......... .......... 20% 146M 2s +2024-03-23T17:47:20Z #15 1.604 26600K .......... .......... .......... .......... .......... 21% 107M 2s +2024-03-23T17:47:20Z #15 1.604 26650K .......... .......... .......... .......... .......... 21% 135M 2s +2024-03-23T17:47:20Z #15 1.605 26700K .......... .......... .......... .......... .......... 21% 146M 2s +2024-03-23T17:47:20Z #15 1.605 26750K .......... .......... .......... .......... .......... 21% 145M 2s +2024-03-23T17:47:20Z #15 1.606 26800K .......... .......... .......... .......... .......... 21% 124M 2s +2024-03-23T17:47:20Z #15 1.606 26850K .......... .......... .......... .......... .......... 21% 125M 2s +2024-03-23T17:47:20Z #15 1.606 26900K .......... .......... .......... .......... .......... 21% 136M 2s +2024-03-23T17:47:20Z #15 1.607 26950K .......... .......... .......... .......... .......... 21% 90.0M 2s +2024-03-23T17:47:20Z #15 1.607 27000K .......... .......... .......... .......... .......... 21% 152M 2s +2024-03-23T17:47:20Z #15 1.608 27050K .......... .......... .......... .......... .......... 21% 146M 2s +2024-03-23T17:47:20Z #15 1.608 27100K .......... .......... .......... .......... .......... 21% 154M 2s +2024-03-23T17:47:20Z #15 1.608 27150K .......... .......... .......... .......... .......... 21% 149M 2s +2024-03-23T17:47:20Z #15 1.609 27200K .......... .......... .......... .......... .......... 21% 143M 2s +2024-03-23T17:47:20Z #15 1.615 27250K .......... .......... .......... .......... .......... 21% 172M 2s +2024-03-23T17:47:20Z #15 1.615 27300K .......... .......... .......... .......... .......... 21% 115M 2s +2024-03-23T17:47:20Z #15 1.615 27350K .......... .......... .......... .......... .......... 21% 129M 2s +2024-03-23T17:47:20Z #15 1.615 27400K .......... .......... .......... .......... .......... 21% 155M 1s +2024-03-23T17:47:20Z #15 1.615 27450K .......... .......... .......... .......... .......... 21% 153M 1s +2024-03-23T17:47:20Z #15 1.615 27500K .......... .......... .......... .......... .......... 21% 128M 1s +2024-03-23T17:47:20Z #15 1.615 27550K .......... .......... .......... .......... .......... 21% 137M 1s +2024-03-23T17:47:20Z #15 1.615 27600K .......... .......... .......... .......... .......... 21% 157M 1s +2024-03-23T17:47:20Z #15 1.615 27650K .......... .......... .......... .......... .......... 21% 154M 1s +2024-03-23T17:47:20Z #15 1.615 27700K .......... .......... .......... .......... .......... 21% 118M 1s +2024-03-23T17:47:20Z #15 1.615 27750K .......... .......... .......... .......... .......... 21% 151M 1s +2024-03-23T17:47:20Z #15 1.615 27800K .......... .......... .......... .......... .......... 21% 163M 1s +2024-03-23T17:47:20Z #15 1.615 27850K .......... .......... .......... .......... .......... 22% 158M 1s +2024-03-23T17:47:20Z #15 1.615 27900K .......... .......... .......... .......... .......... 22% 166M 1s +2024-03-23T17:47:20Z #15 1.615 27950K .......... .......... .......... .......... .......... 22% 156M 1s +2024-03-23T17:47:20Z #15 1.615 28000K .......... .......... .......... .......... .......... 22% 140M 1s +2024-03-23T17:47:20Z #15 1.615 28050K .......... .......... .......... .......... .......... 22% 172M 1s +2024-03-23T17:47:20Z #15 1.615 28100K .......... .......... .......... .......... .......... 22% 104M 1s +2024-03-23T17:47:20Z #15 1.615 28150K .......... .......... .......... .......... .......... 22% 122M 1s +2024-03-23T17:47:20Z #15 1.615 28200K .......... .......... .......... .......... .......... 22% 164M 1s +2024-03-23T17:47:20Z #15 1.616 28250K .......... .......... .......... .......... .......... 22% 148M 1s +2024-03-23T17:47:20Z #15 1.616 28300K .......... .......... .......... .......... .......... 22% 142M 1s +2024-03-23T17:47:20Z #15 1.616 28350K .......... .......... .......... .......... .......... 22% 155M 1s +2024-03-23T17:47:20Z #15 1.617 28400K .......... .......... .......... .......... .......... 22% 145M 1s +2024-03-23T17:47:20Z #15 1.617 28450K .......... .......... .......... .......... .......... 22% 131M 1s +2024-03-23T17:47:20Z #15 1.617 28500K .......... .......... .......... .......... .......... 22% 142M 1s +2024-03-23T17:47:20Z #15 1.618 28550K .......... .......... .......... .......... .......... 22% 150M 1s +2024-03-23T17:47:20Z #15 1.618 28600K .......... .......... .......... .......... .......... 22% 160M 1s +2024-03-23T17:47:20Z #15 1.618 28650K .......... .......... .......... .......... .......... 22% 107M 1s +2024-03-23T17:47:20Z #15 1.619 28700K .......... .......... .......... .......... .......... 22% 156M 1s +2024-03-23T17:47:20Z #15 1.619 28750K .......... .......... .......... .......... .......... 22% 149M 1s +2024-03-23T17:47:20Z #15 1.619 28800K .......... .......... .......... .......... .......... 22% 153M 1s +2024-03-23T17:47:20Z #15 1.620 28850K .......... .......... .......... .......... .......... 22% 130M 1s +2024-03-23T17:47:20Z #15 1.620 28900K .......... .......... .......... .......... .......... 22% 149M 1s +2024-03-23T17:47:20Z #15 1.620 28950K .......... .......... .......... .......... .......... 22% 170M 1s +2024-03-23T17:47:20Z #15 1.621 29000K .......... .......... .......... .......... .......... 22% 165M 1s +2024-03-23T17:47:20Z #15 1.621 29050K .......... .......... .......... .......... .......... 22% 122M 1s +2024-03-23T17:47:20Z #15 1.621 29100K .......... .......... .......... .......... .......... 22% 151M 1s +2024-03-23T17:47:20Z #15 1.622 29150K .......... .......... .......... .......... .......... 23% 158M 1s +2024-03-23T17:47:20Z #15 1.622 29200K .......... .......... .......... .......... .......... 23% 124M 1s +2024-03-23T17:47:20Z #15 1.624 29250K .......... .......... .......... .......... .......... 23% 136M 1s +2024-03-23T17:47:20Z #15 1.624 29300K .......... .......... .......... .......... .......... 23% 146M 1s +2024-03-23T17:47:20Z #15 1.624 29350K .......... .......... .......... .......... .......... 23% 149M 1s +2024-03-23T17:47:20Z #15 1.624 29400K .......... .......... .......... .......... .......... 23% 130M 1s +2024-03-23T17:47:20Z #15 1.624 29450K .......... .......... .......... .......... .......... 23% 122M 1s +2024-03-23T17:47:20Z #15 1.624 29500K .......... .......... .......... .......... .......... 23% 168M 1s +2024-03-23T17:47:20Z #15 1.625 29550K .......... .......... .......... .......... .......... 23% 156M 1s +2024-03-23T17:47:20Z #15 1.625 29600K .......... .......... .......... .......... .......... 23% 129M 1s +2024-03-23T17:47:20Z #15 1.625 29650K .......... .......... .......... .......... .......... 23% 118M 1s +2024-03-23T17:47:20Z #15 1.626 29700K .......... .......... .......... .......... .......... 23% 151M 1s +2024-03-23T17:47:20Z #15 1.626 29750K .......... .......... .......... .......... .......... 23% 135M 1s +2024-03-23T17:47:20Z #15 1.626 29800K .......... .......... .......... .......... .......... 23% 122M 1s +2024-03-23T17:47:20Z #15 1.627 29850K .......... .......... .......... .......... .......... 23% 61.4M 1s +2024-03-23T17:47:20Z #15 1.629 29900K .......... .......... .......... .......... .......... 23% 120M 1s +2024-03-23T17:47:20Z #15 1.629 29950K .......... .......... .......... .......... .......... 23% 103M 1s +2024-03-23T17:47:20Z #15 1.629 30000K .......... .......... .......... .......... .......... 23% 147M 1s +2024-03-23T17:47:20Z #15 1.629 30050K .......... .......... .......... .......... .......... 23% 141M 1s +2024-03-23T17:47:20Z #15 1.629 30100K .......... .......... .......... .......... .......... 23% 87.0M 1s +2024-03-23T17:47:20Z #15 1.630 30150K .......... .......... .......... .......... .......... 23% 56.1M 1s +2024-03-23T17:47:20Z #15 1.631 30200K .......... .......... .......... .......... .......... 23% 95.9M 1s +2024-03-23T17:47:20Z #15 1.631 30250K .......... .......... .......... .......... .......... 23% 41.1M 1s +2024-03-23T17:47:20Z #15 1.632 30300K .......... .......... .......... .......... .......... 23% 42.4M 1s +2024-03-23T17:47:20Z #15 1.633 30350K .......... .......... .......... .......... .......... 23% 40.2M 1s +2024-03-23T17:47:20Z #15 1.635 30400K .......... .......... .......... .......... .......... 24% 79.7M 1s +2024-03-23T17:47:20Z #15 1.636 30450K .......... .......... .......... .......... .......... 24% 65.4M 1s +2024-03-23T17:47:20Z #15 1.636 30500K .......... .......... .......... .......... .......... 24% 63.9M 1s +2024-03-23T17:47:20Z #15 1.640 30550K .......... .......... .......... .......... .......... 24% 173M 1s +2024-03-23T17:47:20Z #15 1.640 30600K .......... .......... .......... .......... .......... 24% 153M 1s +2024-03-23T17:47:20Z #15 1.640 30650K .......... .......... .......... .......... .......... 24% 132M 1s +2024-03-23T17:47:20Z #15 1.640 30700K .......... .......... .......... .......... .......... 24% 158M 1s +2024-03-23T17:47:20Z #15 1.640 30750K .......... .......... .......... .......... .......... 24% 151M 1s +2024-03-23T17:47:20Z #15 1.640 30800K .......... .......... .......... .......... .......... 24% 157M 1s +2024-03-23T17:47:20Z #15 1.640 30850K .......... .......... .......... .......... .......... 24% 91.6M 1s +2024-03-23T17:47:20Z #15 1.640 30900K .......... .......... .......... .......... .......... 24% 70.4M 1s +2024-03-23T17:47:20Z #15 1.640 30950K .......... .......... .......... .......... .......... 24% 154M 1s +2024-03-23T17:47:20Z #15 1.640 31000K .......... .......... .......... .......... .......... 24% 152M 1s +2024-03-23T17:47:20Z #15 1.641 31050K .......... .......... .......... .......... .......... 24% 119M 1s +2024-03-23T17:47:20Z #15 1.641 31100K .......... .......... .......... .......... .......... 24% 158M 1s +2024-03-23T17:47:20Z #15 1.641 31150K .......... .......... .......... .......... .......... 24% 123M 1s +2024-03-23T17:47:20Z #15 1.642 31200K .......... .......... .......... .......... .......... 24% 142M 1s +2024-03-23T17:47:20Z #15 1.642 31250K .......... .......... .......... .......... .......... 24% 153M 1s +2024-03-23T17:47:20Z #15 1.643 31300K .......... .......... .......... .......... .......... 24% 142M 1s +2024-03-23T17:47:20Z #15 1.643 31350K .......... .......... .......... .......... .......... 24% 106M 1s +2024-03-23T17:47:20Z #15 1.644 31400K .......... .......... .......... .......... .......... 24% 153M 1s +2024-03-23T17:47:20Z #15 1.644 31450K .......... .......... .......... .......... .......... 24% 144M 1s +2024-03-23T17:47:20Z #15 1.644 31500K .......... .......... .......... .......... .......... 24% 134M 1s +2024-03-23T17:47:20Z #15 1.644 31550K .......... .......... .......... .......... .......... 24% 153M 1s +2024-03-23T17:47:20Z #15 1.645 31600K .......... .......... .......... .......... .......... 24% 120M 1s +2024-03-23T17:47:20Z #15 1.645 31650K .......... .......... .......... .......... .......... 25% 165M 1s +2024-03-23T17:47:20Z #15 1.645 31700K .......... .......... .......... .......... .......... 25% 88.4M 1s +2024-03-23T17:47:20Z #15 1.646 31750K .......... .......... .......... .......... .......... 25% 143M 1s +2024-03-23T17:47:20Z #15 1.646 31800K .......... .......... .......... .......... .......... 25% 135M 1s +2024-03-23T17:47:20Z #15 1.647 31850K .......... .......... .......... .......... .......... 25% 131M 1s +2024-03-23T17:47:20Z #15 1.647 31900K .......... .......... .......... .......... .......... 25% 112M 1s +2024-03-23T17:47:20Z #15 1.647 31950K .......... .......... .......... .......... .......... 25% 155M 1s +2024-03-23T17:47:20Z #15 1.647 32000K .......... .......... .......... .......... .......... 25% 140M 1s +2024-03-23T17:47:20Z #15 1.648 32050K .......... .......... .......... .......... .......... 25% 121M 1s +2024-03-23T17:47:20Z #15 1.648 32100K .......... .......... .......... .......... .......... 25% 151M 1s +2024-03-23T17:47:20Z #15 1.649 32150K .......... .......... .......... .......... .......... 25% 140M 1s +2024-03-23T17:47:20Z #15 1.649 32200K .......... .......... .......... .......... .......... 25% 159M 1s +2024-03-23T17:47:20Z #15 1.649 32250K .......... .......... .......... .......... .......... 25% 124M 1s +2024-03-23T17:47:20Z #15 1.650 32300K .......... .......... .......... .......... .......... 25% 145M 1s +2024-03-23T17:47:20Z #15 1.656 32350K .......... .......... .......... .......... .......... 25% 139M 1s +2024-03-23T17:47:20Z #15 1.656 32400K .......... .......... .......... .......... .......... 25% 152M 1s +2024-03-23T17:47:20Z #15 1.656 32450K .......... .......... .......... .......... .......... 25% 115M 1s +2024-03-23T17:47:20Z #15 1.656 32500K .......... .......... .......... .......... .......... 25% 145M 1s +2024-03-23T17:47:20Z #15 1.656 32550K .......... .......... .......... .......... .......... 25% 150M 1s +2024-03-23T17:47:20Z #15 1.656 32600K .......... .......... .......... .......... .......... 25% 166M 1s +2024-03-23T17:47:20Z #15 1.656 32650K .......... .......... .......... .......... .......... 25% 131M 1s +2024-03-23T17:47:20Z #15 1.656 32700K .......... .......... .......... .......... .......... 25% 164M 1s +2024-03-23T17:47:20Z #15 1.656 32750K .......... .......... .......... .......... .......... 25% 157M 1s +2024-03-23T17:47:20Z #15 1.656 32800K .......... .......... .......... .......... .......... 25% 168M 1s +2024-03-23T17:47:20Z #15 1.656 32850K .......... .......... .......... .......... .......... 25% 138M 1s +2024-03-23T17:47:20Z #15 1.656 32900K .......... .......... .......... .......... .......... 25% 159M 1s +2024-03-23T17:47:20Z #15 1.656 32950K .......... .......... .......... .......... .......... 26% 160M 1s +2024-03-23T17:47:20Z #15 1.656 33000K .......... .......... .......... .......... .......... 26% 154M 1s +2024-03-23T17:47:20Z #15 1.656 33050K .......... .......... .......... .......... .......... 26% 89.2M 1s +2024-03-23T17:47:20Z #15 1.656 33100K .......... .......... .......... .......... .......... 26% 149M 1s +2024-03-23T17:47:20Z #15 1.656 33150K .......... .......... .......... .......... .......... 26% 149M 1s +2024-03-23T17:47:20Z #15 1.656 33200K .......... .......... .......... .......... .......... 26% 147M 1s +2024-03-23T17:47:20Z #15 1.656 33250K .......... .......... .......... .......... .......... 26% 129M 1s +2024-03-23T17:47:20Z #15 1.656 33300K .......... .......... .......... .......... .......... 26% 150M 1s +2024-03-23T17:47:20Z #15 1.657 33350K .......... .......... .......... .......... .......... 26% 132M 1s +2024-03-23T17:47:20Z #15 1.657 33400K .......... .......... .......... .......... .......... 26% 142M 1s +2024-03-23T17:47:20Z #15 1.658 33450K .......... .......... .......... .......... .......... 26% 143M 1s +2024-03-23T17:47:20Z #15 1.658 33500K .......... .......... .......... .......... .......... 26% 146M 1s +2024-03-23T17:47:20Z #15 1.658 33550K .......... .......... .......... .......... .......... 26% 130M 1s +2024-03-23T17:47:20Z #15 1.659 33600K .......... .......... .......... .......... .......... 26% 105M 1s +2024-03-23T17:47:20Z #15 1.659 33650K .......... .......... .......... .......... .......... 26% 144M 1s +2024-03-23T17:47:20Z #15 1.659 33700K .......... .......... .......... .......... .......... 26% 151M 1s +2024-03-23T17:47:20Z #15 1.660 33750K .......... .......... .......... .......... .......... 26% 132M 1s +2024-03-23T17:47:20Z #15 1.660 33800K .......... .......... .......... .......... .......... 26% 155M 1s +2024-03-23T17:47:20Z #15 1.661 33850K .......... .......... .......... .......... .......... 26% 154M 1s +2024-03-23T17:47:20Z #15 1.661 33900K .......... .......... .......... .......... .......... 26% 122M 1s +2024-03-23T17:47:20Z #15 1.661 33950K .......... .......... .......... .......... .......... 26% 163M 1s +2024-03-23T17:47:20Z #15 1.661 34000K .......... .......... .......... .......... .......... 26% 136M 1s +2024-03-23T17:47:20Z #15 1.662 34050K .......... .......... .......... .......... .......... 26% 148M 1s +2024-03-23T17:47:20Z #15 1.662 34100K .......... .......... .......... .......... .......... 26% 163M 1s +2024-03-23T17:47:20Z #15 1.662 34150K .......... .......... .......... .......... .......... 26% 127M 1s +2024-03-23T17:47:20Z #15 1.663 34200K .......... .......... .......... .......... .......... 27% 120M 1s +2024-03-23T17:47:20Z #15 1.663 34250K .......... .......... .......... .......... .......... 27% 162M 1s +2024-03-23T17:47:20Z #15 1.664 34300K .......... .......... .......... .......... .......... 27% 145M 1s +2024-03-23T17:47:20Z #15 1.664 34350K .......... .......... .......... .......... .......... 27% 147M 1s +2024-03-23T17:47:20Z #15 1.664 34400K .......... .......... .......... .......... .......... 27% 165M 1s +2024-03-23T17:47:20Z #15 1.664 34450K .......... .......... .......... .......... .......... 27% 168M 1s +2024-03-23T17:47:20Z #15 1.665 34500K .......... .......... .......... .......... .......... 27% 137M 1s +2024-03-23T17:47:20Z #15 1.665 34550K .......... .......... .......... .......... .......... 27% 159M 1s +2024-03-23T17:47:20Z #15 1.665 34600K .......... .......... .......... .......... .......... 27% 146M 1s +2024-03-23T17:47:20Z #15 1.666 34650K .......... .......... .......... .......... .......... 27% 164M 1s +2024-03-23T17:47:20Z #15 1.667 34700K .......... .......... .......... .......... .......... 27% 3.59M 1s +2024-03-23T17:47:20Z #15 1.680 34750K .......... .......... .......... .......... .......... 27% 50.0M 1s +2024-03-23T17:47:20Z #15 1.681 34800K .......... .......... .......... .......... .......... 27% 67.2M 1s +2024-03-23T17:47:20Z #15 1.682 34850K .......... .......... .......... .......... .......... 27% 80.9M 1s +2024-03-23T17:47:20Z #15 1.682 34900K .......... .......... .......... .......... .......... 27% 84.6M 1s +2024-03-23T17:47:20Z #15 1.687 34950K .......... .......... .......... .......... .......... 27% 56.6M 1s +2024-03-23T17:47:20Z #15 1.687 35000K .......... .......... .......... .......... .......... 27% 66.0M 1s +2024-03-23T17:47:20Z #15 1.687 35050K .......... .......... .......... .......... .......... 27% 73.1M 1s +2024-03-23T17:47:20Z #15 1.687 35100K .......... .......... .......... .......... .......... 27% 63.7M 1s +2024-03-23T17:47:20Z #15 1.687 35150K .......... .......... .......... .......... .......... 27% 124M 1s +2024-03-23T17:47:20Z #15 1.687 35200K .......... .......... .......... .......... .......... 27% 108M 1s +2024-03-23T17:47:20Z #15 1.687 35250K .......... .......... .......... .......... .......... 27% 148M 1s +2024-03-23T17:47:20Z #15 1.687 35300K .......... .......... .......... .......... .......... 27% 150M 1s +2024-03-23T17:47:20Z #15 1.687 35350K .......... .......... .......... .......... .......... 27% 153M 1s +2024-03-23T17:47:20Z #15 1.687 35400K .......... .......... .......... .......... .......... 27% 120M 1s +2024-03-23T17:47:20Z #15 1.688 35450K .......... .......... .......... .......... .......... 28% 99.1M 1s +2024-03-23T17:47:20Z #15 1.688 35500K .......... .......... .......... .......... .......... 28% 122M 1s +2024-03-23T17:47:20Z #15 1.689 35550K .......... .......... .......... .......... .......... 28% 140M 1s +2024-03-23T17:47:20Z #15 1.689 35600K .......... .......... .......... .......... .......... 28% 152M 1s +2024-03-23T17:47:20Z #15 1.690 35650K .......... .......... .......... .......... .......... 28% 134M 1s +2024-03-23T17:47:20Z #15 1.690 35700K .......... .......... .......... .......... .......... 28% 150M 1s +2024-03-23T17:47:20Z #15 1.691 35750K .......... .......... .......... .......... .......... 28% 138M 1s +2024-03-23T17:47:20Z #15 1.691 35800K .......... .......... .......... .......... .......... 28% 122M 1s +2024-03-23T17:47:20Z #15 1.691 35850K .......... .......... .......... .......... .......... 28% 135M 1s +2024-03-23T17:47:20Z #15 1.691 35900K .......... .......... .......... .......... .......... 28% 130M 1s +2024-03-23T17:47:20Z #15 1.692 35950K .......... .......... .......... .......... .......... 28% 159M 1s +2024-03-23T17:47:20Z #15 1.692 36000K .......... .......... .......... .......... .......... 28% 150M 1s +2024-03-23T17:47:20Z #15 1.692 36050K .......... .......... .......... .......... .......... 28% 138M 1s +2024-03-23T17:47:20Z #15 1.693 36100K .......... .......... .......... .......... .......... 28% 157M 1s +2024-03-23T17:47:20Z #15 1.694 36150K .......... .......... .......... .......... .......... 28% 137M 1s +2024-03-23T17:47:20Z #15 1.694 36200K .......... .......... .......... .......... .......... 28% 149M 1s +2024-03-23T17:47:20Z #15 1.694 36250K .......... .......... .......... .......... .......... 28% 151M 1s +2024-03-23T17:47:20Z #15 1.694 36300K .......... .......... .......... .......... .......... 28% 134M 1s +2024-03-23T17:47:20Z #15 1.695 36350K .......... .......... .......... .......... .......... 28% 140M 1s +2024-03-23T17:47:20Z #15 1.695 36400K .......... .......... .......... .......... .......... 28% 63.6M 1s +2024-03-23T17:47:20Z #15 1.696 36450K .......... .......... .......... .......... .......... 28% 92.0M 1s +2024-03-23T17:47:20Z #15 1.696 36500K .......... .......... .......... .......... .......... 28% 82.4M 1s +2024-03-23T17:47:20Z #15 1.696 36550K .......... .......... .......... .......... .......... 28% 84.8M 1s +2024-03-23T17:47:20Z #15 1.697 36600K .......... .......... .......... .......... .......... 28% 8.05M 1s +2024-03-23T17:47:20Z #15 1.703 36650K .......... .......... .......... .......... .......... 28% 143M 1s +2024-03-23T17:47:20Z #15 1.703 36700K .......... .......... .......... .......... .......... 28% 133M 1s +2024-03-23T17:47:20Z #15 1.704 36750K .......... .......... .......... .......... .......... 29% 108M 1s +2024-03-23T17:47:20Z #15 1.705 36800K .......... .......... .......... .......... .......... 29% 173M 1s +2024-03-23T17:47:20Z #15 1.705 36850K .......... .......... .......... .......... .......... 29% 125M 1s +2024-03-23T17:47:20Z #15 1.705 36900K .......... .......... .......... .......... .......... 29% 124M 1s +2024-03-23T17:47:20Z #15 1.706 36950K .......... .......... .......... .......... .......... 29% 124M 1s +2024-03-23T17:47:20Z #15 1.706 37000K .......... .......... .......... .......... .......... 29% 118M 1s +2024-03-23T17:47:20Z #15 1.706 37050K .......... .......... .......... .......... .......... 29% 134M 1s +2024-03-23T17:47:20Z #15 1.706 37100K .......... .......... .......... .......... .......... 29% 150M 1s +2024-03-23T17:47:20Z #15 1.707 37150K .......... .......... .......... .......... .......... 29% 135M 1s +2024-03-23T17:47:20Z #15 1.707 37200K .......... .......... .......... .......... .......... 29% 142M 1s +2024-03-23T17:47:20Z #15 1.707 37250K .......... .......... .......... .......... .......... 29% 121M 1s +2024-03-23T17:47:20Z #15 1.708 37300K .......... .......... .......... .......... .......... 29% 138M 1s +2024-03-23T17:47:20Z #15 1.708 37350K .......... .......... .......... .......... .......... 29% 158M 1s +2024-03-23T17:47:20Z #15 1.709 37400K .......... .......... .......... .......... .......... 29% 130M 1s +2024-03-23T17:47:20Z #15 1.709 37450K .......... .......... .......... .......... .......... 29% 129M 1s +2024-03-23T17:47:20Z #15 1.709 37500K .......... .......... .......... .......... .......... 29% 156M 1s +2024-03-23T17:47:20Z #15 1.710 37550K .......... .......... .......... .......... .......... 29% 136M 1s +2024-03-23T17:47:20Z #15 1.710 37600K .......... .......... .......... .......... .......... 29% 139M 1s +2024-03-23T17:47:20Z #15 1.710 37650K .......... .......... .......... .......... .......... 29% 11.1M 1s +2024-03-23T17:47:20Z #15 1.715 37700K .......... .......... .......... .......... .......... 29% 107M 1s +2024-03-23T17:47:20Z #15 1.715 37750K .......... .......... .......... .......... .......... 29% 143M 1s +2024-03-23T17:47:20Z #15 1.716 37800K .......... .......... .......... .......... .......... 29% 134M 1s +2024-03-23T17:47:20Z #15 1.716 37850K .......... .......... .......... .......... .......... 29% 139M 1s +2024-03-23T17:47:20Z #15 1.716 37900K .......... .......... .......... .......... .......... 29% 139M 1s +2024-03-23T17:47:20Z #15 1.717 37950K .......... .......... .......... .......... .......... 29% 146M 1s +2024-03-23T17:47:20Z #15 1.717 38000K .......... .......... .......... .......... .......... 30% 160M 1s +2024-03-23T17:47:20Z #15 1.717 38050K .......... .......... .......... .......... .......... 30% 154M 1s +2024-03-23T17:47:20Z #15 1.718 38100K .......... .......... .......... .......... .......... 30% 142M 1s +2024-03-23T17:47:20Z #15 1.718 38150K .......... .......... .......... .......... .......... 30% 132M 1s +2024-03-23T17:47:20Z #15 1.718 38200K .......... .......... .......... .......... .......... 30% 144M 1s +2024-03-23T17:47:20Z #15 1.719 38250K .......... .......... .......... .......... .......... 30% 120M 1s +2024-03-23T17:47:20Z #15 1.719 38300K .......... .......... .......... .......... .......... 30% 146M 1s +2024-03-23T17:47:20Z #15 1.719 38350K .......... .......... .......... .......... .......... 30% 154M 1s +2024-03-23T17:47:20Z #15 1.720 38400K .......... .......... .......... .......... .......... 30% 128M 1s +2024-03-23T17:47:20Z #15 1.720 38450K .......... .......... .......... .......... .......... 30% 151M 1s +2024-03-23T17:47:20Z #15 1.720 38500K .......... .......... .......... .......... .......... 30% 123M 1s +2024-03-23T17:47:20Z #15 1.721 38550K .......... .......... .......... .......... .......... 30% 149M 1s +2024-03-23T17:47:20Z #15 1.722 38600K .......... .......... .......... .......... .......... 30% 164M 1s +2024-03-23T17:47:20Z #15 1.722 38650K .......... .......... .......... .......... .......... 30% 126M 1s +2024-03-23T17:47:20Z #15 1.722 38700K .......... .......... .......... .......... .......... 30% 141M 1s +2024-03-23T17:47:20Z #15 1.722 38750K .......... .......... .......... .......... .......... 30% 142M 1s +2024-03-23T17:47:20Z #15 1.723 38800K .......... .......... .......... .......... .......... 30% 10.7M 1s +2024-03-23T17:47:20Z #15 1.727 38850K .......... .......... .......... .......... .......... 30% 119M 1s +2024-03-23T17:47:20Z #15 1.727 38900K .......... .......... .......... .......... .......... 30% 152M 1s +2024-03-23T17:47:20Z #15 1.728 38950K .......... .......... .......... .......... .......... 30% 137M 1s +2024-03-23T17:47:20Z #15 1.728 39000K .......... .......... .......... .......... .......... 30% 113M 1s +2024-03-23T17:47:20Z #15 1.729 39050K .......... .......... .......... .......... .......... 30% 148M 1s +2024-03-23T17:47:20Z #15 1.729 39100K .......... .......... .......... .......... .......... 30% 141M 1s +2024-03-23T17:47:20Z #15 1.729 39150K .......... .......... .......... .......... .......... 30% 155M 1s +2024-03-23T17:47:20Z #15 1.730 39200K .......... .......... .......... .......... .......... 30% 134M 1s +2024-03-23T17:47:20Z #15 1.730 39250K .......... .......... .......... .......... .......... 30% 160M 1s +2024-03-23T17:47:20Z #15 1.730 39300K .......... .......... .......... .......... .......... 31% 121M 1s +2024-03-23T17:47:20Z #15 1.731 39350K .......... .......... .......... .......... .......... 31% 114M 1s +2024-03-23T17:47:20Z #15 1.731 39400K .......... .......... .......... .......... .......... 31% 27.5M 1s +2024-03-23T17:47:20Z #15 1.733 39450K .......... .......... .......... .......... .......... 31% 84.2M 1s +2024-03-23T17:47:20Z #15 1.733 39500K .......... .......... .......... .......... .......... 31% 101M 1s +2024-03-23T17:47:20Z #15 1.734 39550K .......... .......... .......... .......... .......... 31% 141M 1s +2024-03-23T17:47:20Z #15 1.734 39600K .......... .......... .......... .......... .......... 31% 155M 1s +2024-03-23T17:47:20Z #15 1.735 39650K .......... .......... .......... .......... .......... 31% 107M 1s +2024-03-23T17:47:20Z #15 1.735 39700K .......... .......... .......... .......... .......... 31% 164M 1s +2024-03-23T17:47:20Z #15 1.735 39750K .......... .......... .......... .......... .......... 31% 140M 1s +2024-03-23T17:47:20Z #15 1.736 39800K .......... .......... .......... .......... .......... 31% 137M 1s +2024-03-23T17:47:20Z #15 1.736 39850K .......... .......... .......... .......... .......... 31% 142M 1s +2024-03-23T17:47:20Z #15 1.736 39900K .......... .......... .......... .......... .......... 31% 143M 1s +2024-03-23T17:47:20Z #15 1.737 39950K .......... .......... .......... .......... .......... 31% 138M 1s +2024-03-23T17:47:20Z #15 1.738 40000K .......... .......... .......... .......... .......... 31% 166M 1s +2024-03-23T17:47:20Z #15 1.738 40050K .......... .......... .......... .......... .......... 31% 145M 1s +2024-03-23T17:47:20Z #15 1.738 40100K .......... .......... .......... .......... .......... 31% 117M 1s +2024-03-23T17:47:20Z #15 1.738 40150K .......... .......... .......... .......... .......... 31% 144M 1s +2024-03-23T17:47:20Z #15 1.738 40200K .......... .......... .......... .......... .......... 31% 25.9M 1s +2024-03-23T17:47:20Z #15 1.740 40250K .......... .......... .......... .......... .......... 31% 141M 1s +2024-03-23T17:47:20Z #15 1.741 40300K .......... .......... .......... .......... .......... 31% 125M 1s +2024-03-23T17:47:20Z #15 1.741 40350K .......... .......... .......... .......... .......... 31% 136M 1s +2024-03-23T17:47:20Z #15 1.741 40400K .......... .......... .......... .......... .......... 31% 146M 1s +2024-03-23T17:47:20Z #15 1.742 40450K .......... .......... .......... .......... .......... 31% 159M 1s +2024-03-23T17:47:20Z #15 1.742 40500K .......... .......... .......... .......... .......... 31% 132M 1s +2024-03-23T17:47:20Z #15 1.743 40550K .......... .......... .......... .......... .......... 32% 135M 1s +2024-03-23T17:47:20Z #15 1.743 40600K .......... .......... .......... .......... .......... 32% 135M 1s +2024-03-23T17:47:20Z #15 1.743 40650K .......... .......... .......... .......... .......... 32% 137M 1s +2024-03-23T17:47:20Z #15 1.744 40700K .......... .......... .......... .......... .......... 32% 158M 1s +2024-03-23T17:47:20Z #15 1.744 40750K .......... .......... .......... .......... .......... 32% 131M 1s +2024-03-23T17:47:20Z #15 1.744 40800K .......... .......... .......... .......... .......... 32% 140M 1s +2024-03-23T17:47:20Z #15 1.745 40850K .......... .......... .......... .......... .......... 32% 161M 1s +2024-03-23T17:47:20Z #15 1.745 40900K .......... .......... .......... .......... .......... 32% 119M 1s +2024-03-23T17:47:20Z #15 1.745 40950K .......... .......... .......... .......... .......... 32% 164M 1s +2024-03-23T17:47:20Z #15 1.746 41000K .......... .......... .......... .......... .......... 32% 135M 1s +2024-03-23T17:47:20Z #15 1.746 41050K .......... .......... .......... .......... .......... 32% 155M 1s +2024-03-23T17:47:20Z #15 1.746 41100K .......... .......... .......... .......... .......... 32% 149M 1s +2024-03-23T17:47:20Z #15 1.747 41150K .......... .......... .......... .......... .......... 32% 5.72M 1s +2024-03-23T17:47:20Z #15 1.755 41200K .......... .......... .......... .......... .......... 32% 74.0M 1s +2024-03-23T17:47:20Z #15 1.756 41250K .......... .......... .......... .......... .......... 32% 149M 1s +2024-03-23T17:47:20Z #15 1.756 41300K .......... .......... .......... .......... .......... 32% 127M 1s +2024-03-23T17:47:20Z #15 1.756 41350K .......... .......... .......... .......... .......... 32% 159M 1s +2024-03-23T17:47:20Z #15 1.757 41400K .......... .......... .......... .......... .......... 32% 146M 1s +2024-03-23T17:47:20Z #15 1.758 41450K .......... .......... .......... .......... .......... 32% 169M 1s +2024-03-23T17:47:20Z #15 1.758 41500K .......... .......... .......... .......... .......... 32% 130M 1s +2024-03-23T17:47:20Z #15 1.758 41550K .......... .......... .......... .......... .......... 32% 146M 1s +2024-03-23T17:47:20Z #15 1.758 41600K .......... .......... .......... .......... .......... 32% 127M 1s +2024-03-23T17:47:20Z #15 1.758 41650K .......... .......... .......... .......... .......... 32% 90.4M 1s +2024-03-23T17:47:20Z #15 1.760 41700K .......... .......... .......... .......... .......... 32% 120M 1s +2024-03-23T17:47:20Z #15 1.760 41750K .......... .......... .......... .......... .......... 32% 151M 1s +2024-03-23T17:47:20Z #15 1.760 41800K .......... .......... .......... .......... .......... 33% 128M 1s +2024-03-23T17:47:20Z #15 1.760 41850K .......... .......... .......... .......... .......... 33% 126M 1s +2024-03-23T17:47:20Z #15 1.761 41900K .......... .......... .......... .......... .......... 33% 132M 1s +2024-03-23T17:47:20Z #15 1.761 41950K .......... .......... .......... .......... .......... 33% 136M 1s +2024-03-23T17:47:20Z #15 1.761 42000K .......... .......... .......... .......... .......... 33% 149M 1s +2024-03-23T17:47:20Z #15 1.762 42050K .......... .......... .......... .......... .......... 33% 154M 1s +2024-03-23T17:47:20Z #15 1.763 42100K .......... .......... .......... .......... .......... 33% 119M 1s +2024-03-23T17:47:20Z #15 1.763 42150K .......... .......... .......... .......... .......... 33% 152M 1s +2024-03-23T17:47:20Z #15 1.767 42200K .......... .......... .......... .......... .......... 33% 10.8M 1s +2024-03-23T17:47:20Z #15 1.767 42250K .......... .......... .......... .......... .......... 33% 178M 1s +2024-03-23T17:47:20Z #15 1.767 42300K .......... .......... .......... .......... .......... 33% 135M 1s +2024-03-23T17:47:20Z #15 1.768 42350K .......... .......... .......... .......... .......... 33% 129M 1s +2024-03-23T17:47:20Z #15 1.768 42400K .......... .......... .......... .......... .......... 33% 156M 1s +2024-03-23T17:47:20Z #15 1.769 42450K .......... .......... .......... .......... .......... 33% 125M 1s +2024-03-23T17:47:20Z #15 1.769 42500K .......... .......... .......... .......... .......... 33% 101M 1s +2024-03-23T17:47:20Z #15 1.769 42550K .......... .......... .......... .......... .......... 33% 147M 1s +2024-03-23T17:47:20Z #15 1.770 42600K .......... .......... .......... .......... .......... 33% 151M 1s +2024-03-23T17:47:20Z #15 1.770 42650K .......... .......... .......... .......... .......... 33% 156M 1s +2024-03-23T17:47:20Z #15 1.770 42700K .......... .......... .......... .......... .......... 33% 148M 1s +2024-03-23T17:47:20Z #15 1.771 42750K .......... .......... .......... .......... .......... 33% 114M 1s +2024-03-23T17:47:20Z #15 1.772 42800K .......... .......... .......... .......... .......... 33% 130M 1s +2024-03-23T17:47:20Z #15 1.772 42850K .......... .......... .......... .......... .......... 33% 158M 1s +2024-03-23T17:47:20Z #15 1.772 42900K .......... .......... .......... .......... .......... 33% 130M 1s +2024-03-23T17:47:20Z #15 1.772 42950K .......... .......... .......... .......... .......... 33% 160M 1s +2024-03-23T17:47:20Z #15 1.773 43000K .......... .......... .......... .......... .......... 33% 129M 1s +2024-03-23T17:47:20Z #15 1.773 43050K .......... .......... .......... .......... .......... 33% 146M 1s +2024-03-23T17:47:20Z #15 1.773 43100K .......... .......... .......... .......... .......... 34% 149M 1s +2024-03-23T17:47:20Z #15 1.774 43150K .......... .......... .......... .......... .......... 34% 148M 1s +2024-03-23T17:47:20Z #15 1.774 43200K .......... .......... .......... .......... .......... 34% 134M 1s +2024-03-23T17:47:20Z #15 1.774 43250K .......... .......... .......... .......... .......... 34% 150M 1s +2024-03-23T17:47:20Z #15 1.775 43300K .......... .......... .......... .......... .......... 34% 42.4M 1s +2024-03-23T17:47:20Z #15 1.776 43350K .......... .......... .......... .......... .......... 34% 113M 1s +2024-03-23T17:47:20Z #15 1.776 43400K .......... .......... .......... .......... .......... 34% 145M 1s +2024-03-23T17:47:20Z #15 1.777 43450K .......... .......... .......... .......... .......... 34% 143M 1s +2024-03-23T17:47:20Z #15 1.777 43500K .......... .......... .......... .......... .......... 34% 147M 1s +2024-03-23T17:47:20Z #15 1.777 43550K .......... .......... .......... .......... .......... 34% 142M 1s +2024-03-23T17:47:20Z #15 1.778 43600K .......... .......... .......... .......... .......... 34% 127M 1s +2024-03-23T17:47:20Z #15 1.778 43650K .......... .......... .......... .......... .......... 34% 157M 1s +2024-03-23T17:47:20Z #15 1.779 43700K .......... .......... .......... .......... .......... 34% 131M 1s +2024-03-23T17:47:20Z #15 1.779 43750K .......... .......... .......... .......... .......... 34% 10.9M 1s +2024-03-23T17:47:20Z #15 1.791 43800K .......... .......... .......... .......... .......... 34% 125M 1s +2024-03-23T17:47:20Z #15 1.791 43850K .......... .......... .......... .......... .......... 34% 97.7M 1s +2024-03-23T17:47:20Z #15 1.791 43900K .......... .......... .......... .......... .......... 34% 142M 1s +2024-03-23T17:47:20Z #15 1.791 43950K .......... .......... .......... .......... .......... 34% 119M 1s +2024-03-23T17:47:20Z #15 1.791 44000K .......... .......... .......... .......... .......... 34% 76.0M 1s +2024-03-23T17:47:20Z #15 1.791 44050K .......... .......... .......... .......... .......... 34% 135M 1s +2024-03-23T17:47:20Z #15 1.791 44100K .......... .......... .......... .......... .......... 34% 63.7M 1s +2024-03-23T17:47:20Z #15 1.791 44150K .......... .......... .......... .......... .......... 34% 89.5M 1s +2024-03-23T17:47:20Z #15 1.791 44200K .......... .......... .......... .......... .......... 34% 102M 1s +2024-03-23T17:47:20Z #15 1.791 44250K .......... .......... .......... .......... .......... 34% 85.7M 1s +2024-03-23T17:47:20Z #15 1.791 44300K .......... .......... .......... .......... .......... 34% 102M 1s +2024-03-23T17:47:20Z #15 1.791 44350K .......... .......... .......... .......... .......... 35% 75.4M 1s +2024-03-23T17:47:20Z #15 1.791 44400K .......... .......... .......... .......... .......... 35% 77.2M 1s +2024-03-23T17:47:20Z #15 1.791 44450K .......... .......... .......... .......... .......... 35% 93.1M 1s +2024-03-23T17:47:20Z #15 1.791 44500K .......... .......... .......... .......... .......... 35% 44.2M 1s +2024-03-23T17:47:20Z #15 1.791 44550K .......... .......... .......... .......... .......... 35% 60.3M 1s +2024-03-23T17:47:20Z #15 1.793 44600K .......... .......... .......... .......... .......... 35% 82.7M 1s +2024-03-23T17:47:20Z #15 1.793 44650K .......... .......... .......... .......... .......... 35% 9.11M 1s +2024-03-23T17:47:20Z #15 1.799 44700K .......... .......... .......... .......... .......... 35% 108M 1s +2024-03-23T17:47:20Z #15 1.799 44750K .......... .......... .......... .......... .......... 35% 52.9M 1s +2024-03-23T17:47:20Z #15 1.800 44800K .......... .......... .......... .......... .......... 35% 48.0M 1s +2024-03-23T17:47:20Z #15 1.801 44850K .......... .......... .......... .......... .......... 35% 50.1M 1s +2024-03-23T17:47:20Z #15 1.802 44900K .......... .......... .......... .......... .......... 35% 32.6M 1s +2024-03-23T17:47:20Z #15 1.803 44950K .......... .......... .......... .......... .......... 35% 138M 1s +2024-03-23T17:47:20Z #15 1.805 45000K .......... .......... .......... .......... .......... 35% 13.9M 1s +2024-03-23T17:47:20Z #15 1.807 45050K .......... .......... .......... .......... .......... 35% 52.4M 1s +2024-03-23T17:47:20Z #15 1.808 45100K .......... .......... .......... .......... .......... 35% 79.2M 1s +2024-03-23T17:47:20Z #15 1.809 45150K .......... .......... .......... .......... .......... 35% 50.8M 1s +2024-03-23T17:47:20Z #15 1.811 45200K .......... .......... .......... .......... .......... 35% 17.5M 1s +2024-03-23T17:47:20Z #15 1.813 45250K .......... .......... .......... .......... .......... 35% 34.7M 1s +2024-03-23T17:47:20Z #15 1.814 45300K .......... .......... .......... .......... .......... 35% 101M 1s +2024-03-23T17:47:20Z #15 1.814 45350K .......... .......... .......... .......... .......... 35% 40.2M 1s +2024-03-23T17:47:20Z #15 1.816 45400K .......... .......... .......... .......... .......... 35% 25.4M 1s +2024-03-23T17:47:20Z #15 1.818 45450K .......... .......... .......... .......... .......... 35% 72.6M 1s +2024-03-23T17:47:20Z #15 1.819 45500K .......... .......... .......... .......... .......... 35% 83.5M 1s +2024-03-23T17:47:20Z #15 1.819 45550K .......... .......... .......... .......... .......... 35% 28.4M 1s +2024-03-23T17:47:20Z #15 1.821 45600K .......... .......... .......... .......... .......... 36% 37.0M 1s +2024-03-23T17:47:20Z #15 1.822 45650K .......... .......... .......... .......... .......... 36% 55.9M 1s +2024-03-23T17:47:20Z #15 1.823 45700K .......... .......... .......... .......... .......... 36% 51.4M 1s +2024-03-23T17:47:20Z #15 1.824 45750K .......... .......... .......... .......... .......... 36% 35.2M 1s +2024-03-23T17:47:20Z #15 1.825 45800K .......... .......... .......... .......... .......... 36% 39.0M 1s +2024-03-23T17:47:20Z #15 1.827 45850K .......... .......... .......... .......... .......... 36% 19.9M 1s +2024-03-23T17:47:20Z #15 1.831 45900K .......... .......... .......... .......... .......... 36% 45.6M 1s +2024-03-23T17:47:20Z #15 1.831 45950K .......... .......... .......... .......... .......... 36% 32.7M 1s +2024-03-23T17:47:20Z #15 1.831 46000K .......... .......... .......... .......... .......... 36% 24.6M 1s +2024-03-23T17:47:20Z #15 1.834 46050K .......... .......... .......... .......... .......... 36% 70.0M 1s +2024-03-23T17:47:20Z #15 1.834 46100K .......... .......... .......... .......... .......... 36% 47.1M 1s +2024-03-23T17:47:20Z #15 1.835 46150K .......... .......... .......... .......... .......... 36% 75.2M 1s +2024-03-23T17:47:20Z #15 1.839 46200K .......... .......... .......... .......... .......... 36% 76.0M 1s +2024-03-23T17:47:20Z #15 1.839 46250K .......... .......... .......... .......... .......... 36% 118M 1s +2024-03-23T17:47:20Z #15 1.839 46300K .......... .......... .......... .......... .......... 36% 133M 1s +2024-03-23T17:47:20Z #15 1.839 46350K .......... .......... .......... .......... .......... 36% 87.4M 1s +2024-03-23T17:47:20Z #15 1.839 46400K .......... .......... .......... .......... .......... 36% 154M 1s +2024-03-23T17:47:20Z #15 1.839 46450K .......... .......... .......... .......... .......... 36% 81.7M 1s +2024-03-23T17:47:20Z #15 1.839 46500K .......... .......... .......... .......... .......... 36% 52.0M 1s +2024-03-23T17:47:20Z #15 1.840 46550K .......... .......... .......... .......... .......... 36% 19.2M 1s +2024-03-23T17:47:20Z #15 1.842 46600K .......... .......... .......... .......... .......... 36% 33.3M 1s +2024-03-23T17:47:20Z #15 1.844 46650K .......... .......... .......... .......... .......... 36% 37.7M 1s +2024-03-23T17:47:20Z #15 1.845 46700K .......... .......... .......... .......... .......... 36% 55.6M 1s +2024-03-23T17:47:20Z #15 1.846 46750K .......... .......... .......... .......... .......... 36% 17.1M 1s +2024-03-23T17:47:20Z #15 1.849 46800K .......... .......... .......... .......... .......... 36% 25.3M 1s +2024-03-23T17:47:20Z #15 1.851 46850K .......... .......... .......... .......... .......... 36% 37.5M 1s +2024-03-23T17:47:20Z #15 1.852 46900K .......... .......... .......... .......... .......... 37% 54.9M 1s +2024-03-23T17:47:20Z #15 1.853 46950K .......... .......... .......... .......... .......... 37% 25.0M 1s +2024-03-23T17:47:20Z #15 1.855 47000K .......... .......... .......... .......... .......... 37% 63.6M 1s +2024-03-23T17:47:20Z #15 1.856 47050K .......... .......... .......... .......... .......... 37% 38.4M 1s +2024-03-23T17:47:20Z #15 1.857 47100K .......... .......... .......... .......... .......... 37% 26.5M 1s +2024-03-23T17:47:20Z #15 1.863 47150K .......... .......... .......... .......... .......... 37% 92.3M 1s +2024-03-23T17:47:20Z #15 1.863 47200K .......... .......... .......... .......... .......... 37% 112M 1s +2024-03-23T17:47:20Z #15 1.863 47250K .......... .......... .......... .......... .......... 37% 101M 1s +2024-03-23T17:47:20Z #15 1.863 47300K .......... .......... .......... .......... .......... 37% 85.3M 1s +2024-03-23T17:47:20Z #15 1.863 47350K .......... .......... .......... .......... .......... 37% 98.1M 1s +2024-03-23T17:47:20Z #15 1.863 47400K .......... .......... .......... .......... .......... 37% 67.0M 1s +2024-03-23T17:47:20Z #15 1.863 47450K .......... .......... .......... .......... .......... 37% 67.1M 1s +2024-03-23T17:47:20Z #15 1.863 47500K .......... .......... .......... .......... .......... 37% 112M 1s +2024-03-23T17:47:20Z #15 1.863 47550K .......... .......... .......... .......... .......... 37% 10.1M 1s +2024-03-23T17:47:20Z #15 1.868 47600K .......... .......... .......... .......... .......... 37% 41.8M 1s +2024-03-23T17:47:20Z #15 1.872 47650K .......... .......... .......... .......... .......... 37% 94.0M 1s +2024-03-23T17:47:20Z #15 1.872 47700K .......... .......... .......... .......... .......... 37% 119M 1s +2024-03-23T17:47:20Z #15 1.872 47750K .......... .......... .......... .......... .......... 37% 128M 1s +2024-03-23T17:47:20Z #15 1.872 47800K .......... .......... .......... .......... .......... 37% 19.5M 1s +2024-03-23T17:47:20Z #15 1.874 47850K .......... .......... .......... .......... .......... 37% 16.8M 1s +2024-03-23T17:47:20Z #15 1.875 47900K .......... .......... .......... .......... .......... 37% 70.1M 1s +2024-03-23T17:47:20Z #15 1.876 47950K .......... .......... .......... .......... .......... 37% 36.0M 1s +2024-03-23T17:47:20Z #15 1.878 48000K .......... .......... .......... .......... .......... 37% 75.2M 1s +2024-03-23T17:47:20Z #15 1.880 48050K .......... .......... .......... .......... .......... 37% 17.0M 1s +2024-03-23T17:47:20Z #15 1.884 48100K .......... .......... .......... .......... .......... 37% 147M 1s +2024-03-23T17:47:20Z #15 1.884 48150K .......... .......... .......... .......... .......... 38% 153M 1s +2024-03-23T17:47:20Z #15 1.884 48200K .......... .......... .......... .......... .......... 38% 152M 1s +2024-03-23T17:47:20Z #15 1.884 48250K .......... .......... .......... .......... .......... 38% 95.8M 1s +2024-03-23T17:47:20Z #15 1.884 48300K .......... .......... .......... .......... .......... 38% 12.4M 1s +2024-03-23T17:47:20Z #15 1.887 48350K .......... .......... .......... .......... .......... 38% 64.2M 1s +2024-03-23T17:47:20Z #15 1.887 48400K .......... .......... .......... .......... .......... 38% 23.3M 1s +2024-03-23T17:47:20Z #15 1.889 48450K .......... .......... .......... .......... .......... 38% 49.8M 1s +2024-03-23T17:47:20Z #15 1.890 48500K .......... .......... .......... .......... .......... 38% 39.0M 1s +2024-03-23T17:47:20Z #15 1.892 48550K .......... .......... .......... .......... .......... 38% 26.0M 1s +2024-03-23T17:47:20Z #15 1.894 48600K .......... .......... .......... .......... .......... 38% 33.6M 1s +2024-03-23T17:47:20Z #15 1.895 48650K .......... .......... .......... .......... .......... 38% 42.8M 1s +2024-03-23T17:47:20Z #15 1.896 48700K .......... .......... .......... .......... .......... 38% 37.4M 1s +2024-03-23T17:47:20Z #15 1.899 48750K .......... .......... .......... .......... .......... 38% 50.2M 1s +2024-03-23T17:47:20Z #15 1.899 48800K .......... .......... .......... .......... .......... 38% 20.9M 1s +2024-03-23T17:47:20Z #15 1.901 48850K .......... .......... .......... .......... .......... 38% 29.1M 1s +2024-03-23T17:47:20Z #15 1.902 48900K .......... .......... .......... .......... .......... 38% 21.5M 1s +2024-03-23T17:47:20Z #15 1.905 48950K .......... .......... .......... .......... .......... 38% 32.4M 1s +2024-03-23T17:47:20Z #15 1.906 49000K .......... .......... .......... .......... .......... 38% 52.3M 1s +2024-03-23T17:47:20Z #15 1.907 49050K .......... .......... .......... .......... .......... 38% 48.3M 1s +2024-03-23T17:47:20Z #15 1.908 49100K .......... .......... .......... .......... .......... 38% 31.9M 1s +2024-03-23T17:47:20Z #15 1.910 49150K .......... .......... .......... .......... .......... 38% 25.9M 1s +2024-03-23T17:47:20Z #15 1.911 49200K .......... .......... .......... .......... .......... 38% 128M 1s +2024-03-23T17:47:20Z #15 1.912 49250K .......... .......... .......... .......... .......... 38% 130M 1s +2024-03-23T17:47:20Z #15 1.912 49300K .......... .......... .......... .......... .......... 38% 149M 1s +2024-03-23T17:47:20Z #15 1.913 49350K .......... .......... .......... .......... .......... 38% 126M 1s +2024-03-23T17:47:20Z #15 1.913 49400K .......... .......... .......... .......... .......... 39% 158M 1s +2024-03-23T17:47:20Z #15 1.913 49450K .......... .......... .......... .......... .......... 39% 146M 1s +2024-03-23T17:47:20Z #15 1.913 49500K .......... .......... .......... .......... .......... 39% 125M 1s +2024-03-23T17:47:20Z #15 1.914 49550K .......... .......... .......... .......... .......... 39% 149M 1s +2024-03-23T17:47:20Z #15 1.914 49600K .......... .......... .......... .......... .......... 39% 151M 1s +2024-03-23T17:47:20Z #15 1.915 49650K .......... .......... .......... .......... .......... 39% 59.0M 1s +2024-03-23T17:47:20Z #15 1.917 49700K .......... .......... .......... .......... .......... 39% 53.5M 1s +2024-03-23T17:47:20Z #15 1.917 49750K .......... .......... .......... .......... .......... 39% 45.8M 1s +2024-03-23T17:47:20Z #15 1.917 49800K .......... .......... .......... .......... .......... 39% 62.2M 1s +2024-03-23T17:47:20Z #15 1.918 49850K .......... .......... .......... .......... .......... 39% 94.7M 1s +2024-03-23T17:47:20Z #15 1.919 49900K .......... .......... .......... .......... .......... 39% 88.9M 1s +2024-03-23T17:47:20Z #15 1.919 49950K .......... .......... .......... .......... .......... 39% 82.9M 1s +2024-03-23T17:47:20Z #15 1.920 50000K .......... .......... .......... .......... .......... 39% 126M 1s +2024-03-23T17:47:20Z #15 1.920 50050K .......... .......... .......... .......... .......... 39% 62.0M 1s +2024-03-23T17:47:20Z #15 1.921 50100K .......... .......... .......... .......... .......... 39% 40.0M 1s +2024-03-23T17:47:20Z #15 1.923 50150K .......... .......... .......... .......... .......... 39% 22.7M 1s +2024-03-23T17:47:20Z #15 1.924 50200K .......... .......... .......... .......... .......... 39% 28.3M 1s +2024-03-23T17:47:20Z #15 1.926 50250K .......... .......... .......... .......... .......... 39% 33.6M 1s +2024-03-23T17:47:20Z #15 1.928 50300K .......... .......... .......... .......... .......... 39% 79.3M 1s +2024-03-23T17:47:20Z #15 1.928 50350K .......... .......... .......... .......... .......... 39% 31.4M 1s +2024-03-23T17:47:20Z #15 1.930 50400K .......... .......... .......... .......... .......... 39% 43.4M 1s +2024-03-23T17:47:20Z #15 1.931 50450K .......... .......... .......... .......... .......... 39% 29.0M 1s +2024-03-23T17:47:20Z #15 1.933 50500K .......... .......... .......... .......... .......... 39% 40.1M 1s +2024-03-23T17:47:20Z #15 1.934 50550K .......... .......... .......... .......... .......... 39% 130M 1s +2024-03-23T17:47:20Z #15 1.934 50600K .......... .......... .......... .......... .......... 39% 55.0M 1s +2024-03-23T17:47:20Z #15 1.935 50650K .......... .......... .......... .......... .......... 39% 37.5M 1s +2024-03-23T17:47:20Z #15 1.937 50700K .......... .......... .......... .......... .......... 40% 37.0M 1s +2024-03-23T17:47:20Z #15 1.938 50750K .......... .......... .......... .......... .......... 40% 38.1M 1s +2024-03-23T17:47:20Z #15 1.939 50800K .......... .......... .......... .......... .......... 40% 40.2M 1s +2024-03-23T17:47:20Z #15 1.940 50850K .......... .......... .......... .......... .......... 40% 38.2M 1s +2024-03-23T17:47:20Z #15 1.941 50900K .......... .......... .......... .......... .......... 40% 36.8M 1s +2024-03-23T17:47:20Z #15 1.943 50950K .......... .......... .......... .......... .......... 40% 38.1M 1s +2024-03-23T17:47:20Z #15 1.944 51000K .......... .......... .......... .......... .......... 40% 37.6M 1s +2024-03-23T17:47:20Z #15 1.946 51050K .......... .......... .......... .......... .......... 40% 36.3M 1s +2024-03-23T17:47:20Z #15 1.947 51100K .......... .......... .......... .......... .......... 40% 38.8M 1s +2024-03-23T17:47:20Z #15 1.951 51150K .......... .......... .......... .......... .......... 40% 50.9M 1s +2024-03-23T17:47:20Z #15 1.951 51200K .......... .......... .......... .......... .......... 40% 56.9M 1s +2024-03-23T17:47:20Z #15 1.951 51250K .......... .......... .......... .......... .......... 40% 55.3M 1s +2024-03-23T17:47:20Z #15 1.951 51300K .......... .......... .......... .......... .......... 40% 28.9M 1s +2024-03-23T17:47:20Z #15 1.952 51350K .......... .......... .......... .......... .......... 40% 46.6M 1s +2024-03-23T17:47:20Z #15 1.953 51400K .......... .......... .......... .......... .......... 40% 73.5M 1s +2024-03-23T17:47:20Z #15 1.955 51450K .......... .......... .......... .......... .......... 40% 148M 1s +2024-03-23T17:47:20Z #15 1.955 51500K .......... .......... .......... .......... .......... 40% 148M 1s +2024-03-23T17:47:20Z #15 1.955 51550K .......... .......... .......... .......... .......... 40% 61.1M 1s +2024-03-23T17:47:20Z #15 1.956 51600K .......... .......... .......... .......... .......... 40% 25.1M 1s +2024-03-23T17:47:20Z #15 1.958 51650K .......... .......... .......... .......... .......... 40% 56.1M 1s +2024-03-23T17:47:20Z #15 1.958 51700K .......... .......... .......... .......... .......... 40% 37.9M 1s +2024-03-23T17:47:20Z #15 1.967 51750K .......... .......... .......... .......... .......... 40% 5.04M 1s +2024-03-23T17:47:20Z #15 1.973 51800K .......... .......... .......... .......... .......... 40% 120M 1s +2024-03-23T17:47:20Z #15 1.973 51850K .......... .......... .......... .......... .......... 40% 120M 1s +2024-03-23T17:47:20Z #15 1.973 51900K .......... .......... .......... .......... .......... 40% 129M 1s +2024-03-23T17:47:20Z #15 1.973 51950K .......... .......... .......... .......... .......... 41% 151M 1s +2024-03-23T17:47:20Z #15 1.973 52000K .......... .......... .......... .......... .......... 41% 175M 1s +2024-03-23T17:47:20Z #15 1.973 52050K .......... .......... .......... .......... .......... 41% 153M 1s +2024-03-23T17:47:20Z #15 1.973 52100K .......... .......... .......... .......... .......... 41% 152M 1s +2024-03-23T17:47:20Z #15 1.973 52150K .......... .......... .......... .......... .......... 41% 142M 1s +2024-03-23T17:47:20Z #15 1.973 52200K .......... .......... .......... .......... .......... 41% 162M 1s +2024-03-23T17:47:20Z #15 1.973 52250K .......... .......... .......... .......... .......... 41% 147M 1s +2024-03-23T17:47:20Z #15 1.973 52300K .......... .......... .......... .......... .......... 41% 131M 1s +2024-03-23T17:47:20Z #15 1.973 52350K .......... .......... .......... .......... .......... 41% 139M 1s +2024-03-23T17:47:20Z #15 1.974 52400K .......... .......... .......... .......... .......... 41% 124M 1s +2024-03-23T17:47:20Z #15 1.974 52450K .......... .......... .......... .......... .......... 41% 84.6M 1s +2024-03-23T17:47:20Z #15 1.974 52500K .......... .......... .......... .......... .......... 41% 12.6M 1s +2024-03-23T17:47:20Z #15 1.983 52550K .......... .......... .......... .......... .......... 41% 166M 1s +2024-03-23T17:47:20Z #15 1.983 52600K .......... .......... .......... .......... .......... 41% 125M 1s +2024-03-23T17:47:20Z #15 1.983 52650K .......... .......... .......... .......... .......... 41% 146M 1s +2024-03-23T17:47:20Z #15 1.983 52700K .......... .......... .......... .......... .......... 41% 117M 1s +2024-03-23T17:47:20Z #15 1.983 52750K .......... .......... .......... .......... .......... 41% 130M 1s +2024-03-23T17:47:20Z #15 1.983 52800K .......... .......... .......... .......... .......... 41% 153M 1s +2024-03-23T17:47:20Z #15 1.983 52850K .......... .......... .......... .......... .......... 41% 154M 1s +2024-03-23T17:47:20Z #15 1.983 52900K .......... .......... .......... .......... .......... 41% 153M 1s +2024-03-23T17:47:20Z #15 1.983 52950K .......... .......... .......... .......... .......... 41% 132M 1s +2024-03-23T17:47:20Z #15 1.983 53000K .......... .......... .......... .......... .......... 41% 146M 1s +2024-03-23T17:47:20Z #15 1.983 53050K .......... .......... .......... .......... .......... 41% 143M 1s +2024-03-23T17:47:20Z #15 1.983 53100K .......... .......... .......... .......... .......... 41% 161M 1s +2024-03-23T17:47:20Z #15 1.983 53150K .......... .......... .......... .......... .......... 41% 144M 1s +2024-03-23T17:47:20Z #15 1.983 53200K .......... .......... .......... .......... .......... 42% 10.2M 1s +2024-03-23T17:47:20Z #15 2.015 53250K .......... .......... .......... .......... .......... 42% 160M 1s +2024-03-23T17:47:20Z #15 2.015 53300K .......... .......... .......... .......... .......... 42% 121M 1s +2024-03-23T17:47:20Z #15 2.015 53350K .......... .......... .......... .......... .......... 42% 140M 1s +2024-03-23T17:47:20Z #15 2.015 53400K .......... .......... .......... .......... .......... 42% 158M 1s +2024-03-23T17:47:20Z #15 2.015 53450K .......... .......... .......... .......... .......... 42% 139M 1s +2024-03-23T17:47:20Z #15 2.015 53500K .......... .......... .......... .......... .......... 42% 137M 1s +2024-03-23T17:47:20Z #15 2.015 53550K .......... .......... .......... .......... .......... 42% 138M 1s +2024-03-23T17:47:20Z #15 2.015 53600K .......... .......... .......... .......... .......... 42% 156M 1s +2024-03-23T17:47:20Z #15 2.015 53650K .......... .......... .......... .......... .......... 42% 140M 1s +2024-03-23T17:47:20Z #15 2.015 53700K .......... .......... .......... .......... .......... 42% 102M 1s +2024-03-23T17:47:20Z #15 2.015 53750K .......... .......... .......... .......... .......... 42% 174M 1s +2024-03-23T17:47:20Z #15 2.015 53800K .......... .......... .......... .......... .......... 42% 137M 1s +2024-03-23T17:47:20Z #15 2.015 53850K .......... .......... .......... .......... .......... 42% 189M 1s +2024-03-23T17:47:20Z #15 2.015 53900K .......... .......... .......... .......... .......... 42% 148M 1s +2024-03-23T17:47:20Z #15 2.015 53950K .......... .......... .......... .......... .......... 42% 129M 1s +2024-03-23T17:47:20Z #15 2.015 54000K .......... .......... .......... .......... .......... 42% 170M 1s +2024-03-23T17:47:20Z #15 2.015 54050K .......... .......... .......... .......... .......... 42% 165M 1s +2024-03-23T17:47:20Z #15 2.015 54100K .......... .......... .......... .......... .......... 42% 73.9M 1s +2024-03-23T17:47:20Z #15 2.015 54150K .......... .......... .......... .......... .......... 42% 53.4M 1s +2024-03-23T17:47:20Z #15 2.015 54200K .......... .......... .......... .......... .......... 42% 23.1M 1s +2024-03-23T17:47:20Z #15 2.015 54250K .......... .......... .......... .......... .......... 42% 32.9M 1s +2024-03-23T17:47:20Z #15 2.015 54300K .......... .......... .......... .......... .......... 42% 47.2M 1s +2024-03-23T17:47:20Z #15 2.015 54350K .......... .......... .......... .......... .......... 42% 54.4M 1s +2024-03-23T17:47:20Z #15 2.015 54400K .......... .......... .......... .......... .......... 42% 48.4M 1s +2024-03-23T17:47:20Z #15 2.015 54450K .......... .......... .......... .......... .......... 42% 48.1M 1s +2024-03-23T17:47:20Z #15 2.015 54500K .......... .......... .......... .......... .......... 43% 45.4M 1s +2024-03-23T17:47:20Z #15 2.015 54550K .......... .......... .......... .......... .......... 43% 25.8M 1s +2024-03-23T17:47:20Z #15 2.015 54600K .......... .......... .......... .......... .......... 43% 35.9M 1s +2024-03-23T17:47:20Z #15 2.015 54650K .......... .......... .......... .......... .......... 43% 80.7M 1s +2024-03-23T17:47:20Z #15 2.015 54700K .......... .......... .......... .......... .......... 43% 22.7M 1s +2024-03-23T17:47:20Z #15 2.015 54750K .......... .......... .......... .......... .......... 43% 44.9M 1s +2024-03-23T17:47:20Z #15 2.015 54800K .......... .......... .......... .......... .......... 43% 124M 1s +2024-03-23T17:47:20Z #15 2.015 54850K .......... .......... .......... .......... .......... 43% 124M 1s +2024-03-23T17:47:20Z #15 2.015 54900K .......... .......... .......... .......... .......... 43% 175M 1s +2024-03-23T17:47:20Z #15 2.015 54950K .......... .......... .......... .......... .......... 43% 158M 1s +2024-03-23T17:47:20Z #15 2.015 55000K .......... .......... .......... .......... .......... 43% 126M 1s +2024-03-23T17:47:20Z #15 2.015 55050K .......... .......... .......... .......... .......... 43% 168M 1s +2024-03-23T17:47:20Z #15 2.015 55100K .......... .......... .......... .......... .......... 43% 169M 1s +2024-03-23T17:47:20Z #15 2.015 55150K .......... .......... .......... .......... .......... 43% 133M 1s +2024-03-23T17:47:20Z #15 2.015 55200K .......... .......... .......... .......... .......... 43% 146M 1s +2024-03-23T17:47:20Z #15 2.015 55250K .......... .......... .......... .......... .......... 43% 144M 1s +2024-03-23T17:47:20Z #15 2.015 55300K .......... .......... .......... .......... .......... 43% 163M 1s +2024-03-23T17:47:20Z #15 2.015 55350K .......... .......... .......... .......... .......... 43% 150M 1s +2024-03-23T17:47:20Z #15 2.015 55400K .......... .......... .......... .......... .......... 43% 74.8M 1s +2024-03-23T17:47:20Z #15 2.027 55450K .......... .......... .......... .......... .......... 43% 34.0M 1s +2024-03-23T17:47:20Z #15 2.027 55500K .......... .......... .......... .......... .......... 43% 64.2M 1s +2024-03-23T17:47:20Z #15 2.027 55550K .......... .......... .......... .......... .......... 43% 69.2M 1s +2024-03-23T17:47:20Z #15 2.027 55600K .......... .......... .......... .......... .......... 43% 86.6M 1s +2024-03-23T17:47:20Z #15 2.027 55650K .......... .......... .......... .......... .......... 43% 23.0M 1s +2024-03-23T17:47:20Z #15 2.027 55700K .......... .......... .......... .......... .......... 43% 54.1M 1s +2024-03-23T17:47:20Z #15 2.027 55750K .......... .......... .......... .......... .......... 44% 42.9M 1s +2024-03-23T17:47:20Z #15 2.027 55800K .......... .......... .......... .......... .......... 44% 84.3M 1s +2024-03-23T17:47:20Z #15 2.027 55850K .......... .......... .......... .......... .......... 44% 61.3M 1s +2024-03-23T17:47:20Z #15 2.027 55900K .......... .......... .......... .......... .......... 44% 71.9M 1s +2024-03-23T17:47:20Z #15 2.027 55950K .......... .......... .......... .......... .......... 44% 55.8M 1s +2024-03-23T17:47:20Z #15 2.027 56000K .......... .......... .......... .......... .......... 44% 56.6M 1s +2024-03-23T17:47:20Z #15 2.027 56050K .......... .......... .......... .......... .......... 44% 26.2M 1s +2024-03-23T17:47:20Z #15 2.031 56100K .......... .......... .......... .......... .......... 44% 39.6M 1s +2024-03-23T17:47:20Z #15 2.031 56150K .......... .......... .......... .......... .......... 44% 45.2M 1s +2024-03-23T17:47:20Z #15 2.031 56200K .......... .......... .......... .......... .......... 44% 18.5M 1s +2024-03-23T17:47:20Z #15 2.034 56250K .......... .......... .......... .......... .......... 44% 29.3M 1s +2024-03-23T17:47:20Z #15 2.036 56300K .......... .......... .......... .......... .......... 44% 145M 1s +2024-03-23T17:47:21Z #15 2.036 56350K .......... .......... .......... .......... .......... 44% 167M 1s +2024-03-23T17:47:21Z #15 2.036 56400K .......... .......... .......... .......... .......... 44% 62.8M 1s +2024-03-23T17:47:21Z #15 2.037 56450K .......... .......... .......... .......... .......... 44% 26.2M 1s +2024-03-23T17:47:21Z #15 2.038 56500K .......... .......... .......... .......... .......... 44% 60.5M 1s +2024-03-23T17:47:21Z #15 2.041 56550K .......... .......... .......... .......... .......... 44% 149M 1s +2024-03-23T17:47:21Z #15 2.041 56600K .......... .......... .......... .......... .......... 44% 142M 1s +2024-03-23T17:47:21Z #15 2.041 56650K .......... .......... .......... .......... .......... 44% 165M 1s +2024-03-23T17:47:21Z #15 2.041 56700K .......... .......... .......... .......... .......... 44% 163M 1s +2024-03-23T17:47:21Z #15 2.041 56750K .......... .......... .......... .......... .......... 44% 116M 1s +2024-03-23T17:47:21Z #15 2.041 56800K .......... .......... .......... .......... .......... 44% 115M 1s +2024-03-23T17:47:21Z #15 2.041 56850K .......... .......... .......... .......... .......... 44% 23.1M 1s +2024-03-23T17:47:21Z #15 2.043 56900K .......... .......... .......... .......... .......... 44% 32.3M 1s +2024-03-23T17:47:21Z #15 2.045 56950K .......... .......... .......... .......... .......... 44% 41.3M 1s +2024-03-23T17:47:21Z #15 2.046 57000K .......... .......... .......... .......... .......... 44% 44.7M 1s +2024-03-23T17:47:21Z #15 2.047 57050K .......... .......... .......... .......... .......... 45% 59.2M 1s +2024-03-23T17:47:21Z #15 2.048 57100K .......... .......... .......... .......... .......... 45% 55.7M 1s +2024-03-23T17:47:21Z #15 2.049 57150K .......... .......... .......... .......... .......... 45% 27.6M 1s +2024-03-23T17:47:21Z #15 2.051 57200K .......... .......... .......... .......... .......... 45% 42.5M 1s +2024-03-23T17:47:21Z #15 2.052 57250K .......... .......... .......... .......... .......... 45% 37.8M 1s +2024-03-23T17:47:21Z #15 2.053 57300K .......... .......... .......... .......... .......... 45% 42.6M 1s +2024-03-23T17:47:21Z #15 2.054 57350K .......... .......... .......... .......... .......... 45% 24.3M 1s +2024-03-23T17:47:21Z #15 2.056 57400K .......... .......... .......... .......... .......... 45% 37.3M 1s +2024-03-23T17:47:21Z #15 2.058 57450K .......... .......... .......... .......... .......... 45% 33.1M 1s +2024-03-23T17:47:21Z #15 2.059 57500K .......... .......... .......... .......... .......... 45% 38.6M 1s +2024-03-23T17:47:21Z #15 2.060 57550K .......... .......... .......... .......... .......... 45% 40.6M 1s +2024-03-23T17:47:21Z #15 2.062 57600K .......... .......... .......... .......... .......... 45% 39.0M 1s +2024-03-23T17:47:21Z #15 2.063 57650K .......... .......... .......... .......... .......... 45% 36.9M 1s +2024-03-23T17:47:21Z #15 2.064 57700K .......... .......... .......... .......... .......... 45% 41.8M 1s +2024-03-23T17:47:21Z #15 2.065 57750K .......... .......... .......... .......... .......... 45% 57.4M 1s +2024-03-23T17:47:21Z #15 2.066 57800K .......... .......... .......... .......... .......... 45% 63.2M 1s +2024-03-23T17:47:21Z #15 2.067 57850K .......... .......... .......... .......... .......... 45% 16.6M 1s +2024-03-23T17:47:21Z #15 2.070 57900K .......... .......... .......... .......... .......... 45% 13.7M 1s +2024-03-23T17:47:21Z #15 2.074 57950K .......... .......... .......... .......... .......... 45% 11.8M 1s +2024-03-23T17:47:21Z #15 2.078 58000K .......... .......... .......... .......... .......... 45% 16.2M 1s +2024-03-23T17:47:21Z #15 2.081 58050K .......... .......... .......... .......... .......... 45% 20.3M 1s +2024-03-23T17:47:21Z #15 2.083 58100K .......... .......... .......... .......... .......... 45% 31.5M 1s +2024-03-23T17:47:21Z #15 2.085 58150K .......... .......... .......... .......... .......... 45% 31.3M 1s +2024-03-23T17:47:21Z #15 2.086 58200K .......... .......... .......... .......... .......... 45% 34.4M 1s +2024-03-23T17:47:21Z #15 2.088 58250K .......... .......... .......... .......... .......... 45% 51.4M 1s +2024-03-23T17:47:21Z #15 2.091 58300K .......... .......... .......... .......... .......... 46% 141M 1s +2024-03-23T17:47:21Z #15 2.091 58350K .......... .......... .......... .......... .......... 46% 153M 1s +2024-03-23T17:47:21Z #15 2.091 58400K .......... .......... .......... .......... .......... 46% 156M 1s +2024-03-23T17:47:21Z #15 2.091 58450K .......... .......... .......... .......... .......... 46% 144M 1s +2024-03-23T17:47:21Z #15 2.091 58500K .......... .......... .......... .......... .......... 46% 144M 1s +2024-03-23T17:47:21Z #15 2.091 58550K .......... .......... .......... .......... .......... 46% 163M 1s +2024-03-23T17:47:21Z #15 2.091 58600K .......... .......... .......... .......... .......... 46% 149M 1s +2024-03-23T17:47:21Z #15 2.091 58650K .......... .......... .......... .......... .......... 46% 15.3M 1s +2024-03-23T17:47:21Z #15 2.095 58700K .......... .......... .......... .......... .......... 46% 19.2M 1s +2024-03-23T17:47:21Z #15 2.097 58750K .......... .......... .......... .......... .......... 46% 50.9M 1s +2024-03-23T17:47:21Z #15 2.098 58800K .......... .......... .......... .......... .......... 46% 48.1M 1s +2024-03-23T17:47:21Z #15 2.099 58850K .......... .......... .......... .......... .......... 46% 33.4M 1s +2024-03-23T17:47:21Z #15 2.100 58900K .......... .......... .......... .......... .......... 46% 117M 1s +2024-03-23T17:47:21Z #15 2.100 58950K .......... .......... .......... .......... .......... 46% 76.2M 1s +2024-03-23T17:47:21Z #15 2.103 59000K .......... .......... .......... .......... .......... 46% 157M 1s +2024-03-23T17:47:21Z #15 2.103 59050K .......... .......... .......... .......... .......... 46% 165M 1s +2024-03-23T17:47:21Z #15 2.103 59100K .......... .......... .......... .......... .......... 46% 132M 1s +2024-03-23T17:47:21Z #15 2.103 59150K .......... .......... .......... .......... .......... 46% 161M 1s +2024-03-23T17:47:21Z #15 2.103 59200K .......... .......... .......... .......... .......... 46% 120M 1s +2024-03-23T17:47:21Z #15 2.103 59250K .......... .......... .......... .......... .......... 46% 43.3M 1s +2024-03-23T17:47:21Z #15 2.104 59300K .......... .......... .......... .......... .......... 46% 54.7M 1s +2024-03-23T17:47:21Z #15 2.105 59350K .......... .......... .......... .......... .......... 46% 91.1M 1s +2024-03-23T17:47:21Z #15 2.105 59400K .......... .......... .......... .......... .......... 46% 69.3M 1s +2024-03-23T17:47:21Z #15 2.107 59450K .......... .......... .......... .......... .......... 46% 109M 1s +2024-03-23T17:47:21Z #15 2.107 59500K .......... .......... .......... .......... .......... 46% 44.0M 1s +2024-03-23T17:47:21Z #15 2.108 59550K .......... .......... .......... .......... .......... 47% 48.3M 1s +2024-03-23T17:47:21Z #15 2.109 59600K .......... .......... .......... .......... .......... 47% 66.1M 1s +2024-03-23T17:47:21Z #15 2.110 59650K .......... .......... .......... .......... .......... 47% 99.7M 1s +2024-03-23T17:47:21Z #15 2.110 59700K .......... .......... .......... .......... .......... 47% 64.0M 1s +2024-03-23T17:47:21Z #15 2.111 59750K .......... .......... .......... .......... .......... 47% 58.9M 1s +2024-03-23T17:47:21Z #15 2.111 59800K .......... .......... .......... .......... .......... 47% 78.5M 1s +2024-03-23T17:47:21Z #15 2.112 59850K .......... .......... .......... .......... .......... 47% 87.5M 1s +2024-03-23T17:47:21Z #15 2.112 59900K .......... .......... .......... .......... .......... 47% 84.0M 1s +2024-03-23T17:47:21Z #15 2.113 59950K .......... .......... .......... .......... .......... 47% 66.9M 1s +2024-03-23T17:47:21Z #15 2.114 60000K .......... .......... .......... .......... .......... 47% 89.5M 1s +2024-03-23T17:47:21Z #15 2.114 60050K .......... .......... .......... .......... .......... 47% 57.7M 1s +2024-03-23T17:47:21Z #15 2.115 60100K .......... .......... .......... .......... .......... 47% 95.2M 1s +2024-03-23T17:47:21Z #15 2.116 60150K .......... .......... .......... .......... .......... 47% 83.3M 1s +2024-03-23T17:47:21Z #15 2.116 60200K .......... .......... .......... .......... .......... 47% 63.3M 1s +2024-03-23T17:47:21Z #15 2.117 60250K .......... .......... .......... .......... .......... 47% 66.0M 1s +2024-03-23T17:47:21Z #15 2.118 60300K .......... .......... .......... .......... .......... 47% 115M 1s +2024-03-23T17:47:21Z #15 2.118 60350K .......... .......... .......... .......... .......... 47% 70.1M 1s +2024-03-23T17:47:21Z #15 2.124 60400K .......... .......... .......... .......... .......... 47% 152M 1s +2024-03-23T17:47:21Z #15 2.124 60450K .......... .......... .......... .......... .......... 47% 85.6M 1s +2024-03-23T17:47:21Z #15 2.124 60500K .......... .......... .......... .......... .......... 47% 124M 1s +2024-03-23T17:47:21Z #15 2.124 60550K .......... .......... .......... .......... .......... 47% 106M 1s +2024-03-23T17:47:21Z #15 2.124 60600K .......... .......... .......... .......... .......... 47% 143M 1s +2024-03-23T17:47:21Z #15 2.124 60650K .......... .......... .......... .......... .......... 47% 108M 1s +2024-03-23T17:47:21Z #15 2.124 60700K .......... .......... .......... .......... .......... 47% 88.3M 1s +2024-03-23T17:47:21Z #15 2.124 60750K .......... .......... .......... .......... .......... 47% 111M 1s +2024-03-23T17:47:21Z #15 2.124 60800K .......... .......... .......... .......... .......... 47% 73.1M 1s +2024-03-23T17:47:21Z #15 2.124 60850K .......... .......... .......... .......... .......... 48% 57.2M 1s +2024-03-23T17:47:21Z #15 2.124 60900K .......... .......... .......... .......... .......... 48% 82.0M 1s +2024-03-23T17:47:21Z #15 2.124 60950K .......... .......... .......... .......... .......... 48% 82.4M 1s +2024-03-23T17:47:21Z #15 2.125 61000K .......... .......... .......... .......... .......... 48% 76.3M 1s +2024-03-23T17:47:21Z #15 2.126 61050K .......... .......... .......... .......... .......... 48% 81.9M 1s +2024-03-23T17:47:21Z #15 2.126 61100K .......... .......... .......... .......... .......... 48% 68.5M 1s +2024-03-23T17:47:21Z #15 2.130 61150K .......... .......... .......... .......... .......... 48% 80.8M 1s +2024-03-23T17:47:21Z #15 2.130 61200K .......... .......... .......... .......... .......... 48% 75.0M 1s +2024-03-23T17:47:21Z #15 2.130 61250K .......... .......... .......... .......... .......... 48% 78.0M 1s +2024-03-23T17:47:21Z #15 2.130 61300K .......... .......... .......... .......... .......... 48% 137M 1s +2024-03-23T17:47:21Z #15 2.130 61350K .......... .......... .......... .......... .......... 48% 51.1M 1s +2024-03-23T17:47:21Z #15 2.131 61400K .......... .......... .......... .......... .......... 48% 106M 1s +2024-03-23T17:47:21Z #15 2.132 61450K .......... .......... .......... .......... .......... 48% 47.6M 1s +2024-03-23T17:47:21Z #15 2.132 61500K .......... .......... .......... .......... .......... 48% 84.3M 1s +2024-03-23T17:47:21Z #15 2.132 61550K .......... .......... .......... .......... .......... 48% 39.2M 1s +2024-03-23T17:47:21Z #15 2.134 61600K .......... .......... .......... .......... .......... 48% 96.4M 1s +2024-03-23T17:47:21Z #15 2.134 61650K .......... .......... .......... .......... .......... 48% 101M 1s +2024-03-23T17:47:21Z #15 2.135 61700K .......... .......... .......... .......... .......... 48% 65.4M 1s +2024-03-23T17:47:21Z #15 2.135 61750K .......... .......... .......... .......... .......... 48% 94.5M 1s +2024-03-23T17:47:21Z #15 2.136 61800K .......... .......... .......... .......... .......... 48% 76.5M 1s +2024-03-23T17:47:21Z #15 2.137 61850K .......... .......... .......... .......... .......... 48% 76.6M 1s +2024-03-23T17:47:21Z #15 2.137 61900K .......... .......... .......... .......... .......... 48% 92.2M 1s +2024-03-23T17:47:21Z #15 2.138 61950K .......... .......... .......... .......... .......... 48% 74.4M 1s +2024-03-23T17:47:21Z #15 2.138 62000K .......... .......... .......... .......... .......... 48% 80.7M 1s +2024-03-23T17:47:21Z #15 2.143 62050K .......... .......... .......... .......... .......... 48% 98.6M 1s +2024-03-23T17:47:21Z #15 2.143 62100K .......... .......... .......... .......... .......... 49% 121M 1s +2024-03-23T17:47:21Z #15 2.143 62150K .......... .......... .......... .......... .......... 49% 87.5M 1s +2024-03-23T17:47:21Z #15 2.143 62200K .......... .......... .......... .......... .......... 49% 108M 1s +2024-03-23T17:47:21Z #15 2.143 62250K .......... .......... .......... .......... .......... 49% 129M 1s +2024-03-23T17:47:21Z #15 2.143 62300K .......... .......... .......... .......... .......... 49% 93.0M 1s +2024-03-23T17:47:21Z #15 2.143 62350K .......... .......... .......... .......... .......... 49% 153M 1s +2024-03-23T17:47:21Z #15 2.143 62400K .......... .......... .......... .......... .......... 49% 89.8M 1s +2024-03-23T17:47:21Z #15 2.143 62450K .......... .......... .......... .......... .......... 49% 55.3M 1s +2024-03-23T17:47:21Z #15 2.143 62500K .......... .......... .......... .......... .......... 49% 60.3M 1s +2024-03-23T17:47:21Z #15 2.144 62550K .......... .......... .......... .......... .......... 49% 80.0M 1s +2024-03-23T17:47:21Z #15 2.145 62600K .......... .......... .......... .......... .......... 49% 94.2M 1s +2024-03-23T17:47:21Z #15 2.145 62650K .......... .......... .......... .......... .......... 49% 73.8M 1s +2024-03-23T17:47:21Z #15 2.146 62700K .......... .......... .......... .......... .......... 49% 50.0M 1s +2024-03-23T17:47:21Z #15 2.147 62750K .......... .......... .......... .......... .......... 49% 106M 1s +2024-03-23T17:47:21Z #15 2.148 62800K .......... .......... .......... .......... .......... 49% 130M 1s +2024-03-23T17:47:21Z #15 2.148 62850K .......... .......... .......... .......... .......... 49% 114M 1s +2024-03-23T17:47:21Z #15 2.148 62900K .......... .......... .......... .......... .......... 49% 68.9M 1s +2024-03-23T17:47:21Z #15 2.150 62950K .......... .......... .......... .......... .......... 49% 74.0M 1s +2024-03-23T17:47:21Z #15 2.150 63000K .......... .......... .......... .......... .......... 49% 57.5M 1s +2024-03-23T17:47:21Z #15 2.151 63050K .......... .......... .......... .......... .......... 49% 101M 1s +2024-03-23T17:47:21Z #15 2.151 63100K .......... .......... .......... .......... .......... 49% 72.4M 1s +2024-03-23T17:47:21Z #15 2.153 63150K .......... .......... .......... .......... .......... 49% 70.8M 1s +2024-03-23T17:47:21Z #15 2.153 63200K .......... .......... .......... .......... .......... 49% 38.5M 1s +2024-03-23T17:47:21Z #15 2.154 63250K .......... .......... .......... .......... .......... 49% 61.2M 1s +2024-03-23T17:47:21Z #15 2.155 63300K .......... .......... .......... .......... .......... 49% 52.0M 1s +2024-03-23T17:47:21Z #15 2.156 63350K .......... .......... .......... .......... .......... 50% 79.5M 1s +2024-03-23T17:47:21Z #15 2.156 63400K .......... .......... .......... .......... .......... 50% 36.9M 1s +2024-03-23T17:47:21Z #15 2.158 63450K .......... .......... .......... .......... .......... 50% 50.6M 1s +2024-03-23T17:47:21Z #15 2.159 63500K .......... .......... .......... .......... .......... 50% 54.6M 1s +2024-03-23T17:47:21Z #15 2.160 63550K .......... .......... .......... .......... .......... 50% 91.2M 1s +2024-03-23T17:47:21Z #15 2.160 63600K .......... .......... .......... .......... .......... 50% 52.0M 1s +2024-03-23T17:47:21Z #15 2.162 63650K .......... .......... .......... .......... .......... 50% 36.9M 1s +2024-03-23T17:47:21Z #15 2.162 63700K .......... .......... .......... .......... .......... 50% 108M 1s +2024-03-23T17:47:21Z #15 2.162 63750K .......... .......... .......... .......... .......... 50% 84.2M 1s +2024-03-23T17:47:21Z #15 2.163 63800K .......... .......... .......... .......... .......... 50% 95.6M 1s +2024-03-23T17:47:21Z #15 2.163 63850K .......... .......... .......... .......... .......... 50% 102M 1s +2024-03-23T17:47:21Z #15 2.164 63900K .......... .......... .......... .......... .......... 50% 72.6M 1s +2024-03-23T17:47:21Z #15 2.165 63950K .......... .......... .......... .......... .......... 50% 101M 1s +2024-03-23T17:47:21Z #15 2.165 64000K .......... .......... .......... .......... .......... 50% 68.3M 1s +2024-03-23T17:47:21Z #15 2.166 64050K .......... .......... .......... .......... .......... 50% 129M 1s +2024-03-23T17:47:21Z #15 2.167 64100K .......... .......... .......... .......... .......... 50% 20.0M 1s +2024-03-23T17:47:21Z #15 2.169 64150K .......... .......... .......... .......... .......... 50% 37.9M 1s +2024-03-23T17:47:21Z #15 2.170 64200K .......... .......... .......... .......... .......... 50% 82.7M 1s +2024-03-23T17:47:21Z #15 2.171 64250K .......... .......... .......... .......... .......... 50% 50.5M 1s +2024-03-23T17:47:21Z #15 2.172 64300K .......... .......... .......... .......... .......... 50% 145M 1s +2024-03-23T17:47:21Z #15 2.172 64350K .......... .......... .......... .......... .......... 50% 52.1M 1s +2024-03-23T17:47:21Z #15 2.175 64400K .......... .......... .......... .......... .......... 50% 73.9M 1s +2024-03-23T17:47:21Z #15 2.175 64450K .......... .......... .......... .......... .......... 50% 165M 1s +2024-03-23T17:47:21Z #15 2.175 64500K .......... .......... .......... .......... .......... 50% 153M 1s +2024-03-23T17:47:21Z #15 2.175 64550K .......... .......... .......... .......... .......... 50% 145M 1s +2024-03-23T17:47:21Z #15 2.175 64600K .......... .......... .......... .......... .......... 50% 19.4M 1s +2024-03-23T17:47:21Z #15 2.179 64650K .......... .......... .......... .......... .......... 51% 122M 1s +2024-03-23T17:47:21Z #15 2.179 64700K .......... .......... .......... .......... .......... 51% 102M 1s +2024-03-23T17:47:21Z #15 2.179 64750K .......... .......... .......... .......... .......... 51% 121M 1s +2024-03-23T17:47:21Z #15 2.179 64800K .......... .......... .......... .......... .......... 51% 117M 1s +2024-03-23T17:47:21Z #15 2.179 64850K .......... .......... .......... .......... .......... 51% 17.4M 1s +2024-03-23T17:47:21Z #15 2.182 64900K .......... .......... .......... .......... .......... 51% 19.8M 1s +2024-03-23T17:47:21Z #15 2.184 64950K .......... .......... .......... .......... .......... 51% 25.9M 1s +2024-03-23T17:47:21Z #15 2.186 65000K .......... .......... .......... .......... .......... 51% 77.5M 1s +2024-03-23T17:47:21Z #15 2.191 65050K .......... .......... .......... .......... .......... 51% 116M 1s +2024-03-23T17:47:21Z #15 2.191 65100K .......... .......... .......... .......... .......... 51% 129M 1s +2024-03-23T17:47:21Z #15 2.191 65150K .......... .......... .......... .......... .......... 51% 137M 1s +2024-03-23T17:47:21Z #15 2.191 65200K .......... .......... .......... .......... .......... 51% 111M 1s +2024-03-23T17:47:21Z #15 2.191 65250K .......... .......... .......... .......... .......... 51% 120M 1s +2024-03-23T17:47:21Z #15 2.191 65300K .......... .......... .......... .......... .......... 51% 162M 1s +2024-03-23T17:47:21Z #15 2.191 65350K .......... .......... .......... .......... .......... 51% 117M 1s +2024-03-23T17:47:21Z #15 2.191 65400K .......... .......... .......... .......... .......... 51% 140M 1s +2024-03-23T17:47:21Z #15 2.191 65450K .......... .......... .......... .......... .......... 51% 153M 1s +2024-03-23T17:47:21Z #15 2.191 65500K .......... .......... .......... .......... .......... 51% 114M 1s +2024-03-23T17:47:21Z #15 2.191 65550K .......... .......... .......... .......... .......... 51% 128M 1s +2024-03-23T17:47:21Z #15 2.191 65600K .......... .......... .......... .......... .......... 51% 8.28M 1s +2024-03-23T17:47:21Z #15 2.197 65650K .......... .......... .......... .......... .......... 51% 29.2M 1s +2024-03-23T17:47:21Z #15 2.198 65700K .......... .......... .......... .......... .......... 51% 30.9M 1s +2024-03-23T17:47:21Z #15 2.203 65750K .......... .......... .......... .......... .......... 51% 142M 1s +2024-03-23T17:47:21Z #15 2.203 65800K .......... .......... .......... .......... .......... 51% 129M 1s +2024-03-23T17:47:21Z #15 2.203 65850K .......... .......... .......... .......... .......... 51% 126M 1s +2024-03-23T17:47:21Z #15 2.203 65900K .......... .......... .......... .......... .......... 52% 125M 1s +2024-03-23T17:47:21Z #15 2.203 65950K .......... .......... .......... .......... .......... 52% 164M 1s +2024-03-23T17:47:21Z #15 2.203 66000K .......... .......... .......... .......... .......... 52% 128M 1s +2024-03-23T17:47:21Z #15 2.203 66050K .......... .......... .......... .......... .......... 52% 153M 1s +2024-03-23T17:47:21Z #15 2.203 66100K .......... .......... .......... .......... .......... 52% 150M 1s +2024-03-23T17:47:21Z #15 2.203 66150K .......... .......... .......... .......... .......... 52% 21.3M 1s +2024-03-23T17:47:21Z #15 2.206 66200K .......... .......... .......... .......... .......... 52% 12.0M 1s +2024-03-23T17:47:21Z #15 2.210 66250K .......... .......... .......... .......... .......... 52% 32.2M 1s +2024-03-23T17:47:21Z #15 2.211 66300K .......... .......... .......... .......... .......... 52% 41.6M 1s +2024-03-23T17:47:21Z #15 2.212 66350K .......... .......... .......... .......... .......... 52% 145M 1s +2024-03-23T17:47:21Z #15 2.212 66400K .......... .......... .......... .......... .......... 52% 25.8M 1s +2024-03-23T17:47:21Z #15 2.214 66450K .......... .......... .......... .......... .......... 52% 38.8M 1s +2024-03-23T17:47:21Z #15 2.215 66500K .......... .......... .......... .......... .......... 52% 34.8M 1s +2024-03-23T17:47:21Z #15 2.217 66550K .......... .......... .......... .......... .......... 52% 41.2M 1s +2024-03-23T17:47:21Z #15 2.218 66600K .......... .......... .......... .......... .......... 52% 50.6M 1s +2024-03-23T17:47:21Z #15 2.219 66650K .......... .......... .......... .......... .......... 52% 29.2M 1s +2024-03-23T17:47:21Z #15 2.221 66700K .......... .......... .......... .......... .......... 52% 25.0M 1s +2024-03-23T17:47:21Z #15 2.222 66750K .......... .......... .......... .......... .......... 52% 66.8M 1s +2024-03-23T17:47:21Z #15 2.223 66800K .......... .......... .......... .......... .......... 52% 34.8M 1s +2024-03-23T17:47:21Z #15 2.225 66850K .......... .......... .......... .......... .......... 52% 48.8M 1s +2024-03-23T17:47:21Z #15 2.227 66900K .......... .......... .......... .......... .......... 52% 128M 1s +2024-03-23T17:47:21Z #15 2.227 66950K .......... .......... .......... .......... .......... 52% 190M 1s +2024-03-23T17:47:21Z #15 2.227 67000K .......... .......... .......... .......... .......... 52% 138M 1s +2024-03-23T17:47:21Z #15 2.227 67050K .......... .......... .......... .......... .......... 52% 91.5M 1s +2024-03-23T17:47:21Z #15 2.227 67100K .......... .......... .......... .......... .......... 52% 22.6M 1s +2024-03-23T17:47:21Z #15 2.229 67150K .......... .......... .......... .......... .......... 53% 44.8M 1s +2024-03-23T17:47:21Z #15 2.230 67200K .......... .......... .......... .......... .......... 53% 49.0M 1s +2024-03-23T17:47:21Z #15 2.233 67250K .......... .......... .......... .......... .......... 53% 172M 1s +2024-03-23T17:47:21Z #15 2.233 67300K .......... .......... .......... .......... .......... 53% 132M 1s +2024-03-23T17:47:21Z #15 2.233 67350K .......... .......... .......... .......... .......... 53% 130M 1s +2024-03-23T17:47:21Z #15 2.233 67400K .......... .......... .......... .......... .......... 53% 138M 1s +2024-03-23T17:47:21Z #15 2.233 67450K .......... .......... .......... .......... .......... 53% 123M 1s +2024-03-23T17:47:21Z #15 2.233 67500K .......... .......... .......... .......... .......... 53% 25.4M 1s +2024-03-23T17:47:21Z #15 2.235 67550K .......... .......... .......... .......... .......... 53% 27.3M 1s +2024-03-23T17:47:21Z #15 2.237 67600K .......... .......... .......... .......... .......... 53% 25.5M 1s +2024-03-23T17:47:21Z #15 2.239 67650K .......... .......... .......... .......... .......... 53% 27.0M 1s +2024-03-23T17:47:21Z #15 2.241 67700K .......... .......... .......... .......... .......... 53% 33.0M 1s +2024-03-23T17:47:21Z #15 2.242 67750K .......... .......... .......... .......... .......... 53% 27.6M 1s +2024-03-23T17:47:21Z #15 2.247 67800K .......... .......... .......... .......... .......... 53% 30.2M 1s +2024-03-23T17:47:21Z #15 2.247 67850K .......... .......... .......... .......... .......... 53% 31.2M 1s +2024-03-23T17:47:21Z #15 2.247 67900K .......... .......... .......... .......... .......... 53% 36.0M 1s +2024-03-23T17:47:21Z #15 2.248 67950K .......... .......... .......... .......... .......... 53% 24.9M 1s +2024-03-23T17:47:21Z #15 2.250 68000K .......... .......... .......... .......... .......... 53% 29.1M 1s +2024-03-23T17:47:21Z #15 2.253 68050K .......... .......... .......... .......... .......... 53% 32.5M 1s +2024-03-23T17:47:21Z #15 2.253 68100K .......... .......... .......... .......... .......... 53% 90.2M 1s +2024-03-23T17:47:21Z #15 2.254 68150K .......... .......... .......... .......... .......... 53% 81.8M 1s +2024-03-23T17:47:21Z #15 2.255 68200K .......... .......... .......... .......... .......... 53% 39.1M 1s +2024-03-23T17:47:21Z #15 2.256 68250K .......... .......... .......... .......... .......... 53% 67.3M 1s +2024-03-23T17:47:21Z #15 2.259 68300K .......... .......... .......... .......... .......... 53% 155M 1s +2024-03-23T17:47:21Z #15 2.259 68350K .......... .......... .......... .......... .......... 53% 151M 1s +2024-03-23T17:47:21Z #15 2.259 68400K .......... .......... .......... .......... .......... 53% 144M 1s +2024-03-23T17:47:21Z #15 2.259 68450K .......... .......... .......... .......... .......... 54% 147M 1s +2024-03-23T17:47:21Z #15 2.259 68500K .......... .......... .......... .......... .......... 54% 127M 1s +2024-03-23T17:47:21Z #15 2.259 68550K .......... .......... .......... .......... .......... 54% 106M 1s +2024-03-23T17:47:21Z #15 2.259 68600K .......... .......... .......... .......... .......... 54% 141M 1s +2024-03-23T17:47:21Z #15 2.259 68650K .......... .......... .......... .......... .......... 54% 53.4M 1s +2024-03-23T17:47:21Z #15 2.260 68700K .......... .......... .......... .......... .......... 54% 34.5M 1s +2024-03-23T17:47:21Z #15 2.261 68750K .......... .......... .......... .......... .......... 54% 65.9M 1s +2024-03-23T17:47:21Z #15 2.262 68800K .......... .......... .......... .......... .......... 54% 28.6M 1s +2024-03-23T17:47:21Z #15 2.264 68850K .......... .......... .......... .......... .......... 54% 32.6M 1s +2024-03-23T17:47:21Z #15 2.265 68900K .......... .......... .......... .......... .......... 54% 40.8M 1s +2024-03-23T17:47:21Z #15 2.267 68950K .......... .......... .......... .......... .......... 54% 46.7M 1s +2024-03-23T17:47:21Z #15 2.268 69000K .......... .......... .......... .......... .......... 54% 40.2M 1s +2024-03-23T17:47:21Z #15 2.269 69050K .......... .......... .......... .......... .......... 54% 60.1M 1s +2024-03-23T17:47:21Z #15 2.270 69100K .......... .......... .......... .......... .......... 54% 34.1M 1s +2024-03-23T17:47:21Z #15 2.271 69150K .......... .......... .......... .......... .......... 54% 41.9M 1s +2024-03-23T17:47:21Z #15 2.272 69200K .......... .......... .......... .......... .......... 54% 53.9M 1s +2024-03-23T17:47:21Z #15 2.273 69250K .......... .......... .......... .......... .......... 54% 41.5M 1s +2024-03-23T17:47:21Z #15 2.274 69300K .......... .......... .......... .......... .......... 54% 27.9M 1s +2024-03-23T17:47:21Z #15 2.277 69350K .......... .......... .......... .......... .......... 54% 36.0M 1s +2024-03-23T17:47:21Z #15 2.277 69400K .......... .......... .......... .......... .......... 54% 50.5M 1s +2024-03-23T17:47:21Z #15 2.279 69450K .......... .......... .......... .......... .......... 54% 38.6M 1s +2024-03-23T17:47:21Z #15 2.280 69500K .......... .......... .......... .......... .......... 54% 2.06M 1s +2024-03-23T17:47:21Z #15 2.307 69550K .......... .......... .......... .......... .......... 54% 147M 1s +2024-03-23T17:47:21Z #15 2.307 69600K .......... .......... .......... .......... .......... 54% 160M 1s +2024-03-23T17:47:21Z #15 2.307 69650K .......... .......... .......... .......... .......... 54% 151M 1s +2024-03-23T17:47:21Z #15 2.307 69700K .......... .......... .......... .......... .......... 55% 162M 1s +2024-03-23T17:47:21Z #15 2.307 69750K .......... .......... .......... .......... .......... 55% 141M 1s +2024-03-23T17:47:21Z #15 2.307 69800K .......... .......... .......... .......... .......... 55% 107M 1s +2024-03-23T17:47:21Z #15 2.307 69850K .......... .......... .......... .......... .......... 55% 213M 1s +2024-03-23T17:47:21Z #15 2.307 69900K .......... .......... .......... .......... .......... 55% 166M 1s +2024-03-23T17:47:21Z #15 2.307 69950K .......... .......... .......... .......... .......... 55% 179M 1s +2024-03-23T17:47:21Z #15 2.307 70000K .......... .......... .......... .......... .......... 55% 205M 1s +2024-03-23T17:47:21Z #15 2.307 70050K .......... .......... .......... .......... .......... 55% 149M 1s +2024-03-23T17:47:21Z #15 2.307 70100K .......... .......... .......... .......... .......... 55% 125M 1s +2024-03-23T17:47:21Z #15 2.307 70150K .......... .......... .......... .......... .......... 55% 143M 1s +2024-03-23T17:47:21Z #15 2.307 70200K .......... .......... .......... .......... .......... 55% 76.0M 1s +2024-03-23T17:47:21Z #15 2.308 70250K .......... .......... .......... .......... .......... 55% 152M 1s +2024-03-23T17:47:21Z #15 2.309 70300K .......... .......... .......... .......... .......... 55% 27.5M 1s +2024-03-23T17:47:21Z #15 2.311 70350K .......... .......... .......... .......... .......... 55% 24.6M 1s +2024-03-23T17:47:21Z #15 2.312 70400K .......... .......... .......... .......... .......... 55% 36.0M 1s +2024-03-23T17:47:21Z #15 2.314 70450K .......... .......... .......... .......... .......... 55% 16.2M 1s +2024-03-23T17:47:21Z #15 2.318 70500K .......... .......... .......... .......... .......... 55% 49.3M 1s +2024-03-23T17:47:21Z #15 2.318 70550K .......... .......... .......... .......... .......... 55% 82.8M 1s +2024-03-23T17:47:21Z #15 2.318 70600K .......... .......... .......... .......... .......... 55% 22.8M 1s +2024-03-23T17:47:21Z #15 2.323 70650K .......... .......... .......... .......... .......... 55% 101M 1s +2024-03-23T17:47:21Z #15 2.323 70700K .......... .......... .......... .......... .......... 55% 84.1M 1s +2024-03-23T17:47:21Z #15 2.323 70750K .......... .......... .......... .......... .......... 55% 141M 1s +2024-03-23T17:47:21Z #15 2.323 70800K .......... .......... .......... .......... .......... 55% 179M 1s +2024-03-23T17:47:21Z #15 2.323 70850K .......... .......... .......... .......... .......... 55% 164M 1s +2024-03-23T17:47:21Z #15 2.323 70900K .......... .......... .......... .......... .......... 55% 146M 1s +2024-03-23T17:47:21Z #15 2.323 70950K .......... .......... .......... .......... .......... 56% 73.5M 1s +2024-03-23T17:47:21Z #15 2.323 71000K .......... .......... .......... .......... .......... 56% 139M 1s +2024-03-23T17:47:21Z #15 2.324 71050K .......... .......... .......... .......... .......... 56% 149M 1s +2024-03-23T17:47:21Z #15 2.324 71100K .......... .......... .......... .......... .......... 56% 122M 1s +2024-03-23T17:47:21Z #15 2.324 71150K .......... .......... .......... .......... .......... 56% 146M 1s +2024-03-23T17:47:21Z #15 2.325 71200K .......... .......... .......... .......... .......... 56% 153M 1s +2024-03-23T17:47:21Z #15 2.325 71250K .......... .......... .......... .......... .......... 56% 122M 1s +2024-03-23T17:47:21Z #15 2.334 71300K .......... .......... .......... .......... .......... 56% 26.1M 1s +2024-03-23T17:47:21Z #15 2.334 71350K .......... .......... .......... .......... .......... 56% 117M 1s +2024-03-23T17:47:21Z #15 2.334 71400K .......... .......... .......... .......... .......... 56% 187M 1s +2024-03-23T17:47:21Z #15 2.334 71450K .......... .......... .......... .......... .......... 56% 140M 1s +2024-03-23T17:47:21Z #15 2.334 71500K .......... .......... .......... .......... .......... 56% 160M 1s +2024-03-23T17:47:21Z #15 2.334 71550K .......... .......... .......... .......... .......... 56% 118M 1s +2024-03-23T17:47:21Z #15 2.334 71600K .......... .......... .......... .......... .......... 56% 150M 1s +2024-03-23T17:47:21Z #15 2.334 71650K .......... .......... .......... .......... .......... 56% 153M 1s +2024-03-23T17:47:21Z #15 2.334 71700K .......... .......... .......... .......... .......... 56% 147M 1s +2024-03-23T17:47:21Z #15 2.334 71750K .......... .......... .......... .......... .......... 56% 137M 1s +2024-03-23T17:47:21Z #15 2.334 71800K .......... .......... .......... .......... .......... 56% 27.0M 1s +2024-03-23T17:47:21Z #15 2.334 71850K .......... .......... .......... .......... .......... 56% 109M 1s +2024-03-23T17:47:21Z #15 2.334 71900K .......... .......... .......... .......... .......... 56% 129M 1s +2024-03-23T17:47:21Z #15 2.334 71950K .......... .......... .......... .......... .......... 56% 146M 1s +2024-03-23T17:47:21Z #15 2.334 72000K .......... .......... .......... .......... .......... 56% 130M 1s +2024-03-23T17:47:21Z #15 2.334 72050K .......... .......... .......... .......... .......... 56% 113M 1s +2024-03-23T17:47:21Z #15 2.334 72100K .......... .......... .......... .......... .......... 56% 154M 1s +2024-03-23T17:47:21Z #15 2.337 72150K .......... .......... .......... .......... .......... 56% 92.6M 1s +2024-03-23T17:47:21Z #15 2.337 72200K .......... .......... .......... .......... .......... 56% 157M 1s +2024-03-23T17:47:21Z #15 2.337 72250K .......... .......... .......... .......... .......... 57% 27.9M 1s +2024-03-23T17:47:21Z #15 2.337 72300K .......... .......... .......... .......... .......... 57% 139M 1s +2024-03-23T17:47:21Z #15 2.337 72350K .......... .......... .......... .......... .......... 57% 135M 1s +2024-03-23T17:47:21Z #15 2.338 72400K .......... .......... .......... .......... .......... 57% 168M 1s +2024-03-23T17:47:21Z #15 2.341 72450K .......... .......... .......... .......... .......... 57% 171M 1s +2024-03-23T17:47:21Z #15 2.341 72500K .......... .......... .......... .......... .......... 57% 82.4M 1s +2024-03-23T17:47:21Z #15 2.341 72550K .......... .......... .......... .......... .......... 57% 142M 1s +2024-03-23T17:47:21Z #15 2.341 72600K .......... .......... .......... .......... .......... 57% 136M 1s +2024-03-23T17:47:21Z #15 2.341 72650K .......... .......... .......... .......... .......... 57% 27.2M 1s +2024-03-23T17:47:21Z #15 2.342 72700K .......... .......... .......... .......... .......... 57% 109M 1s +2024-03-23T17:47:21Z #15 2.342 72750K .......... .......... .......... .......... .......... 57% 117M 1s +2024-03-23T17:47:21Z #15 2.342 72800K .......... .......... .......... .......... .......... 57% 164M 1s +2024-03-23T17:47:21Z #15 2.342 72850K .......... .......... .......... .......... .......... 57% 110M 1s +2024-03-23T17:47:21Z #15 2.343 72900K .......... .......... .......... .......... .......... 57% 133M 1s +2024-03-23T17:47:21Z #15 2.343 72950K .......... .......... .......... .......... .......... 57% 126M 1s +2024-03-23T17:47:21Z #15 2.344 73000K .......... .......... .......... .......... .......... 57% 133M 1s +2024-03-23T17:47:21Z #15 2.344 73050K .......... .......... .......... .......... .......... 57% 147M 1s +2024-03-23T17:47:21Z #15 2.344 73100K .......... .......... .......... .......... .......... 57% 129M 1s +2024-03-23T17:47:21Z #15 2.345 73150K .......... .......... .......... .......... .......... 57% 99.6M 1s +2024-03-23T17:47:21Z #15 2.345 73200K .......... .......... .......... .......... .......... 57% 160M 1s +2024-03-23T17:47:21Z #15 2.346 73250K .......... .......... .......... .......... .......... 57% 59.6M 1s +2024-03-23T17:47:21Z #15 2.346 73300K .......... .......... .......... .......... .......... 57% 82.4M 1s +2024-03-23T17:47:21Z #15 2.347 73350K .......... .......... .......... .......... .......... 57% 82.3M 1s +2024-03-23T17:47:21Z #15 2.348 73400K .......... .......... .......... .......... .......... 57% 113M 1s +2024-03-23T17:47:21Z #15 2.348 73450K .......... .......... .......... .......... .......... 57% 129M 1s +2024-03-23T17:47:21Z #15 2.348 73500K .......... .......... .......... .......... .......... 58% 92.9M 1s +2024-03-23T17:47:21Z #15 2.349 73550K .......... .......... .......... .......... .......... 58% 152M 1s +2024-03-23T17:47:21Z #15 2.349 73600K .......... .......... .......... .......... .......... 58% 66.2M 1s +2024-03-23T17:47:21Z #15 2.351 73650K .......... .......... .......... .......... .......... 58% 130M 1s +2024-03-23T17:47:21Z #15 2.351 73700K .......... .......... .......... .......... .......... 58% 160M 1s +2024-03-23T17:47:21Z #15 2.351 73750K .......... .......... .......... .......... .......... 58% 69.9M 1s +2024-03-23T17:47:21Z #15 2.351 73800K .......... .......... .......... .......... .......... 58% 62.6M 1s +2024-03-23T17:47:21Z #15 2.353 73850K .......... .......... .......... .......... .......... 58% 88.2M 1s +2024-03-23T17:47:21Z #15 2.353 73900K .......... .......... .......... .......... .......... 58% 110M 1s +2024-03-23T17:47:21Z #15 2.353 73950K .......... .......... .......... .......... .......... 58% 115M 1s +2024-03-23T17:47:21Z #15 2.354 74000K .......... .......... .......... .......... .......... 58% 76.0M 1s +2024-03-23T17:47:21Z #15 2.354 74050K .......... .......... .......... .......... .......... 58% 134M 1s +2024-03-23T17:47:21Z #15 2.355 74100K .......... .......... .......... .......... .......... 58% 77.3M 1s +2024-03-23T17:47:21Z #15 2.355 74150K .......... .......... .......... .......... .......... 58% 86.7M 1s +2024-03-23T17:47:21Z #15 2.356 74200K .......... .......... .......... .......... .......... 58% 94.0M 1s +2024-03-23T17:47:21Z #15 2.356 74250K .......... .......... .......... .......... .......... 58% 81.0M 1s +2024-03-23T17:47:21Z #15 2.357 74300K .......... .......... .......... .......... .......... 58% 63.0M 1s +2024-03-23T17:47:21Z #15 2.358 74350K .......... .......... .......... .......... .......... 58% 94.4M 1s +2024-03-23T17:47:21Z #15 2.359 74400K .......... .......... .......... .......... .......... 58% 161M 1s +2024-03-23T17:47:21Z #15 2.359 74450K .......... .......... .......... .......... .......... 58% 56.9M 1s +2024-03-23T17:47:21Z #15 2.359 74500K .......... .......... .......... .......... .......... 58% 68.4M 1s +2024-03-23T17:47:21Z #15 2.360 74550K .......... .......... .......... .......... .......... 58% 84.5M 1s +2024-03-23T17:47:21Z #15 2.361 74600K .......... .......... .......... .......... .......... 58% 106M 1s +2024-03-23T17:47:21Z #15 2.361 74650K .......... .......... .......... .......... .......... 58% 72.3M 1s +2024-03-23T17:47:21Z #15 2.362 74700K .......... .......... .......... .......... .......... 58% 43.8M 1s +2024-03-23T17:47:21Z #15 2.363 74750K .......... .......... .......... .......... .......... 58% 57.8M 1s +2024-03-23T17:47:21Z #15 2.364 74800K .......... .......... .......... .......... .......... 59% 68.3M 1s +2024-03-23T17:47:21Z #15 2.365 74850K .......... .......... .......... .......... .......... 59% 96.3M 1s +2024-03-23T17:47:21Z #15 2.366 74900K .......... .......... .......... .......... .......... 59% 48.1M 1s +2024-03-23T17:47:21Z #15 2.366 74950K .......... .......... .......... .......... .......... 59% 84.1M 1s +2024-03-23T17:47:21Z #15 2.367 75000K .......... .......... .......... .......... .......... 59% 52.0M 1s +2024-03-23T17:47:21Z #15 2.368 75050K .......... .......... .......... .......... .......... 59% 143M 1s +2024-03-23T17:47:21Z #15 2.368 75100K .......... .......... .......... .......... .......... 59% 50.7M 1s +2024-03-23T17:47:21Z #15 2.369 75150K .......... .......... .......... .......... .......... 59% 84.1M 1s +2024-03-23T17:47:21Z #15 2.369 75200K .......... .......... .......... .......... .......... 59% 34.0M 1s +2024-03-23T17:47:21Z #15 2.371 75250K .......... .......... .......... .......... .......... 59% 61.7M 1s +2024-03-23T17:47:21Z #15 2.372 75300K .......... .......... .......... .......... .......... 59% 112M 1s +2024-03-23T17:47:21Z #15 2.372 75350K .......... .......... .......... .......... .......... 59% 41.2M 1s +2024-03-23T17:47:21Z #15 2.373 75400K .......... .......... .......... .......... .......... 59% 56.9M 1s +2024-03-23T17:47:21Z #15 2.374 75450K .......... .......... .......... .......... .......... 59% 48.4M 1s +2024-03-23T17:47:21Z #15 2.375 75500K .......... .......... .......... .......... .......... 59% 126M 1s +2024-03-23T17:47:21Z #15 2.376 75550K .......... .......... .......... .......... .......... 59% 26.5M 1s +2024-03-23T17:47:21Z #15 2.378 75600K .......... .......... .......... .......... .......... 59% 48.9M 1s +2024-03-23T17:47:21Z #15 2.379 75650K .......... .......... .......... .......... .......... 59% 42.7M 1s +2024-03-23T17:47:21Z #15 2.379 75700K .......... .......... .......... .......... .......... 59% 43.8M 1s +2024-03-23T17:47:21Z #15 2.381 75750K .......... .......... .......... .......... .......... 59% 51.7M 1s +2024-03-23T17:47:21Z #15 2.381 75800K .......... .......... .......... .......... .......... 59% 70.7M 1s +2024-03-23T17:47:21Z #15 2.387 75850K .......... .......... .......... .......... .......... 59% 146M 1s +2024-03-23T17:47:21Z #15 2.387 75900K .......... .......... .......... .......... .......... 59% 77.4M 1s +2024-03-23T17:47:21Z #15 2.387 75950K .......... .......... .......... .......... .......... 59% 44.6M 1s +2024-03-23T17:47:21Z #15 2.387 76000K .......... .......... .......... .......... .......... 59% 133M 1s +2024-03-23T17:47:21Z #15 2.387 76050K .......... .......... .......... .......... .......... 60% 166M 1s +2024-03-23T17:47:21Z #15 2.387 76100K .......... .......... .......... .......... .......... 60% 148M 1s +2024-03-23T17:47:21Z #15 2.387 76150K .......... .......... .......... .......... .......... 60% 190M 1s +2024-03-23T17:47:21Z #15 2.387 76200K .......... .......... .......... .......... .......... 60% 155M 1s +2024-03-23T17:47:21Z #15 2.387 76250K .......... .......... .......... .......... .......... 60% 183M 1s +2024-03-23T17:47:21Z #15 2.387 76300K .......... .......... .......... .......... .......... 60% 168M 1s +2024-03-23T17:47:21Z #15 2.387 76350K .......... .......... .......... .......... .......... 60% 170M 1s +2024-03-23T17:47:21Z #15 2.387 76400K .......... .......... .......... .......... .......... 60% 41.3M 1s +2024-03-23T17:47:21Z #15 2.388 76450K .......... .......... .......... .......... .......... 60% 80.6M 1s +2024-03-23T17:47:21Z #15 2.388 76500K .......... .......... .......... .......... .......... 60% 60.7M 1s +2024-03-23T17:47:21Z #15 2.389 76550K .......... .......... .......... .......... .......... 60% 38.1M 1s +2024-03-23T17:47:21Z #15 2.391 76600K .......... .......... .......... .......... .......... 60% 19.7M 1s +2024-03-23T17:47:21Z #15 2.399 76650K .......... .......... .......... .......... .......... 60% 166M 1s +2024-03-23T17:47:21Z #15 2.399 76700K .......... .......... .......... .......... .......... 60% 173M 1s +2024-03-23T17:47:21Z #15 2.399 76750K .......... .......... .......... .......... .......... 60% 180M 1s +2024-03-23T17:47:21Z #15 2.399 76800K .......... .......... .......... .......... .......... 60% 153M 1s +2024-03-23T17:47:21Z #15 2.399 76850K .......... .......... .......... .......... .......... 60% 186M 1s +2024-03-23T17:47:21Z #15 2.399 76900K .......... .......... .......... .......... .......... 60% 143M 1s +2024-03-23T17:47:21Z #15 2.399 76950K .......... .......... .......... .......... .......... 60% 38.2M 1s +2024-03-23T17:47:21Z #15 2.399 77000K .......... .......... .......... .......... .......... 60% 82.5M 1s +2024-03-23T17:47:21Z #15 2.399 77050K .......... .......... .......... .......... .......... 60% 155M 1s +2024-03-23T17:47:21Z #15 2.399 77100K .......... .......... .......... .......... .......... 60% 176M 1s +2024-03-23T17:47:21Z #15 2.399 77150K .......... .......... .......... .......... .......... 60% 141M 1s +2024-03-23T17:47:21Z #15 2.399 77200K .......... .......... .......... .......... .......... 60% 158M 1s +2024-03-23T17:47:21Z #15 2.399 77250K .......... .......... .......... .......... .......... 60% 162M 1s +2024-03-23T17:47:21Z #15 2.399 77300K .......... .......... .......... .......... .......... 61% 139M 1s +2024-03-23T17:47:21Z #15 2.399 77350K .......... .......... .......... .......... .......... 61% 26.5M 1s +2024-03-23T17:47:21Z #15 2.401 77400K .......... .......... .......... .......... .......... 61% 15.1M 1s +2024-03-23T17:47:21Z #15 2.405 77450K .......... .......... .......... .......... .......... 61% 20.2M 1s +2024-03-23T17:47:21Z #15 2.406 77500K .......... .......... .......... .......... .......... 61% 15.3M 1s +2024-03-23T17:47:21Z #15 2.411 77550K .......... .......... .......... .......... .......... 61% 132M 1s +2024-03-23T17:47:21Z #15 2.411 77600K .......... .......... .......... .......... .......... 61% 231M 1s +2024-03-23T17:47:21Z #15 2.411 77650K .......... .......... .......... .......... .......... 61% 229M 1s +2024-03-23T17:47:21Z #15 2.411 77700K .......... .......... .......... .......... .......... 61% 186M 1s +2024-03-23T17:47:21Z #15 2.411 77750K .......... .......... .......... .......... .......... 61% 145M 1s +2024-03-23T17:47:21Z #15 2.411 77800K .......... .......... .......... .......... .......... 61% 121M 1s +2024-03-23T17:47:21Z #15 2.411 77850K .......... .......... .......... .......... .......... 61% 146M 1s +2024-03-23T17:47:21Z #15 2.411 77900K .......... .......... .......... .......... .......... 61% 135M 1s +2024-03-23T17:47:21Z #15 2.412 77950K .......... .......... .......... .......... .......... 61% 131M 1s +2024-03-23T17:47:21Z #15 2.412 78000K .......... .......... .......... .......... .......... 61% 143M 1s +2024-03-23T17:47:21Z #15 2.412 78050K .......... .......... .......... .......... .......... 61% 134M 1s +2024-03-23T17:47:21Z #15 2.413 78100K .......... .......... .......... .......... .......... 61% 113M 1s +2024-03-23T17:47:21Z #15 2.413 78150K .......... .......... .......... .......... .......... 61% 108M 1s +2024-03-23T17:47:21Z #15 2.414 78200K .......... .......... .......... .......... .......... 61% 129M 1s +2024-03-23T17:47:21Z #15 2.414 78250K .......... .......... .......... .......... .......... 61% 107M 1s +2024-03-23T17:47:21Z #15 2.414 78300K .......... .......... .......... .......... .......... 61% 73.3M 1s +2024-03-23T17:47:21Z #15 2.415 78350K .......... .......... .......... .......... .......... 61% 132M 1s +2024-03-23T17:47:21Z #15 2.416 78400K .......... .......... .......... .......... .......... 61% 116M 1s +2024-03-23T17:47:21Z #15 2.416 78450K .......... .......... .......... .......... .......... 61% 120M 1s +2024-03-23T17:47:21Z #15 2.416 78500K .......... .......... .......... .......... .......... 61% 113M 1s +2024-03-23T17:47:21Z #15 2.417 78550K .......... .......... .......... .......... .......... 61% 130M 1s +2024-03-23T17:47:21Z #15 2.417 78600K .......... .......... .......... .......... .......... 62% 93.7M 1s +2024-03-23T17:47:21Z #15 2.418 78650K .......... .......... .......... .......... .......... 62% 131M 1s +2024-03-23T17:47:21Z #15 2.418 78700K .......... .......... .......... .......... .......... 62% 112M 1s +2024-03-23T17:47:21Z #15 2.419 78750K .......... .......... .......... .......... .......... 62% 114M 1s +2024-03-23T17:47:21Z #15 2.419 78800K .......... .......... .......... .......... .......... 62% 136M 1s +2024-03-23T17:47:21Z #15 2.419 78850K .......... .......... .......... .......... .......... 62% 112M 1s +2024-03-23T17:47:21Z #15 2.420 78900K .......... .......... .......... .......... .......... 62% 117M 1s +2024-03-23T17:47:21Z #15 2.420 78950K .......... .......... .......... .......... .......... 62% 125M 1s +2024-03-23T17:47:21Z #15 2.421 79000K .......... .......... .......... .......... .......... 62% 132M 1s +2024-03-23T17:47:21Z #15 2.426 79050K .......... .......... .......... .......... .......... 62% 101M 1s +2024-03-23T17:47:21Z #15 2.426 79100K .......... .......... .......... .......... .......... 62% 112M 1s +2024-03-23T17:47:21Z #15 2.426 79150K .......... .......... .......... .......... .......... 62% 181M 1s +2024-03-23T17:47:21Z #15 2.426 79200K .......... .......... .......... .......... .......... 62% 162M 1s +2024-03-23T17:47:21Z #15 2.426 79250K .......... .......... .......... .......... .......... 62% 187M 1s +2024-03-23T17:47:21Z #15 2.426 79300K .......... .......... .......... .......... .......... 62% 120M 1s +2024-03-23T17:47:21Z #15 2.426 79350K .......... .......... .......... .......... .......... 62% 180M 1s +2024-03-23T17:47:21Z #15 2.426 79400K .......... .......... .......... .......... .......... 62% 182M 1s +2024-03-23T17:47:21Z #15 2.426 79450K .......... .......... .......... .......... .......... 62% 161M 1s +2024-03-23T17:47:21Z #15 2.426 79500K .......... .......... .......... .......... .......... 62% 154M 1s +2024-03-23T17:47:21Z #15 2.426 79550K .......... .......... .......... .......... .......... 62% 159M 1s +2024-03-23T17:47:21Z #15 2.426 79600K .......... .......... .......... .......... .......... 62% 154M 1s +2024-03-23T17:47:21Z #15 2.426 79650K .......... .......... .......... .......... .......... 62% 146M 1s +2024-03-23T17:47:21Z #15 2.426 79700K .......... .......... .......... .......... .......... 62% 177M 1s +2024-03-23T17:47:21Z #15 2.426 79750K .......... .......... .......... .......... .......... 62% 142M 1s +2024-03-23T17:47:21Z #15 2.426 79800K .......... .......... .......... .......... .......... 62% 106M 1s +2024-03-23T17:47:21Z #15 2.426 79850K .......... .......... .......... .......... .......... 63% 108M 1s +2024-03-23T17:47:21Z #15 2.427 79900K .......... .......... .......... .......... .......... 63% 109M 1s +2024-03-23T17:47:21Z #15 2.427 79950K .......... .......... .......... .......... .......... 63% 136M 1s +2024-03-23T17:47:21Z #15 2.428 80000K .......... .......... .......... .......... .......... 63% 123M 1s +2024-03-23T17:47:21Z #15 2.428 80050K .......... .......... .......... .......... .......... 63% 142M 1s +2024-03-23T17:47:21Z #15 2.428 80100K .......... .......... .......... .......... .......... 63% 134M 1s +2024-03-23T17:47:21Z #15 2.429 80150K .......... .......... .......... .......... .......... 63% 132M 1s +2024-03-23T17:47:21Z #15 2.430 80200K .......... .......... .......... .......... .......... 63% 125M 1s +2024-03-23T17:47:21Z #15 2.430 80250K .......... .......... .......... .......... .......... 63% 127M 1s +2024-03-23T17:47:21Z #15 2.430 80300K .......... .......... .......... .......... .......... 63% 137M 1s +2024-03-23T17:47:21Z #15 2.430 80350K .......... .......... .......... .......... .......... 63% 138M 1s +2024-03-23T17:47:21Z #15 2.430 80400K .......... .......... .......... .......... .......... 63% 99.9M 1s +2024-03-23T17:47:21Z #15 2.431 80450K .......... .......... .......... .......... .......... 63% 139M 1s +2024-03-23T17:47:21Z #15 2.431 80500K .......... .......... .......... .......... .......... 63% 123M 1s +2024-03-23T17:47:21Z #15 2.432 80550K .......... .......... .......... .......... .......... 63% 124M 1s +2024-03-23T17:47:21Z #15 2.432 80600K .......... .......... .......... .......... .......... 63% 135M 1s +2024-03-23T17:47:21Z #15 2.432 80650K .......... .......... .......... .......... .......... 63% 141M 1s +2024-03-23T17:47:21Z #15 2.433 80700K .......... .......... .......... .......... .......... 63% 150M 1s +2024-03-23T17:47:21Z #15 2.433 80750K .......... .......... .......... .......... .......... 63% 134M 1s +2024-03-23T17:47:21Z #15 2.434 80800K .......... .......... .......... .......... .......... 63% 111M 1s +2024-03-23T17:47:21Z #15 2.434 80850K .......... .......... .......... .......... .......... 63% 148M 1s +2024-03-23T17:47:21Z #15 2.434 80900K .......... .......... .......... .......... .......... 63% 162M 1s +2024-03-23T17:47:21Z #15 2.435 80950K .......... .......... .......... .......... .......... 63% 117M 1s +2024-03-23T17:47:21Z #15 2.439 81000K .......... .......... .......... .......... .......... 63% 193M 1s +2024-03-23T17:47:21Z #15 2.439 81050K .......... .......... .......... .......... .......... 63% 186M 1s +2024-03-23T17:47:21Z #15 2.439 81100K .......... .......... .......... .......... .......... 64% 150M 1s +2024-03-23T17:47:21Z #15 2.439 81150K .......... .......... .......... .......... .......... 64% 169M 1s +2024-03-23T17:47:21Z #15 2.439 81200K .......... .......... .......... .......... .......... 64% 178M 1s +2024-03-23T17:47:21Z #15 2.439 81250K .......... .......... .......... .......... .......... 64% 165M 1s +2024-03-23T17:47:21Z #15 2.439 81300K .......... .......... .......... .......... .......... 64% 159M 1s +2024-03-23T17:47:21Z #15 2.439 81350K .......... .......... .......... .......... .......... 64% 184M 1s +2024-03-23T17:47:21Z #15 2.439 81400K .......... .......... .......... .......... .......... 64% 175M 1s +2024-03-23T17:47:21Z #15 2.439 81450K .......... .......... .......... .......... .......... 64% 122M 1s +2024-03-23T17:47:21Z #15 2.439 81500K .......... .......... .......... .......... .......... 64% 139M 1s +2024-03-23T17:47:21Z #15 2.439 81550K .......... .......... .......... .......... .......... 64% 157M 1s +2024-03-23T17:47:21Z #15 2.439 81600K .......... .......... .......... .......... .......... 64% 104M 1s +2024-03-23T17:47:21Z #15 2.439 81650K .......... .......... .......... .......... .......... 64% 147M 1s +2024-03-23T17:47:21Z #15 2.439 81700K .......... .......... .......... .......... .......... 64% 134M 1s +2024-03-23T17:47:21Z #15 2.440 81750K .......... .......... .......... .......... .......... 64% 121M 1s +2024-03-23T17:47:21Z #15 2.440 81800K .......... .......... .......... .......... .......... 64% 144M 1s +2024-03-23T17:47:21Z #15 2.441 81850K .......... .......... .......... .......... .......... 64% 103M 1s +2024-03-23T17:47:21Z #15 2.441 81900K .......... .......... .......... .......... .......... 64% 106M 1s +2024-03-23T17:47:21Z #15 2.441 81950K .......... .......... .......... .......... .......... 64% 135M 1s +2024-03-23T17:47:21Z #15 2.442 82000K .......... .......... .......... .......... .......... 64% 104M 1s +2024-03-23T17:47:21Z #15 2.447 82050K .......... .......... .......... .......... .......... 64% 133M 1s +2024-03-23T17:47:21Z #15 2.447 82100K .......... .......... .......... .......... .......... 64% 135M 1s +2024-03-23T17:47:21Z #15 2.447 82150K .......... .......... .......... .......... .......... 64% 137M 1s +2024-03-23T17:47:21Z #15 2.447 82200K .......... .......... .......... .......... .......... 64% 154M 1s +2024-03-23T17:47:21Z #15 2.447 82250K .......... .......... .......... .......... .......... 64% 118M 1s +2024-03-23T17:47:21Z #15 2.447 82300K .......... .......... .......... .......... .......... 64% 138M 1s +2024-03-23T17:47:21Z #15 2.447 82350K .......... .......... .......... .......... .......... 64% 123M 1s +2024-03-23T17:47:21Z #15 2.447 82400K .......... .......... .......... .......... .......... 65% 122M 1s +2024-03-23T17:47:21Z #15 2.447 82450K .......... .......... .......... .......... .......... 65% 142M 1s +2024-03-23T17:47:21Z #15 2.447 82500K .......... .......... .......... .......... .......... 65% 152M 1s +2024-03-23T17:47:21Z #15 2.447 82550K .......... .......... .......... .......... .......... 65% 155M 1s +2024-03-23T17:47:21Z #15 2.447 82600K .......... .......... .......... .......... .......... 65% 155M 1s +2024-03-23T17:47:21Z #15 2.447 82650K .......... .......... .......... .......... .......... 65% 112M 1s +2024-03-23T17:47:21Z #15 2.447 82700K .......... .......... .......... .......... .......... 65% 114M 1s +2024-03-23T17:47:21Z #15 2.447 82750K .......... .......... .......... .......... .......... 65% 113M 1s +2024-03-23T17:47:21Z #15 2.449 82800K .......... .......... .......... .......... .......... 65% 108M 1s +2024-03-23T17:47:21Z #15 2.449 82850K .......... .......... .......... .......... .......... 65% 119M 1s +2024-03-23T17:47:21Z #15 2.449 82900K .......... .......... .......... .......... .......... 65% 132M 1s +2024-03-23T17:47:21Z #15 2.449 82950K .......... .......... .......... .......... .......... 65% 110M 1s +2024-03-23T17:47:21Z #15 2.450 83000K .......... .......... .......... .......... .......... 65% 99.1M 1s +2024-03-23T17:47:21Z #15 2.450 83050K .......... .......... .......... .......... .......... 65% 112M 1s +2024-03-23T17:47:21Z #15 2.450 83100K .......... .......... .......... .......... .......... 65% 89.1M 1s +2024-03-23T17:47:21Z #15 2.451 83150K .......... .......... .......... .......... .......... 65% 115M 1s +2024-03-23T17:47:21Z #15 2.451 83200K .......... .......... .......... .......... .......... 65% 118M 1s +2024-03-23T17:47:21Z #15 2.452 83250K .......... .......... .......... .......... .......... 65% 121M 1s +2024-03-23T17:47:21Z #15 2.452 83300K .......... .......... .......... .......... .......... 65% 109M 1s +2024-03-23T17:47:21Z #15 2.453 83350K .......... .......... .......... .......... .......... 65% 128M 1s +2024-03-23T17:47:21Z #15 2.453 83400K .......... .......... .......... .......... .......... 65% 121M 1s +2024-03-23T17:47:21Z #15 2.454 83450K .......... .......... .......... .......... .......... 65% 118M 1s +2024-03-23T17:47:21Z #15 2.454 83500K .......... .......... .......... .......... .......... 65% 112M 1s +2024-03-23T17:47:21Z #15 2.454 83550K .......... .......... .......... .......... .......... 65% 107M 1s +2024-03-23T17:47:21Z #15 2.455 83600K .......... .......... .......... .......... .......... 65% 102M 1s +2024-03-23T17:47:21Z #15 2.456 83650K .......... .......... .......... .......... .......... 66% 121M 1s +2024-03-23T17:47:21Z #15 2.456 83700K .......... .......... .......... .......... .......... 66% 127M 1s +2024-03-23T17:47:21Z #15 2.456 83750K .......... .......... .......... .......... .......... 66% 118M 1s +2024-03-23T17:47:21Z #15 2.457 83800K .......... .......... .......... .......... .......... 66% 124M 1s +2024-03-23T17:47:21Z #15 2.457 83850K .......... .......... .......... .......... .......... 66% 127M 1s +2024-03-23T17:47:21Z #15 2.457 83900K .......... .......... .......... .......... .......... 66% 124M 1s +2024-03-23T17:47:21Z #15 2.458 83950K .......... .......... .......... .......... .......... 66% 103M 1s +2024-03-23T17:47:21Z #15 2.458 84000K .......... .......... .......... .......... .......... 66% 126M 1s +2024-03-23T17:47:21Z #15 2.459 84050K .......... .......... .......... .......... .......... 66% 124M 1s +2024-03-23T17:47:21Z #15 2.459 84100K .......... .......... .......... .......... .......... 66% 120M 1s +2024-03-23T17:47:21Z #15 2.459 84150K .......... .......... .......... .......... .......... 66% 112M 1s +2024-03-23T17:47:21Z #15 2.465 84200K .......... .......... .......... .......... .......... 66% 88.7M 1s +2024-03-23T17:47:21Z #15 2.465 84250K .......... .......... .......... .......... .......... 66% 85.4M 1s +2024-03-23T17:47:21Z #15 2.465 84300K .......... .......... .......... .......... .......... 66% 74.7M 1s +2024-03-23T17:47:21Z #15 2.465 84350K .......... .......... .......... .......... .......... 66% 87.4M 1s +2024-03-23T17:47:21Z #15 2.465 84400K .......... .......... .......... .......... .......... 66% 134M 1s +2024-03-23T17:47:21Z #15 2.465 84450K .......... .......... .......... .......... .......... 66% 68.2M 1s +2024-03-23T17:47:21Z #15 2.465 84500K .......... .......... .......... .......... .......... 66% 55.9M 1s +2024-03-23T17:47:21Z #15 2.465 84550K .......... .......... .......... .......... .......... 66% 55.5M 1s +2024-03-23T17:47:21Z #15 2.466 84600K .......... .......... .......... .......... .......... 66% 63.6M 1s +2024-03-23T17:47:21Z #15 2.466 84650K .......... .......... .......... .......... .......... 66% 28.8M 1s +2024-03-23T17:47:21Z #15 2.471 84700K .......... .......... .......... .......... .......... 66% 115M 1s +2024-03-23T17:47:21Z #15 2.471 84750K .......... .......... .......... .......... .......... 66% 108M 1s +2024-03-23T17:47:21Z #15 2.471 84800K .......... .......... .......... .......... .......... 66% 126M 1s +2024-03-23T17:47:21Z #15 2.471 84850K .......... .......... .......... .......... .......... 66% 114M 1s +2024-03-23T17:47:21Z #15 2.471 84900K .......... .......... .......... .......... .......... 67% 110M 1s +2024-03-23T17:47:21Z #15 2.471 84950K .......... .......... .......... .......... .......... 67% 127M 1s +2024-03-23T17:47:21Z #15 2.471 85000K .......... .......... .......... .......... .......... 67% 103M 1s +2024-03-23T17:47:21Z #15 2.471 85050K .......... .......... .......... .......... .......... 67% 33.5M 1s +2024-03-23T17:47:21Z #15 2.472 85100K .......... .......... .......... .......... .......... 67% 42.7M 1s +2024-03-23T17:47:21Z #15 2.473 85150K .......... .......... .......... .......... .......... 67% 51.2M 1s +2024-03-23T17:47:21Z #15 2.474 85200K .......... .......... .......... .......... .......... 67% 26.5M 1s +2024-03-23T17:47:21Z #15 2.476 85250K .......... .......... .......... .......... .......... 67% 45.2M 1s +2024-03-23T17:47:21Z #15 2.477 85300K .......... .......... .......... .......... .......... 67% 28.0M 1s +2024-03-23T17:47:21Z #15 2.479 85350K .......... .......... .......... .......... .......... 67% 38.9M 1s +2024-03-23T17:47:21Z #15 2.480 85400K .......... .......... .......... .......... .......... 67% 59.1M 1s +2024-03-23T17:47:21Z #15 2.483 85450K .......... .......... .......... .......... .......... 67% 143M 1s +2024-03-23T17:47:21Z #15 2.483 85500K .......... .......... .......... .......... .......... 67% 111M 1s +2024-03-23T17:47:21Z #15 2.483 85550K .......... .......... .......... .......... .......... 67% 129M 1s +2024-03-23T17:47:21Z #15 2.483 85600K .......... .......... .......... .......... .......... 67% 146M 1s +2024-03-23T17:47:21Z #15 2.483 85650K .......... .......... .......... .......... .......... 67% 109M 1s +2024-03-23T17:47:21Z #15 2.483 85700K .......... .......... .......... .......... .......... 67% 33.7M 1s +2024-03-23T17:47:21Z #15 2.484 85750K .......... .......... .......... .......... .......... 67% 124M 1s +2024-03-23T17:47:21Z #15 2.485 85800K .......... .......... .......... .......... .......... 67% 104M 1s +2024-03-23T17:47:21Z #15 2.485 85850K .......... .......... .......... .......... .......... 67% 116M 1s +2024-03-23T17:47:21Z #15 2.485 85900K .......... .......... .......... .......... .......... 67% 124M 1s +2024-03-23T17:47:21Z #15 2.486 85950K .......... .......... .......... .......... .......... 67% 129M 1s +2024-03-23T17:47:21Z #15 2.486 86000K .......... .......... .......... .......... .......... 67% 109M 1s +2024-03-23T17:47:21Z #15 2.487 86050K .......... .......... .......... .......... .......... 67% 105M 1s +2024-03-23T17:47:21Z #15 2.487 86100K .......... .......... .......... .......... .......... 67% 94.4M 1s +2024-03-23T17:47:21Z #15 2.488 86150K .......... .......... .......... .......... .......... 67% 117M 1s +2024-03-23T17:47:21Z #15 2.488 86200K .......... .......... .......... .......... .......... 68% 115M 1s +2024-03-23T17:47:21Z #15 2.489 86250K .......... .......... .......... .......... .......... 68% 119M 1s +2024-03-23T17:47:21Z #15 2.489 86300K .......... .......... .......... .......... .......... 68% 105M 1s +2024-03-23T17:47:21Z #15 2.490 86350K .......... .......... .......... .......... .......... 68% 124M 1s +2024-03-23T17:47:21Z #15 2.490 86400K .......... .......... .......... .......... .......... 68% 111M 1s +2024-03-23T17:47:21Z #15 2.490 86450K .......... .......... .......... .......... .......... 68% 115M 1s +2024-03-23T17:47:21Z #15 2.491 86500K .......... .......... .......... .......... .......... 68% 93.4M 1s +2024-03-23T17:47:21Z #15 2.495 86550K .......... .......... .......... .......... .......... 68% 85.3M 1s +2024-03-23T17:47:21Z #15 2.495 86600K .......... .......... .......... .......... .......... 68% 119M 1s +2024-03-23T17:47:21Z #15 2.495 86650K .......... .......... .......... .......... .......... 68% 166M 1s +2024-03-23T17:47:21Z #15 2.495 86700K .......... .......... .......... .......... .......... 68% 127M 1s +2024-03-23T17:47:21Z #15 2.495 86750K .......... .......... .......... .......... .......... 68% 156M 1s +2024-03-23T17:47:21Z #15 2.495 86800K .......... .......... .......... .......... .......... 68% 170M 1s +2024-03-23T17:47:21Z #15 2.495 86850K .......... .......... .......... .......... .......... 68% 132M 1s +2024-03-23T17:47:21Z #15 2.495 86900K .......... .......... .......... .......... .......... 68% 142M 1s +2024-03-23T17:47:21Z #15 2.495 86950K .......... .......... .......... .......... .......... 68% 152M 1s +2024-03-23T17:47:21Z #15 2.495 87000K .......... .......... .......... .......... .......... 68% 161M 1s +2024-03-23T17:47:21Z #15 2.495 87050K .......... .......... .......... .......... .......... 68% 97.2M 1s +2024-03-23T17:47:21Z #15 2.495 87100K .......... .......... .......... .......... .......... 68% 145M 1s +2024-03-23T17:47:21Z #15 2.497 87150K .......... .......... .......... .......... .......... 68% 95.9M 1s +2024-03-23T17:47:21Z #15 2.497 87200K .......... .......... .......... .......... .......... 68% 102M 1s +2024-03-23T17:47:21Z #15 2.497 87250K .......... .......... .......... .......... .......... 68% 143M 1s +2024-03-23T17:47:21Z #15 2.497 87300K .......... .......... .......... .......... .......... 68% 116M 1s +2024-03-23T17:47:21Z #15 2.497 87350K .......... .......... .......... .......... .......... 68% 108M 1s +2024-03-23T17:47:21Z #15 2.498 87400K .......... .......... .......... .......... .......... 68% 108M 1s +2024-03-23T17:47:21Z #15 2.498 87450K .......... .......... .......... .......... .......... 69% 94.8M 1s +2024-03-23T17:47:21Z #15 2.499 87500K .......... .......... .......... .......... .......... 69% 115M 1s +2024-03-23T17:47:21Z #15 2.499 87550K .......... .......... .......... .......... .......... 69% 118M 1s +2024-03-23T17:47:21Z #15 2.500 87600K .......... .......... .......... .......... .......... 69% 131M 1s +2024-03-23T17:47:21Z #15 2.500 87650K .......... .......... .......... .......... .......... 69% 113M 1s +2024-03-23T17:47:21Z #15 2.500 87700K .......... .......... .......... .......... .......... 69% 106M 1s +2024-03-23T17:47:21Z #15 2.501 87750K .......... .......... .......... .......... .......... 69% 118M 1s +2024-03-23T17:47:21Z #15 2.501 87800K .......... .......... .......... .......... .......... 69% 121M 1s +2024-03-23T17:47:21Z #15 2.502 87850K .......... .......... .......... .......... .......... 69% 108M 1s +2024-03-23T17:47:21Z #15 2.502 87900K .......... .......... .......... .......... .......... 69% 124M 1s +2024-03-23T17:47:21Z #15 2.503 87950K .......... .......... .......... .......... .......... 69% 110M 1s +2024-03-23T17:47:21Z #15 2.503 88000K .......... .......... .......... .......... .......... 69% 113M 1s +2024-03-23T17:47:21Z #15 2.503 88050K .......... .......... .......... .......... .......... 69% 111M 1s +2024-03-23T17:47:21Z #15 2.504 88100K .......... .......... .......... .......... .......... 69% 115M 1s +2024-03-23T17:47:21Z #15 2.504 88150K .......... .......... .......... .......... .......... 69% 141M 1s +2024-03-23T17:47:21Z #15 2.505 88200K .......... .......... .......... .......... .......... 69% 127M 1s +2024-03-23T17:47:21Z #15 2.512 88250K .......... .......... .......... .......... .......... 69% 79.1M 1s +2024-03-23T17:47:21Z #15 2.512 88300K .......... .......... .......... .......... .......... 69% 69.7M 1s +2024-03-23T17:47:21Z #15 2.512 88350K .......... .......... .......... .......... .......... 69% 174M 1s +2024-03-23T17:47:21Z #15 2.512 88400K .......... .......... .......... .......... .......... 69% 134M 1s +2024-03-23T17:47:21Z #15 2.512 88450K .......... .......... .......... .......... .......... 69% 173M 1s +2024-03-23T17:47:21Z #15 2.512 88500K .......... .......... .......... .......... .......... 69% 153M 1s +2024-03-23T17:47:21Z #15 2.512 88550K .......... .......... .......... .......... .......... 69% 170M 1s +2024-03-23T17:47:21Z #15 2.512 88600K .......... .......... .......... .......... .......... 69% 132M 1s +2024-03-23T17:47:21Z #15 2.512 88650K .......... .......... .......... .......... .......... 69% 117M 1s +2024-03-23T17:47:21Z #15 2.512 88700K .......... .......... .......... .......... .......... 70% 159M 1s +2024-03-23T17:47:21Z #15 2.512 88750K .......... .......... .......... .......... .......... 70% 156M 1s +2024-03-23T17:47:21Z #15 2.512 88800K .......... .......... .......... .......... .......... 70% 131M 1s +2024-03-23T17:47:21Z #15 2.512 88850K .......... .......... .......... .......... .......... 70% 164M 1s +2024-03-23T17:47:21Z #15 2.512 88900K .......... .......... .......... .......... .......... 70% 156M 1s +2024-03-23T17:47:21Z #15 2.512 88950K .......... .......... .......... .......... .......... 70% 129M 1s +2024-03-23T17:47:21Z #15 2.512 89000K .......... .......... .......... .......... .......... 70% 125M 1s +2024-03-23T17:47:21Z #15 2.512 89050K .......... .......... .......... .......... .......... 70% 107M 1s +2024-03-23T17:47:21Z #15 2.512 89100K .......... .......... .......... .......... .......... 70% 127M 1s +2024-03-23T17:47:21Z #15 2.512 89150K .......... .......... .......... .......... .......... 70% 114M 1s +2024-03-23T17:47:21Z #15 2.512 89200K .......... .......... .......... .......... .......... 70% 116M 1s +2024-03-23T17:47:21Z #15 2.513 89250K .......... .......... .......... .......... .......... 70% 94.1M 1s +2024-03-23T17:47:21Z #15 2.513 89300K .......... .......... .......... .......... .......... 70% 110M 1s +2024-03-23T17:47:21Z #15 2.514 89350K .......... .......... .......... .......... .......... 70% 101M 1s +2024-03-23T17:47:21Z #15 2.514 89400K .......... .......... .......... .......... .......... 70% 112M 1s +2024-03-23T17:47:21Z #15 2.515 89450K .......... .......... .......... .......... .......... 70% 97.1M 1s +2024-03-23T17:47:21Z #15 2.515 89500K .......... .......... .......... .......... .......... 70% 119M 1s +2024-03-23T17:47:21Z #15 2.516 89550K .......... .......... .......... .......... .......... 70% 117M 1s +2024-03-23T17:47:21Z #15 2.516 89600K .......... .......... .......... .......... .......... 70% 114M 1s +2024-03-23T17:47:21Z #15 2.516 89650K .......... .......... .......... .......... .......... 70% 110M 1s +2024-03-23T17:47:21Z #15 2.517 89700K .......... .......... .......... .......... .......... 70% 126M 1s +2024-03-23T17:47:21Z #15 2.517 89750K .......... .......... .......... .......... .......... 70% 107M 1s +2024-03-23T17:47:21Z #15 2.518 89800K .......... .......... .......... .......... .......... 70% 117M 1s +2024-03-23T17:47:21Z #15 2.518 89850K .......... .......... .......... .......... .......... 70% 129M 1s +2024-03-23T17:47:21Z #15 2.518 89900K .......... .......... .......... .......... .......... 70% 112M 1s +2024-03-23T17:47:21Z #15 2.524 89950K .......... .......... .......... .......... .......... 70% 123M 1s +2024-03-23T17:47:21Z #15 2.524 90000K .......... .......... .......... .......... .......... 71% 89.1M 1s +2024-03-23T17:47:21Z #15 2.524 90050K .......... .......... .......... .......... .......... 71% 89.7M 1s +2024-03-23T17:47:21Z #15 2.524 90100K .......... .......... .......... .......... .......... 71% 136M 1s +2024-03-23T17:47:21Z #15 2.524 90150K .......... .......... .......... .......... .......... 71% 153M 1s +2024-03-23T17:47:21Z #15 2.524 90200K .......... .......... .......... .......... .......... 71% 174M 1s +2024-03-23T17:47:21Z #15 2.524 90250K .......... .......... .......... .......... .......... 71% 167M 1s +2024-03-23T17:47:21Z #15 2.524 90300K .......... .......... .......... .......... .......... 71% 141M 1s +2024-03-23T17:47:21Z #15 2.524 90350K .......... .......... .......... .......... .......... 71% 151M 1s +2024-03-23T17:47:21Z #15 2.524 90400K .......... .......... .......... .......... .......... 71% 133M 1s +2024-03-23T17:47:21Z #15 2.524 90450K .......... .......... .......... .......... .......... 71% 115M 1s +2024-03-23T17:47:21Z #15 2.524 90500K .......... .......... .......... .......... .......... 71% 101M 1s +2024-03-23T17:47:21Z #15 2.524 90550K .......... .......... .......... .......... .......... 71% 124M 1s +2024-03-23T17:47:21Z #15 2.524 90600K .......... .......... .......... .......... .......... 71% 115M 1s +2024-03-23T17:47:21Z #15 2.524 90650K .......... .......... .......... .......... .......... 71% 102M 1s +2024-03-23T17:47:21Z #15 2.525 90700K .......... .......... .......... .......... .......... 71% 133M 1s +2024-03-23T17:47:21Z #15 2.525 90750K .......... .......... .......... .......... .......... 71% 137M 1s +2024-03-23T17:47:21Z #15 2.525 90800K .......... .......... .......... .......... .......... 71% 111M 1s +2024-03-23T17:47:21Z #15 2.526 90850K .......... .......... .......... .......... .......... 71% 143M 1s +2024-03-23T17:47:21Z #15 2.526 90900K .......... .......... .......... .......... .......... 71% 120M 1s +2024-03-23T17:47:21Z #15 2.535 90950K .......... .......... .......... .......... .......... 71% 5.71M 1s +2024-03-23T17:47:21Z #15 2.535 91000K .......... .......... .......... .......... .......... 71% 94.3M 1s +2024-03-23T17:47:21Z #15 2.536 91050K .......... .......... .......... .......... .......... 71% 106M 1s +2024-03-23T17:47:21Z #15 2.536 91100K .......... .......... .......... .......... .......... 71% 116M 1s +2024-03-23T17:47:21Z #15 2.537 91150K .......... .......... .......... .......... .......... 71% 104M 1s +2024-03-23T17:47:21Z #15 2.537 91200K .......... .......... .......... .......... .......... 71% 117M 1s +2024-03-23T17:47:21Z #15 2.538 91250K .......... .......... .......... .......... .......... 72% 120M 1s +2024-03-23T17:47:21Z #15 2.538 91300K .......... .......... .......... .......... .......... 72% 105M 1s +2024-03-23T17:47:21Z #15 2.538 91350K .......... .......... .......... .......... .......... 72% 108M 1s +2024-03-23T17:47:21Z #15 2.539 91400K .......... .......... .......... .......... .......... 72% 106M 1s +2024-03-23T17:47:21Z #15 2.539 91450K .......... .......... .......... .......... .......... 72% 109M 1s +2024-03-23T17:47:21Z #15 2.540 91500K .......... .......... .......... .......... .......... 72% 121M 1s +2024-03-23T17:47:21Z #15 2.540 91550K .......... .......... .......... .......... .......... 72% 137M 1s +2024-03-23T17:47:21Z #15 2.541 91600K .......... .......... .......... .......... .......... 72% 96.2M 1s +2024-03-23T17:47:21Z #15 2.541 91650K .......... .......... .......... .......... .......... 72% 122M 1s +2024-03-23T17:47:21Z #15 2.541 91700K .......... .......... .......... .......... .......... 72% 107M 1s +2024-03-23T17:47:21Z #15 2.542 91750K .......... .......... .......... .......... .......... 72% 131M 1s +2024-03-23T17:47:21Z #15 2.544 91800K .......... .......... .......... .......... .......... 72% 142M 1s +2024-03-23T17:47:21Z #15 2.544 91850K .......... .......... .......... .......... .......... 72% 10.8M 1s +2024-03-23T17:47:21Z #15 2.547 91900K .......... .......... .......... .......... .......... 72% 119M 1s +2024-03-23T17:47:21Z #15 2.548 91950K .......... .......... .......... .......... .......... 72% 113M 1s +2024-03-23T17:47:21Z #15 2.548 92000K .......... .......... .......... .......... .......... 72% 89.5M 1s +2024-03-23T17:47:21Z #15 2.549 92050K .......... .......... .......... .......... .......... 72% 112M 1s +2024-03-23T17:47:21Z #15 2.549 92100K .......... .......... .......... .......... .......... 72% 113M 1s +2024-03-23T17:47:21Z #15 2.549 92150K .......... .......... .......... .......... .......... 72% 112M 1s +2024-03-23T17:47:21Z #15 2.550 92200K .......... .......... .......... .......... .......... 72% 110M 1s +2024-03-23T17:47:21Z #15 2.550 92250K .......... .......... .......... .......... .......... 72% 108M 1s +2024-03-23T17:47:21Z #15 2.551 92300K .......... .......... .......... .......... .......... 72% 83.4M 1s +2024-03-23T17:47:21Z #15 2.551 92350K .......... .......... .......... .......... .......... 72% 121M 1s +2024-03-23T17:47:21Z #15 2.552 92400K .......... .......... .......... .......... .......... 72% 107M 1s +2024-03-23T17:47:21Z #15 2.552 92450K .......... .......... .......... .......... .......... 72% 115M 1s +2024-03-23T17:47:21Z #15 2.553 92500K .......... .......... .......... .......... .......... 72% 110M 1s +2024-03-23T17:47:21Z #15 2.553 92550K .......... .......... .......... .......... .......... 73% 127M 1s +2024-03-23T17:47:21Z #15 2.554 92600K .......... .......... .......... .......... .......... 73% 142M 1s +2024-03-23T17:47:21Z #15 2.554 92650K .......... .......... .......... .......... .......... 73% 105M 0s +2024-03-23T17:47:21Z #15 2.554 92700K .......... .......... .......... .......... .......... 73% 98.7M 0s +2024-03-23T17:47:21Z #15 2.555 92750K .......... .......... .......... .......... .......... 73% 103M 0s +2024-03-23T17:47:21Z #15 2.555 92800K .......... .......... .......... .......... .......... 73% 130M 0s +2024-03-23T17:47:21Z #15 2.556 92850K .......... .......... .......... .......... .......... 73% 6.63M 0s +2024-03-23T17:47:21Z #15 2.564 92900K .......... .......... .......... .......... .......... 73% 118M 0s +2024-03-23T17:47:21Z #15 2.564 92950K .......... .......... .......... .......... .......... 73% 133M 0s +2024-03-23T17:47:21Z #15 2.564 93000K .......... .......... .......... .......... .......... 73% 139M 0s +2024-03-23T17:47:21Z #15 2.567 93050K .......... .......... .......... .......... .......... 73% 132M 0s +2024-03-23T17:47:21Z #15 2.567 93100K .......... .......... .......... .......... .......... 73% 136M 0s +2024-03-23T17:47:21Z #15 2.567 93150K .......... .......... .......... .......... .......... 73% 161M 0s +2024-03-23T17:47:21Z #15 2.567 93200K .......... .......... .......... .......... .......... 73% 26.5M 0s +2024-03-23T17:47:21Z #15 2.567 93250K .......... .......... .......... .......... .......... 73% 123M 0s +2024-03-23T17:47:21Z #15 2.567 93300K .......... .......... .......... .......... .......... 73% 129M 0s +2024-03-23T17:47:21Z #15 2.568 93350K .......... .......... .......... .......... .......... 73% 121M 0s +2024-03-23T17:47:21Z #15 2.568 93400K .......... .......... .......... .......... .......... 73% 137M 0s +2024-03-23T17:47:21Z #15 2.569 93450K .......... .......... .......... .......... .......... 73% 133M 0s +2024-03-23T17:47:21Z #15 2.570 93500K .......... .......... .......... .......... .......... 73% 165M 0s +2024-03-23T17:47:21Z #15 2.570 93550K .......... .......... .......... .......... .......... 73% 143M 0s +2024-03-23T17:47:21Z #15 2.570 93600K .......... .......... .......... .......... .......... 73% 168M 0s +2024-03-23T17:47:21Z #15 2.570 93650K .......... .......... .......... .......... .......... 73% 128M 0s +2024-03-23T17:47:21Z #15 2.570 93700K .......... .......... .......... .......... .......... 73% 125M 0s +2024-03-23T17:47:21Z #15 2.571 93750K .......... .......... .......... .......... .......... 73% 120M 0s +2024-03-23T17:47:21Z #15 2.571 93800K .......... .......... .......... .......... .......... 74% 149M 0s +2024-03-23T17:47:21Z #15 2.571 93850K .......... .......... .......... .......... .......... 74% 116M 0s +2024-03-23T17:47:21Z #15 2.572 93900K .......... .......... .......... .......... .......... 74% 110M 0s +2024-03-23T17:47:21Z #15 2.572 93950K .......... .......... .......... .......... .......... 74% 133M 0s +2024-03-23T17:47:21Z #15 2.573 94000K .......... .......... .......... .......... .......... 74% 128M 0s +2024-03-23T17:47:21Z #15 2.574 94050K .......... .......... .......... .......... .......... 74% 27.9M 0s +2024-03-23T17:47:21Z #15 2.580 94100K .......... .......... .......... .......... .......... 74% 129M 0s +2024-03-23T17:47:21Z #15 2.580 94150K .......... .......... .......... .......... .......... 74% 177M 0s +2024-03-23T17:47:21Z #15 2.580 94200K .......... .......... .......... .......... .......... 74% 169M 0s +2024-03-23T17:47:21Z #15 2.580 94250K .......... .......... .......... .......... .......... 74% 154M 0s +2024-03-23T17:47:21Z #15 2.580 94300K .......... .......... .......... .......... .......... 74% 162M 0s +2024-03-23T17:47:21Z #15 2.580 94350K .......... .......... .......... .......... .......... 74% 185M 0s +2024-03-23T17:47:21Z #15 2.580 94400K .......... .......... .......... .......... .......... 74% 137M 0s +2024-03-23T17:47:21Z #15 2.580 94450K .......... .......... .......... .......... .......... 74% 142M 0s +2024-03-23T17:47:21Z #15 2.580 94500K .......... .......... .......... .......... .......... 74% 140M 0s +2024-03-23T17:47:21Z #15 2.580 94550K .......... .......... .......... .......... .......... 74% 157M 0s +2024-03-23T17:47:21Z #15 2.580 94600K .......... .......... .......... .......... .......... 74% 137M 0s +2024-03-23T17:47:21Z #15 2.580 94650K .......... .......... .......... .......... .......... 74% 26.1M 0s +2024-03-23T17:47:21Z #15 2.580 94700K .......... .......... .......... .......... .......... 74% 183M 0s +2024-03-23T17:47:21Z #15 2.580 94750K .......... .......... .......... .......... .......... 74% 153M 0s +2024-03-23T17:47:21Z #15 2.581 94800K .......... .......... .......... .......... .......... 74% 141M 0s +2024-03-23T17:47:21Z #15 2.581 94850K .......... .......... .......... .......... .......... 74% 159M 0s +2024-03-23T17:47:21Z #15 2.581 94900K .......... .......... .......... .......... .......... 74% 134M 0s +2024-03-23T17:47:21Z #15 2.582 94950K .......... .......... .......... .......... .......... 74% 124M 0s +2024-03-23T17:47:21Z #15 2.583 95000K .......... .......... .......... .......... .......... 74% 161M 0s +2024-03-23T17:47:21Z #15 2.583 95050K .......... .......... .......... .......... .......... 75% 107M 0s +2024-03-23T17:47:21Z #15 2.583 95100K .......... .......... .......... .......... .......... 75% 23.0M 0s +2024-03-23T17:47:21Z #15 2.585 95150K .......... .......... .......... .......... .......... 75% 148M 0s +2024-03-23T17:47:21Z #15 2.586 95200K .......... .......... .......... .......... .......... 75% 116M 0s +2024-03-23T17:47:21Z #15 2.586 95250K .......... .......... .......... .......... .......... 75% 142M 0s +2024-03-23T17:47:21Z #15 2.586 95300K .......... .......... .......... .......... .......... 75% 149M 0s +2024-03-23T17:47:21Z #15 2.586 95350K .......... .......... .......... .......... .......... 75% 124M 0s +2024-03-23T17:47:21Z #15 2.587 95400K .......... .......... .......... .......... .......... 75% 113M 0s +2024-03-23T17:47:21Z #15 2.587 95450K .......... .......... .......... .......... .......... 75% 146M 0s +2024-03-23T17:47:21Z #15 2.588 95500K .......... .......... .......... .......... .......... 75% 129M 0s +2024-03-23T17:47:21Z #15 2.588 95550K .......... .......... .......... .......... .......... 75% 137M 0s +2024-03-23T17:47:21Z #15 2.589 95600K .......... .......... .......... .......... .......... 75% 144M 0s +2024-03-23T17:47:21Z #15 2.589 95650K .......... .......... .......... .......... .......... 75% 140M 0s +2024-03-23T17:47:21Z #15 2.589 95700K .......... .......... .......... .......... .......... 75% 133M 0s +2024-03-23T17:47:21Z #15 2.589 95750K .......... .......... .......... .......... .......... 75% 140M 0s +2024-03-23T17:47:21Z #15 2.591 95800K .......... .......... .......... .......... .......... 75% 139M 0s +2024-03-23T17:47:21Z #15 2.591 95850K .......... .......... .......... .......... .......... 75% 119M 0s +2024-03-23T17:47:21Z #15 2.591 95900K .......... .......... .......... .......... .......... 75% 5.82M 0s +2024-03-23T17:47:21Z #15 2.599 95950K .......... .......... .......... .......... .......... 75% 134M 0s +2024-03-23T17:47:21Z #15 2.599 96000K .......... .......... .......... .......... .......... 75% 163M 0s +2024-03-23T17:47:21Z #15 2.599 96050K .......... .......... .......... .......... .......... 75% 154M 0s +2024-03-23T17:47:21Z #15 2.600 96100K .......... .......... .......... .......... .......... 75% 150M 0s +2024-03-23T17:47:21Z #15 2.600 96150K .......... .......... .......... .......... .......... 75% 159M 0s +2024-03-23T17:47:21Z #15 2.600 96200K .......... .......... .......... .......... .......... 75% 145M 0s +2024-03-23T17:47:21Z #15 2.601 96250K .......... .......... .......... .......... .......... 75% 171M 0s +2024-03-23T17:47:21Z #15 2.601 96300K .......... .......... .......... .......... .......... 75% 139M 0s +2024-03-23T17:47:21Z #15 2.601 96350K .......... .......... .......... .......... .......... 76% 149M 0s +2024-03-23T17:47:21Z #15 2.604 96400K .......... .......... .......... .......... .......... 76% 158M 0s +2024-03-23T17:47:21Z #15 2.604 96450K .......... .......... .......... .......... .......... 76% 129M 0s +2024-03-23T17:47:21Z #15 2.604 96500K .......... .......... .......... .......... .......... 76% 27.2M 0s +2024-03-23T17:47:21Z #15 2.604 96550K .......... .......... .......... .......... .......... 76% 175M 0s +2024-03-23T17:47:21Z #15 2.604 96600K .......... .......... .......... .......... .......... 76% 164M 0s +2024-03-23T17:47:21Z #15 2.605 96650K .......... .......... .......... .......... .......... 76% 146M 0s +2024-03-23T17:47:21Z #15 2.605 96700K .......... .......... .......... .......... .......... 76% 173M 0s +2024-03-23T17:47:21Z #15 2.605 96750K .......... .......... .......... .......... .......... 76% 162M 0s +2024-03-23T17:47:21Z #15 2.606 96800K .......... .......... .......... .......... .......... 76% 177M 0s +2024-03-23T17:47:21Z #15 2.606 96850K .......... .......... .......... .......... .......... 76% 153M 0s +2024-03-23T17:47:21Z #15 2.607 96900K .......... .......... .......... .......... .......... 76% 165M 0s +2024-03-23T17:47:21Z #15 2.607 96950K .......... .......... .......... .......... .......... 76% 15.6M 0s +2024-03-23T17:47:21Z #15 2.610 97000K .......... .......... .......... .......... .......... 76% 165M 0s +2024-03-23T17:47:21Z #15 2.610 97050K .......... .......... .......... .......... .......... 76% 147M 0s +2024-03-23T17:47:21Z #15 2.610 97100K .......... .......... .......... .......... .......... 76% 175M 0s +2024-03-23T17:47:21Z #15 2.611 97150K .......... .......... .......... .......... .......... 76% 150M 0s +2024-03-23T17:47:21Z #15 2.611 97200K .......... .......... .......... .......... .......... 76% 171M 0s +2024-03-23T17:47:21Z #15 2.611 97250K .......... .......... .......... .......... .......... 76% 156M 0s +2024-03-23T17:47:21Z #15 2.612 97300K .......... .......... .......... .......... .......... 76% 160M 0s +2024-03-23T17:47:21Z #15 2.612 97350K .......... .......... .......... .......... .......... 76% 150M 0s +2024-03-23T17:47:21Z #15 2.612 97400K .......... .......... .......... .......... .......... 76% 126M 0s +2024-03-23T17:47:21Z #15 2.613 97450K .......... .......... .......... .......... .......... 76% 173M 0s +2024-03-23T17:47:21Z #15 2.618 97500K .......... .......... .......... .......... .......... 76% 153M 0s +2024-03-23T17:47:21Z #15 2.618 97550K .......... .......... .......... .......... .......... 76% 206M 0s +2024-03-23T17:47:21Z #15 2.618 97600K .......... .......... .......... .......... .......... 77% 168M 0s +2024-03-23T17:47:21Z #15 2.618 97650K .......... .......... .......... .......... .......... 77% 188M 0s +2024-03-23T17:47:21Z #15 2.618 97700K .......... .......... .......... .......... .......... 77% 197M 0s +2024-03-23T17:47:21Z #15 2.618 97750K .......... .......... .......... .......... .......... 77% 202M 0s +2024-03-23T17:47:21Z #15 2.618 97800K .......... .......... .......... .......... .......... 77% 13.1M 0s +2024-03-23T17:47:21Z #15 2.618 97850K .......... .......... .......... .......... .......... 77% 151M 0s +2024-03-23T17:47:21Z #15 2.618 97900K .......... .......... .......... .......... .......... 77% 140M 0s +2024-03-23T17:47:21Z #15 2.619 97950K .......... .......... .......... .......... .......... 77% 168M 0s +2024-03-23T17:47:21Z #15 2.619 98000K .......... .......... .......... .......... .......... 77% 146M 0s +2024-03-23T17:47:21Z #15 2.619 98050K .......... .......... .......... .......... .......... 77% 177M 0s +2024-03-23T17:47:21Z #15 2.620 98100K .......... .......... .......... .......... .......... 77% 156M 0s +2024-03-23T17:47:21Z #15 2.620 98150K .......... .......... .......... .......... .......... 77% 156M 0s +2024-03-23T17:47:21Z #15 2.620 98200K .......... .......... .......... .......... .......... 77% 146M 0s +2024-03-23T17:47:21Z #15 2.621 98250K .......... .......... .......... .......... .......... 77% 167M 0s +2024-03-23T17:47:21Z #15 2.621 98300K .......... .......... .......... .......... .......... 77% 165M 0s +2024-03-23T17:47:21Z #15 2.621 98350K .......... .......... .......... .......... .......... 77% 132M 0s +2024-03-23T17:47:21Z #15 2.622 98400K .......... .......... .......... .......... .......... 77% 167M 0s +2024-03-23T17:47:21Z #15 2.622 98450K .......... .......... .......... .......... .......... 77% 175M 0s +2024-03-23T17:47:21Z #15 2.622 98500K .......... .......... .......... .......... .......... 77% 174M 0s +2024-03-23T17:47:21Z #15 2.622 98550K .......... .......... .......... .......... .......... 77% 11.1M 0s +2024-03-23T17:47:21Z #15 2.627 98600K .......... .......... .......... .......... .......... 77% 168M 0s +2024-03-23T17:47:21Z #15 2.627 98650K .......... .......... .......... .......... .......... 77% 174M 0s +2024-03-23T17:47:21Z #15 2.628 98700K .......... .......... .......... .......... .......... 77% 130M 0s +2024-03-23T17:47:21Z #15 2.628 98750K .......... .......... .......... .......... .......... 77% 159M 0s +2024-03-23T17:47:21Z #15 2.628 98800K .......... .......... .......... .......... .......... 77% 158M 0s +2024-03-23T17:47:21Z #15 2.628 98850K .......... .......... .......... .......... .......... 78% 177M 0s +2024-03-23T17:47:21Z #15 2.629 98900K .......... .......... .......... .......... .......... 78% 153M 0s +2024-03-23T17:47:21Z #15 2.629 98950K .......... .......... .......... .......... .......... 78% 172M 0s +2024-03-23T17:47:21Z #15 2.629 99000K .......... .......... .......... .......... .......... 78% 147M 0s +2024-03-23T17:47:21Z #15 2.630 99050K .......... .......... .......... .......... .......... 78% 142M 0s +2024-03-23T17:47:21Z #15 2.630 99100K .......... .......... .......... .......... .......... 78% 169M 0s +2024-03-23T17:47:21Z #15 2.630 99150K .......... .......... .......... .......... .......... 78% 174M 0s +2024-03-23T17:47:21Z #15 2.631 99200K .......... .......... .......... .......... .......... 78% 11.2M 0s +2024-03-23T17:47:21Z #15 2.635 99250K .......... .......... .......... .......... .......... 78% 139M 0s +2024-03-23T17:47:21Z #15 2.635 99300K .......... .......... .......... .......... .......... 78% 170M 0s +2024-03-23T17:47:21Z #15 2.636 99350K .......... .......... .......... .......... .......... 78% 172M 0s +2024-03-23T17:47:21Z #15 2.636 99400K .......... .......... .......... .......... .......... 78% 137M 0s +2024-03-23T17:47:21Z #15 2.637 99450K .......... .......... .......... .......... .......... 78% 176M 0s +2024-03-23T17:47:21Z #15 2.637 99500K .......... .......... .......... .......... .......... 78% 147M 0s +2024-03-23T17:47:21Z #15 2.637 99550K .......... .......... .......... .......... .......... 78% 152M 0s +2024-03-23T17:47:21Z #15 2.638 99600K .......... .......... .......... .......... .......... 78% 137M 0s +2024-03-23T17:47:21Z #15 2.638 99650K .......... .......... .......... .......... .......... 78% 151M 0s +2024-03-23T17:47:21Z #15 2.638 99700K .......... .......... .......... .......... .......... 78% 175M 0s +2024-03-23T17:47:21Z #15 2.638 99750K .......... .......... .......... .......... .......... 78% 138M 0s +2024-03-23T17:47:21Z #15 2.638 99800K .......... .......... .......... .......... .......... 78% 152M 0s +2024-03-23T17:47:21Z #15 2.639 99850K .......... .......... .......... .......... .......... 78% 158M 0s +2024-03-23T17:47:21Z #15 2.639 99900K .......... .......... .......... .......... .......... 78% 143M 0s +2024-03-23T17:47:21Z #15 2.639 99950K .......... .......... .......... .......... .......... 78% 155M 0s +2024-03-23T17:47:21Z #15 2.640 100000K .......... .......... .......... .......... .......... 78% 158M 0s +2024-03-23T17:47:21Z #15 2.640 100050K .......... .......... .......... .......... .......... 78% 172M 0s +2024-03-23T17:47:21Z #15 2.640 100100K .......... .......... .......... .......... .......... 78% 175M 0s +2024-03-23T17:47:21Z #15 2.641 100150K .......... .......... .......... .......... .......... 79% 138M 0s +2024-03-23T17:47:21Z #15 2.641 100200K .......... .......... .......... .......... .......... 79% 175M 0s +2024-03-23T17:47:21Z #15 2.641 100250K .......... .......... .......... .......... .......... 79% 170M 0s +2024-03-23T17:47:21Z #15 2.642 100300K .......... .......... .......... .......... .......... 79% 143M 0s +2024-03-23T17:47:21Z #15 2.642 100350K .......... .......... .......... .......... .......... 79% 160M 0s +2024-03-23T17:47:21Z #15 2.642 100400K .......... .......... .......... .......... .......... 79% 145M 0s +2024-03-23T17:47:21Z #15 2.642 100450K .......... .......... .......... .......... .......... 79% 133M 0s +2024-03-23T17:47:21Z #15 2.643 100500K .......... .......... .......... .......... .......... 79% 157M 0s +2024-03-23T17:47:21Z #15 2.643 100550K .......... .......... .......... .......... .......... 79% 139M 0s +2024-03-23T17:47:21Z #15 2.644 100600K .......... .......... .......... .......... .......... 79% 172M 0s +2024-03-23T17:47:21Z #15 2.645 100650K .......... .......... .......... .......... .......... 79% 170M 0s +2024-03-23T17:47:21Z #15 2.645 100700K .......... .......... .......... .......... .......... 79% 149M 0s +2024-03-23T17:47:21Z #15 2.645 100750K .......... .......... .......... .......... .......... 79% 159M 0s +2024-03-23T17:47:21Z #15 2.645 100800K .......... .......... .......... .......... .......... 79% 169M 0s +2024-03-23T17:47:21Z #15 2.645 100850K .......... .......... .......... .......... .......... 79% 135M 0s +2024-03-23T17:47:21Z #15 2.645 100900K .......... .......... .......... .......... .......... 79% 170M 0s +2024-03-23T17:47:21Z #15 2.646 100950K .......... .......... .......... .......... .......... 79% 173M 0s +2024-03-23T17:47:21Z #15 2.646 101000K .......... .......... .......... .......... .......... 79% 171M 0s +2024-03-23T17:47:21Z #15 2.646 101050K .......... .......... .......... .......... .......... 79% 155M 0s +2024-03-23T17:47:21Z #15 2.647 101100K .......... .......... .......... .......... .......... 79% 9.36M 0s +2024-03-23T17:47:21Z #15 2.652 101150K .......... .......... .......... .......... .......... 79% 139M 0s +2024-03-23T17:47:21Z #15 2.652 101200K .......... .......... .......... .......... .......... 79% 173M 0s +2024-03-23T17:47:21Z #15 2.652 101250K .......... .......... .......... .......... .......... 79% 170M 0s +2024-03-23T17:47:21Z #15 2.653 101300K .......... .......... .......... .......... .......... 79% 175M 0s +2024-03-23T17:47:21Z #15 2.653 101350K .......... .......... .......... .......... .......... 79% 166M 0s +2024-03-23T17:47:21Z #15 2.653 101400K .......... .......... .......... .......... .......... 80% 175M 0s +2024-03-23T17:47:21Z #15 2.654 101450K .......... .......... .......... .......... .......... 80% 141M 0s +2024-03-23T17:47:21Z #15 2.654 101500K .......... .......... .......... .......... .......... 80% 157M 0s +2024-03-23T17:47:21Z #15 2.654 101550K .......... .......... .......... .......... .......... 80% 175M 0s +2024-03-23T17:47:21Z #15 2.655 101600K .......... .......... .......... .......... .......... 80% 124M 0s +2024-03-23T17:47:21Z #15 2.655 101650K .......... .......... .......... .......... .......... 80% 113M 0s +2024-03-23T17:47:21Z #15 2.655 101700K .......... .......... .......... .......... .......... 80% 152M 0s +2024-03-23T17:47:21Z #15 2.656 101750K .......... .......... .......... .......... .......... 80% 151M 0s +2024-03-23T17:47:21Z #15 2.656 101800K .......... .......... .......... .......... .......... 80% 131M 0s +2024-03-23T17:47:21Z #15 2.656 101850K .......... .......... .......... .......... .......... 80% 153M 0s +2024-03-23T17:47:21Z #15 2.657 101900K .......... .......... .......... .......... .......... 80% 138M 0s +2024-03-23T17:47:21Z #15 2.657 101950K .......... .......... .......... .......... .......... 80% 155M 0s +2024-03-23T17:47:21Z #15 2.657 102000K .......... .......... .......... .......... .......... 80% 146M 0s +2024-03-23T17:47:21Z #15 2.658 102050K .......... .......... .......... .......... .......... 80% 128M 0s +2024-03-23T17:47:21Z #15 2.658 102100K .......... .......... .......... .......... .......... 80% 152M 0s +2024-03-23T17:47:21Z #15 2.658 102150K .......... .......... .......... .......... .......... 80% 154M 0s +2024-03-23T17:47:21Z #15 2.661 102200K .......... .......... .......... .......... .......... 80% 28.9M 0s +2024-03-23T17:47:21Z #15 2.661 102250K .......... .......... .......... .......... .......... 80% 172M 0s +2024-03-23T17:47:21Z #15 2.661 102300K .......... .......... .......... .......... .......... 80% 183M 0s +2024-03-23T17:47:21Z #15 2.661 102350K .......... .......... .......... .......... .......... 80% 143M 0s +2024-03-23T17:47:21Z #15 2.661 102400K .......... .......... .......... .......... .......... 80% 177M 0s +2024-03-23T17:47:21Z #15 2.662 102450K .......... .......... .......... .......... .......... 80% 175M 0s +2024-03-23T17:47:21Z #15 2.662 102500K .......... .......... .......... .......... .......... 80% 173M 0s +2024-03-23T17:47:21Z #15 2.663 102550K .......... .......... .......... .......... .......... 80% 162M 0s +2024-03-23T17:47:21Z #15 2.663 102600K .......... .......... .......... .......... .......... 80% 169M 0s +2024-03-23T17:47:21Z #15 2.667 102650K .......... .......... .......... .......... .......... 81% 11.0M 0s +2024-03-23T17:47:21Z #15 2.667 102700K .......... .......... .......... .......... .......... 81% 176M 0s +2024-03-23T17:47:21Z #15 2.668 102750K .......... .......... .......... .......... .......... 81% 140M 0s +2024-03-23T17:47:21Z #15 2.668 102800K .......... .......... .......... .......... .......... 81% 156M 0s +2024-03-23T17:47:21Z #15 2.669 102850K .......... .......... .......... .......... .......... 81% 184M 0s +2024-03-23T17:47:21Z #15 2.669 102900K .......... .......... .......... .......... .......... 81% 148M 0s +2024-03-23T17:47:21Z #15 2.669 102950K .......... .......... .......... .......... .......... 81% 144M 0s +2024-03-23T17:47:21Z #15 2.669 103000K .......... .......... .......... .......... .......... 81% 174M 0s +2024-03-23T17:47:21Z #15 2.669 103050K .......... .......... .......... .......... .......... 81% 168M 0s +2024-03-23T17:47:21Z #15 2.670 103100K .......... .......... .......... .......... .......... 81% 143M 0s +2024-03-23T17:47:21Z #15 2.670 103150K .......... .......... .......... .......... .......... 81% 186M 0s +2024-03-23T17:47:21Z #15 2.670 103200K .......... .......... .......... .......... .......... 81% 153M 0s +2024-03-23T17:47:21Z #15 2.671 103250K .......... .......... .......... .......... .......... 81% 137M 0s +2024-03-23T17:47:21Z #15 2.671 103300K .......... .......... .......... .......... .......... 81% 146M 0s +2024-03-23T17:47:21Z #15 2.671 103350K .......... .......... .......... .......... .......... 81% 157M 0s +2024-03-23T17:47:21Z #15 2.672 103400K .......... .......... .......... .......... .......... 81% 160M 0s +2024-03-23T17:47:21Z #15 2.672 103450K .......... .......... .......... .......... .......... 81% 157M 0s +2024-03-23T17:47:21Z #15 2.672 103500K .......... .......... .......... .......... .......... 81% 166M 0s +2024-03-23T17:47:21Z #15 2.672 103550K .......... .......... .......... .......... .......... 81% 140M 0s +2024-03-23T17:47:21Z #15 2.673 103600K .......... .......... .......... .......... .......... 81% 163M 0s +2024-03-23T17:47:21Z #15 2.673 103650K .......... .......... .......... .......... .......... 81% 169M 0s +2024-03-23T17:47:21Z #15 2.674 103700K .......... .......... .......... .......... .......... 81% 177M 0s +2024-03-23T17:47:21Z #15 2.674 103750K .......... .......... .......... .......... .......... 81% 145M 0s +2024-03-23T17:47:21Z #15 2.674 103800K .......... .......... .......... .......... .......... 81% 167M 0s +2024-03-23T17:47:21Z #15 2.674 103850K .......... .......... .......... .......... .......... 81% 141M 0s +2024-03-23T17:47:21Z #15 2.675 103900K .......... .......... .......... .......... .......... 81% 11.0M 0s +2024-03-23T17:47:21Z #15 2.679 103950K .......... .......... .......... .......... .......... 82% 142M 0s +2024-03-23T17:47:21Z #15 2.679 104000K .......... .......... .......... .......... .......... 82% 132M 0s +2024-03-23T17:47:21Z #15 2.680 104050K .......... .......... .......... .......... .......... 82% 157M 0s +2024-03-23T17:47:21Z #15 2.680 104100K .......... .......... .......... .......... .......... 82% 152M 0s +2024-03-23T17:47:21Z #15 2.680 104150K .......... .......... .......... .......... .......... 82% 149M 0s +2024-03-23T17:47:21Z #15 2.681 104200K .......... .......... .......... .......... .......... 82% 166M 0s +2024-03-23T17:47:21Z #15 2.681 104250K .......... .......... .......... .......... .......... 82% 139M 0s +2024-03-23T17:47:21Z #15 2.681 104300K .......... .......... .......... .......... .......... 82% 137M 0s +2024-03-23T17:47:21Z #15 2.682 104350K .......... .......... .......... .......... .......... 82% 150M 0s +2024-03-23T17:47:21Z #15 2.682 104400K .......... .......... .......... .......... .......... 82% 135M 0s +2024-03-23T17:47:21Z #15 2.683 104450K .......... .......... .......... .......... .......... 82% 141M 0s +2024-03-23T17:47:21Z #15 2.683 104500K .......... .......... .......... .......... .......... 82% 147M 0s +2024-03-23T17:47:21Z #15 2.684 104550K .......... .......... .......... .......... .......... 82% 126M 0s +2024-03-23T17:47:21Z #15 2.684 104600K .......... .......... .......... .......... .......... 82% 128M 0s +2024-03-23T17:47:21Z #15 2.686 104650K .......... .......... .......... .......... .......... 82% 140M 0s +2024-03-23T17:47:21Z #15 2.686 104700K .......... .......... .......... .......... .......... 82% 134M 0s +2024-03-23T17:47:21Z #15 2.686 104750K .......... .......... .......... .......... .......... 82% 28.7M 0s +2024-03-23T17:47:21Z #15 2.686 104800K .......... .......... .......... .......... .......... 82% 140M 0s +2024-03-23T17:47:21Z #15 2.687 104850K .......... .......... .......... .......... .......... 82% 10.9M 0s +2024-03-23T17:47:21Z #15 2.692 104900K .......... .......... .......... .......... .......... 82% 118M 0s +2024-03-23T17:47:21Z #15 2.692 104950K .......... .......... .......... .......... .......... 82% 113M 0s +2024-03-23T17:47:21Z #15 2.692 105000K .......... .......... .......... .......... .......... 82% 145M 0s +2024-03-23T17:47:21Z #15 2.692 105050K .......... .......... .......... .......... .......... 82% 102M 0s +2024-03-23T17:47:21Z #15 2.693 105100K .......... .......... .......... .......... .......... 82% 110M 0s +2024-03-23T17:47:21Z #15 2.693 105150K .......... .......... .......... .......... .......... 82% 137M 0s +2024-03-23T17:47:21Z #15 2.695 105200K .......... .......... .......... .......... .......... 83% 26.5M 0s +2024-03-23T17:47:21Z #15 2.695 105250K .......... .......... .......... .......... .......... 83% 118M 0s +2024-03-23T17:47:21Z #15 2.696 105300K .......... .......... .......... .......... .......... 83% 116M 0s +2024-03-23T17:47:21Z #15 2.699 105350K .......... .......... .......... .......... .......... 83% 150M 0s +2024-03-23T17:47:21Z #15 2.699 105400K .......... .......... .......... .......... .......... 83% 170M 0s +2024-03-23T17:47:21Z #15 2.699 105450K .......... .......... .......... .......... .......... 83% 150M 0s +2024-03-23T17:47:21Z #15 2.699 105500K .......... .......... .......... .......... .......... 83% 158M 0s +2024-03-23T17:47:21Z #15 2.699 105550K .......... .......... .......... .......... .......... 83% 139M 0s +2024-03-23T17:47:21Z #15 2.699 105600K .......... .......... .......... .......... .......... 83% 169M 0s +2024-03-23T17:47:21Z #15 2.699 105650K .......... .......... .......... .......... .......... 83% 152M 0s +2024-03-23T17:47:21Z #15 2.699 105700K .......... .......... .......... .......... .......... 83% 148M 0s +2024-03-23T17:47:21Z #15 2.699 105750K .......... .......... .......... .......... .......... 83% 125M 0s +2024-03-23T17:47:21Z #15 2.699 105800K .......... .......... .......... .......... .......... 83% 152M 0s +2024-03-23T17:47:21Z #15 2.700 105850K .......... .......... .......... .......... .......... 83% 123M 0s +2024-03-23T17:47:21Z #15 2.700 105900K .......... .......... .......... .......... .......... 83% 111M 0s +2024-03-23T17:47:21Z #15 2.700 105950K .......... .......... .......... .......... .......... 83% 129M 0s +2024-03-23T17:47:21Z #15 2.701 106000K .......... .......... .......... .......... .......... 83% 20.1M 0s +2024-03-23T17:47:21Z #15 2.703 106050K .......... .......... .......... .......... .......... 83% 135M 0s +2024-03-23T17:47:21Z #15 2.703 106100K .......... .......... .......... .......... .......... 83% 127M 0s +2024-03-23T17:47:21Z #15 2.704 106150K .......... .......... .......... .......... .......... 83% 109M 0s +2024-03-23T17:47:21Z #15 2.704 106200K .......... .......... .......... .......... .......... 83% 129M 0s +2024-03-23T17:47:21Z #15 2.705 106250K .......... .......... .......... .......... .......... 83% 144M 0s +2024-03-23T17:47:21Z #15 2.705 106300K .......... .......... .......... .......... .......... 83% 125M 0s +2024-03-23T17:47:21Z #15 2.705 106350K .......... .......... .......... .......... .......... 83% 124M 0s +2024-03-23T17:47:21Z #15 2.706 106400K .......... .......... .......... .......... .......... 83% 135M 0s +2024-03-23T17:47:21Z #15 2.706 106450K .......... .......... .......... .......... .......... 84% 114M 0s +2024-03-23T17:47:21Z #15 2.707 106500K .......... .......... .......... .......... .......... 84% 115M 0s +2024-03-23T17:47:21Z #15 2.708 106550K .......... .......... .......... .......... .......... 84% 172M 0s +2024-03-23T17:47:21Z #15 2.708 106600K .......... .......... .......... .......... .......... 84% 143M 0s +2024-03-23T17:47:21Z #15 2.708 106650K .......... .......... .......... .......... .......... 84% 123M 0s +2024-03-23T17:47:21Z #15 2.708 106700K .......... .......... .......... .......... .......... 84% 114M 0s +2024-03-23T17:47:21Z #15 2.709 106750K .......... .......... .......... .......... .......... 84% 133M 0s +2024-03-23T17:47:21Z #15 2.709 106800K .......... .......... .......... .......... .......... 84% 167M 0s +2024-03-23T17:47:21Z #15 2.709 106850K .......... .......... .......... .......... .......... 84% 112M 0s +2024-03-23T17:47:21Z #15 2.710 106900K .......... .......... .......... .......... .......... 84% 139M 0s +2024-03-23T17:47:21Z #15 2.710 106950K .......... .......... .......... .......... .......... 84% 108M 0s +2024-03-23T17:47:21Z #15 2.710 107000K .......... .......... .......... .......... .......... 84% 10.9M 0s +2024-03-23T17:47:21Z #15 2.715 107050K .......... .......... .......... .......... .......... 84% 151M 0s +2024-03-23T17:47:21Z #15 2.715 107100K .......... .......... .......... .......... .......... 84% 141M 0s +2024-03-23T17:47:21Z #15 2.716 107150K .......... .......... .......... .......... .......... 84% 149M 0s +2024-03-23T17:47:21Z #15 2.716 107200K .......... .......... .......... .......... .......... 84% 117M 0s +2024-03-23T17:47:21Z #15 2.716 107250K .......... .......... .......... .......... .......... 84% 133M 0s +2024-03-23T17:47:21Z #15 2.717 107300K .......... .......... .......... .......... .......... 84% 135M 0s +2024-03-23T17:47:21Z #15 2.717 107350K .......... .......... .......... .......... .......... 84% 117M 0s +2024-03-23T17:47:21Z #15 2.718 107400K .......... .......... .......... .......... .......... 84% 163M 0s +2024-03-23T17:47:21Z #15 2.718 107450K .......... .......... .......... .......... .......... 84% 117M 0s +2024-03-23T17:47:21Z #15 2.718 107500K .......... .......... .......... .......... .......... 84% 128M 0s +2024-03-23T17:47:21Z #15 2.719 107550K .......... .......... .......... .......... .......... 84% 119M 0s +2024-03-23T17:47:21Z #15 2.719 107600K .......... .......... .......... .......... .......... 84% 114M 0s +2024-03-23T17:47:21Z #15 2.719 107650K .......... .......... .......... .......... .......... 84% 133M 0s +2024-03-23T17:47:21Z #15 2.720 107700K .......... .......... .......... .......... .......... 84% 138M 0s +2024-03-23T17:47:21Z #15 2.720 107750K .......... .......... .......... .......... .......... 85% 118M 0s +2024-03-23T17:47:21Z #15 2.721 107800K .......... .......... .......... .......... .......... 85% 150M 0s +2024-03-23T17:47:21Z #15 2.721 107850K .......... .......... .......... .......... .......... 85% 139M 0s +2024-03-23T17:47:21Z #15 2.721 107900K .......... .......... .......... .......... .......... 85% 102M 0s +2024-03-23T17:47:21Z #15 2.722 107950K .......... .......... .......... .......... .......... 85% 132M 0s +2024-03-23T17:47:21Z #15 2.722 108000K .......... .......... .......... .......... .......... 85% 140M 0s +2024-03-23T17:47:21Z #15 2.722 108050K .......... .......... .......... .......... .......... 85% 116M 0s +2024-03-23T17:47:21Z #15 2.723 108100K .......... .......... .......... .......... .......... 85% 93.6M 0s +2024-03-23T17:47:21Z #15 2.723 108150K .......... .......... .......... .......... .......... 85% 126M 0s +2024-03-23T17:47:21Z #15 2.724 108200K .......... .......... .......... .......... .......... 85% 118M 0s +2024-03-23T17:47:21Z #15 2.724 108250K .......... .......... .......... .......... .......... 85% 143M 0s +2024-03-23T17:47:21Z #15 2.725 108300K .......... .......... .......... .......... .......... 85% 118M 0s +2024-03-23T17:47:21Z #15 2.725 108350K .......... .......... .......... .......... .......... 85% 120M 0s +2024-03-23T17:47:21Z #15 2.725 108400K .......... .......... .......... .......... .......... 85% 111M 0s +2024-03-23T17:47:21Z #15 2.726 108450K .......... .......... .......... .......... .......... 85% 138M 0s +2024-03-23T17:47:21Z #15 2.726 108500K .......... .......... .......... .......... .......... 85% 137M 0s +2024-03-23T17:47:21Z #15 2.726 108550K .......... .......... .......... .......... .......... 85% 10.9M 0s +2024-03-23T17:47:21Z #15 2.731 108600K .......... .......... .......... .......... .......... 85% 113M 0s +2024-03-23T17:47:21Z #15 2.731 108650K .......... .......... .......... .......... .......... 85% 111M 0s +2024-03-23T17:47:21Z #15 2.733 108700K .......... .......... .......... .......... .......... 85% 168M 0s +2024-03-23T17:47:21Z #15 2.733 108750K .......... .......... .......... .......... .......... 85% 170M 0s +2024-03-23T17:47:21Z #15 2.733 108800K .......... .......... .......... .......... .......... 85% 132M 0s +2024-03-23T17:47:21Z #15 2.733 108850K .......... .......... .......... .......... .......... 85% 179M 0s +2024-03-23T17:47:21Z #15 2.733 108900K .......... .......... .......... .......... .......... 85% 147M 0s +2024-03-23T17:47:21Z #15 2.733 108950K .......... .......... .......... .......... .......... 85% 106M 0s +2024-03-23T17:47:21Z #15 2.734 109000K .......... .......... .......... .......... .......... 86% 121M 0s +2024-03-23T17:47:21Z #15 2.734 109050K .......... .......... .......... .......... .......... 86% 123M 0s +2024-03-23T17:47:21Z #15 2.735 109100K .......... .......... .......... .......... .......... 86% 108M 0s +2024-03-23T17:47:21Z #15 2.735 109150K .......... .......... .......... .......... .......... 86% 130M 0s +2024-03-23T17:47:21Z #15 2.735 109200K .......... .......... .......... .......... .......... 86% 121M 0s +2024-03-23T17:47:21Z #15 2.736 109250K .......... .......... .......... .......... .......... 86% 130M 0s +2024-03-23T17:47:21Z #15 2.736 109300K .......... .......... .......... .......... .......... 86% 111M 0s +2024-03-23T17:47:21Z #15 2.738 109350K .......... .......... .......... .......... .......... 86% 164M 0s +2024-03-23T17:47:21Z #15 2.738 109400K .......... .......... .......... .......... .......... 86% 152M 0s +2024-03-23T17:47:21Z #15 2.738 109450K .......... .......... .......... .......... .......... 86% 174M 0s +2024-03-23T17:47:21Z #15 2.738 109500K .......... .......... .......... .......... .......... 86% 151M 0s +2024-03-23T17:47:21Z #15 2.738 109550K .......... .......... .......... .......... .......... 86% 113M 0s +2024-03-23T17:47:21Z #15 2.738 109600K .......... .......... .......... .......... .......... 86% 144M 0s +2024-03-23T17:47:21Z #15 2.739 109650K .......... .......... .......... .......... .......... 86% 112M 0s +2024-03-23T17:47:21Z #15 2.739 109700K .......... .......... .......... .......... .......... 86% 114M 0s +2024-03-23T17:47:21Z #15 2.739 109750K .......... .......... .......... .......... .......... 86% 108M 0s +2024-03-23T17:47:21Z #15 2.740 109800K .......... .......... .......... .......... .......... 86% 113M 0s +2024-03-23T17:47:21Z #15 2.741 109850K .......... .......... .......... .......... .......... 86% 116M 0s +2024-03-23T17:47:21Z #15 2.741 109900K .......... .......... .......... .......... .......... 86% 136M 0s +2024-03-23T17:47:21Z #15 2.741 109950K .......... .......... .......... .......... .......... 86% 115M 0s +2024-03-23T17:47:21Z #15 2.742 110000K .......... .......... .......... .......... .......... 86% 96.5M 0s +2024-03-23T17:47:21Z #15 2.742 110050K .......... .......... .......... .......... .......... 86% 110M 0s +2024-03-23T17:47:21Z #15 2.743 110100K .......... .......... .......... .......... .......... 86% 26.4M 0s +2024-03-23T17:47:21Z #15 2.744 110150K .......... .......... .......... .......... .......... 86% 128M 0s +2024-03-23T17:47:21Z #15 2.745 110200K .......... .......... .......... .......... .......... 86% 118M 0s +2024-03-23T17:47:21Z #15 2.745 110250K .......... .......... .......... .......... .......... 86% 124M 0s +2024-03-23T17:47:21Z #15 2.746 110300K .......... .......... .......... .......... .......... 87% 122M 0s +2024-03-23T17:47:21Z #15 2.747 110350K .......... .......... .......... .......... .......... 87% 117M 0s +2024-03-23T17:47:21Z #15 2.747 110400K .......... .......... .......... .......... .......... 87% 114M 0s +2024-03-23T17:47:21Z #15 2.747 110450K .......... .......... .......... .......... .......... 87% 104M 0s +2024-03-23T17:47:21Z #15 2.747 110500K .......... .......... .......... .......... .......... 87% 123M 0s +2024-03-23T17:47:21Z #15 2.748 110550K .......... .......... .......... .......... .......... 87% 122M 0s +2024-03-23T17:47:21Z #15 2.748 110600K .......... .......... .......... .......... .......... 87% 118M 0s +2024-03-23T17:47:21Z #15 2.748 110650K .......... .......... .......... .......... .......... 87% 147M 0s +2024-03-23T17:47:21Z #15 2.749 110700K .......... .......... .......... .......... .......... 87% 120M 0s +2024-03-23T17:47:21Z #15 2.749 110750K .......... .......... .......... .......... .......... 87% 143M 0s +2024-03-23T17:47:21Z #15 2.750 110800K .......... .......... .......... .......... .......... 87% 96.5M 0s +2024-03-23T17:47:21Z #15 2.750 110850K .......... .......... .......... .......... .......... 87% 106M 0s +2024-03-23T17:47:21Z #15 2.751 110900K .......... .......... .......... .......... .......... 87% 10.7M 0s +2024-03-23T17:47:21Z #15 2.755 110950K .......... .......... .......... .......... .......... 87% 148M 0s +2024-03-23T17:47:21Z #15 2.755 111000K .......... .......... .......... .......... .......... 87% 116M 0s +2024-03-23T17:47:21Z #15 2.756 111050K .......... .......... .......... .......... .......... 87% 120M 0s +2024-03-23T17:47:21Z #15 2.756 111100K .......... .......... .......... .......... .......... 87% 120M 0s +2024-03-23T17:47:21Z #15 2.757 111150K .......... .......... .......... .......... .......... 87% 149M 0s +2024-03-23T17:47:21Z #15 2.757 111200K .......... .......... .......... .......... .......... 87% 121M 0s +2024-03-23T17:47:21Z #15 2.757 111250K .......... .......... .......... .......... .......... 87% 109M 0s +2024-03-23T17:47:21Z #15 2.758 111300K .......... .......... .......... .......... .......... 87% 120M 0s +2024-03-23T17:47:21Z #15 2.759 111350K .......... .......... .......... .......... .......... 87% 143M 0s +2024-03-23T17:47:21Z #15 2.759 111400K .......... .......... .......... .......... .......... 87% 107M 0s +2024-03-23T17:47:21Z #15 2.759 111450K .......... .......... .......... .......... .......... 87% 125M 0s +2024-03-23T17:47:21Z #15 2.760 111500K .......... .......... .......... .......... .......... 87% 111M 0s +2024-03-23T17:47:21Z #15 2.760 111550K .......... .......... .......... .......... .......... 88% 124M 0s +2024-03-23T17:47:21Z #15 2.762 111600K .......... .......... .......... .......... .......... 88% 120M 0s +2024-03-23T17:47:21Z #15 2.763 111650K .......... .......... .......... .......... .......... 88% 139M 0s +2024-03-23T17:47:21Z #15 2.763 111700K .......... .......... .......... .......... .......... 88% 51.7M 0s +2024-03-23T17:47:21Z #15 2.763 111750K .......... .......... .......... .......... .......... 88% 126M 0s +2024-03-23T17:47:21Z #15 2.763 111800K .......... .......... .......... .......... .......... 88% 114M 0s +2024-03-23T17:47:21Z #15 2.763 111850K .......... .......... .......... .......... .......... 88% 122M 0s +2024-03-23T17:47:21Z #15 2.763 111900K .......... .......... .......... .......... .......... 88% 133M 0s +2024-03-23T17:47:21Z #15 2.764 111950K .......... .......... .......... .......... .......... 88% 129M 0s +2024-03-23T17:47:21Z #15 2.764 112000K .......... .......... .......... .......... .......... 88% 120M 0s +2024-03-23T17:47:21Z #15 2.764 112050K .......... .......... .......... .......... .......... 88% 119M 0s +2024-03-23T17:47:21Z #15 2.765 112100K .......... .......... .......... .......... .......... 88% 149M 0s +2024-03-23T17:47:21Z #15 2.765 112150K .......... .......... .......... .......... .......... 88% 131M 0s +2024-03-23T17:47:21Z #15 2.766 112200K .......... .......... .......... .......... .......... 88% 150M 0s +2024-03-23T17:47:21Z #15 2.766 112250K .......... .......... .......... .......... .......... 88% 59.0M 0s +2024-03-23T17:47:21Z #15 2.767 112300K .......... .......... .......... .......... .......... 88% 123M 0s +2024-03-23T17:47:21Z #15 2.767 112350K .......... .......... .......... .......... .......... 88% 103M 0s +2024-03-23T17:47:21Z #15 2.767 112400K .......... .......... .......... .......... .......... 88% 138M 0s +2024-03-23T17:47:21Z #15 2.768 112450K .......... .......... .......... .......... .......... 88% 123M 0s +2024-03-23T17:47:21Z #15 2.768 112500K .......... .......... .......... .......... .......... 88% 143M 0s +2024-03-23T17:47:21Z #15 2.769 112550K .......... .......... .......... .......... .......... 88% 132M 0s +2024-03-23T17:47:21Z #15 2.769 112600K .......... .......... .......... .......... .......... 88% 127M 0s +2024-03-23T17:47:21Z #15 2.769 112650K .......... .......... .......... .......... .......... 88% 8.85M 0s +2024-03-23T17:47:21Z #15 2.775 112700K .......... .......... .......... .......... .......... 88% 136M 0s +2024-03-23T17:47:21Z #15 2.775 112750K .......... .......... .......... .......... .......... 88% 162M 0s +2024-03-23T17:47:21Z #15 2.776 112800K .......... .......... .......... .......... .......... 89% 148M 0s +2024-03-23T17:47:21Z #15 2.776 112850K .......... .......... .......... .......... .......... 89% 137M 0s +2024-03-23T17:47:21Z #15 2.776 112900K .......... .......... .......... .......... .......... 89% 163M 0s +2024-03-23T17:47:21Z #15 2.777 112950K .......... .......... .......... .......... .......... 89% 132M 0s +2024-03-23T17:47:21Z #15 2.777 113000K .......... .......... .......... .......... .......... 89% 149M 0s +2024-03-23T17:47:21Z #15 2.777 113050K .......... .......... .......... .......... .......... 89% 154M 0s +2024-03-23T17:47:21Z #15 2.777 113100K .......... .......... .......... .......... .......... 89% 143M 0s +2024-03-23T17:47:21Z #15 2.779 113150K .......... .......... .......... .......... .......... 89% 145M 0s +2024-03-23T17:47:21Z #15 2.779 113200K .......... .......... .......... .......... .......... 89% 161M 0s +2024-03-23T17:47:21Z #15 2.779 113250K .......... .......... .......... .......... .......... 89% 120M 0s +2024-03-23T17:47:21Z #15 2.779 113300K .......... .......... .......... .......... .......... 89% 125M 0s +2024-03-23T17:47:21Z #15 2.779 113350K .......... .......... .......... .......... .......... 89% 152M 0s +2024-03-23T17:47:21Z #15 2.780 113400K .......... .......... .......... .......... .......... 89% 134M 0s +2024-03-23T17:47:21Z #15 2.780 113450K .......... .......... .......... .......... .......... 89% 147M 0s +2024-03-23T17:47:21Z #15 2.780 113500K .......... .......... .......... .......... .......... 89% 134M 0s +2024-03-23T17:47:21Z #15 2.781 113550K .......... .......... .......... .......... .......... 89% 146M 0s +2024-03-23T17:47:21Z #15 2.781 113600K .......... .......... .......... .......... .......... 89% 146M 0s +2024-03-23T17:47:21Z #15 2.781 113650K .......... .......... .......... .......... .......... 89% 149M 0s +2024-03-23T17:47:21Z #15 2.782 113700K .......... .......... .......... .......... .......... 89% 139M 0s +2024-03-23T17:47:21Z #15 2.782 113750K .......... .......... .......... .......... .......... 89% 156M 0s +2024-03-23T17:47:21Z #15 2.783 113800K .......... .......... .......... .......... .......... 89% 151M 0s +2024-03-23T17:47:21Z #15 2.783 113850K .......... .......... .......... .......... .......... 89% 115M 0s +2024-03-23T17:47:21Z #15 2.783 113900K .......... .......... .......... .......... .......... 89% 135M 0s +2024-03-23T17:47:21Z #15 2.784 113950K .......... .......... .......... .......... .......... 89% 132M 0s +2024-03-23T17:47:21Z #15 2.784 114000K .......... .......... .......... .......... .......... 89% 131M 0s +2024-03-23T17:47:21Z #15 2.785 114050K .......... .......... .......... .......... .......... 89% 147M 0s +2024-03-23T17:47:21Z #15 2.785 114100K .......... .......... .......... .......... .......... 90% 155M 0s +2024-03-23T17:47:21Z #15 2.785 114150K .......... .......... .......... .......... .......... 90% 140M 0s +2024-03-23T17:47:21Z #15 2.786 114200K .......... .......... .......... .......... .......... 90% 145M 0s +2024-03-23T17:47:21Z #15 2.786 114250K .......... .......... .......... .......... .......... 90% 138M 0s +2024-03-23T17:47:21Z #15 2.786 114300K .......... .......... .......... .......... .......... 90% 166M 0s +2024-03-23T17:47:21Z #15 2.786 114350K .......... .......... .......... .......... .......... 90% 136M 0s +2024-03-23T17:47:21Z #15 2.787 114400K .......... .......... .......... .......... .......... 90% 10.8M 0s +2024-03-23T17:47:21Z #15 2.791 114450K .......... .......... .......... .......... .......... 90% 137M 0s +2024-03-23T17:47:21Z #15 2.792 114500K .......... .......... .......... .......... .......... 90% 105M 0s +2024-03-23T17:47:21Z #15 2.792 114550K .......... .......... .......... .......... .......... 90% 155M 0s +2024-03-23T17:47:21Z #15 2.792 114600K .......... .......... .......... .......... .......... 90% 160M 0s +2024-03-23T17:47:21Z #15 2.793 114650K .......... .......... .......... .......... .......... 90% 132M 0s +2024-03-23T17:47:21Z #15 2.793 114700K .......... .......... .......... .......... .......... 90% 133M 0s +2024-03-23T17:47:21Z #15 2.793 114750K .......... .......... .......... .......... .......... 90% 152M 0s +2024-03-23T17:47:21Z #15 2.794 114800K .......... .......... .......... .......... .......... 90% 140M 0s +2024-03-23T17:47:21Z #15 2.794 114850K .......... .......... .......... .......... .......... 90% 133M 0s +2024-03-23T17:47:21Z #15 2.794 114900K .......... .......... .......... .......... .......... 90% 153M 0s +2024-03-23T17:47:21Z #15 2.795 114950K .......... .......... .......... .......... .......... 90% 126M 0s +2024-03-23T17:47:21Z #15 2.796 115000K .......... .......... .......... .......... .......... 90% 139M 0s +2024-03-23T17:47:21Z #15 2.796 115050K .......... .......... .......... .......... .......... 90% 130M 0s +2024-03-23T17:47:21Z #15 2.796 115100K .......... .......... .......... .......... .......... 90% 126M 0s +2024-03-23T17:47:21Z #15 2.796 115150K .......... .......... .......... .......... .......... 90% 164M 0s +2024-03-23T17:47:21Z #15 2.797 115200K .......... .......... .......... .......... .......... 90% 150M 0s +2024-03-23T17:47:21Z #15 2.797 115250K .......... .......... .......... .......... .......... 90% 138M 0s +2024-03-23T17:47:21Z #15 2.797 115300K .......... .......... .......... .......... .......... 90% 123M 0s +2024-03-23T17:47:21Z #15 2.798 115350K .......... .......... .......... .......... .......... 91% 159M 0s +2024-03-23T17:47:21Z #15 2.798 115400K .......... .......... .......... .......... .......... 91% 164M 0s +2024-03-23T17:47:21Z #15 2.798 115450K .......... .......... .......... .......... .......... 91% 139M 0s +2024-03-23T17:47:21Z #15 2.798 115500K .......... .......... .......... .......... .......... 91% 119M 0s +2024-03-23T17:47:21Z #15 2.799 115550K .......... .......... .......... .......... .......... 91% 139M 0s +2024-03-23T17:47:21Z #15 2.799 115600K .......... .......... .......... .......... .......... 91% 124M 0s +2024-03-23T17:47:21Z #15 2.800 115650K .......... .......... .......... .......... .......... 91% 141M 0s +2024-03-23T17:47:21Z #15 2.800 115700K .......... .......... .......... .......... .......... 91% 135M 0s +2024-03-23T17:47:21Z #15 2.800 115750K .......... .......... .......... .......... .......... 91% 123M 0s +2024-03-23T17:47:21Z #15 2.801 115800K .......... .......... .......... .......... .......... 91% 153M 0s +2024-03-23T17:47:21Z #15 2.802 115850K .......... .......... .......... .......... .......... 91% 147M 0s +2024-03-23T17:47:21Z #15 2.802 115900K .......... .......... .......... .......... .......... 91% 145M 0s +2024-03-23T17:47:21Z #15 2.802 115950K .......... .......... .......... .......... .......... 91% 127M 0s +2024-03-23T17:47:21Z #15 2.802 116000K .......... .......... .......... .......... .......... 91% 160M 0s +2024-03-23T17:47:21Z #15 2.802 116050K .......... .......... .......... .......... .......... 91% 10.9M 0s +2024-03-23T17:47:21Z #15 2.807 116100K .......... .......... .......... .......... .......... 91% 125M 0s +2024-03-23T17:47:21Z #15 2.807 116150K .......... .......... .......... .......... .......... 91% 126M 0s +2024-03-23T17:47:21Z #15 2.808 116200K .......... .......... .......... .......... .......... 91% 112M 0s +2024-03-23T17:47:21Z #15 2.808 116250K .......... .......... .......... .......... .......... 91% 120M 0s +2024-03-23T17:47:21Z #15 2.808 116300K .......... .......... .......... .......... .......... 91% 135M 0s +2024-03-23T17:47:21Z #15 2.809 116350K .......... .......... .......... .......... .......... 91% 142M 0s +2024-03-23T17:47:21Z #15 2.809 116400K .......... .......... .......... .......... .......... 91% 155M 0s +2024-03-23T17:47:21Z #15 2.809 116450K .......... .......... .......... .......... .......... 91% 110M 0s +2024-03-23T17:47:21Z #15 2.810 116500K .......... .......... .......... .......... .......... 91% 115M 0s +2024-03-23T17:47:21Z #15 2.811 116550K .......... .......... .......... .......... .......... 91% 168M 0s +2024-03-23T17:47:21Z #15 2.811 116600K .......... .......... .......... .......... .......... 92% 114M 0s +2024-03-23T17:47:21Z #15 2.811 116650K .......... .......... .......... .......... .......... 92% 112M 0s +2024-03-23T17:47:21Z #15 2.811 116700K .......... .......... .......... .......... .......... 92% 108M 0s +2024-03-23T17:47:21Z #15 2.812 116750K .......... .......... .......... .......... .......... 92% 155M 0s +2024-03-23T17:47:21Z #15 2.812 116800K .......... .......... .......... .......... .......... 92% 127M 0s +2024-03-23T17:47:21Z #15 2.813 116850K .......... .......... .......... .......... .......... 92% 129M 0s +2024-03-23T17:47:21Z #15 2.813 116900K .......... .......... .......... .......... .......... 92% 142M 0s +2024-03-23T17:47:21Z #15 2.814 116950K .......... .......... .......... .......... .......... 92% 124M 0s +2024-03-23T17:47:21Z #15 2.814 117000K .......... .......... .......... .......... .......... 92% 126M 0s +2024-03-23T17:47:21Z #15 2.814 117050K .......... .......... .......... .......... .......... 92% 134M 0s +2024-03-23T17:47:21Z #15 2.814 117100K .......... .......... .......... .......... .......... 92% 10.9M 0s +2024-03-23T17:47:21Z #15 2.819 117150K .......... .......... .......... .......... .......... 92% 102M 0s +2024-03-23T17:47:21Z #15 2.819 117200K .......... .......... .......... .......... .......... 92% 117M 0s +2024-03-23T17:47:21Z #15 2.820 117250K .......... .......... .......... .......... .......... 92% 125M 0s +2024-03-23T17:47:21Z #15 2.820 117300K .......... .......... .......... .......... .......... 92% 95.5M 0s +2024-03-23T17:47:21Z #15 2.822 117350K .......... .......... .......... .......... .......... 92% 123M 0s +2024-03-23T17:47:21Z #15 2.822 117400K .......... .......... .......... .......... .......... 92% 143M 0s +2024-03-23T17:47:21Z #15 2.822 117450K .......... .......... .......... .......... .......... 92% 97.1M 0s +2024-03-23T17:47:21Z #15 2.822 117500K .......... .......... .......... .......... .......... 92% 104M 0s +2024-03-23T17:47:21Z #15 2.823 117550K .......... .......... .......... .......... .......... 92% 96.4M 0s +2024-03-23T17:47:21Z #15 2.823 117600K .......... .......... .......... .......... .......... 92% 126M 0s +2024-03-23T17:47:21Z #15 2.823 117650K .......... .......... .......... .......... .......... 92% 148M 0s +2024-03-23T17:47:21Z #15 2.824 117700K .......... .......... .......... .......... .......... 92% 102M 0s +2024-03-23T17:47:21Z #15 2.825 117750K .......... .......... .......... .......... .......... 92% 138M 0s +2024-03-23T17:47:21Z #15 2.825 117800K .......... .......... .......... .......... .......... 92% 124M 0s +2024-03-23T17:47:21Z #15 2.826 117850K .......... .......... .......... .......... .......... 92% 142M 0s +2024-03-23T17:47:21Z #15 2.826 117900K .......... .......... .......... .......... .......... 93% 135M 0s +2024-03-23T17:47:21Z #15 2.826 117950K .......... .......... .......... .......... .......... 93% 113M 0s +2024-03-23T17:47:21Z #15 2.826 118000K .......... .......... .......... .......... .......... 93% 117M 0s +2024-03-23T17:47:21Z #15 2.826 118050K .......... .......... .......... .......... .......... 93% 125M 0s +2024-03-23T17:47:21Z #15 2.827 118100K .......... .......... .......... .......... .......... 93% 128M 0s +2024-03-23T17:47:21Z #15 2.827 118150K .......... .......... .......... .......... .......... 93% 118M 0s +2024-03-23T17:47:21Z #15 2.828 118200K .......... .......... .......... .......... .......... 93% 114M 0s +2024-03-23T17:47:21Z #15 2.828 118250K .......... .......... .......... .......... .......... 93% 128M 0s +2024-03-23T17:47:21Z #15 2.829 118300K .......... .......... .......... .......... .......... 93% 149M 0s +2024-03-23T17:47:21Z #15 2.829 118350K .......... .......... .......... .......... .......... 93% 144M 0s +2024-03-23T17:47:21Z #15 2.829 118400K .......... .......... .......... .......... .......... 93% 106M 0s +2024-03-23T17:47:21Z #15 2.830 118450K .......... .......... .......... .......... .......... 93% 129M 0s +2024-03-23T17:47:21Z #15 2.831 118500K .......... .......... .......... .......... .......... 93% 123M 0s +2024-03-23T17:47:21Z #15 2.831 118550K .......... .......... .......... .......... .......... 93% 11.1M 0s +2024-03-23T17:47:21Z #15 2.835 118600K .......... .......... .......... .......... .......... 93% 138M 0s +2024-03-23T17:47:21Z #15 2.835 118650K .......... .......... .......... .......... .......... 93% 155M 0s +2024-03-23T17:47:21Z #15 2.835 118700K .......... .......... .......... .......... .......... 93% 146M 0s +2024-03-23T17:47:21Z #15 2.836 118750K .......... .......... .......... .......... .......... 93% 116M 0s +2024-03-23T17:47:21Z #15 2.836 118800K .......... .......... .......... .......... .......... 93% 139M 0s +2024-03-23T17:47:21Z #15 2.837 118850K .......... .......... .......... .......... .......... 93% 128M 0s +2024-03-23T17:47:21Z #15 2.837 118900K .......... .......... .......... .......... .......... 93% 117M 0s +2024-03-23T17:47:21Z #15 2.839 118950K .......... .......... .......... .......... .......... 93% 113M 0s +2024-03-23T17:47:21Z #15 2.839 119000K .......... .......... .......... .......... .......... 93% 130M 0s +2024-03-23T17:47:21Z #15 2.839 119050K .......... .......... .......... .......... .......... 93% 132M 0s +2024-03-23T17:47:21Z #15 2.839 119100K .......... .......... .......... .......... .......... 93% 127M 0s +2024-03-23T17:47:21Z #15 2.839 119150K .......... .......... .......... .......... .......... 94% 118M 0s +2024-03-23T17:47:21Z #15 2.839 119200K .......... .......... .......... .......... .......... 94% 136M 0s +2024-03-23T17:47:21Z #15 2.840 119250K .......... .......... .......... .......... .......... 94% 113M 0s +2024-03-23T17:47:21Z #15 2.840 119300K .......... .......... .......... .......... .......... 94% 119M 0s +2024-03-23T17:47:21Z #15 2.841 119350K .......... .......... .......... .......... .......... 94% 143M 0s +2024-03-23T17:47:21Z #15 2.841 119400K .......... .......... .......... .......... .......... 94% 115M 0s +2024-03-23T17:47:21Z #15 2.841 119450K .......... .......... .......... .......... .......... 94% 139M 0s +2024-03-23T17:47:21Z #15 2.842 119500K .......... .......... .......... .......... .......... 94% 147M 0s +2024-03-23T17:47:21Z #15 2.842 119550K .......... .......... .......... .......... .......... 94% 138M 0s +2024-03-23T17:47:21Z #15 2.843 119600K .......... .......... .......... .......... .......... 94% 112M 0s +2024-03-23T17:47:21Z #15 2.843 119650K .......... .......... .......... .......... .......... 94% 151M 0s +2024-03-23T17:47:21Z #15 2.843 119700K .......... .......... .......... .......... .......... 94% 156M 0s +2024-03-23T17:47:21Z #15 2.843 119750K .......... .......... .......... .......... .......... 94% 148M 0s +2024-03-23T17:47:21Z #15 2.844 119800K .......... .......... .......... .......... .......... 94% 125M 0s +2024-03-23T17:47:21Z #15 2.844 119850K .......... .......... .......... .......... .......... 94% 158M 0s +2024-03-23T17:47:21Z #15 2.844 119900K .......... .......... .......... .......... .......... 94% 138M 0s +2024-03-23T17:47:21Z #15 2.845 119950K .......... .......... .......... .......... .......... 94% 165M 0s +2024-03-23T17:47:21Z #15 2.845 120000K .......... .......... .......... .......... .......... 94% 150M 0s +2024-03-23T17:47:21Z #15 2.845 120050K .......... .......... .......... .......... .......... 94% 161M 0s +2024-03-23T17:47:21Z #15 2.846 120100K .......... .......... .......... .......... .......... 94% 127M 0s +2024-03-23T17:47:21Z #15 2.846 120150K .......... .......... .......... .......... .......... 94% 161M 0s +2024-03-23T17:47:21Z #15 2.847 120200K .......... .......... .......... .......... .......... 94% 11.1M 0s +2024-03-23T17:47:21Z #15 2.851 120250K .......... .......... .......... .......... .......... 94% 131M 0s +2024-03-23T17:47:21Z #15 2.851 120300K .......... .......... .......... .......... .......... 94% 161M 0s +2024-03-23T17:47:21Z #15 2.852 120350K .......... .......... .......... .......... .......... 94% 145M 0s +2024-03-23T17:47:21Z #15 2.852 120400K .......... .......... .......... .......... .......... 95% 126M 0s +2024-03-23T17:47:21Z #15 2.852 120450K .......... .......... .......... .......... .......... 95% 158M 0s +2024-03-23T17:47:21Z #15 2.853 120500K .......... .......... .......... .......... .......... 95% 144M 0s +2024-03-23T17:47:21Z #15 2.853 120550K .......... .......... .......... .......... .......... 95% 155M 0s +2024-03-23T17:47:21Z #15 2.853 120600K .......... .......... .......... .......... .......... 95% 152M 0s +2024-03-23T17:47:21Z #15 2.854 120650K .......... .......... .......... .......... .......... 95% 143M 0s +2024-03-23T17:47:21Z #15 2.854 120700K .......... .......... .......... .......... .......... 95% 158M 0s +2024-03-23T17:47:21Z #15 2.854 120750K .......... .......... .......... .......... .......... 95% 125M 0s +2024-03-23T17:47:21Z #15 2.855 120800K .......... .......... .......... .......... .......... 95% 117M 0s +2024-03-23T17:47:21Z #15 2.855 120850K .......... .......... .......... .......... .......... 95% 159M 0s +2024-03-23T17:47:21Z #15 2.855 120900K .......... .......... .......... .......... .......... 95% 154M 0s +2024-03-23T17:47:21Z #15 2.856 120950K .......... .......... .......... .......... .......... 95% 131M 0s +2024-03-23T17:47:21Z #15 2.856 121000K .......... .......... .......... .......... .......... 95% 155M 0s +2024-03-23T17:47:21Z #15 2.857 121050K .......... .......... .......... .......... .......... 95% 150M 0s +2024-03-23T17:47:21Z #15 2.857 121100K .......... .......... .......... .......... .......... 95% 139M 0s +2024-03-23T17:47:21Z #15 2.857 121150K .......... .......... .......... .......... .......... 95% 158M 0s +2024-03-23T17:47:21Z #15 2.858 121200K .......... .......... .......... .......... .......... 95% 135M 0s +2024-03-23T17:47:21Z #15 2.858 121250K .......... .......... .......... .......... .......... 95% 169M 0s +2024-03-23T17:47:21Z #15 2.858 121300K .......... .......... .......... .......... .......... 95% 156M 0s +2024-03-23T17:47:21Z #15 2.858 121350K .......... .......... .......... .......... .......... 95% 10.9M 0s +2024-03-23T17:47:21Z #15 2.863 121400K .......... .......... .......... .......... .......... 95% 125M 0s +2024-03-23T17:47:21Z #15 2.864 121450K .......... .......... .......... .......... .......... 95% 141M 0s +2024-03-23T17:47:21Z #15 2.864 121500K .......... .......... .......... .......... .......... 95% 141M 0s +2024-03-23T17:47:21Z #15 2.864 121550K .......... .......... .......... .......... .......... 95% 136M 0s +2024-03-23T17:47:21Z #15 2.864 121600K .......... .......... .......... .......... .......... 95% 160M 0s +2024-03-23T17:47:21Z #15 2.866 121650K .......... .......... .......... .......... .......... 95% 135M 0s +2024-03-23T17:47:21Z #15 2.866 121700K .......... .......... .......... .......... .......... 96% 133M 0s +2024-03-23T17:47:21Z #15 2.866 121750K .......... .......... .......... .......... .......... 96% 163M 0s +2024-03-23T17:47:21Z #15 2.866 121800K .......... .......... .......... .......... .......... 96% 127M 0s +2024-03-23T17:47:21Z #15 2.866 121850K .......... .......... .......... .......... .......... 96% 129M 0s +2024-03-23T17:47:21Z #15 2.866 121900K .......... .......... .......... .......... .......... 96% 145M 0s +2024-03-23T17:47:21Z #15 2.867 121950K .......... .......... .......... .......... .......... 96% 104M 0s +2024-03-23T17:47:21Z #15 2.867 122000K .......... .......... .......... .......... .......... 96% 139M 0s +2024-03-23T17:47:21Z #15 2.868 122050K .......... .......... .......... .......... .......... 96% 167M 0s +2024-03-23T17:47:21Z #15 2.868 122100K .......... .......... .......... .......... .......... 96% 135M 0s +2024-03-23T17:47:21Z #15 2.868 122150K .......... .......... .......... .......... .......... 96% 159M 0s +2024-03-23T17:47:21Z #15 2.869 122200K .......... .......... .......... .......... .......... 96% 135M 0s +2024-03-23T17:47:21Z #15 2.869 122250K .......... .......... .......... .......... .......... 96% 143M 0s +2024-03-23T17:47:21Z #15 2.869 122300K .......... .......... .......... .......... .......... 96% 154M 0s +2024-03-23T17:47:21Z #15 2.869 122350K .......... .......... .......... .......... .......... 96% 155M 0s +2024-03-23T17:47:21Z #15 2.870 122400K .......... .......... .......... .......... .......... 96% 40.8M 0s +2024-03-23T17:47:21Z #15 2.873 122450K .......... .......... .......... .......... .......... 96% 29.5M 0s +2024-03-23T17:47:21Z #15 2.873 122500K .......... .......... .......... .......... .......... 96% 148M 0s +2024-03-23T17:47:21Z #15 2.873 122550K .......... .......... .......... .......... .......... 96% 176M 0s +2024-03-23T17:47:21Z #15 2.873 122600K .......... .......... .......... .......... .......... 96% 169M 0s +2024-03-23T17:47:21Z #15 2.874 122650K .......... .......... .......... .......... .......... 96% 164M 0s +2024-03-23T17:47:21Z #15 2.874 122700K .......... .......... .......... .......... .......... 96% 165M 0s +2024-03-23T17:47:21Z #15 2.874 122750K .......... .......... .......... .......... .......... 96% 175M 0s +2024-03-23T17:47:21Z #15 2.878 122800K .......... .......... .......... .......... .......... 96% 13.3M 0s +2024-03-23T17:47:21Z #15 2.878 122850K .......... .......... .......... .......... .......... 96% 112M 0s +2024-03-23T17:47:21Z #15 2.878 122900K .......... .......... .......... .......... .......... 96% 134M 0s +2024-03-23T17:47:21Z #15 2.879 122950K .......... .......... .......... .......... .......... 97% 171M 0s +2024-03-23T17:47:21Z #15 2.879 123000K .......... .......... .......... .......... .......... 97% 164M 0s +2024-03-23T17:47:21Z #15 2.879 123050K .......... .......... .......... .......... .......... 97% 152M 0s +2024-03-23T17:47:21Z #15 2.880 123100K .......... .......... .......... .......... .......... 97% 146M 0s +2024-03-23T17:47:21Z #15 2.880 123150K .......... .......... .......... .......... .......... 97% 173M 0s +2024-03-23T17:47:21Z #15 2.880 123200K .......... .......... .......... .......... .......... 97% 145M 0s +2024-03-23T17:47:21Z #15 2.881 123250K .......... .......... .......... .......... .......... 97% 135M 0s +2024-03-23T17:47:21Z #15 2.881 123300K .......... .......... .......... .......... .......... 97% 149M 0s +2024-03-23T17:47:21Z #15 2.881 123350K .......... .......... .......... .......... .......... 97% 161M 0s +2024-03-23T17:47:21Z #15 2.882 123400K .......... .......... .......... .......... .......... 97% 146M 0s +2024-03-23T17:47:21Z #15 2.882 123450K .......... .......... .......... .......... .......... 97% 163M 0s +2024-03-23T17:47:21Z #15 2.882 123500K .......... .......... .......... .......... .......... 97% 156M 0s +2024-03-23T17:47:21Z #15 2.883 123550K .......... .......... .......... .......... .......... 97% 158M 0s +2024-03-23T17:47:21Z #15 2.883 123600K .......... .......... .......... .......... .......... 97% 151M 0s +2024-03-23T17:47:21Z #15 2.883 123650K .......... .......... .......... .......... .......... 97% 177M 0s +2024-03-23T17:47:21Z #15 2.884 123700K .......... .......... .......... .......... .......... 97% 141M 0s +2024-03-23T17:47:21Z #15 2.884 123750K .......... .......... .......... .......... .......... 97% 158M 0s +2024-03-23T17:47:21Z #15 2.884 123800K .......... .......... .......... .......... .......... 97% 125M 0s +2024-03-23T17:47:21Z #15 2.885 123850K .......... .......... .......... .......... .......... 97% 171M 0s +2024-03-23T17:47:21Z #15 2.885 123900K .......... .......... .......... .......... .......... 97% 161M 0s +2024-03-23T17:47:21Z #15 2.885 123950K .......... .......... .......... .......... .......... 97% 178M 0s +2024-03-23T17:47:21Z #15 2.885 124000K .......... .......... .......... .......... .......... 97% 163M 0s +2024-03-23T17:47:21Z #15 2.886 124050K .......... .......... .......... .......... .......... 97% 146M 0s +2024-03-23T17:47:21Z #15 2.886 124100K .......... .......... .......... .......... .......... 97% 131M 0s +2024-03-23T17:47:21Z #15 2.888 124150K .......... .......... .......... .......... .......... 97% 5.78M 0s +2024-03-23T17:47:21Z #15 2.895 124200K .......... .......... .......... .......... .......... 98% 127M 0s +2024-03-23T17:47:21Z #15 2.895 124250K .......... .......... .......... .......... .......... 98% 140M 0s +2024-03-23T17:47:21Z #15 2.896 124300K .......... .......... .......... .......... .......... 98% 143M 0s +2024-03-23T17:47:21Z #15 2.896 124350K .......... .......... .......... .......... .......... 98% 131M 0s +2024-03-23T17:47:21Z #15 2.896 124400K .......... .......... .......... .......... .......... 98% 164M 0s +2024-03-23T17:47:21Z #15 2.897 124450K .......... .......... .......... .......... .......... 98% 169M 0s +2024-03-23T17:47:21Z #15 2.897 124500K .......... .......... .......... .......... .......... 98% 151M 0s +2024-03-23T17:47:21Z #15 2.898 124550K .......... .......... .......... .......... .......... 98% 114M 0s +2024-03-23T17:47:21Z #15 2.898 124600K .......... .......... .......... .......... .......... 98% 136M 0s +2024-03-23T17:47:21Z #15 2.898 124650K .......... .......... .......... .......... .......... 98% 124M 0s +2024-03-23T17:47:21Z #15 2.899 124700K .......... .......... .......... .......... .......... 98% 115M 0s +2024-03-23T17:47:21Z #15 2.899 124750K .......... .......... .......... .......... .......... 98% 151M 0s +2024-03-23T17:47:21Z #15 2.899 124800K .......... .......... .......... .......... .......... 98% 136M 0s +2024-03-23T17:47:21Z #15 2.900 124850K .......... .......... .......... .......... .......... 98% 132M 0s +2024-03-23T17:47:21Z #15 2.900 124900K .......... .......... .......... .......... .......... 98% 132M 0s +2024-03-23T17:47:21Z #15 2.900 124950K .......... .......... .......... .......... .......... 98% 158M 0s +2024-03-23T17:47:21Z #15 2.901 125000K .......... .......... .......... .......... .......... 98% 131M 0s +2024-03-23T17:47:21Z #15 2.901 125050K .......... .......... .......... .......... .......... 98% 155M 0s +2024-03-23T17:47:21Z #15 2.901 125100K .......... .......... .......... .......... .......... 98% 125M 0s +2024-03-23T17:47:21Z #15 2.902 125150K .......... .......... .......... .......... .......... 98% 159M 0s +2024-03-23T17:47:21Z #15 2.902 125200K .......... .......... .......... .......... .......... 98% 154M 0s +2024-03-23T17:47:21Z #15 2.902 125250K .......... .......... .......... .......... .......... 98% 152M 0s +2024-03-23T17:47:21Z #15 2.903 125300K .......... .......... .......... .......... .......... 98% 133M 0s +2024-03-23T17:47:21Z #15 2.903 125350K .......... .......... .......... .......... .......... 98% 152M 0s +2024-03-23T17:47:21Z #15 2.904 125400K .......... .......... .......... .......... .......... 98% 128M 0s +2024-03-23T17:47:21Z #15 2.904 125450K .......... .......... .......... .......... .......... 98% 141M 0s +2024-03-23T17:47:21Z #15 2.904 125500K .......... .......... .......... .......... .......... 99% 161M 0s +2024-03-23T17:47:21Z #15 2.904 125550K .......... .......... .......... .......... .......... 99% 156M 0s +2024-03-23T17:47:21Z #15 2.905 125600K .......... .......... .......... .......... .......... 99% 157M 0s +2024-03-23T17:47:21Z #15 2.905 125650K .......... .......... .......... .......... .......... 99% 139M 0s +2024-03-23T17:47:21Z #15 2.905 125700K .......... .......... .......... .......... .......... 99% 167M 0s +2024-03-23T17:47:21Z #15 2.906 125750K .......... .......... .......... .......... .......... 99% 147M 0s +2024-03-23T17:47:21Z #15 2.906 125800K .......... .......... .......... .......... .......... 99% 54.9M 0s +2024-03-23T17:47:21Z #15 2.907 125850K .......... .......... .......... .......... .......... 99% 159M 0s +2024-03-23T17:47:21Z #15 2.907 125900K .......... .......... .......... .......... .......... 99% 146M 0s +2024-03-23T17:47:21Z #15 2.907 125950K .......... .......... .......... .......... .......... 99% 141M 0s +2024-03-23T17:47:21Z #15 2.908 126000K .......... .......... .......... .......... .......... 99% 15.3M 0s +2024-03-23T17:47:21Z #15 2.911 126050K .......... .......... .......... .......... .......... 99% 126M 0s +2024-03-23T17:47:21Z #15 2.912 126100K .......... .......... .......... .......... .......... 99% 149M 0s +2024-03-23T17:47:21Z #15 2.912 126150K .......... .......... .......... .......... .......... 99% 150M 0s +2024-03-23T17:47:21Z #15 2.912 126200K .......... .......... .......... .......... .......... 99% 149M 0s +2024-03-23T17:47:21Z #15 2.913 126250K .......... .......... .......... .......... .......... 99% 139M 0s +2024-03-23T17:47:21Z #15 2.913 126300K .......... .......... .......... .......... .......... 99% 157M 0s +2024-03-23T17:47:21Z #15 2.913 126350K .......... .......... .......... .......... .......... 99% 155M 0s +2024-03-23T17:47:21Z #15 2.913 126400K .......... .......... .......... .......... .......... 99% 129M 0s +2024-03-23T17:47:21Z #15 2.914 126450K .......... .......... .......... .......... .......... 99% 158M 0s +2024-03-23T17:47:21Z #15 2.915 126500K .......... .......... .......... .......... .......... 99% 145M 0s +2024-03-23T17:47:21Z #15 2.915 126550K .......... .......... .......... .......... .......... 99% 136M 0s +2024-03-23T17:47:21Z #15 2.915 126600K .......... .......... .......... .......... .......... 99% 160M 0s +2024-03-23T17:47:21Z #15 2.915 126650K .......... .......... .......... .......... .......... 99% 159M 0s +2024-03-23T17:47:21Z #15 2.915 126700K .......... .......... .......... .......... .......... 99% 128M 0s +2024-03-23T17:47:21Z #15 2.916 126750K .......... .......... .......... .. 100% 140M=1.7s +2024-03-23T17:47:21Z #15 2.916 +2024-03-23T17:47:21Z #15 2.916 2024-03-23 17:47:21 (72.0 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] +2024-03-23T17:47:21Z #15 2.916 +2024-03-23T17:47:23Z #15 4.385 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' +2024-03-23T17:47:23Z #15 4.407 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-03-23T17:47:23Z #15 DONE 4.9s +2024-03-23T17:47:23Z +2024-03-23T17:47:23Z #16 exporting to image +2024-03-23T17:47:23Z #16 exporting layers +2024-03-23T17:49:53Z #16 exporting layers 149.7s done +2024-03-23T17:49:53Z #16 writing image sha256:b3e2aeabde8e5213c4640508c260fba0819cf9b9b53cbc94cf4bd6a434abf59b done +2024-03-23T17:49:53Z #16 naming to docker.io/pavics/workflow-tests:py310-240323 done +2024-03-23T17:49:53Z #16 DONE 149.8s +2024-03-23T17:49:53Z Pushing index.docker.io/pavics/workflow-tests:py310-240323... +2024-03-23T17:57:22Z Done! +2024-03-23T17:57:22Z Build finished From 266a507a27ce03d68d590c6733e5801d255da6c9 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 23 Mar 2024 14:31:46 -0400 Subject: [PATCH 046/104] output-sanitize.cfg: fix subset-user-input.ipynb /tmp/ipykernel_NUM/ path ``` _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb::Cell 14 _ Notebook cell execution failed Cell 14: Cell outputs differ Input: lon0 = float(bounds.minx) lon1 = float(bounds.maxx) lat0 = float(bounds.miny) lat1 = float(bounds.maxy) result_tasmin = finch.subset_bbox( resource=data, variable="tasmin", lon0=lon0, lon1=lon1, lat0=lat0, lat1=lat1, start_date="1958-01-01", end_date="1958-12-31", ) Traceback: mismatch 'stderr' assert reference_output == test_output failed: '/tmp/ipykern...ounds.maxy)\n' == '/tmp/ipykern...ounds.maxy)\n' Skipping 179 identical trailing characters in diff, use -v to show - /tmp/ipykernel_1380/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead ? ^^^ + /tmp/ipykernel_3157/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead ? + ^^ lon0 = float(bounds.minx) - /tmp/ipykernel_1380/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead ? ^^^ + /tmp/ipykernel_3157/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead ? + ^^ lon1 = float(bounds.maxx) - /tmp/ipykernel_1380/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead ? ^^^ + /tmp/ipykernel_3157/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead ? + ^^ lat0 = float(bounds.miny) - /tmp/ipykernel_1380/85701396 ? ^^^ + /tmp/ipykernel_3157/85701396 ? + ^^ ``` --- notebooks/output-sanitize.cfg | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/notebooks/output-sanitize.cfg b/notebooks/output-sanitize.cfg index e27a859..90eb328 100644 --- a/notebooks/output-sanitize.cfg +++ b/notebooks/output-sanitize.cfg @@ -107,6 +107,14 @@ replace: /tmpRANDOM.png regex: /tmp[a-zA-Z0-9_]{8}/ replace: /tmpRANDOM/ +[ipykernel-temp-dir] +# - /tmp/ipykernel_1380/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +# ? ^^^ +# + /tmp/ipykernel_3157/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead +# ? + ^^ +regex: ipykernel_\d+ +replace: ipykernel_NUM + [percent-percent-time-output-cpu-times] # CPU times: user 4.74 s, sys: 110 ms, total: 4.84 s regex: CPU times:\s+user\s+\d+.+\,\s+sys:\s+\d+.+\,\s+total:\s+\d+\.?\d*\s+[a-z]+ From 4776dee0ea8bcfb081d08df0ba3ac0198b5703c9 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 23 Mar 2024 14:44:39 -0400 Subject: [PATCH 047/104] docker: py310-240323: conda env --- docker/saved_buildout/conda-env-export.yml | 134 ++++++++++----------- 1 file changed, 65 insertions(+), 69 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index 30c9bc3..a989c34 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -15,7 +15,7 @@ dependencies: - aiosqlite=0.19.0=pyhd8ed1ab_0 - alembic=1.13.1=pyhd8ed1ab_1 - alsa-lib=1.2.8=h166bdaf_0 - - altair=5.2.0=pyhd8ed1ab_0 + - altair=5.2.0=pyhd8ed1ab_1 - annotated-types=0.6.0=pyhd8ed1ab_0 - anyio=4.3.0=pyhd8ed1ab_0 - aom=3.5.0=h27087fc_0 @@ -23,32 +23,30 @@ dependencies: - argon2-cffi=23.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h2372a71_4 - arrow=1.3.0=pyhd8ed1ab_0 - - arrow-cpp=11.0.0=ha770c72_14_cpu - asciitree=0.3.3=py_2 - asttokens=2.4.1=pyhd8ed1ab_0 - async-timeout=4.0.3=pyhd8ed1ab_0 - async_generator=1.10=py_0 - attr=2.5.1=h166bdaf_1 - attrs=23.2.0=pyh71513ae_0 - - aws-c-auth=0.6.26=h987a71b_2 - - aws-c-cal=0.5.21=h48707d8_2 - - aws-c-common=0.8.14=h0b41bf4_0 - - aws-c-compression=0.2.16=h03acc5a_5 - - aws-c-event-stream=0.2.20=h00877a2_4 - - aws-c-http=0.7.6=hf342b9f_0 - - aws-c-io=0.13.19=h5b20300_3 - - aws-c-mqtt=0.8.6=hc4349f7_12 - - aws-c-s3=0.2.7=h909e904_1 - - aws-c-sdkutils=0.1.9=h03acc5a_0 - - aws-checksums=0.1.14=h03acc5a_5 - - aws-crt-cpp=0.19.8=hf7fbfca_12 - - aws-sdk-cpp=1.10.57=h17c43bd_8 - - azure-core-cpp=1.10.3=h22d5011_0 + - aws-c-auth=0.7.0=hf8751d9_2 + - aws-c-cal=0.6.0=h93469e0_0 + - aws-c-common=0.8.23=hd590300_0 + - aws-c-compression=0.2.17=h862ab75_1 + - aws-c-event-stream=0.3.1=h9599702_1 + - aws-c-http=0.7.11=hbe98c3e_0 + - aws-c-io=0.13.28=h3870b5a_0 + - aws-c-mqtt=0.8.14=h2e270ba_2 + - aws-c-s3=0.3.13=heb0bb06_2 + - aws-c-sdkutils=0.1.11=h862ab75_1 + - aws-checksums=0.1.16=h862ab75_1 + - aws-crt-cpp=0.20.3=he9c0e7f_4 + - aws-sdk-cpp=1.10.57=hbc2ea52_17 - babel=2.14.0=pyhd8ed1ab_0 - bcrypt=4.1.2=py310hcb5633a_0 - beautifulsoup4=4.12.3=pyha770c72_0 - bias_correction=0.4=pyhd8ed1ab_0 - - birdy=0.8.5=pyhd8ed1ab_0 + - birdy=0.8.6=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - blinker=1.7.0=pyhd8ed1ab_0 - blosc=1.21.5=h0f2a231_0 @@ -98,13 +96,13 @@ dependencies: - contourpy=1.2.0=py310hd41b1e2_0 - coverage=7.4.4=py310h2372a71_0 - cryptography=42.0.2=py310hb8475ec_0 - - curl=7.88.1=hdc1c0ab_1 + - curl=8.1.2=h409715c_0 - cycler=0.12.1=pyhd8ed1ab_0 - cytoolz=0.12.3=py310h2372a71_0 - dash=2.16.1=pyhd8ed1ab_0 - - dask=2024.3.0=pyhd8ed1ab_1 - - dask-core=2024.3.0=pyhd8ed1ab_0 - - dask-expr=1.0.2=pyhd8ed1ab_0 + - dask=2024.3.1=pyhd8ed1ab_0 + - dask-core=2024.3.1=pyhd8ed1ab_0 + - dask-expr=1.0.4=pyhd8ed1ab_0 - dask-labextension=6.2.0=pyhd8ed1ab_0 - dataclasses=0.8=pyhc8e2a94_3 - datashader=0.16.0=pyhd8ed1ab_0 @@ -117,7 +115,7 @@ dependencies: - dill=0.3.8=pyhd8ed1ab_0 - distarray=2.12.2=pyh050c7b8_4 - distlib=0.3.8=pyhd8ed1ab_0 - - distributed=2024.3.0=pyhd8ed1ab_0 + - distributed=2024.3.1=pyhd8ed1ab_0 - docopt=0.6.2=py_1 - docrep=0.3.2=pyh44b312d_0 - eccodes=2.28.0=h7513371_1 @@ -139,8 +137,7 @@ dependencies: - findlibs=0.0.5=pyhd8ed1ab_0 - fiona=1.9.1=py310ha325b7b_0 - flask=3.0.2=pyhd8ed1ab_0 - - flox=0.9.4=pyhd8ed1ab_0 - - fmt=10.2.1=h00ab1b0_0 + - flox=0.9.5=pyhd8ed1ab_0 - folium=0.16.0=pyhd8ed1ab_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 @@ -149,17 +146,17 @@ dependencies: - fontconfig=2.14.2=h14ed4e7_0 - fonts-conda-ecosystem=1=0 - fonts-conda-forge=1=0 - - fonttools=4.49.0=py310h2372a71_0 + - fonttools=4.50.0=py310h2372a71_0 - fqdn=1.5.1=pyhd8ed1ab_0 - freeglut=3.2.2=h9c3ff4c_1 - freetype=2.12.1=h267a509_2 - freexl=1.0.6=h166bdaf_1 - frozenlist=1.4.1=py310h2372a71_0 - - fsspec=2024.2.0=pyhca7485f_0 + - fsspec=2024.3.1=pyhca7485f_0 - funcsigs=1.0.2=py_3 - future=1.0.0=pyhd8ed1ab_0 - g2clib=1.8.0=ha770c72_6 - - gcsfs=2024.2.0=pyhd8ed1ab_0 + - gcsfs=2024.3.1=pyhd8ed1ab_0 - gdal=3.6.2=py310hc1b7723_6 - geckodriver=0.34.0=h2b8f863_0 - geographiclib=2.0=pyhd8ed1ab_0 @@ -179,17 +176,17 @@ dependencies: - glib-tools=2.78.1=hfc55251_0 - glog=0.6.0=h6f12383_0 - gnutls=3.7.9=hb077bed_0 - - google-api-core=2.17.1=pyhd8ed1ab_0 - - google-auth=2.28.2=pyhca7485f_0 + - google-api-core=2.18.0=pyhd8ed1ab_0 + - google-auth=2.29.0=pyhca7485f_0 - google-auth-oauthlib=1.2.0=pyhd8ed1ab_0 - google-cloud-core=2.4.1=pyhd8ed1ab_0 - - google-cloud-storage=2.14.0=pyhca7485f_0 + - google-cloud-storage=2.16.0=pyhca7485f_0 - google-crc32c=1.1.2=py310hc5c09a0_5 - google-resumable-media=2.7.0=pyhd8ed1ab_0 - googleapis-common-protos=1.63.0=pyhd8ed1ab_0 - graphite2=1.3.13=h58526e2_1001 - greenlet=3.0.3=py310hc6cd4ac_0 - - grpcio=1.52.1=py310heca2aa9_1 + - grpcio=1.56.2=py310h1b8f574_1 - gst-plugins-base=1.22.0=h4243ec0_2 - gstreamer=1.22.0=h25f0c4b_2 - gstreamer-orc=0.4.38=hd590300_0 @@ -207,9 +204,9 @@ dependencies: - idna=3.6=pyhd8ed1ab_0 - imagecodecs=2023.1.23=py310ha3ed6a1_0 - imageio=2.34.0=pyh4b66e23_0 - - importlib-metadata=7.0.2=pyha770c72_0 - - importlib_metadata=7.0.2=hd8ed1ab_0 - - importlib_resources=6.3.0=pyhd8ed1ab_0 + - importlib-metadata=7.1.0=pyha770c72_0 + - importlib_metadata=7.1.0=hd8ed1ab_0 + - importlib_resources=6.4.0=pyhd8ed1ab_0 - iniconfig=2.0.0=pyhd8ed1ab_0 - intake=0.7.0=pyhd8ed1ab_0 - intake-esm=2024.2.6=pyhd8ed1ab_1 @@ -231,7 +228,7 @@ dependencies: - joblib=1.3.2=pyhd8ed1ab_0 - jpeg=9e=h166bdaf_2 - json-c=0.16=hc379101_0 - - json5=0.9.22=pyhd8ed1ab_0 + - json5=0.9.24=pyhd8ed1ab_0 - jsonpickle=3.0.2=pyhd8ed1ab_1 - jsonpointer=2.4=py310hff52083_3 - jsonschema=4.21.1=pyhd8ed1ab_0 @@ -246,15 +243,15 @@ dependencies: - jupyter_client=7.4.9=pyhd8ed1ab_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - jupyter_core=5.7.2=py310hff52083_0 - - jupyter_events=0.9.1=pyhd8ed1ab_0 + - jupyter_events=0.10.0=pyhd8ed1ab_0 - jupyter_server=2.13.0=pyhd8ed1ab_0 - jupyter_server_fileid=0.9.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_0 - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 - jupyter_telemetry=0.1.0=pyhd8ed1ab_1 - jupyter_ydoc=0.2.4=pyhd8ed1ab_0 - - jupyterhub=4.0.2=pyh31011fe_0 - - jupyterhub-base=4.0.2=pyh31011fe_0 + - jupyterhub=4.1.0=pyh31011fe_0 + - jupyterhub-base=4.1.0=pyh31011fe_0 - jupyterlab=3.6.7=pyhd8ed1ab_0 - jupyterlab-git=0.8.2=py_0 - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 @@ -274,10 +271,10 @@ dependencies: - lcms2=2.15=hfd0df8a_0 - ld_impl_linux-64=2.40=h41732ed_0 - lerc=4.0.0=h27087fc_0 - - libabseil=20230125.0=cxx17_hcb278e6_1 - - libaec=1.1.2=h59595ed_1 + - libabseil=20230125.3=cxx17_h59595ed_0 + - libaec=1.1.3=h59595ed_0 - libarchive=3.6.2=h3d51595_0 - - libarrow=11.0.0=h93537a5_14_cpu + - libarrow=12.0.1=h657c46f_7_cpu - libavif=0.11.1=h8182462_2 - libblas=3.9.0=21_linux64_openblas - libbrotlicommon=1.0.9=h166bdaf_9 @@ -287,11 +284,11 @@ dependencies: - libcblas=3.9.0=21_linux64_openblas - libcdms=3.1.2=hf94f14b_119 - libcf=1.0.3=py310hbc577d2_115 - - libclang=15.0.7=default_hb11cfb5_4 - - libclang13=15.0.7=default_ha2b6cf4_4 + - libclang=15.0.7=default_h127d8a8_5 + - libclang13=15.0.7=default_h5d6823c_5 - libcrc32c=1.1.2=h9c3ff4c_0 - libcups=2.3.3=h36d4200_3 - - libcurl=7.88.1=hdc1c0ab_1 + - libcurl=8.1.2=h409715c_0 - libdb=6.2.32=h9c3ff4c_0 - libdeflate=1.17=h0b41bf4_0 - libdrm=2.4.120=hd590300_0 @@ -311,9 +308,9 @@ dependencies: - libglib=2.78.1=hebfc3b9_0 - libglu=9.0.0=he1b5a44_1001 - libgomp=13.2.0=h807b86a_5 - - libgoogle-cloud=2.8.0=h0bc5f78_1 + - libgoogle-cloud=2.12.0=h840a212_1 - libgpg-error=1.48=h71f35ed_0 - - libgrpc=1.52.1=hcf146ea_1 + - libgrpc=1.56.2=h3905398_1 - libiconv=1.17=hd590300_2 - libidn2=2.3.7=hd590300_0 - libjpeg-turbo=2.1.4=h166bdaf_0 @@ -334,7 +331,7 @@ dependencies: - libpciaccess=0.18=hd590300_0 - libpng=1.6.43=h2797004_0 - libpq=15.2=hb675445_0 - - libprotobuf=3.21.12=hfc55251_2 + - libprotobuf=4.23.3=hd1fb520_1 - librttopo=1.1.0=ha49c73b_12 - libsndfile=1.2.2=hc60ed4a_1 - libsodium=1.0.18=h36c2ea0_1 @@ -402,16 +399,16 @@ dependencies: - mysql-libs=8.0.33=hca2cd23_6 - nbclassic=1.0.0=pyhb4ecaf3_1 - nbclient=0.7.4=pyhd8ed1ab_0 - - nbconvert=7.16.2=pyhd8ed1ab_0 - - nbconvert-core=7.16.2=pyhd8ed1ab_0 - - nbconvert-pandoc=7.16.2=pyhd8ed1ab_0 + - nbconvert=7.16.3=hd8ed1ab_0 + - nbconvert-core=7.16.3=pyhd8ed1ab_0 + - nbconvert-pandoc=7.16.3=hd8ed1ab_0 - nbdime=4.0.1=pyhd8ed1ab_0 - nbformat=5.10.3=pyhd8ed1ab_0 - nbresuse=0.4.0=pyhd8ed1ab_0 - nbval=0.11.0=pyhd8ed1ab_0 - nc-time-axis=1.4.1=pyhd8ed1ab_0 - nceplibs-g2c=1.8.0=h4a0a8e2_6 - - ncurses=6.4=h59595ed_2 + - ncurses=6.4.20240210=h59595ed_0 - nest-asyncio=1.6.0=pyhd8ed1ab_0 - nested_dict=1.61=pyhd3deb0d_0 - netcdf-fortran=4.6.0=nompi_he1eeb6f_102 @@ -433,7 +430,7 @@ dependencies: - openjpeg=2.5.0=hfec8fc6_2 - openmpi=4.1.6=h336e698_100 - openssl=3.1.5=hd590300_0 - - orc=1.8.3=h2f23424_1 + - orc=1.9.0=h385abfd_1 - outcome=1.3.0.post0=pyhd8ed1ab_0 - overrides=7.7.0=pyhd8ed1ab_0 - owslib=0.28.1=pyhd8ed1ab_0 @@ -441,12 +438,11 @@ dependencies: - packaging=23.2=pyhd8ed1ab_0 - pamela=1.1.0=pyh1a96a4e_0 - pandas=2.1.4=py310hcc13569_0 - - pandoc=3.1.12.2=ha770c72_0 + - pandoc=3.1.12.3=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - panel=1.3.8=pyhd8ed1ab_0 - - param=2.0.2=pyhca7485f_0 + - param=2.1.0=pyhca7485f_0 - paramiko=3.4.0=pyhd8ed1ab_0 - - parquet-cpp=1.5.1=2 - parse=1.20.1=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - partd=1.4.1=pyhd8ed1ab_0 @@ -476,7 +472,8 @@ dependencies: - prompt-toolkit=3.0.42=pyha770c72_0 - prompt_toolkit=3.0.42=hd8ed1ab_0 - properscoring=0.1=py_0 - - protobuf=4.21.12=py310heca2aa9_0 + - proto-plus=1.23.0=pyhd8ed1ab_0 + - protobuf=4.23.3=py310hb875b13_0 - pscript=0.7.7=pyhd8ed1ab_0 - psutil=5.9.8=py310h2372a71_0 - pthread-stubs=0.4=h36c2ea0_1001 @@ -485,14 +482,14 @@ dependencies: - pulseaudio-client=16.1=h5195f5e_3 - pulseaudio-daemon=16.1=ha8d29e2_3 - pure_eval=0.2.2=pyhd8ed1ab_0 - - pyarrow=11.0.0=py310h633f555_14_cpu + - pyarrow=12.0.1=py310h0576679_7_cpu - pyarrow-hotfix=0.6=pyhd8ed1ab_0 - pyasn1=0.5.1=pyhd8ed1ab_0 - pyasn1-modules=0.3.0=pyhd8ed1ab_0 - pycparser=2.21=pyhd8ed1ab_0 - pyct=0.5.0=pyhd8ed1ab_0 - pycurl=7.45.1=py310h60f9ec7_3 - - pydantic=2.6.3=pyhd8ed1ab_0 + - pydantic=2.6.4=pyhd8ed1ab_0 - pydantic-core=2.16.3=py310hcb5633a_0 - pydap=3.4.0=pyhd8ed1ab_0 - pydeck=0.8.0=pyhd8ed1ab_0 @@ -520,7 +517,7 @@ dependencies: - python-pptx=0.6.23=pyhd8ed1ab_0 - python-tzdata=2024.1=pyhd8ed1ab_0 - python_abi=3.10=4_cp310 - - pytools=2023.1.1=pyhd8ed1ab_0 + - pytools=2024.1.1=pyhd8ed1ab_0 - pytz=2024.1=pyhd8ed1ab_0 - pyu2f=0.1.5=pyhd8ed1ab_0 - pyviz_comms=2.3.2=pyhd8ed1ab_0 @@ -534,11 +531,11 @@ dependencies: - raven-hydro=0.2.4=py310hee4f699_0 - ravenpy=0.13.0=py310hff52083_0 - rdma-core=50.0=hd3aeb46_1 - - re2=2023.02.02=hcb278e6_0 + - re2=2023.03.02=h8c504da_0 - readline=8.2=h8228510_1 - rechunker=0.5.2=pyhd8ed1ab_1 - - referencing=0.33.0=pyhd8ed1ab_0 - - regionmask=0.11.0=pyhd8ed1ab_0 + - referencing=0.34.0=pyhd8ed1ab_0 + - regionmask=0.12.1=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - requests-cache=1.2.0=pyhd8ed1ab_0 - requests-magpie=0.2.0=pyhd8ed1ab_0 @@ -555,8 +552,8 @@ dependencies: - rtree=1.2.0=py310hbdcdc62_0 - ruamel.yaml=0.18.6=py310h2372a71_0 - ruamel.yaml.clib=0.2.8=py310h2372a71_0 - - s2n=1.3.41=h3358134_0 - - s3fs=2024.2.0=pyhd8ed1ab_0 + - s2n=1.3.46=h06160fa_0 + - s3fs=2024.3.1=pyhd8ed1ab_0 - salib=1.4.8=pyhd8ed1ab_0 - scikit-image=0.22.0=py310hcc13569_2 - scikit-learn=1.4.1.post1=py310h1fdf081_0 @@ -580,7 +577,6 @@ dependencies: - sortedcontainers=2.4.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sparse=0.15.1=pyhd8ed1ab_1 - - spdlog=1.12.0=hd2e6256_2 - spotpy=1.6.2=pyhd8ed1ab_0 - sqlalchemy=2.0.28=py310h2372a71_0 - sqlite=3.45.2=h2c6b66d_0 @@ -590,7 +586,7 @@ dependencies: - tblib=3.0.0=pyhd8ed1ab_0 - tenacity=8.2.3=pyhd8ed1ab_0 - terminado=0.18.1=pyh0d859eb_0 - - threadpoolctl=3.3.0=pyhc1e730c_0 + - threadpoolctl=3.4.0=pyhc1e730c_0 - threddsclient=0.4.5=pyhca7485f_0 - tifffile=2023.8.12=pyhd8ed1ab_0 - tiledb=2.13.2=hd532e3d_0 @@ -603,7 +599,7 @@ dependencies: - tqdm=4.66.2=pyhd8ed1ab_0 - traitlets=5.14.2=pyhd8ed1ab_0 - traittypes=0.2.1=pyh9f0ad1d_2 - - trio=0.24.0=py310hff52083_0 + - trio=0.25.0=py310hff52083_0 - trio-websocket=0.11.1=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20240316=pyhd8ed1ab_0 - typing-extensions=4.10.0=hd8ed1ab_0 @@ -622,7 +618,7 @@ dependencies: - url-normalize=1.4.3=pyhd8ed1ab_0 - urllib3=2.0.7=pyhd8ed1ab_0 - urlpath=1.2.0=pyhd8ed1ab_0 - - validators=0.22.0=pyhd8ed1ab_0 + - validators=0.23.2=pyhd8ed1ab_0 - virtualenv=20.25.1=pyhd8ed1ab_0 - voila=0.5.5=pyhd8ed1ab_0 - watchdog=4.0.0=py310hff52083_0 @@ -634,7 +630,7 @@ dependencies: - websockets=12.0=py310h2372a71_0 - werkzeug=3.0.1=pyhd8ed1ab_0 - wget=1.20.3=ha35d2d1_1 - - wheel=0.42.0=pyhd8ed1ab_0 + - wheel=0.43.0=pyhd8ed1ab_0 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - wrapt=1.16.0=py310h2372a71_0 - wsproto=1.2.0=pyhd8ed1ab_0 From 3314f754d2f7ed1f36b48e16923409632530beac Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 23 Mar 2024 15:54:59 -0400 Subject: [PATCH 048/104] docker: py310-240323: initial jenkins default nb --- .../jenkins-buildlogs-default.txt | 2808 +++++++---------- 1 file changed, 1095 insertions(+), 1713 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index 1ca63d2..cd7bf57 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -17,7 +17,7 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d +Obtained Jenkinsfile from 4776dee0ea8bcfb081d08df0ba3ac0198b5703c9 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -29,1721 +29,1102 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags +Checking out Revision 4776dee0ea8bcfb081d08df0ba3ac0198b5703c9 (new-docker-build) +Commit message: "docker: py310-240323: conda env" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d (new-docker-build) -Commit message: "release: update to use image pavics/workflow-tests:py310-240316" > git config core.sparsecheckout # timeout=10 - > git checkout -f 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d # timeout=10 - > git rev-list --no-walk 5f932b4162c0d3b5cc340bde2d90f8ee37e5c56f # timeout=10 + > git checkout -f 4776dee0ea8bcfb081d08df0ba3ac0198b5703c9 # timeout=10 + > git rev-list --no-walk 4776dee0ea8bcfb081d08df0ba3ac0198b5703c9 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240316 - -Error: No such object: pavics/workflow-tests:py310-240316 -[Pipeline] isUnix -[Pipeline] sh -+ docker pull pavics/workflow-tests:py310-240316 -py310-240316: Pulling from pavics/workflow-tests -5d0aeceef7ee: Already exists -c3d69dcd5caa: Already exists -0bacf10028c5: Already exists -fdb612a3ab15: Pulling fs layer -a8e12b2a3dd1: Pulling fs layer -b57a345c42b1: Pulling fs layer -d8fec0096d40: Pulling fs layer -cc3fd5b45f7f: Pulling fs layer -635650bebf1e: Pulling fs layer -ea86c19a87f1: Pulling fs layer -3a2ffbd0ebd5: Pulling fs layer -5e5c12753eb3: Pulling fs layer -d8fec0096d40: Waiting -cc3fd5b45f7f: Waiting -635650bebf1e: Waiting -ea86c19a87f1: Waiting -3a2ffbd0ebd5: Waiting -5e5c12753eb3: Waiting -fdb612a3ab15: Verifying Checksum -fdb612a3ab15: Download complete -d8fec0096d40: Verifying Checksum -d8fec0096d40: Download complete -fdb612a3ab15: Pull complete -b57a345c42b1: Verifying Checksum -b57a345c42b1: Download complete -635650bebf1e: Verifying Checksum -635650bebf1e: Download complete -ea86c19a87f1: Verifying Checksum -ea86c19a87f1: Download complete -3a2ffbd0ebd5: Verifying Checksum -3a2ffbd0ebd5: Download complete -a8e12b2a3dd1: Verifying Checksum -a8e12b2a3dd1: Download complete -a8e12b2a3dd1: Pull complete -5e5c12753eb3: Verifying Checksum -5e5c12753eb3: Download complete -b57a345c42b1: Pull complete -d8fec0096d40: Pull complete -cc3fd5b45f7f: Download complete -cc3fd5b45f7f: Pull complete -635650bebf1e: Pull complete -ea86c19a87f1: Pull complete -3a2ffbd0ebd5: Pull complete -5e5c12753eb3: Pull complete -Digest: sha256:3528bfebfe44edfc1598dcfc48e4f8e2558bc104df06bbdac60cef9eb3d57ee0 -Status: Downloaded newer image for pavics/workflow-tests:py310-240316 ++ docker inspect -f . pavics/workflow-tests:py310-240323 +. [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240316 cat -$ docker top 983d2dda09c5e58f84e165072cad4fd912e034462e027a43442d196da0ca8c47 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240323 cat +$ docker top 243fa8c5fdb17a3f19bb778abbabe55b4c4558e10481f75293ba2f6b4aedab03 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-16T18:04:18.764Z] Timeout set to expire in 2 hr 0 min +[2024-03-23T19:24:02.241Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-16T18:04:19.976Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-03-23T19:24:02.351Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-16T18:04:20.263Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-16T18:04:20.263Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-16T18:04:20.263Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-03-16T18:04:20.263Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-16T18:04:20.263Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-16T18:04:20.263Z] FINCH_BRANCH has been set to 'master' -[2024-03-16T18:04:20.263Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-16T18:04:20.263Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-16T18:04:20.263Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-03-16T18:04:20.263Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-16T18:04:20.263Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-16T18:04:20.263Z] RAVEN_BRANCH has been set to 'main' -[2024-03-16T18:04:20.263Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-16T18:04:20.263Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-16T18:04:20.263Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-16T18:04:20.263Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-16T18:04:20.263Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-16T18:04:20.263Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-16T18:04:20.263Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-16T18:04:20.263Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-16T18:04:20.263Z] + git clean -fdx -[2024-03-16T18:04:20.263Z] Removing .pytest_cache/ -[2024-03-16T18:04:20.263Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha/ -[2024-03-16T18:04:20.263Z] Removing RavenPy-master/ -[2024-03-16T18:04:20.263Z] Removing __pycache__/ -[2024-03-16T18:04:20.263Z] Removing buildout/ -[2024-03-16T18:04:20.263Z] Removing esgf-compute-api-devel/ -[2024-03-16T18:04:20.263Z] Removing finch-master/ -[2024-03-16T18:04:20.263Z] Removing pavics-sdi-fix_nbs_jupyter_alpha/ -[2024-03-16T18:04:20.263Z] Removing raven-main/ -[2024-03-16T18:04:20.263Z] + ./downloadrepos -[2024-03-16T18:04:20.263Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-16T18:04:20.263Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-03-16T18:04:20.263Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-16T18:04:20.263Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-16T18:04:20.263Z] FINCH_BRANCH has been set to 'master' -[2024-03-16T18:04:20.263Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-16T18:04:20.263Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-16T18:04:20.264Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-03-16T18:04:20.264Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-16T18:04:20.264Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-16T18:04:20.264Z] RAVEN_BRANCH has been set to 'main' -[2024-03-16T18:04:20.264Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-16T18:04:20.264Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-16T18:04:20.264Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-16T18:04:20.264Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-16T18:04:20.264Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-16T18:04:20.264Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-16T18:04:20.264Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-16T18:04:20.264Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-16T18:04:20.264Z] + rm -rf pavics-sdi-* -[2024-03-16T18:04:20.264Z] + ls -[2024-03-16T18:04:20.264Z] + grep pavics-sdi -[2024-03-16T18:04:20.520Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha -[2024-03-16T18:04:20.520Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-16T18:04:20.520Z] + shift -[2024-03-16T18:04:20.520Z] + branch=fix_nbs_jupyter_alpha -[2024-03-16T18:04:20.520Z] + shift -[2024-03-16T18:04:20.520Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha.tar.gz -[2024-03-16T18:04:20.520Z] + tar xz -[2024-03-16T18:05:41.919Z] + ls -[2024-03-16T18:05:41.919Z] + grep pavics-sdi -[2024-03-16T18:05:41.919Z] pavics-sdi-fix_nbs_jupyter_alpha -[2024-03-16T18:05:41.919Z] + set +x -[2024-03-16T18:05:41.919Z] + rm -rf finch-* -[2024-03-16T18:05:41.919Z] + ls -[2024-03-16T18:05:41.919Z] + grep finch -[2024-03-16T18:05:41.920Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-16T18:05:41.920Z] + github_repo=https://github.com/bird-house/finch -[2024-03-16T18:05:41.920Z] + shift -[2024-03-16T18:05:41.920Z] + branch=master -[2024-03-16T18:05:41.920Z] + shift -[2024-03-16T18:05:41.920Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-03-16T18:05:41.920Z] + tar xz -[2024-03-16T18:05:47.185Z] + ls -[2024-03-16T18:05:47.186Z] + grep finch -[2024-03-16T18:05:47.186Z] finch-master -[2024-03-16T18:05:47.186Z] + set +x -[2024-03-16T18:05:47.186Z] + rm -rf PAVICS-landing-* -[2024-03-16T18:05:47.186Z] + ls -[2024-03-16T18:05:47.186Z] + grep PAVICS-landing -[2024-03-16T18:05:47.186Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha -[2024-03-16T18:05:47.186Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-16T18:05:47.186Z] + shift -[2024-03-16T18:05:47.186Z] + branch=fix_nbs_jupyter_alpha -[2024-03-16T18:05:47.186Z] + shift -[2024-03-16T18:05:47.186Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha.tar.gz -[2024-03-16T18:05:47.186Z] + tar xz -[2024-03-16T18:12:08.872Z] + grep PAVICS-landing -[2024-03-16T18:12:08.872Z] + ls -[2024-03-16T18:12:08.872Z] PAVICS-landing-fix_nbs_jupyter_alpha -[2024-03-16T18:12:08.872Z] + set +x -[2024-03-16T18:12:08.872Z] + rm -rf raven-* -[2024-03-16T18:12:08.872Z] + ls -[2024-03-16T18:12:08.872Z] + grep raven -[2024-03-16T18:12:08.872Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-16T18:12:08.872Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-16T18:12:08.872Z] + shift -[2024-03-16T18:12:08.872Z] + branch=main -[2024-03-16T18:12:08.872Z] + shift -[2024-03-16T18:12:08.872Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-16T18:12:08.872Z] + tar xz -[2024-03-16T18:12:13.058Z] + + ls -[2024-03-16T18:12:13.058Z] grep raven -[2024-03-16T18:12:13.058Z] raven-main -[2024-03-16T18:12:13.058Z] + set +x -[2024-03-16T18:12:13.058Z] + rm -rf RavenPy-* -[2024-03-16T18:12:13.058Z] + ls -[2024-03-16T18:12:13.058Z] + grep RavenPy -[2024-03-16T18:12:13.058Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-16T18:12:13.058Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-16T18:12:13.058Z] + shift -[2024-03-16T18:12:13.058Z] + branch=master -[2024-03-16T18:12:13.058Z] + shift -[2024-03-16T18:12:13.058Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-16T18:12:13.058Z] + tar xz -[2024-03-16T18:12:51.797Z] + grep RavenPy -[2024-03-16T18:12:51.797Z] + ls -[2024-03-16T18:12:51.797Z] RavenPy-master -[2024-03-16T18:12:51.797Z] + set +x -[2024-03-16T18:12:51.797Z] + rm -rf esgf-compute-api-* -[2024-03-16T18:12:51.797Z] + ls -[2024-03-16T18:12:51.797Z] + grep esgf-compute-api -[2024-03-16T18:12:51.797Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-16T18:12:51.797Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-16T18:12:51.797Z] + shift -[2024-03-16T18:12:51.797Z] + branch=devel -[2024-03-16T18:12:51.797Z] + shift -[2024-03-16T18:12:51.797Z] + wget+ --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-03-16T18:12:51.797Z] tar xz -[2024-03-16T18:12:51.797Z] + grep esgf-compute-api -[2024-03-16T18:12:51.797Z] + ls -[2024-03-16T18:12:51.797Z] esgf-compute-api-devel -[2024-03-16T18:12:51.797Z] + set +x -[2024-03-16T18:12:51.797Z] + echo fix_nbs_jupyter_alpha -[2024-03-16T18:12:51.797Z] + sed s@/@-@g -[2024-03-16T18:12:51.797Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha -[2024-03-16T18:12:51.797Z] + echo Ouranosinc/pavics-sdi -[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g -[2024-03-16T18:12:51.797Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-16T18:12:51.797Z] + echo master -[2024-03-16T18:12:51.797Z] + sed s@/@-@g -[2024-03-16T18:12:51.797Z] + FINCH_BRANCH=master -[2024-03-16T18:12:51.797Z] + echo bird-house/finch -[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g -[2024-03-16T18:12:51.797Z] + FINCH_REPO_NAME=finch -[2024-03-16T18:12:51.797Z] + sed s@/@-@g -[2024-03-16T18:12:51.797Z] + echo fix_nbs_jupyter_alpha -[2024-03-16T18:12:51.797Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha -[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g -[2024-03-16T18:12:51.797Z] + echo Ouranosinc/PAVICS-landing -[2024-03-16T18:12:51.797Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-16T18:12:51.797Z] + sed s@/@-@g+ -[2024-03-16T18:12:51.797Z] echo main -[2024-03-16T18:12:51.797Z] + RAVEN_BRANCH=main -[2024-03-16T18:12:51.797Z] + + sed s@^.*/@@g -[2024-03-16T18:12:51.797Z] echo Ouranosinc/raven -[2024-03-16T18:12:51.797Z] + RAVEN_REPO_NAME=raven -[2024-03-16T18:12:51.797Z] + + sed s@/@-@g -[2024-03-16T18:12:51.797Z] echo master -[2024-03-16T18:12:51.797Z] + RAVENPY_BRANCH=master -[2024-03-16T18:12:51.797Z] + echo CSHS-CWRA/RavenPy -[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g -[2024-03-16T18:12:51.797Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-16T18:12:51.797Z] + echo devel -[2024-03-16T18:12:51.797Z] + sed s@/@-@g -[2024-03-16T18:12:51.797Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-16T18:12:51.797Z] + echo ESGF/esgf-compute-api -[2024-03-16T18:12:51.797Z] + sed s@^.*/@@g -[2024-03-16T18:12:51.797Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-16T18:12:51.797Z] + echo pavics-sdi-fix_nbs_jupyter_alpha -[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:12:51.797Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha -[2024-03-16T18:12:51.797Z] + echo finch-master -[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:12:51.797Z] + FINCH_DIR=finch-master -[2024-03-16T18:12:51.797Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha -[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:12:51.797Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha -[2024-03-16T18:12:51.797Z] + echo raven-main -[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:12:51.797Z] + RAVEN_DIR=raven-main -[2024-03-16T18:12:51.797Z] + echo RavenPy-master -[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:12:51.797Z] + RAVENPY_DIR=RavenPy-master -[2024-03-16T18:12:51.797Z] + echo esgf-compute-api-devel -[2024-03-16T18:12:51.797Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:12:51.798Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-16T18:12:51.798Z] + echo true -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + VERIFY_SSL=true -[2024-03-16T18:12:51.798Z] + [ xtrue = xfalse ] -[2024-03-16T18:12:51.798Z] + rm -v finch-master/setup.cfg -[2024-03-16T18:12:51.798Z] removed 'finch-master/setup.cfg' -[2024-03-16T18:12:51.798Z] + rm -v raven-main/setup.cfg -[2024-03-16T18:12:51.798Z] removed 'raven-main/setup.cfg' -[2024-03-16T18:12:51.798Z] + rm -v raven-main/pyproject.toml -[2024-03-16T18:12:51.798Z] removed 'raven-main/pyproject.toml' -[2024-03-16T18:12:51.798Z] + rm -v RavenPy-master/setup.cfg -[2024-03-16T18:12:51.798Z] removed 'RavenPy-master/setup.cfg' -[2024-03-16T18:12:51.798Z] + rm -v RavenPy-master/tox.ini -[2024-03-16T18:12:51.798Z] removed 'RavenPy-master/tox.ini' -[2024-03-16T18:12:51.798Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-16T18:12:51.798Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-16T18:12:51.798Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-16T18:12:51.798Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-16T18:12:51.798Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-16T18:12:51.798Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-16T18:12:51.798Z] + echo false -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + TEST_MAGPIE_AUTH=false -[2024-03-16T18:12:51.798Z] + echo true -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + TEST_PAVICS_SDI_REPO=true -[2024-03-16T18:12:51.798Z] + echo false -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-16T18:12:51.798Z] + echo true -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + TEST_FINCH_REPO=true -[2024-03-16T18:12:51.798Z] + echo true -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + TEST_PAVICS_LANDING_REPO=true -[2024-03-16T18:12:51.798Z] + echo false -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + TEST_RAVEN_REPO=false -[2024-03-16T18:12:51.798Z] + echo false -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + TEST_RAVENPY_REPO=false -[2024-03-16T18:12:51.798Z] + echo false -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-16T18:12:51.798Z] + echo true -[2024-03-16T18:12:51.798Z] + tr [:upper:] [:lower:] -[2024-03-16T18:12:51.798Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-03-16T18:12:51.798Z] + NOTEBOOKS_TO_TEST= -[2024-03-16T18:12:51.798Z] + [ xfalse = xtrue ] -[2024-03-16T18:12:51.798Z] + [ xtrue = xtrue ] -[2024-03-16T18:12:51.798Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb -[2024-03-16T18:12:51.798Z] + [ xfalse = xtrue ] -[2024-03-16T18:12:51.798Z] + [ xtrue = xtrue ] -[2024-03-16T18:12:51.798Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-03-16T18:12:51.798Z] + [ xtrue = xtrue ] -[2024-03-16T18:12:51.798Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb -[2024-03-16T18:12:51.798Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-16T18:12:51.798Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-03-16T18:12:51.798Z] + PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-16T18:12:51.798Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-16T18:12:51.798Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-16T18:12:51.798Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-16T18:12:51.798Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators -[2024-03-16T18:12:51.798Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-16T18:12:51.798Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-16T18:12:51.798Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-03-16T18:12:51.798Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.798Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.799Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.800Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-16T18:12:51.801Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-03-16T18:12:51.801Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-03-16T18:12:51.801Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-03-16T18:12:51.801Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data' -[2024-03-16T18:12:51.801Z] + [ xfalse = xtrue ] -[2024-03-16T18:12:51.801Z] + [ xfalse = xtrue ] -[2024-03-16T18:12:51.801Z] + [ xfalse = xtrue ] -[2024-03-16T18:12:51.801Z] + [ xtrue = xtrue ] -[2024-03-16T18:12:51.801Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-16T18:12:51.801Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-16T18:12:51.801Z] + [ -n ] -[2024-03-16T18:12:51.801Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-16T18:12:51.801Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-16T18:12:51.801Z] Will run notebooks against pavics.ouranos.ca -[2024-03-16T18:12:51.801Z] + [ -z ] -[2024-03-16T18:12:51.801Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-03-16T18:12:51.801Z] + git diff -[2024-03-16T18:12:51.801Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-16T18:12:51.802Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-03-16T18:12:51.802Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-16T18:12:51.802Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-16T18:12:52.145Z] ============================= test session starts ============================== -[2024-03-16T18:12:52.145Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-03-16T18:12:52.145Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-03-16T18:12:52.145Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-03-16T18:12:52.145Z] collected 214 items -[2024-03-16T18:12:52.145Z] -[2024-03-16T18:12:54.056Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb . [ 0%] -[2024-03-16T18:13:15.449Z] ...... [ 3%] -[2024-03-16T18:13:16.837Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb . [ 3%] -[2024-03-16T18:13:23.244Z] ..... [ 6%] -[2024-03-16T18:13:23.812Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb . [ 6%] -[2024-03-16T18:13:56.803Z] FFFFFFF [ 9%] -[2024-03-16T18:14:10.286Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb .... [ 11%] -[2024-03-16T18:17:43.309Z] .F..F... [ 15%] -[2024-03-16T18:17:43.310Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 15%] -[2024-03-16T18:17:47.493Z] ............... [ 22%] -[2024-03-16T18:17:51.692Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 23%] -[2024-03-16T18:17:56.400Z] .... [ 25%] -[2024-03-16T18:17:58.319Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb .. [ 26%] -[2024-03-16T18:18:03.563Z] .... [ 28%] -[2024-03-16T18:18:11.698Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb . [ 28%] -[2024-03-16T18:18:18.916Z] ..... [ 30%] -[2024-03-16T18:19:58.670Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb ... [ 32%] -[2024-03-16T18:20:37.401Z] .... [ 34%] -[2024-03-16T18:20:37.401Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb . [ 34%] -[2024-03-16T18:20:40.789Z] .... [ 36%] -[2024-03-16T18:20:58.920Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb . [ 36%] -[2024-03-16T18:22:28.626Z] ...F.FF............F......F [ 49%] -[2024-03-16T18:22:29.195Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb . [ 50%] -[2024-03-16T18:22:31.374Z] ... [ 51%] -[2024-03-16T18:22:32.757Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb . [ 51%] -[2024-03-16T18:22:52.144Z] .............F.......... [ 63%] -[2024-03-16T18:22:55.424Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb . [ 63%] -[2024-03-16T18:22:59.870Z] ..... [ 65%] -[2024-03-16T18:23:09.667Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] -[2024-03-16T18:23:18.585Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 73%] -[2024-03-16T18:23:19.948Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 74%] -[2024-03-16T18:23:23.236Z] ...... [ 77%] -[2024-03-16T18:23:45.205Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb F [ 77%] -[2024-03-16T18:24:03.055Z] F.F.......... [ 83%] -[2024-03-16T18:24:11.142Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-03-16T18:24:50.086Z] .F..s [ 86%] -[2024-03-16T18:24:56.624Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 86%] -[2024-03-16T18:25:07.976Z] .F. [ 88%] -[2024-03-16T18:25:20.138Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 88%] -[2024-03-16T18:26:09.331Z] ...... [ 91%] -[2024-03-16T18:26:09.589Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-03-16T18:28:54.924Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] =================================== FAILURES =================================== -[2024-03-16T18:28:54.924Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 1 _ -[2024-03-16T18:28:54.924Z] Notebook cell execution failed -[2024-03-16T18:28:54.924Z] Cell 1: Cell execution caused an exception -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] Input: -[2024-03-16T18:28:54.924Z] wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") -[2024-03-16T18:28:54.924Z] print("Title: ", wms.identification.title) -[2024-03-16T18:28:54.924Z] print("Type: ", wms.identification.type) -[2024-03-16T18:28:54.924Z] print("Operations: ", [op.name for op in wms.operations]) -[2024-03-16T18:28:54.924Z] print("GetMap options: ", wms.getOperationByName("GetMap").formatOptions) -[2024-03-16T18:28:54.924Z] wms.contents.keys() -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] Traceback: -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] --------------------------------------------------------------------------- -[2024-03-16T18:28:54.924Z] TimeoutError Traceback (most recent call last) -[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:537, in HTTPConnectionPool._make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length) -[2024-03-16T18:28:54.924Z]  536 try: -[2024-03-16T18:28:54.924Z] --> 537 response = conn.getresponse() -[2024-03-16T18:28:54.924Z]  538 except (BaseSSLError, OSError) as e: -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connection.py:461, in HTTPConnection.getresponse(self) -[2024-03-16T18:28:54.924Z]  460 # Get the response from http.client.HTTPConnection -[2024-03-16T18:28:54.924Z] --> 461 httplib_response = super().getresponse() -[2024-03-16T18:28:54.924Z]  463 try: -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/http/client.py:1375, in HTTPConnection.getresponse(self) -[2024-03-16T18:28:54.924Z]  1374 try: -[2024-03-16T18:28:54.924Z] -> 1375 response.begin() -[2024-03-16T18:28:54.924Z]  1376 except ConnectionError: -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/http/client.py:318, in HTTPResponse.begin(self) -[2024-03-16T18:28:54.924Z]  317 while True: -[2024-03-16T18:28:54.924Z] --> 318 version, status, reason = self._read_status() -[2024-03-16T18:28:54.924Z]  319 if status != CONTINUE: -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/http/client.py:279, in HTTPResponse._read_status(self) -[2024-03-16T18:28:54.924Z]  278 def _read_status(self): -[2024-03-16T18:28:54.924Z] --> 279 line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") -[2024-03-16T18:28:54.924Z]  280 if len(line) > _MAXLINE: -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/socket.py:705, in SocketIO.readinto(self, b) -[2024-03-16T18:28:54.924Z]  704 try: -[2024-03-16T18:28:54.924Z] --> 705 return self._sock.recv_into(b) -[2024-03-16T18:28:54.924Z]  706 except timeout: -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.924Z] File /opt/conda/envs/birdy/lib/python3.10/ssl.py:1307, in SSLSocket.recv_into(self, buffer, nbytes, flags) -[2024-03-16T18:28:54.924Z]  1304 raise ValueError( -[2024-03-16T18:28:54.924Z]  1305 "non-zero flags not allowed in calls to recv_into() on %s" % -[2024-03-16T18:28:54.924Z]  1306 self.__class__) -[2024-03-16T18:28:54.924Z] -> 1307 return self.read(nbytes, buffer) -[2024-03-16T18:28:54.924Z]  1308 else: -[2024-03-16T18:28:54.924Z] -[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/ssl.py:1163, in SSLSocket.read(self, len, buffer) -[2024-03-16T18:28:54.925Z]  1162 if buffer is not None: -[2024-03-16T18:28:54.925Z] -> 1163 return self._sslobj.read(len, buffer) -[2024-03-16T18:28:54.925Z]  1164 else: -[2024-03-16T18:28:54.925Z] -[2024-03-16T18:28:54.925Z] TimeoutError: The read operation timed out -[2024-03-16T18:28:54.925Z] -[2024-03-16T18:28:54.925Z] The above exception was the direct cause of the following exception: -[2024-03-16T18:28:54.925Z] -[2024-03-16T18:28:54.925Z] ReadTimeoutError Traceback (most recent call last) -[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/adapters.py:486, in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies) -[2024-03-16T18:28:54.925Z]  485 try: -[2024-03-16T18:28:54.925Z] --> 486 resp = conn.urlopen( -[2024-03-16T18:28:54.925Z]  487  method=request.method, -[2024-03-16T18:28:54.925Z]  488  url=url, -[2024-03-16T18:28:54.925Z]  489  body=request.body, -[2024-03-16T18:28:54.925Z]  490  headers=request.headers, -[2024-03-16T18:28:54.925Z]  491  redirect=False, -[2024-03-16T18:28:54.925Z]  492  assert_same_host=False, -[2024-03-16T18:28:54.925Z]  493  preload_content=False, -[2024-03-16T18:28:54.925Z]  494  decode_content=False, -[2024-03-16T18:28:54.925Z]  495  retries=self.max_retries, -[2024-03-16T18:28:54.925Z]  496  timeout=timeout, -[2024-03-16T18:28:54.925Z]  497  chunked=chunked, -[2024-03-16T18:28:54.925Z]  498  ) -[2024-03-16T18:28:54.925Z]  500 except (ProtocolError, OSError) as err: -[2024-03-16T18:28:54.925Z] -[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:845, in HTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw) -[2024-03-16T18:28:54.925Z]  843 new_e = ProtocolError("Connection aborted.", new_e) -[2024-03-16T18:28:54.925Z] --> 845 retries = retries.increment( -[2024-03-16T18:28:54.925Z]  846  method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2] -[2024-03-16T18:28:54.925Z]  847 ) -[2024-03-16T18:28:54.925Z]  848 retries.sleep() -[2024-03-16T18:28:54.925Z] -[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/util/retry.py:470, in Retry.increment(self, method, url, response, error, _pool, _stacktrace) -[2024-03-16T18:28:54.925Z]  469 if read is False or method is None or not self._is_method_retryable(method): -[2024-03-16T18:28:54.925Z] --> 470 raise reraise(type(error), error, _stacktrace) -[2024-03-16T18:28:54.925Z]  471 elif read is not None: -[2024-03-16T18:28:54.925Z] -[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/util/util.py:39, in reraise(tp, value, tb) -[2024-03-16T18:28:54.925Z]  38 raise value.with_traceback(tb) -[2024-03-16T18:28:54.925Z] ---> 39 raise value -[2024-03-16T18:28:54.925Z]  40 finally: -[2024-03-16T18:28:54.925Z] -[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:791, in HTTPConnectionPool.urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw) -[2024-03-16T18:28:54.925Z]  790 # Make the request on the HTTPConnection object -[2024-03-16T18:28:54.925Z] --> 791 response = self._make_request( -[2024-03-16T18:28:54.925Z]  792  conn, -[2024-03-16T18:28:54.925Z]  793  method, -[2024-03-16T18:28:54.925Z]  794  url, -[2024-03-16T18:28:54.925Z]  795  timeout=timeout_obj, -[2024-03-16T18:28:54.925Z]  796  body=body, -[2024-03-16T18:28:54.925Z]  797  headers=headers, -[2024-03-16T18:28:54.925Z]  798  chunked=chunked, -[2024-03-16T18:28:54.925Z]  799  retries=retries, -[2024-03-16T18:28:54.925Z]  800  response_conn=response_conn, -[2024-03-16T18:28:54.925Z]  801  preload_content=preload_content, -[2024-03-16T18:28:54.925Z]  802  decode_content=decode_content, -[2024-03-16T18:28:54.925Z]  803  **response_kw, -[2024-03-16T18:28:54.925Z]  804 ) -[2024-03-16T18:28:54.925Z]  806 # Everything went great! -[2024-03-16T18:28:54.925Z] -[2024-03-16T18:28:54.925Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:539, in HTTPConnectionPool._make_request(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length) -[2024-03-16T18:28:54.925Z]  538 except (BaseSSLError, OSError) as e: -[2024-03-16T18:28:54.926Z] --> 539 self._raise_timeout(err=e, url=url, timeout_value=read_timeout) -[2024-03-16T18:28:54.926Z]  540 raise -[2024-03-16T18:28:54.926Z] -[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/urllib3/connectionpool.py:371, in HTTPConnectionPool._raise_timeout(self, err, url, timeout_value) -[2024-03-16T18:28:54.926Z]  370 if isinstance(err, SocketTimeout): -[2024-03-16T18:28:54.926Z] --> 371 raise ReadTimeoutError( -[2024-03-16T18:28:54.926Z]  372 self, url, f"Read timed out. (read timeout={timeout_value})" -[2024-03-16T18:28:54.926Z]  373 ) from err -[2024-03-16T18:28:54.926Z]  375 # See the above comment about EAGAIN in Python 3. -[2024-03-16T18:28:54.926Z] -[2024-03-16T18:28:54.926Z] ReadTimeoutError: HTTPSConnectionPool(host='neo.gsfc.nasa.gov', port=443): Read timed out. (read timeout=30) -[2024-03-16T18:28:54.926Z] -[2024-03-16T18:28:54.926Z] During handling of the above exception, another exception occurred: -[2024-03-16T18:28:54.926Z] -[2024-03-16T18:28:54.926Z] ReadTimeout Traceback (most recent call last) -[2024-03-16T18:28:54.926Z] Cell In[1], line 1 -[2024-03-16T18:28:54.926Z] ----> 1 wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") -[2024-03-16T18:28:54.926Z]  2 print("Title: ", wms.identification.title) -[2024-03-16T18:28:54.926Z]  3 print("Type: ", wms.identification.type) -[2024-03-16T18:28:54.926Z] -[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/wms.py:50, in WebMapService(url, version, xml, username, password, parse_remote_metadata, timeout, headers, auth) -[2024-03-16T18:28:54.926Z]  47 clean_url = clean_ows_url(url) -[2024-03-16T18:28:54.926Z]  49 if version in ['1.1.1']: -[2024-03-16T18:28:54.926Z] ---> 50 return wms111.WebMapService_1_1_1( -[2024-03-16T18:28:54.926Z]  51  clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, -[2024-03-16T18:28:54.926Z]  52  timeout=timeout, headers=headers, auth=auth) -[2024-03-16T18:28:54.926Z]  53 elif version in ['1.3.0']: -[2024-03-16T18:28:54.926Z]  54 return wms130.WebMapService_1_3_0( -[2024-03-16T18:28:54.926Z]  55 clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, -[2024-03-16T18:28:54.926Z]  56 timeout=timeout, headers=headers, auth=auth) -[2024-03-16T18:28:54.926Z] -[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/wms111.py:75, in WebMapService_1_1_1.__init__(self, url, version, xml, username, password, parse_remote_metadata, headers, timeout, auth) -[2024-03-16T18:28:54.926Z]  73 self._capabilities = reader.readString(xml) -[2024-03-16T18:28:54.926Z]  74 else: # read from server -[2024-03-16T18:28:54.926Z] ---> 75 self._capabilities = reader.read(self.url, timeout=self.timeout) -[2024-03-16T18:28:54.926Z]  77 self.request = reader.request -[2024-03-16T18:28:54.926Z]  79 # avoid building capabilities metadata if the -[2024-03-16T18:28:54.926Z]  80 # response is a ServiceExceptionReport -[2024-03-16T18:28:54.926Z] -[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/common.py:65, in WMSCapabilitiesReader.read(self, service_url, timeout) -[2024-03-16T18:28:54.926Z]  63 # now split it up again to use the generic openURL function... -[2024-03-16T18:28:54.926Z]  64 spliturl = self.request.split('?') -[2024-03-16T18:28:54.926Z] ---> 65 u = openURL(spliturl[0], spliturl[1], method='Get', -[2024-03-16T18:28:54.926Z]  66  timeout=timeout, headers=self.headers, auth=self.auth) -[2024-03-16T18:28:54.926Z]  68 raw_text = strip_bom(u.read()) -[2024-03-16T18:28:54.926Z]  69 return etree.fromstring(raw_text) -[2024-03-16T18:28:54.926Z] -[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/util.py:208, in openURL(url_base, data, method, cookies, username, password, timeout, headers, verify, cert, auth) -[2024-03-16T18:28:54.926Z]  205 if cookies is not None: -[2024-03-16T18:28:54.926Z]  206 rkwargs['cookies'] = cookies -[2024-03-16T18:28:54.926Z] --> 208 req = requests.request(method.upper(), url_base, headers=headers, **rkwargs) -[2024-03-16T18:28:54.926Z]  210 if req.status_code in [400, 401]: -[2024-03-16T18:28:54.926Z]  211 raise ServiceException(req.text) -[2024-03-16T18:28:54.926Z] -[2024-03-16T18:28:54.926Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/api.py:59, in request(method, url, **kwargs) -[2024-03-16T18:28:54.926Z]  55 # By using the 'with' statement we are sure the session is closed, thus we -[2024-03-16T18:28:54.927Z]  56 # avoid leaving sockets open which can trigger a ResourceWarning in some -[2024-03-16T18:28:54.927Z]  57 # cases, and look like a memory leak in others. -[2024-03-16T18:28:54.927Z]  58 with sessions.Session() as session: -[2024-03-16T18:28:54.927Z] ---> 59 return session.request(method=method, url=url, **kwargs) -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/sessions.py:589, in Session.request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json) -[2024-03-16T18:28:54.927Z]  584 send_kwargs = { -[2024-03-16T18:28:54.927Z]  585 "timeout": timeout, -[2024-03-16T18:28:54.927Z]  586 "allow_redirects": allow_redirects, -[2024-03-16T18:28:54.927Z]  587 } -[2024-03-16T18:28:54.927Z]  588 send_kwargs.update(settings) -[2024-03-16T18:28:54.927Z] --> 589 resp = self.send(prep, **send_kwargs) -[2024-03-16T18:28:54.927Z]  591 return resp -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/sessions.py:703, in Session.send(self, request, **kwargs) -[2024-03-16T18:28:54.927Z]  700 start = preferred_clock() -[2024-03-16T18:28:54.927Z]  702 # Send the request -[2024-03-16T18:28:54.927Z] --> 703 r = adapter.send(request, **kwargs) -[2024-03-16T18:28:54.927Z]  705 # Total elapsed time of the request (approximately) -[2024-03-16T18:28:54.927Z]  706 elapsed = preferred_clock() - start -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/requests/adapters.py:532, in HTTPAdapter.send(self, request, stream, timeout, verify, cert, proxies) -[2024-03-16T18:28:54.927Z]  530 raise SSLError(e, request=request) -[2024-03-16T18:28:54.927Z]  531 elif isinstance(e, ReadTimeoutError): -[2024-03-16T18:28:54.927Z] --> 532 raise ReadTimeout(e, request=request) -[2024-03-16T18:28:54.927Z]  533 elif isinstance(e, _InvalidHeader): -[2024-03-16T18:28:54.927Z]  534 raise InvalidHeader(e, request=request) -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] ReadTimeout: HTTPSConnectionPool(host='neo.gsfc.nasa.gov', port=443): Read timed out. (read timeout=30) -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 2 _ -[2024-03-16T18:28:54.927Z] Notebook cell execution failed -[2024-03-16T18:28:54.927Z] Cell 2: Cell execution caused an exception -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] Input: -[2024-03-16T18:28:54.927Z] for key in [ -[2024-03-16T18:28:54.927Z] "MOD14A1_M_FIRE", -[2024-03-16T18:28:54.927Z] "CERES_LWFLUX_M", -[2024-03-16T18:28:54.927Z] "ICESAT_ELEV_G", -[2024-03-16T18:28:54.927Z] "MODAL2_M_CLD_WP", -[2024-03-16T18:28:54.927Z] "MOD_143D_RR", -[2024-03-16T18:28:54.927Z] ]: -[2024-03-16T18:28:54.927Z] print(wms.contents[key].title) -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] Traceback: -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] --------------------------------------------------------------------------- -[2024-03-16T18:28:54.927Z] NameError Traceback (most recent call last) -[2024-03-16T18:28:54.927Z] Cell In[1], line 8 -[2024-03-16T18:28:54.927Z]  1 for key in [ -[2024-03-16T18:28:54.927Z]  2 "MOD14A1_M_FIRE", -[2024-03-16T18:28:54.927Z]  3 "CERES_LWFLUX_M", -[2024-03-16T18:28:54.927Z]  (...) -[2024-03-16T18:28:54.927Z]  6 "MOD_143D_RR", -[2024-03-16T18:28:54.927Z]  7 ]: -[2024-03-16T18:28:54.927Z] ----> 8 print(wms.contents[key].title) -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] NameError: name 'wms' is not defined -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 3 _ -[2024-03-16T18:28:54.927Z] Notebook cell execution failed -[2024-03-16T18:28:54.927Z] Cell 3: Cell execution caused an exception -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] Input: -[2024-03-16T18:28:54.927Z] # NBVAL_IGNORE_OUTPUT -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] from IPython.core.display import HTML -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] name = "MOD_143D_RR" -[2024-03-16T18:28:54.927Z] layer = wms.contents[name] -[2024-03-16T18:28:54.927Z] print("Abstract: ", layer.abstract) -[2024-03-16T18:28:54.927Z] print("BBox: ", layer.boundingBoxWGS84) -[2024-03-16T18:28:54.927Z] print("CRS: ", layer.crsOptions) -[2024-03-16T18:28:54.927Z] print("Styles: ", layer.styles) -[2024-03-16T18:28:54.927Z] print("Timestamps: ", layer.timepositions) -[2024-03-16T18:28:54.927Z] HTML(layer.parent.abstract) -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] Traceback: -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] --------------------------------------------------------------------------- -[2024-03-16T18:28:54.927Z] NameError Traceback (most recent call last) -[2024-03-16T18:28:54.927Z] Cell In[1], line 6 -[2024-03-16T18:28:54.927Z]  3 from IPython.core.display import HTML -[2024-03-16T18:28:54.927Z]  5 name = "MOD_143D_RR" -[2024-03-16T18:28:54.927Z] ----> 6 layer = wms.contents[name] -[2024-03-16T18:28:54.927Z]  7 print("Abstract: ", layer.abstract) -[2024-03-16T18:28:54.927Z]  8 print("BBox: ", layer.boundingBoxWGS84) -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] NameError: name 'wms' is not defined -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 4 _ -[2024-03-16T18:28:54.927Z] Notebook cell execution failed -[2024-03-16T18:28:54.927Z] Cell 4: Cell execution caused an exception -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] Input: -[2024-03-16T18:28:54.927Z] response = wms.getmap( -[2024-03-16T18:28:54.927Z] layers=[ -[2024-03-16T18:28:54.927Z] name, -[2024-03-16T18:28:54.927Z] ], -[2024-03-16T18:28:54.927Z] styles=["rgb"], -[2024-03-16T18:28:54.927Z] bbox=(-180, -90, 180, 90), # Left, bottom, right, top -[2024-03-16T18:28:54.927Z] format="image/png", -[2024-03-16T18:28:54.927Z] size=(600, 600), -[2024-03-16T18:28:54.927Z] srs="EPSG:4326", -[2024-03-16T18:28:54.927Z] time="2018-09-16", -[2024-03-16T18:28:54.927Z] transparent=True, -[2024-03-16T18:28:54.927Z] ) -[2024-03-16T18:28:54.927Z] response -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] Traceback: -[2024-03-16T18:28:54.927Z] -[2024-03-16T18:28:54.927Z] --------------------------------------------------------------------------- -[2024-03-16T18:28:54.927Z] NameError Traceback (most recent call last) -[2024-03-16T18:28:54.927Z] Cell In[1], line 1 -[2024-03-16T18:28:54.927Z] ----> 1 response = wms.getmap( -[2024-03-16T18:28:54.927Z]  2 layers=[ -[2024-03-16T18:28:54.927Z]  3 name, -[2024-03-16T18:28:54.927Z]  4 ], -[2024-03-16T18:28:54.927Z]  5 styles=["rgb"], -[2024-03-16T18:28:54.928Z]  6 bbox=(-180, -90, 180, 90), # Left, bottom, right, top -[2024-03-16T18:28:54.928Z]  7 format="image/png", -[2024-03-16T18:28:54.928Z]  8 size=(600, 600), -[2024-03-16T18:28:54.928Z]  9 srs="EPSG:4326", -[2024-03-16T18:28:54.928Z]  10 time="2018-09-16", -[2024-03-16T18:28:54.928Z]  11 transparent=True, -[2024-03-16T18:28:54.928Z]  12 ) -[2024-03-16T18:28:54.928Z]  13 response -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] NameError: name 'wms' is not defined -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 5 _ -[2024-03-16T18:28:54.928Z] Notebook cell execution failed -[2024-03-16T18:28:54.928Z] Cell 5: Cell execution caused an exception -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Input: -[2024-03-16T18:28:54.928Z] from IPython.display import Image -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Image(response.read()) -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Traceback: -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] --------------------------------------------------------------------------- -[2024-03-16T18:28:54.928Z] NameError Traceback (most recent call last) -[2024-03-16T18:28:54.928Z] Cell In[1], line 3 -[2024-03-16T18:28:54.928Z]  1 from IPython.display import Image -[2024-03-16T18:28:54.928Z] ----> 3 Image(response.read()) -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] NameError: name 'response' is not defined -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 6 _ -[2024-03-16T18:28:54.928Z] Notebook cell execution failed -[2024-03-16T18:28:54.928Z] Cell 6: Cell execution caused an exception -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Input: -[2024-03-16T18:28:54.928Z] import io -[2024-03-16T18:28:54.928Z] import warnings -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] import cartopy -[2024-03-16T18:28:54.928Z] import matplotlib.pyplot as plt -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] image = io.BytesIO(response.read()) -[2024-03-16T18:28:54.928Z] data = plt.imread(image) -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Traceback: -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] --------------------------------------------------------------------------- -[2024-03-16T18:28:54.928Z] NameError Traceback (most recent call last) -[2024-03-16T18:28:54.928Z] Cell In[1], line 7 -[2024-03-16T18:28:54.928Z]  4 import cartopy -[2024-03-16T18:28:54.928Z]  5 import matplotlib.pyplot as plt -[2024-03-16T18:28:54.928Z] ----> 7 image = io.BytesIO(response.read()) -[2024-03-16T18:28:54.928Z]  8 data = plt.imread(image) -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] NameError: name 'response' is not defined -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 7 _ -[2024-03-16T18:28:54.928Z] Notebook cell execution failed -[2024-03-16T18:28:54.928Z] Cell 7: Cell execution caused an exception -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Input: -[2024-03-16T18:28:54.928Z] warnings.filterwarnings("ignore", category=cartopy.io.DownloadWarning) -[2024-03-16T18:28:54.928Z] fig = plt.figure(figsize=(8, 6)) -[2024-03-16T18:28:54.928Z] ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) -[2024-03-16T18:28:54.928Z] ax.imshow( -[2024-03-16T18:28:54.928Z] data, -[2024-03-16T18:28:54.928Z] origin="upper", -[2024-03-16T18:28:54.928Z] extent=(-180, 180, -90, 90), -[2024-03-16T18:28:54.928Z] transform=cartopy.crs.PlateCarree(), -[2024-03-16T18:28:54.928Z] ) -[2024-03-16T18:28:54.928Z] ax.coastlines() -[2024-03-16T18:28:54.928Z] plt.show() -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Traceback: -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] --------------------------------------------------------------------------- -[2024-03-16T18:28:54.928Z] NameError Traceback (most recent call last) -[2024-03-16T18:28:54.928Z] Cell In[1], line 5 -[2024-03-16T18:28:54.928Z]  2 fig = plt.figure(figsize=(8, 6)) -[2024-03-16T18:28:54.928Z]  3 ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) -[2024-03-16T18:28:54.928Z]  4 ax.imshow( -[2024-03-16T18:28:54.928Z] ----> 5 data, -[2024-03-16T18:28:54.928Z]  6 origin="upper", -[2024-03-16T18:28:54.928Z]  7 extent=(-180, 180, -90, 90), -[2024-03-16T18:28:54.928Z]  8 transform=cartopy.crs.PlateCarree(), -[2024-03-16T18:28:54.928Z]  9 ) -[2024-03-16T18:28:54.928Z]  10 ax.coastlines() -[2024-03-16T18:28:54.928Z]  11 plt.show() -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] NameError: name 'data' is not defined -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 5 __ -[2024-03-16T18:28:54.928Z] Notebook cell execution failed -[2024-03-16T18:28:54.928Z] Cell 5: Cell outputs differ -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Input: -[2024-03-16T18:28:54.928Z] ds = xr.open_dataset( -[2024-03-16T18:28:54.928Z] url, chunks=dict(realization=1, time=365, rlat=50 * 3, rlon=50 * 3) -[2024-03-16T18:28:54.928Z] ) -[2024-03-16T18:28:54.928Z] xclim.set_options(check_missing="pct", missing_options={"pct": {"tolerance": 0.05}}) -[2024-03-16T18:28:54.928Z] sdii = xclim.atmos.daily_pr_intensity(pr=ds.pr.sel(time="2000")) -[2024-03-16T18:28:54.928Z] sdii -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Traceback: -[2024-03-16T18:28:54.928Z] Unexpected output fields from running code: {'stderr'} -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 8 __ -[2024-03-16T18:28:54.928Z] Notebook cell execution failed -[2024-03-16T18:28:54.928Z] Cell 8: Cell outputs differ -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Input: -[2024-03-16T18:28:54.928Z] # Subset over the Montreal gridpoint -[2024-03-16T18:28:54.928Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) -[2024-03-16T18:28:54.928Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) -[2024-03-16T18:28:54.928Z] print("Input dataset for Montreal :") -[2024-03-16T18:28:54.928Z] display(pt) -[2024-03-16T18:28:54.928Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") -[2024-03-16T18:28:54.928Z] print("Maximim 1-day precipitation `lazy` output ..") -[2024-03-16T18:28:54.928Z] out -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Traceback: -[2024-03-16T18:28:54.928Z] Unexpected output fields from running code: {'stderr'} -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 4 _ -[2024-03-16T18:28:54.928Z] Notebook cell execution failed -[2024-03-16T18:28:54.928Z] Cell 4: Cell outputs differ -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Input: -[2024-03-16T18:28:54.928Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) -[2024-03-16T18:28:54.928Z] plt.title("Target regular grid"); -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Traceback: -[2024-03-16T18:28:54.928Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-16T18:28:54.928Z]
-[2024-03-16T18:28:54.928Z] ============ disagrees with newly computed (test) output: -[2024-03-16T18:28:54.928Z] Text(0.5, 1.0, 'Target regular grid') -[2024-03-16T18:28:54.928Z]
-[2024-03-16T18:28:54.928Z] >>>>>>>>>>>> -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 6 _ -[2024-03-16T18:28:54.928Z] Notebook cell execution failed -[2024-03-16T18:28:54.928Z] Cell 6: Cell outputs differ -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Input: -[2024-03-16T18:28:54.928Z] reg_bil = xe.Regridder(ds_in, ds_tgt, "bilinear") -[2024-03-16T18:28:54.928Z] reg_bil # Show information about the regridding -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Traceback: -[2024-03-16T18:28:54.928Z] Missing output fields from running code: {'stderr'} -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 7 _ -[2024-03-16T18:28:54.928Z] Notebook cell execution failed -[2024-03-16T18:28:54.928Z] Cell 7: Cell outputs differ -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] Input: -[2024-03-16T18:28:54.928Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. -[2024-03-16T18:28:54.928Z] warnings.filterwarnings("ignore", category=FutureWarning) -[2024-03-16T18:28:54.928Z] -[2024-03-16T18:28:54.928Z] # Apply the regridding weights to the input sea ice concentration data -[2024-03-16T18:28:54.928Z] sic_bil = reg_bil(ds_in.siconc) -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] # Plot the results -[2024-03-16T18:28:54.929Z] sic_bil.isel(time=0).plot(cmap=cmap) -[2024-03-16T18:28:54.929Z] plt.title("Regridded sic data (Jan 2020)"); -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Traceback: -[2024-03-16T18:28:54.929Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-16T18:28:54.929Z]
-[2024-03-16T18:28:54.929Z] ============ disagrees with newly computed (test) output: -[2024-03-16T18:28:54.929Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') -[2024-03-16T18:28:54.929Z]
-[2024-03-16T18:28:54.929Z] >>>>>>>>>>>> -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 20 _ -[2024-03-16T18:28:54.929Z] Notebook cell execution failed -[2024-03-16T18:28:54.929Z] Cell 20: Cell outputs differ -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Input: -[2024-03-16T18:28:54.929Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") -[2024-03-16T18:28:54.929Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] fig, ax = plt.subplots(figsize=(6, 4)) -[2024-03-16T18:28:54.929Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) -[2024-03-16T18:28:54.929Z] ax.set_xlim(210, 320) -[2024-03-16T18:28:54.929Z] ax.set_ylim(38, 86) -[2024-03-16T18:28:54.929Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") -[2024-03-16T18:28:54.929Z] ax.annotate( -[2024-03-16T18:28:54.929Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", -[2024-03-16T18:28:54.929Z] (280, 40), -[2024-03-16T18:28:54.929Z] xytext=(1.3, 0.3), -[2024-03-16T18:28:54.929Z] xycoords="data", -[2024-03-16T18:28:54.929Z] textcoords="axes fraction", -[2024-03-16T18:28:54.929Z] fontsize="x-large", -[2024-03-16T18:28:54.929Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), -[2024-03-16T18:28:54.929Z] ); -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Traceback: -[2024-03-16T18:28:54.929Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-16T18:28:54.929Z]
-[2024-03-16T18:28:54.929Z] ============ disagrees with newly computed (test) output: -[2024-03-16T18:28:54.929Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') -[2024-03-16T18:28:54.929Z]
-[2024-03-16T18:28:54.929Z] >>>>>>>>>>>> -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 27 _ -[2024-03-16T18:28:54.929Z] Notebook cell execution failed -[2024-03-16T18:28:54.929Z] Cell 27: Cell outputs differ -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Input: -[2024-03-16T18:28:54.929Z] # Now we can plot easily the results as a choropleth map! -[2024-03-16T18:28:54.929Z] ax = shapes_data.plot( -[2024-03-16T18:28:54.929Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} -[2024-03-16T18:28:54.929Z] ) -[2024-03-16T18:28:54.929Z] ax.set_ylabel("Latitude") -[2024-03-16T18:28:54.929Z] ax.set_xlabel("Longitude"); -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Traceback: -[2024-03-16T18:28:54.929Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-16T18:28:54.929Z]
-[2024-03-16T18:28:54.929Z] ============ disagrees with newly computed (test) output: -[2024-03-16T18:28:54.929Z] Text(0.5, 91.20243008191655, 'Longitude') -[2024-03-16T18:28:54.929Z]
-[2024-03-16T18:28:54.929Z] >>>>>>>>>>>> -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb::Cell 14 _ -[2024-03-16T18:28:54.929Z] Notebook cell execution failed -[2024-03-16T18:28:54.929Z] Cell 14: Cell outputs differ -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Input: -[2024-03-16T18:28:54.929Z] lon0 = float(bounds.minx) -[2024-03-16T18:28:54.929Z] lon1 = float(bounds.maxx) -[2024-03-16T18:28:54.929Z] lat0 = float(bounds.miny) -[2024-03-16T18:28:54.929Z] lat1 = float(bounds.maxy) -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] result_tasmin = finch.subset_bbox( -[2024-03-16T18:28:54.929Z] resource=data, -[2024-03-16T18:28:54.929Z] variable="tasmin", -[2024-03-16T18:28:54.929Z] lon0=lon0, -[2024-03-16T18:28:54.929Z] lon1=lon1, -[2024-03-16T18:28:54.929Z] lat0=lat0, -[2024-03-16T18:28:54.929Z] lat1=lat1, -[2024-03-16T18:28:54.929Z] start_date="1958-01-01", -[2024-03-16T18:28:54.929Z] end_date="1958-12-31", -[2024-03-16T18:28:54.929Z] ) -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Traceback: -[2024-03-16T18:28:54.929Z]  mismatch 'stderr' -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] assert reference_output == test_output failed: -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] '/tmp/ipykern...ounds.maxy)\n' == '/tmp/ipykern...ounds.maxy)\n' -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Skipping 179 identical trailing characters in diff, use -v to show -[2024-03-16T18:28:54.929Z] - /tmp/ipykernel_1505/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-16T18:28:54.929Z] ? - ^ -[2024-03-16T18:28:54.929Z] + /tmp/ipykernel_1086/857013960.py:1: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-16T18:28:54.929Z] ? ^^ -[2024-03-16T18:28:54.929Z] lon0 = float(bounds.minx) -[2024-03-16T18:28:54.929Z] - /tmp/ipykernel_1505/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-16T18:28:54.929Z] ? - ^ -[2024-03-16T18:28:54.929Z] + /tmp/ipykernel_1086/857013960.py:2: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-16T18:28:54.929Z] ? ^^ -[2024-03-16T18:28:54.929Z] lon1 = float(bounds.maxx) -[2024-03-16T18:28:54.929Z] - /tmp/ipykernel_1505/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-16T18:28:54.929Z] ? - ^ -[2024-03-16T18:28:54.929Z] + /tmp/ipykernel_1086/857013960.py:3: FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead -[2024-03-16T18:28:54.929Z] ? ^^ -[2024-03-16T18:28:54.929Z] lat0 = float(bounds.miny) -[2024-03-16T18:28:54.929Z] - /tmp/ipykernel_1505/85701396 -[2024-03-16T18:28:54.929Z] ? - ^ -[2024-03-16T18:28:54.929Z] + /tmp/ipykernel_1086/85701396 -[2024-03-16T18:28:54.929Z] ? ^^ -[2024-03-16T18:28:54.929Z]  -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] _ PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 _ -[2024-03-16T18:28:54.929Z] Notebook cell execution failed -[2024-03-16T18:28:54.929Z] Cell 0: Cell outputs differ -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Input: -[2024-03-16T18:28:54.929Z] import warnings -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] import xarray as xr -[2024-03-16T18:28:54.929Z] from IPython.display import display # Fancy representation of xarray objects -[2024-03-16T18:28:54.929Z] from siphon.catalog import TDSCatalog -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] warnings.simplefilter("ignore") -[2024-03-16T18:28:54.929Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] # Create Catalog -[2024-03-16T18:28:54.929Z] cat = TDSCatalog(url) -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] # DAP link for this demo -[2024-03-16T18:28:54.929Z] ds_url = cat.datasets[0].access_urls["OPENDAP"] -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] # xarray.Dataset -[2024-03-16T18:28:54.929Z] ds = xr.open_dataset(ds_url, chunks=dict(time=256 * 2, lon=32, lat=32)) -[2024-03-16T18:28:54.929Z] display(ds) -[2024-03-16T18:28:54.929Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] Traceback: -[2024-03-16T18:28:54.929Z]  mismatch 'text/plain' -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] assert reference_output == test_output failed: -[2024-03-16T18:28:54.929Z] -[2024-03-16T18:28:54.929Z] ' 20 plt.title(pos_f.description.split(".")[0]) -[2024-03-16T18:28:54.931Z]  22 display() -[2024-03-16T18:28:54.931Z] -[2024-03-16T18:28:54.931Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-03-16T18:28:54.931Z]  275 with suppress(KeyError): -[2024-03-16T18:28:54.931Z]  276 return source[name] -[2024-03-16T18:28:54.931Z] --> 277 raise AttributeError( -[2024-03-16T18:28:54.931Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-03-16T18:28:54.931Z]  279 ) -[2024-03-16T18:28:54.931Z] -[2024-03-16T18:28:54.931Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-03-16T18:28:54.931Z] -[2024-03-16T18:28:54.931Z] =========================== short test summary info ============================ -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 1 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 2 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 3 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 4 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 5 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 6 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb::Cell 7 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 5 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb::Cell 8 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 4 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 6 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 7 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 20 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb::Cell 27 -[2024-03-16T18:28:54.931Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb::Cell 14 -[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 -[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 1 -[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 3 -[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 -[2024-03-16T18:28:54.931Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-03-16T18:28:54.931Z] ============ 20 failed, 193 passed, 1 skipped in 959.44s (0:15:59) ============= -[2024-03-16T18:28:54.931Z] + EXIT_CODE=1 -[2024-03-16T18:28:54.931Z] + echo true -[2024-03-16T18:28:54.931Z] + tr [:upper:] [:lower:] -[2024-03-16T18:28:54.931Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-16T18:28:54.931Z] + [ xtrue = xtrue ] -[2024-03-16T18:28:54.931Z] + mkdir -p buildout -[2024-03-16T18:28:54.931Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb -[2024-03-16T18:28:54.931Z] + filename=WCS_example.ipynb -[2024-03-16T18:28:54.931Z] + echo WCS_example.ipynb -[2024-03-16T18:28:54.931Z] + sed s/.ipynb$// -[2024-03-16T18:28:54.931Z] + filename=WCS_example -[2024-03-16T18:28:54.931Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-03-16T18:28:54.931Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb -[2024-03-16T18:28:54.931Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-03-16T18:29:16.824Z] [NbConvertApp] Writing 144574 bytes to buildout/WCS_example.output.ipynb -[2024-03-16T18:29:17.082Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb -[2024-03-16T18:29:17.082Z] + filename=WFS_example.ipynb -[2024-03-16T18:29:17.082Z] + echo WFS_example.ipynb -[2024-03-16T18:29:17.082Z] + sed s/.ipynb$// -[2024-03-16T18:29:17.082Z] + filename=WFS_example -[2024-03-16T18:29:17.082Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-03-16T18:29:17.082Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb -[2024-03-16T18:29:18.969Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-03-16T18:29:28.917Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb -[2024-03-16T18:29:29.173Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb -[2024-03-16T18:29:29.173Z] + filename=WMS_example.ipynb -[2024-03-16T18:29:29.173Z] + echo WMS_example.ipynb -[2024-03-16T18:29:29.173Z] + sed s/.ipynb$// -[2024-03-16T18:29:29.173Z] + filename=WMS_example -[2024-03-16T18:29:29.173Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-03-16T18:29:29.173Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb -[2024-03-16T18:29:31.064Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-03-16T18:30:09.751Z] [NbConvertApp] Writing 73952 bytes to buildout/WMS_example.output.ipynb -[2024-03-16T18:30:09.751Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb -[2024-03-16T18:30:09.751Z] + filename=climex.ipynb -[2024-03-16T18:30:09.751Z] + echo climex.ipynb -[2024-03-16T18:30:09.751Z] + sed s/.ipynb$// -[2024-03-16T18:30:09.751Z] + filename=climex -[2024-03-16T18:30:09.751Z] + [ -e buildout/climex.output.ipynb ] -[2024-03-16T18:30:09.751Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb -[2024-03-16T18:30:09.751Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb to notebook -[2024-03-16T18:32:01.167Z] 2024-03-16 18:31:54,727 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. -[2024-03-16T18:32:01.167Z] Traceback (most recent call last): -[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read -[2024-03-16T18:32:01.167Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) -[2024-03-16T18:32:01.167Z] tornado.iostream.StreamClosedError: Stream is closed -[2024-03-16T18:32:01.167Z] -[2024-03-16T18:32:01.167Z] The above exception was the direct cause of the following exception: -[2024-03-16T18:32:01.167Z] -[2024-03-16T18:32:01.167Z] Traceback (most recent call last): -[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat -[2024-03-16T18:32:01.167Z] response = await retry_operation( -[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation -[2024-03-16T18:32:01.167Z] return await retry( -[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry -[2024-03-16T18:32:01.167Z] return await coro() -[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc -[2024-03-16T18:32:01.167Z] return await send_recv(comm=comm, op=key, **kwargs) -[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv -[2024-03-16T18:32:01.167Z] response = await comm.read(deserializers=deserializers) -[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read -[2024-03-16T18:32:01.167Z] convert_stream_closed_error(self, e) -[2024-03-16T18:32:01.167Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error -[2024-03-16T18:32:01.167Z] raise CommClosedError(f"in {obj}: {exc}") from exc -[2024-03-16T18:32:01.167Z] distributed.comm.core.CommClosedError: in : Stream is closed -[2024-03-16T18:33:52.575Z] 2024-03-16 18:33:45,863 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. -[2024-03-16T18:33:52.575Z] Traceback (most recent call last): -[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read -[2024-03-16T18:33:52.575Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) -[2024-03-16T18:33:52.575Z] tornado.iostream.StreamClosedError: Stream is closed -[2024-03-16T18:33:52.575Z] -[2024-03-16T18:33:52.575Z] The above exception was the direct cause of the following exception: -[2024-03-16T18:33:52.575Z] -[2024-03-16T18:33:52.575Z] Traceback (most recent call last): -[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat -[2024-03-16T18:33:52.575Z] response = await retry_operation( -[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation -[2024-03-16T18:33:52.575Z] return await retry( -[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry -[2024-03-16T18:33:52.575Z] return await coro() -[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc -[2024-03-16T18:33:52.575Z] return await send_recv(comm=comm, op=key, **kwargs) -[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv -[2024-03-16T18:33:52.575Z] response = await comm.read(deserializers=deserializers) -[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read -[2024-03-16T18:33:52.575Z] convert_stream_closed_error(self, e) -[2024-03-16T18:33:52.575Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error -[2024-03-16T18:33:52.575Z] raise CommClosedError(f"in {obj}: {exc}") from exc -[2024-03-16T18:33:52.575Z] distributed.comm.core.CommClosedError: in : Stream is closed -[2024-03-16T18:33:52.575Z] [NbConvertApp] Writing 1790801 bytes to buildout/climex.output.ipynb -[2024-03-16T18:33:52.575Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-16T18:33:52.575Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-03-16T18:33:52.575Z] + + echo eccc-geoapi-climate-stations.ipynbsed -[2024-03-16T18:33:52.575Z] s/.ipynb$// -[2024-03-16T18:33:52.575Z] + filename=eccc-geoapi-climate-stations -[2024-03-16T18:33:52.575Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-03-16T18:33:52.575Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-16T18:33:53.953Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-03-16T18:34:08.901Z] [NbConvertApp] Writing 279294 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-03-16T18:34:08.902Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-16T18:34:08.902Z] + filename=eccc-geoapi-xclim.ipynb -[2024-03-16T18:34:08.902Z] + sed s/.ipynb$// -[2024-03-16T18:34:08.902Z] + echo eccc-geoapi-xclim.ipynb -[2024-03-16T18:34:08.902Z] + filename=eccc-geoapi-xclim -[2024-03-16T18:34:08.902Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-03-16T18:34:08.902Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-16T18:34:09.467Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-03-16T18:34:21.673Z] [NbConvertApp] Writing 108292 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-03-16T18:34:21.673Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb -[2024-03-16T18:34:21.673Z] + filename=esgf-dap.ipynb -[2024-03-16T18:34:21.673Z] + sed s/.ipynb$// -[2024-03-16T18:34:21.673Z] + echo esgf-dap.ipynb -[2024-03-16T18:34:21.673Z] + filename=esgf-dap -[2024-03-16T18:34:21.673Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-03-16T18:34:21.674Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb -[2024-03-16T18:34:21.674Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-03-16T18:34:29.810Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb -[2024-03-16T18:34:29.810Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb -[2024-03-16T18:34:29.810Z] + filename=forecasts.ipynb -[2024-03-16T18:34:29.810Z] + echo forecasts.ipynb -[2024-03-16T18:34:29.810Z] + sed s/.ipynb$// -[2024-03-16T18:34:29.810Z] + filename=forecasts -[2024-03-16T18:34:29.810Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-03-16T18:34:29.810Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb -[2024-03-16T18:34:31.187Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb to notebook -[2024-03-16T18:34:49.279Z] [NbConvertApp] Writing 181135 bytes to buildout/forecasts.output.ipynb -[2024-03-16T18:34:49.279Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-16T18:34:49.279Z] + filename=jupyter_extensions.ipynb -[2024-03-16T18:34:49.279Z] + echo jupyter_extensions.ipynb -[2024-03-16T18:34:49.279Z] + sed s/.ipynb$// -[2024-03-16T18:34:49.279Z] + filename=jupyter_extensions -[2024-03-16T18:34:49.279Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-03-16T18:34:49.279Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-16T18:34:50.645Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-03-16T18:34:57.244Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb -[2024-03-16T18:34:57.245Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb -[2024-03-16T18:34:57.245Z] + filename=opendap.ipynb -[2024-03-16T18:34:57.245Z] + echo opendap.ipynb -[2024-03-16T18:34:57.245Z] + sed s/.ipynb$// -[2024-03-16T18:34:57.245Z] + filename=opendap -[2024-03-16T18:34:57.245Z] + [ -e buildout/opendap.output.ipynb ] -[2024-03-16T18:34:57.245Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb -[2024-03-16T18:34:58.607Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb to notebook -[2024-03-16T18:36:06.331Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb -[2024-03-16T18:36:06.331Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-16T18:36:06.331Z] + filename=pavics_thredds.ipynb -[2024-03-16T18:36:06.331Z] + sed s/.ipynb$// -[2024-03-16T18:36:06.331Z] + echo pavics_thredds.ipynb -[2024-03-16T18:36:06.331Z] + filename=pavics_thredds -[2024-03-16T18:36:06.331Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-03-16T18:36:06.331Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-16T18:36:06.331Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-03-16T18:36:10.524Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-16T18:36:10.524Z] context: Access to service is forbidden. -[2024-03-16T18:36:10.524Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-16T18:36:10.524Z] context: Access to service is forbidden. -[2024-03-16T18:36:13.092Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb -[2024-03-16T18:36:13.374Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb -[2024-03-16T18:36:13.374Z] + filename=regridding.ipynb -[2024-03-16T18:36:13.374Z] + echo regridding.ipynb -[2024-03-16T18:36:13.374Z] + sed s/.ipynb$// -[2024-03-16T18:36:13.374Z] + filename=regridding -[2024-03-16T18:36:13.374Z] + [ -e buildout/regridding.output.ipynb ] -[2024-03-16T18:36:13.374Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb -[2024-03-16T18:36:15.268Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb to notebook -[2024-03-16T18:38:06.740Z] [NbConvertApp] Writing 1239788 bytes to buildout/regridding.output.ipynb -[2024-03-16T18:38:06.740Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb -[2024-03-16T18:38:06.740Z] + filename=rendering.ipynb -[2024-03-16T18:38:06.740Z] + echo rendering.ipynb -[2024-03-16T18:38:06.740Z] + sed s/.ipynb$// -[2024-03-16T18:38:06.740Z] + filename=rendering -[2024-03-16T18:38:06.740Z] + [ -e buildout/rendering.output.ipynb ] -[2024-03-16T18:38:06.740Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb -[2024-03-16T18:38:06.740Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb to notebook -[2024-03-16T18:38:06.740Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb -[2024-03-16T18:38:06.740Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb -[2024-03-16T18:38:06.740Z] + filename=subset-user-input.ipynb -[2024-03-16T18:38:06.740Z] + echo subset-user-input.ipynb -[2024-03-16T18:38:06.740Z] + sed s/.ipynb$// -[2024-03-16T18:38:06.740Z] + filename=subset-user-input -[2024-03-16T18:38:06.740Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-03-16T18:38:06.740Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb -[2024-03-16T18:38:07.671Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-03-16T18:38:29.603Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb -[2024-03-16T18:38:29.603Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb -[2024-03-16T18:38:29.603Z] + filename=subsetting.ipynb -[2024-03-16T18:38:29.603Z] + echo subsetting.ipynb -[2024-03-16T18:38:29.603Z] + sed s/.ipynb$// -[2024-03-16T18:38:29.603Z] + filename=subsetting -[2024-03-16T18:38:29.603Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-03-16T18:38:29.603Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb -[2024-03-16T18:38:31.505Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb to notebook -[2024-03-16T18:38:41.469Z] [NbConvertApp] Writing 93401 bytes to buildout/subsetting.output.ipynb -[2024-03-16T18:38:41.469Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-16T18:38:41.469Z] + filename=dap_subset.ipynb -[2024-03-16T18:38:41.469Z] + echo dap_subset.ipynb -[2024-03-16T18:38:41.469Z] + sed s/.ipynb$// -[2024-03-16T18:38:41.469Z] + filename=dap_subset -[2024-03-16T18:38:41.469Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-03-16T18:38:41.469Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-16T18:38:42.845Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-03-16T18:38:55.106Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb -[2024-03-16T18:38:55.106Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-16T18:38:55.106Z] + filename=finch-usage.ipynb -[2024-03-16T18:38:55.106Z] + echo finch-usage.ipynb -[2024-03-16T18:38:55.106Z] + sed s/.ipynb$// -[2024-03-16T18:38:55.106Z] + filename=finch-usage -[2024-03-16T18:38:55.106Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-03-16T18:38:55.106Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-16T18:38:56.476Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-03-16T18:39:06.431Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb -[2024-03-16T18:39:06.689Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-16T18:39:06.689Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-16T18:39:06.689Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-16T18:39:06.689Z] + sed s/.ipynb$// -[2024-03-16T18:39:06.689Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-03-16T18:39:06.689Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-03-16T18:39:06.689Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-16T18:39:08.648Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-03-16T18:39:15.207Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-03-16T18:39:15.207Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-16T18:39:15.207Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-16T18:39:15.207Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-16T18:39:15.207Z] + sed s/.ipynb$// -[2024-03-16T18:39:15.207Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-03-16T18:39:15.207Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-03-16T18:39:15.207Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-16T18:39:16.139Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-03-16T18:39:17.512Z] Traceback (most recent call last): -[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/runpy.py", line 196, in _run_module_as_main -[2024-03-16T18:39:17.512Z] return _run_code(code, main_globals, None, -[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/runpy.py", line 86, in _run_code -[2024-03-16T18:39:17.512Z] exec(code, run_globals) -[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel_launcher.py", line 18, in -[2024-03-16T18:39:17.512Z] app.launch_new_instance() -[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1074, in launch_instance -[2024-03-16T18:39:17.512Z] app.initialize(argv) -[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 118, in inner -[2024-03-16T18:39:17.512Z] return method(app, *args, **kwargs) -[2024-03-16T18:39:17.512Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 692, in initialize -[2024-03-16T18:39:17.512Z] self.init_sockets() -[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 345, in init_sockets -[2024-03-16T18:39:17.513Z] self.init_control(context) -[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 352, in init_control -[2024-03-16T18:39:17.513Z] self.control_port = self._bind_socket(self.control_socket, self.control_port) -[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 253, in _bind_socket -[2024-03-16T18:39:17.513Z] return self._try_bind_socket(s, port) -[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/ipykernel/kernelapp.py", line 229, in _try_bind_socket -[2024-03-16T18:39:17.513Z] s.bind("tcp://%s:%i" % (self.ip, port)) -[2024-03-16T18:39:17.513Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/zmq/sugar/socket.py", line 232, in bind -[2024-03-16T18:39:17.513Z] super().bind(addr) -[2024-03-16T18:39:17.513Z] File "zmq/backend/cython/socket.pyx", line 568, in zmq.backend.cython.socket.Socket.bind -[2024-03-16T18:39:17.513Z] File "zmq/backend/cython/checkrc.pxd", line 28, in zmq.backend.cython.checkrc._check_rc -[2024-03-16T18:39:17.513Z] zmq.error.ZMQError: Address already in use -[2024-03-16T18:39:17.771Z] [NbConvertApp] ERROR | Error occurred while starting new kernel client for kernel 6bd2e909-86ec-49f7-b57d-eacaaad68c3b: Kernel died before replying to kernel_info -[2024-03-16T18:39:17.771Z] Traceback (most recent call last): -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-03-16T18:39:17.771Z] sys.exit(main()) -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance -[2024-03-16T18:39:17.771Z] super().launch_instance(argv=argv, **kwargs) -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance -[2024-03-16T18:39:17.771Z] app.start() -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start -[2024-03-16T18:39:17.771Z] self.convert_notebooks() -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks -[2024-03-16T18:39:17.771Z] self.convert_single_notebook(notebook_filename) -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook -[2024-03-16T18:39:17.771Z] output, resources = self.export_single_notebook( -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook -[2024-03-16T18:39:17.771Z] output, resources = self.exporter.from_filename( -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-03-16T18:39:17.771Z] return self.from_file(f, resources=resources, **kw) -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-03-16T18:39:17.771Z] return self.from_notebook_node( -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-03-16T18:39:17.771Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-03-16T18:39:17.771Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-03-16T18:39:17.771Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess -[2024-03-16T18:39:17.771Z] nbc, resc = preprocessor(nbc, resc) -[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-03-16T18:39:17.772Z] return self.preprocess(nb, resources) -[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 96, in preprocess -[2024-03-16T18:39:17.772Z] with self.setup_kernel(): -[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/contextlib.py", line 135, in __enter__ -[2024-03-16T18:39:17.772Z] return next(self.gen) -[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 599, in setup_kernel -[2024-03-16T18:39:17.772Z] self.start_new_kernel_client() -[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped -[2024-03-16T18:39:17.772Z] return loop.run_until_complete(inner) -[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-03-16T18:39:17.772Z] return future.result() -[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 562, in async_start_new_kernel_client -[2024-03-16T18:39:17.772Z] await ensure_async(self.kc.wait_for_ready(timeout=self.startup_timeout)) -[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async -[2024-03-16T18:39:17.772Z] result = await obj -[2024-03-16T18:39:17.772Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/client.py", line 202, in _async_wait_for_ready -[2024-03-16T18:39:17.772Z] raise RuntimeError("Kernel died before replying to kernel_info") -[2024-03-16T18:39:17.772Z] RuntimeError: Kernel died before replying to kernel_info -[2024-03-16T18:39:18.708Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-16T18:39:18.708Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-16T18:39:18.708Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-16T18:39:18.708Z] + sed s/.ipynb$// -[2024-03-16T18:39:18.708Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-03-16T18:39:18.708Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-03-16T18:39:18.708Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-16T18:39:20.606Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-03-16T18:44:12.191Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). -[2024-03-16T18:44:13.559Z] Traceback (most recent call last): -[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply -[2024-03-16T18:44:13.559Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) -[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async -[2024-03-16T18:44:13.559Z] result = await obj -[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg -[2024-03-16T18:44:13.559Z] raise Empty -[2024-03-16T18:44:13.559Z] _queue.Empty -[2024-03-16T18:44:13.559Z] -[2024-03-16T18:44:13.559Z] During handling of the above exception, another exception occurred: -[2024-03-16T18:44:13.559Z] -[2024-03-16T18:44:13.559Z] Traceback (most recent call last): -[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-03-16T18:44:13.559Z] sys.exit(main()) -[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance -[2024-03-16T18:44:13.559Z] super().launch_instance(argv=argv, **kwargs) -[2024-03-16T18:44:13.559Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance -[2024-03-16T18:44:13.559Z] app.start() -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start -[2024-03-16T18:44:13.560Z] self.convert_notebooks() -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks -[2024-03-16T18:44:13.560Z] self.convert_single_notebook(notebook_filename) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook -[2024-03-16T18:44:13.560Z] output, resources = self.export_single_notebook( -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook -[2024-03-16T18:44:13.560Z] output, resources = self.exporter.from_filename( -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-03-16T18:44:13.560Z] return self.from_file(f, resources=resources, **kw) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-03-16T18:44:13.560Z] return self.from_notebook_node( -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-03-16T18:44:13.560Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-03-16T18:44:13.560Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess -[2024-03-16T18:44:13.560Z] nbc, resc = preprocessor(nbc, resc) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-03-16T18:44:13.560Z] return self.preprocess(nb, resources) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess -[2024-03-16T18:44:13.560Z] self.preprocess_cell(cell, resources, index) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell -[2024-03-16T18:44:13.560Z] cell = self.execute_cell(cell, index, store_history=True) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped -[2024-03-16T18:44:13.560Z] return loop.run_until_complete(inner) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-03-16T18:44:13.560Z] return future.result() -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell -[2024-03-16T18:44:13.560Z] exec_reply = await self.task_poll_for_reply -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply -[2024-03-16T18:44:13.560Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) -[2024-03-16T18:44:13.560Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout -[2024-03-16T18:44:13.560Z] raise CellTimeoutError.error_from_timeout_and_cell( -[2024-03-16T18:44:13.560Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. -[2024-03-16T18:44:13.560Z] The message was: Cell execution timed out. -[2024-03-16T18:44:13.560Z] Here is a preview of the cell contents: -[2024-03-16T18:44:13.560Z] ------------------- -[2024-03-16T18:44:13.560Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] -[2024-03-16T18:44:13.560Z] ... -[2024-03-16T18:44:13.560Z] [' print("finished")', ' ', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] -[2024-03-16T18:44:13.560Z] ------------------- -[2024-03-16T18:44:13.560Z] -[2024-03-16T18:44:13.859Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-16T18:44:13.859Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-16T18:44:13.859Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-16T18:44:13.859Z] + sed s/.ipynb$// -[2024-03-16T18:44:13.859Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-03-16T18:44:13.859Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-03-16T18:44:13.859Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-16T18:44:15.748Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-03-16T18:44:37.691Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-03-16T18:44:37.691Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-16T18:44:37.691Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-16T18:44:37.691Z] + echo+ PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-16T18:44:37.691Z] sed s/.ipynb$// -[2024-03-16T18:44:37.691Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-03-16T18:44:37.691Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-03-16T18:44:37.691Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-16T18:44:37.691Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-03-16T18:45:45.379Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-03-16T18:45:45.379Z] + basename notebooks/hummingbird.ipynb -[2024-03-16T18:45:45.379Z] + filename=hummingbird.ipynb -[2024-03-16T18:45:45.379Z] + echo hummingbird.ipynb -[2024-03-16T18:45:45.379Z] + sed s/.ipynb$// -[2024-03-16T18:45:45.379Z] + filename=hummingbird -[2024-03-16T18:45:45.379Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-03-16T18:45:45.379Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-03-16T18:45:45.380Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-03-16T18:45:47.907Z] [NbConvertApp] Writing 15951 bytes to buildout/hummingbird.output.ipynb -[2024-03-16T18:45:47.907Z] + basename notebooks/stress-tests.ipynb -[2024-03-16T18:45:47.907Z] + filename=stress-tests.ipynb -[2024-03-16T18:45:47.907Z] + echo stress-tests.ipynb -[2024-03-16T18:45:47.907Z] + sed s/.ipynb$// -[2024-03-16T18:45:47.907Z] + filename=stress-tests -[2024-03-16T18:45:47.907Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-03-16T18:45:47.907Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-03-16T18:45:49.276Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-03-16T18:48:40.807Z] [NbConvertApp] Writing 428476 bytes to buildout/stress-tests.output.ipynb -[2024-03-16T18:48:40.807Z] + exit 1 -[2024-03-16T18:48:40.807Z] + EXIT_CODE=1 -[2024-03-16T18:48:40.807Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-16T18:48:40.807Z] + mkdir -p buildout/env-dump -[2024-03-16T18:48:40.807Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-16T18:48:40.807Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-16T18:48:40.807Z] + conda env export -n birdy -[2024-03-16T18:48:50.887Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-16T18:48:50.887Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-16T18:48:50.887Z] + conda list -n birdy --explicit -[2024-03-16T18:49:00.985Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-16T18:49:00.985Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-16T18:49:00.985Z] + pip freeze -[2024-03-16T18:49:01.923Z] + exit 1 +[2024-03-23T19:24:02.647Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-23T19:24:02.647Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-23T19:24:02.647Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-03-23T19:24:02.647Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-23T19:24:02.647Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-23T19:24:02.647Z] FINCH_BRANCH has been set to 'master' +[2024-03-23T19:24:02.647Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-23T19:24:02.647Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-23T19:24:02.647Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-03-23T19:24:02.647Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-23T19:24:02.647Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-23T19:24:02.647Z] RAVEN_BRANCH has been set to 'main' +[2024-03-23T19:24:02.647Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-23T19:24:02.647Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-23T19:24:02.647Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-23T19:24:02.647Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-23T19:24:02.647Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-23T19:24:02.647Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-23T19:24:02.647Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-23T19:24:02.647Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-23T19:24:02.647Z] + git clean -fdx +[2024-03-23T19:24:02.904Z] Removing .pytest_cache/ +[2024-03-23T19:24:02.904Z] Removing RavenPy-master/ +[2024-03-23T19:24:02.904Z] Removing __pycache__/ +[2024-03-23T19:24:02.904Z] Removing buildout/ +[2024-03-23T19:24:02.904Z] Removing esgf-compute-api-devel/ +[2024-03-23T19:24:02.904Z] Removing finch-master/ +[2024-03-23T19:24:02.904Z] Removing raven-main/ +[2024-03-23T19:24:02.904Z] + ./downloadrepos +[2024-03-23T19:24:02.904Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-03-23T19:24:02.904Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-03-23T19:24:02.904Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-23T19:24:02.904Z] TEST_FINCH_REPO has been set to 'true' +[2024-03-23T19:24:02.904Z] FINCH_BRANCH has been set to 'master' +[2024-03-23T19:24:02.904Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-23T19:24:02.904Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-03-23T19:24:02.904Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-03-23T19:24:02.904Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-23T19:24:02.904Z] TEST_RAVEN_REPO has been set to 'false' +[2024-03-23T19:24:02.904Z] RAVEN_BRANCH has been set to 'main' +[2024-03-23T19:24:02.904Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-23T19:24:02.904Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-03-23T19:24:02.904Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-23T19:24:02.904Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-23T19:24:02.904Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-23T19:24:02.904Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-23T19:24:02.904Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-23T19:24:02.904Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-03-23T19:24:02.904Z] + rm -rf pavics-sdi-* +[2024-03-23T19:24:02.904Z] + ls +[2024-03-23T19:24:02.904Z] + grep pavics-sdi +[2024-03-23T19:24:02.904Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:02.904Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-23T19:24:02.904Z] + shift +[2024-03-23T19:24:02.904Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:02.904Z] + shift +[2024-03-23T19:24:02.904Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-03-23T19:24:02.904Z] + tar xz +[2024-03-23T19:24:07.082Z] + ls +[2024-03-23T19:24:07.082Z] + grep pavics-sdi +[2024-03-23T19:24:07.082Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:07.082Z] + set +x +[2024-03-23T19:24:07.082Z] + rm -rf finch-* +[2024-03-23T19:24:07.082Z] + ls +[2024-03-23T19:24:07.082Z] + grep finch +[2024-03-23T19:24:07.082Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-23T19:24:07.082Z] + github_repo=https://github.com/bird-house/finch +[2024-03-23T19:24:07.082Z] + shift +[2024-03-23T19:24:07.082Z] + branch=master +[2024-03-23T19:24:07.082Z] + shift +[2024-03-23T19:24:07.082Z] + + wget --quiet --output-document -tar https://github.com/bird-house/finch/archive/master.tar.gz xz +[2024-03-23T19:24:07.082Z] +[2024-03-23T19:24:08.450Z] + ls +[2024-03-23T19:24:08.450Z] + grep finch +[2024-03-23T19:24:08.450Z] finch-master +[2024-03-23T19:24:08.450Z] + set +x +[2024-03-23T19:24:08.450Z] + rm -rf PAVICS-landing-* +[2024-03-23T19:24:08.450Z] + ls +[2024-03-23T19:24:08.450Z] + grep PAVICS-landing +[2024-03-23T19:24:08.450Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:08.450Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-23T19:24:08.450Z] + shift +[2024-03-23T19:24:08.450Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:08.450Z] + shift +[2024-03-23T19:24:08.450Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-03-23T19:24:08.450Z] + tar xz +[2024-03-23T19:24:20.626Z] + ls +[2024-03-23T19:24:20.626Z] + grep PAVICS-landing +[2024-03-23T19:24:20.626Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:20.626Z] + set +x +[2024-03-23T19:24:20.626Z] + rm -rf raven-* +[2024-03-23T19:24:20.626Z] + ls +[2024-03-23T19:24:20.626Z] + grep raven +[2024-03-23T19:24:20.626Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-23T19:24:20.626Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-23T19:24:20.626Z] + shift +[2024-03-23T19:24:20.626Z] + branch=main +[2024-03-23T19:24:20.626Z] + shift +[2024-03-23T19:24:20.626Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-23T19:24:20.626Z] + tar xz +[2024-03-23T19:24:20.626Z] + ls +[2024-03-23T19:24:20.626Z] + grep raven +[2024-03-23T19:24:20.626Z] raven-main +[2024-03-23T19:24:20.626Z] + set +x +[2024-03-23T19:24:20.626Z] + rm -rf RavenPy-* +[2024-03-23T19:24:20.626Z] + ls +[2024-03-23T19:24:20.626Z] + grep RavenPy +[2024-03-23T19:24:20.626Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-23T19:24:20.626Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-23T19:24:20.626Z] + shift +[2024-03-23T19:24:20.626Z] + branch=master +[2024-03-23T19:24:20.626Z] + shift +[2024-03-23T19:24:20.626Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-23T19:24:20.626Z] + tar xz +[2024-03-23T19:24:22.519Z] + ls +[2024-03-23T19:24:22.519Z] + grep RavenPy +[2024-03-23T19:24:22.519Z] RavenPy-master +[2024-03-23T19:24:22.519Z] + set +x +[2024-03-23T19:24:22.519Z] + rm -rf esgf-compute-api-* +[2024-03-23T19:24:22.519Z] + ls +[2024-03-23T19:24:22.519Z] + grep esgf-compute-api +[2024-03-23T19:24:22.519Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-23T19:24:22.519Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-23T19:24:22.519Z] + shift +[2024-03-23T19:24:22.519Z] + branch=devel +[2024-03-23T19:24:22.519Z] + shift +[2024-03-23T19:24:22.520Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-03-23T19:24:22.520Z] + tar xz +[2024-03-23T19:24:23.446Z] + ls +[2024-03-23T19:24:23.446Z] + grep esgf-compute-api +[2024-03-23T19:24:23.446Z] esgf-compute-api-devel +[2024-03-23T19:24:23.446Z] + set +x +[2024-03-23T19:24:23.446Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:23.446Z] + sed s@/@-@g +[2024-03-23T19:24:23.446Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:23.446Z] + echo Ouranosinc/pavics-sdi +[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g +[2024-03-23T19:24:23.446Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-23T19:24:23.446Z] + echo master +[2024-03-23T19:24:23.446Z] + sed s@/@-@g +[2024-03-23T19:24:23.446Z] + FINCH_BRANCH=master +[2024-03-23T19:24:23.446Z] + echo bird-house/finch +[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g +[2024-03-23T19:24:23.446Z] + FINCH_REPO_NAME=finch +[2024-03-23T19:24:23.446Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:23.446Z] + sed s@/@-@g +[2024-03-23T19:24:23.446Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:23.446Z] + echo Ouranosinc/PAVICS-landing +[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g +[2024-03-23T19:24:23.446Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-23T19:24:23.446Z] + echo main +[2024-03-23T19:24:23.446Z] + sed s@/@-@g +[2024-03-23T19:24:23.446Z] + RAVEN_BRANCH=main +[2024-03-23T19:24:23.446Z] + echo Ouranosinc/raven +[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g +[2024-03-23T19:24:23.446Z] + RAVEN_REPO_NAME=raven +[2024-03-23T19:24:23.446Z] + echo master +[2024-03-23T19:24:23.446Z] + sed s@/@-@g +[2024-03-23T19:24:23.446Z] + RAVENPY_BRANCH=master +[2024-03-23T19:24:23.446Z] + echo CSHS-CWRA/RavenPy +[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g +[2024-03-23T19:24:23.446Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-23T19:24:23.446Z] + echo devel +[2024-03-23T19:24:23.446Z] + sed s@/@-@g +[2024-03-23T19:24:23.446Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-23T19:24:23.446Z] + echo ESGF/esgf-compute-api +[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g +[2024-03-23T19:24:23.446Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-23T19:24:23.446Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T19:24:23.446Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:23.446Z] + echo finch-master +[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T19:24:23.446Z] + FINCH_DIR=finch-master +[2024-03-23T19:24:23.446Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T19:24:23.446Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-03-23T19:24:23.446Z] + echo raven-main +[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T19:24:23.446Z] + RAVEN_DIR=raven-main +[2024-03-23T19:24:23.446Z] + echo RavenPy-master +[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T19:24:23.446Z] + RAVENPY_DIR=RavenPy-master +[2024-03-23T19:24:23.446Z] + echo esgf-compute-api-devel +[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T19:24:23.446Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-23T19:24:23.446Z] + echo true +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + VERIFY_SSL=true +[2024-03-23T19:24:23.446Z] + [ xtrue = xfalse ] +[2024-03-23T19:24:23.446Z] + rm -v finch-master/setup.cfg +[2024-03-23T19:24:23.446Z] removed 'finch-master/setup.cfg' +[2024-03-23T19:24:23.446Z] + rm -v raven-main/setup.cfg +[2024-03-23T19:24:23.446Z] removed 'raven-main/setup.cfg' +[2024-03-23T19:24:23.446Z] + rm -v raven-main/pyproject.toml +[2024-03-23T19:24:23.446Z] removed 'raven-main/pyproject.toml' +[2024-03-23T19:24:23.446Z] + rm -v RavenPy-master/setup.cfg +[2024-03-23T19:24:23.446Z] removed 'RavenPy-master/setup.cfg' +[2024-03-23T19:24:23.446Z] + rm -v RavenPy-master/tox.ini +[2024-03-23T19:24:23.446Z] removed 'RavenPy-master/tox.ini' +[2024-03-23T19:24:23.446Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-23T19:24:23.446Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-23T19:24:23.446Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-23T19:24:23.446Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-23T19:24:23.446Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-23T19:24:23.446Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-23T19:24:23.446Z] + echo false +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + TEST_MAGPIE_AUTH=false +[2024-03-23T19:24:23.446Z] + echo true +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + TEST_PAVICS_SDI_REPO=true +[2024-03-23T19:24:23.446Z] + echo false +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-23T19:24:23.446Z] + echo true +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + TEST_FINCH_REPO=true +[2024-03-23T19:24:23.446Z] + echo true +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + TEST_PAVICS_LANDING_REPO=true +[2024-03-23T19:24:23.446Z] + echo false +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + TEST_RAVEN_REPO=false +[2024-03-23T19:24:23.446Z] + echo false +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + TEST_RAVENPY_REPO=false +[2024-03-23T19:24:23.446Z] + echo false +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-23T19:24:23.446Z] + echo true +[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] +[2024-03-23T19:24:23.446Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-03-23T19:24:23.446Z] + NOTEBOOKS_TO_TEST= +[2024-03-23T19:24:23.446Z] + [ xfalse = xtrue ] +[2024-03-23T19:24:23.446Z] + [ xtrue = xtrue ] +[2024-03-23T19:24:23.446Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb +[2024-03-23T19:24:23.446Z] + [ xfalse = xtrue ] +[2024-03-23T19:24:23.446Z] + [ xtrue = xtrue ] +[2024-03-23T19:24:23.446Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-03-23T19:24:23.446Z] + [ xtrue = xtrue ] +[2024-03-23T19:24:23.446Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb +[2024-03-23T19:24:23.447Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-23T19:24:23.447Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-03-23T19:24:23.447Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-23T19:24:23.447Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-23T19:24:23.447Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-23T19:24:23.447Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-03-23T19:24:23.447Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators +[2024-03-23T19:24:23.447Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-23T19:24:23.447Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-03-23T19:24:23.447Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-03-23T19:24:23.447Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.477Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.477Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.477Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-03-23T19:24:24.477Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-03-23T19:24:24.477Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-03-23T19:24:24.477Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-03-23T19:24:24.477Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' +[2024-03-23T19:24:24.477Z] + [ xfalse = xtrue ] +[2024-03-23T19:24:24.477Z] + [ xfalse = xtrue ] +[2024-03-23T19:24:24.477Z] + [ xfalse = xtrue ] +[2024-03-23T19:24:24.477Z] + [ xtrue = xtrue ] +[2024-03-23T19:24:24.477Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-23T19:24:24.477Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-03-23T19:24:24.477Z] + [ -n ] +[2024-03-23T19:24:24.477Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-23T19:24:24.477Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-23T19:24:24.477Z] Will run notebooks against pavics.ouranos.ca +[2024-03-23T19:24:24.477Z] + [ -z ] +[2024-03-23T19:24:24.477Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-03-23T19:24:24.477Z] + git diff +[2024-03-23T19:24:24.478Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-23T19:24:24.478Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-03-23T19:24:29.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-23T19:24:29.733Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-23T19:24:29.733Z] ============================= test session starts ============================== +[2024-03-23T19:24:29.733Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-03-23T19:24:29.733Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-03-23T19:24:29.733Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-03-23T19:24:29.733Z] collected 220 items +[2024-03-23T19:24:29.733Z] +[2024-03-23T19:24:32.273Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-03-23T19:25:00.655Z] ..... [ 2%] +[2024-03-23T19:25:03.180Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-03-23T19:25:08.516Z] ...... [ 5%] +[2024-03-23T19:25:10.411Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-03-23T19:25:16.514Z] ..... [ 8%] +[2024-03-23T19:25:17.147Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-03-23T19:25:27.554Z] ....... [ 12%] +[2024-03-23T19:25:35.673Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] +[2024-03-23T19:28:09.822Z] ........... [ 17%] +[2024-03-23T19:28:11.736Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-03-23T19:28:19.768Z] ............... [ 25%] +[2024-03-23T19:28:22.301Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-03-23T19:28:27.423Z] .... [ 27%] +[2024-03-23T19:28:29.324Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] +[2024-03-23T19:28:34.647Z] ..... [ 30%] +[2024-03-23T19:28:42.777Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-03-23T19:28:48.739Z] ..... [ 32%] +[2024-03-23T19:28:50.647Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] +[2024-03-23T19:28:56.049Z] ...... [ 35%] +[2024-03-23T19:28:57.417Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-03-23T19:28:59.992Z] .... [ 38%] +[2024-03-23T19:29:18.099Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-03-23T19:30:41.910Z] ...F..F............F......F [ 50%] +[2024-03-23T19:30:42.178Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-03-23T19:30:43.881Z] ... [ 52%] +[2024-03-23T19:30:45.269Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-03-23T19:31:03.041Z] ........................ [ 64%] +[2024-03-23T19:31:06.332Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-03-23T19:31:11.096Z] ..... [ 66%] +[2024-03-23T19:31:20.138Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] +[2024-03-23T19:31:28.148Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-03-23T19:31:29.528Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-03-23T19:31:32.839Z] ...... [ 77%] +[2024-03-23T19:31:39.412Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb F [ 78%] +[2024-03-23T19:31:51.698Z] F.F.......... [ 84%] +[2024-03-23T19:32:01.801Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-03-23T19:32:21.787Z] .F..s [ 86%] +[2024-03-23T19:32:29.911Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-03-23T19:32:41.798Z] .F. [ 88%] +[2024-03-23T19:32:54.044Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-03-23T19:33:51.800Z] ...... [ 91%] +[2024-03-23T19:33:51.800Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-03-23T19:35:52.299Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] =================================== FAILURES =================================== +[2024-03-23T19:35:52.299Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 4 _ +[2024-03-23T19:35:52.299Z] Notebook cell execution failed +[2024-03-23T19:35:52.299Z] Cell 4: Cell outputs differ +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] Input: +[2024-03-23T19:35:52.299Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) +[2024-03-23T19:35:52.299Z] plt.title("Target regular grid"); +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] Traceback: +[2024-03-23T19:35:52.299Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-23T19:35:52.299Z]
+[2024-03-23T19:35:52.299Z] ============ disagrees with newly computed (test) output: +[2024-03-23T19:35:52.299Z] Text(0.5, 1.0, 'Target regular grid') +[2024-03-23T19:35:52.299Z]
+[2024-03-23T19:35:52.299Z] >>>>>>>>>>>> +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 7 _ +[2024-03-23T19:35:52.299Z] Notebook cell execution failed +[2024-03-23T19:35:52.299Z] Cell 7: Cell outputs differ +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] Input: +[2024-03-23T19:35:52.299Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. +[2024-03-23T19:35:52.299Z] warnings.filterwarnings("ignore", category=FutureWarning) +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] # Apply the regridding weights to the input sea ice concentration data +[2024-03-23T19:35:52.299Z] sic_bil = reg_bil(ds_in.siconc) +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] # Plot the results +[2024-03-23T19:35:52.299Z] sic_bil.isel(time=0).plot(cmap=cmap) +[2024-03-23T19:35:52.299Z] plt.title("Regridded sic data (Jan 2020)"); +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] Traceback: +[2024-03-23T19:35:52.299Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-23T19:35:52.299Z]
+[2024-03-23T19:35:52.299Z] ============ disagrees with newly computed (test) output: +[2024-03-23T19:35:52.299Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') +[2024-03-23T19:35:52.299Z]
+[2024-03-23T19:35:52.299Z] >>>>>>>>>>>> +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 20 _ +[2024-03-23T19:35:52.299Z] Notebook cell execution failed +[2024-03-23T19:35:52.299Z] Cell 20: Cell outputs differ +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] Input: +[2024-03-23T19:35:52.299Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") +[2024-03-23T19:35:52.299Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] fig, ax = plt.subplots(figsize=(6, 4)) +[2024-03-23T19:35:52.299Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) +[2024-03-23T19:35:52.299Z] ax.set_xlim(210, 320) +[2024-03-23T19:35:52.299Z] ax.set_ylim(38, 86) +[2024-03-23T19:35:52.299Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") +[2024-03-23T19:35:52.299Z] ax.annotate( +[2024-03-23T19:35:52.299Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", +[2024-03-23T19:35:52.299Z] (280, 40), +[2024-03-23T19:35:52.299Z] xytext=(1.3, 0.3), +[2024-03-23T19:35:52.299Z] xycoords="data", +[2024-03-23T19:35:52.299Z] textcoords="axes fraction", +[2024-03-23T19:35:52.299Z] fontsize="x-large", +[2024-03-23T19:35:52.299Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), +[2024-03-23T19:35:52.299Z] ); +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.299Z] Traceback: +[2024-03-23T19:35:52.299Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-23T19:35:52.299Z]
+[2024-03-23T19:35:52.299Z] ============ disagrees with newly computed (test) output: +[2024-03-23T19:35:52.299Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') +[2024-03-23T19:35:52.299Z]
+[2024-03-23T19:35:52.299Z] >>>>>>>>>>>> +[2024-03-23T19:35:52.299Z] +[2024-03-23T19:35:52.300Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 27 _ +[2024-03-23T19:35:52.300Z] Notebook cell execution failed +[2024-03-23T19:35:52.300Z] Cell 27: Cell outputs differ +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] Input: +[2024-03-23T19:35:52.300Z] # Now we can plot easily the results as a choropleth map! +[2024-03-23T19:35:52.300Z] ax = shapes_data.plot( +[2024-03-23T19:35:52.300Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} +[2024-03-23T19:35:52.300Z] ) +[2024-03-23T19:35:52.300Z] ax.set_ylabel("Latitude") +[2024-03-23T19:35:52.300Z] ax.set_xlabel("Longitude"); +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] Traceback: +[2024-03-23T19:35:52.300Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: +[2024-03-23T19:35:52.300Z]
+[2024-03-23T19:35:52.300Z] ============ disagrees with newly computed (test) output: +[2024-03-23T19:35:52.300Z] Text(0.5, 91.20243008191655, 'Longitude') +[2024-03-23T19:35:52.300Z]
+[2024-03-23T19:35:52.300Z] >>>>>>>>>>>> +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 _ +[2024-03-23T19:35:52.300Z] Notebook cell execution failed +[2024-03-23T19:35:52.300Z] Cell 0: Cell outputs differ +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] Input: +[2024-03-23T19:35:52.300Z] import warnings +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] import xarray as xr +[2024-03-23T19:35:52.300Z] from IPython.display import display # Fancy representation of xarray objects +[2024-03-23T19:35:52.300Z] from siphon.catalog import TDSCatalog +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] warnings.simplefilter("ignore") +[2024-03-23T19:35:52.300Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] # Create Catalog +[2024-03-23T19:35:52.300Z] cat = TDSCatalog(url) +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] # DAP link for this demo +[2024-03-23T19:35:52.300Z] ds_url = cat.datasets[0].access_urls["OPENDAP"] +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] # xarray.Dataset +[2024-03-23T19:35:52.300Z] ds = xr.open_dataset(ds_url, chunks=dict(time=256 * 2, lon=32, lat=32)) +[2024-03-23T19:35:52.300Z] display(ds) +[2024-03-23T19:35:52.300Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] Traceback: +[2024-03-23T19:35:52.300Z]  mismatch 'text/plain' +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] assert reference_output == test_output failed: +[2024-03-23T19:35:52.300Z] +[2024-03-23T19:35:52.300Z] ' 20 plt.title(pos_f.description.split(".")[0]) +[2024-03-23T19:35:52.303Z]  22 display() +[2024-03-23T19:35:52.303Z] +[2024-03-23T19:35:52.303Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-03-23T19:35:52.303Z]  275 with suppress(KeyError): +[2024-03-23T19:35:52.303Z]  276 return source[name] +[2024-03-23T19:35:52.303Z] --> 277 raise AttributeError( +[2024-03-23T19:35:52.303Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-03-23T19:35:52.303Z]  279 ) +[2024-03-23T19:35:52.303Z] +[2024-03-23T19:35:52.303Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-03-23T19:35:52.303Z] +[2024-03-23T19:35:52.303Z] =========================== short test summary info ============================ +[2024-03-23T19:35:52.303Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 4 +[2024-03-23T19:35:52.303Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 7 +[2024-03-23T19:35:52.303Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 20 +[2024-03-23T19:35:52.303Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 27 +[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 +[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 1 +[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 3 +[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 +[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-03-23T19:35:52.304Z] ============= 9 failed, 210 passed, 1 skipped in 682.66s (0:11:22) ============= +[2024-03-23T19:35:52.304Z] + EXIT_CODE=1 +[2024-03-23T19:35:52.304Z] + echo true +[2024-03-23T19:35:52.304Z] + tr [:upper:] [:lower:] +[2024-03-23T19:35:52.304Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-23T19:35:52.304Z] + [ xtrue = xtrue ] +[2024-03-23T19:35:52.304Z] + mkdir -p buildout +[2024-03-23T19:35:52.304Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-03-23T19:35:52.304Z] + filename=CaSR_basic.ipynb +[2024-03-23T19:35:52.304Z] + echo CaSR_basic.ipynb +[2024-03-23T19:35:52.304Z] + sed s/.ipynb$// +[2024-03-23T19:35:52.304Z] + filename=CaSR_basic +[2024-03-23T19:35:52.304Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-03-23T19:35:52.304Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-03-23T19:35:54.209Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-03-23T19:36:32.954Z] [NbConvertApp] Writing 694582 bytes to buildout/CaSR_basic.output.ipynb +[2024-03-23T19:36:32.954Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-03-23T19:36:32.954Z] + filename=WCS_example.ipynb +[2024-03-23T19:36:32.954Z] + echo WCS_example.ipynb +[2024-03-23T19:36:32.954Z] + sed s/.ipynb$// +[2024-03-23T19:36:32.954Z] + filename=WCS_example +[2024-03-23T19:36:32.954Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-03-23T19:36:32.955Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-03-23T19:36:32.955Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-03-23T19:36:41.107Z] [NbConvertApp] Writing 144967 bytes to buildout/WCS_example.output.ipynb +[2024-03-23T19:36:41.107Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-03-23T19:36:41.107Z] + filename=WFS_example.ipynb +[2024-03-23T19:36:41.107Z] + sed s/.ipynb$// +[2024-03-23T19:36:41.107Z] + echo WFS_example.ipynb +[2024-03-23T19:36:41.107Z] + filename=WFS_example +[2024-03-23T19:36:41.107Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-03-23T19:36:41.107Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-03-23T19:36:41.674Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-03-23T19:36:51.646Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb +[2024-03-23T19:36:51.646Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-03-23T19:36:51.646Z] + filename=WMS_example.ipynb +[2024-03-23T19:36:51.646Z] + echo WMS_example.ipynb +[2024-03-23T19:36:51.646Z] + sed s/.ipynb$// +[2024-03-23T19:36:51.646Z] + filename=WMS_example +[2024-03-23T19:36:51.646Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-03-23T19:36:51.646Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-03-23T19:36:52.587Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-03-23T19:36:59.164Z] [NbConvertApp] Writing 46204 bytes to buildout/WMS_example.output.ipynb +[2024-03-23T19:36:59.164Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-03-23T19:36:59.164Z] + filename=climex.ipynb +[2024-03-23T19:36:59.164Z] + sed s/.ipynb$// +[2024-03-23T19:36:59.164Z] + echo climex.ipynb +[2024-03-23T19:36:59.164Z] + filename=climex +[2024-03-23T19:36:59.164Z] + [ -e buildout/climex.output.ipynb ] +[2024-03-23T19:36:59.164Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-03-23T19:37:00.548Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook +[2024-03-23T19:39:37.319Z] 2024-03-23 19:39:36,488 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. +[2024-03-23T19:39:37.319Z] Traceback (most recent call last): +[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read +[2024-03-23T19:39:37.319Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) +[2024-03-23T19:39:37.319Z] tornado.iostream.StreamClosedError: Stream is closed +[2024-03-23T19:39:37.319Z] +[2024-03-23T19:39:37.319Z] The above exception was the direct cause of the following exception: +[2024-03-23T19:39:37.319Z] +[2024-03-23T19:39:37.319Z] Traceback (most recent call last): +[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat +[2024-03-23T19:39:37.319Z] response = await retry_operation( +[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation +[2024-03-23T19:39:37.319Z] return await retry( +[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry +[2024-03-23T19:39:37.319Z] return await coro() +[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc +[2024-03-23T19:39:37.319Z] return await send_recv(comm=comm, op=key, **kwargs) +[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv +[2024-03-23T19:39:37.319Z] response = await comm.read(deserializers=deserializers) +[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read +[2024-03-23T19:39:37.319Z] convert_stream_closed_error(self, e) +[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error +[2024-03-23T19:39:37.319Z] raise CommClosedError(f"in {obj}: {exc}") from exc +[2024-03-23T19:39:37.319Z] distributed.comm.core.CommClosedError: in : Stream is closed +[2024-03-23T19:39:41.512Z] [NbConvertApp] Writing 1788861 bytes to buildout/climex.output.ipynb +[2024-03-23T19:39:41.512Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-23T19:39:41.512Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-03-23T19:39:41.512Z] + + echo eccc-geoapi-climate-stations.ipynb +[2024-03-23T19:39:41.512Z] sed s/.ipynb$// +[2024-03-23T19:39:41.512Z] + filename=eccc-geoapi-climate-stations +[2024-03-23T19:39:41.512Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-03-23T19:39:41.512Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-03-23T19:39:43.423Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-03-23T19:39:55.621Z] [NbConvertApp] Writing 279293 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-03-23T19:39:55.621Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-23T19:39:55.621Z] + filename=eccc-geoapi-xclim.ipynb +[2024-03-23T19:39:55.621Z] + sed s/.ipynb$// +[2024-03-23T19:39:55.621Z] + echo eccc-geoapi-xclim.ipynb +[2024-03-23T19:39:55.621Z] + filename=eccc-geoapi-xclim +[2024-03-23T19:39:55.621Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-03-23T19:39:55.621Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-03-23T19:39:56.191Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-03-23T19:40:06.225Z] [NbConvertApp] Writing 108449 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-03-23T19:40:06.225Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-03-23T19:40:06.225Z] + filename=esgf-dap.ipynb +[2024-03-23T19:40:06.225Z] + echo esgf-dap.ipynb +[2024-03-23T19:40:06.225Z] + sed s/.ipynb$// +[2024-03-23T19:40:06.225Z] + filename=esgf-dap +[2024-03-23T19:40:06.225Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-03-23T19:40:06.225Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-03-23T19:40:08.135Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-03-23T19:40:16.255Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb +[2024-03-23T19:40:16.255Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-03-23T19:40:16.256Z] + filename=forecasts.ipynb +[2024-03-23T19:40:16.256Z] + echo forecasts.ipynb +[2024-03-23T19:40:16.256Z] + sed s/.ipynb$// +[2024-03-23T19:40:16.256Z] + filename=forecasts +[2024-03-23T19:40:16.256Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-03-23T19:40:16.256Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-03-23T19:40:18.164Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook +[2024-03-23T19:40:36.261Z] [NbConvertApp] Writing 181147 bytes to buildout/forecasts.output.ipynb +[2024-03-23T19:40:36.261Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-23T19:40:36.261Z] + filename=jupyter_extensions.ipynb +[2024-03-23T19:40:36.261Z] + echo jupyter_extensions.ipynb +[2024-03-23T19:40:36.261Z] + sed s/.ipynb$// +[2024-03-23T19:40:36.261Z] + filename=jupyter_extensions +[2024-03-23T19:40:36.261Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-03-23T19:40:36.261Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-03-23T19:40:37.699Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-03-23T19:40:39.600Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb +[2024-03-23T19:40:39.600Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-03-23T19:40:39.600Z] + filename=opendap.ipynb +[2024-03-23T19:40:39.600Z] + + echosed opendap.ipynb s/.ipynb$// +[2024-03-23T19:40:39.600Z] +[2024-03-23T19:40:39.600Z] + filename=opendap +[2024-03-23T19:40:39.600Z] + [ -e buildout/opendap.output.ipynb ] +[2024-03-23T19:40:39.600Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-03-23T19:40:40.970Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook +[2024-03-23T19:40:49.098Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb +[2024-03-23T19:40:49.357Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-23T19:40:49.357Z] + filename=pavics_thredds.ipynb +[2024-03-23T19:40:49.357Z] + echo pavics_thredds.ipynb +[2024-03-23T19:40:49.357Z] + sed s/.ipynb$// +[2024-03-23T19:40:49.357Z] + filename=pavics_thredds +[2024-03-23T19:40:49.357Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-03-23T19:40:49.358Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-03-23T19:40:51.252Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-03-23T19:40:54.534Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-23T19:40:54.534Z] context: Access to service is forbidden. +[2024-03-23T19:40:54.534Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-03-23T19:40:54.534Z] context: Access to service is forbidden. +[2024-03-23T19:40:55.478Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb +[2024-03-23T19:40:55.736Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-03-23T19:40:55.736Z] + filename=regridding.ipynb +[2024-03-23T19:40:55.736Z] + echo regridding.ipynb +[2024-03-23T19:40:55.736Z] + sed s/.ipynb$// +[2024-03-23T19:40:55.736Z] + filename=regridding +[2024-03-23T19:40:55.736Z] + [ -e buildout/regridding.output.ipynb ] +[2024-03-23T19:40:55.737Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-03-23T19:40:57.648Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook +[2024-03-23T19:42:34.126Z] [NbConvertApp] Writing 1239788 bytes to buildout/regridding.output.ipynb +[2024-03-23T19:42:34.126Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-03-23T19:42:34.126Z] + filename=rendering.ipynb +[2024-03-23T19:42:34.126Z] + echo rendering.ipynb +[2024-03-23T19:42:34.126Z] + sed s/.ipynb$// +[2024-03-23T19:42:34.126Z] + filename=rendering +[2024-03-23T19:42:34.126Z] + [ -e buildout/rendering.output.ipynb ] +[2024-03-23T19:42:34.126Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-03-23T19:42:34.126Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook +[2024-03-23T19:42:36.667Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb +[2024-03-23T19:42:36.667Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-03-23T19:42:36.667Z] + filename=subset-user-input.ipynb +[2024-03-23T19:42:36.667Z] + echo subset-user-input.ipynb +[2024-03-23T19:42:36.667Z] + sed s/.ipynb$// +[2024-03-23T19:42:36.667Z] + filename=subset-user-input +[2024-03-23T19:42:36.667Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-03-23T19:42:36.667Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-03-23T19:42:38.036Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-03-23T19:42:59.990Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb +[2024-03-23T19:42:59.990Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-03-23T19:42:59.990Z] + filename=subsetting.ipynb +[2024-03-23T19:42:59.990Z] + echo subsetting.ipynb +[2024-03-23T19:42:59.990Z] + sed s/.ipynb$// +[2024-03-23T19:42:59.990Z] + filename=subsetting +[2024-03-23T19:42:59.990Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-03-23T19:42:59.990Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-03-23T19:43:00.559Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook +[2024-03-23T19:43:10.544Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb +[2024-03-23T19:43:10.544Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-23T19:43:10.544Z] + filename=dap_subset.ipynb +[2024-03-23T19:43:10.544Z] + echo dap_subset.ipynb +[2024-03-23T19:43:10.544Z] + sed s/.ipynb$// +[2024-03-23T19:43:10.544Z] + filename=dap_subset +[2024-03-23T19:43:10.544Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-03-23T19:43:10.544Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-03-23T19:43:11.483Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-03-23T19:43:21.457Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb +[2024-03-23T19:43:21.457Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-23T19:43:21.457Z] + filename=finch-usage.ipynb +[2024-03-23T19:43:21.457Z] + echo finch-usage.ipynb +[2024-03-23T19:43:21.457Z] + sed s/.ipynb$// +[2024-03-23T19:43:21.457Z] + filename=finch-usage +[2024-03-23T19:43:21.457Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-03-23T19:43:21.457Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-03-23T19:43:23.366Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-03-23T19:43:33.340Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb +[2024-03-23T19:43:33.340Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-23T19:43:33.340Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-23T19:43:33.340Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-23T19:43:33.340Z] + sed s/.ipynb$// +[2024-03-23T19:43:33.340Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-03-23T19:43:33.340Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-03-23T19:43:33.340Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-03-23T19:43:35.247Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-03-23T19:43:40.507Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-03-23T19:43:40.507Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-23T19:43:40.507Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-23T19:43:40.507Z] + + sed s/.ipynb$// +[2024-03-23T19:43:40.507Z] echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-23T19:43:40.507Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-03-23T19:43:40.507Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-03-23T19:43:40.507Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-03-23T19:43:42.462Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-03-23T19:44:04.413Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-03-23T19:44:04.413Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-23T19:44:04.413Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-23T19:44:04.413Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-23T19:44:04.413Z] + sed s/.ipynb$// +[2024-03-23T19:44:04.414Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-03-23T19:44:04.414Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-03-23T19:44:04.414Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-03-23T19:44:04.414Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-03-23T19:48:41.078Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). +[2024-03-23T19:48:41.078Z] 2024-03-23 19:48:29,080 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-23T19:48:41.078Z] 2024-03-23 19:48:29,080 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-23T19:48:41.078Z] 2024-03-23 19:48:29,086 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-23T19:48:41.078Z] 2024-03-23 19:48:29,086 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-03-23T19:48:41.078Z] Traceback (most recent call last): +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply +[2024-03-23T19:48:41.078Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async +[2024-03-23T19:48:41.078Z] result = await obj +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg +[2024-03-23T19:48:41.078Z] raise Empty +[2024-03-23T19:48:41.078Z] _queue.Empty +[2024-03-23T19:48:41.078Z] +[2024-03-23T19:48:41.078Z] During handling of the above exception, another exception occurred: +[2024-03-23T19:48:41.078Z] +[2024-03-23T19:48:41.078Z] Traceback (most recent call last): +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-03-23T19:48:41.078Z] sys.exit(main()) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance +[2024-03-23T19:48:41.078Z] super().launch_instance(argv=argv, **kwargs) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance +[2024-03-23T19:48:41.078Z] app.start() +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start +[2024-03-23T19:48:41.078Z] self.convert_notebooks() +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks +[2024-03-23T19:48:41.078Z] self.convert_single_notebook(notebook_filename) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook +[2024-03-23T19:48:41.078Z] output, resources = self.export_single_notebook( +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook +[2024-03-23T19:48:41.078Z] output, resources = self.exporter.from_filename( +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-03-23T19:48:41.078Z] return self.from_file(f, resources=resources, **kw) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-03-23T19:48:41.078Z] return self.from_notebook_node( +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-03-23T19:48:41.078Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-03-23T19:48:41.078Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess +[2024-03-23T19:48:41.078Z] nbc, resc = preprocessor(nbc, resc) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-03-23T19:48:41.078Z] return self.preprocess(nb, resources) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess +[2024-03-23T19:48:41.078Z] self.preprocess_cell(cell, resources, index) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell +[2024-03-23T19:48:41.078Z] cell = self.execute_cell(cell, index, store_history=True) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped +[2024-03-23T19:48:41.078Z] return loop.run_until_complete(inner) +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-03-23T19:48:41.078Z] return future.result() +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell +[2024-03-23T19:48:41.078Z] exec_reply = await self.task_poll_for_reply +[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply +[2024-03-23T19:48:41.078Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) +[2024-03-23T19:48:41.079Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout +[2024-03-23T19:48:41.079Z] raise CellTimeoutError.error_from_timeout_and_cell( +[2024-03-23T19:48:41.079Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. +[2024-03-23T19:48:41.079Z] The message was: Cell execution timed out. +[2024-03-23T19:48:41.079Z] Here is a preview of the cell contents: +[2024-03-23T19:48:41.079Z] ------------------- +[2024-03-23T19:48:41.079Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] +[2024-03-23T19:48:41.079Z] ... +[2024-03-23T19:48:41.079Z] [' print("finished")', ' ', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] +[2024-03-23T19:48:41.079Z] ------------------- +[2024-03-23T19:48:41.079Z] +[2024-03-23T19:48:41.079Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-23T19:48:41.079Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-23T19:48:41.079Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-23T19:48:41.079Z] + sed s/.ipynb$// +[2024-03-23T19:48:41.079Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-03-23T19:48:41.079Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-03-23T19:48:41.079Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-03-23T19:48:41.079Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-03-23T19:48:53.277Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-03-23T19:48:53.277Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-23T19:48:53.277Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-23T19:48:53.277Z] + sed s/.ipynb$// +[2024-03-23T19:48:53.277Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-23T19:48:53.277Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-03-23T19:48:53.277Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-03-23T19:48:53.277Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-03-23T19:48:55.181Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-03-23T19:50:02.865Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-03-23T19:50:02.865Z] + basename notebooks/hummingbird.ipynb +[2024-03-23T19:50:02.865Z] + filename=hummingbird.ipynb +[2024-03-23T19:50:02.865Z] + echo hummingbird.ipynb +[2024-03-23T19:50:02.865Z] + sed s/.ipynb$// +[2024-03-23T19:50:02.865Z] + filename=hummingbird +[2024-03-23T19:50:02.865Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-03-23T19:50:02.865Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-03-23T19:50:02.865Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-03-23T19:50:02.865Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb +[2024-03-23T19:50:02.865Z] + basename notebooks/stress-tests.ipynb +[2024-03-23T19:50:02.865Z] + filename=stress-tests.ipynb +[2024-03-23T19:50:02.865Z] + echo stress-tests.ipynb +[2024-03-23T19:50:02.865Z] + sed s/.ipynb$// +[2024-03-23T19:50:02.865Z] + filename=stress-tests +[2024-03-23T19:50:02.865Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-03-23T19:50:02.866Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-03-23T19:50:04.245Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-03-23T19:52:10.749Z] [NbConvertApp] Writing 428128 bytes to buildout/stress-tests.output.ipynb +[2024-03-23T19:52:10.749Z] + exit 1 +[2024-03-23T19:52:10.749Z] + EXIT_CODE=1 +[2024-03-23T19:52:10.749Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-23T19:52:10.749Z] + mkdir -p buildout/env-dump +[2024-03-23T19:52:10.749Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-23T19:52:10.749Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-23T19:52:10.749Z] + conda env export -n birdy +[2024-03-23T19:52:13.291Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-23T19:52:13.291Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-23T19:52:13.291Z] + conda list -n birdy --explicit +[2024-03-23T19:52:23.281Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-23T19:52:23.281Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-23T19:52:23.281Z] + pip freeze +[2024-03-23T19:52:24.221Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -1753,41 +1134,41 @@ $ docker top 983d2dda09c5e58f84e165072cad4fd912e034462e027a43442d196da0ca8c47 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-16T18:49:02.541Z] Archiving artifacts -[2024-03-16T18:49:02.563Z] Recording fingerprints +[2024-03-23T19:52:24.521Z] Archiving artifacts +[2024-03-23T19:52:24.546Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:02.599Z] Archiving artifacts -[2024-03-16T18:49:03.305Z] Recording fingerprints +[2024-03-23T19:52:24.583Z] Archiving artifacts +[2024-03-23T19:52:25.248Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:04.250Z] Archiving artifacts -[2024-03-16T18:49:04.263Z] Recording fingerprints +[2024-03-23T19:52:25.369Z] Archiving artifacts +[2024-03-23T19:52:25.387Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:04.292Z] Archiving artifacts -[2024-03-16T18:49:04.311Z] Recording fingerprints +[2024-03-23T19:52:25.415Z] Archiving artifacts +[2024-03-23T19:52:25.435Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:04.390Z] Archiving artifacts -[2024-03-16T18:49:04.416Z] Recording fingerprints +[2024-03-23T19:52:25.462Z] Archiving artifacts +[2024-03-23T19:52:25.488Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:04.447Z] Archiving artifacts -[2024-03-16T18:49:04.510Z] Recording fingerprints +[2024-03-23T19:52:25.521Z] Archiving artifacts +[2024-03-23T19:52:25.560Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:04.955Z] Archiving artifacts -[2024-03-16T18:49:04.978Z] Recording fingerprints +[2024-03-23T19:52:25.712Z] Archiving artifacts +[2024-03-23T19:52:25.725Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:05.049Z] Archiving artifacts -[2024-03-16T18:49:05.113Z] Recording fingerprints +[2024-03-23T19:52:25.751Z] Archiving artifacts +[2024-03-23T19:52:25.787Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:05.253Z] Archiving artifacts -[2024-03-16T18:49:05.811Z] Recording fingerprints +[2024-03-23T19:52:25.898Z] Archiving artifacts +[2024-03-23T19:52:26.243Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:06.243Z] Archiving artifacts -[2024-03-16T18:49:07.179Z] Recording fingerprints +[2024-03-23T19:52:26.332Z] Archiving artifacts +[2024-03-23T19:52:27.141Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T18:49:07.441Z] Archiving artifacts -[2024-03-16T18:49:07.460Z] Recording fingerprints +[2024-03-23T19:52:27.536Z] Archiving artifacts +[2024-03-23T19:52:27.557Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-16T18:49:07.667Z] Sending e-mails to: vu.long@ouranos.ca +[2024-03-23T19:52:27.633Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -1797,8 +1178,8 @@ $ docker top 983d2dda09c5e58f84e165072cad4fd912e034462e027a43442d196da0ca8c47 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 983d2dda09c5e58f84e165072cad4fd912e034462e027a43442d196da0ca8c47 -$ docker rm -f 983d2dda09c5e58f84e165072cad4fd912e034462e027a43442d196da0ca8c47 +$ docker stop --time=1 243fa8c5fdb17a3f19bb778abbabe55b4c4558e10481f75293ba2f6b4aedab03 +$ docker rm -f 243fa8c5fdb17a3f19bb778abbabe55b4c4558e10481f75293ba2f6b4aedab03 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv @@ -1807,3 +1188,4 @@ $ docker rm -f 983d2dda09c5e58f84e165072cad4fd912e034462e027a43442d196da0ca8c47 [Pipeline] End of Pipeline ERROR: script returned exit code 1 Finished: FAILURE + From 090110e0e0a1dbdde987b39fafacc6f55fbea122 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Mon, 25 Mar 2024 15:43:44 -0400 Subject: [PATCH 049/104] docker: py310-240323: initial jenkins raven nb --- .../jenkins-buildlogs-raven.txt | 4015 ++++++++--------- 1 file changed, 1977 insertions(+), 2038 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index f5f3d75..89b60bc 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -17,7 +17,7 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d +Obtained Jenkinsfile from e42adfc17796a3fd14a4cc28d45c30d6b003480a Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -29,2047 +29,1986 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d (new-docker-build) -Commit message: "release: update to use image pavics/workflow-tests:py310-240316" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision e42adfc17796a3fd14a4cc28d45c30d6b003480a (new-docker-build) +Commit message: "docker: py310-240323: build log" > git config core.sparsecheckout # timeout=10 - > git checkout -f 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d # timeout=10 - > git rev-list --no-walk 232b5eeec0e7a6b752788db1ce6ba6bded5ab31d # timeout=10 + > git checkout -f e42adfc17796a3fd14a4cc28d45c30d6b003480a # timeout=10 + > git rev-list --no-walk 4fcedaf28732cf4ec885c9bd695610e2b80253a4 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240316 ++ docker inspect -f . pavics/workflow-tests:py310-240323 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240316 cat -$ docker top 7c83b119fa591b77c96fbb1844a5b1e12a65c7feabd647b27ba0948bace7a2f1 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240323 cat +$ docker top df2b6968856f2a6f247b677066bb5c2d2a1f0388cec1053c5e1f361206911ba4 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-16T18:15:44.266Z] Timeout set to expire in 2 hr 0 min +[2024-03-23T18:17:22.637Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-16T18:15:44.984Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-03-23T18:17:22.765Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-16T18:15:45.686Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-16T18:15:45.686Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-16T18:15:45.686Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-16T18:15:45.686Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-16T18:15:45.686Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-16T18:15:45.686Z] FINCH_BRANCH has been set to 'master' -[2024-03-16T18:15:45.686Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-16T18:15:45.686Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-16T18:15:45.686Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-16T18:15:45.686Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-16T18:15:45.686Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-16T18:15:45.686Z] RAVEN_BRANCH has been set to 'main' -[2024-03-16T18:15:45.686Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-16T18:15:45.686Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-16T18:15:45.686Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-16T18:15:45.686Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-16T18:15:45.686Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-16T18:15:45.686Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-16T18:15:45.686Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-16T18:15:45.686Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-03-16T18:15:45.686Z] + git clean -fdx -[2024-03-16T18:15:46.274Z] Removing .pytest_cache/ -[2024-03-16T18:15:46.274Z] Removing PAVICS-landing-master/ -[2024-03-16T18:15:46.274Z] Removing RavenPy-master/ -[2024-03-16T18:15:46.274Z] Removing __pycache__/ -[2024-03-16T18:15:46.274Z] Removing buildout/ -[2024-03-16T18:15:46.274Z] Removing esgf-compute-api-devel/ -[2024-03-16T18:15:46.274Z] Removing finch-master/ -[2024-03-16T18:15:46.274Z] Removing pavics-sdi-master/ -[2024-03-16T18:15:46.274Z] Removing raven-main/ -[2024-03-16T18:15:46.274Z] + ./downloadrepos -[2024-03-16T18:15:46.274Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-16T18:15:46.274Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-16T18:15:46.274Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-16T18:15:46.274Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-16T18:15:46.274Z] FINCH_BRANCH has been set to 'master' -[2024-03-16T18:15:46.274Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-16T18:15:46.274Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-16T18:15:46.274Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-16T18:15:46.274Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-16T18:15:46.274Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-16T18:15:46.274Z] RAVEN_BRANCH has been set to 'main' -[2024-03-16T18:15:46.274Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-16T18:15:46.274Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-16T18:15:46.274Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-16T18:15:46.274Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-16T18:15:46.274Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-16T18:15:46.274Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-16T18:15:46.274Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-16T18:15:46.274Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-03-16T18:15:46.274Z] + rm -rf pavics-sdi-* -[2024-03-16T18:15:46.274Z] + ls -[2024-03-16T18:15:46.274Z] + grep pavics-sdi -[2024-03-16T18:15:46.274Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-03-16T18:15:46.274Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-16T18:15:46.274Z] + shift -[2024-03-16T18:15:46.274Z] + branch=master -[2024-03-16T18:15:46.274Z] + shift -[2024-03-16T18:15:46.274Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-03-16T18:15:46.274Z] + tar xz -[2024-03-16T18:16:53.954Z] + ls -[2024-03-16T18:16:53.954Z] + grep pavics-sdi -[2024-03-16T18:16:53.954Z] pavics-sdi-master -[2024-03-16T18:16:53.954Z] + set +x -[2024-03-16T18:16:53.954Z] + rm -rf finch-* -[2024-03-16T18:16:53.954Z] + grep finch -[2024-03-16T18:16:53.954Z] + ls -[2024-03-16T18:16:53.954Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-16T18:16:53.954Z] + github_repo=https://github.com/bird-house/finch -[2024-03-16T18:16:53.954Z] + shift -[2024-03-16T18:16:53.954Z] + branch=master -[2024-03-16T18:16:53.955Z] + shift -[2024-03-16T18:16:53.955Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-03-16T18:16:53.955Z] + tar xz -[2024-03-16T18:16:53.955Z] + ls -[2024-03-16T18:16:53.955Z] + grep finch -[2024-03-16T18:16:53.955Z] finch-master -[2024-03-16T18:16:53.955Z] + set +x -[2024-03-16T18:16:53.955Z] + rm -rf PAVICS-landing-* -[2024-03-16T18:16:53.955Z] + ls -[2024-03-16T18:16:53.955Z] + grep PAVICS-landing -[2024-03-16T18:16:53.955Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-03-16T18:16:53.955Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-16T18:16:53.955Z] + shift -[2024-03-16T18:16:53.955Z] + branch=master -[2024-03-16T18:16:53.955Z] + shift -[2024-03-16T18:16:53.955Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-03-16T18:16:53.955Z] + tar xz -[2024-03-16T18:16:53.955Z] + ls -[2024-03-16T18:16:53.955Z] + grep PAVICS-landing -[2024-03-16T18:16:53.955Z] PAVICS-landing-master -[2024-03-16T18:16:53.955Z] + set +x -[2024-03-16T18:16:53.955Z] + rm -rf raven-* -[2024-03-16T18:16:53.955Z] + ls -[2024-03-16T18:16:53.955Z] + grep raven -[2024-03-16T18:16:53.955Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-16T18:16:53.955Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-16T18:16:53.955Z] + shift -[2024-03-16T18:16:53.955Z] + branch=main -[2024-03-16T18:16:53.955Z] + shift -[2024-03-16T18:16:53.955Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-16T18:16:53.955Z] + tar xz -[2024-03-16T18:16:54.892Z] + grep raven -[2024-03-16T18:16:54.892Z] + ls -[2024-03-16T18:16:54.892Z] raven-main -[2024-03-16T18:16:54.892Z] + set +x -[2024-03-16T18:16:54.892Z] + rm -rf RavenPy-* -[2024-03-16T18:16:54.892Z] + ls -[2024-03-16T18:16:54.892Z] + grep RavenPy -[2024-03-16T18:16:54.892Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-16T18:16:54.892Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-16T18:16:54.892Z] + shift -[2024-03-16T18:16:54.892Z] + branch=master -[2024-03-16T18:16:54.892Z] + shift -[2024-03-16T18:16:54.892Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-16T18:16:54.892Z] + tar xz -[2024-03-16T18:16:56.826Z] + ls -[2024-03-16T18:16:56.827Z] + grep RavenPy -[2024-03-16T18:16:56.827Z] RavenPy-master -[2024-03-16T18:16:56.827Z] + set +x -[2024-03-16T18:16:56.827Z] + rm -rf esgf-compute-api-* -[2024-03-16T18:16:56.827Z] + ls -[2024-03-16T18:16:56.827Z] + grep esgf-compute-api -[2024-03-16T18:16:56.827Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-16T18:16:56.827Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-16T18:16:56.827Z] + shift -[2024-03-16T18:16:56.827Z] + branch=devel -[2024-03-16T18:16:56.827Z] + shift -[2024-03-16T18:16:56.827Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-03-16T18:16:56.827Z] + tar xz -[2024-03-16T18:16:57.762Z] + ls -[2024-03-16T18:16:57.762Z] + grep esgf-compute-api -[2024-03-16T18:16:57.762Z] esgf-compute-api-devel -[2024-03-16T18:16:57.762Z] + set +x -[2024-03-16T18:16:57.762Z] + echo master -[2024-03-16T18:16:57.762Z] + sed s@/@-@g -[2024-03-16T18:16:57.762Z] + PAVICS_SDI_BRANCH=master -[2024-03-16T18:16:57.762Z] + echo Ouranosinc/pavics-sdi -[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g -[2024-03-16T18:16:57.762Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-16T18:16:57.762Z] + echo master -[2024-03-16T18:16:57.762Z] + sed s@/@-@g -[2024-03-16T18:16:57.762Z] + FINCH_BRANCH=master -[2024-03-16T18:16:57.762Z] + echo bird-house/finch -[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g -[2024-03-16T18:16:57.762Z] + FINCH_REPO_NAME=finch -[2024-03-16T18:16:57.762Z] + echo master -[2024-03-16T18:16:57.762Z] + sed s@/@-@g -[2024-03-16T18:16:57.762Z] + PAVICS_LANDING_BRANCH=master -[2024-03-16T18:16:57.762Z] + echo Ouranosinc/PAVICS-landing -[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g -[2024-03-16T18:16:57.762Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-16T18:16:57.762Z] + echo main -[2024-03-16T18:16:57.762Z] + sed s@/@-@g -[2024-03-16T18:16:57.762Z] + RAVEN_BRANCH=main -[2024-03-16T18:16:57.762Z] + echo Ouranosinc/raven -[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g -[2024-03-16T18:16:57.762Z] + RAVEN_REPO_NAME=raven -[2024-03-16T18:16:57.762Z] + echo+ master -[2024-03-16T18:16:57.762Z] sed s@/@-@g -[2024-03-16T18:16:57.762Z] + RAVENPY_BRANCH=master -[2024-03-16T18:16:57.762Z] + echo CSHS-CWRA/RavenPy -[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g -[2024-03-16T18:16:57.762Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-16T18:16:57.762Z] + echo devel -[2024-03-16T18:16:57.762Z] + sed s@/@-@g -[2024-03-16T18:16:57.762Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-16T18:16:57.762Z] + echo ESGF/esgf-compute-api -[2024-03-16T18:16:57.762Z] + sed s@^.*/@@g -[2024-03-16T18:16:57.762Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-16T18:16:57.762Z] + + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:16:57.762Z] echo pavics-sdi-master -[2024-03-16T18:16:57.762Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-03-16T18:16:57.762Z] + echo finch-master -[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:16:57.762Z] + FINCH_DIR=finch-master -[2024-03-16T18:16:57.762Z] + echo PAVICS-landing-master -[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:16:57.762Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-03-16T18:16:57.762Z] + echo raven-main -[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:16:57.762Z] + RAVEN_DIR=raven-main -[2024-03-16T18:16:57.762Z] + echo RavenPy-master -[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:16:57.762Z] + RAVENPY_DIR=RavenPy-master -[2024-03-16T18:16:57.762Z] + echo esgf-compute-api-devel -[2024-03-16T18:16:57.762Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-16T18:16:57.762Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-16T18:16:57.762Z] + echo true -[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + VERIFY_SSL=true -[2024-03-16T18:16:57.762Z] + [ xtrue = xfalse ] -[2024-03-16T18:16:57.762Z] + rm -v finch-master/setup.cfg -[2024-03-16T18:16:57.762Z] removed 'finch-master/setup.cfg' -[2024-03-16T18:16:57.762Z] + rm -v raven-main/setup.cfg -[2024-03-16T18:16:57.762Z] removed 'raven-main/setup.cfg' -[2024-03-16T18:16:57.762Z] + rm -v raven-main/pyproject.toml -[2024-03-16T18:16:57.762Z] removed 'raven-main/pyproject.toml' -[2024-03-16T18:16:57.762Z] + rm -v RavenPy-master/setup.cfg -[2024-03-16T18:16:57.762Z] removed 'RavenPy-master/setup.cfg' -[2024-03-16T18:16:57.762Z] + rm -v RavenPy-master/tox.ini -[2024-03-16T18:16:57.762Z] removed 'RavenPy-master/tox.ini' -[2024-03-16T18:16:57.762Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-16T18:16:57.762Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-16T18:16:57.762Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-16T18:16:57.762Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-16T18:16:57.762Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-16T18:16:57.762Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-16T18:16:57.762Z] + echo false -[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + TEST_MAGPIE_AUTH=false -[2024-03-16T18:16:57.762Z] + echo false -[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + TEST_PAVICS_SDI_REPO=false -[2024-03-16T18:16:57.762Z] + echo false -[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-16T18:16:57.762Z] + echo false -[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + TEST_FINCH_REPO=false -[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + echo false -[2024-03-16T18:16:57.762Z] + TEST_PAVICS_LANDING_REPO=false -[2024-03-16T18:16:57.762Z] + echo true -[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + TEST_RAVEN_REPO=true -[2024-03-16T18:16:57.762Z] + echo true -[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + TEST_RAVENPY_REPO=true -[2024-03-16T18:16:57.762Z] + echo false+ -[2024-03-16T18:16:57.762Z] tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-16T18:16:57.762Z] + echo false -[2024-03-16T18:16:57.762Z] + tr [:upper:] [:lower:] -[2024-03-16T18:16:57.762Z] + TEST_LOCAL_NOTEBOOKS=false -[2024-03-16T18:16:57.762Z] + NOTEBOOKS_TO_TEST= -[2024-03-16T18:16:57.762Z] + [ xfalse = xtrue ] -[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] -[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] -[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] -[2024-03-16T18:16:57.763Z] + [ xtrue = xtrue ] -[2024-03-16T18:16:57.763Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-03-16T18:16:57.763Z] + [ xtrue = xtrue ] -[2024-03-16T18:16:57.763Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-03-16T18:16:57.763Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] -[2024-03-16T18:16:57.763Z] + [ xfalse = xtrue ] -[2024-03-16T18:16:57.763Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-03-16T18:16:57.763Z] + [ -n ] -[2024-03-16T18:16:57.763Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-16T18:16:57.763Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-16T18:16:57.763Z] Will run notebooks against pavics.ouranos.ca -[2024-03-16T18:16:57.763Z] + [ -z ] -[2024-03-16T18:16:57.763Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-16T18:16:57.763Z] + git diff -[2024-03-16T18:16:57.763Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-16T18:16:57.763Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-03-16T18:16:59.666Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-16T18:16:59.666Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-16T18:16:59.926Z] ============================= test session starts ============================== -[2024-03-16T18:16:59.926Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-03-16T18:16:59.926Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-03-16T18:16:59.926Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-03-16T18:16:59.926Z] collected 242 items -[2024-03-16T18:16:59.926Z] -[2024-03-16T18:17:12.355Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-03-16T18:17:13.297Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] -[2024-03-16T18:17:27.050Z] ...... [ 6%] -[2024-03-16T18:17:29.586Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] -[2024-03-16T18:17:29.586Z] [ 9%] -[2024-03-16T18:17:31.751Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-03-16T18:17:39.896Z] .... [ 12%] -[2024-03-16T18:17:45.189Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] -[2024-03-16T18:17:53.005Z] ....F.FF..F.. [ 18%] -[2024-03-16T18:18:25.867Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] -[2024-03-16T18:19:39.155Z] .. [ 22%] -[2024-03-16T18:19:40.094Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] -[2024-03-16T18:19:50.086Z] ..FFFFFFFF....... [ 30%] -[2024-03-16T18:19:58.644Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] -[2024-03-16T18:20:08.916Z] ........... [ 36%] -[2024-03-16T18:20:19.431Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] -[2024-03-16T18:20:26.055Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] -[2024-03-16T18:20:32.062Z] ..... [ 41%] -[2024-03-16T18:20:33.977Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] -[2024-03-16T18:33:31.477Z] ................. [ 48%] -[2024-03-16T18:33:36.787Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] -[2024-03-16T18:33:43.938Z] .... [ 50%] -[2024-03-16T18:34:24.369Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] -[2024-03-16T18:34:33.108Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] -[2024-03-16T18:34:59.122Z] ...... [ 57%] -[2024-03-16T18:35:05.698Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] -[2024-03-16T18:35:16.653Z] ....... [ 60%] -[2024-03-16T18:35:23.846Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] -[2024-03-16T18:35:38.246Z] .... [ 64%] -[2024-03-16T18:35:46.384Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] -[2024-03-16T18:36:07.108Z] ....... [ 67%] -[2024-03-16T18:36:10.403Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] -[2024-03-16T18:36:36.462Z] ....... [ 70%] -[2024-03-16T18:36:39.748Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] -[2024-03-16T18:36:52.121Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] -[2024-03-16T18:36:58.464Z] .... [ 74%] -[2024-03-16T18:38:07.142Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] -[2024-03-16T18:38:31.016Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] -[2024-03-16T18:38:34.295Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] -[2024-03-16T18:38:49.100Z] ............. [ 84%] -[2024-03-16T18:39:09.049Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] -[2024-03-16T18:39:17.943Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] -[2024-03-16T18:39:27.907Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] -[2024-03-16T18:44:09.603Z] .........FFFFFFFFFFF [100%] -[2024-03-16T18:44:09.603Z] -[2024-03-16T18:44:09.603Z] =================================== FAILURES =================================== -[2024-03-16T18:44:09.603Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ -[2024-03-16T18:44:09.603Z] Notebook cell execution failed -[2024-03-16T18:44:09.603Z] Cell 5: Cell execution caused an exception -[2024-03-16T18:44:09.603Z] -[2024-03-16T18:44:09.603Z] Input: -[2024-03-16T18:44:09.603Z] features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-16T18:44:09.603Z] grid = raster[0] -[2024-03-16T18:44:09.603Z] grid.plot() -[2024-03-16T18:44:09.603Z] -[2024-03-16T18:44:09.603Z] Traceback: -[2024-03-16T18:44:09.603Z] -[2024-03-16T18:44:09.603Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.603Z] ValueError Traceback (most recent call last) -[2024-03-16T18:44:09.603Z] Cell In[1], line 3 -[2024-03-16T18:44:09.603Z]  1 features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-16T18:44:09.604Z]  2 grid = raster[0] -[2024-03-16T18:44:09.604Z] ----> 3 grid.plot() -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) -[2024-03-16T18:44:09.604Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: -[2024-03-16T18:44:09.604Z] --> 942 raise ValueError( -[2024-03-16T18:44:09.604Z]  943 "Dataset.plot cannot be called directly. Use " -[2024-03-16T18:44:09.604Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" -[2024-03-16T18:44:09.604Z]  945 ) -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ -[2024-03-16T18:44:09.604Z] Notebook cell execution failed -[2024-03-16T18:44:09.604Z] Cell 7: Cell execution caused an exception -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] Input: -[2024-03-16T18:44:09.604Z] unique, counts = np.unique(grid, return_counts=True) -[2024-03-16T18:44:09.604Z] print("The land-use categories available are: " + str(unique)) -[2024-03-16T18:44:09.604Z] print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] # Pixels values at '127' are NaN and can be ignored. -[2024-03-16T18:44:09.604Z] from matplotlib.colors import Normalize -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] norm = Normalize() -[2024-03-16T18:44:09.604Z] norm.autoscale(unique[:-1]) -[2024-03-16T18:44:09.604Z] cm = mpl.colormaps["tab20"] -[2024-03-16T18:44:09.604Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] # plt.bar(unique[:-1], counts[:-1]) -[2024-03-16T18:44:09.604Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) -[2024-03-16T18:44:09.604Z] plt.xlabel("Land-use categories") -[2024-03-16T18:44:09.604Z] plt.ylabel("Number of pixels") -[2024-03-16T18:44:09.604Z] plt.show() -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") -[2024-03-16T18:44:09.604Z] grid.name = "Land-use categories" -[2024-03-16T18:44:09.604Z] plt.show() -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] Traceback: -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.604Z] TypeError Traceback (most recent call last) -[2024-03-16T18:44:09.604Z] /tmp/ipykernel_391/750628277.py in ?() -[2024-03-16T18:44:09.604Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) -[2024-03-16T18:44:09.604Z]  2 print("The land-use categories available are: " + str(unique)) -[2024-03-16T18:44:09.604Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-16T18:44:09.604Z]  4  -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] <__array_function__ internals> in ?(*args, **kwargs) -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) -[2024-03-16T18:44:09.604Z]  268 >>> np.repeat(values, counts) -[2024-03-16T18:44:09.604Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved -[2024-03-16T18:44:09.604Z]  270  -[2024-03-16T18:44:09.604Z]  271 """ -[2024-03-16T18:44:09.604Z] --> 272 ar = np.asanyarray(ar) -[2024-03-16T18:44:09.604Z]  273 if axis is None: -[2024-03-16T18:44:09.604Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, -[2024-03-16T18:44:09.604Z]  275 equal_nan=equal_nan) -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) -[2024-03-16T18:44:09.604Z]  1472 def __array__(self, dtype=None): -[2024-03-16T18:44:09.604Z] -> 1473 raise TypeError( -[2024-03-16T18:44:09.604Z]  1474 "cannot directly convert an xarray.Dataset into a " -[2024-03-16T18:44:09.604Z]  1475 "numpy array. Instead, create an xarray.DataArray " -[2024-03-16T18:44:09.604Z]  1476 "first, either with indexing on the Dataset or by " -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ -[2024-03-16T18:44:09.604Z] Notebook cell execution failed -[2024-03-16T18:44:09.604Z] Cell 8: Cell execution caused an exception -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] Input: -[2024-03-16T18:44:09.604Z] import cartopy.crs as ccrs -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] # Set a CRS transformation: -[2024-03-16T18:44:09.604Z] crs = ccrs.LambertConformal( -[2024-03-16T18:44:09.604Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-16T18:44:09.604Z] ) -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] ax = plt.subplot(projection=crs) -[2024-03-16T18:44:09.604Z] grid.name = "Land-use categories" -[2024-03-16T18:44:09.604Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-16T18:44:09.604Z] plt.show() -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] Traceback: -[2024-03-16T18:44:09.604Z] -[2024-03-16T18:44:09.604Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.604Z] AttributeError Traceback (most recent call last) -[2024-03-16T18:44:09.604Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-03-16T18:44:09.604Z]  304 try: -[2024-03-16T18:44:09.605Z] --> 305 object.__setattr__(self, name, value) -[2024-03-16T18:44:09.605Z]  306 except AttributeError as e: -[2024-03-16T18:44:09.605Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-03-16T18:44:09.605Z]  308 # DataArray.dims.setter -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] The above exception was the direct cause of the following exception: -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] AttributeError Traceback (most recent call last) -[2024-03-16T18:44:09.605Z] Cell In[1], line 9 -[2024-03-16T18:44:09.605Z]  4 crs = ccrs.LambertConformal( -[2024-03-16T18:44:09.605Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-16T18:44:09.605Z]  6 ) -[2024-03-16T18:44:09.605Z]  8 ax = plt.subplot(projection=crs) -[2024-03-16T18:44:09.605Z] ----> 9 grid.name = "Land-use categories" -[2024-03-16T18:44:09.605Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-16T18:44:09.605Z]  11 plt.show() -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-03-16T18:44:09.605Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-03-16T18:44:09.605Z]  310 raise -[2024-03-16T18:44:09.605Z] --> 311 raise AttributeError( -[2024-03-16T18:44:09.605Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-03-16T18:44:09.605Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-03-16T18:44:09.605Z]  314 ) from e -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ -[2024-03-16T18:44:09.605Z] Notebook cell execution failed -[2024-03-16T18:44:09.605Z] Cell 11: Cell execution caused an exception -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] Input: -[2024-03-16T18:44:09.605Z] crs = ccrs.LambertConformal( -[2024-03-16T18:44:09.605Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-16T18:44:09.605Z] ) -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] dem.name = "Elevation" -[2024-03-16T18:44:09.605Z] dem.attrs["units"] = "m" -[2024-03-16T18:44:09.605Z] ax = plt.subplot(projection=crs) -[2024-03-16T18:44:09.605Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") -[2024-03-16T18:44:09.605Z] plt.show() -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] Traceback: -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.605Z] AttributeError Traceback (most recent call last) -[2024-03-16T18:44:09.605Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-03-16T18:44:09.605Z]  304 try: -[2024-03-16T18:44:09.605Z] --> 305 object.__setattr__(self, name, value) -[2024-03-16T18:44:09.605Z]  306 except AttributeError as e: -[2024-03-16T18:44:09.605Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-03-16T18:44:09.605Z]  308 # DataArray.dims.setter -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] The above exception was the direct cause of the following exception: -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.605Z] AttributeError Traceback (most recent call last) -[2024-03-16T18:44:09.605Z] Cell In[1], line 5 -[2024-03-16T18:44:09.605Z]  1 crs = ccrs.LambertConformal( -[2024-03-16T18:44:09.605Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-16T18:44:09.605Z]  3 ) -[2024-03-16T18:44:09.605Z] ----> 5 dem.name = "Elevation" -[2024-03-16T18:44:09.605Z]  6 dem.attrs["units"] = "m" -[2024-03-16T18:44:09.605Z]  7 ax = plt.subplot(projection=crs) -[2024-03-16T18:44:09.605Z] -[2024-03-16T18:44:09.606Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-03-16T18:44:09.606Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-03-16T18:44:09.606Z]  310 raise -[2024-03-16T18:44:09.606Z] --> 311 raise AttributeError( -[2024-03-16T18:44:09.606Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-03-16T18:44:09.606Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-03-16T18:44:09.606Z]  314 ) from e -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-03-16T18:44:09.606Z] Notebook cell execution failed -[2024-03-16T18:44:09.606Z] Cell 5: Cell execution caused an exception -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] Input: -[2024-03-16T18:44:09.606Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-03-16T18:44:09.606Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-03-16T18:44:09.606Z] from ravenpy import OutputReader -[2024-03-16T18:44:09.606Z] from ravenpy.ravenpy import run -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-03-16T18:44:09.606Z] run_name = run_name -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-03-16T18:44:09.606Z] # subfolder called "outputs" -[2024-03-16T18:44:09.606Z] configdir = workdir -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-16T18:44:09.606Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] # Get the outputs using the Output Reader object. -[2024-03-16T18:44:09.606Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] Traceback: -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.606Z] RavenError Traceback (most recent call last) -[2024-03-16T18:44:09.606Z] Cell In[1], line 14 -[2024-03-16T18:44:09.606Z]  11 configdir = workdir -[2024-03-16T18:44:09.606Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-16T18:44:09.606Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-16T18:44:09.606Z]  16 # Get the outputs using the Output Reader object. -[2024-03-16T18:44:09.606Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-16T18:44:09.606Z]  320 warn(msg, category=RavenWarning) -[2024-03-16T18:44:09.606Z]  322 if messages["ERROR"]: -[2024-03-16T18:44:09.606Z] --> 323 raise RavenError( -[2024-03-16T18:44:09.606Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-16T18:44:09.606Z]  325 ) -[2024-03-16T18:44:09.606Z]  327 if returncode != 0: -[2024-03-16T18:44:09.606Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] RavenError: Config directory: /tmp/NB4wuwg3s5n -[2024-03-16T18:44:09.606Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-03-16T18:44:09.606Z] Notebook cell execution failed -[2024-03-16T18:44:09.606Z] Cell 6: Cell execution caused an exception -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] Input: -[2024-03-16T18:44:09.606Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-03-16T18:44:09.606Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-03-16T18:44:09.606Z] from ravenpy import Emulator -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] # Prepare the emulator by writing files on disk -[2024-03-16T18:44:09.606Z] e = Emulator(config=m) -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] # Run the model and get the outputs. -[2024-03-16T18:44:09.606Z] outputs = e.run() -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] Traceback: -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.606Z] RavenError Traceback (most recent call last) -[2024-03-16T18:44:09.606Z] Cell In[1], line 9 -[2024-03-16T18:44:09.606Z]  6 e = Emulator(config=m) -[2024-03-16T18:44:09.606Z]  8 # Run the model and get the outputs. -[2024-03-16T18:44:09.606Z] ----> 9 outputs = e.run() -[2024-03-16T18:44:09.606Z] -[2024-03-16T18:44:09.606Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-03-16T18:44:09.606Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-03-16T18:44:09.606Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-03-16T18:44:09.606Z]  66 self.write_rv(overwrite=overwrite) -[2024-03-16T18:44:09.607Z] ---> 68 self._output_path = run( -[2024-03-16T18:44:09.607Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-03-16T18:44:09.607Z]  70 ) -[2024-03-16T18:44:09.607Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-03-16T18:44:09.607Z]  72 return self._output -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-16T18:44:09.607Z]  320 warn(msg, category=RavenWarning) -[2024-03-16T18:44:09.607Z]  322 if messages["ERROR"]: -[2024-03-16T18:44:09.607Z] --> 323 raise RavenError( -[2024-03-16T18:44:09.607Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-16T18:44:09.607Z]  325 ) -[2024-03-16T18:44:09.607Z]  327 if returncode != 0: -[2024-03-16T18:44:09.607Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] RavenError: Config directory: /tmp/tmp8sa6j0x_ -[2024-03-16T18:44:09.607Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-03-16T18:44:09.607Z] Notebook cell execution failed -[2024-03-16T18:44:09.607Z] Cell 7: Cell execution caused an exception -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] Input: -[2024-03-16T18:44:09.607Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-16T18:44:09.607Z] outputs.files -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] Traceback: -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.607Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.607Z] Cell In[1], line 2 -[2024-03-16T18:44:09.607Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-16T18:44:09.607Z] ----> 2 outputs.files -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] NameError: name 'outputs' is not defined -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-03-16T18:44:09.607Z] Notebook cell execution failed -[2024-03-16T18:44:09.607Z] Cell 8: Cell execution caused an exception -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] Input: -[2024-03-16T18:44:09.607Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-16T18:44:09.607Z] print("----------------HYDROGRAPH----------------") -[2024-03-16T18:44:09.607Z] display(outputs.hydrograph) -[2024-03-16T18:44:09.607Z] print("") -[2024-03-16T18:44:09.607Z] print("-----------------STORAGE------------------") -[2024-03-16T18:44:09.607Z] display(outputs.storage) -[2024-03-16T18:44:09.607Z] print("") -[2024-03-16T18:44:09.607Z] print("-----------------SOLUTION-----------------") -[2024-03-16T18:44:09.607Z] display(outputs.solution) -[2024-03-16T18:44:09.607Z] print("") -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] Traceback: -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.607Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.607Z] Cell In[1], line 3 -[2024-03-16T18:44:09.607Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-16T18:44:09.607Z]  2 print("----------------HYDROGRAPH----------------") -[2024-03-16T18:44:09.607Z] ----> 3 display(outputs.hydrograph) -[2024-03-16T18:44:09.607Z]  4 print("") -[2024-03-16T18:44:09.607Z]  5 print("-----------------STORAGE------------------") -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] NameError: name 'outputs' is not defined -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-03-16T18:44:09.607Z] Notebook cell execution failed -[2024-03-16T18:44:09.607Z] Cell 9: Cell execution caused an exception -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] Input: -[2024-03-16T18:44:09.607Z] # Import the graphing utility built to handle Raven model outputs -[2024-03-16T18:44:09.607Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] hydrograph_objects = outputs.hydrograph -[2024-03-16T18:44:09.607Z] hydrographs(hydrograph_objects) -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] Traceback: -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.607Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.607Z] Cell In[1], line 4 -[2024-03-16T18:44:09.607Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-03-16T18:44:09.607Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-16T18:44:09.607Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-03-16T18:44:09.607Z]  5 hydrographs(hydrograph_objects) -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] NameError: name 'outputs' is not defined -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-03-16T18:44:09.607Z] Notebook cell execution failed -[2024-03-16T18:44:09.607Z] Cell 10: Cell execution caused an exception -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] Input: -[2024-03-16T18:44:09.607Z] outputs.hydrograph.q_sim.plot() -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] Traceback: -[2024-03-16T18:44:09.607Z] -[2024-03-16T18:44:09.607Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.608Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.608Z] Cell In[1], line 1 -[2024-03-16T18:44:09.608Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] NameError: name 'outputs' is not defined -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-03-16T18:44:09.608Z] Notebook cell execution failed -[2024-03-16T18:44:09.608Z] Cell 11: Cell execution caused an exception -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] Input: -[2024-03-16T18:44:09.608Z] print(list(outputs.storage.keys())) -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] Traceback: -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.608Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.608Z] Cell In[1], line 1 -[2024-03-16T18:44:09.608Z] ----> 1 print(list(outputs.storage.keys())) -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] NameError: name 'outputs' is not defined -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-03-16T18:44:09.608Z] Notebook cell execution failed -[2024-03-16T18:44:09.608Z] Cell 12: Cell execution caused an exception -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] Input: -[2024-03-16T18:44:09.608Z] # Plot the "Snow" variable -[2024-03-16T18:44:09.608Z] outputs.storage["Snow"].plot() -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] Traceback: -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.608Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.608Z] Cell In[1], line 2 -[2024-03-16T18:44:09.608Z]  1 # Plot the "Snow" variable -[2024-03-16T18:44:09.608Z] ----> 2 outputs.storage["Snow"].plot() -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] NameError: name 'outputs' is not defined -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ -[2024-03-16T18:44:09.608Z] Notebook cell execution failed -[2024-03-16T18:44:09.608Z] Cell 0: Cell execution caused an exception -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] Input: -[2024-03-16T18:44:09.608Z] import os -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] from hsclient import HydroShare, Token -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] # Authentication method using username and password -[2024-03-16T18:44:09.608Z] """ -[2024-03-16T18:44:09.608Z] username = 'XXXXX' -[2024-03-16T18:44:09.608Z] password = 'XXXXX' -[2024-03-16T18:44:09.608Z] hs = HydroShare(username=username, password=password) -[2024-03-16T18:44:09.608Z] """ -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-03-16T18:44:09.608Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] token = Token(access_token=access_token, token_type="bearer") -[2024-03-16T18:44:09.608Z] hs = HydroShare(client_id=client_id, token=token) -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] Traceback: -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.608Z] ValidationError Traceback (most recent call last) -[2024-03-16T18:44:09.608Z] Cell In[1], line 15 -[2024-03-16T18:44:09.608Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-03-16T18:44:09.608Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-03-16T18:44:09.608Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") -[2024-03-16T18:44:09.608Z]  16 hs = HydroShare(client_id=client_id, token=token) -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) -[2024-03-16T18:44:09.608Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks -[2024-03-16T18:44:09.608Z]  170 __tracebackhide__ = True -[2024-03-16T18:44:09.608Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) -[2024-03-16T18:44:09.608Z] -[2024-03-16T18:44:09.608Z] ValidationError: 4 validation errors for Token -[2024-03-16T18:44:09.608Z] scope -[2024-03-16T18:44:09.608Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) -[2024-03-16T18:44:09.608Z]  2 for r in results: -[2024-03-16T18:44:09.609Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] NameError: name 'hs' is not defined -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ -[2024-03-16T18:44:09.609Z] Notebook cell execution failed -[2024-03-16T18:44:09.609Z] Cell 2: Cell execution caused an exception -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] Input: -[2024-03-16T18:44:09.609Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-16T18:44:09.609Z] res.files() -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] Traceback: -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.609Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.609Z] Cell In[1], line 1 -[2024-03-16T18:44:09.609Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-16T18:44:09.609Z]  2 res.files() -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] NameError: name 'hs' is not defined -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ -[2024-03-16T18:44:09.609Z] Notebook cell execution failed -[2024-03-16T18:44:09.609Z] Cell 3: Cell execution caused an exception -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] Input: -[2024-03-16T18:44:09.609Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] Traceback: -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.609Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.609Z] Cell In[1], line 1 -[2024-03-16T18:44:09.609Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] NameError: name 'res' is not defined -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ -[2024-03-16T18:44:09.609Z] Notebook cell execution failed -[2024-03-16T18:44:09.609Z] Cell 10: Cell execution caused an exception -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] Input: -[2024-03-16T18:44:09.609Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. -[2024-03-16T18:44:09.609Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" -[2024-03-16T18:44:09.609Z] cat = intake.open_catalog(catalog_name) -[2024-03-16T18:44:09.609Z] ds = cat.era5_reanalysis_single_levels.to_dask() -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] """ -[2024-03-16T18:44:09.609Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, -[2024-03-16T18:44:09.609Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total -[2024-03-16T18:44:09.609Z] precipitation. -[2024-03-16T18:44:09.609Z] """ -[2024-03-16T18:44:09.609Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, -[2024-03-16T18:44:09.609Z] # such as units and variable names. -[2024-03-16T18:44:09.609Z] with xr.set_options(keep_attrs=True): -[2024-03-16T18:44:09.609Z] ERA5_reference = subset.subset_shape( -[2024-03-16T18:44:09.609Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour -[2024-03-16T18:44:09.609Z] ) -[2024-03-16T18:44:09.609Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) -[2024-03-16T18:44:09.609Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) -[2024-03-16T18:44:09.609Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] # Change the units -[2024-03-16T18:44:09.609Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C -[2024-03-16T18:44:09.609Z] ERA5_tmin.attrs["units"] = "degC" -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C -[2024-03-16T18:44:09.609Z] ERA5_tmax.attrs["units"] = "degC" -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] ERA5_pr = ERA5_pr * 1000 # m to mm -[2024-03-16T18:44:09.609Z] ERA5_pr.attrs["units"] = "mm" -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] # Average the variables spatially -[2024-03-16T18:44:09.609Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-03-16T18:44:09.609Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-03-16T18:44:09.609Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-16T18:44:09.609Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-16T18:44:09.609Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-16T18:44:09.609Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-03-16T18:44:09.609Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the -[2024-03-16T18:44:09.609Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. -[2024-03-16T18:44:09.609Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) -[2024-03-16T18:44:09.609Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] Traceback: -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.609Z] KeyError Traceback (most recent call last) -[2024-03-16T18:44:09.609Z] Cell In[1], line 37 -[2024-03-16T18:44:09.609Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-16T18:44:09.609Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-16T18:44:09.609Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-16T18:44:09.609Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-16T18:44:09.609Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-16T18:44:09.609Z] -[2024-03-16T18:44:09.609Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-03-16T18:44:09.609Z]  851 self.coords[key] = value -[2024-03-16T18:44:09.609Z]  852 else: -[2024-03-16T18:44:09.609Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-03-16T18:44:09.609Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-03-16T18:44:09.610Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-03-16T18:44:09.610Z] --> 856 obj = self[key] -[2024-03-16T18:44:09.610Z]  857 if isinstance(value, DataArray): -[2024-03-16T18:44:09.610Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-03-16T18:44:09.610Z] -[2024-03-16T18:44:09.610Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-03-16T18:44:09.610Z]  844 return self._getitem_coord(key) -[2024-03-16T18:44:09.610Z]  845 else: -[2024-03-16T18:44:09.610Z]  846 # xarray-style array indexing -[2024-03-16T18:44:09.610Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-03-16T18:44:09.610Z] -[2024-03-16T18:44:09.610Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-03-16T18:44:09.610Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-03-16T18:44:09.610Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-03-16T18:44:09.610Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-03-16T18:44:09.610Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-03-16T18:44:09.610Z]  1447  ) -[2024-03-16T18:44:09.610Z]  1448 return self._from_temp_dataset(ds) -[2024-03-16T18:44:09.610Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-03-16T18:44:09.610Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-03-16T18:44:09.610Z] -[2024-03-16T18:44:09.610Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-03-16T18:44:09.610Z]  2926 var_indexers = { -[2024-03-16T18:44:09.610Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-03-16T18:44:09.610Z]  2928 } -[2024-03-16T18:44:09.610Z]  2929 if var_indexers: -[2024-03-16T18:44:09.610Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-03-16T18:44:09.610Z]  2931 # drop scalar coordinates -[2024-03-16T18:44:09.610Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-03-16T18:44:09.610Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-03-16T18:44:09.610Z] -[2024-03-16T18:44:09.610Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-03-16T18:44:09.610Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-03-16T18:44:09.612Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-03-16T18:44:09.612Z] -> 1368 return self[key] -[2024-03-16T18:44:09.612Z] -[2024-03-16T18:44:09.612Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-03-16T18:44:09.612Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-03-16T18:44:09.612Z]  879  """Return a new Variable object whose contents are consistent with -[2024-03-16T18:44:09.612Z]  880  getting the provided key from the underlying data. -[2024-03-16T18:44:09.612Z]  881 -[2024-03-16T18:44:09.612Z]  (...) -[2024-03-16T18:44:09.612Z]  889  array `x.values` directly. -[2024-03-16T18:44:09.612Z]  890  """ -[2024-03-16T18:44:09.612Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-03-16T18:44:09.612Z]  892 data = as_indexable(self._data)[indexer] -[2024-03-16T18:44:09.612Z]  893 if new_order: -[2024-03-16T18:44:09.612Z] -[2024-03-16T18:44:09.612Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-03-16T18:44:09.612Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-03-16T18:44:09.612Z]  722 return self._broadcast_indexes_basic(key) -[2024-03-16T18:44:09.613Z] --> 724 self._validate_indexers(key) -[2024-03-16T18:44:09.613Z]  725 # Detect it can be mapped as an outer indexer -[2024-03-16T18:44:09.613Z]  726 # If all key is unlabeled, or -[2024-03-16T18:44:09.613Z]  727 # key can be mapped as an OuterIndexer. -[2024-03-16T18:44:09.613Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-03-16T18:44:09.613Z]  771 raise IndexError( -[2024-03-16T18:44:09.613Z]  772 "{}-dimensional boolean indexing is " -[2024-03-16T18:44:09.613Z]  773 "not supported. ".format(k.ndim) -[2024-03-16T18:44:09.613Z]  774 ) -[2024-03-16T18:44:09.613Z]  775 if is_duck_dask_array(k.data): -[2024-03-16T18:44:09.613Z] --> 776 raise KeyError( -[2024-03-16T18:44:09.613Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-03-16T18:44:09.613Z]  778 "This will result in a dask array of unknown shape. " -[2024-03-16T18:44:09.613Z]  779 "Such arrays are unsupported by Xarray." -[2024-03-16T18:44:09.613Z]  780 "Please compute the indexer first using .compute()" -[2024-03-16T18:44:09.613Z]  781 ) -[2024-03-16T18:44:09.613Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-03-16T18:44:09.613Z]  783 raise IndexError( -[2024-03-16T18:44:09.613Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-03-16T18:44:09.613Z]  785 "same dimension to the indexed array. Indexer is " -[2024-03-16T18:44:09.613Z]  (...) -[2024-03-16T18:44:09.613Z]  788 ) -[2024-03-16T18:44:09.613Z]  789 ) -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ -[2024-03-16T18:44:09.613Z] Notebook cell execution failed -[2024-03-16T18:44:09.613Z] Cell 11: Cell execution caused an exception -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] Input: -[2024-03-16T18:44:09.613Z] # Climate model to use -[2024-03-16T18:44:09.613Z] climate_model = "MIROC6" -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. -[2024-03-16T18:44:09.613Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") -[2024-03-16T18:44:09.613Z] col = intake.open_esm_datastore( -[2024-03-16T18:44:09.613Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" -[2024-03-16T18:44:09.613Z] ) -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. -[2024-03-16T18:44:09.613Z] with xr.set_options(keep_attrs=True): -[2024-03-16T18:44:09.613Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. -[2024-03-16T18:44:09.613Z] out = {} -[2024-03-16T18:44:09.613Z] for exp in ["historical", "ssp585"]: -[2024-03-16T18:44:09.613Z] if exp == "historical": -[2024-03-16T18:44:09.613Z] period_start = reference_start_day -[2024-03-16T18:44:09.613Z] period_end = reference_end_day -[2024-03-16T18:44:09.613Z] else: -[2024-03-16T18:44:09.613Z] period_start = future_start_day -[2024-03-16T18:44:09.613Z] period_end = future_end_day -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] out[exp] = {} -[2024-03-16T18:44:09.613Z] for variable in ["tasmin", "tasmax", "pr"]: -[2024-03-16T18:44:09.613Z] print(exp, variable) -[2024-03-16T18:44:09.613Z] query = dict( -[2024-03-16T18:44:09.613Z] experiment_id=exp, -[2024-03-16T18:44:09.613Z] table_id="day", -[2024-03-16T18:44:09.613Z] variable_id=variable, -[2024-03-16T18:44:09.613Z] member_id="r1i1p1f1", -[2024-03-16T18:44:09.613Z] source_id=climate_model, -[2024-03-16T18:44:09.613Z] ) -[2024-03-16T18:44:09.613Z] col_subset = col.search(require_all_on=["source_id"], **query) -[2024-03-16T18:44:09.613Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. -[2024-03-16T18:44:09.613Z] if variable == "pr": -[2024-03-16T18:44:09.613Z] out[exp][variable] = average.average_shape( -[2024-03-16T18:44:09.613Z] xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-16T18:44:09.613Z] time=slice(period_start, period_end) -[2024-03-16T18:44:09.613Z] )[variable], -[2024-03-16T18:44:09.613Z] basin_contour, -[2024-03-16T18:44:09.613Z] ).chunk(-1) -[2024-03-16T18:44:09.613Z] else: -[2024-03-16T18:44:09.613Z] out[exp][variable] = average.average_shape( -[2024-03-16T18:44:09.613Z] xr.open_zarr(mapper, consolidated=True) -[2024-03-16T18:44:09.613Z] .sel(time=slice(period_start, period_end)) -[2024-03-16T18:44:09.613Z] .reset_coords("height", drop=True)[variable], -[2024-03-16T18:44:09.613Z] basin_contour, -[2024-03-16T18:44:09.613Z] ).chunk(-1) -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] # We can now extract the variables that we will need later: -[2024-03-16T18:44:09.613Z] historical_tasmax = out["historical"]["tasmax"] -[2024-03-16T18:44:09.613Z] historical_tasmin = out["historical"]["tasmin"] -[2024-03-16T18:44:09.613Z] historical_pr = out["historical"]["pr"] -[2024-03-16T18:44:09.613Z] future_tasmax = out["ssp585"]["tasmax"] -[2024-03-16T18:44:09.613Z] future_tasmin = out["ssp585"]["tasmin"] -[2024-03-16T18:44:09.613Z] future_pr = out["ssp585"]["pr"] -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] Traceback: -[2024-03-16T18:44:09.613Z] -[2024-03-16T18:44:09.613Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.613Z] KeyError Traceback (most recent call last) -[2024-03-16T18:44:09.613Z] Cell In[1], line 44 -[2024-03-16T18:44:09.613Z]  37 out[exp][variable] = average.average_shape( -[2024-03-16T18:44:09.613Z]  38 xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-16T18:44:09.613Z]  39 time=slice(period_start, period_end) -[2024-03-16T18:44:09.614Z]  40 )[variable], -[2024-03-16T18:44:09.614Z]  41 basin_contour, -[2024-03-16T18:44:09.614Z]  42 ).chunk(-1) -[2024-03-16T18:44:09.614Z]  43 else: -[2024-03-16T18:44:09.614Z] ---> 44 out[exp][variable] = average.average_shape( -[2024-03-16T18:44:09.614Z]  45  xr.open_zarr(mapper, consolidated=True) -[2024-03-16T18:44:09.614Z]  46  .sel(time=slice(period_start, period_end)) -[2024-03-16T18:44:09.614Z]  47  .reset_coords("height", drop=True)[variable], -[2024-03-16T18:44:09.614Z]  48  basin_contour, -[2024-03-16T18:44:09.614Z]  49  ).chunk(-1) -[2024-03-16T18:44:09.614Z]  51 # We can now extract the variables that we will need later: -[2024-03-16T18:44:09.614Z]  52 historical_tasmax = out["historical"]["tasmax"] -[2024-03-16T18:44:09.614Z] -[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) -[2024-03-16T18:44:09.614Z]  105 ds_sub = ds_copy.isel(indexer) -[2024-03-16T18:44:09.614Z]  107 # Compute the weights -[2024-03-16T18:44:09.614Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) -[2024-03-16T18:44:09.614Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. -[2024-03-16T18:44:09.614Z]  111 nonnull = ( -[2024-03-16T18:44:09.614Z]  112 savger.weights.data.nnz -[2024-03-16T18:44:09.614Z]  113 if isinstance(savger.weights, xr.DataArray) -[2024-03-16T18:44:09.614Z]  114 else savger.weights.nnz -[2024-03-16T18:44:09.614Z]  115 ) -[2024-03-16T18:44:09.614Z] -[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) -[2024-03-16T18:44:09.614Z]  1182 if isinstance(ds_in, xr.DataArray): -[2024-03-16T18:44:09.614Z]  1183 ds_in = ds_in._to_temp_dataset() -[2024-03-16T18:44:09.614Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) -[2024-03-16T18:44:09.614Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. -[2024-03-16T18:44:09.614Z]  1188 # Latitude and longitude coordinates are the polygon centroid. -[2024-03-16T18:44:09.614Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) -[2024-03-16T18:44:09.614Z] -[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) -[2024-03-16T18:44:09.614Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) -[2024-03-16T18:44:09.614Z]  166 if need_bounds: -[2024-03-16T18:44:09.614Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) -[2024-03-16T18:44:09.614Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) -[2024-03-16T18:44:09.614Z]  169 add_corner(grid, lon_b.T, lat_b.T) -[2024-03-16T18:44:09.614Z] -[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) -[2024-03-16T18:44:09.614Z]  105 lat_bnds = ds.cf.get_bounds('latitude') -[2024-03-16T18:44:09.614Z]  107 # Convert from CF bounds to xESMF bounds. -[2024-03-16T18:44:09.614Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. -[2024-03-16T18:44:09.614Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) -[2024-03-16T18:44:09.614Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) -[2024-03-16T18:44:09.614Z]  111 return lon_b, lat_b -[2024-03-16T18:44:09.614Z] -[2024-03-16T18:44:09.614Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) -[2024-03-16T18:44:09.614Z]  2400 filtered = [ -[2024-03-16T18:44:09.614Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs -[2024-03-16T18:44:09.614Z]  2402 ] -[2024-03-16T18:44:09.614Z]  2403 if len(filtered) > 1: -[2024-03-16T18:44:09.614Z] -> 2404 raise KeyError( -[2024-03-16T18:44:09.615Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " -[2024-03-16T18:44:09.615Z]  2406 ) -[2024-03-16T18:44:09.615Z]  2408 (crd_name,) = filtered -[2024-03-16T18:44:09.615Z]  2409 crd = variables[crd_name] -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon', 'lon_bounds'] " -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ -[2024-03-16T18:44:09.615Z] Notebook cell execution failed -[2024-03-16T18:44:09.615Z] Cell 12: Cell execution caused an exception -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] Input: -[2024-03-16T18:44:09.615Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-16T18:44:09.615Z] # and make sure everything is consistent. -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Let's start with precipitation: -[2024-03-16T18:44:09.615Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-16T18:44:09.615Z] historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-16T18:44:09.615Z] future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Now we can actually convert units in absolute terms. -[2024-03-16T18:44:09.615Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") -[2024-03-16T18:44:09.615Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Now let's do temperature: -[2024-03-16T18:44:09.615Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") -[2024-03-16T18:44:09.615Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") -[2024-03-16T18:44:09.615Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") -[2024-03-16T18:44:09.615Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] Traceback: -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.615Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.615Z] Cell In[1], line 6 -[2024-03-16T18:44:09.615Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-16T18:44:09.615Z]  2 # and make sure everything is consistent. -[2024-03-16T18:44:09.615Z]  3 -[2024-03-16T18:44:09.615Z]  4 # Let's start with precipitation: -[2024-03-16T18:44:09.615Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-16T18:44:09.615Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-16T18:44:09.615Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-16T18:44:09.615Z]  9 # Now we can actually convert units in absolute terms. -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] NameError: name 'historical_pr' is not defined -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ -[2024-03-16T18:44:09.615Z] Notebook cell execution failed -[2024-03-16T18:44:09.615Z] Cell 13: Cell execution caused an exception -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] Input: -[2024-03-16T18:44:09.615Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. -[2024-03-16T18:44:09.615Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-16T18:44:09.615Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-16T18:44:09.615Z] ref=ERA5_weather.pr, -[2024-03-16T18:44:09.615Z] hist=historical_pr, -[2024-03-16T18:44:09.615Z] nquantiles=50, -[2024-03-16T18:44:09.615Z] kind="+", -[2024-03-16T18:44:09.615Z] group=group_month_window, -[2024-03-16T18:44:09.615Z] ) -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Apply the correction factors on the reference period -[2024-03-16T18:44:09.615Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Apply the correction factors on the future period -[2024-03-16T18:44:09.615Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Ensure that the precipitation is non-negative, which can happen with some climate models -[2024-03-16T18:44:09.615Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) -[2024-03-16T18:44:09.615Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data -[2024-03-16T18:44:09.615Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-16T18:44:09.615Z] ref=ERA5_weather.tmax, -[2024-03-16T18:44:09.615Z] hist=historical_tasmax, -[2024-03-16T18:44:09.615Z] nquantiles=50, -[2024-03-16T18:44:09.615Z] kind="+", -[2024-03-16T18:44:09.615Z] group=group_month_window, -[2024-03-16T18:44:09.615Z] ) -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Apply the correction factors on the reference period -[2024-03-16T18:44:09.615Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Apply the correction factors on the future period -[2024-03-16T18:44:09.615Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data -[2024-03-16T18:44:09.615Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-16T18:44:09.615Z] ref=ERA5_weather.tmin, -[2024-03-16T18:44:09.615Z] hist=historical_tasmin, -[2024-03-16T18:44:09.615Z] nquantiles=50, -[2024-03-16T18:44:09.615Z] kind="+", -[2024-03-16T18:44:09.615Z] group=group_month_window, -[2024-03-16T18:44:09.615Z] ) -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Apply the correction factors on the reference period -[2024-03-16T18:44:09.615Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] # Apply the correction factors on the future period -[2024-03-16T18:44:09.615Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] Traceback: -[2024-03-16T18:44:09.615Z] -[2024-03-16T18:44:09.615Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.615Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.615Z] Cell In[1], line 6 -[2024-03-16T18:44:09.615Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-16T18:44:09.615Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-16T18:44:09.615Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-16T18:44:09.615Z] ----> 6 ref=ERA5_weather.pr, -[2024-03-16T18:44:09.615Z]  7 hist=historical_pr, -[2024-03-16T18:44:09.615Z]  8 nquantiles=50, -[2024-03-16T18:44:09.615Z]  9 kind="+", -[2024-03-16T18:44:09.615Z]  10 group=group_month_window, -[2024-03-16T18:44:09.615Z]  11 ) -[2024-03-16T18:44:09.615Z]  13 # Apply the correction factors on the reference period -[2024-03-16T18:44:09.616Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] NameError: name 'ERA5_weather' is not defined -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ -[2024-03-16T18:44:09.616Z] Notebook cell execution failed -[2024-03-16T18:44:09.616Z] Cell 14: Cell execution caused an exception -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] Input: -[2024-03-16T18:44:09.616Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-16T18:44:09.616Z] ref_dataset = xr.merge( -[2024-03-16T18:44:09.616Z] [ -[2024-03-16T18:44:09.616Z] corrected_ref_precip.to_dataset(name="pr"), -[2024-03-16T18:44:09.616Z] corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-16T18:44:09.616Z] corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-16T18:44:09.616Z] ] -[2024-03-16T18:44:09.616Z] ) -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Write to temporary folder -[2024-03-16T18:44:09.616Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-16T18:44:09.616Z] ref_dataset.to_netcdf(fn_tmp_ref) -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Convert the future corrected data into netCDF file -[2024-03-16T18:44:09.616Z] fut_dataset = xr.merge( -[2024-03-16T18:44:09.616Z] [ -[2024-03-16T18:44:09.616Z] corrected_fut_precip.to_dataset(name="pr"), -[2024-03-16T18:44:09.616Z] corrected_fut_tasmax.to_dataset(name="tasmax"), -[2024-03-16T18:44:09.616Z] corrected_fut_tasmin.to_dataset(name="tasmin"), -[2024-03-16T18:44:09.616Z] ] -[2024-03-16T18:44:09.616Z] ) -[2024-03-16T18:44:09.616Z] # Write to temporary folder -[2024-03-16T18:44:09.616Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" -[2024-03-16T18:44:09.616Z] fut_dataset.to_netcdf(fn_tmp_fut) -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Write the data to disk to a temporary location for future use. -[2024-03-16T18:44:09.616Z] ref_dataset = xr.open_dataset(fn_tmp_ref) -[2024-03-16T18:44:09.616Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] fut_dataset = xr.open_dataset(fn_tmp_fut) -[2024-03-16T18:44:09.616Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] Traceback: -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.616Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.616Z] Cell In[1], line 4 -[2024-03-16T18:44:09.616Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-16T18:44:09.616Z]  2 ref_dataset = xr.merge( -[2024-03-16T18:44:09.616Z]  3 [ -[2024-03-16T18:44:09.616Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), -[2024-03-16T18:44:09.616Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-16T18:44:09.616Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-16T18:44:09.616Z]  7 ] -[2024-03-16T18:44:09.616Z]  8 ) -[2024-03-16T18:44:09.616Z]  10 # Write to temporary folder -[2024-03-16T18:44:09.616Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] NameError: name 'corrected_ref_precip' is not defined -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ -[2024-03-16T18:44:09.616Z] Notebook cell execution failed -[2024-03-16T18:44:09.616Z] Cell 15: Cell execution caused an exception -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] Input: -[2024-03-16T18:44:09.616Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-03-16T18:44:09.616Z] # populate the fields for the HRU. -[2024-03-16T18:44:09.616Z] hru = {} -[2024-03-16T18:44:09.616Z] hru = dict( -[2024-03-16T18:44:09.616Z] area=all_properties["area"], -[2024-03-16T18:44:09.616Z] elevation=all_properties["elevation"], -[2024-03-16T18:44:09.616Z] latitude=all_properties["latitude"], -[2024-03-16T18:44:09.616Z] longitude=all_properties["longitude"], -[2024-03-16T18:44:09.616Z] hru_type="land", -[2024-03-16T18:44:09.616Z] ) -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-03-16T18:44:09.616Z] # will simply execute the model which has been pre-configured to run on this period. -[2024-03-16T18:44:09.616Z] start_date = dt.datetime(1981, 1, 1) -[2024-03-16T18:44:09.616Z] end_date = dt.datetime(1985, 12, 31) -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. -[2024-03-16T18:44:09.616Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Alternative variable names as described in the tutorial. -[2024-03-16T18:44:09.616Z] alt_names = { -[2024-03-16T18:44:09.616Z] "TEMP_MIN": "tmin", -[2024-03-16T18:44:09.616Z] "TEMP_MAX": "tmax", -[2024-03-16T18:44:09.616Z] "PRECIP": "pr", -[2024-03-16T18:44:09.616Z] } -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here -[2024-03-16T18:44:09.616Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. -[2024-03-16T18:44:09.616Z] data_kwds = { -[2024-03-16T18:44:09.616Z] "ALL": { -[2024-03-16T18:44:09.616Z] "elevation": hru["elevation"], -[2024-03-16T18:44:09.616Z] "latitude": hru["latitude"], -[2024-03-16T18:44:09.616Z] "longitude": hru["longitude"], -[2024-03-16T18:44:09.616Z] } -[2024-03-16T18:44:09.616Z] } -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Give a name to the simulation -[2024-03-16T18:44:09.616Z] run_name = "Paper_example_simulation" -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Setup the gauge object that includes meteorological data from ERA5 -[2024-03-16T18:44:09.616Z] gauge = [ -[2024-03-16T18:44:09.616Z] rc.Gauge.from_nc( -[2024-03-16T18:44:09.616Z] tmp -[2024-03-16T18:44:09.616Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-03-16T18:44:09.616Z] data_type=data_type, # Note that this is the list of all the variables -[2024-03-16T18:44:09.616Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-03-16T18:44:09.616Z] data_kwds=data_kwds, -[2024-03-16T18:44:09.616Z] ) -[2024-03-16T18:44:09.616Z] ] -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Read the streamflow from the HYSETS catchment data for this basin -[2024-03-16T18:44:09.616Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, -[2024-03-16T18:44:09.616Z] # and the optimizer will read it directly to calibrate. -[2024-03-16T18:44:09.616Z] eval_metrics = ("NASH_SUTCLIFFE",) -[2024-03-16T18:44:09.616Z] -[2024-03-16T18:44:09.616Z] # Build the model configuration according to user preferences and inputs -[2024-03-16T18:44:09.616Z] model_config = GR4JCN( -[2024-03-16T18:44:09.616Z] ObservationData=discharge_data, -[2024-03-16T18:44:09.616Z] Gauge=gauge, -[2024-03-16T18:44:09.616Z] HRUs=[hru], -[2024-03-16T18:44:09.616Z] StartDate=start_date, -[2024-03-16T18:44:09.616Z] EndDate=end_date, -[2024-03-16T18:44:09.617Z] RunName=run_name, -[2024-03-16T18:44:09.617Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. -[2024-03-16T18:44:09.617Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. -[2024-03-16T18:44:09.617Z] ) -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] Traceback: -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.617Z] ValueError Traceback (most recent call last) -[2024-03-16T18:44:09.617Z] Cell In[1], line 42 -[2024-03-16T18:44:09.617Z]  38 run_name = "Paper_example_simulation" -[2024-03-16T18:44:09.617Z]  40 # Setup the gauge object that includes meteorological data from ERA5 -[2024-03-16T18:44:09.617Z]  41 gauge = [ -[2024-03-16T18:44:09.617Z] ---> 42 rc.Gauge.from_nc( -[2024-03-16T18:44:09.617Z]  43  tmp -[2024-03-16T18:44:09.617Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-03-16T18:44:09.617Z]  45  data_type=data_type, # Note that this is the list of all the variables -[2024-03-16T18:44:09.617Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-03-16T18:44:09.617Z]  47  data_kwds=data_kwds, -[2024-03-16T18:44:09.617Z]  48  ) -[2024-03-16T18:44:09.617Z]  49 ] -[2024-03-16T18:44:09.617Z]  51 # Read the streamflow from the HYSETS catchment data for this basin -[2024-03-16T18:44:09.617Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-03-16T18:44:09.617Z]  751 forcings.difference_update(data) -[2024-03-16T18:44:09.617Z]  753 if len(data) == 0: -[2024-03-16T18:44:09.617Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-03-16T18:44:09.617Z]  756 # Default Gauge name -[2024-03-16T18:44:09.617Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] ValueError: No data found in netCDF files. -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ -[2024-03-16T18:44:09.617Z] Notebook cell execution failed -[2024-03-16T18:44:09.617Z] Cell 16: Cell execution caused an exception -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] Input: -[2024-03-16T18:44:09.617Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, -[2024-03-16T18:44:09.617Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. -[2024-03-16T18:44:09.617Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) -[2024-03-16T18:44:09.617Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. -[2024-03-16T18:44:09.617Z] random_seed = 42 -[2024-03-16T18:44:09.617Z] np.random.seed(random_seed) -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] # Build the optimizer object -[2024-03-16T18:44:09.617Z] spot_setup = SpotSetup( -[2024-03-16T18:44:09.617Z] config=model_config, -[2024-03-16T18:44:09.617Z] low=low, -[2024-03-16T18:44:09.617Z] high=high, -[2024-03-16T18:44:09.617Z] ) -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-16T18:44:09.617Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-16T18:44:09.617Z] max_iterations = 200 -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer -[2024-03-16T18:44:09.617Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most -[2024-03-16T18:44:09.617Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation -[2024-03-16T18:44:09.617Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small -[2024-03-16T18:44:09.617Z] # evaluation budgets. For more details on DDS, see: -[2024-03-16T18:44:09.617Z] # -[2024-03-16T18:44:09.617Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water -[2024-03-16T18:44:09.617Z] # Resources Research, 43(1) -[2024-03-16T18:44:09.617Z] sampler = spotpy.algorithms.dds( -[2024-03-16T18:44:09.617Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False -[2024-03-16T18:44:09.617Z] ) -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and -[2024-03-16T18:44:09.617Z] # the best overall value from all trials is returned. -[2024-03-16T18:44:09.617Z] sampler.sample(max_iterations, trials=1) -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] # Get the model diagnostics -[2024-03-16T18:44:09.617Z] diag = spot_setup.diagnostics -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] # Get all the values of each iteration -[2024-03-16T18:44:09.617Z] results = sampler.getdata() -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] # Get the raw resutlts directly in an array -[2024-03-16T18:44:09.617Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( -[2024-03-16T18:44:09.617Z] results -[2024-03-16T18:44:09.617Z] ) # Want to get the MAX NSE (change for min for RMSE) -[2024-03-16T18:44:09.617Z] best_model_run = list( -[2024-03-16T18:44:09.617Z] results[bestindex][0] -[2024-03-16T18:44:09.617Z] ) # Get the parameter set returning the best NSE -[2024-03-16T18:44:09.617Z] optimized_parameters = best_model_run[ -[2024-03-16T18:44:09.617Z] 1:-1 -[2024-03-16T18:44:09.617Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] # Display the parameter set ready to use in a future run: -[2024-03-16T18:44:09.617Z] print(optimized_parameters) -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] Traceback: -[2024-03-16T18:44:09.617Z] -[2024-03-16T18:44:09.617Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.617Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.617Z] Cell In[1], line 12 -[2024-03-16T18:44:09.617Z]  8 np.random.seed(random_seed) -[2024-03-16T18:44:09.617Z]  10 # Build the optimizer object -[2024-03-16T18:44:09.617Z]  11 spot_setup = SpotSetup( -[2024-03-16T18:44:09.617Z] ---> 12 config=model_config, -[2024-03-16T18:44:09.617Z]  13 low=low, -[2024-03-16T18:44:09.617Z]  14 high=high, -[2024-03-16T18:44:09.618Z]  15 ) -[2024-03-16T18:44:09.618Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-16T18:44:09.618Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-16T18:44:09.618Z]  19 max_iterations = 200 -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] NameError: name 'model_config' is not defined -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ -[2024-03-16T18:44:09.618Z] Notebook cell execution failed -[2024-03-16T18:44:09.618Z] Cell 17: Cell execution caused an exception -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] Input: -[2024-03-16T18:44:09.618Z] # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-16T18:44:09.618Z] model_validation = model_config.duplicate( -[2024-03-16T18:44:09.618Z] params=optimized_parameters, -[2024-03-16T18:44:09.618Z] StartDate=dt.datetime(1986, 1, 1), -[2024-03-16T18:44:09.618Z] EndDate=dt.datetime(1990, 12, 31), -[2024-03-16T18:44:09.618Z] SuppressOutput=False, -[2024-03-16T18:44:09.618Z] ) -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] sim_output = Emulator(config=model_validation).run() -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-16T18:44:09.618Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] # Plot the model output -[2024-03-16T18:44:09.618Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") -[2024-03-16T18:44:09.618Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-16T18:44:09.618Z] plt.legend() -[2024-03-16T18:44:09.618Z] plt.title("Validation period - NSE=" + str(NSE[0])) -[2024-03-16T18:44:09.618Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-16T18:44:09.618Z] plt.grid() -[2024-03-16T18:44:09.618Z] plt.show() -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] Traceback: -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.618Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.618Z] Cell In[1], line 2 -[2024-03-16T18:44:09.618Z]  1 # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-16T18:44:09.618Z] ----> 2 model_validation = model_config.duplicate( -[2024-03-16T18:44:09.618Z]  3 params=optimized_parameters, -[2024-03-16T18:44:09.618Z]  4 StartDate=dt.datetime(1986, 1, 1), -[2024-03-16T18:44:09.618Z]  5 EndDate=dt.datetime(1990, 12, 31), -[2024-03-16T18:44:09.618Z]  6 SuppressOutput=False, -[2024-03-16T18:44:09.618Z]  7 ) -[2024-03-16T18:44:09.618Z]  9 sim_output = Emulator(config=model_validation).run() -[2024-03-16T18:44:09.618Z]  11 # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] NameError: name 'model_config' is not defined -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ -[2024-03-16T18:44:09.618Z] Notebook cell execution failed -[2024-03-16T18:44:09.618Z] Cell 18: Cell execution caused an exception -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] Input: -[2024-03-16T18:44:09.618Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-16T18:44:09.618Z] gauge_ref = [ -[2024-03-16T18:44:09.618Z] rc.Gauge.from_nc( -[2024-03-16T18:44:09.618Z] tmp -[2024-03-16T18:44:09.618Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-16T18:44:09.618Z] data_type=data_type, -[2024-03-16T18:44:09.618Z] alt_names=alt_names, -[2024-03-16T18:44:09.618Z] data_kwds=data_kwds, -[2024-03-16T18:44:09.618Z] ) -[2024-03-16T18:44:09.618Z] ] -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-16T18:44:09.618Z] model_config_reference = model_validation.duplicate( -[2024-03-16T18:44:09.618Z] Gauge=gauge_ref, -[2024-03-16T18:44:09.618Z] StartDate=reference_start_day -[2024-03-16T18:44:09.618Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-16T18:44:09.618Z] EndDate=reference_end_day, -[2024-03-16T18:44:09.618Z] ) -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] # Run the model from the configuration and get the outputs. -[2024-03-16T18:44:09.618Z] ref_output = Emulator(config=model_config_reference).run() -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] # Plot the model output. Note that both simulations should have similar hydrological -[2024-03-16T18:44:09.618Z] # regime but day-to-day variability is not expected to match. -[2024-03-16T18:44:09.618Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") -[2024-03-16T18:44:09.618Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-16T18:44:09.618Z] plt.legend() -[2024-03-16T18:44:09.618Z] plt.title("Reference period") -[2024-03-16T18:44:09.618Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-16T18:44:09.618Z] plt.grid() -[2024-03-16T18:44:09.618Z] plt.show() -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] Traceback: -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.618Z] ValueError Traceback (most recent call last) -[2024-03-16T18:44:09.618Z] Cell In[1], line 3 -[2024-03-16T18:44:09.618Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-16T18:44:09.618Z]  2 gauge_ref = [ -[2024-03-16T18:44:09.618Z] ----> 3 rc.Gauge.from_nc( -[2024-03-16T18:44:09.618Z]  4  tmp -[2024-03-16T18:44:09.618Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-16T18:44:09.618Z]  6  data_type=data_type, -[2024-03-16T18:44:09.618Z]  7  alt_names=alt_names, -[2024-03-16T18:44:09.618Z]  8  data_kwds=data_kwds, -[2024-03-16T18:44:09.618Z]  9  ) -[2024-03-16T18:44:09.618Z]  10 ] -[2024-03-16T18:44:09.618Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-16T18:44:09.618Z]  13 model_config_reference = model_validation.duplicate( -[2024-03-16T18:44:09.618Z]  14 Gauge=gauge_ref, -[2024-03-16T18:44:09.618Z]  15 StartDate=reference_start_day -[2024-03-16T18:44:09.618Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-16T18:44:09.618Z]  17 EndDate=reference_end_day, -[2024-03-16T18:44:09.618Z]  18 ) -[2024-03-16T18:44:09.618Z] -[2024-03-16T18:44:09.618Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-03-16T18:44:09.618Z]  751 forcings.difference_update(data) -[2024-03-16T18:44:09.618Z]  753 if len(data) == 0: -[2024-03-16T18:44:09.618Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-03-16T18:44:09.618Z]  756 # Default Gauge name -[2024-03-16T18:44:09.619Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] ValueError: No data found in netCDF files. -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ -[2024-03-16T18:44:09.619Z] Notebook cell execution failed -[2024-03-16T18:44:09.619Z] Cell 19: Cell execution caused an exception -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] Input: -[2024-03-16T18:44:09.619Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-16T18:44:09.619Z] gauge_fut = [ -[2024-03-16T18:44:09.619Z] rc.Gauge.from_nc( -[2024-03-16T18:44:09.619Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-16T18:44:09.619Z] data_type=data_type, -[2024-03-16T18:44:09.619Z] alt_names=alt_names, -[2024-03-16T18:44:09.619Z] data_kwds=data_kwds, -[2024-03-16T18:44:09.619Z] ) -[2024-03-16T18:44:09.619Z] ] -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-16T18:44:09.619Z] model_config_future = model_validation.duplicate( -[2024-03-16T18:44:09.619Z] Gauge=gauge_fut, -[2024-03-16T18:44:09.619Z] StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-16T18:44:09.619Z] EndDate=future_end_day, -[2024-03-16T18:44:09.619Z] ObservationData=None, # There are no observations for the future period. -[2024-03-16T18:44:09.619Z] ) -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] # Run the model and get the outputs and hydrographs. -[2024-03-16T18:44:09.619Z] fut_output = Emulator(config=model_config_future).run() -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] # Plot the model output -[2024-03-16T18:44:09.619Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") -[2024-03-16T18:44:09.619Z] plt.legend() -[2024-03-16T18:44:09.619Z] plt.title("Future period") -[2024-03-16T18:44:09.619Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-16T18:44:09.619Z] plt.grid() -[2024-03-16T18:44:09.619Z] plt.show() -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] Traceback: -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.619Z] ValueError Traceback (most recent call last) -[2024-03-16T18:44:09.619Z] Cell In[1], line 3 -[2024-03-16T18:44:09.619Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-16T18:44:09.619Z]  2 gauge_fut = [ -[2024-03-16T18:44:09.619Z] ----> 3 rc.Gauge.from_nc( -[2024-03-16T18:44:09.619Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-16T18:44:09.619Z]  5  data_type=data_type, -[2024-03-16T18:44:09.619Z]  6  alt_names=alt_names, -[2024-03-16T18:44:09.619Z]  7  data_kwds=data_kwds, -[2024-03-16T18:44:09.619Z]  8  ) -[2024-03-16T18:44:09.619Z]  9 ] -[2024-03-16T18:44:09.619Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-16T18:44:09.619Z]  12 model_config_future = model_validation.duplicate( -[2024-03-16T18:44:09.619Z]  13 Gauge=gauge_fut, -[2024-03-16T18:44:09.619Z]  14 StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-16T18:44:09.619Z]  15 EndDate=future_end_day, -[2024-03-16T18:44:09.619Z]  16 ObservationData=None, # There are no observations for the future period. -[2024-03-16T18:44:09.619Z]  17 ) -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-03-16T18:44:09.619Z]  751 forcings.difference_update(data) -[2024-03-16T18:44:09.619Z]  753 if len(data) == 0: -[2024-03-16T18:44:09.619Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-03-16T18:44:09.619Z]  756 # Default Gauge name -[2024-03-16T18:44:09.619Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] ValueError: No data found in netCDF files. -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ -[2024-03-16T18:44:09.619Z] Notebook cell execution failed -[2024-03-16T18:44:09.619Z] Cell 20: Cell execution caused an exception -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] Input: -[2024-03-16T18:44:09.619Z] # Extract the mean annual hydrograph for each simulation. -[2024-03-16T18:44:09.619Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-16T18:44:09.619Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-16T18:44:09.619Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-16T18:44:09.619Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] # Plot the model output -[2024-03-16T18:44:09.619Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") -[2024-03-16T18:44:09.619Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") -[2024-03-16T18:44:09.619Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") -[2024-03-16T18:44:09.619Z] future_flows.plot(color="red", label="Future", x="dayofyear") -[2024-03-16T18:44:09.619Z] plt.legend() -[2024-03-16T18:44:09.619Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-16T18:44:09.619Z] plt.xlabel("Day of year") -[2024-03-16T18:44:09.619Z] plt.xlim([0, 365]) -[2024-03-16T18:44:09.619Z] plt.title("Comparison of mean annual hydrographs") -[2024-03-16T18:44:09.619Z] plt.grid() -[2024-03-16T18:44:09.619Z] plt.show() -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] Traceback: -[2024-03-16T18:44:09.619Z] -[2024-03-16T18:44:09.619Z] --------------------------------------------------------------------------- -[2024-03-16T18:44:09.619Z] NameError Traceback (most recent call last) -[2024-03-16T18:44:09.620Z] Cell In[1], line 2 -[2024-03-16T18:44:09.620Z]  1 # Extract the mean annual hydrograph for each simulation. -[2024-03-16T18:44:09.620Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-16T18:44:09.620Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-16T18:44:09.620Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-16T18:44:09.620Z] -[2024-03-16T18:44:09.620Z] NameError: name 'ref_output' is not defined -[2024-03-16T18:44:09.620Z] -[2024-03-16T18:44:09.620Z] =========================== short test summary info ============================ -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 -[2024-03-16T18:44:09.620Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 -[2024-03-16T18:44:09.620Z] ================= 27 failed, 215 passed in 1625.68s (0:27:05) ================== -[2024-03-16T18:44:09.620Z] + EXIT_CODE=1 -[2024-03-16T18:44:09.620Z] + echo true -[2024-03-16T18:44:09.620Z] + tr [:upper:] [:lower:] -[2024-03-16T18:44:09.620Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-16T18:44:09.620Z] + [ xtrue = xtrue ] -[2024-03-16T18:44:09.620Z] + mkdir -p buildout -[2024-03-16T18:44:09.620Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-16T18:44:09.620Z] + filename=Region_selection.ipynb -[2024-03-16T18:44:09.620Z] + echo Region_selection.ipynb -[2024-03-16T18:44:09.620Z] + sed s/.ipynb$// -[2024-03-16T18:44:09.620Z] + filename=Region_selection -[2024-03-16T18:44:09.620Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-03-16T18:44:09.620Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-16T18:44:09.620Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-03-16T18:44:19.581Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb -[2024-03-16T18:44:19.581Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-16T18:44:19.581Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-03-16T18:44:19.581Z] + echo Subset_climate_data_over_watershed.ipynb -[2024-03-16T18:44:19.581Z] + sed s/.ipynb$// -[2024-03-16T18:44:19.581Z] + filename=Subset_climate_data_over_watershed -[2024-03-16T18:44:19.581Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-03-16T18:44:19.581Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-16T18:44:20.150Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-03-16T18:44:38.244Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-03-16T18:44:38.244Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-16T18:44:38.244Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-03-16T18:44:38.244Z] + sed s/.ipynb$// -[2024-03-16T18:44:38.244Z] + echo 00_Introduction_to_JupyterLab.ipynb -[2024-03-16T18:44:38.244Z] + filename=00_Introduction_to_JupyterLab -[2024-03-16T18:44:38.244Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-03-16T18:44:38.245Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-16T18:44:38.245Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-03-16T18:44:43.510Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-03-16T18:44:43.510Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-16T18:44:43.510Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-03-16T18:44:43.510Z] + echo 01_Getting_watershed_boundaries.ipynb -[2024-03-16T18:44:43.510Z] + sed s/.ipynb$// -[2024-03-16T18:44:43.510Z] + filename=01_Getting_watershed_boundaries -[2024-03-16T18:44:43.510Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-03-16T18:44:43.510Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-16T18:44:45.413Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-03-16T18:44:57.632Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-03-16T18:44:57.632Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-16T18:44:57.632Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-03-16T18:44:57.632Z] + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-03-16T18:44:57.632Z] + sed s/.ipynb$// -[2024-03-16T18:44:57.632Z] + filename=02_Extract_geographical_watershed_properties -[2024-03-16T18:44:57.632Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-03-16T18:44:57.632Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-16T18:44:57.891Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-03-16T18:45:15.995Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-03-16T18:45:15.995Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-16T18:45:15.995Z] + filename=03_Extracting_forcing_data.ipynb -[2024-03-16T18:45:15.995Z] + echo 03_Extracting_forcing_data.ipynb -[2024-03-16T18:45:15.995Z] + sed s/.ipynb$// -[2024-03-16T18:45:15.995Z] + filename=03_Extracting_forcing_data -[2024-03-16T18:45:15.995Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-03-16T18:45:15.995Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-16T18:45:16.257Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-03-16T18:47:22.777Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-03-16T18:47:22.777Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-16T18:47:22.777Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-03-16T18:47:22.777Z] + echo 04_Emulating_hydrological_models.ipynb -[2024-03-16T18:47:22.777Z] + sed s/.ipynb$// -[2024-03-16T18:47:22.777Z] + filename=04_Emulating_hydrological_models -[2024-03-16T18:47:22.777Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-03-16T18:47:22.778Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-16T18:47:22.778Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-03-16T18:47:40.890Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-03-16T18:47:40.890Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-16T18:47:40.890Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-03-16T18:47:40.890Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-03-16T18:47:40.890Z] + sed s/.ipynb$// -[2024-03-16T18:47:40.890Z] + filename=05_Advanced_RavenPy_configuration -[2024-03-16T18:47:40.890Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-03-16T18:47:40.890Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-16T18:47:40.890Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-03-16T18:48:02.848Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-03-16T18:48:02.848Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-16T18:48:02.848Z] + filename=06_Raven_calibration.ipynb -[2024-03-16T18:48:02.848Z] + echo 06_Raven_calibration.ipynb -[2024-03-16T18:48:02.848Z] + sed s/.ipynb$// -[2024-03-16T18:48:02.848Z] + filename=06_Raven_calibration -[2024-03-16T18:48:02.848Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-03-16T18:48:02.848Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-16T18:48:04.770Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-03-16T18:48:19.668Z] [NbConvertApp] Writing 24094 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-03-16T18:48:19.668Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-16T18:48:19.668Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-03-16T18:48:19.668Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-03-16T18:48:19.668Z] + sed s/.ipynb$// -[2024-03-16T18:48:19.668Z] + filename=07_Making_and_using_hotstart_files -[2024-03-16T18:48:19.668Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-03-16T18:48:19.668Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-16T18:48:19.668Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-03-16T18:48:34.696Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-03-16T18:48:34.696Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-16T18:48:34.696Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-16T18:48:34.696Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-16T18:48:34.696Z] + sed s/.ipynb$// -[2024-03-16T18:48:34.696Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-03-16T18:48:34.696Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-03-16T18:48:34.696Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-16T18:48:36.616Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-03-16T18:53:43.348Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). -[2024-03-16T18:53:44.720Z] Traceback (most recent call last): -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply -[2024-03-16T18:53:44.720Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async -[2024-03-16T18:53:44.720Z] result = await obj -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg -[2024-03-16T18:53:44.720Z] raise Empty -[2024-03-16T18:53:44.720Z] _queue.Empty -[2024-03-16T18:53:44.720Z] -[2024-03-16T18:53:44.720Z] During handling of the above exception, another exception occurred: -[2024-03-16T18:53:44.720Z] -[2024-03-16T18:53:44.720Z] Traceback (most recent call last): -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-03-16T18:53:44.720Z] sys.exit(main()) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance -[2024-03-16T18:53:44.720Z] super().launch_instance(argv=argv, **kwargs) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance -[2024-03-16T18:53:44.720Z] app.start() -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start -[2024-03-16T18:53:44.720Z] self.convert_notebooks() -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks -[2024-03-16T18:53:44.720Z] self.convert_single_notebook(notebook_filename) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook -[2024-03-16T18:53:44.720Z] output, resources = self.export_single_notebook( -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook -[2024-03-16T18:53:44.720Z] output, resources = self.exporter.from_filename( -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-03-16T18:53:44.720Z] return self.from_file(f, resources=resources, **kw) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-03-16T18:53:44.720Z] return self.from_notebook_node( -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-03-16T18:53:44.720Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-03-16T18:53:44.720Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess -[2024-03-16T18:53:44.720Z] nbc, resc = preprocessor(nbc, resc) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-03-16T18:53:44.720Z] return self.preprocess(nb, resources) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess -[2024-03-16T18:53:44.720Z] self.preprocess_cell(cell, resources, index) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell -[2024-03-16T18:53:44.720Z] cell = self.execute_cell(cell, index, store_history=True) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped -[2024-03-16T18:53:44.720Z] return loop.run_until_complete(inner) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-03-16T18:53:44.720Z] return future.result() -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell -[2024-03-16T18:53:44.720Z] exec_reply = await self.task_poll_for_reply -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply -[2024-03-16T18:53:44.720Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) -[2024-03-16T18:53:44.720Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout -[2024-03-16T18:53:44.720Z] raise CellTimeoutError.error_from_timeout_and_cell( -[2024-03-16T18:53:44.720Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. -[2024-03-16T18:53:44.720Z] The message was: Cell execution timed out. -[2024-03-16T18:53:44.720Z] Here is a preview of the cell contents: -[2024-03-16T18:53:44.720Z] ------------------- -[2024-03-16T18:53:44.720Z] ['# Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models.', 'ref_dataset = xr.merge(', ' [', ' corrected_ref_precip.to_dataset(name="pr"),', ' corrected_ref_tasmax.to_dataset(name="tasmax"),'] -[2024-03-16T18:53:44.720Z] ... -[2024-03-16T18:53:44.720Z] [' ]', ')', '', 'fn_fut = tmp / "future_dataset.nc"', 'fut_dataset.to_netcdf(fn_fut)'] -[2024-03-16T18:53:44.720Z] ------------------- -[2024-03-16T18:53:44.720Z] -[2024-03-16T18:53:44.982Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-16T18:53:44.982Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-16T18:53:44.982Z] + sed s/.ipynb$// -[2024-03-16T18:53:44.982Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-16T18:53:44.982Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-03-16T18:53:44.982Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-03-16T18:53:44.982Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-16T18:53:47.509Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-03-16T18:54:05.595Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-03-16T18:54:05.595Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-16T18:54:05.595Z] + filename=10_Data_assimilation.ipynb -[2024-03-16T18:54:05.595Z] + echo 10_Data_assimilation.ipynb -[2024-03-16T18:54:05.595Z] + sed s/.ipynb$// -[2024-03-16T18:54:05.595Z] + filename=10_Data_assimilation -[2024-03-16T18:54:05.595Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-03-16T18:54:05.595Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-16T18:54:07.495Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-03-16T18:54:54.173Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-03-16T18:54:54.173Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-16T18:54:54.173Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-03-16T18:54:54.173Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-03-16T18:54:54.173Z] + sed s/.ipynb$// -[2024-03-16T18:54:54.173Z] + filename=11_Climatological_ESP_forecasting -[2024-03-16T18:54:54.173Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-03-16T18:54:54.173Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-16T18:54:54.173Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-03-16T18:55:32.873Z] [NbConvertApp] Writing 556695 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-03-16T18:55:32.873Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-16T18:55:32.873Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-03-16T18:55:32.873Z] + + sed s/.ipynb$// -[2024-03-16T18:55:32.873Z] echo 12_Performing_hindcasting_experiments.ipynb -[2024-03-16T18:55:32.873Z] + filename=12_Performing_hindcasting_experiments -[2024-03-16T18:55:32.873Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-03-16T18:55:32.873Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-16T18:55:34.778Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-03-16T18:55:56.767Z] [NbConvertApp] Writing 298402 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-03-16T18:55:56.768Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-16T18:55:56.768Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-03-16T18:55:56.768Z] + echo Assess_probabilistic_flood_risk.ipynb -[2024-03-16T18:55:56.768Z] + sed s/.ipynb$// -[2024-03-16T18:55:56.768Z] + filename=Assess_probabilistic_flood_risk -[2024-03-16T18:55:56.768Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-03-16T18:55:56.768Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-16T18:55:56.768Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-03-16T18:56:28.853Z] [NbConvertApp] Writing 549251 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-03-16T18:56:28.853Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-16T18:56:28.853Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-16T18:56:28.853Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-16T18:56:28.853Z] + sed s/.ipynb$// -[2024-03-16T18:56:28.853Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-03-16T18:56:28.853Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-03-16T18:56:28.853Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-16T18:56:28.853Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-03-16T18:57:00.961Z] [NbConvertApp] Writing 747757 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-03-16T18:57:00.961Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-16T18:57:00.961Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-03-16T18:57:00.961Z] + + sed s/.ipynb$// -[2024-03-16T18:57:00.961Z] echo Distributed_hydrological_modelling.ipynb -[2024-03-16T18:57:00.961Z] + filename=Distributed_hydrological_modelling -[2024-03-16T18:57:00.961Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-03-16T18:57:00.961Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-16T18:57:00.961Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-03-16T18:57:33.048Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-03-16T18:57:33.048Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-16T18:57:33.048Z] + filename=HydroShare_integration.ipynb -[2024-03-16T18:57:33.048Z] + sed s/.ipynb$// -[2024-03-16T18:57:33.048Z] + echo HydroShare_integration.ipynb -[2024-03-16T18:57:33.048Z] + filename=HydroShare_integration -[2024-03-16T18:57:33.048Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-03-16T18:57:33.048Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-16T18:57:34.436Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-03-16T18:57:42.552Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb -[2024-03-16T18:57:42.552Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-16T18:57:42.552Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-03-16T18:57:42.552Z] + echo Hydrological_realtime_forecasting.ipynb -[2024-03-16T18:57:42.552Z] + sed s/.ipynb$// -[2024-03-16T18:57:42.552Z] + filename=Hydrological_realtime_forecasting -[2024-03-16T18:57:42.552Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-03-16T18:57:42.552Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-16T18:57:42.815Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-03-16T18:58:04.756Z] [NbConvertApp] Writing 281445 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-03-16T18:58:04.756Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-16T18:58:04.756Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-03-16T18:58:04.756Z] + + sed s/.ipynb$// -[2024-03-16T18:58:04.756Z] echo Managing_Jupyter_Environments.ipynb -[2024-03-16T18:58:04.756Z] + filename=Managing_Jupyter_Environments -[2024-03-16T18:58:04.756Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-03-16T18:58:04.756Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-16T18:58:05.705Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-03-16T18:58:15.678Z] [NbConvertApp] Writing 9577 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-03-16T18:58:15.678Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-16T18:58:15.678Z] + filename=Perform_Regionalization.ipynb -[2024-03-16T18:58:15.678Z] + echo Perform_Regionalization.ipynb -[2024-03-16T18:58:15.678Z] + sed s/.ipynb$// -[2024-03-16T18:58:15.678Z] + filename=Perform_Regionalization -[2024-03-16T18:58:15.678Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-03-16T18:58:15.678Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-16T18:58:17.588Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-03-16T18:58:49.677Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-03-16T18:58:49.677Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-16T18:58:49.677Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-16T18:58:49.677Z] + sed s/.ipynb$// -[2024-03-16T18:58:49.677Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-16T18:58:49.677Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-03-16T18:58:49.677Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-03-16T18:58:49.677Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-16T18:58:49.677Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-03-16T18:59:07.771Z] [NbConvertApp] Writing 109086 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-03-16T18:59:07.771Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-16T18:59:07.771Z] + filename=Sensitivity_analysis.ipynb -[2024-03-16T18:59:07.771Z] + + sed s/.ipynb$// -[2024-03-16T18:59:07.771Z] echo Sensitivity_analysis.ipynb -[2024-03-16T18:59:07.771Z] + filename=Sensitivity_analysis -[2024-03-16T18:59:07.771Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-03-16T18:59:07.771Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-16T18:59:07.771Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-03-16T18:59:29.730Z] [NbConvertApp] Writing 35133 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-03-16T18:59:29.730Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-16T18:59:29.730Z] + filename=time_series_analysis.ipynb -[2024-03-16T18:59:29.730Z] + echo time_series_analysis.ipynb -[2024-03-16T18:59:29.730Z] + sed s/.ipynb$// -[2024-03-16T18:59:29.730Z] + filename=time_series_analysis -[2024-03-16T18:59:29.730Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-03-16T18:59:29.730Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-16T18:59:29.730Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-03-16T18:59:39.725Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb -[2024-03-16T18:59:39.725Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-16T18:59:39.725Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-16T18:59:39.725Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-16T18:59:39.725Z] + sed s/.ipynb$// -[2024-03-16T18:59:39.725Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-03-16T18:59:39.725Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-03-16T18:59:39.725Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-16T18:59:39.987Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-03-16T19:01:46.477Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-03-16T19:01:46.477Z] + exit 1 -[2024-03-16T19:01:46.477Z] + EXIT_CODE=1 -[2024-03-16T19:01:46.477Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-16T19:01:46.477Z] + mkdir -p buildout/env-dump -[2024-03-16T19:01:46.477Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-16T19:01:46.477Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-16T19:01:46.477Z] + conda env export -n birdy -[2024-03-16T19:01:54.575Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-16T19:01:54.575Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-16T19:01:54.575Z] + conda list -n birdy --explicit -[2024-03-16T19:02:04.545Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-16T19:02:04.545Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-16T19:02:04.545Z] + pip freeze -[2024-03-16T19:02:04.545Z] + exit 1 +[2024-03-23T18:17:23.066Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-03-23T18:17:23.067Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-23T18:17:23.067Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-23T18:17:23.067Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-23T18:17:23.067Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-23T18:17:23.067Z] FINCH_BRANCH has been set to 'master' +[2024-03-23T18:17:23.067Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-23T18:17:23.067Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-23T18:17:23.067Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-23T18:17:23.067Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-23T18:17:23.067Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-23T18:17:23.067Z] RAVEN_BRANCH has been set to 'main' +[2024-03-23T18:17:23.067Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-23T18:17:23.067Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-23T18:17:23.067Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-23T18:17:23.067Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-23T18:17:23.067Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-23T18:17:23.067Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-23T18:17:23.067Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-23T18:17:23.067Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-03-23T18:17:23.067Z] + git clean -fdx +[2024-03-23T18:17:24.968Z] Removing .pytest_cache/ +[2024-03-23T18:17:24.968Z] Removing PAVICS-landing-master/ +[2024-03-23T18:17:24.968Z] Removing RavenPy-master/ +[2024-03-23T18:17:24.968Z] Removing __pycache__/ +[2024-03-23T18:17:24.968Z] Removing buildout/ +[2024-03-23T18:17:24.968Z] Removing esgf-compute-api-devel/ +[2024-03-23T18:17:24.968Z] Removing finch-master/ +[2024-03-23T18:17:24.968Z] Removing pavics-sdi-master/ +[2024-03-23T18:17:24.968Z] Removing raven-main/ +[2024-03-23T18:17:24.968Z] + ./downloadrepos +[2024-03-23T18:17:24.968Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-03-23T18:17:24.968Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-03-23T18:17:24.968Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-03-23T18:17:24.968Z] TEST_FINCH_REPO has been set to 'false' +[2024-03-23T18:17:24.968Z] FINCH_BRANCH has been set to 'master' +[2024-03-23T18:17:24.968Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-03-23T18:17:24.968Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-03-23T18:17:24.968Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-03-23T18:17:24.968Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-03-23T18:17:24.968Z] TEST_RAVEN_REPO has been set to 'true' +[2024-03-23T18:17:24.968Z] RAVEN_BRANCH has been set to 'main' +[2024-03-23T18:17:24.968Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-03-23T18:17:24.968Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-03-23T18:17:24.968Z] RAVENPY_BRANCH has been set to 'master' +[2024-03-23T18:17:24.968Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-03-23T18:17:24.968Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-03-23T18:17:24.968Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-03-23T18:17:24.968Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-03-23T18:17:24.968Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-03-23T18:17:24.968Z] + rm -rf pavics-sdi-* +[2024-03-23T18:17:24.968Z] + grep pavics-sdi +[2024-03-23T18:17:24.968Z] + ls +[2024-03-23T18:17:24.968Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-03-23T18:17:24.968Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-03-23T18:17:24.968Z] + shift +[2024-03-23T18:17:24.968Z] + branch=master +[2024-03-23T18:17:24.968Z] + shift +[2024-03-23T18:17:24.968Z] + tar xz +[2024-03-23T18:17:24.968Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-03-23T18:17:28.256Z] + grep pavics-sdi +[2024-03-23T18:17:28.256Z] + ls +[2024-03-23T18:17:28.256Z] pavics-sdi-master +[2024-03-23T18:17:28.256Z] + set +x +[2024-03-23T18:17:28.256Z] + rm -rf finch-* +[2024-03-23T18:17:28.256Z] + ls +[2024-03-23T18:17:28.256Z] + grep finch +[2024-03-23T18:17:28.256Z] + downloadrepos https://github.com/bird-house/finch master +[2024-03-23T18:17:28.257Z] + github_repo=https://github.com/bird-house/finch +[2024-03-23T18:17:28.257Z] + shift +[2024-03-23T18:17:28.257Z] + branch=master +[2024-03-23T18:17:28.257Z] + shift +[2024-03-23T18:17:28.257Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-03-23T18:17:28.257Z] + tar xz +[2024-03-23T18:17:29.628Z] + ls +[2024-03-23T18:17:29.628Z] + grep finch +[2024-03-23T18:17:29.628Z] finch-master +[2024-03-23T18:17:29.628Z] + set +x +[2024-03-23T18:17:29.885Z] + rm -rf PAVICS-landing-* +[2024-03-23T18:17:29.885Z] + ls +[2024-03-23T18:17:29.885Z] + grep PAVICS-landing +[2024-03-23T18:17:29.885Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-03-23T18:17:29.885Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-03-23T18:17:29.885Z] + shift +[2024-03-23T18:17:29.885Z] + branch=master +[2024-03-23T18:17:29.885Z] + shift +[2024-03-23T18:17:29.885Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-03-23T18:17:29.885Z] + tar xz +[2024-03-23T18:17:42.074Z] + ls +[2024-03-23T18:17:42.075Z] + grep PAVICS-landing +[2024-03-23T18:17:42.075Z] PAVICS-landing-master +[2024-03-23T18:17:42.075Z] + set +x +[2024-03-23T18:17:42.075Z] + rm -rf raven-* +[2024-03-23T18:17:42.075Z] + ls +[2024-03-23T18:17:42.075Z] + grep raven +[2024-03-23T18:17:42.075Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-03-23T18:17:42.075Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-03-23T18:17:42.075Z] + shift +[2024-03-23T18:17:42.075Z] + branch=main +[2024-03-23T18:17:42.075Z] + shift +[2024-03-23T18:17:42.075Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-03-23T18:17:42.075Z] + tar xz +[2024-03-23T18:17:43.440Z] + ls +[2024-03-23T18:17:43.440Z] + grep raven +[2024-03-23T18:17:43.440Z] raven-main +[2024-03-23T18:17:43.440Z] + set +x +[2024-03-23T18:17:43.440Z] + rm -rf RavenPy-* +[2024-03-23T18:17:43.440Z] + ls +[2024-03-23T18:17:43.440Z] + grep RavenPy +[2024-03-23T18:17:43.440Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-03-23T18:17:43.440Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-03-23T18:17:43.440Z] + shift +[2024-03-23T18:17:43.440Z] + branch=master +[2024-03-23T18:17:43.440Z] + shift +[2024-03-23T18:17:43.440Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-03-23T18:17:43.440Z] + tar xz +[2024-03-23T18:17:45.957Z] + ls +[2024-03-23T18:17:45.957Z] + grep RavenPy +[2024-03-23T18:17:45.957Z] RavenPy-master +[2024-03-23T18:17:45.957Z] + set +x +[2024-03-23T18:17:45.957Z] + rm -rf esgf-compute-api-* +[2024-03-23T18:17:45.957Z] + ls +[2024-03-23T18:17:45.957Z] + grep esgf-compute-api +[2024-03-23T18:17:45.957Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-03-23T18:17:45.957Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-03-23T18:17:45.957Z] + shift +[2024-03-23T18:17:45.957Z] + branch=devel +[2024-03-23T18:17:45.957Z] + shift +[2024-03-23T18:17:45.957Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-03-23T18:17:45.957Z] + tar xz +[2024-03-23T18:17:46.888Z] + ls +[2024-03-23T18:17:46.888Z] + grep esgf-compute-api +[2024-03-23T18:17:46.888Z] esgf-compute-api-devel +[2024-03-23T18:17:46.888Z] + set +x +[2024-03-23T18:17:46.888Z] + echo master +[2024-03-23T18:17:46.888Z] + sed s@/@-@g +[2024-03-23T18:17:46.888Z] + PAVICS_SDI_BRANCH=master +[2024-03-23T18:17:46.888Z] + echo Ouranosinc/pavics-sdi +[2024-03-23T18:17:46.888Z] + sed s@^.*/@@g +[2024-03-23T18:17:46.888Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-03-23T18:17:46.888Z] + echo master +[2024-03-23T18:17:46.888Z] + sed s@/@-@g +[2024-03-23T18:17:46.889Z] + FINCH_BRANCH=master +[2024-03-23T18:17:46.889Z] + echo bird-house/finch +[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g +[2024-03-23T18:17:46.889Z] + FINCH_REPO_NAME=finch +[2024-03-23T18:17:46.889Z] + echo master +[2024-03-23T18:17:46.889Z] + sed s@/@-@g +[2024-03-23T18:17:46.889Z] + PAVICS_LANDING_BRANCH=master +[2024-03-23T18:17:46.889Z] + echo Ouranosinc/PAVICS-landing +[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g +[2024-03-23T18:17:46.889Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-03-23T18:17:46.889Z] + echo main +[2024-03-23T18:17:46.889Z] + sed s@/@-@g +[2024-03-23T18:17:46.889Z] + RAVEN_BRANCH=main +[2024-03-23T18:17:46.889Z] + echo Ouranosinc/raven +[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g +[2024-03-23T18:17:46.889Z] + RAVEN_REPO_NAME=raven +[2024-03-23T18:17:46.889Z] + echo master +[2024-03-23T18:17:46.889Z] + sed s@/@-@g +[2024-03-23T18:17:46.889Z] + RAVENPY_BRANCH=master +[2024-03-23T18:17:46.889Z] + echo CSHS-CWRA/RavenPy +[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g +[2024-03-23T18:17:46.889Z] + RAVENPY_REPO_NAME=RavenPy +[2024-03-23T18:17:46.889Z] + echo devel +[2024-03-23T18:17:46.889Z] + sed s@/@-@g +[2024-03-23T18:17:46.889Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-03-23T18:17:46.889Z] + echo ESGF/esgf-compute-api +[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g +[2024-03-23T18:17:46.889Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-03-23T18:17:46.889Z] + echo pavics-sdi-master +[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T18:17:46.889Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-03-23T18:17:46.889Z] + echo finch-master +[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T18:17:46.889Z] + FINCH_DIR=finch-master +[2024-03-23T18:17:46.889Z] + echo PAVICS-landing-master +[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T18:17:46.889Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-03-23T18:17:46.889Z] + echo raven-main +[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T18:17:46.889Z] + RAVEN_DIR=raven-main +[2024-03-23T18:17:46.889Z] + echo RavenPy-master +[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T18:17:46.889Z] + RAVENPY_DIR=RavenPy-master +[2024-03-23T18:17:46.889Z] + echo esgf-compute-api-devel +[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-03-23T18:17:46.889Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-03-23T18:17:46.889Z] + echo true +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + VERIFY_SSL=true +[2024-03-23T18:17:46.889Z] + [ xtrue = xfalse ] +[2024-03-23T18:17:46.889Z] + rm -v finch-master/setup.cfg +[2024-03-23T18:17:46.889Z] removed 'finch-master/setup.cfg' +[2024-03-23T18:17:46.889Z] + rm -v raven-main/setup.cfg +[2024-03-23T18:17:46.889Z] removed 'raven-main/setup.cfg' +[2024-03-23T18:17:46.889Z] + rm -v raven-main/pyproject.toml +[2024-03-23T18:17:46.889Z] removed 'raven-main/pyproject.toml' +[2024-03-23T18:17:46.889Z] + rm -v RavenPy-master/setup.cfg +[2024-03-23T18:17:46.889Z] removed 'RavenPy-master/setup.cfg' +[2024-03-23T18:17:46.889Z] + rm -v RavenPy-master/tox.ini +[2024-03-23T18:17:46.889Z] removed 'RavenPy-master/tox.ini' +[2024-03-23T18:17:46.889Z] + rm -v RavenPy-master/pyproject.toml +[2024-03-23T18:17:46.889Z] removed 'RavenPy-master/pyproject.toml' +[2024-03-23T18:17:46.889Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-03-23T18:17:46.889Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-03-23T18:17:46.889Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-03-23T18:17:46.889Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-03-23T18:17:46.889Z] + echo false +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + TEST_MAGPIE_AUTH=false +[2024-03-23T18:17:46.889Z] + echo false +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + TEST_PAVICS_SDI_REPO=false +[2024-03-23T18:17:46.889Z] + echo false +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-03-23T18:17:46.889Z] + echo false +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + TEST_FINCH_REPO=false +[2024-03-23T18:17:46.889Z] + echo false +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + TEST_PAVICS_LANDING_REPO=false +[2024-03-23T18:17:46.889Z] + echo true +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + TEST_RAVEN_REPO=true +[2024-03-23T18:17:46.889Z] + echo true +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + TEST_RAVENPY_REPO=true +[2024-03-23T18:17:46.889Z] + echo false +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-03-23T18:17:46.889Z] + echo false +[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] +[2024-03-23T18:17:46.889Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-03-23T18:17:46.889Z] + NOTEBOOKS_TO_TEST= +[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] +[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] +[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] +[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] +[2024-03-23T18:17:46.889Z] + [ xtrue = xtrue ] +[2024-03-23T18:17:46.889Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-03-23T18:17:46.889Z] + [ xtrue = xtrue ] +[2024-03-23T18:17:46.889Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-03-23T18:17:46.889Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] +[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] +[2024-03-23T18:17:46.889Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-03-23T18:17:46.889Z] + [ -n ] +[2024-03-23T18:17:46.889Z] + [ ! -z pavics.ouranos.ca ] +[2024-03-23T18:17:46.889Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-03-23T18:17:46.889Z] Will run notebooks against pavics.ouranos.ca +[2024-03-23T18:17:46.889Z] + [ -z ] +[2024-03-23T18:17:46.889Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-23T18:17:46.889Z] + git diff +[2024-03-23T18:17:46.889Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-03-23T18:17:46.890Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-03-23T18:17:48.784Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-03-23T18:17:48.785Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-03-23T18:17:49.054Z] ============================= test session starts ============================== +[2024-03-23T18:17:49.054Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-03-23T18:17:49.054Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-03-23T18:17:49.054Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-03-23T18:17:49.054Z] collected 242 items +[2024-03-23T18:17:49.054Z] +[2024-03-23T18:18:03.205Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-03-23T18:18:04.589Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-03-23T18:18:20.308Z] ...... [ 6%] +[2024-03-23T18:18:22.203Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] +[2024-03-23T18:18:22.203Z] [ 9%] +[2024-03-23T18:18:24.364Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-03-23T18:18:32.475Z] .... [ 12%] +[2024-03-23T18:18:37.762Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-03-23T18:18:57.261Z] ....F.FF..F.. [ 18%] +[2024-03-23T18:19:22.586Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] +[2024-03-23T18:20:31.229Z] .. [ 22%] +[2024-03-23T18:20:33.541Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] +[2024-03-23T18:20:43.570Z] ..FFFFFFFF....... [ 30%] +[2024-03-23T18:20:51.144Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] +[2024-03-23T18:21:00.762Z] ........... [ 36%] +[2024-03-23T18:21:10.677Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] +[2024-03-23T18:21:15.975Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-03-23T18:21:21.566Z] ..... [ 41%] +[2024-03-23T18:21:23.034Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-03-23T18:26:29.633Z] ................. [ 48%] +[2024-03-23T18:26:34.985Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-03-23T18:26:44.106Z] .... [ 50%] +[2024-03-23T18:27:27.448Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] +[2024-03-23T18:27:36.488Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] +[2024-03-23T18:28:03.395Z] ...... [ 57%] +[2024-03-23T18:28:11.493Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] +[2024-03-23T18:28:20.109Z] ....... [ 60%] +[2024-03-23T18:28:27.605Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] +[2024-03-23T18:28:43.511Z] .... [ 64%] +[2024-03-23T18:28:51.628Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-03-23T18:29:10.764Z] ....... [ 67%] +[2024-03-23T18:29:14.182Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-03-23T18:29:44.414Z] ....... [ 70%] +[2024-03-23T18:29:47.191Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] +[2024-03-23T18:29:59.078Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] +[2024-03-23T18:30:06.305Z] .... [ 74%] +[2024-03-23T18:30:57.016Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] +[2024-03-23T18:31:26.754Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] +[2024-03-23T18:31:26.754Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-03-23T18:31:39.606Z] ............. [ 84%] +[2024-03-23T18:31:57.109Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] +[2024-03-23T18:32:06.002Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] +[2024-03-23T18:32:15.960Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-03-23T18:33:24.037Z] .........FFFFFFFFFFF [100%] +[2024-03-23T18:33:24.037Z] +[2024-03-23T18:33:24.037Z] =================================== FAILURES =================================== +[2024-03-23T18:33:24.037Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ +[2024-03-23T18:33:24.037Z] Notebook cell execution failed +[2024-03-23T18:33:24.037Z] Cell 5: Cell execution caused an exception +[2024-03-23T18:33:24.037Z] +[2024-03-23T18:33:24.037Z] Input: +[2024-03-23T18:33:24.037Z] features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-23T18:33:24.037Z] grid = raster[0] +[2024-03-23T18:33:24.037Z] grid.plot() +[2024-03-23T18:33:24.037Z] +[2024-03-23T18:33:24.037Z] Traceback: +[2024-03-23T18:33:24.037Z] +[2024-03-23T18:33:24.037Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.037Z] ValueError Traceback (most recent call last) +[2024-03-23T18:33:24.037Z] Cell In[1], line 3 +[2024-03-23T18:33:24.037Z]  1 features, statistics, raster = stats_resp.get(asobj=True) +[2024-03-23T18:33:24.037Z]  2 grid = raster[0] +[2024-03-23T18:33:24.037Z] ----> 3 grid.plot() +[2024-03-23T18:33:24.037Z] +[2024-03-23T18:33:24.037Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) +[2024-03-23T18:33:24.037Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: +[2024-03-23T18:33:24.037Z] --> 942 raise ValueError( +[2024-03-23T18:33:24.037Z]  943 "Dataset.plot cannot be called directly. Use " +[2024-03-23T18:33:24.038Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" +[2024-03-23T18:33:24.038Z]  945 ) +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ +[2024-03-23T18:33:24.038Z] Notebook cell execution failed +[2024-03-23T18:33:24.038Z] Cell 7: Cell execution caused an exception +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] Input: +[2024-03-23T18:33:24.038Z] unique, counts = np.unique(grid, return_counts=True) +[2024-03-23T18:33:24.038Z] print("The land-use categories available are: " + str(unique)) +[2024-03-23T18:33:24.038Z] print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] # Pixels values at '127' are NaN and can be ignored. +[2024-03-23T18:33:24.038Z] from matplotlib.colors import Normalize +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] norm = Normalize() +[2024-03-23T18:33:24.038Z] norm.autoscale(unique[:-1]) +[2024-03-23T18:33:24.038Z] cm = mpl.colormaps["tab20"] +[2024-03-23T18:33:24.038Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] # plt.bar(unique[:-1], counts[:-1]) +[2024-03-23T18:33:24.038Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) +[2024-03-23T18:33:24.038Z] plt.xlabel("Land-use categories") +[2024-03-23T18:33:24.038Z] plt.ylabel("Number of pixels") +[2024-03-23T18:33:24.038Z] plt.show() +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") +[2024-03-23T18:33:24.038Z] grid.name = "Land-use categories" +[2024-03-23T18:33:24.038Z] plt.show() +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] Traceback: +[2024-03-23T18:33:24.038Z] +[2024-03-23T18:33:24.038Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.038Z] TypeError Traceback (most recent call last) +[2024-03-23T18:33:24.038Z] /tmp/ipykernel_353/750628277.py in ?() +[2024-03-23T18:33:24.038Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) +[2024-03-23T18:33:24.039Z]  2 print("The land-use categories available are: " + str(unique)) +[2024-03-23T18:33:24.039Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-03-23T18:33:24.039Z]  4  +[2024-03-23T18:33:24.039Z] +[2024-03-23T18:33:24.039Z] <__array_function__ internals> in ?(*args, **kwargs) +[2024-03-23T18:33:24.039Z] +[2024-03-23T18:33:24.039Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) +[2024-03-23T18:33:24.039Z]  268 >>> np.repeat(values, counts) +[2024-03-23T18:33:24.039Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved +[2024-03-23T18:33:24.039Z]  270  +[2024-03-23T18:33:24.039Z]  271 """ +[2024-03-23T18:33:24.039Z] --> 272 ar = np.asanyarray(ar) +[2024-03-23T18:33:24.039Z]  273 if axis is None: +[2024-03-23T18:33:24.039Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, +[2024-03-23T18:33:24.039Z]  275 equal_nan=equal_nan) +[2024-03-23T18:33:24.039Z] +[2024-03-23T18:33:24.039Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) +[2024-03-23T18:33:24.039Z]  1472 def __array__(self, dtype=None): +[2024-03-23T18:33:24.040Z] -> 1473 raise TypeError( +[2024-03-23T18:33:24.040Z]  1474 "cannot directly convert an xarray.Dataset into a " +[2024-03-23T18:33:24.040Z]  1475 "numpy array. Instead, create an xarray.DataArray " +[2024-03-23T18:33:24.040Z]  1476 "first, either with indexing on the Dataset or by " +[2024-03-23T18:33:24.040Z] +[2024-03-23T18:33:24.040Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. +[2024-03-23T18:33:24.040Z] +[2024-03-23T18:33:24.040Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ +[2024-03-23T18:33:24.040Z] Notebook cell execution failed +[2024-03-23T18:33:24.040Z] Cell 8: Cell execution caused an exception +[2024-03-23T18:33:24.040Z] +[2024-03-23T18:33:24.040Z] Input: +[2024-03-23T18:33:24.040Z] import cartopy.crs as ccrs +[2024-03-23T18:33:24.040Z] +[2024-03-23T18:33:24.040Z] # Set a CRS transformation: +[2024-03-23T18:33:24.040Z] crs = ccrs.LambertConformal( +[2024-03-23T18:33:24.040Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-23T18:33:24.040Z] ) +[2024-03-23T18:33:24.040Z] +[2024-03-23T18:33:24.040Z] ax = plt.subplot(projection=crs) +[2024-03-23T18:33:24.040Z] grid.name = "Land-use categories" +[2024-03-23T18:33:24.040Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-23T18:33:24.040Z] plt.show() +[2024-03-23T18:33:24.040Z] +[2024-03-23T18:33:24.040Z] Traceback: +[2024-03-23T18:33:24.040Z] +[2024-03-23T18:33:24.040Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.040Z] AttributeError Traceback (most recent call last) +[2024-03-23T18:33:24.040Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-03-23T18:33:24.040Z]  304 try: +[2024-03-23T18:33:24.040Z] --> 305 object.__setattr__(self, name, value) +[2024-03-23T18:33:24.041Z]  306 except AttributeError as e: +[2024-03-23T18:33:24.041Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-03-23T18:33:24.041Z]  308 # DataArray.dims.setter +[2024-03-23T18:33:24.041Z] +[2024-03-23T18:33:24.041Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-03-23T18:33:24.041Z] +[2024-03-23T18:33:24.041Z] The above exception was the direct cause of the following exception: +[2024-03-23T18:33:24.041Z] +[2024-03-23T18:33:24.041Z] AttributeError Traceback (most recent call last) +[2024-03-23T18:33:24.041Z] Cell In[1], line 9 +[2024-03-23T18:33:24.041Z]  4 crs = ccrs.LambertConformal( +[2024-03-23T18:33:24.041Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-23T18:33:24.041Z]  6 ) +[2024-03-23T18:33:24.041Z]  8 ax = plt.subplot(projection=crs) +[2024-03-23T18:33:24.041Z] ----> 9 grid.name = "Land-use categories" +[2024-03-23T18:33:24.041Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-03-23T18:33:24.041Z]  11 plt.show() +[2024-03-23T18:33:24.041Z] +[2024-03-23T18:33:24.042Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-03-23T18:33:24.042Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-03-23T18:33:24.042Z]  310 raise +[2024-03-23T18:33:24.042Z] --> 311 raise AttributeError( +[2024-03-23T18:33:24.042Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-03-23T18:33:24.042Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-03-23T18:33:24.042Z]  314 ) from e +[2024-03-23T18:33:24.042Z] +[2024-03-23T18:33:24.042Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-03-23T18:33:24.042Z] +[2024-03-23T18:33:24.042Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ +[2024-03-23T18:33:24.042Z] Notebook cell execution failed +[2024-03-23T18:33:24.042Z] Cell 11: Cell execution caused an exception +[2024-03-23T18:33:24.042Z] +[2024-03-23T18:33:24.042Z] Input: +[2024-03-23T18:33:24.042Z] crs = ccrs.LambertConformal( +[2024-03-23T18:33:24.042Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-23T18:33:24.042Z] ) +[2024-03-23T18:33:24.042Z] +[2024-03-23T18:33:24.042Z] dem.name = "Elevation" +[2024-03-23T18:33:24.042Z] dem.attrs["units"] = "m" +[2024-03-23T18:33:24.042Z] ax = plt.subplot(projection=crs) +[2024-03-23T18:33:24.042Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") +[2024-03-23T18:33:24.043Z] plt.show() +[2024-03-23T18:33:24.043Z] +[2024-03-23T18:33:24.043Z] Traceback: +[2024-03-23T18:33:24.043Z] +[2024-03-23T18:33:24.043Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.043Z] AttributeError Traceback (most recent call last) +[2024-03-23T18:33:24.043Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-03-23T18:33:24.043Z]  304 try: +[2024-03-23T18:33:24.043Z] --> 305 object.__setattr__(self, name, value) +[2024-03-23T18:33:24.043Z]  306 except AttributeError as e: +[2024-03-23T18:33:24.043Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-03-23T18:33:24.043Z]  308 # DataArray.dims.setter +[2024-03-23T18:33:24.043Z] +[2024-03-23T18:33:24.043Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-03-23T18:33:24.043Z] +[2024-03-23T18:33:24.043Z] The above exception was the direct cause of the following exception: +[2024-03-23T18:33:24.043Z] +[2024-03-23T18:33:24.043Z] AttributeError Traceback (most recent call last) +[2024-03-23T18:33:24.043Z] Cell In[1], line 5 +[2024-03-23T18:33:24.043Z]  1 crs = ccrs.LambertConformal( +[2024-03-23T18:33:24.043Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-03-23T18:33:24.043Z]  3 ) +[2024-03-23T18:33:24.043Z] ----> 5 dem.name = "Elevation" +[2024-03-23T18:33:24.043Z]  6 dem.attrs["units"] = "m" +[2024-03-23T18:33:24.044Z]  7 ax = plt.subplot(projection=crs) +[2024-03-23T18:33:24.044Z] +[2024-03-23T18:33:24.044Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-03-23T18:33:24.044Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-03-23T18:33:24.044Z]  310 raise +[2024-03-23T18:33:24.044Z] --> 311 raise AttributeError( +[2024-03-23T18:33:24.044Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-03-23T18:33:24.044Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-03-23T18:33:24.044Z]  314 ) from e +[2024-03-23T18:33:24.044Z] +[2024-03-23T18:33:24.044Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-03-23T18:33:24.044Z] +[2024-03-23T18:33:24.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-03-23T18:33:24.044Z] Notebook cell execution failed +[2024-03-23T18:33:24.044Z] Cell 5: Cell execution caused an exception +[2024-03-23T18:33:24.044Z] +[2024-03-23T18:33:24.044Z] Input: +[2024-03-23T18:33:24.044Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-03-23T18:33:24.044Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-03-23T18:33:24.044Z] from ravenpy import OutputReader +[2024-03-23T18:33:24.045Z] from ravenpy.ravenpy import run +[2024-03-23T18:33:24.045Z] +[2024-03-23T18:33:24.045Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-03-23T18:33:24.045Z] run_name = run_name +[2024-03-23T18:33:24.045Z] +[2024-03-23T18:33:24.045Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-03-23T18:33:24.045Z] # subfolder called "outputs" +[2024-03-23T18:33:24.045Z] configdir = workdir +[2024-03-23T18:33:24.045Z] +[2024-03-23T18:33:24.045Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-23T18:33:24.045Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-23T18:33:24.045Z] +[2024-03-23T18:33:24.045Z] # Get the outputs using the Output Reader object. +[2024-03-23T18:33:24.045Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-23T18:33:24.045Z] +[2024-03-23T18:33:24.045Z] Traceback: +[2024-03-23T18:33:24.045Z] +[2024-03-23T18:33:24.045Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.045Z] RavenError Traceback (most recent call last) +[2024-03-23T18:33:24.045Z] Cell In[1], line 14 +[2024-03-23T18:33:24.045Z]  11 configdir = workdir +[2024-03-23T18:33:24.045Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-03-23T18:33:24.047Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-03-23T18:33:24.047Z]  16 # Get the outputs using the Output Reader object. +[2024-03-23T18:33:24.047Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-03-23T18:33:24.047Z] +[2024-03-23T18:33:24.047Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-23T18:33:24.047Z]  320 warn(msg, category=RavenWarning) +[2024-03-23T18:33:24.047Z]  322 if messages["ERROR"]: +[2024-03-23T18:33:24.047Z] --> 323 raise RavenError( +[2024-03-23T18:33:24.053Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-23T18:33:24.053Z]  325 ) +[2024-03-23T18:33:24.053Z]  327 if returncode != 0: +[2024-03-23T18:33:24.053Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] RavenError: Config directory: /tmp/NB4i2jdsylm +[2024-03-23T18:33:24.053Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-03-23T18:33:24.053Z] Notebook cell execution failed +[2024-03-23T18:33:24.053Z] Cell 6: Cell execution caused an exception +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] Input: +[2024-03-23T18:33:24.053Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-03-23T18:33:24.053Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-03-23T18:33:24.053Z] from ravenpy import Emulator +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] # Prepare the emulator by writing files on disk +[2024-03-23T18:33:24.053Z] e = Emulator(config=m) +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] # Run the model and get the outputs. +[2024-03-23T18:33:24.053Z] outputs = e.run() +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] Traceback: +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.053Z] RavenError Traceback (most recent call last) +[2024-03-23T18:33:24.053Z] Cell In[1], line 9 +[2024-03-23T18:33:24.053Z]  6 e = Emulator(config=m) +[2024-03-23T18:33:24.053Z]  8 # Run the model and get the outputs. +[2024-03-23T18:33:24.053Z] ----> 9 outputs = e.run() +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-03-23T18:33:24.053Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-03-23T18:33:24.053Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-03-23T18:33:24.053Z]  66 self.write_rv(overwrite=overwrite) +[2024-03-23T18:33:24.053Z] ---> 68 self._output_path = run( +[2024-03-23T18:33:24.053Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-03-23T18:33:24.053Z]  70 ) +[2024-03-23T18:33:24.053Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-03-23T18:33:24.053Z]  72 return self._output +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-03-23T18:33:24.053Z]  320 warn(msg, category=RavenWarning) +[2024-03-23T18:33:24.053Z]  322 if messages["ERROR"]: +[2024-03-23T18:33:24.053Z] --> 323 raise RavenError( +[2024-03-23T18:33:24.053Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-03-23T18:33:24.053Z]  325 ) +[2024-03-23T18:33:24.053Z]  327 if returncode != 0: +[2024-03-23T18:33:24.053Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.053Z] RavenError: Config directory: /tmp/tmplsp49ky4 +[2024-03-23T18:33:24.053Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-03-23T18:33:24.053Z] +[2024-03-23T18:33:24.054Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-03-23T18:33:24.054Z] Notebook cell execution failed +[2024-03-23T18:33:24.054Z] Cell 7: Cell execution caused an exception +[2024-03-23T18:33:24.054Z] +[2024-03-23T18:33:24.054Z] Input: +[2024-03-23T18:33:24.054Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-23T18:33:24.054Z] outputs.files +[2024-03-23T18:33:24.054Z] +[2024-03-23T18:33:24.054Z] Traceback: +[2024-03-23T18:33:24.054Z] +[2024-03-23T18:33:24.054Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.054Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.054Z] Cell In[1], line 2 +[2024-03-23T18:33:24.054Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-03-23T18:33:24.054Z] ----> 2 outputs.files +[2024-03-23T18:33:24.054Z] +[2024-03-23T18:33:24.054Z] NameError: name 'outputs' is not defined +[2024-03-23T18:33:24.054Z] +[2024-03-23T18:33:24.054Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-03-23T18:33:24.315Z] Notebook cell execution failed +[2024-03-23T18:33:24.316Z] Cell 8: Cell execution caused an exception +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Input: +[2024-03-23T18:33:24.316Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-23T18:33:24.316Z] print("----------------HYDROGRAPH----------------") +[2024-03-23T18:33:24.316Z] display(outputs.hydrograph) +[2024-03-23T18:33:24.316Z] print("") +[2024-03-23T18:33:24.316Z] print("-----------------STORAGE------------------") +[2024-03-23T18:33:24.316Z] display(outputs.storage) +[2024-03-23T18:33:24.316Z] print("") +[2024-03-23T18:33:24.316Z] print("-----------------SOLUTION-----------------") +[2024-03-23T18:33:24.316Z] display(outputs.solution) +[2024-03-23T18:33:24.316Z] print("") +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Traceback: +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.316Z] Cell In[1], line 3 +[2024-03-23T18:33:24.316Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-03-23T18:33:24.316Z]  2 print("----------------HYDROGRAPH----------------") +[2024-03-23T18:33:24.316Z] ----> 3 display(outputs.hydrograph) +[2024-03-23T18:33:24.316Z]  4 print("") +[2024-03-23T18:33:24.316Z]  5 print("-----------------STORAGE------------------") +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-03-23T18:33:24.316Z] Notebook cell execution failed +[2024-03-23T18:33:24.316Z] Cell 9: Cell execution caused an exception +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Input: +[2024-03-23T18:33:24.316Z] # Import the graphing utility built to handle Raven model outputs +[2024-03-23T18:33:24.316Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] hydrograph_objects = outputs.hydrograph +[2024-03-23T18:33:24.316Z] hydrographs(hydrograph_objects) +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Traceback: +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.316Z] Cell In[1], line 4 +[2024-03-23T18:33:24.316Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-03-23T18:33:24.316Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-03-23T18:33:24.316Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-03-23T18:33:24.316Z]  5 hydrographs(hydrograph_objects) +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-03-23T18:33:24.316Z] Notebook cell execution failed +[2024-03-23T18:33:24.316Z] Cell 10: Cell execution caused an exception +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Input: +[2024-03-23T18:33:24.316Z] outputs.hydrograph.q_sim.plot() +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Traceback: +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.316Z] Cell In[1], line 1 +[2024-03-23T18:33:24.316Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-03-23T18:33:24.316Z] Notebook cell execution failed +[2024-03-23T18:33:24.316Z] Cell 11: Cell execution caused an exception +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Input: +[2024-03-23T18:33:24.316Z] print(list(outputs.storage.keys())) +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Traceback: +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.316Z] Cell In[1], line 1 +[2024-03-23T18:33:24.316Z] ----> 1 print(list(outputs.storage.keys())) +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-03-23T18:33:24.316Z] Notebook cell execution failed +[2024-03-23T18:33:24.316Z] Cell 12: Cell execution caused an exception +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Input: +[2024-03-23T18:33:24.316Z] # Plot the "Snow" variable +[2024-03-23T18:33:24.316Z] outputs.storage["Snow"].plot() +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Traceback: +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.316Z] Cell In[1], line 2 +[2024-03-23T18:33:24.316Z]  1 # Plot the "Snow" variable +[2024-03-23T18:33:24.316Z] ----> 2 outputs.storage["Snow"].plot() +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ +[2024-03-23T18:33:24.316Z] Notebook cell execution failed +[2024-03-23T18:33:24.316Z] Cell 0: Cell execution caused an exception +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Input: +[2024-03-23T18:33:24.316Z] import os +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] from hsclient import HydroShare, Token +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] # Authentication method using username and password +[2024-03-23T18:33:24.316Z] """ +[2024-03-23T18:33:24.316Z] username = 'XXXXX' +[2024-03-23T18:33:24.316Z] password = 'XXXXX' +[2024-03-23T18:33:24.316Z] hs = HydroShare(username=username, password=password) +[2024-03-23T18:33:24.316Z] """ +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-03-23T18:33:24.316Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] token = Token(access_token=access_token, token_type="bearer") +[2024-03-23T18:33:24.316Z] hs = HydroShare(client_id=client_id, token=token) +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] Traceback: +[2024-03-23T18:33:24.316Z] +[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.317Z] ValidationError Traceback (most recent call last) +[2024-03-23T18:33:24.317Z] Cell In[1], line 15 +[2024-03-23T18:33:24.317Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-03-23T18:33:24.317Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-03-23T18:33:24.317Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-03-23T18:33:24.317Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-03-23T18:33:24.317Z] +[2024-03-23T18:33:24.317Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) +[2024-03-23T18:33:24.317Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-03-23T18:33:24.317Z]  170 __tracebackhide__ = True +[2024-03-23T18:33:24.317Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-03-23T18:33:24.317Z] +[2024-03-23T18:33:24.317Z] ValidationError: 4 validation errors for Token +[2024-03-23T18:33:24.317Z] scope +[2024-03-23T18:33:24.317Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-03-23T18:33:24.317Z]  2 for r in results: +[2024-03-23T18:33:24.317Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-03-23T18:33:24.317Z] +[2024-03-23T18:33:24.317Z] NameError: name 'hs' is not defined +[2024-03-23T18:33:24.317Z] +[2024-03-23T18:33:24.317Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ +[2024-03-23T18:33:24.317Z] Notebook cell execution failed +[2024-03-23T18:33:24.317Z] Cell 2: Cell execution caused an exception +[2024-03-23T18:33:24.317Z] +[2024-03-23T18:33:24.317Z] Input: +[2024-03-23T18:33:24.317Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-23T18:33:24.317Z] res.files() +[2024-03-23T18:33:24.317Z] +[2024-03-23T18:33:24.318Z] Traceback: +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.318Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.318Z] Cell In[1], line 1 +[2024-03-23T18:33:24.318Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-03-23T18:33:24.318Z]  2 res.files() +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] NameError: name 'hs' is not defined +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ +[2024-03-23T18:33:24.318Z] Notebook cell execution failed +[2024-03-23T18:33:24.318Z] Cell 3: Cell execution caused an exception +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] Input: +[2024-03-23T18:33:24.318Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] Traceback: +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.318Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.318Z] Cell In[1], line 1 +[2024-03-23T18:33:24.318Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] NameError: name 'res' is not defined +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ +[2024-03-23T18:33:24.318Z] Notebook cell execution failed +[2024-03-23T18:33:24.318Z] Cell 10: Cell execution caused an exception +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] Input: +[2024-03-23T18:33:24.318Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. +[2024-03-23T18:33:24.318Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" +[2024-03-23T18:33:24.318Z] cat = intake.open_catalog(catalog_name) +[2024-03-23T18:33:24.318Z] ds = cat.era5_reanalysis_single_levels.to_dask() +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] """ +[2024-03-23T18:33:24.318Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, +[2024-03-23T18:33:24.318Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total +[2024-03-23T18:33:24.318Z] precipitation. +[2024-03-23T18:33:24.318Z] """ +[2024-03-23T18:33:24.318Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, +[2024-03-23T18:33:24.318Z] # such as units and variable names. +[2024-03-23T18:33:24.318Z] with xr.set_options(keep_attrs=True): +[2024-03-23T18:33:24.318Z] ERA5_reference = subset.subset_shape( +[2024-03-23T18:33:24.318Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour +[2024-03-23T18:33:24.318Z] ) +[2024-03-23T18:33:24.318Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) +[2024-03-23T18:33:24.318Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) +[2024-03-23T18:33:24.318Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] # Change the units +[2024-03-23T18:33:24.318Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C +[2024-03-23T18:33:24.318Z] ERA5_tmin.attrs["units"] = "degC" +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C +[2024-03-23T18:33:24.318Z] ERA5_tmax.attrs["units"] = "degC" +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] ERA5_pr = ERA5_pr * 1000 # m to mm +[2024-03-23T18:33:24.318Z] ERA5_pr.attrs["units"] = "mm" +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] # Average the variables spatially +[2024-03-23T18:33:24.318Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-03-23T18:33:24.318Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-03-23T18:33:24.318Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-23T18:33:24.318Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-23T18:33:24.318Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-23T18:33:24.318Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-03-23T18:33:24.318Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the +[2024-03-23T18:33:24.318Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. +[2024-03-23T18:33:24.318Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) +[2024-03-23T18:33:24.318Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] Traceback: +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.318Z] KeyError Traceback (most recent call last) +[2024-03-23T18:33:24.318Z] Cell In[1], line 37 +[2024-03-23T18:33:24.318Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-03-23T18:33:24.318Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-03-23T18:33:24.318Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 +[2024-03-23T18:33:24.318Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-03-23T18:33:24.318Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-03-23T18:33:24.318Z] +[2024-03-23T18:33:24.318Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-03-23T18:33:24.318Z]  851 self.coords[key] = value +[2024-03-23T18:33:24.318Z]  852 else: +[2024-03-23T18:33:24.318Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-03-23T18:33:24.319Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-03-23T18:33:24.319Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-03-23T18:33:24.319Z] --> 856 obj = self[key] +[2024-03-23T18:33:24.319Z]  857 if isinstance(value, DataArray): +[2024-03-23T18:33:24.319Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-03-23T18:33:24.319Z] +[2024-03-23T18:33:24.319Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-03-23T18:33:24.319Z]  844 return self._getitem_coord(key) +[2024-03-23T18:33:24.319Z]  845 else: +[2024-03-23T18:33:24.319Z]  846 # xarray-style array indexing +[2024-03-23T18:33:24.319Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-03-23T18:33:24.319Z] +[2024-03-23T18:33:24.319Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-03-23T18:33:24.319Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-03-23T18:33:24.319Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-03-23T18:33:24.319Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-03-23T18:33:24.319Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-03-23T18:33:24.319Z]  1447  ) +[2024-03-23T18:33:24.322Z]  1448 return self._from_temp_dataset(ds) +[2024-03-23T18:33:24.322Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-03-23T18:33:24.322Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-03-23T18:33:24.322Z] +[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-03-23T18:33:24.322Z]  2926 var_indexers = { +[2024-03-23T18:33:24.322Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-03-23T18:33:24.322Z]  2928 } +[2024-03-23T18:33:24.322Z]  2929 if var_indexers: +[2024-03-23T18:33:24.322Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-03-23T18:33:24.322Z]  2931 # drop scalar coordinates +[2024-03-23T18:33:24.322Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-03-23T18:33:24.322Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-03-23T18:33:24.322Z] +[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-03-23T18:33:24.322Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-03-23T18:33:24.322Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-03-23T18:33:24.322Z] -> 1368 return self[key] +[2024-03-23T18:33:24.322Z] +[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-03-23T18:33:24.322Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-03-23T18:33:24.322Z]  879  """Return a new Variable object whose contents are consistent with +[2024-03-23T18:33:24.322Z]  880  getting the provided key from the underlying data. +[2024-03-23T18:33:24.322Z]  881 +[2024-03-23T18:33:24.322Z]  (...) +[2024-03-23T18:33:24.322Z]  889  array `x.values` directly. +[2024-03-23T18:33:24.322Z]  890  """ +[2024-03-23T18:33:24.322Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-03-23T18:33:24.322Z]  892 data = as_indexable(self._data)[indexer] +[2024-03-23T18:33:24.322Z]  893 if new_order: +[2024-03-23T18:33:24.322Z] +[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-03-23T18:33:24.322Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-03-23T18:33:24.322Z]  722 return self._broadcast_indexes_basic(key) +[2024-03-23T18:33:24.322Z] --> 724 self._validate_indexers(key) +[2024-03-23T18:33:24.322Z]  725 # Detect it can be mapped as an outer indexer +[2024-03-23T18:33:24.322Z]  726 # If all key is unlabeled, or +[2024-03-23T18:33:24.322Z]  727 # key can be mapped as an OuterIndexer. +[2024-03-23T18:33:24.322Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-03-23T18:33:24.322Z] +[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-03-23T18:33:24.322Z]  771 raise IndexError( +[2024-03-23T18:33:24.322Z]  772 "{}-dimensional boolean indexing is " +[2024-03-23T18:33:24.322Z]  773 "not supported. ".format(k.ndim) +[2024-03-23T18:33:24.322Z]  774 ) +[2024-03-23T18:33:24.322Z]  775 if is_duck_dask_array(k.data): +[2024-03-23T18:33:24.322Z] --> 776 raise KeyError( +[2024-03-23T18:33:24.323Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-03-23T18:33:24.323Z]  778 "This will result in a dask array of unknown shape. " +[2024-03-23T18:33:24.323Z]  779 "Such arrays are unsupported by Xarray." +[2024-03-23T18:33:24.323Z]  780 "Please compute the indexer first using .compute()" +[2024-03-23T18:33:24.323Z]  781 ) +[2024-03-23T18:33:24.323Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-03-23T18:33:24.323Z]  783 raise IndexError( +[2024-03-23T18:33:24.323Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-03-23T18:33:24.323Z]  785 "same dimension to the indexed array. Indexer is " +[2024-03-23T18:33:24.323Z]  (...) +[2024-03-23T18:33:24.323Z]  788 ) +[2024-03-23T18:33:24.323Z]  789 ) +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ +[2024-03-23T18:33:24.323Z] Notebook cell execution failed +[2024-03-23T18:33:24.323Z] Cell 11: Cell execution caused an exception +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] Input: +[2024-03-23T18:33:24.323Z] # Climate model to use +[2024-03-23T18:33:24.323Z] climate_model = "MIROC6" +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. +[2024-03-23T18:33:24.323Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") +[2024-03-23T18:33:24.323Z] col = intake.open_esm_datastore( +[2024-03-23T18:33:24.323Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" +[2024-03-23T18:33:24.323Z] ) +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. +[2024-03-23T18:33:24.323Z] with xr.set_options(keep_attrs=True): +[2024-03-23T18:33:24.323Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. +[2024-03-23T18:33:24.323Z] out = {} +[2024-03-23T18:33:24.323Z] for exp in ["historical", "ssp585"]: +[2024-03-23T18:33:24.323Z] if exp == "historical": +[2024-03-23T18:33:24.323Z] period_start = reference_start_day +[2024-03-23T18:33:24.323Z] period_end = reference_end_day +[2024-03-23T18:33:24.323Z] else: +[2024-03-23T18:33:24.323Z] period_start = future_start_day +[2024-03-23T18:33:24.323Z] period_end = future_end_day +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] out[exp] = {} +[2024-03-23T18:33:24.323Z] for variable in ["tasmin", "tasmax", "pr"]: +[2024-03-23T18:33:24.323Z] print(exp, variable) +[2024-03-23T18:33:24.323Z] query = dict( +[2024-03-23T18:33:24.323Z] experiment_id=exp, +[2024-03-23T18:33:24.323Z] table_id="day", +[2024-03-23T18:33:24.323Z] variable_id=variable, +[2024-03-23T18:33:24.323Z] member_id="r1i1p1f1", +[2024-03-23T18:33:24.323Z] source_id=climate_model, +[2024-03-23T18:33:24.323Z] ) +[2024-03-23T18:33:24.323Z] col_subset = col.search(require_all_on=["source_id"], **query) +[2024-03-23T18:33:24.323Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. +[2024-03-23T18:33:24.323Z] if variable == "pr": +[2024-03-23T18:33:24.323Z] out[exp][variable] = average.average_shape( +[2024-03-23T18:33:24.323Z] xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-23T18:33:24.323Z] time=slice(period_start, period_end) +[2024-03-23T18:33:24.323Z] )[variable], +[2024-03-23T18:33:24.323Z] basin_contour, +[2024-03-23T18:33:24.323Z] ).chunk(-1) +[2024-03-23T18:33:24.323Z] else: +[2024-03-23T18:33:24.323Z] out[exp][variable] = average.average_shape( +[2024-03-23T18:33:24.323Z] xr.open_zarr(mapper, consolidated=True) +[2024-03-23T18:33:24.323Z] .sel(time=slice(period_start, period_end)) +[2024-03-23T18:33:24.323Z] .reset_coords("height", drop=True)[variable], +[2024-03-23T18:33:24.323Z] basin_contour, +[2024-03-23T18:33:24.323Z] ).chunk(-1) +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] # We can now extract the variables that we will need later: +[2024-03-23T18:33:24.323Z] historical_tasmax = out["historical"]["tasmax"] +[2024-03-23T18:33:24.323Z] historical_tasmin = out["historical"]["tasmin"] +[2024-03-23T18:33:24.323Z] historical_pr = out["historical"]["pr"] +[2024-03-23T18:33:24.323Z] future_tasmax = out["ssp585"]["tasmax"] +[2024-03-23T18:33:24.323Z] future_tasmin = out["ssp585"]["tasmin"] +[2024-03-23T18:33:24.323Z] future_pr = out["ssp585"]["pr"] +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] Traceback: +[2024-03-23T18:33:24.323Z] +[2024-03-23T18:33:24.323Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.323Z] KeyError Traceback (most recent call last) +[2024-03-23T18:33:24.323Z] Cell In[1], line 44 +[2024-03-23T18:33:24.323Z]  37 out[exp][variable] = average.average_shape( +[2024-03-23T18:33:24.323Z]  38 xr.open_zarr(mapper, consolidated=True).sel( +[2024-03-23T18:33:24.323Z]  39 time=slice(period_start, period_end) +[2024-03-23T18:33:24.323Z]  40 )[variable], +[2024-03-23T18:33:24.323Z]  41 basin_contour, +[2024-03-23T18:33:24.323Z]  42 ).chunk(-1) +[2024-03-23T18:33:24.323Z]  43 else: +[2024-03-23T18:33:24.323Z] ---> 44 out[exp][variable] = average.average_shape( +[2024-03-23T18:33:24.324Z]  45  xr.open_zarr(mapper, consolidated=True) +[2024-03-23T18:33:24.324Z]  46  .sel(time=slice(period_start, period_end)) +[2024-03-23T18:33:24.324Z]  47  .reset_coords("height", drop=True)[variable], +[2024-03-23T18:33:24.324Z]  48  basin_contour, +[2024-03-23T18:33:24.324Z]  49  ).chunk(-1) +[2024-03-23T18:33:24.324Z]  51 # We can now extract the variables that we will need later: +[2024-03-23T18:33:24.324Z]  52 historical_tasmax = out["historical"]["tasmax"] +[2024-03-23T18:33:24.324Z] +[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) +[2024-03-23T18:33:24.324Z]  105 ds_sub = ds_copy.isel(indexer) +[2024-03-23T18:33:24.324Z]  107 # Compute the weights +[2024-03-23T18:33:24.324Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) +[2024-03-23T18:33:24.324Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. +[2024-03-23T18:33:24.324Z]  111 nonnull = ( +[2024-03-23T18:33:24.324Z]  112 savger.weights.data.nnz +[2024-03-23T18:33:24.324Z]  113 if isinstance(savger.weights, xr.DataArray) +[2024-03-23T18:33:24.324Z]  114 else savger.weights.nnz +[2024-03-23T18:33:24.324Z]  115 ) +[2024-03-23T18:33:24.324Z] +[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) +[2024-03-23T18:33:24.324Z]  1182 if isinstance(ds_in, xr.DataArray): +[2024-03-23T18:33:24.324Z]  1183 ds_in = ds_in._to_temp_dataset() +[2024-03-23T18:33:24.324Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) +[2024-03-23T18:33:24.324Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. +[2024-03-23T18:33:24.324Z]  1188 # Latitude and longitude coordinates are the polygon centroid. +[2024-03-23T18:33:24.324Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) +[2024-03-23T18:33:24.324Z] +[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) +[2024-03-23T18:33:24.324Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) +[2024-03-23T18:33:24.324Z]  166 if need_bounds: +[2024-03-23T18:33:24.324Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) +[2024-03-23T18:33:24.324Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) +[2024-03-23T18:33:24.324Z]  169 add_corner(grid, lon_b.T, lat_b.T) +[2024-03-23T18:33:24.324Z] +[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) +[2024-03-23T18:33:24.324Z]  105 lat_bnds = ds.cf.get_bounds('latitude') +[2024-03-23T18:33:24.324Z]  107 # Convert from CF bounds to xESMF bounds. +[2024-03-23T18:33:24.324Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. +[2024-03-23T18:33:24.324Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) +[2024-03-23T18:33:24.324Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) +[2024-03-23T18:33:24.324Z]  111 return lon_b, lat_b +[2024-03-23T18:33:24.324Z] +[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) +[2024-03-23T18:33:24.324Z]  2400 filtered = [ +[2024-03-23T18:33:24.324Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs +[2024-03-23T18:33:24.324Z]  2402 ] +[2024-03-23T18:33:24.324Z]  2403 if len(filtered) > 1: +[2024-03-23T18:33:24.324Z] -> 2404 raise KeyError( +[2024-03-23T18:33:24.324Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " +[2024-03-23T18:33:24.324Z]  2406 ) +[2024-03-23T18:33:24.324Z]  2408 (crd_name,) = filtered +[2024-03-23T18:33:24.324Z]  2409 crd = variables[crd_name] +[2024-03-23T18:33:24.324Z] +[2024-03-23T18:33:24.325Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ +[2024-03-23T18:33:24.325Z] Notebook cell execution failed +[2024-03-23T18:33:24.325Z] Cell 12: Cell execution caused an exception +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] Input: +[2024-03-23T18:33:24.325Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-23T18:33:24.325Z] # and make sure everything is consistent. +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Let's start with precipitation: +[2024-03-23T18:33:24.325Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-23T18:33:24.325Z] historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-23T18:33:24.325Z] future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Now we can actually convert units in absolute terms. +[2024-03-23T18:33:24.325Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") +[2024-03-23T18:33:24.325Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Now let's do temperature: +[2024-03-23T18:33:24.325Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") +[2024-03-23T18:33:24.325Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") +[2024-03-23T18:33:24.325Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") +[2024-03-23T18:33:24.325Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] Traceback: +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.325Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.325Z] Cell In[1], line 6 +[2024-03-23T18:33:24.325Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-03-23T18:33:24.325Z]  2 # and make sure everything is consistent. +[2024-03-23T18:33:24.325Z]  3 +[2024-03-23T18:33:24.325Z]  4 # Let's start with precipitation: +[2024-03-23T18:33:24.325Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-03-23T18:33:24.325Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-03-23T18:33:24.325Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) +[2024-03-23T18:33:24.325Z]  9 # Now we can actually convert units in absolute terms. +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] NameError: name 'historical_pr' is not defined +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ +[2024-03-23T18:33:24.325Z] Notebook cell execution failed +[2024-03-23T18:33:24.325Z] Cell 13: Cell execution caused an exception +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] Input: +[2024-03-23T18:33:24.325Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. +[2024-03-23T18:33:24.325Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-23T18:33:24.325Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-23T18:33:24.325Z] ref=ERA5_weather.pr, +[2024-03-23T18:33:24.325Z] hist=historical_pr, +[2024-03-23T18:33:24.325Z] nquantiles=50, +[2024-03-23T18:33:24.325Z] kind="+", +[2024-03-23T18:33:24.325Z] group=group_month_window, +[2024-03-23T18:33:24.325Z] ) +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Apply the correction factors on the reference period +[2024-03-23T18:33:24.325Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Apply the correction factors on the future period +[2024-03-23T18:33:24.325Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Ensure that the precipitation is non-negative, which can happen with some climate models +[2024-03-23T18:33:24.325Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) +[2024-03-23T18:33:24.325Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data +[2024-03-23T18:33:24.325Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-23T18:33:24.325Z] ref=ERA5_weather.tmax, +[2024-03-23T18:33:24.325Z] hist=historical_tasmax, +[2024-03-23T18:33:24.325Z] nquantiles=50, +[2024-03-23T18:33:24.325Z] kind="+", +[2024-03-23T18:33:24.325Z] group=group_month_window, +[2024-03-23T18:33:24.325Z] ) +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Apply the correction factors on the reference period +[2024-03-23T18:33:24.325Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Apply the correction factors on the future period +[2024-03-23T18:33:24.325Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data +[2024-03-23T18:33:24.325Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-23T18:33:24.325Z] ref=ERA5_weather.tmin, +[2024-03-23T18:33:24.325Z] hist=historical_tasmin, +[2024-03-23T18:33:24.325Z] nquantiles=50, +[2024-03-23T18:33:24.325Z] kind="+", +[2024-03-23T18:33:24.325Z] group=group_month_window, +[2024-03-23T18:33:24.325Z] ) +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Apply the correction factors on the reference period +[2024-03-23T18:33:24.325Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] # Apply the correction factors on the future period +[2024-03-23T18:33:24.325Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] Traceback: +[2024-03-23T18:33:24.325Z] +[2024-03-23T18:33:24.325Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.325Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.325Z] Cell In[1], line 6 +[2024-03-23T18:33:24.326Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-03-23T18:33:24.326Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-03-23T18:33:24.326Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-03-23T18:33:24.326Z] ----> 6 ref=ERA5_weather.pr, +[2024-03-23T18:33:24.326Z]  7 hist=historical_pr, +[2024-03-23T18:33:24.326Z]  8 nquantiles=50, +[2024-03-23T18:33:24.326Z]  9 kind="+", +[2024-03-23T18:33:24.326Z]  10 group=group_month_window, +[2024-03-23T18:33:24.326Z]  11 ) +[2024-03-23T18:33:24.326Z]  13 # Apply the correction factors on the reference period +[2024-03-23T18:33:24.326Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] NameError: name 'ERA5_weather' is not defined +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ +[2024-03-23T18:33:24.326Z] Notebook cell execution failed +[2024-03-23T18:33:24.326Z] Cell 14: Cell execution caused an exception +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] Input: +[2024-03-23T18:33:24.326Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-23T18:33:24.326Z] ref_dataset = xr.merge( +[2024-03-23T18:33:24.326Z] [ +[2024-03-23T18:33:24.326Z] corrected_ref_precip.to_dataset(name="pr"), +[2024-03-23T18:33:24.326Z] corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-23T18:33:24.326Z] corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-23T18:33:24.326Z] ] +[2024-03-23T18:33:24.326Z] ) +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] # Write to temporary folder +[2024-03-23T18:33:24.326Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-23T18:33:24.326Z] ref_dataset.to_netcdf(fn_tmp_ref) +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] # Convert the future corrected data into netCDF file +[2024-03-23T18:33:24.326Z] fut_dataset = xr.merge( +[2024-03-23T18:33:24.326Z] [ +[2024-03-23T18:33:24.326Z] corrected_fut_precip.to_dataset(name="pr"), +[2024-03-23T18:33:24.326Z] corrected_fut_tasmax.to_dataset(name="tasmax"), +[2024-03-23T18:33:24.326Z] corrected_fut_tasmin.to_dataset(name="tasmin"), +[2024-03-23T18:33:24.326Z] ] +[2024-03-23T18:33:24.326Z] ) +[2024-03-23T18:33:24.326Z] # Write to temporary folder +[2024-03-23T18:33:24.326Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" +[2024-03-23T18:33:24.326Z] fut_dataset.to_netcdf(fn_tmp_fut) +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] # Write the data to disk to a temporary location for future use. +[2024-03-23T18:33:24.326Z] ref_dataset = xr.open_dataset(fn_tmp_ref) +[2024-03-23T18:33:24.326Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] fut_dataset = xr.open_dataset(fn_tmp_fut) +[2024-03-23T18:33:24.326Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] Traceback: +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.326Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.326Z] Cell In[1], line 4 +[2024-03-23T18:33:24.326Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-03-23T18:33:24.326Z]  2 ref_dataset = xr.merge( +[2024-03-23T18:33:24.326Z]  3 [ +[2024-03-23T18:33:24.326Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), +[2024-03-23T18:33:24.326Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-03-23T18:33:24.326Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-03-23T18:33:24.326Z]  7 ] +[2024-03-23T18:33:24.326Z]  8 ) +[2024-03-23T18:33:24.326Z]  10 # Write to temporary folder +[2024-03-23T18:33:24.326Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] NameError: name 'corrected_ref_precip' is not defined +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ +[2024-03-23T18:33:24.326Z] Notebook cell execution failed +[2024-03-23T18:33:24.326Z] Cell 15: Cell execution caused an exception +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] Input: +[2024-03-23T18:33:24.326Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-03-23T18:33:24.326Z] # populate the fields for the HRU. +[2024-03-23T18:33:24.326Z] hru = {} +[2024-03-23T18:33:24.326Z] hru = dict( +[2024-03-23T18:33:24.326Z] area=all_properties["area"], +[2024-03-23T18:33:24.326Z] elevation=all_properties["elevation"], +[2024-03-23T18:33:24.326Z] latitude=all_properties["latitude"], +[2024-03-23T18:33:24.326Z] longitude=all_properties["longitude"], +[2024-03-23T18:33:24.326Z] hru_type="land", +[2024-03-23T18:33:24.326Z] ) +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-03-23T18:33:24.326Z] # will simply execute the model which has been pre-configured to run on this period. +[2024-03-23T18:33:24.326Z] start_date = dt.datetime(1981, 1, 1) +[2024-03-23T18:33:24.326Z] end_date = dt.datetime(1985, 12, 31) +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. +[2024-03-23T18:33:24.326Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] # Alternative variable names as described in the tutorial. +[2024-03-23T18:33:24.326Z] alt_names = { +[2024-03-23T18:33:24.326Z] "TEMP_MIN": "tmin", +[2024-03-23T18:33:24.326Z] "TEMP_MAX": "tmax", +[2024-03-23T18:33:24.326Z] "PRECIP": "pr", +[2024-03-23T18:33:24.326Z] } +[2024-03-23T18:33:24.326Z] +[2024-03-23T18:33:24.326Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here +[2024-03-23T18:33:24.326Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. +[2024-03-23T18:33:24.326Z] data_kwds = { +[2024-03-23T18:33:24.327Z] "ALL": { +[2024-03-23T18:33:24.327Z] "elevation": hru["elevation"], +[2024-03-23T18:33:24.327Z] "latitude": hru["latitude"], +[2024-03-23T18:33:24.327Z] "longitude": hru["longitude"], +[2024-03-23T18:33:24.327Z] } +[2024-03-23T18:33:24.327Z] } +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] # Give a name to the simulation +[2024-03-23T18:33:24.327Z] run_name = "Paper_example_simulation" +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] # Setup the gauge object that includes meteorological data from ERA5 +[2024-03-23T18:33:24.327Z] gauge = [ +[2024-03-23T18:33:24.327Z] rc.Gauge.from_nc( +[2024-03-23T18:33:24.327Z] tmp +[2024-03-23T18:33:24.327Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-03-23T18:33:24.327Z] data_type=data_type, # Note that this is the list of all the variables +[2024-03-23T18:33:24.327Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-03-23T18:33:24.327Z] data_kwds=data_kwds, +[2024-03-23T18:33:24.327Z] ) +[2024-03-23T18:33:24.327Z] ] +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] # Read the streamflow from the HYSETS catchment data for this basin +[2024-03-23T18:33:24.327Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, +[2024-03-23T18:33:24.327Z] # and the optimizer will read it directly to calibrate. +[2024-03-23T18:33:24.327Z] eval_metrics = ("NASH_SUTCLIFFE",) +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] # Build the model configuration according to user preferences and inputs +[2024-03-23T18:33:24.327Z] model_config = GR4JCN( +[2024-03-23T18:33:24.327Z] ObservationData=discharge_data, +[2024-03-23T18:33:24.327Z] Gauge=gauge, +[2024-03-23T18:33:24.327Z] HRUs=[hru], +[2024-03-23T18:33:24.327Z] StartDate=start_date, +[2024-03-23T18:33:24.327Z] EndDate=end_date, +[2024-03-23T18:33:24.327Z] RunName=run_name, +[2024-03-23T18:33:24.327Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. +[2024-03-23T18:33:24.327Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. +[2024-03-23T18:33:24.327Z] ) +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] Traceback: +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.327Z] ValueError Traceback (most recent call last) +[2024-03-23T18:33:24.327Z] Cell In[1], line 42 +[2024-03-23T18:33:24.327Z]  38 run_name = "Paper_example_simulation" +[2024-03-23T18:33:24.327Z]  40 # Setup the gauge object that includes meteorological data from ERA5 +[2024-03-23T18:33:24.327Z]  41 gauge = [ +[2024-03-23T18:33:24.327Z] ---> 42 rc.Gauge.from_nc( +[2024-03-23T18:33:24.327Z]  43  tmp +[2024-03-23T18:33:24.327Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-03-23T18:33:24.327Z]  45  data_type=data_type, # Note that this is the list of all the variables +[2024-03-23T18:33:24.327Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-03-23T18:33:24.327Z]  47  data_kwds=data_kwds, +[2024-03-23T18:33:24.327Z]  48  ) +[2024-03-23T18:33:24.327Z]  49 ] +[2024-03-23T18:33:24.327Z]  51 # Read the streamflow from the HYSETS catchment data for this basin +[2024-03-23T18:33:24.327Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-03-23T18:33:24.327Z]  751 forcings.difference_update(data) +[2024-03-23T18:33:24.327Z]  753 if len(data) == 0: +[2024-03-23T18:33:24.327Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-03-23T18:33:24.327Z]  756 # Default Gauge name +[2024-03-23T18:33:24.327Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] ValueError: No data found in netCDF files. +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ +[2024-03-23T18:33:24.327Z] Notebook cell execution failed +[2024-03-23T18:33:24.327Z] Cell 16: Cell execution caused an exception +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] Input: +[2024-03-23T18:33:24.327Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, +[2024-03-23T18:33:24.327Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. +[2024-03-23T18:33:24.327Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) +[2024-03-23T18:33:24.327Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. +[2024-03-23T18:33:24.327Z] random_seed = 42 +[2024-03-23T18:33:24.327Z] np.random.seed(random_seed) +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] # Build the optimizer object +[2024-03-23T18:33:24.327Z] spot_setup = SpotSetup( +[2024-03-23T18:33:24.327Z] config=model_config, +[2024-03-23T18:33:24.327Z] low=low, +[2024-03-23T18:33:24.327Z] high=high, +[2024-03-23T18:33:24.327Z] ) +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.327Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-23T18:33:24.327Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-23T18:33:24.327Z] max_iterations = 200 +[2024-03-23T18:33:24.327Z] +[2024-03-23T18:33:24.328Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer +[2024-03-23T18:33:24.328Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most +[2024-03-23T18:33:24.328Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation +[2024-03-23T18:33:24.328Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small +[2024-03-23T18:33:24.328Z] # evaluation budgets. For more details on DDS, see: +[2024-03-23T18:33:24.328Z] # +[2024-03-23T18:33:24.328Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water +[2024-03-23T18:33:24.328Z] # Resources Research, 43(1) +[2024-03-23T18:33:24.328Z] sampler = spotpy.algorithms.dds( +[2024-03-23T18:33:24.328Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False +[2024-03-23T18:33:24.328Z] ) +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and +[2024-03-23T18:33:24.328Z] # the best overall value from all trials is returned. +[2024-03-23T18:33:24.328Z] sampler.sample(max_iterations, trials=1) +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] # Get the model diagnostics +[2024-03-23T18:33:24.328Z] diag = spot_setup.diagnostics +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] # Get all the values of each iteration +[2024-03-23T18:33:24.328Z] results = sampler.getdata() +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] # Get the raw resutlts directly in an array +[2024-03-23T18:33:24.328Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( +[2024-03-23T18:33:24.328Z] results +[2024-03-23T18:33:24.328Z] ) # Want to get the MAX NSE (change for min for RMSE) +[2024-03-23T18:33:24.328Z] best_model_run = list( +[2024-03-23T18:33:24.328Z] results[bestindex][0] +[2024-03-23T18:33:24.328Z] ) # Get the parameter set returning the best NSE +[2024-03-23T18:33:24.328Z] optimized_parameters = best_model_run[ +[2024-03-23T18:33:24.328Z] 1:-1 +[2024-03-23T18:33:24.328Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] # Display the parameter set ready to use in a future run: +[2024-03-23T18:33:24.328Z] print(optimized_parameters) +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] Traceback: +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.328Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.328Z] Cell In[1], line 12 +[2024-03-23T18:33:24.328Z]  8 np.random.seed(random_seed) +[2024-03-23T18:33:24.328Z]  10 # Build the optimizer object +[2024-03-23T18:33:24.328Z]  11 spot_setup = SpotSetup( +[2024-03-23T18:33:24.328Z] ---> 12 config=model_config, +[2024-03-23T18:33:24.328Z]  13 low=low, +[2024-03-23T18:33:24.328Z]  14 high=high, +[2024-03-23T18:33:24.328Z]  15 ) +[2024-03-23T18:33:24.328Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-03-23T18:33:24.328Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-03-23T18:33:24.328Z]  19 max_iterations = 200 +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] NameError: name 'model_config' is not defined +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ +[2024-03-23T18:33:24.328Z] Notebook cell execution failed +[2024-03-23T18:33:24.328Z] Cell 17: Cell execution caused an exception +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] Input: +[2024-03-23T18:33:24.328Z] # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-23T18:33:24.328Z] model_validation = model_config.duplicate( +[2024-03-23T18:33:24.328Z] params=optimized_parameters, +[2024-03-23T18:33:24.328Z] StartDate=dt.datetime(1986, 1, 1), +[2024-03-23T18:33:24.328Z] EndDate=dt.datetime(1990, 12, 31), +[2024-03-23T18:33:24.328Z] SuppressOutput=False, +[2024-03-23T18:33:24.328Z] ) +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] sim_output = Emulator(config=model_validation).run() +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-23T18:33:24.328Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] # Plot the model output +[2024-03-23T18:33:24.328Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") +[2024-03-23T18:33:24.328Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-23T18:33:24.328Z] plt.legend() +[2024-03-23T18:33:24.328Z] plt.title("Validation period - NSE=" + str(NSE[0])) +[2024-03-23T18:33:24.328Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-23T18:33:24.328Z] plt.grid() +[2024-03-23T18:33:24.328Z] plt.show() +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] Traceback: +[2024-03-23T18:33:24.328Z] +[2024-03-23T18:33:24.328Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.328Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.328Z] Cell In[1], line 2 +[2024-03-23T18:33:24.328Z]  1 # Copy the configuration of the previous model that we will modify for our validation: +[2024-03-23T18:33:24.328Z] ----> 2 model_validation = model_config.duplicate( +[2024-03-23T18:33:24.328Z]  3 params=optimized_parameters, +[2024-03-23T18:33:24.328Z]  4 StartDate=dt.datetime(1986, 1, 1), +[2024-03-23T18:33:24.328Z]  5 EndDate=dt.datetime(1990, 12, 31), +[2024-03-23T18:33:24.329Z]  6 SuppressOutput=False, +[2024-03-23T18:33:24.329Z]  7 ) +[2024-03-23T18:33:24.329Z]  9 sim_output = Emulator(config=model_validation).run() +[2024-03-23T18:33:24.329Z]  11 # Get validation NSE (note we are counting the first year without warm-up) +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] NameError: name 'model_config' is not defined +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ +[2024-03-23T18:33:24.329Z] Notebook cell execution failed +[2024-03-23T18:33:24.329Z] Cell 18: Cell execution caused an exception +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] Input: +[2024-03-23T18:33:24.329Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-23T18:33:24.329Z] gauge_ref = [ +[2024-03-23T18:33:24.329Z] rc.Gauge.from_nc( +[2024-03-23T18:33:24.329Z] tmp +[2024-03-23T18:33:24.329Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-23T18:33:24.329Z] data_type=data_type, +[2024-03-23T18:33:24.329Z] alt_names=alt_names, +[2024-03-23T18:33:24.329Z] data_kwds=data_kwds, +[2024-03-23T18:33:24.329Z] ) +[2024-03-23T18:33:24.329Z] ] +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-23T18:33:24.329Z] model_config_reference = model_validation.duplicate( +[2024-03-23T18:33:24.329Z] Gauge=gauge_ref, +[2024-03-23T18:33:24.329Z] StartDate=reference_start_day +[2024-03-23T18:33:24.329Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-23T18:33:24.329Z] EndDate=reference_end_day, +[2024-03-23T18:33:24.329Z] ) +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] # Run the model from the configuration and get the outputs. +[2024-03-23T18:33:24.329Z] ref_output = Emulator(config=model_config_reference).run() +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] # Plot the model output. Note that both simulations should have similar hydrological +[2024-03-23T18:33:24.329Z] # regime but day-to-day variability is not expected to match. +[2024-03-23T18:33:24.329Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") +[2024-03-23T18:33:24.329Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-03-23T18:33:24.329Z] plt.legend() +[2024-03-23T18:33:24.329Z] plt.title("Reference period") +[2024-03-23T18:33:24.329Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-23T18:33:24.329Z] plt.grid() +[2024-03-23T18:33:24.329Z] plt.show() +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] Traceback: +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.329Z] ValueError Traceback (most recent call last) +[2024-03-23T18:33:24.329Z] Cell In[1], line 3 +[2024-03-23T18:33:24.329Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-03-23T18:33:24.329Z]  2 gauge_ref = [ +[2024-03-23T18:33:24.329Z] ----> 3 rc.Gauge.from_nc( +[2024-03-23T18:33:24.329Z]  4  tmp +[2024-03-23T18:33:24.329Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-23T18:33:24.329Z]  6  data_type=data_type, +[2024-03-23T18:33:24.329Z]  7  alt_names=alt_names, +[2024-03-23T18:33:24.329Z]  8  data_kwds=data_kwds, +[2024-03-23T18:33:24.329Z]  9  ) +[2024-03-23T18:33:24.329Z]  10 ] +[2024-03-23T18:33:24.329Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-23T18:33:24.329Z]  13 model_config_reference = model_validation.duplicate( +[2024-03-23T18:33:24.329Z]  14 Gauge=gauge_ref, +[2024-03-23T18:33:24.329Z]  15 StartDate=reference_start_day +[2024-03-23T18:33:24.329Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-03-23T18:33:24.329Z]  17 EndDate=reference_end_day, +[2024-03-23T18:33:24.329Z]  18 ) +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-03-23T18:33:24.329Z]  751 forcings.difference_update(data) +[2024-03-23T18:33:24.329Z]  753 if len(data) == 0: +[2024-03-23T18:33:24.329Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-03-23T18:33:24.329Z]  756 # Default Gauge name +[2024-03-23T18:33:24.329Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] ValueError: No data found in netCDF files. +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ +[2024-03-23T18:33:24.329Z] Notebook cell execution failed +[2024-03-23T18:33:24.329Z] Cell 19: Cell execution caused an exception +[2024-03-23T18:33:24.329Z] +[2024-03-23T18:33:24.329Z] Input: +[2024-03-23T18:33:24.329Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-23T18:33:24.329Z] gauge_fut = [ +[2024-03-23T18:33:24.330Z] rc.Gauge.from_nc( +[2024-03-23T18:33:24.330Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-23T18:33:24.330Z] data_type=data_type, +[2024-03-23T18:33:24.330Z] alt_names=alt_names, +[2024-03-23T18:33:24.330Z] data_kwds=data_kwds, +[2024-03-23T18:33:24.330Z] ) +[2024-03-23T18:33:24.330Z] ] +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-23T18:33:24.330Z] model_config_future = model_validation.duplicate( +[2024-03-23T18:33:24.330Z] Gauge=gauge_fut, +[2024-03-23T18:33:24.330Z] StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-23T18:33:24.330Z] EndDate=future_end_day, +[2024-03-23T18:33:24.330Z] ObservationData=None, # There are no observations for the future period. +[2024-03-23T18:33:24.330Z] ) +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] # Run the model and get the outputs and hydrographs. +[2024-03-23T18:33:24.330Z] fut_output = Emulator(config=model_config_future).run() +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] # Plot the model output +[2024-03-23T18:33:24.330Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") +[2024-03-23T18:33:24.330Z] plt.legend() +[2024-03-23T18:33:24.330Z] plt.title("Future period") +[2024-03-23T18:33:24.330Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-23T18:33:24.330Z] plt.grid() +[2024-03-23T18:33:24.330Z] plt.show() +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] Traceback: +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.330Z] ValueError Traceback (most recent call last) +[2024-03-23T18:33:24.330Z] Cell In[1], line 3 +[2024-03-23T18:33:24.330Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-03-23T18:33:24.330Z]  2 gauge_fut = [ +[2024-03-23T18:33:24.330Z] ----> 3 rc.Gauge.from_nc( +[2024-03-23T18:33:24.330Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-03-23T18:33:24.330Z]  5  data_type=data_type, +[2024-03-23T18:33:24.330Z]  6  alt_names=alt_names, +[2024-03-23T18:33:24.330Z]  7  data_kwds=data_kwds, +[2024-03-23T18:33:24.330Z]  8  ) +[2024-03-23T18:33:24.330Z]  9 ] +[2024-03-23T18:33:24.330Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-03-23T18:33:24.330Z]  12 model_config_future = model_validation.duplicate( +[2024-03-23T18:33:24.330Z]  13 Gauge=gauge_fut, +[2024-03-23T18:33:24.330Z]  14 StartDate=future_start_day + dt.timedelta(days=1), +[2024-03-23T18:33:24.330Z]  15 EndDate=future_end_day, +[2024-03-23T18:33:24.330Z]  16 ObservationData=None, # There are no observations for the future period. +[2024-03-23T18:33:24.330Z]  17 ) +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-03-23T18:33:24.330Z]  751 forcings.difference_update(data) +[2024-03-23T18:33:24.330Z]  753 if len(data) == 0: +[2024-03-23T18:33:24.330Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-03-23T18:33:24.330Z]  756 # Default Gauge name +[2024-03-23T18:33:24.330Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] ValueError: No data found in netCDF files. +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ +[2024-03-23T18:33:24.330Z] Notebook cell execution failed +[2024-03-23T18:33:24.330Z] Cell 20: Cell execution caused an exception +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] Input: +[2024-03-23T18:33:24.330Z] # Extract the mean annual hydrograph for each simulation. +[2024-03-23T18:33:24.330Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-23T18:33:24.330Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-23T18:33:24.330Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-23T18:33:24.330Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] # Plot the model output +[2024-03-23T18:33:24.330Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") +[2024-03-23T18:33:24.330Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") +[2024-03-23T18:33:24.330Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") +[2024-03-23T18:33:24.330Z] future_flows.plot(color="red", label="Future", x="dayofyear") +[2024-03-23T18:33:24.330Z] plt.legend() +[2024-03-23T18:33:24.330Z] plt.ylabel("Streamflow (m��/s)") +[2024-03-23T18:33:24.330Z] plt.xlabel("Day of year") +[2024-03-23T18:33:24.330Z] plt.xlim([0, 365]) +[2024-03-23T18:33:24.330Z] plt.title("Comparison of mean annual hydrographs") +[2024-03-23T18:33:24.330Z] plt.grid() +[2024-03-23T18:33:24.330Z] plt.show() +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] Traceback: +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.330Z] --------------------------------------------------------------------------- +[2024-03-23T18:33:24.330Z] NameError Traceback (most recent call last) +[2024-03-23T18:33:24.330Z] Cell In[1], line 2 +[2024-03-23T18:33:24.330Z]  1 # Extract the mean annual hydrograph for each simulation. +[2024-03-23T18:33:24.330Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-23T18:33:24.330Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-03-23T18:33:24.330Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-03-23T18:33:24.330Z] +[2024-03-23T18:33:24.331Z] NameError: name 'ref_output' is not defined +[2024-03-23T18:33:24.331Z] +[2024-03-23T18:33:24.331Z] =========================== short test summary info ============================ +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 +[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 +[2024-03-23T18:33:24.335Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 +[2024-03-23T18:33:24.335Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 +[2024-03-23T18:33:24.335Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 +[2024-03-23T18:33:24.335Z] ================== 27 failed, 215 passed in 935.41s (0:15:35) ================== +[2024-03-23T18:33:24.335Z] + EXIT_CODE=1 +[2024-03-23T18:33:24.335Z] + echo true +[2024-03-23T18:33:24.335Z] + tr [:upper:] [:lower:] +[2024-03-23T18:33:24.335Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-03-23T18:33:24.335Z] + [ xtrue = xtrue ] +[2024-03-23T18:33:24.335Z] + mkdir -p buildout +[2024-03-23T18:33:24.335Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-23T18:33:24.335Z] + filename=Region_selection.ipynb +[2024-03-23T18:33:24.335Z] + echo Region_selection.ipynb +[2024-03-23T18:33:24.335Z] + sed s/.ipynb$// +[2024-03-23T18:33:24.335Z] + filename=Region_selection +[2024-03-23T18:33:24.335Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-03-23T18:33:24.335Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-03-23T18:33:26.237Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-03-23T18:33:36.200Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb +[2024-03-23T18:33:36.462Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-23T18:33:36.462Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-03-23T18:33:36.462Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-03-23T18:33:36.462Z] + sed s/.ipynb$// +[2024-03-23T18:33:36.462Z] + filename=Subset_climate_data_over_watershed +[2024-03-23T18:33:36.462Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-03-23T18:33:36.462Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-03-23T18:33:38.428Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-03-23T18:33:53.318Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-03-23T18:33:53.318Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-23T18:33:53.318Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-03-23T18:33:53.318Z] + + echo 00_Introduction_to_JupyterLab.ipynb +[2024-03-23T18:33:53.318Z] sed s/.ipynb$// +[2024-03-23T18:33:53.318Z] + filename=00_Introduction_to_JupyterLab +[2024-03-23T18:33:53.318Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-03-23T18:33:53.318Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-03-23T18:33:54.258Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-03-23T18:33:56.785Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-03-23T18:33:56.785Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-23T18:33:56.785Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-03-23T18:33:56.785Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-03-23T18:33:56.785Z] + sed s/.ipynb$// +[2024-03-23T18:33:56.785Z] + filename=01_Getting_watershed_boundaries +[2024-03-23T18:33:56.785Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-03-23T18:33:56.785Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-03-23T18:33:58.689Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-03-23T18:34:10.887Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-03-23T18:34:10.887Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-23T18:34:10.887Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-03-23T18:34:10.887Z] + sed s/.ipynb$// +[2024-03-23T18:34:10.887Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-03-23T18:34:10.887Z] + filename=02_Extract_geographical_watershed_properties +[2024-03-23T18:34:10.887Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-03-23T18:34:10.887Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-03-23T18:34:11.149Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-03-23T18:34:26.041Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-03-23T18:34:26.041Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-23T18:34:26.041Z] + filename=03_Extracting_forcing_data.ipynb +[2024-03-23T18:34:26.041Z] + echo 03_Extracting_forcing_data.ipynb +[2024-03-23T18:34:26.041Z] + sed s/.ipynb$// +[2024-03-23T18:34:26.041Z] + filename=03_Extracting_forcing_data +[2024-03-23T18:34:26.041Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-03-23T18:34:26.041Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-03-23T18:34:26.973Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-03-23T18:36:03.438Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-03-23T18:36:03.438Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-23T18:36:03.438Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-03-23T18:36:03.438Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-03-23T18:36:03.438Z] + sed s/.ipynb$// +[2024-03-23T18:36:03.438Z] + filename=04_Emulating_hydrological_models +[2024-03-23T18:36:03.438Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-03-23T18:36:03.438Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-03-23T18:36:03.438Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-03-23T18:36:18.318Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-03-23T18:36:18.318Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-23T18:36:18.318Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-03-23T18:36:18.318Z] + sed s/.ipynb$// +[2024-03-23T18:36:18.318Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-03-23T18:36:18.318Z] + filename=05_Advanced_RavenPy_configuration +[2024-03-23T18:36:18.318Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-03-23T18:36:18.318Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-03-23T18:36:19.693Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-03-23T18:36:41.631Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-03-23T18:36:41.631Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-23T18:36:41.631Z] + filename=06_Raven_calibration.ipynb +[2024-03-23T18:36:41.631Z] + + sed s/.ipynb$// +[2024-03-23T18:36:41.631Z] echo 06_Raven_calibration.ipynb +[2024-03-23T18:36:41.631Z] + filename=06_Raven_calibration +[2024-03-23T18:36:41.631Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-03-23T18:36:41.631Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-03-23T18:36:41.631Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-03-23T18:36:54.128Z] [NbConvertApp] Writing 24179 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-03-23T18:36:54.128Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-23T18:36:54.128Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-03-23T18:36:54.128Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-03-23T18:36:54.128Z] + sed s/.ipynb$// +[2024-03-23T18:36:54.128Z] + filename=07_Making_and_using_hotstart_files +[2024-03-23T18:36:54.128Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-03-23T18:36:54.128Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-03-23T18:36:54.391Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-03-23T18:37:06.598Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-03-23T18:37:06.598Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-23T18:37:06.598Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-23T18:37:06.598Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-23T18:37:06.598Z] + sed s/.ipynb$// +[2024-03-23T18:37:06.598Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-03-23T18:37:06.598Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-03-23T18:37:06.598Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-03-23T18:37:07.968Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-03-23T18:40:59.474Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-03-23T18:40:59.474Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-23T18:40:59.475Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-23T18:40:59.475Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-23T18:40:59.475Z] + sed s/.ipynb$// +[2024-03-23T18:40:59.475Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-03-23T18:40:59.475Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-03-23T18:40:59.475Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-03-23T18:40:59.475Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-03-23T18:41:14.359Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-03-23T18:41:14.359Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-23T18:41:14.359Z] + filename=10_Data_assimilation.ipynb +[2024-03-23T18:41:14.359Z] + echo 10_Data_assimilation.ipynb +[2024-03-23T18:41:14.359Z] + sed s/.ipynb$// +[2024-03-23T18:41:14.359Z] + filename=10_Data_assimilation +[2024-03-23T18:41:14.359Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-03-23T18:41:14.359Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-03-23T18:41:16.270Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-03-23T18:42:02.941Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-03-23T18:42:02.941Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-23T18:42:02.941Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-03-23T18:42:02.941Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-03-23T18:42:02.941Z] + sed s/.ipynb$// +[2024-03-23T18:42:02.941Z] + filename=11_Climatological_ESP_forecasting +[2024-03-23T18:42:02.941Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-03-23T18:42:02.941Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-03-23T18:42:04.851Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-03-23T18:42:43.695Z] [NbConvertApp] Writing 556869 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-03-23T18:42:43.695Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-23T18:42:43.695Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-03-23T18:42:43.695Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-03-23T18:42:43.695Z] + sed s/.ipynb$// +[2024-03-23T18:42:43.695Z] + filename=12_Performing_hindcasting_experiments +[2024-03-23T18:42:43.695Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-03-23T18:42:43.695Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-03-23T18:42:45.073Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-03-23T18:43:07.006Z] [NbConvertApp] Writing 298315 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-03-23T18:43:07.006Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-23T18:43:07.006Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-03-23T18:43:07.006Z] + + sed s/.ipynb$// +[2024-03-23T18:43:07.006Z] echo Assess_probabilistic_flood_risk.ipynb +[2024-03-23T18:43:07.006Z] + filename=Assess_probabilistic_flood_risk +[2024-03-23T18:43:07.006Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-03-23T18:43:07.006Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-03-23T18:43:07.006Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-03-23T18:43:33.574Z] [NbConvertApp] Writing 549164 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-03-23T18:43:33.574Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-23T18:43:33.574Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-23T18:43:33.575Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-23T18:43:33.575Z] + sed s/.ipynb$// +[2024-03-23T18:43:33.575Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-03-23T18:43:33.575Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-03-23T18:43:33.575Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-03-23T18:43:33.575Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-03-23T18:44:05.680Z] [NbConvertApp] Writing 748714 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-03-23T18:44:05.680Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-23T18:44:05.680Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-03-23T18:44:05.680Z] + echo Distributed_hydrological_modelling.ipynb +[2024-03-23T18:44:05.680Z] + sed s/.ipynb$// +[2024-03-23T18:44:05.680Z] + filename=Distributed_hydrological_modelling +[2024-03-23T18:44:05.680Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-03-23T18:44:05.680Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-03-23T18:44:05.680Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-03-23T18:44:37.881Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-03-23T18:44:37.881Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-23T18:44:37.881Z] + filename=HydroShare_integration.ipynb +[2024-03-23T18:44:37.881Z] + sed s/.ipynb$// +[2024-03-23T18:44:37.881Z] + echo HydroShare_integration.ipynb +[2024-03-23T18:44:37.881Z] + filename=HydroShare_integration +[2024-03-23T18:44:37.881Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-03-23T18:44:37.881Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-03-23T18:44:37.881Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-03-23T18:44:40.414Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb +[2024-03-23T18:44:40.672Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-23T18:44:40.672Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-03-23T18:44:40.672Z] + sed s/.ipynb$// +[2024-03-23T18:44:40.672Z] + echo Hydrological_realtime_forecasting.ipynb +[2024-03-23T18:44:40.672Z] + filename=Hydrological_realtime_forecasting +[2024-03-23T18:44:40.672Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-03-23T18:44:40.672Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-03-23T18:44:42.575Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-03-23T18:45:04.554Z] [NbConvertApp] Writing 276412 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-03-23T18:45:04.554Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-23T18:45:04.554Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-03-23T18:45:04.554Z] + + echosed Managing_Jupyter_Environments.ipynb s/.ipynb$// +[2024-03-23T18:45:04.554Z] +[2024-03-23T18:45:04.554Z] + filename=Managing_Jupyter_Environments +[2024-03-23T18:45:04.554Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-03-23T18:45:04.554Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-03-23T18:45:04.554Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-03-23T18:45:14.548Z] [NbConvertApp] Writing 8646 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-03-23T18:45:14.548Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-23T18:45:14.548Z] + filename=Perform_Regionalization.ipynb +[2024-03-23T18:45:14.548Z] + echo Perform_Regionalization.ipynb +[2024-03-23T18:45:14.548Z] + sed s/.ipynb$// +[2024-03-23T18:45:14.548Z] + filename=Perform_Regionalization +[2024-03-23T18:45:14.548Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-03-23T18:45:14.548Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-03-23T18:45:14.805Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-03-23T18:45:41.339Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-03-23T18:45:41.339Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-23T18:45:41.339Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-23T18:45:41.339Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-23T18:45:41.339Z] + sed s/.ipynb$// +[2024-03-23T18:45:41.339Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-03-23T18:45:41.339Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-03-23T18:45:41.339Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-03-23T18:45:42.710Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-03-23T18:46:00.836Z] [NbConvertApp] Writing 108529 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-03-23T18:46:00.836Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-23T18:46:00.836Z] + filename=Sensitivity_analysis.ipynb +[2024-03-23T18:46:00.836Z] + echo Sensitivity_analysis.ipynb +[2024-03-23T18:46:00.836Z] + sed s/.ipynb$// +[2024-03-23T18:46:00.836Z] + filename=Sensitivity_analysis +[2024-03-23T18:46:00.836Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-03-23T18:46:00.837Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-03-23T18:46:00.837Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-03-23T18:46:18.916Z] [NbConvertApp] Writing 35157 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-03-23T18:46:18.916Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-23T18:46:18.916Z] + filename=time_series_analysis.ipynb +[2024-03-23T18:46:18.916Z] + echo time_series_analysis.ipynb +[2024-03-23T18:46:18.916Z] + sed s/.ipynb$// +[2024-03-23T18:46:18.916Z] + filename=time_series_analysis +[2024-03-23T18:46:18.916Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-03-23T18:46:18.916Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-03-23T18:46:19.479Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-03-23T18:46:31.689Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb +[2024-03-23T18:46:31.689Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-23T18:46:31.689Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-23T18:46:31.689Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-23T18:46:31.689Z] + sed s/.ipynb$// +[2024-03-23T18:46:31.689Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-03-23T18:46:31.689Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-03-23T18:46:31.689Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-03-23T18:46:31.689Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-03-23T18:47:53.118Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-03-23T18:47:53.118Z] + exit 1 +[2024-03-23T18:47:53.118Z] + EXIT_CODE=1 +[2024-03-23T18:47:53.118Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-03-23T18:47:53.118Z] + mkdir -p buildout/env-dump +[2024-03-23T18:47:53.118Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-03-23T18:47:53.118Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-03-23T18:47:53.118Z] + conda env export -n birdy +[2024-03-23T18:48:08.049Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-23T18:48:08.049Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-03-23T18:48:08.049Z] + conda list -n birdy --explicit +[2024-03-23T18:48:18.023Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-23T18:48:18.023Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-03-23T18:48:18.023Z] + pip freeze +[2024-03-23T18:48:18.023Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -2079,41 +2018,41 @@ $ docker top 7c83b119fa591b77c96fbb1844a5b1e12a65c7feabd647b27ba0948bace7a2f1 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-16T19:02:04.973Z] Archiving artifacts -[2024-03-16T19:02:05.023Z] Recording fingerprints +[2024-03-23T18:48:18.155Z] Archiving artifacts +[2024-03-23T18:48:18.688Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:05.057Z] Archiving artifacts -[2024-03-16T19:02:07.325Z] Recording fingerprints +[2024-03-23T18:48:18.713Z] Archiving artifacts +[2024-03-23T18:48:20.923Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:07.717Z] Archiving artifacts -[2024-03-16T19:02:07.765Z] Recording fingerprints +[2024-03-23T18:48:21.242Z] Archiving artifacts +[2024-03-23T18:48:21.269Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:07.856Z] Archiving artifacts -[2024-03-16T19:02:07.903Z] Recording fingerprints +[2024-03-23T18:48:21.332Z] Archiving artifacts +[2024-03-23T18:48:21.402Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:07.956Z] Archiving artifacts -[2024-03-16T19:02:07.995Z] Recording fingerprints +[2024-03-23T18:48:21.462Z] Archiving artifacts +[2024-03-23T18:48:21.483Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:08.022Z] Archiving artifacts -[2024-03-16T19:02:08.231Z] Recording fingerprints +[2024-03-23T18:48:21.516Z] Archiving artifacts +[2024-03-23T18:48:21.555Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:08.530Z] Archiving artifacts -[2024-03-16T19:02:08.564Z] Recording fingerprints +[2024-03-23T18:48:21.697Z] Archiving artifacts +[2024-03-23T18:48:21.713Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:08.631Z] Archiving artifacts -[2024-03-16T19:02:08.677Z] Recording fingerprints +[2024-03-23T18:48:21.744Z] Archiving artifacts +[2024-03-23T18:48:21.786Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:08.792Z] Archiving artifacts -[2024-03-16T19:02:09.262Z] Recording fingerprints +[2024-03-23T18:48:21.857Z] Archiving artifacts +[2024-03-23T18:48:22.278Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:09.378Z] Archiving artifacts -[2024-03-16T19:02:09.710Z] Recording fingerprints +[2024-03-23T18:48:22.431Z] Archiving artifacts +[2024-03-23T18:48:22.778Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-16T19:02:10.157Z] Archiving artifacts -[2024-03-16T19:02:10.179Z] Recording fingerprints +[2024-03-23T18:48:23.119Z] Archiving artifacts +[2024-03-23T18:48:23.158Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-16T19:02:10.293Z] Sending e-mails to: vu.long@ouranos.ca +[2024-03-23T18:48:23.217Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -2123,8 +2062,8 @@ $ docker top 7c83b119fa591b77c96fbb1844a5b1e12a65c7feabd647b27ba0948bace7a2f1 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 7c83b119fa591b77c96fbb1844a5b1e12a65c7feabd647b27ba0948bace7a2f1 -$ docker rm -f 7c83b119fa591b77c96fbb1844a5b1e12a65c7feabd647b27ba0948bace7a2f1 +$ docker stop --time=1 df2b6968856f2a6f247b677066bb5c2d2a1f0388cec1053c5e1f361206911ba4 +$ docker rm -f df2b6968856f2a6f247b677066bb5c2d2a1f0388cec1053c5e1f361206911ba4 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 14c8c90dbb76b8b917ed0983a714649c9c71f780 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 26 Mar 2024 11:29:15 -0400 Subject: [PATCH 050/104] jenkins: add SAVE_RESULTING_NOTEBOOK_TIMEOUT for slow notebooks or slow machine The nbconvert output is useful for refreshing output so we want all of them to pass, even if we need to increase the timeout during a manual run. Nightly automated scheduled run will always use the default value 240 sec. --- Jenkinsfile | 2 ++ runtest | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d0f1779..a4555e9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -98,6 +98,8 @@ Requires 'weaver' component to be active on the target 'PAVICS_HOST' server booleanParam(name: 'SAVE_RESULTING_NOTEBOOK', defaultValue: true, description: '''Check the box to save the resulting notebooks of the run. Note this is another run, will double the time and no guaranty to have same error as the run from py.test.''') + string(name: 'SAVE_RESULTING_NOTEBOOK_TIMEOUT', defaultValue: '240', + description: 'Timeout in sec for nbconvert. For slow notebooks or slow machine', trim: true) } triggers { diff --git a/runtest b/runtest index 077be4b..2c60aae 100755 --- a/runtest +++ b/runtest @@ -63,12 +63,12 @@ if [ x"$SAVE_RESULTING_NOTEBOOK" = xtrue ]; then # prevent name clash filename="${filename}_`date '+%s'`" fi - # Timeout must not be more than 240s (4 mins). + # Timeout must not be more than 240s (4 mins). Default in Jenkinsfile. # Tutorial notebooks should be fast so user do not lose patience waiting # for them to run. If more than 4 mins, in addition to simplifying the # notebook, should also check machine performance. jupyter nbconvert --to notebook --execute \ - --ExecutePreprocessor.timeout=240 --allow-errors \ + --ExecutePreprocessor.timeout=${SAVE_RESULTING_NOTEBOOK_TIMEOUT} --allow-errors \ --output-dir buildout --output "${filename}.output.ipynb" "$nb" done fi From 6dd64ec9bc6b69b770061cff543f6a6f8bc426ef Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 2 Apr 2024 16:36:09 -0400 Subject: [PATCH 051/104] docker: remove extra package and build step needed for jupyter-dash jupyter-dash has been removed in commit a73fc6c. --- docker/Dockerfile | 9 --------- docker/environment.yml | 5 ----- 2 files changed, 14 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index c00ca55..bded360 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -61,15 +61,6 @@ RUN python -m ipykernel install --name birdy # environment.yml above # RUN mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy nbdime -# build jupyterlab extensions installed by conda, see `jupyter labextension list` -# Supposedly not needed with jupyterlab v3 anymore but see -# https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998901247 -# TODO: remove 'jupyter lab build' step once all extensions move to prebuilt extensions, -# see comment https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998917305 -# Currently jupyter-dash is holding back this step, see -# https://github.com/plotly/jupyter-dash/issues/49 -RUN jupyter lab build - RUN jupyter serverextension enable voila --sys-prefix \ && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix \ && jupyter serverextension list diff --git a/docker/environment.yml b/docker/environment.yml index 15c527b..b59a0a0 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -190,11 +190,6 @@ dependencies: # https://github.com/holoviz/jupyter-panel-proxy # DISABLE: seems to interfere with 'panel serve' command #- jupyter-panel-proxy >= 0.2.0a2 - # Force newer nodejs for 'jupyter lab build' issue - # https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998901247 - # TODO: remove nodejs once all extensions move to prebuilt extensions, see comment - # https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998917305 - - nodejs >= 16.0 # utilities - curl - wget From 2e2763607639d139e58ef0531e1e82f453245cc0 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 2 Apr 2024 16:39:20 -0400 Subject: [PATCH 052/104] docker: add conda-pack to root conda env MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To allow using this exact Jupyter env, outside of Jupyter, on some local machine. https://conda.github.io/conda-pack/ conda-pack is a command line tool for creating archives of conda environments that can be installed on other systems and locations. This is useful for deploying code in a consistent environment—potentially where python and/or conda isn’t already installed. A tool like conda-pack is necessary because conda environments are not relocatable. Simply moving an environment to a different directory can render it partially or completely inoperable. conda-pack addresses this challenge by building archives from original conda package sources and reproducing conda’s own relocation logic. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index bded360..566b8ec 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ FROM continuumio/miniconda3 # Use mamba for much improved performance over conda. # The 'channel_priority strict' did help conda but it was not enough. RUN conda update conda -n base && \ - conda install mamba -n base -c conda-forge -c defaults && \ + conda install mamba conda-pack -n base -c conda-forge -c defaults && \ conda clean --all --yes && \ conda config --set channel_priority strict && \ wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba From f7e7c43d9da06b7e8af4e117d2738700b681a920 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 2 Apr 2024 16:49:33 -0400 Subject: [PATCH 053/104] release: update to use image pavics/workflow-tests:py310-240402 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a4555e9..3d17d45 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-240323" + image "pavics/workflow-tests:py310-240402" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 9f4a8d9..f891c71 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-240323 +FROM pavics/workflow-tests:py310-240402 USER root diff --git a/launchcontainer b/launchcontainer index 7a2b32e..f521862 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240323" + DOCKER_IMAGE="pavics/workflow-tests:py310-240402" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 2d09f49..5bc6a82 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240323" + DOCKER_IMAGE="pavics/workflow-tests:py310-240402" fi if [ -z "$CONTAINER_NAME" ]; then From fbe057b1fb1c37a3611c45502e088c24533e6b12 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 2 Apr 2024 17:37:41 -0400 Subject: [PATCH 054/104] docker: py310-240402: build log --- docker/saved_buildout/docker-buildlogs.txt | 15396 ++++++++----------- 1 file changed, 6053 insertions(+), 9343 deletions(-) diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index 2233e5d..6f9d68f 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,9343 +1,6053 @@ -2024-03-23T17:19:43Z Building in Docker Cloud's infrastructure... -2024-03-23T17:19:43Z Cloning into '.'... -2024-03-23T17:19:44Z Warning: Permanently added the RSA host key for IP address '140.82.112.3' to the list of known hosts. -2024-03-23T17:19:45Z Switched to a new branch 'docker-py310-240323' -2024-03-23T17:19:45Z KernelVersion: 5.4.0-1068-aws -2024-03-23T17:19:45Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-03-23T17:19:45Z Arch: amd64 -2024-03-23T17:19:45Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-03-23T17:19:45Z ApiVersion: 1.41 -2024-03-23T17:19:45Z Platform: {u'Name': u'Docker Engine - Community'} -2024-03-23T17:19:45Z Version: 20.10.15 -2024-03-23T17:19:45Z MinAPIVersion: 1.12 -2024-03-23T17:19:45Z GitCommit: 4433bf6 -2024-03-23T17:19:45Z Os: linux -2024-03-23T17:19:45Z GoVersion: go1.17.9 -2024-03-23T17:19:45Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240323... -2024-03-23T17:19:50Z #1 [internal] load build definition from Dockerfile -2024-03-23T17:19:50Z #1 transferring dockerfile: 6.98kB done -2024-03-23T17:19:50Z #1 DONE 0.1s -2024-03-23T17:19:50Z -2024-03-23T17:19:50Z #2 [internal] load .dockerignore -2024-03-23T17:19:50Z #2 transferring context: 2B done -2024-03-23T17:19:50Z #2 DONE 0.0s -2024-03-23T17:19:50Z -2024-03-23T17:19:50Z #3 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-03-23T17:19:50Z #3 DONE 0.0s -2024-03-23T17:19:50Z -2024-03-23T17:19:50Z #4 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-03-23T17:19:51Z #4 DONE 0.6s -2024-03-23T17:19:51Z -2024-03-23T17:19:51Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-03-23T17:19:51Z #5 DONE 0.0s -2024-03-23T17:19:51Z -2024-03-23T17:19:51Z #6 [internal] load build context -2024-03-23T17:19:51Z #6 DONE 0.0s -2024-03-23T17:19:51Z -2024-03-23T17:19:51Z #6 [internal] load build context -2024-03-23T17:19:51Z #6 transferring context: 9.58kB done -2024-03-23T17:19:51Z #6 DONE 0.0s -2024-03-23T17:19:51Z -2024-03-23T17:19:51Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-03-23T17:19:51Z #5 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done -2024-03-23T17:19:51Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s -2024-03-23T17:19:51Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.1s -2024-03-23T17:19:51Z #5 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done -2024-03-23T17:19:51Z #5 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done -2024-03-23T17:19:51Z #5 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done -2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 0B / 31.42MB 0.1s -2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.24MB / 31.42MB 0.2s -2024-03-23T17:19:51Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 4.19MB / 50.08MB 0.3s -2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 9.44MB / 31.42MB 0.3s -2024-03-23T17:19:51Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 8.39MB / 50.08MB 0.4s -2024-03-23T17:19:51Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 8.39MB / 147.31MB 0.4s -2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 13.63MB / 31.42MB 0.4s -2024-03-23T17:19:51Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 14.68MB / 50.08MB 0.6s -2024-03-23T17:19:51Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 27.26MB / 31.42MB 0.6s -2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 20.97MB / 50.08MB 0.7s -2024-03-23T17:19:52Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 17.83MB / 147.31MB 0.7s -2024-03-23T17:19:52Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 0.7s -2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 26.21MB / 50.08MB 0.8s -2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 35.65MB / 50.08MB 1.0s -2024-03-23T17:19:52Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 38.80MB / 147.31MB 1.0s -2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 45.09MB / 50.08MB 1.1s -2024-03-23T17:19:52Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.0s done -2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.2s -2024-03-23T17:19:52Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.3s done -2024-03-23T17:19:52Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 54.53MB / 147.31MB 1.4s -2024-03-23T17:19:52Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 -2024-03-23T17:19:52Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 67.11MB / 147.31MB 1.6s -2024-03-23T17:19:53Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 77.59MB / 147.31MB 1.8s -2024-03-23T17:19:53Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 88.08MB / 147.31MB 2.2s -2024-03-23T17:19:53Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 103.53MB / 147.31MB 2.5s -2024-03-23T17:19:54Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 112.20MB / 147.31MB 3.2s -2024-03-23T17:19:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 121.63MB / 147.31MB 3.7s -2024-03-23T17:19:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 130.08MB / 147.31MB 4.1s -2024-03-23T17:19:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 144.70MB / 147.31MB 4.4s -2024-03-23T17:19:57Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 5.5s done -2024-03-23T17:19:57Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.0s -2024-03-23T17:19:58Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.4s done -2024-03-23T17:19:58Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 -2024-03-23T17:20:03Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.0s -2024-03-23T17:20:04Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.2s done -2024-03-23T17:20:05Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c -2024-03-23T17:20:10Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.1s -2024-03-23T17:20:15Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.3s -2024-03-23T17:20:19Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.3s done -2024-03-23T17:20:19Z #5 DONE 28.5s -2024-03-23T17:20:19Z -2024-03-23T17:20:19Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-03-23T17:20:21Z #7 1.567 Channels: -2024-03-23T17:20:21Z #7 1.567 - defaults -2024-03-23T17:20:21Z #7 1.567 Platform: linux-64 -2024-03-23T17:20:25Z #7 1.567 Collecting package metadata (repodata.json): ...working... done -2024-03-23T17:20:25Z #7 5.798 Solving environment: ...working... done -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 ## Package Plan ## -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 environment location: /opt/conda -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 added / updated specs: -2024-03-23T17:20:26Z #7 6.106 - conda -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 The following packages will be downloaded: -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 package | build -2024-03-23T17:20:26Z #7 6.106 ---------------------------|----------------- -2024-03-23T17:20:26Z #7 6.106 archspec-0.2.3 | pyhd3eb1b0_0 47 KB -2024-03-23T17:20:26Z #7 6.106 ca-certificates-2024.3.11 | h06a4308_0 127 KB -2024-03-23T17:20:26Z #7 6.106 conda-24.3.0 | py311h06a4308_0 1.2 MB -2024-03-23T17:20:26Z #7 6.106 ------------------------------------------------------------ -2024-03-23T17:20:26Z #7 6.106 Total: 1.4 MB -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 The following packages will be UPDATED: -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 archspec 0.2.1-pyhd3eb1b0_0 --> 0.2.3-pyhd3eb1b0_0 -2024-03-23T17:20:26Z #7 6.106 ca-certificates 2023.12.12-h06a4308_0 --> 2024.3.11-h06a4308_0 -2024-03-23T17:20:26Z #7 6.106 conda 24.1.2-py311h06a4308_0 --> 24.3.0-py311h06a4308_0 -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 -2024-03-23T17:20:26Z #7 6.106 Proceed ([y]/n)? -2024-03-23T17:20:26Z #7 6.613 -2024-03-23T17:20:26Z #7 6.613 Downloading and Extracting Packages: ...working... done -2024-03-23T17:20:26Z #7 6.613 Preparing transaction: ...working... done -2024-03-23T17:20:26Z #7 6.672 Verifying transaction: ...working... done -2024-03-23T17:20:29Z #7 6.811 Executing transaction: ...working... done -2024-03-23T17:20:31Z #7 11.23 Channels: -2024-03-23T17:20:31Z #7 11.23 - conda-forge -2024-03-23T17:20:31Z #7 11.23 - defaults -2024-03-23T17:20:31Z #7 11.23 Platform: linux-64 -2024-03-23T17:20:56Z #7 11.23 Collecting package metadata (repodata.json): ...working... done -2024-03-23T17:20:58Z #7 36.97 Solving environment: ...working... done -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 ## Package Plan ## -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 environment location: /opt/conda -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 added / updated specs: -2024-03-23T17:20:58Z #7 39.00 - mamba -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 The following packages will be downloaded: -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 package | build -2024-03-23T17:20:58Z #7 39.00 ---------------------------|----------------- -2024-03-23T17:20:58Z #7 39.00 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-03-23T17:20:58Z #7 39.00 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 libmamba-1.5.7 | had39da4_0 1.6 MB conda-forge -2024-03-23T17:20:58Z #7 39.00 libmambapy-1.5.7 | py311hf2555c7_0 305 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge -2024-03-23T17:20:58Z #7 39.00 libxml2-2.12.6 | h232c23b_0 688 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 lzo-2.10 | h516909a_1000 314 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 mamba-1.5.7 | py311h3072747_0 65 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge -2024-03-23T17:20:58Z #7 39.00 python_abi-3.11 | 2_cp311 5 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-03-23T17:20:58Z #7 39.00 ------------------------------------------------------------ -2024-03-23T17:20:58Z #7 39.00 Total: 24.0 MB -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 The following NEW packages will be INSTALLED: -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-03-23T17:20:58Z #7 39.00 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-03-23T17:20:58Z #7 39.00 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 -2024-03-23T17:20:58Z #7 39.00 mamba conda-forge/linux-64::mamba-1.5.7-py311h3072747_0 -2024-03-23T17:20:58Z #7 39.00 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 The following packages will be UPDATED: -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-03-23T17:20:58Z #7 39.00 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-03-23T17:20:58Z #7 39.00 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-03-23T17:20:58Z #7 39.00 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 -2024-03-23T17:20:58Z #7 39.00 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 -2024-03-23T17:20:58Z #7 39.00 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.7-had39da4_0 -2024-03-23T17:20:58Z #7 39.00 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.7-py311hf2555c7_0 -2024-03-23T17:20:58Z #7 39.00 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 -2024-03-23T17:20:58Z #7 39.00 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_0 -2024-03-23T17:20:58Z #7 39.00 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 -2024-03-23T17:20:58Z #7 39.00 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 The following packages will be SUPERSEDED by a higher-priority channel: -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-03-23T17:20:58Z #7 39.00 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-03-23T17:20:58Z #7 39.00 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 -2024-03-23T17:20:58Z #7 39.00 Proceed ([y]/n)? -2024-03-23T17:21:00Z #7 40.98 -2024-03-23T17:21:00Z #7 40.98 Downloading and Extracting Packages: ...working... done -2024-03-23T17:21:00Z #7 40.98 Preparing transaction: ...working... done -2024-03-23T17:21:01Z #7 41.05 Verifying transaction: ...working... done -2024-03-23T17:21:07Z #7 41.29 Executing transaction: ...working... done -2024-03-23T17:21:08Z #7 48.58 Will remove 22 (25.4 MB) tarball(s). -2024-03-23T17:21:08Z #7 48.58 Will remove 1 index cache(s). -2024-03-23T17:21:08Z #7 48.58 Will remove 3 (118 KB) package(s). -2024-03-23T17:21:08Z #7 48.58 There are no tempfile(s) to remove. -2024-03-23T17:21:08Z #7 48.58 There are no logfile(s) to remove. -2024-03-23T17:21:10Z #7 50.45 bin/micromamba -2024-03-23T17:21:12Z #7 DONE 52.9s -2024-03-23T17:21:12Z -2024-03-23T17:21:12Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-03-23T17:21:13Z #8 0.541 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-03-23T17:21:13Z #8 0.559 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-03-23T17:21:13Z #8 0.559 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-03-23T17:21:13Z #8 0.707 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-03-23T17:21:13Z #8 0.947 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [270 kB] -2024-03-23T17:21:14Z #8 1.362 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-03-23T17:21:15Z #8 2.745 Fetched 8565 kB in 2s (3866 kB/s) -2024-03-23T17:21:16Z #8 2.745 Reading package lists... -2024-03-23T17:21:17Z #8 3.595 Reading package lists... -2024-03-23T17:21:17Z #8 4.450 Building dependency tree... -2024-03-23T17:21:17Z #8 4.660 Reading state information... -2024-03-23T17:21:17Z #8 4.954 git is already the newest version (1:2.30.2-1+deb11u2). -2024-03-23T17:21:17Z #8 4.954 mercurial is already the newest version (5.6.1-4). -2024-03-23T17:21:17Z #8 4.954 The following additional packages will be installed: -2024-03-23T17:21:17Z #8 4.954 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-03-23T17:21:17Z #8 4.954 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-03-23T17:21:17Z #8 4.954 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-03-23T17:21:17Z #8 4.954 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-03-23T17:21:17Z #8 4.954 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-03-23T17:21:17Z #8 4.954 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-03-23T17:21:17Z #8 4.954 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-03-23T17:21:17Z #8 4.954 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-03-23T17:21:17Z #8 4.954 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-03-23T17:21:17Z #8 4.955 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-03-23T17:21:17Z #8 4.955 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-03-23T17:21:17Z #8 4.955 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-03-23T17:21:17Z #8 4.955 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-03-23T17:21:17Z #8 4.955 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-03-23T17:21:17Z #8 4.955 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-03-23T17:21:17Z #8 4.955 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-03-23T17:21:17Z #8 4.955 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-03-23T17:21:17Z #8 4.955 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-03-23T17:21:17Z #8 4.955 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-03-23T17:21:17Z #8 4.955 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-03-23T17:21:17Z #8 4.955 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-03-23T17:21:17Z #8 4.956 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-03-23T17:21:17Z #8 4.956 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-03-23T17:21:17Z #8 4.956 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-03-23T17:21:17Z #8 4.956 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-03-23T17:21:17Z #8 4.956 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-03-23T17:21:17Z #8 4.956 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-03-23T17:21:17Z #8 4.956 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-03-23T17:21:17Z #8 4.956 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-03-23T17:21:17Z #8 4.956 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-03-23T17:21:17Z #8 4.956 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-03-23T17:21:17Z #8 4.956 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-03-23T17:21:17Z #8 4.956 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-03-23T17:21:17Z #8 4.956 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-03-23T17:21:17Z #8 4.956 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-03-23T17:21:17Z #8 4.956 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-03-23T17:21:17Z #8 4.957 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-03-23T17:21:17Z #8 4.957 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv -2024-03-23T17:21:17Z #8 4.957 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data -2024-03-23T17:21:17Z #8 4.959 Suggested packages: -2024-03-23T17:21:17Z #8 4.959 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-03-23T17:21:17Z #8 4.959 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-03-23T17:21:17Z #8 4.959 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-03-23T17:21:17Z #8 4.959 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs -2024-03-23T17:21:17Z #8 4.959 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser -2024-03-23T17:21:17Z #8 4.959 opencl-icd ed diffutils-doc systemd-container policykit-1 zip -2024-03-23T17:21:17Z #8 4.959 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-03-23T17:21:17Z #8 4.959 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-03-23T17:21:17Z #8 4.959 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-03-23T17:21:19Z #8 6.333 The following NEW packages will be installed: -2024-03-23T17:21:19Z #8 6.333 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-03-23T17:21:19Z #8 6.333 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-03-23T17:21:19Z #8 6.337 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-03-23T17:21:19Z #8 6.337 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-03-23T17:21:19Z #8 6.337 glib-networking glib-networking-common glib-networking-services -2024-03-23T17:21:19Z #8 6.337 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-03-23T17:21:19Z #8 6.337 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-03-23T17:21:19Z #8 6.337 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-03-23T17:21:19Z #8 6.337 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-03-23T17:21:19Z #8 6.337 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-03-23T17:21:19Z #8 6.337 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-03-23T17:21:19Z #8 6.337 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-03-23T17:21:19Z #8 6.337 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-03-23T17:21:19Z #8 6.337 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-03-23T17:21:19Z #8 6.337 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-03-23T17:21:19Z #8 6.337 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-03-23T17:21:19Z #8 6.337 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-03-23T17:21:19Z #8 6.337 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-03-23T17:21:19Z #8 6.337 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-03-23T17:21:19Z #8 6.337 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-03-23T17:21:19Z #8 6.337 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-03-23T17:21:19Z #8 6.337 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-03-23T17:21:19Z #8 6.337 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-03-23T17:21:19Z #8 6.337 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-03-23T17:21:19Z #8 6.337 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-03-23T17:21:19Z #8 6.337 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-03-23T17:21:19Z #8 6.337 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-03-23T17:21:19Z #8 6.337 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-03-23T17:21:19Z #8 6.337 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-03-23T17:21:19Z #8 6.337 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-03-23T17:21:19Z #8 6.337 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-03-23T17:21:19Z #8 6.337 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-03-23T17:21:19Z #8 6.337 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-03-23T17:21:19Z #8 6.337 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-03-23T17:21:19Z #8 6.337 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-03-23T17:21:19Z #8 6.337 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-03-23T17:21:19Z #8 6.337 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-03-23T17:21:19Z #8 6.337 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-03-23T17:21:19Z #8 6.337 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-03-23T17:21:19Z #8 6.337 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-03-23T17:21:19Z #8 6.337 x11-utils xkb-data -2024-03-23T17:21:19Z #8 6.365 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. -2024-03-23T17:21:19Z #8 6.365 Need to get 236 MB of archives. -2024-03-23T17:21:19Z #8 6.365 After this operation, 891 MB of additional disk space will be used. -2024-03-23T17:21:19Z #8 6.365 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-03-23T17:21:19Z #8 6.377 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-03-23T17:21:19Z #8 6.381 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-03-23T17:21:19Z #8 6.382 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-03-23T17:21:19Z #8 6.384 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-03-23T17:21:19Z #8 6.388 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-03-23T17:21:19Z #8 6.388 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-03-23T17:21:19Z #8 6.392 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-03-23T17:21:19Z #8 6.394 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-03-23T17:21:19Z #8 6.395 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-03-23T17:21:19Z #8 6.530 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-03-23T17:21:19Z #8 6.532 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-03-23T17:21:19Z #8 6.537 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-03-23T17:21:19Z #8 6.542 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-03-23T17:21:19Z #8 6.545 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-03-23T17:21:19Z #8 6.550 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-03-23T17:21:19Z #8 6.605 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-03-23T17:21:19Z #8 6.605 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-03-23T17:21:19Z #8 6.605 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-03-23T17:21:19Z #8 6.608 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-03-23T17:21:19Z #8 6.869 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-03-23T17:21:19Z #8 6.890 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-03-23T17:21:19Z #8 6.911 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-03-23T17:21:19Z #8 6.915 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-03-23T17:21:19Z #8 6.920 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-03-23T17:21:19Z #8 6.922 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-03-23T17:21:19Z #8 6.924 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-03-23T17:21:19Z #8 6.928 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-03-23T17:21:19Z #8 6.934 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-03-23T17:21:19Z #8 6.937 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-03-23T17:21:19Z #8 6.939 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-03-23T17:21:20Z #8 7.238 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-03-23T17:21:20Z #8 7.238 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-03-23T17:21:20Z #8 7.238 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-03-23T17:21:20Z #8 7.238 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-03-23T17:21:20Z #8 7.238 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-03-23T17:21:20Z #8 7.257 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-03-23T17:21:20Z #8 7.257 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-03-23T17:21:20Z #8 7.257 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-03-23T17:21:20Z #8 7.257 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-03-23T17:21:20Z #8 7.278 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-03-23T17:21:20Z #8 7.322 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-03-23T17:21:20Z #8 7.326 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-03-23T17:21:20Z #8 7.328 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-03-23T17:21:20Z #8 7.351 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-03-23T17:21:20Z #8 7.353 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-03-23T17:21:20Z #8 7.363 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-03-23T17:21:20Z #8 7.409 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-03-23T17:21:20Z #8 7.417 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-03-23T17:21:20Z #8 7.619 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-03-23T17:21:20Z #8 7.625 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-03-23T17:21:20Z #8 7.625 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-03-23T17:21:20Z #8 7.629 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-03-23T17:21:20Z #8 7.629 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-03-23T17:21:20Z #8 7.631 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-03-23T17:21:20Z #8 7.632 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-03-23T17:21:20Z #8 7.634 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-03-23T17:21:20Z #8 7.651 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-03-23T17:21:20Z #8 7.677 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-03-23T17:21:20Z #8 7.685 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-03-23T17:21:20Z #8 7.694 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-03-23T17:21:20Z #8 7.706 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-03-23T17:21:20Z #8 7.712 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-03-23T17:21:20Z #8 7.715 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-03-23T17:21:20Z #8 7.733 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-03-23T17:21:20Z #8 7.738 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-03-23T17:21:20Z #8 7.741 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-03-23T17:21:20Z #8 7.744 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-03-23T17:21:20Z #8 7.746 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-03-23T17:21:20Z #8 7.750 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-03-23T17:21:20Z #8 7.753 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-03-23T17:21:20Z #8 7.756 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-03-23T17:21:20Z #8 7.758 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-03-23T17:21:20Z #8 7.760 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-03-23T17:21:20Z #8 7.766 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-03-23T17:21:20Z #8 7.769 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-03-23T17:21:20Z #8 7.771 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-03-23T17:21:20Z #8 7.773 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-03-23T17:21:20Z #8 7.793 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-03-23T17:21:20Z #8 7.795 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-03-23T17:21:20Z #8 7.797 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-03-23T17:21:20Z #8 7.803 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-03-23T17:21:20Z #8 7.806 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-03-23T17:21:20Z #8 7.822 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-03-23T17:21:20Z #8 7.824 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-03-23T17:21:20Z #8 7.828 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-03-23T17:21:20Z #8 7.830 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-03-23T17:21:20Z #8 7.832 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-03-23T17:21:20Z #8 7.834 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-03-23T17:21:20Z #8 7.838 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-03-23T17:21:20Z #8 7.845 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-03-23T17:21:20Z #8 7.848 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-03-23T17:21:20Z #8 7.850 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-03-23T17:21:20Z #8 7.855 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-03-23T17:21:20Z #8 7.856 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-03-23T17:21:20Z #8 7.858 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-03-23T17:21:20Z #8 7.859 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-03-23T17:21:20Z #8 7.862 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-03-23T17:21:20Z #8 7.863 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-03-23T17:21:20Z #8 7.865 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-03-23T17:21:20Z #8 7.866 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-03-23T17:21:20Z #8 7.869 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-03-23T17:21:20Z #8 7.871 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-03-23T17:21:20Z #8 7.872 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-03-23T17:21:20Z #8 7.882 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-03-23T17:21:20Z #8 7.884 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-03-23T17:21:20Z #8 7.886 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-03-23T17:21:20Z #8 7.979 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-03-23T17:21:20Z #8 8.020 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-03-23T17:21:20Z #8 8.057 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.9.0esr-1~deb11u1 [63.7 MB] -2024-03-23T17:21:22Z #8 9.687 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-03-23T17:21:22Z #8 9.688 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-03-23T17:21:22Z #8 9.689 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-03-23T17:21:22Z #8 9.691 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-03-23T17:21:22Z #8 9.693 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-03-23T17:21:22Z #8 9.694 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-03-23T17:21:22Z #8 9.745 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-03-23T17:21:22Z #8 9.758 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-03-23T17:21:22Z #8 9.801 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-03-23T17:21:22Z #8 9.858 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-03-23T17:21:22Z #8 9.861 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-03-23T17:21:22Z #8 9.895 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-03-23T17:21:23Z #8 10.41 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-03-23T17:21:23Z #8 10.41 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-03-23T17:21:23Z #8 10.41 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-03-23T17:21:23Z #8 10.42 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-03-23T17:21:23Z #8 10.42 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-03-23T17:21:23Z #8 10.42 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-03-23T17:21:23Z #8 10.43 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-03-23T17:21:23Z #8 10.43 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-03-23T17:21:23Z #8 10.44 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-03-23T17:21:23Z #8 10.46 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-03-23T17:21:23Z #8 10.49 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-03-23T17:21:23Z #8 10.58 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-03-23T17:21:23Z #8 10.58 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-03-23T17:21:23Z #8 10.58 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-03-23T17:21:23Z #8 10.58 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-03-23T17:21:23Z #8 10.60 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-03-23T17:21:23Z #8 10.60 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-03-23T17:21:23Z #8 10.76 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-03-23T17:21:23Z #8 10.77 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-03-23T17:21:23Z #8 10.77 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-03-23T17:21:23Z #8 10.79 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-03-23T17:21:23Z #8 10.79 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-03-23T17:21:23Z #8 10.80 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-03-23T17:21:23Z #8 10.82 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-03-23T17:21:23Z #8 10.83 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-03-23T17:21:23Z #8 10.83 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-03-23T17:21:23Z #8 10.83 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-03-23T17:21:23Z #8 10.83 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-03-23T17:21:23Z #8 10.83 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-03-23T17:21:23Z #8 10.84 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-03-23T17:21:23Z #8 10.84 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-03-23T17:21:23Z #8 10.84 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-03-23T17:21:23Z #8 10.84 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-03-23T17:21:23Z #8 10.85 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-03-23T17:21:23Z #8 10.86 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-03-23T17:21:23Z #8 10.86 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-03-23T17:21:23Z #8 10.86 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-03-23T17:21:23Z #8 10.87 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-03-23T17:21:23Z #8 10.87 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-03-23T17:21:23Z #8 10.92 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-03-23T17:21:23Z #8 10.92 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-03-23T17:21:23Z #8 10.93 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-03-23T17:21:23Z #8 10.94 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-03-23T17:21:23Z #8 11.02 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] -2024-03-23T17:21:23Z #8 11.04 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-03-23T17:21:23Z #8 11.05 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-03-23T17:21:23Z #8 11.05 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] -2024-03-23T17:21:23Z #8 11.06 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-03-23T17:21:23Z #8 11.08 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-03-23T17:21:23Z #8 11.08 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-03-23T17:21:23Z #8 11.08 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-03-23T17:21:23Z #8 11.08 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] -2024-03-23T17:21:23Z #8 11.12 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-03-23T17:21:23Z #8 11.14 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-03-23T17:21:23Z #8 11.14 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-03-23T17:21:23Z #8 11.14 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-03-23T17:21:23Z #8 11.15 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-03-23T17:21:24Z #8 11.15 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-03-23T17:21:24Z #8 11.15 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-03-23T17:21:24Z #8 11.16 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-03-23T17:21:24Z #8 11.30 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-03-23T17:21:24Z #8 11.72 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-03-23T17:21:24Z #8 11.72 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-03-23T17:21:24Z #8 11.72 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-03-23T17:21:24Z #8 11.72 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-03-23T17:21:24Z #8 11.94 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-03-23T17:21:24Z #8 11.94 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-03-23T17:21:24Z #8 11.95 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-03-23T17:21:24Z #8 11.95 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-03-23T17:21:24Z #8 11.95 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-03-23T17:21:24Z #8 11.95 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-03-23T17:21:24Z #8 11.96 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-03-23T17:21:24Z #8 11.96 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-03-23T17:21:24Z #8 11.96 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-03-23T17:21:24Z #8 11.96 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-03-23T17:21:24Z #8 11.96 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-03-23T17:21:24Z #8 11.97 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-03-23T17:21:24Z #8 11.97 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-03-23T17:21:24Z #8 11.97 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-03-23T17:21:24Z #8 11.97 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-03-23T17:21:24Z #8 11.97 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-03-23T17:21:24Z #8 11.98 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-03-23T17:21:24Z #8 11.99 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-03-23T17:21:24Z #8 11.99 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-03-23T17:21:24Z #8 11.99 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-03-23T17:21:24Z #8 11.99 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-03-23T17:21:24Z #8 12.00 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-03-23T17:21:24Z #8 12.00 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-03-23T17:21:24Z #8 12.00 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-03-23T17:21:24Z #8 12.00 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-03-23T17:21:24Z #8 12.01 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-03-23T17:21:24Z #8 12.03 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-03-23T17:21:24Z #8 12.09 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-03-23T17:21:24Z #8 12.13 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-03-23T17:21:24Z #8 12.21 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-03-23T17:21:25Z #8 12.21 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-03-23T17:21:25Z #8 12.21 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-03-23T17:21:25Z #8 12.22 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-03-23T17:21:25Z #8 12.22 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-03-23T17:21:25Z #8 12.50 debconf: delaying package configuration, since apt-utils is not installed -2024-03-23T17:21:25Z #8 12.54 Fetched 236 MB in 6s (40.2 MB/s) -2024-03-23T17:21:25Z #8 12.57 Selecting previously unselected package libapparmor1:amd64. -2024-03-23T17:21:25Z #8 12.57 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-03-23T17:21:25Z #8 12.59 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-03-23T17:21:25Z #8 12.60 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-03-23T17:21:25Z #8 12.66 Selecting previously unselected package libcap2:amd64. -2024-03-23T17:21:25Z #8 12.66 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-03-23T17:21:25Z #8 12.67 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-03-23T17:21:25Z #8 12.72 Selecting previously unselected package libargon2-1:amd64. -2024-03-23T17:21:25Z #8 12.72 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-03-23T17:21:25Z #8 12.72 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-03-23T17:21:25Z #8 12.77 Selecting previously unselected package dmsetup. -2024-03-23T17:21:25Z #8 12.77 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-03-23T17:21:25Z #8 12.78 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-03-23T17:21:25Z #8 12.84 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-03-23T17:21:25Z #8 12.84 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-03-23T17:21:25Z #8 12.85 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-03-23T17:21:25Z #8 12.92 Selecting previously unselected package libjson-c5:amd64. -2024-03-23T17:21:25Z #8 12.92 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-03-23T17:21:25Z #8 12.93 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-03-23T17:21:25Z #8 12.99 Selecting previously unselected package libcryptsetup12:amd64. -2024-03-23T17:21:25Z #8 12.99 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-03-23T17:21:25Z #8 13.00 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-03-23T17:21:25Z #8 13.08 Selecting previously unselected package libip4tc2:amd64. -2024-03-23T17:21:25Z #8 13.08 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-03-23T17:21:25Z #8 13.09 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-03-23T17:21:25Z #8 13.14 Selecting previously unselected package libkmod2:amd64. -2024-03-23T17:21:25Z #8 13.14 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-03-23T17:21:25Z #8 13.14 Unpacking libkmod2:amd64 (28-1) ... -2024-03-23T17:21:25Z #8 13.21 Selecting previously unselected package systemd. -2024-03-23T17:21:26Z #8 13.21 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-23T17:21:26Z #8 13.28 Unpacking systemd (247.3-7+deb11u4) ... -2024-03-23T17:21:26Z #8 14.10 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-03-23T17:21:26Z #8 14.12 Setting up libcap2:amd64 (1:2.44-1) ... -2024-03-23T17:21:26Z #8 14.14 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-03-23T17:21:26Z #8 14.16 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-03-23T17:21:26Z #8 14.18 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-03-23T17:21:26Z #8 14.19 Setting up libkmod2:amd64 (28-1) ... -2024-03-23T17:21:27Z #8 14.21 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-03-23T17:21:27Z #8 14.23 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-03-23T17:21:27Z #8 14.25 Setting up systemd (247.3-7+deb11u4) ... -2024-03-23T17:21:27Z #8 14.30 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-03-23T17:21:27Z #8 14.30 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-03-23T17:21:27Z #8 14.31 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-03-23T17:21:27Z #8 14.34 Initializing machine ID from KVM UUID. -2024-03-23T17:21:27Z #8 14.75 Setting up dmsetup (2:1.02.175-2.1) ... -2024-03-23T17:21:27Z #8 14.84 Selecting previously unselected package systemd-sysv. -2024-03-23T17:21:27Z #8 14.84 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-03-23T17:21:27Z #8 14.87 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-03-23T17:21:27Z #8 14.88 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-03-23T17:21:27Z #8 14.93 Selecting previously unselected package libdbus-1-3:amd64. -2024-03-23T17:21:27Z #8 14.94 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-03-23T17:21:27Z #8 14.94 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-03-23T17:21:27Z #8 15.02 Selecting previously unselected package dbus. -2024-03-23T17:21:27Z #8 15.02 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-03-23T17:21:27Z #8 15.04 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-03-23T17:21:28Z #8 15.12 Selecting previously unselected package libnss-systemd:amd64. -2024-03-23T17:21:28Z #8 15.12 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-23T17:21:28Z #8 15.13 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-23T17:21:28Z #8 15.19 Selecting previously unselected package libpam-systemd:amd64. -2024-03-23T17:21:28Z #8 15.19 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-03-23T17:21:28Z #8 15.19 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-23T17:21:28Z #8 15.26 Selecting previously unselected package manpages. -2024-03-23T17:21:28Z #8 15.27 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-03-23T17:21:28Z #8 15.27 Unpacking manpages (5.10-1) ... -2024-03-23T17:21:28Z #8 15.47 Selecting previously unselected package systemd-timesyncd. -2024-03-23T17:21:28Z #8 15.47 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-03-23T17:21:28Z #8 15.48 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-03-23T17:21:28Z #8 15.54 Selecting previously unselected package hicolor-icon-theme. -2024-03-23T17:21:28Z #8 15.55 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-03-23T17:21:28Z #8 15.55 Unpacking hicolor-icon-theme (0.17-2) ... -2024-03-23T17:21:28Z #8 15.65 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-03-23T17:21:28Z #8 15.66 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-03-23T17:21:28Z #8 15.66 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-03-23T17:21:28Z #8 15.77 Selecting previously unselected package libicu67:amd64. -2024-03-23T17:21:28Z #8 15.77 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-03-23T17:21:28Z #8 15.78 Unpacking libicu67:amd64 (67.1-7) ... -2024-03-23T17:21:30Z #8 17.33 Selecting previously unselected package libxml2:amd64. -2024-03-23T17:21:30Z #8 17.34 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-03-23T17:21:30Z #8 17.34 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-03-23T17:21:30Z #8 17.48 Selecting previously unselected package shared-mime-info. -2024-03-23T17:21:30Z #8 17.49 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-03-23T17:21:30Z #8 17.49 Unpacking shared-mime-info (2.0-1) ... -2024-03-23T17:21:30Z #8 17.70 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-03-23T17:21:30Z #8 17.70 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-03-23T17:21:30Z #8 17.71 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-03-23T17:21:30Z #8 17.78 Selecting previously unselected package libpng16-16:amd64. -2024-03-23T17:21:30Z #8 17.78 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-03-23T17:21:30Z #8 17.79 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-03-23T17:21:30Z #8 17.85 Selecting previously unselected package libdeflate0:amd64. -2024-03-23T17:21:30Z #8 17.86 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-03-23T17:21:30Z #8 17.86 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-03-23T17:21:30Z #8 17.92 Selecting previously unselected package libjbig0:amd64. -2024-03-23T17:21:30Z #8 17.93 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-03-23T17:21:30Z #8 17.93 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-03-23T17:21:30Z #8 17.98 Selecting previously unselected package libwebp6:amd64. -2024-03-23T17:21:30Z #8 17.98 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-03-23T17:21:30Z #8 17.99 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-23T17:21:30Z #8 18.08 Selecting previously unselected package libtiff5:amd64. -2024-03-23T17:21:30Z #8 18.08 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-03-23T17:21:30Z #8 18.08 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-03-23T17:21:31Z #8 18.19 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-03-23T17:21:31Z #8 18.19 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-03-23T17:21:31Z #8 18.19 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-23T17:21:31Z #8 18.26 Selecting previously unselected package gtk-update-icon-cache. -2024-03-23T17:21:31Z #8 18.27 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-03-23T17:21:31Z #8 18.27 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-03-23T17:21:31Z #8 18.40 Selecting previously unselected package adwaita-icon-theme. -2024-03-23T17:21:31Z #8 18.40 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-03-23T17:21:31Z #8 18.41 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-03-23T17:21:34Z #8 21.18 Selecting previously unselected package alsa-topology-conf. -2024-03-23T17:21:34Z #8 21.19 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-03-23T17:21:34Z #8 21.19 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-03-23T17:21:34Z #8 21.24 Selecting previously unselected package libasound2-data. -2024-03-23T17:21:34Z #8 21.25 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-03-23T17:21:34Z #8 21.25 Unpacking libasound2-data (1.2.4-1.1) ... -2024-03-23T17:21:34Z #8 21.32 Selecting previously unselected package libasound2:amd64. -2024-03-23T17:21:34Z #8 21.33 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-03-23T17:21:34Z #8 21.34 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-03-23T17:21:34Z #8 21.46 Selecting previously unselected package alsa-ucm-conf. -2024-03-23T17:21:34Z #8 21.46 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-03-23T17:21:34Z #8 21.47 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-03-23T17:21:34Z #8 21.58 Selecting previously unselected package libatspi2.0-0:amd64. -2024-03-23T17:21:34Z #8 21.59 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-03-23T17:21:34Z #8 21.60 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-03-23T17:21:34Z #8 21.67 Selecting previously unselected package libxi6:amd64. -2024-03-23T17:21:34Z #8 21.67 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-03-23T17:21:34Z #8 21.68 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-03-23T17:21:34Z #8 21.74 Selecting previously unselected package libxtst6:amd64. -2024-03-23T17:21:34Z #8 21.75 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-03-23T17:21:34Z #8 21.75 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-03-23T17:21:34Z #8 21.81 Selecting previously unselected package at-spi2-core. -2024-03-23T17:21:34Z #8 21.81 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-03-23T17:21:34Z #8 21.82 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-03-23T17:21:34Z #8 21.90 Selecting previously unselected package binutils-common:amd64. -2024-03-23T17:21:34Z #8 21.90 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-03-23T17:21:34Z #8 21.91 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-03-23T17:21:35Z #8 22.43 Selecting previously unselected package libbinutils:amd64. -2024-03-23T17:21:35Z #8 22.43 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-03-23T17:21:35Z #8 22.44 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-03-23T17:21:35Z #8 22.65 Selecting previously unselected package libctf-nobfd0:amd64. -2024-03-23T17:21:35Z #8 22.66 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-03-23T17:21:35Z #8 22.66 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-03-23T17:21:35Z #8 22.72 Selecting previously unselected package libctf0:amd64. -2024-03-23T17:21:35Z #8 22.72 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-03-23T17:21:35Z #8 22.72 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-03-23T17:21:35Z #8 22.77 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-03-23T17:21:35Z #8 22.77 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-03-23T17:21:35Z #8 22.78 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-03-23T17:21:35Z #8 23.22 Selecting previously unselected package binutils. -2024-03-23T17:21:36Z #8 23.23 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-03-23T17:21:36Z #8 23.23 Unpacking binutils (2.35.2-2) ... -2024-03-23T17:21:36Z #8 23.29 Selecting previously unselected package libisl23:amd64. -2024-03-23T17:21:36Z #8 23.30 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-03-23T17:21:36Z #8 23.30 Unpacking libisl23:amd64 (0.23-1) ... -2024-03-23T17:21:36Z #8 23.47 Selecting previously unselected package libmpfr6:amd64. -2024-03-23T17:21:36Z #8 23.48 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-03-23T17:21:36Z #8 23.49 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-03-23T17:21:36Z #8 23.73 Selecting previously unselected package libmpc3:amd64. -2024-03-23T17:21:36Z #8 23.73 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-03-23T17:21:36Z #8 23.74 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-03-23T17:21:36Z #8 23.79 Selecting previously unselected package cpp-10. -2024-03-23T17:21:36Z #8 23.79 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-03-23T17:21:36Z #8 23.80 Unpacking cpp-10 (10.2.1-6) ... -2024-03-23T17:21:38Z #8 25.30 Selecting previously unselected package cpp. -2024-03-23T17:21:38Z #8 25.30 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-03-23T17:21:38Z #8 25.31 Unpacking cpp (4:10.2.1-1) ... -2024-03-23T17:21:38Z #8 25.35 Selecting previously unselected package dbus-user-session. -2024-03-23T17:21:38Z #8 25.35 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-03-23T17:21:38Z #8 25.36 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-03-23T17:21:38Z #8 25.42 Selecting previously unselected package libdconf1:amd64. -2024-03-23T17:21:38Z #8 25.42 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-03-23T17:21:38Z #8 25.43 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-03-23T17:21:38Z #8 25.47 Selecting previously unselected package dconf-service. -2024-03-23T17:21:38Z #8 25.47 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-03-23T17:21:38Z #8 25.48 Unpacking dconf-service (0.38.0-2) ... -2024-03-23T17:21:38Z #8 25.52 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-03-23T17:21:38Z #8 25.52 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-03-23T17:21:38Z #8 25.53 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-03-23T17:21:38Z #8 25.58 Selecting previously unselected package libatk1.0-data. -2024-03-23T17:21:38Z #8 25.59 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-03-23T17:21:38Z #8 25.59 Unpacking libatk1.0-data (2.36.0-2) ... -2024-03-23T17:21:38Z #8 25.68 Selecting previously unselected package libatk1.0-0:amd64. -2024-03-23T17:21:38Z #8 25.68 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-03-23T17:21:38Z #8 25.68 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-03-23T17:21:38Z #8 25.74 Selecting previously unselected package libfreetype6:amd64. -2024-03-23T17:21:38Z #8 25.74 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-03-23T17:21:38Z #8 25.75 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-03-23T17:21:38Z #8 25.84 Selecting previously unselected package fonts-dejavu-core. -2024-03-23T17:21:38Z #8 25.85 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-03-23T17:21:38Z #8 25.85 Unpacking fonts-dejavu-core (2.37-2) ... -2024-03-23T17:21:38Z #8 26.12 Selecting previously unselected package fontconfig-config. -2024-03-23T17:21:39Z #8 26.13 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-03-23T17:21:39Z #8 26.29 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-03-23T17:21:39Z #8 26.38 Selecting previously unselected package libfontconfig1:amd64. -2024-03-23T17:21:39Z #8 26.38 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-03-23T17:21:39Z #8 26.39 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-03-23T17:21:39Z #8 26.46 Selecting previously unselected package libpixman-1-0:amd64. -2024-03-23T17:21:39Z #8 26.47 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-03-23T17:21:39Z #8 26.47 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-03-23T17:21:39Z #8 26.57 Selecting previously unselected package libxcb-render0:amd64. -2024-03-23T17:21:39Z #8 26.57 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-03-23T17:21:39Z #8 26.58 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-03-23T17:21:39Z #8 26.64 Selecting previously unselected package libxcb-shm0:amd64. -2024-03-23T17:21:39Z #8 26.64 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-03-23T17:21:39Z #8 26.65 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-03-23T17:21:39Z #8 26.71 Selecting previously unselected package libcairo2:amd64. -2024-03-23T17:21:39Z #8 26.72 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-03-23T17:21:39Z #8 26.72 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-03-23T17:21:39Z #8 26.87 Selecting previously unselected package libcairo-gobject2:amd64. -2024-03-23T17:21:39Z #8 26.87 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-03-23T17:21:39Z #8 26.88 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-03-23T17:21:39Z #8 26.95 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-03-23T17:21:39Z #8 26.95 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-03-23T17:21:39Z #8 26.96 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-03-23T17:21:39Z #8 27.01 Selecting previously unselected package libevent-2.1-7:amd64. -2024-03-23T17:21:39Z #8 27.01 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-03-23T17:21:39Z #8 27.02 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-03-23T17:21:39Z #8 27.10 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-03-23T17:21:39Z #8 27.10 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-03-23T17:21:39Z #8 27.11 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-03-23T17:21:39Z #8 27.16 Selecting previously unselected package liblcms2-2:amd64. -2024-03-23T17:21:39Z #8 27.17 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-03-23T17:21:39Z #8 27.17 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-03-23T17:21:40Z #8 27.24 Selecting previously unselected package libcolord2:amd64. -2024-03-23T17:21:40Z #8 27.24 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-03-23T17:21:40Z #8 27.25 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-03-23T17:21:40Z #8 27.30 Selecting previously unselected package libavahi-common-data:amd64. -2024-03-23T17:21:40Z #8 27.31 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-03-23T17:21:40Z #8 27.31 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-03-23T17:21:40Z #8 27.38 Selecting previously unselected package libavahi-common3:amd64. -2024-03-23T17:21:40Z #8 27.39 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-03-23T17:21:40Z #8 27.39 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-03-23T17:21:40Z #8 27.44 Selecting previously unselected package libavahi-client3:amd64. -2024-03-23T17:21:40Z #8 27.45 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-03-23T17:21:40Z #8 27.45 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-03-23T17:21:40Z #8 27.51 Selecting previously unselected package libcups2:amd64. -2024-03-23T17:21:40Z #8 27.52 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-03-23T17:21:40Z #8 27.52 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-03-23T17:21:40Z #8 27.62 Selecting previously unselected package libepoxy0:amd64. -2024-03-23T17:21:40Z #8 27.62 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-03-23T17:21:40Z #8 27.63 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-03-23T17:21:40Z #8 27.72 Selecting previously unselected package libfribidi0:amd64. -2024-03-23T17:21:40Z #8 27.72 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-03-23T17:21:40Z #8 27.73 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-03-23T17:21:40Z #8 27.78 Selecting previously unselected package libgraphite2-3:amd64. -2024-03-23T17:21:40Z #8 27.78 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-03-23T17:21:40Z #8 27.79 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-03-23T17:21:40Z #8 27.85 Selecting previously unselected package libharfbuzz0b:amd64. -2024-03-23T17:21:40Z #8 27.85 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-03-23T17:21:40Z #8 27.86 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-03-23T17:21:40Z #8 27.97 Selecting previously unselected package libjson-glib-1.0-common. -2024-03-23T17:21:40Z #8 27.98 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-03-23T17:21:40Z #8 27.98 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-03-23T17:21:40Z #8 28.05 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-03-23T17:21:40Z #8 28.05 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-03-23T17:21:40Z #8 28.06 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-03-23T17:21:40Z #8 28.11 Selecting previously unselected package fontconfig. -2024-03-23T17:21:40Z #8 28.12 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-03-23T17:21:40Z #8 28.13 Unpacking fontconfig (2.13.1-4.2) ... -2024-03-23T17:21:40Z #8 28.20 Selecting previously unselected package libthai-data. -2024-03-23T17:21:40Z #8 28.21 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-03-23T17:21:41Z #8 28.22 Unpacking libthai-data (0.1.28-3) ... -2024-03-23T17:21:41Z #8 28.30 Selecting previously unselected package libdatrie1:amd64. -2024-03-23T17:21:41Z #8 28.30 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-03-23T17:21:41Z #8 28.31 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-03-23T17:21:41Z #8 28.37 Selecting previously unselected package libthai0:amd64. -2024-03-23T17:21:41Z #8 28.37 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-03-23T17:21:41Z #8 28.38 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-03-23T17:21:41Z #8 28.44 Selecting previously unselected package libpango-1.0-0:amd64. -2024-03-23T17:21:41Z #8 28.44 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-03-23T17:21:41Z #8 28.45 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-03-23T17:21:41Z #8 28.52 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-03-23T17:21:41Z #8 28.53 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-03-23T17:21:41Z #8 28.54 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-03-23T17:21:41Z #8 28.60 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-03-23T17:21:41Z #8 28.60 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-03-23T17:21:41Z #8 28.61 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-03-23T17:21:41Z #8 28.66 Selecting previously unselected package libproxy1v5:amd64. -2024-03-23T17:21:41Z #8 28.67 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-03-23T17:21:41Z #8 28.67 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-03-23T17:21:41Z #8 28.72 Selecting previously unselected package glib-networking-common. -2024-03-23T17:21:41Z #8 28.72 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-03-23T17:21:41Z #8 28.73 Unpacking glib-networking-common (2.66.0-2) ... -2024-03-23T17:21:41Z #8 28.79 Selecting previously unselected package glib-networking-services. -2024-03-23T17:21:41Z #8 28.79 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-03-23T17:21:41Z #8 28.80 Unpacking glib-networking-services (2.66.0-2) ... -2024-03-23T17:21:41Z #8 28.84 Selecting previously unselected package gsettings-desktop-schemas. -2024-03-23T17:21:41Z #8 28.84 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-03-23T17:21:41Z #8 28.85 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-03-23T17:21:41Z #8 29.03 Selecting previously unselected package glib-networking:amd64. -2024-03-23T17:21:41Z #8 29.03 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-03-23T17:21:41Z #8 29.04 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-03-23T17:21:41Z #8 29.10 Selecting previously unselected package libsoup2.4-1:amd64. -2024-03-23T17:21:41Z #8 29.11 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-03-23T17:21:41Z #8 29.11 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-03-23T17:21:42Z #8 29.26 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-03-23T17:21:42Z #8 29.26 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-03-23T17:21:42Z #8 29.27 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-03-23T17:21:42Z #8 29.32 Selecting previously unselected package librest-0.7-0:amd64. -2024-03-23T17:21:42Z #8 29.32 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-03-23T17:21:42Z #8 29.33 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-03-23T17:21:42Z #8 29.39 Selecting previously unselected package libwayland-client0:amd64. -2024-03-23T17:21:42Z #8 29.39 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-03-23T17:21:42Z #8 29.40 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-03-23T17:21:42Z #8 29.45 Selecting previously unselected package libwayland-cursor0:amd64. -2024-03-23T17:21:42Z #8 29.46 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-03-23T17:21:42Z #8 29.46 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-03-23T17:21:42Z #8 29.51 Selecting previously unselected package libwayland-egl1:amd64. -2024-03-23T17:21:42Z #8 29.52 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-03-23T17:21:42Z #8 29.52 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-03-23T17:21:42Z #8 29.57 Selecting previously unselected package libxcomposite1:amd64. -2024-03-23T17:21:42Z #8 29.57 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-03-23T17:21:42Z #8 29.58 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-03-23T17:21:42Z #8 29.64 Selecting previously unselected package libxfixes3:amd64. -2024-03-23T17:21:42Z #8 29.64 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-03-23T17:21:42Z #8 29.65 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-03-23T17:21:42Z #8 29.70 Selecting previously unselected package libxcursor1:amd64. -2024-03-23T17:21:42Z #8 29.70 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-03-23T17:21:42Z #8 29.71 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-03-23T17:21:42Z #8 29.76 Selecting previously unselected package libxdamage1:amd64. -2024-03-23T17:21:42Z #8 29.76 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-03-23T17:21:42Z #8 29.77 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-03-23T17:21:42Z #8 29.82 Selecting previously unselected package libxinerama1:amd64. -2024-03-23T17:21:42Z #8 29.83 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-03-23T17:21:42Z #8 29.83 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-03-23T17:21:42Z #8 29.87 Selecting previously unselected package xkb-data. -2024-03-23T17:21:42Z #8 29.88 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-03-23T17:21:42Z #8 29.89 Unpacking xkb-data (2.29-2) ... -2024-03-23T17:21:43Z #8 30.13 Selecting previously unselected package libxkbcommon0:amd64. -2024-03-23T17:21:43Z #8 30.14 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-03-23T17:21:43Z #8 30.14 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-03-23T17:21:43Z #8 30.20 Selecting previously unselected package libxrandr2:amd64. -2024-03-23T17:21:43Z #8 30.20 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-03-23T17:21:43Z #8 30.21 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-03-23T17:21:43Z #8 30.25 Selecting previously unselected package libgtk-3-common. -2024-03-23T17:21:43Z #8 30.25 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-03-23T17:21:43Z #8 30.26 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-03-23T17:21:43Z #8 31.05 Selecting previously unselected package libgtk-3-0:amd64. -2024-03-23T17:21:43Z #8 31.06 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-03-23T17:21:43Z #8 31.06 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-03-23T17:21:44Z #8 31.61 Selecting previously unselected package libx11-xcb1:amd64. -2024-03-23T17:21:44Z #8 31.61 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-03-23T17:21:44Z #8 31.62 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-03-23T17:21:44Z #8 31.69 Selecting previously unselected package firefox-esr. -2024-03-23T17:21:44Z #8 31.69 Preparing to unpack .../099-firefox-esr_115.9.0esr-1~deb11u1_amd64.deb ... -2024-03-23T17:21:44Z #8 31.71 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-03-23T17:21:44Z #8 31.72 Unpacking firefox-esr (115.9.0esr-1~deb11u1) ... -2024-03-23T17:21:55Z #8 42.85 Selecting previously unselected package fonts-humor-sans. -2024-03-23T17:21:55Z #8 42.85 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-03-23T17:21:55Z #8 42.86 Unpacking fonts-humor-sans (1.0-4) ... -2024-03-23T17:21:55Z #8 42.90 Selecting previously unselected package libcc1-0:amd64. -2024-03-23T17:21:55Z #8 42.90 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-03-23T17:21:55Z #8 42.90 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-03-23T17:21:55Z #8 42.95 Selecting previously unselected package libgomp1:amd64. -2024-03-23T17:21:55Z #8 42.96 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-03-23T17:21:55Z #8 42.96 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-03-23T17:21:55Z #8 43.02 Selecting previously unselected package libitm1:amd64. -2024-03-23T17:21:55Z #8 43.02 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-03-23T17:21:55Z #8 43.03 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-03-23T17:21:55Z #8 43.09 Selecting previously unselected package libatomic1:amd64. -2024-03-23T17:21:55Z #8 43.09 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-03-23T17:21:56Z #8 43.10 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-03-23T17:21:56Z #8 43.14 Selecting previously unselected package libasan6:amd64. -2024-03-23T17:21:56Z #8 43.15 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-03-23T17:21:56Z #8 43.15 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-03-23T17:21:56Z #8 43.61 Selecting previously unselected package liblsan0:amd64. -2024-03-23T17:21:56Z #8 43.61 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-03-23T17:21:56Z #8 43.62 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-03-23T17:21:56Z #8 43.89 Selecting previously unselected package libtsan0:amd64. -2024-03-23T17:21:56Z #8 43.89 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-03-23T17:21:56Z #8 43.89 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-03-23T17:21:57Z #8 44.36 Selecting previously unselected package libubsan1:amd64. -2024-03-23T17:21:57Z #8 44.36 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-03-23T17:21:57Z #8 44.37 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-03-23T17:21:57Z #8 44.55 Selecting previously unselected package libquadmath0:amd64. -2024-03-23T17:21:57Z #8 44.55 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-03-23T17:21:57Z #8 44.56 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-03-23T17:21:57Z #8 44.62 Selecting previously unselected package libgcc-10-dev:amd64. -2024-03-23T17:21:57Z #8 44.62 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-03-23T17:21:57Z #8 44.63 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-03-23T17:21:58Z #8 45.11 Selecting previously unselected package gcc-10. -2024-03-23T17:21:58Z #8 45.11 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-03-23T17:21:58Z #8 45.12 Unpacking gcc-10 (10.2.1-6) ... -2024-03-23T17:22:00Z #8 48.07 Selecting previously unselected package gcc. -2024-03-23T17:22:00Z #8 48.07 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-03-23T17:22:00Z #8 48.08 Unpacking gcc (4:10.2.1-1) ... -2024-03-23T17:22:00Z #8 48.13 Selecting previously unselected package libva2:amd64. -2024-03-23T17:22:00Z #8 48.13 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-03-23T17:22:00Z #8 48.14 Unpacking libva2:amd64 (2.10.0-1) ... -2024-03-23T17:22:00Z #8 48.19 Selecting previously unselected package libdrm-common. -2024-03-23T17:22:01Z #8 48.19 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-03-23T17:22:01Z #8 48.20 Unpacking libdrm-common (2.4.104-1) ... -2024-03-23T17:22:01Z #8 48.25 Selecting previously unselected package libdrm2:amd64. -2024-03-23T17:22:01Z #8 48.25 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-03-23T17:22:01Z #8 48.25 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-03-23T17:22:01Z #8 48.31 Selecting previously unselected package libpciaccess0:amd64. -2024-03-23T17:22:01Z #8 48.31 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-03-23T17:22:01Z #8 48.33 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-03-23T17:22:01Z #8 48.37 Selecting previously unselected package libdrm-intel1:amd64. -2024-03-23T17:22:01Z #8 48.38 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-03-23T17:22:01Z #8 48.38 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-03-23T17:22:01Z #8 48.44 Selecting previously unselected package i965-va-driver:amd64. -2024-03-23T17:22:01Z #8 48.44 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-03-23T17:22:01Z #8 48.45 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-03-23T17:22:01Z #8 48.56 Selecting previously unselected package libigdgmm11:amd64. -2024-03-23T17:22:01Z #8 48.56 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-03-23T17:22:01Z #8 48.57 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-03-23T17:22:01Z #8 48.62 Selecting previously unselected package intel-media-va-driver:amd64. -2024-03-23T17:22:01Z #8 48.63 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-03-23T17:22:01Z #8 48.64 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-03-23T17:22:01Z #8 49.03 Selecting previously unselected package libaom0:amd64. -2024-03-23T17:22:01Z #8 49.04 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-03-23T17:22:01Z #8 49.04 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-03-23T17:22:02Z #8 49.27 Selecting previously unselected package libmfx1:amd64. -2024-03-23T17:22:02Z #8 49.27 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-03-23T17:22:02Z #8 49.28 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-03-23T17:22:02Z #8 50.11 Selecting previously unselected package libva-drm2:amd64. -2024-03-23T17:22:02Z #8 50.11 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-03-23T17:22:02Z #8 50.12 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-03-23T17:22:02Z #8 50.17 Selecting previously unselected package libva-x11-2:amd64. -2024-03-23T17:22:02Z #8 50.18 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-03-23T17:22:02Z #8 50.18 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-03-23T17:22:03Z #8 50.24 Selecting previously unselected package libvdpau1:amd64. -2024-03-23T17:22:03Z #8 50.24 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-03-23T17:22:03Z #8 50.25 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-03-23T17:22:03Z #8 50.30 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-03-23T17:22:03Z #8 50.31 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-03-23T17:22:03Z #8 50.31 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-03-23T17:22:03Z #8 50.37 Selecting previously unselected package libavutil56:amd64. -2024-03-23T17:22:03Z #8 50.37 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-23T17:22:03Z #8 50.38 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-23T17:22:03Z #8 50.47 Selecting previously unselected package libcodec2-0.9:amd64. -2024-03-23T17:22:03Z #8 50.47 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-03-23T17:22:03Z #8 50.48 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-03-23T17:22:04Z #8 51.73 Selecting previously unselected package libdav1d4:amd64. -2024-03-23T17:22:04Z #8 51.73 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-03-23T17:22:04Z #8 51.73 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-03-23T17:22:04Z #8 51.84 Selecting previously unselected package libgsm1:amd64. -2024-03-23T17:22:04Z #8 51.85 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-03-23T17:22:04Z #8 51.89 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-03-23T17:22:04Z #8 52.08 Selecting previously unselected package libmp3lame0:amd64. -2024-03-23T17:22:04Z #8 52.08 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-03-23T17:22:04Z #8 52.11 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-03-23T17:22:04Z #8 52.21 Selecting previously unselected package libopenjp2-7:amd64. -2024-03-23T17:22:04Z #8 52.21 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-03-23T17:22:05Z #8 52.22 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-03-23T17:22:05Z #8 52.29 Selecting previously unselected package libopus0:amd64. -2024-03-23T17:22:05Z #8 52.29 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-03-23T17:22:05Z #8 52.30 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-03-23T17:22:05Z #8 52.38 Selecting previously unselected package librsvg2-2:amd64. -2024-03-23T17:22:05Z #8 52.38 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-03-23T17:22:05Z #8 52.38 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-23T17:22:05Z #8 52.91 Selecting previously unselected package libshine3:amd64. -2024-03-23T17:22:05Z #8 52.92 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-03-23T17:22:05Z #8 52.92 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-03-23T17:22:05Z #8 52.97 Selecting previously unselected package libsnappy1v5:amd64. -2024-03-23T17:22:05Z #8 52.98 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-03-23T17:22:05Z #8 52.98 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-03-23T17:22:05Z #8 53.03 Selecting previously unselected package libspeex1:amd64. -2024-03-23T17:22:05Z #8 53.04 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-03-23T17:22:05Z #8 53.04 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-03-23T17:22:05Z #8 53.10 Selecting previously unselected package libsoxr0:amd64. -2024-03-23T17:22:05Z #8 53.10 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-03-23T17:22:05Z #8 53.11 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-03-23T17:22:06Z #8 53.18 Selecting previously unselected package libswresample3:amd64. -2024-03-23T17:22:06Z #8 53.18 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-23T17:22:06Z #8 53.19 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-23T17:22:06Z #8 53.25 Selecting previously unselected package libogg0:amd64. -2024-03-23T17:22:06Z #8 53.26 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-03-23T17:22:06Z #8 53.26 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-03-23T17:22:06Z #8 53.31 Selecting previously unselected package libtheora0:amd64. -2024-03-23T17:22:06Z #8 53.32 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-03-23T17:22:06Z #8 53.32 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-03-23T17:22:06Z #8 53.40 Selecting previously unselected package libtwolame0:amd64. -2024-03-23T17:22:06Z #8 53.40 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-03-23T17:22:06Z #8 53.41 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-03-23T17:22:06Z #8 53.46 Selecting previously unselected package libvorbis0a:amd64. -2024-03-23T17:22:06Z #8 53.47 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-03-23T17:22:06Z #8 53.47 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-03-23T17:22:06Z #8 53.53 Selecting previously unselected package libvorbisenc2:amd64. -2024-03-23T17:22:06Z #8 53.54 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-03-23T17:22:06Z #8 53.54 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-03-23T17:22:06Z #8 53.60 Selecting previously unselected package libvpx6:amd64. -2024-03-23T17:22:06Z #8 53.60 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-03-23T17:22:06Z #8 53.61 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-03-23T17:22:06Z #8 53.79 Selecting previously unselected package libwavpack1:amd64. -2024-03-23T17:22:06Z #8 53.79 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-03-23T17:22:06Z #8 53.80 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-03-23T17:22:06Z #8 53.85 Selecting previously unselected package libwebpmux3:amd64. -2024-03-23T17:22:06Z #8 53.86 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-03-23T17:22:06Z #8 53.86 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-23T17:22:06Z #8 53.91 Selecting previously unselected package libx264-160:amd64. -2024-03-23T17:22:06Z #8 53.92 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-03-23T17:22:06Z #8 53.92 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-03-23T17:22:06Z #8 54.07 Selecting previously unselected package libnuma1:amd64. -2024-03-23T17:22:06Z #8 54.08 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-03-23T17:22:06Z #8 54.08 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-03-23T17:22:06Z #8 54.14 Selecting previously unselected package libx265-192:amd64. -2024-03-23T17:22:06Z #8 54.14 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-03-23T17:22:06Z #8 54.15 Unpacking libx265-192:amd64 (3.4-2) ... -2024-03-23T17:22:07Z #8 54.52 Selecting previously unselected package libxvidcore4:amd64. -2024-03-23T17:22:07Z #8 54.52 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-03-23T17:22:07Z #8 54.52 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-03-23T17:22:07Z #8 54.60 Selecting previously unselected package libzvbi-common. -2024-03-23T17:22:07Z #8 54.61 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-03-23T17:22:07Z #8 54.61 Unpacking libzvbi-common (0.2.35-18) ... -2024-03-23T17:22:07Z #8 54.67 Selecting previously unselected package libzvbi0:amd64. -2024-03-23T17:22:07Z #8 54.67 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-03-23T17:22:07Z #8 54.67 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-03-23T17:22:07Z #8 54.76 Selecting previously unselected package libavcodec58:amd64. -2024-03-23T17:22:07Z #8 54.77 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-03-23T17:22:07Z #8 54.77 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-23T17:22:08Z #8 55.62 Selecting previously unselected package libc-dev-bin. -2024-03-23T17:22:08Z #8 55.62 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... -2024-03-23T17:22:08Z #8 55.63 Unpacking libc-dev-bin (2.31-13+deb11u8) ... -2024-03-23T17:22:08Z #8 55.68 Selecting previously unselected package libxpm4:amd64. -2024-03-23T17:22:08Z #8 55.68 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-03-23T17:22:08Z #8 55.69 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-03-23T17:22:08Z #8 55.74 Selecting previously unselected package libgd3:amd64. -2024-03-23T17:22:08Z #8 55.74 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-03-23T17:22:08Z #8 55.74 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-03-23T17:22:08Z #8 55.80 Selecting previously unselected package libc-devtools. -2024-03-23T17:22:08Z #8 55.80 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... -2024-03-23T17:22:08Z #8 55.80 Unpacking libc-devtools (2.31-13+deb11u8) ... -2024-03-23T17:22:08Z #8 55.86 Selecting previously unselected package linux-libc-dev:amd64. -2024-03-23T17:22:08Z #8 55.86 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-03-23T17:22:08Z #8 55.87 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-03-23T17:22:09Z #8 56.22 Selecting previously unselected package libcrypt-dev:amd64. -2024-03-23T17:22:09Z #8 56.22 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-03-23T17:22:09Z #8 56.23 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-03-23T17:22:09Z #8 56.29 Selecting previously unselected package libtirpc-dev:amd64. -2024-03-23T17:22:09Z #8 56.29 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-03-23T17:22:09Z #8 56.30 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-03-23T17:22:09Z #8 56.36 Selecting previously unselected package libnsl-dev:amd64. -2024-03-23T17:22:09Z #8 56.36 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-03-23T17:22:09Z #8 56.37 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-03-23T17:22:09Z #8 56.41 Selecting previously unselected package libc6-dev:amd64. -2024-03-23T17:22:09Z #8 56.42 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... -2024-03-23T17:22:09Z #8 56.42 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-03-23T17:22:09Z #8 56.97 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-03-23T17:22:09Z #8 56.97 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-03-23T17:22:09Z #8 56.98 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-03-23T17:22:09Z #8 57.02 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-03-23T17:22:09Z #8 57.02 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-03-23T17:22:09Z #8 57.03 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-03-23T17:22:10Z #8 57.11 Selecting previously unselected package libdrm-radeon1:amd64. -2024-03-23T17:22:10Z #8 57.12 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-03-23T17:22:10Z #8 57.13 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-03-23T17:22:10Z #8 57.18 Selecting previously unselected package libelf1:amd64. -2024-03-23T17:22:10Z #8 57.18 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-03-23T17:22:10Z #8 57.19 Unpacking libelf1:amd64 (0.183-1) ... -2024-03-23T17:22:10Z #8 57.74 Selecting previously unselected package libfontenc1:amd64. -2024-03-23T17:22:10Z #8 57.74 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-03-23T17:22:10Z #8 57.75 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-03-23T17:22:10Z #8 57.79 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-03-23T17:22:10Z #8 57.79 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-03-23T17:22:10Z #8 57.80 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-03-23T17:22:10Z #8 57.85 Selecting previously unselected package libglapi-mesa:amd64. -2024-03-23T17:22:10Z #8 57.85 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-03-23T17:22:10Z #8 57.86 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-03-23T17:22:10Z #8 57.91 Selecting previously unselected package libz3-4:amd64. -2024-03-23T17:22:10Z #8 57.91 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-03-23T17:22:10Z #8 57.92 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-03-23T17:22:11Z #8 59.06 Selecting previously unselected package libllvm11:amd64. -2024-03-23T17:22:11Z #8 59.06 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-03-23T17:22:11Z #8 59.07 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-03-23T17:22:14Z #8 62.13 Selecting previously unselected package libsensors-config. -2024-03-23T17:22:14Z #8 62.14 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-03-23T17:22:14Z #8 62.14 Unpacking libsensors-config (1:3.6.0-7) ... -2024-03-23T17:22:14Z #8 62.19 Selecting previously unselected package libsensors5:amd64. -2024-03-23T17:22:15Z #8 62.19 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-03-23T17:22:15Z #8 62.24 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-03-23T17:22:15Z #8 62.29 Selecting previously unselected package libvulkan1:amd64. -2024-03-23T17:22:15Z #8 62.30 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-03-23T17:22:15Z #8 62.30 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-03-23T17:22:15Z #8 62.38 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-03-23T17:22:15Z #8 62.38 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-03-23T17:22:15Z #8 62.39 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-03-23T17:22:16Z #8 63.88 Selecting previously unselected package libglvnd0:amd64. -2024-03-23T17:22:16Z #8 63.89 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-03-23T17:22:16Z #8 63.89 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-03-23T17:22:16Z #8 63.94 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-03-23T17:22:16Z #8 63.95 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-03-23T17:22:16Z #8 63.95 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-03-23T17:22:16Z #8 64.00 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-03-23T17:22:16Z #8 64.01 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-03-23T17:22:16Z #8 64.01 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-03-23T17:22:16Z #8 64.06 Selecting previously unselected package libxcb-glx0:amd64. -2024-03-23T17:22:16Z #8 64.06 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-03-23T17:22:16Z #8 64.07 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-03-23T17:22:17Z #8 64.12 Selecting previously unselected package libxcb-present0:amd64. -2024-03-23T17:22:17Z #8 64.13 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-03-23T17:22:17Z #8 64.13 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-03-23T17:22:17Z #8 64.18 Selecting previously unselected package libxcb-sync1:amd64. -2024-03-23T17:22:17Z #8 64.19 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-03-23T17:22:17Z #8 64.19 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-03-23T17:22:17Z #8 64.24 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-03-23T17:22:17Z #8 64.25 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-03-23T17:22:17Z #8 64.25 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-03-23T17:22:17Z #8 64.30 Selecting previously unselected package libxshmfence1:amd64. -2024-03-23T17:22:17Z #8 64.30 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-03-23T17:22:17Z #8 64.31 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-03-23T17:22:17Z #8 64.35 Selecting previously unselected package libxxf86vm1:amd64. -2024-03-23T17:22:17Z #8 64.35 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-03-23T17:22:17Z #8 64.36 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-03-23T17:22:17Z #8 64.40 Selecting previously unselected package libglx-mesa0:amd64. -2024-03-23T17:22:17Z #8 64.40 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-03-23T17:22:17Z #8 64.40 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-03-23T17:22:17Z #8 64.46 Selecting previously unselected package libgtk-3-bin. -2024-03-23T17:22:17Z #8 64.47 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-03-23T17:22:17Z #8 64.48 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-03-23T17:22:17Z #8 64.53 Selecting previously unselected package librsvg2-common:amd64. -2024-03-23T17:22:17Z #8 64.54 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-03-23T17:22:17Z #8 64.54 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-23T17:22:17Z #8 64.58 Selecting previously unselected package libglx0:amd64. -2024-03-23T17:22:17Z #8 64.59 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-03-23T17:22:17Z #8 64.59 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-03-23T17:22:17Z #8 64.64 Selecting previously unselected package libgl1:amd64. -2024-03-23T17:22:17Z #8 64.64 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-03-23T17:22:17Z #8 64.65 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-03-23T17:22:17Z #8 64.70 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-03-23T17:22:17Z #8 64.71 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-03-23T17:22:17Z #8 64.71 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-03-23T17:22:17Z #8 64.77 Selecting previously unselected package libxt6:amd64. -2024-03-23T17:22:17Z #8 64.78 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-03-23T17:22:17Z #8 64.78 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-03-23T17:22:17Z #8 64.85 Selecting previously unselected package libxmu6:amd64. -2024-03-23T17:22:17Z #8 64.86 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-03-23T17:22:17Z #8 64.86 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-03-23T17:22:17Z #8 64.91 Selecting previously unselected package libxaw7:amd64. -2024-03-23T17:22:17Z #8 64.91 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-03-23T17:22:17Z #8 64.92 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-03-23T17:22:17Z #8 64.98 Selecting previously unselected package libxcb-randr0:amd64. -2024-03-23T17:22:17Z #8 64.99 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-03-23T17:22:17Z #8 64.99 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-03-23T17:22:17Z #8 65.05 Selecting previously unselected package libxcb-shape0:amd64. -2024-03-23T17:22:17Z #8 65.05 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-03-23T17:22:17Z #8 65.06 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-03-23T17:22:17Z #8 65.11 Selecting previously unselected package libxft2:amd64. -2024-03-23T17:22:17Z #8 65.12 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-03-23T17:22:17Z #8 65.12 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-03-23T17:22:17Z #8 65.17 Selecting previously unselected package libxkbfile1:amd64. -2024-03-23T17:22:17Z #8 65.18 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-03-23T17:22:17Z #8 65.18 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-03-23T17:22:18Z #8 65.23 Selecting previously unselected package libxmuu1:amd64. -2024-03-23T17:22:18Z #8 65.24 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-03-23T17:22:18Z #8 65.24 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-03-23T17:22:18Z #8 65.29 Selecting previously unselected package libxv1:amd64. -2024-03-23T17:22:18Z #8 65.29 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-03-23T17:22:18Z #8 65.29 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-03-23T17:22:18Z #8 65.34 Selecting previously unselected package libxxf86dga1:amd64. -2024-03-23T17:22:18Z #8 65.34 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-03-23T17:22:18Z #8 65.35 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-03-23T17:22:18Z #8 65.39 Selecting previously unselected package manpages-dev. -2024-03-23T17:22:18Z #8 65.40 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-03-23T17:22:18Z #8 65.40 Unpacking manpages-dev (5.10-1) ... -2024-03-23T17:22:18Z #8 65.82 Selecting previously unselected package mesa-va-drivers:amd64. -2024-03-23T17:22:18Z #8 65.82 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-03-23T17:22:18Z #8 65.83 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-03-23T17:22:19Z #8 66.27 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-03-23T17:22:19Z #8 66.27 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-03-23T17:22:19Z #8 66.27 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-03-23T17:22:19Z #8 66.74 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-03-23T17:22:19Z #8 66.75 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-03-23T17:22:19Z #8 66.75 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-03-23T17:22:20Z #8 67.43 Selecting previously unselected package patch. -2024-03-23T17:22:20Z #8 67.43 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-03-23T17:22:20Z #8 67.44 Unpacking patch (2.7.6-7) ... -2024-03-23T17:22:20Z #8 67.49 Selecting previously unselected package unzip. -2024-03-23T17:22:20Z #8 67.50 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-03-23T17:22:20Z #8 67.50 Unpacking unzip (6.0-26+deb11u1) ... -2024-03-23T17:22:20Z #8 67.56 Selecting previously unselected package va-driver-all:amd64. -2024-03-23T17:22:20Z #8 67.56 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-03-23T17:22:20Z #8 67.57 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-03-23T17:22:20Z #8 67.60 Selecting previously unselected package vdpau-driver-all:amd64. -2024-03-23T17:22:20Z #8 67.60 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-03-23T17:22:20Z #8 67.61 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-03-23T17:22:20Z #8 67.65 Selecting previously unselected package x11-utils. -2024-03-23T17:22:20Z #8 67.65 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-03-23T17:22:20Z #8 67.66 Unpacking x11-utils (7.7+5) ... -2024-03-23T17:22:20Z #8 67.81 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-03-23T17:22:20Z #8 67.83 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-03-23T17:22:20Z #8 67.84 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-03-23T17:22:20Z #8 67.86 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-03-23T17:22:20Z #8 67.87 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-03-23T17:22:20Z #8 67.88 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-03-23T17:22:20Z #8 67.90 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-03-23T17:22:20Z #8 67.91 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-03-23T17:22:20Z #8 67.93 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-03-23T17:22:20Z #8 67.94 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-03-23T17:22:20Z #8 67.95 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-03-23T17:22:20Z #8 67.97 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-03-23T17:22:20Z #8 67.98 Setting up libshine3:amd64 (3.1.1-2) ... -2024-03-23T17:22:20Z #8 67.99 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-03-23T17:22:20Z #8 68.00 Setting up hicolor-icon-theme (0.17-2) ... -2024-03-23T17:22:20Z #8 68.03 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-03-23T17:22:20Z #8 68.05 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-03-23T17:22:20Z #8 68.06 Setting up libicu67:amd64 (67.1-7) ... -2024-03-23T17:22:20Z #8 68.07 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-03-23T17:22:20Z #8 68.08 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-03-23T17:22:20Z #8 68.09 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-03-23T17:22:20Z #8 68.10 Setting up manpages (5.10-1) ... -2024-03-23T17:22:20Z #8 68.12 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-03-23T17:22:20Z #8 68.13 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-03-23T17:22:21Z #8 68.14 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-03-23T17:22:21Z #8 68.16 Setting up unzip (6.0-26+deb11u1) ... -2024-03-23T17:22:21Z #8 68.17 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-03-23T17:22:21Z #8 68.18 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-03-23T17:22:21Z #8 68.22 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-03-23T17:22:21Z #8 68.24 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-03-23T17:22:21Z #8 68.25 Setting up libsensors-config (1:3.6.0-7) ... -2024-03-23T17:22:21Z #8 68.27 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-03-23T17:22:21Z #8 68.29 Setting up libdeflate0:amd64 (1.7-1) ... -2024-03-23T17:22:21Z #8 68.30 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-03-23T17:22:21Z #8 68.31 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-03-23T17:22:21Z #8 68.32 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-23T17:22:21Z #8 68.33 First installation detected... -2024-03-23T17:22:21Z #8 68.33 Checking NSS setup... -2024-03-23T17:22:21Z #8 68.34 Setting up xkb-data (2.29-2) ... -2024-03-23T17:22:21Z #8 68.35 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-03-23T17:22:21Z #8 68.37 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-03-23T17:22:21Z #8 68.38 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-03-23T17:22:21Z #8 68.39 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-03-23T17:22:21Z #8 68.41 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-03-23T17:22:21Z #8 68.42 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-03-23T17:22:21Z #8 68.43 Setting up libasan6:amd64 (10.2.1-6) ... -2024-03-23T17:22:21Z #8 68.44 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-03-23T17:22:21Z #8 68.46 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-03-23T17:22:21Z #8 68.47 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-03-23T17:22:21Z #8 68.48 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-03-23T17:22:21Z #8 68.50 Setting up libasound2-data (1.2.4-1.1) ... -2024-03-23T17:22:21Z #8 68.51 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-03-23T17:22:21Z #8 68.53 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-03-23T17:22:21Z #8 68.54 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-03-23T17:22:21Z #8 68.55 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-03-23T17:22:21Z #8 68.56 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-03-23T17:22:21Z #8 68.58 Setting up libva2:amd64 (2.10.0-1) ... -2024-03-23T17:22:21Z #8 68.60 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-03-23T17:22:21Z #8 68.61 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-03-23T17:22:21Z #8 68.62 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-03-23T17:22:21Z #8 68.64 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-03-23T17:22:21Z #8 68.65 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-03-23T17:22:21Z #8 68.66 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-03-23T17:22:21Z #8 68.67 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-03-23T17:22:21Z #8 68.69 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-03-23T17:22:21Z #8 68.70 Setting up dbus (1.12.28-0+deb11u1) ... -2024-03-23T17:22:23Z #8 70.95 invoke-rc.d: could not determine current runlevel -2024-03-23T17:22:23Z #8 70.95 invoke-rc.d: policy-rc.d denied execution of start. -2024-03-23T17:22:23Z #8 70.96 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-03-23T17:22:23Z #8 70.97 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-03-23T17:22:23Z #8 70.98 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-03-23T17:22:23Z #8 70.99 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-03-23T17:22:23Z #8 71.01 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-03-23T17:22:23Z #8 71.02 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-03-23T17:22:23Z #8 71.03 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-03-23T17:22:23Z #8 71.05 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-03-23T17:22:23Z #8 71.06 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-03-23T17:22:24Z #8 71.40 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-03-23T17:22:24Z #8 71.41 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-03-23T17:22:24Z #8 71.41 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-03-23T17:22:24Z #8 71.43 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-03-23T17:22:24Z #8 71.44 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-03-23T17:22:24Z #8 71.45 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-03-23T17:22:24Z #8 71.47 Setting up patch (2.7.6-7) ... -2024-03-23T17:22:24Z #8 71.48 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-23T17:22:24Z #8 71.50 Setting up fonts-dejavu-core (2.37-2) ... -2024-03-23T17:22:24Z #8 71.60 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-03-23T17:22:24Z #8 71.61 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-03-23T17:22:24Z #8 71.62 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-03-23T17:22:24Z #8 71.64 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-03-23T17:22:24Z #8 71.65 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-03-23T17:22:24Z #8 71.66 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-03-23T17:22:24Z #8 71.68 Setting up libatk1.0-data (2.36.0-2) ... -2024-03-23T17:22:24Z #8 71.69 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-03-23T17:22:24Z #8 71.71 Setting up alsa-topology-conf (1.2.4-1) ... -2024-03-23T17:22:24Z #8 71.72 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-03-23T17:22:24Z #8 71.74 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-03-23T17:22:24Z #8 71.75 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-03-23T17:22:24Z #8 71.76 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-03-23T17:22:24Z #8 71.78 Setting up libvdpau1:amd64 (1.4-3) ... -2024-03-23T17:22:24Z #8 71.80 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-03-23T17:22:24Z #8 71.81 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-03-23T17:22:24Z #8 71.82 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-03-23T17:22:24Z #8 71.83 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-03-23T17:22:24Z #8 71.85 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-03-23T17:22:24Z #8 72.07 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-03-23T17:22:24Z #8 72.09 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-03-23T17:22:24Z #8 72.10 Setting up libthai-data (0.1.28-3) ... -2024-03-23T17:22:24Z #8 72.11 Setting up fonts-humor-sans (1.0-4) ... -2024-03-23T17:22:24Z #8 72.13 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-03-23T17:22:24Z #8 72.14 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-03-23T17:22:24Z #8 72.15 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-03-23T17:22:24Z #8 72.17 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-03-23T17:22:25Z #8 72.18 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-03-23T17:22:25Z #8 72.19 Setting up glib-networking-common (2.66.0-2) ... -2024-03-23T17:22:25Z #8 72.21 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-03-23T17:22:25Z #8 72.22 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-03-23T17:22:25Z #8 72.23 Setting up libisl23:amd64 (0.23-1) ... -2024-03-23T17:22:25Z #8 72.24 Setting up libc-dev-bin (2.31-13+deb11u8) ... -2024-03-23T17:22:25Z #8 72.25 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-03-23T17:22:25Z #8 72.27 Setting up libdrm-common (2.4.104-1) ... -2024-03-23T17:22:25Z #8 72.28 Setting up libelf1:amd64 (0.183-1) ... -2024-03-23T17:22:25Z #8 72.30 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-03-23T17:22:25Z #8 72.31 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-03-23T17:22:25Z #8 72.32 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-03-23T17:22:25Z #8 72.33 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-03-23T17:22:25Z #8 72.35 Setting up libzvbi-common (0.2.35-18) ... -2024-03-23T17:22:25Z #8 72.36 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-03-23T17:22:25Z #8 72.37 Setting up cpp-10 (10.2.1-6) ... -2024-03-23T17:22:25Z #8 72.38 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-03-23T17:22:25Z #8 72.40 Setting up libitm1:amd64 (10.2.1-6) ... -2024-03-23T17:22:25Z #8 72.41 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-03-23T17:22:25Z #8 72.43 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-03-23T17:22:25Z #8 72.44 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-03-23T17:22:25Z #8 72.46 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-03-23T17:22:25Z #8 72.47 Setting up libctf0:amd64 (2.35.2-2) ... -2024-03-23T17:22:25Z #8 72.50 Setting up glib-networking-services (2.66.0-2) ... -2024-03-23T17:22:25Z #8 72.52 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-03-23T17:22:25Z #8 72.53 Setting up manpages-dev (5.10-1) ... -2024-03-23T17:22:25Z #8 72.55 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-03-23T17:22:25Z #8 72.56 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-03-23T17:22:25Z #8 72.58 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-03-23T17:22:25Z #8 72.59 Setting up fontconfig-config (2.13.1-4.2) ... -2024-03-23T17:22:25Z #8 72.96 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-03-23T17:22:25Z #8 72.98 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-03-23T17:22:25Z #8 72.99 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-03-23T17:22:25Z #8 73.01 Setting up libx265-192:amd64 (3.4-2) ... -2024-03-23T17:22:25Z #8 73.02 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-03-23T17:22:25Z #8 73.03 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-03-23T17:22:25Z #8 73.05 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-03-23T17:22:25Z #8 73.06 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-03-23T17:22:25Z #8 73.08 Setting up libthai0:amd64 (0.1.28-3) ... -2024-03-23T17:22:25Z #8 73.09 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-03-23T17:22:25Z #8 73.11 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-03-23T17:22:25Z #8 73.12 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-03-23T17:22:25Z #8 73.13 Setting up shared-mime-info (2.0-1) ... -2024-03-23T17:22:28Z #8 75.72 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-03-23T17:22:28Z #8 75.73 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-03-23T17:22:28Z #8 75.74 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-03-23T17:22:28Z #8 75.77 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-03-23T17:22:28Z #8 75.78 Setting up cpp (4:10.2.1-1) ... -2024-03-23T17:22:28Z #8 75.80 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-03-23T17:22:28Z #8 75.82 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-03-23T17:22:28Z #8 75.83 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-23T17:22:28Z #8 75.87 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-03-23T17:22:29Z #8 76.26 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-03-23T17:22:29Z #8 76.93 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-03-23T17:22:30Z #8 77.65 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-03-23T17:22:30Z #8 77.67 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-03-23T17:22:30Z #8 77.68 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-03-23T17:22:30Z #8 77.69 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-03-23T17:22:30Z #8 77.70 Setting up fontconfig (2.13.1-4.2) ... -2024-03-23T17:22:32Z #8 77.71 Regenerating fonts cache... done. -2024-03-23T17:22:32Z #8 79.74 Setting up libxft2:amd64 (2.3.2-2) ... -2024-03-23T17:22:32Z #8 79.75 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-03-23T17:22:32Z #8 79.76 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-03-23T17:22:32Z #8 79.78 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-03-23T17:22:32Z #8 79.80 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-03-23T17:22:32Z #8 79.81 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-03-23T17:22:32Z #8 79.83 Setting up dconf-service (0.38.0-2) ... -2024-03-23T17:22:32Z #8 79.84 Setting up binutils (2.35.2-2) ... -2024-03-23T17:22:32Z #8 79.85 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-03-23T17:22:32Z #8 79.87 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-23T17:22:32Z #8 79.88 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-03-23T17:22:32Z #8 79.97 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-03-23T17:22:32Z #8 79.98 Setting up libgd3:amd64 (2.3.0-2) ... -2024-03-23T17:22:32Z #8 79.99 Setting up gcc-10 (10.2.1-6) ... -2024-03-23T17:22:32Z #8 80.01 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-03-23T17:22:32Z #8 80.02 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-03-23T17:22:32Z #8 80.04 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-03-23T17:22:32Z #8 80.06 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-03-23T17:22:32Z #8 80.07 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-03-23T17:22:32Z #8 80.09 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-03-23T17:22:32Z #8 80.11 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-03-23T17:22:32Z #8 80.13 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-03-23T17:22:32Z #8 80.14 Setting up libc-devtools (2.31-13+deb11u8) ... -2024-03-23T17:22:32Z #8 80.16 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-03-23T17:22:32Z #8 80.17 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-03-23T17:22:32Z #8 80.19 Setting up libglx0:amd64 (1.3.2-1) ... -2024-03-23T17:22:32Z #8 80.20 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-03-23T17:22:33Z #8 80.22 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-23T17:22:33Z #8 80.24 Setting up gcc (4:10.2.1-1) ... -2024-03-23T17:22:33Z #8 80.27 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-23T17:22:33Z #8 80.28 Setting up libgl1:amd64 (1.3.2-1) ... -2024-03-23T17:22:33Z #8 80.30 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-03-23T17:22:33Z #8 80.31 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-03-23T17:22:33Z #8 80.34 Setting up x11-utils (7.7+5) ... -2024-03-23T17:22:33Z #8 80.41 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-03-23T17:22:33Z #8 80.42 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-03-23T17:22:33Z #8 80.45 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-03-23T17:22:33Z #8 80.47 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-03-23T17:22:33Z #8 80.48 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-03-23T17:22:33Z #8 80.50 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-03-23T17:22:33Z #8 80.55 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-03-23T17:22:33Z #8 80.59 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-03-23T17:22:33Z #8 80.61 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-03-23T17:22:33Z #8 80.64 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-03-23T17:22:33Z #8 80.66 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-03-23T17:22:33Z #8 80.68 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-03-23T17:22:33Z #8 80.72 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-03-23T17:22:33Z #8 80.74 Setting up firefox-esr (115.9.0esr-1~deb11u1) ... -2024-03-23T17:22:33Z #8 80.75 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-03-23T17:22:33Z #8 80.75 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-03-23T17:22:33Z #8 80.78 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-03-23T17:22:33Z #8 80.79 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-03-23T17:22:33Z #8 80.80 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-03-23T17:22:33Z #8 80.85 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-03-23T17:22:38Z #8 DONE 85.9s -2024-03-23T17:22:38Z -2024-03-23T17:22:38Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-03-23T17:23:25Z #9 DONE 46.9s -2024-03-23T17:23:25Z -2024-03-23T17:23:25Z #10 [ 5/10] COPY environment.yml /environment.yml -2024-03-23T17:23:25Z #10 DONE 0.1s -2024-03-23T17:23:25Z -2024-03-23T17:23:25Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-03-23T17:25:58Z #11 152.9 Transaction -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 Prefix: /opt/conda/envs/birdy -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 Updating specs: -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 - xclim -2024-03-23T17:25:58Z #11 152.9 - ravenpy -2024-03-23T17:25:58Z #11 152.9 - python=3.10 -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 Package Version Build Channel Size -2024-03-23T17:25:58Z #11 152.9 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-23T17:25:58Z #11 152.9 Install: -2024-03-23T17:25:58Z #11 152.9 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-03-23T17:25:58Z #11 152.9 + python_abi 3.10 4_cp310 conda-forge 6kB -2024-03-23T17:25:58Z #11 152.9 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB -2024-03-23T17:25:58Z #11 152.9 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB -2024-03-23T17:25:58Z #11 152.9 + libboost-headers 1.84.0 ha770c72_1 conda-forge 14MB -2024-03-23T17:25:58Z #11 152.9 + mpi 1.0 openmpi conda-forge 4kB -2024-03-23T17:25:58Z #11 152.9 + libgomp 13.2.0 h807b86a_5 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-03-23T17:25:58Z #11 152.9 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + lzo 2.10 h516909a_1000 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-03-23T17:25:58Z #11 152.9 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-03-23T17:25:58Z #11 152.9 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-03-23T17:25:58Z #11 152.9 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-03-23T17:25:58Z #11 152.9 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-03-23T17:25:58Z #11 152.9 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-03-23T17:25:58Z #11 152.9 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-03-23T17:25:58Z #11 152.9 + libev 4.33 hd590300_2 conda-forge 113kB -2024-03-23T17:25:58Z #11 152.9 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-03-23T17:25:58Z #11 152.9 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-03-23T17:25:58Z #11 152.9 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB -2024-03-23T17:25:58Z #11 152.9 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB -2024-03-23T17:25:58Z #11 152.9 + libaec 1.1.3 h59595ed_0 conda-forge 35kB -2024-03-23T17:25:58Z #11 152.9 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-03-23T17:25:58Z #11 152.9 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-03-23T17:25:58Z #11 152.9 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-03-23T17:25:58Z #11 152.9 + gettext 0.21.1 h27087fc_0 conda-forge 4MB -2024-03-23T17:25:58Z #11 152.9 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB -2024-03-23T17:25:58Z #11 152.9 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-03-23T17:25:58Z #11 152.9 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-03-23T17:25:58Z #11 152.9 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-03-23T17:25:58Z #11 152.9 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-03-23T17:25:58Z #11 152.9 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-03-23T17:25:58Z #11 152.9 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-03-23T17:25:58Z #11 152.9 + icu 73.2 h59595ed_0 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-03-23T17:25:58Z #11 152.9 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB -2024-03-23T17:25:58Z #11 152.9 + libdeflate 1.19 hd590300_0 conda-forge 67kB -2024-03-23T17:25:58Z #11 152.9 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-03-23T17:25:58Z #11 152.9 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-03-23T17:25:58Z #11 152.9 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-03-23T17:25:58Z #11 152.9 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-03-23T17:25:58Z #11 152.9 + openssl 3.2.1 hd590300_1 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-03-23T17:25:58Z #11 152.9 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + keyutils 1.6.1 h166bdaf_0 conda-forge 118kB -2024-03-23T17:25:58Z #11 152.9 + aws-c-common 0.9.14 hd590300_0 conda-forge 226kB -2024-03-23T17:25:58Z #11 152.9 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-03-23T17:25:58Z #11 152.9 + c-ares 1.27.0 hd590300_0 conda-forge 164kB -2024-03-23T17:25:58Z #11 152.9 + snappy 1.1.10 h9fff704_0 conda-forge 39kB -2024-03-23T17:25:58Z #11 152.9 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-03-23T17:25:58Z #11 152.9 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB -2024-03-23T17:25:58Z #11 152.9 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB -2024-03-23T17:25:58Z #11 152.9 + libnsl 2.0.1 hd590300_0 conda-forge 33kB -2024-03-23T17:25:58Z #11 152.9 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-03-23T17:25:58Z #11 152.9 + rdma-core 50.0 hd3aeb46_1 conda-forge 5MB -2024-03-23T17:25:58Z #11 152.9 + expat 2.6.2 h59595ed_0 conda-forge 138kB -2024-03-23T17:25:58Z #11 152.9 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-03-23T17:25:58Z #11 152.9 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB -2024-03-23T17:25:58Z #11 152.9 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-03-23T17:25:58Z #11 152.9 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-03-23T17:25:58Z #11 152.9 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-03-23T17:25:58Z #11 152.9 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-03-23T17:25:58Z #11 152.9 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-03-23T17:25:58Z #11 152.9 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB -2024-03-23T17:25:58Z #11 152.9 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + pcre2 10.42 hcad00b1_0 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2024-03-23T17:25:58Z #11 152.9 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB -2024-03-23T17:25:58Z #11 152.9 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-03-23T17:25:58Z #11 152.9 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-03-23T17:25:58Z #11 152.9 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-03-23T17:25:58Z #11 152.9 + s2n 1.4.7 h06160fa_0 conda-forge 339kB -2024-03-23T17:25:58Z #11 152.9 + libssh2 1.11.0 h0841786_0 conda-forge 271kB -2024-03-23T17:25:58Z #11 152.9 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-03-23T17:25:58Z #11 152.9 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-03-23T17:25:58Z #11 152.9 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-03-23T17:25:58Z #11 152.9 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB -2024-03-23T17:25:58Z #11 152.9 + aws-c-compression 0.2.18 h4466546_2 conda-forge 19kB -2024-03-23T17:25:58Z #11 152.9 + aws-c-sdkutils 0.1.15 h4466546_2 conda-forge 55kB -2024-03-23T17:25:58Z #11 152.9 + aws-c-cal 0.6.10 ha9bf9b1_2 conda-forge 55kB -2024-03-23T17:25:58Z #11 152.9 + aws-checksums 0.1.18 h4466546_2 conda-forge 50kB -2024-03-23T17:25:58Z #11 152.9 + libnghttp2 1.58.0 h47da74e_1 conda-forge 632kB -2024-03-23T17:25:58Z #11 152.9 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-03-23T17:25:58Z #11 152.9 + readline 8.2 h8228510_1 conda-forge 281kB -2024-03-23T17:25:58Z #11 152.9 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-03-23T17:25:58Z #11 152.9 + libxml2 2.12.6 h232c23b_0 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + ucx 1.15.0 h11edf95_7 conda-forge 7MB -2024-03-23T17:25:58Z #11 152.9 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB -2024-03-23T17:25:58Z #11 152.9 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB -2024-03-23T17:25:58Z #11 152.9 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-03-23T17:25:58Z #11 152.9 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB -2024-03-23T17:25:58Z #11 152.9 + libglib 2.78.4 h783c2da_0 conda-forge 3MB -2024-03-23T17:25:58Z #11 152.9 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-03-23T17:25:58Z #11 152.9 + libtiff 4.6.0 ha9c0a0a_2 conda-forge 283kB -2024-03-23T17:25:58Z #11 152.9 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB -2024-03-23T17:25:58Z #11 152.9 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-03-23T17:25:58Z #11 152.9 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-03-23T17:25:58Z #11 152.9 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-03-23T17:25:58Z #11 152.9 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-03-23T17:25:58Z #11 152.9 + orc 2.0.0 h1e5e2c1_0 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + aws-c-io 0.14.6 h6b388c4_1 conda-forge 158kB -2024-03-23T17:25:58Z #11 152.9 + krb5 1.21.2 h659d440_0 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB -2024-03-23T17:25:58Z #11 152.9 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-03-23T17:25:58Z #11 152.9 + tiledb 2.18.2 h99f50a1_1 conda-forge 6MB -2024-03-23T17:25:58Z #11 152.9 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-03-23T17:25:58Z #11 152.9 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-03-23T17:25:58Z #11 152.9 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-03-23T17:25:58Z #11 152.9 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-23T17:25:58Z #11 152.9 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-03-23T17:25:58Z #11 152.9 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-03-23T17:25:58Z #11 152.9 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-03-23T17:25:58Z #11 152.9 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-03-23T17:25:58Z #11 152.9 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-03-23T17:25:58Z #11 152.9 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB -2024-03-23T17:25:58Z #11 152.9 + aws-c-http 0.8.1 hbfc29b2_7 conda-forge 194kB -2024-03-23T17:25:58Z #11 152.9 + aws-c-event-stream 0.4.2 he635cd5_6 conda-forge 54kB -2024-03-23T17:25:58Z #11 152.9 + libpq 16.2 h33b98f1_1 conda-forge 3MB -2024-03-23T17:25:58Z #11 152.9 + libcurl 8.6.0 hca28451_0 conda-forge 391kB -2024-03-23T17:25:58Z #11 152.9 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-23T17:25:58Z #11 152.9 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB -2024-03-23T17:25:58Z #11 152.9 + aws-c-mqtt 0.10.3 hffff1cc_2 conda-forge 163kB -2024-03-23T17:25:58Z #11 152.9 + aws-c-auth 0.7.16 haed3651_8 conda-forge 103kB -2024-03-23T17:25:58Z #11 152.9 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-03-23T17:25:58Z #11 152.9 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB -2024-03-23T17:25:58Z #11 152.9 + proj 9.3.1 h1d62c97_0 conda-forge 3MB -2024-03-23T17:25:58Z #11 152.9 + cfitsio 4.3.1 hbdc6101_0 conda-forge 875kB -2024-03-23T17:25:58Z #11 152.9 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + aws-c-s3 0.5.3 h4893938_0 conda-forge 106kB -2024-03-23T17:25:58Z #11 152.9 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-03-23T17:25:58Z #11 152.9 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-03-23T17:25:58Z #11 152.9 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB -2024-03-23T17:25:58Z #11 152.9 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB -2024-03-23T17:25:58Z #11 152.9 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB -2024-03-23T17:25:58Z #11 152.9 + aws-crt-cpp 0.26.4 h335f1a1_1 conda-forge 337kB -2024-03-23T17:25:58Z #11 152.9 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-03-23T17:25:58Z #11 152.9 + aws-sdk-cpp 1.11.267 hb1af6a8_4 conda-forge 4MB -2024-03-23T17:25:58Z #11 152.9 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB -2024-03-23T17:25:58Z #11 152.9 + libarrow 15.0.2 hb86450c_1_cpu conda-forge 8MB -2024-03-23T17:25:58Z #11 152.9 + libparquet 15.0.2 h352af49_1_cpu conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + libarrow-gandiva 15.0.2 hb016d2e_1_cpu conda-forge 897kB -2024-03-23T17:25:58Z #11 152.9 + libarrow-flight 15.0.2 hc6145d9_1_cpu conda-forge 503kB -2024-03-23T17:25:58Z #11 152.9 + libarrow-acero 15.0.2 h59595ed_1_cpu conda-forge 597kB -2024-03-23T17:25:58Z #11 152.9 + libarrow-flight-sql 15.0.2 h757c851_1_cpu conda-forge 194kB -2024-03-23T17:25:58Z #11 152.9 + libarrow-dataset 15.0.2 h59595ed_1_cpu conda-forge 584kB -2024-03-23T17:25:58Z #11 152.9 + libarrow-substrait 15.0.2 h757c851_1_cpu conda-forge 519kB -2024-03-23T17:25:58Z #11 152.9 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-03-23T17:25:58Z #11 152.9 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-03-23T17:25:58Z #11 152.9 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-03-23T17:25:58Z #11 152.9 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB -2024-03-23T17:25:58Z #11 152.9 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-03-23T17:25:58Z #11 152.9 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-03-23T17:25:58Z #11 152.9 + fonts-conda-forge 1 0 conda-forge 4kB -2024-03-23T17:25:58Z #11 152.9 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-03-23T17:25:58Z #11 152.9 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB -2024-03-23T17:25:58Z #11 152.9 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB -2024-03-23T17:25:58Z #11 152.9 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-03-23T17:25:58Z #11 152.9 + poppler 23.12.0 h590f24d_0 conda-forge 2MB -2024-03-23T17:25:58Z #11 152.9 + libgdal 3.8.1 hed8bd54_4 conda-forge 11MB -2024-03-23T17:25:58Z #11 152.9 + wheel 0.43.0 pyhd8ed1ab_0 conda-forge 58kB -2024-03-23T17:25:58Z #11 152.9 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB -2024-03-23T17:25:58Z #11 152.9 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB -2024-03-23T17:25:58Z #11 152.9 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-03-23T17:25:58Z #11 152.9 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB -2024-03-23T17:25:58Z #11 152.9 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-03-23T17:25:58Z #11 152.9 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-03-23T17:25:58Z #11 152.9 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-03-23T17:25:58Z #11 152.9 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-03-23T17:25:58Z #11 152.9 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-03-23T17:25:58Z #11 152.9 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-03-23T17:25:58Z #11 152.9 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-03-23T17:25:58Z #11 152.9 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-03-23T17:25:58Z #11 152.9 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-03-23T17:25:58Z #11 152.9 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-03-23T17:25:58Z #11 152.9 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-03-23T17:25:58Z #11 152.9 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-03-23T17:25:58Z #11 152.9 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB -2024-03-23T17:25:58Z #11 152.9 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB -2024-03-23T17:25:58Z #11 152.9 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB -2024-03-23T17:25:58Z #11 152.9 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-03-23T17:25:58Z #11 152.9 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-03-23T17:25:58Z #11 152.9 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-03-23T17:25:58Z #11 152.9 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-03-23T17:25:58Z #11 152.9 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB -2024-03-23T17:25:58Z #11 152.9 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-03-23T17:25:58Z #11 152.9 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-03-23T17:25:58Z #11 152.9 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-03-23T17:25:58Z #11 152.9 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB -2024-03-23T17:25:58Z #11 152.9 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB -2024-03-23T17:25:58Z #11 152.9 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-03-23T17:25:58Z #11 152.9 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-03-23T17:25:58Z #11 152.9 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB -2024-03-23T17:25:58Z #11 152.9 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-03-23T17:25:58Z #11 152.9 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-03-23T17:25:58Z #11 152.9 + boltons 23.1.1 pyhd8ed1ab_0 conda-forge 304kB -2024-03-23T17:25:58Z #11 152.9 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-03-23T17:25:58Z #11 152.9 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB -2024-03-23T17:25:58Z #11 152.9 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-03-23T17:25:58Z #11 152.9 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-03-23T17:25:58Z #11 152.9 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB -2024-03-23T17:25:58Z #11 152.9 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB -2024-03-23T17:25:58Z #11 152.9 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB -2024-03-23T17:25:58Z #11 152.9 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-03-23T17:25:58Z #11 152.9 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-03-23T17:25:58Z #11 152.9 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-03-23T17:25:58Z #11 152.9 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-03-23T17:25:58Z #11 152.9 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB -2024-03-23T17:25:58Z #11 152.9 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB -2024-03-23T17:25:58Z #11 152.9 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB -2024-03-23T17:25:58Z #11 152.9 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB -2024-03-23T17:25:58Z #11 152.9 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB -2024-03-23T17:25:58Z #11 152.9 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB -2024-03-23T17:25:58Z #11 152.9 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB -2024-03-23T17:25:58Z #11 152.9 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB -2024-03-23T17:25:58Z #11 152.9 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB -2024-03-23T17:25:58Z #11 152.9 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB -2024-03-23T17:25:58Z #11 152.9 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB -2024-03-23T17:25:58Z #11 152.9 + tornado 6.4 py310h2372a71_0 conda-forge 651kB -2024-03-23T17:25:58Z #11 152.9 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB -2024-03-23T17:25:58Z #11 152.9 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB -2024-03-23T17:25:58Z #11 152.9 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB -2024-03-23T17:25:58Z #11 152.9 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB -2024-03-23T17:25:58Z #11 152.9 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB -2024-03-23T17:25:58Z #11 152.9 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB -2024-03-23T17:25:58Z #11 152.9 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB -2024-03-23T17:25:58Z #11 152.9 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB -2024-03-23T17:25:58Z #11 152.9 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB -2024-03-23T17:25:58Z #11 152.9 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB -2024-03-23T17:25:58Z #11 152.9 + fonttools 4.50.0 py310h2372a71_0 conda-forge 2MB -2024-03-23T17:25:58Z #11 152.9 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB -2024-03-23T17:25:58Z #11 152.9 + h5py 3.10.0 nompi_py310h65828d5_101 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB -2024-03-23T17:25:58Z #11 152.9 + gdal 3.8.1 py310haaa150b_4 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB -2024-03-23T17:25:58Z #11 152.9 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB -2024-03-23T17:25:58Z #11 152.9 + pyarrow 15.0.2 py310hf9e7431_1_cpu conda-forge 4MB -2024-03-23T17:25:58Z #11 152.9 + numba 0.59.0 py310h7dc5dd1_1 conda-forge 4MB -2024-03-23T17:25:58Z #11 152.9 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB -2024-03-23T17:25:58Z #11 152.9 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB -2024-03-23T17:25:58Z #11 152.9 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB -2024-03-23T17:25:58Z #11 152.9 + fiona 1.9.5 py310h0a1e91f_2 conda-forge 958kB -2024-03-23T17:25:58Z #11 152.9 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB -2024-03-23T17:25:58Z #11 152.9 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB -2024-03-23T17:25:58Z #11 152.9 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB -2024-03-23T17:25:58Z #11 152.9 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-03-23T17:25:58Z #11 152.9 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-03-23T17:25:58Z #11 152.9 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB -2024-03-23T17:25:58Z #11 152.9 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-03-23T17:25:58Z #11 152.9 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-03-23T17:25:58Z #11 152.9 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-03-23T17:25:58Z #11 152.9 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-03-23T17:25:58Z #11 152.9 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB -2024-03-23T17:25:58Z #11 152.9 + dask-core 2024.3.1 pyhd8ed1ab_0 conda-forge 880kB -2024-03-23T17:25:58Z #11 152.9 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-03-23T17:25:58Z #11 152.9 + pydantic 2.6.4 pyhd8ed1ab_0 conda-forge 272kB -2024-03-23T17:25:58Z #11 152.9 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB -2024-03-23T17:25:58Z #11 152.9 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB -2024-03-23T17:25:58Z #11 152.9 + xarray 2024.2.0 pyhd8ed1ab_0 conda-forge 742kB -2024-03-23T17:25:58Z #11 152.9 + properscoring 0.1 py_0 conda-forge 22kB -2024-03-23T17:25:58Z #11 152.9 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-03-23T17:25:58Z #11 152.9 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-03-23T17:25:58Z #11 152.9 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-03-23T17:25:58Z #11 152.9 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-03-23T17:25:58Z #11 152.9 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB -2024-03-23T17:25:58Z #11 152.9 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB -2024-03-23T17:25:58Z #11 152.9 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-03-23T17:25:58Z #11 152.9 + dask-expr 1.0.4 pyhd8ed1ab_0 conda-forge 141kB -2024-03-23T17:25:58Z #11 152.9 + distributed 2024.3.1 pyhd8ed1ab_0 conda-forge 795kB -2024-03-23T17:25:58Z #11 152.9 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-03-23T17:25:58Z #11 152.9 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-03-23T17:25:58Z #11 152.9 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-03-23T17:25:58Z #11 152.9 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-03-23T17:25:58Z #11 152.9 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-03-23T17:25:58Z #11 152.9 + dask 2024.3.1 pyhd8ed1ab_0 conda-forge 7kB -2024-03-23T17:25:58Z #11 152.9 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB -2024-03-23T17:25:58Z #11 152.9 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB -2024-03-23T17:25:58Z #11 152.9 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-03-23T17:25:58Z #11 152.9 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-03-23T17:25:58Z #11 152.9 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB -2024-03-23T17:25:58Z #11 152.9 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB -2024-03-23T17:25:58Z #11 152.9 + rioxarray 0.15.1 pyhd8ed1ab_0 conda-forge 48kB -2024-03-23T17:25:58Z #11 152.9 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB -2024-03-23T17:25:58Z #11 152.9 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-03-23T17:25:58Z #11 152.9 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB -2024-03-23T17:25:58Z #11 152.9 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-03-23T17:25:58Z #11 152.9 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 Summary: -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 Install: 295 packages -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 Total download: 446MB -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:25:58Z #11 152.9 -2024-03-23T17:27:34Z #11 249.2 -2024-03-23T17:27:34Z #11 249.2 Looking for: ['xclim', 'ravenpy', 'python=3.10'] -2024-03-23T17:27:34Z #11 249.2 -2024-03-23T17:27:34Z #11 249.2 -2024-03-23T17:27:34Z #11 249.2 Downloading and Extracting Packages: ...working... done -2024-03-23T17:27:39Z #11 249.2 Preparing transaction: ...working... done -2024-03-23T17:27:53Z #11 253.4 Verifying transaction: ...working... done -2024-03-23T17:28:27Z #11 267.6 Executing transaction: ...working... -2024-03-23T17:28:27Z #11 301.9 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-03-23T17:28:27Z #11 301.9 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-03-23T17:28:27Z #11 301.9 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-03-23T17:28:27Z #11 301.9 mpiexec --mca opal_cuda_support 1 ... -2024-03-23T17:28:27Z #11 301.9 -2024-03-23T17:28:27Z #11 301.9 In addition, the UCX support is also built but disabled by default. -2024-03-23T17:28:27Z #11 301.9 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-03-23T17:28:27Z #11 301.9 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-03-23T17:28:27Z #11 301.9 Equivalently, you can set the MCA parameters in the command line: -2024-03-23T17:28:27Z #11 301.9 mpiexec --mca pml ucx --mca osc ucx ... -2024-03-23T17:28:27Z #11 301.9 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-03-23T17:28:27Z #11 301.9 Please consult UCX's documentation for detail. -2024-03-23T17:28:27Z #11 301.9 -2024-03-23T17:28:27Z #11 301.9 -2024-03-23T17:28:27Z #11 301.9 done -2024-03-23T17:28:27Z #11 302.0 -2024-03-23T17:28:27Z #11 302.0 To activate this environment, use -2024-03-23T17:28:27Z #11 302.0 -2024-03-23T17:28:27Z #11 302.0 $ mamba activate birdy -2024-03-23T17:28:27Z #11 302.0 -2024-03-23T17:28:27Z #11 302.0 To deactivate an active environment, use -2024-03-23T17:28:27Z #11 302.0 -2024-03-23T17:28:27Z #11 302.0 $ mamba deactivate -2024-03-23T17:28:27Z #11 302.0 -2024-03-23T17:28:31Z #11 305.5 Channels: -2024-03-23T17:28:31Z #11 305.5 - conda-forge -2024-03-23T17:28:31Z #11 305.5 - cdat -2024-03-23T17:28:31Z #11 305.5 - bokeh -2024-03-23T17:28:31Z #11 305.5 - pyviz/label/dev -2024-03-23T17:28:31Z #11 305.5 - defaults -2024-03-23T17:28:31Z #11 305.5 Platform: linux-64 -2024-03-23T17:29:07Z #11 305.5 Collecting package metadata (repodata.json): ...working... done -2024-03-23T17:30:11Z #11 342.0 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 405.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.0 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:11Z #11 406.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:30:12Z #11 406.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 464.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:31:10Z #11 465.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:05Z #11 520.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:32:06Z #11 520.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 578.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:04Z #11 579.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:33:05Z #11 579.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 636.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:02Z #11 637.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:03Z #11 637.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:34:55Z #11 689.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:34Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:35:35Z #11 729.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:14Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:15Z #11 769.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:54Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:36:55Z #11 809.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:34Z #11 849.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:37:35Z #11 849.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-03-23T17:40:47Z #11 1041.3 done -2024-03-23T17:42:27Z #11 1141.5 -2024-03-23T17:42:27Z #11 1141.5 Downloading and Extracting Packages: ...working... done -2024-03-23T17:42:34Z #11 1141.5 Preparing transaction: ...working... done -2024-03-23T17:42:56Z #11 1148.3 Verifying transaction: ...working... done -2024-03-23T17:43:50Z #11 1170.5 Executing transaction: ...working... -2024-03-23T17:43:50Z #11 1225.1 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-03-23T17:43:50Z #11 1225.1 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-03-23T17:43:50Z #11 1225.1 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-03-23T17:43:50Z #11 1225.1 mpiexec --mca opal_cuda_support 1 ... -2024-03-23T17:43:50Z #11 1225.1 -2024-03-23T17:43:50Z #11 1225.1 In addition, the UCX support is also built but disabled by default. -2024-03-23T17:43:50Z #11 1225.1 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-03-23T17:43:50Z #11 1225.1 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-03-23T17:43:50Z #11 1225.1 Equivalently, you can set the MCA parameters in the command line: -2024-03-23T17:43:50Z #11 1225.1 mpiexec --mca pml ucx --mca osc ucx ... -2024-03-23T17:43:50Z #11 1225.1 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-03-23T17:43:50Z #11 1225.1 Please consult UCX's documentation for detail. -2024-03-23T17:43:50Z #11 1225.1 -2024-03-23T17:43:50Z #11 1225.1 -2024-03-23T17:43:50Z #11 1225.1 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-03-23T17:43:50Z #11 1225.1 given by the platformdirs library. To remove this warning and -2024-03-23T17:43:50Z #11 1225.1 see the appropriate new directories, set the environment variable -2024-03-23T17:43:50Z #11 1225.1 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-03-23T17:43:50Z #11 1225.1 The use of platformdirs will be the default in `jupyter_core` v6 -2024-03-23T17:43:50Z #11 1225.1 from . import paths -2024-03-23T17:43:50Z #11 1225.1 Enabling: jupyterlab_git -2024-03-23T17:43:50Z #11 1225.1 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-23T17:43:50Z #11 1225.1 - Validating... -2024-03-23T17:43:50Z #11 1225.1 jupyterlab_git OK -2024-03-23T17:43:50Z #11 1225.1 -2024-03-23T17:43:50Z #11 1225.1 done -2024-03-23T17:44:37Z #11 1232.9 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-03-23T17:44:37Z #11 1271.6 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.fslj1ola.requirements.txt', '--exists-action=b'] -2024-03-23T17:44:37Z #11 1271.6 Pip subprocess output: -2024-03-23T17:44:37Z #11 1271.6 Collecting xncml (from -r /condaenv.fslj1ola.requirements.txt (line 1)) -2024-03-23T17:44:37Z #11 1271.6 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting hsclient (from -r /condaenv.fslj1ola.requirements.txt (line 2)) -2024-03-23T17:44:37Z #11 1271.6 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting fstd2nc (from -r /condaenv.fslj1ola.requirements.txt (line 3)) -2024-03-23T17:44:37Z #11 1271.6 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 10.0 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Installing build dependencies: started -2024-03-23T17:44:37Z #11 1271.6 Installing build dependencies: finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Getting requirements to build wheel: started -2024-03-23T17:44:37Z #11 1271.6 Getting requirements to build wheel: finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Installing backend dependencies: started -2024-03-23T17:44:37Z #11 1271.6 Installing backend dependencies: finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (pyproject.toml): started -2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (pyproject.toml): finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Collecting figanos (from -r /condaenv.fslj1ola.requirements.txt (line 4)) -2024-03-23T17:44:37Z #11 1271.6 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting pixiedust (from -r /condaenv.fslj1ola.requirements.txt (line 5)) -2024-03-23T17:44:37Z #11 1271.6 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 20.7 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): started -2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Collecting ipython_blocking (from -r /condaenv.fslj1ola.requirements.txt (line 6)) -2024-03-23T17:44:37Z #11 1271.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting jupyternotify (from -r /condaenv.fslj1ola.requirements.txt (line 7)) -2024-03-23T17:44:37Z #11 1271.6 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): started -2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Collecting jupyterlab-logout (from -r /condaenv.fslj1ola.requirements.txt (line 8)) -2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.fslj1ola.requirements.txt (line 9)) -2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting pytest-tornasync (from -r /condaenv.fslj1ola.requirements.txt (line 10)) -2024-03-23T17:44:37Z #11 1271.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting xmltodict (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) -2024-03-23T17:44:37Z #11 1271.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting xsdata (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) -2024-03-23T17:44:37Z #11 1271.6 Downloading xsdata-24.3.1-py3-none-any.whl.metadata (6.3 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (2023.8.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (1.6.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (1.6.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (2024.3.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (5.9.8) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (69.2.0) -2024-03-23T17:44:37Z #11 1271.6 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) -2024-03-23T17:44:37Z #11 1271.6 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2.31.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (1.4.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.fslj1ola.requirements.txt (line 3)) (1.24.4) -2024-03-23T17:44:37Z #11 1271.6 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.fslj1ola.requirements.txt (line 3)) -2024-03-23T17:44:37Z #11 1271.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-03-23T17:44:37Z #11 1271.6 Collecting progress (from fstd2nc->-r /condaenv.fslj1ola.requirements.txt (line 3)) -2024-03-23T17:44:37Z #11 1271.6 Downloading progress-1.6.tar.gz (7.8 kB) -2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): started -2024-03-23T17:44:37Z #11 1271.6 Preparing metadata (setup.py): finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.22.0) -2024-03-23T17:44:37Z #11 1271.6 Collecting cairosvg (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) -2024-03-23T17:44:37Z #11 1271.6 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.14.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.8.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.1.4) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (4.2.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (6.0.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.13.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.22.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.47.0) -2024-03-23T17:44:37Z #11 1271.6 Collecting geojson (from pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) -2024-03-23T17:44:37Z #11 1271.6 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting astunparse (from pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) -2024-03-23T17:44:37Z #11 1271.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) (3.6) -2024-03-23T17:44:37Z #11 1271.6 Collecting colour (from pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) -2024-03-23T17:44:37Z #11 1271.6 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (8.22.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (8.1.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.7.4) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (1.0.0) -2024-03-23T17:44:37Z #11 1271.6 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) -2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab-4.1.5-py3-none-any.whl.metadata (15 kB) -2024-03-23T17:44:37Z #11 1271.6 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-03-23T17:44:37Z #11 1271.6 Collecting jupyterlab-logout (from -r /condaenv.fslj1ola.requirements.txt (line 8)) -2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.6.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (3.6.7) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (23.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (6.4) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (5.7.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.25.4) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.13.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.2.4) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.8.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.0.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (6.5.6) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (3.1.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.0.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.fslj1ola.requirements.txt (line 10)) (8.1.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.fslj1ola.requirements.txt (line 3)) (2024.1) -2024-03-23T17:44:37Z #11 1271.6 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) -2024-03-23T17:44:37Z #11 1271.6 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2.6.4) -2024-03-23T17:44:37Z #11 1271.6 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) -2024-03-23T17:44:37Z #11 1271.6 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (0.6.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2.16.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (4.10.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.fslj1ola.requirements.txt (line 10)) (2.0.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.fslj1ola.requirements.txt (line 10)) (1.4.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.fslj1ola.requirements.txt (line 10)) (1.2.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (23.1.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.3.8) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.9.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (8.1.7) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.0.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.0.6) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.59.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.23) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.4.1.post1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.12.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.14.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (3.0.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (2024.3.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (1.4.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (0.12.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (7.1.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.9.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2024.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) (0.43.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.fslj1ola.requirements.txt (line 5)) (1.16.0) -2024-03-23T17:44:37Z #11 1271.6 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) -2024-03-23T17:44:37Z #11 1271.6 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) -2024-03-23T17:44:37Z #11 1271.6 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) -2024-03-23T17:44:37Z #11 1271.6 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.7.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (9.4.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.2.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.0.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.3.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.5.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.2.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.12.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (4.50.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.4.5) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.1.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.9.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (5.1.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.19.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.1.6) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (3.0.42) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (2.17.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.6.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (5.14.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (4.9.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.2.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (4.0.10) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (3.0.10) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (5.5.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (6.6.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (7.16.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (6.29.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (7.4.9) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (5.10.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (3.3.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (3.6) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2.0.7) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (2024.2.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) (3.2.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.2.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.34.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2023.8.12) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (23.2.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.1.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.7.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (4.0.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (3.17.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.8.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.1.5) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.4) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (1.6.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (24.0.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (4.3.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (23.1.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.10.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.5.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (7.7.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.20.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.8.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.18.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.7.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.9.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.8.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.5.9) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.14.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.9.24) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (4.21.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (4.12.3) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (6.1.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (0.3.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (3.0.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (1.5.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (2.19.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.2.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.2.4) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.fslj1ola.requirements.txt (line 1)) (1.0.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.7.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.2.13) -2024-03-23T17:44:37Z #11 1271.6 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) -2024-03-23T17:44:37Z #11 1271.6 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.3.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (3.4.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (1.16.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.5.1) -2024-03-23T17:44:37Z #11 1271.6 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.fslj1ola.requirements.txt (line 2)) -2024-03-23T17:44:37Z #11 1271.6 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (1.8.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.42.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (2.4.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (2.0.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (2.4.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.fslj1ola.requirements.txt (line 6)) (0.2.2) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (0.5.6) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.3.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.fslj1ola.requirements.txt (line 4)) (2.21) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2023.12.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.34.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.18.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.0.7) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.1.4) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.1.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (22.1.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (0.19.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (21.2.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.fslj1ola.requirements.txt (line 7)) (2.5) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.5.1) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (20.11.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.4) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.3.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.13) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (1.3.0) -2024-03-23T17:44:37Z #11 1271.6 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.fslj1ola.requirements.txt (line 8)) (2.9.0.20240316) -2024-03-23T17:44:37Z #11 1271.6 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 41.0 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 8.0 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 33.0 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 57.6 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 4.8 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading xsdata-24.3.1-py3-none-any.whl (224 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 224.1/224.1 kB 19.1 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 22.9 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 8.9 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-03-23T17:44:37Z #11 1271.6 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 26.8 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-03-23T17:44:37Z #11 1271.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.7 MB/s eta 0:00:00 -2024-03-23T17:44:37Z #11 1271.6 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress -2024-03-23T17:44:37Z #11 1271.6 Building wheel for fstd2nc (pyproject.toml): started -2024-03-23T17:44:37Z #11 1271.6 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=ce30e38e922de596b70b0a8f01ec7c98520338c0ea287baeb4b9ffb71109b627 -2024-03-23T17:44:37Z #11 1271.6 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a -2024-03-23T17:44:37Z #11 1271.6 Building wheel for pixiedust (setup.py): started -2024-03-23T17:44:37Z #11 1271.6 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=29025f156b21b11c7742068057a923b7b4bc2874597b9d53c476140499a4bb50 -2024-03-23T17:44:37Z #11 1271.6 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 -2024-03-23T17:44:37Z #11 1271.6 Building wheel for jupyternotify (setup.py): started -2024-03-23T17:44:37Z #11 1271.6 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=37c3d40b999d75f86297f24912e71416cc010ce46ccca2a2b87b91b840a89368 -2024-03-23T17:44:37Z #11 1271.6 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 -2024-03-23T17:44:37Z #11 1271.6 Building wheel for progress (setup.py): started -2024-03-23T17:44:37Z #11 1271.6 Building wheel for progress (setup.py): finished with status 'done' -2024-03-23T17:44:37Z #11 1271.6 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9614 sha256=5e89e1cecec32a6ea6e470bc9ab95ab43f16bd9de7e01e8102185f4a76fb5761 -2024-03-23T17:44:37Z #11 1271.6 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 -2024-03-23T17:44:37Z #11 1271.6 Successfully built fstd2nc pixiedust jupyternotify progress -2024-03-23T17:44:37Z #11 1271.6 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-03-23T17:44:37Z #11 1271.6 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.3.1 -2024-03-23T17:44:37Z #11 1271.6 -2024-03-23T17:44:37Z #11 1271.6 done -2024-03-23T17:44:37Z #11 1271.6 # -2024-03-23T17:44:37Z #11 1271.6 # To activate this environment, use -2024-03-23T17:44:37Z #11 1271.6 # -2024-03-23T17:44:37Z #11 1271.6 # $ conda activate birdy -2024-03-23T17:44:37Z #11 1271.6 # -2024-03-23T17:44:37Z #11 1271.6 # To deactivate an active environment, use -2024-03-23T17:44:37Z #11 1271.6 # -2024-03-23T17:44:37Z #11 1271.6 # $ conda deactivate -2024-03-23T17:44:37Z #11 1271.6 -2024-03-23T17:44:49Z #11 1283.7 Will remove 782 (1.20 GB) tarball(s). -2024-03-23T17:44:49Z #11 1283.7 Will remove 1 index cache(s). -2024-03-23T17:44:49Z #11 1283.7 Will remove 143 (1.22 GB) package(s). -2024-03-23T17:44:49Z #11 1283.7 There are no tempfile(s) to remove. -2024-03-23T17:44:49Z #11 1283.7 There are no logfile(s) to remove. -2024-03-23T17:44:50Z #11 DONE 1284.5s -2024-03-23T17:44:50Z -2024-03-23T17:44:50Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2024-03-23T17:44:51Z #12 1.340 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-03-23T17:44:51Z #12 DONE 1.5s -2024-03-23T17:44:51Z -2024-03-23T17:44:51Z #13 [ 8/10] RUN jupyter lab build -2024-03-23T17:44:53Z #13 2.059 [LabBuildApp] JupyterLab 3.6.7 -2024-03-23T17:44:53Z #13 2.059 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2024-03-23T17:44:54Z #13 2.707 [LabBuildApp] Building jupyterlab assets (production, minimized) -2024-03-23T17:44:54Z #13 2.727 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. -2024-03-23T17:44:54Z #13 2.727 -2024-03-23T17:47:11Z #13 2.733 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ -2024-03-23T17:47:11Z #13 DONE 140.0s -2024-03-23T17:47:11Z -2024-03-23T17:47:11Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-03-23T17:47:12Z #14 0.704 Enabling: voila -2024-03-23T17:47:12Z #14 0.704 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-23T17:47:12Z #14 0.706 - Validating... -2024-03-23T17:47:13Z #14 1.414 voila 0.5.5 OK -2024-03-23T17:47:13Z #14 1.796 Enabling: panel.io.jupyter_server_extension -2024-03-23T17:47:13Z #14 1.796 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-03-23T17:47:13Z #14 1.798 - Validating... -2024-03-23T17:47:15Z #14 3.385 panel.io.jupyter_server_extension OK -2024-03-23T17:47:15Z #14 3.878 - Validating... -2024-03-23T17:47:16Z #14 4.739 dask_labextension 6.2.0 OK -2024-03-23T17:47:16Z #14 4.739 - Validating... -2024-03-23T17:47:16Z #14 4.739 jupyter_server_proxy 4.1.1-0.dev OK -2024-03-23T17:47:16Z #14 4.739 - Validating... -2024-03-23T17:47:16Z #14 4.913 jupyter_resource_usage 0.7.1 OK -2024-03-23T17:47:16Z #14 4.913 - Validating... -2024-03-23T17:47:16Z #14 4.972  X is jupyter_server_ydoc importable? -2024-03-23T17:47:16Z #14 4.972 - Validating... -2024-03-23T17:47:16Z #14 5.047 jupyterlab 3.6.7 OK -2024-03-23T17:47:16Z #14 5.047 - Validating... -2024-03-23T17:47:17Z #14 5.221 jupyterlab_jupytext OK -2024-03-23T17:47:17Z #14 5.221 - Validating... -2024-03-23T17:47:17Z #14 5.226 mamba_gator 5.2.1 OK -2024-03-23T17:47:17Z #14 5.226 - Validating... -2024-03-23T17:47:17Z #14 5.243 nbdime 4.0.1 OK -2024-03-23T17:47:17Z #14 5.244 - Validating... -2024-03-23T17:47:18Z #14 6.312 panel.io.jupyter_server_extension OK -2024-03-23T17:47:18Z #14 6.312 - Validating... -2024-03-23T17:47:18Z #14 6.382 nbresuse OK -2024-03-23T17:47:18Z #14 6.382 - Validating... -2024-03-23T17:47:18Z #14 6.641 voila.server_extension OK -2024-03-23T17:47:18Z #14 6.641 - Validating... -2024-03-23T17:47:18Z #14 6.643 jupyterlab_git OK -2024-03-23T17:47:18Z #14 6.643 - Validating... -2024-03-23T17:47:18Z #14 6.644 voila 0.5.5 OK -2024-03-23T17:47:18Z #14 6.644 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-03-23T17:47:18Z #14 6.644 dask_labextension  enabled  -2024-03-23T17:47:18Z #14 6.644 jupyter_server_proxy  enabled  -2024-03-23T17:47:18Z #14 6.644 jupyter_resource_usage  enabled  -2024-03-23T17:47:18Z #14 6.644 jupyter_server_ydoc  enabled  -2024-03-23T17:47:18Z #14 6.644 jupyterlab  enabled  -2024-03-23T17:47:18Z #14 6.644 jupyterlab_jupytext  enabled  -2024-03-23T17:47:18Z #14 6.644 mamba_gator  enabled  -2024-03-23T17:47:18Z #14 6.644 nbdime  enabled  -2024-03-23T17:47:18Z #14 6.644 panel.io.jupyter_server_extension  enabled  -2024-03-23T17:47:18Z #14 6.644 nbresuse  enabled  -2024-03-23T17:47:18Z #14 6.644 voila.server_extension  enabled  -2024-03-23T17:47:18Z #14 6.644 jupyterlab_git  enabled  -2024-03-23T17:47:18Z #14 6.644 voila  enabled  -2024-03-23T17:47:18Z #14 DONE 7.1s -2024-03-23T17:47:18Z -2024-03-23T17:47:18Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-03-23T17:47:19Z #15 0.303 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-03-23T17:47:19Z #15 0.328 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.111.133, 185.199.108.133, ... -2024-03-23T17:47:19Z #15 0.331 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-03-23T17:47:19Z #15 0.337 HTTP request sent, awaiting response... 200 OK -2024-03-23T17:47:19Z #15 0.423 Length: 9769 (9.5K) [text/plain] -2024-03-23T17:47:19Z #15 0.423 Saving to: ‘/usr/local/bin/start.sh’ -2024-03-23T17:47:19Z #15 0.427 -2024-03-23T17:47:19Z #15 0.427 0K ......... 100% 4.90M=0.002s -2024-03-23T17:47:19Z #15 0.427 -2024-03-23T17:47:19Z #15 0.427 2024-03-23 17:47:19 (4.90 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-03-23T17:47:19Z #15 0.427 -2024-03-23T17:47:19Z #15 0.429 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-03-23T17:47:19Z #15 0.453 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2024-03-23T17:47:19Z #15 0.454 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-03-23T17:47:19Z #15 0.460 HTTP request sent, awaiting response... 200 OK -2024-03-23T17:47:19Z #15 0.539 Length: 359 [text/plain] -2024-03-23T17:47:19Z #15 0.539 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-03-23T17:47:19Z #15 0.539 -2024-03-23T17:47:19Z #15 0.539 0K 100% 16.3M=0s -2024-03-23T17:47:19Z #15 0.540 -2024-03-23T17:47:19Z #15 0.540 2024-03-23 17:47:19 (16.3 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-03-23T17:47:19Z #15 0.540 -2024-03-23T17:47:19Z #15 0.545 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-03-23T17:47:19Z #15 0.569 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2024-03-23T17:47:19Z #15 0.570 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-03-23T17:47:19Z #15 0.576 HTTP request sent, awaiting response... 200 OK -2024-03-23T17:47:19Z #15 0.652 Length: 852 [text/plain] -2024-03-23T17:47:19Z #15 0.652 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-03-23T17:47:19Z #15 0.653 -2024-03-23T17:47:19Z #15 0.653 0K 100% 39.0M=0s -2024-03-23T17:47:19Z #15 0.653 -2024-03-23T17:47:19Z #15 0.654 2024-03-23 17:47:19 (39.0 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-03-23T17:47:19Z #15 0.654 -2024-03-23T17:47:19Z #15 0.657 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-03-23T17:47:19Z #15 0.682 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2024-03-23T17:47:19Z #15 0.683 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-03-23T17:47:19Z #15 0.689 HTTP request sent, awaiting response... 200 OK -2024-03-23T17:47:19Z #15 0.749 Length: 1034 (1.0K) [text/plain] -2024-03-23T17:47:19Z #15 0.749 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-03-23T17:47:19Z #15 0.749 -2024-03-23T17:47:19Z #15 0.749 0K . 100% 46.1M=0s -2024-03-23T17:47:19Z #15 0.750 -2024-03-23T17:47:19Z #15 0.750 2024-03-23 17:47:19 (46.1 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-03-23T17:47:19Z #15 0.750 -2024-03-23T17:47:19Z #15 0.755 --2024-03-23 17:47:19-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-03-23T17:47:19Z #15 0.780 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2024-03-23T17:47:19Z #15 0.781 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-03-23T17:47:19Z #15 0.786 HTTP request sent, awaiting response... 200 OK -2024-03-23T17:47:19Z #15 0.846 Length: 1836 (1.8K) [text/plain] -2024-03-23T17:47:19Z #15 0.846 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-03-23T17:47:19Z #15 0.846 -2024-03-23T17:47:19Z #15 0.846 0K . 100% 6.08M=0s -2024-03-23T17:47:19Z #15 0.848 -2024-03-23T17:47:19Z #15 0.849 2024-03-23 17:47:19 (6.08 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-03-23T17:47:19Z #15 0.849 -2024-03-23T17:47:19Z #15 1.017 --2024-03-23 17:47:19-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-03-23T17:47:19Z #15 1.041 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.75, 3.162.103.84, 3.162.103.63, ... -2024-03-23T17:47:19Z #15 1.048 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.75|:443... connected. -2024-03-23T17:47:20Z #15 1.055 HTTP request sent, awaiting response... 200 OK -2024-03-23T17:47:20Z #15 1.196 Length: 129825343 (124M) [application/x-tar] -2024-03-23T17:47:20Z #15 1.196 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-03-23T17:47:20Z #15 1.197 -2024-03-23T17:47:20Z #15 1.197 0K .......... .......... .......... .......... .......... 0% 23.0M 5s -2024-03-23T17:47:20Z #15 1.199 50K .......... .......... .......... .......... .......... 0% 27.1M 5s -2024-03-23T17:47:20Z #15 1.200 100K .......... .......... .......... .......... .......... 0% 87.1M 4s -2024-03-23T17:47:20Z #15 1.201 150K .......... .......... .......... .......... .......... 0% 101M 3s -2024-03-23T17:47:20Z #15 1.201 200K .......... .......... .......... .......... .......... 0% 122M 3s -2024-03-23T17:47:20Z #15 1.202 250K .......... .......... .......... .......... .......... 0% 40.1M 3s -2024-03-23T17:47:20Z #15 1.203 300K .......... .......... .......... .......... .......... 0% 21.3M 3s -2024-03-23T17:47:20Z #15 1.205 350K .......... .......... .......... .......... .......... 0% 36.0M 3s -2024-03-23T17:47:20Z #15 1.207 400K .......... .......... .......... .......... .......... 0% 32.7M 3s -2024-03-23T17:47:20Z #15 1.208 450K .......... .......... .......... .......... .......... 0% 22.0M 4s -2024-03-23T17:47:20Z #15 1.210 500K .......... .......... .......... .......... .......... 0% 96.4M 3s -2024-03-23T17:47:20Z #15 1.211 550K .......... .......... .......... .......... .......... 0% 39.0M 3s -2024-03-23T17:47:20Z #15 1.212 600K .......... .......... .......... .......... .......... 0% 44.3M 3s -2024-03-23T17:47:20Z #15 1.213 650K .......... .......... .......... .......... .......... 0% 56.2M 3s -2024-03-23T17:47:20Z #15 1.214 700K .......... .......... .......... .......... .......... 0% 48.2M 3s -2024-03-23T17:47:20Z #15 1.215 750K .......... .......... .......... .......... .......... 0% 42.8M 3s -2024-03-23T17:47:20Z #15 1.217 800K .......... .......... .......... .......... .......... 0% 83.9M 3s -2024-03-23T17:47:20Z #15 1.217 850K .......... .......... .......... .......... .......... 0% 91.3M 3s -2024-03-23T17:47:20Z #15 1.218 900K .......... .......... .......... .......... .......... 0% 37.0M 3s -2024-03-23T17:47:20Z #15 1.219 950K .......... .......... .......... .......... .......... 0% 34.9M 3s -2024-03-23T17:47:20Z #15 1.220 1000K .......... .......... .......... .......... .......... 0% 32.6M 3s -2024-03-23T17:47:20Z #15 1.222 1050K .......... .......... .......... .......... .......... 0% 47.3M 3s -2024-03-23T17:47:20Z #15 1.223 1100K .......... .......... .......... .......... .......... 0% 32.0M 3s -2024-03-23T17:47:20Z #15 1.224 1150K .......... .......... .......... .......... .......... 0% 48.7M 3s -2024-03-23T17:47:20Z #15 1.226 1200K .......... .......... .......... .......... .......... 0% 55.3M 3s -2024-03-23T17:47:20Z #15 1.226 1250K .......... .......... .......... .......... .......... 1% 61.7M 3s -2024-03-23T17:47:20Z #15 1.227 1300K .......... .......... .......... .......... .......... 1% 62.1M 3s -2024-03-23T17:47:20Z #15 1.228 1350K .......... .......... .......... .......... .......... 1% 21.0M 3s -2024-03-23T17:47:20Z #15 1.230 1400K .......... .......... .......... .......... .......... 1% 84.3M 3s -2024-03-23T17:47:20Z #15 1.235 1450K .......... .......... .......... .......... .......... 1% 125M 3s -2024-03-23T17:47:20Z #15 1.235 1500K .......... .......... .......... .......... .......... 1% 126M 3s -2024-03-23T17:47:20Z #15 1.235 1550K .......... .......... .......... .......... .......... 1% 83.4M 3s -2024-03-23T17:47:20Z #15 1.235 1600K .......... .......... .......... .......... .......... 1% 99.1M 3s -2024-03-23T17:47:20Z #15 1.235 1650K .......... .......... .......... .......... .......... 1% 94.2M 3s -2024-03-23T17:47:20Z #15 1.235 1700K .......... .......... .......... .......... .......... 1% 107M 3s -2024-03-23T17:47:20Z #15 1.235 1750K .......... .......... .......... .......... .......... 1% 78.3M 3s -2024-03-23T17:47:20Z #15 1.235 1800K .......... .......... .......... .......... .......... 1% 93.1M 3s -2024-03-23T17:47:20Z #15 1.235 1850K .......... .......... .......... .......... .......... 1% 61.2M 3s -2024-03-23T17:47:20Z #15 1.236 1900K .......... .......... .......... .......... .......... 1% 34.1M 3s -2024-03-23T17:47:20Z #15 1.237 1950K .......... .......... .......... .......... .......... 1% 55.4M 3s -2024-03-23T17:47:20Z #15 1.238 2000K .......... .......... .......... .......... .......... 1% 47.0M 3s -2024-03-23T17:47:20Z #15 1.239 2050K .......... .......... .......... .......... .......... 1% 34.7M 3s -2024-03-23T17:47:20Z #15 1.240 2100K .......... .......... .......... .......... .......... 1% 46.1M 3s -2024-03-23T17:47:20Z #15 1.241 2150K .......... .......... .......... .......... .......... 1% 43.6M 3s -2024-03-23T17:47:20Z #15 1.242 2200K .......... .......... .......... .......... .......... 1% 42.7M 3s -2024-03-23T17:47:20Z #15 1.247 2250K .......... .......... .......... .......... .......... 1% 120M 3s -2024-03-23T17:47:20Z #15 1.247 2300K .......... .......... .......... .......... .......... 1% 78.5M 3s -2024-03-23T17:47:20Z #15 1.247 2350K .......... .......... .......... .......... .......... 1% 83.3M 3s -2024-03-23T17:47:20Z #15 1.247 2400K .......... .......... .......... .......... .......... 1% 82.9M 2s -2024-03-23T17:47:20Z #15 1.247 2450K .......... .......... .......... .......... .......... 1% 113M 2s -2024-03-23T17:47:20Z #15 1.247 2500K .......... .......... .......... .......... .......... 2% 84.8M 2s -2024-03-23T17:47:20Z #15 1.247 2550K .......... .......... .......... .......... .......... 2% 82.5M 2s -2024-03-23T17:47:20Z #15 1.247 2600K .......... .......... .......... .......... .......... 2% 94.1M 2s -2024-03-23T17:47:20Z #15 1.248 2650K .......... .......... .......... .......... .......... 2% 90.0M 2s -2024-03-23T17:47:20Z #15 1.249 2700K .......... .......... .......... .......... .......... 2% 123M 2s -2024-03-23T17:47:20Z #15 1.249 2750K .......... .......... .......... .......... .......... 2% 101M 2s -2024-03-23T17:47:20Z #15 1.249 2800K .......... .......... .......... .......... .......... 2% 92.7M 2s -2024-03-23T17:47:20Z #15 1.250 2850K .......... .......... .......... .......... .......... 2% 125M 2s -2024-03-23T17:47:20Z #15 1.250 2900K .......... .......... .......... .......... .......... 2% 92.1M 2s -2024-03-23T17:47:20Z #15 1.251 2950K .......... .......... .......... .......... .......... 2% 151M 2s -2024-03-23T17:47:20Z #15 1.251 3000K .......... .......... .......... .......... .......... 2% 95.3M 2s -2024-03-23T17:47:20Z #15 1.252 3050K .......... .......... .......... .......... .......... 2% 113M 2s -2024-03-23T17:47:20Z #15 1.252 3100K .......... .......... .......... .......... .......... 2% 84.2M 2s -2024-03-23T17:47:20Z #15 1.252 3150K .......... .......... .......... .......... .......... 2% 142M 2s -2024-03-23T17:47:20Z #15 1.253 3200K .......... .......... .......... .......... .......... 2% 85.1M 2s -2024-03-23T17:47:20Z #15 1.253 3250K .......... .......... .......... .......... .......... 2% 156M 2s -2024-03-23T17:47:20Z #15 1.254 3300K .......... .......... .......... .......... .......... 2% 88.5M 2s -2024-03-23T17:47:20Z #15 1.254 3350K .......... .......... .......... .......... .......... 2% 98.3M 2s -2024-03-23T17:47:20Z #15 1.255 3400K .......... .......... .......... .......... .......... 2% 80.8M 2s -2024-03-23T17:47:20Z #15 1.255 3450K .......... .......... .......... .......... .......... 2% 130M 2s -2024-03-23T17:47:20Z #15 1.256 3500K .......... .......... .......... .......... .......... 2% 111M 2s -2024-03-23T17:47:20Z #15 1.256 3550K .......... .......... .......... .......... .......... 2% 121M 2s -2024-03-23T17:47:20Z #15 1.257 3600K .......... .......... .......... .......... .......... 2% 80.7M 2s -2024-03-23T17:47:20Z #15 1.257 3650K .......... .......... .......... .......... .......... 2% 151M 2s -2024-03-23T17:47:20Z #15 1.258 3700K .......... .......... .......... .......... .......... 2% 97.8M 2s -2024-03-23T17:47:20Z #15 1.258 3750K .......... .......... .......... .......... .......... 2% 164M 2s -2024-03-23T17:47:20Z #15 1.258 3800K .......... .......... .......... .......... .......... 3% 76.4M 2s -2024-03-23T17:47:20Z #15 1.259 3850K .......... .......... .......... .......... .......... 3% 102M 2s -2024-03-23T17:47:20Z #15 1.259 3900K .......... .......... .......... .......... .......... 3% 118M 2s -2024-03-23T17:47:20Z #15 1.260 3950K .......... .......... .......... .......... .......... 3% 93.5M 2s -2024-03-23T17:47:20Z #15 1.260 4000K .......... .......... .......... .......... .......... 3% 102M 2s -2024-03-23T17:47:20Z #15 1.261 4050K .......... .......... .......... .......... .......... 3% 101M 2s -2024-03-23T17:47:20Z #15 1.262 4100K .......... .......... .......... .......... .......... 3% 163M 2s -2024-03-23T17:47:20Z #15 1.262 4150K .......... .......... .......... .......... .......... 3% 93.9M 2s -2024-03-23T17:47:20Z #15 1.262 4200K .......... .......... .......... .......... .......... 3% 110M 2s -2024-03-23T17:47:20Z #15 1.262 4250K .......... .......... .......... .......... .......... 3% 113M 2s -2024-03-23T17:47:20Z #15 1.263 4300K .......... .......... .......... .......... .......... 3% 122M 2s -2024-03-23T17:47:20Z #15 1.263 4350K .......... .......... .......... .......... .......... 3% 96.4M 2s -2024-03-23T17:47:20Z #15 1.264 4400K .......... .......... .......... .......... .......... 3% 78.1M 2s -2024-03-23T17:47:20Z #15 1.265 4450K .......... .......... .......... .......... .......... 3% 166M 2s -2024-03-23T17:47:20Z #15 1.265 4500K .......... .......... .......... .......... .......... 3% 95.1M 2s -2024-03-23T17:47:20Z #15 1.266 4550K .......... .......... .......... .......... .......... 3% 120M 2s -2024-03-23T17:47:20Z #15 1.266 4600K .......... .......... .......... .......... .......... 3% 88.8M 2s -2024-03-23T17:47:20Z #15 1.266 4650K .......... .......... .......... .......... .......... 3% 123M 2s -2024-03-23T17:47:20Z #15 1.267 4700K .......... .......... .......... .......... .......... 3% 118M 2s -2024-03-23T17:47:20Z #15 1.268 4750K .......... .......... .......... .......... .......... 3% 97.4M 2s -2024-03-23T17:47:20Z #15 1.268 4800K .......... .......... .......... .......... .......... 3% 83.9M 2s -2024-03-23T17:47:20Z #15 1.273 4850K .......... .......... .......... .......... .......... 3% 138M 2s -2024-03-23T17:47:20Z #15 1.273 4900K .......... .......... .......... .......... .......... 3% 62.5M 2s -2024-03-23T17:47:20Z #15 1.273 4950K .......... .......... .......... .......... .......... 3% 67.4M 2s -2024-03-23T17:47:20Z #15 1.273 5000K .......... .......... .......... .......... .......... 3% 72.1M 2s -2024-03-23T17:47:20Z #15 1.273 5050K .......... .......... .......... .......... .......... 4% 111M 2s -2024-03-23T17:47:20Z #15 1.274 5100K .......... .......... .......... .......... .......... 4% 95.1M 2s -2024-03-23T17:47:20Z #15 1.274 5150K .......... .......... .......... .......... .......... 4% 40.9M 2s -2024-03-23T17:47:20Z #15 1.274 5200K .......... .......... .......... .......... .......... 4% 70.0M 2s -2024-03-23T17:47:20Z #15 1.274 5250K .......... .......... .......... .......... .......... 4% 137M 2s -2024-03-23T17:47:20Z #15 1.274 5300K .......... .......... .......... .......... .......... 4% 150M 2s -2024-03-23T17:47:20Z #15 1.274 5350K .......... .......... .......... .......... .......... 4% 77.3M 2s -2024-03-23T17:47:20Z #15 1.275 5400K .......... .......... .......... .......... .......... 4% 117M 2s -2024-03-23T17:47:20Z #15 1.275 5450K .......... .......... .......... .......... .......... 4% 67.5M 2s -2024-03-23T17:47:20Z #15 1.276 5500K .......... .......... .......... .......... .......... 4% 115M 2s -2024-03-23T17:47:20Z #15 1.277 5550K .......... .......... .......... .......... .......... 4% 65.9M 2s -2024-03-23T17:47:20Z #15 1.278 5600K .......... .......... .......... .......... .......... 4% 117M 2s -2024-03-23T17:47:20Z #15 1.278 5650K .......... .......... .......... .......... .......... 4% 49.9M 2s -2024-03-23T17:47:20Z #15 1.279 5700K .......... .......... .......... .......... .......... 4% 80.2M 2s -2024-03-23T17:47:20Z #15 1.280 5750K .......... .......... .......... .......... .......... 4% 114M 2s -2024-03-23T17:47:20Z #15 1.280 5800K .......... .......... .......... .......... .......... 4% 89.9M 2s -2024-03-23T17:47:20Z #15 1.281 5850K .......... .......... .......... .......... .......... 4% 72.8M 2s -2024-03-23T17:47:20Z #15 1.281 5900K .......... .......... .......... .......... .......... 4% 111M 2s -2024-03-23T17:47:20Z #15 1.282 5950K .......... .......... .......... .......... .......... 4% 92.4M 2s -2024-03-23T17:47:20Z #15 1.282 6000K .......... .......... .......... .......... .......... 4% 74.7M 2s -2024-03-23T17:47:20Z #15 1.283 6050K .......... .......... .......... .......... .......... 4% 55.8M 2s -2024-03-23T17:47:20Z #15 1.284 6100K .......... .......... .......... .......... .......... 4% 118M 2s -2024-03-23T17:47:20Z #15 1.284 6150K .......... .......... .......... .......... .......... 4% 133M 2s -2024-03-23T17:47:20Z #15 1.284 6200K .......... .......... .......... .......... .......... 4% 89.9M 2s -2024-03-23T17:47:20Z #15 1.285 6250K .......... .......... .......... .......... .......... 4% 98.3M 2s -2024-03-23T17:47:20Z #15 1.286 6300K .......... .......... .......... .......... .......... 5% 47.2M 2s -2024-03-23T17:47:20Z #15 1.287 6350K .......... .......... .......... .......... .......... 5% 59.1M 2s -2024-03-23T17:47:20Z #15 1.288 6400K .......... .......... .......... .......... .......... 5% 96.2M 2s -2024-03-23T17:47:20Z #15 1.288 6450K .......... .......... .......... .......... .......... 5% 139M 2s -2024-03-23T17:47:20Z #15 1.288 6500K .......... .......... .......... .......... .......... 5% 78.7M 2s -2024-03-23T17:47:20Z #15 1.289 6550K .......... .......... .......... .......... .......... 5% 79.9M 2s -2024-03-23T17:47:20Z #15 1.289 6600K .......... .......... .......... .......... .......... 5% 97.5M 2s -2024-03-23T17:47:20Z #15 1.291 6650K .......... .......... .......... .......... .......... 5% 83.9M 2s -2024-03-23T17:47:20Z #15 1.291 6700K .......... .......... .......... .......... .......... 5% 99.0M 2s -2024-03-23T17:47:20Z #15 1.291 6750K .......... .......... .......... .......... .......... 5% 66.9M 2s -2024-03-23T17:47:20Z #15 1.292 6800K .......... .......... .......... .......... .......... 5% 106M 2s -2024-03-23T17:47:20Z #15 1.293 6850K .......... .......... .......... .......... .......... 5% 102M 2s -2024-03-23T17:47:20Z #15 1.293 6900K .......... .......... .......... .......... .......... 5% 56.7M 2s -2024-03-23T17:47:20Z #15 1.294 6950K .......... .......... .......... .......... .......... 5% 84.7M 2s -2024-03-23T17:47:20Z #15 1.294 7000K .......... .......... .......... .......... .......... 5% 108M 2s -2024-03-23T17:47:20Z #15 1.295 7050K .......... .......... .......... .......... .......... 5% 86.2M 2s -2024-03-23T17:47:20Z #15 1.295 7100K .......... .......... .......... .......... .......... 5% 50.2M 2s -2024-03-23T17:47:20Z #15 1.296 7150K .......... .......... .......... .......... .......... 5% 81.3M 2s -2024-03-23T17:47:20Z #15 1.296 7200K .......... .......... .......... .......... .......... 5% 100M 2s -2024-03-23T17:47:20Z #15 1.297 7250K .......... .......... .......... .......... .......... 5% 68.3M 2s -2024-03-23T17:47:20Z #15 1.298 7300K .......... .......... .......... .......... .......... 5% 57.3M 2s -2024-03-23T17:47:20Z #15 1.299 7350K .......... .......... .......... .......... .......... 5% 113M 2s -2024-03-23T17:47:20Z #15 1.299 7400K .......... .......... .......... .......... .......... 5% 77.9M 2s -2024-03-23T17:47:20Z #15 1.300 7450K .......... .......... .......... .......... .......... 5% 90.0M 2s -2024-03-23T17:47:20Z #15 1.300 7500K .......... .......... .......... .......... .......... 5% 36.3M 2s -2024-03-23T17:47:20Z #15 1.301 7550K .......... .......... .......... .......... .......... 5% 38.6M 2s -2024-03-23T17:47:20Z #15 1.303 7600K .......... .......... .......... .......... .......... 6% 25.4M 2s -2024-03-23T17:47:20Z #15 1.305 7650K .......... .......... .......... .......... .......... 6% 41.6M 2s -2024-03-23T17:47:20Z #15 1.306 7700K .......... .......... .......... .......... .......... 6% 40.2M 2s -2024-03-23T17:47:20Z #15 1.311 7750K .......... .......... .......... .......... .......... 6% 107M 2s -2024-03-23T17:47:20Z #15 1.311 7800K .......... .......... .......... .......... .......... 6% 108M 2s -2024-03-23T17:47:20Z #15 1.311 7850K .......... .......... .......... .......... .......... 6% 95.3M 2s -2024-03-23T17:47:20Z #15 1.311 7900K .......... .......... .......... .......... .......... 6% 71.3M 2s -2024-03-23T17:47:20Z #15 1.311 7950K .......... .......... .......... .......... .......... 6% 104M 2s -2024-03-23T17:47:20Z #15 1.311 8000K .......... .......... .......... .......... .......... 6% 90.6M 2s -2024-03-23T17:47:20Z #15 1.311 8050K .......... .......... .......... .......... .......... 6% 81.0M 2s -2024-03-23T17:47:20Z #15 1.311 8100K .......... .......... .......... .......... .......... 6% 22.9M 2s -2024-03-23T17:47:20Z #15 1.314 8150K .......... .......... .......... .......... .......... 6% 96.8M 2s -2024-03-23T17:47:20Z #15 1.314 8200K .......... .......... .......... .......... .......... 6% 97.1M 2s -2024-03-23T17:47:20Z #15 1.314 8250K .......... .......... .......... .......... .......... 6% 123M 2s -2024-03-23T17:47:20Z #15 1.315 8300K .......... .......... .......... .......... .......... 6% 24.3M 2s -2024-03-23T17:47:20Z #15 1.316 8350K .......... .......... .......... .......... .......... 6% 102M 2s -2024-03-23T17:47:20Z #15 1.319 8400K .......... .......... .......... .......... .......... 6% 84.6M 2s -2024-03-23T17:47:20Z #15 1.319 8450K .......... .......... .......... .......... .......... 6% 124M 2s -2024-03-23T17:47:20Z #15 1.319 8500K .......... .......... .......... .......... .......... 6% 68.3M 2s -2024-03-23T17:47:20Z #15 1.319 8550K .......... .......... .......... .......... .......... 6% 43.5M 2s -2024-03-23T17:47:20Z #15 1.320 8600K .......... .......... .......... .......... .......... 6% 37.8M 2s -2024-03-23T17:47:20Z #15 1.323 8650K .......... .......... .......... .......... .......... 6% 135M 2s -2024-03-23T17:47:20Z #15 1.323 8700K .......... .......... .......... .......... .......... 6% 92.9M 2s -2024-03-23T17:47:20Z #15 1.323 8750K .......... .......... .......... .......... .......... 6% 116M 2s -2024-03-23T17:47:20Z #15 1.323 8800K .......... .......... .......... .......... .......... 6% 85.7M 2s -2024-03-23T17:47:20Z #15 1.323 8850K .......... .......... .......... .......... .......... 7% 39.5M 2s -2024-03-23T17:47:20Z #15 1.325 8900K .......... .......... .......... .......... .......... 7% 91.2M 2s -2024-03-23T17:47:20Z #15 1.325 8950K .......... .......... .......... .......... .......... 7% 29.7M 2s -2024-03-23T17:47:20Z #15 1.327 9000K .......... .......... .......... .......... .......... 7% 24.4M 2s -2024-03-23T17:47:20Z #15 1.328 9050K .......... .......... .......... .......... .......... 7% 81.1M 2s -2024-03-23T17:47:20Z #15 1.329 9100K .......... .......... .......... .......... .......... 7% 118M 2s -2024-03-23T17:47:20Z #15 1.329 9150K .......... .......... .......... .......... .......... 7% 51.8M 2s -2024-03-23T17:47:20Z #15 1.330 9200K .......... .......... .......... .......... .......... 7% 77.7M 2s -2024-03-23T17:47:20Z #15 1.332 9250K .......... .......... .......... .......... .......... 7% 88.1M 2s -2024-03-23T17:47:20Z #15 1.332 9300K .......... .......... .......... .......... .......... 7% 81.4M 2s -2024-03-23T17:47:20Z #15 1.333 9350K .......... .......... .......... .......... .......... 7% 70.0M 2s -2024-03-23T17:47:20Z #15 1.333 9400K .......... .......... .......... .......... .......... 7% 67.2M 2s -2024-03-23T17:47:20Z #15 1.334 9450K .......... .......... .......... .......... .......... 7% 108M 2s -2024-03-23T17:47:20Z #15 1.334 9500K .......... .......... .......... .......... .......... 7% 79.4M 2s -2024-03-23T17:47:20Z #15 1.335 9550K .......... .......... .......... .......... .......... 7% 72.3M 2s -2024-03-23T17:47:20Z #15 1.335 9600K .......... .......... .......... .......... .......... 7% 96.0M 2s -2024-03-23T17:47:20Z #15 1.336 9650K .......... .......... .......... .......... .......... 7% 54.6M 2s -2024-03-23T17:47:20Z #15 1.337 9700K .......... .......... .......... .......... .......... 7% 59.3M 2s -2024-03-23T17:47:20Z #15 1.338 9750K .......... .......... .......... .......... .......... 7% 123M 2s -2024-03-23T17:47:20Z #15 1.338 9800K .......... .......... .......... .......... .......... 7% 76.7M 2s -2024-03-23T17:47:20Z #15 1.338 9850K .......... .......... .......... .......... .......... 7% 26.9M 2s -2024-03-23T17:47:20Z #15 1.340 9900K .......... .......... .......... .......... .......... 7% 25.4M 2s -2024-03-23T17:47:20Z #15 1.342 9950K .......... .......... .......... .......... .......... 7% 48.8M 2s -2024-03-23T17:47:20Z #15 1.348 10000K .......... .......... .......... .......... .......... 7% 168M 2s -2024-03-23T17:47:20Z #15 1.348 10050K .......... .......... .......... .......... .......... 7% 128M 2s -2024-03-23T17:47:20Z #15 1.348 10100K .......... .......... .......... .......... .......... 8% 103M 2s -2024-03-23T17:47:20Z #15 1.348 10150K .......... .......... .......... .......... .......... 8% 128M 2s -2024-03-23T17:47:20Z #15 1.348 10200K .......... .......... .......... .......... .......... 8% 86.7M 2s -2024-03-23T17:47:20Z #15 1.348 10250K .......... .......... .......... .......... .......... 8% 110M 2s -2024-03-23T17:47:20Z #15 1.348 10300K .......... .......... .......... .......... .......... 8% 97.5M 2s -2024-03-23T17:47:20Z #15 1.348 10350K .......... .......... .......... .......... .......... 8% 99.1M 2s -2024-03-23T17:47:20Z #15 1.348 10400K .......... .......... .......... .......... .......... 8% 79.2M 2s -2024-03-23T17:47:20Z #15 1.348 10450K .......... .......... .......... .......... .......... 8% 86.7M 2s -2024-03-23T17:47:20Z #15 1.348 10500K .......... .......... .......... .......... .......... 8% 21.0M 2s -2024-03-23T17:47:20Z #15 1.350 10550K .......... .......... .......... .......... .......... 8% 30.5M 2s -2024-03-23T17:47:20Z #15 1.352 10600K .......... .......... .......... .......... .......... 8% 146M 2s -2024-03-23T17:47:20Z #15 1.352 10650K .......... .......... .......... .......... .......... 8% 32.9M 2s -2024-03-23T17:47:20Z #15 1.354 10700K .......... .......... .......... .......... .......... 8% 33.9M 2s -2024-03-23T17:47:20Z #15 1.356 10750K .......... .......... .......... .......... .......... 8% 133M 2s -2024-03-23T17:47:20Z #15 1.356 10800K .......... .......... .......... .......... .......... 8% 141M 2s -2024-03-23T17:47:20Z #15 1.356 10850K .......... .......... .......... .......... .......... 8% 81.9M 2s -2024-03-23T17:47:20Z #15 1.357 10900K .......... .......... .......... .......... .......... 8% 74.6M 2s -2024-03-23T17:47:20Z #15 1.357 10950K .......... .......... .......... .......... .......... 8% 73.1M 2s -2024-03-23T17:47:20Z #15 1.358 11000K .......... .......... .......... .......... .......... 8% 45.9M 2s -2024-03-23T17:47:20Z #15 1.359 11050K .......... .......... .......... .......... .......... 8% 59.0M 2s -2024-03-23T17:47:20Z #15 1.360 11100K .......... .......... .......... .......... .......... 8% 92.0M 2s -2024-03-23T17:47:20Z #15 1.360 11150K .......... .......... .......... .......... .......... 8% 56.3M 2s -2024-03-23T17:47:20Z #15 1.361 11200K .......... .......... .......... .......... .......... 8% 48.0M 2s -2024-03-23T17:47:20Z #15 1.362 11250K .......... .......... .......... .......... .......... 8% 50.9M 2s -2024-03-23T17:47:20Z #15 1.363 11300K .......... .......... .......... .......... .......... 8% 91.7M 2s -2024-03-23T17:47:20Z #15 1.363 11350K .......... .......... .......... .......... .......... 8% 20.5M 2s -2024-03-23T17:47:20Z #15 1.366 11400K .......... .......... .......... .......... .......... 9% 40.5M 2s -2024-03-23T17:47:20Z #15 1.367 11450K .......... .......... .......... .......... .......... 9% 99.8M 2s -2024-03-23T17:47:20Z #15 1.367 11500K .......... .......... .......... .......... .......... 9% 79.1M 2s -2024-03-23T17:47:20Z #15 1.368 11550K .......... .......... .......... .......... .......... 9% 29.8M 2s -2024-03-23T17:47:20Z #15 1.370 11600K .......... .......... .......... .......... .......... 9% 49.2M 2s -2024-03-23T17:47:20Z #15 1.371 11650K .......... .......... .......... .......... .......... 9% 69.1M 2s -2024-03-23T17:47:20Z #15 1.372 11700K .......... .......... .......... .......... .......... 9% 55.2M 2s -2024-03-23T17:47:20Z #15 1.373 11750K .......... .......... .......... .......... .......... 9% 54.0M 2s -2024-03-23T17:47:20Z #15 1.374 11800K .......... .......... .......... .......... .......... 9% 82.1M 2s -2024-03-23T17:47:20Z #15 1.374 11850K .......... .......... .......... .......... .......... 9% 60.1M 2s -2024-03-23T17:47:20Z #15 1.375 11900K .......... .......... .......... .......... .......... 9% 52.4M 2s -2024-03-23T17:47:20Z #15 1.376 11950K .......... .......... .......... .......... .......... 9% 62.2M 2s -2024-03-23T17:47:20Z #15 1.376 12000K .......... .......... .......... .......... .......... 9% 71.7M 2s -2024-03-23T17:47:20Z #15 1.377 12050K .......... .......... .......... .......... .......... 9% 56.1M 2s -2024-03-23T17:47:20Z #15 1.378 12100K .......... .......... .......... .......... .......... 9% 121M 2s -2024-03-23T17:47:20Z #15 1.379 12150K .......... .......... .......... .......... .......... 9% 45.2M 2s -2024-03-23T17:47:20Z #15 1.380 12200K .......... .......... .......... .......... .......... 9% 103M 2s -2024-03-23T17:47:20Z #15 1.380 12250K .......... .......... .......... .......... .......... 9% 86.5M 2s -2024-03-23T17:47:20Z #15 1.381 12300K .......... .......... .......... .......... .......... 9% 44.2M 2s -2024-03-23T17:47:20Z #15 1.382 12350K .......... .......... .......... .......... .......... 9% 75.1M 2s -2024-03-23T17:47:20Z #15 1.382 12400K .......... .......... .......... .......... .......... 9% 60.5M 2s -2024-03-23T17:47:20Z #15 1.383 12450K .......... .......... .......... .......... .......... 9% 55.1M 2s -2024-03-23T17:47:20Z #15 1.384 12500K .......... .......... .......... .......... .......... 9% 62.7M 2s -2024-03-23T17:47:20Z #15 1.385 12550K .......... .......... .......... .......... .......... 9% 88.1M 2s -2024-03-23T17:47:20Z #15 1.386 12600K .......... .......... .......... .......... .......... 9% 55.7M 2s -2024-03-23T17:47:20Z #15 1.386 12650K .......... .......... .......... .......... .......... 10% 59.6M 2s -2024-03-23T17:47:20Z #15 1.387 12700K .......... .......... .......... .......... .......... 10% 64.6M 2s -2024-03-23T17:47:20Z #15 1.388 12750K .......... .......... .......... .......... .......... 10% 56.5M 2s -2024-03-23T17:47:20Z #15 1.389 12800K .......... .......... .......... .......... .......... 10% 54.4M 2s -2024-03-23T17:47:20Z #15 1.390 12850K .......... .......... .......... .......... .......... 10% 39.4M 2s -2024-03-23T17:47:20Z #15 1.391 12900K .......... .......... .......... .......... .......... 10% 32.5M 2s -2024-03-23T17:47:20Z #15 1.392 12950K .......... .......... .......... .......... .......... 10% 88.8M 2s -2024-03-23T17:47:20Z #15 1.395 13000K .......... .......... .......... .......... .......... 10% 155M 2s -2024-03-23T17:47:20Z #15 1.395 13050K .......... .......... .......... .......... .......... 10% 107M 2s -2024-03-23T17:47:20Z #15 1.395 13100K .......... .......... .......... .......... .......... 10% 178M 2s -2024-03-23T17:47:20Z #15 1.395 13150K .......... .......... .......... .......... .......... 10% 97.5M 2s -2024-03-23T17:47:20Z #15 1.395 13200K .......... .......... .......... .......... .......... 10% 122M 2s -2024-03-23T17:47:20Z #15 1.395 13250K .......... .......... .......... .......... .......... 10% 31.5M 2s -2024-03-23T17:47:20Z #15 1.396 13300K .......... .......... .......... .......... .......... 10% 62.2M 2s -2024-03-23T17:47:20Z #15 1.398 13350K .......... .......... .......... .......... .......... 10% 113M 2s -2024-03-23T17:47:20Z #15 1.398 13400K .......... .......... .......... .......... .......... 10% 165M 2s -2024-03-23T17:47:20Z #15 1.398 13450K .......... .......... .......... .......... .......... 10% 131M 2s -2024-03-23T17:47:20Z #15 1.398 13500K .......... .......... .......... .......... .......... 10% 96.3M 2s -2024-03-23T17:47:20Z #15 1.399 13550K .......... .......... .......... .......... .......... 10% 23.2M 2s -2024-03-23T17:47:20Z #15 1.401 13600K .......... .......... .......... .......... .......... 10% 89.4M 2s -2024-03-23T17:47:20Z #15 1.402 13650K .......... .......... .......... .......... .......... 10% 108M 2s -2024-03-23T17:47:20Z #15 1.402 13700K .......... .......... .......... .......... .......... 10% 57.1M 2s -2024-03-23T17:47:20Z #15 1.403 13750K .......... .......... .......... .......... .......... 10% 35.1M 2s -2024-03-23T17:47:20Z #15 1.404 13800K .......... .......... .......... .......... .......... 10% 29.8M 2s -2024-03-23T17:47:20Z #15 1.406 13850K .......... .......... .......... .......... .......... 10% 149M 2s -2024-03-23T17:47:20Z #15 1.406 13900K .......... .......... .......... .......... .......... 11% 53.0M 2s -2024-03-23T17:47:20Z #15 1.407 13950K .......... .......... .......... .......... .......... 11% 41.2M 2s -2024-03-23T17:47:20Z #15 1.408 14000K .......... .......... .......... .......... .......... 11% 98.4M 2s -2024-03-23T17:47:20Z #15 1.409 14050K .......... .......... .......... .......... .......... 11% 110M 2s -2024-03-23T17:47:20Z #15 1.409 14100K .......... .......... .......... .......... .......... 11% 32.8M 2s -2024-03-23T17:47:20Z #15 1.410 14150K .......... .......... .......... .......... .......... 11% 67.6M 2s -2024-03-23T17:47:20Z #15 1.411 14200K .......... .......... .......... .......... .......... 11% 138M 2s -2024-03-23T17:47:20Z #15 1.412 14250K .......... .......... .......... .......... .......... 11% 162M 2s -2024-03-23T17:47:20Z #15 1.412 14300K .......... .......... .......... .......... .......... 11% 98.0M 2s -2024-03-23T17:47:20Z #15 1.412 14350K .......... .......... .......... .......... .......... 11% 95.5M 2s -2024-03-23T17:47:20Z #15 1.413 14400K .......... .......... .......... .......... .......... 11% 91.8M 2s -2024-03-23T17:47:20Z #15 1.413 14450K .......... .......... .......... .......... .......... 11% 112M 2s -2024-03-23T17:47:20Z #15 1.414 14500K .......... .......... .......... .......... .......... 11% 171M 2s -2024-03-23T17:47:20Z #15 1.414 14550K .......... .......... .......... .......... .......... 11% 99.7M 2s -2024-03-23T17:47:20Z #15 1.415 14600K .......... .......... .......... .......... .......... 11% 89.1M 2s -2024-03-23T17:47:20Z #15 1.415 14650K .......... .......... .......... .......... .......... 11% 91.3M 2s -2024-03-23T17:47:20Z #15 1.416 14700K .......... .......... .......... .......... .......... 11% 131M 2s -2024-03-23T17:47:20Z #15 1.416 14750K .......... .......... .......... .......... .......... 11% 107M 2s -2024-03-23T17:47:20Z #15 1.417 14800K .......... .......... .......... .......... .......... 11% 84.4M 2s -2024-03-23T17:47:20Z #15 1.417 14850K .......... .......... .......... .......... .......... 11% 118M 2s -2024-03-23T17:47:20Z #15 1.418 14900K .......... .......... .......... .......... .......... 11% 91.9M 2s -2024-03-23T17:47:20Z #15 1.418 14950K .......... .......... .......... .......... .......... 11% 87.8M 2s -2024-03-23T17:47:20Z #15 1.418 15000K .......... .......... .......... .......... .......... 11% 112M 2s -2024-03-23T17:47:20Z #15 1.419 15050K .......... .......... .......... .......... .......... 11% 171M 2s -2024-03-23T17:47:20Z #15 1.420 15100K .......... .......... .......... .......... .......... 11% 82.8M 2s -2024-03-23T17:47:20Z #15 1.420 15150K .......... .......... .......... .......... .......... 11% 156M 2s -2024-03-23T17:47:20Z #15 1.420 15200K .......... .......... .......... .......... .......... 12% 59.4M 2s -2024-03-23T17:47:20Z #15 1.421 15250K .......... .......... .......... .......... .......... 12% 162M 2s -2024-03-23T17:47:20Z #15 1.421 15300K .......... .......... .......... .......... .......... 12% 77.0M 2s -2024-03-23T17:47:20Z #15 1.422 15350K .......... .......... .......... .......... .......... 12% 157M 2s -2024-03-23T17:47:20Z #15 1.422 15400K .......... .......... .......... .......... .......... 12% 101M 2s -2024-03-23T17:47:20Z #15 1.427 15450K .......... .......... .......... .......... .......... 12% 143M 2s -2024-03-23T17:47:20Z #15 1.427 15500K .......... .......... .......... .......... .......... 12% 175M 2s -2024-03-23T17:47:20Z #15 1.427 15550K .......... .......... .......... .......... .......... 12% 107M 2s -2024-03-23T17:47:20Z #15 1.427 15600K .......... .......... .......... .......... .......... 12% 82.5M 2s -2024-03-23T17:47:20Z #15 1.427 15650K .......... .......... .......... .......... .......... 12% 97.0M 2s -2024-03-23T17:47:20Z #15 1.427 15700K .......... .......... .......... .......... .......... 12% 156M 2s -2024-03-23T17:47:20Z #15 1.427 15750K .......... .......... .......... .......... .......... 12% 174M 2s -2024-03-23T17:47:20Z #15 1.427 15800K .......... .......... .......... .......... .......... 12% 79.1M 2s -2024-03-23T17:47:20Z #15 1.427 15850K .......... .......... .......... .......... .......... 12% 109M 2s -2024-03-23T17:47:20Z #15 1.427 15900K .......... .......... .......... .......... .......... 12% 76.8M 2s -2024-03-23T17:47:20Z #15 1.427 15950K .......... .......... .......... .......... .......... 12% 137M 2s -2024-03-23T17:47:20Z #15 1.427 16000K .......... .......... .......... .......... .......... 12% 102M 2s -2024-03-23T17:47:20Z #15 1.428 16050K .......... .......... .......... .......... .......... 12% 133M 2s -2024-03-23T17:47:20Z #15 1.428 16100K .......... .......... .......... .......... .......... 12% 95.0M 2s -2024-03-23T17:47:20Z #15 1.429 16150K .......... .......... .......... .......... .......... 12% 127M 2s -2024-03-23T17:47:20Z #15 1.429 16200K .......... .......... .......... .......... .......... 12% 96.4M 2s -2024-03-23T17:47:20Z #15 1.430 16250K .......... .......... .......... .......... .......... 12% 150M 2s -2024-03-23T17:47:20Z #15 1.430 16300K .......... .......... .......... .......... .......... 12% 90.3M 2s -2024-03-23T17:47:20Z #15 1.431 16350K .......... .......... .......... .......... .......... 12% 91.0M 2s -2024-03-23T17:47:20Z #15 1.431 16400K .......... .......... .......... .......... .......... 12% 103M 2s -2024-03-23T17:47:20Z #15 1.431 16450K .......... .......... .......... .......... .......... 13% 149M 2s -2024-03-23T17:47:20Z #15 1.432 16500K .......... .......... .......... .......... .......... 13% 85.1M 2s -2024-03-23T17:47:20Z #15 1.433 16550K .......... .......... .......... .......... .......... 13% 105M 2s -2024-03-23T17:47:20Z #15 1.433 16600K .......... .......... .......... .......... .......... 13% 121M 2s -2024-03-23T17:47:20Z #15 1.433 16650K .......... .......... .......... .......... .......... 13% 168M 2s -2024-03-23T17:47:20Z #15 1.434 16700K .......... .......... .......... .......... .......... 13% 101M 2s -2024-03-23T17:47:20Z #15 1.435 16750K .......... .......... .......... .......... .......... 13% 108M 2s -2024-03-23T17:47:20Z #15 1.435 16800K .......... .......... .......... .......... .......... 13% 151M 2s -2024-03-23T17:47:20Z #15 1.435 16850K .......... .......... .......... .......... .......... 13% 115M 2s -2024-03-23T17:47:20Z #15 1.435 16900K .......... .......... .......... .......... .......... 13% 95.9M 2s -2024-03-23T17:47:20Z #15 1.436 16950K .......... .......... .......... .......... .......... 13% 113M 2s -2024-03-23T17:47:20Z #15 1.437 17000K .......... .......... .......... .......... .......... 13% 168M 2s -2024-03-23T17:47:20Z #15 1.437 17050K .......... .......... .......... .......... .......... 13% 168M 2s -2024-03-23T17:47:20Z #15 1.437 17100K .......... .......... .......... .......... .......... 13% 152M 2s -2024-03-23T17:47:20Z #15 1.437 17150K .......... .......... .......... .......... .......... 13% 148M 2s -2024-03-23T17:47:20Z #15 1.437 17200K .......... .......... .......... .......... .......... 13% 159M 2s -2024-03-23T17:47:20Z #15 1.438 17250K .......... .......... .......... .......... .......... 13% 174M 2s -2024-03-23T17:47:20Z #15 1.439 17300K .......... .......... .......... .......... .......... 13% 1.44M 2s -2024-03-23T17:47:20Z #15 1.473 17350K .......... .......... .......... .......... .......... 13% 132M 2s -2024-03-23T17:47:20Z #15 1.474 17400K .......... .......... .......... .......... .......... 13% 96.5M 2s -2024-03-23T17:47:20Z #15 1.474 17450K .......... .......... .......... .......... .......... 13% 53.6M 2s -2024-03-23T17:47:20Z #15 1.474 17500K .......... .......... .......... .......... .......... 13% 58.0M 2s -2024-03-23T17:47:20Z #15 1.475 17550K .......... .......... .......... .......... .......... 13% 53.0M 2s -2024-03-23T17:47:20Z #15 1.479 17600K .......... .......... .......... .......... .......... 13% 60.8M 2s -2024-03-23T17:47:20Z #15 1.479 17650K .......... .......... .......... .......... .......... 13% 132M 2s -2024-03-23T17:47:20Z #15 1.479 17700K .......... .......... .......... .......... .......... 14% 138M 2s -2024-03-23T17:47:20Z #15 1.479 17750K .......... .......... .......... .......... .......... 14% 152M 2s -2024-03-23T17:47:20Z #15 1.479 17800K .......... .......... .......... .......... .......... 14% 161M 2s -2024-03-23T17:47:20Z #15 1.479 17850K .......... .......... .......... .......... .......... 14% 157M 2s -2024-03-23T17:47:20Z #15 1.479 17900K .......... .......... .......... .......... .......... 14% 138M 2s -2024-03-23T17:47:20Z #15 1.479 17950K .......... .......... .......... .......... .......... 14% 164M 2s -2024-03-23T17:47:20Z #15 1.483 18000K .......... .......... .......... .......... .......... 14% 6.83M 2s -2024-03-23T17:47:20Z #15 1.487 18050K .......... .......... .......... .......... .......... 14% 16.4M 2s -2024-03-23T17:47:20Z #15 1.491 18100K .......... .......... .......... .......... .......... 14% 27.2M 2s -2024-03-23T17:47:20Z #15 1.491 18150K .......... .......... .......... .......... .......... 14% 66.4M 2s -2024-03-23T17:47:20Z #15 1.491 18200K .......... .......... .......... .......... .......... 14% 156M 2s -2024-03-23T17:47:20Z #15 1.492 18250K .......... .......... .......... .......... .......... 14% 141M 2s -2024-03-23T17:47:20Z #15 1.492 18300K .......... .......... .......... .......... .......... 14% 130M 2s -2024-03-23T17:47:20Z #15 1.492 18350K .......... .......... .......... .......... .......... 14% 145M 2s -2024-03-23T17:47:20Z #15 1.493 18400K .......... .......... .......... .......... .......... 14% 155M 2s -2024-03-23T17:47:20Z #15 1.493 18450K .......... .......... .......... .......... .......... 14% 152M 2s -2024-03-23T17:47:20Z #15 1.493 18500K .......... .......... .......... .......... .......... 14% 11.0M 2s -2024-03-23T17:47:20Z #15 1.498 18550K .......... .......... .......... .......... .......... 14% 142M 2s -2024-03-23T17:47:20Z #15 1.498 18600K .......... .......... .......... .......... .......... 14% 141M 2s -2024-03-23T17:47:20Z #15 1.498 18650K .......... .......... .......... .......... .......... 14% 20.0M 2s -2024-03-23T17:47:20Z #15 1.501 18700K .......... .......... .......... .......... .......... 14% 20.3M 2s -2024-03-23T17:47:20Z #15 1.504 18750K .......... .......... .......... .......... .......... 14% 23.6M 2s -2024-03-23T17:47:20Z #15 1.507 18800K .......... .......... .......... .......... .......... 14% 31.3M 2s -2024-03-23T17:47:20Z #15 1.507 18850K .......... .......... .......... .......... .......... 14% 39.4M 2s -2024-03-23T17:47:20Z #15 1.508 18900K .......... .......... .......... .......... .......... 14% 123M 2s -2024-03-23T17:47:20Z #15 1.509 18950K .......... .......... .......... .......... .......... 14% 145M 2s -2024-03-23T17:47:20Z #15 1.509 19000K .......... .......... .......... .......... .......... 15% 86.1M 2s -2024-03-23T17:47:20Z #15 1.510 19050K .......... .......... .......... .......... .......... 15% 55.4M 2s -2024-03-23T17:47:20Z #15 1.510 19100K .......... .......... .......... .......... .......... 15% 18.7M 2s -2024-03-23T17:47:20Z #15 1.515 19150K .......... .......... .......... .......... .......... 15% 138M 2s -2024-03-23T17:47:20Z #15 1.515 19200K .......... .......... .......... .......... .......... 15% 148M 2s -2024-03-23T17:47:20Z #15 1.515 19250K .......... .......... .......... .......... .......... 15% 114M 2s -2024-03-23T17:47:20Z #15 1.515 19300K .......... .......... .......... .......... .......... 15% 105M 2s -2024-03-23T17:47:20Z #15 1.515 19350K .......... .......... .......... .......... .......... 15% 17.7M 2s -2024-03-23T17:47:20Z #15 1.523 19400K .......... .......... .......... .......... .......... 15% 173M 2s -2024-03-23T17:47:20Z #15 1.523 19450K .......... .......... .......... .......... .......... 15% 128M 2s -2024-03-23T17:47:20Z #15 1.523 19500K .......... .......... .......... .......... .......... 15% 149M 2s -2024-03-23T17:47:20Z #15 1.523 19550K .......... .......... .......... .......... .......... 15% 167M 2s -2024-03-23T17:47:20Z #15 1.523 19600K .......... .......... .......... .......... .......... 15% 60.2M 2s -2024-03-23T17:47:20Z #15 1.523 19650K .......... .......... .......... .......... .......... 15% 124M 2s -2024-03-23T17:47:20Z #15 1.523 19700K .......... .......... .......... .......... .......... 15% 89.4M 2s -2024-03-23T17:47:20Z #15 1.523 19750K .......... .......... .......... .......... .......... 15% 124M 2s -2024-03-23T17:47:20Z #15 1.523 19800K .......... .......... .......... .......... .......... 15% 99.5M 2s -2024-03-23T17:47:20Z #15 1.523 19850K .......... .......... .......... .......... .......... 15% 143M 2s -2024-03-23T17:47:20Z #15 1.523 19900K .......... .......... .......... .......... .......... 15% 65.7M 2s -2024-03-23T17:47:20Z #15 1.523 19950K .......... .......... .......... .......... .......... 15% 156M 2s -2024-03-23T17:47:20Z #15 1.523 20000K .......... .......... .......... .......... .......... 15% 12.9M 2s -2024-03-23T17:47:20Z #15 1.527 20050K .......... .......... .......... .......... .......... 15% 36.4M 2s -2024-03-23T17:47:20Z #15 1.528 20100K .......... .......... .......... .......... .......... 15% 40.8M 2s -2024-03-23T17:47:20Z #15 1.531 20150K .......... .......... .......... .......... .......... 15% 139M 2s -2024-03-23T17:47:20Z #15 1.531 20200K .......... .......... .......... .......... .......... 15% 144M 2s -2024-03-23T17:47:20Z #15 1.531 20250K .......... .......... .......... .......... .......... 16% 89.2M 2s -2024-03-23T17:47:20Z #15 1.531 20300K .......... .......... .......... .......... .......... 16% 19.0M 2s -2024-03-23T17:47:20Z #15 1.534 20350K .......... .......... .......... .......... .......... 16% 19.1M 2s -2024-03-23T17:47:20Z #15 1.535 20400K .......... .......... .......... .......... .......... 16% 117M 2s -2024-03-23T17:47:20Z #15 1.536 20450K .......... .......... .......... .......... .......... 16% 117M 2s -2024-03-23T17:47:20Z #15 1.536 20500K .......... .......... .......... .......... .......... 16% 148M 2s -2024-03-23T17:47:20Z #15 1.537 20550K .......... .......... .......... .......... .......... 16% 136M 2s -2024-03-23T17:47:20Z #15 1.537 20600K .......... .......... .......... .......... .......... 16% 140M 2s -2024-03-23T17:47:20Z #15 1.537 20650K .......... .......... .......... .......... .......... 16% 134M 2s -2024-03-23T17:47:20Z #15 1.538 20700K .......... .......... .......... .......... .......... 16% 126M 2s -2024-03-23T17:47:20Z #15 1.538 20750K .......... .......... .......... .......... .......... 16% 137M 2s -2024-03-23T17:47:20Z #15 1.538 20800K .......... .......... .......... .......... .......... 16% 113M 2s -2024-03-23T17:47:20Z #15 1.539 20850K .......... .......... .......... .......... .......... 16% 154M 2s -2024-03-23T17:47:20Z #15 1.539 20900K .......... .......... .......... .......... .......... 16% 123M 2s -2024-03-23T17:47:20Z #15 1.540 20950K .......... .......... .......... .......... .......... 16% 143M 2s -2024-03-23T17:47:20Z #15 1.540 21000K .......... .......... .......... .......... .......... 16% 143M 2s -2024-03-23T17:47:20Z #15 1.540 21050K .......... .......... .......... .......... .......... 16% 152M 2s -2024-03-23T17:47:20Z #15 1.541 21100K .......... .......... .......... .......... .......... 16% 123M 2s -2024-03-23T17:47:20Z #15 1.541 21150K .......... .......... .......... .......... .......... 16% 136M 2s -2024-03-23T17:47:20Z #15 1.541 21200K .......... .......... .......... .......... .......... 16% 141M 2s -2024-03-23T17:47:20Z #15 1.543 21250K .......... .......... .......... .......... .......... 16% 141M 2s -2024-03-23T17:47:20Z #15 1.543 21300K .......... .......... .......... .......... .......... 16% 159M 2s -2024-03-23T17:47:20Z #15 1.543 21350K .......... .......... .......... .......... .......... 16% 170M 2s -2024-03-23T17:47:20Z #15 1.543 21400K .......... .......... .......... .......... .......... 16% 33.6M 2s -2024-03-23T17:47:20Z #15 1.547 21450K .......... .......... .......... .......... .......... 16% 66.8M 2s -2024-03-23T17:47:20Z #15 1.547 21500K .......... .......... .......... .......... .......... 16% 72.0M 2s -2024-03-23T17:47:20Z #15 1.547 21550K .......... .......... .......... .......... .......... 17% 64.5M 2s -2024-03-23T17:47:20Z #15 1.547 21600K .......... .......... .......... .......... .......... 17% 51.3M 2s -2024-03-23T17:47:20Z #15 1.547 21650K .......... .......... .......... .......... .......... 17% 31.3M 2s -2024-03-23T17:47:20Z #15 1.549 21700K .......... .......... .......... .......... .......... 17% 25.5M 2s -2024-03-23T17:47:20Z #15 1.551 21750K .......... .......... .......... .......... .......... 17% 15.8M 2s -2024-03-23T17:47:20Z #15 1.554 21800K .......... .......... .......... .......... .......... 17% 67.4M 2s -2024-03-23T17:47:20Z #15 1.554 21850K .......... .......... .......... .......... .......... 17% 90.1M 2s -2024-03-23T17:47:20Z #15 1.555 21900K .......... .......... .......... .......... .......... 17% 80.8M 2s -2024-03-23T17:47:20Z #15 1.559 21950K .......... .......... .......... .......... .......... 17% 119M 2s -2024-03-23T17:47:20Z #15 1.559 22000K .......... .......... .......... .......... .......... 17% 143M 2s -2024-03-23T17:47:20Z #15 1.559 22050K .......... .......... .......... .......... .......... 17% 128M 2s -2024-03-23T17:47:20Z #15 1.559 22100K .......... .......... .......... .......... .......... 17% 139M 2s -2024-03-23T17:47:20Z #15 1.559 22150K .......... .......... .......... .......... .......... 17% 125M 2s -2024-03-23T17:47:20Z #15 1.559 22200K .......... .......... .......... .......... .......... 17% 145M 2s -2024-03-23T17:47:20Z #15 1.559 22250K .......... .......... .......... .......... .......... 17% 115M 2s -2024-03-23T17:47:20Z #15 1.559 22300K .......... .......... .......... .......... .......... 17% 125M 2s -2024-03-23T17:47:20Z #15 1.559 22350K .......... .......... .......... .......... .......... 17% 95.2M 2s -2024-03-23T17:47:20Z #15 1.559 22400K .......... .......... .......... .......... .......... 17% 114M 2s -2024-03-23T17:47:20Z #15 1.559 22450K .......... .......... .......... .......... .......... 17% 144M 2s -2024-03-23T17:47:20Z #15 1.560 22500K .......... .......... .......... .......... .......... 17% 139M 2s -2024-03-23T17:47:20Z #15 1.560 22550K .......... .......... .......... .......... .......... 17% 131M 2s -2024-03-23T17:47:20Z #15 1.561 22600K .......... .......... .......... .......... .......... 17% 153M 2s -2024-03-23T17:47:20Z #15 1.561 22650K .......... .......... .......... .......... .......... 17% 123M 2s -2024-03-23T17:47:20Z #15 1.561 22700K .......... .......... .......... .......... .......... 17% 142M 2s -2024-03-23T17:47:20Z #15 1.562 22750K .......... .......... .......... .......... .......... 17% 156M 2s -2024-03-23T17:47:20Z #15 1.563 22800K .......... .......... .......... .......... .......... 18% 128M 2s -2024-03-23T17:47:20Z #15 1.563 22850K .......... .......... .......... .......... .......... 18% 142M 2s -2024-03-23T17:47:20Z #15 1.563 22900K .......... .......... .......... .......... .......... 18% 49.3M 2s -2024-03-23T17:47:20Z #15 1.564 22950K .......... .......... .......... .......... .......... 18% 119M 2s -2024-03-23T17:47:20Z #15 1.564 23000K .......... .......... .......... .......... .......... 18% 142M 2s -2024-03-23T17:47:20Z #15 1.564 23050K .......... .......... .......... .......... .......... 18% 109M 2s -2024-03-23T17:47:20Z #15 1.565 23100K .......... .......... .......... .......... .......... 18% 155M 2s -2024-03-23T17:47:20Z #15 1.565 23150K .......... .......... .......... .......... .......... 18% 139M 2s -2024-03-23T17:47:20Z #15 1.566 23200K .......... .......... .......... .......... .......... 18% 130M 2s -2024-03-23T17:47:20Z #15 1.566 23250K .......... .......... .......... .......... .......... 18% 143M 2s -2024-03-23T17:47:20Z #15 1.566 23300K .......... .......... .......... .......... .......... 18% 148M 2s -2024-03-23T17:47:20Z #15 1.567 23350K .......... .......... .......... .......... .......... 18% 111M 2s -2024-03-23T17:47:20Z #15 1.567 23400K .......... .......... .......... .......... .......... 18% 151M 2s -2024-03-23T17:47:20Z #15 1.568 23450K .......... .......... .......... .......... .......... 18% 120M 2s -2024-03-23T17:47:20Z #15 1.568 23500K .......... .......... .......... .......... .......... 18% 138M 2s -2024-03-23T17:47:20Z #15 1.568 23550K .......... .......... .......... .......... .......... 18% 122M 2s -2024-03-23T17:47:20Z #15 1.568 23600K .......... .......... .......... .......... .......... 18% 144M 2s -2024-03-23T17:47:20Z #15 1.569 23650K .......... .......... .......... .......... .......... 18% 134M 2s -2024-03-23T17:47:20Z #15 1.569 23700K .......... .......... .......... .......... .......... 18% 128M 2s -2024-03-23T17:47:20Z #15 1.570 23750K .......... .......... .......... .......... .......... 18% 157M 2s -2024-03-23T17:47:20Z #15 1.570 23800K .......... .......... .......... .......... .......... 18% 149M 2s -2024-03-23T17:47:20Z #15 1.570 23850K .......... .......... .......... .......... .......... 18% 140M 2s -2024-03-23T17:47:20Z #15 1.570 23900K .......... .......... .......... .......... .......... 18% 130M 2s -2024-03-23T17:47:20Z #15 1.571 23950K .......... .......... .......... .......... .......... 18% 130M 2s -2024-03-23T17:47:20Z #15 1.571 24000K .......... .......... .......... .......... .......... 18% 129M 2s -2024-03-23T17:47:20Z #15 1.572 24050K .......... .......... .......... .......... .......... 19% 144M 2s -2024-03-23T17:47:20Z #15 1.572 24100K .......... .......... .......... .......... .......... 19% 20.3M 2s -2024-03-23T17:47:20Z #15 1.575 24150K .......... .......... .......... .......... .......... 19% 58.5M 2s -2024-03-23T17:47:20Z #15 1.575 24200K .......... .......... .......... .......... .......... 19% 69.8M 2s -2024-03-23T17:47:20Z #15 1.576 24250K .......... .......... .......... .......... .......... 19% 85.2M 2s -2024-03-23T17:47:20Z #15 1.577 24300K .......... .......... .......... .......... .......... 19% 153M 2s -2024-03-23T17:47:20Z #15 1.577 24350K .......... .......... .......... .......... .......... 19% 136M 2s -2024-03-23T17:47:20Z #15 1.577 24400K .......... .......... .......... .......... .......... 19% 146M 2s -2024-03-23T17:47:20Z #15 1.578 24450K .......... .......... .......... .......... .......... 19% 152M 2s -2024-03-23T17:47:20Z #15 1.578 24500K .......... .......... .......... .......... .......... 19% 138M 2s -2024-03-23T17:47:20Z #15 1.578 24550K .......... .......... .......... .......... .......... 19% 124M 2s -2024-03-23T17:47:20Z #15 1.579 24600K .......... .......... .......... .......... .......... 19% 87.6M 2s -2024-03-23T17:47:20Z #15 1.579 24650K .......... .......... .......... .......... .......... 19% 76.9M 2s -2024-03-23T17:47:20Z #15 1.583 24700K .......... .......... .......... .......... .......... 19% 47.3M 2s -2024-03-23T17:47:20Z #15 1.583 24750K .......... .......... .......... .......... .......... 19% 45.2M 2s -2024-03-23T17:47:20Z #15 1.583 24800K .......... .......... .......... .......... .......... 19% 53.0M 2s -2024-03-23T17:47:20Z #15 1.583 24850K .......... .......... .......... .......... .......... 19% 132M 2s -2024-03-23T17:47:20Z #15 1.583 24900K .......... .......... .......... .......... .......... 19% 158M 2s -2024-03-23T17:47:20Z #15 1.584 24950K .......... .......... .......... .......... .......... 19% 118M 2s -2024-03-23T17:47:20Z #15 1.584 25000K .......... .......... .......... .......... .......... 19% 138M 2s -2024-03-23T17:47:20Z #15 1.584 25050K .......... .......... .......... .......... .......... 19% 167M 2s -2024-03-23T17:47:20Z #15 1.585 25100K .......... .......... .......... .......... .......... 19% 140M 2s -2024-03-23T17:47:20Z #15 1.585 25150K .......... .......... .......... .......... .......... 19% 136M 2s -2024-03-23T17:47:20Z #15 1.585 25200K .......... .......... .......... .......... .......... 19% 168M 2s -2024-03-23T17:47:20Z #15 1.586 25250K .......... .......... .......... .......... .......... 19% 134M 2s -2024-03-23T17:47:20Z #15 1.586 25300K .......... .......... .......... .......... .......... 19% 140M 2s -2024-03-23T17:47:20Z #15 1.586 25350K .......... .......... .......... .......... .......... 20% 39.6M 2s -2024-03-23T17:47:20Z #15 1.591 25400K .......... .......... .......... .......... .......... 20% 90.1M 2s -2024-03-23T17:47:20Z #15 1.591 25450K .......... .......... .......... .......... .......... 20% 148M 2s -2024-03-23T17:47:20Z #15 1.591 25500K .......... .......... .......... .......... .......... 20% 143M 2s -2024-03-23T17:47:20Z #15 1.591 25550K .......... .......... .......... .......... .......... 20% 159M 2s -2024-03-23T17:47:20Z #15 1.591 25600K .......... .......... .......... .......... .......... 20% 157M 2s -2024-03-23T17:47:20Z #15 1.591 25650K .......... .......... .......... .......... .......... 20% 148M 2s -2024-03-23T17:47:20Z #15 1.591 25700K .......... .......... .......... .......... .......... 20% 128M 2s -2024-03-23T17:47:20Z #15 1.591 25750K .......... .......... .......... .......... .......... 20% 158M 2s -2024-03-23T17:47:20Z #15 1.591 25800K .......... .......... .......... .......... .......... 20% 119M 2s -2024-03-23T17:47:20Z #15 1.591 25850K .......... .......... .......... .......... .......... 20% 32.5M 2s -2024-03-23T17:47:20Z #15 1.592 25900K .......... .......... .......... .......... .......... 20% 21.7M 2s -2024-03-23T17:47:20Z #15 1.595 25950K .......... .......... .......... .......... .......... 20% 38.2M 2s -2024-03-23T17:47:20Z #15 1.596 26000K .......... .......... .......... .......... .......... 20% 61.0M 2s -2024-03-23T17:47:20Z #15 1.597 26050K .......... .......... .......... .......... .......... 20% 43.3M 2s -2024-03-23T17:47:20Z #15 1.598 26100K .......... .......... .......... .......... .......... 20% 70.7M 2s -2024-03-23T17:47:20Z #15 1.599 26150K .......... .......... .......... .......... .......... 20% 31.0M 2s -2024-03-23T17:47:20Z #15 1.600 26200K .......... .......... .......... .......... .......... 20% 78.7M 2s -2024-03-23T17:47:20Z #15 1.601 26250K .......... .......... .......... .......... .......... 20% 44.9M 2s -2024-03-23T17:47:20Z #15 1.602 26300K .......... .......... .......... .......... .......... 20% 128M 2s -2024-03-23T17:47:20Z #15 1.602 26350K .......... .......... .......... .......... .......... 20% 131M 2s -2024-03-23T17:47:20Z #15 1.602 26400K .......... .......... .......... .......... .......... 20% 114M 2s -2024-03-23T17:47:20Z #15 1.603 26450K .......... .......... .......... .......... .......... 20% 110M 2s -2024-03-23T17:47:20Z #15 1.603 26500K .......... .......... .......... .......... .......... 20% 139M 2s -2024-03-23T17:47:20Z #15 1.604 26550K .......... .......... .......... .......... .......... 20% 146M 2s -2024-03-23T17:47:20Z #15 1.604 26600K .......... .......... .......... .......... .......... 21% 107M 2s -2024-03-23T17:47:20Z #15 1.604 26650K .......... .......... .......... .......... .......... 21% 135M 2s -2024-03-23T17:47:20Z #15 1.605 26700K .......... .......... .......... .......... .......... 21% 146M 2s -2024-03-23T17:47:20Z #15 1.605 26750K .......... .......... .......... .......... .......... 21% 145M 2s -2024-03-23T17:47:20Z #15 1.606 26800K .......... .......... .......... .......... .......... 21% 124M 2s -2024-03-23T17:47:20Z #15 1.606 26850K .......... .......... .......... .......... .......... 21% 125M 2s -2024-03-23T17:47:20Z #15 1.606 26900K .......... .......... .......... .......... .......... 21% 136M 2s -2024-03-23T17:47:20Z #15 1.607 26950K .......... .......... .......... .......... .......... 21% 90.0M 2s -2024-03-23T17:47:20Z #15 1.607 27000K .......... .......... .......... .......... .......... 21% 152M 2s -2024-03-23T17:47:20Z #15 1.608 27050K .......... .......... .......... .......... .......... 21% 146M 2s -2024-03-23T17:47:20Z #15 1.608 27100K .......... .......... .......... .......... .......... 21% 154M 2s -2024-03-23T17:47:20Z #15 1.608 27150K .......... .......... .......... .......... .......... 21% 149M 2s -2024-03-23T17:47:20Z #15 1.609 27200K .......... .......... .......... .......... .......... 21% 143M 2s -2024-03-23T17:47:20Z #15 1.615 27250K .......... .......... .......... .......... .......... 21% 172M 2s -2024-03-23T17:47:20Z #15 1.615 27300K .......... .......... .......... .......... .......... 21% 115M 2s -2024-03-23T17:47:20Z #15 1.615 27350K .......... .......... .......... .......... .......... 21% 129M 2s -2024-03-23T17:47:20Z #15 1.615 27400K .......... .......... .......... .......... .......... 21% 155M 1s -2024-03-23T17:47:20Z #15 1.615 27450K .......... .......... .......... .......... .......... 21% 153M 1s -2024-03-23T17:47:20Z #15 1.615 27500K .......... .......... .......... .......... .......... 21% 128M 1s -2024-03-23T17:47:20Z #15 1.615 27550K .......... .......... .......... .......... .......... 21% 137M 1s -2024-03-23T17:47:20Z #15 1.615 27600K .......... .......... .......... .......... .......... 21% 157M 1s -2024-03-23T17:47:20Z #15 1.615 27650K .......... .......... .......... .......... .......... 21% 154M 1s -2024-03-23T17:47:20Z #15 1.615 27700K .......... .......... .......... .......... .......... 21% 118M 1s -2024-03-23T17:47:20Z #15 1.615 27750K .......... .......... .......... .......... .......... 21% 151M 1s -2024-03-23T17:47:20Z #15 1.615 27800K .......... .......... .......... .......... .......... 21% 163M 1s -2024-03-23T17:47:20Z #15 1.615 27850K .......... .......... .......... .......... .......... 22% 158M 1s -2024-03-23T17:47:20Z #15 1.615 27900K .......... .......... .......... .......... .......... 22% 166M 1s -2024-03-23T17:47:20Z #15 1.615 27950K .......... .......... .......... .......... .......... 22% 156M 1s -2024-03-23T17:47:20Z #15 1.615 28000K .......... .......... .......... .......... .......... 22% 140M 1s -2024-03-23T17:47:20Z #15 1.615 28050K .......... .......... .......... .......... .......... 22% 172M 1s -2024-03-23T17:47:20Z #15 1.615 28100K .......... .......... .......... .......... .......... 22% 104M 1s -2024-03-23T17:47:20Z #15 1.615 28150K .......... .......... .......... .......... .......... 22% 122M 1s -2024-03-23T17:47:20Z #15 1.615 28200K .......... .......... .......... .......... .......... 22% 164M 1s -2024-03-23T17:47:20Z #15 1.616 28250K .......... .......... .......... .......... .......... 22% 148M 1s -2024-03-23T17:47:20Z #15 1.616 28300K .......... .......... .......... .......... .......... 22% 142M 1s -2024-03-23T17:47:20Z #15 1.616 28350K .......... .......... .......... .......... .......... 22% 155M 1s -2024-03-23T17:47:20Z #15 1.617 28400K .......... .......... .......... .......... .......... 22% 145M 1s -2024-03-23T17:47:20Z #15 1.617 28450K .......... .......... .......... .......... .......... 22% 131M 1s -2024-03-23T17:47:20Z #15 1.617 28500K .......... .......... .......... .......... .......... 22% 142M 1s -2024-03-23T17:47:20Z #15 1.618 28550K .......... .......... .......... .......... .......... 22% 150M 1s -2024-03-23T17:47:20Z #15 1.618 28600K .......... .......... .......... .......... .......... 22% 160M 1s -2024-03-23T17:47:20Z #15 1.618 28650K .......... .......... .......... .......... .......... 22% 107M 1s -2024-03-23T17:47:20Z #15 1.619 28700K .......... .......... .......... .......... .......... 22% 156M 1s -2024-03-23T17:47:20Z #15 1.619 28750K .......... .......... .......... .......... .......... 22% 149M 1s -2024-03-23T17:47:20Z #15 1.619 28800K .......... .......... .......... .......... .......... 22% 153M 1s -2024-03-23T17:47:20Z #15 1.620 28850K .......... .......... .......... .......... .......... 22% 130M 1s -2024-03-23T17:47:20Z #15 1.620 28900K .......... .......... .......... .......... .......... 22% 149M 1s -2024-03-23T17:47:20Z #15 1.620 28950K .......... .......... .......... .......... .......... 22% 170M 1s -2024-03-23T17:47:20Z #15 1.621 29000K .......... .......... .......... .......... .......... 22% 165M 1s -2024-03-23T17:47:20Z #15 1.621 29050K .......... .......... .......... .......... .......... 22% 122M 1s -2024-03-23T17:47:20Z #15 1.621 29100K .......... .......... .......... .......... .......... 22% 151M 1s -2024-03-23T17:47:20Z #15 1.622 29150K .......... .......... .......... .......... .......... 23% 158M 1s -2024-03-23T17:47:20Z #15 1.622 29200K .......... .......... .......... .......... .......... 23% 124M 1s -2024-03-23T17:47:20Z #15 1.624 29250K .......... .......... .......... .......... .......... 23% 136M 1s -2024-03-23T17:47:20Z #15 1.624 29300K .......... .......... .......... .......... .......... 23% 146M 1s -2024-03-23T17:47:20Z #15 1.624 29350K .......... .......... .......... .......... .......... 23% 149M 1s -2024-03-23T17:47:20Z #15 1.624 29400K .......... .......... .......... .......... .......... 23% 130M 1s -2024-03-23T17:47:20Z #15 1.624 29450K .......... .......... .......... .......... .......... 23% 122M 1s -2024-03-23T17:47:20Z #15 1.624 29500K .......... .......... .......... .......... .......... 23% 168M 1s -2024-03-23T17:47:20Z #15 1.625 29550K .......... .......... .......... .......... .......... 23% 156M 1s -2024-03-23T17:47:20Z #15 1.625 29600K .......... .......... .......... .......... .......... 23% 129M 1s -2024-03-23T17:47:20Z #15 1.625 29650K .......... .......... .......... .......... .......... 23% 118M 1s -2024-03-23T17:47:20Z #15 1.626 29700K .......... .......... .......... .......... .......... 23% 151M 1s -2024-03-23T17:47:20Z #15 1.626 29750K .......... .......... .......... .......... .......... 23% 135M 1s -2024-03-23T17:47:20Z #15 1.626 29800K .......... .......... .......... .......... .......... 23% 122M 1s -2024-03-23T17:47:20Z #15 1.627 29850K .......... .......... .......... .......... .......... 23% 61.4M 1s -2024-03-23T17:47:20Z #15 1.629 29900K .......... .......... .......... .......... .......... 23% 120M 1s -2024-03-23T17:47:20Z #15 1.629 29950K .......... .......... .......... .......... .......... 23% 103M 1s -2024-03-23T17:47:20Z #15 1.629 30000K .......... .......... .......... .......... .......... 23% 147M 1s -2024-03-23T17:47:20Z #15 1.629 30050K .......... .......... .......... .......... .......... 23% 141M 1s -2024-03-23T17:47:20Z #15 1.629 30100K .......... .......... .......... .......... .......... 23% 87.0M 1s -2024-03-23T17:47:20Z #15 1.630 30150K .......... .......... .......... .......... .......... 23% 56.1M 1s -2024-03-23T17:47:20Z #15 1.631 30200K .......... .......... .......... .......... .......... 23% 95.9M 1s -2024-03-23T17:47:20Z #15 1.631 30250K .......... .......... .......... .......... .......... 23% 41.1M 1s -2024-03-23T17:47:20Z #15 1.632 30300K .......... .......... .......... .......... .......... 23% 42.4M 1s -2024-03-23T17:47:20Z #15 1.633 30350K .......... .......... .......... .......... .......... 23% 40.2M 1s -2024-03-23T17:47:20Z #15 1.635 30400K .......... .......... .......... .......... .......... 24% 79.7M 1s -2024-03-23T17:47:20Z #15 1.636 30450K .......... .......... .......... .......... .......... 24% 65.4M 1s -2024-03-23T17:47:20Z #15 1.636 30500K .......... .......... .......... .......... .......... 24% 63.9M 1s -2024-03-23T17:47:20Z #15 1.640 30550K .......... .......... .......... .......... .......... 24% 173M 1s -2024-03-23T17:47:20Z #15 1.640 30600K .......... .......... .......... .......... .......... 24% 153M 1s -2024-03-23T17:47:20Z #15 1.640 30650K .......... .......... .......... .......... .......... 24% 132M 1s -2024-03-23T17:47:20Z #15 1.640 30700K .......... .......... .......... .......... .......... 24% 158M 1s -2024-03-23T17:47:20Z #15 1.640 30750K .......... .......... .......... .......... .......... 24% 151M 1s -2024-03-23T17:47:20Z #15 1.640 30800K .......... .......... .......... .......... .......... 24% 157M 1s -2024-03-23T17:47:20Z #15 1.640 30850K .......... .......... .......... .......... .......... 24% 91.6M 1s -2024-03-23T17:47:20Z #15 1.640 30900K .......... .......... .......... .......... .......... 24% 70.4M 1s -2024-03-23T17:47:20Z #15 1.640 30950K .......... .......... .......... .......... .......... 24% 154M 1s -2024-03-23T17:47:20Z #15 1.640 31000K .......... .......... .......... .......... .......... 24% 152M 1s -2024-03-23T17:47:20Z #15 1.641 31050K .......... .......... .......... .......... .......... 24% 119M 1s -2024-03-23T17:47:20Z #15 1.641 31100K .......... .......... .......... .......... .......... 24% 158M 1s -2024-03-23T17:47:20Z #15 1.641 31150K .......... .......... .......... .......... .......... 24% 123M 1s -2024-03-23T17:47:20Z #15 1.642 31200K .......... .......... .......... .......... .......... 24% 142M 1s -2024-03-23T17:47:20Z #15 1.642 31250K .......... .......... .......... .......... .......... 24% 153M 1s -2024-03-23T17:47:20Z #15 1.643 31300K .......... .......... .......... .......... .......... 24% 142M 1s -2024-03-23T17:47:20Z #15 1.643 31350K .......... .......... .......... .......... .......... 24% 106M 1s -2024-03-23T17:47:20Z #15 1.644 31400K .......... .......... .......... .......... .......... 24% 153M 1s -2024-03-23T17:47:20Z #15 1.644 31450K .......... .......... .......... .......... .......... 24% 144M 1s -2024-03-23T17:47:20Z #15 1.644 31500K .......... .......... .......... .......... .......... 24% 134M 1s -2024-03-23T17:47:20Z #15 1.644 31550K .......... .......... .......... .......... .......... 24% 153M 1s -2024-03-23T17:47:20Z #15 1.645 31600K .......... .......... .......... .......... .......... 24% 120M 1s -2024-03-23T17:47:20Z #15 1.645 31650K .......... .......... .......... .......... .......... 25% 165M 1s -2024-03-23T17:47:20Z #15 1.645 31700K .......... .......... .......... .......... .......... 25% 88.4M 1s -2024-03-23T17:47:20Z #15 1.646 31750K .......... .......... .......... .......... .......... 25% 143M 1s -2024-03-23T17:47:20Z #15 1.646 31800K .......... .......... .......... .......... .......... 25% 135M 1s -2024-03-23T17:47:20Z #15 1.647 31850K .......... .......... .......... .......... .......... 25% 131M 1s -2024-03-23T17:47:20Z #15 1.647 31900K .......... .......... .......... .......... .......... 25% 112M 1s -2024-03-23T17:47:20Z #15 1.647 31950K .......... .......... .......... .......... .......... 25% 155M 1s -2024-03-23T17:47:20Z #15 1.647 32000K .......... .......... .......... .......... .......... 25% 140M 1s -2024-03-23T17:47:20Z #15 1.648 32050K .......... .......... .......... .......... .......... 25% 121M 1s -2024-03-23T17:47:20Z #15 1.648 32100K .......... .......... .......... .......... .......... 25% 151M 1s -2024-03-23T17:47:20Z #15 1.649 32150K .......... .......... .......... .......... .......... 25% 140M 1s -2024-03-23T17:47:20Z #15 1.649 32200K .......... .......... .......... .......... .......... 25% 159M 1s -2024-03-23T17:47:20Z #15 1.649 32250K .......... .......... .......... .......... .......... 25% 124M 1s -2024-03-23T17:47:20Z #15 1.650 32300K .......... .......... .......... .......... .......... 25% 145M 1s -2024-03-23T17:47:20Z #15 1.656 32350K .......... .......... .......... .......... .......... 25% 139M 1s -2024-03-23T17:47:20Z #15 1.656 32400K .......... .......... .......... .......... .......... 25% 152M 1s -2024-03-23T17:47:20Z #15 1.656 32450K .......... .......... .......... .......... .......... 25% 115M 1s -2024-03-23T17:47:20Z #15 1.656 32500K .......... .......... .......... .......... .......... 25% 145M 1s -2024-03-23T17:47:20Z #15 1.656 32550K .......... .......... .......... .......... .......... 25% 150M 1s -2024-03-23T17:47:20Z #15 1.656 32600K .......... .......... .......... .......... .......... 25% 166M 1s -2024-03-23T17:47:20Z #15 1.656 32650K .......... .......... .......... .......... .......... 25% 131M 1s -2024-03-23T17:47:20Z #15 1.656 32700K .......... .......... .......... .......... .......... 25% 164M 1s -2024-03-23T17:47:20Z #15 1.656 32750K .......... .......... .......... .......... .......... 25% 157M 1s -2024-03-23T17:47:20Z #15 1.656 32800K .......... .......... .......... .......... .......... 25% 168M 1s -2024-03-23T17:47:20Z #15 1.656 32850K .......... .......... .......... .......... .......... 25% 138M 1s -2024-03-23T17:47:20Z #15 1.656 32900K .......... .......... .......... .......... .......... 25% 159M 1s -2024-03-23T17:47:20Z #15 1.656 32950K .......... .......... .......... .......... .......... 26% 160M 1s -2024-03-23T17:47:20Z #15 1.656 33000K .......... .......... .......... .......... .......... 26% 154M 1s -2024-03-23T17:47:20Z #15 1.656 33050K .......... .......... .......... .......... .......... 26% 89.2M 1s -2024-03-23T17:47:20Z #15 1.656 33100K .......... .......... .......... .......... .......... 26% 149M 1s -2024-03-23T17:47:20Z #15 1.656 33150K .......... .......... .......... .......... .......... 26% 149M 1s -2024-03-23T17:47:20Z #15 1.656 33200K .......... .......... .......... .......... .......... 26% 147M 1s -2024-03-23T17:47:20Z #15 1.656 33250K .......... .......... .......... .......... .......... 26% 129M 1s -2024-03-23T17:47:20Z #15 1.656 33300K .......... .......... .......... .......... .......... 26% 150M 1s -2024-03-23T17:47:20Z #15 1.657 33350K .......... .......... .......... .......... .......... 26% 132M 1s -2024-03-23T17:47:20Z #15 1.657 33400K .......... .......... .......... .......... .......... 26% 142M 1s -2024-03-23T17:47:20Z #15 1.658 33450K .......... .......... .......... .......... .......... 26% 143M 1s -2024-03-23T17:47:20Z #15 1.658 33500K .......... .......... .......... .......... .......... 26% 146M 1s -2024-03-23T17:47:20Z #15 1.658 33550K .......... .......... .......... .......... .......... 26% 130M 1s -2024-03-23T17:47:20Z #15 1.659 33600K .......... .......... .......... .......... .......... 26% 105M 1s -2024-03-23T17:47:20Z #15 1.659 33650K .......... .......... .......... .......... .......... 26% 144M 1s -2024-03-23T17:47:20Z #15 1.659 33700K .......... .......... .......... .......... .......... 26% 151M 1s -2024-03-23T17:47:20Z #15 1.660 33750K .......... .......... .......... .......... .......... 26% 132M 1s -2024-03-23T17:47:20Z #15 1.660 33800K .......... .......... .......... .......... .......... 26% 155M 1s -2024-03-23T17:47:20Z #15 1.661 33850K .......... .......... .......... .......... .......... 26% 154M 1s -2024-03-23T17:47:20Z #15 1.661 33900K .......... .......... .......... .......... .......... 26% 122M 1s -2024-03-23T17:47:20Z #15 1.661 33950K .......... .......... .......... .......... .......... 26% 163M 1s -2024-03-23T17:47:20Z #15 1.661 34000K .......... .......... .......... .......... .......... 26% 136M 1s -2024-03-23T17:47:20Z #15 1.662 34050K .......... .......... .......... .......... .......... 26% 148M 1s -2024-03-23T17:47:20Z #15 1.662 34100K .......... .......... .......... .......... .......... 26% 163M 1s -2024-03-23T17:47:20Z #15 1.662 34150K .......... .......... .......... .......... .......... 26% 127M 1s -2024-03-23T17:47:20Z #15 1.663 34200K .......... .......... .......... .......... .......... 27% 120M 1s -2024-03-23T17:47:20Z #15 1.663 34250K .......... .......... .......... .......... .......... 27% 162M 1s -2024-03-23T17:47:20Z #15 1.664 34300K .......... .......... .......... .......... .......... 27% 145M 1s -2024-03-23T17:47:20Z #15 1.664 34350K .......... .......... .......... .......... .......... 27% 147M 1s -2024-03-23T17:47:20Z #15 1.664 34400K .......... .......... .......... .......... .......... 27% 165M 1s -2024-03-23T17:47:20Z #15 1.664 34450K .......... .......... .......... .......... .......... 27% 168M 1s -2024-03-23T17:47:20Z #15 1.665 34500K .......... .......... .......... .......... .......... 27% 137M 1s -2024-03-23T17:47:20Z #15 1.665 34550K .......... .......... .......... .......... .......... 27% 159M 1s -2024-03-23T17:47:20Z #15 1.665 34600K .......... .......... .......... .......... .......... 27% 146M 1s -2024-03-23T17:47:20Z #15 1.666 34650K .......... .......... .......... .......... .......... 27% 164M 1s -2024-03-23T17:47:20Z #15 1.667 34700K .......... .......... .......... .......... .......... 27% 3.59M 1s -2024-03-23T17:47:20Z #15 1.680 34750K .......... .......... .......... .......... .......... 27% 50.0M 1s -2024-03-23T17:47:20Z #15 1.681 34800K .......... .......... .......... .......... .......... 27% 67.2M 1s -2024-03-23T17:47:20Z #15 1.682 34850K .......... .......... .......... .......... .......... 27% 80.9M 1s -2024-03-23T17:47:20Z #15 1.682 34900K .......... .......... .......... .......... .......... 27% 84.6M 1s -2024-03-23T17:47:20Z #15 1.687 34950K .......... .......... .......... .......... .......... 27% 56.6M 1s -2024-03-23T17:47:20Z #15 1.687 35000K .......... .......... .......... .......... .......... 27% 66.0M 1s -2024-03-23T17:47:20Z #15 1.687 35050K .......... .......... .......... .......... .......... 27% 73.1M 1s -2024-03-23T17:47:20Z #15 1.687 35100K .......... .......... .......... .......... .......... 27% 63.7M 1s -2024-03-23T17:47:20Z #15 1.687 35150K .......... .......... .......... .......... .......... 27% 124M 1s -2024-03-23T17:47:20Z #15 1.687 35200K .......... .......... .......... .......... .......... 27% 108M 1s -2024-03-23T17:47:20Z #15 1.687 35250K .......... .......... .......... .......... .......... 27% 148M 1s -2024-03-23T17:47:20Z #15 1.687 35300K .......... .......... .......... .......... .......... 27% 150M 1s -2024-03-23T17:47:20Z #15 1.687 35350K .......... .......... .......... .......... .......... 27% 153M 1s -2024-03-23T17:47:20Z #15 1.687 35400K .......... .......... .......... .......... .......... 27% 120M 1s -2024-03-23T17:47:20Z #15 1.688 35450K .......... .......... .......... .......... .......... 28% 99.1M 1s -2024-03-23T17:47:20Z #15 1.688 35500K .......... .......... .......... .......... .......... 28% 122M 1s -2024-03-23T17:47:20Z #15 1.689 35550K .......... .......... .......... .......... .......... 28% 140M 1s -2024-03-23T17:47:20Z #15 1.689 35600K .......... .......... .......... .......... .......... 28% 152M 1s -2024-03-23T17:47:20Z #15 1.690 35650K .......... .......... .......... .......... .......... 28% 134M 1s -2024-03-23T17:47:20Z #15 1.690 35700K .......... .......... .......... .......... .......... 28% 150M 1s -2024-03-23T17:47:20Z #15 1.691 35750K .......... .......... .......... .......... .......... 28% 138M 1s -2024-03-23T17:47:20Z #15 1.691 35800K .......... .......... .......... .......... .......... 28% 122M 1s -2024-03-23T17:47:20Z #15 1.691 35850K .......... .......... .......... .......... .......... 28% 135M 1s -2024-03-23T17:47:20Z #15 1.691 35900K .......... .......... .......... .......... .......... 28% 130M 1s -2024-03-23T17:47:20Z #15 1.692 35950K .......... .......... .......... .......... .......... 28% 159M 1s -2024-03-23T17:47:20Z #15 1.692 36000K .......... .......... .......... .......... .......... 28% 150M 1s -2024-03-23T17:47:20Z #15 1.692 36050K .......... .......... .......... .......... .......... 28% 138M 1s -2024-03-23T17:47:20Z #15 1.693 36100K .......... .......... .......... .......... .......... 28% 157M 1s -2024-03-23T17:47:20Z #15 1.694 36150K .......... .......... .......... .......... .......... 28% 137M 1s -2024-03-23T17:47:20Z #15 1.694 36200K .......... .......... .......... .......... .......... 28% 149M 1s -2024-03-23T17:47:20Z #15 1.694 36250K .......... .......... .......... .......... .......... 28% 151M 1s -2024-03-23T17:47:20Z #15 1.694 36300K .......... .......... .......... .......... .......... 28% 134M 1s -2024-03-23T17:47:20Z #15 1.695 36350K .......... .......... .......... .......... .......... 28% 140M 1s -2024-03-23T17:47:20Z #15 1.695 36400K .......... .......... .......... .......... .......... 28% 63.6M 1s -2024-03-23T17:47:20Z #15 1.696 36450K .......... .......... .......... .......... .......... 28% 92.0M 1s -2024-03-23T17:47:20Z #15 1.696 36500K .......... .......... .......... .......... .......... 28% 82.4M 1s -2024-03-23T17:47:20Z #15 1.696 36550K .......... .......... .......... .......... .......... 28% 84.8M 1s -2024-03-23T17:47:20Z #15 1.697 36600K .......... .......... .......... .......... .......... 28% 8.05M 1s -2024-03-23T17:47:20Z #15 1.703 36650K .......... .......... .......... .......... .......... 28% 143M 1s -2024-03-23T17:47:20Z #15 1.703 36700K .......... .......... .......... .......... .......... 28% 133M 1s -2024-03-23T17:47:20Z #15 1.704 36750K .......... .......... .......... .......... .......... 29% 108M 1s -2024-03-23T17:47:20Z #15 1.705 36800K .......... .......... .......... .......... .......... 29% 173M 1s -2024-03-23T17:47:20Z #15 1.705 36850K .......... .......... .......... .......... .......... 29% 125M 1s -2024-03-23T17:47:20Z #15 1.705 36900K .......... .......... .......... .......... .......... 29% 124M 1s -2024-03-23T17:47:20Z #15 1.706 36950K .......... .......... .......... .......... .......... 29% 124M 1s -2024-03-23T17:47:20Z #15 1.706 37000K .......... .......... .......... .......... .......... 29% 118M 1s -2024-03-23T17:47:20Z #15 1.706 37050K .......... .......... .......... .......... .......... 29% 134M 1s -2024-03-23T17:47:20Z #15 1.706 37100K .......... .......... .......... .......... .......... 29% 150M 1s -2024-03-23T17:47:20Z #15 1.707 37150K .......... .......... .......... .......... .......... 29% 135M 1s -2024-03-23T17:47:20Z #15 1.707 37200K .......... .......... .......... .......... .......... 29% 142M 1s -2024-03-23T17:47:20Z #15 1.707 37250K .......... .......... .......... .......... .......... 29% 121M 1s -2024-03-23T17:47:20Z #15 1.708 37300K .......... .......... .......... .......... .......... 29% 138M 1s -2024-03-23T17:47:20Z #15 1.708 37350K .......... .......... .......... .......... .......... 29% 158M 1s -2024-03-23T17:47:20Z #15 1.709 37400K .......... .......... .......... .......... .......... 29% 130M 1s -2024-03-23T17:47:20Z #15 1.709 37450K .......... .......... .......... .......... .......... 29% 129M 1s -2024-03-23T17:47:20Z #15 1.709 37500K .......... .......... .......... .......... .......... 29% 156M 1s -2024-03-23T17:47:20Z #15 1.710 37550K .......... .......... .......... .......... .......... 29% 136M 1s -2024-03-23T17:47:20Z #15 1.710 37600K .......... .......... .......... .......... .......... 29% 139M 1s -2024-03-23T17:47:20Z #15 1.710 37650K .......... .......... .......... .......... .......... 29% 11.1M 1s -2024-03-23T17:47:20Z #15 1.715 37700K .......... .......... .......... .......... .......... 29% 107M 1s -2024-03-23T17:47:20Z #15 1.715 37750K .......... .......... .......... .......... .......... 29% 143M 1s -2024-03-23T17:47:20Z #15 1.716 37800K .......... .......... .......... .......... .......... 29% 134M 1s -2024-03-23T17:47:20Z #15 1.716 37850K .......... .......... .......... .......... .......... 29% 139M 1s -2024-03-23T17:47:20Z #15 1.716 37900K .......... .......... .......... .......... .......... 29% 139M 1s -2024-03-23T17:47:20Z #15 1.717 37950K .......... .......... .......... .......... .......... 29% 146M 1s -2024-03-23T17:47:20Z #15 1.717 38000K .......... .......... .......... .......... .......... 30% 160M 1s -2024-03-23T17:47:20Z #15 1.717 38050K .......... .......... .......... .......... .......... 30% 154M 1s -2024-03-23T17:47:20Z #15 1.718 38100K .......... .......... .......... .......... .......... 30% 142M 1s -2024-03-23T17:47:20Z #15 1.718 38150K .......... .......... .......... .......... .......... 30% 132M 1s -2024-03-23T17:47:20Z #15 1.718 38200K .......... .......... .......... .......... .......... 30% 144M 1s -2024-03-23T17:47:20Z #15 1.719 38250K .......... .......... .......... .......... .......... 30% 120M 1s -2024-03-23T17:47:20Z #15 1.719 38300K .......... .......... .......... .......... .......... 30% 146M 1s -2024-03-23T17:47:20Z #15 1.719 38350K .......... .......... .......... .......... .......... 30% 154M 1s -2024-03-23T17:47:20Z #15 1.720 38400K .......... .......... .......... .......... .......... 30% 128M 1s -2024-03-23T17:47:20Z #15 1.720 38450K .......... .......... .......... .......... .......... 30% 151M 1s -2024-03-23T17:47:20Z #15 1.720 38500K .......... .......... .......... .......... .......... 30% 123M 1s -2024-03-23T17:47:20Z #15 1.721 38550K .......... .......... .......... .......... .......... 30% 149M 1s -2024-03-23T17:47:20Z #15 1.722 38600K .......... .......... .......... .......... .......... 30% 164M 1s -2024-03-23T17:47:20Z #15 1.722 38650K .......... .......... .......... .......... .......... 30% 126M 1s -2024-03-23T17:47:20Z #15 1.722 38700K .......... .......... .......... .......... .......... 30% 141M 1s -2024-03-23T17:47:20Z #15 1.722 38750K .......... .......... .......... .......... .......... 30% 142M 1s -2024-03-23T17:47:20Z #15 1.723 38800K .......... .......... .......... .......... .......... 30% 10.7M 1s -2024-03-23T17:47:20Z #15 1.727 38850K .......... .......... .......... .......... .......... 30% 119M 1s -2024-03-23T17:47:20Z #15 1.727 38900K .......... .......... .......... .......... .......... 30% 152M 1s -2024-03-23T17:47:20Z #15 1.728 38950K .......... .......... .......... .......... .......... 30% 137M 1s -2024-03-23T17:47:20Z #15 1.728 39000K .......... .......... .......... .......... .......... 30% 113M 1s -2024-03-23T17:47:20Z #15 1.729 39050K .......... .......... .......... .......... .......... 30% 148M 1s -2024-03-23T17:47:20Z #15 1.729 39100K .......... .......... .......... .......... .......... 30% 141M 1s -2024-03-23T17:47:20Z #15 1.729 39150K .......... .......... .......... .......... .......... 30% 155M 1s -2024-03-23T17:47:20Z #15 1.730 39200K .......... .......... .......... .......... .......... 30% 134M 1s -2024-03-23T17:47:20Z #15 1.730 39250K .......... .......... .......... .......... .......... 30% 160M 1s -2024-03-23T17:47:20Z #15 1.730 39300K .......... .......... .......... .......... .......... 31% 121M 1s -2024-03-23T17:47:20Z #15 1.731 39350K .......... .......... .......... .......... .......... 31% 114M 1s -2024-03-23T17:47:20Z #15 1.731 39400K .......... .......... .......... .......... .......... 31% 27.5M 1s -2024-03-23T17:47:20Z #15 1.733 39450K .......... .......... .......... .......... .......... 31% 84.2M 1s -2024-03-23T17:47:20Z #15 1.733 39500K .......... .......... .......... .......... .......... 31% 101M 1s -2024-03-23T17:47:20Z #15 1.734 39550K .......... .......... .......... .......... .......... 31% 141M 1s -2024-03-23T17:47:20Z #15 1.734 39600K .......... .......... .......... .......... .......... 31% 155M 1s -2024-03-23T17:47:20Z #15 1.735 39650K .......... .......... .......... .......... .......... 31% 107M 1s -2024-03-23T17:47:20Z #15 1.735 39700K .......... .......... .......... .......... .......... 31% 164M 1s -2024-03-23T17:47:20Z #15 1.735 39750K .......... .......... .......... .......... .......... 31% 140M 1s -2024-03-23T17:47:20Z #15 1.736 39800K .......... .......... .......... .......... .......... 31% 137M 1s -2024-03-23T17:47:20Z #15 1.736 39850K .......... .......... .......... .......... .......... 31% 142M 1s -2024-03-23T17:47:20Z #15 1.736 39900K .......... .......... .......... .......... .......... 31% 143M 1s -2024-03-23T17:47:20Z #15 1.737 39950K .......... .......... .......... .......... .......... 31% 138M 1s -2024-03-23T17:47:20Z #15 1.738 40000K .......... .......... .......... .......... .......... 31% 166M 1s -2024-03-23T17:47:20Z #15 1.738 40050K .......... .......... .......... .......... .......... 31% 145M 1s -2024-03-23T17:47:20Z #15 1.738 40100K .......... .......... .......... .......... .......... 31% 117M 1s -2024-03-23T17:47:20Z #15 1.738 40150K .......... .......... .......... .......... .......... 31% 144M 1s -2024-03-23T17:47:20Z #15 1.738 40200K .......... .......... .......... .......... .......... 31% 25.9M 1s -2024-03-23T17:47:20Z #15 1.740 40250K .......... .......... .......... .......... .......... 31% 141M 1s -2024-03-23T17:47:20Z #15 1.741 40300K .......... .......... .......... .......... .......... 31% 125M 1s -2024-03-23T17:47:20Z #15 1.741 40350K .......... .......... .......... .......... .......... 31% 136M 1s -2024-03-23T17:47:20Z #15 1.741 40400K .......... .......... .......... .......... .......... 31% 146M 1s -2024-03-23T17:47:20Z #15 1.742 40450K .......... .......... .......... .......... .......... 31% 159M 1s -2024-03-23T17:47:20Z #15 1.742 40500K .......... .......... .......... .......... .......... 31% 132M 1s -2024-03-23T17:47:20Z #15 1.743 40550K .......... .......... .......... .......... .......... 32% 135M 1s -2024-03-23T17:47:20Z #15 1.743 40600K .......... .......... .......... .......... .......... 32% 135M 1s -2024-03-23T17:47:20Z #15 1.743 40650K .......... .......... .......... .......... .......... 32% 137M 1s -2024-03-23T17:47:20Z #15 1.744 40700K .......... .......... .......... .......... .......... 32% 158M 1s -2024-03-23T17:47:20Z #15 1.744 40750K .......... .......... .......... .......... .......... 32% 131M 1s -2024-03-23T17:47:20Z #15 1.744 40800K .......... .......... .......... .......... .......... 32% 140M 1s -2024-03-23T17:47:20Z #15 1.745 40850K .......... .......... .......... .......... .......... 32% 161M 1s -2024-03-23T17:47:20Z #15 1.745 40900K .......... .......... .......... .......... .......... 32% 119M 1s -2024-03-23T17:47:20Z #15 1.745 40950K .......... .......... .......... .......... .......... 32% 164M 1s -2024-03-23T17:47:20Z #15 1.746 41000K .......... .......... .......... .......... .......... 32% 135M 1s -2024-03-23T17:47:20Z #15 1.746 41050K .......... .......... .......... .......... .......... 32% 155M 1s -2024-03-23T17:47:20Z #15 1.746 41100K .......... .......... .......... .......... .......... 32% 149M 1s -2024-03-23T17:47:20Z #15 1.747 41150K .......... .......... .......... .......... .......... 32% 5.72M 1s -2024-03-23T17:47:20Z #15 1.755 41200K .......... .......... .......... .......... .......... 32% 74.0M 1s -2024-03-23T17:47:20Z #15 1.756 41250K .......... .......... .......... .......... .......... 32% 149M 1s -2024-03-23T17:47:20Z #15 1.756 41300K .......... .......... .......... .......... .......... 32% 127M 1s -2024-03-23T17:47:20Z #15 1.756 41350K .......... .......... .......... .......... .......... 32% 159M 1s -2024-03-23T17:47:20Z #15 1.757 41400K .......... .......... .......... .......... .......... 32% 146M 1s -2024-03-23T17:47:20Z #15 1.758 41450K .......... .......... .......... .......... .......... 32% 169M 1s -2024-03-23T17:47:20Z #15 1.758 41500K .......... .......... .......... .......... .......... 32% 130M 1s -2024-03-23T17:47:20Z #15 1.758 41550K .......... .......... .......... .......... .......... 32% 146M 1s -2024-03-23T17:47:20Z #15 1.758 41600K .......... .......... .......... .......... .......... 32% 127M 1s -2024-03-23T17:47:20Z #15 1.758 41650K .......... .......... .......... .......... .......... 32% 90.4M 1s -2024-03-23T17:47:20Z #15 1.760 41700K .......... .......... .......... .......... .......... 32% 120M 1s -2024-03-23T17:47:20Z #15 1.760 41750K .......... .......... .......... .......... .......... 32% 151M 1s -2024-03-23T17:47:20Z #15 1.760 41800K .......... .......... .......... .......... .......... 33% 128M 1s -2024-03-23T17:47:20Z #15 1.760 41850K .......... .......... .......... .......... .......... 33% 126M 1s -2024-03-23T17:47:20Z #15 1.761 41900K .......... .......... .......... .......... .......... 33% 132M 1s -2024-03-23T17:47:20Z #15 1.761 41950K .......... .......... .......... .......... .......... 33% 136M 1s -2024-03-23T17:47:20Z #15 1.761 42000K .......... .......... .......... .......... .......... 33% 149M 1s -2024-03-23T17:47:20Z #15 1.762 42050K .......... .......... .......... .......... .......... 33% 154M 1s -2024-03-23T17:47:20Z #15 1.763 42100K .......... .......... .......... .......... .......... 33% 119M 1s -2024-03-23T17:47:20Z #15 1.763 42150K .......... .......... .......... .......... .......... 33% 152M 1s -2024-03-23T17:47:20Z #15 1.767 42200K .......... .......... .......... .......... .......... 33% 10.8M 1s -2024-03-23T17:47:20Z #15 1.767 42250K .......... .......... .......... .......... .......... 33% 178M 1s -2024-03-23T17:47:20Z #15 1.767 42300K .......... .......... .......... .......... .......... 33% 135M 1s -2024-03-23T17:47:20Z #15 1.768 42350K .......... .......... .......... .......... .......... 33% 129M 1s -2024-03-23T17:47:20Z #15 1.768 42400K .......... .......... .......... .......... .......... 33% 156M 1s -2024-03-23T17:47:20Z #15 1.769 42450K .......... .......... .......... .......... .......... 33% 125M 1s -2024-03-23T17:47:20Z #15 1.769 42500K .......... .......... .......... .......... .......... 33% 101M 1s -2024-03-23T17:47:20Z #15 1.769 42550K .......... .......... .......... .......... .......... 33% 147M 1s -2024-03-23T17:47:20Z #15 1.770 42600K .......... .......... .......... .......... .......... 33% 151M 1s -2024-03-23T17:47:20Z #15 1.770 42650K .......... .......... .......... .......... .......... 33% 156M 1s -2024-03-23T17:47:20Z #15 1.770 42700K .......... .......... .......... .......... .......... 33% 148M 1s -2024-03-23T17:47:20Z #15 1.771 42750K .......... .......... .......... .......... .......... 33% 114M 1s -2024-03-23T17:47:20Z #15 1.772 42800K .......... .......... .......... .......... .......... 33% 130M 1s -2024-03-23T17:47:20Z #15 1.772 42850K .......... .......... .......... .......... .......... 33% 158M 1s -2024-03-23T17:47:20Z #15 1.772 42900K .......... .......... .......... .......... .......... 33% 130M 1s -2024-03-23T17:47:20Z #15 1.772 42950K .......... .......... .......... .......... .......... 33% 160M 1s -2024-03-23T17:47:20Z #15 1.773 43000K .......... .......... .......... .......... .......... 33% 129M 1s -2024-03-23T17:47:20Z #15 1.773 43050K .......... .......... .......... .......... .......... 33% 146M 1s -2024-03-23T17:47:20Z #15 1.773 43100K .......... .......... .......... .......... .......... 34% 149M 1s -2024-03-23T17:47:20Z #15 1.774 43150K .......... .......... .......... .......... .......... 34% 148M 1s -2024-03-23T17:47:20Z #15 1.774 43200K .......... .......... .......... .......... .......... 34% 134M 1s -2024-03-23T17:47:20Z #15 1.774 43250K .......... .......... .......... .......... .......... 34% 150M 1s -2024-03-23T17:47:20Z #15 1.775 43300K .......... .......... .......... .......... .......... 34% 42.4M 1s -2024-03-23T17:47:20Z #15 1.776 43350K .......... .......... .......... .......... .......... 34% 113M 1s -2024-03-23T17:47:20Z #15 1.776 43400K .......... .......... .......... .......... .......... 34% 145M 1s -2024-03-23T17:47:20Z #15 1.777 43450K .......... .......... .......... .......... .......... 34% 143M 1s -2024-03-23T17:47:20Z #15 1.777 43500K .......... .......... .......... .......... .......... 34% 147M 1s -2024-03-23T17:47:20Z #15 1.777 43550K .......... .......... .......... .......... .......... 34% 142M 1s -2024-03-23T17:47:20Z #15 1.778 43600K .......... .......... .......... .......... .......... 34% 127M 1s -2024-03-23T17:47:20Z #15 1.778 43650K .......... .......... .......... .......... .......... 34% 157M 1s -2024-03-23T17:47:20Z #15 1.779 43700K .......... .......... .......... .......... .......... 34% 131M 1s -2024-03-23T17:47:20Z #15 1.779 43750K .......... .......... .......... .......... .......... 34% 10.9M 1s -2024-03-23T17:47:20Z #15 1.791 43800K .......... .......... .......... .......... .......... 34% 125M 1s -2024-03-23T17:47:20Z #15 1.791 43850K .......... .......... .......... .......... .......... 34% 97.7M 1s -2024-03-23T17:47:20Z #15 1.791 43900K .......... .......... .......... .......... .......... 34% 142M 1s -2024-03-23T17:47:20Z #15 1.791 43950K .......... .......... .......... .......... .......... 34% 119M 1s -2024-03-23T17:47:20Z #15 1.791 44000K .......... .......... .......... .......... .......... 34% 76.0M 1s -2024-03-23T17:47:20Z #15 1.791 44050K .......... .......... .......... .......... .......... 34% 135M 1s -2024-03-23T17:47:20Z #15 1.791 44100K .......... .......... .......... .......... .......... 34% 63.7M 1s -2024-03-23T17:47:20Z #15 1.791 44150K .......... .......... .......... .......... .......... 34% 89.5M 1s -2024-03-23T17:47:20Z #15 1.791 44200K .......... .......... .......... .......... .......... 34% 102M 1s -2024-03-23T17:47:20Z #15 1.791 44250K .......... .......... .......... .......... .......... 34% 85.7M 1s -2024-03-23T17:47:20Z #15 1.791 44300K .......... .......... .......... .......... .......... 34% 102M 1s -2024-03-23T17:47:20Z #15 1.791 44350K .......... .......... .......... .......... .......... 35% 75.4M 1s -2024-03-23T17:47:20Z #15 1.791 44400K .......... .......... .......... .......... .......... 35% 77.2M 1s -2024-03-23T17:47:20Z #15 1.791 44450K .......... .......... .......... .......... .......... 35% 93.1M 1s -2024-03-23T17:47:20Z #15 1.791 44500K .......... .......... .......... .......... .......... 35% 44.2M 1s -2024-03-23T17:47:20Z #15 1.791 44550K .......... .......... .......... .......... .......... 35% 60.3M 1s -2024-03-23T17:47:20Z #15 1.793 44600K .......... .......... .......... .......... .......... 35% 82.7M 1s -2024-03-23T17:47:20Z #15 1.793 44650K .......... .......... .......... .......... .......... 35% 9.11M 1s -2024-03-23T17:47:20Z #15 1.799 44700K .......... .......... .......... .......... .......... 35% 108M 1s -2024-03-23T17:47:20Z #15 1.799 44750K .......... .......... .......... .......... .......... 35% 52.9M 1s -2024-03-23T17:47:20Z #15 1.800 44800K .......... .......... .......... .......... .......... 35% 48.0M 1s -2024-03-23T17:47:20Z #15 1.801 44850K .......... .......... .......... .......... .......... 35% 50.1M 1s -2024-03-23T17:47:20Z #15 1.802 44900K .......... .......... .......... .......... .......... 35% 32.6M 1s -2024-03-23T17:47:20Z #15 1.803 44950K .......... .......... .......... .......... .......... 35% 138M 1s -2024-03-23T17:47:20Z #15 1.805 45000K .......... .......... .......... .......... .......... 35% 13.9M 1s -2024-03-23T17:47:20Z #15 1.807 45050K .......... .......... .......... .......... .......... 35% 52.4M 1s -2024-03-23T17:47:20Z #15 1.808 45100K .......... .......... .......... .......... .......... 35% 79.2M 1s -2024-03-23T17:47:20Z #15 1.809 45150K .......... .......... .......... .......... .......... 35% 50.8M 1s -2024-03-23T17:47:20Z #15 1.811 45200K .......... .......... .......... .......... .......... 35% 17.5M 1s -2024-03-23T17:47:20Z #15 1.813 45250K .......... .......... .......... .......... .......... 35% 34.7M 1s -2024-03-23T17:47:20Z #15 1.814 45300K .......... .......... .......... .......... .......... 35% 101M 1s -2024-03-23T17:47:20Z #15 1.814 45350K .......... .......... .......... .......... .......... 35% 40.2M 1s -2024-03-23T17:47:20Z #15 1.816 45400K .......... .......... .......... .......... .......... 35% 25.4M 1s -2024-03-23T17:47:20Z #15 1.818 45450K .......... .......... .......... .......... .......... 35% 72.6M 1s -2024-03-23T17:47:20Z #15 1.819 45500K .......... .......... .......... .......... .......... 35% 83.5M 1s -2024-03-23T17:47:20Z #15 1.819 45550K .......... .......... .......... .......... .......... 35% 28.4M 1s -2024-03-23T17:47:20Z #15 1.821 45600K .......... .......... .......... .......... .......... 36% 37.0M 1s -2024-03-23T17:47:20Z #15 1.822 45650K .......... .......... .......... .......... .......... 36% 55.9M 1s -2024-03-23T17:47:20Z #15 1.823 45700K .......... .......... .......... .......... .......... 36% 51.4M 1s -2024-03-23T17:47:20Z #15 1.824 45750K .......... .......... .......... .......... .......... 36% 35.2M 1s -2024-03-23T17:47:20Z #15 1.825 45800K .......... .......... .......... .......... .......... 36% 39.0M 1s -2024-03-23T17:47:20Z #15 1.827 45850K .......... .......... .......... .......... .......... 36% 19.9M 1s -2024-03-23T17:47:20Z #15 1.831 45900K .......... .......... .......... .......... .......... 36% 45.6M 1s -2024-03-23T17:47:20Z #15 1.831 45950K .......... .......... .......... .......... .......... 36% 32.7M 1s -2024-03-23T17:47:20Z #15 1.831 46000K .......... .......... .......... .......... .......... 36% 24.6M 1s -2024-03-23T17:47:20Z #15 1.834 46050K .......... .......... .......... .......... .......... 36% 70.0M 1s -2024-03-23T17:47:20Z #15 1.834 46100K .......... .......... .......... .......... .......... 36% 47.1M 1s -2024-03-23T17:47:20Z #15 1.835 46150K .......... .......... .......... .......... .......... 36% 75.2M 1s -2024-03-23T17:47:20Z #15 1.839 46200K .......... .......... .......... .......... .......... 36% 76.0M 1s -2024-03-23T17:47:20Z #15 1.839 46250K .......... .......... .......... .......... .......... 36% 118M 1s -2024-03-23T17:47:20Z #15 1.839 46300K .......... .......... .......... .......... .......... 36% 133M 1s -2024-03-23T17:47:20Z #15 1.839 46350K .......... .......... .......... .......... .......... 36% 87.4M 1s -2024-03-23T17:47:20Z #15 1.839 46400K .......... .......... .......... .......... .......... 36% 154M 1s -2024-03-23T17:47:20Z #15 1.839 46450K .......... .......... .......... .......... .......... 36% 81.7M 1s -2024-03-23T17:47:20Z #15 1.839 46500K .......... .......... .......... .......... .......... 36% 52.0M 1s -2024-03-23T17:47:20Z #15 1.840 46550K .......... .......... .......... .......... .......... 36% 19.2M 1s -2024-03-23T17:47:20Z #15 1.842 46600K .......... .......... .......... .......... .......... 36% 33.3M 1s -2024-03-23T17:47:20Z #15 1.844 46650K .......... .......... .......... .......... .......... 36% 37.7M 1s -2024-03-23T17:47:20Z #15 1.845 46700K .......... .......... .......... .......... .......... 36% 55.6M 1s -2024-03-23T17:47:20Z #15 1.846 46750K .......... .......... .......... .......... .......... 36% 17.1M 1s -2024-03-23T17:47:20Z #15 1.849 46800K .......... .......... .......... .......... .......... 36% 25.3M 1s -2024-03-23T17:47:20Z #15 1.851 46850K .......... .......... .......... .......... .......... 36% 37.5M 1s -2024-03-23T17:47:20Z #15 1.852 46900K .......... .......... .......... .......... .......... 37% 54.9M 1s -2024-03-23T17:47:20Z #15 1.853 46950K .......... .......... .......... .......... .......... 37% 25.0M 1s -2024-03-23T17:47:20Z #15 1.855 47000K .......... .......... .......... .......... .......... 37% 63.6M 1s -2024-03-23T17:47:20Z #15 1.856 47050K .......... .......... .......... .......... .......... 37% 38.4M 1s -2024-03-23T17:47:20Z #15 1.857 47100K .......... .......... .......... .......... .......... 37% 26.5M 1s -2024-03-23T17:47:20Z #15 1.863 47150K .......... .......... .......... .......... .......... 37% 92.3M 1s -2024-03-23T17:47:20Z #15 1.863 47200K .......... .......... .......... .......... .......... 37% 112M 1s -2024-03-23T17:47:20Z #15 1.863 47250K .......... .......... .......... .......... .......... 37% 101M 1s -2024-03-23T17:47:20Z #15 1.863 47300K .......... .......... .......... .......... .......... 37% 85.3M 1s -2024-03-23T17:47:20Z #15 1.863 47350K .......... .......... .......... .......... .......... 37% 98.1M 1s -2024-03-23T17:47:20Z #15 1.863 47400K .......... .......... .......... .......... .......... 37% 67.0M 1s -2024-03-23T17:47:20Z #15 1.863 47450K .......... .......... .......... .......... .......... 37% 67.1M 1s -2024-03-23T17:47:20Z #15 1.863 47500K .......... .......... .......... .......... .......... 37% 112M 1s -2024-03-23T17:47:20Z #15 1.863 47550K .......... .......... .......... .......... .......... 37% 10.1M 1s -2024-03-23T17:47:20Z #15 1.868 47600K .......... .......... .......... .......... .......... 37% 41.8M 1s -2024-03-23T17:47:20Z #15 1.872 47650K .......... .......... .......... .......... .......... 37% 94.0M 1s -2024-03-23T17:47:20Z #15 1.872 47700K .......... .......... .......... .......... .......... 37% 119M 1s -2024-03-23T17:47:20Z #15 1.872 47750K .......... .......... .......... .......... .......... 37% 128M 1s -2024-03-23T17:47:20Z #15 1.872 47800K .......... .......... .......... .......... .......... 37% 19.5M 1s -2024-03-23T17:47:20Z #15 1.874 47850K .......... .......... .......... .......... .......... 37% 16.8M 1s -2024-03-23T17:47:20Z #15 1.875 47900K .......... .......... .......... .......... .......... 37% 70.1M 1s -2024-03-23T17:47:20Z #15 1.876 47950K .......... .......... .......... .......... .......... 37% 36.0M 1s -2024-03-23T17:47:20Z #15 1.878 48000K .......... .......... .......... .......... .......... 37% 75.2M 1s -2024-03-23T17:47:20Z #15 1.880 48050K .......... .......... .......... .......... .......... 37% 17.0M 1s -2024-03-23T17:47:20Z #15 1.884 48100K .......... .......... .......... .......... .......... 37% 147M 1s -2024-03-23T17:47:20Z #15 1.884 48150K .......... .......... .......... .......... .......... 38% 153M 1s -2024-03-23T17:47:20Z #15 1.884 48200K .......... .......... .......... .......... .......... 38% 152M 1s -2024-03-23T17:47:20Z #15 1.884 48250K .......... .......... .......... .......... .......... 38% 95.8M 1s -2024-03-23T17:47:20Z #15 1.884 48300K .......... .......... .......... .......... .......... 38% 12.4M 1s -2024-03-23T17:47:20Z #15 1.887 48350K .......... .......... .......... .......... .......... 38% 64.2M 1s -2024-03-23T17:47:20Z #15 1.887 48400K .......... .......... .......... .......... .......... 38% 23.3M 1s -2024-03-23T17:47:20Z #15 1.889 48450K .......... .......... .......... .......... .......... 38% 49.8M 1s -2024-03-23T17:47:20Z #15 1.890 48500K .......... .......... .......... .......... .......... 38% 39.0M 1s -2024-03-23T17:47:20Z #15 1.892 48550K .......... .......... .......... .......... .......... 38% 26.0M 1s -2024-03-23T17:47:20Z #15 1.894 48600K .......... .......... .......... .......... .......... 38% 33.6M 1s -2024-03-23T17:47:20Z #15 1.895 48650K .......... .......... .......... .......... .......... 38% 42.8M 1s -2024-03-23T17:47:20Z #15 1.896 48700K .......... .......... .......... .......... .......... 38% 37.4M 1s -2024-03-23T17:47:20Z #15 1.899 48750K .......... .......... .......... .......... .......... 38% 50.2M 1s -2024-03-23T17:47:20Z #15 1.899 48800K .......... .......... .......... .......... .......... 38% 20.9M 1s -2024-03-23T17:47:20Z #15 1.901 48850K .......... .......... .......... .......... .......... 38% 29.1M 1s -2024-03-23T17:47:20Z #15 1.902 48900K .......... .......... .......... .......... .......... 38% 21.5M 1s -2024-03-23T17:47:20Z #15 1.905 48950K .......... .......... .......... .......... .......... 38% 32.4M 1s -2024-03-23T17:47:20Z #15 1.906 49000K .......... .......... .......... .......... .......... 38% 52.3M 1s -2024-03-23T17:47:20Z #15 1.907 49050K .......... .......... .......... .......... .......... 38% 48.3M 1s -2024-03-23T17:47:20Z #15 1.908 49100K .......... .......... .......... .......... .......... 38% 31.9M 1s -2024-03-23T17:47:20Z #15 1.910 49150K .......... .......... .......... .......... .......... 38% 25.9M 1s -2024-03-23T17:47:20Z #15 1.911 49200K .......... .......... .......... .......... .......... 38% 128M 1s -2024-03-23T17:47:20Z #15 1.912 49250K .......... .......... .......... .......... .......... 38% 130M 1s -2024-03-23T17:47:20Z #15 1.912 49300K .......... .......... .......... .......... .......... 38% 149M 1s -2024-03-23T17:47:20Z #15 1.913 49350K .......... .......... .......... .......... .......... 38% 126M 1s -2024-03-23T17:47:20Z #15 1.913 49400K .......... .......... .......... .......... .......... 39% 158M 1s -2024-03-23T17:47:20Z #15 1.913 49450K .......... .......... .......... .......... .......... 39% 146M 1s -2024-03-23T17:47:20Z #15 1.913 49500K .......... .......... .......... .......... .......... 39% 125M 1s -2024-03-23T17:47:20Z #15 1.914 49550K .......... .......... .......... .......... .......... 39% 149M 1s -2024-03-23T17:47:20Z #15 1.914 49600K .......... .......... .......... .......... .......... 39% 151M 1s -2024-03-23T17:47:20Z #15 1.915 49650K .......... .......... .......... .......... .......... 39% 59.0M 1s -2024-03-23T17:47:20Z #15 1.917 49700K .......... .......... .......... .......... .......... 39% 53.5M 1s -2024-03-23T17:47:20Z #15 1.917 49750K .......... .......... .......... .......... .......... 39% 45.8M 1s -2024-03-23T17:47:20Z #15 1.917 49800K .......... .......... .......... .......... .......... 39% 62.2M 1s -2024-03-23T17:47:20Z #15 1.918 49850K .......... .......... .......... .......... .......... 39% 94.7M 1s -2024-03-23T17:47:20Z #15 1.919 49900K .......... .......... .......... .......... .......... 39% 88.9M 1s -2024-03-23T17:47:20Z #15 1.919 49950K .......... .......... .......... .......... .......... 39% 82.9M 1s -2024-03-23T17:47:20Z #15 1.920 50000K .......... .......... .......... .......... .......... 39% 126M 1s -2024-03-23T17:47:20Z #15 1.920 50050K .......... .......... .......... .......... .......... 39% 62.0M 1s -2024-03-23T17:47:20Z #15 1.921 50100K .......... .......... .......... .......... .......... 39% 40.0M 1s -2024-03-23T17:47:20Z #15 1.923 50150K .......... .......... .......... .......... .......... 39% 22.7M 1s -2024-03-23T17:47:20Z #15 1.924 50200K .......... .......... .......... .......... .......... 39% 28.3M 1s -2024-03-23T17:47:20Z #15 1.926 50250K .......... .......... .......... .......... .......... 39% 33.6M 1s -2024-03-23T17:47:20Z #15 1.928 50300K .......... .......... .......... .......... .......... 39% 79.3M 1s -2024-03-23T17:47:20Z #15 1.928 50350K .......... .......... .......... .......... .......... 39% 31.4M 1s -2024-03-23T17:47:20Z #15 1.930 50400K .......... .......... .......... .......... .......... 39% 43.4M 1s -2024-03-23T17:47:20Z #15 1.931 50450K .......... .......... .......... .......... .......... 39% 29.0M 1s -2024-03-23T17:47:20Z #15 1.933 50500K .......... .......... .......... .......... .......... 39% 40.1M 1s -2024-03-23T17:47:20Z #15 1.934 50550K .......... .......... .......... .......... .......... 39% 130M 1s -2024-03-23T17:47:20Z #15 1.934 50600K .......... .......... .......... .......... .......... 39% 55.0M 1s -2024-03-23T17:47:20Z #15 1.935 50650K .......... .......... .......... .......... .......... 39% 37.5M 1s -2024-03-23T17:47:20Z #15 1.937 50700K .......... .......... .......... .......... .......... 40% 37.0M 1s -2024-03-23T17:47:20Z #15 1.938 50750K .......... .......... .......... .......... .......... 40% 38.1M 1s -2024-03-23T17:47:20Z #15 1.939 50800K .......... .......... .......... .......... .......... 40% 40.2M 1s -2024-03-23T17:47:20Z #15 1.940 50850K .......... .......... .......... .......... .......... 40% 38.2M 1s -2024-03-23T17:47:20Z #15 1.941 50900K .......... .......... .......... .......... .......... 40% 36.8M 1s -2024-03-23T17:47:20Z #15 1.943 50950K .......... .......... .......... .......... .......... 40% 38.1M 1s -2024-03-23T17:47:20Z #15 1.944 51000K .......... .......... .......... .......... .......... 40% 37.6M 1s -2024-03-23T17:47:20Z #15 1.946 51050K .......... .......... .......... .......... .......... 40% 36.3M 1s -2024-03-23T17:47:20Z #15 1.947 51100K .......... .......... .......... .......... .......... 40% 38.8M 1s -2024-03-23T17:47:20Z #15 1.951 51150K .......... .......... .......... .......... .......... 40% 50.9M 1s -2024-03-23T17:47:20Z #15 1.951 51200K .......... .......... .......... .......... .......... 40% 56.9M 1s -2024-03-23T17:47:20Z #15 1.951 51250K .......... .......... .......... .......... .......... 40% 55.3M 1s -2024-03-23T17:47:20Z #15 1.951 51300K .......... .......... .......... .......... .......... 40% 28.9M 1s -2024-03-23T17:47:20Z #15 1.952 51350K .......... .......... .......... .......... .......... 40% 46.6M 1s -2024-03-23T17:47:20Z #15 1.953 51400K .......... .......... .......... .......... .......... 40% 73.5M 1s -2024-03-23T17:47:20Z #15 1.955 51450K .......... .......... .......... .......... .......... 40% 148M 1s -2024-03-23T17:47:20Z #15 1.955 51500K .......... .......... .......... .......... .......... 40% 148M 1s -2024-03-23T17:47:20Z #15 1.955 51550K .......... .......... .......... .......... .......... 40% 61.1M 1s -2024-03-23T17:47:20Z #15 1.956 51600K .......... .......... .......... .......... .......... 40% 25.1M 1s -2024-03-23T17:47:20Z #15 1.958 51650K .......... .......... .......... .......... .......... 40% 56.1M 1s -2024-03-23T17:47:20Z #15 1.958 51700K .......... .......... .......... .......... .......... 40% 37.9M 1s -2024-03-23T17:47:20Z #15 1.967 51750K .......... .......... .......... .......... .......... 40% 5.04M 1s -2024-03-23T17:47:20Z #15 1.973 51800K .......... .......... .......... .......... .......... 40% 120M 1s -2024-03-23T17:47:20Z #15 1.973 51850K .......... .......... .......... .......... .......... 40% 120M 1s -2024-03-23T17:47:20Z #15 1.973 51900K .......... .......... .......... .......... .......... 40% 129M 1s -2024-03-23T17:47:20Z #15 1.973 51950K .......... .......... .......... .......... .......... 41% 151M 1s -2024-03-23T17:47:20Z #15 1.973 52000K .......... .......... .......... .......... .......... 41% 175M 1s -2024-03-23T17:47:20Z #15 1.973 52050K .......... .......... .......... .......... .......... 41% 153M 1s -2024-03-23T17:47:20Z #15 1.973 52100K .......... .......... .......... .......... .......... 41% 152M 1s -2024-03-23T17:47:20Z #15 1.973 52150K .......... .......... .......... .......... .......... 41% 142M 1s -2024-03-23T17:47:20Z #15 1.973 52200K .......... .......... .......... .......... .......... 41% 162M 1s -2024-03-23T17:47:20Z #15 1.973 52250K .......... .......... .......... .......... .......... 41% 147M 1s -2024-03-23T17:47:20Z #15 1.973 52300K .......... .......... .......... .......... .......... 41% 131M 1s -2024-03-23T17:47:20Z #15 1.973 52350K .......... .......... .......... .......... .......... 41% 139M 1s -2024-03-23T17:47:20Z #15 1.974 52400K .......... .......... .......... .......... .......... 41% 124M 1s -2024-03-23T17:47:20Z #15 1.974 52450K .......... .......... .......... .......... .......... 41% 84.6M 1s -2024-03-23T17:47:20Z #15 1.974 52500K .......... .......... .......... .......... .......... 41% 12.6M 1s -2024-03-23T17:47:20Z #15 1.983 52550K .......... .......... .......... .......... .......... 41% 166M 1s -2024-03-23T17:47:20Z #15 1.983 52600K .......... .......... .......... .......... .......... 41% 125M 1s -2024-03-23T17:47:20Z #15 1.983 52650K .......... .......... .......... .......... .......... 41% 146M 1s -2024-03-23T17:47:20Z #15 1.983 52700K .......... .......... .......... .......... .......... 41% 117M 1s -2024-03-23T17:47:20Z #15 1.983 52750K .......... .......... .......... .......... .......... 41% 130M 1s -2024-03-23T17:47:20Z #15 1.983 52800K .......... .......... .......... .......... .......... 41% 153M 1s -2024-03-23T17:47:20Z #15 1.983 52850K .......... .......... .......... .......... .......... 41% 154M 1s -2024-03-23T17:47:20Z #15 1.983 52900K .......... .......... .......... .......... .......... 41% 153M 1s -2024-03-23T17:47:20Z #15 1.983 52950K .......... .......... .......... .......... .......... 41% 132M 1s -2024-03-23T17:47:20Z #15 1.983 53000K .......... .......... .......... .......... .......... 41% 146M 1s -2024-03-23T17:47:20Z #15 1.983 53050K .......... .......... .......... .......... .......... 41% 143M 1s -2024-03-23T17:47:20Z #15 1.983 53100K .......... .......... .......... .......... .......... 41% 161M 1s -2024-03-23T17:47:20Z #15 1.983 53150K .......... .......... .......... .......... .......... 41% 144M 1s -2024-03-23T17:47:20Z #15 1.983 53200K .......... .......... .......... .......... .......... 42% 10.2M 1s -2024-03-23T17:47:20Z #15 2.015 53250K .......... .......... .......... .......... .......... 42% 160M 1s -2024-03-23T17:47:20Z #15 2.015 53300K .......... .......... .......... .......... .......... 42% 121M 1s -2024-03-23T17:47:20Z #15 2.015 53350K .......... .......... .......... .......... .......... 42% 140M 1s -2024-03-23T17:47:20Z #15 2.015 53400K .......... .......... .......... .......... .......... 42% 158M 1s -2024-03-23T17:47:20Z #15 2.015 53450K .......... .......... .......... .......... .......... 42% 139M 1s -2024-03-23T17:47:20Z #15 2.015 53500K .......... .......... .......... .......... .......... 42% 137M 1s -2024-03-23T17:47:20Z #15 2.015 53550K .......... .......... .......... .......... .......... 42% 138M 1s -2024-03-23T17:47:20Z #15 2.015 53600K .......... .......... .......... .......... .......... 42% 156M 1s -2024-03-23T17:47:20Z #15 2.015 53650K .......... .......... .......... .......... .......... 42% 140M 1s -2024-03-23T17:47:20Z #15 2.015 53700K .......... .......... .......... .......... .......... 42% 102M 1s -2024-03-23T17:47:20Z #15 2.015 53750K .......... .......... .......... .......... .......... 42% 174M 1s -2024-03-23T17:47:20Z #15 2.015 53800K .......... .......... .......... .......... .......... 42% 137M 1s -2024-03-23T17:47:20Z #15 2.015 53850K .......... .......... .......... .......... .......... 42% 189M 1s -2024-03-23T17:47:20Z #15 2.015 53900K .......... .......... .......... .......... .......... 42% 148M 1s -2024-03-23T17:47:20Z #15 2.015 53950K .......... .......... .......... .......... .......... 42% 129M 1s -2024-03-23T17:47:20Z #15 2.015 54000K .......... .......... .......... .......... .......... 42% 170M 1s -2024-03-23T17:47:20Z #15 2.015 54050K .......... .......... .......... .......... .......... 42% 165M 1s -2024-03-23T17:47:20Z #15 2.015 54100K .......... .......... .......... .......... .......... 42% 73.9M 1s -2024-03-23T17:47:20Z #15 2.015 54150K .......... .......... .......... .......... .......... 42% 53.4M 1s -2024-03-23T17:47:20Z #15 2.015 54200K .......... .......... .......... .......... .......... 42% 23.1M 1s -2024-03-23T17:47:20Z #15 2.015 54250K .......... .......... .......... .......... .......... 42% 32.9M 1s -2024-03-23T17:47:20Z #15 2.015 54300K .......... .......... .......... .......... .......... 42% 47.2M 1s -2024-03-23T17:47:20Z #15 2.015 54350K .......... .......... .......... .......... .......... 42% 54.4M 1s -2024-03-23T17:47:20Z #15 2.015 54400K .......... .......... .......... .......... .......... 42% 48.4M 1s -2024-03-23T17:47:20Z #15 2.015 54450K .......... .......... .......... .......... .......... 42% 48.1M 1s -2024-03-23T17:47:20Z #15 2.015 54500K .......... .......... .......... .......... .......... 43% 45.4M 1s -2024-03-23T17:47:20Z #15 2.015 54550K .......... .......... .......... .......... .......... 43% 25.8M 1s -2024-03-23T17:47:20Z #15 2.015 54600K .......... .......... .......... .......... .......... 43% 35.9M 1s -2024-03-23T17:47:20Z #15 2.015 54650K .......... .......... .......... .......... .......... 43% 80.7M 1s -2024-03-23T17:47:20Z #15 2.015 54700K .......... .......... .......... .......... .......... 43% 22.7M 1s -2024-03-23T17:47:20Z #15 2.015 54750K .......... .......... .......... .......... .......... 43% 44.9M 1s -2024-03-23T17:47:20Z #15 2.015 54800K .......... .......... .......... .......... .......... 43% 124M 1s -2024-03-23T17:47:20Z #15 2.015 54850K .......... .......... .......... .......... .......... 43% 124M 1s -2024-03-23T17:47:20Z #15 2.015 54900K .......... .......... .......... .......... .......... 43% 175M 1s -2024-03-23T17:47:20Z #15 2.015 54950K .......... .......... .......... .......... .......... 43% 158M 1s -2024-03-23T17:47:20Z #15 2.015 55000K .......... .......... .......... .......... .......... 43% 126M 1s -2024-03-23T17:47:20Z #15 2.015 55050K .......... .......... .......... .......... .......... 43% 168M 1s -2024-03-23T17:47:20Z #15 2.015 55100K .......... .......... .......... .......... .......... 43% 169M 1s -2024-03-23T17:47:20Z #15 2.015 55150K .......... .......... .......... .......... .......... 43% 133M 1s -2024-03-23T17:47:20Z #15 2.015 55200K .......... .......... .......... .......... .......... 43% 146M 1s -2024-03-23T17:47:20Z #15 2.015 55250K .......... .......... .......... .......... .......... 43% 144M 1s -2024-03-23T17:47:20Z #15 2.015 55300K .......... .......... .......... .......... .......... 43% 163M 1s -2024-03-23T17:47:20Z #15 2.015 55350K .......... .......... .......... .......... .......... 43% 150M 1s -2024-03-23T17:47:20Z #15 2.015 55400K .......... .......... .......... .......... .......... 43% 74.8M 1s -2024-03-23T17:47:20Z #15 2.027 55450K .......... .......... .......... .......... .......... 43% 34.0M 1s -2024-03-23T17:47:20Z #15 2.027 55500K .......... .......... .......... .......... .......... 43% 64.2M 1s -2024-03-23T17:47:20Z #15 2.027 55550K .......... .......... .......... .......... .......... 43% 69.2M 1s -2024-03-23T17:47:20Z #15 2.027 55600K .......... .......... .......... .......... .......... 43% 86.6M 1s -2024-03-23T17:47:20Z #15 2.027 55650K .......... .......... .......... .......... .......... 43% 23.0M 1s -2024-03-23T17:47:20Z #15 2.027 55700K .......... .......... .......... .......... .......... 43% 54.1M 1s -2024-03-23T17:47:20Z #15 2.027 55750K .......... .......... .......... .......... .......... 44% 42.9M 1s -2024-03-23T17:47:20Z #15 2.027 55800K .......... .......... .......... .......... .......... 44% 84.3M 1s -2024-03-23T17:47:20Z #15 2.027 55850K .......... .......... .......... .......... .......... 44% 61.3M 1s -2024-03-23T17:47:20Z #15 2.027 55900K .......... .......... .......... .......... .......... 44% 71.9M 1s -2024-03-23T17:47:20Z #15 2.027 55950K .......... .......... .......... .......... .......... 44% 55.8M 1s -2024-03-23T17:47:20Z #15 2.027 56000K .......... .......... .......... .......... .......... 44% 56.6M 1s -2024-03-23T17:47:20Z #15 2.027 56050K .......... .......... .......... .......... .......... 44% 26.2M 1s -2024-03-23T17:47:20Z #15 2.031 56100K .......... .......... .......... .......... .......... 44% 39.6M 1s -2024-03-23T17:47:20Z #15 2.031 56150K .......... .......... .......... .......... .......... 44% 45.2M 1s -2024-03-23T17:47:20Z #15 2.031 56200K .......... .......... .......... .......... .......... 44% 18.5M 1s -2024-03-23T17:47:20Z #15 2.034 56250K .......... .......... .......... .......... .......... 44% 29.3M 1s -2024-03-23T17:47:20Z #15 2.036 56300K .......... .......... .......... .......... .......... 44% 145M 1s -2024-03-23T17:47:21Z #15 2.036 56350K .......... .......... .......... .......... .......... 44% 167M 1s -2024-03-23T17:47:21Z #15 2.036 56400K .......... .......... .......... .......... .......... 44% 62.8M 1s -2024-03-23T17:47:21Z #15 2.037 56450K .......... .......... .......... .......... .......... 44% 26.2M 1s -2024-03-23T17:47:21Z #15 2.038 56500K .......... .......... .......... .......... .......... 44% 60.5M 1s -2024-03-23T17:47:21Z #15 2.041 56550K .......... .......... .......... .......... .......... 44% 149M 1s -2024-03-23T17:47:21Z #15 2.041 56600K .......... .......... .......... .......... .......... 44% 142M 1s -2024-03-23T17:47:21Z #15 2.041 56650K .......... .......... .......... .......... .......... 44% 165M 1s -2024-03-23T17:47:21Z #15 2.041 56700K .......... .......... .......... .......... .......... 44% 163M 1s -2024-03-23T17:47:21Z #15 2.041 56750K .......... .......... .......... .......... .......... 44% 116M 1s -2024-03-23T17:47:21Z #15 2.041 56800K .......... .......... .......... .......... .......... 44% 115M 1s -2024-03-23T17:47:21Z #15 2.041 56850K .......... .......... .......... .......... .......... 44% 23.1M 1s -2024-03-23T17:47:21Z #15 2.043 56900K .......... .......... .......... .......... .......... 44% 32.3M 1s -2024-03-23T17:47:21Z #15 2.045 56950K .......... .......... .......... .......... .......... 44% 41.3M 1s -2024-03-23T17:47:21Z #15 2.046 57000K .......... .......... .......... .......... .......... 44% 44.7M 1s -2024-03-23T17:47:21Z #15 2.047 57050K .......... .......... .......... .......... .......... 45% 59.2M 1s -2024-03-23T17:47:21Z #15 2.048 57100K .......... .......... .......... .......... .......... 45% 55.7M 1s -2024-03-23T17:47:21Z #15 2.049 57150K .......... .......... .......... .......... .......... 45% 27.6M 1s -2024-03-23T17:47:21Z #15 2.051 57200K .......... .......... .......... .......... .......... 45% 42.5M 1s -2024-03-23T17:47:21Z #15 2.052 57250K .......... .......... .......... .......... .......... 45% 37.8M 1s -2024-03-23T17:47:21Z #15 2.053 57300K .......... .......... .......... .......... .......... 45% 42.6M 1s -2024-03-23T17:47:21Z #15 2.054 57350K .......... .......... .......... .......... .......... 45% 24.3M 1s -2024-03-23T17:47:21Z #15 2.056 57400K .......... .......... .......... .......... .......... 45% 37.3M 1s -2024-03-23T17:47:21Z #15 2.058 57450K .......... .......... .......... .......... .......... 45% 33.1M 1s -2024-03-23T17:47:21Z #15 2.059 57500K .......... .......... .......... .......... .......... 45% 38.6M 1s -2024-03-23T17:47:21Z #15 2.060 57550K .......... .......... .......... .......... .......... 45% 40.6M 1s -2024-03-23T17:47:21Z #15 2.062 57600K .......... .......... .......... .......... .......... 45% 39.0M 1s -2024-03-23T17:47:21Z #15 2.063 57650K .......... .......... .......... .......... .......... 45% 36.9M 1s -2024-03-23T17:47:21Z #15 2.064 57700K .......... .......... .......... .......... .......... 45% 41.8M 1s -2024-03-23T17:47:21Z #15 2.065 57750K .......... .......... .......... .......... .......... 45% 57.4M 1s -2024-03-23T17:47:21Z #15 2.066 57800K .......... .......... .......... .......... .......... 45% 63.2M 1s -2024-03-23T17:47:21Z #15 2.067 57850K .......... .......... .......... .......... .......... 45% 16.6M 1s -2024-03-23T17:47:21Z #15 2.070 57900K .......... .......... .......... .......... .......... 45% 13.7M 1s -2024-03-23T17:47:21Z #15 2.074 57950K .......... .......... .......... .......... .......... 45% 11.8M 1s -2024-03-23T17:47:21Z #15 2.078 58000K .......... .......... .......... .......... .......... 45% 16.2M 1s -2024-03-23T17:47:21Z #15 2.081 58050K .......... .......... .......... .......... .......... 45% 20.3M 1s -2024-03-23T17:47:21Z #15 2.083 58100K .......... .......... .......... .......... .......... 45% 31.5M 1s -2024-03-23T17:47:21Z #15 2.085 58150K .......... .......... .......... .......... .......... 45% 31.3M 1s -2024-03-23T17:47:21Z #15 2.086 58200K .......... .......... .......... .......... .......... 45% 34.4M 1s -2024-03-23T17:47:21Z #15 2.088 58250K .......... .......... .......... .......... .......... 45% 51.4M 1s -2024-03-23T17:47:21Z #15 2.091 58300K .......... .......... .......... .......... .......... 46% 141M 1s -2024-03-23T17:47:21Z #15 2.091 58350K .......... .......... .......... .......... .......... 46% 153M 1s -2024-03-23T17:47:21Z #15 2.091 58400K .......... .......... .......... .......... .......... 46% 156M 1s -2024-03-23T17:47:21Z #15 2.091 58450K .......... .......... .......... .......... .......... 46% 144M 1s -2024-03-23T17:47:21Z #15 2.091 58500K .......... .......... .......... .......... .......... 46% 144M 1s -2024-03-23T17:47:21Z #15 2.091 58550K .......... .......... .......... .......... .......... 46% 163M 1s -2024-03-23T17:47:21Z #15 2.091 58600K .......... .......... .......... .......... .......... 46% 149M 1s -2024-03-23T17:47:21Z #15 2.091 58650K .......... .......... .......... .......... .......... 46% 15.3M 1s -2024-03-23T17:47:21Z #15 2.095 58700K .......... .......... .......... .......... .......... 46% 19.2M 1s -2024-03-23T17:47:21Z #15 2.097 58750K .......... .......... .......... .......... .......... 46% 50.9M 1s -2024-03-23T17:47:21Z #15 2.098 58800K .......... .......... .......... .......... .......... 46% 48.1M 1s -2024-03-23T17:47:21Z #15 2.099 58850K .......... .......... .......... .......... .......... 46% 33.4M 1s -2024-03-23T17:47:21Z #15 2.100 58900K .......... .......... .......... .......... .......... 46% 117M 1s -2024-03-23T17:47:21Z #15 2.100 58950K .......... .......... .......... .......... .......... 46% 76.2M 1s -2024-03-23T17:47:21Z #15 2.103 59000K .......... .......... .......... .......... .......... 46% 157M 1s -2024-03-23T17:47:21Z #15 2.103 59050K .......... .......... .......... .......... .......... 46% 165M 1s -2024-03-23T17:47:21Z #15 2.103 59100K .......... .......... .......... .......... .......... 46% 132M 1s -2024-03-23T17:47:21Z #15 2.103 59150K .......... .......... .......... .......... .......... 46% 161M 1s -2024-03-23T17:47:21Z #15 2.103 59200K .......... .......... .......... .......... .......... 46% 120M 1s -2024-03-23T17:47:21Z #15 2.103 59250K .......... .......... .......... .......... .......... 46% 43.3M 1s -2024-03-23T17:47:21Z #15 2.104 59300K .......... .......... .......... .......... .......... 46% 54.7M 1s -2024-03-23T17:47:21Z #15 2.105 59350K .......... .......... .......... .......... .......... 46% 91.1M 1s -2024-03-23T17:47:21Z #15 2.105 59400K .......... .......... .......... .......... .......... 46% 69.3M 1s -2024-03-23T17:47:21Z #15 2.107 59450K .......... .......... .......... .......... .......... 46% 109M 1s -2024-03-23T17:47:21Z #15 2.107 59500K .......... .......... .......... .......... .......... 46% 44.0M 1s -2024-03-23T17:47:21Z #15 2.108 59550K .......... .......... .......... .......... .......... 47% 48.3M 1s -2024-03-23T17:47:21Z #15 2.109 59600K .......... .......... .......... .......... .......... 47% 66.1M 1s -2024-03-23T17:47:21Z #15 2.110 59650K .......... .......... .......... .......... .......... 47% 99.7M 1s -2024-03-23T17:47:21Z #15 2.110 59700K .......... .......... .......... .......... .......... 47% 64.0M 1s -2024-03-23T17:47:21Z #15 2.111 59750K .......... .......... .......... .......... .......... 47% 58.9M 1s -2024-03-23T17:47:21Z #15 2.111 59800K .......... .......... .......... .......... .......... 47% 78.5M 1s -2024-03-23T17:47:21Z #15 2.112 59850K .......... .......... .......... .......... .......... 47% 87.5M 1s -2024-03-23T17:47:21Z #15 2.112 59900K .......... .......... .......... .......... .......... 47% 84.0M 1s -2024-03-23T17:47:21Z #15 2.113 59950K .......... .......... .......... .......... .......... 47% 66.9M 1s -2024-03-23T17:47:21Z #15 2.114 60000K .......... .......... .......... .......... .......... 47% 89.5M 1s -2024-03-23T17:47:21Z #15 2.114 60050K .......... .......... .......... .......... .......... 47% 57.7M 1s -2024-03-23T17:47:21Z #15 2.115 60100K .......... .......... .......... .......... .......... 47% 95.2M 1s -2024-03-23T17:47:21Z #15 2.116 60150K .......... .......... .......... .......... .......... 47% 83.3M 1s -2024-03-23T17:47:21Z #15 2.116 60200K .......... .......... .......... .......... .......... 47% 63.3M 1s -2024-03-23T17:47:21Z #15 2.117 60250K .......... .......... .......... .......... .......... 47% 66.0M 1s -2024-03-23T17:47:21Z #15 2.118 60300K .......... .......... .......... .......... .......... 47% 115M 1s -2024-03-23T17:47:21Z #15 2.118 60350K .......... .......... .......... .......... .......... 47% 70.1M 1s -2024-03-23T17:47:21Z #15 2.124 60400K .......... .......... .......... .......... .......... 47% 152M 1s -2024-03-23T17:47:21Z #15 2.124 60450K .......... .......... .......... .......... .......... 47% 85.6M 1s -2024-03-23T17:47:21Z #15 2.124 60500K .......... .......... .......... .......... .......... 47% 124M 1s -2024-03-23T17:47:21Z #15 2.124 60550K .......... .......... .......... .......... .......... 47% 106M 1s -2024-03-23T17:47:21Z #15 2.124 60600K .......... .......... .......... .......... .......... 47% 143M 1s -2024-03-23T17:47:21Z #15 2.124 60650K .......... .......... .......... .......... .......... 47% 108M 1s -2024-03-23T17:47:21Z #15 2.124 60700K .......... .......... .......... .......... .......... 47% 88.3M 1s -2024-03-23T17:47:21Z #15 2.124 60750K .......... .......... .......... .......... .......... 47% 111M 1s -2024-03-23T17:47:21Z #15 2.124 60800K .......... .......... .......... .......... .......... 47% 73.1M 1s -2024-03-23T17:47:21Z #15 2.124 60850K .......... .......... .......... .......... .......... 48% 57.2M 1s -2024-03-23T17:47:21Z #15 2.124 60900K .......... .......... .......... .......... .......... 48% 82.0M 1s -2024-03-23T17:47:21Z #15 2.124 60950K .......... .......... .......... .......... .......... 48% 82.4M 1s -2024-03-23T17:47:21Z #15 2.125 61000K .......... .......... .......... .......... .......... 48% 76.3M 1s -2024-03-23T17:47:21Z #15 2.126 61050K .......... .......... .......... .......... .......... 48% 81.9M 1s -2024-03-23T17:47:21Z #15 2.126 61100K .......... .......... .......... .......... .......... 48% 68.5M 1s -2024-03-23T17:47:21Z #15 2.130 61150K .......... .......... .......... .......... .......... 48% 80.8M 1s -2024-03-23T17:47:21Z #15 2.130 61200K .......... .......... .......... .......... .......... 48% 75.0M 1s -2024-03-23T17:47:21Z #15 2.130 61250K .......... .......... .......... .......... .......... 48% 78.0M 1s -2024-03-23T17:47:21Z #15 2.130 61300K .......... .......... .......... .......... .......... 48% 137M 1s -2024-03-23T17:47:21Z #15 2.130 61350K .......... .......... .......... .......... .......... 48% 51.1M 1s -2024-03-23T17:47:21Z #15 2.131 61400K .......... .......... .......... .......... .......... 48% 106M 1s -2024-03-23T17:47:21Z #15 2.132 61450K .......... .......... .......... .......... .......... 48% 47.6M 1s -2024-03-23T17:47:21Z #15 2.132 61500K .......... .......... .......... .......... .......... 48% 84.3M 1s -2024-03-23T17:47:21Z #15 2.132 61550K .......... .......... .......... .......... .......... 48% 39.2M 1s -2024-03-23T17:47:21Z #15 2.134 61600K .......... .......... .......... .......... .......... 48% 96.4M 1s -2024-03-23T17:47:21Z #15 2.134 61650K .......... .......... .......... .......... .......... 48% 101M 1s -2024-03-23T17:47:21Z #15 2.135 61700K .......... .......... .......... .......... .......... 48% 65.4M 1s -2024-03-23T17:47:21Z #15 2.135 61750K .......... .......... .......... .......... .......... 48% 94.5M 1s -2024-03-23T17:47:21Z #15 2.136 61800K .......... .......... .......... .......... .......... 48% 76.5M 1s -2024-03-23T17:47:21Z #15 2.137 61850K .......... .......... .......... .......... .......... 48% 76.6M 1s -2024-03-23T17:47:21Z #15 2.137 61900K .......... .......... .......... .......... .......... 48% 92.2M 1s -2024-03-23T17:47:21Z #15 2.138 61950K .......... .......... .......... .......... .......... 48% 74.4M 1s -2024-03-23T17:47:21Z #15 2.138 62000K .......... .......... .......... .......... .......... 48% 80.7M 1s -2024-03-23T17:47:21Z #15 2.143 62050K .......... .......... .......... .......... .......... 48% 98.6M 1s -2024-03-23T17:47:21Z #15 2.143 62100K .......... .......... .......... .......... .......... 49% 121M 1s -2024-03-23T17:47:21Z #15 2.143 62150K .......... .......... .......... .......... .......... 49% 87.5M 1s -2024-03-23T17:47:21Z #15 2.143 62200K .......... .......... .......... .......... .......... 49% 108M 1s -2024-03-23T17:47:21Z #15 2.143 62250K .......... .......... .......... .......... .......... 49% 129M 1s -2024-03-23T17:47:21Z #15 2.143 62300K .......... .......... .......... .......... .......... 49% 93.0M 1s -2024-03-23T17:47:21Z #15 2.143 62350K .......... .......... .......... .......... .......... 49% 153M 1s -2024-03-23T17:47:21Z #15 2.143 62400K .......... .......... .......... .......... .......... 49% 89.8M 1s -2024-03-23T17:47:21Z #15 2.143 62450K .......... .......... .......... .......... .......... 49% 55.3M 1s -2024-03-23T17:47:21Z #15 2.143 62500K .......... .......... .......... .......... .......... 49% 60.3M 1s -2024-03-23T17:47:21Z #15 2.144 62550K .......... .......... .......... .......... .......... 49% 80.0M 1s -2024-03-23T17:47:21Z #15 2.145 62600K .......... .......... .......... .......... .......... 49% 94.2M 1s -2024-03-23T17:47:21Z #15 2.145 62650K .......... .......... .......... .......... .......... 49% 73.8M 1s -2024-03-23T17:47:21Z #15 2.146 62700K .......... .......... .......... .......... .......... 49% 50.0M 1s -2024-03-23T17:47:21Z #15 2.147 62750K .......... .......... .......... .......... .......... 49% 106M 1s -2024-03-23T17:47:21Z #15 2.148 62800K .......... .......... .......... .......... .......... 49% 130M 1s -2024-03-23T17:47:21Z #15 2.148 62850K .......... .......... .......... .......... .......... 49% 114M 1s -2024-03-23T17:47:21Z #15 2.148 62900K .......... .......... .......... .......... .......... 49% 68.9M 1s -2024-03-23T17:47:21Z #15 2.150 62950K .......... .......... .......... .......... .......... 49% 74.0M 1s -2024-03-23T17:47:21Z #15 2.150 63000K .......... .......... .......... .......... .......... 49% 57.5M 1s -2024-03-23T17:47:21Z #15 2.151 63050K .......... .......... .......... .......... .......... 49% 101M 1s -2024-03-23T17:47:21Z #15 2.151 63100K .......... .......... .......... .......... .......... 49% 72.4M 1s -2024-03-23T17:47:21Z #15 2.153 63150K .......... .......... .......... .......... .......... 49% 70.8M 1s -2024-03-23T17:47:21Z #15 2.153 63200K .......... .......... .......... .......... .......... 49% 38.5M 1s -2024-03-23T17:47:21Z #15 2.154 63250K .......... .......... .......... .......... .......... 49% 61.2M 1s -2024-03-23T17:47:21Z #15 2.155 63300K .......... .......... .......... .......... .......... 49% 52.0M 1s -2024-03-23T17:47:21Z #15 2.156 63350K .......... .......... .......... .......... .......... 50% 79.5M 1s -2024-03-23T17:47:21Z #15 2.156 63400K .......... .......... .......... .......... .......... 50% 36.9M 1s -2024-03-23T17:47:21Z #15 2.158 63450K .......... .......... .......... .......... .......... 50% 50.6M 1s -2024-03-23T17:47:21Z #15 2.159 63500K .......... .......... .......... .......... .......... 50% 54.6M 1s -2024-03-23T17:47:21Z #15 2.160 63550K .......... .......... .......... .......... .......... 50% 91.2M 1s -2024-03-23T17:47:21Z #15 2.160 63600K .......... .......... .......... .......... .......... 50% 52.0M 1s -2024-03-23T17:47:21Z #15 2.162 63650K .......... .......... .......... .......... .......... 50% 36.9M 1s -2024-03-23T17:47:21Z #15 2.162 63700K .......... .......... .......... .......... .......... 50% 108M 1s -2024-03-23T17:47:21Z #15 2.162 63750K .......... .......... .......... .......... .......... 50% 84.2M 1s -2024-03-23T17:47:21Z #15 2.163 63800K .......... .......... .......... .......... .......... 50% 95.6M 1s -2024-03-23T17:47:21Z #15 2.163 63850K .......... .......... .......... .......... .......... 50% 102M 1s -2024-03-23T17:47:21Z #15 2.164 63900K .......... .......... .......... .......... .......... 50% 72.6M 1s -2024-03-23T17:47:21Z #15 2.165 63950K .......... .......... .......... .......... .......... 50% 101M 1s -2024-03-23T17:47:21Z #15 2.165 64000K .......... .......... .......... .......... .......... 50% 68.3M 1s -2024-03-23T17:47:21Z #15 2.166 64050K .......... .......... .......... .......... .......... 50% 129M 1s -2024-03-23T17:47:21Z #15 2.167 64100K .......... .......... .......... .......... .......... 50% 20.0M 1s -2024-03-23T17:47:21Z #15 2.169 64150K .......... .......... .......... .......... .......... 50% 37.9M 1s -2024-03-23T17:47:21Z #15 2.170 64200K .......... .......... .......... .......... .......... 50% 82.7M 1s -2024-03-23T17:47:21Z #15 2.171 64250K .......... .......... .......... .......... .......... 50% 50.5M 1s -2024-03-23T17:47:21Z #15 2.172 64300K .......... .......... .......... .......... .......... 50% 145M 1s -2024-03-23T17:47:21Z #15 2.172 64350K .......... .......... .......... .......... .......... 50% 52.1M 1s -2024-03-23T17:47:21Z #15 2.175 64400K .......... .......... .......... .......... .......... 50% 73.9M 1s -2024-03-23T17:47:21Z #15 2.175 64450K .......... .......... .......... .......... .......... 50% 165M 1s -2024-03-23T17:47:21Z #15 2.175 64500K .......... .......... .......... .......... .......... 50% 153M 1s -2024-03-23T17:47:21Z #15 2.175 64550K .......... .......... .......... .......... .......... 50% 145M 1s -2024-03-23T17:47:21Z #15 2.175 64600K .......... .......... .......... .......... .......... 50% 19.4M 1s -2024-03-23T17:47:21Z #15 2.179 64650K .......... .......... .......... .......... .......... 51% 122M 1s -2024-03-23T17:47:21Z #15 2.179 64700K .......... .......... .......... .......... .......... 51% 102M 1s -2024-03-23T17:47:21Z #15 2.179 64750K .......... .......... .......... .......... .......... 51% 121M 1s -2024-03-23T17:47:21Z #15 2.179 64800K .......... .......... .......... .......... .......... 51% 117M 1s -2024-03-23T17:47:21Z #15 2.179 64850K .......... .......... .......... .......... .......... 51% 17.4M 1s -2024-03-23T17:47:21Z #15 2.182 64900K .......... .......... .......... .......... .......... 51% 19.8M 1s -2024-03-23T17:47:21Z #15 2.184 64950K .......... .......... .......... .......... .......... 51% 25.9M 1s -2024-03-23T17:47:21Z #15 2.186 65000K .......... .......... .......... .......... .......... 51% 77.5M 1s -2024-03-23T17:47:21Z #15 2.191 65050K .......... .......... .......... .......... .......... 51% 116M 1s -2024-03-23T17:47:21Z #15 2.191 65100K .......... .......... .......... .......... .......... 51% 129M 1s -2024-03-23T17:47:21Z #15 2.191 65150K .......... .......... .......... .......... .......... 51% 137M 1s -2024-03-23T17:47:21Z #15 2.191 65200K .......... .......... .......... .......... .......... 51% 111M 1s -2024-03-23T17:47:21Z #15 2.191 65250K .......... .......... .......... .......... .......... 51% 120M 1s -2024-03-23T17:47:21Z #15 2.191 65300K .......... .......... .......... .......... .......... 51% 162M 1s -2024-03-23T17:47:21Z #15 2.191 65350K .......... .......... .......... .......... .......... 51% 117M 1s -2024-03-23T17:47:21Z #15 2.191 65400K .......... .......... .......... .......... .......... 51% 140M 1s -2024-03-23T17:47:21Z #15 2.191 65450K .......... .......... .......... .......... .......... 51% 153M 1s -2024-03-23T17:47:21Z #15 2.191 65500K .......... .......... .......... .......... .......... 51% 114M 1s -2024-03-23T17:47:21Z #15 2.191 65550K .......... .......... .......... .......... .......... 51% 128M 1s -2024-03-23T17:47:21Z #15 2.191 65600K .......... .......... .......... .......... .......... 51% 8.28M 1s -2024-03-23T17:47:21Z #15 2.197 65650K .......... .......... .......... .......... .......... 51% 29.2M 1s -2024-03-23T17:47:21Z #15 2.198 65700K .......... .......... .......... .......... .......... 51% 30.9M 1s -2024-03-23T17:47:21Z #15 2.203 65750K .......... .......... .......... .......... .......... 51% 142M 1s -2024-03-23T17:47:21Z #15 2.203 65800K .......... .......... .......... .......... .......... 51% 129M 1s -2024-03-23T17:47:21Z #15 2.203 65850K .......... .......... .......... .......... .......... 51% 126M 1s -2024-03-23T17:47:21Z #15 2.203 65900K .......... .......... .......... .......... .......... 52% 125M 1s -2024-03-23T17:47:21Z #15 2.203 65950K .......... .......... .......... .......... .......... 52% 164M 1s -2024-03-23T17:47:21Z #15 2.203 66000K .......... .......... .......... .......... .......... 52% 128M 1s -2024-03-23T17:47:21Z #15 2.203 66050K .......... .......... .......... .......... .......... 52% 153M 1s -2024-03-23T17:47:21Z #15 2.203 66100K .......... .......... .......... .......... .......... 52% 150M 1s -2024-03-23T17:47:21Z #15 2.203 66150K .......... .......... .......... .......... .......... 52% 21.3M 1s -2024-03-23T17:47:21Z #15 2.206 66200K .......... .......... .......... .......... .......... 52% 12.0M 1s -2024-03-23T17:47:21Z #15 2.210 66250K .......... .......... .......... .......... .......... 52% 32.2M 1s -2024-03-23T17:47:21Z #15 2.211 66300K .......... .......... .......... .......... .......... 52% 41.6M 1s -2024-03-23T17:47:21Z #15 2.212 66350K .......... .......... .......... .......... .......... 52% 145M 1s -2024-03-23T17:47:21Z #15 2.212 66400K .......... .......... .......... .......... .......... 52% 25.8M 1s -2024-03-23T17:47:21Z #15 2.214 66450K .......... .......... .......... .......... .......... 52% 38.8M 1s -2024-03-23T17:47:21Z #15 2.215 66500K .......... .......... .......... .......... .......... 52% 34.8M 1s -2024-03-23T17:47:21Z #15 2.217 66550K .......... .......... .......... .......... .......... 52% 41.2M 1s -2024-03-23T17:47:21Z #15 2.218 66600K .......... .......... .......... .......... .......... 52% 50.6M 1s -2024-03-23T17:47:21Z #15 2.219 66650K .......... .......... .......... .......... .......... 52% 29.2M 1s -2024-03-23T17:47:21Z #15 2.221 66700K .......... .......... .......... .......... .......... 52% 25.0M 1s -2024-03-23T17:47:21Z #15 2.222 66750K .......... .......... .......... .......... .......... 52% 66.8M 1s -2024-03-23T17:47:21Z #15 2.223 66800K .......... .......... .......... .......... .......... 52% 34.8M 1s -2024-03-23T17:47:21Z #15 2.225 66850K .......... .......... .......... .......... .......... 52% 48.8M 1s -2024-03-23T17:47:21Z #15 2.227 66900K .......... .......... .......... .......... .......... 52% 128M 1s -2024-03-23T17:47:21Z #15 2.227 66950K .......... .......... .......... .......... .......... 52% 190M 1s -2024-03-23T17:47:21Z #15 2.227 67000K .......... .......... .......... .......... .......... 52% 138M 1s -2024-03-23T17:47:21Z #15 2.227 67050K .......... .......... .......... .......... .......... 52% 91.5M 1s -2024-03-23T17:47:21Z #15 2.227 67100K .......... .......... .......... .......... .......... 52% 22.6M 1s -2024-03-23T17:47:21Z #15 2.229 67150K .......... .......... .......... .......... .......... 53% 44.8M 1s -2024-03-23T17:47:21Z #15 2.230 67200K .......... .......... .......... .......... .......... 53% 49.0M 1s -2024-03-23T17:47:21Z #15 2.233 67250K .......... .......... .......... .......... .......... 53% 172M 1s -2024-03-23T17:47:21Z #15 2.233 67300K .......... .......... .......... .......... .......... 53% 132M 1s -2024-03-23T17:47:21Z #15 2.233 67350K .......... .......... .......... .......... .......... 53% 130M 1s -2024-03-23T17:47:21Z #15 2.233 67400K .......... .......... .......... .......... .......... 53% 138M 1s -2024-03-23T17:47:21Z #15 2.233 67450K .......... .......... .......... .......... .......... 53% 123M 1s -2024-03-23T17:47:21Z #15 2.233 67500K .......... .......... .......... .......... .......... 53% 25.4M 1s -2024-03-23T17:47:21Z #15 2.235 67550K .......... .......... .......... .......... .......... 53% 27.3M 1s -2024-03-23T17:47:21Z #15 2.237 67600K .......... .......... .......... .......... .......... 53% 25.5M 1s -2024-03-23T17:47:21Z #15 2.239 67650K .......... .......... .......... .......... .......... 53% 27.0M 1s -2024-03-23T17:47:21Z #15 2.241 67700K .......... .......... .......... .......... .......... 53% 33.0M 1s -2024-03-23T17:47:21Z #15 2.242 67750K .......... .......... .......... .......... .......... 53% 27.6M 1s -2024-03-23T17:47:21Z #15 2.247 67800K .......... .......... .......... .......... .......... 53% 30.2M 1s -2024-03-23T17:47:21Z #15 2.247 67850K .......... .......... .......... .......... .......... 53% 31.2M 1s -2024-03-23T17:47:21Z #15 2.247 67900K .......... .......... .......... .......... .......... 53% 36.0M 1s -2024-03-23T17:47:21Z #15 2.248 67950K .......... .......... .......... .......... .......... 53% 24.9M 1s -2024-03-23T17:47:21Z #15 2.250 68000K .......... .......... .......... .......... .......... 53% 29.1M 1s -2024-03-23T17:47:21Z #15 2.253 68050K .......... .......... .......... .......... .......... 53% 32.5M 1s -2024-03-23T17:47:21Z #15 2.253 68100K .......... .......... .......... .......... .......... 53% 90.2M 1s -2024-03-23T17:47:21Z #15 2.254 68150K .......... .......... .......... .......... .......... 53% 81.8M 1s -2024-03-23T17:47:21Z #15 2.255 68200K .......... .......... .......... .......... .......... 53% 39.1M 1s -2024-03-23T17:47:21Z #15 2.256 68250K .......... .......... .......... .......... .......... 53% 67.3M 1s -2024-03-23T17:47:21Z #15 2.259 68300K .......... .......... .......... .......... .......... 53% 155M 1s -2024-03-23T17:47:21Z #15 2.259 68350K .......... .......... .......... .......... .......... 53% 151M 1s -2024-03-23T17:47:21Z #15 2.259 68400K .......... .......... .......... .......... .......... 53% 144M 1s -2024-03-23T17:47:21Z #15 2.259 68450K .......... .......... .......... .......... .......... 54% 147M 1s -2024-03-23T17:47:21Z #15 2.259 68500K .......... .......... .......... .......... .......... 54% 127M 1s -2024-03-23T17:47:21Z #15 2.259 68550K .......... .......... .......... .......... .......... 54% 106M 1s -2024-03-23T17:47:21Z #15 2.259 68600K .......... .......... .......... .......... .......... 54% 141M 1s -2024-03-23T17:47:21Z #15 2.259 68650K .......... .......... .......... .......... .......... 54% 53.4M 1s -2024-03-23T17:47:21Z #15 2.260 68700K .......... .......... .......... .......... .......... 54% 34.5M 1s -2024-03-23T17:47:21Z #15 2.261 68750K .......... .......... .......... .......... .......... 54% 65.9M 1s -2024-03-23T17:47:21Z #15 2.262 68800K .......... .......... .......... .......... .......... 54% 28.6M 1s -2024-03-23T17:47:21Z #15 2.264 68850K .......... .......... .......... .......... .......... 54% 32.6M 1s -2024-03-23T17:47:21Z #15 2.265 68900K .......... .......... .......... .......... .......... 54% 40.8M 1s -2024-03-23T17:47:21Z #15 2.267 68950K .......... .......... .......... .......... .......... 54% 46.7M 1s -2024-03-23T17:47:21Z #15 2.268 69000K .......... .......... .......... .......... .......... 54% 40.2M 1s -2024-03-23T17:47:21Z #15 2.269 69050K .......... .......... .......... .......... .......... 54% 60.1M 1s -2024-03-23T17:47:21Z #15 2.270 69100K .......... .......... .......... .......... .......... 54% 34.1M 1s -2024-03-23T17:47:21Z #15 2.271 69150K .......... .......... .......... .......... .......... 54% 41.9M 1s -2024-03-23T17:47:21Z #15 2.272 69200K .......... .......... .......... .......... .......... 54% 53.9M 1s -2024-03-23T17:47:21Z #15 2.273 69250K .......... .......... .......... .......... .......... 54% 41.5M 1s -2024-03-23T17:47:21Z #15 2.274 69300K .......... .......... .......... .......... .......... 54% 27.9M 1s -2024-03-23T17:47:21Z #15 2.277 69350K .......... .......... .......... .......... .......... 54% 36.0M 1s -2024-03-23T17:47:21Z #15 2.277 69400K .......... .......... .......... .......... .......... 54% 50.5M 1s -2024-03-23T17:47:21Z #15 2.279 69450K .......... .......... .......... .......... .......... 54% 38.6M 1s -2024-03-23T17:47:21Z #15 2.280 69500K .......... .......... .......... .......... .......... 54% 2.06M 1s -2024-03-23T17:47:21Z #15 2.307 69550K .......... .......... .......... .......... .......... 54% 147M 1s -2024-03-23T17:47:21Z #15 2.307 69600K .......... .......... .......... .......... .......... 54% 160M 1s -2024-03-23T17:47:21Z #15 2.307 69650K .......... .......... .......... .......... .......... 54% 151M 1s -2024-03-23T17:47:21Z #15 2.307 69700K .......... .......... .......... .......... .......... 55% 162M 1s -2024-03-23T17:47:21Z #15 2.307 69750K .......... .......... .......... .......... .......... 55% 141M 1s -2024-03-23T17:47:21Z #15 2.307 69800K .......... .......... .......... .......... .......... 55% 107M 1s -2024-03-23T17:47:21Z #15 2.307 69850K .......... .......... .......... .......... .......... 55% 213M 1s -2024-03-23T17:47:21Z #15 2.307 69900K .......... .......... .......... .......... .......... 55% 166M 1s -2024-03-23T17:47:21Z #15 2.307 69950K .......... .......... .......... .......... .......... 55% 179M 1s -2024-03-23T17:47:21Z #15 2.307 70000K .......... .......... .......... .......... .......... 55% 205M 1s -2024-03-23T17:47:21Z #15 2.307 70050K .......... .......... .......... .......... .......... 55% 149M 1s -2024-03-23T17:47:21Z #15 2.307 70100K .......... .......... .......... .......... .......... 55% 125M 1s -2024-03-23T17:47:21Z #15 2.307 70150K .......... .......... .......... .......... .......... 55% 143M 1s -2024-03-23T17:47:21Z #15 2.307 70200K .......... .......... .......... .......... .......... 55% 76.0M 1s -2024-03-23T17:47:21Z #15 2.308 70250K .......... .......... .......... .......... .......... 55% 152M 1s -2024-03-23T17:47:21Z #15 2.309 70300K .......... .......... .......... .......... .......... 55% 27.5M 1s -2024-03-23T17:47:21Z #15 2.311 70350K .......... .......... .......... .......... .......... 55% 24.6M 1s -2024-03-23T17:47:21Z #15 2.312 70400K .......... .......... .......... .......... .......... 55% 36.0M 1s -2024-03-23T17:47:21Z #15 2.314 70450K .......... .......... .......... .......... .......... 55% 16.2M 1s -2024-03-23T17:47:21Z #15 2.318 70500K .......... .......... .......... .......... .......... 55% 49.3M 1s -2024-03-23T17:47:21Z #15 2.318 70550K .......... .......... .......... .......... .......... 55% 82.8M 1s -2024-03-23T17:47:21Z #15 2.318 70600K .......... .......... .......... .......... .......... 55% 22.8M 1s -2024-03-23T17:47:21Z #15 2.323 70650K .......... .......... .......... .......... .......... 55% 101M 1s -2024-03-23T17:47:21Z #15 2.323 70700K .......... .......... .......... .......... .......... 55% 84.1M 1s -2024-03-23T17:47:21Z #15 2.323 70750K .......... .......... .......... .......... .......... 55% 141M 1s -2024-03-23T17:47:21Z #15 2.323 70800K .......... .......... .......... .......... .......... 55% 179M 1s -2024-03-23T17:47:21Z #15 2.323 70850K .......... .......... .......... .......... .......... 55% 164M 1s -2024-03-23T17:47:21Z #15 2.323 70900K .......... .......... .......... .......... .......... 55% 146M 1s -2024-03-23T17:47:21Z #15 2.323 70950K .......... .......... .......... .......... .......... 56% 73.5M 1s -2024-03-23T17:47:21Z #15 2.323 71000K .......... .......... .......... .......... .......... 56% 139M 1s -2024-03-23T17:47:21Z #15 2.324 71050K .......... .......... .......... .......... .......... 56% 149M 1s -2024-03-23T17:47:21Z #15 2.324 71100K .......... .......... .......... .......... .......... 56% 122M 1s -2024-03-23T17:47:21Z #15 2.324 71150K .......... .......... .......... .......... .......... 56% 146M 1s -2024-03-23T17:47:21Z #15 2.325 71200K .......... .......... .......... .......... .......... 56% 153M 1s -2024-03-23T17:47:21Z #15 2.325 71250K .......... .......... .......... .......... .......... 56% 122M 1s -2024-03-23T17:47:21Z #15 2.334 71300K .......... .......... .......... .......... .......... 56% 26.1M 1s -2024-03-23T17:47:21Z #15 2.334 71350K .......... .......... .......... .......... .......... 56% 117M 1s -2024-03-23T17:47:21Z #15 2.334 71400K .......... .......... .......... .......... .......... 56% 187M 1s -2024-03-23T17:47:21Z #15 2.334 71450K .......... .......... .......... .......... .......... 56% 140M 1s -2024-03-23T17:47:21Z #15 2.334 71500K .......... .......... .......... .......... .......... 56% 160M 1s -2024-03-23T17:47:21Z #15 2.334 71550K .......... .......... .......... .......... .......... 56% 118M 1s -2024-03-23T17:47:21Z #15 2.334 71600K .......... .......... .......... .......... .......... 56% 150M 1s -2024-03-23T17:47:21Z #15 2.334 71650K .......... .......... .......... .......... .......... 56% 153M 1s -2024-03-23T17:47:21Z #15 2.334 71700K .......... .......... .......... .......... .......... 56% 147M 1s -2024-03-23T17:47:21Z #15 2.334 71750K .......... .......... .......... .......... .......... 56% 137M 1s -2024-03-23T17:47:21Z #15 2.334 71800K .......... .......... .......... .......... .......... 56% 27.0M 1s -2024-03-23T17:47:21Z #15 2.334 71850K .......... .......... .......... .......... .......... 56% 109M 1s -2024-03-23T17:47:21Z #15 2.334 71900K .......... .......... .......... .......... .......... 56% 129M 1s -2024-03-23T17:47:21Z #15 2.334 71950K .......... .......... .......... .......... .......... 56% 146M 1s -2024-03-23T17:47:21Z #15 2.334 72000K .......... .......... .......... .......... .......... 56% 130M 1s -2024-03-23T17:47:21Z #15 2.334 72050K .......... .......... .......... .......... .......... 56% 113M 1s -2024-03-23T17:47:21Z #15 2.334 72100K .......... .......... .......... .......... .......... 56% 154M 1s -2024-03-23T17:47:21Z #15 2.337 72150K .......... .......... .......... .......... .......... 56% 92.6M 1s -2024-03-23T17:47:21Z #15 2.337 72200K .......... .......... .......... .......... .......... 56% 157M 1s -2024-03-23T17:47:21Z #15 2.337 72250K .......... .......... .......... .......... .......... 57% 27.9M 1s -2024-03-23T17:47:21Z #15 2.337 72300K .......... .......... .......... .......... .......... 57% 139M 1s -2024-03-23T17:47:21Z #15 2.337 72350K .......... .......... .......... .......... .......... 57% 135M 1s -2024-03-23T17:47:21Z #15 2.338 72400K .......... .......... .......... .......... .......... 57% 168M 1s -2024-03-23T17:47:21Z #15 2.341 72450K .......... .......... .......... .......... .......... 57% 171M 1s -2024-03-23T17:47:21Z #15 2.341 72500K .......... .......... .......... .......... .......... 57% 82.4M 1s -2024-03-23T17:47:21Z #15 2.341 72550K .......... .......... .......... .......... .......... 57% 142M 1s -2024-03-23T17:47:21Z #15 2.341 72600K .......... .......... .......... .......... .......... 57% 136M 1s -2024-03-23T17:47:21Z #15 2.341 72650K .......... .......... .......... .......... .......... 57% 27.2M 1s -2024-03-23T17:47:21Z #15 2.342 72700K .......... .......... .......... .......... .......... 57% 109M 1s -2024-03-23T17:47:21Z #15 2.342 72750K .......... .......... .......... .......... .......... 57% 117M 1s -2024-03-23T17:47:21Z #15 2.342 72800K .......... .......... .......... .......... .......... 57% 164M 1s -2024-03-23T17:47:21Z #15 2.342 72850K .......... .......... .......... .......... .......... 57% 110M 1s -2024-03-23T17:47:21Z #15 2.343 72900K .......... .......... .......... .......... .......... 57% 133M 1s -2024-03-23T17:47:21Z #15 2.343 72950K .......... .......... .......... .......... .......... 57% 126M 1s -2024-03-23T17:47:21Z #15 2.344 73000K .......... .......... .......... .......... .......... 57% 133M 1s -2024-03-23T17:47:21Z #15 2.344 73050K .......... .......... .......... .......... .......... 57% 147M 1s -2024-03-23T17:47:21Z #15 2.344 73100K .......... .......... .......... .......... .......... 57% 129M 1s -2024-03-23T17:47:21Z #15 2.345 73150K .......... .......... .......... .......... .......... 57% 99.6M 1s -2024-03-23T17:47:21Z #15 2.345 73200K .......... .......... .......... .......... .......... 57% 160M 1s -2024-03-23T17:47:21Z #15 2.346 73250K .......... .......... .......... .......... .......... 57% 59.6M 1s -2024-03-23T17:47:21Z #15 2.346 73300K .......... .......... .......... .......... .......... 57% 82.4M 1s -2024-03-23T17:47:21Z #15 2.347 73350K .......... .......... .......... .......... .......... 57% 82.3M 1s -2024-03-23T17:47:21Z #15 2.348 73400K .......... .......... .......... .......... .......... 57% 113M 1s -2024-03-23T17:47:21Z #15 2.348 73450K .......... .......... .......... .......... .......... 57% 129M 1s -2024-03-23T17:47:21Z #15 2.348 73500K .......... .......... .......... .......... .......... 58% 92.9M 1s -2024-03-23T17:47:21Z #15 2.349 73550K .......... .......... .......... .......... .......... 58% 152M 1s -2024-03-23T17:47:21Z #15 2.349 73600K .......... .......... .......... .......... .......... 58% 66.2M 1s -2024-03-23T17:47:21Z #15 2.351 73650K .......... .......... .......... .......... .......... 58% 130M 1s -2024-03-23T17:47:21Z #15 2.351 73700K .......... .......... .......... .......... .......... 58% 160M 1s -2024-03-23T17:47:21Z #15 2.351 73750K .......... .......... .......... .......... .......... 58% 69.9M 1s -2024-03-23T17:47:21Z #15 2.351 73800K .......... .......... .......... .......... .......... 58% 62.6M 1s -2024-03-23T17:47:21Z #15 2.353 73850K .......... .......... .......... .......... .......... 58% 88.2M 1s -2024-03-23T17:47:21Z #15 2.353 73900K .......... .......... .......... .......... .......... 58% 110M 1s -2024-03-23T17:47:21Z #15 2.353 73950K .......... .......... .......... .......... .......... 58% 115M 1s -2024-03-23T17:47:21Z #15 2.354 74000K .......... .......... .......... .......... .......... 58% 76.0M 1s -2024-03-23T17:47:21Z #15 2.354 74050K .......... .......... .......... .......... .......... 58% 134M 1s -2024-03-23T17:47:21Z #15 2.355 74100K .......... .......... .......... .......... .......... 58% 77.3M 1s -2024-03-23T17:47:21Z #15 2.355 74150K .......... .......... .......... .......... .......... 58% 86.7M 1s -2024-03-23T17:47:21Z #15 2.356 74200K .......... .......... .......... .......... .......... 58% 94.0M 1s -2024-03-23T17:47:21Z #15 2.356 74250K .......... .......... .......... .......... .......... 58% 81.0M 1s -2024-03-23T17:47:21Z #15 2.357 74300K .......... .......... .......... .......... .......... 58% 63.0M 1s -2024-03-23T17:47:21Z #15 2.358 74350K .......... .......... .......... .......... .......... 58% 94.4M 1s -2024-03-23T17:47:21Z #15 2.359 74400K .......... .......... .......... .......... .......... 58% 161M 1s -2024-03-23T17:47:21Z #15 2.359 74450K .......... .......... .......... .......... .......... 58% 56.9M 1s -2024-03-23T17:47:21Z #15 2.359 74500K .......... .......... .......... .......... .......... 58% 68.4M 1s -2024-03-23T17:47:21Z #15 2.360 74550K .......... .......... .......... .......... .......... 58% 84.5M 1s -2024-03-23T17:47:21Z #15 2.361 74600K .......... .......... .......... .......... .......... 58% 106M 1s -2024-03-23T17:47:21Z #15 2.361 74650K .......... .......... .......... .......... .......... 58% 72.3M 1s -2024-03-23T17:47:21Z #15 2.362 74700K .......... .......... .......... .......... .......... 58% 43.8M 1s -2024-03-23T17:47:21Z #15 2.363 74750K .......... .......... .......... .......... .......... 58% 57.8M 1s -2024-03-23T17:47:21Z #15 2.364 74800K .......... .......... .......... .......... .......... 59% 68.3M 1s -2024-03-23T17:47:21Z #15 2.365 74850K .......... .......... .......... .......... .......... 59% 96.3M 1s -2024-03-23T17:47:21Z #15 2.366 74900K .......... .......... .......... .......... .......... 59% 48.1M 1s -2024-03-23T17:47:21Z #15 2.366 74950K .......... .......... .......... .......... .......... 59% 84.1M 1s -2024-03-23T17:47:21Z #15 2.367 75000K .......... .......... .......... .......... .......... 59% 52.0M 1s -2024-03-23T17:47:21Z #15 2.368 75050K .......... .......... .......... .......... .......... 59% 143M 1s -2024-03-23T17:47:21Z #15 2.368 75100K .......... .......... .......... .......... .......... 59% 50.7M 1s -2024-03-23T17:47:21Z #15 2.369 75150K .......... .......... .......... .......... .......... 59% 84.1M 1s -2024-03-23T17:47:21Z #15 2.369 75200K .......... .......... .......... .......... .......... 59% 34.0M 1s -2024-03-23T17:47:21Z #15 2.371 75250K .......... .......... .......... .......... .......... 59% 61.7M 1s -2024-03-23T17:47:21Z #15 2.372 75300K .......... .......... .......... .......... .......... 59% 112M 1s -2024-03-23T17:47:21Z #15 2.372 75350K .......... .......... .......... .......... .......... 59% 41.2M 1s -2024-03-23T17:47:21Z #15 2.373 75400K .......... .......... .......... .......... .......... 59% 56.9M 1s -2024-03-23T17:47:21Z #15 2.374 75450K .......... .......... .......... .......... .......... 59% 48.4M 1s -2024-03-23T17:47:21Z #15 2.375 75500K .......... .......... .......... .......... .......... 59% 126M 1s -2024-03-23T17:47:21Z #15 2.376 75550K .......... .......... .......... .......... .......... 59% 26.5M 1s -2024-03-23T17:47:21Z #15 2.378 75600K .......... .......... .......... .......... .......... 59% 48.9M 1s -2024-03-23T17:47:21Z #15 2.379 75650K .......... .......... .......... .......... .......... 59% 42.7M 1s -2024-03-23T17:47:21Z #15 2.379 75700K .......... .......... .......... .......... .......... 59% 43.8M 1s -2024-03-23T17:47:21Z #15 2.381 75750K .......... .......... .......... .......... .......... 59% 51.7M 1s -2024-03-23T17:47:21Z #15 2.381 75800K .......... .......... .......... .......... .......... 59% 70.7M 1s -2024-03-23T17:47:21Z #15 2.387 75850K .......... .......... .......... .......... .......... 59% 146M 1s -2024-03-23T17:47:21Z #15 2.387 75900K .......... .......... .......... .......... .......... 59% 77.4M 1s -2024-03-23T17:47:21Z #15 2.387 75950K .......... .......... .......... .......... .......... 59% 44.6M 1s -2024-03-23T17:47:21Z #15 2.387 76000K .......... .......... .......... .......... .......... 59% 133M 1s -2024-03-23T17:47:21Z #15 2.387 76050K .......... .......... .......... .......... .......... 60% 166M 1s -2024-03-23T17:47:21Z #15 2.387 76100K .......... .......... .......... .......... .......... 60% 148M 1s -2024-03-23T17:47:21Z #15 2.387 76150K .......... .......... .......... .......... .......... 60% 190M 1s -2024-03-23T17:47:21Z #15 2.387 76200K .......... .......... .......... .......... .......... 60% 155M 1s -2024-03-23T17:47:21Z #15 2.387 76250K .......... .......... .......... .......... .......... 60% 183M 1s -2024-03-23T17:47:21Z #15 2.387 76300K .......... .......... .......... .......... .......... 60% 168M 1s -2024-03-23T17:47:21Z #15 2.387 76350K .......... .......... .......... .......... .......... 60% 170M 1s -2024-03-23T17:47:21Z #15 2.387 76400K .......... .......... .......... .......... .......... 60% 41.3M 1s -2024-03-23T17:47:21Z #15 2.388 76450K .......... .......... .......... .......... .......... 60% 80.6M 1s -2024-03-23T17:47:21Z #15 2.388 76500K .......... .......... .......... .......... .......... 60% 60.7M 1s -2024-03-23T17:47:21Z #15 2.389 76550K .......... .......... .......... .......... .......... 60% 38.1M 1s -2024-03-23T17:47:21Z #15 2.391 76600K .......... .......... .......... .......... .......... 60% 19.7M 1s -2024-03-23T17:47:21Z #15 2.399 76650K .......... .......... .......... .......... .......... 60% 166M 1s -2024-03-23T17:47:21Z #15 2.399 76700K .......... .......... .......... .......... .......... 60% 173M 1s -2024-03-23T17:47:21Z #15 2.399 76750K .......... .......... .......... .......... .......... 60% 180M 1s -2024-03-23T17:47:21Z #15 2.399 76800K .......... .......... .......... .......... .......... 60% 153M 1s -2024-03-23T17:47:21Z #15 2.399 76850K .......... .......... .......... .......... .......... 60% 186M 1s -2024-03-23T17:47:21Z #15 2.399 76900K .......... .......... .......... .......... .......... 60% 143M 1s -2024-03-23T17:47:21Z #15 2.399 76950K .......... .......... .......... .......... .......... 60% 38.2M 1s -2024-03-23T17:47:21Z #15 2.399 77000K .......... .......... .......... .......... .......... 60% 82.5M 1s -2024-03-23T17:47:21Z #15 2.399 77050K .......... .......... .......... .......... .......... 60% 155M 1s -2024-03-23T17:47:21Z #15 2.399 77100K .......... .......... .......... .......... .......... 60% 176M 1s -2024-03-23T17:47:21Z #15 2.399 77150K .......... .......... .......... .......... .......... 60% 141M 1s -2024-03-23T17:47:21Z #15 2.399 77200K .......... .......... .......... .......... .......... 60% 158M 1s -2024-03-23T17:47:21Z #15 2.399 77250K .......... .......... .......... .......... .......... 60% 162M 1s -2024-03-23T17:47:21Z #15 2.399 77300K .......... .......... .......... .......... .......... 61% 139M 1s -2024-03-23T17:47:21Z #15 2.399 77350K .......... .......... .......... .......... .......... 61% 26.5M 1s -2024-03-23T17:47:21Z #15 2.401 77400K .......... .......... .......... .......... .......... 61% 15.1M 1s -2024-03-23T17:47:21Z #15 2.405 77450K .......... .......... .......... .......... .......... 61% 20.2M 1s -2024-03-23T17:47:21Z #15 2.406 77500K .......... .......... .......... .......... .......... 61% 15.3M 1s -2024-03-23T17:47:21Z #15 2.411 77550K .......... .......... .......... .......... .......... 61% 132M 1s -2024-03-23T17:47:21Z #15 2.411 77600K .......... .......... .......... .......... .......... 61% 231M 1s -2024-03-23T17:47:21Z #15 2.411 77650K .......... .......... .......... .......... .......... 61% 229M 1s -2024-03-23T17:47:21Z #15 2.411 77700K .......... .......... .......... .......... .......... 61% 186M 1s -2024-03-23T17:47:21Z #15 2.411 77750K .......... .......... .......... .......... .......... 61% 145M 1s -2024-03-23T17:47:21Z #15 2.411 77800K .......... .......... .......... .......... .......... 61% 121M 1s -2024-03-23T17:47:21Z #15 2.411 77850K .......... .......... .......... .......... .......... 61% 146M 1s -2024-03-23T17:47:21Z #15 2.411 77900K .......... .......... .......... .......... .......... 61% 135M 1s -2024-03-23T17:47:21Z #15 2.412 77950K .......... .......... .......... .......... .......... 61% 131M 1s -2024-03-23T17:47:21Z #15 2.412 78000K .......... .......... .......... .......... .......... 61% 143M 1s -2024-03-23T17:47:21Z #15 2.412 78050K .......... .......... .......... .......... .......... 61% 134M 1s -2024-03-23T17:47:21Z #15 2.413 78100K .......... .......... .......... .......... .......... 61% 113M 1s -2024-03-23T17:47:21Z #15 2.413 78150K .......... .......... .......... .......... .......... 61% 108M 1s -2024-03-23T17:47:21Z #15 2.414 78200K .......... .......... .......... .......... .......... 61% 129M 1s -2024-03-23T17:47:21Z #15 2.414 78250K .......... .......... .......... .......... .......... 61% 107M 1s -2024-03-23T17:47:21Z #15 2.414 78300K .......... .......... .......... .......... .......... 61% 73.3M 1s -2024-03-23T17:47:21Z #15 2.415 78350K .......... .......... .......... .......... .......... 61% 132M 1s -2024-03-23T17:47:21Z #15 2.416 78400K .......... .......... .......... .......... .......... 61% 116M 1s -2024-03-23T17:47:21Z #15 2.416 78450K .......... .......... .......... .......... .......... 61% 120M 1s -2024-03-23T17:47:21Z #15 2.416 78500K .......... .......... .......... .......... .......... 61% 113M 1s -2024-03-23T17:47:21Z #15 2.417 78550K .......... .......... .......... .......... .......... 61% 130M 1s -2024-03-23T17:47:21Z #15 2.417 78600K .......... .......... .......... .......... .......... 62% 93.7M 1s -2024-03-23T17:47:21Z #15 2.418 78650K .......... .......... .......... .......... .......... 62% 131M 1s -2024-03-23T17:47:21Z #15 2.418 78700K .......... .......... .......... .......... .......... 62% 112M 1s -2024-03-23T17:47:21Z #15 2.419 78750K .......... .......... .......... .......... .......... 62% 114M 1s -2024-03-23T17:47:21Z #15 2.419 78800K .......... .......... .......... .......... .......... 62% 136M 1s -2024-03-23T17:47:21Z #15 2.419 78850K .......... .......... .......... .......... .......... 62% 112M 1s -2024-03-23T17:47:21Z #15 2.420 78900K .......... .......... .......... .......... .......... 62% 117M 1s -2024-03-23T17:47:21Z #15 2.420 78950K .......... .......... .......... .......... .......... 62% 125M 1s -2024-03-23T17:47:21Z #15 2.421 79000K .......... .......... .......... .......... .......... 62% 132M 1s -2024-03-23T17:47:21Z #15 2.426 79050K .......... .......... .......... .......... .......... 62% 101M 1s -2024-03-23T17:47:21Z #15 2.426 79100K .......... .......... .......... .......... .......... 62% 112M 1s -2024-03-23T17:47:21Z #15 2.426 79150K .......... .......... .......... .......... .......... 62% 181M 1s -2024-03-23T17:47:21Z #15 2.426 79200K .......... .......... .......... .......... .......... 62% 162M 1s -2024-03-23T17:47:21Z #15 2.426 79250K .......... .......... .......... .......... .......... 62% 187M 1s -2024-03-23T17:47:21Z #15 2.426 79300K .......... .......... .......... .......... .......... 62% 120M 1s -2024-03-23T17:47:21Z #15 2.426 79350K .......... .......... .......... .......... .......... 62% 180M 1s -2024-03-23T17:47:21Z #15 2.426 79400K .......... .......... .......... .......... .......... 62% 182M 1s -2024-03-23T17:47:21Z #15 2.426 79450K .......... .......... .......... .......... .......... 62% 161M 1s -2024-03-23T17:47:21Z #15 2.426 79500K .......... .......... .......... .......... .......... 62% 154M 1s -2024-03-23T17:47:21Z #15 2.426 79550K .......... .......... .......... .......... .......... 62% 159M 1s -2024-03-23T17:47:21Z #15 2.426 79600K .......... .......... .......... .......... .......... 62% 154M 1s -2024-03-23T17:47:21Z #15 2.426 79650K .......... .......... .......... .......... .......... 62% 146M 1s -2024-03-23T17:47:21Z #15 2.426 79700K .......... .......... .......... .......... .......... 62% 177M 1s -2024-03-23T17:47:21Z #15 2.426 79750K .......... .......... .......... .......... .......... 62% 142M 1s -2024-03-23T17:47:21Z #15 2.426 79800K .......... .......... .......... .......... .......... 62% 106M 1s -2024-03-23T17:47:21Z #15 2.426 79850K .......... .......... .......... .......... .......... 63% 108M 1s -2024-03-23T17:47:21Z #15 2.427 79900K .......... .......... .......... .......... .......... 63% 109M 1s -2024-03-23T17:47:21Z #15 2.427 79950K .......... .......... .......... .......... .......... 63% 136M 1s -2024-03-23T17:47:21Z #15 2.428 80000K .......... .......... .......... .......... .......... 63% 123M 1s -2024-03-23T17:47:21Z #15 2.428 80050K .......... .......... .......... .......... .......... 63% 142M 1s -2024-03-23T17:47:21Z #15 2.428 80100K .......... .......... .......... .......... .......... 63% 134M 1s -2024-03-23T17:47:21Z #15 2.429 80150K .......... .......... .......... .......... .......... 63% 132M 1s -2024-03-23T17:47:21Z #15 2.430 80200K .......... .......... .......... .......... .......... 63% 125M 1s -2024-03-23T17:47:21Z #15 2.430 80250K .......... .......... .......... .......... .......... 63% 127M 1s -2024-03-23T17:47:21Z #15 2.430 80300K .......... .......... .......... .......... .......... 63% 137M 1s -2024-03-23T17:47:21Z #15 2.430 80350K .......... .......... .......... .......... .......... 63% 138M 1s -2024-03-23T17:47:21Z #15 2.430 80400K .......... .......... .......... .......... .......... 63% 99.9M 1s -2024-03-23T17:47:21Z #15 2.431 80450K .......... .......... .......... .......... .......... 63% 139M 1s -2024-03-23T17:47:21Z #15 2.431 80500K .......... .......... .......... .......... .......... 63% 123M 1s -2024-03-23T17:47:21Z #15 2.432 80550K .......... .......... .......... .......... .......... 63% 124M 1s -2024-03-23T17:47:21Z #15 2.432 80600K .......... .......... .......... .......... .......... 63% 135M 1s -2024-03-23T17:47:21Z #15 2.432 80650K .......... .......... .......... .......... .......... 63% 141M 1s -2024-03-23T17:47:21Z #15 2.433 80700K .......... .......... .......... .......... .......... 63% 150M 1s -2024-03-23T17:47:21Z #15 2.433 80750K .......... .......... .......... .......... .......... 63% 134M 1s -2024-03-23T17:47:21Z #15 2.434 80800K .......... .......... .......... .......... .......... 63% 111M 1s -2024-03-23T17:47:21Z #15 2.434 80850K .......... .......... .......... .......... .......... 63% 148M 1s -2024-03-23T17:47:21Z #15 2.434 80900K .......... .......... .......... .......... .......... 63% 162M 1s -2024-03-23T17:47:21Z #15 2.435 80950K .......... .......... .......... .......... .......... 63% 117M 1s -2024-03-23T17:47:21Z #15 2.439 81000K .......... .......... .......... .......... .......... 63% 193M 1s -2024-03-23T17:47:21Z #15 2.439 81050K .......... .......... .......... .......... .......... 63% 186M 1s -2024-03-23T17:47:21Z #15 2.439 81100K .......... .......... .......... .......... .......... 64% 150M 1s -2024-03-23T17:47:21Z #15 2.439 81150K .......... .......... .......... .......... .......... 64% 169M 1s -2024-03-23T17:47:21Z #15 2.439 81200K .......... .......... .......... .......... .......... 64% 178M 1s -2024-03-23T17:47:21Z #15 2.439 81250K .......... .......... .......... .......... .......... 64% 165M 1s -2024-03-23T17:47:21Z #15 2.439 81300K .......... .......... .......... .......... .......... 64% 159M 1s -2024-03-23T17:47:21Z #15 2.439 81350K .......... .......... .......... .......... .......... 64% 184M 1s -2024-03-23T17:47:21Z #15 2.439 81400K .......... .......... .......... .......... .......... 64% 175M 1s -2024-03-23T17:47:21Z #15 2.439 81450K .......... .......... .......... .......... .......... 64% 122M 1s -2024-03-23T17:47:21Z #15 2.439 81500K .......... .......... .......... .......... .......... 64% 139M 1s -2024-03-23T17:47:21Z #15 2.439 81550K .......... .......... .......... .......... .......... 64% 157M 1s -2024-03-23T17:47:21Z #15 2.439 81600K .......... .......... .......... .......... .......... 64% 104M 1s -2024-03-23T17:47:21Z #15 2.439 81650K .......... .......... .......... .......... .......... 64% 147M 1s -2024-03-23T17:47:21Z #15 2.439 81700K .......... .......... .......... .......... .......... 64% 134M 1s -2024-03-23T17:47:21Z #15 2.440 81750K .......... .......... .......... .......... .......... 64% 121M 1s -2024-03-23T17:47:21Z #15 2.440 81800K .......... .......... .......... .......... .......... 64% 144M 1s -2024-03-23T17:47:21Z #15 2.441 81850K .......... .......... .......... .......... .......... 64% 103M 1s -2024-03-23T17:47:21Z #15 2.441 81900K .......... .......... .......... .......... .......... 64% 106M 1s -2024-03-23T17:47:21Z #15 2.441 81950K .......... .......... .......... .......... .......... 64% 135M 1s -2024-03-23T17:47:21Z #15 2.442 82000K .......... .......... .......... .......... .......... 64% 104M 1s -2024-03-23T17:47:21Z #15 2.447 82050K .......... .......... .......... .......... .......... 64% 133M 1s -2024-03-23T17:47:21Z #15 2.447 82100K .......... .......... .......... .......... .......... 64% 135M 1s -2024-03-23T17:47:21Z #15 2.447 82150K .......... .......... .......... .......... .......... 64% 137M 1s -2024-03-23T17:47:21Z #15 2.447 82200K .......... .......... .......... .......... .......... 64% 154M 1s -2024-03-23T17:47:21Z #15 2.447 82250K .......... .......... .......... .......... .......... 64% 118M 1s -2024-03-23T17:47:21Z #15 2.447 82300K .......... .......... .......... .......... .......... 64% 138M 1s -2024-03-23T17:47:21Z #15 2.447 82350K .......... .......... .......... .......... .......... 64% 123M 1s -2024-03-23T17:47:21Z #15 2.447 82400K .......... .......... .......... .......... .......... 65% 122M 1s -2024-03-23T17:47:21Z #15 2.447 82450K .......... .......... .......... .......... .......... 65% 142M 1s -2024-03-23T17:47:21Z #15 2.447 82500K .......... .......... .......... .......... .......... 65% 152M 1s -2024-03-23T17:47:21Z #15 2.447 82550K .......... .......... .......... .......... .......... 65% 155M 1s -2024-03-23T17:47:21Z #15 2.447 82600K .......... .......... .......... .......... .......... 65% 155M 1s -2024-03-23T17:47:21Z #15 2.447 82650K .......... .......... .......... .......... .......... 65% 112M 1s -2024-03-23T17:47:21Z #15 2.447 82700K .......... .......... .......... .......... .......... 65% 114M 1s -2024-03-23T17:47:21Z #15 2.447 82750K .......... .......... .......... .......... .......... 65% 113M 1s -2024-03-23T17:47:21Z #15 2.449 82800K .......... .......... .......... .......... .......... 65% 108M 1s -2024-03-23T17:47:21Z #15 2.449 82850K .......... .......... .......... .......... .......... 65% 119M 1s -2024-03-23T17:47:21Z #15 2.449 82900K .......... .......... .......... .......... .......... 65% 132M 1s -2024-03-23T17:47:21Z #15 2.449 82950K .......... .......... .......... .......... .......... 65% 110M 1s -2024-03-23T17:47:21Z #15 2.450 83000K .......... .......... .......... .......... .......... 65% 99.1M 1s -2024-03-23T17:47:21Z #15 2.450 83050K .......... .......... .......... .......... .......... 65% 112M 1s -2024-03-23T17:47:21Z #15 2.450 83100K .......... .......... .......... .......... .......... 65% 89.1M 1s -2024-03-23T17:47:21Z #15 2.451 83150K .......... .......... .......... .......... .......... 65% 115M 1s -2024-03-23T17:47:21Z #15 2.451 83200K .......... .......... .......... .......... .......... 65% 118M 1s -2024-03-23T17:47:21Z #15 2.452 83250K .......... .......... .......... .......... .......... 65% 121M 1s -2024-03-23T17:47:21Z #15 2.452 83300K .......... .......... .......... .......... .......... 65% 109M 1s -2024-03-23T17:47:21Z #15 2.453 83350K .......... .......... .......... .......... .......... 65% 128M 1s -2024-03-23T17:47:21Z #15 2.453 83400K .......... .......... .......... .......... .......... 65% 121M 1s -2024-03-23T17:47:21Z #15 2.454 83450K .......... .......... .......... .......... .......... 65% 118M 1s -2024-03-23T17:47:21Z #15 2.454 83500K .......... .......... .......... .......... .......... 65% 112M 1s -2024-03-23T17:47:21Z #15 2.454 83550K .......... .......... .......... .......... .......... 65% 107M 1s -2024-03-23T17:47:21Z #15 2.455 83600K .......... .......... .......... .......... .......... 65% 102M 1s -2024-03-23T17:47:21Z #15 2.456 83650K .......... .......... .......... .......... .......... 66% 121M 1s -2024-03-23T17:47:21Z #15 2.456 83700K .......... .......... .......... .......... .......... 66% 127M 1s -2024-03-23T17:47:21Z #15 2.456 83750K .......... .......... .......... .......... .......... 66% 118M 1s -2024-03-23T17:47:21Z #15 2.457 83800K .......... .......... .......... .......... .......... 66% 124M 1s -2024-03-23T17:47:21Z #15 2.457 83850K .......... .......... .......... .......... .......... 66% 127M 1s -2024-03-23T17:47:21Z #15 2.457 83900K .......... .......... .......... .......... .......... 66% 124M 1s -2024-03-23T17:47:21Z #15 2.458 83950K .......... .......... .......... .......... .......... 66% 103M 1s -2024-03-23T17:47:21Z #15 2.458 84000K .......... .......... .......... .......... .......... 66% 126M 1s -2024-03-23T17:47:21Z #15 2.459 84050K .......... .......... .......... .......... .......... 66% 124M 1s -2024-03-23T17:47:21Z #15 2.459 84100K .......... .......... .......... .......... .......... 66% 120M 1s -2024-03-23T17:47:21Z #15 2.459 84150K .......... .......... .......... .......... .......... 66% 112M 1s -2024-03-23T17:47:21Z #15 2.465 84200K .......... .......... .......... .......... .......... 66% 88.7M 1s -2024-03-23T17:47:21Z #15 2.465 84250K .......... .......... .......... .......... .......... 66% 85.4M 1s -2024-03-23T17:47:21Z #15 2.465 84300K .......... .......... .......... .......... .......... 66% 74.7M 1s -2024-03-23T17:47:21Z #15 2.465 84350K .......... .......... .......... .......... .......... 66% 87.4M 1s -2024-03-23T17:47:21Z #15 2.465 84400K .......... .......... .......... .......... .......... 66% 134M 1s -2024-03-23T17:47:21Z #15 2.465 84450K .......... .......... .......... .......... .......... 66% 68.2M 1s -2024-03-23T17:47:21Z #15 2.465 84500K .......... .......... .......... .......... .......... 66% 55.9M 1s -2024-03-23T17:47:21Z #15 2.465 84550K .......... .......... .......... .......... .......... 66% 55.5M 1s -2024-03-23T17:47:21Z #15 2.466 84600K .......... .......... .......... .......... .......... 66% 63.6M 1s -2024-03-23T17:47:21Z #15 2.466 84650K .......... .......... .......... .......... .......... 66% 28.8M 1s -2024-03-23T17:47:21Z #15 2.471 84700K .......... .......... .......... .......... .......... 66% 115M 1s -2024-03-23T17:47:21Z #15 2.471 84750K .......... .......... .......... .......... .......... 66% 108M 1s -2024-03-23T17:47:21Z #15 2.471 84800K .......... .......... .......... .......... .......... 66% 126M 1s -2024-03-23T17:47:21Z #15 2.471 84850K .......... .......... .......... .......... .......... 66% 114M 1s -2024-03-23T17:47:21Z #15 2.471 84900K .......... .......... .......... .......... .......... 67% 110M 1s -2024-03-23T17:47:21Z #15 2.471 84950K .......... .......... .......... .......... .......... 67% 127M 1s -2024-03-23T17:47:21Z #15 2.471 85000K .......... .......... .......... .......... .......... 67% 103M 1s -2024-03-23T17:47:21Z #15 2.471 85050K .......... .......... .......... .......... .......... 67% 33.5M 1s -2024-03-23T17:47:21Z #15 2.472 85100K .......... .......... .......... .......... .......... 67% 42.7M 1s -2024-03-23T17:47:21Z #15 2.473 85150K .......... .......... .......... .......... .......... 67% 51.2M 1s -2024-03-23T17:47:21Z #15 2.474 85200K .......... .......... .......... .......... .......... 67% 26.5M 1s -2024-03-23T17:47:21Z #15 2.476 85250K .......... .......... .......... .......... .......... 67% 45.2M 1s -2024-03-23T17:47:21Z #15 2.477 85300K .......... .......... .......... .......... .......... 67% 28.0M 1s -2024-03-23T17:47:21Z #15 2.479 85350K .......... .......... .......... .......... .......... 67% 38.9M 1s -2024-03-23T17:47:21Z #15 2.480 85400K .......... .......... .......... .......... .......... 67% 59.1M 1s -2024-03-23T17:47:21Z #15 2.483 85450K .......... .......... .......... .......... .......... 67% 143M 1s -2024-03-23T17:47:21Z #15 2.483 85500K .......... .......... .......... .......... .......... 67% 111M 1s -2024-03-23T17:47:21Z #15 2.483 85550K .......... .......... .......... .......... .......... 67% 129M 1s -2024-03-23T17:47:21Z #15 2.483 85600K .......... .......... .......... .......... .......... 67% 146M 1s -2024-03-23T17:47:21Z #15 2.483 85650K .......... .......... .......... .......... .......... 67% 109M 1s -2024-03-23T17:47:21Z #15 2.483 85700K .......... .......... .......... .......... .......... 67% 33.7M 1s -2024-03-23T17:47:21Z #15 2.484 85750K .......... .......... .......... .......... .......... 67% 124M 1s -2024-03-23T17:47:21Z #15 2.485 85800K .......... .......... .......... .......... .......... 67% 104M 1s -2024-03-23T17:47:21Z #15 2.485 85850K .......... .......... .......... .......... .......... 67% 116M 1s -2024-03-23T17:47:21Z #15 2.485 85900K .......... .......... .......... .......... .......... 67% 124M 1s -2024-03-23T17:47:21Z #15 2.486 85950K .......... .......... .......... .......... .......... 67% 129M 1s -2024-03-23T17:47:21Z #15 2.486 86000K .......... .......... .......... .......... .......... 67% 109M 1s -2024-03-23T17:47:21Z #15 2.487 86050K .......... .......... .......... .......... .......... 67% 105M 1s -2024-03-23T17:47:21Z #15 2.487 86100K .......... .......... .......... .......... .......... 67% 94.4M 1s -2024-03-23T17:47:21Z #15 2.488 86150K .......... .......... .......... .......... .......... 67% 117M 1s -2024-03-23T17:47:21Z #15 2.488 86200K .......... .......... .......... .......... .......... 68% 115M 1s -2024-03-23T17:47:21Z #15 2.489 86250K .......... .......... .......... .......... .......... 68% 119M 1s -2024-03-23T17:47:21Z #15 2.489 86300K .......... .......... .......... .......... .......... 68% 105M 1s -2024-03-23T17:47:21Z #15 2.490 86350K .......... .......... .......... .......... .......... 68% 124M 1s -2024-03-23T17:47:21Z #15 2.490 86400K .......... .......... .......... .......... .......... 68% 111M 1s -2024-03-23T17:47:21Z #15 2.490 86450K .......... .......... .......... .......... .......... 68% 115M 1s -2024-03-23T17:47:21Z #15 2.491 86500K .......... .......... .......... .......... .......... 68% 93.4M 1s -2024-03-23T17:47:21Z #15 2.495 86550K .......... .......... .......... .......... .......... 68% 85.3M 1s -2024-03-23T17:47:21Z #15 2.495 86600K .......... .......... .......... .......... .......... 68% 119M 1s -2024-03-23T17:47:21Z #15 2.495 86650K .......... .......... .......... .......... .......... 68% 166M 1s -2024-03-23T17:47:21Z #15 2.495 86700K .......... .......... .......... .......... .......... 68% 127M 1s -2024-03-23T17:47:21Z #15 2.495 86750K .......... .......... .......... .......... .......... 68% 156M 1s -2024-03-23T17:47:21Z #15 2.495 86800K .......... .......... .......... .......... .......... 68% 170M 1s -2024-03-23T17:47:21Z #15 2.495 86850K .......... .......... .......... .......... .......... 68% 132M 1s -2024-03-23T17:47:21Z #15 2.495 86900K .......... .......... .......... .......... .......... 68% 142M 1s -2024-03-23T17:47:21Z #15 2.495 86950K .......... .......... .......... .......... .......... 68% 152M 1s -2024-03-23T17:47:21Z #15 2.495 87000K .......... .......... .......... .......... .......... 68% 161M 1s -2024-03-23T17:47:21Z #15 2.495 87050K .......... .......... .......... .......... .......... 68% 97.2M 1s -2024-03-23T17:47:21Z #15 2.495 87100K .......... .......... .......... .......... .......... 68% 145M 1s -2024-03-23T17:47:21Z #15 2.497 87150K .......... .......... .......... .......... .......... 68% 95.9M 1s -2024-03-23T17:47:21Z #15 2.497 87200K .......... .......... .......... .......... .......... 68% 102M 1s -2024-03-23T17:47:21Z #15 2.497 87250K .......... .......... .......... .......... .......... 68% 143M 1s -2024-03-23T17:47:21Z #15 2.497 87300K .......... .......... .......... .......... .......... 68% 116M 1s -2024-03-23T17:47:21Z #15 2.497 87350K .......... .......... .......... .......... .......... 68% 108M 1s -2024-03-23T17:47:21Z #15 2.498 87400K .......... .......... .......... .......... .......... 68% 108M 1s -2024-03-23T17:47:21Z #15 2.498 87450K .......... .......... .......... .......... .......... 69% 94.8M 1s -2024-03-23T17:47:21Z #15 2.499 87500K .......... .......... .......... .......... .......... 69% 115M 1s -2024-03-23T17:47:21Z #15 2.499 87550K .......... .......... .......... .......... .......... 69% 118M 1s -2024-03-23T17:47:21Z #15 2.500 87600K .......... .......... .......... .......... .......... 69% 131M 1s -2024-03-23T17:47:21Z #15 2.500 87650K .......... .......... .......... .......... .......... 69% 113M 1s -2024-03-23T17:47:21Z #15 2.500 87700K .......... .......... .......... .......... .......... 69% 106M 1s -2024-03-23T17:47:21Z #15 2.501 87750K .......... .......... .......... .......... .......... 69% 118M 1s -2024-03-23T17:47:21Z #15 2.501 87800K .......... .......... .......... .......... .......... 69% 121M 1s -2024-03-23T17:47:21Z #15 2.502 87850K .......... .......... .......... .......... .......... 69% 108M 1s -2024-03-23T17:47:21Z #15 2.502 87900K .......... .......... .......... .......... .......... 69% 124M 1s -2024-03-23T17:47:21Z #15 2.503 87950K .......... .......... .......... .......... .......... 69% 110M 1s -2024-03-23T17:47:21Z #15 2.503 88000K .......... .......... .......... .......... .......... 69% 113M 1s -2024-03-23T17:47:21Z #15 2.503 88050K .......... .......... .......... .......... .......... 69% 111M 1s -2024-03-23T17:47:21Z #15 2.504 88100K .......... .......... .......... .......... .......... 69% 115M 1s -2024-03-23T17:47:21Z #15 2.504 88150K .......... .......... .......... .......... .......... 69% 141M 1s -2024-03-23T17:47:21Z #15 2.505 88200K .......... .......... .......... .......... .......... 69% 127M 1s -2024-03-23T17:47:21Z #15 2.512 88250K .......... .......... .......... .......... .......... 69% 79.1M 1s -2024-03-23T17:47:21Z #15 2.512 88300K .......... .......... .......... .......... .......... 69% 69.7M 1s -2024-03-23T17:47:21Z #15 2.512 88350K .......... .......... .......... .......... .......... 69% 174M 1s -2024-03-23T17:47:21Z #15 2.512 88400K .......... .......... .......... .......... .......... 69% 134M 1s -2024-03-23T17:47:21Z #15 2.512 88450K .......... .......... .......... .......... .......... 69% 173M 1s -2024-03-23T17:47:21Z #15 2.512 88500K .......... .......... .......... .......... .......... 69% 153M 1s -2024-03-23T17:47:21Z #15 2.512 88550K .......... .......... .......... .......... .......... 69% 170M 1s -2024-03-23T17:47:21Z #15 2.512 88600K .......... .......... .......... .......... .......... 69% 132M 1s -2024-03-23T17:47:21Z #15 2.512 88650K .......... .......... .......... .......... .......... 69% 117M 1s -2024-03-23T17:47:21Z #15 2.512 88700K .......... .......... .......... .......... .......... 70% 159M 1s -2024-03-23T17:47:21Z #15 2.512 88750K .......... .......... .......... .......... .......... 70% 156M 1s -2024-03-23T17:47:21Z #15 2.512 88800K .......... .......... .......... .......... .......... 70% 131M 1s -2024-03-23T17:47:21Z #15 2.512 88850K .......... .......... .......... .......... .......... 70% 164M 1s -2024-03-23T17:47:21Z #15 2.512 88900K .......... .......... .......... .......... .......... 70% 156M 1s -2024-03-23T17:47:21Z #15 2.512 88950K .......... .......... .......... .......... .......... 70% 129M 1s -2024-03-23T17:47:21Z #15 2.512 89000K .......... .......... .......... .......... .......... 70% 125M 1s -2024-03-23T17:47:21Z #15 2.512 89050K .......... .......... .......... .......... .......... 70% 107M 1s -2024-03-23T17:47:21Z #15 2.512 89100K .......... .......... .......... .......... .......... 70% 127M 1s -2024-03-23T17:47:21Z #15 2.512 89150K .......... .......... .......... .......... .......... 70% 114M 1s -2024-03-23T17:47:21Z #15 2.512 89200K .......... .......... .......... .......... .......... 70% 116M 1s -2024-03-23T17:47:21Z #15 2.513 89250K .......... .......... .......... .......... .......... 70% 94.1M 1s -2024-03-23T17:47:21Z #15 2.513 89300K .......... .......... .......... .......... .......... 70% 110M 1s -2024-03-23T17:47:21Z #15 2.514 89350K .......... .......... .......... .......... .......... 70% 101M 1s -2024-03-23T17:47:21Z #15 2.514 89400K .......... .......... .......... .......... .......... 70% 112M 1s -2024-03-23T17:47:21Z #15 2.515 89450K .......... .......... .......... .......... .......... 70% 97.1M 1s -2024-03-23T17:47:21Z #15 2.515 89500K .......... .......... .......... .......... .......... 70% 119M 1s -2024-03-23T17:47:21Z #15 2.516 89550K .......... .......... .......... .......... .......... 70% 117M 1s -2024-03-23T17:47:21Z #15 2.516 89600K .......... .......... .......... .......... .......... 70% 114M 1s -2024-03-23T17:47:21Z #15 2.516 89650K .......... .......... .......... .......... .......... 70% 110M 1s -2024-03-23T17:47:21Z #15 2.517 89700K .......... .......... .......... .......... .......... 70% 126M 1s -2024-03-23T17:47:21Z #15 2.517 89750K .......... .......... .......... .......... .......... 70% 107M 1s -2024-03-23T17:47:21Z #15 2.518 89800K .......... .......... .......... .......... .......... 70% 117M 1s -2024-03-23T17:47:21Z #15 2.518 89850K .......... .......... .......... .......... .......... 70% 129M 1s -2024-03-23T17:47:21Z #15 2.518 89900K .......... .......... .......... .......... .......... 70% 112M 1s -2024-03-23T17:47:21Z #15 2.524 89950K .......... .......... .......... .......... .......... 70% 123M 1s -2024-03-23T17:47:21Z #15 2.524 90000K .......... .......... .......... .......... .......... 71% 89.1M 1s -2024-03-23T17:47:21Z #15 2.524 90050K .......... .......... .......... .......... .......... 71% 89.7M 1s -2024-03-23T17:47:21Z #15 2.524 90100K .......... .......... .......... .......... .......... 71% 136M 1s -2024-03-23T17:47:21Z #15 2.524 90150K .......... .......... .......... .......... .......... 71% 153M 1s -2024-03-23T17:47:21Z #15 2.524 90200K .......... .......... .......... .......... .......... 71% 174M 1s -2024-03-23T17:47:21Z #15 2.524 90250K .......... .......... .......... .......... .......... 71% 167M 1s -2024-03-23T17:47:21Z #15 2.524 90300K .......... .......... .......... .......... .......... 71% 141M 1s -2024-03-23T17:47:21Z #15 2.524 90350K .......... .......... .......... .......... .......... 71% 151M 1s -2024-03-23T17:47:21Z #15 2.524 90400K .......... .......... .......... .......... .......... 71% 133M 1s -2024-03-23T17:47:21Z #15 2.524 90450K .......... .......... .......... .......... .......... 71% 115M 1s -2024-03-23T17:47:21Z #15 2.524 90500K .......... .......... .......... .......... .......... 71% 101M 1s -2024-03-23T17:47:21Z #15 2.524 90550K .......... .......... .......... .......... .......... 71% 124M 1s -2024-03-23T17:47:21Z #15 2.524 90600K .......... .......... .......... .......... .......... 71% 115M 1s -2024-03-23T17:47:21Z #15 2.524 90650K .......... .......... .......... .......... .......... 71% 102M 1s -2024-03-23T17:47:21Z #15 2.525 90700K .......... .......... .......... .......... .......... 71% 133M 1s -2024-03-23T17:47:21Z #15 2.525 90750K .......... .......... .......... .......... .......... 71% 137M 1s -2024-03-23T17:47:21Z #15 2.525 90800K .......... .......... .......... .......... .......... 71% 111M 1s -2024-03-23T17:47:21Z #15 2.526 90850K .......... .......... .......... .......... .......... 71% 143M 1s -2024-03-23T17:47:21Z #15 2.526 90900K .......... .......... .......... .......... .......... 71% 120M 1s -2024-03-23T17:47:21Z #15 2.535 90950K .......... .......... .......... .......... .......... 71% 5.71M 1s -2024-03-23T17:47:21Z #15 2.535 91000K .......... .......... .......... .......... .......... 71% 94.3M 1s -2024-03-23T17:47:21Z #15 2.536 91050K .......... .......... .......... .......... .......... 71% 106M 1s -2024-03-23T17:47:21Z #15 2.536 91100K .......... .......... .......... .......... .......... 71% 116M 1s -2024-03-23T17:47:21Z #15 2.537 91150K .......... .......... .......... .......... .......... 71% 104M 1s -2024-03-23T17:47:21Z #15 2.537 91200K .......... .......... .......... .......... .......... 71% 117M 1s -2024-03-23T17:47:21Z #15 2.538 91250K .......... .......... .......... .......... .......... 72% 120M 1s -2024-03-23T17:47:21Z #15 2.538 91300K .......... .......... .......... .......... .......... 72% 105M 1s -2024-03-23T17:47:21Z #15 2.538 91350K .......... .......... .......... .......... .......... 72% 108M 1s -2024-03-23T17:47:21Z #15 2.539 91400K .......... .......... .......... .......... .......... 72% 106M 1s -2024-03-23T17:47:21Z #15 2.539 91450K .......... .......... .......... .......... .......... 72% 109M 1s -2024-03-23T17:47:21Z #15 2.540 91500K .......... .......... .......... .......... .......... 72% 121M 1s -2024-03-23T17:47:21Z #15 2.540 91550K .......... .......... .......... .......... .......... 72% 137M 1s -2024-03-23T17:47:21Z #15 2.541 91600K .......... .......... .......... .......... .......... 72% 96.2M 1s -2024-03-23T17:47:21Z #15 2.541 91650K .......... .......... .......... .......... .......... 72% 122M 1s -2024-03-23T17:47:21Z #15 2.541 91700K .......... .......... .......... .......... .......... 72% 107M 1s -2024-03-23T17:47:21Z #15 2.542 91750K .......... .......... .......... .......... .......... 72% 131M 1s -2024-03-23T17:47:21Z #15 2.544 91800K .......... .......... .......... .......... .......... 72% 142M 1s -2024-03-23T17:47:21Z #15 2.544 91850K .......... .......... .......... .......... .......... 72% 10.8M 1s -2024-03-23T17:47:21Z #15 2.547 91900K .......... .......... .......... .......... .......... 72% 119M 1s -2024-03-23T17:47:21Z #15 2.548 91950K .......... .......... .......... .......... .......... 72% 113M 1s -2024-03-23T17:47:21Z #15 2.548 92000K .......... .......... .......... .......... .......... 72% 89.5M 1s -2024-03-23T17:47:21Z #15 2.549 92050K .......... .......... .......... .......... .......... 72% 112M 1s -2024-03-23T17:47:21Z #15 2.549 92100K .......... .......... .......... .......... .......... 72% 113M 1s -2024-03-23T17:47:21Z #15 2.549 92150K .......... .......... .......... .......... .......... 72% 112M 1s -2024-03-23T17:47:21Z #15 2.550 92200K .......... .......... .......... .......... .......... 72% 110M 1s -2024-03-23T17:47:21Z #15 2.550 92250K .......... .......... .......... .......... .......... 72% 108M 1s -2024-03-23T17:47:21Z #15 2.551 92300K .......... .......... .......... .......... .......... 72% 83.4M 1s -2024-03-23T17:47:21Z #15 2.551 92350K .......... .......... .......... .......... .......... 72% 121M 1s -2024-03-23T17:47:21Z #15 2.552 92400K .......... .......... .......... .......... .......... 72% 107M 1s -2024-03-23T17:47:21Z #15 2.552 92450K .......... .......... .......... .......... .......... 72% 115M 1s -2024-03-23T17:47:21Z #15 2.553 92500K .......... .......... .......... .......... .......... 72% 110M 1s -2024-03-23T17:47:21Z #15 2.553 92550K .......... .......... .......... .......... .......... 73% 127M 1s -2024-03-23T17:47:21Z #15 2.554 92600K .......... .......... .......... .......... .......... 73% 142M 1s -2024-03-23T17:47:21Z #15 2.554 92650K .......... .......... .......... .......... .......... 73% 105M 0s -2024-03-23T17:47:21Z #15 2.554 92700K .......... .......... .......... .......... .......... 73% 98.7M 0s -2024-03-23T17:47:21Z #15 2.555 92750K .......... .......... .......... .......... .......... 73% 103M 0s -2024-03-23T17:47:21Z #15 2.555 92800K .......... .......... .......... .......... .......... 73% 130M 0s -2024-03-23T17:47:21Z #15 2.556 92850K .......... .......... .......... .......... .......... 73% 6.63M 0s -2024-03-23T17:47:21Z #15 2.564 92900K .......... .......... .......... .......... .......... 73% 118M 0s -2024-03-23T17:47:21Z #15 2.564 92950K .......... .......... .......... .......... .......... 73% 133M 0s -2024-03-23T17:47:21Z #15 2.564 93000K .......... .......... .......... .......... .......... 73% 139M 0s -2024-03-23T17:47:21Z #15 2.567 93050K .......... .......... .......... .......... .......... 73% 132M 0s -2024-03-23T17:47:21Z #15 2.567 93100K .......... .......... .......... .......... .......... 73% 136M 0s -2024-03-23T17:47:21Z #15 2.567 93150K .......... .......... .......... .......... .......... 73% 161M 0s -2024-03-23T17:47:21Z #15 2.567 93200K .......... .......... .......... .......... .......... 73% 26.5M 0s -2024-03-23T17:47:21Z #15 2.567 93250K .......... .......... .......... .......... .......... 73% 123M 0s -2024-03-23T17:47:21Z #15 2.567 93300K .......... .......... .......... .......... .......... 73% 129M 0s -2024-03-23T17:47:21Z #15 2.568 93350K .......... .......... .......... .......... .......... 73% 121M 0s -2024-03-23T17:47:21Z #15 2.568 93400K .......... .......... .......... .......... .......... 73% 137M 0s -2024-03-23T17:47:21Z #15 2.569 93450K .......... .......... .......... .......... .......... 73% 133M 0s -2024-03-23T17:47:21Z #15 2.570 93500K .......... .......... .......... .......... .......... 73% 165M 0s -2024-03-23T17:47:21Z #15 2.570 93550K .......... .......... .......... .......... .......... 73% 143M 0s -2024-03-23T17:47:21Z #15 2.570 93600K .......... .......... .......... .......... .......... 73% 168M 0s -2024-03-23T17:47:21Z #15 2.570 93650K .......... .......... .......... .......... .......... 73% 128M 0s -2024-03-23T17:47:21Z #15 2.570 93700K .......... .......... .......... .......... .......... 73% 125M 0s -2024-03-23T17:47:21Z #15 2.571 93750K .......... .......... .......... .......... .......... 73% 120M 0s -2024-03-23T17:47:21Z #15 2.571 93800K .......... .......... .......... .......... .......... 74% 149M 0s -2024-03-23T17:47:21Z #15 2.571 93850K .......... .......... .......... .......... .......... 74% 116M 0s -2024-03-23T17:47:21Z #15 2.572 93900K .......... .......... .......... .......... .......... 74% 110M 0s -2024-03-23T17:47:21Z #15 2.572 93950K .......... .......... .......... .......... .......... 74% 133M 0s -2024-03-23T17:47:21Z #15 2.573 94000K .......... .......... .......... .......... .......... 74% 128M 0s -2024-03-23T17:47:21Z #15 2.574 94050K .......... .......... .......... .......... .......... 74% 27.9M 0s -2024-03-23T17:47:21Z #15 2.580 94100K .......... .......... .......... .......... .......... 74% 129M 0s -2024-03-23T17:47:21Z #15 2.580 94150K .......... .......... .......... .......... .......... 74% 177M 0s -2024-03-23T17:47:21Z #15 2.580 94200K .......... .......... .......... .......... .......... 74% 169M 0s -2024-03-23T17:47:21Z #15 2.580 94250K .......... .......... .......... .......... .......... 74% 154M 0s -2024-03-23T17:47:21Z #15 2.580 94300K .......... .......... .......... .......... .......... 74% 162M 0s -2024-03-23T17:47:21Z #15 2.580 94350K .......... .......... .......... .......... .......... 74% 185M 0s -2024-03-23T17:47:21Z #15 2.580 94400K .......... .......... .......... .......... .......... 74% 137M 0s -2024-03-23T17:47:21Z #15 2.580 94450K .......... .......... .......... .......... .......... 74% 142M 0s -2024-03-23T17:47:21Z #15 2.580 94500K .......... .......... .......... .......... .......... 74% 140M 0s -2024-03-23T17:47:21Z #15 2.580 94550K .......... .......... .......... .......... .......... 74% 157M 0s -2024-03-23T17:47:21Z #15 2.580 94600K .......... .......... .......... .......... .......... 74% 137M 0s -2024-03-23T17:47:21Z #15 2.580 94650K .......... .......... .......... .......... .......... 74% 26.1M 0s -2024-03-23T17:47:21Z #15 2.580 94700K .......... .......... .......... .......... .......... 74% 183M 0s -2024-03-23T17:47:21Z #15 2.580 94750K .......... .......... .......... .......... .......... 74% 153M 0s -2024-03-23T17:47:21Z #15 2.581 94800K .......... .......... .......... .......... .......... 74% 141M 0s -2024-03-23T17:47:21Z #15 2.581 94850K .......... .......... .......... .......... .......... 74% 159M 0s -2024-03-23T17:47:21Z #15 2.581 94900K .......... .......... .......... .......... .......... 74% 134M 0s -2024-03-23T17:47:21Z #15 2.582 94950K .......... .......... .......... .......... .......... 74% 124M 0s -2024-03-23T17:47:21Z #15 2.583 95000K .......... .......... .......... .......... .......... 74% 161M 0s -2024-03-23T17:47:21Z #15 2.583 95050K .......... .......... .......... .......... .......... 75% 107M 0s -2024-03-23T17:47:21Z #15 2.583 95100K .......... .......... .......... .......... .......... 75% 23.0M 0s -2024-03-23T17:47:21Z #15 2.585 95150K .......... .......... .......... .......... .......... 75% 148M 0s -2024-03-23T17:47:21Z #15 2.586 95200K .......... .......... .......... .......... .......... 75% 116M 0s -2024-03-23T17:47:21Z #15 2.586 95250K .......... .......... .......... .......... .......... 75% 142M 0s -2024-03-23T17:47:21Z #15 2.586 95300K .......... .......... .......... .......... .......... 75% 149M 0s -2024-03-23T17:47:21Z #15 2.586 95350K .......... .......... .......... .......... .......... 75% 124M 0s -2024-03-23T17:47:21Z #15 2.587 95400K .......... .......... .......... .......... .......... 75% 113M 0s -2024-03-23T17:47:21Z #15 2.587 95450K .......... .......... .......... .......... .......... 75% 146M 0s -2024-03-23T17:47:21Z #15 2.588 95500K .......... .......... .......... .......... .......... 75% 129M 0s -2024-03-23T17:47:21Z #15 2.588 95550K .......... .......... .......... .......... .......... 75% 137M 0s -2024-03-23T17:47:21Z #15 2.589 95600K .......... .......... .......... .......... .......... 75% 144M 0s -2024-03-23T17:47:21Z #15 2.589 95650K .......... .......... .......... .......... .......... 75% 140M 0s -2024-03-23T17:47:21Z #15 2.589 95700K .......... .......... .......... .......... .......... 75% 133M 0s -2024-03-23T17:47:21Z #15 2.589 95750K .......... .......... .......... .......... .......... 75% 140M 0s -2024-03-23T17:47:21Z #15 2.591 95800K .......... .......... .......... .......... .......... 75% 139M 0s -2024-03-23T17:47:21Z #15 2.591 95850K .......... .......... .......... .......... .......... 75% 119M 0s -2024-03-23T17:47:21Z #15 2.591 95900K .......... .......... .......... .......... .......... 75% 5.82M 0s -2024-03-23T17:47:21Z #15 2.599 95950K .......... .......... .......... .......... .......... 75% 134M 0s -2024-03-23T17:47:21Z #15 2.599 96000K .......... .......... .......... .......... .......... 75% 163M 0s -2024-03-23T17:47:21Z #15 2.599 96050K .......... .......... .......... .......... .......... 75% 154M 0s -2024-03-23T17:47:21Z #15 2.600 96100K .......... .......... .......... .......... .......... 75% 150M 0s -2024-03-23T17:47:21Z #15 2.600 96150K .......... .......... .......... .......... .......... 75% 159M 0s -2024-03-23T17:47:21Z #15 2.600 96200K .......... .......... .......... .......... .......... 75% 145M 0s -2024-03-23T17:47:21Z #15 2.601 96250K .......... .......... .......... .......... .......... 75% 171M 0s -2024-03-23T17:47:21Z #15 2.601 96300K .......... .......... .......... .......... .......... 75% 139M 0s -2024-03-23T17:47:21Z #15 2.601 96350K .......... .......... .......... .......... .......... 76% 149M 0s -2024-03-23T17:47:21Z #15 2.604 96400K .......... .......... .......... .......... .......... 76% 158M 0s -2024-03-23T17:47:21Z #15 2.604 96450K .......... .......... .......... .......... .......... 76% 129M 0s -2024-03-23T17:47:21Z #15 2.604 96500K .......... .......... .......... .......... .......... 76% 27.2M 0s -2024-03-23T17:47:21Z #15 2.604 96550K .......... .......... .......... .......... .......... 76% 175M 0s -2024-03-23T17:47:21Z #15 2.604 96600K .......... .......... .......... .......... .......... 76% 164M 0s -2024-03-23T17:47:21Z #15 2.605 96650K .......... .......... .......... .......... .......... 76% 146M 0s -2024-03-23T17:47:21Z #15 2.605 96700K .......... .......... .......... .......... .......... 76% 173M 0s -2024-03-23T17:47:21Z #15 2.605 96750K .......... .......... .......... .......... .......... 76% 162M 0s -2024-03-23T17:47:21Z #15 2.606 96800K .......... .......... .......... .......... .......... 76% 177M 0s -2024-03-23T17:47:21Z #15 2.606 96850K .......... .......... .......... .......... .......... 76% 153M 0s -2024-03-23T17:47:21Z #15 2.607 96900K .......... .......... .......... .......... .......... 76% 165M 0s -2024-03-23T17:47:21Z #15 2.607 96950K .......... .......... .......... .......... .......... 76% 15.6M 0s -2024-03-23T17:47:21Z #15 2.610 97000K .......... .......... .......... .......... .......... 76% 165M 0s -2024-03-23T17:47:21Z #15 2.610 97050K .......... .......... .......... .......... .......... 76% 147M 0s -2024-03-23T17:47:21Z #15 2.610 97100K .......... .......... .......... .......... .......... 76% 175M 0s -2024-03-23T17:47:21Z #15 2.611 97150K .......... .......... .......... .......... .......... 76% 150M 0s -2024-03-23T17:47:21Z #15 2.611 97200K .......... .......... .......... .......... .......... 76% 171M 0s -2024-03-23T17:47:21Z #15 2.611 97250K .......... .......... .......... .......... .......... 76% 156M 0s -2024-03-23T17:47:21Z #15 2.612 97300K .......... .......... .......... .......... .......... 76% 160M 0s -2024-03-23T17:47:21Z #15 2.612 97350K .......... .......... .......... .......... .......... 76% 150M 0s -2024-03-23T17:47:21Z #15 2.612 97400K .......... .......... .......... .......... .......... 76% 126M 0s -2024-03-23T17:47:21Z #15 2.613 97450K .......... .......... .......... .......... .......... 76% 173M 0s -2024-03-23T17:47:21Z #15 2.618 97500K .......... .......... .......... .......... .......... 76% 153M 0s -2024-03-23T17:47:21Z #15 2.618 97550K .......... .......... .......... .......... .......... 76% 206M 0s -2024-03-23T17:47:21Z #15 2.618 97600K .......... .......... .......... .......... .......... 77% 168M 0s -2024-03-23T17:47:21Z #15 2.618 97650K .......... .......... .......... .......... .......... 77% 188M 0s -2024-03-23T17:47:21Z #15 2.618 97700K .......... .......... .......... .......... .......... 77% 197M 0s -2024-03-23T17:47:21Z #15 2.618 97750K .......... .......... .......... .......... .......... 77% 202M 0s -2024-03-23T17:47:21Z #15 2.618 97800K .......... .......... .......... .......... .......... 77% 13.1M 0s -2024-03-23T17:47:21Z #15 2.618 97850K .......... .......... .......... .......... .......... 77% 151M 0s -2024-03-23T17:47:21Z #15 2.618 97900K .......... .......... .......... .......... .......... 77% 140M 0s -2024-03-23T17:47:21Z #15 2.619 97950K .......... .......... .......... .......... .......... 77% 168M 0s -2024-03-23T17:47:21Z #15 2.619 98000K .......... .......... .......... .......... .......... 77% 146M 0s -2024-03-23T17:47:21Z #15 2.619 98050K .......... .......... .......... .......... .......... 77% 177M 0s -2024-03-23T17:47:21Z #15 2.620 98100K .......... .......... .......... .......... .......... 77% 156M 0s -2024-03-23T17:47:21Z #15 2.620 98150K .......... .......... .......... .......... .......... 77% 156M 0s -2024-03-23T17:47:21Z #15 2.620 98200K .......... .......... .......... .......... .......... 77% 146M 0s -2024-03-23T17:47:21Z #15 2.621 98250K .......... .......... .......... .......... .......... 77% 167M 0s -2024-03-23T17:47:21Z #15 2.621 98300K .......... .......... .......... .......... .......... 77% 165M 0s -2024-03-23T17:47:21Z #15 2.621 98350K .......... .......... .......... .......... .......... 77% 132M 0s -2024-03-23T17:47:21Z #15 2.622 98400K .......... .......... .......... .......... .......... 77% 167M 0s -2024-03-23T17:47:21Z #15 2.622 98450K .......... .......... .......... .......... .......... 77% 175M 0s -2024-03-23T17:47:21Z #15 2.622 98500K .......... .......... .......... .......... .......... 77% 174M 0s -2024-03-23T17:47:21Z #15 2.622 98550K .......... .......... .......... .......... .......... 77% 11.1M 0s -2024-03-23T17:47:21Z #15 2.627 98600K .......... .......... .......... .......... .......... 77% 168M 0s -2024-03-23T17:47:21Z #15 2.627 98650K .......... .......... .......... .......... .......... 77% 174M 0s -2024-03-23T17:47:21Z #15 2.628 98700K .......... .......... .......... .......... .......... 77% 130M 0s -2024-03-23T17:47:21Z #15 2.628 98750K .......... .......... .......... .......... .......... 77% 159M 0s -2024-03-23T17:47:21Z #15 2.628 98800K .......... .......... .......... .......... .......... 77% 158M 0s -2024-03-23T17:47:21Z #15 2.628 98850K .......... .......... .......... .......... .......... 78% 177M 0s -2024-03-23T17:47:21Z #15 2.629 98900K .......... .......... .......... .......... .......... 78% 153M 0s -2024-03-23T17:47:21Z #15 2.629 98950K .......... .......... .......... .......... .......... 78% 172M 0s -2024-03-23T17:47:21Z #15 2.629 99000K .......... .......... .......... .......... .......... 78% 147M 0s -2024-03-23T17:47:21Z #15 2.630 99050K .......... .......... .......... .......... .......... 78% 142M 0s -2024-03-23T17:47:21Z #15 2.630 99100K .......... .......... .......... .......... .......... 78% 169M 0s -2024-03-23T17:47:21Z #15 2.630 99150K .......... .......... .......... .......... .......... 78% 174M 0s -2024-03-23T17:47:21Z #15 2.631 99200K .......... .......... .......... .......... .......... 78% 11.2M 0s -2024-03-23T17:47:21Z #15 2.635 99250K .......... .......... .......... .......... .......... 78% 139M 0s -2024-03-23T17:47:21Z #15 2.635 99300K .......... .......... .......... .......... .......... 78% 170M 0s -2024-03-23T17:47:21Z #15 2.636 99350K .......... .......... .......... .......... .......... 78% 172M 0s -2024-03-23T17:47:21Z #15 2.636 99400K .......... .......... .......... .......... .......... 78% 137M 0s -2024-03-23T17:47:21Z #15 2.637 99450K .......... .......... .......... .......... .......... 78% 176M 0s -2024-03-23T17:47:21Z #15 2.637 99500K .......... .......... .......... .......... .......... 78% 147M 0s -2024-03-23T17:47:21Z #15 2.637 99550K .......... .......... .......... .......... .......... 78% 152M 0s -2024-03-23T17:47:21Z #15 2.638 99600K .......... .......... .......... .......... .......... 78% 137M 0s -2024-03-23T17:47:21Z #15 2.638 99650K .......... .......... .......... .......... .......... 78% 151M 0s -2024-03-23T17:47:21Z #15 2.638 99700K .......... .......... .......... .......... .......... 78% 175M 0s -2024-03-23T17:47:21Z #15 2.638 99750K .......... .......... .......... .......... .......... 78% 138M 0s -2024-03-23T17:47:21Z #15 2.638 99800K .......... .......... .......... .......... .......... 78% 152M 0s -2024-03-23T17:47:21Z #15 2.639 99850K .......... .......... .......... .......... .......... 78% 158M 0s -2024-03-23T17:47:21Z #15 2.639 99900K .......... .......... .......... .......... .......... 78% 143M 0s -2024-03-23T17:47:21Z #15 2.639 99950K .......... .......... .......... .......... .......... 78% 155M 0s -2024-03-23T17:47:21Z #15 2.640 100000K .......... .......... .......... .......... .......... 78% 158M 0s -2024-03-23T17:47:21Z #15 2.640 100050K .......... .......... .......... .......... .......... 78% 172M 0s -2024-03-23T17:47:21Z #15 2.640 100100K .......... .......... .......... .......... .......... 78% 175M 0s -2024-03-23T17:47:21Z #15 2.641 100150K .......... .......... .......... .......... .......... 79% 138M 0s -2024-03-23T17:47:21Z #15 2.641 100200K .......... .......... .......... .......... .......... 79% 175M 0s -2024-03-23T17:47:21Z #15 2.641 100250K .......... .......... .......... .......... .......... 79% 170M 0s -2024-03-23T17:47:21Z #15 2.642 100300K .......... .......... .......... .......... .......... 79% 143M 0s -2024-03-23T17:47:21Z #15 2.642 100350K .......... .......... .......... .......... .......... 79% 160M 0s -2024-03-23T17:47:21Z #15 2.642 100400K .......... .......... .......... .......... .......... 79% 145M 0s -2024-03-23T17:47:21Z #15 2.642 100450K .......... .......... .......... .......... .......... 79% 133M 0s -2024-03-23T17:47:21Z #15 2.643 100500K .......... .......... .......... .......... .......... 79% 157M 0s -2024-03-23T17:47:21Z #15 2.643 100550K .......... .......... .......... .......... .......... 79% 139M 0s -2024-03-23T17:47:21Z #15 2.644 100600K .......... .......... .......... .......... .......... 79% 172M 0s -2024-03-23T17:47:21Z #15 2.645 100650K .......... .......... .......... .......... .......... 79% 170M 0s -2024-03-23T17:47:21Z #15 2.645 100700K .......... .......... .......... .......... .......... 79% 149M 0s -2024-03-23T17:47:21Z #15 2.645 100750K .......... .......... .......... .......... .......... 79% 159M 0s -2024-03-23T17:47:21Z #15 2.645 100800K .......... .......... .......... .......... .......... 79% 169M 0s -2024-03-23T17:47:21Z #15 2.645 100850K .......... .......... .......... .......... .......... 79% 135M 0s -2024-03-23T17:47:21Z #15 2.645 100900K .......... .......... .......... .......... .......... 79% 170M 0s -2024-03-23T17:47:21Z #15 2.646 100950K .......... .......... .......... .......... .......... 79% 173M 0s -2024-03-23T17:47:21Z #15 2.646 101000K .......... .......... .......... .......... .......... 79% 171M 0s -2024-03-23T17:47:21Z #15 2.646 101050K .......... .......... .......... .......... .......... 79% 155M 0s -2024-03-23T17:47:21Z #15 2.647 101100K .......... .......... .......... .......... .......... 79% 9.36M 0s -2024-03-23T17:47:21Z #15 2.652 101150K .......... .......... .......... .......... .......... 79% 139M 0s -2024-03-23T17:47:21Z #15 2.652 101200K .......... .......... .......... .......... .......... 79% 173M 0s -2024-03-23T17:47:21Z #15 2.652 101250K .......... .......... .......... .......... .......... 79% 170M 0s -2024-03-23T17:47:21Z #15 2.653 101300K .......... .......... .......... .......... .......... 79% 175M 0s -2024-03-23T17:47:21Z #15 2.653 101350K .......... .......... .......... .......... .......... 79% 166M 0s -2024-03-23T17:47:21Z #15 2.653 101400K .......... .......... .......... .......... .......... 80% 175M 0s -2024-03-23T17:47:21Z #15 2.654 101450K .......... .......... .......... .......... .......... 80% 141M 0s -2024-03-23T17:47:21Z #15 2.654 101500K .......... .......... .......... .......... .......... 80% 157M 0s -2024-03-23T17:47:21Z #15 2.654 101550K .......... .......... .......... .......... .......... 80% 175M 0s -2024-03-23T17:47:21Z #15 2.655 101600K .......... .......... .......... .......... .......... 80% 124M 0s -2024-03-23T17:47:21Z #15 2.655 101650K .......... .......... .......... .......... .......... 80% 113M 0s -2024-03-23T17:47:21Z #15 2.655 101700K .......... .......... .......... .......... .......... 80% 152M 0s -2024-03-23T17:47:21Z #15 2.656 101750K .......... .......... .......... .......... .......... 80% 151M 0s -2024-03-23T17:47:21Z #15 2.656 101800K .......... .......... .......... .......... .......... 80% 131M 0s -2024-03-23T17:47:21Z #15 2.656 101850K .......... .......... .......... .......... .......... 80% 153M 0s -2024-03-23T17:47:21Z #15 2.657 101900K .......... .......... .......... .......... .......... 80% 138M 0s -2024-03-23T17:47:21Z #15 2.657 101950K .......... .......... .......... .......... .......... 80% 155M 0s -2024-03-23T17:47:21Z #15 2.657 102000K .......... .......... .......... .......... .......... 80% 146M 0s -2024-03-23T17:47:21Z #15 2.658 102050K .......... .......... .......... .......... .......... 80% 128M 0s -2024-03-23T17:47:21Z #15 2.658 102100K .......... .......... .......... .......... .......... 80% 152M 0s -2024-03-23T17:47:21Z #15 2.658 102150K .......... .......... .......... .......... .......... 80% 154M 0s -2024-03-23T17:47:21Z #15 2.661 102200K .......... .......... .......... .......... .......... 80% 28.9M 0s -2024-03-23T17:47:21Z #15 2.661 102250K .......... .......... .......... .......... .......... 80% 172M 0s -2024-03-23T17:47:21Z #15 2.661 102300K .......... .......... .......... .......... .......... 80% 183M 0s -2024-03-23T17:47:21Z #15 2.661 102350K .......... .......... .......... .......... .......... 80% 143M 0s -2024-03-23T17:47:21Z #15 2.661 102400K .......... .......... .......... .......... .......... 80% 177M 0s -2024-03-23T17:47:21Z #15 2.662 102450K .......... .......... .......... .......... .......... 80% 175M 0s -2024-03-23T17:47:21Z #15 2.662 102500K .......... .......... .......... .......... .......... 80% 173M 0s -2024-03-23T17:47:21Z #15 2.663 102550K .......... .......... .......... .......... .......... 80% 162M 0s -2024-03-23T17:47:21Z #15 2.663 102600K .......... .......... .......... .......... .......... 80% 169M 0s -2024-03-23T17:47:21Z #15 2.667 102650K .......... .......... .......... .......... .......... 81% 11.0M 0s -2024-03-23T17:47:21Z #15 2.667 102700K .......... .......... .......... .......... .......... 81% 176M 0s -2024-03-23T17:47:21Z #15 2.668 102750K .......... .......... .......... .......... .......... 81% 140M 0s -2024-03-23T17:47:21Z #15 2.668 102800K .......... .......... .......... .......... .......... 81% 156M 0s -2024-03-23T17:47:21Z #15 2.669 102850K .......... .......... .......... .......... .......... 81% 184M 0s -2024-03-23T17:47:21Z #15 2.669 102900K .......... .......... .......... .......... .......... 81% 148M 0s -2024-03-23T17:47:21Z #15 2.669 102950K .......... .......... .......... .......... .......... 81% 144M 0s -2024-03-23T17:47:21Z #15 2.669 103000K .......... .......... .......... .......... .......... 81% 174M 0s -2024-03-23T17:47:21Z #15 2.669 103050K .......... .......... .......... .......... .......... 81% 168M 0s -2024-03-23T17:47:21Z #15 2.670 103100K .......... .......... .......... .......... .......... 81% 143M 0s -2024-03-23T17:47:21Z #15 2.670 103150K .......... .......... .......... .......... .......... 81% 186M 0s -2024-03-23T17:47:21Z #15 2.670 103200K .......... .......... .......... .......... .......... 81% 153M 0s -2024-03-23T17:47:21Z #15 2.671 103250K .......... .......... .......... .......... .......... 81% 137M 0s -2024-03-23T17:47:21Z #15 2.671 103300K .......... .......... .......... .......... .......... 81% 146M 0s -2024-03-23T17:47:21Z #15 2.671 103350K .......... .......... .......... .......... .......... 81% 157M 0s -2024-03-23T17:47:21Z #15 2.672 103400K .......... .......... .......... .......... .......... 81% 160M 0s -2024-03-23T17:47:21Z #15 2.672 103450K .......... .......... .......... .......... .......... 81% 157M 0s -2024-03-23T17:47:21Z #15 2.672 103500K .......... .......... .......... .......... .......... 81% 166M 0s -2024-03-23T17:47:21Z #15 2.672 103550K .......... .......... .......... .......... .......... 81% 140M 0s -2024-03-23T17:47:21Z #15 2.673 103600K .......... .......... .......... .......... .......... 81% 163M 0s -2024-03-23T17:47:21Z #15 2.673 103650K .......... .......... .......... .......... .......... 81% 169M 0s -2024-03-23T17:47:21Z #15 2.674 103700K .......... .......... .......... .......... .......... 81% 177M 0s -2024-03-23T17:47:21Z #15 2.674 103750K .......... .......... .......... .......... .......... 81% 145M 0s -2024-03-23T17:47:21Z #15 2.674 103800K .......... .......... .......... .......... .......... 81% 167M 0s -2024-03-23T17:47:21Z #15 2.674 103850K .......... .......... .......... .......... .......... 81% 141M 0s -2024-03-23T17:47:21Z #15 2.675 103900K .......... .......... .......... .......... .......... 81% 11.0M 0s -2024-03-23T17:47:21Z #15 2.679 103950K .......... .......... .......... .......... .......... 82% 142M 0s -2024-03-23T17:47:21Z #15 2.679 104000K .......... .......... .......... .......... .......... 82% 132M 0s -2024-03-23T17:47:21Z #15 2.680 104050K .......... .......... .......... .......... .......... 82% 157M 0s -2024-03-23T17:47:21Z #15 2.680 104100K .......... .......... .......... .......... .......... 82% 152M 0s -2024-03-23T17:47:21Z #15 2.680 104150K .......... .......... .......... .......... .......... 82% 149M 0s -2024-03-23T17:47:21Z #15 2.681 104200K .......... .......... .......... .......... .......... 82% 166M 0s -2024-03-23T17:47:21Z #15 2.681 104250K .......... .......... .......... .......... .......... 82% 139M 0s -2024-03-23T17:47:21Z #15 2.681 104300K .......... .......... .......... .......... .......... 82% 137M 0s -2024-03-23T17:47:21Z #15 2.682 104350K .......... .......... .......... .......... .......... 82% 150M 0s -2024-03-23T17:47:21Z #15 2.682 104400K .......... .......... .......... .......... .......... 82% 135M 0s -2024-03-23T17:47:21Z #15 2.683 104450K .......... .......... .......... .......... .......... 82% 141M 0s -2024-03-23T17:47:21Z #15 2.683 104500K .......... .......... .......... .......... .......... 82% 147M 0s -2024-03-23T17:47:21Z #15 2.684 104550K .......... .......... .......... .......... .......... 82% 126M 0s -2024-03-23T17:47:21Z #15 2.684 104600K .......... .......... .......... .......... .......... 82% 128M 0s -2024-03-23T17:47:21Z #15 2.686 104650K .......... .......... .......... .......... .......... 82% 140M 0s -2024-03-23T17:47:21Z #15 2.686 104700K .......... .......... .......... .......... .......... 82% 134M 0s -2024-03-23T17:47:21Z #15 2.686 104750K .......... .......... .......... .......... .......... 82% 28.7M 0s -2024-03-23T17:47:21Z #15 2.686 104800K .......... .......... .......... .......... .......... 82% 140M 0s -2024-03-23T17:47:21Z #15 2.687 104850K .......... .......... .......... .......... .......... 82% 10.9M 0s -2024-03-23T17:47:21Z #15 2.692 104900K .......... .......... .......... .......... .......... 82% 118M 0s -2024-03-23T17:47:21Z #15 2.692 104950K .......... .......... .......... .......... .......... 82% 113M 0s -2024-03-23T17:47:21Z #15 2.692 105000K .......... .......... .......... .......... .......... 82% 145M 0s -2024-03-23T17:47:21Z #15 2.692 105050K .......... .......... .......... .......... .......... 82% 102M 0s -2024-03-23T17:47:21Z #15 2.693 105100K .......... .......... .......... .......... .......... 82% 110M 0s -2024-03-23T17:47:21Z #15 2.693 105150K .......... .......... .......... .......... .......... 82% 137M 0s -2024-03-23T17:47:21Z #15 2.695 105200K .......... .......... .......... .......... .......... 83% 26.5M 0s -2024-03-23T17:47:21Z #15 2.695 105250K .......... .......... .......... .......... .......... 83% 118M 0s -2024-03-23T17:47:21Z #15 2.696 105300K .......... .......... .......... .......... .......... 83% 116M 0s -2024-03-23T17:47:21Z #15 2.699 105350K .......... .......... .......... .......... .......... 83% 150M 0s -2024-03-23T17:47:21Z #15 2.699 105400K .......... .......... .......... .......... .......... 83% 170M 0s -2024-03-23T17:47:21Z #15 2.699 105450K .......... .......... .......... .......... .......... 83% 150M 0s -2024-03-23T17:47:21Z #15 2.699 105500K .......... .......... .......... .......... .......... 83% 158M 0s -2024-03-23T17:47:21Z #15 2.699 105550K .......... .......... .......... .......... .......... 83% 139M 0s -2024-03-23T17:47:21Z #15 2.699 105600K .......... .......... .......... .......... .......... 83% 169M 0s -2024-03-23T17:47:21Z #15 2.699 105650K .......... .......... .......... .......... .......... 83% 152M 0s -2024-03-23T17:47:21Z #15 2.699 105700K .......... .......... .......... .......... .......... 83% 148M 0s -2024-03-23T17:47:21Z #15 2.699 105750K .......... .......... .......... .......... .......... 83% 125M 0s -2024-03-23T17:47:21Z #15 2.699 105800K .......... .......... .......... .......... .......... 83% 152M 0s -2024-03-23T17:47:21Z #15 2.700 105850K .......... .......... .......... .......... .......... 83% 123M 0s -2024-03-23T17:47:21Z #15 2.700 105900K .......... .......... .......... .......... .......... 83% 111M 0s -2024-03-23T17:47:21Z #15 2.700 105950K .......... .......... .......... .......... .......... 83% 129M 0s -2024-03-23T17:47:21Z #15 2.701 106000K .......... .......... .......... .......... .......... 83% 20.1M 0s -2024-03-23T17:47:21Z #15 2.703 106050K .......... .......... .......... .......... .......... 83% 135M 0s -2024-03-23T17:47:21Z #15 2.703 106100K .......... .......... .......... .......... .......... 83% 127M 0s -2024-03-23T17:47:21Z #15 2.704 106150K .......... .......... .......... .......... .......... 83% 109M 0s -2024-03-23T17:47:21Z #15 2.704 106200K .......... .......... .......... .......... .......... 83% 129M 0s -2024-03-23T17:47:21Z #15 2.705 106250K .......... .......... .......... .......... .......... 83% 144M 0s -2024-03-23T17:47:21Z #15 2.705 106300K .......... .......... .......... .......... .......... 83% 125M 0s -2024-03-23T17:47:21Z #15 2.705 106350K .......... .......... .......... .......... .......... 83% 124M 0s -2024-03-23T17:47:21Z #15 2.706 106400K .......... .......... .......... .......... .......... 83% 135M 0s -2024-03-23T17:47:21Z #15 2.706 106450K .......... .......... .......... .......... .......... 84% 114M 0s -2024-03-23T17:47:21Z #15 2.707 106500K .......... .......... .......... .......... .......... 84% 115M 0s -2024-03-23T17:47:21Z #15 2.708 106550K .......... .......... .......... .......... .......... 84% 172M 0s -2024-03-23T17:47:21Z #15 2.708 106600K .......... .......... .......... .......... .......... 84% 143M 0s -2024-03-23T17:47:21Z #15 2.708 106650K .......... .......... .......... .......... .......... 84% 123M 0s -2024-03-23T17:47:21Z #15 2.708 106700K .......... .......... .......... .......... .......... 84% 114M 0s -2024-03-23T17:47:21Z #15 2.709 106750K .......... .......... .......... .......... .......... 84% 133M 0s -2024-03-23T17:47:21Z #15 2.709 106800K .......... .......... .......... .......... .......... 84% 167M 0s -2024-03-23T17:47:21Z #15 2.709 106850K .......... .......... .......... .......... .......... 84% 112M 0s -2024-03-23T17:47:21Z #15 2.710 106900K .......... .......... .......... .......... .......... 84% 139M 0s -2024-03-23T17:47:21Z #15 2.710 106950K .......... .......... .......... .......... .......... 84% 108M 0s -2024-03-23T17:47:21Z #15 2.710 107000K .......... .......... .......... .......... .......... 84% 10.9M 0s -2024-03-23T17:47:21Z #15 2.715 107050K .......... .......... .......... .......... .......... 84% 151M 0s -2024-03-23T17:47:21Z #15 2.715 107100K .......... .......... .......... .......... .......... 84% 141M 0s -2024-03-23T17:47:21Z #15 2.716 107150K .......... .......... .......... .......... .......... 84% 149M 0s -2024-03-23T17:47:21Z #15 2.716 107200K .......... .......... .......... .......... .......... 84% 117M 0s -2024-03-23T17:47:21Z #15 2.716 107250K .......... .......... .......... .......... .......... 84% 133M 0s -2024-03-23T17:47:21Z #15 2.717 107300K .......... .......... .......... .......... .......... 84% 135M 0s -2024-03-23T17:47:21Z #15 2.717 107350K .......... .......... .......... .......... .......... 84% 117M 0s -2024-03-23T17:47:21Z #15 2.718 107400K .......... .......... .......... .......... .......... 84% 163M 0s -2024-03-23T17:47:21Z #15 2.718 107450K .......... .......... .......... .......... .......... 84% 117M 0s -2024-03-23T17:47:21Z #15 2.718 107500K .......... .......... .......... .......... .......... 84% 128M 0s -2024-03-23T17:47:21Z #15 2.719 107550K .......... .......... .......... .......... .......... 84% 119M 0s -2024-03-23T17:47:21Z #15 2.719 107600K .......... .......... .......... .......... .......... 84% 114M 0s -2024-03-23T17:47:21Z #15 2.719 107650K .......... .......... .......... .......... .......... 84% 133M 0s -2024-03-23T17:47:21Z #15 2.720 107700K .......... .......... .......... .......... .......... 84% 138M 0s -2024-03-23T17:47:21Z #15 2.720 107750K .......... .......... .......... .......... .......... 85% 118M 0s -2024-03-23T17:47:21Z #15 2.721 107800K .......... .......... .......... .......... .......... 85% 150M 0s -2024-03-23T17:47:21Z #15 2.721 107850K .......... .......... .......... .......... .......... 85% 139M 0s -2024-03-23T17:47:21Z #15 2.721 107900K .......... .......... .......... .......... .......... 85% 102M 0s -2024-03-23T17:47:21Z #15 2.722 107950K .......... .......... .......... .......... .......... 85% 132M 0s -2024-03-23T17:47:21Z #15 2.722 108000K .......... .......... .......... .......... .......... 85% 140M 0s -2024-03-23T17:47:21Z #15 2.722 108050K .......... .......... .......... .......... .......... 85% 116M 0s -2024-03-23T17:47:21Z #15 2.723 108100K .......... .......... .......... .......... .......... 85% 93.6M 0s -2024-03-23T17:47:21Z #15 2.723 108150K .......... .......... .......... .......... .......... 85% 126M 0s -2024-03-23T17:47:21Z #15 2.724 108200K .......... .......... .......... .......... .......... 85% 118M 0s -2024-03-23T17:47:21Z #15 2.724 108250K .......... .......... .......... .......... .......... 85% 143M 0s -2024-03-23T17:47:21Z #15 2.725 108300K .......... .......... .......... .......... .......... 85% 118M 0s -2024-03-23T17:47:21Z #15 2.725 108350K .......... .......... .......... .......... .......... 85% 120M 0s -2024-03-23T17:47:21Z #15 2.725 108400K .......... .......... .......... .......... .......... 85% 111M 0s -2024-03-23T17:47:21Z #15 2.726 108450K .......... .......... .......... .......... .......... 85% 138M 0s -2024-03-23T17:47:21Z #15 2.726 108500K .......... .......... .......... .......... .......... 85% 137M 0s -2024-03-23T17:47:21Z #15 2.726 108550K .......... .......... .......... .......... .......... 85% 10.9M 0s -2024-03-23T17:47:21Z #15 2.731 108600K .......... .......... .......... .......... .......... 85% 113M 0s -2024-03-23T17:47:21Z #15 2.731 108650K .......... .......... .......... .......... .......... 85% 111M 0s -2024-03-23T17:47:21Z #15 2.733 108700K .......... .......... .......... .......... .......... 85% 168M 0s -2024-03-23T17:47:21Z #15 2.733 108750K .......... .......... .......... .......... .......... 85% 170M 0s -2024-03-23T17:47:21Z #15 2.733 108800K .......... .......... .......... .......... .......... 85% 132M 0s -2024-03-23T17:47:21Z #15 2.733 108850K .......... .......... .......... .......... .......... 85% 179M 0s -2024-03-23T17:47:21Z #15 2.733 108900K .......... .......... .......... .......... .......... 85% 147M 0s -2024-03-23T17:47:21Z #15 2.733 108950K .......... .......... .......... .......... .......... 85% 106M 0s -2024-03-23T17:47:21Z #15 2.734 109000K .......... .......... .......... .......... .......... 86% 121M 0s -2024-03-23T17:47:21Z #15 2.734 109050K .......... .......... .......... .......... .......... 86% 123M 0s -2024-03-23T17:47:21Z #15 2.735 109100K .......... .......... .......... .......... .......... 86% 108M 0s -2024-03-23T17:47:21Z #15 2.735 109150K .......... .......... .......... .......... .......... 86% 130M 0s -2024-03-23T17:47:21Z #15 2.735 109200K .......... .......... .......... .......... .......... 86% 121M 0s -2024-03-23T17:47:21Z #15 2.736 109250K .......... .......... .......... .......... .......... 86% 130M 0s -2024-03-23T17:47:21Z #15 2.736 109300K .......... .......... .......... .......... .......... 86% 111M 0s -2024-03-23T17:47:21Z #15 2.738 109350K .......... .......... .......... .......... .......... 86% 164M 0s -2024-03-23T17:47:21Z #15 2.738 109400K .......... .......... .......... .......... .......... 86% 152M 0s -2024-03-23T17:47:21Z #15 2.738 109450K .......... .......... .......... .......... .......... 86% 174M 0s -2024-03-23T17:47:21Z #15 2.738 109500K .......... .......... .......... .......... .......... 86% 151M 0s -2024-03-23T17:47:21Z #15 2.738 109550K .......... .......... .......... .......... .......... 86% 113M 0s -2024-03-23T17:47:21Z #15 2.738 109600K .......... .......... .......... .......... .......... 86% 144M 0s -2024-03-23T17:47:21Z #15 2.739 109650K .......... .......... .......... .......... .......... 86% 112M 0s -2024-03-23T17:47:21Z #15 2.739 109700K .......... .......... .......... .......... .......... 86% 114M 0s -2024-03-23T17:47:21Z #15 2.739 109750K .......... .......... .......... .......... .......... 86% 108M 0s -2024-03-23T17:47:21Z #15 2.740 109800K .......... .......... .......... .......... .......... 86% 113M 0s -2024-03-23T17:47:21Z #15 2.741 109850K .......... .......... .......... .......... .......... 86% 116M 0s -2024-03-23T17:47:21Z #15 2.741 109900K .......... .......... .......... .......... .......... 86% 136M 0s -2024-03-23T17:47:21Z #15 2.741 109950K .......... .......... .......... .......... .......... 86% 115M 0s -2024-03-23T17:47:21Z #15 2.742 110000K .......... .......... .......... .......... .......... 86% 96.5M 0s -2024-03-23T17:47:21Z #15 2.742 110050K .......... .......... .......... .......... .......... 86% 110M 0s -2024-03-23T17:47:21Z #15 2.743 110100K .......... .......... .......... .......... .......... 86% 26.4M 0s -2024-03-23T17:47:21Z #15 2.744 110150K .......... .......... .......... .......... .......... 86% 128M 0s -2024-03-23T17:47:21Z #15 2.745 110200K .......... .......... .......... .......... .......... 86% 118M 0s -2024-03-23T17:47:21Z #15 2.745 110250K .......... .......... .......... .......... .......... 86% 124M 0s -2024-03-23T17:47:21Z #15 2.746 110300K .......... .......... .......... .......... .......... 87% 122M 0s -2024-03-23T17:47:21Z #15 2.747 110350K .......... .......... .......... .......... .......... 87% 117M 0s -2024-03-23T17:47:21Z #15 2.747 110400K .......... .......... .......... .......... .......... 87% 114M 0s -2024-03-23T17:47:21Z #15 2.747 110450K .......... .......... .......... .......... .......... 87% 104M 0s -2024-03-23T17:47:21Z #15 2.747 110500K .......... .......... .......... .......... .......... 87% 123M 0s -2024-03-23T17:47:21Z #15 2.748 110550K .......... .......... .......... .......... .......... 87% 122M 0s -2024-03-23T17:47:21Z #15 2.748 110600K .......... .......... .......... .......... .......... 87% 118M 0s -2024-03-23T17:47:21Z #15 2.748 110650K .......... .......... .......... .......... .......... 87% 147M 0s -2024-03-23T17:47:21Z #15 2.749 110700K .......... .......... .......... .......... .......... 87% 120M 0s -2024-03-23T17:47:21Z #15 2.749 110750K .......... .......... .......... .......... .......... 87% 143M 0s -2024-03-23T17:47:21Z #15 2.750 110800K .......... .......... .......... .......... .......... 87% 96.5M 0s -2024-03-23T17:47:21Z #15 2.750 110850K .......... .......... .......... .......... .......... 87% 106M 0s -2024-03-23T17:47:21Z #15 2.751 110900K .......... .......... .......... .......... .......... 87% 10.7M 0s -2024-03-23T17:47:21Z #15 2.755 110950K .......... .......... .......... .......... .......... 87% 148M 0s -2024-03-23T17:47:21Z #15 2.755 111000K .......... .......... .......... .......... .......... 87% 116M 0s -2024-03-23T17:47:21Z #15 2.756 111050K .......... .......... .......... .......... .......... 87% 120M 0s -2024-03-23T17:47:21Z #15 2.756 111100K .......... .......... .......... .......... .......... 87% 120M 0s -2024-03-23T17:47:21Z #15 2.757 111150K .......... .......... .......... .......... .......... 87% 149M 0s -2024-03-23T17:47:21Z #15 2.757 111200K .......... .......... .......... .......... .......... 87% 121M 0s -2024-03-23T17:47:21Z #15 2.757 111250K .......... .......... .......... .......... .......... 87% 109M 0s -2024-03-23T17:47:21Z #15 2.758 111300K .......... .......... .......... .......... .......... 87% 120M 0s -2024-03-23T17:47:21Z #15 2.759 111350K .......... .......... .......... .......... .......... 87% 143M 0s -2024-03-23T17:47:21Z #15 2.759 111400K .......... .......... .......... .......... .......... 87% 107M 0s -2024-03-23T17:47:21Z #15 2.759 111450K .......... .......... .......... .......... .......... 87% 125M 0s -2024-03-23T17:47:21Z #15 2.760 111500K .......... .......... .......... .......... .......... 87% 111M 0s -2024-03-23T17:47:21Z #15 2.760 111550K .......... .......... .......... .......... .......... 88% 124M 0s -2024-03-23T17:47:21Z #15 2.762 111600K .......... .......... .......... .......... .......... 88% 120M 0s -2024-03-23T17:47:21Z #15 2.763 111650K .......... .......... .......... .......... .......... 88% 139M 0s -2024-03-23T17:47:21Z #15 2.763 111700K .......... .......... .......... .......... .......... 88% 51.7M 0s -2024-03-23T17:47:21Z #15 2.763 111750K .......... .......... .......... .......... .......... 88% 126M 0s -2024-03-23T17:47:21Z #15 2.763 111800K .......... .......... .......... .......... .......... 88% 114M 0s -2024-03-23T17:47:21Z #15 2.763 111850K .......... .......... .......... .......... .......... 88% 122M 0s -2024-03-23T17:47:21Z #15 2.763 111900K .......... .......... .......... .......... .......... 88% 133M 0s -2024-03-23T17:47:21Z #15 2.764 111950K .......... .......... .......... .......... .......... 88% 129M 0s -2024-03-23T17:47:21Z #15 2.764 112000K .......... .......... .......... .......... .......... 88% 120M 0s -2024-03-23T17:47:21Z #15 2.764 112050K .......... .......... .......... .......... .......... 88% 119M 0s -2024-03-23T17:47:21Z #15 2.765 112100K .......... .......... .......... .......... .......... 88% 149M 0s -2024-03-23T17:47:21Z #15 2.765 112150K .......... .......... .......... .......... .......... 88% 131M 0s -2024-03-23T17:47:21Z #15 2.766 112200K .......... .......... .......... .......... .......... 88% 150M 0s -2024-03-23T17:47:21Z #15 2.766 112250K .......... .......... .......... .......... .......... 88% 59.0M 0s -2024-03-23T17:47:21Z #15 2.767 112300K .......... .......... .......... .......... .......... 88% 123M 0s -2024-03-23T17:47:21Z #15 2.767 112350K .......... .......... .......... .......... .......... 88% 103M 0s -2024-03-23T17:47:21Z #15 2.767 112400K .......... .......... .......... .......... .......... 88% 138M 0s -2024-03-23T17:47:21Z #15 2.768 112450K .......... .......... .......... .......... .......... 88% 123M 0s -2024-03-23T17:47:21Z #15 2.768 112500K .......... .......... .......... .......... .......... 88% 143M 0s -2024-03-23T17:47:21Z #15 2.769 112550K .......... .......... .......... .......... .......... 88% 132M 0s -2024-03-23T17:47:21Z #15 2.769 112600K .......... .......... .......... .......... .......... 88% 127M 0s -2024-03-23T17:47:21Z #15 2.769 112650K .......... .......... .......... .......... .......... 88% 8.85M 0s -2024-03-23T17:47:21Z #15 2.775 112700K .......... .......... .......... .......... .......... 88% 136M 0s -2024-03-23T17:47:21Z #15 2.775 112750K .......... .......... .......... .......... .......... 88% 162M 0s -2024-03-23T17:47:21Z #15 2.776 112800K .......... .......... .......... .......... .......... 89% 148M 0s -2024-03-23T17:47:21Z #15 2.776 112850K .......... .......... .......... .......... .......... 89% 137M 0s -2024-03-23T17:47:21Z #15 2.776 112900K .......... .......... .......... .......... .......... 89% 163M 0s -2024-03-23T17:47:21Z #15 2.777 112950K .......... .......... .......... .......... .......... 89% 132M 0s -2024-03-23T17:47:21Z #15 2.777 113000K .......... .......... .......... .......... .......... 89% 149M 0s -2024-03-23T17:47:21Z #15 2.777 113050K .......... .......... .......... .......... .......... 89% 154M 0s -2024-03-23T17:47:21Z #15 2.777 113100K .......... .......... .......... .......... .......... 89% 143M 0s -2024-03-23T17:47:21Z #15 2.779 113150K .......... .......... .......... .......... .......... 89% 145M 0s -2024-03-23T17:47:21Z #15 2.779 113200K .......... .......... .......... .......... .......... 89% 161M 0s -2024-03-23T17:47:21Z #15 2.779 113250K .......... .......... .......... .......... .......... 89% 120M 0s -2024-03-23T17:47:21Z #15 2.779 113300K .......... .......... .......... .......... .......... 89% 125M 0s -2024-03-23T17:47:21Z #15 2.779 113350K .......... .......... .......... .......... .......... 89% 152M 0s -2024-03-23T17:47:21Z #15 2.780 113400K .......... .......... .......... .......... .......... 89% 134M 0s -2024-03-23T17:47:21Z #15 2.780 113450K .......... .......... .......... .......... .......... 89% 147M 0s -2024-03-23T17:47:21Z #15 2.780 113500K .......... .......... .......... .......... .......... 89% 134M 0s -2024-03-23T17:47:21Z #15 2.781 113550K .......... .......... .......... .......... .......... 89% 146M 0s -2024-03-23T17:47:21Z #15 2.781 113600K .......... .......... .......... .......... .......... 89% 146M 0s -2024-03-23T17:47:21Z #15 2.781 113650K .......... .......... .......... .......... .......... 89% 149M 0s -2024-03-23T17:47:21Z #15 2.782 113700K .......... .......... .......... .......... .......... 89% 139M 0s -2024-03-23T17:47:21Z #15 2.782 113750K .......... .......... .......... .......... .......... 89% 156M 0s -2024-03-23T17:47:21Z #15 2.783 113800K .......... .......... .......... .......... .......... 89% 151M 0s -2024-03-23T17:47:21Z #15 2.783 113850K .......... .......... .......... .......... .......... 89% 115M 0s -2024-03-23T17:47:21Z #15 2.783 113900K .......... .......... .......... .......... .......... 89% 135M 0s -2024-03-23T17:47:21Z #15 2.784 113950K .......... .......... .......... .......... .......... 89% 132M 0s -2024-03-23T17:47:21Z #15 2.784 114000K .......... .......... .......... .......... .......... 89% 131M 0s -2024-03-23T17:47:21Z #15 2.785 114050K .......... .......... .......... .......... .......... 89% 147M 0s -2024-03-23T17:47:21Z #15 2.785 114100K .......... .......... .......... .......... .......... 90% 155M 0s -2024-03-23T17:47:21Z #15 2.785 114150K .......... .......... .......... .......... .......... 90% 140M 0s -2024-03-23T17:47:21Z #15 2.786 114200K .......... .......... .......... .......... .......... 90% 145M 0s -2024-03-23T17:47:21Z #15 2.786 114250K .......... .......... .......... .......... .......... 90% 138M 0s -2024-03-23T17:47:21Z #15 2.786 114300K .......... .......... .......... .......... .......... 90% 166M 0s -2024-03-23T17:47:21Z #15 2.786 114350K .......... .......... .......... .......... .......... 90% 136M 0s -2024-03-23T17:47:21Z #15 2.787 114400K .......... .......... .......... .......... .......... 90% 10.8M 0s -2024-03-23T17:47:21Z #15 2.791 114450K .......... .......... .......... .......... .......... 90% 137M 0s -2024-03-23T17:47:21Z #15 2.792 114500K .......... .......... .......... .......... .......... 90% 105M 0s -2024-03-23T17:47:21Z #15 2.792 114550K .......... .......... .......... .......... .......... 90% 155M 0s -2024-03-23T17:47:21Z #15 2.792 114600K .......... .......... .......... .......... .......... 90% 160M 0s -2024-03-23T17:47:21Z #15 2.793 114650K .......... .......... .......... .......... .......... 90% 132M 0s -2024-03-23T17:47:21Z #15 2.793 114700K .......... .......... .......... .......... .......... 90% 133M 0s -2024-03-23T17:47:21Z #15 2.793 114750K .......... .......... .......... .......... .......... 90% 152M 0s -2024-03-23T17:47:21Z #15 2.794 114800K .......... .......... .......... .......... .......... 90% 140M 0s -2024-03-23T17:47:21Z #15 2.794 114850K .......... .......... .......... .......... .......... 90% 133M 0s -2024-03-23T17:47:21Z #15 2.794 114900K .......... .......... .......... .......... .......... 90% 153M 0s -2024-03-23T17:47:21Z #15 2.795 114950K .......... .......... .......... .......... .......... 90% 126M 0s -2024-03-23T17:47:21Z #15 2.796 115000K .......... .......... .......... .......... .......... 90% 139M 0s -2024-03-23T17:47:21Z #15 2.796 115050K .......... .......... .......... .......... .......... 90% 130M 0s -2024-03-23T17:47:21Z #15 2.796 115100K .......... .......... .......... .......... .......... 90% 126M 0s -2024-03-23T17:47:21Z #15 2.796 115150K .......... .......... .......... .......... .......... 90% 164M 0s -2024-03-23T17:47:21Z #15 2.797 115200K .......... .......... .......... .......... .......... 90% 150M 0s -2024-03-23T17:47:21Z #15 2.797 115250K .......... .......... .......... .......... .......... 90% 138M 0s -2024-03-23T17:47:21Z #15 2.797 115300K .......... .......... .......... .......... .......... 90% 123M 0s -2024-03-23T17:47:21Z #15 2.798 115350K .......... .......... .......... .......... .......... 91% 159M 0s -2024-03-23T17:47:21Z #15 2.798 115400K .......... .......... .......... .......... .......... 91% 164M 0s -2024-03-23T17:47:21Z #15 2.798 115450K .......... .......... .......... .......... .......... 91% 139M 0s -2024-03-23T17:47:21Z #15 2.798 115500K .......... .......... .......... .......... .......... 91% 119M 0s -2024-03-23T17:47:21Z #15 2.799 115550K .......... .......... .......... .......... .......... 91% 139M 0s -2024-03-23T17:47:21Z #15 2.799 115600K .......... .......... .......... .......... .......... 91% 124M 0s -2024-03-23T17:47:21Z #15 2.800 115650K .......... .......... .......... .......... .......... 91% 141M 0s -2024-03-23T17:47:21Z #15 2.800 115700K .......... .......... .......... .......... .......... 91% 135M 0s -2024-03-23T17:47:21Z #15 2.800 115750K .......... .......... .......... .......... .......... 91% 123M 0s -2024-03-23T17:47:21Z #15 2.801 115800K .......... .......... .......... .......... .......... 91% 153M 0s -2024-03-23T17:47:21Z #15 2.802 115850K .......... .......... .......... .......... .......... 91% 147M 0s -2024-03-23T17:47:21Z #15 2.802 115900K .......... .......... .......... .......... .......... 91% 145M 0s -2024-03-23T17:47:21Z #15 2.802 115950K .......... .......... .......... .......... .......... 91% 127M 0s -2024-03-23T17:47:21Z #15 2.802 116000K .......... .......... .......... .......... .......... 91% 160M 0s -2024-03-23T17:47:21Z #15 2.802 116050K .......... .......... .......... .......... .......... 91% 10.9M 0s -2024-03-23T17:47:21Z #15 2.807 116100K .......... .......... .......... .......... .......... 91% 125M 0s -2024-03-23T17:47:21Z #15 2.807 116150K .......... .......... .......... .......... .......... 91% 126M 0s -2024-03-23T17:47:21Z #15 2.808 116200K .......... .......... .......... .......... .......... 91% 112M 0s -2024-03-23T17:47:21Z #15 2.808 116250K .......... .......... .......... .......... .......... 91% 120M 0s -2024-03-23T17:47:21Z #15 2.808 116300K .......... .......... .......... .......... .......... 91% 135M 0s -2024-03-23T17:47:21Z #15 2.809 116350K .......... .......... .......... .......... .......... 91% 142M 0s -2024-03-23T17:47:21Z #15 2.809 116400K .......... .......... .......... .......... .......... 91% 155M 0s -2024-03-23T17:47:21Z #15 2.809 116450K .......... .......... .......... .......... .......... 91% 110M 0s -2024-03-23T17:47:21Z #15 2.810 116500K .......... .......... .......... .......... .......... 91% 115M 0s -2024-03-23T17:47:21Z #15 2.811 116550K .......... .......... .......... .......... .......... 91% 168M 0s -2024-03-23T17:47:21Z #15 2.811 116600K .......... .......... .......... .......... .......... 92% 114M 0s -2024-03-23T17:47:21Z #15 2.811 116650K .......... .......... .......... .......... .......... 92% 112M 0s -2024-03-23T17:47:21Z #15 2.811 116700K .......... .......... .......... .......... .......... 92% 108M 0s -2024-03-23T17:47:21Z #15 2.812 116750K .......... .......... .......... .......... .......... 92% 155M 0s -2024-03-23T17:47:21Z #15 2.812 116800K .......... .......... .......... .......... .......... 92% 127M 0s -2024-03-23T17:47:21Z #15 2.813 116850K .......... .......... .......... .......... .......... 92% 129M 0s -2024-03-23T17:47:21Z #15 2.813 116900K .......... .......... .......... .......... .......... 92% 142M 0s -2024-03-23T17:47:21Z #15 2.814 116950K .......... .......... .......... .......... .......... 92% 124M 0s -2024-03-23T17:47:21Z #15 2.814 117000K .......... .......... .......... .......... .......... 92% 126M 0s -2024-03-23T17:47:21Z #15 2.814 117050K .......... .......... .......... .......... .......... 92% 134M 0s -2024-03-23T17:47:21Z #15 2.814 117100K .......... .......... .......... .......... .......... 92% 10.9M 0s -2024-03-23T17:47:21Z #15 2.819 117150K .......... .......... .......... .......... .......... 92% 102M 0s -2024-03-23T17:47:21Z #15 2.819 117200K .......... .......... .......... .......... .......... 92% 117M 0s -2024-03-23T17:47:21Z #15 2.820 117250K .......... .......... .......... .......... .......... 92% 125M 0s -2024-03-23T17:47:21Z #15 2.820 117300K .......... .......... .......... .......... .......... 92% 95.5M 0s -2024-03-23T17:47:21Z #15 2.822 117350K .......... .......... .......... .......... .......... 92% 123M 0s -2024-03-23T17:47:21Z #15 2.822 117400K .......... .......... .......... .......... .......... 92% 143M 0s -2024-03-23T17:47:21Z #15 2.822 117450K .......... .......... .......... .......... .......... 92% 97.1M 0s -2024-03-23T17:47:21Z #15 2.822 117500K .......... .......... .......... .......... .......... 92% 104M 0s -2024-03-23T17:47:21Z #15 2.823 117550K .......... .......... .......... .......... .......... 92% 96.4M 0s -2024-03-23T17:47:21Z #15 2.823 117600K .......... .......... .......... .......... .......... 92% 126M 0s -2024-03-23T17:47:21Z #15 2.823 117650K .......... .......... .......... .......... .......... 92% 148M 0s -2024-03-23T17:47:21Z #15 2.824 117700K .......... .......... .......... .......... .......... 92% 102M 0s -2024-03-23T17:47:21Z #15 2.825 117750K .......... .......... .......... .......... .......... 92% 138M 0s -2024-03-23T17:47:21Z #15 2.825 117800K .......... .......... .......... .......... .......... 92% 124M 0s -2024-03-23T17:47:21Z #15 2.826 117850K .......... .......... .......... .......... .......... 92% 142M 0s -2024-03-23T17:47:21Z #15 2.826 117900K .......... .......... .......... .......... .......... 93% 135M 0s -2024-03-23T17:47:21Z #15 2.826 117950K .......... .......... .......... .......... .......... 93% 113M 0s -2024-03-23T17:47:21Z #15 2.826 118000K .......... .......... .......... .......... .......... 93% 117M 0s -2024-03-23T17:47:21Z #15 2.826 118050K .......... .......... .......... .......... .......... 93% 125M 0s -2024-03-23T17:47:21Z #15 2.827 118100K .......... .......... .......... .......... .......... 93% 128M 0s -2024-03-23T17:47:21Z #15 2.827 118150K .......... .......... .......... .......... .......... 93% 118M 0s -2024-03-23T17:47:21Z #15 2.828 118200K .......... .......... .......... .......... .......... 93% 114M 0s -2024-03-23T17:47:21Z #15 2.828 118250K .......... .......... .......... .......... .......... 93% 128M 0s -2024-03-23T17:47:21Z #15 2.829 118300K .......... .......... .......... .......... .......... 93% 149M 0s -2024-03-23T17:47:21Z #15 2.829 118350K .......... .......... .......... .......... .......... 93% 144M 0s -2024-03-23T17:47:21Z #15 2.829 118400K .......... .......... .......... .......... .......... 93% 106M 0s -2024-03-23T17:47:21Z #15 2.830 118450K .......... .......... .......... .......... .......... 93% 129M 0s -2024-03-23T17:47:21Z #15 2.831 118500K .......... .......... .......... .......... .......... 93% 123M 0s -2024-03-23T17:47:21Z #15 2.831 118550K .......... .......... .......... .......... .......... 93% 11.1M 0s -2024-03-23T17:47:21Z #15 2.835 118600K .......... .......... .......... .......... .......... 93% 138M 0s -2024-03-23T17:47:21Z #15 2.835 118650K .......... .......... .......... .......... .......... 93% 155M 0s -2024-03-23T17:47:21Z #15 2.835 118700K .......... .......... .......... .......... .......... 93% 146M 0s -2024-03-23T17:47:21Z #15 2.836 118750K .......... .......... .......... .......... .......... 93% 116M 0s -2024-03-23T17:47:21Z #15 2.836 118800K .......... .......... .......... .......... .......... 93% 139M 0s -2024-03-23T17:47:21Z #15 2.837 118850K .......... .......... .......... .......... .......... 93% 128M 0s -2024-03-23T17:47:21Z #15 2.837 118900K .......... .......... .......... .......... .......... 93% 117M 0s -2024-03-23T17:47:21Z #15 2.839 118950K .......... .......... .......... .......... .......... 93% 113M 0s -2024-03-23T17:47:21Z #15 2.839 119000K .......... .......... .......... .......... .......... 93% 130M 0s -2024-03-23T17:47:21Z #15 2.839 119050K .......... .......... .......... .......... .......... 93% 132M 0s -2024-03-23T17:47:21Z #15 2.839 119100K .......... .......... .......... .......... .......... 93% 127M 0s -2024-03-23T17:47:21Z #15 2.839 119150K .......... .......... .......... .......... .......... 94% 118M 0s -2024-03-23T17:47:21Z #15 2.839 119200K .......... .......... .......... .......... .......... 94% 136M 0s -2024-03-23T17:47:21Z #15 2.840 119250K .......... .......... .......... .......... .......... 94% 113M 0s -2024-03-23T17:47:21Z #15 2.840 119300K .......... .......... .......... .......... .......... 94% 119M 0s -2024-03-23T17:47:21Z #15 2.841 119350K .......... .......... .......... .......... .......... 94% 143M 0s -2024-03-23T17:47:21Z #15 2.841 119400K .......... .......... .......... .......... .......... 94% 115M 0s -2024-03-23T17:47:21Z #15 2.841 119450K .......... .......... .......... .......... .......... 94% 139M 0s -2024-03-23T17:47:21Z #15 2.842 119500K .......... .......... .......... .......... .......... 94% 147M 0s -2024-03-23T17:47:21Z #15 2.842 119550K .......... .......... .......... .......... .......... 94% 138M 0s -2024-03-23T17:47:21Z #15 2.843 119600K .......... .......... .......... .......... .......... 94% 112M 0s -2024-03-23T17:47:21Z #15 2.843 119650K .......... .......... .......... .......... .......... 94% 151M 0s -2024-03-23T17:47:21Z #15 2.843 119700K .......... .......... .......... .......... .......... 94% 156M 0s -2024-03-23T17:47:21Z #15 2.843 119750K .......... .......... .......... .......... .......... 94% 148M 0s -2024-03-23T17:47:21Z #15 2.844 119800K .......... .......... .......... .......... .......... 94% 125M 0s -2024-03-23T17:47:21Z #15 2.844 119850K .......... .......... .......... .......... .......... 94% 158M 0s -2024-03-23T17:47:21Z #15 2.844 119900K .......... .......... .......... .......... .......... 94% 138M 0s -2024-03-23T17:47:21Z #15 2.845 119950K .......... .......... .......... .......... .......... 94% 165M 0s -2024-03-23T17:47:21Z #15 2.845 120000K .......... .......... .......... .......... .......... 94% 150M 0s -2024-03-23T17:47:21Z #15 2.845 120050K .......... .......... .......... .......... .......... 94% 161M 0s -2024-03-23T17:47:21Z #15 2.846 120100K .......... .......... .......... .......... .......... 94% 127M 0s -2024-03-23T17:47:21Z #15 2.846 120150K .......... .......... .......... .......... .......... 94% 161M 0s -2024-03-23T17:47:21Z #15 2.847 120200K .......... .......... .......... .......... .......... 94% 11.1M 0s -2024-03-23T17:47:21Z #15 2.851 120250K .......... .......... .......... .......... .......... 94% 131M 0s -2024-03-23T17:47:21Z #15 2.851 120300K .......... .......... .......... .......... .......... 94% 161M 0s -2024-03-23T17:47:21Z #15 2.852 120350K .......... .......... .......... .......... .......... 94% 145M 0s -2024-03-23T17:47:21Z #15 2.852 120400K .......... .......... .......... .......... .......... 95% 126M 0s -2024-03-23T17:47:21Z #15 2.852 120450K .......... .......... .......... .......... .......... 95% 158M 0s -2024-03-23T17:47:21Z #15 2.853 120500K .......... .......... .......... .......... .......... 95% 144M 0s -2024-03-23T17:47:21Z #15 2.853 120550K .......... .......... .......... .......... .......... 95% 155M 0s -2024-03-23T17:47:21Z #15 2.853 120600K .......... .......... .......... .......... .......... 95% 152M 0s -2024-03-23T17:47:21Z #15 2.854 120650K .......... .......... .......... .......... .......... 95% 143M 0s -2024-03-23T17:47:21Z #15 2.854 120700K .......... .......... .......... .......... .......... 95% 158M 0s -2024-03-23T17:47:21Z #15 2.854 120750K .......... .......... .......... .......... .......... 95% 125M 0s -2024-03-23T17:47:21Z #15 2.855 120800K .......... .......... .......... .......... .......... 95% 117M 0s -2024-03-23T17:47:21Z #15 2.855 120850K .......... .......... .......... .......... .......... 95% 159M 0s -2024-03-23T17:47:21Z #15 2.855 120900K .......... .......... .......... .......... .......... 95% 154M 0s -2024-03-23T17:47:21Z #15 2.856 120950K .......... .......... .......... .......... .......... 95% 131M 0s -2024-03-23T17:47:21Z #15 2.856 121000K .......... .......... .......... .......... .......... 95% 155M 0s -2024-03-23T17:47:21Z #15 2.857 121050K .......... .......... .......... .......... .......... 95% 150M 0s -2024-03-23T17:47:21Z #15 2.857 121100K .......... .......... .......... .......... .......... 95% 139M 0s -2024-03-23T17:47:21Z #15 2.857 121150K .......... .......... .......... .......... .......... 95% 158M 0s -2024-03-23T17:47:21Z #15 2.858 121200K .......... .......... .......... .......... .......... 95% 135M 0s -2024-03-23T17:47:21Z #15 2.858 121250K .......... .......... .......... .......... .......... 95% 169M 0s -2024-03-23T17:47:21Z #15 2.858 121300K .......... .......... .......... .......... .......... 95% 156M 0s -2024-03-23T17:47:21Z #15 2.858 121350K .......... .......... .......... .......... .......... 95% 10.9M 0s -2024-03-23T17:47:21Z #15 2.863 121400K .......... .......... .......... .......... .......... 95% 125M 0s -2024-03-23T17:47:21Z #15 2.864 121450K .......... .......... .......... .......... .......... 95% 141M 0s -2024-03-23T17:47:21Z #15 2.864 121500K .......... .......... .......... .......... .......... 95% 141M 0s -2024-03-23T17:47:21Z #15 2.864 121550K .......... .......... .......... .......... .......... 95% 136M 0s -2024-03-23T17:47:21Z #15 2.864 121600K .......... .......... .......... .......... .......... 95% 160M 0s -2024-03-23T17:47:21Z #15 2.866 121650K .......... .......... .......... .......... .......... 95% 135M 0s -2024-03-23T17:47:21Z #15 2.866 121700K .......... .......... .......... .......... .......... 96% 133M 0s -2024-03-23T17:47:21Z #15 2.866 121750K .......... .......... .......... .......... .......... 96% 163M 0s -2024-03-23T17:47:21Z #15 2.866 121800K .......... .......... .......... .......... .......... 96% 127M 0s -2024-03-23T17:47:21Z #15 2.866 121850K .......... .......... .......... .......... .......... 96% 129M 0s -2024-03-23T17:47:21Z #15 2.866 121900K .......... .......... .......... .......... .......... 96% 145M 0s -2024-03-23T17:47:21Z #15 2.867 121950K .......... .......... .......... .......... .......... 96% 104M 0s -2024-03-23T17:47:21Z #15 2.867 122000K .......... .......... .......... .......... .......... 96% 139M 0s -2024-03-23T17:47:21Z #15 2.868 122050K .......... .......... .......... .......... .......... 96% 167M 0s -2024-03-23T17:47:21Z #15 2.868 122100K .......... .......... .......... .......... .......... 96% 135M 0s -2024-03-23T17:47:21Z #15 2.868 122150K .......... .......... .......... .......... .......... 96% 159M 0s -2024-03-23T17:47:21Z #15 2.869 122200K .......... .......... .......... .......... .......... 96% 135M 0s -2024-03-23T17:47:21Z #15 2.869 122250K .......... .......... .......... .......... .......... 96% 143M 0s -2024-03-23T17:47:21Z #15 2.869 122300K .......... .......... .......... .......... .......... 96% 154M 0s -2024-03-23T17:47:21Z #15 2.869 122350K .......... .......... .......... .......... .......... 96% 155M 0s -2024-03-23T17:47:21Z #15 2.870 122400K .......... .......... .......... .......... .......... 96% 40.8M 0s -2024-03-23T17:47:21Z #15 2.873 122450K .......... .......... .......... .......... .......... 96% 29.5M 0s -2024-03-23T17:47:21Z #15 2.873 122500K .......... .......... .......... .......... .......... 96% 148M 0s -2024-03-23T17:47:21Z #15 2.873 122550K .......... .......... .......... .......... .......... 96% 176M 0s -2024-03-23T17:47:21Z #15 2.873 122600K .......... .......... .......... .......... .......... 96% 169M 0s -2024-03-23T17:47:21Z #15 2.874 122650K .......... .......... .......... .......... .......... 96% 164M 0s -2024-03-23T17:47:21Z #15 2.874 122700K .......... .......... .......... .......... .......... 96% 165M 0s -2024-03-23T17:47:21Z #15 2.874 122750K .......... .......... .......... .......... .......... 96% 175M 0s -2024-03-23T17:47:21Z #15 2.878 122800K .......... .......... .......... .......... .......... 96% 13.3M 0s -2024-03-23T17:47:21Z #15 2.878 122850K .......... .......... .......... .......... .......... 96% 112M 0s -2024-03-23T17:47:21Z #15 2.878 122900K .......... .......... .......... .......... .......... 96% 134M 0s -2024-03-23T17:47:21Z #15 2.879 122950K .......... .......... .......... .......... .......... 97% 171M 0s -2024-03-23T17:47:21Z #15 2.879 123000K .......... .......... .......... .......... .......... 97% 164M 0s -2024-03-23T17:47:21Z #15 2.879 123050K .......... .......... .......... .......... .......... 97% 152M 0s -2024-03-23T17:47:21Z #15 2.880 123100K .......... .......... .......... .......... .......... 97% 146M 0s -2024-03-23T17:47:21Z #15 2.880 123150K .......... .......... .......... .......... .......... 97% 173M 0s -2024-03-23T17:47:21Z #15 2.880 123200K .......... .......... .......... .......... .......... 97% 145M 0s -2024-03-23T17:47:21Z #15 2.881 123250K .......... .......... .......... .......... .......... 97% 135M 0s -2024-03-23T17:47:21Z #15 2.881 123300K .......... .......... .......... .......... .......... 97% 149M 0s -2024-03-23T17:47:21Z #15 2.881 123350K .......... .......... .......... .......... .......... 97% 161M 0s -2024-03-23T17:47:21Z #15 2.882 123400K .......... .......... .......... .......... .......... 97% 146M 0s -2024-03-23T17:47:21Z #15 2.882 123450K .......... .......... .......... .......... .......... 97% 163M 0s -2024-03-23T17:47:21Z #15 2.882 123500K .......... .......... .......... .......... .......... 97% 156M 0s -2024-03-23T17:47:21Z #15 2.883 123550K .......... .......... .......... .......... .......... 97% 158M 0s -2024-03-23T17:47:21Z #15 2.883 123600K .......... .......... .......... .......... .......... 97% 151M 0s -2024-03-23T17:47:21Z #15 2.883 123650K .......... .......... .......... .......... .......... 97% 177M 0s -2024-03-23T17:47:21Z #15 2.884 123700K .......... .......... .......... .......... .......... 97% 141M 0s -2024-03-23T17:47:21Z #15 2.884 123750K .......... .......... .......... .......... .......... 97% 158M 0s -2024-03-23T17:47:21Z #15 2.884 123800K .......... .......... .......... .......... .......... 97% 125M 0s -2024-03-23T17:47:21Z #15 2.885 123850K .......... .......... .......... .......... .......... 97% 171M 0s -2024-03-23T17:47:21Z #15 2.885 123900K .......... .......... .......... .......... .......... 97% 161M 0s -2024-03-23T17:47:21Z #15 2.885 123950K .......... .......... .......... .......... .......... 97% 178M 0s -2024-03-23T17:47:21Z #15 2.885 124000K .......... .......... .......... .......... .......... 97% 163M 0s -2024-03-23T17:47:21Z #15 2.886 124050K .......... .......... .......... .......... .......... 97% 146M 0s -2024-03-23T17:47:21Z #15 2.886 124100K .......... .......... .......... .......... .......... 97% 131M 0s -2024-03-23T17:47:21Z #15 2.888 124150K .......... .......... .......... .......... .......... 97% 5.78M 0s -2024-03-23T17:47:21Z #15 2.895 124200K .......... .......... .......... .......... .......... 98% 127M 0s -2024-03-23T17:47:21Z #15 2.895 124250K .......... .......... .......... .......... .......... 98% 140M 0s -2024-03-23T17:47:21Z #15 2.896 124300K .......... .......... .......... .......... .......... 98% 143M 0s -2024-03-23T17:47:21Z #15 2.896 124350K .......... .......... .......... .......... .......... 98% 131M 0s -2024-03-23T17:47:21Z #15 2.896 124400K .......... .......... .......... .......... .......... 98% 164M 0s -2024-03-23T17:47:21Z #15 2.897 124450K .......... .......... .......... .......... .......... 98% 169M 0s -2024-03-23T17:47:21Z #15 2.897 124500K .......... .......... .......... .......... .......... 98% 151M 0s -2024-03-23T17:47:21Z #15 2.898 124550K .......... .......... .......... .......... .......... 98% 114M 0s -2024-03-23T17:47:21Z #15 2.898 124600K .......... .......... .......... .......... .......... 98% 136M 0s -2024-03-23T17:47:21Z #15 2.898 124650K .......... .......... .......... .......... .......... 98% 124M 0s -2024-03-23T17:47:21Z #15 2.899 124700K .......... .......... .......... .......... .......... 98% 115M 0s -2024-03-23T17:47:21Z #15 2.899 124750K .......... .......... .......... .......... .......... 98% 151M 0s -2024-03-23T17:47:21Z #15 2.899 124800K .......... .......... .......... .......... .......... 98% 136M 0s -2024-03-23T17:47:21Z #15 2.900 124850K .......... .......... .......... .......... .......... 98% 132M 0s -2024-03-23T17:47:21Z #15 2.900 124900K .......... .......... .......... .......... .......... 98% 132M 0s -2024-03-23T17:47:21Z #15 2.900 124950K .......... .......... .......... .......... .......... 98% 158M 0s -2024-03-23T17:47:21Z #15 2.901 125000K .......... .......... .......... .......... .......... 98% 131M 0s -2024-03-23T17:47:21Z #15 2.901 125050K .......... .......... .......... .......... .......... 98% 155M 0s -2024-03-23T17:47:21Z #15 2.901 125100K .......... .......... .......... .......... .......... 98% 125M 0s -2024-03-23T17:47:21Z #15 2.902 125150K .......... .......... .......... .......... .......... 98% 159M 0s -2024-03-23T17:47:21Z #15 2.902 125200K .......... .......... .......... .......... .......... 98% 154M 0s -2024-03-23T17:47:21Z #15 2.902 125250K .......... .......... .......... .......... .......... 98% 152M 0s -2024-03-23T17:47:21Z #15 2.903 125300K .......... .......... .......... .......... .......... 98% 133M 0s -2024-03-23T17:47:21Z #15 2.903 125350K .......... .......... .......... .......... .......... 98% 152M 0s -2024-03-23T17:47:21Z #15 2.904 125400K .......... .......... .......... .......... .......... 98% 128M 0s -2024-03-23T17:47:21Z #15 2.904 125450K .......... .......... .......... .......... .......... 98% 141M 0s -2024-03-23T17:47:21Z #15 2.904 125500K .......... .......... .......... .......... .......... 99% 161M 0s -2024-03-23T17:47:21Z #15 2.904 125550K .......... .......... .......... .......... .......... 99% 156M 0s -2024-03-23T17:47:21Z #15 2.905 125600K .......... .......... .......... .......... .......... 99% 157M 0s -2024-03-23T17:47:21Z #15 2.905 125650K .......... .......... .......... .......... .......... 99% 139M 0s -2024-03-23T17:47:21Z #15 2.905 125700K .......... .......... .......... .......... .......... 99% 167M 0s -2024-03-23T17:47:21Z #15 2.906 125750K .......... .......... .......... .......... .......... 99% 147M 0s -2024-03-23T17:47:21Z #15 2.906 125800K .......... .......... .......... .......... .......... 99% 54.9M 0s -2024-03-23T17:47:21Z #15 2.907 125850K .......... .......... .......... .......... .......... 99% 159M 0s -2024-03-23T17:47:21Z #15 2.907 125900K .......... .......... .......... .......... .......... 99% 146M 0s -2024-03-23T17:47:21Z #15 2.907 125950K .......... .......... .......... .......... .......... 99% 141M 0s -2024-03-23T17:47:21Z #15 2.908 126000K .......... .......... .......... .......... .......... 99% 15.3M 0s -2024-03-23T17:47:21Z #15 2.911 126050K .......... .......... .......... .......... .......... 99% 126M 0s -2024-03-23T17:47:21Z #15 2.912 126100K .......... .......... .......... .......... .......... 99% 149M 0s -2024-03-23T17:47:21Z #15 2.912 126150K .......... .......... .......... .......... .......... 99% 150M 0s -2024-03-23T17:47:21Z #15 2.912 126200K .......... .......... .......... .......... .......... 99% 149M 0s -2024-03-23T17:47:21Z #15 2.913 126250K .......... .......... .......... .......... .......... 99% 139M 0s -2024-03-23T17:47:21Z #15 2.913 126300K .......... .......... .......... .......... .......... 99% 157M 0s -2024-03-23T17:47:21Z #15 2.913 126350K .......... .......... .......... .......... .......... 99% 155M 0s -2024-03-23T17:47:21Z #15 2.913 126400K .......... .......... .......... .......... .......... 99% 129M 0s -2024-03-23T17:47:21Z #15 2.914 126450K .......... .......... .......... .......... .......... 99% 158M 0s -2024-03-23T17:47:21Z #15 2.915 126500K .......... .......... .......... .......... .......... 99% 145M 0s -2024-03-23T17:47:21Z #15 2.915 126550K .......... .......... .......... .......... .......... 99% 136M 0s -2024-03-23T17:47:21Z #15 2.915 126600K .......... .......... .......... .......... .......... 99% 160M 0s -2024-03-23T17:47:21Z #15 2.915 126650K .......... .......... .......... .......... .......... 99% 159M 0s -2024-03-23T17:47:21Z #15 2.915 126700K .......... .......... .......... .......... .......... 99% 128M 0s -2024-03-23T17:47:21Z #15 2.916 126750K .......... .......... .......... .. 100% 140M=1.7s -2024-03-23T17:47:21Z #15 2.916 -2024-03-23T17:47:21Z #15 2.916 2024-03-23 17:47:21 (72.0 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] -2024-03-23T17:47:21Z #15 2.916 -2024-03-23T17:47:23Z #15 4.385 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' -2024-03-23T17:47:23Z #15 4.407 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-03-23T17:47:23Z #15 DONE 4.9s -2024-03-23T17:47:23Z -2024-03-23T17:47:23Z #16 exporting to image -2024-03-23T17:47:23Z #16 exporting layers -2024-03-23T17:49:53Z #16 exporting layers 149.7s done -2024-03-23T17:49:53Z #16 writing image sha256:b3e2aeabde8e5213c4640508c260fba0819cf9b9b53cbc94cf4bd6a434abf59b done -2024-03-23T17:49:53Z #16 naming to docker.io/pavics/workflow-tests:py310-240323 done -2024-03-23T17:49:53Z #16 DONE 149.8s -2024-03-23T17:49:53Z Pushing index.docker.io/pavics/workflow-tests:py310-240323... -2024-03-23T17:57:22Z Done! -2024-03-23T17:57:22Z Build finished +2024-04-02T20:53:45Z Building in Docker Cloud's infrastructure... +2024-04-02T20:53:45Z Cloning into '.'... +2024-04-02T20:53:46Z Warning: Permanently added the RSA host key for IP address '140.82.113.3' to the list of known hosts. +2024-04-02T20:53:48Z Switched to a new branch 'docker-py310-240402' +2024-04-02T20:53:48Z KernelVersion: 5.4.0-1068-aws +2024-04-02T20:53:48Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-04-02T20:53:48Z Arch: amd64 +2024-04-02T20:53:48Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-04-02T20:53:48Z ApiVersion: 1.41 +2024-04-02T20:53:48Z Platform: {u'Name': u'Docker Engine - Community'} +2024-04-02T20:53:48Z Version: 20.10.15 +2024-04-02T20:53:48Z MinAPIVersion: 1.12 +2024-04-02T20:53:48Z GitCommit: 4433bf6 +2024-04-02T20:53:48Z Os: linux +2024-04-02T20:53:48Z GoVersion: go1.17.9 +2024-04-02T20:53:48Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240402... +2024-04-02T20:53:53Z #1 [internal] load build definition from Dockerfile +2024-04-02T20:53:53Z #1 transferring dockerfile: 6.46kB done +2024-04-02T20:53:53Z #1 DONE 0.1s +2024-04-02T20:53:53Z +2024-04-02T20:53:53Z #2 [internal] load .dockerignore +2024-04-02T20:53:53Z #2 transferring context: 2B done +2024-04-02T20:53:53Z #2 DONE 0.1s +2024-04-02T20:53:54Z +2024-04-02T20:53:54Z #3 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-04-02T20:53:54Z #3 DONE 0.0s +2024-04-02T20:53:54Z +2024-04-02T20:53:54Z #4 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-04-02T20:53:54Z #4 DONE 0.6s +2024-04-02T20:53:54Z +2024-04-02T20:53:54Z #5 [1/9] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-02T20:53:54Z #5 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done +2024-04-02T20:53:54Z #5 ... +2024-04-02T20:53:54Z +2024-04-02T20:53:54Z #6 [internal] load build context +2024-04-02T20:53:54Z #6 transferring context: 9.26kB done +2024-04-02T20:53:54Z #6 DONE 0.0s +2024-04-02T20:53:54Z +2024-04-02T20:53:54Z #5 [1/9] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-02T20:53:54Z #5 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done +2024-04-02T20:53:54Z #5 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done +2024-04-02T20:53:54Z #5 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done +2024-04-02T20:53:54Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 4.19MB / 50.08MB 0.1s +2024-04-02T20:53:54Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 12.58MB / 50.08MB 0.3s +2024-04-02T20:53:54Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.49MB / 147.31MB 0.3s +2024-04-02T20:53:54Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 7.34MB / 31.42MB 0.3s +2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 9.44MB / 31.42MB 0.4s +2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 17.22MB / 50.08MB 0.5s +2024-04-02T20:53:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 19.92MB / 147.31MB 0.5s +2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 18.87MB / 31.42MB 0.5s +2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 25.20MB / 50.08MB 0.7s +2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 27.26MB / 31.42MB 0.7s +2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 30.41MB / 50.08MB 0.8s +2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 29.36MB / 31.42MB 0.8s +2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 34.60MB / 50.08MB 0.9s +2024-04-02T20:53:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 30.41MB / 147.31MB 0.9s +2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 0.9s +2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 40.44MB / 50.08MB 1.0s +2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 48.23MB / 50.08MB 1.2s +2024-04-02T20:53:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 50.33MB / 147.31MB 1.2s +2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.3s done +2024-04-02T20:53:56Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 60.07MB / 147.31MB 1.4s +2024-04-02T20:53:56Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 +2024-04-02T20:53:56Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.5s done +2024-04-02T20:53:56Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 70.25MB / 147.31MB 1.6s +2024-04-02T20:53:56Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 81.79MB / 147.31MB 2.1s +2024-04-02T20:53:56Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 94.88MB / 147.31MB 2.3s +2024-04-02T20:53:57Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 108.58MB / 147.31MB 2.7s +2024-04-02T20:53:57Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 117.44MB / 147.31MB 3.2s +2024-04-02T20:53:58Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 126.88MB / 147.31MB 3.7s +2024-04-02T20:53:58Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 135.27MB / 147.31MB 3.9s +2024-04-02T20:53:58Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 4.1s +2024-04-02T20:53:59Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 5.1s done +2024-04-02T20:54:01Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.1s done +2024-04-02T20:54:01Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 +2024-04-02T20:54:06Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.0s +2024-04-02T20:54:07Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.2s done +2024-04-02T20:54:08Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0.1s +2024-04-02T20:54:13Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.1s +2024-04-02T20:54:18Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.2s +2024-04-02T20:54:22Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.3s done +2024-04-02T20:54:22Z #5 DONE 28.3s +2024-04-02T20:54:23Z +2024-04-02T20:54:23Z #7 [2/9] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-04-02T20:54:24Z #7 1.545 Channels: +2024-04-02T20:54:24Z #7 1.545 - defaults +2024-04-02T20:54:24Z #7 1.545 Platform: linux-64 +2024-04-02T20:54:28Z #7 1.545 Collecting package metadata (repodata.json): ...working... done +2024-04-02T20:54:29Z #7 5.792 Solving environment: ...working... done +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 ## Package Plan ## +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 environment location: /opt/conda +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 added / updated specs: +2024-04-02T20:54:29Z #7 6.103 - conda +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 The following packages will be downloaded: +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 package | build +2024-04-02T20:54:29Z #7 6.103 ---------------------------|----------------- +2024-04-02T20:54:29Z #7 6.103 archspec-0.2.3 | pyhd3eb1b0_0 47 KB +2024-04-02T20:54:29Z #7 6.103 ca-certificates-2024.3.11 | h06a4308_0 127 KB +2024-04-02T20:54:29Z #7 6.103 conda-24.3.0 | py311h06a4308_0 1.2 MB +2024-04-02T20:54:29Z #7 6.103 ------------------------------------------------------------ +2024-04-02T20:54:29Z #7 6.103 Total: 1.4 MB +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 The following packages will be UPDATED: +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 archspec 0.2.1-pyhd3eb1b0_0 --> 0.2.3-pyhd3eb1b0_0 +2024-04-02T20:54:29Z #7 6.103 ca-certificates 2023.12.12-h06a4308_0 --> 2024.3.11-h06a4308_0 +2024-04-02T20:54:29Z #7 6.103 conda 24.1.2-py311h06a4308_0 --> 24.3.0-py311h06a4308_0 +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 +2024-04-02T20:54:29Z #7 6.103 Proceed ([y]/n)? +2024-04-02T20:54:29Z #7 6.614 +2024-04-02T20:54:29Z #7 6.614 Downloading and Extracting Packages: ...working... done +2024-04-02T20:54:29Z #7 6.614 Preparing transaction: ...working... done +2024-04-02T20:54:29Z #7 6.675 Verifying transaction: ...working... done +2024-04-02T20:54:35Z #7 6.801 Executing transaction: ...working... done +2024-04-02T20:54:37Z #7 14.06 Channels: +2024-04-02T20:54:37Z #7 14.06 - conda-forge +2024-04-02T20:54:37Z #7 14.06 - defaults +2024-04-02T20:54:37Z #7 14.06 Platform: linux-64 +2024-04-02T20:55:03Z #7 14.06 Collecting package metadata (repodata.json): ...working... done +2024-04-02T20:55:05Z #7 40.63 Solving environment: ...working... done +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 ## Package Plan ## +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 environment location: /opt/conda +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 added / updated specs: +2024-04-02T20:55:05Z #7 42.73 - conda-pack +2024-04-02T20:55:05Z #7 42.73 - mamba +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 The following packages will be downloaded: +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 package | build +2024-04-02T20:55:05Z #7 42.73 ---------------------------|----------------- +2024-04-02T20:55:05Z #7 42.73 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 c-ares-1.28.1 | hd590300_0 165 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 conda-24.3.0 | py311h38be061_0 1.2 MB conda-forge +2024-04-02T20:55:05Z #7 42.73 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-04-02T20:55:05Z #7 42.73 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge +2024-04-02T20:55:05Z #7 42.73 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 libcurl-8.7.1 | hca28451_0 389 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge +2024-04-02T20:55:05Z #7 42.73 libmambapy-1.5.8 | py311hf2555c7_0 304 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 libssh2-1.11.0 | h0841786_0 265 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge +2024-04-02T20:55:05Z #7 42.73 libxml2-2.12.6 | h232c23b_1 689 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 lzo-2.10 | h516909a_1000 314 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 mamba-1.5.8 | py311h3072747_0 65 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge +2024-04-02T20:55:05Z #7 42.73 python_abi-3.11 | 2_cp311 5 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-04-02T20:55:05Z #7 42.73 ------------------------------------------------------------ +2024-04-02T20:55:05Z #7 42.73 Total: 28.0 MB +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 The following NEW packages will be INSTALLED: +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 +2024-04-02T20:55:05Z #7 42.73 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 +2024-04-02T20:55:05Z #7 42.73 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-04-02T20:55:05Z #7 42.73 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-04-02T20:55:05Z #7 42.73 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 +2024-04-02T20:55:05Z #7 42.73 mamba conda-forge/linux-64::mamba-1.5.8-py311h3072747_0 +2024-04-02T20:55:05Z #7 42.73 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 The following packages will be UPDATED: +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 +2024-04-02T20:55:05Z #7 42.73 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-04-02T20:55:05Z #7 42.73 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-04-02T20:55:05Z #7 42.73 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 +2024-04-02T20:55:05Z #7 42.73 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-04-02T20:55:05Z #7 42.73 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 +2024-04-02T20:55:05Z #7 42.73 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 +2024-04-02T20:55:05Z #7 42.73 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 +2024-04-02T20:55:05Z #7 42.73 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.8-had39da4_0 +2024-04-02T20:55:05Z #7 42.73 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.8-py311hf2555c7_0 +2024-04-02T20:55:05Z #7 42.73 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 +2024-04-02T20:55:05Z #7 42.73 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 +2024-04-02T20:55:05Z #7 42.73 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 +2024-04-02T20:55:05Z #7 42.73 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_1 +2024-04-02T20:55:05Z #7 42.73 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 +2024-04-02T20:55:05Z #7 42.73 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 The following packages will be SUPERSEDED by a higher-priority channel: +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-04-02T20:55:05Z #7 42.73 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-04-02T20:55:05Z #7 42.73 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-04-02T20:55:05Z #7 42.73 conda pkgs/main::conda-24.3.0-py311h06a4308~ --> conda-forge::conda-24.3.0-py311h38be061_0 +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 +2024-04-02T20:55:05Z #7 42.73 Proceed ([y]/n)? +2024-04-02T20:55:08Z #7 45.36 +2024-04-02T20:55:08Z #7 45.36 Downloading and Extracting Packages: ...working... done +2024-04-02T20:55:08Z #7 45.36 Preparing transaction: ...working... done +2024-04-02T20:55:08Z #7 45.51 Verifying transaction: ...working... done +2024-04-02T20:55:19Z #7 46.03 Executing transaction: ...working... done +2024-04-02T20:55:20Z #7 57.76 Will remove 30 (29.4 MB) tarball(s). +2024-04-02T20:55:20Z #7 57.76 Will remove 1 index cache(s). +2024-04-02T20:55:20Z #7 57.76 Will remove 4 (5.0 MB) package(s). +2024-04-02T20:55:20Z #7 57.76 There are no tempfile(s) to remove. +2024-04-02T20:55:20Z #7 57.76 There are no logfile(s) to remove. +2024-04-02T20:55:22Z #7 59.11 bin/micromamba +2024-04-02T20:55:24Z #7 DONE 61.5s +2024-04-02T20:55:24Z +2024-04-02T20:55:24Z #8 [3/9] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-04-02T20:55:24Z #8 0.542 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-04-02T20:55:24Z #8 0.561 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-04-02T20:55:25Z #8 0.561 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-04-02T20:55:25Z #8 0.703 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-04-02T20:55:25Z #8 1.144 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [270 kB] +2024-04-02T20:55:26Z #8 1.780 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-04-02T20:55:27Z #8 2.855 Fetched 8565 kB in 2s (3688 kB/s) +2024-04-02T20:55:28Z #8 2.855 Reading package lists... +2024-04-02T20:55:29Z #8 3.807 Reading package lists... +2024-04-02T20:55:29Z #8 4.748 Building dependency tree... +2024-04-02T20:55:29Z #8 4.982 Reading state information... +2024-04-02T20:55:29Z #8 5.314 git is already the newest version (1:2.30.2-1+deb11u2). +2024-04-02T20:55:29Z #8 5.314 mercurial is already the newest version (5.6.1-4). +2024-04-02T20:55:29Z #8 5.314 The following additional packages will be installed: +2024-04-02T20:55:29Z #8 5.314 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-02T20:55:29Z #8 5.314 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-02T20:55:29Z #8 5.314 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-04-02T20:55:29Z #8 5.314 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-04-02T20:55:29Z #8 5.314 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-04-02T20:55:29Z #8 5.315 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-04-02T20:55:29Z #8 5.315 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-04-02T20:55:29Z #8 5.315 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-02T20:55:29Z #8 5.315 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-02T20:55:29Z #8 5.315 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-04-02T20:55:29Z #8 5.315 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-04-02T20:55:29Z #8 5.315 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-04-02T20:55:29Z #8 5.315 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-04-02T20:55:29Z #8 5.315 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-04-02T20:55:29Z #8 5.315 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-04-02T20:55:29Z #8 5.315 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-04-02T20:55:29Z #8 5.315 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-04-02T20:55:29Z #8 5.315 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-04-02T20:55:29Z #8 5.316 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-04-02T20:55:29Z #8 5.316 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-04-02T20:55:29Z #8 5.316 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-04-02T20:55:29Z #8 5.316 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-04-02T20:55:29Z #8 5.316 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-04-02T20:55:29Z #8 5.316 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-04-02T20:55:29Z #8 5.316 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-04-02T20:55:29Z #8 5.316 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-04-02T20:55:29Z #8 5.316 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-04-02T20:55:29Z #8 5.316 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-04-02T20:55:29Z #8 5.316 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-04-02T20:55:29Z #8 5.317 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-04-02T20:55:29Z #8 5.317 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-04-02T20:55:29Z #8 5.317 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-04-02T20:55:29Z #8 5.317 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-04-02T20:55:29Z #8 5.317 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-04-02T20:55:29Z #8 5.317 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-04-02T20:55:29Z #8 5.317 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-04-02T20:55:29Z #8 5.317 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-04-02T20:55:29Z #8 5.318 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv +2024-04-02T20:55:29Z #8 5.318 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data +2024-04-02T20:55:29Z #8 5.320 Suggested packages: +2024-04-02T20:55:29Z #8 5.320 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-04-02T20:55:29Z #8 5.320 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-04-02T20:55:29Z #8 5.320 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-04-02T20:55:29Z #8 5.320 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs +2024-04-02T20:55:29Z #8 5.320 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser +2024-04-02T20:55:29Z #8 5.320 opencl-icd ed diffutils-doc systemd-container policykit-1 zip +2024-04-02T20:55:29Z #8 5.320 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-04-02T20:55:29Z #8 5.320 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-04-02T20:55:29Z #8 5.320 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-04-02T20:55:31Z #8 6.855 The following NEW packages will be installed: +2024-04-02T20:55:31Z #8 6.855 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-02T20:55:31Z #8 6.855 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-02T20:55:31Z #8 6.855 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-04-02T20:55:31Z #8 6.855 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-04-02T20:55:31Z #8 6.855 glib-networking glib-networking-common glib-networking-services +2024-04-02T20:55:31Z #8 6.856 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-04-02T20:55:31Z #8 6.856 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-04-02T20:55:31Z #8 6.856 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-04-02T20:55:31Z #8 6.856 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-02T20:55:31Z #8 6.856 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-02T20:55:31Z #8 6.856 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-04-02T20:55:31Z #8 6.856 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-04-02T20:55:31Z #8 6.856 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-04-02T20:55:31Z #8 6.856 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-04-02T20:55:31Z #8 6.856 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-04-02T20:55:31Z #8 6.857 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-04-02T20:55:31Z #8 6.857 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-04-02T20:55:31Z #8 6.857 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-04-02T20:55:31Z #8 6.857 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-04-02T20:55:31Z #8 6.857 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-04-02T20:55:31Z #8 6.857 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-04-02T20:55:31Z #8 6.857 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-04-02T20:55:31Z #8 6.857 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-04-02T20:55:31Z #8 6.857 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-04-02T20:55:31Z #8 6.858 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-04-02T20:55:31Z #8 6.858 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-04-02T20:55:31Z #8 6.858 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-04-02T20:55:31Z #8 6.858 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-04-02T20:55:31Z #8 6.858 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-04-02T20:55:31Z #8 6.858 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-04-02T20:55:31Z #8 6.858 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-04-02T20:55:31Z #8 6.858 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-04-02T20:55:31Z #8 6.858 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-04-02T20:55:31Z #8 6.858 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-04-02T20:55:31Z #8 6.858 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-04-02T20:55:31Z #8 6.858 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-04-02T20:55:31Z #8 6.859 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-04-02T20:55:31Z #8 6.859 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-04-02T20:55:31Z #8 6.859 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-04-02T20:55:31Z #8 6.859 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-04-02T20:55:31Z #8 6.859 x11-utils xkb-data +2024-04-02T20:55:31Z #8 6.895 0 upgraded, 221 newly installed, 0 to remove and 7 not upgraded. +2024-04-02T20:55:31Z #8 6.895 Need to get 236 MB of archives. +2024-04-02T20:55:31Z #8 6.895 After this operation, 891 MB of additional disk space will be used. +2024-04-02T20:55:31Z #8 6.895 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-04-02T20:55:31Z #8 6.907 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-04-02T20:55:31Z #8 6.908 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-04-02T20:55:31Z #8 6.909 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-04-02T20:55:31Z #8 6.912 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-04-02T20:55:31Z #8 6.921 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-04-02T20:55:31Z #8 6.923 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-04-02T20:55:31Z #8 6.927 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-04-02T20:55:31Z #8 6.929 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-04-02T20:55:31Z #8 6.930 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-04-02T20:55:31Z #8 7.024 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-04-02T20:55:31Z #8 7.032 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-04-02T20:55:31Z #8 7.035 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-04-02T20:55:31Z #8 7.039 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-04-02T20:55:31Z #8 7.043 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-04-02T20:55:31Z #8 7.047 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-04-02T20:55:31Z #8 7.064 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-04-02T20:55:31Z #8 7.067 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-04-02T20:55:31Z #8 7.080 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-04-02T20:55:31Z #8 7.086 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-04-02T20:55:31Z #8 7.262 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-04-02T20:55:31Z #8 7.272 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-04-02T20:55:31Z #8 7.281 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-04-02T20:55:31Z #8 7.286 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-04-02T20:55:31Z #8 7.291 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-04-02T20:55:31Z #8 7.292 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-04-02T20:55:31Z #8 7.294 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-04-02T20:55:31Z #8 7.298 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-04-02T20:55:31Z #8 7.302 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-04-02T20:55:31Z #8 7.305 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-04-02T20:55:31Z #8 7.308 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-04-02T20:55:31Z #8 7.544 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-04-02T20:55:32Z #8 7.546 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-04-02T20:55:32Z #8 7.548 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-04-02T20:55:32Z #8 7.553 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-04-02T20:55:32Z #8 7.554 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-04-02T20:55:32Z #8 7.556 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-04-02T20:55:32Z #8 7.558 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-04-02T20:55:32Z #8 7.560 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-04-02T20:55:32Z #8 7.561 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-04-02T20:55:32Z #8 7.587 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-04-02T20:55:32Z #8 7.596 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-04-02T20:55:32Z #8 7.615 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-04-02T20:55:32Z #8 7.617 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-04-02T20:55:32Z #8 7.640 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-04-02T20:55:32Z #8 7.642 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-04-02T20:55:32Z #8 7.652 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-04-02T20:55:32Z #8 7.681 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-04-02T20:55:32Z #8 7.683 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-04-02T20:55:32Z #8 7.881 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-04-02T20:55:32Z #8 7.882 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-04-02T20:55:32Z #8 7.885 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-04-02T20:55:32Z #8 7.887 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-04-02T20:55:32Z #8 7.889 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-04-02T20:55:32Z #8 7.890 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-04-02T20:55:32Z #8 7.893 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-04-02T20:55:32Z #8 7.895 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-04-02T20:55:32Z #8 7.901 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-04-02T20:55:32Z #8 7.916 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-04-02T20:55:32Z #8 7.924 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-04-02T20:55:32Z #8 7.929 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-04-02T20:55:32Z #8 7.944 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-04-02T20:55:32Z #8 7.946 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-04-02T20:55:32Z #8 7.949 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-04-02T20:55:32Z #8 7.956 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-04-02T20:55:32Z #8 7.959 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-04-02T20:55:32Z #8 7.961 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-04-02T20:55:32Z #8 7.965 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-04-02T20:55:32Z #8 7.967 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-04-02T20:55:32Z #8 7.971 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-04-02T20:55:32Z #8 7.976 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-04-02T20:55:32Z #8 7.980 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-04-02T20:55:32Z #8 7.983 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-04-02T20:55:32Z #8 7.987 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-04-02T20:55:32Z #8 7.995 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-04-02T20:55:32Z #8 7.998 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-04-02T20:55:32Z #8 8.001 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-04-02T20:55:32Z #8 8.003 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-04-02T20:55:32Z #8 8.021 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-04-02T20:55:32Z #8 8.033 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-04-02T20:55:32Z #8 8.036 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-04-02T20:55:32Z #8 8.046 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-04-02T20:55:32Z #8 8.053 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-04-02T20:55:32Z #8 8.058 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-04-02T20:55:32Z #8 8.062 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-04-02T20:55:32Z #8 8.070 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-04-02T20:55:32Z #8 8.075 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-04-02T20:55:32Z #8 8.079 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-04-02T20:55:32Z #8 8.082 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-04-02T20:55:32Z #8 8.085 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-04-02T20:55:32Z #8 8.088 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-04-02T20:55:32Z #8 8.101 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-04-02T20:55:32Z #8 8.105 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-04-02T20:55:32Z #8 8.113 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-04-02T20:55:32Z #8 8.116 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-04-02T20:55:32Z #8 8.120 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-04-02T20:55:32Z #8 8.124 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-04-02T20:55:32Z #8 8.135 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-04-02T20:55:32Z #8 8.137 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-04-02T20:55:32Z #8 8.140 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-04-02T20:55:32Z #8 8.142 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-04-02T20:55:32Z #8 8.144 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-04-02T20:55:32Z #8 8.146 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-04-02T20:55:32Z #8 8.148 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-04-02T20:55:32Z #8 8.162 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-04-02T20:55:32Z #8 8.165 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-04-02T20:55:32Z #8 8.168 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-04-02T20:55:32Z #8 8.255 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-04-02T20:55:32Z #8 8.306 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-04-02T20:55:32Z #8 8.311 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.9.1esr-1~deb11u1 [63.7 MB] +2024-04-02T20:55:34Z #8 9.598 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-04-02T20:55:34Z #8 9.600 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-04-02T20:55:34Z #8 9.602 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-04-02T20:55:34Z #8 9.604 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-04-02T20:55:34Z #8 9.606 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-04-02T20:55:34Z #8 9.607 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-04-02T20:55:34Z #8 9.642 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-04-02T20:55:34Z #8 9.671 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-04-02T20:55:34Z #8 9.700 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-04-02T20:55:34Z #8 9.717 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-04-02T20:55:34Z #8 9.721 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-04-02T20:55:34Z #8 9.755 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-04-02T20:55:34Z #8 10.14 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-04-02T20:55:34Z #8 10.14 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-04-02T20:55:34Z #8 10.15 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-04-02T20:55:34Z #8 10.15 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-04-02T20:55:34Z #8 10.15 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-04-02T20:55:34Z #8 10.15 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-04-02T20:55:34Z #8 10.15 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-04-02T20:55:34Z #8 10.16 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-04-02T20:55:34Z #8 10.16 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-04-02T20:55:34Z #8 10.19 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-04-02T20:55:34Z #8 10.22 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-04-02T20:55:34Z #8 10.30 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-04-02T20:55:34Z #8 10.30 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-04-02T20:55:34Z #8 10.30 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-04-02T20:55:34Z #8 10.30 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-04-02T20:55:34Z #8 10.31 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-04-02T20:55:34Z #8 10.31 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-04-02T20:55:34Z #8 10.50 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-04-02T20:55:34Z #8 10.50 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-04-02T20:55:34Z #8 10.51 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-04-02T20:55:34Z #8 10.51 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-04-02T20:55:34Z #8 10.52 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-04-02T20:55:34Z #8 10.52 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-04-02T20:55:34Z #8 10.55 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-04-02T20:55:35Z #8 10.55 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-04-02T20:55:35Z #8 10.56 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-04-02T20:55:35Z #8 10.56 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-04-02T20:55:35Z #8 10.56 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-04-02T20:55:35Z #8 10.56 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-04-02T20:55:35Z #8 10.57 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-04-02T20:55:35Z #8 10.57 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-04-02T20:55:35Z #8 10.57 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-04-02T20:55:35Z #8 10.57 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-04-02T20:55:35Z #8 10.58 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-04-02T20:55:35Z #8 10.59 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-04-02T20:55:35Z #8 10.59 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-04-02T20:55:35Z #8 10.59 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-04-02T20:55:35Z #8 10.60 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-04-02T20:55:35Z #8 10.61 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-04-02T20:55:35Z #8 10.62 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-04-02T20:55:35Z #8 10.63 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-04-02T20:55:35Z #8 10.63 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-04-02T20:55:35Z #8 10.64 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-04-02T20:55:35Z #8 10.76 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] +2024-04-02T20:55:35Z #8 10.76 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-04-02T20:55:35Z #8 10.76 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-04-02T20:55:35Z #8 10.76 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] +2024-04-02T20:55:35Z #8 10.77 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-04-02T20:55:35Z #8 10.79 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-04-02T20:55:35Z #8 10.80 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-04-02T20:55:35Z #8 10.80 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-04-02T20:55:35Z #8 10.81 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] +2024-04-02T20:55:35Z #8 10.84 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-04-02T20:55:35Z #8 10.84 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-04-02T20:55:35Z #8 10.85 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-04-02T20:55:35Z #8 10.87 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-04-02T20:55:35Z #8 10.87 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-04-02T20:55:35Z #8 10.87 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-04-02T20:55:35Z #8 10.87 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-04-02T20:55:35Z #8 10.87 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-04-02T20:55:35Z #8 11.00 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-04-02T20:55:35Z #8 11.44 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-04-02T20:55:35Z #8 11.44 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-04-02T20:55:35Z #8 11.45 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-04-02T20:55:35Z #8 11.45 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-04-02T20:55:36Z #8 11.67 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-04-02T20:55:36Z #8 11.67 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-04-02T20:55:36Z #8 11.67 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-04-02T20:55:36Z #8 11.67 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-04-02T20:55:36Z #8 11.68 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-04-02T20:55:36Z #8 11.68 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-04-02T20:55:36Z #8 11.69 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-04-02T20:55:36Z #8 11.69 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-04-02T20:55:36Z #8 11.69 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-04-02T20:55:36Z #8 11.69 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-04-02T20:55:36Z #8 11.70 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-04-02T20:55:36Z #8 11.70 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-04-02T20:55:36Z #8 11.70 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-04-02T20:55:36Z #8 11.71 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-04-02T20:55:36Z #8 11.71 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-04-02T20:55:36Z #8 11.71 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-04-02T20:55:36Z #8 11.72 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-04-02T20:55:36Z #8 11.72 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-04-02T20:55:36Z #8 11.73 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-04-02T20:55:36Z #8 11.73 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-04-02T20:55:36Z #8 11.73 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-04-02T20:55:36Z #8 11.74 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-04-02T20:55:36Z #8 11.74 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-04-02T20:55:36Z #8 11.74 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-04-02T20:55:36Z #8 11.74 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-04-02T20:55:36Z #8 11.75 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-04-02T20:55:36Z #8 11.79 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-04-02T20:55:36Z #8 11.85 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-04-02T20:55:36Z #8 11.90 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-04-02T20:55:36Z #8 11.99 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-04-02T20:55:36Z #8 12.00 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-04-02T20:55:36Z #8 12.00 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-04-02T20:55:36Z #8 12.00 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-04-02T20:55:36Z #8 12.01 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-04-02T20:55:36Z #8 12.39 debconf: delaying package configuration, since apt-utils is not installed +2024-04-02T20:55:36Z #8 12.44 Fetched 236 MB in 5s (45.9 MB/s) +2024-04-02T20:55:36Z #8 12.47 Selecting previously unselected package libapparmor1:amd64. +2024-04-02T20:55:36Z #8 12.47 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-04-02T20:55:36Z #8 12.49 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-04-02T20:55:36Z #8 12.50 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-04-02T20:55:36Z #8 12.55 Selecting previously unselected package libcap2:amd64. +2024-04-02T20:55:37Z #8 12.56 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-04-02T20:55:37Z #8 12.56 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-04-02T20:55:37Z #8 12.61 Selecting previously unselected package libargon2-1:amd64. +2024-04-02T20:55:37Z #8 12.62 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-04-02T20:55:37Z #8 12.62 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-02T20:55:37Z #8 12.67 Selecting previously unselected package dmsetup. +2024-04-02T20:55:37Z #8 12.68 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-04-02T20:55:37Z #8 12.68 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-04-02T20:55:37Z #8 12.74 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-04-02T20:55:37Z #8 12.74 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-04-02T20:55:37Z #8 12.75 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-02T20:55:37Z #8 12.82 Selecting previously unselected package libjson-c5:amd64. +2024-04-02T20:55:37Z #8 12.83 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-04-02T20:55:37Z #8 12.83 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-02T20:55:37Z #8 12.88 Selecting previously unselected package libcryptsetup12:amd64. +2024-04-02T20:55:37Z #8 12.88 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-04-02T20:55:37Z #8 12.89 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-02T20:55:37Z #8 12.98 Selecting previously unselected package libip4tc2:amd64. +2024-04-02T20:55:37Z #8 12.98 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-04-02T20:55:37Z #8 12.99 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-04-02T20:55:37Z #8 13.03 Selecting previously unselected package libkmod2:amd64. +2024-04-02T20:55:37Z #8 13.03 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-04-02T20:55:37Z #8 13.04 Unpacking libkmod2:amd64 (28-1) ... +2024-04-02T20:55:37Z #8 13.10 Selecting previously unselected package systemd. +2024-04-02T20:55:37Z #8 13.10 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-02T20:55:37Z #8 13.18 Unpacking systemd (247.3-7+deb11u4) ... +2024-04-02T20:55:38Z #8 14.17 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-04-02T20:55:38Z #8 14.19 Setting up libcap2:amd64 (1:2.44-1) ... +2024-04-02T20:55:38Z #8 14.20 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-02T20:55:38Z #8 14.22 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-02T20:55:38Z #8 14.23 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-04-02T20:55:38Z #8 14.25 Setting up libkmod2:amd64 (28-1) ... +2024-04-02T20:55:38Z #8 14.27 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-02T20:55:38Z #8 14.30 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-02T20:55:38Z #8 14.35 Setting up systemd (247.3-7+deb11u4) ... +2024-04-02T20:55:38Z #8 14.37 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-04-02T20:55:38Z #8 14.39 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-04-02T20:55:38Z #8 14.39 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-04-02T20:55:38Z #8 14.41 Initializing machine ID from KVM UUID. +2024-04-02T20:55:39Z #8 14.94 Setting up dmsetup (2:1.02.175-2.1) ... +2024-04-02T20:55:39Z #8 15.06 Selecting previously unselected package systemd-sysv. +2024-04-02T20:55:39Z #8 15.06 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-04-02T20:55:39Z #8 15.08 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-04-02T20:55:39Z #8 15.09 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-04-02T20:55:39Z #8 15.14 Selecting previously unselected package libdbus-1-3:amd64. +2024-04-02T20:55:39Z #8 15.14 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-04-02T20:55:39Z #8 15.15 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-02T20:55:39Z #8 15.24 Selecting previously unselected package dbus. +2024-04-02T20:55:39Z #8 15.24 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-04-02T20:55:39Z #8 15.26 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-04-02T20:55:39Z #8 15.35 Selecting previously unselected package libnss-systemd:amd64. +2024-04-02T20:55:39Z #8 15.35 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-02T20:55:39Z #8 15.36 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-02T20:55:39Z #8 15.43 Selecting previously unselected package libpam-systemd:amd64. +2024-04-02T20:55:39Z #8 15.43 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-02T20:55:39Z #8 15.44 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-02T20:55:40Z #8 15.52 Selecting previously unselected package manpages. +2024-04-02T20:55:40Z #8 15.53 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-04-02T20:55:40Z #8 15.53 Unpacking manpages (5.10-1) ... +2024-04-02T20:55:40Z #8 15.79 Selecting previously unselected package systemd-timesyncd. +2024-04-02T20:55:40Z #8 15.79 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-04-02T20:55:40Z #8 15.81 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-02T20:55:40Z #8 15.87 Selecting previously unselected package hicolor-icon-theme. +2024-04-02T20:55:40Z #8 15.88 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-04-02T20:55:40Z #8 15.88 Unpacking hicolor-icon-theme (0.17-2) ... +2024-04-02T20:55:40Z #8 16.01 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-04-02T20:55:40Z #8 16.01 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-04-02T20:55:40Z #8 16.02 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-02T20:55:40Z #8 16.14 Selecting previously unselected package libicu67:amd64. +2024-04-02T20:55:40Z #8 16.15 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-04-02T20:55:40Z #8 16.16 Unpacking libicu67:amd64 (67.1-7) ... +2024-04-02T20:55:42Z #8 17.86 Selecting previously unselected package libxml2:amd64. +2024-04-02T20:55:42Z #8 17.87 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-04-02T20:55:42Z #8 17.87 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-02T20:55:42Z #8 18.03 Selecting previously unselected package shared-mime-info. +2024-04-02T20:55:42Z #8 18.03 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-04-02T20:55:42Z #8 18.04 Unpacking shared-mime-info (2.0-1) ... +2024-04-02T20:55:42Z #8 18.23 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-04-02T20:55:42Z #8 18.23 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-04-02T20:55:42Z #8 18.24 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-02T20:55:42Z #8 18.30 Selecting previously unselected package libpng16-16:amd64. +2024-04-02T20:55:42Z #8 18.31 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-04-02T20:55:42Z #8 18.32 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-04-02T20:55:42Z #8 18.39 Selecting previously unselected package libdeflate0:amd64. +2024-04-02T20:55:42Z #8 18.39 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-04-02T20:55:42Z #8 18.40 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-04-02T20:55:43Z #8 18.44 Selecting previously unselected package libjbig0:amd64. +2024-04-02T20:55:43Z #8 18.45 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-04-02T20:55:43Z #8 18.46 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-02T20:55:43Z #8 18.50 Selecting previously unselected package libwebp6:amd64. +2024-04-02T20:55:43Z #8 18.50 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-02T20:55:43Z #8 18.51 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-02T20:55:43Z #8 18.59 Selecting previously unselected package libtiff5:amd64. +2024-04-02T20:55:43Z #8 18.60 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-04-02T20:55:43Z #8 18.61 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-02T20:55:43Z #8 18.70 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-04-02T20:55:43Z #8 18.70 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-02T20:55:43Z #8 18.71 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-02T20:55:43Z #8 18.78 Selecting previously unselected package gtk-update-icon-cache. +2024-04-02T20:55:43Z #8 18.78 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-04-02T20:55:43Z #8 18.79 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-02T20:55:43Z #8 18.91 Selecting previously unselected package adwaita-icon-theme. +2024-04-02T20:55:43Z #8 18.92 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-04-02T20:55:43Z #8 18.92 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-04-02T20:55:46Z #8 21.76 Selecting previously unselected package alsa-topology-conf. +2024-04-02T20:55:46Z #8 21.77 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-04-02T20:55:46Z #8 21.78 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-04-02T20:55:46Z #8 21.83 Selecting previously unselected package libasound2-data. +2024-04-02T20:55:46Z #8 21.83 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-04-02T20:55:46Z #8 21.84 Unpacking libasound2-data (1.2.4-1.1) ... +2024-04-02T20:55:46Z #8 21.91 Selecting previously unselected package libasound2:amd64. +2024-04-02T20:55:46Z #8 21.91 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-04-02T20:55:46Z #8 21.92 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-04-02T20:55:46Z #8 22.03 Selecting previously unselected package alsa-ucm-conf. +2024-04-02T20:55:46Z #8 22.03 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-04-02T20:55:46Z #8 22.03 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-04-02T20:55:46Z #8 22.13 Selecting previously unselected package libatspi2.0-0:amd64. +2024-04-02T20:55:46Z #8 22.14 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-04-02T20:55:46Z #8 22.14 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-02T20:55:46Z #8 22.20 Selecting previously unselected package libxi6:amd64. +2024-04-02T20:55:46Z #8 22.20 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-04-02T20:55:46Z #8 22.21 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-04-02T20:55:46Z #8 22.27 Selecting previously unselected package libxtst6:amd64. +2024-04-02T20:55:46Z #8 22.27 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-04-02T20:55:46Z #8 22.28 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-04-02T20:55:46Z #8 22.33 Selecting previously unselected package at-spi2-core. +2024-04-02T20:55:46Z #8 22.34 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-04-02T20:55:46Z #8 22.34 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-02T20:55:46Z #8 22.42 Selecting previously unselected package binutils-common:amd64. +2024-04-02T20:55:46Z #8 22.43 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-04-02T20:55:46Z #8 22.43 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-04-02T20:55:47Z #8 22.90 Selecting previously unselected package libbinutils:amd64. +2024-04-02T20:55:47Z #8 22.91 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-04-02T20:55:47Z #8 22.92 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-04-02T20:55:47Z #8 23.07 Selecting previously unselected package libctf-nobfd0:amd64. +2024-04-02T20:55:47Z #8 23.08 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-04-02T20:55:47Z #8 23.08 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-02T20:55:47Z #8 23.14 Selecting previously unselected package libctf0:amd64. +2024-04-02T20:55:47Z #8 23.14 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-04-02T20:55:47Z #8 23.15 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-04-02T20:55:47Z #8 23.19 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-04-02T20:55:47Z #8 23.19 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-04-02T20:55:47Z #8 23.20 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-02T20:55:48Z #8 23.62 Selecting previously unselected package binutils. +2024-04-02T20:55:48Z #8 23.63 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-04-02T20:55:48Z #8 23.64 Unpacking binutils (2.35.2-2) ... +2024-04-02T20:55:48Z #8 23.69 Selecting previously unselected package libisl23:amd64. +2024-04-02T20:55:48Z #8 23.70 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-04-02T20:55:48Z #8 23.71 Unpacking libisl23:amd64 (0.23-1) ... +2024-04-02T20:55:48Z #8 23.87 Selecting previously unselected package libmpfr6:amd64. +2024-04-02T20:55:48Z #8 23.88 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-04-02T20:55:48Z #8 23.88 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-04-02T20:55:48Z #8 24.13 Selecting previously unselected package libmpc3:amd64. +2024-04-02T20:55:48Z #8 24.13 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-04-02T20:55:48Z #8 24.13 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-04-02T20:55:48Z #8 24.17 Selecting previously unselected package cpp-10. +2024-04-02T20:55:48Z #8 24.18 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-04-02T20:55:48Z #8 24.18 Unpacking cpp-10 (10.2.1-6) ... +2024-04-02T20:55:50Z #8 25.75 Selecting previously unselected package cpp. +2024-04-02T20:55:50Z #8 25.75 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-04-02T20:55:50Z #8 25.76 Unpacking cpp (4:10.2.1-1) ... +2024-04-02T20:55:50Z #8 25.80 Selecting previously unselected package dbus-user-session. +2024-04-02T20:55:50Z #8 25.80 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-04-02T20:55:50Z #8 25.81 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-02T20:55:50Z #8 25.86 Selecting previously unselected package libdconf1:amd64. +2024-04-02T20:55:50Z #8 25.87 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-04-02T20:55:50Z #8 25.87 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-04-02T20:55:50Z #8 25.92 Selecting previously unselected package dconf-service. +2024-04-02T20:55:50Z #8 25.92 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-04-02T20:55:50Z #8 25.93 Unpacking dconf-service (0.38.0-2) ... +2024-04-02T20:55:50Z #8 25.97 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-04-02T20:55:50Z #8 25.98 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-04-02T20:55:50Z #8 25.98 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-02T20:55:50Z #8 26.03 Selecting previously unselected package libatk1.0-data. +2024-04-02T20:55:50Z #8 26.03 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-04-02T20:55:50Z #8 26.04 Unpacking libatk1.0-data (2.36.0-2) ... +2024-04-02T20:55:50Z #8 26.12 Selecting previously unselected package libatk1.0-0:amd64. +2024-04-02T20:55:50Z #8 26.13 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-04-02T20:55:50Z #8 26.15 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-02T20:55:50Z #8 26.20 Selecting previously unselected package libfreetype6:amd64. +2024-04-02T20:55:50Z #8 26.20 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-04-02T20:55:50Z #8 26.21 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-02T20:55:50Z #8 26.34 Selecting previously unselected package fonts-dejavu-core. +2024-04-02T20:55:50Z #8 26.34 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-04-02T20:55:50Z #8 26.35 Unpacking fonts-dejavu-core (2.37-2) ... +2024-04-02T20:55:51Z #8 26.59 Selecting previously unselected package fontconfig-config. +2024-04-02T20:55:51Z #8 26.59 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-04-02T20:55:51Z #8 26.73 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-04-02T20:55:51Z #8 26.80 Selecting previously unselected package libfontconfig1:amd64. +2024-04-02T20:55:51Z #8 26.80 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-04-02T20:55:51Z #8 26.81 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-02T20:55:51Z #8 26.88 Selecting previously unselected package libpixman-1-0:amd64. +2024-04-02T20:55:51Z #8 26.89 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-04-02T20:55:51Z #8 26.89 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-02T20:55:51Z #8 27.00 Selecting previously unselected package libxcb-render0:amd64. +2024-04-02T20:55:51Z #8 27.00 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-04-02T20:55:51Z #8 27.01 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-04-02T20:55:51Z #8 27.07 Selecting previously unselected package libxcb-shm0:amd64. +2024-04-02T20:55:51Z #8 27.08 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-04-02T20:55:51Z #8 27.08 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-04-02T20:55:51Z #8 27.14 Selecting previously unselected package libcairo2:amd64. +2024-04-02T20:55:51Z #8 27.15 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-04-02T20:55:51Z #8 27.17 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-04-02T20:55:51Z #8 27.32 Selecting previously unselected package libcairo-gobject2:amd64. +2024-04-02T20:55:51Z #8 27.32 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-04-02T20:55:51Z #8 27.32 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-02T20:55:51Z #8 27.38 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-04-02T20:55:51Z #8 27.39 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-04-02T20:55:51Z #8 27.39 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-02T20:55:51Z #8 27.46 Selecting previously unselected package libevent-2.1-7:amd64. +2024-04-02T20:55:51Z #8 27.46 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-04-02T20:55:51Z #8 27.47 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-02T20:55:52Z #8 27.54 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-04-02T20:55:52Z #8 27.55 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-04-02T20:55:52Z #8 27.55 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-02T20:55:52Z #8 27.61 Selecting previously unselected package liblcms2-2:amd64. +2024-04-02T20:55:52Z #8 27.62 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-04-02T20:55:52Z #8 27.62 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-02T20:55:52Z #8 27.70 Selecting previously unselected package libcolord2:amd64. +2024-04-02T20:55:52Z #8 27.70 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-04-02T20:55:52Z #8 27.71 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-04-02T20:55:52Z #8 27.77 Selecting previously unselected package libavahi-common-data:amd64. +2024-04-02T20:55:52Z #8 27.77 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-04-02T20:55:52Z #8 27.78 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-02T20:55:52Z #8 27.85 Selecting previously unselected package libavahi-common3:amd64. +2024-04-02T20:55:52Z #8 27.86 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-04-02T20:55:52Z #8 27.86 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-02T20:55:52Z #8 27.91 Selecting previously unselected package libavahi-client3:amd64. +2024-04-02T20:55:52Z #8 27.92 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-04-02T20:55:52Z #8 27.92 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-02T20:55:52Z #8 27.98 Selecting previously unselected package libcups2:amd64. +2024-04-02T20:55:52Z #8 27.99 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-04-02T20:55:52Z #8 28.00 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-02T20:55:52Z #8 28.08 Selecting previously unselected package libepoxy0:amd64. +2024-04-02T20:55:52Z #8 28.08 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-04-02T20:55:52Z #8 28.09 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-04-02T20:55:52Z #8 28.19 Selecting previously unselected package libfribidi0:amd64. +2024-04-02T20:55:52Z #8 28.19 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-04-02T20:55:52Z #8 28.20 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-02T20:55:52Z #8 28.25 Selecting previously unselected package libgraphite2-3:amd64. +2024-04-02T20:55:52Z #8 28.25 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-04-02T20:55:52Z #8 28.26 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-02T20:55:52Z #8 28.31 Selecting previously unselected package libharfbuzz0b:amd64. +2024-04-02T20:55:52Z #8 28.32 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-04-02T20:55:52Z #8 28.32 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-02T20:55:52Z #8 28.42 Selecting previously unselected package libjson-glib-1.0-common. +2024-04-02T20:55:52Z #8 28.43 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-04-02T20:55:52Z #8 28.43 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-04-02T20:55:52Z #8 28.50 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-04-02T20:55:52Z #8 28.50 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-04-02T20:55:52Z #8 28.51 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-02T20:55:53Z #8 28.56 Selecting previously unselected package fontconfig. +2024-04-02T20:55:53Z #8 28.57 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-04-02T20:55:53Z #8 28.58 Unpacking fontconfig (2.13.1-4.2) ... +2024-04-02T20:55:53Z #8 28.65 Selecting previously unselected package libthai-data. +2024-04-02T20:55:53Z #8 28.65 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-04-02T20:55:53Z #8 28.66 Unpacking libthai-data (0.1.28-3) ... +2024-04-02T20:55:53Z #8 28.75 Selecting previously unselected package libdatrie1:amd64. +2024-04-02T20:55:53Z #8 28.75 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-04-02T20:55:53Z #8 28.76 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-04-02T20:55:53Z #8 28.81 Selecting previously unselected package libthai0:amd64. +2024-04-02T20:55:53Z #8 28.81 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-04-02T20:55:53Z #8 28.82 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-04-02T20:55:53Z #8 28.87 Selecting previously unselected package libpango-1.0-0:amd64. +2024-04-02T20:55:53Z #8 28.87 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-04-02T20:55:53Z #8 28.88 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-02T20:55:53Z #8 28.96 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-04-02T20:55:53Z #8 28.96 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-04-02T20:55:53Z #8 28.97 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-02T20:55:53Z #8 29.03 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-04-02T20:55:53Z #8 29.04 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-04-02T20:55:53Z #8 29.05 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-02T20:55:53Z #8 29.10 Selecting previously unselected package libproxy1v5:amd64. +2024-04-02T20:55:53Z #8 29.10 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-04-02T20:55:53Z #8 29.11 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-04-02T20:55:53Z #8 29.16 Selecting previously unselected package glib-networking-common. +2024-04-02T20:55:53Z #8 29.16 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-04-02T20:55:53Z #8 29.17 Unpacking glib-networking-common (2.66.0-2) ... +2024-04-02T20:55:53Z #8 29.24 Selecting previously unselected package glib-networking-services. +2024-04-02T20:55:53Z #8 29.25 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-04-02T20:55:53Z #8 29.26 Unpacking glib-networking-services (2.66.0-2) ... +2024-04-02T20:55:53Z #8 29.30 Selecting previously unselected package gsettings-desktop-schemas. +2024-04-02T20:55:53Z #8 29.31 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-04-02T20:55:53Z #8 29.31 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-04-02T20:55:54Z #8 29.49 Selecting previously unselected package glib-networking:amd64. +2024-04-02T20:55:54Z #8 29.50 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-04-02T20:55:54Z #8 29.50 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-04-02T20:55:54Z #8 29.57 Selecting previously unselected package libsoup2.4-1:amd64. +2024-04-02T20:55:54Z #8 29.57 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-04-02T20:55:54Z #8 29.58 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-02T20:55:54Z #8 29.71 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-04-02T20:55:54Z #8 29.71 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-04-02T20:55:54Z #8 29.72 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-02T20:55:54Z #8 29.77 Selecting previously unselected package librest-0.7-0:amd64. +2024-04-02T20:55:54Z #8 29.77 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-04-02T20:55:54Z #8 29.78 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-02T20:55:54Z #8 29.82 Selecting previously unselected package libwayland-client0:amd64. +2024-04-02T20:55:54Z #8 29.83 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-02T20:55:54Z #8 29.83 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-02T20:55:54Z #8 29.88 Selecting previously unselected package libwayland-cursor0:amd64. +2024-04-02T20:55:54Z #8 29.89 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-02T20:55:54Z #8 29.89 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-02T20:55:54Z #8 29.93 Selecting previously unselected package libwayland-egl1:amd64. +2024-04-02T20:55:54Z #8 29.93 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-04-02T20:55:54Z #8 29.94 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-02T20:55:54Z #8 29.98 Selecting previously unselected package libxcomposite1:amd64. +2024-04-02T20:55:54Z #8 29.98 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-04-02T20:55:54Z #8 29.99 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-02T20:55:54Z #8 30.03 Selecting previously unselected package libxfixes3:amd64. +2024-04-02T20:55:54Z #8 30.04 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-04-02T20:55:54Z #8 30.04 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-02T20:55:54Z #8 30.09 Selecting previously unselected package libxcursor1:amd64. +2024-04-02T20:55:54Z #8 30.09 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-04-02T20:55:54Z #8 30.10 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-02T20:55:54Z #8 30.15 Selecting previously unselected package libxdamage1:amd64. +2024-04-02T20:55:54Z #8 30.16 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-04-02T20:55:54Z #8 30.16 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-02T20:55:54Z #8 30.22 Selecting previously unselected package libxinerama1:amd64. +2024-04-02T20:55:54Z #8 30.23 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-04-02T20:55:54Z #8 30.23 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-02T20:55:54Z #8 30.27 Selecting previously unselected package xkb-data. +2024-04-02T20:55:54Z #8 30.28 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-04-02T20:55:54Z #8 30.28 Unpacking xkb-data (2.29-2) ... +2024-04-02T20:55:55Z #8 30.56 Selecting previously unselected package libxkbcommon0:amd64. +2024-04-02T20:55:55Z #8 30.56 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-04-02T20:55:55Z #8 30.57 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-02T20:55:55Z #8 30.64 Selecting previously unselected package libxrandr2:amd64. +2024-04-02T20:55:55Z #8 30.64 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-04-02T20:55:55Z #8 30.65 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-02T20:55:55Z #8 30.70 Selecting previously unselected package libgtk-3-common. +2024-04-02T20:55:55Z #8 30.71 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-04-02T20:55:55Z #8 30.71 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-02T20:55:56Z #8 31.50 Selecting previously unselected package libgtk-3-0:amd64. +2024-04-02T20:55:56Z #8 31.50 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-04-02T20:55:56Z #8 31.51 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-02T20:55:56Z #8 32.06 Selecting previously unselected package libx11-xcb1:amd64. +2024-04-02T20:55:56Z #8 32.06 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-04-02T20:55:56Z #8 32.07 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-02T20:55:56Z #8 32.13 Selecting previously unselected package firefox-esr. +2024-04-02T20:55:56Z #8 32.14 Preparing to unpack .../099-firefox-esr_115.9.1esr-1~deb11u1_amd64.deb ... +2024-04-02T20:55:56Z #8 32.15 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-04-02T20:55:56Z #8 32.16 Unpacking firefox-esr (115.9.1esr-1~deb11u1) ... +2024-04-02T20:56:07Z #8 43.43 Selecting previously unselected package fonts-humor-sans. +2024-04-02T20:56:07Z #8 43.43 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-04-02T20:56:07Z #8 43.44 Unpacking fonts-humor-sans (1.0-4) ... +2024-04-02T20:56:07Z #8 43.49 Selecting previously unselected package libcc1-0:amd64. +2024-04-02T20:56:07Z #8 43.49 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-04-02T20:56:07Z #8 43.50 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-04-02T20:56:08Z #8 43.55 Selecting previously unselected package libgomp1:amd64. +2024-04-02T20:56:08Z #8 43.56 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-04-02T20:56:08Z #8 43.56 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-04-02T20:56:08Z #8 43.63 Selecting previously unselected package libitm1:amd64. +2024-04-02T20:56:08Z #8 43.63 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-04-02T20:56:08Z #8 43.64 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-04-02T20:56:08Z #8 43.69 Selecting previously unselected package libatomic1:amd64. +2024-04-02T20:56:08Z #8 43.70 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-04-02T20:56:08Z #8 43.70 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-04-02T20:56:08Z #8 43.75 Selecting previously unselected package libasan6:amd64. +2024-04-02T20:56:08Z #8 43.76 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-04-02T20:56:08Z #8 43.76 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-04-02T20:56:08Z #8 44.23 Selecting previously unselected package liblsan0:amd64. +2024-04-02T20:56:08Z #8 44.24 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-04-02T20:56:08Z #8 44.24 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-04-02T20:56:09Z #8 44.43 Selecting previously unselected package libtsan0:amd64. +2024-04-02T20:56:09Z #8 44.44 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-04-02T20:56:09Z #8 44.44 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-04-02T20:56:09Z #8 44.86 Selecting previously unselected package libubsan1:amd64. +2024-04-02T20:56:09Z #8 44.87 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-04-02T20:56:09Z #8 44.87 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-04-02T20:56:09Z #8 45.07 Selecting previously unselected package libquadmath0:amd64. +2024-04-02T20:56:09Z #8 45.07 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-04-02T20:56:09Z #8 45.08 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-04-02T20:56:09Z #8 45.14 Selecting previously unselected package libgcc-10-dev:amd64. +2024-04-02T20:56:09Z #8 45.14 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-04-02T20:56:09Z #8 45.15 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-02T20:56:10Z #8 45.65 Selecting previously unselected package gcc-10. +2024-04-02T20:56:10Z #8 45.65 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-04-02T20:56:10Z #8 45.65 Unpacking gcc-10 (10.2.1-6) ... +2024-04-02T20:56:13Z #8 48.66 Selecting previously unselected package gcc. +2024-04-02T20:56:13Z #8 48.66 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-04-02T20:56:13Z #8 48.67 Unpacking gcc (4:10.2.1-1) ... +2024-04-02T20:56:13Z #8 48.72 Selecting previously unselected package libva2:amd64. +2024-04-02T20:56:13Z #8 48.72 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-04-02T20:56:13Z #8 48.73 Unpacking libva2:amd64 (2.10.0-1) ... +2024-04-02T20:56:13Z #8 48.77 Selecting previously unselected package libdrm-common. +2024-04-02T20:56:13Z #8 48.78 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-04-02T20:56:13Z #8 48.78 Unpacking libdrm-common (2.4.104-1) ... +2024-04-02T20:56:13Z #8 48.83 Selecting previously unselected package libdrm2:amd64. +2024-04-02T20:56:13Z #8 48.84 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-04-02T20:56:13Z #8 48.84 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-04-02T20:56:13Z #8 48.90 Selecting previously unselected package libpciaccess0:amd64. +2024-04-02T20:56:13Z #8 48.90 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-04-02T20:56:13Z #8 48.91 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-04-02T20:56:13Z #8 48.96 Selecting previously unselected package libdrm-intel1:amd64. +2024-04-02T20:56:13Z #8 48.97 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-04-02T20:56:13Z #8 48.97 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-02T20:56:13Z #8 49.02 Selecting previously unselected package i965-va-driver:amd64. +2024-04-02T20:56:13Z #8 49.03 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-04-02T20:56:13Z #8 49.03 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-02T20:56:13Z #8 49.14 Selecting previously unselected package libigdgmm11:amd64. +2024-04-02T20:56:13Z #8 49.14 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-04-02T20:56:13Z #8 49.15 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-02T20:56:13Z #8 49.21 Selecting previously unselected package intel-media-va-driver:amd64. +2024-04-02T20:56:13Z #8 49.21 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-04-02T20:56:13Z #8 49.22 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-02T20:56:14Z #8 49.59 Selecting previously unselected package libaom0:amd64. +2024-04-02T20:56:14Z #8 49.59 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-04-02T20:56:14Z #8 49.59 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-02T20:56:14Z #8 49.80 Selecting previously unselected package libmfx1:amd64. +2024-04-02T20:56:14Z #8 49.81 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-04-02T20:56:14Z #8 49.81 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-04-02T20:56:15Z #8 50.53 Selecting previously unselected package libva-drm2:amd64. +2024-04-02T20:56:15Z #8 50.53 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-04-02T20:56:15Z #8 50.54 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-04-02T20:56:15Z #8 50.58 Selecting previously unselected package libva-x11-2:amd64. +2024-04-02T20:56:15Z #8 50.58 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-04-02T20:56:15Z #8 50.59 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-04-02T20:56:15Z #8 50.63 Selecting previously unselected package libvdpau1:amd64. +2024-04-02T20:56:15Z #8 50.64 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-04-02T20:56:15Z #8 50.64 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-04-02T20:56:15Z #8 50.69 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-04-02T20:56:15Z #8 50.70 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-04-02T20:56:15Z #8 50.70 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-02T20:56:15Z #8 50.75 Selecting previously unselected package libavutil56:amd64. +2024-04-02T20:56:15Z #8 50.75 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-02T20:56:15Z #8 50.76 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-02T20:56:15Z #8 50.84 Selecting previously unselected package libcodec2-0.9:amd64. +2024-04-02T20:56:15Z #8 50.84 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-04-02T20:56:15Z #8 50.85 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-02T20:56:16Z #8 52.27 Selecting previously unselected package libdav1d4:amd64. +2024-04-02T20:56:16Z #8 52.27 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-04-02T20:56:16Z #8 52.28 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-04-02T20:56:16Z #8 52.38 Selecting previously unselected package libgsm1:amd64. +2024-04-02T20:56:16Z #8 52.39 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-04-02T20:56:16Z #8 52.40 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-04-02T20:56:16Z #8 52.45 Selecting previously unselected package libmp3lame0:amd64. +2024-04-02T20:56:16Z #8 52.45 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-04-02T20:56:16Z #8 52.46 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-04-02T20:56:17Z #8 52.55 Selecting previously unselected package libopenjp2-7:amd64. +2024-04-02T20:56:17Z #8 52.55 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-04-02T20:56:17Z #8 52.56 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-02T20:56:17Z #8 52.62 Selecting previously unselected package libopus0:amd64. +2024-04-02T20:56:17Z #8 52.62 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-04-02T20:56:17Z #8 52.63 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-04-02T20:56:17Z #8 52.70 Selecting previously unselected package librsvg2-2:amd64. +2024-04-02T20:56:17Z #8 52.70 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-02T20:56:17Z #8 52.71 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-02T20:56:17Z #8 53.19 Selecting previously unselected package libshine3:amd64. +2024-04-02T20:56:17Z #8 53.20 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-04-02T20:56:17Z #8 53.20 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-04-02T20:56:17Z #8 53.25 Selecting previously unselected package libsnappy1v5:amd64. +2024-04-02T20:56:17Z #8 53.26 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-04-02T20:56:17Z #8 53.26 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-02T20:56:17Z #8 53.30 Selecting previously unselected package libspeex1:amd64. +2024-04-02T20:56:17Z #8 53.31 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-04-02T20:56:17Z #8 53.31 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-02T20:56:17Z #8 53.36 Selecting previously unselected package libsoxr0:amd64. +2024-04-02T20:56:17Z #8 53.37 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-04-02T20:56:17Z #8 53.37 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-04-02T20:56:17Z #8 53.42 Selecting previously unselected package libswresample3:amd64. +2024-04-02T20:56:17Z #8 53.43 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-02T20:56:17Z #8 53.43 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-02T20:56:18Z #8 53.52 Selecting previously unselected package libogg0:amd64. +2024-04-02T20:56:18Z #8 53.52 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-04-02T20:56:18Z #8 53.53 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-04-02T20:56:18Z #8 53.58 Selecting previously unselected package libtheora0:amd64. +2024-04-02T20:56:18Z #8 53.59 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-04-02T20:56:18Z #8 53.59 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-02T20:56:18Z #8 53.66 Selecting previously unselected package libtwolame0:amd64. +2024-04-02T20:56:18Z #8 53.67 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-04-02T20:56:18Z #8 53.67 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-04-02T20:56:18Z #8 53.72 Selecting previously unselected package libvorbis0a:amd64. +2024-04-02T20:56:18Z #8 53.72 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-04-02T20:56:18Z #8 53.73 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-04-02T20:56:18Z #8 53.79 Selecting previously unselected package libvorbisenc2:amd64. +2024-04-02T20:56:18Z #8 53.79 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-04-02T20:56:18Z #8 53.80 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-02T20:56:18Z #8 53.86 Selecting previously unselected package libvpx6:amd64. +2024-04-02T20:56:18Z #8 53.87 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-04-02T20:56:18Z #8 53.87 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-02T20:56:18Z #8 54.03 Selecting previously unselected package libwavpack1:amd64. +2024-04-02T20:56:18Z #8 54.03 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-04-02T20:56:18Z #8 54.04 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-04-02T20:56:18Z #8 54.09 Selecting previously unselected package libwebpmux3:amd64. +2024-04-02T20:56:18Z #8 54.10 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-02T20:56:18Z #8 54.10 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-02T20:56:18Z #8 54.16 Selecting previously unselected package libx264-160:amd64. +2024-04-02T20:56:18Z #8 54.17 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-04-02T20:56:18Z #8 54.17 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-02T20:56:18Z #8 54.29 Selecting previously unselected package libnuma1:amd64. +2024-04-02T20:56:18Z #8 54.29 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-04-02T20:56:18Z #8 54.30 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-02T20:56:18Z #8 54.35 Selecting previously unselected package libx265-192:amd64. +2024-04-02T20:56:18Z #8 54.35 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-04-02T20:56:18Z #8 54.36 Unpacking libx265-192:amd64 (3.4-2) ... +2024-04-02T20:56:19Z #8 54.71 Selecting previously unselected package libxvidcore4:amd64. +2024-04-02T20:56:19Z #8 54.71 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-04-02T20:56:19Z #8 54.71 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-02T20:56:19Z #8 54.79 Selecting previously unselected package libzvbi-common. +2024-04-02T20:56:19Z #8 54.80 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-04-02T20:56:19Z #8 54.80 Unpacking libzvbi-common (0.2.35-18) ... +2024-04-02T20:56:19Z #8 54.85 Selecting previously unselected package libzvbi0:amd64. +2024-04-02T20:56:19Z #8 54.85 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-04-02T20:56:19Z #8 54.86 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-04-02T20:56:19Z #8 54.94 Selecting previously unselected package libavcodec58:amd64. +2024-04-02T20:56:19Z #8 54.94 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-02T20:56:19Z #8 54.95 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-02T20:56:20Z #8 55.76 Selecting previously unselected package libc-dev-bin. +2024-04-02T20:56:20Z #8 55.76 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... +2024-04-02T20:56:20Z #8 55.77 Unpacking libc-dev-bin (2.31-13+deb11u8) ... +2024-04-02T20:56:20Z #8 55.81 Selecting previously unselected package libxpm4:amd64. +2024-04-02T20:56:20Z #8 55.82 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-04-02T20:56:20Z #8 55.82 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-02T20:56:20Z #8 55.87 Selecting previously unselected package libgd3:amd64. +2024-04-02T20:56:20Z #8 55.88 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-04-02T20:56:20Z #8 55.88 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-04-02T20:56:20Z #8 55.94 Selecting previously unselected package libc-devtools. +2024-04-02T20:56:20Z #8 55.94 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... +2024-04-02T20:56:20Z #8 55.95 Unpacking libc-devtools (2.31-13+deb11u8) ... +2024-04-02T20:56:20Z #8 56.00 Selecting previously unselected package linux-libc-dev:amd64. +2024-04-02T20:56:20Z #8 56.01 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-04-02T20:56:20Z #8 56.01 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-02T20:56:20Z #8 56.36 Selecting previously unselected package libcrypt-dev:amd64. +2024-04-02T20:56:20Z #8 56.36 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-04-02T20:56:20Z #8 56.37 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-02T20:56:20Z #8 56.42 Selecting previously unselected package libtirpc-dev:amd64. +2024-04-02T20:56:20Z #8 56.43 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-04-02T20:56:20Z #8 56.43 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-02T20:56:20Z #8 56.50 Selecting previously unselected package libnsl-dev:amd64. +2024-04-02T20:56:20Z #8 56.51 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-04-02T20:56:20Z #8 56.51 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-04-02T20:56:21Z #8 56.57 Selecting previously unselected package libc6-dev:amd64. +2024-04-02T20:56:21Z #8 56.58 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... +2024-04-02T20:56:21Z #8 56.58 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-04-02T20:56:21Z #8 57.08 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-04-02T20:56:21Z #8 57.09 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-04-02T20:56:21Z #8 57.09 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-02T20:56:21Z #8 57.13 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-04-02T20:56:21Z #8 57.14 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-04-02T20:56:21Z #8 57.14 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-02T20:56:22Z #8 57.59 Selecting previously unselected package libdrm-radeon1:amd64. +2024-04-02T20:56:22Z #8 57.59 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-04-02T20:56:22Z #8 57.59 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-02T20:56:22Z #8 57.64 Selecting previously unselected package libelf1:amd64. +2024-04-02T20:56:22Z #8 57.64 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-04-02T20:56:22Z #8 57.65 Unpacking libelf1:amd64 (0.183-1) ... +2024-04-02T20:56:22Z #8 57.72 Selecting previously unselected package libfontenc1:amd64. +2024-04-02T20:56:22Z #8 57.73 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-04-02T20:56:22Z #8 57.74 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-02T20:56:22Z #8 57.77 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-04-02T20:56:22Z #8 57.78 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-02T20:56:22Z #8 57.78 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-02T20:56:22Z #8 57.83 Selecting previously unselected package libglapi-mesa:amd64. +2024-04-02T20:56:22Z #8 57.83 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-04-02T20:56:22Z #8 57.84 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-02T20:56:22Z #8 57.89 Selecting previously unselected package libz3-4:amd64. +2024-04-02T20:56:22Z #8 57.89 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-04-02T20:56:22Z #8 57.90 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-04-02T20:56:23Z #8 59.00 Selecting previously unselected package libllvm11:amd64. +2024-04-02T20:56:23Z #8 59.00 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-04-02T20:56:23Z #8 59.01 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-04-02T20:56:26Z #8 61.97 Selecting previously unselected package libsensors-config. +2024-04-02T20:56:26Z #8 61.97 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-04-02T20:56:26Z #8 61.98 Unpacking libsensors-config (1:3.6.0-7) ... +2024-04-02T20:56:26Z #8 62.03 Selecting previously unselected package libsensors5:amd64. +2024-04-02T20:56:26Z #8 62.03 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-04-02T20:56:26Z #8 62.09 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-04-02T20:56:26Z #8 62.14 Selecting previously unselected package libvulkan1:amd64. +2024-04-02T20:56:26Z #8 62.15 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-04-02T20:56:26Z #8 62.15 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-02T20:56:26Z #8 62.22 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-04-02T20:56:26Z #8 62.22 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-04-02T20:56:26Z #8 62.23 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-02T20:56:28Z #8 63.76 Selecting previously unselected package libglvnd0:amd64. +2024-04-02T20:56:28Z #8 63.76 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-04-02T20:56:28Z #8 63.77 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-04-02T20:56:28Z #8 63.83 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-04-02T20:56:28Z #8 63.84 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-04-02T20:56:28Z #8 63.84 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-02T20:56:28Z #8 63.89 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-04-02T20:56:28Z #8 63.90 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-04-02T20:56:28Z #8 63.90 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-02T20:56:28Z #8 63.97 Selecting previously unselected package libxcb-glx0:amd64. +2024-04-02T20:56:28Z #8 63.97 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-04-02T20:56:28Z #8 63.98 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-04-02T20:56:28Z #8 64.05 Selecting previously unselected package libxcb-present0:amd64. +2024-04-02T20:56:28Z #8 64.06 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-04-02T20:56:28Z #8 64.07 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-04-02T20:56:28Z #8 64.15 Selecting previously unselected package libxcb-sync1:amd64. +2024-04-02T20:56:28Z #8 64.15 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-04-02T20:56:28Z #8 64.16 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-04-02T20:56:28Z #8 64.22 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-04-02T20:56:28Z #8 64.22 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-04-02T20:56:28Z #8 64.23 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-02T20:56:28Z #8 64.29 Selecting previously unselected package libxshmfence1:amd64. +2024-04-02T20:56:28Z #8 64.29 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-04-02T20:56:28Z #8 64.30 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-04-02T20:56:28Z #8 64.34 Selecting previously unselected package libxxf86vm1:amd64. +2024-04-02T20:56:28Z #8 64.35 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-04-02T20:56:28Z #8 64.36 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-02T20:56:28Z #8 64.40 Selecting previously unselected package libglx-mesa0:amd64. +2024-04-02T20:56:28Z #8 64.41 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-04-02T20:56:28Z #8 64.41 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-02T20:56:29Z #8 64.49 Selecting previously unselected package libgtk-3-bin. +2024-04-02T20:56:29Z #8 64.49 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-04-02T20:56:29Z #8 64.50 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-02T20:56:29Z #8 64.56 Selecting previously unselected package librsvg2-common:amd64. +2024-04-02T20:56:29Z #8 64.56 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-02T20:56:29Z #8 64.57 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-02T20:56:29Z #8 64.62 Selecting previously unselected package libglx0:amd64. +2024-04-02T20:56:29Z #8 64.63 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-04-02T20:56:29Z #8 64.64 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-04-02T20:56:29Z #8 64.69 Selecting previously unselected package libgl1:amd64. +2024-04-02T20:56:29Z #8 64.69 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-04-02T20:56:29Z #8 64.70 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-04-02T20:56:29Z #8 64.77 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-04-02T20:56:29Z #8 64.78 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-04-02T20:56:29Z #8 64.79 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-02T20:56:29Z #8 64.87 Selecting previously unselected package libxt6:amd64. +2024-04-02T20:56:29Z #8 64.87 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-04-02T20:56:29Z #8 64.88 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-04-02T20:56:29Z #8 64.96 Selecting previously unselected package libxmu6:amd64. +2024-04-02T20:56:29Z #8 64.96 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-02T20:56:29Z #8 64.97 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-02T20:56:29Z #8 65.02 Selecting previously unselected package libxaw7:amd64. +2024-04-02T20:56:29Z #8 65.02 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-04-02T20:56:29Z #8 65.03 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-02T20:56:29Z #8 65.10 Selecting previously unselected package libxcb-randr0:amd64. +2024-04-02T20:56:29Z #8 65.10 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-04-02T20:56:29Z #8 65.11 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-04-02T20:56:29Z #8 65.16 Selecting previously unselected package libxcb-shape0:amd64. +2024-04-02T20:56:29Z #8 65.17 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-04-02T20:56:29Z #8 65.18 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-04-02T20:56:29Z #8 65.24 Selecting previously unselected package libxft2:amd64. +2024-04-02T20:56:29Z #8 65.24 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-04-02T20:56:29Z #8 65.25 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-04-02T20:56:29Z #8 65.31 Selecting previously unselected package libxkbfile1:amd64. +2024-04-02T20:56:29Z #8 65.32 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-04-02T20:56:29Z #8 65.33 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-02T20:56:29Z #8 65.38 Selecting previously unselected package libxmuu1:amd64. +2024-04-02T20:56:29Z #8 65.39 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-02T20:56:29Z #8 65.39 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-02T20:56:29Z #8 65.46 Selecting previously unselected package libxv1:amd64. +2024-04-02T20:56:29Z #8 65.47 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-04-02T20:56:29Z #8 65.47 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-04-02T20:56:29Z #8 65.52 Selecting previously unselected package libxxf86dga1:amd64. +2024-04-02T20:56:29Z #8 65.52 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-04-02T20:56:29Z #8 65.53 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-02T20:56:30Z #8 65.57 Selecting previously unselected package manpages-dev. +2024-04-02T20:56:30Z #8 65.58 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-04-02T20:56:30Z #8 65.58 Unpacking manpages-dev (5.10-1) ... +2024-04-02T20:56:30Z #8 66.00 Selecting previously unselected package mesa-va-drivers:amd64. +2024-04-02T20:56:30Z #8 66.01 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-04-02T20:56:30Z #8 66.01 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-02T20:56:31Z #8 66.48 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-04-02T20:56:31Z #8 66.48 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-04-02T20:56:31Z #8 66.49 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-02T20:56:31Z #8 66.94 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-04-02T20:56:31Z #8 66.95 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-04-02T20:56:31Z #8 66.95 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-02T20:56:32Z #8 67.65 Selecting previously unselected package patch. +2024-04-02T20:56:32Z #8 67.65 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-04-02T20:56:32Z #8 67.66 Unpacking patch (2.7.6-7) ... +2024-04-02T20:56:32Z #8 67.72 Selecting previously unselected package unzip. +2024-04-02T20:56:32Z #8 67.72 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-04-02T20:56:32Z #8 67.72 Unpacking unzip (6.0-26+deb11u1) ... +2024-04-02T20:56:32Z #8 67.79 Selecting previously unselected package va-driver-all:amd64. +2024-04-02T20:56:32Z #8 67.79 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-04-02T20:56:32Z #8 67.80 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-04-02T20:56:32Z #8 67.83 Selecting previously unselected package vdpau-driver-all:amd64. +2024-04-02T20:56:32Z #8 67.84 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-04-02T20:56:32Z #8 67.84 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-04-02T20:56:32Z #8 67.89 Selecting previously unselected package x11-utils. +2024-04-02T20:56:32Z #8 67.90 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-04-02T20:56:32Z #8 67.90 Unpacking x11-utils (7.7+5) ... +2024-04-02T20:56:32Z #8 68.07 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-02T20:56:32Z #8 68.09 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-02T20:56:32Z #8 68.11 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-02T20:56:32Z #8 68.13 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-02T20:56:32Z #8 68.15 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-02T20:56:32Z #8 68.17 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-04-02T20:56:32Z #8 68.18 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-04-02T20:56:32Z #8 68.20 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-04-02T20:56:32Z #8 68.21 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-02T20:56:32Z #8 68.23 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-02T20:56:32Z #8 68.24 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-04-02T20:56:32Z #8 68.25 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-02T20:56:32Z #8 68.27 Setting up libshine3:amd64 (3.1.1-2) ... +2024-04-02T20:56:32Z #8 68.28 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-02T20:56:32Z #8 68.30 Setting up hicolor-icon-theme (0.17-2) ... +2024-04-02T20:56:32Z #8 68.33 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-04-02T20:56:32Z #8 68.34 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-04-02T20:56:32Z #8 68.36 Setting up libicu67:amd64 (67.1-7) ... +2024-04-02T20:56:32Z #8 68.38 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-04-02T20:56:32Z #8 68.39 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-04-02T20:56:32Z #8 68.41 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-04-02T20:56:32Z #8 68.42 Setting up manpages (5.10-1) ... +2024-04-02T20:56:32Z #8 68.44 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-04-02T20:56:32Z #8 68.45 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-04-02T20:56:33Z #8 69.05 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-04-02T20:56:34Z #8 69.69 Setting up unzip (6.0-26+deb11u1) ... +2024-04-02T20:56:34Z #8 70.28 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-02T20:56:34Z #8 70.30 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-02T20:56:34Z #8 70.31 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-04-02T20:56:34Z #8 70.32 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-04-02T20:56:34Z #8 70.33 Setting up libsensors-config (1:3.6.0-7) ... +2024-04-02T20:56:34Z #8 70.36 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-02T20:56:34Z #8 70.38 Setting up libdeflate0:amd64 (1.7-1) ... +2024-04-02T20:56:34Z #8 70.39 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-02T20:56:34Z #8 70.41 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-02T20:56:34Z #8 70.44 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-02T20:56:34Z #8 70.45 First installation detected... +2024-04-02T20:56:34Z #8 70.46 Checking NSS setup... +2024-04-02T20:56:34Z #8 70.46 Setting up xkb-data (2.29-2) ... +2024-04-02T20:56:34Z #8 70.48 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-04-02T20:56:35Z #8 70.50 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-04-02T20:56:35Z #8 70.52 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-02T20:56:35Z #8 70.54 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-02T20:56:35Z #8 70.56 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-02T20:56:35Z #8 70.58 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-04-02T20:56:35Z #8 70.60 Setting up libasan6:amd64 (10.2.1-6) ... +2024-04-02T20:56:35Z #8 70.62 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-02T20:56:35Z #8 70.64 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-02T20:56:35Z #8 70.66 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-04-02T20:56:35Z #8 70.68 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-04-02T20:56:35Z #8 70.70 Setting up libasound2-data (1.2.4-1.1) ... +2024-04-02T20:56:35Z #8 70.71 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-02T20:56:35Z #8 70.73 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-04-02T20:56:35Z #8 70.75 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-02T20:56:35Z #8 70.77 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-04-02T20:56:35Z #8 70.78 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-02T20:56:35Z #8 70.80 Setting up libva2:amd64 (2.10.0-1) ... +2024-04-02T20:56:35Z #8 70.81 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-02T20:56:35Z #8 70.83 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-04-02T20:56:35Z #8 70.84 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-04-02T20:56:35Z #8 70.86 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-02T20:56:35Z #8 70.88 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-04-02T20:56:35Z #8 70.90 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-02T20:56:35Z #8 70.91 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-02T20:56:35Z #8 70.93 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-02T20:56:35Z #8 70.94 Setting up dbus (1.12.28-0+deb11u1) ... +2024-04-02T20:56:35Z #8 71.12 invoke-rc.d: could not determine current runlevel +2024-04-02T20:56:35Z #8 71.12 invoke-rc.d: policy-rc.d denied execution of start. +2024-04-02T20:56:35Z #8 71.13 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-02T20:56:35Z #8 71.15 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-04-02T20:56:35Z #8 71.16 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-04-02T20:56:35Z #8 71.18 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-02T20:56:35Z #8 71.19 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-02T20:56:35Z #8 71.20 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-04-02T20:56:35Z #8 71.21 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-04-02T20:56:35Z #8 71.23 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-04-02T20:56:35Z #8 71.24 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-02T20:56:36Z #8 71.59 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-02T20:56:36Z #8 71.59 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-02T20:56:36Z #8 71.60 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-04-02T20:56:36Z #8 71.62 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-04-02T20:56:36Z #8 71.63 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-02T20:56:36Z #8 71.65 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-02T20:56:36Z #8 71.66 Setting up patch (2.7.6-7) ... +2024-04-02T20:56:36Z #8 71.68 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-02T20:56:36Z #8 71.70 Setting up fonts-dejavu-core (2.37-2) ... +2024-04-02T20:56:36Z #8 71.81 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-04-02T20:56:36Z #8 71.82 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-04-02T20:56:36Z #8 71.83 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-02T20:56:36Z #8 71.84 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-02T20:56:36Z #8 71.86 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-04-02T20:56:36Z #8 71.88 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-02T20:56:36Z #8 71.89 Setting up libatk1.0-data (2.36.0-2) ... +2024-04-02T20:56:36Z #8 71.90 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-02T20:56:36Z #8 71.92 Setting up alsa-topology-conf (1.2.4-1) ... +2024-04-02T20:56:36Z #8 71.93 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-04-02T20:56:36Z #8 71.94 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-02T20:56:36Z #8 71.95 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-04-02T20:56:36Z #8 71.97 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-02T20:56:36Z #8 71.99 Setting up libvdpau1:amd64 (1.4-3) ... +2024-04-02T20:56:36Z #8 72.00 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-02T20:56:36Z #8 72.01 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-04-02T20:56:36Z #8 72.03 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-04-02T20:56:36Z #8 72.04 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-04-02T20:56:36Z #8 72.05 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-02T20:56:36Z #8 72.31 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-04-02T20:56:36Z #8 72.32 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-02T20:56:36Z #8 72.36 Setting up libthai-data (0.1.28-3) ... +2024-04-02T20:56:36Z #8 72.37 Setting up fonts-humor-sans (1.0-4) ... +2024-04-02T20:56:36Z #8 72.39 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-04-02T20:56:36Z #8 72.40 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-02T20:56:36Z #8 72.41 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-02T20:56:36Z #8 72.43 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-02T20:56:36Z #8 72.44 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-02T20:56:36Z #8 72.46 Setting up glib-networking-common (2.66.0-2) ... +2024-04-02T20:56:36Z #8 72.47 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-04-02T20:56:37Z #8 72.48 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-04-02T20:56:37Z #8 72.50 Setting up libisl23:amd64 (0.23-1) ... +2024-04-02T20:56:37Z #8 72.51 Setting up libc-dev-bin (2.31-13+deb11u8) ... +2024-04-02T20:56:37Z #8 72.53 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-02T20:56:37Z #8 72.55 Setting up libdrm-common (2.4.104-1) ... +2024-04-02T20:56:37Z #8 72.57 Setting up libelf1:amd64 (0.183-1) ... +2024-04-02T20:56:37Z #8 72.58 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-02T20:56:37Z #8 72.61 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-02T20:56:37Z #8 72.62 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-04-02T20:56:37Z #8 72.64 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-02T20:56:37Z #8 72.65 Setting up libzvbi-common (0.2.35-18) ... +2024-04-02T20:56:37Z #8 72.66 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-04-02T20:56:37Z #8 72.68 Setting up cpp-10 (10.2.1-6) ... +2024-04-02T20:56:37Z #8 72.69 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-04-02T20:56:37Z #8 72.71 Setting up libitm1:amd64 (10.2.1-6) ... +2024-04-02T20:56:37Z #8 72.72 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-02T20:56:37Z #8 72.73 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-04-02T20:56:37Z #8 72.75 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-02T20:56:37Z #8 72.76 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-02T20:56:37Z #8 72.77 Setting up libctf0:amd64 (2.35.2-2) ... +2024-04-02T20:56:37Z #8 72.79 Setting up glib-networking-services (2.66.0-2) ... +2024-04-02T20:56:37Z #8 72.80 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-04-02T20:56:37Z #8 72.82 Setting up manpages-dev (5.10-1) ... +2024-04-02T20:56:37Z #8 72.83 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-02T20:56:37Z #8 72.84 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-04-02T20:56:37Z #8 72.86 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-04-02T20:56:37Z #8 72.87 Setting up fontconfig-config (2.13.1-4.2) ... +2024-04-02T20:56:37Z #8 73.25 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-02T20:56:37Z #8 73.27 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-02T20:56:37Z #8 73.28 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-02T20:56:37Z #8 73.30 Setting up libx265-192:amd64 (3.4-2) ... +2024-04-02T20:56:37Z #8 73.31 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-02T20:56:37Z #8 73.32 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-02T20:56:37Z #8 73.34 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-02T20:56:37Z #8 73.35 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-02T20:56:37Z #8 73.37 Setting up libthai0:amd64 (0.1.28-3) ... +2024-04-02T20:56:37Z #8 73.38 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-02T20:56:37Z #8 73.40 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-02T20:56:37Z #8 73.41 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-02T20:56:37Z #8 73.43 Setting up shared-mime-info (2.0-1) ... +2024-04-02T20:56:41Z #8 76.86 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-04-02T20:56:41Z #8 76.87 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-04-02T20:56:41Z #8 76.89 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-02T20:56:41Z #8 76.91 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-02T20:56:41Z #8 76.93 Setting up cpp (4:10.2.1-1) ... +2024-04-02T20:56:41Z #8 76.95 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-04-02T20:56:41Z #8 76.96 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-02T20:56:41Z #8 76.97 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-02T20:56:41Z #8 77.01 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-02T20:56:41Z #8 77.07 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-04-02T20:56:41Z #8 77.08 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-02T20:56:41Z #8 77.10 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-02T20:56:41Z #8 77.11 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-02T20:56:41Z #8 77.12 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-02T20:56:41Z #8 77.14 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-02T20:56:41Z #8 77.15 Setting up fontconfig (2.13.1-4.2) ... +2024-04-02T20:56:43Z #8 77.16 Regenerating fonts cache... done. +2024-04-02T20:56:43Z #8 79.19 Setting up libxft2:amd64 (2.3.2-2) ... +2024-04-02T20:56:43Z #8 79.20 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-02T20:56:43Z #8 79.22 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-02T20:56:43Z #8 79.23 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-02T20:56:43Z #8 79.25 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-02T20:56:43Z #8 79.26 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-02T20:56:43Z #8 79.28 Setting up dconf-service (0.38.0-2) ... +2024-04-02T20:56:43Z #8 79.29 Setting up binutils (2.35.2-2) ... +2024-04-02T20:56:43Z #8 79.31 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-04-02T20:56:43Z #8 79.32 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-02T20:56:43Z #8 79.33 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-04-02T20:56:43Z #8 79.42 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-04-02T20:56:43Z #8 79.43 Setting up libgd3:amd64 (2.3.0-2) ... +2024-04-02T20:56:43Z #8 79.44 Setting up gcc-10 (10.2.1-6) ... +2024-04-02T20:56:43Z #8 79.46 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-02T20:56:43Z #8 79.48 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-02T20:56:43Z #8 79.49 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-02T20:56:43Z #8 79.50 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-02T20:56:43Z #8 79.52 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-02T20:56:44Z #8 79.53 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-02T20:56:44Z #8 79.54 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-02T20:56:44Z #8 79.56 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-02T20:56:44Z #8 79.57 Setting up libc-devtools (2.31-13+deb11u8) ... +2024-04-02T20:56:44Z #8 79.59 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-02T20:56:44Z #8 79.60 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-02T20:56:44Z #8 79.61 Setting up libglx0:amd64 (1.3.2-1) ... +2024-04-02T20:56:44Z #8 79.63 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-02T20:56:44Z #8 79.64 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-02T20:56:44Z #8 79.66 Setting up gcc (4:10.2.1-1) ... +2024-04-02T20:56:44Z #8 79.68 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-02T20:56:44Z #8 79.69 Setting up libgl1:amd64 (1.3.2-1) ... +2024-04-02T20:56:44Z #8 79.71 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-04-02T20:56:44Z #8 79.72 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-02T20:56:44Z #8 79.74 Setting up x11-utils (7.7+5) ... +2024-04-02T20:56:44Z #8 79.78 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-02T20:56:44Z #8 79.80 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-02T20:56:44Z #8 79.81 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-02T20:56:44Z #8 79.83 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-04-02T20:56:44Z #8 79.84 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-04-02T20:56:44Z #8 79.86 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-04-02T20:56:44Z #8 79.90 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-02T20:56:44Z #8 79.94 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-04-02T20:56:44Z #8 79.95 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-02T20:56:44Z #8 79.97 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-02T20:56:44Z #8 79.98 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-02T20:56:44Z #8 80.00 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-02T20:56:44Z #8 80.03 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-02T20:56:44Z #8 80.05 Setting up firefox-esr (115.9.1esr-1~deb11u1) ... +2024-04-02T20:56:44Z #8 80.07 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-04-02T20:56:44Z #8 80.07 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-04-02T20:56:44Z #8 80.08 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-04-02T20:56:44Z #8 80.08 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-04-02T20:56:44Z #8 80.09 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-02T20:56:44Z #8 80.12 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-02T20:56:47Z #8 DONE 83.5s +2024-04-02T20:56:48Z +2024-04-02T20:56:48Z #9 [4/9] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-04-02T20:57:34Z #9 DONE 46.8s +2024-04-02T20:57:34Z +2024-04-02T20:57:34Z #10 [5/9] COPY environment.yml /environment.yml +2024-04-02T20:57:34Z #10 DONE 0.1s +2024-04-02T20:57:34Z +2024-04-02T20:57:34Z #11 [6/9] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-04-02T21:00:08Z #11 153.4 Transaction +2024-04-02T21:00:08Z #11 153.4 +2024-04-02T21:00:08Z #11 153.4 Prefix: /opt/conda/envs/birdy +2024-04-02T21:00:08Z #11 153.4 +2024-04-02T21:00:08Z #11 153.4 Updating specs: +2024-04-02T21:00:08Z #11 153.4 +2024-04-02T21:00:08Z #11 153.4 - xclim +2024-04-02T21:00:08Z #11 153.4 - ravenpy +2024-04-02T21:00:08Z #11 153.4 - python=3.10 +2024-04-02T21:00:08Z #11 153.4 +2024-04-02T21:00:08Z #11 153.4 +2024-04-02T21:00:08Z #11 153.5 Package Version Build Channel Size +2024-04-02T21:00:08Z #11 153.5 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-02T21:00:08Z #11 153.5 Install: +2024-04-02T21:00:08Z #11 153.5 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-02T21:00:08Z #11 153.5 +2024-04-02T21:00:08Z #11 153.5 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-04-02T21:00:08Z #11 153.5 + python_abi 3.10 4_cp310 conda-forge 6kB +2024-04-02T21:00:08Z #11 153.5 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB +2024-04-02T21:00:08Z #11 153.5 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB +2024-04-02T21:00:08Z #11 153.5 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB +2024-04-02T21:00:08Z #11 153.5 + mpi 1.0 openmpi conda-forge 4kB +2024-04-02T21:00:08Z #11 153.5 + libgomp 13.2.0 h807b86a_5 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-04-02T21:00:08Z #11 153.5 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-04-02T21:00:08Z #11 153.5 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-04-02T21:00:08Z #11 153.5 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-04-02T21:00:08Z #11 153.5 + lzo 2.10 h516909a_1000 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-04-02T21:00:08Z #11 153.5 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-04-02T21:00:08Z #11 153.5 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-04-02T21:00:08Z #11 153.5 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-04-02T21:00:08Z #11 153.5 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-04-02T21:00:08Z #11 153.5 + c-ares 1.28.1 hd590300_0 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + libev 4.33 hd590300_2 conda-forge 113kB +2024-04-02T21:00:08Z #11 153.5 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-04-02T21:00:08Z #11 153.5 + aws-c-common 0.9.14 hd590300_0 conda-forge 226kB +2024-04-02T21:00:08Z #11 153.5 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-04-02T21:00:08Z #11 153.5 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-04-02T21:00:08Z #11 153.5 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-04-02T21:00:08Z #11 153.5 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-04-02T21:00:08Z #11 153.5 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-04-02T21:00:08Z #11 153.5 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-04-02T21:00:08Z #11 153.5 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB +2024-04-02T21:00:08Z #11 153.5 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-04-02T21:00:08Z #11 153.5 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-04-02T21:00:08Z #11 153.5 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + openssl 3.2.1 hd590300_1 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB +2024-04-02T21:00:08Z #11 153.5 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-04-02T21:00:08Z #11 153.5 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-04-02T21:00:08Z #11 153.5 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-04-02T21:00:08Z #11 153.5 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-04-02T21:00:08Z #11 153.5 + icu 73.2 h59595ed_0 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-04-02T21:00:08Z #11 153.5 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB +2024-04-02T21:00:08Z #11 153.5 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB +2024-04-02T21:00:08Z #11 153.5 + libdeflate 1.20 hd590300_0 conda-forge 72kB +2024-04-02T21:00:08Z #11 153.5 + libaec 1.1.3 h59595ed_0 conda-forge 35kB +2024-04-02T21:00:08Z #11 153.5 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-04-02T21:00:08Z #11 153.5 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-04-02T21:00:08Z #11 153.5 + snappy 1.1.10 h9fff704_0 conda-forge 39kB +2024-04-02T21:00:08Z #11 153.5 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-04-02T21:00:08Z #11 153.5 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-04-02T21:00:08Z #11 153.5 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB +2024-04-02T21:00:08Z #11 153.5 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB +2024-04-02T21:00:08Z #11 153.5 + libnsl 2.0.1 hd590300_0 conda-forge 33kB +2024-04-02T21:00:08Z #11 153.5 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-04-02T21:00:08Z #11 153.5 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB +2024-04-02T21:00:08Z #11 153.5 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-04-02T21:00:08Z #11 153.5 + aws-c-compression 0.2.18 h4466546_2 conda-forge 19kB +2024-04-02T21:00:08Z #11 153.5 + aws-c-sdkutils 0.1.15 h4466546_2 conda-forge 55kB +2024-04-02T21:00:08Z #11 153.5 + aws-checksums 0.1.18 h4466546_2 conda-forge 50kB +2024-04-02T21:00:08Z #11 153.5 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-04-02T21:00:08Z #11 153.5 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-04-02T21:00:08Z #11 153.5 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-04-02T21:00:08Z #11 153.5 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB +2024-04-02T21:00:08Z #11 153.5 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-04-02T21:00:08Z #11 153.5 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-04-02T21:00:08Z #11 153.5 + s2n 1.4.8 h06160fa_0 conda-forge 341kB +2024-04-02T21:00:08Z #11 153.5 + aws-c-cal 0.6.10 ha9bf9b1_2 conda-forge 55kB +2024-04-02T21:00:08Z #11 153.5 + expat 2.6.2 h59595ed_0 conda-forge 138kB +2024-04-02T21:00:08Z #11 153.5 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB +2024-04-02T21:00:08Z #11 153.5 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-04-02T21:00:08Z #11 153.5 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-04-02T21:00:08Z #11 153.5 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-04-02T21:00:08Z #11 153.5 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-04-02T21:00:08Z #11 153.5 + libssh2 1.11.0 h0841786_0 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB +2024-04-02T21:00:08Z #11 153.5 + pcre2 10.43 hcad00b1_0 conda-forge 951kB +2024-04-02T21:00:08Z #11 153.5 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-04-02T21:00:08Z #11 153.5 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2024-04-02T21:00:08Z #11 153.5 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB +2024-04-02T21:00:08Z #11 153.5 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB +2024-04-02T21:00:08Z #11 153.5 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-04-02T21:00:08Z #11 153.5 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-04-02T21:00:08Z #11 153.5 + readline 8.2 h8228510_1 conda-forge 281kB +2024-04-02T21:00:08Z #11 153.5 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-04-02T21:00:08Z #11 153.5 + libxml2 2.12.6 h232c23b_1 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + ucx 1.15.0 ha691c75_8 conda-forge 7MB +2024-04-02T21:00:08Z #11 153.5 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-04-02T21:00:08Z #11 153.5 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-04-02T21:00:08Z #11 153.5 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB +2024-04-02T21:00:08Z #11 153.5 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-04-02T21:00:08Z #11 153.5 + aws-c-io 0.14.6 h96cd748_2 conda-forge 158kB +2024-04-02T21:00:08Z #11 153.5 + libglib 2.80.0 hf2295e7_1 conda-forge 3MB +2024-04-02T21:00:08Z #11 153.5 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-04-02T21:00:08Z #11 153.5 + orc 2.0.0 h1e5e2c1_0 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-04-02T21:00:08Z #11 153.5 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB +2024-04-02T21:00:08Z #11 153.5 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB +2024-04-02T21:00:08Z #11 153.5 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-04-02T21:00:08Z #11 153.5 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB +2024-04-02T21:00:08Z #11 153.5 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB +2024-04-02T21:00:08Z #11 153.5 + krb5 1.21.2 h659d440_0 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB +2024-04-02T21:00:08Z #11 153.5 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-04-02T21:00:08Z #11 153.5 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-04-02T21:00:08Z #11 153.5 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB +2024-04-02T21:00:08Z #11 153.5 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-04-02T21:00:08Z #11 153.5 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-04-02T21:00:08Z #11 153.5 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-04-02T21:00:08Z #11 153.5 + aws-c-http 0.8.1 hbfc29b2_7 conda-forge 194kB +2024-04-02T21:00:08Z #11 153.5 + aws-c-event-stream 0.4.2 he635cd5_6 conda-forge 54kB +2024-04-02T21:00:08Z #11 153.5 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-04-02T21:00:08Z #11 153.5 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-04-02T21:00:08Z #11 153.5 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-04-02T21:00:08Z #11 153.5 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-04-02T21:00:08Z #11 153.5 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-04-02T21:00:08Z #11 153.5 + libpq 16.2 h33b98f1_1 conda-forge 3MB +2024-04-02T21:00:08Z #11 153.5 + libcurl 8.7.1 hca28451_0 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + aws-c-mqtt 0.10.3 hffff1cc_2 conda-forge 163kB +2024-04-02T21:00:08Z #11 153.5 + aws-c-auth 0.7.16 haed3651_8 conda-forge 103kB +2024-04-02T21:00:08Z #11 153.5 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-04-02T21:00:08Z #11 153.5 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB +2024-04-02T21:00:08Z #11 153.5 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB +2024-04-02T21:00:08Z #11 153.5 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB +2024-04-02T21:00:08Z #11 153.5 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-04-02T21:00:08Z #11 153.5 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB +2024-04-02T21:00:08Z #11 153.5 + proj 9.3.1 h1d62c97_0 conda-forge 3MB +2024-04-02T21:00:08Z #11 153.5 + aws-c-s3 0.5.4 h4893938_0 conda-forge 106kB +2024-04-02T21:00:08Z #11 153.5 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB +2024-04-02T21:00:08Z #11 153.5 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB +2024-04-02T21:00:08Z #11 153.5 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-04-02T21:00:08Z #11 153.5 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-04-02T21:00:08Z #11 153.5 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB +2024-04-02T21:00:08Z #11 153.5 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB +2024-04-02T21:00:08Z #11 153.5 + aws-crt-cpp 0.26.4 hba3594f_2 conda-forge 335kB +2024-04-02T21:00:08Z #11 153.5 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB +2024-04-02T21:00:08Z #11 153.5 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-04-02T21:00:08Z #11 153.5 + aws-sdk-cpp 1.11.267 hb1af6a8_4 conda-forge 4MB +2024-04-02T21:00:08Z #11 153.5 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB +2024-04-02T21:00:08Z #11 153.5 + libarrow 15.0.2 hb86450c_1_cpu conda-forge 8MB +2024-04-02T21:00:08Z #11 153.5 + tiledb 2.21.1 ha9641ad_1 conda-forge 5MB +2024-04-02T21:00:08Z #11 153.5 + libparquet 15.0.2 h352af49_1_cpu conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + libarrow-gandiva 15.0.2 hb016d2e_1_cpu conda-forge 897kB +2024-04-02T21:00:08Z #11 153.5 + libarrow-flight 15.0.2 hc6145d9_1_cpu conda-forge 503kB +2024-04-02T21:00:08Z #11 153.5 + libarrow-acero 15.0.2 h59595ed_1_cpu conda-forge 597kB +2024-04-02T21:00:08Z #11 153.5 + libarrow-flight-sql 15.0.2 h757c851_1_cpu conda-forge 194kB +2024-04-02T21:00:08Z #11 153.5 + libarrow-dataset 15.0.2 h59595ed_1_cpu conda-forge 584kB +2024-04-02T21:00:08Z #11 153.5 + libarrow-substrait 15.0.2 h757c851_1_cpu conda-forge 519kB +2024-04-02T21:00:08Z #11 153.5 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-04-02T21:00:08Z #11 153.5 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-04-02T21:00:08Z #11 153.5 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-04-02T21:00:08Z #11 153.5 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-04-02T21:00:08Z #11 153.5 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-04-02T21:00:08Z #11 153.5 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB +2024-04-02T21:00:08Z #11 153.5 + fonts-conda-forge 1 0 conda-forge 4kB +2024-04-02T21:00:08Z #11 153.5 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-04-02T21:00:08Z #11 153.5 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB +2024-04-02T21:00:08Z #11 153.5 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB +2024-04-02T21:00:08Z #11 153.5 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-04-02T21:00:08Z #11 153.5 + poppler 24.03.0 h590f24d_0 conda-forge 2MB +2024-04-02T21:00:08Z #11 153.5 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB +2024-04-02T21:00:08Z #11 153.5 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB +2024-04-02T21:00:08Z #11 153.5 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB +2024-04-02T21:00:08Z #11 153.5 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-04-02T21:00:08Z #11 153.5 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB +2024-04-02T21:00:08Z #11 153.5 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB +2024-04-02T21:00:08Z #11 153.5 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB +2024-04-02T21:00:08Z #11 153.5 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB +2024-04-02T21:00:08Z #11 153.5 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-02T21:00:08Z #11 153.5 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-04-02T21:00:08Z #11 153.5 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-04-02T21:00:08Z #11 153.5 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-02T21:00:08Z #11 153.5 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-04-02T21:00:08Z #11 153.5 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB +2024-04-02T21:00:08Z #11 153.5 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-04-02T21:00:08Z #11 153.5 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-04-02T21:00:08Z #11 153.5 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-04-02T21:00:08Z #11 153.5 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB +2024-04-02T21:00:08Z #11 153.5 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-04-02T21:00:08Z #11 153.5 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-04-02T21:00:08Z #11 153.5 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-04-02T21:00:08Z #11 153.5 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-04-02T21:00:08Z #11 153.5 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-04-02T21:00:08Z #11 153.5 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-04-02T21:00:08Z #11 153.5 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-04-02T21:00:08Z #11 153.5 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-04-02T21:00:08Z #11 153.5 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-04-02T21:00:08Z #11 153.5 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-02T21:00:08Z #11 153.5 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-04-02T21:00:08Z #11 153.5 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-04-02T21:00:08Z #11 153.5 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-04-02T21:00:08Z #11 153.5 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB +2024-04-02T21:00:08Z #11 153.5 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB +2024-04-02T21:00:08Z #11 153.5 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-04-02T21:00:08Z #11 153.5 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-04-02T21:00:08Z #11 153.5 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB +2024-04-02T21:00:08Z #11 153.5 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB +2024-04-02T21:00:08Z #11 153.5 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-04-02T21:00:08Z #11 153.5 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB +2024-04-02T21:00:08Z #11 153.5 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB +2024-04-02T21:00:08Z #11 153.5 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-04-02T21:00:08Z #11 153.5 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-04-02T21:00:08Z #11 153.5 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-04-02T21:00:08Z #11 153.5 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-04-02T21:00:08Z #11 153.5 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-04-02T21:00:08Z #11 153.5 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB +2024-04-02T21:00:08Z #11 153.5 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-04-02T21:00:08Z #11 153.5 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB +2024-04-02T21:00:08Z #11 153.5 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB +2024-04-02T21:00:08Z #11 153.5 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-02T21:00:08Z #11 153.5 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB +2024-04-02T21:00:08Z #11 153.5 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB +2024-04-02T21:00:08Z #11 153.5 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB +2024-04-02T21:00:08Z #11 153.5 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB +2024-04-02T21:00:08Z #11 153.5 + tornado 6.4 py310h2372a71_0 conda-forge 651kB +2024-04-02T21:00:08Z #11 153.5 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB +2024-04-02T21:00:08Z #11 153.5 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB +2024-04-02T21:00:08Z #11 153.5 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB +2024-04-02T21:00:08Z #11 153.5 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB +2024-04-02T21:00:08Z #11 153.5 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB +2024-04-02T21:00:08Z #11 153.5 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB +2024-04-02T21:00:08Z #11 153.5 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB +2024-04-02T21:00:08Z #11 153.5 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB +2024-04-02T21:00:08Z #11 153.5 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB +2024-04-02T21:00:08Z #11 153.5 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB +2024-04-02T21:00:08Z #11 153.5 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB +2024-04-02T21:00:08Z #11 153.5 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB +2024-04-02T21:00:08Z #11 153.5 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB +2024-04-02T21:00:08Z #11 153.5 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB +2024-04-02T21:00:08Z #11 153.5 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB +2024-04-02T21:00:08Z #11 153.5 + fonttools 4.50.0 py310h2372a71_0 conda-forge 2MB +2024-04-02T21:00:08Z #11 153.5 + pyarrow 15.0.2 py310hf9e7431_1_cpu conda-forge 4MB +2024-04-02T21:00:08Z #11 153.5 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB +2024-04-02T21:00:08Z #11 153.5 + gdal 3.8.4 py310he073c5f_5 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB +2024-04-02T21:00:08Z #11 153.5 + numba 0.59.1 py310h7dc5dd1_0 conda-forge 4MB +2024-04-02T21:00:08Z #11 153.5 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB +2024-04-02T21:00:08Z #11 153.5 + h5py 3.10.0 nompi_py310h65828d5_101 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB +2024-04-02T21:00:08Z #11 153.5 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB +2024-04-02T21:00:08Z #11 153.5 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB +2024-04-02T21:00:08Z #11 153.5 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB +2024-04-02T21:00:08Z #11 153.5 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB +2024-04-02T21:00:08Z #11 153.5 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB +2024-04-02T21:00:08Z #11 153.5 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB +2024-04-02T21:00:08Z #11 153.5 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB +2024-04-02T21:00:08Z #11 153.5 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-04-02T21:00:08Z #11 153.5 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-04-02T21:00:08Z #11 153.5 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB +2024-04-02T21:00:08Z #11 153.5 + dask-core 2024.4.0 pyhd8ed1ab_0 conda-forge 881kB +2024-04-02T21:00:08Z #11 153.5 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB +2024-04-02T21:00:08Z #11 153.5 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-04-02T21:00:08Z #11 153.5 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-04-02T21:00:08Z #11 153.5 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-04-02T21:00:08Z #11 153.5 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-04-02T21:00:08Z #11 153.5 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-04-02T21:00:08Z #11 153.5 + pydantic 2.6.4 pyhd8ed1ab_0 conda-forge 272kB +2024-04-02T21:00:08Z #11 153.5 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-04-02T21:00:08Z #11 153.5 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB +2024-04-02T21:00:08Z #11 153.5 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB +2024-04-02T21:00:08Z #11 153.5 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB +2024-04-02T21:00:08Z #11 153.5 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-04-02T21:00:08Z #11 153.5 + properscoring 0.1 py_0 conda-forge 22kB +2024-04-02T21:00:08Z #11 153.5 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-04-02T21:00:08Z #11 153.5 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-04-02T21:00:08Z #11 153.5 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-04-02T21:00:08Z #11 153.5 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB +2024-04-02T21:00:08Z #11 153.5 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB +2024-04-02T21:00:08Z #11 153.5 + dask-expr 1.0.9 pyhd8ed1ab_0 conda-forge 143kB +2024-04-02T21:00:08Z #11 153.5 + distributed 2024.4.0 pyhd8ed1ab_0 conda-forge 797kB +2024-04-02T21:00:08Z #11 153.5 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-04-02T21:00:08Z #11 153.5 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-04-02T21:00:08Z #11 153.5 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-04-02T21:00:08Z #11 153.5 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-04-02T21:00:08Z #11 153.5 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-04-02T21:00:08Z #11 153.5 + dask 2024.4.0 pyhd8ed1ab_0 conda-forge 7kB +2024-04-02T21:00:08Z #11 153.5 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB +2024-04-02T21:00:08Z #11 153.5 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB +2024-04-02T21:00:08Z #11 153.5 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-04-02T21:00:08Z #11 153.5 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-04-02T21:00:08Z #11 153.5 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB +2024-04-02T21:00:08Z #11 153.5 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB +2024-04-02T21:00:08Z #11 153.5 + rioxarray 0.15.2 pyhd8ed1ab_0 conda-forge 48kB +2024-04-02T21:00:08Z #11 153.5 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB +2024-04-02T21:00:08Z #11 153.5 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-04-02T21:00:08Z #11 153.5 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB +2024-04-02T21:00:08Z #11 153.5 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-04-02T21:00:08Z #11 153.5 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB +2024-04-02T21:00:08Z #11 153.5 +2024-04-02T21:00:08Z #11 153.5 Summary: +2024-04-02T21:00:08Z #11 153.5 +2024-04-02T21:00:08Z #11 153.5 Install: 299 packages +2024-04-02T21:00:08Z #11 153.5 +2024-04-02T21:00:08Z #11 153.5 Total download: 438MB +2024-04-02T21:00:08Z #11 153.5 +2024-04-02T21:00:08Z #11 153.5 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-02T21:00:08Z #11 153.5 +2024-04-02T21:00:08Z #11 153.5 +2024-04-02T21:01:43Z #11 248.1 +2024-04-02T21:01:43Z #11 248.1 Looking for: ['xclim', 'ravenpy', 'python=3.10'] +2024-04-02T21:01:43Z #11 248.1 +2024-04-02T21:01:43Z #11 248.1 +2024-04-02T21:01:43Z #11 248.1 Downloading and Extracting Packages: ...working... done +2024-04-02T21:01:47Z #11 248.1 Preparing transaction: ...working... done +2024-04-02T21:02:01Z #11 252.6 Verifying transaction: ...working... done +2024-04-02T21:02:33Z #11 266.3 Executing transaction: ...working... +2024-04-02T21:02:33Z #11 298.8 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-04-02T21:02:33Z #11 298.8 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-04-02T21:02:33Z #11 298.8 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-04-02T21:02:33Z #11 298.8 mpiexec --mca opal_cuda_support 1 ... +2024-04-02T21:02:33Z #11 298.8 +2024-04-02T21:02:33Z #11 298.8 In addition, the UCX support is also built but disabled by default. +2024-04-02T21:02:33Z #11 298.8 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-04-02T21:02:33Z #11 298.8 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-04-02T21:02:33Z #11 298.8 Equivalently, you can set the MCA parameters in the command line: +2024-04-02T21:02:33Z #11 298.8 mpiexec --mca pml ucx --mca osc ucx ... +2024-04-02T21:02:33Z #11 298.8 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-04-02T21:02:33Z #11 298.8 Please consult UCX's documentation for detail. +2024-04-02T21:02:33Z #11 298.8 +2024-04-02T21:02:33Z #11 298.8 +2024-04-02T21:02:33Z #11 298.8 done +2024-04-02T21:02:33Z #11 298.9 +2024-04-02T21:02:33Z #11 298.9 To activate this environment, use +2024-04-02T21:02:33Z #11 298.9 +2024-04-02T21:02:33Z #11 298.9 $ mamba activate birdy +2024-04-02T21:02:33Z #11 298.9 +2024-04-02T21:02:33Z #11 298.9 To deactivate an active environment, use +2024-04-02T21:02:33Z #11 298.9 +2024-04-02T21:02:33Z #11 298.9 $ mamba deactivate +2024-04-02T21:02:33Z #11 298.9 +2024-04-02T21:02:37Z #11 302.3 Channels: +2024-04-02T21:02:37Z #11 302.3 - conda-forge +2024-04-02T21:02:37Z #11 302.3 - cdat +2024-04-02T21:02:37Z #11 302.3 - bokeh +2024-04-02T21:02:37Z #11 302.3 - pyviz/label/dev +2024-04-02T21:02:37Z #11 302.3 - defaults +2024-04-02T21:02:37Z #11 302.3 Platform: linux-64 +2024-04-02T21:03:09Z #11 302.3 Collecting package metadata (repodata.json): ...working... done +2024-04-02T21:10:38Z #11 334.2 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-02T21:19:04Z #11 1289.3 done +2024-04-02T21:20:44Z #11 1389.6 +2024-04-02T21:20:44Z #11 1389.6 Downloading and Extracting Packages: ...working... done +2024-04-02T21:20:51Z #11 1389.6 Preparing transaction: ...working... done +2024-04-02T21:21:14Z #11 1396.6 Verifying transaction: ...working... done +2024-04-02T21:22:10Z #11 1419.4 Executing transaction: ...working... +2024-04-02T21:22:10Z #11 1475.5 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-04-02T21:22:10Z #11 1475.5 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-04-02T21:22:10Z #11 1475.5 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-04-02T21:22:10Z #11 1475.5 mpiexec --mca opal_cuda_support 1 ... +2024-04-02T21:22:10Z #11 1475.5 +2024-04-02T21:22:10Z #11 1475.5 In addition, the UCX support is also built but disabled by default. +2024-04-02T21:22:10Z #11 1475.5 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-04-02T21:22:10Z #11 1475.5 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-04-02T21:22:10Z #11 1475.5 Equivalently, you can set the MCA parameters in the command line: +2024-04-02T21:22:10Z #11 1475.5 mpiexec --mca pml ucx --mca osc ucx ... +2024-04-02T21:22:10Z #11 1475.5 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-04-02T21:22:10Z #11 1475.5 Please consult UCX's documentation for detail. +2024-04-02T21:22:10Z #11 1475.5 +2024-04-02T21:22:10Z #11 1475.5 +2024-04-02T21:22:10Z #11 1475.5 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-04-02T21:22:10Z #11 1475.5 given by the platformdirs library. To remove this warning and +2024-04-02T21:22:10Z #11 1475.5 see the appropriate new directories, set the environment variable +2024-04-02T21:22:10Z #11 1475.5 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-04-02T21:22:10Z #11 1475.5 The use of platformdirs will be the default in `jupyter_core` v6 +2024-04-02T21:22:10Z #11 1475.5 from . import paths +2024-04-02T21:22:10Z #11 1475.5 Enabling: jupyterlab_git +2024-04-02T21:22:10Z #11 1475.5 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-02T21:22:10Z #11 1475.5 - Validating... +2024-04-02T21:22:10Z #11 1475.5 jupyterlab_git OK +2024-04-02T21:22:10Z #11 1475.5 +2024-04-02T21:22:10Z #11 1475.5 done +2024-04-02T21:22:56Z #11 1483.4 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-04-02T21:22:56Z #11 1521.3 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.2hf66e6z.requirements.txt', '--exists-action=b'] +2024-04-02T21:22:56Z #11 1521.3 Pip subprocess output: +2024-04-02T21:22:56Z #11 1521.3 Collecting xncml (from -r /condaenv.2hf66e6z.requirements.txt (line 1)) +2024-04-02T21:22:56Z #11 1521.3 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting hsclient (from -r /condaenv.2hf66e6z.requirements.txt (line 2)) +2024-04-02T21:22:56Z #11 1521.3 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting fstd2nc (from -r /condaenv.2hf66e6z.requirements.txt (line 3)) +2024-04-02T21:22:56Z #11 1521.3 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 7.7 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Installing build dependencies: started +2024-04-02T21:22:56Z #11 1521.3 Installing build dependencies: finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Getting requirements to build wheel: started +2024-04-02T21:22:56Z #11 1521.3 Getting requirements to build wheel: finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Installing backend dependencies: started +2024-04-02T21:22:56Z #11 1521.3 Installing backend dependencies: finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (pyproject.toml): started +2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (pyproject.toml): finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Collecting figanos (from -r /condaenv.2hf66e6z.requirements.txt (line 4)) +2024-04-02T21:22:56Z #11 1521.3 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting pixiedust (from -r /condaenv.2hf66e6z.requirements.txt (line 5)) +2024-04-02T21:22:56Z #11 1521.3 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 20.6 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): started +2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Collecting ipython_blocking (from -r /condaenv.2hf66e6z.requirements.txt (line 6)) +2024-04-02T21:22:56Z #11 1521.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting jupyternotify (from -r /condaenv.2hf66e6z.requirements.txt (line 7)) +2024-04-02T21:22:56Z #11 1521.3 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): started +2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Collecting jupyterlab-logout (from -r /condaenv.2hf66e6z.requirements.txt (line 8)) +2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.2hf66e6z.requirements.txt (line 9)) +2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting pytest-tornasync (from -r /condaenv.2hf66e6z.requirements.txt (line 10)) +2024-04-02T21:22:56Z #11 1521.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting xmltodict (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) +2024-04-02T21:22:56Z #11 1521.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting xsdata (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) +2024-04-02T21:22:56Z #11 1521.3 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (2023.8.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (1.6.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (1.6.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (2024.4.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (5.9.8) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (69.2.0) +2024-04-02T21:22:56Z #11 1521.3 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) +2024-04-02T21:22:56Z #11 1521.3 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.31.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.0.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.2hf66e6z.requirements.txt (line 3)) (1.24.4) +2024-04-02T21:22:56Z #11 1521.3 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.2hf66e6z.requirements.txt (line 3)) +2024-04-02T21:22:56Z #11 1521.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-04-02T21:22:56Z #11 1521.3 Collecting progress (from fstd2nc->-r /condaenv.2hf66e6z.requirements.txt (line 3)) +2024-04-02T21:22:56Z #11 1521.3 Downloading progress-1.6.tar.gz (7.8 kB) +2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): started +2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.22.0) +2024-04-02T21:22:56Z #11 1521.3 Collecting cairosvg (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) +2024-04-02T21:22:56Z #11 1521.3 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.14.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.8.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.1.4) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (4.2.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (6.0.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.13.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.22.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.47.0) +2024-04-02T21:22:56Z #11 1521.3 Collecting geojson (from pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) +2024-04-02T21:22:56Z #11 1521.3 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting astunparse (from pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) +2024-04-02T21:22:56Z #11 1521.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) (3.6) +2024-04-02T21:22:56Z #11 1521.3 Collecting colour (from pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) +2024-04-02T21:22:56Z #11 1521.3 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (8.22.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (8.1.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.7.4) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (1.0.0) +2024-04-02T21:22:56Z #11 1521.3 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) +2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab-4.1.5-py3-none-any.whl.metadata (15 kB) +2024-04-02T21:22:56Z #11 1521.3 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-04-02T21:22:56Z #11 1521.3 Collecting jupyterlab-logout (from -r /condaenv.2hf66e6z.requirements.txt (line 8)) +2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.6.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (3.6.7) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (23.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (6.4) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (5.7.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.25.4) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.13.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.2.4) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.8.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.0.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (6.5.6) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (3.1.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.0.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.2hf66e6z.requirements.txt (line 10)) (8.1.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.2hf66e6z.requirements.txt (line 3)) (2024.1) +2024-04-02T21:22:56Z #11 1521.3 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) +2024-04-02T21:22:56Z #11 1521.3 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.6.4) +2024-04-02T21:22:56Z #11 1521.3 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) +2024-04-02T21:22:56Z #11 1521.3 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (0.6.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.16.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (4.10.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.2hf66e6z.requirements.txt (line 10)) (2.0.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.2hf66e6z.requirements.txt (line 10)) (1.4.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.2hf66e6z.requirements.txt (line 10)) (1.2.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (24.0.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.3.8) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.9.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (8.1.7) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.0.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.0.6) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.59.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.23) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.4.1.post1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.12.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.14.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (3.0.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (2024.3.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (1.4.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (0.12.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (7.1.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.9.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2024.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) (0.43.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) (1.16.0) +2024-04-02T21:22:56Z #11 1521.3 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) +2024-04-02T21:22:56Z #11 1521.3 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) +2024-04-02T21:22:56Z #11 1521.3 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) +2024-04-02T21:22:56Z #11 1521.3 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.7.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (9.4.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.2.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.0.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.3.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.5.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.2.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.12.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (4.50.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.4.5) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.1.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.9.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (5.1.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.19.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.1.6) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (3.0.42) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (2.17.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.6.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (5.14.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (4.9.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.2.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (4.0.10) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (3.0.10) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (5.5.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (6.6.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (7.16.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (6.29.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (7.4.9) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (5.10.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (3.3.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (3.6) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.0.7) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2024.2.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (3.2.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.2.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.34.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2023.8.12) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (23.2.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.1.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.7.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (4.0.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (3.17.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.8.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.1.5) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.4) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (1.6.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (24.0.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (4.3.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (23.1.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.10.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.5.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (7.7.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.20.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.8.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.18.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.7.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.9.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.8.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.5.9) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.14.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.9.24) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (4.21.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (4.12.3) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (6.1.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (0.3.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (3.0.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (1.5.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (2.19.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.2.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.2.4) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (1.0.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.7.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.2.13) +2024-04-02T21:22:56Z #11 1521.3 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) +2024-04-02T21:22:56Z #11 1521.3 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.3.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.4.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.16.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.5.1) +2024-04-02T21:22:56Z #11 1521.3 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) +2024-04-02T21:22:56Z #11 1521.3 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (1.8.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.42.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (2.4.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (2.0.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (2.4.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.2.2) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.5.6) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.3.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.22) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2023.12.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.34.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.18.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.0.7) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.1.4) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.1.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (22.1.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.19.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (21.2.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (2.5) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.5.1) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (20.11.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.4) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.3.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.13) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.3.0) +2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.9.0.20240316) +2024-04-02T21:22:56Z #11 1521.3 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 49.3 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 9.5 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 35.8 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 61.7 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 4.5 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading xsdata-24.4-py3-none-any.whl (229 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 25.2 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 23.0 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 9.6 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-04-02T21:22:56Z #11 1521.3 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 25.5 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.9 MB/s eta 0:00:00 +2024-04-02T21:22:56Z #11 1521.3 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress +2024-04-02T21:22:56Z #11 1521.3 Building wheel for fstd2nc (pyproject.toml): started +2024-04-02T21:22:56Z #11 1521.3 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=8c51ba8ba79c2cffabde3004ff0155d2ad4f107b85bc5df34f1e6924b5a554cd +2024-04-02T21:22:56Z #11 1521.3 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a +2024-04-02T21:22:56Z #11 1521.3 Building wheel for pixiedust (setup.py): started +2024-04-02T21:22:56Z #11 1521.3 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=28c6755aba6c3683818e3e9f46d6a5cc1d676e2e0d73a9f4aba3fe20b004c80c +2024-04-02T21:22:56Z #11 1521.3 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 +2024-04-02T21:22:56Z #11 1521.3 Building wheel for jupyternotify (setup.py): started +2024-04-02T21:22:56Z #11 1521.3 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=d6b2a1dd4a6268ae87f29a1effcf5db5ec694c6614497e3d9d61f181ac53e1ed +2024-04-02T21:22:56Z #11 1521.3 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 +2024-04-02T21:22:56Z #11 1521.3 Building wheel for progress (setup.py): started +2024-04-02T21:22:56Z #11 1521.3 Building wheel for progress (setup.py): finished with status 'done' +2024-04-02T21:22:56Z #11 1521.3 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9614 sha256=c63b13390684ddb9c15f04a5e8d7a8e47fdfb9454cfb6f398d11d2bf8e13469e +2024-04-02T21:22:56Z #11 1521.3 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 +2024-04-02T21:22:56Z #11 1521.3 Successfully built fstd2nc pixiedust jupyternotify progress +2024-04-02T21:22:56Z #11 1521.3 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-04-02T21:22:56Z #11 1521.3 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 +2024-04-02T21:22:56Z #11 1521.3 +2024-04-02T21:22:56Z #11 1521.3 done +2024-04-02T21:22:56Z #11 1521.3 # +2024-04-02T21:22:56Z #11 1521.3 # To activate this environment, use +2024-04-02T21:22:56Z #11 1521.3 # +2024-04-02T21:22:56Z #11 1521.3 # $ conda activate birdy +2024-04-02T21:22:56Z #11 1521.3 # +2024-04-02T21:22:56Z #11 1521.3 # To deactivate an active environment, use +2024-04-02T21:22:56Z #11 1521.3 # +2024-04-02T21:22:56Z #11 1521.3 # $ conda deactivate +2024-04-02T21:22:56Z #11 1521.3 +2024-04-02T21:23:07Z #11 1532.7 Will remove 783 (1.19 GB) tarball(s). +2024-04-02T21:23:07Z #11 1532.7 Will remove 1 index cache(s). +2024-04-02T21:23:07Z #11 1532.7 Will remove 148 (1.22 GB) package(s). +2024-04-02T21:23:07Z #11 1532.7 There are no tempfile(s) to remove. +2024-04-02T21:23:07Z #11 1532.7 There are no logfile(s) to remove. +2024-04-02T21:23:08Z #11 DONE 1533.5s +2024-04-02T21:23:08Z +2024-04-02T21:23:08Z #12 [7/9] RUN python -m ipykernel install --name birdy +2024-04-02T21:23:09Z #12 1.368 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-04-02T21:23:10Z #12 DONE 1.6s +2024-04-02T21:23:10Z +2024-04-02T21:23:10Z #13 [8/9] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-04-02T21:23:10Z #13 0.571 Enabling: voila +2024-04-02T21:23:10Z #13 0.572 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-02T21:23:10Z #13 0.574 - Validating... +2024-04-02T21:23:11Z #13 1.331 voila 0.5.6 OK +2024-04-02T21:23:11Z #13 1.717 Enabling: panel.io.jupyter_server_extension +2024-04-02T21:23:11Z #13 1.717 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-02T21:23:11Z #13 1.719 - Validating... +2024-04-02T21:23:13Z #13 3.318 panel.io.jupyter_server_extension OK +2024-04-02T21:23:13Z #13 3.810 - Validating... +2024-04-02T21:23:14Z #13 4.663 dask_labextension 6.2.0 OK +2024-04-02T21:23:14Z #13 4.663 - Validating... +2024-04-02T21:23:14Z #13 4.663 jupyter_server_proxy 4.1.1-0.dev OK +2024-04-02T21:23:14Z #13 4.663 - Validating... +2024-04-02T21:23:14Z #13 4.842 jupyter_resource_usage 0.7.1 OK +2024-04-02T21:23:14Z #13 4.843 - Validating... +2024-04-02T21:23:14Z #13 4.901  X is jupyter_server_ydoc importable? +2024-04-02T21:23:14Z #13 4.902 - Validating... +2024-04-02T21:23:15Z #13 4.976 jupyterlab 3.6.7 OK +2024-04-02T21:23:15Z #13 4.977 - Validating... +2024-04-02T21:23:15Z #13 5.165 jupyterlab_jupytext OK +2024-04-02T21:23:15Z #13 5.166 - Validating... +2024-04-02T21:23:15Z #13 5.170 mamba_gator 5.2.1 OK +2024-04-02T21:23:15Z #13 5.170 - Validating... +2024-04-02T21:23:15Z #13 5.188 nbdime 4.0.1 OK +2024-04-02T21:23:15Z #13 5.188 - Validating... +2024-04-02T21:23:16Z #13 6.262 panel.io.jupyter_server_extension OK +2024-04-02T21:23:16Z #13 6.262 - Validating... +2024-04-02T21:23:16Z #13 6.334 nbresuse OK +2024-04-02T21:23:16Z #13 6.334 - Validating... +2024-04-02T21:23:16Z #13 6.596 voila.server_extension OK +2024-04-02T21:23:16Z #13 6.596 - Validating... +2024-04-02T21:23:16Z #13 6.598 jupyterlab_git OK +2024-04-02T21:23:16Z #13 6.598 - Validating... +2024-04-02T21:23:16Z #13 6.598 voila 0.5.6 OK +2024-04-02T21:23:16Z #13 6.599 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-04-02T21:23:16Z #13 6.599 dask_labextension  enabled  +2024-04-02T21:23:16Z #13 6.599 jupyter_server_proxy  enabled  +2024-04-02T21:23:16Z #13 6.599 jupyter_resource_usage  enabled  +2024-04-02T21:23:16Z #13 6.599 jupyter_server_ydoc  enabled  +2024-04-02T21:23:16Z #13 6.599 jupyterlab  enabled  +2024-04-02T21:23:16Z #13 6.599 jupyterlab_jupytext  enabled  +2024-04-02T21:23:16Z #13 6.599 mamba_gator  enabled  +2024-04-02T21:23:16Z #13 6.599 nbdime  enabled  +2024-04-02T21:23:16Z #13 6.599 panel.io.jupyter_server_extension  enabled  +2024-04-02T21:23:16Z #13 6.599 nbresuse  enabled  +2024-04-02T21:23:16Z #13 6.599 voila.server_extension  enabled  +2024-04-02T21:23:16Z #13 6.599 jupyterlab_git  enabled  +2024-04-02T21:23:16Z #13 6.599 voila  enabled  +2024-04-02T21:23:17Z #13 DONE 7.1s +2024-04-02T21:23:17Z +2024-04-02T21:23:17Z #14 [9/9] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-04-02T21:23:17Z #14 0.358 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-04-02T21:23:17Z #14 0.382 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.108.133, 185.199.109.133, ... +2024-04-02T21:23:17Z #14 0.387 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-04-02T21:23:17Z #14 0.390 HTTP request sent, awaiting response... 200 OK +2024-04-02T21:23:17Z #14 0.514 Length: 9769 (9.5K) [text/plain] +2024-04-02T21:23:17Z #14 0.514 Saving to: ‘/usr/local/bin/start.sh’ +2024-04-02T21:23:17Z #14 0.515 +2024-04-02T21:23:17Z #14 0.515 0K ......... 100% 6.33M=0.001s +2024-04-02T21:23:17Z #14 0.518 +2024-04-02T21:23:17Z #14 0.518 2024-04-02 21:23:17 (6.33 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-04-02T21:23:17Z #14 0.518 +2024-04-02T21:23:17Z #14 0.520 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-04-02T21:23:17Z #14 0.543 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2024-04-02T21:23:17Z #14 0.544 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-04-02T21:23:17Z #14 0.549 HTTP request sent, awaiting response... 200 OK +2024-04-02T21:23:17Z #14 0.624 Length: 359 [text/plain] +2024-04-02T21:23:17Z #14 0.624 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-04-02T21:23:17Z #14 0.624 +2024-04-02T21:23:17Z #14 0.624 0K 100% 15.1M=0s +2024-04-02T21:23:17Z #14 0.625 +2024-04-02T21:23:17Z #14 0.625 2024-04-02 21:23:17 (15.1 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-04-02T21:23:17Z #14 0.625 +2024-04-02T21:23:17Z #14 0.631 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-04-02T21:23:17Z #14 0.655 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2024-04-02T21:23:17Z #14 0.656 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-04-02T21:23:17Z #14 0.661 HTTP request sent, awaiting response... 200 OK +2024-04-02T21:23:17Z #14 0.737 Length: 852 [text/plain] +2024-04-02T21:23:17Z #14 0.737 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-04-02T21:23:17Z #14 0.737 +2024-04-02T21:23:17Z #14 0.737 0K 100% 37.5M=0s +2024-04-02T21:23:17Z #14 0.738 +2024-04-02T21:23:17Z #14 0.738 2024-04-02 21:23:17 (37.5 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-04-02T21:23:17Z #14 0.738 +2024-04-02T21:23:17Z #14 0.742 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-04-02T21:23:17Z #14 0.767 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2024-04-02T21:23:17Z #14 0.768 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-04-02T21:23:17Z #14 0.774 HTTP request sent, awaiting response... 200 OK +2024-04-02T21:23:17Z #14 0.858 Length: 1034 (1.0K) [text/plain] +2024-04-02T21:23:17Z #14 0.858 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-04-02T21:23:17Z #14 0.858 +2024-04-02T21:23:17Z #14 0.858 0K . 100% 46.0M=0s +2024-04-02T21:23:17Z #14 0.859 +2024-04-02T21:23:17Z #14 0.859 2024-04-02 21:23:17 (46.0 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-04-02T21:23:17Z #14 0.859 +2024-04-02T21:23:17Z #14 0.865 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-04-02T21:23:17Z #14 0.890 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2024-04-02T21:23:17Z #14 0.891 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-04-02T21:23:17Z #14 0.897 HTTP request sent, awaiting response... 200 OK +2024-04-02T21:23:18Z #14 0.973 Length: 1836 (1.8K) [text/plain] +2024-04-02T21:23:18Z #14 0.973 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-04-02T21:23:18Z #14 0.973 +2024-04-02T21:23:18Z #14 0.973 0K . 100% 10.9M=0s +2024-04-02T21:23:18Z #14 0.975 +2024-04-02T21:23:18Z #14 0.975 2024-04-02 21:23:17 (10.9 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-04-02T21:23:18Z #14 0.975 +2024-04-02T21:23:18Z #14 1.156 --2024-04-02 21:23:18-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-04-02T21:23:18Z #14 1.180 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.63, 3.162.103.84, 3.162.103.75, ... +2024-04-02T21:23:18Z #14 1.188 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.63|:443... connected. +2024-04-02T21:23:18Z #14 1.193 HTTP request sent, awaiting response... 200 OK +2024-04-02T21:23:18Z #14 1.371 Length: 129825343 (124M) [application/x-tar] +2024-04-02T21:23:18Z #14 1.372 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-04-02T21:23:18Z #14 1.372 +2024-04-02T21:23:18Z #14 1.372 0K .......... .......... .......... .......... .......... 0% 12.6M 10s +2024-04-02T21:23:18Z #14 1.376 50K .......... .......... .......... .......... .......... 0% 11.6M 10s +2024-04-02T21:23:18Z #14 1.380 100K .......... .......... .......... .......... .......... 0% 23.7M 9s +2024-04-02T21:23:18Z #14 1.382 150K .......... .......... .......... .......... .......... 0% 36.6M 7s +2024-04-02T21:23:18Z #14 1.383 200K .......... .......... .......... .......... .......... 0% 165M 6s +2024-04-02T21:23:18Z #14 1.384 250K .......... .......... .......... .......... .......... 0% 27.7M 6s +2024-04-02T21:23:18Z #14 1.385 300K .......... .......... .......... .......... .......... 0% 42.2M 5s +2024-04-02T21:23:18Z #14 1.386 350K .......... .......... .......... .......... .......... 0% 24.8M 5s +2024-04-02T21:23:18Z #14 1.388 400K .......... .......... .......... .......... .......... 0% 24.2M 5s +2024-04-02T21:23:18Z #14 1.391 450K .......... .......... .......... .......... .......... 0% 26.2M 5s +2024-04-02T21:23:18Z #14 1.392 500K .......... .......... .......... .......... .......... 0% 106M 5s +2024-04-02T21:23:18Z #14 1.393 550K .......... .......... .......... .......... .......... 0% 122M 5s +2024-04-02T21:23:18Z #14 1.393 600K .......... .......... .......... .......... .......... 0% 111M 4s +2024-04-02T21:23:18Z #14 1.394 650K .......... .......... .......... .......... .......... 0% 102M 4s +2024-04-02T21:23:18Z #14 1.395 700K .......... .......... .......... .......... .......... 0% 156M 4s +2024-04-02T21:23:18Z #14 1.395 750K .......... .......... .......... .......... .......... 0% 92.3M 4s +2024-04-02T21:23:18Z #14 1.396 800K .......... .......... .......... .......... .......... 0% 124M 3s +2024-04-02T21:23:18Z #14 1.396 850K .......... .......... .......... .......... .......... 0% 117M 3s +2024-04-02T21:23:18Z #14 1.396 900K .......... .......... .......... .......... .......... 0% 104M 3s +2024-04-02T21:23:18Z #14 1.396 950K .......... .......... .......... .......... .......... 0% 97.6M 3s +2024-04-02T21:23:18Z #14 1.397 1000K .......... .......... .......... .......... .......... 0% 119M 3s +2024-04-02T21:23:18Z #14 1.397 1050K .......... .......... .......... .......... .......... 0% 109M 3s +2024-04-02T21:23:18Z #14 1.398 1100K .......... .......... .......... .......... .......... 0% 119M 3s +2024-04-02T21:23:18Z #14 1.398 1150K .......... .......... .......... .......... .......... 0% 136M 3s +2024-04-02T21:23:18Z #14 1.399 1200K .......... .......... .......... .......... .......... 0% 116M 3s +2024-04-02T21:23:18Z #14 1.399 1250K .......... .......... .......... .......... .......... 1% 27.8M 3s +2024-04-02T21:23:18Z #14 1.401 1300K .......... .......... .......... .......... .......... 1% 37.5M 3s +2024-04-02T21:23:18Z #14 1.402 1350K .......... .......... .......... .......... .......... 1% 39.0M 3s +2024-04-02T21:23:18Z #14 1.404 1400K .......... .......... .......... .......... .......... 1% 24.4M 3s +2024-04-02T21:23:18Z #14 1.405 1450K .......... .......... .......... .......... .......... 1% 75.9M 3s +2024-04-02T21:23:18Z #14 1.411 1500K .......... .......... .......... .......... .......... 1% 112M 3s +2024-04-02T21:23:18Z #14 1.411 1550K .......... .......... .......... .......... .......... 1% 129M 3s +2024-04-02T21:23:18Z #14 1.411 1600K .......... .......... .......... .......... .......... 1% 115M 3s +2024-04-02T21:23:18Z #14 1.411 1650K .......... .......... .......... .......... .......... 1% 148M 3s +2024-04-02T21:23:18Z #14 1.411 1700K .......... .......... .......... .......... .......... 1% 111M 3s +2024-04-02T21:23:18Z #14 1.411 1750K .......... .......... .......... .......... .......... 1% 122M 3s +2024-04-02T21:23:18Z #14 1.411 1800K .......... .......... .......... .......... .......... 1% 129M 2s +2024-04-02T21:23:18Z #14 1.411 1850K .......... .......... .......... .......... .......... 1% 130M 2s +2024-04-02T21:23:18Z #14 1.411 1900K .......... .......... .......... .......... .......... 1% 110M 2s +2024-04-02T21:23:18Z #14 1.411 1950K .......... .......... .......... .......... .......... 1% 115M 2s +2024-04-02T21:23:18Z #14 1.411 2000K .......... .......... .......... .......... .......... 1% 122M 2s +2024-04-02T21:23:18Z #14 1.411 2050K .......... .......... .......... .......... .......... 1% 129M 2s +2024-04-02T21:23:18Z #14 1.411 2100K .......... .......... .......... .......... .......... 1% 86.0M 2s +2024-04-02T21:23:18Z #14 1.412 2150K .......... .......... .......... .......... .......... 1% 21.1M 2s +2024-04-02T21:23:18Z #14 1.413 2200K .......... .......... .......... .......... .......... 1% 52.1M 2s +2024-04-02T21:23:18Z #14 1.415 2250K .......... .......... .......... .......... .......... 1% 52.0M 2s +2024-04-02T21:23:18Z #14 1.415 2300K .......... .......... .......... .......... .......... 1% 45.0M 2s +2024-04-02T21:23:18Z #14 1.417 2350K .......... .......... .......... .......... .......... 1% 53.0M 2s +2024-04-02T21:23:18Z #14 1.418 2400K .......... .......... .......... .......... .......... 1% 48.2M 2s +2024-04-02T21:23:18Z #14 1.418 2450K .......... .......... .......... .......... .......... 1% 49.8M 2s +2024-04-02T21:23:18Z #14 1.419 2500K .......... .......... .......... .......... .......... 2% 52.9M 2s +2024-04-02T21:23:18Z #14 1.421 2550K .......... .......... .......... .......... .......... 2% 44.8M 2s +2024-04-02T21:23:18Z #14 1.421 2600K .......... .......... .......... .......... .......... 2% 51.0M 2s +2024-04-02T21:23:18Z #14 1.422 2650K .......... .......... .......... .......... .......... 2% 31.5M 2s +2024-04-02T21:23:18Z #14 1.424 2700K .......... .......... .......... .......... .......... 2% 87.0M 2s +2024-04-02T21:23:18Z #14 1.427 2750K .......... .......... .......... .......... .......... 2% 113M 2s +2024-04-02T21:23:18Z #14 1.427 2800K .......... .......... .......... .......... .......... 2% 145M 2s +2024-04-02T21:23:18Z #14 1.427 2850K .......... .......... .......... .......... .......... 2% 137M 2s +2024-04-02T21:23:18Z #14 1.427 2900K .......... .......... .......... .......... .......... 2% 121M 2s +2024-04-02T21:23:18Z #14 1.427 2950K .......... .......... .......... .......... .......... 2% 141M 2s +2024-04-02T21:23:18Z #14 1.427 3000K .......... .......... .......... .......... .......... 2% 139M 2s +2024-04-02T21:23:18Z #14 1.427 3050K .......... .......... .......... .......... .......... 2% 87.4M 2s +2024-04-02T21:23:18Z #14 1.428 3100K .......... .......... .......... .......... .......... 2% 43.1M 2s +2024-04-02T21:23:18Z #14 1.428 3150K .......... .......... .......... .......... .......... 2% 71.7M 2s +2024-04-02T21:23:18Z #14 1.431 3200K .......... .......... .......... .......... .......... 2% 129M 2s +2024-04-02T21:23:18Z #14 1.431 3250K .......... .......... .......... .......... .......... 2% 127M 2s +2024-04-02T21:23:18Z #14 1.431 3300K .......... .......... .......... .......... .......... 2% 147M 2s +2024-04-02T21:23:18Z #14 1.431 3350K .......... .......... .......... .......... .......... 2% 150M 2s +2024-04-02T21:23:18Z #14 1.431 3400K .......... .......... .......... .......... .......... 2% 127M 2s +2024-04-02T21:23:18Z #14 1.431 3450K .......... .......... .......... .......... .......... 2% 74.5M 2s +2024-04-02T21:23:18Z #14 1.435 3500K .......... .......... .......... .......... .......... 2% 126M 2s +2024-04-02T21:23:18Z #14 1.435 3550K .......... .......... .......... .......... .......... 2% 141M 2s +2024-04-02T21:23:18Z #14 1.435 3600K .......... .......... .......... .......... .......... 2% 148M 2s +2024-04-02T21:23:18Z #14 1.435 3650K .......... .......... .......... .......... .......... 2% 141M 2s +2024-04-02T21:23:18Z #14 1.435 3700K .......... .......... .......... .......... .......... 2% 131M 2s +2024-04-02T21:23:18Z #14 1.435 3750K .......... .......... .......... .......... .......... 2% 147M 2s +2024-04-02T21:23:18Z #14 1.435 3800K .......... .......... .......... .......... .......... 3% 139M 2s +2024-04-02T21:23:18Z #14 1.435 3850K .......... .......... .......... .......... .......... 3% 145M 2s +2024-04-02T21:23:18Z #14 1.435 3900K .......... .......... .......... .......... .......... 3% 126M 2s +2024-04-02T21:23:18Z #14 1.435 3950K .......... .......... .......... .......... .......... 3% 82.5M 2s +2024-04-02T21:23:18Z #14 1.435 4000K .......... .......... .......... .......... .......... 3% 107M 2s +2024-04-02T21:23:18Z #14 1.439 4050K .......... .......... .......... .......... .......... 3% 125M 2s +2024-04-02T21:23:18Z #14 1.439 4100K .......... .......... .......... .......... .......... 3% 138M 2s +2024-04-02T21:23:18Z #14 1.439 4150K .......... .......... .......... .......... .......... 3% 127M 2s +2024-04-02T21:23:18Z #14 1.439 4200K .......... .......... .......... .......... .......... 3% 130M 2s +2024-04-02T21:23:18Z #14 1.439 4250K .......... .......... .......... .......... .......... 3% 118M 2s +2024-04-02T21:23:18Z #14 1.439 4300K .......... .......... .......... .......... .......... 3% 117M 2s +2024-04-02T21:23:18Z #14 1.439 4350K .......... .......... .......... .......... .......... 3% 129M 2s +2024-04-02T21:23:18Z #14 1.439 4400K .......... .......... .......... .......... .......... 3% 135M 2s +2024-04-02T21:23:18Z #14 1.439 4450K .......... .......... .......... .......... .......... 3% 54.0M 2s +2024-04-02T21:23:18Z #14 1.440 4500K .......... .......... .......... .......... .......... 3% 110M 2s +2024-04-02T21:23:18Z #14 1.443 4550K .......... .......... .......... .......... .......... 3% 140M 2s +2024-04-02T21:23:18Z #14 1.443 4600K .......... .......... .......... .......... .......... 3% 122M 2s +2024-04-02T21:23:18Z #14 1.443 4650K .......... .......... .......... .......... .......... 3% 138M 2s +2024-04-02T21:23:18Z #14 1.443 4700K .......... .......... .......... .......... .......... 3% 128M 2s +2024-04-02T21:23:18Z #14 1.443 4750K .......... .......... .......... .......... .......... 3% 104M 2s +2024-04-02T21:23:18Z #14 1.443 4800K .......... .......... .......... .......... .......... 3% 135M 2s +2024-04-02T21:23:18Z #14 1.443 4850K .......... .......... .......... .......... .......... 3% 115M 2s +2024-04-02T21:23:18Z #14 1.443 4900K .......... .......... .......... .......... .......... 3% 67.1M 2s +2024-04-02T21:23:18Z #14 1.447 4950K .......... .......... .......... .......... .......... 3% 126M 2s +2024-04-02T21:23:18Z #14 1.447 5000K .......... .......... .......... .......... .......... 3% 138M 2s +2024-04-02T21:23:18Z #14 1.447 5050K .......... .......... .......... .......... .......... 4% 133M 2s +2024-04-02T21:23:18Z #14 1.447 5100K .......... .......... .......... .......... .......... 4% 119M 2s +2024-04-02T21:23:18Z #14 1.447 5150K .......... .......... .......... .......... .......... 4% 119M 2s +2024-04-02T21:23:18Z #14 1.447 5200K .......... .......... .......... .......... .......... 4% 105M 2s +2024-04-02T21:23:18Z #14 1.447 5250K .......... .......... .......... .......... .......... 4% 148M 2s +2024-04-02T21:23:18Z #14 1.447 5300K .......... .......... .......... .......... .......... 4% 122M 2s +2024-04-02T21:23:18Z #14 1.447 5350K .......... .......... .......... .......... .......... 4% 60.0M 2s +2024-04-02T21:23:18Z #14 1.451 5400K .......... .......... .......... .......... .......... 4% 133M 2s +2024-04-02T21:23:18Z #14 1.451 5450K .......... .......... .......... .......... .......... 4% 117M 2s +2024-04-02T21:23:18Z #14 1.451 5500K .......... .......... .......... .......... .......... 4% 113M 2s +2024-04-02T21:23:18Z #14 1.451 5550K .......... .......... .......... .......... .......... 4% 126M 2s +2024-04-02T21:23:18Z #14 1.451 5600K .......... .......... .......... .......... .......... 4% 140M 2s +2024-04-02T21:23:18Z #14 1.451 5650K .......... .......... .......... .......... .......... 4% 118M 2s +2024-04-02T21:23:18Z #14 1.451 5700K .......... .......... .......... .......... .......... 4% 129M 2s +2024-04-02T21:23:18Z #14 1.451 5750K .......... .......... .......... .......... .......... 4% 118M 2s +2024-04-02T21:23:18Z #14 1.451 5800K .......... .......... .......... .......... .......... 4% 71.8M 2s +2024-04-02T21:23:18Z #14 1.455 5850K .......... .......... .......... .......... .......... 4% 145M 2s +2024-04-02T21:23:18Z #14 1.455 5900K .......... .......... .......... .......... .......... 4% 128M 2s +2024-04-02T21:23:18Z #14 1.455 5950K .......... .......... .......... .......... .......... 4% 100M 2s +2024-04-02T21:23:18Z #14 1.455 6000K .......... .......... .......... .......... .......... 4% 145M 2s +2024-04-02T21:23:18Z #14 1.455 6050K .......... .......... .......... .......... .......... 4% 111M 2s +2024-04-02T21:23:18Z #14 1.455 6100K .......... .......... .......... .......... .......... 4% 126M 2s +2024-04-02T21:23:18Z #14 1.455 6150K .......... .......... .......... .......... .......... 4% 112M 2s +2024-04-02T21:23:18Z #14 1.455 6200K .......... .......... .......... .......... .......... 4% 135M 2s +2024-04-02T21:23:18Z #14 1.455 6250K .......... .......... .......... .......... .......... 4% 103M 2s +2024-04-02T21:23:18Z #14 1.455 6300K .......... .......... .......... .......... .......... 5% 78.2M 2s +2024-04-02T21:23:18Z #14 1.459 6350K .......... .......... .......... .......... .......... 5% 114M 2s +2024-04-02T21:23:18Z #14 1.459 6400K .......... .......... .......... .......... .......... 5% 129M 2s +2024-04-02T21:23:18Z #14 1.459 6450K .......... .......... .......... .......... .......... 5% 121M 2s +2024-04-02T21:23:18Z #14 1.459 6500K .......... .......... .......... .......... .......... 5% 130M 2s +2024-04-02T21:23:18Z #14 1.459 6550K .......... .......... .......... .......... .......... 5% 114M 2s +2024-04-02T21:23:18Z #14 1.459 6600K .......... .......... .......... .......... .......... 5% 136M 2s +2024-04-02T21:23:18Z #14 1.459 6650K .......... .......... .......... .......... .......... 5% 109M 2s +2024-04-02T21:23:18Z #14 1.459 6700K .......... .......... .......... .......... .......... 5% 135M 2s +2024-04-02T21:23:18Z #14 1.459 6750K .......... .......... .......... .......... .......... 5% 48.3M 2s +2024-04-02T21:23:18Z #14 1.463 6800K .......... .......... .......... .......... .......... 5% 123M 2s +2024-04-02T21:23:18Z #14 1.463 6850K .......... .......... .......... .......... .......... 5% 106M 2s +2024-04-02T21:23:18Z #14 1.463 6900K .......... .......... .......... .......... .......... 5% 138M 2s +2024-04-02T21:23:18Z #14 1.463 6950K .......... .......... .......... .......... .......... 5% 116M 2s +2024-04-02T21:23:18Z #14 1.463 7000K .......... .......... .......... .......... .......... 5% 109M 2s +2024-04-02T21:23:18Z #14 1.463 7050K .......... .......... .......... .......... .......... 5% 129M 2s +2024-04-02T21:23:18Z #14 1.463 7100K .......... .......... .......... .......... .......... 5% 122M 2s +2024-04-02T21:23:18Z #14 1.463 7150K .......... .......... .......... .......... .......... 5% 48.4M 2s +2024-04-02T21:23:18Z #14 1.467 7200K .......... .......... .......... .......... .......... 5% 144M 2s +2024-04-02T21:23:18Z #14 1.467 7250K .......... .......... .......... .......... .......... 5% 124M 2s +2024-04-02T21:23:18Z #14 1.467 7300K .......... .......... .......... .......... .......... 5% 122M 2s +2024-04-02T21:23:18Z #14 1.467 7350K .......... .......... .......... .......... .......... 5% 129M 2s +2024-04-02T21:23:18Z #14 1.467 7400K .......... .......... .......... .......... .......... 5% 132M 2s +2024-04-02T21:23:18Z #14 1.467 7450K .......... .......... .......... .......... .......... 5% 114M 1s +2024-04-02T21:23:18Z #14 1.467 7500K .......... .......... .......... .......... .......... 5% 129M 1s +2024-04-02T21:23:18Z #14 1.467 7550K .......... .......... .......... .......... .......... 5% 118M 1s +2024-04-02T21:23:18Z #14 1.467 7600K .......... .......... .......... .......... .......... 6% 75.6M 1s +2024-04-02T21:23:18Z #14 1.471 7650K .......... .......... .......... .......... .......... 6% 146M 1s +2024-04-02T21:23:18Z #14 1.471 7700K .......... .......... .......... .......... .......... 6% 115M 1s +2024-04-02T21:23:18Z #14 1.471 7750K .......... .......... .......... .......... .......... 6% 116M 1s +2024-04-02T21:23:18Z #14 1.471 7800K .......... .......... .......... .......... .......... 6% 127M 1s +2024-04-02T21:23:18Z #14 1.471 7850K .......... .......... .......... .......... .......... 6% 133M 1s +2024-04-02T21:23:18Z #14 1.471 7900K .......... .......... .......... .......... .......... 6% 138M 1s +2024-04-02T21:23:18Z #14 1.471 7950K .......... .......... .......... .......... .......... 6% 98.8M 1s +2024-04-02T21:23:18Z #14 1.471 8000K .......... .......... .......... .......... .......... 6% 139M 1s +2024-04-02T21:23:18Z #14 1.471 8050K .......... .......... .......... .......... .......... 6% 85.4M 1s +2024-04-02T21:23:18Z #14 1.471 8100K .......... .......... .......... .......... .......... 6% 53.9M 1s +2024-04-02T21:23:18Z #14 1.475 8150K .......... .......... .......... .......... .......... 6% 129M 1s +2024-04-02T21:23:18Z #14 1.475 8200K .......... .......... .......... .......... .......... 6% 127M 1s +2024-04-02T21:23:18Z #14 1.475 8250K .......... .......... .......... .......... .......... 6% 124M 1s +2024-04-02T21:23:18Z #14 1.475 8300K .......... .......... .......... .......... .......... 6% 133M 1s +2024-04-02T21:23:18Z #14 1.475 8350K .......... .......... .......... .......... .......... 6% 136M 1s +2024-04-02T21:23:18Z #14 1.475 8400K .......... .......... .......... .......... .......... 6% 126M 1s +2024-04-02T21:23:18Z #14 1.475 8450K .......... .......... .......... .......... .......... 6% 106M 1s +2024-04-02T21:23:18Z #14 1.475 8500K .......... .......... .......... .......... .......... 6% 52.7M 1s +2024-04-02T21:23:18Z #14 1.476 8550K .......... .......... .......... .......... .......... 6% 85.7M 1s +2024-04-02T21:23:18Z #14 1.479 8600K .......... .......... .......... .......... .......... 6% 119M 1s +2024-04-02T21:23:18Z #14 1.479 8650K .......... .......... .......... .......... .......... 6% 121M 1s +2024-04-02T21:23:18Z #14 1.479 8700K .......... .......... .......... .......... .......... 6% 124M 1s +2024-04-02T21:23:18Z #14 1.479 8750K .......... .......... .......... .......... .......... 6% 124M 1s +2024-04-02T21:23:18Z #14 1.479 8800K .......... .......... .......... .......... .......... 6% 133M 1s +2024-04-02T21:23:18Z #14 1.479 8850K .......... .......... .......... .......... .......... 7% 109M 1s +2024-04-02T21:23:18Z #14 1.479 8900K .......... .......... .......... .......... .......... 7% 74.2M 1s +2024-04-02T21:23:18Z #14 1.481 8950K .......... .......... .......... .......... .......... 7% 80.8M 1s +2024-04-02T21:23:18Z #14 1.481 9000K .......... .......... .......... .......... .......... 7% 4.29M 2s +2024-04-02T21:23:18Z #14 1.495 9050K .......... .......... .......... .......... .......... 7% 112M 2s +2024-04-02T21:23:18Z #14 1.495 9100K .......... .......... .......... .......... .......... 7% 117M 2s +2024-04-02T21:23:18Z #14 1.495 9150K .......... .......... .......... .......... .......... 7% 120M 2s +2024-04-02T21:23:18Z #14 1.495 9200K .......... .......... .......... .......... .......... 7% 140M 2s +2024-04-02T21:23:18Z #14 1.495 9250K .......... .......... .......... .......... .......... 7% 102M 2s +2024-04-02T21:23:18Z #14 1.495 9300K .......... .......... .......... .......... .......... 7% 107M 2s +2024-04-02T21:23:18Z #14 1.495 9350K .......... .......... .......... .......... .......... 7% 104M 2s +2024-04-02T21:23:18Z #14 1.495 9400K .......... .......... .......... .......... .......... 7% 132M 2s +2024-04-02T21:23:18Z #14 1.495 9450K .......... .......... .......... .......... .......... 7% 36.4M 2s +2024-04-02T21:23:18Z #14 1.499 9500K .......... .......... .......... .......... .......... 7% 127M 2s +2024-04-02T21:23:18Z #14 1.499 9550K .......... .......... .......... .......... .......... 7% 167M 2s +2024-04-02T21:23:18Z #14 1.499 9600K .......... .......... .......... .......... .......... 7% 178M 2s +2024-04-02T21:23:18Z #14 1.499 9650K .......... .......... .......... .......... .......... 7% 127M 2s +2024-04-02T21:23:18Z #14 1.499 9700K .......... .......... .......... .......... .......... 7% 176M 2s +2024-04-02T21:23:18Z #14 1.499 9750K .......... .......... .......... .......... .......... 7% 177M 2s +2024-04-02T21:23:18Z #14 1.499 9800K .......... .......... .......... .......... .......... 7% 161M 2s +2024-04-02T21:23:18Z #14 1.499 9850K .......... .......... .......... .......... .......... 7% 145M 1s +2024-04-02T21:23:18Z #14 1.499 9900K .......... .......... .......... .......... .......... 7% 180M 1s +2024-04-02T21:23:18Z #14 1.499 9950K .......... .......... .......... .......... .......... 7% 48.7M 1s +2024-04-02T21:23:18Z #14 1.500 10000K .......... .......... .......... .......... .......... 7% 54.6M 1s +2024-04-02T21:23:18Z #14 1.501 10050K .......... .......... .......... .......... .......... 7% 78.3M 1s +2024-04-02T21:23:18Z #14 1.507 10100K .......... .......... .......... .......... .......... 8% 120M 1s +2024-04-02T21:23:18Z #14 1.507 10150K .......... .......... .......... .......... .......... 8% 127M 1s +2024-04-02T21:23:18Z #14 1.507 10200K .......... .......... .......... .......... .......... 8% 119M 1s +2024-04-02T21:23:18Z #14 1.507 10250K .......... .......... .......... .......... .......... 8% 103M 1s +2024-04-02T21:23:18Z #14 1.507 10300K .......... .......... .......... .......... .......... 8% 117M 1s +2024-04-02T21:23:18Z #14 1.507 10350K .......... .......... .......... .......... .......... 8% 145M 1s +2024-04-02T21:23:18Z #14 1.507 10400K .......... .......... .......... .......... .......... 8% 130M 1s +2024-04-02T21:23:18Z #14 1.507 10450K .......... .......... .......... .......... .......... 8% 112M 1s +2024-04-02T21:23:18Z #14 1.507 10500K .......... .......... .......... .......... .......... 8% 119M 1s +2024-04-02T21:23:18Z #14 1.507 10550K .......... .......... .......... .......... .......... 8% 129M 1s +2024-04-02T21:23:18Z #14 1.507 10600K .......... .......... .......... .......... .......... 8% 119M 1s +2024-04-02T21:23:18Z #14 1.507 10650K .......... .......... .......... .......... .......... 8% 107M 1s +2024-04-02T21:23:18Z #14 1.507 10700K .......... .......... .......... .......... .......... 8% 134M 1s +2024-04-02T21:23:18Z #14 1.507 10750K .......... .......... .......... .......... .......... 8% 56.2M 1s +2024-04-02T21:23:18Z #14 1.511 10800K .......... .......... .......... .......... .......... 8% 123M 1s +2024-04-02T21:23:18Z #14 1.511 10850K .......... .......... .......... .......... .......... 8% 116M 1s +2024-04-02T21:23:18Z #14 1.511 10900K .......... .......... .......... .......... .......... 8% 129M 1s +2024-04-02T21:23:18Z #14 1.511 10950K .......... .......... .......... .......... .......... 8% 106M 1s +2024-04-02T21:23:18Z #14 1.511 11000K .......... .......... .......... .......... .......... 8% 141M 1s +2024-04-02T21:23:18Z #14 1.511 11050K .......... .......... .......... .......... .......... 8% 118M 1s +2024-04-02T21:23:18Z #14 1.511 11100K .......... .......... .......... .......... .......... 8% 117M 1s +2024-04-02T21:23:18Z #14 1.511 11150K .......... .......... .......... .......... .......... 8% 108M 1s +2024-04-02T21:23:18Z #14 1.511 11200K .......... .......... .......... .......... .......... 8% 59.0M 1s +2024-04-02T21:23:18Z #14 1.512 11250K .......... .......... .......... .......... .......... 8% 136M 1s +2024-04-02T21:23:18Z #14 1.512 11300K .......... .......... .......... .......... .......... 8% 78.0M 1s +2024-04-02T21:23:18Z #14 1.515 11350K .......... .......... .......... .......... .......... 8% 128M 1s +2024-04-02T21:23:18Z #14 1.515 11400K .......... .......... .......... .......... .......... 9% 115M 1s +2024-04-02T21:23:18Z #14 1.515 11450K .......... .......... .......... .......... .......... 9% 116M 1s +2024-04-02T21:23:18Z #14 1.515 11500K .......... .......... .......... .......... .......... 9% 133M 1s +2024-04-02T21:23:18Z #14 1.515 11550K .......... .......... .......... .......... .......... 9% 119M 1s +2024-04-02T21:23:18Z #14 1.515 11600K .......... .......... .......... .......... .......... 9% 84.9M 1s +2024-04-02T21:23:18Z #14 1.519 11650K .......... .......... .......... .......... .......... 9% 126M 1s +2024-04-02T21:23:18Z #14 1.519 11700K .......... .......... .......... .......... .......... 9% 117M 1s +2024-04-02T21:23:18Z #14 1.519 11750K .......... .......... .......... .......... .......... 9% 107M 1s +2024-04-02T21:23:18Z #14 1.519 11800K .......... .......... .......... .......... .......... 9% 118M 1s +2024-04-02T21:23:18Z #14 1.519 11850K .......... .......... .......... .......... .......... 9% 123M 1s +2024-04-02T21:23:18Z #14 1.519 11900K .......... .......... .......... .......... .......... 9% 122M 1s +2024-04-02T21:23:18Z #14 1.519 11950K .......... .......... .......... .......... .......... 9% 120M 1s +2024-04-02T21:23:18Z #14 1.519 12000K .......... .......... .......... .......... .......... 9% 134M 1s +2024-04-02T21:23:18Z #14 1.519 12050K .......... .......... .......... .......... .......... 9% 102M 1s +2024-04-02T21:23:18Z #14 1.519 12100K .......... .......... .......... .......... .......... 9% 54.4M 1s +2024-04-02T21:23:18Z #14 1.523 12150K .......... .......... .......... .......... .......... 9% 107M 1s +2024-04-02T21:23:18Z #14 1.523 12200K .......... .......... .......... .......... .......... 9% 123M 1s +2024-04-02T21:23:18Z #14 1.523 12250K .......... .......... .......... .......... .......... 9% 139M 1s +2024-04-02T21:23:18Z #14 1.523 12300K .......... .......... .......... .......... .......... 9% 116M 1s +2024-04-02T21:23:18Z #14 1.523 12350K .......... .......... .......... .......... .......... 9% 125M 1s +2024-04-02T21:23:18Z #14 1.523 12400K .......... .......... .......... .......... .......... 9% 110M 1s +2024-04-02T21:23:18Z #14 1.523 12450K .......... .......... .......... .......... .......... 9% 125M 1s +2024-04-02T21:23:18Z #14 1.523 12500K .......... .......... .......... .......... .......... 9% 59.2M 1s +2024-04-02T21:23:18Z #14 1.527 12550K .......... .......... .......... .......... .......... 9% 127M 1s +2024-04-02T21:23:18Z #14 1.527 12600K .......... .......... .......... .......... .......... 9% 109M 1s +2024-04-02T21:23:18Z #14 1.527 12650K .......... .......... .......... .......... .......... 10% 140M 1s +2024-04-02T21:23:18Z #14 1.527 12700K .......... .......... .......... .......... .......... 10% 117M 1s +2024-04-02T21:23:18Z #14 1.527 12750K .......... .......... .......... .......... .......... 10% 109M 1s +2024-04-02T21:23:18Z #14 1.527 12800K .......... .......... .......... .......... .......... 10% 133M 1s +2024-04-02T21:23:18Z #14 1.527 12850K .......... .......... .......... .......... .......... 10% 154M 1s +2024-04-02T21:23:18Z #14 1.527 12900K .......... .......... .......... .......... .......... 10% 106M 1s +2024-04-02T21:23:18Z #14 1.527 12950K .......... .......... .......... .......... .......... 10% 85.8M 1s +2024-04-02T21:23:18Z #14 1.528 13000K .......... .......... .......... .......... .......... 10% 132M 1s +2024-04-02T21:23:18Z #14 1.528 13050K .......... .......... .......... .......... .......... 10% 101M 1s +2024-04-02T21:23:18Z #14 1.531 13100K .......... .......... .......... .......... .......... 10% 106M 1s +2024-04-02T21:23:18Z #14 1.531 13150K .......... .......... .......... .......... .......... 10% 125M 1s +2024-04-02T21:23:18Z #14 1.531 13200K .......... .......... .......... .......... .......... 10% 105M 1s +2024-04-02T21:23:18Z #14 1.531 13250K .......... .......... .......... .......... .......... 10% 121M 1s +2024-04-02T21:23:18Z #14 1.531 13300K .......... .......... .......... .......... .......... 10% 137M 1s +2024-04-02T21:23:18Z #14 1.531 13350K .......... .......... .......... .......... .......... 10% 113M 1s +2024-04-02T21:23:18Z #14 1.531 13400K .......... .......... .......... .......... .......... 10% 155M 1s +2024-04-02T21:23:18Z #14 1.535 13450K .......... .......... .......... .......... .......... 10% 101M 1s +2024-04-02T21:23:18Z #14 1.535 13500K .......... .......... .......... .......... .......... 10% 126M 1s +2024-04-02T21:23:18Z #14 1.535 13550K .......... .......... .......... .......... .......... 10% 113M 1s +2024-04-02T21:23:18Z #14 1.535 13600K .......... .......... .......... .......... .......... 10% 136M 1s +2024-04-02T21:23:18Z #14 1.535 13650K .......... .......... .......... .......... .......... 10% 110M 1s +2024-04-02T21:23:18Z #14 1.535 13700K .......... .......... .......... .......... .......... 10% 118M 1s +2024-04-02T21:23:18Z #14 1.535 13750K .......... .......... .......... .......... .......... 10% 138M 1s +2024-04-02T21:23:18Z #14 1.535 13800K .......... .......... .......... .......... .......... 10% 118M 1s +2024-04-02T21:23:18Z #14 1.535 13850K .......... .......... .......... .......... .......... 10% 117M 1s +2024-04-02T21:23:18Z #14 1.535 13900K .......... .......... .......... .......... .......... 11% 63.5M 1s +2024-04-02T21:23:18Z #14 1.536 13950K .......... .......... .......... .......... .......... 11% 24.5M 1s +2024-04-02T21:23:18Z #14 1.539 14000K .......... .......... .......... .......... .......... 11% 108M 1s +2024-04-02T21:23:18Z #14 1.539 14050K .......... .......... .......... .......... .......... 11% 146M 1s +2024-04-02T21:23:18Z #14 1.539 14100K .......... .......... .......... .......... .......... 11% 130M 1s +2024-04-02T21:23:18Z #14 1.539 14150K .......... .......... .......... .......... .......... 11% 88.3M 1s +2024-04-02T21:23:18Z #14 1.540 14200K .......... .......... .......... .......... .......... 11% 22.3M 1s +2024-04-02T21:23:18Z #14 1.543 14250K .......... .......... .......... .......... .......... 11% 128M 1s +2024-04-02T21:23:18Z #14 1.543 14300K .......... .......... .......... .......... .......... 11% 108M 1s +2024-04-02T21:23:18Z #14 1.543 14350K .......... .......... .......... .......... .......... 11% 108M 1s +2024-04-02T21:23:18Z #14 1.543 14400K .......... .......... .......... .......... .......... 11% 153M 1s +2024-04-02T21:23:18Z #14 1.543 14450K .......... .......... .......... .......... .......... 11% 32.0M 1s +2024-04-02T21:23:18Z #14 1.547 14500K .......... .......... .......... .......... .......... 11% 129M 1s +2024-04-02T21:23:18Z #14 1.547 14550K .......... .......... .......... .......... .......... 11% 122M 1s +2024-04-02T21:23:18Z #14 1.547 14600K .......... .......... .......... .......... .......... 11% 134M 1s +2024-04-02T21:23:18Z #14 1.547 14650K .......... .......... .......... .......... .......... 11% 126M 1s +2024-04-02T21:23:18Z #14 1.547 14700K .......... .......... .......... .......... .......... 11% 135M 1s +2024-04-02T21:23:18Z #14 1.547 14750K .......... .......... .......... .......... .......... 11% 119M 1s +2024-04-02T21:23:18Z #14 1.547 14800K .......... .......... .......... .......... .......... 11% 5.65M 1s +2024-04-02T21:23:18Z #14 1.568 14850K .......... .......... .......... .......... .......... 11% 164M 1s +2024-04-02T21:23:18Z #14 1.568 14900K .......... .......... .......... .......... .......... 11% 120M 1s +2024-04-02T21:23:18Z #14 1.568 14950K .......... .......... .......... .......... .......... 11% 100M 1s +2024-04-02T21:23:18Z #14 1.568 15000K .......... .......... .......... .......... .......... 11% 133M 1s +2024-04-02T21:23:18Z #14 1.568 15050K .......... .......... .......... .......... .......... 11% 102M 1s +2024-04-02T21:23:18Z #14 1.568 15100K .......... .......... .......... .......... .......... 11% 123M 1s +2024-04-02T21:23:18Z #14 1.568 15150K .......... .......... .......... .......... .......... 11% 98.8M 1s +2024-04-02T21:23:18Z #14 1.568 15200K .......... .......... .......... .......... .......... 12% 122M 1s +2024-04-02T21:23:18Z #14 1.568 15250K .......... .......... .......... .......... .......... 12% 73.8M 1s +2024-04-02T21:23:18Z #14 1.568 15300K .......... .......... .......... .......... .......... 12% 125M 1s +2024-04-02T21:23:18Z #14 1.568 15350K .......... .......... .......... .......... .......... 12% 144M 1s +2024-04-02T21:23:18Z #14 1.568 15400K .......... .......... .......... .......... .......... 12% 136M 1s +2024-04-02T21:23:18Z #14 1.568 15450K .......... .......... .......... .......... .......... 12% 150M 1s +2024-04-02T21:23:18Z #14 1.568 15500K .......... .......... .......... .......... .......... 12% 136M 1s +2024-04-02T21:23:18Z #14 1.568 15550K .......... .......... .......... .......... .......... 12% 151M 1s +2024-04-02T21:23:18Z #14 1.568 15600K .......... .......... .......... .......... .......... 12% 167M 1s +2024-04-02T21:23:18Z #14 1.568 15650K .......... .......... .......... .......... .......... 12% 156M 1s +2024-04-02T21:23:18Z #14 1.568 15700K .......... .......... .......... .......... .......... 12% 147M 1s +2024-04-02T21:23:18Z #14 1.568 15750K .......... .......... .......... .......... .......... 12% 143M 1s +2024-04-02T21:23:18Z #14 1.568 15800K .......... .......... .......... .......... .......... 12% 131M 1s +2024-04-02T21:23:18Z #14 1.568 15850K .......... .......... .......... .......... .......... 12% 156M 1s +2024-04-02T21:23:18Z #14 1.568 15900K .......... .......... .......... .......... .......... 12% 127M 1s +2024-04-02T21:23:18Z #14 1.568 15950K .......... .......... .......... .......... .......... 12% 157M 1s +2024-04-02T21:23:18Z #14 1.568 16000K .......... .......... .......... .......... .......... 12% 139M 1s +2024-04-02T21:23:18Z #14 1.568 16050K .......... .......... .......... .......... .......... 12% 164M 1s +2024-04-02T21:23:18Z #14 1.568 16100K .......... .......... .......... .......... .......... 12% 124M 1s +2024-04-02T21:23:18Z #14 1.568 16150K .......... .......... .......... .......... .......... 12% 165M 1s +2024-04-02T21:23:18Z #14 1.568 16200K .......... .......... .......... .......... .......... 12% 141M 1s +2024-04-02T21:23:18Z #14 1.568 16250K .......... .......... .......... .......... .......... 12% 168M 1s +2024-04-02T21:23:18Z #14 1.568 16300K .......... .......... .......... .......... .......... 12% 136M 1s +2024-04-02T21:23:18Z #14 1.568 16350K .......... .......... .......... .......... .......... 12% 153M 1s +2024-04-02T21:23:18Z #14 1.568 16400K .......... .......... .......... .......... .......... 12% 120M 1s +2024-04-02T21:23:18Z #14 1.571 16450K .......... .......... .......... .......... .......... 13% 173M 1s +2024-04-02T21:23:18Z #14 1.571 16500K .......... .......... .......... .......... .......... 13% 122M 1s +2024-04-02T21:23:18Z #14 1.571 16550K .......... .......... .......... .......... .......... 13% 173M 1s +2024-04-02T21:23:18Z #14 1.571 16600K .......... .......... .......... .......... .......... 13% 129M 1s +2024-04-02T21:23:18Z #14 1.571 16650K .......... .......... .......... .......... .......... 13% 121M 1s +2024-04-02T21:23:18Z #14 1.571 16700K .......... .......... .......... .......... .......... 13% 116M 1s +2024-04-02T21:23:18Z #14 1.571 16750K .......... .......... .......... .......... .......... 13% 119M 1s +2024-04-02T21:23:18Z #14 1.571 16800K .......... .......... .......... .......... .......... 13% 144M 1s +2024-04-02T21:23:18Z #14 1.571 16850K .......... .......... .......... .......... .......... 13% 136M 1s +2024-04-02T21:23:18Z #14 1.571 16900K .......... .......... .......... .......... .......... 13% 87.1M 1s +2024-04-02T21:23:18Z #14 1.574 16950K .......... .......... .......... .......... .......... 13% 149M 1s +2024-04-02T21:23:18Z #14 1.574 17000K .......... .......... .......... .......... .......... 13% 128M 1s +2024-04-02T21:23:18Z #14 1.574 17050K .......... .......... .......... .......... .......... 13% 147M 1s +2024-04-02T21:23:18Z #14 1.574 17100K .......... .......... .......... .......... .......... 13% 110M 1s +2024-04-02T21:23:18Z #14 1.574 17150K .......... .......... .......... .......... .......... 13% 135M 1s +2024-04-02T21:23:18Z #14 1.574 17200K .......... .......... .......... .......... .......... 13% 111M 1s +2024-04-02T21:23:18Z #14 1.574 17250K .......... .......... .......... .......... .......... 13% 140M 1s +2024-04-02T21:23:18Z #14 1.574 17300K .......... .......... .......... .......... .......... 13% 643K 2s +2024-04-02T21:23:18Z #14 1.659 17350K .......... .......... .......... .......... .......... 13% 128M 2s +2024-04-02T21:23:18Z #14 1.659 17400K .......... .......... .......... .......... .......... 13% 120M 2s +2024-04-02T21:23:18Z #14 1.659 17450K .......... .......... .......... .......... .......... 13% 101M 2s +2024-04-02T21:23:18Z #14 1.659 17500K .......... .......... .......... .......... .......... 13% 116M 2s +2024-04-02T21:23:18Z #14 1.659 17550K .......... .......... .......... .......... .......... 13% 119M 2s +2024-04-02T21:23:18Z #14 1.659 17600K .......... .......... .......... .......... .......... 13% 100M 2s +2024-04-02T21:23:18Z #14 1.659 17650K .......... .......... .......... .......... .......... 13% 114M 2s +2024-04-02T21:23:18Z #14 1.659 17700K .......... .......... .......... .......... .......... 14% 118M 2s +2024-04-02T21:23:18Z #14 1.659 17750K .......... .......... .......... .......... .......... 14% 137M 2s +2024-04-02T21:23:18Z #14 1.659 17800K .......... .......... .......... .......... .......... 14% 156M 2s +2024-04-02T21:23:18Z #14 1.659 17850K .......... .......... .......... .......... .......... 14% 140M 2s +2024-04-02T21:23:18Z #14 1.659 17900K .......... .......... .......... .......... .......... 14% 124M 2s +2024-04-02T21:23:18Z #14 1.659 17950K .......... .......... .......... .......... .......... 14% 124M 2s +2024-04-02T21:23:18Z #14 1.659 18000K .......... .......... .......... .......... .......... 14% 127M 2s +2024-04-02T21:23:18Z #14 1.659 18050K .......... .......... .......... .......... .......... 14% 130M 2s +2024-04-02T21:23:18Z #14 1.659 18100K .......... .......... .......... .......... .......... 14% 103M 2s +2024-04-02T21:23:18Z #14 1.659 18150K .......... .......... .......... .......... .......... 14% 131M 2s +2024-04-02T21:23:18Z #14 1.659 18200K .......... .......... .......... .......... .......... 14% 108M 2s +2024-04-02T21:23:18Z #14 1.659 18250K .......... .......... .......... .......... .......... 14% 6.40M 2s +2024-04-02T21:23:18Z #14 1.671 18300K .......... .......... .......... .......... .......... 14% 108M 2s +2024-04-02T21:23:18Z #14 1.671 18350K .......... .......... .......... .......... .......... 14% 118M 2s +2024-04-02T21:23:18Z #14 1.671 18400K .......... .......... .......... .......... .......... 14% 128M 2s +2024-04-02T21:23:18Z #14 1.671 18450K .......... .......... .......... .......... .......... 14% 108M 2s +2024-04-02T21:23:18Z #14 1.671 18500K .......... .......... .......... .......... .......... 14% 125M 2s +2024-04-02T21:23:18Z #14 1.671 18550K .......... .......... .......... .......... .......... 14% 127M 2s +2024-04-02T21:23:18Z #14 1.671 18600K .......... .......... .......... .......... .......... 14% 113M 2s +2024-04-02T21:23:18Z #14 1.671 18650K .......... .......... .......... .......... .......... 14% 131M 2s +2024-04-02T21:23:18Z #14 1.671 18700K .......... .......... .......... .......... .......... 14% 123M 2s +2024-04-02T21:23:18Z #14 1.671 18750K .......... .......... .......... .......... .......... 14% 165M 2s +2024-04-02T21:23:18Z #14 1.671 18800K .......... .......... .......... .......... .......... 14% 113M 2s +2024-04-02T21:23:18Z #14 1.671 18850K .......... .......... .......... .......... .......... 14% 6.05M 2s +2024-04-02T21:23:18Z #14 1.683 18900K .......... .......... .......... .......... .......... 14% 159M 2s +2024-04-02T21:23:18Z #14 1.683 18950K .......... .......... .......... .......... .......... 14% 180M 2s +2024-04-02T21:23:18Z #14 1.683 19000K .......... .......... .......... .......... .......... 15% 137M 2s +2024-04-02T21:23:18Z #14 1.683 19050K .......... .......... .......... .......... .......... 15% 146M 2s +2024-04-02T21:23:18Z #14 1.683 19100K .......... .......... .......... .......... .......... 15% 144M 2s +2024-04-02T21:23:18Z #14 1.683 19150K .......... .......... .......... .......... .......... 15% 130M 2s +2024-04-02T21:23:18Z #14 1.683 19200K .......... .......... .......... .......... .......... 15% 30.2M 2s +2024-04-02T21:23:18Z #14 1.683 19250K .......... .......... .......... .......... .......... 15% 177M 2s +2024-04-02T21:23:18Z #14 1.683 19300K .......... .......... .......... .......... .......... 15% 8.24M 2s +2024-04-02T21:23:18Z #14 1.691 19350K .......... .......... .......... .......... .......... 15% 137M 2s +2024-04-02T21:23:18Z #14 1.691 19400K .......... .......... .......... .......... .......... 15% 151M 2s +2024-04-02T21:23:18Z #14 1.691 19450K .......... .......... .......... .......... .......... 15% 120M 2s +2024-04-02T21:23:18Z #14 1.691 19500K .......... .......... .......... .......... .......... 15% 121M 2s +2024-04-02T21:23:18Z #14 1.692 19550K .......... .......... .......... .......... .......... 15% 22.9M 2s +2024-04-02T21:23:18Z #14 1.695 19600K .......... .......... .......... .......... .......... 15% 140M 2s +2024-04-02T21:23:18Z #14 1.695 19650K .......... .......... .......... .......... .......... 15% 112M 2s +2024-04-02T21:23:18Z #14 1.695 19700K .......... .......... .......... .......... .......... 15% 146M 2s +2024-04-02T21:23:18Z #14 1.695 19750K .......... .......... .......... .......... .......... 15% 146M 2s +2024-04-02T21:23:18Z #14 1.695 19800K .......... .......... .......... .......... .......... 15% 115M 2s +2024-04-02T21:23:18Z #14 1.695 19850K .......... .......... .......... .......... .......... 15% 124M 2s +2024-04-02T21:23:18Z #14 1.695 19900K .......... .......... .......... .......... .......... 15% 125M 2s +2024-04-02T21:23:18Z #14 1.699 19950K .......... .......... .......... .......... .......... 15% 115M 2s +2024-04-02T21:23:18Z #14 1.699 20000K .......... .......... .......... .......... .......... 15% 137M 2s +2024-04-02T21:23:18Z #14 1.699 20050K .......... .......... .......... .......... .......... 15% 135M 2s +2024-04-02T21:23:18Z #14 1.699 20100K .......... .......... .......... .......... .......... 15% 119M 2s +2024-04-02T21:23:18Z #14 1.699 20150K .......... .......... .......... .......... .......... 15% 133M 2s +2024-04-02T21:23:18Z #14 1.699 20200K .......... .......... .......... .......... .......... 15% 134M 2s +2024-04-02T21:23:18Z #14 1.699 20250K .......... .......... .......... .......... .......... 16% 113M 2s +2024-04-02T21:23:18Z #14 1.699 20300K .......... .......... .......... .......... .......... 16% 142M 2s +2024-04-02T21:23:18Z #14 1.699 20350K .......... .......... .......... .......... .......... 16% 146M 2s +2024-04-02T21:23:18Z #14 1.699 20400K .......... .......... .......... .......... .......... 16% 133M 2s +2024-04-02T21:23:18Z #14 1.699 20450K .......... .......... .......... .......... .......... 16% 85.5M 2s +2024-04-02T21:23:18Z #14 1.699 20500K .......... .......... .......... .......... .......... 16% 33.0M 2s +2024-04-02T21:23:18Z #14 1.701 20550K .......... .......... .......... .......... .......... 16% 43.5M 2s +2024-04-02T21:23:18Z #14 1.702 20600K .......... .......... .......... .......... .......... 16% 169M 2s +2024-04-02T21:23:18Z #14 1.702 20650K .......... .......... .......... .......... .......... 16% 41.4M 2s +2024-04-02T21:23:18Z #14 1.703 20700K .......... .......... .......... .......... .......... 16% 88.6M 2s +2024-04-02T21:23:18Z #14 1.707 20750K .......... .......... .......... .......... .......... 16% 134M 2s +2024-04-02T21:23:18Z #14 1.707 20800K .......... .......... .......... .......... .......... 16% 101M 2s +2024-04-02T21:23:18Z #14 1.707 20850K .......... .......... .......... .......... .......... 16% 113M 2s +2024-04-02T21:23:18Z #14 1.707 20900K .......... .......... .......... .......... .......... 16% 124M 2s +2024-04-02T21:23:18Z #14 1.707 20950K .......... .......... .......... .......... .......... 16% 124M 2s +2024-04-02T21:23:18Z #14 1.707 21000K .......... .......... .......... .......... .......... 16% 125M 2s +2024-04-02T21:23:18Z #14 1.707 21050K .......... .......... .......... .......... .......... 16% 104M 2s +2024-04-02T21:23:18Z #14 1.707 21100K .......... .......... .......... .......... .......... 16% 94.4M 2s +2024-04-02T21:23:18Z #14 1.711 21150K .......... .......... .......... .......... .......... 16% 135M 2s +2024-04-02T21:23:18Z #14 1.711 21200K .......... .......... .......... .......... .......... 16% 118M 2s +2024-04-02T21:23:18Z #14 1.711 21250K .......... .......... .......... .......... .......... 16% 126M 2s +2024-04-02T21:23:18Z #14 1.711 21300K .......... .......... .......... .......... .......... 16% 134M 2s +2024-04-02T21:23:18Z #14 1.711 21350K .......... .......... .......... .......... .......... 16% 115M 2s +2024-04-02T21:23:18Z #14 1.711 21400K .......... .......... .......... .......... .......... 16% 133M 2s +2024-04-02T21:23:18Z #14 1.711 21450K .......... .......... .......... .......... .......... 16% 122M 2s +2024-04-02T21:23:18Z #14 1.711 21500K .......... .......... .......... .......... .......... 16% 109M 2s +2024-04-02T21:23:18Z #14 1.711 21550K .......... .......... .......... .......... .......... 17% 160M 2s +2024-04-02T21:23:18Z #14 1.711 21600K .......... .......... .......... .......... .......... 17% 67.9M 2s +2024-04-02T21:23:18Z #14 1.711 21650K .......... .......... .......... .......... .......... 17% 95.7M 2s +2024-04-02T21:23:18Z #14 1.715 21700K .......... .......... .......... .......... .......... 17% 83.7M 2s +2024-04-02T21:23:18Z #14 1.715 21750K .......... .......... .......... .......... .......... 17% 119M 2s +2024-04-02T21:23:18Z #14 1.715 21800K .......... .......... .......... .......... .......... 17% 106M 2s +2024-04-02T21:23:18Z #14 1.715 21850K .......... .......... .......... .......... .......... 17% 132M 2s +2024-04-02T21:23:18Z #14 1.715 21900K .......... .......... .......... .......... .......... 17% 128M 2s +2024-04-02T21:23:18Z #14 1.715 21950K .......... .......... .......... .......... .......... 17% 130M 2s +2024-04-02T21:23:18Z #14 1.715 22000K .......... .......... .......... .......... .......... 17% 77.2M 2s +2024-04-02T21:23:18Z #14 1.719 22050K .......... .......... .......... .......... .......... 17% 123M 2s +2024-04-02T21:23:18Z #14 1.719 22100K .......... .......... .......... .......... .......... 17% 111M 2s +2024-04-02T21:23:18Z #14 1.719 22150K .......... .......... .......... .......... .......... 17% 122M 2s +2024-04-02T21:23:18Z #14 1.719 22200K .......... .......... .......... .......... .......... 17% 122M 2s +2024-04-02T21:23:18Z #14 1.719 22250K .......... .......... .......... .......... .......... 17% 117M 2s +2024-04-02T21:23:18Z #14 1.719 22300K .......... .......... .......... .......... .......... 17% 124M 2s +2024-04-02T21:23:18Z #14 1.719 22350K .......... .......... .......... .......... .......... 17% 134M 2s +2024-04-02T21:23:18Z #14 1.719 22400K .......... .......... .......... .......... .......... 17% 135M 2s +2024-04-02T21:23:18Z #14 1.719 22450K .......... .......... .......... .......... .......... 17% 113M 2s +2024-04-02T21:23:18Z #14 1.719 22500K .......... .......... .......... .......... .......... 17% 71.9M 2s +2024-04-02T21:23:18Z #14 1.723 22550K .......... .......... .......... .......... .......... 17% 122M 2s +2024-04-02T21:23:18Z #14 1.723 22600K .......... .......... .......... .......... .......... 17% 131M 2s +2024-04-02T21:23:18Z #14 1.723 22650K .......... .......... .......... .......... .......... 17% 131M 2s +2024-04-02T21:23:18Z #14 1.723 22700K .......... .......... .......... .......... .......... 17% 126M 2s +2024-04-02T21:23:18Z #14 1.723 22750K .......... .......... .......... .......... .......... 17% 107M 2s +2024-04-02T21:23:18Z #14 1.723 22800K .......... .......... .......... .......... .......... 18% 131M 2s +2024-04-02T21:23:18Z #14 1.723 22850K .......... .......... .......... .......... .......... 18% 114M 2s +2024-04-02T21:23:18Z #14 1.723 22900K .......... .......... .......... .......... .......... 18% 123M 2s +2024-04-02T21:23:18Z #14 1.723 22950K .......... .......... .......... .......... .......... 18% 80.6M 2s +2024-04-02T21:23:18Z #14 1.723 23000K .......... .......... .......... .......... .......... 18% 125M 2s +2024-04-02T21:23:18Z #14 1.724 23050K .......... .......... .......... .......... .......... 18% 173M 2s +2024-04-02T21:23:18Z #14 1.724 23100K .......... .......... .......... .......... .......... 18% 169M 2s +2024-04-02T21:23:18Z #14 1.724 23150K .......... .......... .......... .......... .......... 18% 168M 2s +2024-04-02T21:23:18Z #14 1.725 23200K .......... .......... .......... .......... .......... 18% 154M 2s +2024-04-02T21:23:18Z #14 1.725 23250K .......... .......... .......... .......... .......... 18% 185M 2s +2024-04-02T21:23:18Z #14 1.725 23300K .......... .......... .......... .......... .......... 18% 138M 2s +2024-04-02T21:23:18Z #14 1.725 23350K .......... .......... .......... .......... .......... 18% 169M 2s +2024-04-02T21:23:18Z #14 1.726 23400K .......... .......... .......... .......... .......... 18% 148M 2s +2024-04-02T21:23:18Z #14 1.726 23450K .......... .......... .......... .......... .......... 18% 147M 2s +2024-04-02T21:23:18Z #14 1.727 23500K .......... .......... .......... .......... .......... 18% 158M 2s +2024-04-02T21:23:18Z #14 1.727 23550K .......... .......... .......... .......... .......... 18% 160M 2s +2024-04-02T21:23:18Z #14 1.727 23600K .......... .......... .......... .......... .......... 18% 137M 2s +2024-04-02T21:23:18Z #14 1.727 23650K .......... .......... .......... .......... .......... 18% 164M 2s +2024-04-02T21:23:18Z #14 1.728 23700K .......... .......... .......... .......... .......... 18% 172M 2s +2024-04-02T21:23:18Z #14 1.729 23750K .......... .......... .......... .......... .......... 18% 144M 2s +2024-04-02T21:23:18Z #14 1.729 23800K .......... .......... .......... .......... .......... 18% 121M 2s +2024-04-02T21:23:18Z #14 1.729 23850K .......... .......... .......... .......... .......... 18% 153M 2s +2024-04-02T21:23:18Z #14 1.729 23900K .......... .......... .......... .......... .......... 18% 141M 2s +2024-04-02T21:23:18Z #14 1.730 23950K .......... .......... .......... .......... .......... 18% 121M 2s +2024-04-02T21:23:18Z #14 1.730 24000K .......... .......... .......... .......... .......... 18% 139M 2s +2024-04-02T21:23:18Z #14 1.731 24050K .......... .......... .......... .......... .......... 19% 158M 2s +2024-04-02T21:23:18Z #14 1.731 24100K .......... .......... .......... .......... .......... 19% 157M 2s +2024-04-02T21:23:18Z #14 1.731 24150K .......... .......... .......... .......... .......... 19% 106M 2s +2024-04-02T21:23:18Z #14 1.732 24200K .......... .......... .......... .......... .......... 19% 134M 2s +2024-04-02T21:23:18Z #14 1.732 24250K .......... .......... .......... .......... .......... 19% 121M 2s +2024-04-02T21:23:18Z #14 1.740 24300K .......... .......... .......... .......... .......... 19% 152M 2s +2024-04-02T21:23:18Z #14 1.740 24350K .......... .......... .......... .......... .......... 19% 137M 2s +2024-04-02T21:23:18Z #14 1.740 24400K .......... .......... .......... .......... .......... 19% 158M 2s +2024-04-02T21:23:18Z #14 1.740 24450K .......... .......... .......... .......... .......... 19% 135M 2s +2024-04-02T21:23:18Z #14 1.740 24500K .......... .......... .......... .......... .......... 19% 123M 2s +2024-04-02T21:23:18Z #14 1.740 24550K .......... .......... .......... .......... .......... 19% 123M 2s +2024-04-02T21:23:18Z #14 1.740 24600K .......... .......... .......... .......... .......... 19% 106M 2s +2024-04-02T21:23:18Z #14 1.740 24650K .......... .......... .......... .......... .......... 19% 110M 2s +2024-04-02T21:23:18Z #14 1.740 24700K .......... .......... .......... .......... .......... 19% 138M 1s +2024-04-02T21:23:18Z #14 1.740 24750K .......... .......... .......... .......... .......... 19% 135M 1s +2024-04-02T21:23:18Z #14 1.740 24800K .......... .......... .......... .......... .......... 19% 114M 1s +2024-04-02T21:23:18Z #14 1.740 24850K .......... .......... .......... .......... .......... 19% 133M 1s +2024-04-02T21:23:18Z #14 1.740 24900K .......... .......... .......... .......... .......... 19% 105M 1s +2024-04-02T21:23:18Z #14 1.740 24950K .......... .......... .......... .......... .......... 19% 125M 1s +2024-04-02T21:23:18Z #14 1.740 25000K .......... .......... .......... .......... .......... 19% 119M 1s +2024-04-02T21:23:18Z #14 1.740 25050K .......... .......... .......... .......... .......... 19% 151M 1s +2024-04-02T21:23:18Z #14 1.740 25100K .......... .......... .......... .......... .......... 19% 149M 1s +2024-04-02T21:23:18Z #14 1.740 25150K .......... .......... .......... .......... .......... 19% 95.8M 1s +2024-04-02T21:23:18Z #14 1.740 25200K .......... .......... .......... .......... .......... 19% 116M 1s +2024-04-02T21:23:18Z #14 1.740 25250K .......... .......... .......... .......... .......... 19% 127M 1s +2024-04-02T21:23:18Z #14 1.740 25300K .......... .......... .......... .......... .......... 19% 112M 1s +2024-04-02T21:23:18Z #14 1.741 25350K .......... .......... .......... .......... .......... 20% 116M 1s +2024-04-02T21:23:18Z #14 1.741 25400K .......... .......... .......... .......... .......... 20% 122M 1s +2024-04-02T21:23:18Z #14 1.742 25450K .......... .......... .......... .......... .......... 20% 132M 1s +2024-04-02T21:23:18Z #14 1.742 25500K .......... .......... .......... .......... .......... 20% 119M 1s +2024-04-02T21:23:18Z #14 1.742 25550K .......... .......... .......... .......... .......... 20% 103M 1s +2024-04-02T21:23:18Z #14 1.742 25600K .......... .......... .......... .......... .......... 20% 116M 1s +2024-04-02T21:23:18Z #14 1.743 25650K .......... .......... .......... .......... .......... 20% 104M 1s +2024-04-02T21:23:18Z #14 1.743 25700K .......... .......... .......... .......... .......... 20% 121M 1s +2024-04-02T21:23:18Z #14 1.744 25750K .......... .......... .......... .......... .......... 20% 120M 1s +2024-04-02T21:23:18Z #14 1.744 25800K .......... .......... .......... .......... .......... 20% 105M 1s +2024-04-02T21:23:18Z #14 1.745 25850K .......... .......... .......... .......... .......... 20% 109M 1s +2024-04-02T21:23:18Z #14 1.745 25900K .......... .......... .......... .......... .......... 20% 127M 1s +2024-04-02T21:23:18Z #14 1.745 25950K .......... .......... .......... .......... .......... 20% 111M 1s +2024-04-02T21:23:18Z #14 1.746 26000K .......... .......... .......... .......... .......... 20% 118M 1s +2024-04-02T21:23:18Z #14 1.746 26050K .......... .......... .......... .......... .......... 20% 154M 1s +2024-04-02T21:23:18Z #14 1.747 26100K .......... .......... .......... .......... .......... 20% 129M 1s +2024-04-02T21:23:18Z #14 1.747 26150K .......... .......... .......... .......... .......... 20% 105M 1s +2024-04-02T21:23:18Z #14 1.747 26200K .......... .......... .......... .......... .......... 20% 140M 1s +2024-04-02T21:23:18Z #14 1.748 26250K .......... .......... .......... .......... .......... 20% 139M 1s +2024-04-02T21:23:18Z #14 1.748 26300K .......... .......... .......... .......... .......... 20% 142M 1s +2024-04-02T21:23:18Z #14 1.749 26350K .......... .......... .......... .......... .......... 20% 113M 1s +2024-04-02T21:23:18Z #14 1.749 26400K .......... .......... .......... .......... .......... 20% 146M 1s +2024-04-02T21:23:18Z #14 1.750 26450K .......... .......... .......... .......... .......... 20% 126M 1s +2024-04-02T21:23:18Z #14 1.750 26500K .......... .......... .......... .......... .......... 20% 141M 1s +2024-04-02T21:23:18Z #14 1.750 26550K .......... .......... .......... .......... .......... 20% 130M 1s +2024-04-02T21:23:18Z #14 1.751 26600K .......... .......... .......... .......... .......... 21% 109M 1s +2024-04-02T21:23:18Z #14 1.751 26650K .......... .......... .......... .......... .......... 21% 126M 1s +2024-04-02T21:23:18Z #14 1.751 26700K .......... .......... .......... .......... .......... 21% 111M 1s +2024-04-02T21:23:18Z #14 1.752 26750K .......... .......... .......... .......... .......... 21% 144M 1s +2024-04-02T21:23:18Z #14 1.753 26800K .......... .......... .......... .......... .......... 21% 113M 1s +2024-04-02T21:23:18Z #14 1.753 26850K .......... .......... .......... .......... .......... 21% 149M 1s +2024-04-02T21:23:18Z #14 1.753 26900K .......... .......... .......... .......... .......... 21% 128M 1s +2024-04-02T21:23:18Z #14 1.753 26950K .......... .......... .......... .......... .......... 21% 116M 1s +2024-04-02T21:23:18Z #14 1.754 27000K .......... .......... .......... .......... .......... 21% 148M 1s +2024-04-02T21:23:18Z #14 1.754 27050K .......... .......... .......... .......... .......... 21% 121M 1s +2024-04-02T21:23:18Z #14 1.754 27100K .......... .......... .......... .......... .......... 21% 144M 1s +2024-04-02T21:23:18Z #14 1.756 27150K .......... .......... .......... .......... .......... 21% 135M 1s +2024-04-02T21:23:18Z #14 1.756 27200K .......... .......... .......... .......... .......... 21% 118M 1s +2024-04-02T21:23:18Z #14 1.756 27250K .......... .......... .......... .......... .......... 21% 130M 1s +2024-04-02T21:23:18Z #14 1.756 27300K .......... .......... .......... .......... .......... 21% 126M 1s +2024-04-02T21:23:18Z #14 1.757 27350K .......... .......... .......... .......... .......... 21% 112M 1s +2024-04-02T21:23:18Z #14 1.757 27400K .......... .......... .......... .......... .......... 21% 132M 1s +2024-04-02T21:23:18Z #14 1.758 27450K .......... .......... .......... .......... .......... 21% 153M 1s +2024-04-02T21:23:18Z #14 1.759 27500K .......... .......... .......... .......... .......... 21% 115M 1s +2024-04-02T21:23:18Z #14 1.759 27550K .......... .......... .......... .......... .......... 21% 173M 1s +2024-04-02T21:23:18Z #14 1.759 27600K .......... .......... .......... .......... .......... 21% 120M 1s +2024-04-02T21:23:18Z #14 1.759 27650K .......... .......... .......... .......... .......... 21% 110M 1s +2024-04-02T21:23:18Z #14 1.760 27700K .......... .......... .......... .......... .......... 21% 5.83M 1s +2024-04-02T21:23:18Z #14 1.769 27750K .......... .......... .......... .......... .......... 21% 119M 1s +2024-04-02T21:23:18Z #14 1.769 27800K .......... .......... .......... .......... .......... 21% 127M 1s +2024-04-02T21:23:18Z #14 1.769 27850K .......... .......... .......... .......... .......... 22% 155M 1s +2024-04-02T21:23:18Z #14 1.769 27900K .......... .......... .......... .......... .......... 22% 116M 1s +2024-04-02T21:23:18Z #14 1.769 27950K .......... .......... .......... .......... .......... 22% 138M 1s +2024-04-02T21:23:18Z #14 1.769 28000K .......... .......... .......... .......... .......... 22% 146M 1s +2024-04-02T21:23:18Z #14 1.771 28050K .......... .......... .......... .......... .......... 22% 113M 1s +2024-04-02T21:23:18Z #14 1.771 28100K .......... .......... .......... .......... .......... 22% 157M 1s +2024-04-02T21:23:18Z #14 1.771 28150K .......... .......... .......... .......... .......... 22% 113M 1s +2024-04-02T21:23:18Z #14 1.771 28200K .......... .......... .......... .......... .......... 22% 144M 1s +2024-04-02T21:23:18Z #14 1.771 28250K .......... .......... .......... .......... .......... 22% 116M 1s +2024-04-02T21:23:18Z #14 1.772 28300K .......... .......... .......... .......... .......... 22% 153M 1s +2024-04-02T21:23:18Z #14 1.773 28350K .......... .......... .......... .......... .......... 22% 119M 1s +2024-04-02T21:23:18Z #14 1.773 28400K .......... .......... .......... .......... .......... 22% 128M 1s +2024-04-02T21:23:18Z #14 1.774 28450K .......... .......... .......... .......... .......... 22% 163M 1s +2024-04-02T21:23:18Z #14 1.774 28500K .......... .......... .......... .......... .......... 22% 142M 1s +2024-04-02T21:23:18Z #14 1.774 28550K .......... .......... .......... .......... .......... 22% 125M 1s +2024-04-02T21:23:18Z #14 1.774 28600K .......... .......... .......... .......... .......... 22% 138M 1s +2024-04-02T21:23:18Z #14 1.774 28650K .......... .......... .......... .......... .......... 22% 145M 1s +2024-04-02T21:23:18Z #14 1.776 28700K .......... .......... .......... .......... .......... 22% 134M 1s +2024-04-02T21:23:18Z #14 1.776 28750K .......... .......... .......... .......... .......... 22% 136M 1s +2024-04-02T21:23:18Z #14 1.777 28800K .......... .......... .......... .......... .......... 22% 20.4M 1s +2024-04-02T21:23:18Z #14 1.778 28850K .......... .......... .......... .......... .......... 22% 113M 1s +2024-04-02T21:23:18Z #14 1.778 28900K .......... .......... .......... .......... .......... 22% 155M 1s +2024-04-02T21:23:18Z #14 1.779 28950K .......... .......... .......... .......... .......... 22% 155M 1s +2024-04-02T21:23:18Z #14 1.780 29000K .......... .......... .......... .......... .......... 22% 153M 1s +2024-04-02T21:23:18Z #14 1.780 29050K .......... .......... .......... .......... .......... 22% 95.2M 1s +2024-04-02T21:23:18Z #14 1.780 29100K .......... .......... .......... .......... .......... 22% 135M 1s +2024-04-02T21:23:18Z #14 1.780 29150K .......... .......... .......... .......... .......... 23% 123M 1s +2024-04-02T21:23:18Z #14 1.780 29200K .......... .......... .......... .......... .......... 23% 165M 1s +2024-04-02T21:23:18Z #14 1.780 29250K .......... .......... .......... .......... .......... 23% 124M 1s +2024-04-02T21:23:18Z #14 1.781 29300K .......... .......... .......... .......... .......... 23% 154M 1s +2024-04-02T21:23:18Z #14 1.781 29350K .......... .......... .......... .......... .......... 23% 145M 1s +2024-04-02T21:23:18Z #14 1.781 29400K .......... .......... .......... .......... .......... 23% 140M 1s +2024-04-02T21:23:18Z #14 1.782 29450K .......... .......... .......... .......... .......... 23% 126M 1s +2024-04-02T21:23:18Z #14 1.782 29500K .......... .......... .......... .......... .......... 23% 136M 1s +2024-04-02T21:23:18Z #14 1.782 29550K .......... .......... .......... .......... .......... 23% 153M 1s +2024-04-02T21:23:18Z #14 1.783 29600K .......... .......... .......... .......... .......... 23% 125M 1s +2024-04-02T21:23:18Z #14 1.784 29650K .......... .......... .......... .......... .......... 23% 140M 1s +2024-04-02T21:23:18Z #14 1.784 29700K .......... .......... .......... .......... .......... 23% 123M 1s +2024-04-02T21:23:18Z #14 1.784 29750K .......... .......... .......... .......... .......... 23% 151M 1s +2024-04-02T21:23:18Z #14 1.784 29800K .......... .......... .......... .......... .......... 23% 119M 1s +2024-04-02T21:23:18Z #14 1.784 29850K .......... .......... .......... .......... .......... 23% 125M 1s +2024-04-02T21:23:18Z #14 1.786 29900K .......... .......... .......... .......... .......... 23% 155M 1s +2024-04-02T21:23:18Z #14 1.786 29950K .......... .......... .......... .......... .......... 23% 164M 1s +2024-04-02T21:23:18Z #14 1.786 30000K .......... .......... .......... .......... .......... 23% 109M 1s +2024-04-02T21:23:18Z #14 1.786 30050K .......... .......... .......... .......... .......... 23% 135M 1s +2024-04-02T21:23:18Z #14 1.786 30100K .......... .......... .......... .......... .......... 23% 151M 1s +2024-04-02T21:23:18Z #14 1.787 30150K .......... .......... .......... .......... .......... 23% 5.79M 1s +2024-04-02T21:23:18Z #14 1.795 30200K .......... .......... .......... .......... .......... 23% 130M 1s +2024-04-02T21:23:18Z #14 1.795 30250K .......... .......... .......... .......... .......... 23% 137M 1s +2024-04-02T21:23:18Z #14 1.796 30300K .......... .......... .......... .......... .......... 23% 141M 1s +2024-04-02T21:23:18Z #14 1.797 30350K .......... .......... .......... .......... .......... 23% 142M 1s +2024-04-02T21:23:18Z #14 1.801 30400K .......... .......... .......... .......... .......... 24% 152M 1s +2024-04-02T21:23:18Z #14 1.801 30450K .......... .......... .......... .......... .......... 24% 173M 1s +2024-04-02T21:23:18Z #14 1.801 30500K .......... .......... .......... .......... .......... 24% 155M 1s +2024-04-02T21:23:18Z #14 1.801 30550K .......... .......... .......... .......... .......... 24% 129M 1s +2024-04-02T21:23:18Z #14 1.801 30600K .......... .......... .......... .......... .......... 24% 164M 1s +2024-04-02T21:23:18Z #14 1.801 30650K .......... .......... .......... .......... .......... 24% 152M 1s +2024-04-02T21:23:18Z #14 1.801 30700K .......... .......... .......... .......... .......... 24% 152M 1s +2024-04-02T21:23:18Z #14 1.801 30750K .......... .......... .......... .......... .......... 24% 28.3M 1s +2024-04-02T21:23:18Z #14 1.801 30800K .......... .......... .......... .......... .......... 24% 132M 1s +2024-04-02T21:23:18Z #14 1.801 30850K .......... .......... .......... .......... .......... 24% 140M 1s +2024-04-02T21:23:18Z #14 1.801 30900K .......... .......... .......... .......... .......... 24% 133M 1s +2024-04-02T21:23:18Z #14 1.802 30950K .......... .......... .......... .......... .......... 24% 133M 1s +2024-04-02T21:23:18Z #14 1.802 31000K .......... .......... .......... .......... .......... 24% 148M 1s +2024-04-02T21:23:18Z #14 1.802 31050K .......... .......... .......... .......... .......... 24% 147M 1s +2024-04-02T21:23:18Z #14 1.802 31100K .......... .......... .......... .......... .......... 24% 131M 1s +2024-04-02T21:23:18Z #14 1.804 31150K .......... .......... .......... .......... .......... 24% 109M 1s +2024-04-02T21:23:18Z #14 1.804 31200K .......... .......... .......... .......... .......... 24% 142M 1s +2024-04-02T21:23:18Z #14 1.804 31250K .......... .......... .......... .......... .......... 24% 132M 1s +2024-04-02T21:23:18Z #14 1.807 31300K .......... .......... .......... .......... .......... 24% 165M 1s +2024-04-02T21:23:18Z #14 1.807 31350K .......... .......... .......... .......... .......... 24% 149M 1s +2024-04-02T21:23:18Z #14 1.807 31400K .......... .......... .......... .......... .......... 24% 199M 1s +2024-04-02T21:23:18Z #14 1.807 31450K .......... .......... .......... .......... .......... 24% 210M 1s +2024-04-02T21:23:18Z #14 1.807 31500K .......... .......... .......... .......... .......... 24% 176M 1s +2024-04-02T21:23:18Z #14 1.807 31550K .......... .......... .......... .......... .......... 24% 199M 1s +2024-04-02T21:23:18Z #14 1.807 31600K .......... .......... .......... .......... .......... 24% 208M 1s +2024-04-02T21:23:18Z #14 1.807 31650K .......... .......... .......... .......... .......... 25% 194M 1s +2024-04-02T21:23:18Z #14 1.807 31700K .......... .......... .......... .......... .......... 25% 183M 1s +2024-04-02T21:23:18Z #14 1.807 31750K .......... .......... .......... .......... .......... 25% 213M 1s +2024-04-02T21:23:18Z #14 1.807 31800K .......... .......... .......... .......... .......... 25% 13.5M 1s +2024-04-02T21:23:18Z #14 1.810 31850K .......... .......... .......... .......... .......... 25% 124M 1s +2024-04-02T21:23:18Z #14 1.811 31900K .......... .......... .......... .......... .......... 25% 53.1M 1s +2024-04-02T21:23:18Z #14 1.812 31950K .......... .......... .......... .......... .......... 25% 150M 1s +2024-04-02T21:23:18Z #14 1.812 32000K .......... .......... .......... .......... .......... 25% 145M 1s +2024-04-02T21:23:18Z #14 1.812 32050K .......... .......... .......... .......... .......... 25% 152M 1s +2024-04-02T21:23:18Z #14 1.812 32100K .......... .......... .......... .......... .......... 25% 138M 1s +2024-04-02T21:23:18Z #14 1.813 32150K .......... .......... .......... .......... .......... 25% 162M 1s +2024-04-02T21:23:18Z #14 1.813 32200K .......... .......... .......... .......... .......... 25% 165M 1s +2024-04-02T21:23:18Z #14 1.813 32250K .......... .......... .......... .......... .......... 25% 152M 1s +2024-04-02T21:23:18Z #14 1.814 32300K .......... .......... .......... .......... .......... 25% 128M 1s +2024-04-02T21:23:18Z #14 1.814 32350K .......... .......... .......... .......... .......... 25% 161M 1s +2024-04-02T21:23:18Z #14 1.814 32400K .......... .......... .......... .......... .......... 25% 149M 1s +2024-04-02T21:23:18Z #14 1.815 32450K .......... .......... .......... .......... .......... 25% 129M 1s +2024-04-02T21:23:18Z #14 1.815 32500K .......... .......... .......... .......... .......... 25% 155M 1s +2024-04-02T21:23:18Z #14 1.815 32550K .......... .......... .......... .......... .......... 25% 164M 1s +2024-04-02T21:23:18Z #14 1.816 32600K .......... .......... .......... .......... .......... 25% 137M 1s +2024-04-02T21:23:18Z #14 1.816 32650K .......... .......... .......... .......... .......... 25% 148M 1s +2024-04-02T21:23:18Z #14 1.816 32700K .......... .......... .......... .......... .......... 25% 133M 1s +2024-04-02T21:23:18Z #14 1.817 32750K .......... .......... .......... .......... .......... 25% 147M 1s +2024-04-02T21:23:18Z #14 1.817 32800K .......... .......... .......... .......... .......... 25% 171M 1s +2024-04-02T21:23:18Z #14 1.818 32850K .......... .......... .......... .......... .......... 25% 144M 1s +2024-04-02T21:23:18Z #14 1.818 32900K .......... .......... .......... .......... .......... 25% 163M 1s +2024-04-02T21:23:18Z #14 1.818 32950K .......... .......... .......... .......... .......... 26% 140M 1s +2024-04-02T21:23:18Z #14 1.819 33000K .......... .......... .......... .......... .......... 26% 170M 1s +2024-04-02T21:23:18Z #14 1.819 33050K .......... .......... .......... .......... .......... 26% 17.3M 1s +2024-04-02T21:23:18Z #14 1.822 33100K .......... .......... .......... .......... .......... 26% 164M 1s +2024-04-02T21:23:18Z #14 1.822 33150K .......... .......... .......... .......... .......... 26% 144M 1s +2024-04-02T21:23:18Z #14 1.822 33200K .......... .......... .......... .......... .......... 26% 164M 1s +2024-04-02T21:23:18Z #14 1.823 33250K .......... .......... .......... .......... .......... 26% 153M 1s +2024-04-02T21:23:18Z #14 1.823 33300K .......... .......... .......... .......... .......... 26% 80.0M 1s +2024-04-02T21:23:18Z #14 1.824 33350K .......... .......... .......... .......... .......... 26% 68.2M 1s +2024-04-02T21:23:18Z #14 1.824 33400K .......... .......... .......... .......... .......... 26% 99.7M 1s +2024-04-02T21:23:18Z #14 1.825 33450K .......... .......... .......... .......... .......... 26% 97.0M 1s +2024-04-02T21:23:18Z #14 1.825 33500K .......... .......... .......... .......... .......... 26% 143M 1s +2024-04-02T21:23:18Z #14 1.826 33550K .......... .......... .......... .......... .......... 26% 115M 1s +2024-04-02T21:23:18Z #14 1.826 33600K .......... .......... .......... .......... .......... 26% 136M 1s +2024-04-02T21:23:18Z #14 1.826 33650K .......... .......... .......... .......... .......... 26% 128M 1s +2024-04-02T21:23:18Z #14 1.827 33700K .......... .......... .......... .......... .......... 26% 77.6M 1s +2024-04-02T21:23:18Z #14 1.828 33750K .......... .......... .......... .......... .......... 26% 70.9M 1s +2024-04-02T21:23:18Z #14 1.828 33800K .......... .......... .......... .......... .......... 26% 133M 1s +2024-04-02T21:23:18Z #14 1.829 33850K .......... .......... .......... .......... .......... 26% 110M 1s +2024-04-02T21:23:18Z #14 1.829 33900K .......... .......... .......... .......... .......... 26% 101M 1s +2024-04-02T21:23:18Z #14 1.830 33950K .......... .......... .......... .......... .......... 26% 120M 1s +2024-04-02T21:23:18Z #14 1.830 34000K .......... .......... .......... .......... .......... 26% 60.7M 1s +2024-04-02T21:23:18Z #14 1.831 34050K .......... .......... .......... .......... .......... 26% 75.8M 1s +2024-04-02T21:23:18Z #14 1.831 34100K .......... .......... .......... .......... .......... 26% 79.9M 1s +2024-04-02T21:23:18Z #14 1.832 34150K .......... .......... .......... .......... .......... 26% 6.63M 1s +2024-04-02T21:23:18Z #14 1.839 34200K .......... .......... .......... .......... .......... 27% 160M 1s +2024-04-02T21:23:18Z #14 1.839 34250K .......... .......... .......... .......... .......... 27% 134M 1s +2024-04-02T21:23:18Z #14 1.840 34300K .......... .......... .......... .......... .......... 27% 159M 1s +2024-04-02T21:23:18Z #14 1.840 34350K .......... .......... .......... .......... .......... 27% 156M 1s +2024-04-02T21:23:18Z #14 1.840 34400K .......... .......... .......... .......... .......... 27% 161M 1s +2024-04-02T21:23:18Z #14 1.841 34450K .......... .......... .......... .......... .......... 27% 139M 1s +2024-04-02T21:23:18Z #14 1.841 34500K .......... .......... .......... .......... .......... 27% 172M 1s +2024-04-02T21:23:18Z #14 1.842 34550K .......... .......... .......... .......... .......... 27% 148M 1s +2024-04-02T21:23:18Z #14 1.842 34600K .......... .......... .......... .......... .......... 27% 160M 1s +2024-04-02T21:23:18Z #14 1.842 34650K .......... .......... .......... .......... .......... 27% 147M 1s +2024-04-02T21:23:18Z #14 1.842 34700K .......... .......... .......... .......... .......... 27% 1011K 1s +2024-04-02T21:23:18Z #14 1.892 34750K .......... .......... .......... .......... .......... 27% 163M 1s +2024-04-02T21:23:18Z #14 1.892 34800K .......... .......... .......... .......... .......... 27% 125M 1s +2024-04-02T21:23:18Z #14 1.892 34850K .......... .......... .......... .......... .......... 27% 68.0M 1s +2024-04-02T21:23:18Z #14 1.894 34900K .......... .......... .......... .......... .......... 27% 116M 1s +2024-04-02T21:23:18Z #14 1.894 34950K .......... .......... .......... .......... .......... 27% 141M 1s +2024-04-02T21:23:18Z #14 1.894 35000K .......... .......... .......... .......... .......... 27% 154M 1s +2024-04-02T21:23:18Z #14 1.894 35050K .......... .......... .......... .......... .......... 27% 147M 1s +2024-04-02T21:23:18Z #14 1.895 35100K .......... .......... .......... .......... .......... 27% 122M 1s +2024-04-02T21:23:18Z #14 1.895 35150K .......... .......... .......... .......... .......... 27% 162M 1s +2024-04-02T21:23:18Z #14 1.896 35200K .......... .......... .......... .......... .......... 27% 126M 1s +2024-04-02T21:23:18Z #14 1.896 35250K .......... .......... .......... .......... .......... 27% 167M 1s +2024-04-02T21:23:18Z #14 1.896 35300K .......... .......... .......... .......... .......... 27% 135M 1s +2024-04-02T21:23:18Z #14 1.896 35350K .......... .......... .......... .......... .......... 27% 157M 1s +2024-04-02T21:23:18Z #14 1.897 35400K .......... .......... .......... .......... .......... 27% 134M 1s +2024-04-02T21:23:18Z #14 1.898 35450K .......... .......... .......... .......... .......... 28% 132M 1s +2024-04-02T21:23:18Z #14 1.898 35500K .......... .......... .......... .......... .......... 28% 149M 1s +2024-04-02T21:23:18Z #14 1.898 35550K .......... .......... .......... .......... .......... 28% 134M 1s +2024-04-02T21:23:18Z #14 1.899 35600K .......... .......... .......... .......... .......... 28% 151M 1s +2024-04-02T21:23:18Z #14 1.899 35650K .......... .......... .......... .......... .......... 28% 157M 1s +2024-04-02T21:23:18Z #14 1.899 35700K .......... .......... .......... .......... .......... 28% 55.0M 1s +2024-04-02T21:23:18Z #14 1.900 35750K .......... .......... .......... .......... .......... 28% 155M 1s +2024-04-02T21:23:18Z #14 1.900 35800K .......... .......... .......... .......... .......... 28% 126M 1s +2024-04-02T21:23:18Z #14 1.900 35850K .......... .......... .......... .......... .......... 28% 147M 1s +2024-04-02T21:23:18Z #14 1.903 35900K .......... .......... .......... .......... .......... 28% 170M 1s +2024-04-02T21:23:18Z #14 1.903 35950K .......... .......... .......... .......... .......... 28% 133M 1s +2024-04-02T21:23:18Z #14 1.903 36000K .......... .......... .......... .......... .......... 28% 148M 1s +2024-04-02T21:23:18Z #14 1.903 36050K .......... .......... .......... .......... .......... 28% 170M 1s +2024-04-02T21:23:18Z #14 1.903 36100K .......... .......... .......... .......... .......... 28% 157M 1s +2024-04-02T21:23:18Z #14 1.903 36150K .......... .......... .......... .......... .......... 28% 144M 1s +2024-04-02T21:23:18Z #14 1.903 36200K .......... .......... .......... .......... .......... 28% 170M 1s +2024-04-02T21:23:18Z #14 1.903 36250K .......... .......... .......... .......... .......... 28% 129M 1s +2024-04-02T21:23:18Z #14 1.904 36300K .......... .......... .......... .......... .......... 28% 140M 1s +2024-04-02T21:23:18Z #14 1.904 36350K .......... .......... .......... .......... .......... 28% 130M 1s +2024-04-02T21:23:18Z #14 1.904 36400K .......... .......... .......... .......... .......... 28% 164M 1s +2024-04-02T21:23:18Z #14 1.905 36450K .......... .......... .......... .......... .......... 28% 138M 1s +2024-04-02T21:23:18Z #14 1.905 36500K .......... .......... .......... .......... .......... 28% 145M 1s +2024-04-02T21:23:18Z #14 1.905 36550K .......... .......... .......... .......... .......... 28% 96.2M 1s +2024-04-02T21:23:18Z #14 1.905 36600K .......... .......... .......... .......... .......... 28% 46.7M 1s +2024-04-02T21:23:18Z #14 1.907 36650K .......... .......... .......... .......... .......... 28% 110M 1s +2024-04-02T21:23:18Z #14 1.907 36700K .......... .......... .......... .......... .......... 28% 78.8M 1s +2024-04-02T21:23:18Z #14 1.908 36750K .......... .......... .......... .......... .......... 29% 134M 1s +2024-04-02T21:23:18Z #14 1.908 36800K .......... .......... .......... .......... .......... 29% 10.7M 1s +2024-04-02T21:23:18Z #14 1.913 36850K .......... .......... .......... .......... .......... 29% 140M 1s +2024-04-02T21:23:18Z #14 1.913 36900K .......... .......... .......... .......... .......... 29% 19.2M 1s +2024-04-02T21:23:18Z #14 1.918 36950K .......... .......... .......... .......... .......... 29% 163M 1s +2024-04-02T21:23:18Z #14 1.918 37000K .......... .......... .......... .......... .......... 29% 159M 1s +2024-04-02T21:23:18Z #14 1.918 37050K .......... .......... .......... .......... .......... 29% 153M 1s +2024-04-02T21:23:18Z #14 1.918 37100K .......... .......... .......... .......... .......... 29% 30.0M 1s +2024-04-02T21:23:18Z #14 1.918 37150K .......... .......... .......... .......... .......... 29% 39.4M 1s +2024-04-02T21:23:18Z #14 1.921 37200K .......... .......... .......... .......... .......... 29% 25.5M 1s +2024-04-02T21:23:18Z #14 1.923 37250K .......... .......... .......... .......... .......... 29% 172M 1s +2024-04-02T21:23:18Z #14 1.923 37300K .......... .......... .......... .......... .......... 29% 155M 1s +2024-04-02T21:23:18Z #14 1.923 37350K .......... .......... .......... .......... .......... 29% 134M 1s +2024-04-02T21:23:18Z #14 1.923 37400K .......... .......... .......... .......... .......... 29% 143M 1s +2024-04-02T21:23:18Z #14 1.923 37450K .......... .......... .......... .......... .......... 29% 132M 1s +2024-04-02T21:23:18Z #14 1.923 37500K .......... .......... .......... .......... .......... 29% 87.7M 1s +2024-04-02T21:23:18Z #14 1.927 37550K .......... .......... .......... .......... .......... 29% 157M 1s +2024-04-02T21:23:18Z #14 1.927 37600K .......... .......... .......... .......... .......... 29% 140M 1s +2024-04-02T21:23:18Z #14 1.927 37650K .......... .......... .......... .......... .......... 29% 157M 1s +2024-04-02T21:23:18Z #14 1.927 37700K .......... .......... .......... .......... .......... 29% 133M 1s +2024-04-02T21:23:18Z #14 1.927 37750K .......... .......... .......... .......... .......... 29% 158M 1s +2024-04-02T21:23:18Z #14 1.927 37800K .......... .......... .......... .......... .......... 29% 156M 1s +2024-04-02T21:23:18Z #14 1.927 37850K .......... .......... .......... .......... .......... 29% 136M 1s +2024-04-02T21:23:18Z #14 1.927 37900K .......... .......... .......... .......... .......... 29% 151M 1s +2024-04-02T21:23:18Z #14 1.927 37950K .......... .......... .......... .......... .......... 29% 126M 1s +2024-04-02T21:23:18Z #14 1.927 38000K .......... .......... .......... .......... .......... 30% 149M 1s +2024-04-02T21:23:18Z #14 1.927 38050K .......... .......... .......... .......... .......... 30% 78.1M 1s +2024-04-02T21:23:18Z #14 1.927 38100K .......... .......... .......... .......... .......... 30% 100M 1s +2024-04-02T21:23:18Z #14 1.931 38150K .......... .......... .......... .......... .......... 30% 157M 1s +2024-04-02T21:23:18Z #14 1.931 38200K .......... .......... .......... .......... .......... 30% 132M 1s +2024-04-02T21:23:18Z #14 1.931 38250K .......... .......... .......... .......... .......... 30% 129M 1s +2024-04-02T21:23:18Z #14 1.931 38300K .......... .......... .......... .......... .......... 30% 144M 1s +2024-04-02T21:23:18Z #14 1.931 38350K .......... .......... .......... .......... .......... 30% 141M 1s +2024-04-02T21:23:18Z #14 1.931 38400K .......... .......... .......... .......... .......... 30% 115M 1s +2024-04-02T21:23:18Z #14 1.931 38450K .......... .......... .......... .......... .......... 30% 139M 1s +2024-04-02T21:23:18Z #14 1.931 38500K .......... .......... .......... .......... .......... 30% 138M 1s +2024-04-02T21:23:18Z #14 1.931 38550K .......... .......... .......... .......... .......... 30% 71.2M 1s +2024-04-02T21:23:19Z #14 1.932 38600K .......... .......... .......... .......... .......... 30% 61.3M 1s +2024-04-02T21:23:19Z #14 1.935 38650K .......... .......... .......... .......... .......... 30% 159M 1s +2024-04-02T21:23:19Z #14 1.935 38700K .......... .......... .......... .......... .......... 30% 162M 1s +2024-04-02T21:23:19Z #14 1.935 38750K .......... .......... .......... .......... .......... 30% 171M 1s +2024-04-02T21:23:19Z #14 1.935 38800K .......... .......... .......... .......... .......... 30% 119M 1s +2024-04-02T21:23:19Z #14 1.935 38850K .......... .......... .......... .......... .......... 30% 76.9M 1s +2024-04-02T21:23:19Z #14 1.935 38900K .......... .......... .......... .......... .......... 30% 64.0M 1s +2024-04-02T21:23:19Z #14 1.935 38950K .......... .......... .......... .......... .......... 30% 51.7M 1s +2024-04-02T21:23:19Z #14 1.937 39000K .......... .......... .......... .......... .......... 30% 168M 1s +2024-04-02T21:23:19Z #14 1.937 39050K .......... .......... .......... .......... .......... 30% 160M 1s +2024-04-02T21:23:19Z #14 1.937 39100K .......... .......... .......... .......... .......... 30% 73.7M 1s +2024-04-02T21:23:19Z #14 1.937 39150K .......... .......... .......... .......... .......... 30% 96.4M 1s +2024-04-02T21:23:19Z #14 1.938 39200K .......... .......... .......... .......... .......... 30% 117M 1s +2024-04-02T21:23:19Z #14 1.939 39250K .......... .......... .......... .......... .......... 30% 140M 1s +2024-04-02T21:23:19Z #14 1.939 39300K .......... .......... .......... .......... .......... 31% 116M 1s +2024-04-02T21:23:19Z #14 1.940 39350K .......... .......... .......... .......... .......... 31% 119M 1s +2024-04-02T21:23:19Z #14 1.940 39400K .......... .......... .......... .......... .......... 31% 121M 1s +2024-04-02T21:23:19Z #14 1.940 39450K .......... .......... .......... .......... .......... 31% 112M 1s +2024-04-02T21:23:19Z #14 1.941 39500K .......... .......... .......... .......... .......... 31% 121M 1s +2024-04-02T21:23:19Z #14 1.941 39550K .......... .......... .......... .......... .......... 31% 118M 1s +2024-04-02T21:23:19Z #14 1.942 39600K .......... .......... .......... .......... .......... 31% 108M 1s +2024-04-02T21:23:19Z #14 1.942 39650K .......... .......... .......... .......... .......... 31% 119M 1s +2024-04-02T21:23:19Z #14 1.942 39700K .......... .......... .......... .......... .......... 31% 152M 1s +2024-04-02T21:23:19Z #14 1.942 39750K .......... .......... .......... .......... .......... 31% 91.4M 1s +2024-04-02T21:23:19Z #14 1.944 39800K .......... .......... .......... .......... .......... 31% 145M 1s +2024-04-02T21:23:19Z #14 1.944 39850K .......... .......... .......... .......... .......... 31% 111M 1s +2024-04-02T21:23:19Z #14 1.944 39900K .......... .......... .......... .......... .......... 31% 94.3M 1s +2024-04-02T21:23:19Z #14 1.945 39950K .......... .......... .......... .......... .......... 31% 140M 1s +2024-04-02T21:23:19Z #14 1.945 40000K .......... .......... .......... .......... .......... 31% 135M 1s +2024-04-02T21:23:19Z #14 1.945 40050K .......... .......... .......... .......... .......... 31% 86.1M 1s +2024-04-02T21:23:19Z #14 1.945 40100K .......... .......... .......... .......... .......... 31% 97.9M 1s +2024-04-02T21:23:19Z #14 1.947 40150K .......... .......... .......... .......... .......... 31% 138M 1s +2024-04-02T21:23:19Z #14 1.947 40200K .......... .......... .......... .......... .......... 31% 102M 1s +2024-04-02T21:23:19Z #14 1.947 40250K .......... .......... .......... .......... .......... 31% 131M 1s +2024-04-02T21:23:19Z #14 1.947 40300K .......... .......... .......... .......... .......... 31% 73.3M 1s +2024-04-02T21:23:19Z #14 1.948 40350K .......... .......... .......... .......... .......... 31% 117M 1s +2024-04-02T21:23:19Z #14 1.948 40400K .......... .......... .......... .......... .......... 31% 140M 1s +2024-04-02T21:23:19Z #14 1.948 40450K .......... .......... .......... .......... .......... 31% 58.7M 1s +2024-04-02T21:23:19Z #14 1.949 40500K .......... .......... .......... .......... .......... 31% 90.2M 1s +2024-04-02T21:23:19Z #14 1.951 40550K .......... .......... .......... .......... .......... 32% 152M 1s +2024-04-02T21:23:19Z #14 1.951 40600K .......... .......... .......... .......... .......... 32% 122M 1s +2024-04-02T21:23:19Z #14 1.951 40650K .......... .......... .......... .......... .......... 32% 138M 1s +2024-04-02T21:23:19Z #14 1.951 40700K .......... .......... .......... .......... .......... 32% 72.0M 1s +2024-04-02T21:23:19Z #14 1.954 40750K .......... .......... .......... .......... .......... 32% 92.4M 1s +2024-04-02T21:23:19Z #14 1.954 40800K .......... .......... .......... .......... .......... 32% 128M 1s +2024-04-02T21:23:19Z #14 1.954 40850K .......... .......... .......... .......... .......... 32% 130M 1s +2024-04-02T21:23:19Z #14 1.954 40900K .......... .......... .......... .......... .......... 32% 156M 1s +2024-04-02T21:23:19Z #14 1.954 40950K .......... .......... .......... .......... .......... 32% 122M 1s +2024-04-02T21:23:19Z #14 1.954 41000K .......... .......... .......... .......... .......... 32% 95.0M 1s +2024-04-02T21:23:19Z #14 1.954 41050K .......... .......... .......... .......... .......... 32% 51.7M 1s +2024-04-02T21:23:19Z #14 1.955 41100K .......... .......... .......... .......... .......... 32% 125M 1s +2024-04-02T21:23:19Z #14 1.957 41150K .......... .......... .......... .......... .......... 32% 117M 1s +2024-04-02T21:23:19Z #14 1.957 41200K .......... .......... .......... .......... .......... 32% 127M 1s +2024-04-02T21:23:19Z #14 1.957 41250K .......... .......... .......... .......... .......... 32% 126M 1s +2024-04-02T21:23:19Z #14 1.957 41300K .......... .......... .......... .......... .......... 32% 85.7M 1s +2024-04-02T21:23:19Z #14 1.958 41350K .......... .......... .......... .......... .......... 32% 138M 1s +2024-04-02T21:23:19Z #14 1.958 41400K .......... .......... .......... .......... .......... 32% 114M 1s +2024-04-02T21:23:19Z #14 1.958 41450K .......... .......... .......... .......... .......... 32% 78.9M 1s +2024-04-02T21:23:19Z #14 1.958 41500K .......... .......... .......... .......... .......... 32% 10.3M 1s +2024-04-02T21:23:19Z #14 1.969 41550K .......... .......... .......... .......... .......... 32% 126M 1s +2024-04-02T21:23:19Z #14 1.969 41600K .......... .......... .......... .......... .......... 32% 139M 1s +2024-04-02T21:23:19Z #14 1.969 41650K .......... .......... .......... .......... .......... 32% 134M 1s +2024-04-02T21:23:19Z #14 1.969 41700K .......... .......... .......... .......... .......... 32% 148M 1s +2024-04-02T21:23:19Z #14 1.969 41750K .......... .......... .......... .......... .......... 32% 116M 1s +2024-04-02T21:23:19Z #14 1.969 41800K .......... .......... .......... .......... .......... 33% 122M 1s +2024-04-02T21:23:19Z #14 1.969 41850K .......... .......... .......... .......... .......... 33% 123M 1s +2024-04-02T21:23:19Z #14 1.969 41900K .......... .......... .......... .......... .......... 33% 117M 1s +2024-04-02T21:23:19Z #14 1.969 41950K .......... .......... .......... .......... .......... 33% 129M 1s +2024-04-02T21:23:19Z #14 1.969 42000K .......... .......... .......... .......... .......... 33% 13.8M 1s +2024-04-02T21:23:19Z #14 1.971 42050K .......... .......... .......... .......... .......... 33% 121M 1s +2024-04-02T21:23:19Z #14 1.976 42100K .......... .......... .......... .......... .......... 33% 28.6M 1s +2024-04-02T21:23:19Z #14 1.976 42150K .......... .......... .......... .......... .......... 33% 178M 1s +2024-04-02T21:23:19Z #14 1.976 42200K .......... .......... .......... .......... .......... 33% 161M 1s +2024-04-02T21:23:19Z #14 1.976 42250K .......... .......... .......... .......... .......... 33% 155M 1s +2024-04-02T21:23:19Z #14 1.976 42300K .......... .......... .......... .......... .......... 33% 170M 1s +2024-04-02T21:23:19Z #14 1.976 42350K .......... .......... .......... .......... .......... 33% 116M 1s +2024-04-02T21:23:19Z #14 1.976 42400K .......... .......... .......... .......... .......... 33% 126M 1s +2024-04-02T21:23:19Z #14 1.976 42450K .......... .......... .......... .......... .......... 33% 15.0M 1s +2024-04-02T21:23:19Z #14 1.989 42500K .......... .......... .......... .......... .......... 33% 128M 1s +2024-04-02T21:23:19Z #14 1.989 42550K .......... .......... .......... .......... .......... 33% 139M 1s +2024-04-02T21:23:19Z #14 1.989 42600K .......... .......... .......... .......... .......... 33% 113M 1s +2024-04-02T21:23:19Z #14 1.989 42650K .......... .......... .......... .......... .......... 33% 119M 1s +2024-04-02T21:23:19Z #14 1.989 42700K .......... .......... .......... .......... .......... 33% 120M 1s +2024-04-02T21:23:19Z #14 1.989 42750K .......... .......... .......... .......... .......... 33% 141M 1s +2024-04-02T21:23:19Z #14 1.989 42800K .......... .......... .......... .......... .......... 33% 118M 1s +2024-04-02T21:23:19Z #14 1.989 42850K .......... .......... .......... .......... .......... 33% 131M 1s +2024-04-02T21:23:19Z #14 1.989 42900K .......... .......... .......... .......... .......... 33% 136M 1s +2024-04-02T21:23:19Z #14 1.989 42950K .......... .......... .......... .......... .......... 33% 131M 1s +2024-04-02T21:23:19Z #14 1.989 43000K .......... .......... .......... .......... .......... 33% 117M 1s +2024-04-02T21:23:19Z #14 1.989 43050K .......... .......... .......... .......... .......... 33% 146M 1s +2024-04-02T21:23:19Z #14 1.989 43100K .......... .......... .......... .......... .......... 34% 132M 1s +2024-04-02T21:23:19Z #14 1.989 43150K .......... .......... .......... .......... .......... 34% 117M 1s +2024-04-02T21:23:19Z #14 1.989 43200K .......... .......... .......... .......... .......... 34% 146M 1s +2024-04-02T21:23:19Z #14 1.989 43250K .......... .......... .......... .......... .......... 34% 163M 1s +2024-04-02T21:23:19Z #14 1.989 43300K .......... .......... .......... .......... .......... 34% 186M 1s +2024-04-02T21:23:19Z #14 1.989 43350K .......... .......... .......... .......... .......... 34% 167M 1s +2024-04-02T21:23:19Z #14 1.989 43400K .......... .......... .......... .......... .......... 34% 184M 1s +2024-04-02T21:23:19Z #14 1.989 43450K .......... .......... .......... .......... .......... 34% 176M 1s +2024-04-02T21:23:19Z #14 1.989 43500K .......... .......... .......... .......... .......... 34% 156M 1s +2024-04-02T21:23:19Z #14 1.989 43550K .......... .......... .......... .......... .......... 34% 168M 1s +2024-04-02T21:23:19Z #14 1.989 43600K .......... .......... .......... .......... .......... 34% 188M 1s +2024-04-02T21:23:19Z #14 1.989 43650K .......... .......... .......... .......... .......... 34% 161M 1s +2024-04-02T21:23:19Z #14 1.989 43700K .......... .......... .......... .......... .......... 34% 177M 1s +2024-04-02T21:23:19Z #14 1.989 43750K .......... .......... .......... .......... .......... 34% 175M 1s +2024-04-02T21:23:19Z #14 1.989 43800K .......... .......... .......... .......... .......... 34% 152M 1s +2024-04-02T21:23:19Z #14 1.989 43850K .......... .......... .......... .......... .......... 34% 153M 1s +2024-04-02T21:23:19Z #14 1.989 43900K .......... .......... .......... .......... .......... 34% 150M 1s +2024-04-02T21:23:19Z #14 1.989 43950K .......... .......... .......... .......... .......... 34% 180M 1s +2024-04-02T21:23:19Z #14 1.989 44000K .......... .......... .......... .......... .......... 34% 189M 1s +2024-04-02T21:23:19Z #14 1.989 44050K .......... .......... .......... .......... .......... 34% 182M 1s +2024-04-02T21:23:19Z #14 1.989 44100K .......... .......... .......... .......... .......... 34% 158M 1s +2024-04-02T21:23:19Z #14 1.989 44150K .......... .......... .......... .......... .......... 34% 184M 1s +2024-04-02T21:23:19Z #14 1.989 44200K .......... .......... .......... .......... .......... 34% 171M 1s +2024-04-02T21:23:19Z #14 1.989 44250K .......... .......... .......... .......... .......... 34% 166M 1s +2024-04-02T21:23:19Z #14 1.989 44300K .......... .......... .......... .......... .......... 34% 164M 1s +2024-04-02T21:23:19Z #14 1.990 44350K .......... .......... .......... .......... .......... 35% 166M 1s +2024-04-02T21:23:19Z #14 1.990 44400K .......... .......... .......... .......... .......... 35% 143M 1s +2024-04-02T21:23:19Z #14 1.990 44450K .......... .......... .......... .......... .......... 35% 154M 1s +2024-04-02T21:23:19Z #14 1.991 44500K .......... .......... .......... .......... .......... 35% 150M 1s +2024-04-02T21:23:19Z #14 1.991 44550K .......... .......... .......... .......... .......... 35% 152M 1s +2024-04-02T21:23:19Z #14 1.991 44600K .......... .......... .......... .......... .......... 35% 147M 1s +2024-04-02T21:23:19Z #14 1.991 44650K .......... .......... .......... .......... .......... 35% 162M 1s +2024-04-02T21:23:19Z #14 1.992 44700K .......... .......... .......... .......... .......... 35% 143M 1s +2024-04-02T21:23:19Z #14 1.993 44750K .......... .......... .......... .......... .......... 35% 162M 1s +2024-04-02T21:23:19Z #14 1.993 44800K .......... .......... .......... .......... .......... 35% 176M 1s +2024-04-02T21:23:19Z #14 1.993 44850K .......... .......... .......... .......... .......... 35% 138M 1s +2024-04-02T21:23:19Z #14 1.993 44900K .......... .......... .......... .......... .......... 35% 171M 1s +2024-04-02T21:23:19Z #14 1.994 44950K .......... .......... .......... .......... .......... 35% 174M 1s +2024-04-02T21:23:19Z #14 1.994 45000K .......... .......... .......... .......... .......... 35% 159M 1s +2024-04-02T21:23:19Z #14 1.994 45050K .......... .......... .......... .......... .......... 35% 137M 1s +2024-04-02T21:23:19Z #14 1.995 45100K .......... .......... .......... .......... .......... 35% 152M 1s +2024-04-02T21:23:19Z #14 1.995 45150K .......... .......... .......... .......... .......... 35% 156M 1s +2024-04-02T21:23:19Z #14 1.995 45200K .......... .......... .......... .......... .......... 35% 136M 1s +2024-04-02T21:23:19Z #14 1.995 45250K .......... .......... .......... .......... .......... 35% 162M 1s +2024-04-02T21:23:19Z #14 1.996 45300K .......... .......... .......... .......... .......... 35% 141M 1s +2024-04-02T21:23:19Z #14 1.996 45350K .......... .......... .......... .......... .......... 35% 170M 1s +2024-04-02T21:23:19Z #14 1.996 45400K .......... .......... .......... .......... .......... 35% 159M 1s +2024-04-02T21:23:19Z #14 1.997 45450K .......... .......... .......... .......... .......... 35% 156M 1s +2024-04-02T21:23:19Z #14 1.997 45500K .......... .......... .......... .......... .......... 35% 137M 1s +2024-04-02T21:23:19Z #14 1.997 45550K .......... .......... .......... .......... .......... 35% 176M 1s +2024-04-02T21:23:19Z #14 1.998 45600K .......... .......... .......... .......... .......... 36% 161M 1s +2024-04-02T21:23:19Z #14 1.998 45650K .......... .......... .......... .......... .......... 36% 135M 1s +2024-04-02T21:23:19Z #14 1.998 45700K .......... .......... .......... .......... .......... 36% 171M 1s +2024-04-02T21:23:19Z #14 1.998 45750K .......... .......... .......... .......... .......... 36% 166M 1s +2024-04-02T21:23:19Z #14 1.999 45800K .......... .......... .......... .......... .......... 36% 149M 1s +2024-04-02T21:23:19Z #14 1.999 45850K .......... .......... .......... .......... .......... 36% 155M 1s +2024-04-02T21:23:19Z #14 1.999 45900K .......... .......... .......... .......... .......... 36% 152M 1s +2024-04-02T21:23:19Z #14 2.000 45950K .......... .......... .......... .......... .......... 36% 164M 1s +2024-04-02T21:23:19Z #14 2.000 46000K .......... .......... .......... .......... .......... 36% 141M 1s +2024-04-02T21:23:19Z #14 2.000 46050K .......... .......... .......... .......... .......... 36% 164M 1s +2024-04-02T21:23:19Z #14 2.001 46100K .......... .......... .......... .......... .......... 36% 159M 1s +2024-04-02T21:23:19Z #14 2.001 46150K .......... .......... .......... .......... .......... 36% 136M 1s +2024-04-02T21:23:19Z #14 2.001 46200K .......... .......... .......... .......... .......... 36% 171M 1s +2024-04-02T21:23:19Z #14 2.002 46250K .......... .......... .......... .......... .......... 36% 152M 1s +2024-04-02T21:23:19Z #14 2.002 46300K .......... .......... .......... .......... .......... 36% 139M 1s +2024-04-02T21:23:19Z #14 2.002 46350K .......... .......... .......... .......... .......... 36% 176M 1s +2024-04-02T21:23:19Z #14 2.003 46400K .......... .......... .......... .......... .......... 36% 143M 1s +2024-04-02T21:23:19Z #14 2.003 46450K .......... .......... .......... .......... .......... 36% 146M 1s +2024-04-02T21:23:19Z #14 2.003 46500K .......... .......... .......... .......... .......... 36% 163M 1s +2024-04-02T21:23:19Z #14 2.003 46550K .......... .......... .......... .......... .......... 36% 166M 1s +2024-04-02T21:23:19Z #14 2.004 46600K .......... .......... .......... .......... .......... 36% 143M 1s +2024-04-02T21:23:19Z #14 2.004 46650K .......... .......... .......... .......... .......... 36% 157M 1s +2024-04-02T21:23:19Z #14 2.004 46700K .......... .......... .......... .......... .......... 36% 145M 1s +2024-04-02T21:23:19Z #14 2.005 46750K .......... .......... .......... .......... .......... 36% 155M 1s +2024-04-02T21:23:19Z #14 2.005 46800K .......... .......... .......... .......... .......... 36% 165M 1s +2024-04-02T21:23:19Z #14 2.005 46850K .......... .......... .......... .......... .......... 36% 145M 1s +2024-04-02T21:23:19Z #14 2.006 46900K .......... .......... .......... .......... .......... 37% 147M 1s +2024-04-02T21:23:19Z #14 2.006 46950K .......... .......... .......... .......... .......... 37% 154M 1s +2024-04-02T21:23:19Z #14 2.006 47000K .......... .......... .......... .......... .......... 37% 166M 1s +2024-04-02T21:23:19Z #14 2.007 47050K .......... .......... .......... .......... .......... 37% 128M 1s +2024-04-02T21:23:19Z #14 2.007 47100K .......... .......... .......... .......... .......... 37% 142M 1s +2024-04-02T21:23:19Z #14 2.007 47150K .......... .......... .......... .......... .......... 37% 138M 1s +2024-04-02T21:23:19Z #14 2.008 47200K .......... .......... .......... .......... .......... 37% 138M 1s +2024-04-02T21:23:19Z #14 2.008 47250K .......... .......... .......... .......... .......... 37% 150M 1s +2024-04-02T21:23:19Z #14 2.009 47300K .......... .......... .......... .......... .......... 37% 150M 1s +2024-04-02T21:23:19Z #14 2.009 47350K .......... .......... .......... .......... .......... 37% 128M 1s +2024-04-02T21:23:19Z #14 2.009 47400K .......... .......... .......... .......... .......... 37% 148M 1s +2024-04-02T21:23:19Z #14 2.010 47450K .......... .......... .......... .......... .......... 37% 130M 1s +2024-04-02T21:23:19Z #14 2.010 47500K .......... .......... .......... .......... .......... 37% 145M 1s +2024-04-02T21:23:19Z #14 2.010 47550K .......... .......... .......... .......... .......... 37% 152M 1s +2024-04-02T21:23:19Z #14 2.011 47600K .......... .......... .......... .......... .......... 37% 113M 1s +2024-04-02T21:23:19Z #14 2.011 47650K .......... .......... .......... .......... .......... 37% 152M 1s +2024-04-02T21:23:19Z #14 2.011 47700K .......... .......... .......... .......... .......... 37% 155M 1s +2024-04-02T21:23:19Z #14 2.012 47750K .......... .......... .......... .......... .......... 37% 145M 1s +2024-04-02T21:23:19Z #14 2.012 47800K .......... .......... .......... .......... .......... 37% 126M 1s +2024-04-02T21:23:19Z #14 2.013 47850K .......... .......... .......... .......... .......... 37% 112M 1s +2024-04-02T21:23:19Z #14 2.013 47900K .......... .......... .......... .......... .......... 37% 155M 1s +2024-04-02T21:23:19Z #14 2.013 47950K .......... .......... .......... .......... .......... 37% 144M 1s +2024-04-02T21:23:19Z #14 2.014 48000K .......... .......... .......... .......... .......... 37% 133M 1s +2024-04-02T21:23:19Z #14 2.014 48050K .......... .......... .......... .......... .......... 37% 143M 1s +2024-04-02T21:23:19Z #14 2.015 48100K .......... .......... .......... .......... .......... 37% 148M 1s +2024-04-02T21:23:19Z #14 2.015 48150K .......... .......... .......... .......... .......... 38% 133M 1s +2024-04-02T21:23:19Z #14 2.015 48200K .......... .......... .......... .......... .......... 38% 112M 1s +2024-04-02T21:23:19Z #14 2.015 48250K .......... .......... .......... .......... .......... 38% 162M 1s +2024-04-02T21:23:19Z #14 2.016 48300K .......... .......... .......... .......... .......... 38% 157M 1s +2024-04-02T21:23:19Z #14 2.016 48350K .......... .......... .......... .......... .......... 38% 158M 1s +2024-04-02T21:23:19Z #14 2.017 48400K .......... .......... .......... .......... .......... 38% 125M 1s +2024-04-02T21:23:19Z #14 2.017 48450K .......... .......... .......... .......... .......... 38% 158M 1s +2024-04-02T21:23:19Z #14 2.017 48500K .......... .......... .......... .......... .......... 38% 119M 1s +2024-04-02T21:23:19Z #14 2.017 48550K .......... .......... .......... .......... .......... 38% 136M 1s +2024-04-02T21:23:19Z #14 2.018 48600K .......... .......... .......... .......... .......... 38% 156M 1s +2024-04-02T21:23:19Z #14 2.018 48650K .......... .......... .......... .......... .......... 38% 153M 1s +2024-04-02T21:23:19Z #14 2.018 48700K .......... .......... .......... .......... .......... 38% 127M 1s +2024-04-02T21:23:19Z #14 2.019 48750K .......... .......... .......... .......... .......... 38% 130M 1s +2024-04-02T21:23:19Z #14 2.019 48800K .......... .......... .......... .......... .......... 38% 152M 1s +2024-04-02T21:23:19Z #14 2.019 48850K .......... .......... .......... .......... .......... 38% 144M 1s +2024-04-02T21:23:19Z #14 2.020 48900K .......... .......... .......... .......... .......... 38% 130M 1s +2024-04-02T21:23:19Z #14 2.020 48950K .......... .......... .......... .......... .......... 38% 149M 1s +2024-04-02T21:23:19Z #14 2.021 49000K .......... .......... .......... .......... .......... 38% 121M 1s +2024-04-02T21:23:19Z #14 2.021 49050K .......... .......... .......... .......... .......... 38% 137M 1s +2024-04-02T21:23:19Z #14 2.021 49100K .......... .......... .......... .......... .......... 38% 142M 1s +2024-04-02T21:23:19Z #14 2.022 49150K .......... .......... .......... .......... .......... 38% 153M 1s +2024-04-02T21:23:19Z #14 2.022 49200K .......... .......... .......... .......... .......... 38% 142M 1s +2024-04-02T21:23:19Z #14 2.022 49250K .......... .......... .......... .......... .......... 38% 155M 1s +2024-04-02T21:23:19Z #14 2.023 49300K .......... .......... .......... .......... .......... 38% 113M 1s +2024-04-02T21:23:19Z #14 2.023 49350K .......... .......... .......... .......... .......... 38% 32.5M 1s +2024-04-02T21:23:19Z #14 2.024 49400K .......... .......... .......... .......... .......... 39% 35.2M 1s +2024-04-02T21:23:19Z #14 2.026 49450K .......... .......... .......... .......... .......... 39% 38.5M 1s +2024-04-02T21:23:19Z #14 2.027 49500K .......... .......... .......... .......... .......... 39% 52.6M 1s +2024-04-02T21:23:19Z #14 2.028 49550K .......... .......... .......... .......... .......... 39% 31.0M 1s +2024-04-02T21:23:19Z #14 2.030 49600K .......... .......... .......... .......... .......... 39% 28.7M 1s +2024-04-02T21:23:19Z #14 2.031 49650K .......... .......... .......... .......... .......... 39% 55.8M 1s +2024-04-02T21:23:19Z #14 2.035 49700K .......... .......... .......... .......... .......... 39% 152M 1s +2024-04-02T21:23:19Z #14 2.035 49750K .......... .......... .......... .......... .......... 39% 116M 1s +2024-04-02T21:23:19Z #14 2.035 49800K .......... .......... .......... .......... .......... 39% 123M 1s +2024-04-02T21:23:19Z #14 2.035 49850K .......... .......... .......... .......... .......... 39% 140M 1s +2024-04-02T21:23:19Z #14 2.035 49900K .......... .......... .......... .......... .......... 39% 142M 1s +2024-04-02T21:23:19Z #14 2.035 49950K .......... .......... .......... .......... .......... 39% 103M 1s +2024-04-02T21:23:19Z #14 2.035 50000K .......... .......... .......... .......... .......... 39% 136M 1s +2024-04-02T21:23:19Z #14 2.035 50050K .......... .......... .......... .......... .......... 39% 121M 1s +2024-04-02T21:23:19Z #14 2.039 50100K .......... .......... .......... .......... .......... 39% 163M 1s +2024-04-02T21:23:19Z #14 2.039 50150K .......... .......... .......... .......... .......... 39% 180M 1s +2024-04-02T21:23:19Z #14 2.039 50200K .......... .......... .......... .......... .......... 39% 140M 1s +2024-04-02T21:23:19Z #14 2.039 50250K .......... .......... .......... .......... .......... 39% 156M 1s +2024-04-02T21:23:19Z #14 2.039 50300K .......... .......... .......... .......... .......... 39% 173M 1s +2024-04-02T21:23:19Z #14 2.039 50350K .......... .......... .......... .......... .......... 39% 158M 1s +2024-04-02T21:23:19Z #14 2.039 50400K .......... .......... .......... .......... .......... 39% 151M 1s +2024-04-02T21:23:19Z #14 2.039 50450K .......... .......... .......... .......... .......... 39% 175M 1s +2024-04-02T21:23:19Z #14 2.039 50500K .......... .......... .......... .......... .......... 39% 171M 1s +2024-04-02T21:23:19Z #14 2.039 50550K .......... .......... .......... .......... .......... 39% 173M 1s +2024-04-02T21:23:19Z #14 2.039 50600K .......... .......... .......... .......... .......... 39% 149M 1s +2024-04-02T21:23:19Z #14 2.039 50650K .......... .......... .......... .......... .......... 39% 167M 1s +2024-04-02T21:23:19Z #14 2.039 50700K .......... .......... .......... .......... .......... 40% 140M 1s +2024-04-02T21:23:19Z #14 2.039 50750K .......... .......... .......... .......... .......... 40% 181M 1s +2024-04-02T21:23:19Z #14 2.039 50800K .......... .......... .......... .......... .......... 40% 134M 1s +2024-04-02T21:23:19Z #14 2.040 50850K .......... .......... .......... .......... .......... 40% 162M 1s +2024-04-02T21:23:19Z #14 2.040 50900K .......... .......... .......... .......... .......... 40% 159M 1s +2024-04-02T21:23:19Z #14 2.040 50950K .......... .......... .......... .......... .......... 40% 141M 1s +2024-04-02T21:23:19Z #14 2.041 51000K .......... .......... .......... .......... .......... 40% 139M 1s +2024-04-02T21:23:19Z #14 2.041 51050K .......... .......... .......... .......... .......... 40% 132M 1s +2024-04-02T21:23:19Z #14 2.041 51100K .......... .......... .......... .......... .......... 40% 158M 1s +2024-04-02T21:23:19Z #14 2.042 51150K .......... .......... .......... .......... .......... 40% 162M 1s +2024-04-02T21:23:19Z #14 2.042 51200K .......... .......... .......... .......... .......... 40% 133M 1s +2024-04-02T21:23:19Z #14 2.042 51250K .......... .......... .......... .......... .......... 40% 144M 1s +2024-04-02T21:23:19Z #14 2.043 51300K .......... .......... .......... .......... .......... 40% 131M 1s +2024-04-02T21:23:19Z #14 2.047 51350K .......... .......... .......... .......... .......... 40% 135M 1s +2024-04-02T21:23:19Z #14 2.047 51400K .......... .......... .......... .......... .......... 40% 173M 1s +2024-04-02T21:23:19Z #14 2.047 51450K .......... .......... .......... .......... .......... 40% 148M 1s +2024-04-02T21:23:19Z #14 2.047 51500K .......... .......... .......... .......... .......... 40% 161M 1s +2024-04-02T21:23:19Z #14 2.047 51550K .......... .......... .......... .......... .......... 40% 172M 1s +2024-04-02T21:23:19Z #14 2.047 51600K .......... .......... .......... .......... .......... 40% 143M 1s +2024-04-02T21:23:19Z #14 2.047 51650K .......... .......... .......... .......... .......... 40% 154M 1s +2024-04-02T21:23:19Z #14 2.047 51700K .......... .......... .......... .......... .......... 40% 173M 1s +2024-04-02T21:23:19Z #14 2.047 51750K .......... .......... .......... .......... .......... 40% 177M 1s +2024-04-02T21:23:19Z #14 2.047 51800K .......... .......... .......... .......... .......... 40% 158M 1s +2024-04-02T21:23:19Z #14 2.047 51850K .......... .......... .......... .......... .......... 40% 177M 1s +2024-04-02T21:23:19Z #14 2.047 51900K .......... .......... .......... .......... .......... 40% 144M 1s +2024-04-02T21:23:19Z #14 2.047 51950K .......... .......... .......... .......... .......... 41% 138M 1s +2024-04-02T21:23:19Z #14 2.047 52000K .......... .......... .......... .......... .......... 41% 163M 1s +2024-04-02T21:23:19Z #14 2.047 52050K .......... .......... .......... .......... .......... 41% 151M 1s +2024-04-02T21:23:19Z #14 2.048 52100K .......... .......... .......... .......... .......... 41% 157K 1s +2024-04-02T21:23:19Z #14 2.373 52150K .......... .......... .......... .......... .......... 41% 167M 1s +2024-04-02T21:23:19Z #14 2.373 52200K .......... .......... .......... .......... .......... 41% 137M 1s +2024-04-02T21:23:19Z #14 2.373 52250K .......... .......... .......... .......... .......... 41% 130M 1s +2024-04-02T21:23:19Z #14 2.373 52300K .......... .......... .......... .......... .......... 41% 159M 1s +2024-04-02T21:23:19Z #14 2.373 52350K .......... .......... .......... .......... .......... 41% 160M 1s +2024-04-02T21:23:19Z #14 2.373 52400K .......... .......... .......... .......... .......... 41% 140M 1s +2024-04-02T21:23:19Z #14 2.373 52450K .......... .......... .......... .......... .......... 41% 155M 1s +2024-04-02T21:23:19Z #14 2.373 52500K .......... .......... .......... .......... .......... 41% 132M 1s +2024-04-02T21:23:19Z #14 2.373 52550K .......... .......... .......... .......... .......... 41% 152M 1s +2024-04-02T21:23:19Z #14 2.373 52600K .......... .......... .......... .......... .......... 41% 161M 1s +2024-04-02T21:23:19Z #14 2.373 52650K .......... .......... .......... .......... .......... 41% 133M 1s +2024-04-02T21:23:19Z #14 2.373 52700K .......... .......... .......... .......... .......... 41% 126M 1s +2024-04-02T21:23:19Z #14 2.373 52750K .......... .......... .......... .......... .......... 41% 145M 1s +2024-04-02T21:23:19Z #14 2.373 52800K .......... .......... .......... .......... .......... 41% 138M 1s +2024-04-02T21:23:19Z #14 2.373 52850K .......... .......... .......... .......... .......... 41% 106M 1s +2024-04-02T21:23:19Z #14 2.373 52900K .......... .......... .......... .......... .......... 41% 32.0M 1s +2024-04-02T21:23:19Z #14 2.373 52950K .......... .......... .......... .......... .......... 41% 37.3M 1s +2024-04-02T21:23:19Z #14 2.375 53000K .......... .......... .......... .......... .......... 41% 30.9M 1s +2024-04-02T21:23:19Z #14 2.378 53050K .......... .......... .......... .......... .......... 41% 25.7M 1s +2024-04-02T21:23:19Z #14 2.384 53100K .......... .......... .......... .......... .......... 41% 175M 1s +2024-04-02T21:23:19Z #14 2.384 53150K .......... .......... .......... .......... .......... 41% 176M 1s +2024-04-02T21:23:19Z #14 2.384 53200K .......... .......... .......... .......... .......... 42% 149M 1s +2024-04-02T21:23:19Z #14 2.384 53250K .......... .......... .......... .......... .......... 42% 149M 1s +2024-04-02T21:23:19Z #14 2.384 53300K .......... .......... .......... .......... .......... 42% 29.3M 1s +2024-04-02T21:23:19Z #14 2.384 53350K .......... .......... .......... .......... .......... 42% 167M 1s +2024-04-02T21:23:19Z #14 2.384 53400K .......... .......... .......... .......... .......... 42% 140M 1s +2024-04-02T21:23:19Z #14 2.384 53450K .......... .......... .......... .......... .......... 42% 145M 1s +2024-04-02T21:23:19Z #14 2.384 53500K .......... .......... .......... .......... .......... 42% 131M 1s +2024-04-02T21:23:19Z #14 2.384 53550K .......... .......... .......... .......... .......... 42% 157M 1s +2024-04-02T21:23:19Z #14 2.384 53600K .......... .......... .......... .......... .......... 42% 19.8M 1s +2024-04-02T21:23:19Z #14 2.387 53650K .......... .......... .......... .......... .......... 42% 19.5M 1s +2024-04-02T21:23:19Z #14 2.387 53700K .......... .......... .......... .......... .......... 42% 17.2M 1s +2024-04-02T21:23:19Z #14 2.392 53750K .......... .......... .......... .......... .......... 42% 157M 1s +2024-04-02T21:23:19Z #14 2.392 53800K .......... .......... .......... .......... .......... 42% 152M 1s +2024-04-02T21:23:19Z #14 2.392 53850K .......... .......... .......... .......... .......... 42% 165M 1s +2024-04-02T21:23:19Z #14 2.392 53900K .......... .......... .......... .......... .......... 42% 135M 1s +2024-04-02T21:23:19Z #14 2.392 53950K .......... .......... .......... .......... .......... 42% 166M 1s +2024-04-02T21:23:19Z #14 2.392 54000K .......... .......... .......... .......... .......... 42% 124M 1s +2024-04-02T21:23:19Z #14 2.392 54050K .......... .......... .......... .......... .......... 42% 175M 1s +2024-04-02T21:23:19Z #14 2.392 54100K .......... .......... .......... .......... .......... 42% 147M 1s +2024-04-02T21:23:19Z #14 2.393 54150K .......... .......... .......... .......... .......... 42% 172M 1s +2024-04-02T21:23:19Z #14 2.393 54200K .......... .......... .......... .......... .......... 42% 163M 1s +2024-04-02T21:23:19Z #14 2.393 54250K .......... .......... .......... .......... .......... 42% 149M 1s +2024-04-02T21:23:19Z #14 2.393 54300K .......... .......... .......... .......... .......... 42% 138M 1s +2024-04-02T21:23:19Z #14 2.394 54350K .......... .......... .......... .......... .......... 42% 167M 1s +2024-04-02T21:23:19Z #14 2.394 54400K .......... .......... .......... .......... .......... 42% 169M 1s +2024-04-02T21:23:19Z #14 2.394 54450K .......... .......... .......... .......... .......... 42% 137M 1s +2024-04-02T21:23:19Z #14 2.395 54500K .......... .......... .......... .......... .......... 43% 138M 1s +2024-04-02T21:23:19Z #14 2.395 54550K .......... .......... .......... .......... .......... 43% 162M 1s +2024-04-02T21:23:19Z #14 2.395 54600K .......... .......... .......... .......... .......... 43% 168M 1s +2024-04-02T21:23:19Z #14 2.396 54650K .......... .......... .......... .......... .......... 43% 150M 1s +2024-04-02T21:23:19Z #14 2.396 54700K .......... .......... .......... .......... .......... 43% 170M 1s +2024-04-02T21:23:19Z #14 2.396 54750K .......... .......... .......... .......... .......... 43% 157M 1s +2024-04-02T21:23:19Z #14 2.397 54800K .......... .......... .......... .......... .......... 43% 142M 1s +2024-04-02T21:23:19Z #14 2.397 54850K .......... .......... .......... .......... .......... 43% 166M 1s +2024-04-02T21:23:19Z #14 2.397 54900K .......... .......... .......... .......... .......... 43% 157M 1s +2024-04-02T21:23:19Z #14 2.397 54950K .......... .......... .......... .......... .......... 43% 165M 1s +2024-04-02T21:23:19Z #14 2.398 55000K .......... .......... .......... .......... .......... 43% 157M 1s +2024-04-02T21:23:19Z #14 2.398 55050K .......... .......... .......... .......... .......... 43% 142M 1s +2024-04-02T21:23:19Z #14 2.398 55100K .......... .......... .......... .......... .......... 43% 178M 1s +2024-04-02T21:23:19Z #14 2.399 55150K .......... .......... .......... .......... .......... 43% 140M 1s +2024-04-02T21:23:19Z #14 2.399 55200K .......... .......... .......... .......... .......... 43% 139M 1s +2024-04-02T21:23:19Z #14 2.400 55250K .......... .......... .......... .......... .......... 43% 171M 1s +2024-04-02T21:23:19Z #14 2.400 55300K .......... .......... .......... .......... .......... 43% 163M 1s +2024-04-02T21:23:19Z #14 2.400 55350K .......... .......... .......... .......... .......... 43% 156M 1s +2024-04-02T21:23:19Z #14 2.400 55400K .......... .......... .......... .......... .......... 43% 151M 1s +2024-04-02T21:23:19Z #14 2.401 55450K .......... .......... .......... .......... .......... 43% 178M 1s +2024-04-02T21:23:19Z #14 2.401 55500K .......... .......... .......... .......... .......... 43% 146M 1s +2024-04-02T21:23:19Z #14 2.401 55550K .......... .......... .......... .......... .......... 43% 159M 1s +2024-04-02T21:23:19Z #14 2.402 55600K .......... .......... .......... .......... .......... 43% 179M 1s +2024-04-02T21:23:19Z #14 2.402 55650K .......... .......... .......... .......... .......... 43% 143M 1s +2024-04-02T21:23:19Z #14 2.402 55700K .......... .......... .......... .......... .......... 43% 160M 1s +2024-04-02T21:23:19Z #14 2.402 55750K .......... .......... .......... .......... .......... 44% 157M 1s +2024-04-02T21:23:19Z #14 2.403 55800K .......... .......... .......... .......... .......... 44% 130M 1s +2024-04-02T21:23:19Z #14 2.403 55850K .......... .......... .......... .......... .......... 44% 162M 1s +2024-04-02T21:23:19Z #14 2.404 55900K .......... .......... .......... .......... .......... 44% 160M 1s +2024-04-02T21:23:19Z #14 2.404 55950K .......... .......... .......... .......... .......... 44% 162M 1s +2024-04-02T21:23:19Z #14 2.404 56000K .......... .......... .......... .......... .......... 44% 140M 1s +2024-04-02T21:23:19Z #14 2.404 56050K .......... .......... .......... .......... .......... 44% 164M 1s +2024-04-02T21:23:19Z #14 2.405 56100K .......... .......... .......... .......... .......... 44% 173M 1s +2024-04-02T21:23:19Z #14 2.405 56150K .......... .......... .......... .......... .......... 44% 160M 1s +2024-04-02T21:23:19Z #14 2.405 56200K .......... .......... .......... .......... .......... 44% 145M 1s +2024-04-02T21:23:19Z #14 2.406 56250K .......... .......... .......... .......... .......... 44% 171M 1s +2024-04-02T21:23:19Z #14 2.406 56300K .......... .......... .......... .......... .......... 44% 133M 1s +2024-04-02T21:23:19Z #14 2.406 56350K .......... .......... .......... .......... .......... 44% 151M 1s +2024-04-02T21:23:19Z #14 2.407 56400K .......... .......... .......... .......... .......... 44% 137M 1s +2024-04-02T21:23:19Z #14 2.407 56450K .......... .......... .......... .......... .......... 44% 155M 1s +2024-04-02T21:23:19Z #14 2.407 56500K .......... .......... .......... .......... .......... 44% 171M 1s +2024-04-02T21:23:19Z #14 2.408 56550K .......... .......... .......... .......... .......... 44% 152M 1s +2024-04-02T21:23:19Z #14 2.408 56600K .......... .......... .......... .......... .......... 44% 165M 1s +2024-04-02T21:23:19Z #14 2.408 56650K .......... .......... .......... .......... .......... 44% 162M 1s +2024-04-02T21:23:19Z #14 2.409 56700K .......... .......... .......... .......... .......... 44% 174M 1s +2024-04-02T21:23:19Z #14 2.409 56750K .......... .......... .......... .......... .......... 44% 150M 1s +2024-04-02T21:23:19Z #14 2.409 56800K .......... .......... .......... .......... .......... 44% 155M 1s +2024-04-02T21:23:19Z #14 2.410 56850K .......... .......... .......... .......... .......... 44% 147M 1s +2024-04-02T21:23:19Z #14 2.410 56900K .......... .......... .......... .......... .......... 44% 165M 1s +2024-04-02T21:23:19Z #14 2.410 56950K .......... .......... .......... .......... .......... 44% 160M 1s +2024-04-02T21:23:19Z #14 2.410 57000K .......... .......... .......... .......... .......... 44% 139M 1s +2024-04-02T21:23:19Z #14 2.411 57050K .......... .......... .......... .......... .......... 45% 132M 1s +2024-04-02T21:23:19Z #14 2.412 57100K .......... .......... .......... .......... .......... 45% 158M 1s +2024-04-02T21:23:19Z #14 2.412 57150K .......... .......... .......... .......... .......... 45% 163M 1s +2024-04-02T21:23:19Z #14 2.412 57200K .......... .......... .......... .......... .......... 45% 161M 1s +2024-04-02T21:23:19Z #14 2.412 57250K .......... .......... .......... .......... .......... 45% 153M 1s +2024-04-02T21:23:19Z #14 2.412 57300K .......... .......... .......... .......... .......... 45% 154M 1s +2024-04-02T21:23:19Z #14 2.413 57350K .......... .......... .......... .......... .......... 45% 139M 1s +2024-04-02T21:23:19Z #14 2.413 57400K .......... .......... .......... .......... .......... 45% 157M 1s +2024-04-02T21:23:19Z #14 2.414 57450K .......... .......... .......... .......... .......... 45% 159M 1s +2024-04-02T21:23:19Z #14 2.414 57500K .......... .......... .......... .......... .......... 45% 176M 1s +2024-04-02T21:23:19Z #14 2.414 57550K .......... .......... .......... .......... .......... 45% 153M 1s +2024-04-02T21:23:19Z #14 2.414 57600K .......... .......... .......... .......... .......... 45% 122M 1s +2024-04-02T21:23:19Z #14 2.415 57650K .......... .......... .......... .......... .......... 45% 161M 1s +2024-04-02T21:23:19Z #14 2.415 57700K .......... .......... .......... .......... .......... 45% 149M 1s +2024-04-02T21:23:19Z #14 2.415 57750K .......... .......... .......... .......... .......... 45% 169M 1s +2024-04-02T21:23:19Z #14 2.416 57800K .......... .......... .......... .......... .......... 45% 156M 1s +2024-04-02T21:23:19Z #14 2.416 57850K .......... .......... .......... .......... .......... 45% 150M 1s +2024-04-02T21:23:19Z #14 2.416 57900K .......... .......... .......... .......... .......... 45% 169M 1s +2024-04-02T21:23:19Z #14 2.417 57950K .......... .......... .......... .......... .......... 45% 166M 1s +2024-04-02T21:23:19Z #14 2.417 58000K .......... .......... .......... .......... .......... 45% 146M 1s +2024-04-02T21:23:19Z #14 2.417 58050K .......... .......... .......... .......... .......... 45% 146M 1s +2024-04-02T21:23:19Z #14 2.417 58100K .......... .......... .......... .......... .......... 45% 177M 1s +2024-04-02T21:23:19Z #14 2.418 58150K .......... .......... .......... .......... .......... 45% 176M 1s +2024-04-02T21:23:19Z #14 2.419 58200K .......... .......... .......... .......... .......... 45% 145M 1s +2024-04-02T21:23:19Z #14 2.419 58250K .......... .......... .......... .......... .......... 45% 149M 1s +2024-04-02T21:23:19Z #14 2.419 58300K .......... .......... .......... .......... .......... 46% 141M 1s +2024-04-02T21:23:19Z #14 2.419 58350K .......... .......... .......... .......... .......... 46% 131M 1s +2024-04-02T21:23:19Z #14 2.419 58400K .......... .......... .......... .......... .......... 46% 176M 1s +2024-04-02T21:23:19Z #14 2.420 58450K .......... .......... .......... .......... .......... 46% 170M 1s +2024-04-02T21:23:19Z #14 2.420 58500K .......... .......... .......... .......... .......... 46% 149M 1s +2024-04-02T21:23:19Z #14 2.420 58550K .......... .......... .......... .......... .......... 46% 134M 1s +2024-04-02T21:23:19Z #14 2.421 58600K .......... .......... .......... .......... .......... 46% 172M 1s +2024-04-02T21:23:19Z #14 2.421 58650K .......... .......... .......... .......... .......... 46% 155M 1s +2024-04-02T21:23:19Z #14 2.422 58700K .......... .......... .......... .......... .......... 46% 150M 1s +2024-04-02T21:23:19Z #14 2.422 58750K .......... .......... .......... .......... .......... 46% 118M 1s +2024-04-02T21:23:19Z #14 2.423 58800K .......... .......... .......... .......... .......... 46% 140M 1s +2024-04-02T21:23:19Z #14 2.423 58850K .......... .......... .......... .......... .......... 46% 140M 1s +2024-04-02T21:23:19Z #14 2.423 58900K .......... .......... .......... .......... .......... 46% 123M 1s +2024-04-02T21:23:19Z #14 2.424 58950K .......... .......... .......... .......... .......... 46% 149M 1s +2024-04-02T21:23:19Z #14 2.424 59000K .......... .......... .......... .......... .......... 46% 138M 1s +2024-04-02T21:23:19Z #14 2.424 59050K .......... .......... .......... .......... .......... 46% 114M 1s +2024-04-02T21:23:19Z #14 2.424 59100K .......... .......... .......... .......... .......... 46% 148M 1s +2024-04-02T21:23:19Z #14 2.424 59150K .......... .......... .......... .......... .......... 46% 150M 1s +2024-04-02T21:23:19Z #14 2.425 59200K .......... .......... .......... .......... .......... 46% 132M 1s +2024-04-02T21:23:19Z #14 2.425 59250K .......... .......... .......... .......... .......... 46% 153M 1s +2024-04-02T21:23:19Z #14 2.427 59300K .......... .......... .......... .......... .......... 46% 129M 1s +2024-04-02T21:23:19Z #14 2.427 59350K .......... .......... .......... .......... .......... 46% 152M 1s +2024-04-02T21:23:19Z #14 2.427 59400K .......... .......... .......... .......... .......... 46% 158M 1s +2024-04-02T21:23:19Z #14 2.427 59450K .......... .......... .......... .......... .......... 46% 134M 1s +2024-04-02T21:23:19Z #14 2.427 59500K .......... .......... .......... .......... .......... 46% 153M 1s +2024-04-02T21:23:19Z #14 2.427 59550K .......... .......... .......... .......... .......... 47% 146M 1s +2024-04-02T21:23:19Z #14 2.428 59600K .......... .......... .......... .......... .......... 47% 165M 1s +2024-04-02T21:23:19Z #14 2.428 59650K .......... .......... .......... .......... .......... 47% 128M 1s +2024-04-02T21:23:19Z #14 2.428 59700K .......... .......... .......... .......... .......... 47% 148M 1s +2024-04-02T21:23:19Z #14 2.429 59750K .......... .......... .......... .......... .......... 47% 123M 1s +2024-04-02T21:23:19Z #14 2.429 59800K .......... .......... .......... .......... .......... 47% 165M 1s +2024-04-02T21:23:19Z #14 2.429 59850K .......... .......... .......... .......... .......... 47% 141M 1s +2024-04-02T21:23:19Z #14 2.429 59900K .......... .......... .......... .......... .......... 47% 142M 1s +2024-04-02T21:23:19Z #14 2.430 59950K .......... .......... .......... .......... .......... 47% 139M 1s +2024-04-02T21:23:19Z #14 2.431 60000K .......... .......... .......... .......... .......... 47% 148M 1s +2024-04-02T21:23:19Z #14 2.431 60050K .......... .......... .......... .......... .......... 47% 112M 1s +2024-04-02T21:23:19Z #14 2.431 60100K .......... .......... .......... .......... .......... 47% 139M 1s +2024-04-02T21:23:19Z #14 2.431 60150K .......... .......... .......... .......... .......... 47% 135M 1s +2024-04-02T21:23:19Z #14 2.432 60200K .......... .......... .......... .......... .......... 47% 122M 1s +2024-04-02T21:23:19Z #14 2.432 60250K .......... .......... .......... .......... .......... 47% 156M 1s +2024-04-02T21:23:19Z #14 2.433 60300K .......... .......... .......... .......... .......... 47% 126M 1s +2024-04-02T21:23:19Z #14 2.433 60350K .......... .......... .......... .......... .......... 47% 127M 1s +2024-04-02T21:23:19Z #14 2.434 60400K .......... .......... .......... .......... .......... 47% 138M 1s +2024-04-02T21:23:19Z #14 2.434 60450K .......... .......... .......... .......... .......... 47% 139M 1s +2024-04-02T21:23:19Z #14 2.434 60500K .......... .......... .......... .......... .......... 47% 168M 1s +2024-04-02T21:23:19Z #14 2.434 60550K .......... .......... .......... .......... .......... 47% 137M 1s +2024-04-02T21:23:19Z #14 2.435 60600K .......... .......... .......... .......... .......... 47% 128M 1s +2024-04-02T21:23:19Z #14 2.436 60650K .......... .......... .......... .......... .......... 47% 132M 1s +2024-04-02T21:23:19Z #14 2.436 60700K .......... .......... .......... .......... .......... 47% 140M 1s +2024-04-02T21:23:19Z #14 2.436 60750K .......... .......... .......... .......... .......... 47% 121M 1s +2024-04-02T21:23:19Z #14 2.436 60800K .......... .......... .......... .......... .......... 47% 150M 1s +2024-04-02T21:23:19Z #14 2.436 60850K .......... .......... .......... .......... .......... 48% 152M 1s +2024-04-02T21:23:19Z #14 2.437 60900K .......... .......... .......... .......... .......... 48% 149M 1s +2024-04-02T21:23:19Z #14 2.439 60950K .......... .......... .......... .......... .......... 48% 131M 1s +2024-04-02T21:23:19Z #14 2.439 61000K .......... .......... .......... .......... .......... 48% 148M 1s +2024-04-02T21:23:19Z #14 2.439 61050K .......... .......... .......... .......... .......... 48% 167M 1s +2024-04-02T21:23:19Z #14 2.439 61100K .......... .......... .......... .......... .......... 48% 145M 1s +2024-04-02T21:23:19Z #14 2.439 61150K .......... .......... .......... .......... .......... 48% 35.9M 1s +2024-04-02T21:23:19Z #14 2.440 61200K .......... .......... .......... .......... .......... 48% 37.3M 1s +2024-04-02T21:23:19Z #14 2.447 61250K .......... .......... .......... .......... .......... 48% 183M 1s +2024-04-02T21:23:19Z #14 2.447 61300K .......... .......... .......... .......... .......... 48% 150M 1s +2024-04-02T21:23:19Z #14 2.447 61350K .......... .......... .......... .......... .......... 48% 127M 1s +2024-04-02T21:23:19Z #14 2.447 61400K .......... .......... .......... .......... .......... 48% 155M 1s +2024-04-02T21:23:19Z #14 2.447 61450K .......... .......... .......... .......... .......... 48% 156M 1s +2024-04-02T21:23:19Z #14 2.447 61500K .......... .......... .......... .......... .......... 48% 97.5M 1s +2024-04-02T21:23:19Z #14 2.447 61550K .......... .......... .......... .......... .......... 48% 127M 1s +2024-04-02T21:23:19Z #14 2.447 61600K .......... .......... .......... .......... .......... 48% 111M 1s +2024-04-02T21:23:19Z #14 2.447 61650K .......... .......... .......... .......... .......... 48% 122M 1s +2024-04-02T21:23:19Z #14 2.447 61700K .......... .......... .......... .......... .......... 48% 111M 1s +2024-04-02T21:23:19Z #14 2.447 61750K .......... .......... .......... .......... .......... 48% 117M 1s +2024-04-02T21:23:19Z #14 2.447 61800K .......... .......... .......... .......... .......... 48% 107M 1s +2024-04-02T21:23:19Z #14 2.447 61850K .......... .......... .......... .......... .......... 48% 117M 1s +2024-04-02T21:23:19Z #14 2.447 61900K .......... .......... .......... .......... .......... 48% 117M 1s +2024-04-02T21:23:19Z #14 2.447 61950K .......... .......... .......... .......... .......... 48% 74.3M 1s +2024-04-02T21:23:19Z #14 2.449 62000K .......... .......... .......... .......... .......... 48% 176M 1s +2024-04-02T21:23:19Z #14 2.449 62050K .......... .......... .......... .......... .......... 48% 138M 1s +2024-04-02T21:23:19Z #14 2.449 62100K .......... .......... .......... .......... .......... 49% 136M 1s +2024-04-02T21:23:19Z #14 2.449 62150K .......... .......... .......... .......... .......... 49% 111M 1s +2024-04-02T21:23:19Z #14 2.449 62200K .......... .......... .......... .......... .......... 49% 128M 1s +2024-04-02T21:23:19Z #14 2.449 62250K .......... .......... .......... .......... .......... 49% 71.3M 1s +2024-04-02T21:23:19Z #14 2.450 62300K .......... .......... .......... .......... .......... 49% 133M 1s +2024-04-02T21:23:19Z #14 2.450 62350K .......... .......... .......... .......... .......... 49% 84.8M 1s +2024-04-02T21:23:19Z #14 2.451 62400K .......... .......... .......... .......... .......... 49% 110M 1s +2024-04-02T21:23:19Z #14 2.452 62450K .......... .......... .......... .......... .......... 49% 110M 1s +2024-04-02T21:23:19Z #14 2.452 62500K .......... .......... .......... .......... .......... 49% 139M 1s +2024-04-02T21:23:19Z #14 2.452 62550K .......... .......... .......... .......... .......... 49% 98.7M 1s +2024-04-02T21:23:19Z #14 2.454 62600K .......... .......... .......... .......... .......... 49% 87.0M 1s +2024-04-02T21:23:19Z #14 2.454 62650K .......... .......... .......... .......... .......... 49% 139M 1s +2024-04-02T21:23:19Z #14 2.454 62700K .......... .......... .......... .......... .......... 49% 145M 1s +2024-04-02T21:23:19Z #14 2.454 62750K .......... .......... .......... .......... .......... 49% 105M 1s +2024-04-02T21:23:19Z #14 2.454 62800K .......... .......... .......... .......... .......... 49% 156M 1s +2024-04-02T21:23:19Z #14 2.455 62850K .......... .......... .......... .......... .......... 49% 74.9M 1s +2024-04-02T21:23:19Z #14 2.457 62900K .......... .......... .......... .......... .......... 49% 140M 1s +2024-04-02T21:23:19Z #14 2.457 62950K .......... .......... .......... .......... .......... 49% 137M 1s +2024-04-02T21:23:19Z #14 2.457 63000K .......... .......... .......... .......... .......... 49% 116M 1s +2024-04-02T21:23:19Z #14 2.457 63050K .......... .......... .......... .......... .......... 49% 134M 1s +2024-04-02T21:23:19Z #14 2.457 63100K .......... .......... .......... .......... .......... 49% 130M 1s +2024-04-02T21:23:19Z #14 2.457 63150K .......... .......... .......... .......... .......... 49% 83.4M 1s +2024-04-02T21:23:19Z #14 2.459 63200K .......... .......... .......... .......... .......... 49% 117M 1s +2024-04-02T21:23:19Z #14 2.459 63250K .......... .......... .......... .......... .......... 49% 150M 1s +2024-04-02T21:23:19Z #14 2.459 63300K .......... .......... .......... .......... .......... 49% 105M 1s +2024-04-02T21:23:19Z #14 2.459 63350K .......... .......... .......... .......... .......... 50% 58.1M 1s +2024-04-02T21:23:19Z #14 2.461 63400K .......... .......... .......... .......... .......... 50% 142M 1s +2024-04-02T21:23:19Z #14 2.461 63450K .......... .......... .......... .......... .......... 50% 106M 1s +2024-04-02T21:23:19Z #14 2.461 63500K .......... .......... .......... .......... .......... 50% 127M 1s +2024-04-02T21:23:19Z #14 2.461 63550K .......... .......... .......... .......... .......... 50% 110M 1s +2024-04-02T21:23:19Z #14 2.461 63600K .......... .......... .......... .......... .......... 50% 28.6M 1s +2024-04-02T21:23:19Z #14 2.463 63650K .......... .......... .......... .......... .......... 50% 72.4M 1s +2024-04-02T21:23:19Z #14 2.464 63700K .......... .......... .......... .......... .......... 50% 161M 1s +2024-04-02T21:23:19Z #14 2.464 63750K .......... .......... .......... .......... .......... 50% 123M 1s +2024-04-02T21:23:19Z #14 2.464 63800K .......... .......... .......... .......... .......... 50% 66.5M 1s +2024-04-02T21:23:19Z #14 2.465 63850K .......... .......... .......... .......... .......... 50% 27.6M 1s +2024-04-02T21:23:19Z #14 2.467 63900K .......... .......... .......... .......... .......... 50% 17.3M 1s +2024-04-02T21:23:19Z #14 2.471 63950K .......... .......... .......... .......... .......... 50% 111M 1s +2024-04-02T21:23:19Z #14 2.471 64000K .......... .......... .......... .......... .......... 50% 126M 1s +2024-04-02T21:23:19Z #14 2.471 64050K .......... .......... .......... .......... .......... 50% 115M 1s +2024-04-02T21:23:19Z #14 2.471 64100K .......... .......... .......... .......... .......... 50% 82.2M 1s +2024-04-02T21:23:19Z #14 2.476 64150K .......... .......... .......... .......... .......... 50% 151M 1s +2024-04-02T21:23:19Z #14 2.476 64200K .......... .......... .......... .......... .......... 50% 180M 1s +2024-04-02T21:23:19Z #14 2.476 64250K .......... .......... .......... .......... .......... 50% 152M 1s +2024-04-02T21:23:19Z #14 2.476 64300K .......... .......... .......... .......... .......... 50% 115M 1s +2024-04-02T21:23:19Z #14 2.476 64350K .......... .......... .......... .......... .......... 50% 118M 1s +2024-04-02T21:23:19Z #14 2.476 64400K .......... .......... .......... .......... .......... 50% 122M 1s +2024-04-02T21:23:19Z #14 2.476 64450K .......... .......... .......... .......... .......... 50% 125M 1s +2024-04-02T21:23:19Z #14 2.476 64500K .......... .......... .......... .......... .......... 50% 114M 1s +2024-04-02T21:23:19Z #14 2.476 64550K .......... .......... .......... .......... .......... 50% 25.3M 1s +2024-04-02T21:23:19Z #14 2.480 64600K .......... .......... .......... .......... .......... 50% 136M 1s +2024-04-02T21:23:19Z #14 2.480 64650K .......... .......... .......... .......... .......... 51% 134M 1s +2024-04-02T21:23:19Z #14 2.480 64700K .......... .......... .......... .......... .......... 51% 139M 1s +2024-04-02T21:23:19Z #14 2.480 64750K .......... .......... .......... .......... .......... 51% 136M 1s +2024-04-02T21:23:19Z #14 2.480 64800K .......... .......... .......... .......... .......... 51% 120M 1s +2024-04-02T21:23:19Z #14 2.480 64850K .......... .......... .......... .......... .......... 51% 17.1M 1s +2024-04-02T21:23:19Z #14 2.482 64900K .......... .......... .......... .......... .......... 51% 20.6M 1s +2024-04-02T21:23:19Z #14 2.484 64950K .......... .......... .......... .......... .......... 51% 28.1M 1s +2024-04-02T21:23:19Z #14 2.487 65000K .......... .......... .......... .......... .......... 51% 133M 1s +2024-04-02T21:23:19Z #14 2.487 65050K .......... .......... .......... .......... .......... 51% 46.2M 1s +2024-04-02T21:23:19Z #14 2.487 65100K .......... .......... .......... .......... .......... 51% 77.9M 1s +2024-04-02T21:23:19Z #14 2.488 65150K .......... .......... .......... .......... .......... 51% 165M 1s +2024-04-02T21:23:19Z #14 2.488 65200K .......... .......... .......... .......... .......... 51% 128M 1s +2024-04-02T21:23:19Z #14 2.488 65250K .......... .......... .......... .......... .......... 51% 80.0M 1s +2024-04-02T21:23:19Z #14 2.488 65300K .......... .......... .......... .......... .......... 51% 51.2M 1s +2024-04-02T21:23:19Z #14 2.492 65350K .......... .......... .......... .......... .......... 51% 122M 1s +2024-04-02T21:23:19Z #14 2.492 65400K .......... .......... .......... .......... .......... 51% 109M 1s +2024-04-02T21:23:19Z #14 2.492 65450K .......... .......... .......... .......... .......... 51% 132M 1s +2024-04-02T21:23:19Z #14 2.492 65500K .......... .......... .......... .......... .......... 51% 99.1M 1s +2024-04-02T21:23:19Z #14 2.492 65550K .......... .......... .......... .......... .......... 51% 129M 1s +2024-04-02T21:23:19Z #14 2.492 65600K .......... .......... .......... .......... .......... 51% 35.3M 1s +2024-04-02T21:23:19Z #14 2.494 65650K .......... .......... .......... .......... .......... 51% 87.9M 1s +2024-04-02T21:23:19Z #14 2.494 65700K .......... .......... .......... .......... .......... 51% 68.7M 1s +2024-04-02T21:23:19Z #14 2.494 65750K .......... .......... .......... .......... .......... 51% 50.0M 1s +2024-04-02T21:23:19Z #14 2.496 65800K .......... .......... .......... .......... .......... 51% 141M 1s +2024-04-02T21:23:19Z #14 2.496 65850K .......... .......... .......... .......... .......... 51% 114M 1s +2024-04-02T21:23:19Z #14 2.496 65900K .......... .......... .......... .......... .......... 52% 46.7M 1s +2024-04-02T21:23:19Z #14 2.497 65950K .......... .......... .......... .......... .......... 52% 14.9M 1s +2024-04-02T21:23:19Z #14 2.502 66000K .......... .......... .......... .......... .......... 52% 125M 1s +2024-04-02T21:23:19Z #14 2.502 66050K .......... .......... .......... .......... .......... 52% 109M 1s +2024-04-02T21:23:19Z #14 2.502 66100K .......... .......... .......... .......... .......... 52% 124M 1s +2024-04-02T21:23:19Z #14 2.502 66150K .......... .......... .......... .......... .......... 52% 132M 1s +2024-04-02T21:23:19Z #14 2.502 66200K .......... .......... .......... .......... .......... 52% 150M 1s +2024-04-02T21:23:19Z #14 2.502 66250K .......... .......... .......... .......... .......... 52% 10.6M 1s +2024-04-02T21:23:19Z #14 2.508 66300K .......... .......... .......... .......... .......... 52% 119M 1s +2024-04-02T21:23:19Z #14 2.508 66350K .......... .......... .......... .......... .......... 52% 132M 1s +2024-04-02T21:23:19Z #14 2.508 66400K .......... .......... .......... .......... .......... 52% 133M 1s +2024-04-02T21:23:19Z #14 2.508 66450K .......... .......... .......... .......... .......... 52% 75.7M 1s +2024-04-02T21:23:19Z #14 2.511 66500K .......... .......... .......... .......... .......... 52% 29.0M 1s +2024-04-02T21:23:19Z #14 2.511 66550K .......... .......... .......... .......... .......... 52% 142M 1s +2024-04-02T21:23:19Z #14 2.511 66600K .......... .......... .......... .......... .......... 52% 95.4M 1s +2024-04-02T21:23:19Z #14 2.511 66650K .......... .......... .......... .......... .......... 52% 80.6M 1s +2024-04-02T21:23:19Z #14 2.515 66700K .......... .......... .......... .......... .......... 52% 152M 1s +2024-04-02T21:23:19Z #14 2.515 66750K .......... .......... .......... .......... .......... 52% 134M 1s +2024-04-02T21:23:19Z #14 2.515 66800K .......... .......... .......... .......... .......... 52% 27.9M 1s +2024-04-02T21:23:19Z #14 2.515 66850K .......... .......... .......... .......... .......... 52% 119M 1s +2024-04-02T21:23:19Z #14 2.515 66900K .......... .......... .......... .......... .......... 52% 163M 1s +2024-04-02T21:23:19Z #14 2.515 66950K .......... .......... .......... .......... .......... 52% 66.1M 1s +2024-04-02T21:23:19Z #14 2.518 67000K .......... .......... .......... .......... .......... 52% 128M 1s +2024-04-02T21:23:19Z #14 2.518 67050K .......... .......... .......... .......... .......... 52% 135M 1s +2024-04-02T21:23:19Z #14 2.518 67100K .......... .......... .......... .......... .......... 52% 139M 1s +2024-04-02T21:23:19Z #14 2.518 67150K .......... .......... .......... .......... .......... 53% 132M 1s +2024-04-02T21:23:19Z #14 2.518 67200K .......... .......... .......... .......... .......... 53% 113M 1s +2024-04-02T21:23:19Z #14 2.518 67250K .......... .......... .......... .......... .......... 53% 143M 1s +2024-04-02T21:23:19Z #14 2.518 67300K .......... .......... .......... .......... .......... 53% 52.4M 1s +2024-04-02T21:23:19Z #14 2.519 67350K .......... .......... .......... .......... .......... 53% 138M 1s +2024-04-02T21:23:19Z #14 2.520 67400K .......... .......... .......... .......... .......... 53% 150M 1s +2024-04-02T21:23:19Z #14 2.520 67450K .......... .......... .......... .......... .......... 53% 100M 1s +2024-04-02T21:23:19Z #14 2.521 67500K .......... .......... .......... .......... .......... 53% 149M 1s +2024-04-02T21:23:19Z #14 2.521 67550K .......... .......... .......... .......... .......... 53% 146M 1s +2024-04-02T21:23:19Z #14 2.521 67600K .......... .......... .......... .......... .......... 53% 97.4M 1s +2024-04-02T21:23:19Z #14 2.522 67650K .......... .......... .......... .......... .......... 53% 132M 1s +2024-04-02T21:23:19Z #14 2.522 67700K .......... .......... .......... .......... .......... 53% 140M 1s +2024-04-02T21:23:19Z #14 2.522 67750K .......... .......... .......... .......... .......... 53% 149M 1s +2024-04-02T21:23:19Z #14 2.522 67800K .......... .......... .......... .......... .......... 53% 67.6M 1s +2024-04-02T21:23:19Z #14 2.523 67850K .......... .......... .......... .......... .......... 53% 101M 1s +2024-04-02T21:23:19Z #14 2.524 67900K .......... .......... .......... .......... .......... 53% 134M 1s +2024-04-02T21:23:19Z #14 2.524 67950K .......... .......... .......... .......... .......... 53% 146M 1s +2024-04-02T21:23:19Z #14 2.525 68000K .......... .......... .......... .......... .......... 53% 113M 1s +2024-04-02T21:23:19Z #14 2.525 68050K .......... .......... .......... .......... .......... 53% 151M 1s +2024-04-02T21:23:19Z #14 2.525 68100K .......... .......... .......... .......... .......... 53% 100M 1s +2024-04-02T21:23:19Z #14 2.526 68150K .......... .......... .......... .......... .......... 53% 129M 1s +2024-04-02T21:23:19Z #14 2.526 68200K .......... .......... .......... .......... .......... 53% 145M 1s +2024-04-02T21:23:19Z #14 2.527 68250K .......... .......... .......... .......... .......... 53% 140M 1s +2024-04-02T21:23:19Z #14 2.527 68300K .......... .......... .......... .......... .......... 53% 122M 1s +2024-04-02T21:23:19Z #14 2.527 68350K .......... .......... .......... .......... .......... 53% 82.5M 1s +2024-04-02T21:23:19Z #14 2.528 68400K .......... .......... .......... .......... .......... 53% 119M 1s +2024-04-02T21:23:19Z #14 2.528 68450K .......... .......... .......... .......... .......... 54% 132M 1s +2024-04-02T21:23:19Z #14 2.528 68500K .......... .......... .......... .......... .......... 54% 95.2M 1s +2024-04-02T21:23:19Z #14 2.529 68550K .......... .......... .......... .......... .......... 54% 157M 1s +2024-04-02T21:23:19Z #14 2.529 68600K .......... .......... .......... .......... .......... 54% 123M 1s +2024-04-02T21:23:19Z #14 2.529 68650K .......... .......... .......... .......... .......... 54% 91.9M 1s +2024-04-02T21:23:19Z #14 2.530 68700K .......... .......... .......... .......... .......... 54% 156M 1s +2024-04-02T21:23:19Z #14 2.530 68750K .......... .......... .......... .......... .......... 54% 112M 1s +2024-04-02T21:23:19Z #14 2.531 68800K .......... .......... .......... .......... .......... 54% 86.7M 1s +2024-04-02T21:23:19Z #14 2.532 68850K .......... .......... .......... .......... .......... 54% 167M 1s +2024-04-02T21:23:19Z #14 2.532 68900K .......... .......... .......... .......... .......... 54% 128M 1s +2024-04-02T21:23:19Z #14 2.532 68950K .......... .......... .......... .......... .......... 54% 114M 1s +2024-04-02T21:23:19Z #14 2.533 69000K .......... .......... .......... .......... .......... 54% 115M 1s +2024-04-02T21:23:19Z #14 2.533 69050K .......... .......... .......... .......... .......... 54% 157M 1s +2024-04-02T21:23:19Z #14 2.533 69100K .......... .......... .......... .......... .......... 54% 107M 1s +2024-04-02T21:23:19Z #14 2.534 69150K .......... .......... .......... .......... .......... 54% 140M 1s +2024-04-02T21:23:19Z #14 2.534 69200K .......... .......... .......... .......... .......... 54% 178M 1s +2024-04-02T21:23:19Z #14 2.534 69250K .......... .......... .......... .......... .......... 54% 98.3M 1s +2024-04-02T21:23:19Z #14 2.535 69300K .......... .......... .......... .......... .......... 54% 149M 1s +2024-04-02T21:23:19Z #14 2.536 69350K .......... .......... .......... .......... .......... 54% 99.1M 1s +2024-04-02T21:23:19Z #14 2.536 69400K .......... .......... .......... .......... .......... 54% 117M 1s +2024-04-02T21:23:19Z #14 2.537 69450K .......... .......... .......... .......... .......... 54% 128M 1s +2024-04-02T21:23:19Z #14 2.537 69500K .......... .......... .......... .......... .......... 54% 122M 1s +2024-04-02T21:23:19Z #14 2.537 69550K .......... .......... .......... .......... .......... 54% 110M 1s +2024-04-02T21:23:19Z #14 2.539 69600K .......... .......... .......... .......... .......... 54% 139M 1s +2024-04-02T21:23:19Z #14 2.539 69650K .......... .......... .......... .......... .......... 54% 119M 1s +2024-04-02T21:23:19Z #14 2.539 69700K .......... .......... .......... .......... .......... 55% 181M 1s +2024-04-02T21:23:19Z #14 2.539 69750K .......... .......... .......... .......... .......... 55% 199M 1s +2024-04-02T21:23:19Z #14 2.539 69800K .......... .......... .......... .......... .......... 55% 121M 1s +2024-04-02T21:23:19Z #14 2.539 69850K .......... .......... .......... .......... .......... 55% 93.9M 1s +2024-04-02T21:23:19Z #14 2.541 69900K .......... .......... .......... .......... .......... 55% 127M 1s +2024-04-02T21:23:19Z #14 2.541 69950K .......... .......... .......... .......... .......... 55% 109M 1s +2024-04-02T21:23:19Z #14 2.541 70000K .......... .......... .......... .......... .......... 55% 96.3M 1s +2024-04-02T21:23:19Z #14 2.542 70050K .......... .......... .......... .......... .......... 55% 119M 1s +2024-04-02T21:23:19Z #14 2.542 70100K .......... .......... .......... .......... .......... 55% 144M 1s +2024-04-02T21:23:19Z #14 2.542 70150K .......... .......... .......... .......... .......... 55% 142M 1s +2024-04-02T21:23:19Z #14 2.542 70200K .......... .......... .......... .......... .......... 55% 110M 1s +2024-04-02T21:23:19Z #14 2.543 70250K .......... .......... .......... .......... .......... 55% 138M 1s +2024-04-02T21:23:19Z #14 2.543 70300K .......... .......... .......... .......... .......... 55% 155M 1s +2024-04-02T21:23:19Z #14 2.543 70350K .......... .......... .......... .......... .......... 55% 102M 1s +2024-04-02T21:23:19Z #14 2.544 70400K .......... .......... .......... .......... .......... 55% 108M 1s +2024-04-02T21:23:19Z #14 2.545 70450K .......... .......... .......... .......... .......... 55% 121M 1s +2024-04-02T21:23:19Z #14 2.545 70500K .......... .......... .......... .......... .......... 55% 138M 1s +2024-04-02T21:23:19Z #14 2.545 70550K .......... .......... .......... .......... .......... 55% 114M 1s +2024-04-02T21:23:19Z #14 2.546 70600K .......... .......... .......... .......... .......... 55% 114M 1s +2024-04-02T21:23:19Z #14 2.546 70650K .......... .......... .......... .......... .......... 55% 161M 1s +2024-04-02T21:23:19Z #14 2.546 70700K .......... .......... .......... .......... .......... 55% 102M 1s +2024-04-02T21:23:19Z #14 2.547 70750K .......... .......... .......... .......... .......... 55% 140M 1s +2024-04-02T21:23:19Z #14 2.547 70800K .......... .......... .......... .......... .......... 55% 160M 1s +2024-04-02T21:23:19Z #14 2.547 70850K .......... .......... .......... .......... .......... 55% 88.3M 1s +2024-04-02T21:23:19Z #14 2.548 70900K .......... .......... .......... .......... .......... 55% 127M 1s +2024-04-02T21:23:19Z #14 2.548 70950K .......... .......... .......... .......... .......... 56% 150M 1s +2024-04-02T21:23:19Z #14 2.548 71000K .......... .......... .......... .......... .......... 56% 116M 1s +2024-04-02T21:23:19Z #14 2.549 71050K .......... .......... .......... .......... .......... 56% 138M 1s +2024-04-02T21:23:19Z #14 2.549 71100K .......... .......... .......... .......... .......... 56% 106M 1s +2024-04-02T21:23:19Z #14 2.551 71150K .......... .......... .......... .......... .......... 56% 126M 1s +2024-04-02T21:23:19Z #14 2.551 71200K .......... .......... .......... .......... .......... 56% 110M 1s +2024-04-02T21:23:19Z #14 2.551 71250K .......... .......... .......... .......... .......... 56% 160M 1s +2024-04-02T21:23:19Z #14 2.551 71300K .......... .......... .......... .......... .......... 56% 102M 1s +2024-04-02T21:23:19Z #14 2.551 71350K .......... .......... .......... .......... .......... 56% 110M 1s +2024-04-02T21:23:19Z #14 2.552 71400K .......... .......... .......... .......... .......... 56% 147M 1s +2024-04-02T21:23:19Z #14 2.552 71450K .......... .......... .......... .......... .......... 56% 94.6M 1s +2024-04-02T21:23:19Z #14 2.553 71500K .......... .......... .......... .......... .......... 56% 101M 1s +2024-04-02T21:23:19Z #14 2.553 71550K .......... .......... .......... .......... .......... 56% 141M 1s +2024-04-02T21:23:19Z #14 2.553 71600K .......... .......... .......... .......... .......... 56% 101M 1s +2024-04-02T21:23:19Z #14 2.555 71650K .......... .......... .......... .......... .......... 56% 145M 1s +2024-04-02T21:23:19Z #14 2.555 71700K .......... .......... .......... .......... .......... 56% 114M 1s +2024-04-02T21:23:19Z #14 2.555 71750K .......... .......... .......... .......... .......... 56% 119M 1s +2024-04-02T21:23:19Z #14 2.555 71800K .......... .......... .......... .......... .......... 56% 88.3M 1s +2024-04-02T21:23:19Z #14 2.556 71850K .......... .......... .......... .......... .......... 56% 142M 1s +2024-04-02T21:23:19Z #14 2.556 71900K .......... .......... .......... .......... .......... 56% 97.1M 1s +2024-04-02T21:23:19Z #14 2.560 71950K .......... .......... .......... .......... .......... 56% 113M 1s +2024-04-02T21:23:19Z #14 2.560 72000K .......... .......... .......... .......... .......... 56% 128M 1s +2024-04-02T21:23:19Z #14 2.560 72050K .......... .......... .......... .......... .......... 56% 149M 1s +2024-04-02T21:23:19Z #14 2.560 72100K .......... .......... .......... .......... .......... 56% 140M 1s +2024-04-02T21:23:19Z #14 2.560 72150K .......... .......... .......... .......... .......... 56% 151M 1s +2024-04-02T21:23:19Z #14 2.560 72200K .......... .......... .......... .......... .......... 56% 157M 1s +2024-04-02T21:23:19Z #14 2.560 72250K .......... .......... .......... .......... .......... 57% 142M 1s +2024-04-02T21:23:19Z #14 2.560 72300K .......... .......... .......... .......... .......... 57% 148M 1s +2024-04-02T21:23:19Z #14 2.560 72350K .......... .......... .......... .......... .......... 57% 90.7M 1s +2024-04-02T21:23:19Z #14 2.561 72400K .......... .......... .......... .......... .......... 57% 117M 1s +2024-04-02T21:23:19Z #14 2.561 72450K .......... .......... .......... .......... .......... 57% 122M 1s +2024-04-02T21:23:19Z #14 2.561 72500K .......... .......... .......... .......... .......... 57% 115M 1s +2024-04-02T21:23:19Z #14 2.561 72550K .......... .......... .......... .......... .......... 57% 101M 1s +2024-04-02T21:23:19Z #14 2.561 72600K .......... .......... .......... .......... .......... 57% 63.1M 1s +2024-04-02T21:23:19Z #14 2.562 72650K .......... .......... .......... .......... .......... 57% 30.4M 1s +2024-04-02T21:23:19Z #14 2.564 72700K .......... .......... .......... .......... .......... 57% 95.1M 1s +2024-04-02T21:23:19Z #14 2.564 72750K .......... .......... .......... .......... .......... 57% 49.5M 1s +2024-04-02T21:23:19Z #14 2.565 72800K .......... .......... .......... .......... .......... 57% 148M 1s +2024-04-02T21:23:19Z #14 2.565 72850K .......... .......... .......... .......... .......... 57% 31.5M 1s +2024-04-02T21:23:19Z #14 2.567 72900K .......... .......... .......... .......... .......... 57% 28.1M 1s +2024-04-02T21:23:19Z #14 2.569 72950K .......... .......... .......... .......... .......... 57% 52.5M 1s +2024-04-02T21:23:19Z #14 2.571 73000K .......... .......... .......... .......... .......... 57% 91.4M 1s +2024-04-02T21:23:19Z #14 2.571 73050K .......... .......... .......... .......... .......... 57% 148M 1s +2024-04-02T21:23:19Z #14 2.571 73100K .......... .......... .......... .......... .......... 57% 39.5M 1s +2024-04-02T21:23:19Z #14 2.572 73150K .......... .......... .......... .......... .......... 57% 53.7M 1s +2024-04-02T21:23:19Z #14 2.574 73200K .......... .......... .......... .......... .......... 57% 76.5M 1s +2024-04-02T21:23:19Z #14 2.574 73250K .......... .......... .......... .......... .......... 57% 120M 1s +2024-04-02T21:23:19Z #14 2.574 73300K .......... .......... .......... .......... .......... 57% 14.7M 1s +2024-04-02T21:23:19Z #14 2.577 73350K .......... .......... .......... .......... .......... 57% 33.1M 1s +2024-04-02T21:23:19Z #14 2.583 73400K .......... .......... .......... .......... .......... 57% 122M 1s +2024-04-02T21:23:19Z #14 2.583 73450K .......... .......... .......... .......... .......... 57% 110M 1s +2024-04-02T21:23:19Z #14 2.583 73500K .......... .......... .......... .......... .......... 58% 105M 1s +2024-04-02T21:23:19Z #14 2.583 73550K .......... .......... .......... .......... .......... 58% 107M 1s +2024-04-02T21:23:19Z #14 2.583 73600K .......... .......... .......... .......... .......... 58% 119M 1s +2024-04-02T21:23:19Z #14 2.583 73650K .......... .......... .......... .......... .......... 58% 92.9M 1s +2024-04-02T21:23:19Z #14 2.583 73700K .......... .......... .......... .......... .......... 58% 118M 1s +2024-04-02T21:23:19Z #14 2.583 73750K .......... .......... .......... .......... .......... 58% 118M 1s +2024-04-02T21:23:19Z #14 2.583 73800K .......... .......... .......... .......... .......... 58% 99.6M 1s +2024-04-02T21:23:19Z #14 2.583 73850K .......... .......... .......... .......... .......... 58% 114M 1s +2024-04-02T21:23:19Z #14 2.583 73900K .......... .......... .......... .......... .......... 58% 11.3M 1s +2024-04-02T21:23:19Z #14 2.587 73950K .......... .......... .......... .......... .......... 58% 75.7M 1s +2024-04-02T21:23:19Z #14 2.588 74000K .......... .......... .......... .......... .......... 58% 109M 1s +2024-04-02T21:23:19Z #14 2.588 74050K .......... .......... .......... .......... .......... 58% 75.6M 1s +2024-04-02T21:23:19Z #14 2.590 74100K .......... .......... .......... .......... .......... 58% 134M 1s +2024-04-02T21:23:19Z #14 2.590 74150K .......... .......... .......... .......... .......... 58% 142M 1s +2024-04-02T21:23:19Z #14 2.590 74200K .......... .......... .......... .......... .......... 58% 70.7M 1s +2024-04-02T21:23:19Z #14 2.590 74250K .......... .......... .......... .......... .......... 58% 16.2M 1s +2024-04-02T21:23:19Z #14 2.593 74300K .......... .......... .......... .......... .......... 58% 44.8M 1s +2024-04-02T21:23:19Z #14 2.595 74350K .......... .......... .......... .......... .......... 58% 64.1M 1s +2024-04-02T21:23:19Z #14 2.596 74400K .......... .......... .......... .......... .......... 58% 67.0M 1s +2024-04-02T21:23:19Z #14 2.596 74450K .......... .......... .......... .......... .......... 58% 120M 1s +2024-04-02T21:23:19Z #14 2.597 74500K .......... .......... .......... .......... .......... 58% 19.5M 1s +2024-04-02T21:23:19Z #14 2.599 74550K .......... .......... .......... .......... .......... 58% 36.7M 1s +2024-04-02T21:23:19Z #14 2.603 74600K .......... .......... .......... .......... .......... 58% 37.1M 1s +2024-04-02T21:23:19Z #14 2.603 74650K .......... .......... .......... .......... .......... 58% 54.1M 1s +2024-04-02T21:23:19Z #14 2.603 74700K .......... .......... .......... .......... .......... 58% 47.2M 1s +2024-04-02T21:23:19Z #14 2.604 74750K .......... .......... .......... .......... .......... 58% 127M 1s +2024-04-02T21:23:19Z #14 2.605 74800K .......... .......... .......... .......... .......... 59% 37.7M 1s +2024-04-02T21:23:19Z #14 2.605 74850K .......... .......... .......... .......... .......... 59% 76.0M 1s +2024-04-02T21:23:19Z #14 2.607 74900K .......... .......... .......... .......... .......... 59% 117M 1s +2024-04-02T21:23:19Z #14 2.607 74950K .......... .......... .......... .......... .......... 59% 132M 1s +2024-04-02T21:23:19Z #14 2.607 75000K .......... .......... .......... .......... .......... 59% 135M 1s +2024-04-02T21:23:19Z #14 2.607 75050K .......... .......... .......... .......... .......... 59% 50.6M 1s +2024-04-02T21:23:19Z #14 2.608 75100K .......... .......... .......... .......... .......... 59% 16.4M 1s +2024-04-02T21:23:19Z #14 2.611 75150K .......... .......... .......... .......... .......... 59% 22.9M 1s +2024-04-02T21:23:19Z #14 2.613 75200K .......... .......... .......... .......... .......... 59% 57.2M 1s +2024-04-02T21:23:19Z #14 2.614 75250K .......... .......... .......... .......... .......... 59% 36.0M 1s +2024-04-02T21:23:19Z #14 2.615 75300K .......... .......... .......... .......... .......... 59% 65.3M 1s +2024-04-02T21:23:19Z #14 2.617 75350K .......... .......... .......... .......... .......... 59% 61.7M 1s +2024-04-02T21:23:19Z #14 2.617 75400K .......... .......... .......... .......... .......... 59% 115M 1s +2024-04-02T21:23:19Z #14 2.617 75450K .......... .......... .......... .......... .......... 59% 33.0M 1s +2024-04-02T21:23:19Z #14 2.619 75500K .......... .......... .......... .......... .......... 59% 15.2M 1s +2024-04-02T21:23:19Z #14 2.622 75550K .......... .......... .......... .......... .......... 59% 21.3M 1s +2024-04-02T21:23:19Z #14 2.627 75600K .......... .......... .......... .......... .......... 59% 63.5M 1s +2024-04-02T21:23:19Z #14 2.627 75650K .......... .......... .......... .......... .......... 59% 89.7M 1s +2024-04-02T21:23:19Z #14 2.627 75700K .......... .......... .......... .......... .......... 59% 127M 1s +2024-04-02T21:23:19Z #14 2.627 75750K .......... .......... .......... .......... .......... 59% 124M 1s +2024-04-02T21:23:19Z #14 2.627 75800K .......... .......... .......... .......... .......... 59% 117M 1s +2024-04-02T21:23:19Z #14 2.627 75850K .......... .......... .......... .......... .......... 59% 16.8M 1s +2024-04-02T21:23:19Z #14 2.630 75900K .......... .......... .......... .......... .......... 59% 28.8M 1s +2024-04-02T21:23:19Z #14 2.631 75950K .......... .......... .......... .......... .......... 59% 51.6M 1s +2024-04-02T21:23:19Z #14 2.632 76000K .......... .......... .......... .......... .......... 59% 23.3M 1s +2024-04-02T21:23:19Z #14 2.635 76050K .......... .......... .......... .......... .......... 60% 38.7M 1s +2024-04-02T21:23:19Z #14 2.636 76100K .......... .......... .......... .......... .......... 60% 33.0M 1s +2024-04-02T21:23:19Z #14 2.639 76150K .......... .......... .......... .......... .......... 60% 58.1M 1s +2024-04-02T21:23:19Z #14 2.639 76200K .......... .......... .......... .......... .......... 60% 100M 1s +2024-04-02T21:23:19Z #14 2.639 76250K .......... .......... .......... .......... .......... 60% 105M 1s +2024-04-02T21:23:19Z #14 2.639 76300K .......... .......... .......... .......... .......... 60% 19.1M 1s +2024-04-02T21:23:19Z #14 2.642 76350K .......... .......... .......... .......... .......... 60% 38.1M 1s +2024-04-02T21:23:19Z #14 2.643 76400K .......... .......... .......... .......... .......... 60% 41.0M 1s +2024-04-02T21:23:19Z #14 2.644 76450K .......... .......... .......... .......... .......... 60% 47.1M 1s +2024-04-02T21:23:19Z #14 2.645 76500K .......... .......... .......... .......... .......... 60% 39.7M 1s +2024-04-02T21:23:19Z #14 2.646 76550K .......... .......... .......... .......... .......... 60% 49.2M 1s +2024-04-02T21:23:19Z #14 2.648 76600K .......... .......... .......... .......... .......... 60% 97.0M 1s +2024-04-02T21:23:19Z #14 2.648 76650K .......... .......... .......... .......... .......... 60% 27.6M 1s +2024-04-02T21:23:19Z #14 2.649 76700K .......... .......... .......... .......... .......... 60% 49.3M 1s +2024-04-02T21:23:19Z #14 2.651 76750K .......... .......... .......... .......... .......... 60% 60.1M 1s +2024-04-02T21:23:19Z #14 2.651 76800K .......... .......... .......... .......... .......... 60% 71.2M 1s +2024-04-02T21:23:19Z #14 2.653 76850K .......... .......... .......... .......... .......... 60% 62.5M 1s +2024-04-02T21:23:19Z #14 2.653 76900K .......... .......... .......... .......... .......... 60% 37.0M 1s +2024-04-02T21:23:19Z #14 2.654 76950K .......... .......... .......... .......... .......... 60% 50.3M 1s +2024-04-02T21:23:19Z #14 2.655 77000K .......... .......... .......... .......... .......... 60% 116M 1s +2024-04-02T21:23:19Z #14 2.656 77050K .......... .......... .......... .......... .......... 60% 34.8M 1s +2024-04-02T21:23:19Z #14 2.657 77100K .......... .......... .......... .......... .......... 60% 88.0M 1s +2024-04-02T21:23:19Z #14 2.657 77150K .......... .......... .......... .......... .......... 60% 37.2M 1s +2024-04-02T21:23:19Z #14 2.659 77200K .......... .......... .......... .......... .......... 60% 25.0M 1s +2024-04-02T21:23:19Z #14 2.661 77250K .......... .......... .......... .......... .......... 60% 74.1M 1s +2024-04-02T21:23:19Z #14 2.662 77300K .......... .......... .......... .......... .......... 61% 126M 1s +2024-04-02T21:23:19Z #14 2.662 77350K .......... .......... .......... .......... .......... 61% 51.0M 1s +2024-04-02T21:23:19Z #14 2.663 77400K .......... .......... .......... .......... .......... 61% 70.5M 1s +2024-04-02T21:23:19Z #14 2.664 77450K .......... .......... .......... .......... .......... 61% 157M 1s +2024-04-02T21:23:19Z #14 2.664 77500K .......... .......... .......... .......... .......... 61% 43.6M 1s +2024-04-02T21:23:19Z #14 2.665 77550K .......... .......... .......... .......... .......... 61% 28.2M 1s +2024-04-02T21:23:19Z #14 2.667 77600K .......... .......... .......... .......... .......... 61% 22.6M 1s +2024-04-02T21:23:19Z #14 2.671 77650K .......... .......... .......... .......... .......... 61% 23.5M 1s +2024-04-02T21:23:19Z #14 2.671 77700K .......... .......... .......... .......... .......... 61% 17.1M 1s +2024-04-02T21:23:19Z #14 2.674 77750K .......... .......... .......... .......... .......... 61% 98.3M 1s +2024-04-02T21:23:19Z #14 2.674 77800K .......... .......... .......... .......... .......... 61% 32.1M 1s +2024-04-02T21:23:19Z #14 2.676 77850K .......... .......... .......... .......... .......... 61% 113M 1s +2024-04-02T21:23:19Z #14 2.676 77900K .......... .......... .......... .......... .......... 61% 43.2M 1s +2024-04-02T21:23:19Z #14 2.679 77950K .......... .......... .......... .......... .......... 61% 78.1M 1s +2024-04-02T21:23:19Z #14 2.679 78000K .......... .......... .......... .......... .......... 61% 58.4M 1s +2024-04-02T21:23:19Z #14 2.679 78050K .......... .......... .......... .......... .......... 61% 49.3M 1s +2024-04-02T21:23:19Z #14 2.680 78100K .......... .......... .......... .......... .......... 61% 46.8M 1s +2024-04-02T21:23:19Z #14 2.681 78150K .......... .......... .......... .......... .......... 61% 87.8M 1s +2024-04-02T21:23:19Z #14 2.682 78200K .......... .......... .......... .......... .......... 61% 40.5M 1s +2024-04-02T21:23:19Z #14 2.682 78250K .......... .......... .......... .......... .......... 61% 36.5M 1s +2024-04-02T21:23:19Z #14 2.687 78300K .......... .......... .......... .......... .......... 61% 52.2M 1s +2024-04-02T21:23:19Z #14 2.687 78350K .......... .......... .......... .......... .......... 61% 100M 1s +2024-04-02T21:23:19Z #14 2.687 78400K .......... .......... .......... .......... .......... 61% 38.6M 1s +2024-04-02T21:23:19Z #14 2.687 78450K .......... .......... .......... .......... .......... 61% 42.6M 1s +2024-04-02T21:23:19Z #14 2.688 78500K .......... .......... .......... .......... .......... 61% 77.4M 1s +2024-04-02T21:23:19Z #14 2.688 78550K .......... .......... .......... .......... .......... 61% 60.7M 1s +2024-04-02T21:23:19Z #14 2.689 78600K .......... .......... .......... .......... .......... 62% 53.9M 1s +2024-04-02T21:23:19Z #14 2.690 78650K .......... .......... .......... .......... .......... 62% 22.6M 1s +2024-04-02T21:23:19Z #14 2.692 78700K .......... .......... .......... .......... .......... 62% 116M 1s +2024-04-02T21:23:19Z #14 2.694 78750K .......... .......... .......... .......... .......... 62% 98.1M 1s +2024-04-02T21:23:19Z #14 2.694 78800K .......... .......... .......... .......... .......... 62% 103M 1s +2024-04-02T21:23:19Z #14 2.694 78850K .......... .......... .......... .......... .......... 62% 95.5M 1s +2024-04-02T21:23:19Z #14 2.695 78900K .......... .......... .......... .......... .......... 62% 112M 1s +2024-04-02T21:23:19Z #14 2.695 78950K .......... .......... .......... .......... .......... 62% 125M 1s +2024-04-02T21:23:19Z #14 2.695 79000K .......... .......... .......... .......... .......... 62% 105M 1s +2024-04-02T21:23:19Z #14 2.695 79050K .......... .......... .......... .......... .......... 62% 19.8M 1s +2024-04-02T21:23:19Z #14 2.698 79100K .......... .......... .......... .......... .......... 62% 150M 1s +2024-04-02T21:23:19Z #14 2.698 79150K .......... .......... .......... .......... .......... 62% 136M 1s +2024-04-02T21:23:19Z #14 2.698 79200K .......... .......... .......... .......... .......... 62% 49.6M 1s +2024-04-02T21:23:19Z #14 2.699 79250K .......... .......... .......... .......... .......... 62% 42.9M 1s +2024-04-02T21:23:19Z #14 2.701 79300K .......... .......... .......... .......... .......... 62% 92.3M 1s +2024-04-02T21:23:19Z #14 2.701 79350K .......... .......... .......... .......... .......... 62% 19.6M 1s +2024-04-02T21:23:19Z #14 2.703 79400K .......... .......... .......... .......... .......... 62% 33.6M 1s +2024-04-02T21:23:19Z #14 2.705 79450K .......... .......... .......... .......... .......... 62% 67.7M 1s +2024-04-02T21:23:19Z #14 2.706 79500K .......... .......... .......... .......... .......... 62% 29.6M 1s +2024-04-02T21:23:19Z #14 2.707 79550K .......... .......... .......... .......... .......... 62% 67.7M 1s +2024-04-02T21:23:19Z #14 2.708 79600K .......... .......... .......... .......... .......... 62% 27.1M 1s +2024-04-02T21:23:19Z #14 2.710 79650K .......... .......... .......... .......... .......... 62% 46.7M 1s +2024-04-02T21:23:19Z #14 2.711 79700K .......... .......... .......... .......... .......... 62% 52.2M 1s +2024-04-02T21:23:19Z #14 2.712 79750K .......... .......... .......... .......... .......... 62% 41.6M 1s +2024-04-02T21:23:19Z #14 2.713 79800K .......... .......... .......... .......... .......... 62% 76.6M 1s +2024-04-02T21:23:19Z #14 2.714 79850K .......... .......... .......... .......... .......... 63% 87.7M 1s +2024-04-02T21:23:19Z #14 2.715 79900K .......... .......... .......... .......... .......... 63% 26.8M 1s +2024-04-02T21:23:19Z #14 2.716 79950K .......... .......... .......... .......... .......... 63% 32.6M 1s +2024-04-02T21:23:19Z #14 2.718 80000K .......... .......... .......... .......... .......... 63% 115M 1s +2024-04-02T21:23:19Z #14 2.718 80050K .......... .......... .......... .......... .......... 63% 38.6M 1s +2024-04-02T21:23:19Z #14 2.719 80100K .......... .......... .......... .......... .......... 63% 60.6M 1s +2024-04-02T21:23:19Z #14 2.720 80150K .......... .......... .......... .......... .......... 63% 40.7M 1s +2024-04-02T21:23:19Z #14 2.723 80200K .......... .......... .......... .......... .......... 63% 96.3M 1s +2024-04-02T21:23:19Z #14 2.723 80250K .......... .......... .......... .......... .......... 63% 164M 1s +2024-04-02T21:23:19Z #14 2.723 80300K .......... .......... .......... .......... .......... 63% 114M 1s +2024-04-02T21:23:19Z #14 2.723 80350K .......... .......... .......... .......... .......... 63% 108M 1s +2024-04-02T21:23:19Z #14 2.723 80400K .......... .......... .......... .......... .......... 63% 100M 1s +2024-04-02T21:23:19Z #14 2.724 80450K .......... .......... .......... .......... .......... 63% 127M 1s +2024-04-02T21:23:19Z #14 2.724 80500K .......... .......... .......... .......... .......... 63% 101M 1s +2024-04-02T21:23:19Z #14 2.725 80550K .......... .......... .......... .......... .......... 63% 101M 1s +2024-04-02T21:23:19Z #14 2.725 80600K .......... .......... .......... .......... .......... 63% 121M 1s +2024-04-02T21:23:19Z #14 2.725 80650K .......... .......... .......... .......... .......... 63% 58.0M 1s +2024-04-02T21:23:19Z #14 2.726 80700K .......... .......... .......... .......... .......... 63% 27.9M 1s +2024-04-02T21:23:19Z #14 2.728 80750K .......... .......... .......... .......... .......... 63% 39.8M 1s +2024-04-02T21:23:19Z #14 2.729 80800K .......... .......... .......... .......... .......... 63% 42.7M 1s +2024-04-02T21:23:19Z #14 2.730 80850K .......... .......... .......... .......... .......... 63% 44.8M 1s +2024-04-02T21:23:19Z #14 2.731 80900K .......... .......... .......... .......... .......... 63% 74.4M 1s +2024-04-02T21:23:19Z #14 2.732 80950K .......... .......... .......... .......... .......... 63% 47.9M 1s +2024-04-02T21:23:19Z #14 2.733 81000K .......... .......... .......... .......... .......... 63% 146M 1s +2024-04-02T21:23:19Z #14 2.733 81050K .......... .......... .......... .......... .......... 63% 60.0M 1s +2024-04-02T21:23:19Z #14 2.736 81100K .......... .......... .......... .......... .......... 64% 53.1M 1s +2024-04-02T21:23:19Z #14 2.736 81150K .......... .......... .......... .......... .......... 64% 42.0M 1s +2024-04-02T21:23:19Z #14 2.737 81200K .......... .......... .......... .......... .......... 64% 46.0M 1s +2024-04-02T21:23:19Z #14 2.737 81250K .......... .......... .......... .......... .......... 64% 47.8M 1s +2024-04-02T21:23:19Z #14 2.739 81300K .......... .......... .......... .......... .......... 64% 45.6M 1s +2024-04-02T21:23:19Z #14 2.751 81350K .......... .......... .......... .......... .......... 64% 58.1M 1s +2024-04-02T21:23:19Z #14 2.751 81400K .......... .......... .......... .......... .......... 64% 150M 1s +2024-04-02T21:23:19Z #14 2.751 81450K .......... .......... .......... .......... .......... 64% 66.0M 1s +2024-04-02T21:23:19Z #14 2.751 81500K .......... .......... .......... .......... .......... 64% 103M 1s +2024-04-02T21:23:19Z #14 2.751 81550K .......... .......... .......... .......... .......... 64% 108M 1s +2024-04-02T21:23:19Z #14 2.751 81600K .......... .......... .......... .......... .......... 64% 78.0M 1s +2024-04-02T21:23:19Z #14 2.751 81650K .......... .......... .......... .......... .......... 64% 81.7M 1s +2024-04-02T21:23:19Z #14 2.751 81700K .......... .......... .......... .......... .......... 64% 93.0M 1s +2024-04-02T21:23:19Z #14 2.751 81750K .......... .......... .......... .......... .......... 64% 178M 1s +2024-04-02T21:23:19Z #14 2.751 81800K .......... .......... .......... .......... .......... 64% 136M 1s +2024-04-02T21:23:19Z #14 2.751 81850K .......... .......... .......... .......... .......... 64% 98.2M 1s +2024-04-02T21:23:19Z #14 2.751 81900K .......... .......... .......... .......... .......... 64% 144M 1s +2024-04-02T21:23:19Z #14 2.751 81950K .......... .......... .......... .......... .......... 64% 127M 1s +2024-04-02T21:23:19Z #14 2.751 82000K .......... .......... .......... .......... .......... 64% 160M 1s +2024-04-02T21:23:19Z #14 2.751 82050K .......... .......... .......... .......... .......... 64% 159M 1s +2024-04-02T21:23:19Z #14 2.751 82100K .......... .......... .......... .......... .......... 64% 181M 1s +2024-04-02T21:23:19Z #14 2.751 82150K .......... .......... .......... .......... .......... 64% 132M 1s +2024-04-02T21:23:19Z #14 2.751 82200K .......... .......... .......... .......... .......... 64% 78.2M 1s +2024-04-02T21:23:19Z #14 2.751 82250K .......... .......... .......... .......... .......... 64% 121M 1s +2024-04-02T21:23:19Z #14 2.751 82300K .......... .......... .......... .......... .......... 64% 104M 1s +2024-04-02T21:23:19Z #14 2.751 82350K .......... .......... .......... .......... .......... 64% 133M 1s +2024-04-02T21:23:19Z #14 2.751 82400K .......... .......... .......... .......... .......... 65% 113M 1s +2024-04-02T21:23:19Z #14 2.751 82450K .......... .......... .......... .......... .......... 65% 121M 1s +2024-04-02T21:23:19Z #14 2.751 82500K .......... .......... .......... .......... .......... 65% 99.9M 1s +2024-04-02T21:23:19Z #14 2.751 82550K .......... .......... .......... .......... .......... 65% 112M 1s +2024-04-02T21:23:19Z #14 2.751 82600K .......... .......... .......... .......... .......... 65% 53.2M 1s +2024-04-02T21:23:19Z #14 2.757 82650K .......... .......... .......... .......... .......... 65% 103M 1s +2024-04-02T21:23:19Z #14 2.757 82700K .......... .......... .......... .......... .......... 65% 144M 1s +2024-04-02T21:23:19Z #14 2.757 82750K .......... .......... .......... .......... .......... 65% 123M 1s +2024-04-02T21:23:19Z #14 2.757 82800K .......... .......... .......... .......... .......... 65% 111M 1s +2024-04-02T21:23:19Z #14 2.757 82850K .......... .......... .......... .......... .......... 65% 102M 1s +2024-04-02T21:23:19Z #14 2.757 82900K .......... .......... .......... .......... .......... 65% 126M 1s +2024-04-02T21:23:19Z #14 2.757 82950K .......... .......... .......... .......... .......... 65% 123M 1s +2024-04-02T21:23:19Z #14 2.757 83000K .......... .......... .......... .......... .......... 65% 119M 1s +2024-04-02T21:23:19Z #14 2.757 83050K .......... .......... .......... .......... .......... 65% 68.9M 1s +2024-04-02T21:23:19Z #14 2.757 83100K .......... .......... .......... .......... .......... 65% 123M 1s +2024-04-02T21:23:19Z #14 2.757 83150K .......... .......... .......... .......... .......... 65% 125M 1s +2024-04-02T21:23:19Z #14 2.757 83200K .......... .......... .......... .......... .......... 65% 103M 1s +2024-04-02T21:23:19Z #14 2.757 83250K .......... .......... .......... .......... .......... 65% 113M 1s +2024-04-02T21:23:19Z #14 2.760 83300K .......... .......... .......... .......... .......... 65% 7.85M 1s +2024-04-02T21:23:19Z #14 2.776 83350K .......... .......... .......... .......... .......... 65% 119M 1s +2024-04-02T21:23:19Z #14 2.776 83400K .......... .......... .......... .......... .......... 65% 124M 1s +2024-04-02T21:23:19Z #14 2.776 83450K .......... .......... .......... .......... .......... 65% 124M 1s +2024-04-02T21:23:19Z #14 2.776 83500K .......... .......... .......... .......... .......... 65% 97.5M 1s +2024-04-02T21:23:19Z #14 2.776 83550K .......... .......... .......... .......... .......... 65% 124M 1s +2024-04-02T21:23:19Z #14 2.776 83600K .......... .......... .......... .......... .......... 65% 126M 1s +2024-04-02T21:23:19Z #14 2.776 83650K .......... .......... .......... .......... .......... 66% 136M 1s +2024-04-02T21:23:19Z #14 2.776 83700K .......... .......... .......... .......... .......... 66% 115M 1s +2024-04-02T21:23:19Z #14 2.776 83750K .......... .......... .......... .......... .......... 66% 113M 1s +2024-04-02T21:23:19Z #14 2.776 83800K .......... .......... .......... .......... .......... 66% 132M 1s +2024-04-02T21:23:19Z #14 2.776 83850K .......... .......... .......... .......... .......... 66% 121M 1s +2024-04-02T21:23:19Z #14 2.776 83900K .......... .......... .......... .......... .......... 66% 90.5M 1s +2024-04-02T21:23:19Z #14 2.776 83950K .......... .......... .......... .......... .......... 66% 128M 1s +2024-04-02T21:23:19Z #14 2.776 84000K .......... .......... .......... .......... .......... 66% 150M 1s +2024-04-02T21:23:19Z #14 2.776 84050K .......... .......... .......... .......... .......... 66% 115M 1s +2024-04-02T21:23:19Z #14 2.776 84100K .......... .......... .......... .......... .......... 66% 135M 1s +2024-04-02T21:23:19Z #14 2.776 84150K .......... .......... .......... .......... .......... 66% 181M 1s +2024-04-02T21:23:19Z #14 2.776 84200K .......... .......... .......... .......... .......... 66% 131M 1s +2024-04-02T21:23:19Z #14 2.776 84250K .......... .......... .......... .......... .......... 66% 153M 1s +2024-04-02T21:23:19Z #14 2.776 84300K .......... .......... .......... .......... .......... 66% 132M 1s +2024-04-02T21:23:19Z #14 2.776 84350K .......... .......... .......... .......... .......... 66% 163M 1s +2024-04-02T21:23:19Z #14 2.776 84400K .......... .......... .......... .......... .......... 66% 149M 1s +2024-04-02T21:23:19Z #14 2.776 84450K .......... .......... .......... .......... .......... 66% 154M 1s +2024-04-02T21:23:19Z #14 2.776 84500K .......... .......... .......... .......... .......... 66% 148M 1s +2024-04-02T21:23:19Z #14 2.776 84550K .......... .......... .......... .......... .......... 66% 157M 1s +2024-04-02T21:23:19Z #14 2.776 84600K .......... .......... .......... .......... .......... 66% 144M 1s +2024-04-02T21:23:19Z #14 2.776 84650K .......... .......... .......... .......... .......... 66% 178M 1s +2024-04-02T21:23:19Z #14 2.776 84700K .......... .......... .......... .......... .......... 66% 134M 1s +2024-04-02T21:23:19Z #14 2.776 84750K .......... .......... .......... .......... .......... 66% 144M 1s +2024-04-02T21:23:19Z #14 2.776 84800K .......... .......... .......... .......... .......... 66% 163M 1s +2024-04-02T21:23:19Z #14 2.776 84850K .......... .......... .......... .......... .......... 66% 145M 1s +2024-04-02T21:23:19Z #14 2.776 84900K .......... .......... .......... .......... .......... 67% 98.2M 1s +2024-04-02T21:23:19Z #14 2.779 84950K .......... .......... .......... .......... .......... 67% 128M 1s +2024-04-02T21:23:19Z #14 2.779 85000K .......... .......... .......... .......... .......... 67% 122M 1s +2024-04-02T21:23:19Z #14 2.779 85050K .......... .......... .......... .......... .......... 67% 117M 1s +2024-04-02T21:23:19Z #14 2.779 85100K .......... .......... .......... .......... .......... 67% 101M 1s +2024-04-02T21:23:19Z #14 2.779 85150K .......... .......... .......... .......... .......... 67% 128M 1s +2024-04-02T21:23:19Z #14 2.779 85200K .......... .......... .......... .......... .......... 67% 127M 1s +2024-04-02T21:23:19Z #14 2.779 85250K .......... .......... .......... .......... .......... 67% 129M 1s +2024-04-02T21:23:19Z #14 2.779 85300K .......... .......... .......... .......... .......... 67% 107M 1s +2024-04-02T21:23:19Z #14 2.779 85350K .......... .......... .......... .......... .......... 67% 104M 1s +2024-04-02T21:23:19Z #14 2.788 85400K .......... .......... .......... .......... .......... 67% 116M 1s +2024-04-02T21:23:19Z #14 2.788 85450K .......... .......... .......... .......... .......... 67% 126M 1s +2024-04-02T21:23:19Z #14 2.788 85500K .......... .......... .......... .......... .......... 67% 131M 1s +2024-04-02T21:23:19Z #14 2.788 85550K .......... .......... .......... .......... .......... 67% 105M 1s +2024-04-02T21:23:19Z #14 2.788 85600K .......... .......... .......... .......... .......... 67% 131M 1s +2024-04-02T21:23:19Z #14 2.788 85650K .......... .......... .......... .......... .......... 67% 122M 1s +2024-04-02T21:23:19Z #14 2.788 85700K .......... .......... .......... .......... .......... 67% 138M 1s +2024-04-02T21:23:19Z #14 2.788 85750K .......... .......... .......... .......... .......... 67% 129M 1s +2024-04-02T21:23:19Z #14 2.788 85800K .......... .......... .......... .......... .......... 67% 128M 1s +2024-04-02T21:23:19Z #14 2.788 85850K .......... .......... .......... .......... .......... 67% 84.3M 1s +2024-04-02T21:23:19Z #14 2.788 85900K .......... .......... .......... .......... .......... 67% 173M 1s +2024-04-02T21:23:19Z #14 2.788 85950K .......... .......... .......... .......... .......... 67% 174M 1s +2024-04-02T21:23:19Z #14 2.788 86000K .......... .......... .......... .......... .......... 67% 186M 1s +2024-04-02T21:23:19Z #14 2.788 86050K .......... .......... .......... .......... .......... 67% 153M 1s +2024-04-02T21:23:19Z #14 2.788 86100K .......... .......... .......... .......... .......... 67% 161M 1s +2024-04-02T21:23:19Z #14 2.788 86150K .......... .......... .......... .......... .......... 67% 171M 1s +2024-04-02T21:23:19Z #14 2.788 86200K .......... .......... .......... .......... .......... 68% 146M 1s +2024-04-02T21:23:19Z #14 2.788 86250K .......... .......... .......... .......... .......... 68% 171M 1s +2024-04-02T21:23:19Z #14 2.788 86300K .......... .......... .......... .......... .......... 68% 175M 1s +2024-04-02T21:23:19Z #14 2.788 86350K .......... .......... .......... .......... .......... 68% 166M 1s +2024-04-02T21:23:19Z #14 2.788 86400K .......... .......... .......... .......... .......... 68% 164M 1s +2024-04-02T21:23:19Z #14 2.788 86450K .......... .......... .......... .......... .......... 68% 177M 1s +2024-04-02T21:23:19Z #14 2.788 86500K .......... .......... .......... .......... .......... 68% 181M 1s +2024-04-02T21:23:19Z #14 2.790 86550K .......... .......... .......... .......... .......... 68% 90.9M 1s +2024-04-02T21:23:19Z #14 2.790 86600K .......... .......... .......... .......... .......... 68% 131M 1s +2024-04-02T21:23:19Z #14 2.790 86650K .......... .......... .......... .......... .......... 68% 107M 1s +2024-04-02T21:23:19Z #14 2.790 86700K .......... .......... .......... .......... .......... 68% 126M 1s +2024-04-02T21:23:19Z #14 2.790 86750K .......... .......... .......... .......... .......... 68% 119M 1s +2024-04-02T21:23:19Z #14 2.790 86800K .......... .......... .......... .......... .......... 68% 122M 1s +2024-04-02T21:23:20Z #14 2.790 86850K .......... .......... .......... .......... .......... 68% 361K 1s +2024-04-02T21:23:20Z #14 2.929 86900K .......... .......... .......... .......... .......... 68% 124M 1s +2024-04-02T21:23:20Z #14 2.929 86950K .......... .......... .......... .......... .......... 68% 122M 1s +2024-04-02T21:23:20Z #14 2.935 87000K .......... .......... .......... .......... .......... 68% 134M 1s +2024-04-02T21:23:20Z #14 2.935 87050K .......... .......... .......... .......... .......... 68% 113M 1s +2024-04-02T21:23:20Z #14 2.935 87100K .......... .......... .......... .......... .......... 68% 150M 1s +2024-04-02T21:23:20Z #14 2.935 87150K .......... .......... .......... .......... .......... 68% 149M 1s +2024-04-02T21:23:20Z #14 2.935 87200K .......... .......... .......... .......... .......... 68% 171M 1s +2024-04-02T21:23:20Z #14 2.935 87250K .......... .......... .......... .......... .......... 68% 123M 1s +2024-04-02T21:23:20Z #14 2.935 87300K .......... .......... .......... .......... .......... 68% 159M 1s +2024-04-02T21:23:20Z #14 2.935 87350K .......... .......... .......... .......... .......... 68% 150M 1s +2024-04-02T21:23:20Z #14 2.935 87400K .......... .......... .......... .......... .......... 68% 155M 1s +2024-04-02T21:23:20Z #14 2.935 87450K .......... .......... .......... .......... .......... 69% 164M 1s +2024-04-02T21:23:20Z #14 2.935 87500K .......... .......... .......... .......... .......... 69% 138M 1s +2024-04-02T21:23:20Z #14 2.935 87550K .......... .......... .......... .......... .......... 69% 119M 1s +2024-04-02T21:23:20Z #14 2.935 87600K .......... .......... .......... .......... .......... 69% 141M 1s +2024-04-02T21:23:20Z #14 2.935 87650K .......... .......... .......... .......... .......... 69% 124M 1s +2024-04-02T21:23:20Z #14 2.935 87700K .......... .......... .......... .......... .......... 69% 125M 1s +2024-04-02T21:23:20Z #14 2.935 87750K .......... .......... .......... .......... .......... 69% 143M 1s +2024-04-02T21:23:20Z #14 2.935 87800K .......... .......... .......... .......... .......... 69% 129M 1s +2024-04-02T21:23:20Z #14 2.935 87850K .......... .......... .......... .......... .......... 69% 30.0M 1s +2024-04-02T21:23:20Z #14 2.937 87900K .......... .......... .......... .......... .......... 69% 15.4M 1s +2024-04-02T21:23:20Z #14 2.943 87950K .......... .......... .......... .......... .......... 69% 28.5M 1s +2024-04-02T21:23:20Z #14 2.943 88000K .......... .......... .......... .......... .......... 69% 18.8M 1s +2024-04-02T21:23:20Z #14 2.946 88050K .......... .......... .......... .......... .......... 69% 158M 1s +2024-04-02T21:23:20Z #14 2.946 88100K .......... .......... .......... .......... .......... 69% 109M 1s +2024-04-02T21:23:20Z #14 2.946 88150K .......... .......... .......... .......... .......... 69% 30.4M 1s +2024-04-02T21:23:20Z #14 2.946 88200K .......... .......... .......... .......... .......... 69% 73.0M 1s +2024-04-02T21:23:20Z #14 2.948 88250K .......... .......... .......... .......... .......... 69% 75.1M 1s +2024-04-02T21:23:20Z #14 2.951 88300K .......... .......... .......... .......... .......... 69% 24.9M 1s +2024-04-02T21:23:20Z #14 2.951 88350K .......... .......... .......... .......... .......... 69% 127M 1s +2024-04-02T21:23:20Z #14 2.951 88400K .......... .......... .......... .......... .......... 69% 143M 1s +2024-04-02T21:23:20Z #14 2.951 88450K .......... .......... .......... .......... .......... 69% 24.6M 1s +2024-04-02T21:23:20Z #14 2.952 88500K .......... .......... .......... .......... .......... 69% 122M 1s +2024-04-02T21:23:20Z #14 2.954 88550K .......... .......... .......... .......... .......... 69% 178M 1s +2024-04-02T21:23:20Z #14 2.954 88600K .......... .......... .......... .......... .......... 69% 135M 1s +2024-04-02T21:23:20Z #14 2.954 88650K .......... .......... .......... .......... .......... 69% 135M 1s +2024-04-02T21:23:20Z #14 2.955 88700K .......... .......... .......... .......... .......... 70% 163M 1s +2024-04-02T21:23:20Z #14 2.955 88750K .......... .......... .......... .......... .......... 70% 131M 1s +2024-04-02T21:23:20Z #14 2.955 88800K .......... .......... .......... .......... .......... 70% 117M 1s +2024-04-02T21:23:20Z #14 2.955 88850K .......... .......... .......... .......... .......... 70% 137M 1s +2024-04-02T21:23:20Z #14 2.955 88900K .......... .......... .......... .......... .......... 70% 128M 1s +2024-04-02T21:23:20Z #14 2.956 88950K .......... .......... .......... .......... .......... 70% 141M 1s +2024-04-02T21:23:20Z #14 2.956 89000K .......... .......... .......... .......... .......... 70% 129M 1s +2024-04-02T21:23:20Z #14 2.956 89050K .......... .......... .......... .......... .......... 70% 128M 1s +2024-04-02T21:23:20Z #14 2.957 89100K .......... .......... .......... .......... .......... 70% 151M 1s +2024-04-02T21:23:20Z #14 2.957 89150K .......... .......... .......... .......... .......... 70% 136M 1s +2024-04-02T21:23:20Z #14 2.957 89200K .......... .......... .......... .......... .......... 70% 98.3M 1s +2024-04-02T21:23:20Z #14 2.958 89250K .......... .......... .......... .......... .......... 70% 161M 1s +2024-04-02T21:23:20Z #14 2.958 89300K .......... .......... .......... .......... .......... 70% 139M 1s +2024-04-02T21:23:20Z #14 2.959 89350K .......... .......... .......... .......... .......... 70% 139M 1s +2024-04-02T21:23:20Z #14 2.959 89400K .......... .......... .......... .......... .......... 70% 117M 1s +2024-04-02T21:23:20Z #14 2.959 89450K .......... .......... .......... .......... .......... 70% 121M 1s +2024-04-02T21:23:20Z #14 2.960 89500K .......... .......... .......... .......... .......... 70% 136M 1s +2024-04-02T21:23:20Z #14 2.960 89550K .......... .......... .......... .......... .......... 70% 109M 1s +2024-04-02T21:23:20Z #14 2.960 89600K .......... .......... .......... .......... .......... 70% 141M 1s +2024-04-02T21:23:20Z #14 2.961 89650K .......... .......... .......... .......... .......... 70% 114M 1s +2024-04-02T21:23:20Z #14 2.963 89700K .......... .......... .......... .......... .......... 70% 139M 1s +2024-04-02T21:23:20Z #14 2.963 89750K .......... .......... .......... .......... .......... 70% 150M 1s +2024-04-02T21:23:20Z #14 2.963 89800K .......... .......... .......... .......... .......... 70% 125M 1s +2024-04-02T21:23:20Z #14 2.963 89850K .......... .......... .......... .......... .......... 70% 150M 1s +2024-04-02T21:23:20Z #14 2.963 89900K .......... .......... .......... .......... .......... 70% 87.9M 1s +2024-04-02T21:23:20Z #14 2.966 89950K .......... .......... .......... .......... .......... 70% 95.8M 1s +2024-04-02T21:23:20Z #14 2.966 90000K .......... .......... .......... .......... .......... 71% 154M 1s +2024-04-02T21:23:20Z #14 2.966 90050K .......... .......... .......... .......... .......... 71% 151M 1s +2024-04-02T21:23:20Z #14 2.966 90100K .......... .......... .......... .......... .......... 71% 128M 1s +2024-04-02T21:23:20Z #14 2.966 90150K .......... .......... .......... .......... .......... 71% 123M 1s +2024-04-02T21:23:20Z #14 2.966 90200K .......... .......... .......... .......... .......... 71% 124M 1s +2024-04-02T21:23:20Z #14 2.966 90250K .......... .......... .......... .......... .......... 71% 146M 1s +2024-04-02T21:23:20Z #14 2.966 90300K .......... .......... .......... .......... .......... 71% 102M 1s +2024-04-02T21:23:20Z #14 2.971 90350K .......... .......... .......... .......... .......... 71% 160M 1s +2024-04-02T21:23:20Z #14 2.971 90400K .......... .......... .......... .......... .......... 71% 109M 1s +2024-04-02T21:23:20Z #14 2.971 90450K .......... .......... .......... .......... .......... 71% 156M 1s +2024-04-02T21:23:20Z #14 2.971 90500K .......... .......... .......... .......... .......... 71% 141M 1s +2024-04-02T21:23:20Z #14 2.971 90550K .......... .......... .......... .......... .......... 71% 127M 1s +2024-04-02T21:23:20Z #14 2.971 90600K .......... .......... .......... .......... .......... 71% 137M 1s +2024-04-02T21:23:20Z #14 2.971 90650K .......... .......... .......... .......... .......... 71% 119M 1s +2024-04-02T21:23:20Z #14 2.971 90700K .......... .......... .......... .......... .......... 71% 124M 1s +2024-04-02T21:23:20Z #14 2.971 90750K .......... .......... .......... .......... .......... 71% 142M 1s +2024-04-02T21:23:20Z #14 2.971 90800K .......... .......... .......... .......... .......... 71% 128M 1s +2024-04-02T21:23:20Z #14 2.971 90850K .......... .......... .......... .......... .......... 71% 143M 1s +2024-04-02T21:23:20Z #14 2.971 90900K .......... .......... .......... .......... .......... 71% 129M 1s +2024-04-02T21:23:20Z #14 2.971 90950K .......... .......... .......... .......... .......... 71% 66.0M 1s +2024-04-02T21:23:20Z #14 2.975 91000K .......... .......... .......... .......... .......... 71% 140M 1s +2024-04-02T21:23:20Z #14 2.975 91050K .......... .......... .......... .......... .......... 71% 151M 1s +2024-04-02T21:23:20Z #14 2.975 91100K .......... .......... .......... .......... .......... 71% 122M 1s +2024-04-02T21:23:20Z #14 2.975 91150K .......... .......... .......... .......... .......... 71% 149M 1s +2024-04-02T21:23:20Z #14 2.975 91200K .......... .......... .......... .......... .......... 71% 113M 1s +2024-04-02T21:23:20Z #14 2.975 91250K .......... .......... .......... .......... .......... 72% 136M 1s +2024-04-02T21:23:20Z #14 2.975 91300K .......... .......... .......... .......... .......... 72% 136M 1s +2024-04-02T21:23:20Z #14 2.975 91350K .......... .......... .......... .......... .......... 72% 142M 1s +2024-04-02T21:23:20Z #14 2.975 91400K .......... .......... .......... .......... .......... 72% 115M 1s +2024-04-02T21:23:20Z #14 2.975 91450K .......... .......... .......... .......... .......... 72% 59.7M 1s +2024-04-02T21:23:20Z #14 2.979 91500K .......... .......... .......... .......... .......... 72% 154M 1s +2024-04-02T21:23:20Z #14 2.979 91550K .......... .......... .......... .......... .......... 72% 139M 1s +2024-04-02T21:23:20Z #14 2.979 91600K .......... .......... .......... .......... .......... 72% 133M 1s +2024-04-02T21:23:20Z #14 2.979 91650K .......... .......... .......... .......... .......... 72% 149M 1s +2024-04-02T21:23:20Z #14 2.979 91700K .......... .......... .......... .......... .......... 72% 110M 1s +2024-04-02T21:23:20Z #14 2.979 91750K .......... .......... .......... .......... .......... 72% 139M 1s +2024-04-02T21:23:20Z #14 2.979 91800K .......... .......... .......... .......... .......... 72% 145M 1s +2024-04-02T21:23:20Z #14 2.979 91850K .......... .......... .......... .......... .......... 72% 115M 1s +2024-04-02T21:23:20Z #14 2.979 91900K .......... .......... .......... .......... .......... 72% 141M 1s +2024-04-02T21:23:20Z #14 2.979 91950K .......... .......... .......... .......... .......... 72% 92.2M 1s +2024-04-02T21:23:20Z #14 2.983 92000K .......... .......... .......... .......... .......... 72% 133M 1s +2024-04-02T21:23:20Z #14 2.983 92050K .......... .......... .......... .......... .......... 72% 132M 1s +2024-04-02T21:23:20Z #14 2.983 92100K .......... .......... .......... .......... .......... 72% 137M 1s +2024-04-02T21:23:20Z #14 2.983 92150K .......... .......... .......... .......... .......... 72% 148M 1s +2024-04-02T21:23:20Z #14 2.983 92200K .......... .......... .......... .......... .......... 72% 112M 1s +2024-04-02T21:23:20Z #14 2.983 92250K .......... .......... .......... .......... .......... 72% 140M 1s +2024-04-02T21:23:20Z #14 2.983 92300K .......... .......... .......... .......... .......... 72% 135M 1s +2024-04-02T21:23:20Z #14 2.983 92350K .......... .......... .......... .......... .......... 72% 123M 1s +2024-04-02T21:23:20Z #14 2.983 92400K .......... .......... .......... .......... .......... 72% 140M 1s +2024-04-02T21:23:20Z #14 2.983 92450K .......... .......... .......... .......... .......... 72% 70.7M 1s +2024-04-02T21:23:20Z #14 2.987 92500K .......... .......... .......... .......... .......... 72% 153M 1s +2024-04-02T21:23:20Z #14 2.987 92550K .......... .......... .......... .......... .......... 73% 150M 1s +2024-04-02T21:23:20Z #14 2.987 92600K .......... .......... .......... .......... .......... 73% 135M 1s +2024-04-02T21:23:20Z #14 2.987 92650K .......... .......... .......... .......... .......... 73% 128M 1s +2024-04-02T21:23:20Z #14 2.987 92700K .......... .......... .......... .......... .......... 73% 120M 1s +2024-04-02T21:23:20Z #14 2.987 92750K .......... .......... .......... .......... .......... 73% 153M 1s +2024-04-02T21:23:20Z #14 2.987 92800K .......... .......... .......... .......... .......... 73% 101M 1s +2024-04-02T21:23:20Z #14 2.987 92850K .......... .......... .......... .......... .......... 73% 121M 1s +2024-04-02T21:23:20Z #14 2.987 92900K .......... .......... .......... .......... .......... 73% 129M 1s +2024-04-02T21:23:20Z #14 2.987 92950K .......... .......... .......... .......... .......... 73% 54.0M 1s +2024-04-02T21:23:20Z #14 2.988 93000K .......... .......... .......... .......... .......... 73% 40.2M 1s +2024-04-02T21:23:20Z #14 2.989 93050K .......... .......... .......... .......... .......... 73% 29.3M 1s +2024-04-02T21:23:20Z #14 2.995 93100K .......... .......... .......... .......... .......... 73% 116M 1s +2024-04-02T21:23:20Z #14 2.995 93150K .......... .......... .......... .......... .......... 73% 172M 1s +2024-04-02T21:23:20Z #14 2.995 93200K .......... .......... .......... .......... .......... 73% 146M 1s +2024-04-02T21:23:20Z #14 2.995 93250K .......... .......... .......... .......... .......... 73% 187M 1s +2024-04-02T21:23:20Z #14 2.995 93300K .......... .......... .......... .......... .......... 73% 150M 1s +2024-04-02T21:23:20Z #14 2.995 93350K .......... .......... .......... .......... .......... 73% 142M 1s +2024-04-02T21:23:20Z #14 2.995 93400K .......... .......... .......... .......... .......... 73% 169M 1s +2024-04-02T21:23:20Z #14 2.995 93450K .......... .......... .......... .......... .......... 73% 132M 1s +2024-04-02T21:23:20Z #14 2.995 93500K .......... .......... .......... .......... .......... 73% 153M 1s +2024-04-02T21:23:20Z #14 2.995 93550K .......... .......... .......... .......... .......... 73% 181M 1s +2024-04-02T21:23:20Z #14 2.995 93600K .......... .......... .......... .......... .......... 73% 179M 1s +2024-04-02T21:23:20Z #14 2.995 93650K .......... .......... .......... .......... .......... 73% 169M 1s +2024-04-02T21:23:20Z #14 2.995 93700K .......... .......... .......... .......... .......... 73% 174M 1s +2024-04-02T21:23:20Z #14 2.995 93750K .......... .......... .......... .......... .......... 73% 82.2M 1s +2024-04-02T21:23:20Z #14 2.997 93800K .......... .......... .......... .......... .......... 74% 17.7M 1s +2024-04-02T21:23:20Z #14 2.998 93850K .......... .......... .......... .......... .......... 74% 30.5M 1s +2024-04-02T21:23:20Z #14 3.003 93900K .......... .......... .......... .......... .......... 74% 152M 1s +2024-04-02T21:23:20Z #14 3.003 93950K .......... .......... .......... .......... .......... 74% 153M 1s +2024-04-02T21:23:20Z #14 3.003 94000K .......... .......... .......... .......... .......... 74% 141M 1s +2024-04-02T21:23:20Z #14 3.003 94050K .......... .......... .......... .......... .......... 74% 154M 1s +2024-04-02T21:23:20Z #14 3.003 94100K .......... .......... .......... .......... .......... 74% 126M 1s +2024-04-02T21:23:20Z #14 3.003 94150K .......... .......... .......... .......... .......... 74% 27.5M 1s +2024-04-02T21:23:20Z #14 3.007 94200K .......... .......... .......... .......... .......... 74% 116M 1s +2024-04-02T21:23:20Z #14 3.007 94250K .......... .......... .......... .......... .......... 74% 184M 1s +2024-04-02T21:23:20Z #14 3.007 94300K .......... .......... .......... .......... .......... 74% 175M 1s +2024-04-02T21:23:20Z #14 3.007 94350K .......... .......... .......... .......... .......... 74% 111M 1s +2024-04-02T21:23:20Z #14 3.007 94400K .......... .......... .......... .......... .......... 74% 138M 1s +2024-04-02T21:23:20Z #14 3.007 94450K .......... .......... .......... .......... .......... 74% 128M 1s +2024-04-02T21:23:20Z #14 3.007 94500K .......... .......... .......... .......... .......... 74% 171M 1s +2024-04-02T21:23:20Z #14 3.007 94550K .......... .......... .......... .......... .......... 74% 181M 1s +2024-04-02T21:23:20Z #14 3.007 94600K .......... .......... .......... .......... .......... 74% 120M 1s +2024-04-02T21:23:20Z #14 3.007 94650K .......... .......... .......... .......... .......... 74% 135M 1s +2024-04-02T21:23:20Z #14 3.007 94700K .......... .......... .......... .......... .......... 74% 119M 1s +2024-04-02T21:23:20Z #14 3.010 94750K .......... .......... .......... .......... .......... 74% 112M 1s +2024-04-02T21:23:20Z #14 3.010 94800K .......... .......... .......... .......... .......... 74% 129M 1s +2024-04-02T21:23:20Z #14 3.010 94850K .......... .......... .......... .......... .......... 74% 28.8M 1s +2024-04-02T21:23:20Z #14 3.010 94900K .......... .......... .......... .......... .......... 74% 88.3M 1s +2024-04-02T21:23:20Z #14 3.016 94950K .......... .......... .......... .......... .......... 74% 170M 1s +2024-04-02T21:23:20Z #14 3.016 95000K .......... .......... .......... .......... .......... 74% 152M 1s +2024-04-02T21:23:20Z #14 3.016 95050K .......... .......... .......... .......... .......... 75% 134M 1s +2024-04-02T21:23:20Z #14 3.016 95100K .......... .......... .......... .......... .......... 75% 136M 1s +2024-04-02T21:23:20Z #14 3.016 95150K .......... .......... .......... .......... .......... 75% 30.5M 1s +2024-04-02T21:23:20Z #14 3.016 95200K .......... .......... .......... .......... .......... 75% 156M 1s +2024-04-02T21:23:20Z #14 3.016 95250K .......... .......... .......... .......... .......... 75% 124M 1s +2024-04-02T21:23:20Z #14 3.016 95300K .......... .......... .......... .......... .......... 75% 149M 1s +2024-04-02T21:23:20Z #14 3.016 95350K .......... .......... .......... .......... .......... 75% 133M 1s +2024-04-02T21:23:20Z #14 3.016 95400K .......... .......... .......... .......... .......... 75% 26.5M 1s +2024-04-02T21:23:20Z #14 3.016 95450K .......... .......... .......... .......... .......... 75% 101M 1s +2024-04-02T21:23:20Z #14 3.019 95500K .......... .......... .......... .......... .......... 75% 151M 1s +2024-04-02T21:23:20Z #14 3.019 95550K .......... .......... .......... .......... .......... 75% 117M 1s +2024-04-02T21:23:20Z #14 3.019 95600K .......... .......... .......... .......... .......... 75% 142M 1s +2024-04-02T21:23:20Z #14 3.019 95650K .......... .......... .......... .......... .......... 75% 141M 1s +2024-04-02T21:23:20Z #14 3.019 95700K .......... .......... .......... .......... .......... 75% 100M 1s +2024-04-02T21:23:20Z #14 3.019 95750K .......... .......... .......... .......... .......... 75% 91.4M 1s +2024-04-02T21:23:20Z #14 3.023 95800K .......... .......... .......... .......... .......... 75% 128M 1s +2024-04-02T21:23:20Z #14 3.023 95850K .......... .......... .......... .......... .......... 75% 137M 1s +2024-04-02T21:23:20Z #14 3.023 95900K .......... .......... .......... .......... .......... 75% 118M 1s +2024-04-02T21:23:20Z #14 3.023 95950K .......... .......... .......... .......... .......... 75% 131M 1s +2024-04-02T21:23:20Z #14 3.023 96000K .......... .......... .......... .......... .......... 75% 121M 1s +2024-04-02T21:23:20Z #14 3.023 96050K .......... .......... .......... .......... .......... 75% 121M 1s +2024-04-02T21:23:20Z #14 3.023 96100K .......... .......... .......... .......... .......... 75% 121M 1s +2024-04-02T21:23:20Z #14 3.023 96150K .......... .......... .......... .......... .......... 75% 152M 1s +2024-04-02T21:23:20Z #14 3.023 96200K .......... .......... .......... .......... .......... 75% 121M 1s +2024-04-02T21:23:20Z #14 3.023 96250K .......... .......... .......... .......... .......... 75% 59.6M 1s +2024-04-02T21:23:20Z #14 3.027 96300K .......... .......... .......... .......... .......... 75% 112M 1s +2024-04-02T21:23:20Z #14 3.027 96350K .......... .......... .......... .......... .......... 76% 149M 1s +2024-04-02T21:23:20Z #14 3.027 96400K .......... .......... .......... .......... .......... 76% 131M 1s +2024-04-02T21:23:20Z #14 3.027 96450K .......... .......... .......... .......... .......... 76% 128M 1s +2024-04-02T21:23:20Z #14 3.027 96500K .......... .......... .......... .......... .......... 76% 124M 1s +2024-04-02T21:23:20Z #14 3.027 96550K .......... .......... .......... .......... .......... 76% 109M 1s +2024-04-02T21:23:20Z #14 3.027 96600K .......... .......... .......... .......... .......... 76% 142M 1s +2024-04-02T21:23:20Z #14 3.027 96650K .......... .......... .......... .......... .......... 76% 131M 1s +2024-04-02T21:23:20Z #14 3.027 96700K .......... .......... .......... .......... .......... 76% 116M 1s +2024-04-02T21:23:20Z #14 3.031 96750K .......... .......... .......... .......... .......... 76% 108M 1s +2024-04-02T21:23:20Z #14 3.031 96800K .......... .......... .......... .......... .......... 76% 130M 1s +2024-04-02T21:23:20Z #14 3.031 96850K .......... .......... .......... .......... .......... 76% 127M 1s +2024-04-02T21:23:20Z #14 3.031 96900K .......... .......... .......... .......... .......... 76% 127M 1s +2024-04-02T21:23:20Z #14 3.031 96950K .......... .......... .......... .......... .......... 76% 126M 1s +2024-04-02T21:23:20Z #14 3.031 97000K .......... .......... .......... .......... .......... 76% 111M 1s +2024-04-02T21:23:20Z #14 3.031 97050K .......... .......... .......... .......... .......... 76% 120M 1s +2024-04-02T21:23:20Z #14 3.031 97100K .......... .......... .......... .......... .......... 76% 124M 1s +2024-04-02T21:23:20Z #14 3.031 97150K .......... .......... .......... .......... .......... 76% 145M 1s +2024-04-02T21:23:20Z #14 3.031 97200K .......... .......... .......... .......... .......... 76% 118M 1s +2024-04-02T21:23:20Z #14 3.035 97250K .......... .......... .......... .......... .......... 76% 108M 1s +2024-04-02T21:23:20Z #14 3.035 97300K .......... .......... .......... .......... .......... 76% 107M 1s +2024-04-02T21:23:20Z #14 3.035 97350K .......... .......... .......... .......... .......... 76% 125M 1s +2024-04-02T21:23:20Z #14 3.035 97400K .......... .......... .......... .......... .......... 76% 109M 0s +2024-04-02T21:23:20Z #14 3.035 97450K .......... .......... .......... .......... .......... 76% 143M 0s +2024-04-02T21:23:20Z #14 3.035 97500K .......... .......... .......... .......... .......... 76% 132M 0s +2024-04-02T21:23:20Z #14 3.035 97550K .......... .......... .......... .......... .......... 76% 110M 0s +2024-04-02T21:23:20Z #14 3.035 97600K .......... .......... .......... .......... .......... 77% 114M 0s +2024-04-02T21:23:20Z #14 3.035 97650K .......... .......... .......... .......... .......... 77% 133M 0s +2024-04-02T21:23:20Z #14 3.035 97700K .......... .......... .......... .......... .......... 77% 122M 0s +2024-04-02T21:23:20Z #14 3.039 97750K .......... .......... .......... .......... .......... 77% 127M 0s +2024-04-02T21:23:20Z #14 3.039 97800K .......... .......... .......... .......... .......... 77% 118M 0s +2024-04-02T21:23:20Z #14 3.039 97850K .......... .......... .......... .......... .......... 77% 131M 0s +2024-04-02T21:23:20Z #14 3.039 97900K .......... .......... .......... .......... .......... 77% 102M 0s +2024-04-02T21:23:20Z #14 3.039 97950K .......... .......... .......... .......... .......... 77% 129M 0s +2024-04-02T21:23:20Z #14 3.039 98000K .......... .......... .......... .......... .......... 77% 128M 0s +2024-04-02T21:23:20Z #14 3.039 98050K .......... .......... .......... .......... .......... 77% 144M 0s +2024-04-02T21:23:20Z #14 3.039 98100K .......... .......... .......... .......... .......... 77% 119M 0s +2024-04-02T21:23:20Z #14 3.039 98150K .......... .......... .......... .......... .......... 77% 136M 0s +2024-04-02T21:23:20Z #14 3.039 98200K .......... .......... .......... .......... .......... 77% 98.3M 0s +2024-04-02T21:23:20Z #14 3.043 98250K .......... .......... .......... .......... .......... 77% 132M 0s +2024-04-02T21:23:20Z #14 3.043 98300K .......... .......... .......... .......... .......... 77% 132M 0s +2024-04-02T21:23:20Z #14 3.043 98350K .......... .......... .......... .......... .......... 77% 108M 0s +2024-04-02T21:23:20Z #14 3.043 98400K .......... .......... .......... .......... .......... 77% 112M 0s +2024-04-02T21:23:20Z #14 3.043 98450K .......... .......... .......... .......... .......... 77% 141M 0s +2024-04-02T21:23:20Z #14 3.043 98500K .......... .......... .......... .......... .......... 77% 117M 0s +2024-04-02T21:23:20Z #14 3.043 98550K .......... .......... .......... .......... .......... 77% 120M 0s +2024-04-02T21:23:20Z #14 3.043 98600K .......... .......... .......... .......... .......... 77% 118M 0s +2024-04-02T21:23:20Z #14 3.043 98650K .......... .......... .......... .......... .......... 77% 138M 0s +2024-04-02T21:23:20Z #14 3.043 98700K .......... .......... .......... .......... .......... 77% 103M 0s +2024-04-02T21:23:20Z #14 3.047 98750K .......... .......... .......... .......... .......... 77% 133M 0s +2024-04-02T21:23:20Z #14 3.047 98800K .......... .......... .......... .......... .......... 77% 124M 0s +2024-04-02T21:23:20Z #14 3.047 98850K .......... .......... .......... .......... .......... 78% 113M 0s +2024-04-02T21:23:20Z #14 3.047 98900K .......... .......... .......... .......... .......... 78% 149M 0s +2024-04-02T21:23:20Z #14 3.047 98950K .......... .......... .......... .......... .......... 78% 124M 0s +2024-04-02T21:23:20Z #14 3.047 99000K .......... .......... .......... .......... .......... 78% 129M 0s +2024-04-02T21:23:20Z #14 3.047 99050K .......... .......... .......... .......... .......... 78% 111M 0s +2024-04-02T21:23:20Z #14 3.047 99100K .......... .......... .......... .......... .......... 78% 147M 0s +2024-04-02T21:23:20Z #14 3.047 99150K .......... .......... .......... .......... .......... 78% 151M 0s +2024-04-02T21:23:20Z #14 3.047 99200K .......... .......... .......... .......... .......... 78% 151M 0s +2024-04-02T21:23:20Z #14 3.047 99250K .......... .......... .......... .......... .......... 78% 26.8M 0s +2024-04-02T21:23:20Z #14 3.051 99300K .......... .......... .......... .......... .......... 78% 130M 0s +2024-04-02T21:23:20Z #14 3.051 99350K .......... .......... .......... .......... .......... 78% 160M 0s +2024-04-02T21:23:20Z #14 3.051 99400K .......... .......... .......... .......... .......... 78% 143M 0s +2024-04-02T21:23:20Z #14 3.051 99450K .......... .......... .......... .......... .......... 78% 160M 0s +2024-04-02T21:23:20Z #14 3.051 99500K .......... .......... .......... .......... .......... 78% 153M 0s +2024-04-02T21:23:20Z #14 3.051 99550K .......... .......... .......... .......... .......... 78% 151M 0s +2024-04-02T21:23:20Z #14 3.051 99600K .......... .......... .......... .......... .......... 78% 154M 0s +2024-04-02T21:23:20Z #14 3.051 99650K .......... .......... .......... .......... .......... 78% 77.7M 0s +2024-04-02T21:23:20Z #14 3.055 99700K .......... .......... .......... .......... .......... 78% 123M 0s +2024-04-02T21:23:20Z #14 3.055 99750K .......... .......... .......... .......... .......... 78% 158M 0s +2024-04-02T21:23:20Z #14 3.055 99800K .......... .......... .......... .......... .......... 78% 137M 0s +2024-04-02T21:23:20Z #14 3.055 99850K .......... .......... .......... .......... .......... 78% 114M 0s +2024-04-02T21:23:20Z #14 3.055 99900K .......... .......... .......... .......... .......... 78% 147M 0s +2024-04-02T21:23:20Z #14 3.055 99950K .......... .......... .......... .......... .......... 78% 129M 0s +2024-04-02T21:23:20Z #14 3.055 100000K .......... .......... .......... .......... .......... 78% 129M 0s +2024-04-02T21:23:20Z #14 3.055 100050K .......... .......... .......... .......... .......... 78% 105M 0s +2024-04-02T21:23:20Z #14 3.055 100100K .......... .......... .......... .......... .......... 78% 66.8M 0s +2024-04-02T21:23:20Z #14 3.055 100150K .......... .......... .......... .......... .......... 79% 32.6M 0s +2024-04-02T21:23:20Z #14 3.057 100200K .......... .......... .......... .......... .......... 79% 56.1M 0s +2024-04-02T21:23:20Z #14 3.063 100250K .......... .......... .......... .......... .......... 79% 152M 0s +2024-04-02T21:23:20Z #14 3.063 100300K .......... .......... .......... .......... .......... 79% 154M 0s +2024-04-02T21:23:20Z #14 3.063 100350K .......... .......... .......... .......... .......... 79% 173M 0s +2024-04-02T21:23:20Z #14 3.063 100400K .......... .......... .......... .......... .......... 79% 155M 0s +2024-04-02T21:23:20Z #14 3.063 100450K .......... .......... .......... .......... .......... 79% 113M 0s +2024-04-02T21:23:20Z #14 3.063 100500K .......... .......... .......... .......... .......... 79% 145M 0s +2024-04-02T21:23:20Z #14 3.063 100550K .......... .......... .......... .......... .......... 79% 158M 0s +2024-04-02T21:23:20Z #14 3.063 100600K .......... .......... .......... .......... .......... 79% 172M 0s +2024-04-02T21:23:20Z #14 3.063 100650K .......... .......... .......... .......... .......... 79% 124M 0s +2024-04-02T21:23:20Z #14 3.063 100700K .......... .......... .......... .......... .......... 79% 191M 0s +2024-04-02T21:23:20Z #14 3.063 100750K .......... .......... .......... .......... .......... 79% 113M 0s +2024-04-02T21:23:20Z #14 3.063 100800K .......... .......... .......... .......... .......... 79% 171M 0s +2024-04-02T21:23:20Z #14 3.063 100850K .......... .......... .......... .......... .......... 79% 138M 0s +2024-04-02T21:23:20Z #14 3.063 100900K .......... .......... .......... .......... .......... 79% 156M 0s +2024-04-02T21:23:20Z #14 3.063 100950K .......... .......... .......... .......... .......... 79% 141M 0s +2024-04-02T21:23:20Z #14 3.063 101000K .......... .......... .......... .......... .......... 79% 170M 0s +2024-04-02T21:23:20Z #14 3.063 101050K .......... .......... .......... .......... .......... 79% 61.9M 0s +2024-04-02T21:23:20Z #14 3.064 101100K .......... .......... .......... .......... .......... 79% 118M 0s +2024-04-02T21:23:20Z #14 3.064 101150K .......... .......... .......... .......... .......... 79% 29.5M 0s +2024-04-02T21:23:20Z #14 3.067 101200K .......... .......... .......... .......... .......... 79% 108M 0s +2024-04-02T21:23:20Z #14 3.067 101250K .......... .......... .......... .......... .......... 79% 114M 0s +2024-04-02T21:23:20Z #14 3.067 101300K .......... .......... .......... .......... .......... 79% 99.4M 0s +2024-04-02T21:23:20Z #14 3.071 101350K .......... .......... .......... .......... .......... 79% 126M 0s +2024-04-02T21:23:20Z #14 3.071 101400K .......... .......... .......... .......... .......... 80% 127M 0s +2024-04-02T21:23:20Z #14 3.071 101450K .......... .......... .......... .......... .......... 80% 106M 0s +2024-04-02T21:23:20Z #14 3.071 101500K .......... .......... .......... .......... .......... 80% 116M 0s +2024-04-02T21:23:20Z #14 3.071 101550K .......... .......... .......... .......... .......... 80% 123M 0s +2024-04-02T21:23:20Z #14 3.071 101600K .......... .......... .......... .......... .......... 80% 102M 0s +2024-04-02T21:23:20Z #14 3.071 101650K .......... .......... .......... .......... .......... 80% 133M 0s +2024-04-02T21:23:20Z #14 3.071 101700K .......... .......... .......... .......... .......... 80% 173M 0s +2024-04-02T21:23:20Z #14 3.071 101750K .......... .......... .......... .......... .......... 80% 114M 0s +2024-04-02T21:23:20Z #14 3.071 101800K .......... .......... .......... .......... .......... 80% 58.0M 0s +2024-04-02T21:23:20Z #14 3.075 101850K .......... .......... .......... .......... .......... 80% 112M 0s +2024-04-02T21:23:20Z #14 3.075 101900K .......... .......... .......... .......... .......... 80% 105M 0s +2024-04-02T21:23:20Z #14 3.075 101950K .......... .......... .......... .......... .......... 80% 134M 0s +2024-04-02T21:23:20Z #14 3.075 102000K .......... .......... .......... .......... .......... 80% 121M 0s +2024-04-02T21:23:20Z #14 3.075 102050K .......... .......... .......... .......... .......... 80% 137M 0s +2024-04-02T21:23:20Z #14 3.075 102100K .......... .......... .......... .......... .......... 80% 115M 0s +2024-04-02T21:23:20Z #14 3.075 102150K .......... .......... .......... .......... .......... 80% 117M 0s +2024-04-02T21:23:20Z #14 3.075 102200K .......... .......... .......... .......... .......... 80% 124M 0s +2024-04-02T21:23:20Z #14 3.075 102250K .......... .......... .......... .......... .......... 80% 53.7M 0s +2024-04-02T21:23:20Z #14 3.079 102300K .......... .......... .......... .......... .......... 80% 111M 0s +2024-04-02T21:23:20Z #14 3.079 102350K .......... .......... .......... .......... .......... 80% 128M 0s +2024-04-02T21:23:20Z #14 3.079 102400K .......... .......... .......... .......... .......... 80% 118M 0s +2024-04-02T21:23:20Z #14 3.079 102450K .......... .......... .......... .......... .......... 80% 129M 0s +2024-04-02T21:23:20Z #14 3.079 102500K .......... .......... .......... .......... .......... 80% 124M 0s +2024-04-02T21:23:20Z #14 3.079 102550K .......... .......... .......... .......... .......... 80% 114M 0s +2024-04-02T21:23:20Z #14 3.079 102600K .......... .......... .......... .......... .......... 80% 123M 0s +2024-04-02T21:23:20Z #14 3.079 102650K .......... .......... .......... .......... .......... 81% 36.0M 0s +2024-04-02T21:23:20Z #14 3.080 102700K .......... .......... .......... .......... .......... 81% 58.6M 0s +2024-04-02T21:23:20Z #14 3.083 102750K .......... .......... .......... .......... .......... 81% 117M 0s +2024-04-02T21:23:20Z #14 3.083 102800K .......... .......... .......... .......... .......... 81% 118M 0s +2024-04-02T21:23:20Z #14 3.083 102850K .......... .......... .......... .......... .......... 81% 121M 0s +2024-04-02T21:23:20Z #14 3.083 102900K .......... .......... .......... .......... .......... 81% 109M 0s +2024-04-02T21:23:20Z #14 3.083 102950K .......... .......... .......... .......... .......... 81% 135M 0s +2024-04-02T21:23:20Z #14 3.083 103000K .......... .......... .......... .......... .......... 81% 20.2M 0s +2024-04-02T21:23:20Z #14 3.085 103050K .......... .......... .......... .......... .......... 81% 71.3M 0s +2024-04-02T21:23:20Z #14 3.091 103100K .......... .......... .......... .......... .......... 81% 131M 0s +2024-04-02T21:23:20Z #14 3.091 103150K .......... .......... .......... .......... .......... 81% 134M 0s +2024-04-02T21:23:20Z #14 3.091 103200K .......... .......... .......... .......... .......... 81% 123M 0s +2024-04-02T21:23:20Z #14 3.091 103250K .......... .......... .......... .......... .......... 81% 114M 0s +2024-04-02T21:23:20Z #14 3.091 103300K .......... .......... .......... .......... .......... 81% 129M 0s +2024-04-02T21:23:20Z #14 3.091 103350K .......... .......... .......... .......... .......... 81% 132M 0s +2024-04-02T21:23:20Z #14 3.091 103400K .......... .......... .......... .......... .......... 81% 138M 0s +2024-04-02T21:23:20Z #14 3.091 103450K .......... .......... .......... .......... .......... 81% 125M 0s +2024-04-02T21:23:20Z #14 3.091 103500K .......... .......... .......... .......... .......... 81% 135M 0s +2024-04-02T21:23:20Z #14 3.091 103550K .......... .......... .......... .......... .......... 81% 149M 0s +2024-04-02T21:23:20Z #14 3.091 103600K .......... .......... .......... .......... .......... 81% 128M 0s +2024-04-02T21:23:20Z #14 3.091 103650K .......... .......... .......... .......... .......... 81% 105M 0s +2024-04-02T21:23:20Z #14 3.091 103700K .......... .......... .......... .......... .......... 81% 128M 0s +2024-04-02T21:23:20Z #14 3.091 103750K .......... .......... .......... .......... .......... 81% 12.8M 0s +2024-04-02T21:23:20Z #14 3.099 103800K .......... .......... .......... .......... .......... 81% 128M 0s +2024-04-02T21:23:20Z #14 3.099 103850K .......... .......... .......... .......... .......... 81% 117M 0s +2024-04-02T21:23:20Z #14 3.099 103900K .......... .......... .......... .......... .......... 81% 129M 0s +2024-04-02T21:23:20Z #14 3.099 103950K .......... .......... .......... .......... .......... 82% 127M 0s +2024-04-02T21:23:20Z #14 3.099 104000K .......... .......... .......... .......... .......... 82% 99.9M 0s +2024-04-02T21:23:20Z #14 3.099 104050K .......... .......... .......... .......... .......... 82% 131M 0s +2024-04-02T21:23:20Z #14 3.099 104100K .......... .......... .......... .......... .......... 82% 110M 0s +2024-04-02T21:23:20Z #14 3.099 104150K .......... .......... .......... .......... .......... 82% 126M 0s +2024-04-02T21:23:20Z #14 3.099 104200K .......... .......... .......... .......... .......... 82% 126M 0s +2024-04-02T21:23:20Z #14 3.099 104250K .......... .......... .......... .......... .......... 82% 122M 0s +2024-04-02T21:23:20Z #14 3.099 104300K .......... .......... .......... .......... .......... 82% 629K 0s +2024-04-02T21:23:20Z #14 3.187 104350K .......... .......... .......... .......... .......... 82% 112M 0s +2024-04-02T21:23:20Z #14 3.187 104400K .......... .......... .......... .......... .......... 82% 132M 0s +2024-04-02T21:23:20Z #14 3.187 104450K .......... .......... .......... .......... .......... 82% 154M 0s +2024-04-02T21:23:20Z #14 3.187 104500K .......... .......... .......... .......... .......... 82% 118M 0s +2024-04-02T21:23:20Z #14 3.187 104550K .......... .......... .......... .......... .......... 82% 127M 0s +2024-04-02T21:23:20Z #14 3.187 104600K .......... .......... .......... .......... .......... 82% 134M 0s +2024-04-02T21:23:20Z #14 3.187 104650K .......... .......... .......... .......... .......... 82% 102M 0s +2024-04-02T21:23:20Z #14 3.187 104700K .......... .......... .......... .......... .......... 82% 140M 0s +2024-04-02T21:23:20Z #14 3.187 104750K .......... .......... .......... .......... .......... 82% 134M 0s +2024-04-02T21:23:20Z #14 3.187 104800K .......... .......... .......... .......... .......... 82% 115M 0s +2024-04-02T21:23:20Z #14 3.187 104850K .......... .......... .......... .......... .......... 82% 124M 0s +2024-04-02T21:23:20Z #14 3.187 104900K .......... .......... .......... .......... .......... 82% 144M 0s +2024-04-02T21:23:20Z #14 3.187 104950K .......... .......... .......... .......... .......... 82% 99.0M 0s +2024-04-02T21:23:20Z #14 3.187 105000K .......... .......... .......... .......... .......... 82% 151M 0s +2024-04-02T21:23:20Z #14 3.187 105050K .......... .......... .......... .......... .......... 82% 164M 0s +2024-04-02T21:23:20Z #14 3.187 105100K .......... .......... .......... .......... .......... 82% 164M 0s +2024-04-02T21:23:20Z #14 3.187 105150K .......... .......... .......... .......... .......... 82% 151M 0s +2024-04-02T21:23:20Z #14 3.187 105200K .......... .......... .......... .......... .......... 83% 101M 0s +2024-04-02T21:23:20Z #14 3.187 105250K .......... .......... .......... .......... .......... 83% 124M 0s +2024-04-02T21:23:20Z #14 3.187 105300K .......... .......... .......... .......... .......... 83% 129M 0s +2024-04-02T21:23:20Z #14 3.187 105350K .......... .......... .......... .......... .......... 83% 128M 0s +2024-04-02T21:23:20Z #14 3.187 105400K .......... .......... .......... .......... .......... 83% 113M 0s +2024-04-02T21:23:20Z #14 3.187 105450K .......... .......... .......... .......... .......... 83% 11.9M 0s +2024-04-02T21:23:20Z #14 3.196 105500K .......... .......... .......... .......... .......... 83% 22.9M 0s +2024-04-02T21:23:20Z #14 3.196 105550K .......... .......... .......... .......... .......... 83% 171M 0s +2024-04-02T21:23:20Z #14 3.196 105600K .......... .......... .......... .......... .......... 83% 134M 0s +2024-04-02T21:23:20Z #14 3.196 105650K .......... .......... .......... .......... .......... 83% 132M 0s +2024-04-02T21:23:20Z #14 3.196 105700K .......... .......... .......... .......... .......... 83% 143M 0s +2024-04-02T21:23:20Z #14 3.196 105750K .......... .......... .......... .......... .......... 83% 14.1M 0s +2024-04-02T21:23:20Z #14 3.199 105800K .......... .......... .......... .......... .......... 83% 129M 0s +2024-04-02T21:23:20Z #14 3.199 105850K .......... .......... .......... .......... .......... 83% 150M 0s +2024-04-02T21:23:20Z #14 3.199 105900K .......... .......... .......... .......... .......... 83% 14.4M 0s +2024-04-02T21:23:20Z #14 3.202 105950K .......... .......... .......... .......... .......... 83% 18.5M 0s +2024-04-02T21:23:20Z #14 3.207 106000K .......... .......... .......... .......... .......... 83% 187M 0s +2024-04-02T21:23:20Z #14 3.207 106050K .......... .......... .......... .......... .......... 83% 171M 0s +2024-04-02T21:23:20Z #14 3.207 106100K .......... .......... .......... .......... .......... 83% 139M 0s +2024-04-02T21:23:20Z #14 3.207 106150K .......... .......... .......... .......... .......... 83% 165M 0s +2024-04-02T21:23:20Z #14 3.207 106200K .......... .......... .......... .......... .......... 83% 149M 0s +2024-04-02T21:23:20Z #14 3.207 106250K .......... .......... .......... .......... .......... 83% 183M 0s +2024-04-02T21:23:20Z #14 3.207 106300K .......... .......... .......... .......... .......... 83% 169M 0s +2024-04-02T21:23:20Z #14 3.207 106350K .......... .......... .......... .......... .......... 83% 180M 0s +2024-04-02T21:23:20Z #14 3.207 106400K .......... .......... .......... .......... .......... 83% 11.8M 0s +2024-04-02T21:23:20Z #14 3.211 106450K .......... .......... .......... .......... .......... 84% 56.8M 0s +2024-04-02T21:23:20Z #14 3.212 106500K .......... .......... .......... .......... .......... 84% 64.8M 0s +2024-04-02T21:23:20Z #14 3.213 106550K .......... .......... .......... .......... .......... 84% 61.8M 0s +2024-04-02T21:23:20Z #14 3.214 106600K .......... .......... .......... .......... .......... 84% 118M 0s +2024-04-02T21:23:20Z #14 3.214 106650K .......... .......... .......... .......... .......... 84% 17.8M 0s +2024-04-02T21:23:20Z #14 3.217 106700K .......... .......... .......... .......... .......... 84% 39.7M 0s +2024-04-02T21:23:20Z #14 3.218 106750K .......... .......... .......... .......... .......... 84% 14.4M 0s +2024-04-02T21:23:20Z #14 3.221 106800K .......... .......... .......... .......... .......... 84% 65.3M 0s +2024-04-02T21:23:20Z #14 3.222 106850K .......... .......... .......... .......... .......... 84% 49.9M 0s +2024-04-02T21:23:20Z #14 3.226 106900K .......... .......... .......... .......... .......... 84% 58.2M 0s +2024-04-02T21:23:20Z #14 3.226 106950K .......... .......... .......... .......... .......... 84% 58.8M 0s +2024-04-02T21:23:20Z #14 3.226 107000K .......... .......... .......... .......... .......... 84% 55.6M 0s +2024-04-02T21:23:20Z #14 3.226 107050K .......... .......... .......... .......... .......... 84% 60.7M 0s +2024-04-02T21:23:20Z #14 3.226 107100K .......... .......... .......... .......... .......... 84% 15.8M 0s +2024-04-02T21:23:20Z #14 3.231 107150K .......... .......... .......... .......... .......... 84% 134M 0s +2024-04-02T21:23:20Z #14 3.231 107200K .......... .......... .......... .......... .......... 84% 140M 0s +2024-04-02T21:23:20Z #14 3.231 107250K .......... .......... .......... .......... .......... 84% 127M 0s +2024-04-02T21:23:20Z #14 3.231 107300K .......... .......... .......... .......... .......... 84% 128M 0s +2024-04-02T21:23:20Z #14 3.231 107350K .......... .......... .......... .......... .......... 84% 18.4M 0s +2024-04-02T21:23:20Z #14 3.233 107400K .......... .......... .......... .......... .......... 84% 35.8M 0s +2024-04-02T21:23:20Z #14 3.235 107450K .......... .......... .......... .......... .......... 84% 37.0M 0s +2024-04-02T21:23:20Z #14 3.236 107500K .......... .......... .......... .......... .......... 84% 128M 0s +2024-04-02T21:23:20Z #14 3.238 107550K .......... .......... .......... .......... .......... 84% 47.7M 0s +2024-04-02T21:23:20Z #14 3.238 107600K .......... .......... .......... .......... .......... 84% 44.1M 0s +2024-04-02T21:23:20Z #14 3.239 107650K .......... .......... .......... .......... .......... 84% 24.3M 0s +2024-04-02T21:23:20Z #14 3.241 107700K .......... .......... .......... .......... .......... 84% 83.7M 0s +2024-04-02T21:23:20Z #14 3.242 107750K .......... .......... .......... .......... .......... 85% 142M 0s +2024-04-02T21:23:20Z #14 3.242 107800K .......... .......... .......... .......... .......... 85% 27.3M 0s +2024-04-02T21:23:20Z #14 3.244 107850K .......... .......... .......... .......... .......... 85% 130M 0s +2024-04-02T21:23:20Z #14 3.244 107900K .......... .......... .......... .......... .......... 85% 63.3M 0s +2024-04-02T21:23:20Z #14 3.245 107950K .......... .......... .......... .......... .......... 85% 38.1M 0s +2024-04-02T21:23:20Z #14 3.247 108000K .......... .......... .......... .......... .......... 85% 48.0M 0s +2024-04-02T21:23:20Z #14 3.247 108050K .......... .......... .......... .......... .......... 85% 111M 0s +2024-04-02T21:23:20Z #14 3.248 108100K .......... .......... .......... .......... .......... 85% 22.9M 0s +2024-04-02T21:23:20Z #14 3.249 108150K .......... .......... .......... .......... .......... 85% 47.2M 0s +2024-04-02T21:23:20Z #14 3.251 108200K .......... .......... .......... .......... .......... 85% 56.3M 0s +2024-04-02T21:23:20Z #14 3.251 108250K .......... .......... .......... .......... .......... 85% 27.3M 0s +2024-04-02T21:23:20Z #14 3.253 108300K .......... .......... .......... .......... .......... 85% 49.2M 0s +2024-04-02T21:23:20Z #14 3.255 108350K .......... .......... .......... .......... .......... 85% 20.1M 0s +2024-04-02T21:23:20Z #14 3.257 108400K .......... .......... .......... .......... .......... 85% 68.4M 0s +2024-04-02T21:23:20Z #14 3.258 108450K .......... .......... .......... .......... .......... 85% 109M 0s +2024-04-02T21:23:20Z #14 3.258 108500K .......... .......... .......... .......... .......... 85% 97.6M 0s +2024-04-02T21:23:20Z #14 3.259 108550K .......... .......... .......... .......... .......... 85% 120M 0s +2024-04-02T21:23:20Z #14 3.259 108600K .......... .......... .......... .......... .......... 85% 103M 0s +2024-04-02T21:23:20Z #14 3.259 108650K .......... .......... .......... .......... .......... 85% 34.2M 0s +2024-04-02T21:23:20Z #14 3.261 108700K .......... .......... .......... .......... .......... 85% 21.8M 0s +2024-04-02T21:23:20Z #14 3.263 108750K .......... .......... .......... .......... .......... 85% 24.4M 0s +2024-04-02T21:23:20Z #14 3.265 108800K .......... .......... .......... .......... .......... 85% 70.5M 0s +2024-04-02T21:23:20Z #14 3.266 108850K .......... .......... .......... .......... .......... 85% 69.3M 0s +2024-04-02T21:23:20Z #14 3.266 108900K .......... .......... .......... .......... .......... 85% 52.5M 0s +2024-04-02T21:23:20Z #14 3.267 108950K .......... .......... .......... .......... .......... 85% 81.9M 0s +2024-04-02T21:23:20Z #14 3.268 109000K .......... .......... .......... .......... .......... 86% 129M 0s +2024-04-02T21:23:20Z #14 3.268 109050K .......... .......... .......... .......... .......... 86% 129M 0s +2024-04-02T21:23:20Z #14 3.268 109100K .......... .......... .......... .......... .......... 86% 34.6M 0s +2024-04-02T21:23:20Z #14 3.270 109150K .......... .......... .......... .......... .......... 86% 26.2M 0s +2024-04-02T21:23:20Z #14 3.272 109200K .......... .......... .......... .......... .......... 86% 114M 0s +2024-04-02T21:23:20Z #14 3.272 109250K .......... .......... .......... .......... .......... 86% 67.7M 0s +2024-04-02T21:23:20Z #14 3.273 109300K .......... .......... .......... .......... .......... 86% 45.0M 0s +2024-04-02T21:23:20Z #14 3.274 109350K .......... .......... .......... .......... .......... 86% 68.8M 0s +2024-04-02T21:23:20Z #14 3.275 109400K .......... .......... .......... .......... .......... 86% 38.2M 0s +2024-04-02T21:23:20Z #14 3.276 109450K .......... .......... .......... .......... .......... 86% 46.8M 0s +2024-04-02T21:23:20Z #14 3.277 109500K .......... .......... .......... .......... .......... 86% 26.7M 0s +2024-04-02T21:23:20Z #14 3.279 109550K .......... .......... .......... .......... .......... 86% 79.2M 0s +2024-04-02T21:23:20Z #14 3.280 109600K .......... .......... .......... .......... .......... 86% 48.3M 0s +2024-04-02T21:23:20Z #14 3.281 109650K .......... .......... .......... .......... .......... 86% 38.2M 0s +2024-04-02T21:23:20Z #14 3.282 109700K .......... .......... .......... .......... .......... 86% 89.2M 0s +2024-04-02T21:23:20Z #14 3.283 109750K .......... .......... .......... .......... .......... 86% 41.7M 0s +2024-04-02T21:23:20Z #14 3.284 109800K .......... .......... .......... .......... .......... 86% 121M 0s +2024-04-02T21:23:20Z #14 3.284 109850K .......... .......... .......... .......... .......... 86% 60.7M 0s +2024-04-02T21:23:20Z #14 3.285 109900K .......... .......... .......... .......... .......... 86% 26.1M 0s +2024-04-02T21:23:20Z #14 3.287 109950K .......... .......... .......... .......... .......... 86% 127M 0s +2024-04-02T21:23:20Z #14 3.287 110000K .......... .......... .......... .......... .......... 86% 119M 0s +2024-04-02T21:23:20Z #14 3.288 110050K .......... .......... .......... .......... .......... 86% 14.0M 0s +2024-04-02T21:23:20Z #14 3.291 110100K .......... .......... .......... .......... .......... 86% 104M 0s +2024-04-02T21:23:20Z #14 3.291 110150K .......... .......... .......... .......... .......... 86% 128M 0s +2024-04-02T21:23:20Z #14 3.292 110200K .......... .......... .......... .......... .......... 86% 136M 0s +2024-04-02T21:23:20Z #14 3.292 110250K .......... .......... .......... .......... .......... 86% 140M 0s +2024-04-02T21:23:20Z #14 3.292 110300K .......... .......... .......... .......... .......... 87% 125M 0s +2024-04-02T21:23:20Z #14 3.293 110350K .......... .......... .......... .......... .......... 87% 110M 0s +2024-04-02T21:23:20Z #14 3.293 110400K .......... .......... .......... .......... .......... 87% 127M 0s +2024-04-02T21:23:20Z #14 3.293 110450K .......... .......... .......... .......... .......... 87% 136M 0s +2024-04-02T21:23:20Z #14 3.294 110500K .......... .......... .......... .......... .......... 87% 128M 0s +2024-04-02T21:23:20Z #14 3.294 110550K .......... .......... .......... .......... .......... 87% 112M 0s +2024-04-02T21:23:20Z #14 3.295 110600K .......... .......... .......... .......... .......... 87% 110M 0s +2024-04-02T21:23:20Z #14 3.295 110650K .......... .......... .......... .......... .......... 87% 120M 0s +2024-04-02T21:23:20Z #14 3.295 110700K .......... .......... .......... .......... .......... 87% 144M 0s +2024-04-02T21:23:20Z #14 3.296 110750K .......... .......... .......... .......... .......... 87% 131M 0s +2024-04-02T21:23:20Z #14 3.297 110800K .......... .......... .......... .......... .......... 87% 132M 0s +2024-04-02T21:23:20Z #14 3.297 110850K .......... .......... .......... .......... .......... 87% 105M 0s +2024-04-02T21:23:20Z #14 3.297 110900K .......... .......... .......... .......... .......... 87% 137M 0s +2024-04-02T21:23:20Z #14 3.297 110950K .......... .......... .......... .......... .......... 87% 135M 0s +2024-04-02T21:23:20Z #14 3.298 111000K .......... .......... .......... .......... .......... 87% 121M 0s +2024-04-02T21:23:20Z #14 3.298 111050K .......... .......... .......... .......... .......... 87% 132M 0s +2024-04-02T21:23:20Z #14 3.299 111100K .......... .......... .......... .......... .......... 87% 116M 0s +2024-04-02T21:23:20Z #14 3.303 111150K .......... .......... .......... .......... .......... 87% 157M 0s +2024-04-02T21:23:20Z #14 3.303 111200K .......... .......... .......... .......... .......... 87% 112M 0s +2024-04-02T21:23:20Z #14 3.303 111250K .......... .......... .......... .......... .......... 87% 84.8M 0s +2024-04-02T21:23:20Z #14 3.303 111300K .......... .......... .......... .......... .......... 87% 107M 0s +2024-04-02T21:23:20Z #14 3.303 111350K .......... .......... .......... .......... .......... 87% 111M 0s +2024-04-02T21:23:20Z #14 3.303 111400K .......... .......... .......... .......... .......... 87% 74.1M 0s +2024-04-02T21:23:20Z #14 3.303 111450K .......... .......... .......... .......... .......... 87% 81.6M 0s +2024-04-02T21:23:20Z #14 3.303 111500K .......... .......... .......... .......... .......... 87% 52.4M 0s +2024-04-02T21:23:20Z #14 3.307 111550K .......... .......... .......... .......... .......... 88% 128M 0s +2024-04-02T21:23:20Z #14 3.307 111600K .......... .......... .......... .......... .......... 88% 113M 0s +2024-04-02T21:23:20Z #14 3.307 111650K .......... .......... .......... .......... .......... 88% 95.5M 0s +2024-04-02T21:23:20Z #14 3.307 111700K .......... .......... .......... .......... .......... 88% 120M 0s +2024-04-02T21:23:20Z #14 3.307 111750K .......... .......... .......... .......... .......... 88% 129M 0s +2024-04-02T21:23:20Z #14 3.307 111800K .......... .......... .......... .......... .......... 88% 122M 0s +2024-04-02T21:23:20Z #14 3.307 111850K .......... .......... .......... .......... .......... 88% 119M 0s +2024-04-02T21:23:20Z #14 3.307 111900K .......... .......... .......... .......... .......... 88% 99.3M 0s +2024-04-02T21:23:20Z #14 3.307 111950K .......... .......... .......... .......... .......... 88% 96.1M 0s +2024-04-02T21:23:20Z #14 3.308 112000K .......... .......... .......... .......... .......... 88% 121M 0s +2024-04-02T21:23:20Z #14 3.308 112050K .......... .......... .......... .......... .......... 88% 43.0M 0s +2024-04-02T21:23:20Z #14 3.309 112100K .......... .......... .......... .......... .......... 88% 56.2M 0s +2024-04-02T21:23:20Z #14 3.310 112150K .......... .......... .......... .......... .......... 88% 104M 0s +2024-04-02T21:23:20Z #14 3.310 112200K .......... .......... .......... .......... .......... 88% 128M 0s +2024-04-02T21:23:20Z #14 3.311 112250K .......... .......... .......... .......... .......... 88% 112M 0s +2024-04-02T21:23:20Z #14 3.311 112300K .......... .......... .......... .......... .......... 88% 104M 0s +2024-04-02T21:23:20Z #14 3.312 112350K .......... .......... .......... .......... .......... 88% 139M 0s +2024-04-02T21:23:20Z #14 3.312 112400K .......... .......... .......... .......... .......... 88% 128M 0s +2024-04-02T21:23:20Z #14 3.313 112450K .......... .......... .......... .......... .......... 88% 112M 0s +2024-04-02T21:23:20Z #14 3.313 112500K .......... .......... .......... .......... .......... 88% 134M 0s +2024-04-02T21:23:20Z #14 3.313 112550K .......... .......... .......... .......... .......... 88% 101M 0s +2024-04-02T21:23:20Z #14 3.314 112600K .......... .......... .......... .......... .......... 88% 121M 0s +2024-04-02T21:23:20Z #14 3.314 112650K .......... .......... .......... .......... .......... 88% 132M 0s +2024-04-02T21:23:20Z #14 3.316 112700K .......... .......... .......... .......... .......... 88% 109M 0s +2024-04-02T21:23:20Z #14 3.316 112750K .......... .......... .......... .......... .......... 88% 105M 0s +2024-04-02T21:23:20Z #14 3.316 112800K .......... .......... .......... .......... .......... 89% 152M 0s +2024-04-02T21:23:20Z #14 3.316 112850K .......... .......... .......... .......... .......... 89% 144M 0s +2024-04-02T21:23:20Z #14 3.316 112900K .......... .......... .......... .......... .......... 89% 92.3M 0s +2024-04-02T21:23:20Z #14 3.318 112950K .......... .......... .......... .......... .......... 89% 136M 0s +2024-04-02T21:23:20Z #14 3.318 113000K .......... .......... .......... .......... .......... 89% 109M 0s +2024-04-02T21:23:20Z #14 3.318 113050K .......... .......... .......... .......... .......... 89% 127M 0s +2024-04-02T21:23:20Z #14 3.319 113100K .......... .......... .......... .......... .......... 89% 68.5M 0s +2024-04-02T21:23:20Z #14 3.319 113150K .......... .......... .......... .......... .......... 89% 120M 0s +2024-04-02T21:23:20Z #14 3.319 113200K .......... .......... .......... .......... .......... 89% 65.3M 0s +2024-04-02T21:23:20Z #14 3.320 113250K .......... .......... .......... .......... .......... 89% 108M 0s +2024-04-02T21:23:20Z #14 3.321 113300K .......... .......... .......... .......... .......... 89% 140M 0s +2024-04-02T21:23:20Z #14 3.321 113350K .......... .......... .......... .......... .......... 89% 124M 0s +2024-04-02T21:23:20Z #14 3.321 113400K .......... .......... .......... .......... .......... 89% 45.0M 0s +2024-04-02T21:23:20Z #14 3.322 113450K .......... .......... .......... .......... .......... 89% 43.7M 0s +2024-04-02T21:23:20Z #14 3.323 113500K .......... .......... .......... .......... .......... 89% 58.5M 0s +2024-04-02T21:23:20Z #14 3.324 113550K .......... .......... .......... .......... .......... 89% 112M 0s +2024-04-02T21:23:20Z #14 3.324 113600K .......... .......... .......... .......... .......... 89% 141M 0s +2024-04-02T21:23:20Z #14 3.324 113650K .......... .......... .......... .......... .......... 89% 98.0M 0s +2024-04-02T21:23:20Z #14 3.326 113700K .......... .......... .......... .......... .......... 89% 108M 0s +2024-04-02T21:23:20Z #14 3.326 113750K .......... .......... .......... .......... .......... 89% 111M 0s +2024-04-02T21:23:20Z #14 3.326 113800K .......... .......... .......... .......... .......... 89% 76.6M 0s +2024-04-02T21:23:20Z #14 3.328 113850K .......... .......... .......... .......... .......... 89% 91.3M 0s +2024-04-02T21:23:20Z #14 3.328 113900K .......... .......... .......... .......... .......... 89% 144M 0s +2024-04-02T21:23:20Z #14 3.328 113950K .......... .......... .......... .......... .......... 89% 106M 0s +2024-04-02T21:23:20Z #14 3.328 114000K .......... .......... .......... .......... .......... 89% 92.9M 0s +2024-04-02T21:23:20Z #14 3.328 114050K .......... .......... .......... .......... .......... 89% 85.2M 0s +2024-04-02T21:23:20Z #14 3.330 114100K .......... .......... .......... .......... .......... 90% 118M 0s +2024-04-02T21:23:20Z #14 3.330 114150K .......... .......... .......... .......... .......... 90% 65.1M 0s +2024-04-02T21:23:20Z #14 3.330 114200K .......... .......... .......... .......... .......... 90% 85.1M 0s +2024-04-02T21:23:20Z #14 3.335 114250K .......... .......... .......... .......... .......... 90% 134M 0s +2024-04-02T21:23:20Z #14 3.336 114300K .......... .......... .......... .......... .......... 90% 99.5M 0s +2024-04-02T21:23:20Z #14 3.336 114350K .......... .......... .......... .......... .......... 90% 160M 0s +2024-04-02T21:23:20Z #14 3.336 114400K .......... .......... .......... .......... .......... 90% 170M 0s +2024-04-02T21:23:20Z #14 3.336 114450K .......... .......... .......... .......... .......... 90% 142M 0s +2024-04-02T21:23:20Z #14 3.336 114500K .......... .......... .......... .......... .......... 90% 164M 0s +2024-04-02T21:23:20Z #14 3.336 114550K .......... .......... .......... .......... .......... 90% 152M 0s +2024-04-02T21:23:20Z #14 3.336 114600K .......... .......... .......... .......... .......... 90% 154M 0s +2024-04-02T21:23:20Z #14 3.336 114650K .......... .......... .......... .......... .......... 90% 128M 0s +2024-04-02T21:23:20Z #14 3.336 114700K .......... .......... .......... .......... .......... 90% 171M 0s +2024-04-02T21:23:20Z #14 3.336 114750K .......... .......... .......... .......... .......... 90% 145M 0s +2024-04-02T21:23:20Z #14 3.336 114800K .......... .......... .......... .......... .......... 90% 166M 0s +2024-04-02T21:23:20Z #14 3.336 114850K .......... .......... .......... .......... .......... 90% 91.4M 0s +2024-04-02T21:23:20Z #14 3.336 114900K .......... .......... .......... .......... .......... 90% 115M 0s +2024-04-02T21:23:20Z #14 3.336 114950K .......... .......... .......... .......... .......... 90% 86.6M 0s +2024-04-02T21:23:20Z #14 3.336 115000K .......... .......... .......... .......... .......... 90% 65.0M 0s +2024-04-02T21:23:20Z #14 3.337 115050K .......... .......... .......... .......... .......... 90% 81.8M 0s +2024-04-02T21:23:20Z #14 3.338 115100K .......... .......... .......... .......... .......... 90% 130M 0s +2024-04-02T21:23:20Z #14 3.339 115150K .......... .......... .......... .......... .......... 90% 111M 0s +2024-04-02T21:23:20Z #14 3.339 115200K .......... .......... .......... .......... .......... 90% 129M 0s +2024-04-02T21:23:20Z #14 3.339 115250K .......... .......... .......... .......... .......... 90% 95.0M 0s +2024-04-02T21:23:20Z #14 3.339 115300K .......... .......... .......... .......... .......... 90% 130M 0s +2024-04-02T21:23:20Z #14 3.340 115350K .......... .......... .......... .......... .......... 91% 105M 0s +2024-04-02T21:23:20Z #14 3.340 115400K .......... .......... .......... .......... .......... 91% 124M 0s +2024-04-02T21:23:20Z #14 3.341 115450K .......... .......... .......... .......... .......... 91% 130M 0s +2024-04-02T21:23:20Z #14 3.341 115500K .......... .......... .......... .......... .......... 91% 119M 0s +2024-04-02T21:23:20Z #14 3.341 115550K .......... .......... .......... .......... .......... 91% 108M 0s +2024-04-02T21:23:20Z #14 3.342 115600K .......... .......... .......... .......... .......... 91% 138M 0s +2024-04-02T21:23:20Z #14 3.342 115650K .......... .......... .......... .......... .......... 91% 101M 0s +2024-04-02T21:23:20Z #14 3.343 115700K .......... .......... .......... .......... .......... 91% 112M 0s +2024-04-02T21:23:20Z #14 3.344 115750K .......... .......... .......... .......... .......... 91% 132M 0s +2024-04-02T21:23:20Z #14 3.344 115800K .......... .......... .......... .......... .......... 91% 128M 0s +2024-04-02T21:23:20Z #14 3.344 115850K .......... .......... .......... .......... .......... 91% 108M 0s +2024-04-02T21:23:20Z #14 3.347 115900K .......... .......... .......... .......... .......... 91% 113M 0s +2024-04-02T21:23:20Z #14 3.347 115950K .......... .......... .......... .......... .......... 91% 99.7M 0s +2024-04-02T21:23:20Z #14 3.347 116000K .......... .......... .......... .......... .......... 91% 120M 0s +2024-04-02T21:23:20Z #14 3.347 116050K .......... .......... .......... .......... .......... 91% 154M 0s +2024-04-02T21:23:20Z #14 3.347 116100K .......... .......... .......... .......... .......... 91% 110M 0s +2024-04-02T21:23:20Z #14 3.347 116150K .......... .......... .......... .......... .......... 91% 116M 0s +2024-04-02T21:23:20Z #14 3.347 116200K .......... .......... .......... .......... .......... 91% 80.7M 0s +2024-04-02T21:23:20Z #14 3.347 116250K .......... .......... .......... .......... .......... 91% 135M 0s +2024-04-02T21:23:20Z #14 3.348 116300K .......... .......... .......... .......... .......... 91% 128M 0s +2024-04-02T21:23:20Z #14 3.349 116350K .......... .......... .......... .......... .......... 91% 121M 0s +2024-04-02T21:23:20Z #14 3.349 116400K .......... .......... .......... .......... .......... 91% 124M 0s +2024-04-02T21:23:20Z #14 3.349 116450K .......... .......... .......... .......... .......... 91% 125M 0s +2024-04-02T21:23:20Z #14 3.350 116500K .......... .......... .......... .......... .......... 91% 136M 0s +2024-04-02T21:23:20Z #14 3.350 116550K .......... .......... .......... .......... .......... 91% 127M 0s +2024-04-02T21:23:20Z #14 3.350 116600K .......... .......... .......... .......... .......... 92% 118M 0s +2024-04-02T21:23:20Z #14 3.350 116650K .......... .......... .......... .......... .......... 92% 129M 0s +2024-04-02T21:23:20Z #14 3.351 116700K .......... .......... .......... .......... .......... 92% 105M 0s +2024-04-02T21:23:20Z #14 3.355 116750K .......... .......... .......... .......... .......... 92% 106M 0s +2024-04-02T21:23:20Z #14 3.355 116800K .......... .......... .......... .......... .......... 92% 150M 0s +2024-04-02T21:23:20Z #14 3.355 116850K .......... .......... .......... .......... .......... 92% 150M 0s +2024-04-02T21:23:20Z #14 3.355 116900K .......... .......... .......... .......... .......... 92% 127M 0s +2024-04-02T21:23:20Z #14 3.355 116950K .......... .......... .......... .......... .......... 92% 119M 0s +2024-04-02T21:23:20Z #14 3.355 117000K .......... .......... .......... .......... .......... 92% 162M 0s +2024-04-02T21:23:20Z #14 3.355 117050K .......... .......... .......... .......... .......... 92% 126M 0s +2024-04-02T21:23:20Z #14 3.355 117100K .......... .......... .......... .......... .......... 92% 109M 0s +2024-04-02T21:23:20Z #14 3.355 117150K .......... .......... .......... .......... .......... 92% 120M 0s +2024-04-02T21:23:20Z #14 3.355 117200K .......... .......... .......... .......... .......... 92% 75.1M 0s +2024-04-02T21:23:20Z #14 3.357 117250K .......... .......... .......... .......... .......... 92% 109M 0s +2024-04-02T21:23:20Z #14 3.357 117300K .......... .......... .......... .......... .......... 92% 114M 0s +2024-04-02T21:23:20Z #14 3.357 117350K .......... .......... .......... .......... .......... 92% 78.6M 0s +2024-04-02T21:23:20Z #14 3.359 117400K .......... .......... .......... .......... .......... 92% 97.8M 0s +2024-04-02T21:23:20Z #14 3.359 117450K .......... .......... .......... .......... .......... 92% 122M 0s +2024-04-02T21:23:20Z #14 3.359 117500K .......... .......... .......... .......... .......... 92% 127M 0s +2024-04-02T21:23:20Z #14 3.359 117550K .......... .......... .......... .......... .......... 92% 122M 0s +2024-04-02T21:23:20Z #14 3.359 117600K .......... .......... .......... .......... .......... 92% 87.7M 0s +2024-04-02T21:23:20Z #14 3.361 117650K .......... .......... .......... .......... .......... 92% 134M 0s +2024-04-02T21:23:20Z #14 3.361 117700K .......... .......... .......... .......... .......... 92% 102M 0s +2024-04-02T21:23:20Z #14 3.361 117750K .......... .......... .......... .......... .......... 92% 132M 0s +2024-04-02T21:23:20Z #14 3.361 117800K .......... .......... .......... .......... .......... 92% 97.3M 0s +2024-04-02T21:23:20Z #14 3.361 117850K .......... .......... .......... .......... .......... 92% 75.5M 0s +2024-04-02T21:23:20Z #14 3.362 117900K .......... .......... .......... .......... .......... 93% 124M 0s +2024-04-02T21:23:20Z #14 3.362 117950K .......... .......... .......... .......... .......... 93% 87.3M 0s +2024-04-02T21:23:20Z #14 3.363 118000K .......... .......... .......... .......... .......... 93% 105M 0s +2024-04-02T21:23:20Z #14 3.363 118050K .......... .......... .......... .......... .......... 93% 83.3M 0s +2024-04-02T21:23:20Z #14 3.364 118100K .......... .......... .......... .......... .......... 93% 65.1M 0s +2024-04-02T21:23:20Z #14 3.365 118150K .......... .......... .......... .......... .......... 93% 115M 0s +2024-04-02T21:23:20Z #14 3.365 118200K .......... .......... .......... .......... .......... 93% 78.0M 0s +2024-04-02T21:23:20Z #14 3.366 118250K .......... .......... .......... .......... .......... 93% 133M 0s +2024-04-02T21:23:20Z #14 3.366 118300K .......... .......... .......... .......... .......... 93% 98.4M 0s +2024-04-02T21:23:20Z #14 3.366 118350K .......... .......... .......... .......... .......... 93% 81.5M 0s +2024-04-02T21:23:20Z #14 3.367 118400K .......... .......... .......... .......... .......... 93% 53.0M 0s +2024-04-02T21:23:20Z #14 3.368 118450K .......... .......... .......... .......... .......... 93% 38.5M 0s +2024-04-02T21:23:20Z #14 3.369 118500K .......... .......... .......... .......... .......... 93% 68.2M 0s +2024-04-02T21:23:20Z #14 3.370 118550K .......... .......... .......... .......... .......... 93% 49.0M 0s +2024-04-02T21:23:20Z #14 3.371 118600K .......... .......... .......... .......... .......... 93% 76.6M 0s +2024-04-02T21:23:20Z #14 3.371 118650K .......... .......... .......... .......... .......... 93% 44.8M 0s +2024-04-02T21:23:20Z #14 3.373 118700K .......... .......... .......... .......... .......... 93% 65.7M 0s +2024-04-02T21:23:20Z #14 3.374 118750K .......... .......... .......... .......... .......... 93% 124M 0s +2024-04-02T21:23:20Z #14 3.374 118800K .......... .......... .......... .......... .......... 93% 102M 0s +2024-04-02T21:23:20Z #14 3.374 118850K .......... .......... .......... .......... .......... 93% 62.5M 0s +2024-04-02T21:23:20Z #14 3.376 118900K .......... .......... .......... .......... .......... 93% 125M 0s +2024-04-02T21:23:20Z #14 3.376 118950K .......... .......... .......... .......... .......... 93% 134M 0s +2024-04-02T21:23:20Z #14 3.376 119000K .......... .......... .......... .......... .......... 93% 113M 0s +2024-04-02T21:23:20Z #14 3.376 119050K .......... .......... .......... .......... .......... 93% 95.4M 0s +2024-04-02T21:23:20Z #14 3.378 119100K .......... .......... .......... .......... .......... 93% 141M 0s +2024-04-02T21:23:20Z #14 3.378 119150K .......... .......... .......... .......... .......... 94% 106M 0s +2024-04-02T21:23:20Z #14 3.378 119200K .......... .......... .......... .......... .......... 94% 105M 0s +2024-04-02T21:23:20Z #14 3.379 119250K .......... .......... .......... .......... .......... 94% 137M 0s +2024-04-02T21:23:20Z #14 3.379 119300K .......... .......... .......... .......... .......... 94% 145M 0s +2024-04-02T21:23:20Z #14 3.379 119350K .......... .......... .......... .......... .......... 94% 115M 0s +2024-04-02T21:23:20Z #14 3.379 119400K .......... .......... .......... .......... .......... 94% 105M 0s +2024-04-02T21:23:20Z #14 3.380 119450K .......... .......... .......... .......... .......... 94% 105M 0s +2024-04-02T21:23:20Z #14 3.380 119500K .......... .......... .......... .......... .......... 94% 101M 0s +2024-04-02T21:23:20Z #14 3.380 119550K .......... .......... .......... .......... .......... 94% 124M 0s +2024-04-02T21:23:20Z #14 3.381 119600K .......... .......... .......... .......... .......... 94% 117M 0s +2024-04-02T21:23:20Z #14 3.381 119650K .......... .......... .......... .......... .......... 94% 160M 0s +2024-04-02T21:23:20Z #14 3.381 119700K .......... .......... .......... .......... .......... 94% 123M 0s +2024-04-02T21:23:20Z #14 3.382 119750K .......... .......... .......... .......... .......... 94% 114M 0s +2024-04-02T21:23:20Z #14 3.382 119800K .......... .......... .......... .......... .......... 94% 109M 0s +2024-04-02T21:23:20Z #14 3.383 119850K .......... .......... .......... .......... .......... 94% 123M 0s +2024-04-02T21:23:20Z #14 3.383 119900K .......... .......... .......... .......... .......... 94% 128M 0s +2024-04-02T21:23:20Z #14 3.383 119950K .......... .......... .......... .......... .......... 94% 115M 0s +2024-04-02T21:23:20Z #14 3.384 120000K .......... .......... .......... .......... .......... 94% 127M 0s +2024-04-02T21:23:20Z #14 3.384 120050K .......... .......... .......... .......... .......... 94% 95.2M 0s +2024-04-02T21:23:20Z #14 3.385 120100K .......... .......... .......... .......... .......... 94% 131M 0s +2024-04-02T21:23:20Z #14 3.385 120150K .......... .......... .......... .......... .......... 94% 92.4M 0s +2024-04-02T21:23:20Z #14 3.386 120200K .......... .......... .......... .......... .......... 94% 137M 0s +2024-04-02T21:23:20Z #14 3.386 120250K .......... .......... .......... .......... .......... 94% 115M 0s +2024-04-02T21:23:20Z #14 3.386 120300K .......... .......... .......... .......... .......... 94% 107M 0s +2024-04-02T21:23:20Z #14 3.387 120350K .......... .......... .......... .......... .......... 94% 26.3M 0s +2024-04-02T21:23:20Z #14 3.389 120400K .......... .......... .......... .......... .......... 95% 35.8M 0s +2024-04-02T21:23:20Z #14 3.390 120450K .......... .......... .......... .......... .......... 95% 42.0M 0s +2024-04-02T21:23:20Z #14 3.392 120500K .......... .......... .......... .......... .......... 95% 32.9M 0s +2024-04-02T21:23:20Z #14 3.393 120550K .......... .......... .......... .......... .......... 95% 39.5M 0s +2024-04-02T21:23:20Z #14 3.394 120600K .......... .......... .......... .......... .......... 95% 43.4M 0s +2024-04-02T21:23:20Z #14 3.395 120650K .......... .......... .......... .......... .......... 95% 67.6M 0s +2024-04-02T21:23:20Z #14 3.396 120700K .......... .......... .......... .......... .......... 95% 69.8M 0s +2024-04-02T21:23:20Z #14 3.397 120750K .......... .......... .......... .......... .......... 95% 124M 0s +2024-04-02T21:23:20Z #14 3.398 120800K .......... .......... .......... .......... .......... 95% 71.3M 0s +2024-04-02T21:23:20Z #14 3.399 120850K .......... .......... .......... .......... .......... 95% 22.2M 0s +2024-04-02T21:23:20Z #14 3.401 120900K .......... .......... .......... .......... .......... 95% 119M 0s +2024-04-02T21:23:20Z #14 3.401 120950K .......... .......... .......... .......... .......... 95% 118M 0s +2024-04-02T21:23:20Z #14 3.401 121000K .......... .......... .......... .......... .......... 95% 35.7M 0s +2024-04-02T21:23:20Z #14 3.402 121050K .......... .......... .......... .......... .......... 95% 115M 0s +2024-04-02T21:23:20Z #14 3.402 121100K .......... .......... .......... .......... .......... 95% 78.4M 0s +2024-04-02T21:23:20Z #14 3.405 121150K .......... .......... .......... .......... .......... 95% 134M 0s +2024-04-02T21:23:20Z #14 3.405 121200K .......... .......... .......... .......... .......... 95% 155M 0s +2024-04-02T21:23:20Z #14 3.405 121250K .......... .......... .......... .......... .......... 95% 114M 0s +2024-04-02T21:23:20Z #14 3.405 121300K .......... .......... .......... .......... .......... 95% 145M 0s +2024-04-02T21:23:20Z #14 3.405 121350K .......... .......... .......... .......... .......... 95% 108M 0s +2024-04-02T21:23:20Z #14 3.407 121400K .......... .......... .......... .......... .......... 95% 135M 0s +2024-04-02T21:23:20Z #14 3.407 121450K .......... .......... .......... .......... .......... 95% 111M 0s +2024-04-02T21:23:20Z #14 3.407 121500K .......... .......... .......... .......... .......... 95% 151M 0s +2024-04-02T21:23:20Z #14 3.407 121550K .......... .......... .......... .......... .......... 95% 129M 0s +2024-04-02T21:23:20Z #14 3.407 121600K .......... .......... .......... .......... .......... 95% 112M 0s +2024-04-02T21:23:20Z #14 3.411 121650K .......... .......... .......... .......... .......... 95% 120M 0s +2024-04-02T21:23:20Z #14 3.411 121700K .......... .......... .......... .......... .......... 96% 152M 0s +2024-04-02T21:23:20Z #14 3.411 121750K .......... .......... .......... .......... .......... 96% 164M 0s +2024-04-02T21:23:20Z #14 3.411 121800K .......... .......... .......... .......... .......... 96% 143M 0s +2024-04-02T21:23:20Z #14 3.411 121850K .......... .......... .......... .......... .......... 96% 116M 0s +2024-04-02T21:23:20Z #14 3.411 121900K .......... .......... .......... .......... .......... 96% 123M 0s +2024-04-02T21:23:20Z #14 3.411 121950K .......... .......... .......... .......... .......... 96% 135M 0s +2024-04-02T21:23:20Z #14 3.411 122000K .......... .......... .......... .......... .......... 96% 110M 0s +2024-04-02T21:23:20Z #14 3.411 122050K .......... .......... .......... .......... .......... 96% 138M 0s +2024-04-02T21:23:20Z #14 3.411 122100K .......... .......... .......... .......... .......... 96% 132M 0s +2024-04-02T21:23:20Z #14 3.411 122150K .......... .......... .......... .......... .......... 96% 90.7M 0s +2024-04-02T21:23:20Z #14 3.413 122200K .......... .......... .......... .......... .......... 96% 124M 0s +2024-04-02T21:23:20Z #14 3.413 122250K .......... .......... .......... .......... .......... 96% 123M 0s +2024-04-02T21:23:20Z #14 3.413 122300K .......... .......... .......... .......... .......... 96% 120M 0s +2024-04-02T21:23:20Z #14 3.413 122350K .......... .......... .......... .......... .......... 96% 121M 0s +2024-04-02T21:23:20Z #14 3.413 122400K .......... .......... .......... .......... .......... 96% 112M 0s +2024-04-02T21:23:20Z #14 3.414 122450K .......... .......... .......... .......... .......... 96% 126M 0s +2024-04-02T21:23:20Z #14 3.414 122500K .......... .......... .......... .......... .......... 96% 113M 0s +2024-04-02T21:23:20Z #14 3.414 122550K .......... .......... .......... .......... .......... 96% 101M 0s +2024-04-02T21:23:20Z #14 3.415 122600K .......... .......... .......... .......... .......... 96% 153M 0s +2024-04-02T21:23:20Z #14 3.415 122650K .......... .......... .......... .......... .......... 96% 119M 0s +2024-04-02T21:23:20Z #14 3.415 122700K .......... .......... .......... .......... .......... 96% 52.1M 0s +2024-04-02T21:23:20Z #14 3.416 122750K .......... .......... .......... .......... .......... 96% 33.4M 0s +2024-04-02T21:23:20Z #14 3.418 122800K .......... .......... .......... .......... .......... 96% 40.6M 0s +2024-04-02T21:23:20Z #14 3.419 122850K .......... .......... .......... .......... .......... 96% 44.8M 0s +2024-04-02T21:23:20Z #14 3.420 122900K .......... .......... .......... .......... .......... 96% 20.3M 0s +2024-04-02T21:23:20Z #14 3.423 122950K .......... .......... .......... .......... .......... 97% 145M 0s +2024-04-02T21:23:20Z #14 3.423 123000K .......... .......... .......... .......... .......... 97% 123M 0s +2024-04-02T21:23:20Z #14 3.423 123050K .......... .......... .......... .......... .......... 97% 82.2M 0s +2024-04-02T21:23:20Z #14 3.424 123100K .......... .......... .......... .......... .......... 97% 76.8M 0s +2024-04-02T21:23:20Z #14 3.426 123150K .......... .......... .......... .......... .......... 97% 112M 0s +2024-04-02T21:23:20Z #14 3.426 123200K .......... .......... .......... .......... .......... 97% 122M 0s +2024-04-02T21:23:20Z #14 3.426 123250K .......... .......... .......... .......... .......... 97% 115M 0s +2024-04-02T21:23:20Z #14 3.426 123300K .......... .......... .......... .......... .......... 97% 87.8M 0s +2024-04-02T21:23:20Z #14 3.426 123350K .......... .......... .......... .......... .......... 97% 47.3M 0s +2024-04-02T21:23:20Z #14 3.428 123400K .......... .......... .......... .......... .......... 97% 125M 0s +2024-04-02T21:23:20Z #14 3.428 123450K .......... .......... .......... .......... .......... 97% 104M 0s +2024-04-02T21:23:20Z #14 3.428 123500K .......... .......... .......... .......... .......... 97% 13.3M 0s +2024-04-02T21:23:20Z #14 3.433 123550K .......... .......... .......... .......... .......... 97% 27.8M 0s +2024-04-02T21:23:20Z #14 3.434 123600K .......... .......... .......... .......... .......... 97% 129M 0s +2024-04-02T21:23:20Z #14 3.434 123650K .......... .......... .......... .......... .......... 97% 114M 0s +2024-04-02T21:23:20Z #14 3.434 123700K .......... .......... .......... .......... .......... 97% 25.5M 0s +2024-04-02T21:23:20Z #14 3.437 123750K .......... .......... .......... .......... .......... 97% 123M 0s +2024-04-02T21:23:20Z #14 3.437 123800K .......... .......... .......... .......... .......... 97% 83.5M 0s +2024-04-02T21:23:20Z #14 3.438 123850K .......... .......... .......... .......... .......... 97% 38.3M 0s +2024-04-02T21:23:20Z #14 3.439 123900K .......... .......... .......... .......... .......... 97% 33.4M 0s +2024-04-02T21:23:20Z #14 3.440 123950K .......... .......... .......... .......... .......... 97% 62.5M 0s +2024-04-02T21:23:20Z #14 3.441 124000K .......... .......... .......... .......... .......... 97% 119M 0s +2024-04-02T21:23:20Z #14 3.441 124050K .......... .......... .......... .......... .......... 97% 131M 0s +2024-04-02T21:23:20Z #14 3.441 124100K .......... .......... .......... .......... .......... 97% 90.9M 0s +2024-04-02T21:23:20Z #14 3.443 124150K .......... .......... .......... .......... .......... 97% 129M 0s +2024-04-02T21:23:20Z #14 3.443 124200K .......... .......... .......... .......... .......... 98% 135M 0s +2024-04-02T21:23:20Z #14 3.443 124250K .......... .......... .......... .......... .......... 98% 106M 0s +2024-04-02T21:23:20Z #14 3.444 124300K .......... .......... .......... .......... .......... 98% 146M 0s +2024-04-02T21:23:20Z #14 3.444 124350K .......... .......... .......... .......... .......... 98% 109M 0s +2024-04-02T21:23:20Z #14 3.444 124400K .......... .......... .......... .......... .......... 98% 113M 0s +2024-04-02T21:23:20Z #14 3.445 124450K .......... .......... .......... .......... .......... 98% 130M 0s +2024-04-02T21:23:20Z #14 3.445 124500K .......... .......... .......... .......... .......... 98% 131M 0s +2024-04-02T21:23:20Z #14 3.445 124550K .......... .......... .......... .......... .......... 98% 105M 0s +2024-04-02T21:23:20Z #14 3.446 124600K .......... .......... .......... .......... .......... 98% 124M 0s +2024-04-02T21:23:20Z #14 3.446 124650K .......... .......... .......... .......... .......... 98% 118M 0s +2024-04-02T21:23:20Z #14 3.447 124700K .......... .......... .......... .......... .......... 98% 107M 0s +2024-04-02T21:23:20Z #14 3.447 124750K .......... .......... .......... .......... .......... 98% 121M 0s +2024-04-02T21:23:20Z #14 3.447 124800K .......... .......... .......... .......... .......... 98% 119M 0s +2024-04-02T21:23:20Z #14 3.448 124850K .......... .......... .......... .......... .......... 98% 143M 0s +2024-04-02T21:23:20Z #14 3.448 124900K .......... .......... .......... .......... .......... 98% 106M 0s +2024-04-02T21:23:20Z #14 3.448 124950K .......... .......... .......... .......... .......... 98% 114M 0s +2024-04-02T21:23:20Z #14 3.450 125000K .......... .......... .......... .......... .......... 98% 144M 0s +2024-04-02T21:23:20Z #14 3.450 125050K .......... .......... .......... .......... .......... 98% 130M 0s +2024-04-02T21:23:20Z #14 3.450 125100K .......... .......... .......... .......... .......... 98% 108M 0s +2024-04-02T21:23:20Z #14 3.451 125150K .......... .......... .......... .......... .......... 98% 108M 0s +2024-04-02T21:23:20Z #14 3.451 125200K .......... .......... .......... .......... .......... 98% 118M 0s +2024-04-02T21:23:20Z #14 3.452 125250K .......... .......... .......... .......... .......... 98% 13.8M 0s +2024-04-02T21:23:20Z #14 3.456 125300K .......... .......... .......... .......... .......... 98% 78.0M 0s +2024-04-02T21:23:20Z #14 3.456 125350K .......... .......... .......... .......... .......... 98% 112M 0s +2024-04-02T21:23:20Z #14 3.456 125400K .......... .......... .......... .......... .......... 98% 150M 0s +2024-04-02T21:23:20Z #14 3.457 125450K .......... .......... .......... .......... .......... 98% 71.4M 0s +2024-04-02T21:23:20Z #14 3.457 125500K .......... .......... .......... .......... .......... 99% 110M 0s +2024-04-02T21:23:20Z #14 3.457 125550K .......... .......... .......... .......... .......... 99% 114M 0s +2024-04-02T21:23:20Z #14 3.459 125600K .......... .......... .......... .......... .......... 99% 136M 0s +2024-04-02T21:23:20Z #14 3.459 125650K .......... .......... .......... .......... .......... 99% 131M 0s +2024-04-02T21:23:20Z #14 3.459 125700K .......... .......... .......... .......... .......... 99% 129M 0s +2024-04-02T21:23:20Z #14 3.459 125750K .......... .......... .......... .......... .......... 99% 120M 0s +2024-04-02T21:23:20Z #14 3.459 125800K .......... .......... .......... .......... .......... 99% 16.5M 0s +2024-04-02T21:23:20Z #14 3.463 125850K .......... .......... .......... .......... .......... 99% 96.0M 0s +2024-04-02T21:23:20Z #14 3.463 125900K .......... .......... .......... .......... .......... 99% 125M 0s +2024-04-02T21:23:20Z #14 3.463 125950K .......... .......... .......... .......... .......... 99% 25.2M 0s +2024-04-02T21:23:20Z #14 3.465 126000K .......... .......... .......... .......... .......... 99% 907K 0s +2024-04-02T21:23:20Z #14 3.527 126050K .......... .......... .......... .......... .......... 99% 103M 0s +2024-04-02T21:23:20Z #14 3.527 126100K .......... .......... .......... .......... .......... 99% 167M 0s +2024-04-02T21:23:20Z #14 3.527 126150K .......... .......... .......... .......... .......... 99% 185M 0s +2024-04-02T21:23:20Z #14 3.527 126200K .......... .......... .......... .......... .......... 99% 146M 0s +2024-04-02T21:23:20Z #14 3.527 126250K .......... .......... .......... .......... .......... 99% 146M 0s +2024-04-02T21:23:20Z #14 3.527 126300K .......... .......... .......... .......... .......... 99% 183M 0s +2024-04-02T21:23:20Z #14 3.527 126350K .......... .......... .......... .......... .......... 99% 167M 0s +2024-04-02T21:23:20Z #14 3.527 126400K .......... .......... .......... .......... .......... 99% 169M 0s +2024-04-02T21:23:20Z #14 3.527 126450K .......... .......... .......... .......... .......... 99% 147M 0s +2024-04-02T21:23:20Z #14 3.527 126500K .......... .......... .......... .......... .......... 99% 135M 0s +2024-04-02T21:23:20Z #14 3.527 126550K .......... .......... .......... .......... .......... 99% 166M 0s +2024-04-02T21:23:20Z #14 3.527 126600K .......... .......... .......... .......... .......... 99% 179M 0s +2024-04-02T21:23:20Z #14 3.527 126650K .......... .......... .......... .......... .......... 99% 145M 0s +2024-04-02T21:23:20Z #14 3.527 126700K .......... .......... .......... .......... .......... 99% 192M 0s +2024-04-02T21:23:20Z #14 3.527 126750K .......... .......... .......... .. 100% 150M=2.2s +2024-04-02T21:23:20Z #14 3.527 +2024-04-02T21:23:20Z #14 3.527 2024-04-02 21:23:20 (57.5 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] +2024-04-02T21:23:20Z #14 3.527 +2024-04-02T21:23:22Z #14 4.968 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' +2024-04-02T21:23:22Z #14 4.990 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-04-02T21:23:22Z #14 DONE 5.4s +2024-04-02T21:23:22Z +2024-04-02T21:23:22Z #15 exporting to image +2024-04-02T21:23:22Z #15 exporting layers +2024-04-02T21:25:27Z #15 exporting layers 125.5s done +2024-04-02T21:25:27Z #15 writing image sha256:109ac01a3dce19209ed4c20243931c10f55719ff3e2ef717aade1292659df6eb done +2024-04-02T21:25:27Z #15 naming to docker.io/pavics/workflow-tests:py310-240402 done +2024-04-02T21:25:27Z #15 DONE 125.5s +2024-04-02T21:25:27Z Pushing index.docker.io/pavics/workflow-tests:py310-240402... +2024-04-02T21:32:29Z Done! +2024-04-02T21:32:29Z Build finished From 45f91c87783876b8ab8ef6e02786825b087905b5 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 2 Apr 2024 19:56:08 -0400 Subject: [PATCH 055/104] docker: py310-240402: conda env export --- docker/saved_buildout/conda-env-export.yml | 115 +++++++++++---------- 1 file changed, 60 insertions(+), 55 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index a989c34..7b70295 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -15,7 +15,7 @@ dependencies: - aiosqlite=0.19.0=pyhd8ed1ab_0 - alembic=1.13.1=pyhd8ed1ab_1 - alsa-lib=1.2.8=h166bdaf_0 - - altair=5.2.0=pyhd8ed1ab_1 + - altair=5.3.0=pyhd8ed1ab_0 - annotated-types=0.6.0=pyhd8ed1ab_0 - anyio=4.3.0=pyhd8ed1ab_0 - aom=3.5.0=h27087fc_0 @@ -23,25 +23,27 @@ dependencies: - argon2-cffi=23.1.0=pyhd8ed1ab_0 - argon2-cffi-bindings=21.2.0=py310h2372a71_4 - arrow=1.3.0=pyhd8ed1ab_0 + - arrow-cpp=11.0.0=ha770c72_14_cpu - asciitree=0.3.3=py_2 - asttokens=2.4.1=pyhd8ed1ab_0 - async-timeout=4.0.3=pyhd8ed1ab_0 - async_generator=1.10=py_0 - attr=2.5.1=h166bdaf_1 - attrs=23.2.0=pyh71513ae_0 - - aws-c-auth=0.7.0=hf8751d9_2 - - aws-c-cal=0.6.0=h93469e0_0 - - aws-c-common=0.8.23=hd590300_0 - - aws-c-compression=0.2.17=h862ab75_1 - - aws-c-event-stream=0.3.1=h9599702_1 - - aws-c-http=0.7.11=hbe98c3e_0 - - aws-c-io=0.13.28=h3870b5a_0 - - aws-c-mqtt=0.8.14=h2e270ba_2 - - aws-c-s3=0.3.13=heb0bb06_2 - - aws-c-sdkutils=0.1.11=h862ab75_1 - - aws-checksums=0.1.16=h862ab75_1 - - aws-crt-cpp=0.20.3=he9c0e7f_4 - - aws-sdk-cpp=1.10.57=hbc2ea52_17 + - aws-c-auth=0.6.26=h987a71b_2 + - aws-c-cal=0.5.21=h48707d8_2 + - aws-c-common=0.8.14=h0b41bf4_0 + - aws-c-compression=0.2.16=h03acc5a_5 + - aws-c-event-stream=0.2.20=h00877a2_4 + - aws-c-http=0.7.6=hf342b9f_0 + - aws-c-io=0.13.19=h5b20300_3 + - aws-c-mqtt=0.8.6=hc4349f7_12 + - aws-c-s3=0.2.7=h909e904_1 + - aws-c-sdkutils=0.1.9=h03acc5a_0 + - aws-checksums=0.1.14=h03acc5a_5 + - aws-crt-cpp=0.19.8=hf7fbfca_12 + - aws-sdk-cpp=1.10.57=h17c43bd_8 + - azure-core-cpp=1.10.3=h22d5011_0 - babel=2.14.0=pyhd8ed1ab_0 - bcrypt=4.1.2=py310hcb5633a_0 - beautifulsoup4=4.12.3=pyha770c72_0 @@ -51,7 +53,7 @@ dependencies: - blinker=1.7.0=pyhd8ed1ab_0 - blosc=1.21.5=h0f2a231_0 - bokeh=3.3.4=pyhd8ed1ab_0 - - boltons=23.1.1=pyhd8ed1ab_0 + - boltons=24.0.0=pyhd8ed1ab_0 - boost-cpp=1.78.0=h5adbc97_2 - botocore=1.34.51=pyge310_1234567_0 - bottleneck=1.3.8=py310h1f7b6fc_0 @@ -61,8 +63,8 @@ dependencies: - brotli-python=1.0.9=py310hd8f1fbe_9 - brunsli=0.1=h9c3ff4c_0 - bzip2=1.0.8=hd590300_5 - - c-ares=1.27.0=hd590300_0 - - c-blosc2=2.13.2=hb4ffafa_0 + - c-ares=1.28.1=hd590300_0 + - c-blosc2=2.14.0=hb4ffafa_0 - ca-certificates=2024.2.2=hbcca054_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 @@ -92,17 +94,17 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_0 - colorcet=3.1.0=pyhd8ed1ab_0 - comm=0.2.2=pyhd8ed1ab_0 - - configurable-http-proxy=4.5.4=he2f69ee_2 + - configurable-http-proxy=4.5.6=h3b247e2_0 - contourpy=1.2.0=py310hd41b1e2_0 - coverage=7.4.4=py310h2372a71_0 - cryptography=42.0.2=py310hb8475ec_0 - - curl=8.1.2=h409715c_0 + - curl=7.88.1=hdc1c0ab_1 - cycler=0.12.1=pyhd8ed1ab_0 - cytoolz=0.12.3=py310h2372a71_0 - dash=2.16.1=pyhd8ed1ab_0 - - dask=2024.3.1=pyhd8ed1ab_0 - - dask-core=2024.3.1=pyhd8ed1ab_0 - - dask-expr=1.0.4=pyhd8ed1ab_0 + - dask=2024.4.0=pyhd8ed1ab_0 + - dask-core=2024.4.0=pyhd8ed1ab_0 + - dask-expr=1.0.9=pyhd8ed1ab_0 - dask-labextension=6.2.0=pyhd8ed1ab_0 - dataclasses=0.8=pyhc8e2a94_3 - datashader=0.16.0=pyhd8ed1ab_0 @@ -115,7 +117,7 @@ dependencies: - dill=0.3.8=pyhd8ed1ab_0 - distarray=2.12.2=pyh050c7b8_4 - distlib=0.3.8=pyhd8ed1ab_0 - - distributed=2024.3.1=pyhd8ed1ab_0 + - distributed=2024.4.0=pyhd8ed1ab_0 - docopt=0.6.2=py_1 - docrep=0.3.2=pyh44b312d_0 - eccodes=2.28.0=h7513371_1 @@ -133,11 +135,12 @@ dependencies: - fasteners=0.17.3=pyhd8ed1ab_0 - fastprogress=1.0.3=pyhd8ed1ab_0 - fftw=3.3.10=nompi_hc118613_108 - - filelock=3.13.1=pyhd8ed1ab_0 + - filelock=3.13.3=pyhd8ed1ab_0 - findlibs=0.0.5=pyhd8ed1ab_0 - fiona=1.9.1=py310ha325b7b_0 - flask=3.0.2=pyhd8ed1ab_0 - - flox=0.9.5=pyhd8ed1ab_0 + - flox=0.9.6=pyhd8ed1ab_0 + - fmt=10.2.1=h00ab1b0_0 - folium=0.16.0=pyhd8ed1ab_0 - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 @@ -171,7 +174,7 @@ dependencies: - gflags=2.2.2=he1b5a44_1004 - giflib=5.2.1=h0b41bf4_3 - gitdb=4.0.11=pyhd8ed1ab_0 - - gitpython=3.1.42=pyhd8ed1ab_0 + - gitpython=3.1.43=pyhd8ed1ab_0 - glib=2.78.1=hfc55251_0 - glib-tools=2.78.1=hfc55251_0 - glog=0.6.0=h6f12383_0 @@ -184,9 +187,9 @@ dependencies: - google-crc32c=1.1.2=py310hc5c09a0_5 - google-resumable-media=2.7.0=pyhd8ed1ab_0 - googleapis-common-protos=1.63.0=pyhd8ed1ab_0 - - graphite2=1.3.13=h58526e2_1001 + - graphite2=1.3.13=h59595ed_1003 - greenlet=3.0.3=py310hc6cd4ac_0 - - grpcio=1.56.2=py310h1b8f574_1 + - grpcio=1.52.1=py310heca2aa9_1 - gst-plugins-base=1.22.0=h4243ec0_2 - gstreamer=1.22.0=h25f0c4b_2 - gstreamer-orc=0.4.38=hd590300_0 @@ -250,8 +253,8 @@ dependencies: - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 - jupyter_telemetry=0.1.0=pyhd8ed1ab_1 - jupyter_ydoc=0.2.4=pyhd8ed1ab_0 - - jupyterhub=4.1.0=pyh31011fe_0 - - jupyterhub-base=4.1.0=pyh31011fe_0 + - jupyterhub=4.1.4=pyh31011fe_0 + - jupyterhub-base=4.1.4=pyh31011fe_0 - jupyterlab=3.6.7=pyhd8ed1ab_0 - jupyterlab-git=0.8.2=py_0 - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 @@ -271,10 +274,10 @@ dependencies: - lcms2=2.15=hfd0df8a_0 - ld_impl_linux-64=2.40=h41732ed_0 - lerc=4.0.0=h27087fc_0 - - libabseil=20230125.3=cxx17_h59595ed_0 + - libabseil=20230125.0=cxx17_hcb278e6_1 - libaec=1.1.3=h59595ed_0 - libarchive=3.6.2=h3d51595_0 - - libarrow=12.0.1=h657c46f_7_cpu + - libarrow=11.0.0=h93537a5_14_cpu - libavif=0.11.1=h8182462_2 - libblas=3.9.0=21_linux64_openblas - libbrotlicommon=1.0.9=h166bdaf_9 @@ -288,7 +291,7 @@ dependencies: - libclang13=15.0.7=default_h5d6823c_5 - libcrc32c=1.1.2=h9c3ff4c_0 - libcups=2.3.3=h36d4200_3 - - libcurl=8.1.2=h409715c_0 + - libcurl=7.88.1=hdc1c0ab_1 - libdb=6.2.32=h9c3ff4c_0 - libdeflate=1.17=h0b41bf4_0 - libdrm=2.4.120=hd590300_0 @@ -308,9 +311,9 @@ dependencies: - libglib=2.78.1=hebfc3b9_0 - libglu=9.0.0=he1b5a44_1001 - libgomp=13.2.0=h807b86a_5 - - libgoogle-cloud=2.12.0=h840a212_1 + - libgoogle-cloud=2.8.0=h0bc5f78_1 - libgpg-error=1.48=h71f35ed_0 - - libgrpc=1.56.2=h3905398_1 + - libgrpc=1.52.1=hcf146ea_1 - libiconv=1.17=hd590300_2 - libidn2=2.3.7=hd590300_0 - libjpeg-turbo=2.1.4=h166bdaf_0 @@ -331,7 +334,7 @@ dependencies: - libpciaccess=0.18=hd590300_0 - libpng=1.6.43=h2797004_0 - libpq=15.2=hb675445_0 - - libprotobuf=4.23.3=hd1fb520_1 + - libprotobuf=3.21.12=hfc55251_2 - librttopo=1.1.0=ha49c73b_12 - libsndfile=1.2.2=hc60ed4a_1 - libsodium=1.0.18=h36c2ea0_1 @@ -416,12 +419,12 @@ dependencies: - nettle=3.9.1=h7ab15ed_0 - networkx=3.2.1=pyhd8ed1ab_0 - nodeenv=1.8.0=pyhd8ed1ab_0 - - nodejs=18.15.0=h8d033a5_0 + - nodejs=16.19.0=h8d033a5_0 - notebook=6.5.6=pyha770c72_0 - notebook-shim=0.2.4=pyhd8ed1ab_0 - nspr=4.35=h27087fc_0 - nss=3.98=h1d7d5a4_0 - - numba=0.59.0=py310h7dc5dd1_1 + - numba=0.59.1=py310h7dc5dd1_0 - numcodecs=0.12.1=py310hc6cd4ac_0 - numpy=1.24.4=py310ha4c1d20_0 - numpy_groupies=0.10.2=pyhd8ed1ab_0 @@ -430,7 +433,7 @@ dependencies: - openjpeg=2.5.0=hfec8fc6_2 - openmpi=4.1.6=h336e698_100 - openssl=3.1.5=hd590300_0 - - orc=1.9.0=h385abfd_1 + - orc=1.8.3=h2f23424_1 - outcome=1.3.0.post0=pyhd8ed1ab_0 - overrides=7.7.0=pyhd8ed1ab_0 - owslib=0.28.1=pyhd8ed1ab_0 @@ -443,6 +446,7 @@ dependencies: - panel=1.3.8=pyhd8ed1ab_0 - param=2.1.0=pyhca7485f_0 - paramiko=3.4.0=pyhd8ed1ab_0 + - parquet-cpp=1.5.1=2 - parse=1.20.1=pyhd8ed1ab_0 - parso=0.8.3=pyhd8ed1ab_0 - partd=1.4.1=pyhd8ed1ab_0 @@ -466,14 +470,14 @@ dependencies: - postgresql=15.2=h3248436_0 - pox=0.3.4=pyhd8ed1ab_0 - ppft=1.7.6.8=pyhd8ed1ab_0 - - pre-commit=3.6.2=pyha770c72_0 + - pre-commit=3.7.0=pyha770c72_0 - proj=9.1.1=h8ffa02c_2 - prometheus_client=0.20.0=pyhd8ed1ab_0 - prompt-toolkit=3.0.42=pyha770c72_0 - prompt_toolkit=3.0.42=hd8ed1ab_0 - properscoring=0.1=py_0 - proto-plus=1.23.0=pyhd8ed1ab_0 - - protobuf=4.23.3=py310hb875b13_0 + - protobuf=4.21.12=py310heca2aa9_0 - pscript=0.7.7=pyhd8ed1ab_0 - psutil=5.9.8=py310h2372a71_0 - pthread-stubs=0.4=h36c2ea0_1001 @@ -482,11 +486,11 @@ dependencies: - pulseaudio-client=16.1=h5195f5e_3 - pulseaudio-daemon=16.1=ha8d29e2_3 - pure_eval=0.2.2=pyhd8ed1ab_0 - - pyarrow=12.0.1=py310h0576679_7_cpu + - pyarrow=11.0.0=py310h633f555_14_cpu - pyarrow-hotfix=0.6=pyhd8ed1ab_0 - pyasn1=0.5.1=pyhd8ed1ab_0 - pyasn1-modules=0.3.0=pyhd8ed1ab_0 - - pycparser=2.21=pyhd8ed1ab_0 + - pycparser=2.22=pyhd8ed1ab_0 - pyct=0.5.0=pyhd8ed1ab_0 - pycurl=7.45.1=py310h60f9ec7_3 - pydantic=2.6.4=pyhd8ed1ab_0 @@ -530,8 +534,8 @@ dependencies: - rasterio=1.3.6=py310h3e853a9_0 - raven-hydro=0.2.4=py310hee4f699_0 - ravenpy=0.13.0=py310hff52083_0 - - rdma-core=50.0=hd3aeb46_1 - - re2=2023.03.02=h8c504da_0 + - rdma-core=51.0=hd3aeb46_0 + - re2=2023.02.02=hcb278e6_0 - readline=8.2=h8228510_1 - rechunker=0.5.2=pyhd8ed1ab_1 - referencing=0.34.0=pyhd8ed1ab_0 @@ -539,12 +543,12 @@ dependencies: - requests=2.31.0=pyhd8ed1ab_0 - requests-cache=1.2.0=pyhd8ed1ab_0 - requests-magpie=0.2.0=pyhd8ed1ab_0 - - requests-oauthlib=1.4.0=pyhd8ed1ab_0 + - requests-oauthlib=2.0.0=pyhd8ed1ab_0 - retrying=1.3.3=py_2 - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rich=13.7.1=pyhd8ed1ab_0 - - rioxarray=0.15.1=pyhd8ed1ab_0 + - rioxarray=0.15.2=pyhd8ed1ab_0 - roocs-grids=0.1.2=pyhd8ed1ab_0 - roocs-utils=0.6.7=pyhca7485f_0 - rpds-py=0.18.0=py310hcb5633a_0 @@ -552,7 +556,7 @@ dependencies: - rtree=1.2.0=py310hbdcdc62_0 - ruamel.yaml=0.18.6=py310h2372a71_0 - ruamel.yaml.clib=0.2.8=py310h2372a71_0 - - s2n=1.3.46=h06160fa_0 + - s2n=1.3.41=h3358134_0 - s3fs=2024.3.1=pyhd8ed1ab_0 - salib=1.4.8=pyhd8ed1ab_0 - scikit-image=0.22.0=py310hcc13569_2 @@ -561,8 +565,8 @@ dependencies: - scp=0.14.5=pyhd8ed1ab_0 - seaborn=0.13.2=hd8ed1ab_0 - seaborn-base=0.13.2=pyhd8ed1ab_0 - - selenium=4.18.1=pyhd8ed1ab_0 - - selenium-manager=4.18.1=he8a937b_0 + - selenium=4.19.0=pyhd8ed1ab_0 + - selenium-manager=4.19.0=he8a937b_0 - send2trash=1.8.2=pyh41d4057_0 - setuptools=69.2.0=pyhd8ed1ab_0 - shapely=2.0.1=py310h8b84c32_0 @@ -577,8 +581,9 @@ dependencies: - sortedcontainers=2.4.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sparse=0.15.1=pyhd8ed1ab_1 + - spdlog=1.12.0=hd2e6256_2 - spotpy=1.6.2=pyhd8ed1ab_0 - - sqlalchemy=2.0.28=py310h2372a71_0 + - sqlalchemy=2.0.29=py310h2372a71_0 - sqlite=3.45.2=h2c6b66d_0 - stack_data=0.6.2=pyhd8ed1ab_0 - statsmodels=0.14.1=py310h1f7b6fc_0 @@ -618,9 +623,9 @@ dependencies: - url-normalize=1.4.3=pyhd8ed1ab_0 - urllib3=2.0.7=pyhd8ed1ab_0 - urlpath=1.2.0=pyhd8ed1ab_0 - - validators=0.23.2=pyhd8ed1ab_0 + - validators=0.25.0=pyhd8ed1ab_0 - virtualenv=20.25.1=pyhd8ed1ab_0 - - voila=0.5.5=pyhd8ed1ab_0 + - voila=0.5.6=pyhd8ed1ab_0 - watchdog=4.0.0=py310hff52083_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 @@ -630,7 +635,7 @@ dependencies: - websockets=12.0=py310h2372a71_0 - werkzeug=3.0.1=pyhd8ed1ab_0 - wget=1.20.3=ha35d2d1_1 - - wheel=0.43.0=pyhd8ed1ab_0 + - wheel=0.43.0=pyhd8ed1ab_1 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - wrapt=1.16.0=py310h2372a71_0 - wsproto=1.2.0=pyhd8ed1ab_0 @@ -718,5 +723,5 @@ dependencies: - rdflib==5.0.0 - xmltodict==0.13.0 - xncml==0.4.0 - - xsdata==24.3.1 + - xsdata==24.4 prefix: /opt/conda/envs/birdy From 05c6a4c4ae754a62ef69503fbea02ff5ce25c261 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 2 Apr 2024 20:22:14 -0400 Subject: [PATCH 056/104] docker: py310-240402: jenkins default nb: homepage nb 4 and 1 intermittent homepage nb 4: AttributeError: 'Dataset' object has no attribute 'description'. Intermittent is WMS_example: NASA server glitch. --- .../jenkins-buildlogs-default.txt | 2149 ++++++++--------- 1 file changed, 1055 insertions(+), 1094 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index cd7bf57..79a6ecb 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -17,7 +17,7 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from 4776dee0ea8bcfb081d08df0ba3ac0198b5703c9 +Obtained Jenkinsfile from fbe057b1fb1c37a3611c45502e088c24533e6b12 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -29,1102 +29,1064 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision 4776dee0ea8bcfb081d08df0ba3ac0198b5703c9 (new-docker-build) -Commit message: "docker: py310-240323: conda env" +Checking out Revision fbe057b1fb1c37a3611c45502e088c24533e6b12 (new-docker-build) > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 > git config core.sparsecheckout # timeout=10 - > git checkout -f 4776dee0ea8bcfb081d08df0ba3ac0198b5703c9 # timeout=10 - > git rev-list --no-walk 4776dee0ea8bcfb081d08df0ba3ac0198b5703c9 # timeout=10 + > git checkout -f fbe057b1fb1c37a3611c45502e088c24533e6b12 # timeout=10 +Commit message: "docker: py310-240402: build log" + > git rev-list --no-walk f7e7c43d9da06b7e8af4e117d2738700b681a920 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240323 ++ docker inspect -f . pavics/workflow-tests:py310-240402 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240323 cat -$ docker top 243fa8c5fdb17a3f19bb778abbabe55b4c4558e10481f75293ba2f6b4aedab03 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240402 cat +$ docker top f262edeb29bf9aea0954c3fdbe768e35b32e6a65d7c416dc3414ca3469efbe74 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-23T19:24:02.241Z] Timeout set to expire in 2 hr 0 min +[2024-04-02T23:51:57.984Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-23T19:24:02.351Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-02T23:51:58.615Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-23T19:24:02.647Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-23T19:24:02.647Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-23T19:24:02.647Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-03-23T19:24:02.647Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-23T19:24:02.647Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-23T19:24:02.647Z] FINCH_BRANCH has been set to 'master' -[2024-03-23T19:24:02.647Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-23T19:24:02.647Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-23T19:24:02.647Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-03-23T19:24:02.647Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-23T19:24:02.647Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-23T19:24:02.647Z] RAVEN_BRANCH has been set to 'main' -[2024-03-23T19:24:02.647Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-23T19:24:02.647Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-23T19:24:02.647Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-23T19:24:02.647Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-23T19:24:02.647Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-23T19:24:02.647Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-23T19:24:02.647Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-23T19:24:02.647Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-23T19:24:02.647Z] + git clean -fdx -[2024-03-23T19:24:02.904Z] Removing .pytest_cache/ -[2024-03-23T19:24:02.904Z] Removing RavenPy-master/ -[2024-03-23T19:24:02.904Z] Removing __pycache__/ -[2024-03-23T19:24:02.904Z] Removing buildout/ -[2024-03-23T19:24:02.904Z] Removing esgf-compute-api-devel/ -[2024-03-23T19:24:02.904Z] Removing finch-master/ -[2024-03-23T19:24:02.904Z] Removing raven-main/ -[2024-03-23T19:24:02.904Z] + ./downloadrepos -[2024-03-23T19:24:02.904Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-03-23T19:24:02.904Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-03-23T19:24:02.904Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-23T19:24:02.904Z] TEST_FINCH_REPO has been set to 'true' -[2024-03-23T19:24:02.904Z] FINCH_BRANCH has been set to 'master' -[2024-03-23T19:24:02.904Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-23T19:24:02.904Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-03-23T19:24:02.904Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-03-23T19:24:02.904Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-23T19:24:02.904Z] TEST_RAVEN_REPO has been set to 'false' -[2024-03-23T19:24:02.904Z] RAVEN_BRANCH has been set to 'main' -[2024-03-23T19:24:02.904Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-23T19:24:02.904Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-03-23T19:24:02.904Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-23T19:24:02.904Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-23T19:24:02.904Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-23T19:24:02.904Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-23T19:24:02.904Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-23T19:24:02.904Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-03-23T19:24:02.904Z] + rm -rf pavics-sdi-* -[2024-03-23T19:24:02.904Z] + ls -[2024-03-23T19:24:02.904Z] + grep pavics-sdi -[2024-03-23T19:24:02.904Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:02.904Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-23T19:24:02.904Z] + shift -[2024-03-23T19:24:02.904Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:02.904Z] + shift -[2024-03-23T19:24:02.904Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-03-23T19:24:02.904Z] + tar xz -[2024-03-23T19:24:07.082Z] + ls -[2024-03-23T19:24:07.082Z] + grep pavics-sdi -[2024-03-23T19:24:07.082Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:07.082Z] + set +x -[2024-03-23T19:24:07.082Z] + rm -rf finch-* -[2024-03-23T19:24:07.082Z] + ls -[2024-03-23T19:24:07.082Z] + grep finch -[2024-03-23T19:24:07.082Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-23T19:24:07.082Z] + github_repo=https://github.com/bird-house/finch -[2024-03-23T19:24:07.082Z] + shift -[2024-03-23T19:24:07.082Z] + branch=master -[2024-03-23T19:24:07.082Z] + shift -[2024-03-23T19:24:07.082Z] + + wget --quiet --output-document -tar https://github.com/bird-house/finch/archive/master.tar.gz xz -[2024-03-23T19:24:07.082Z] -[2024-03-23T19:24:08.450Z] + ls -[2024-03-23T19:24:08.450Z] + grep finch -[2024-03-23T19:24:08.450Z] finch-master -[2024-03-23T19:24:08.450Z] + set +x -[2024-03-23T19:24:08.450Z] + rm -rf PAVICS-landing-* -[2024-03-23T19:24:08.450Z] + ls -[2024-03-23T19:24:08.450Z] + grep PAVICS-landing -[2024-03-23T19:24:08.450Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:08.450Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-23T19:24:08.450Z] + shift -[2024-03-23T19:24:08.450Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:08.450Z] + shift -[2024-03-23T19:24:08.450Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-03-23T19:24:08.450Z] + tar xz -[2024-03-23T19:24:20.626Z] + ls -[2024-03-23T19:24:20.626Z] + grep PAVICS-landing -[2024-03-23T19:24:20.626Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:20.626Z] + set +x -[2024-03-23T19:24:20.626Z] + rm -rf raven-* -[2024-03-23T19:24:20.626Z] + ls -[2024-03-23T19:24:20.626Z] + grep raven -[2024-03-23T19:24:20.626Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-23T19:24:20.626Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-23T19:24:20.626Z] + shift -[2024-03-23T19:24:20.626Z] + branch=main -[2024-03-23T19:24:20.626Z] + shift -[2024-03-23T19:24:20.626Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-23T19:24:20.626Z] + tar xz -[2024-03-23T19:24:20.626Z] + ls -[2024-03-23T19:24:20.626Z] + grep raven -[2024-03-23T19:24:20.626Z] raven-main -[2024-03-23T19:24:20.626Z] + set +x -[2024-03-23T19:24:20.626Z] + rm -rf RavenPy-* -[2024-03-23T19:24:20.626Z] + ls -[2024-03-23T19:24:20.626Z] + grep RavenPy -[2024-03-23T19:24:20.626Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-23T19:24:20.626Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-23T19:24:20.626Z] + shift -[2024-03-23T19:24:20.626Z] + branch=master -[2024-03-23T19:24:20.626Z] + shift -[2024-03-23T19:24:20.626Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-23T19:24:20.626Z] + tar xz -[2024-03-23T19:24:22.519Z] + ls -[2024-03-23T19:24:22.519Z] + grep RavenPy -[2024-03-23T19:24:22.519Z] RavenPy-master -[2024-03-23T19:24:22.519Z] + set +x -[2024-03-23T19:24:22.519Z] + rm -rf esgf-compute-api-* -[2024-03-23T19:24:22.519Z] + ls -[2024-03-23T19:24:22.519Z] + grep esgf-compute-api -[2024-03-23T19:24:22.519Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-23T19:24:22.519Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-23T19:24:22.519Z] + shift -[2024-03-23T19:24:22.519Z] + branch=devel -[2024-03-23T19:24:22.519Z] + shift -[2024-03-23T19:24:22.520Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-03-23T19:24:22.520Z] + tar xz -[2024-03-23T19:24:23.446Z] + ls -[2024-03-23T19:24:23.446Z] + grep esgf-compute-api -[2024-03-23T19:24:23.446Z] esgf-compute-api-devel -[2024-03-23T19:24:23.446Z] + set +x -[2024-03-23T19:24:23.446Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:23.446Z] + sed s@/@-@g -[2024-03-23T19:24:23.446Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:23.446Z] + echo Ouranosinc/pavics-sdi -[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g -[2024-03-23T19:24:23.446Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-23T19:24:23.446Z] + echo master -[2024-03-23T19:24:23.446Z] + sed s@/@-@g -[2024-03-23T19:24:23.446Z] + FINCH_BRANCH=master -[2024-03-23T19:24:23.446Z] + echo bird-house/finch -[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g -[2024-03-23T19:24:23.446Z] + FINCH_REPO_NAME=finch -[2024-03-23T19:24:23.446Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:23.446Z] + sed s@/@-@g -[2024-03-23T19:24:23.446Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:23.446Z] + echo Ouranosinc/PAVICS-landing -[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g -[2024-03-23T19:24:23.446Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-23T19:24:23.446Z] + echo main -[2024-03-23T19:24:23.446Z] + sed s@/@-@g -[2024-03-23T19:24:23.446Z] + RAVEN_BRANCH=main -[2024-03-23T19:24:23.446Z] + echo Ouranosinc/raven -[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g -[2024-03-23T19:24:23.446Z] + RAVEN_REPO_NAME=raven -[2024-03-23T19:24:23.446Z] + echo master -[2024-03-23T19:24:23.446Z] + sed s@/@-@g -[2024-03-23T19:24:23.446Z] + RAVENPY_BRANCH=master -[2024-03-23T19:24:23.446Z] + echo CSHS-CWRA/RavenPy -[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g -[2024-03-23T19:24:23.446Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-23T19:24:23.446Z] + echo devel -[2024-03-23T19:24:23.446Z] + sed s@/@-@g -[2024-03-23T19:24:23.446Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-23T19:24:23.446Z] + echo ESGF/esgf-compute-api -[2024-03-23T19:24:23.446Z] + sed s@^.*/@@g -[2024-03-23T19:24:23.446Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-23T19:24:23.446Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T19:24:23.446Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:23.446Z] + echo finch-master -[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T19:24:23.446Z] + FINCH_DIR=finch-master -[2024-03-23T19:24:23.446Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T19:24:23.446Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-03-23T19:24:23.446Z] + echo raven-main -[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T19:24:23.446Z] + RAVEN_DIR=raven-main -[2024-03-23T19:24:23.446Z] + echo RavenPy-master -[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T19:24:23.446Z] + RAVENPY_DIR=RavenPy-master -[2024-03-23T19:24:23.446Z] + echo esgf-compute-api-devel -[2024-03-23T19:24:23.446Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T19:24:23.446Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-23T19:24:23.446Z] + echo true -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + VERIFY_SSL=true -[2024-03-23T19:24:23.446Z] + [ xtrue = xfalse ] -[2024-03-23T19:24:23.446Z] + rm -v finch-master/setup.cfg -[2024-03-23T19:24:23.446Z] removed 'finch-master/setup.cfg' -[2024-03-23T19:24:23.446Z] + rm -v raven-main/setup.cfg -[2024-03-23T19:24:23.446Z] removed 'raven-main/setup.cfg' -[2024-03-23T19:24:23.446Z] + rm -v raven-main/pyproject.toml -[2024-03-23T19:24:23.446Z] removed 'raven-main/pyproject.toml' -[2024-03-23T19:24:23.446Z] + rm -v RavenPy-master/setup.cfg -[2024-03-23T19:24:23.446Z] removed 'RavenPy-master/setup.cfg' -[2024-03-23T19:24:23.446Z] + rm -v RavenPy-master/tox.ini -[2024-03-23T19:24:23.446Z] removed 'RavenPy-master/tox.ini' -[2024-03-23T19:24:23.446Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-23T19:24:23.446Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-23T19:24:23.446Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-23T19:24:23.446Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-23T19:24:23.446Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-23T19:24:23.446Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-23T19:24:23.446Z] + echo false -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + TEST_MAGPIE_AUTH=false -[2024-03-23T19:24:23.446Z] + echo true -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + TEST_PAVICS_SDI_REPO=true -[2024-03-23T19:24:23.446Z] + echo false -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-23T19:24:23.446Z] + echo true -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + TEST_FINCH_REPO=true -[2024-03-23T19:24:23.446Z] + echo true -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + TEST_PAVICS_LANDING_REPO=true -[2024-03-23T19:24:23.446Z] + echo false -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + TEST_RAVEN_REPO=false -[2024-03-23T19:24:23.446Z] + echo false -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + TEST_RAVENPY_REPO=false -[2024-03-23T19:24:23.446Z] + echo false -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-23T19:24:23.446Z] + echo true -[2024-03-23T19:24:23.446Z] + tr [:upper:] [:lower:] -[2024-03-23T19:24:23.446Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-03-23T19:24:23.446Z] + NOTEBOOKS_TO_TEST= -[2024-03-23T19:24:23.446Z] + [ xfalse = xtrue ] -[2024-03-23T19:24:23.446Z] + [ xtrue = xtrue ] -[2024-03-23T19:24:23.446Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb -[2024-03-23T19:24:23.446Z] + [ xfalse = xtrue ] -[2024-03-23T19:24:23.446Z] + [ xtrue = xtrue ] -[2024-03-23T19:24:23.446Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-03-23T19:24:23.446Z] + [ xtrue = xtrue ] -[2024-03-23T19:24:23.446Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb -[2024-03-23T19:24:23.447Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-23T19:24:23.447Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-03-23T19:24:23.447Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-23T19:24:23.447Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-23T19:24:23.447Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-23T19:24:23.447Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-03-23T19:24:23.447Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators -[2024-03-23T19:24:23.447Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-23T19:24:23.447Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-03-23T19:24:23.447Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-03-23T19:24:23.447Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.447Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.703Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.704Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:23.960Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.220Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.221Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.477Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.477Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.477Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-03-23T19:24:24.477Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-03-23T19:24:24.477Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-03-23T19:24:24.477Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-03-23T19:24:24.477Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' -[2024-03-23T19:24:24.477Z] + [ xfalse = xtrue ] -[2024-03-23T19:24:24.477Z] + [ xfalse = xtrue ] -[2024-03-23T19:24:24.477Z] + [ xfalse = xtrue ] -[2024-03-23T19:24:24.477Z] + [ xtrue = xtrue ] -[2024-03-23T19:24:24.477Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-23T19:24:24.477Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-03-23T19:24:24.477Z] + [ -n ] -[2024-03-23T19:24:24.477Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-23T19:24:24.477Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-23T19:24:24.477Z] Will run notebooks against pavics.ouranos.ca -[2024-03-23T19:24:24.477Z] + [ -z ] -[2024-03-23T19:24:24.477Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-03-23T19:24:24.477Z] + git diff -[2024-03-23T19:24:24.478Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-23T19:24:24.478Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-03-23T19:24:29.732Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-23T19:24:29.733Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-23T19:24:29.733Z] ============================= test session starts ============================== -[2024-03-23T19:24:29.733Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-03-23T19:24:29.733Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-03-23T19:24:29.733Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-03-23T19:24:29.733Z] collected 220 items -[2024-03-23T19:24:29.733Z] -[2024-03-23T19:24:32.273Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] -[2024-03-23T19:25:00.655Z] ..... [ 2%] -[2024-03-23T19:25:03.180Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] -[2024-03-23T19:25:08.516Z] ...... [ 5%] -[2024-03-23T19:25:10.411Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] -[2024-03-23T19:25:16.514Z] ..... [ 8%] -[2024-03-23T19:25:17.147Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] -[2024-03-23T19:25:27.554Z] ....... [ 12%] -[2024-03-23T19:25:35.673Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] -[2024-03-23T19:28:09.822Z] ........... [ 17%] -[2024-03-23T19:28:11.736Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] -[2024-03-23T19:28:19.768Z] ............... [ 25%] -[2024-03-23T19:28:22.301Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] -[2024-03-23T19:28:27.423Z] .... [ 27%] -[2024-03-23T19:28:29.324Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] -[2024-03-23T19:28:34.647Z] ..... [ 30%] -[2024-03-23T19:28:42.777Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] -[2024-03-23T19:28:48.739Z] ..... [ 32%] -[2024-03-23T19:28:50.647Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] -[2024-03-23T19:28:56.049Z] ...... [ 35%] -[2024-03-23T19:28:57.417Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] -[2024-03-23T19:28:59.992Z] .... [ 38%] -[2024-03-23T19:29:18.099Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] -[2024-03-23T19:30:41.910Z] ...F..F............F......F [ 50%] -[2024-03-23T19:30:42.178Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] -[2024-03-23T19:30:43.881Z] ... [ 52%] -[2024-03-23T19:30:45.269Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] -[2024-03-23T19:31:03.041Z] ........................ [ 64%] -[2024-03-23T19:31:06.332Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] -[2024-03-23T19:31:11.096Z] ..... [ 66%] -[2024-03-23T19:31:20.138Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] -[2024-03-23T19:31:28.148Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] -[2024-03-23T19:31:29.528Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] -[2024-03-23T19:31:32.839Z] ...... [ 77%] -[2024-03-23T19:31:39.412Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb F [ 78%] -[2024-03-23T19:31:51.698Z] F.F.......... [ 84%] -[2024-03-23T19:32:01.801Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-03-23T19:32:21.787Z] .F..s [ 86%] -[2024-03-23T19:32:29.911Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] -[2024-03-23T19:32:41.798Z] .F. [ 88%] -[2024-03-23T19:32:54.044Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] -[2024-03-23T19:33:51.800Z] ...... [ 91%] -[2024-03-23T19:33:51.800Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-03-23T19:35:52.299Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] =================================== FAILURES =================================== -[2024-03-23T19:35:52.299Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 4 _ -[2024-03-23T19:35:52.299Z] Notebook cell execution failed -[2024-03-23T19:35:52.299Z] Cell 4: Cell outputs differ -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] Input: -[2024-03-23T19:35:52.299Z] ds_tgt.cf.plot.scatter(x="longitude", y="latitude", s=0.1) -[2024-03-23T19:35:52.299Z] plt.title("Target regular grid"); -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] Traceback: -[2024-03-23T19:35:52.299Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-23T19:35:52.299Z]
-[2024-03-23T19:35:52.299Z] ============ disagrees with newly computed (test) output: -[2024-03-23T19:35:52.299Z] Text(0.5, 1.0, 'Target regular grid') -[2024-03-23T19:35:52.299Z]
-[2024-03-23T19:35:52.299Z] >>>>>>>>>>>> -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 7 _ -[2024-03-23T19:35:52.299Z] Notebook cell execution failed -[2024-03-23T19:35:52.299Z] Cell 7: Cell outputs differ -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] Input: -[2024-03-23T19:35:52.299Z] # xesmf/frontend.py:476: FutureWarning: ``output_sizes`` should be given in the ``dask_gufunc_kwargs`` parameter. It will be removed as direct parameter in a future version. -[2024-03-23T19:35:52.299Z] warnings.filterwarnings("ignore", category=FutureWarning) -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] # Apply the regridding weights to the input sea ice concentration data -[2024-03-23T19:35:52.299Z] sic_bil = reg_bil(ds_in.siconc) -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] # Plot the results -[2024-03-23T19:35:52.299Z] sic_bil.isel(time=0).plot(cmap=cmap) -[2024-03-23T19:35:52.299Z] plt.title("Regridded sic data (Jan 2020)"); -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] Traceback: -[2024-03-23T19:35:52.299Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-23T19:35:52.299Z]
-[2024-03-23T19:35:52.299Z] ============ disagrees with newly computed (test) output: -[2024-03-23T19:35:52.299Z] Text(0.5, 1.0, 'Regridded sic data (Jan 2020)') -[2024-03-23T19:35:52.299Z]
-[2024-03-23T19:35:52.299Z] >>>>>>>>>>>> -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 20 _ -[2024-03-23T19:35:52.299Z] Notebook cell execution failed -[2024-03-23T19:35:52.299Z] Cell 20: Cell outputs differ -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] Input: -[2024-03-23T19:35:52.299Z] reg_mask_cons = xe.Regridder(ds_in_mask, ds_tgt_mask, "conservative") -[2024-03-23T19:35:52.299Z] tasmin_mask_cons = reg_mask_cons(ds_in_mask.tasmin) -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] fig, ax = plt.subplots(figsize=(6, 4)) -[2024-03-23T19:35:52.299Z] tasmin_mask_cons.plot(cmap=cmap, ax=ax) -[2024-03-23T19:35:52.299Z] ax.set_xlim(210, 320) -[2024-03-23T19:35:52.299Z] ax.set_ylim(38, 86) -[2024-03-23T19:35:52.299Z] ax.set_title("Conservative regridding without normalization - zoom on Canada") -[2024-03-23T19:35:52.299Z] ax.annotate( -[2024-03-23T19:35:52.299Z] "Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!", -[2024-03-23T19:35:52.299Z] (280, 40), -[2024-03-23T19:35:52.299Z] xytext=(1.3, 0.3), -[2024-03-23T19:35:52.299Z] xycoords="data", -[2024-03-23T19:35:52.299Z] textcoords="axes fraction", -[2024-03-23T19:35:52.299Z] fontsize="x-large", -[2024-03-23T19:35:52.299Z] arrowprops=dict(arrowstyle="->", connectionstyle="arc3, rad=-0.3"), -[2024-03-23T19:35:52.299Z] ); -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.299Z] Traceback: -[2024-03-23T19:35:52.299Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-23T19:35:52.299Z]
-[2024-03-23T19:35:52.299Z] ============ disagrees with newly computed (test) output: -[2024-03-23T19:35:52.299Z] Text(1.3, 0.3, 'Some values are close to 0 Kelvins.\nCanada can get cold, but not that cold!') -[2024-03-23T19:35:52.299Z]
-[2024-03-23T19:35:52.299Z] >>>>>>>>>>>> -[2024-03-23T19:35:52.299Z] -[2024-03-23T19:35:52.300Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 27 _ -[2024-03-23T19:35:52.300Z] Notebook cell execution failed -[2024-03-23T19:35:52.300Z] Cell 27: Cell outputs differ -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] Input: -[2024-03-23T19:35:52.300Z] # Now we can plot easily the results as a choropleth map! -[2024-03-23T19:35:52.300Z] ax = shapes_data.plot( -[2024-03-23T19:35:52.300Z] "tasmin", legend=True, legend_kwds={"label": "Minimal temperature 1993-05-20 [K]"} -[2024-03-23T19:35:52.300Z] ) -[2024-03-23T19:35:52.300Z] ax.set_ylabel("Latitude") -[2024-03-23T19:35:52.300Z] ax.set_xlabel("Longitude"); -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] Traceback: -[2024-03-23T19:35:52.300Z] dissimilar number of outputs for key "text/plain"<<<<<<<<<<<< Reference outputs from ipynb file: -[2024-03-23T19:35:52.300Z]
-[2024-03-23T19:35:52.300Z] ============ disagrees with newly computed (test) output: -[2024-03-23T19:35:52.300Z] Text(0.5, 91.20243008191655, 'Longitude') -[2024-03-23T19:35:52.300Z]
-[2024-03-23T19:35:52.300Z] >>>>>>>>>>>> -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 _ -[2024-03-23T19:35:52.300Z] Notebook cell execution failed -[2024-03-23T19:35:52.300Z] Cell 0: Cell outputs differ -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] Input: -[2024-03-23T19:35:52.300Z] import warnings -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] import xarray as xr -[2024-03-23T19:35:52.300Z] from IPython.display import display # Fancy representation of xarray objects -[2024-03-23T19:35:52.300Z] from siphon.catalog import TDSCatalog -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] warnings.simplefilter("ignore") -[2024-03-23T19:35:52.300Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/catalog/datasets/simulations/bias_adjusted/cmip5/ouranos/cb-oura-1.0/catalog.xml" # TEST_USE_PROD_DATA -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] # Create Catalog -[2024-03-23T19:35:52.300Z] cat = TDSCatalog(url) -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] # DAP link for this demo -[2024-03-23T19:35:52.300Z] ds_url = cat.datasets[0].access_urls["OPENDAP"] -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] # xarray.Dataset -[2024-03-23T19:35:52.300Z] ds = xr.open_dataset(ds_url, chunks=dict(time=256 * 2, lon=32, lat=32)) -[2024-03-23T19:35:52.300Z] display(ds) -[2024-03-23T19:35:52.300Z] a = ds.tasmin.isel(time=0).plot(figsize=(10, 4)) -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] Traceback: -[2024-03-23T19:35:52.300Z]  mismatch 'text/plain' -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] assert reference_output == test_output failed: -[2024-03-23T19:35:52.300Z] -[2024-03-23T19:35:52.300Z] ' 20 plt.title(pos_f.description.split(".")[0]) -[2024-03-23T19:35:52.303Z]  22 display() -[2024-03-23T19:35:52.303Z] -[2024-03-23T19:35:52.303Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-03-23T19:35:52.303Z]  275 with suppress(KeyError): -[2024-03-23T19:35:52.303Z]  276 return source[name] -[2024-03-23T19:35:52.303Z] --> 277 raise AttributeError( -[2024-03-23T19:35:52.303Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-03-23T19:35:52.303Z]  279 ) -[2024-03-23T19:35:52.303Z] -[2024-03-23T19:35:52.303Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-03-23T19:35:52.303Z] -[2024-03-23T19:35:52.303Z] =========================== short test summary info ============================ -[2024-03-23T19:35:52.303Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 4 -[2024-03-23T19:35:52.303Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 7 -[2024-03-23T19:35:52.303Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 20 -[2024-03-23T19:35:52.303Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb::Cell 27 -[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 0 -[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 1 -[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb::Cell 3 -[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 -[2024-03-23T19:35:52.304Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-03-23T19:35:52.304Z] ============= 9 failed, 210 passed, 1 skipped in 682.66s (0:11:22) ============= -[2024-03-23T19:35:52.304Z] + EXIT_CODE=1 -[2024-03-23T19:35:52.304Z] + echo true -[2024-03-23T19:35:52.304Z] + tr [:upper:] [:lower:] -[2024-03-23T19:35:52.304Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-23T19:35:52.304Z] + [ xtrue = xtrue ] -[2024-03-23T19:35:52.304Z] + mkdir -p buildout -[2024-03-23T19:35:52.304Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-03-23T19:35:52.304Z] + filename=CaSR_basic.ipynb -[2024-03-23T19:35:52.304Z] + echo CaSR_basic.ipynb -[2024-03-23T19:35:52.304Z] + sed s/.ipynb$// -[2024-03-23T19:35:52.304Z] + filename=CaSR_basic -[2024-03-23T19:35:52.304Z] + [ -e buildout/CaSR_basic.output.ipynb ] -[2024-03-23T19:35:52.304Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-03-23T19:35:54.209Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook -[2024-03-23T19:36:32.954Z] [NbConvertApp] Writing 694582 bytes to buildout/CaSR_basic.output.ipynb -[2024-03-23T19:36:32.954Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-03-23T19:36:32.954Z] + filename=WCS_example.ipynb -[2024-03-23T19:36:32.954Z] + echo WCS_example.ipynb -[2024-03-23T19:36:32.954Z] + sed s/.ipynb$// -[2024-03-23T19:36:32.954Z] + filename=WCS_example -[2024-03-23T19:36:32.954Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-03-23T19:36:32.955Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-03-23T19:36:32.955Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-03-23T19:36:41.107Z] [NbConvertApp] Writing 144967 bytes to buildout/WCS_example.output.ipynb -[2024-03-23T19:36:41.107Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-03-23T19:36:41.107Z] + filename=WFS_example.ipynb -[2024-03-23T19:36:41.107Z] + sed s/.ipynb$// -[2024-03-23T19:36:41.107Z] + echo WFS_example.ipynb -[2024-03-23T19:36:41.107Z] + filename=WFS_example -[2024-03-23T19:36:41.107Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-03-23T19:36:41.107Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-03-23T19:36:41.674Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-03-23T19:36:51.646Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb -[2024-03-23T19:36:51.646Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-03-23T19:36:51.646Z] + filename=WMS_example.ipynb -[2024-03-23T19:36:51.646Z] + echo WMS_example.ipynb -[2024-03-23T19:36:51.646Z] + sed s/.ipynb$// -[2024-03-23T19:36:51.646Z] + filename=WMS_example -[2024-03-23T19:36:51.646Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-03-23T19:36:51.646Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-03-23T19:36:52.587Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-03-23T19:36:59.164Z] [NbConvertApp] Writing 46204 bytes to buildout/WMS_example.output.ipynb -[2024-03-23T19:36:59.164Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-03-23T19:36:59.164Z] + filename=climex.ipynb -[2024-03-23T19:36:59.164Z] + sed s/.ipynb$// -[2024-03-23T19:36:59.164Z] + echo climex.ipynb -[2024-03-23T19:36:59.164Z] + filename=climex -[2024-03-23T19:36:59.164Z] + [ -e buildout/climex.output.ipynb ] -[2024-03-23T19:36:59.164Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-03-23T19:37:00.548Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook -[2024-03-23T19:39:37.319Z] 2024-03-23 19:39:36,488 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. -[2024-03-23T19:39:37.319Z] Traceback (most recent call last): -[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read -[2024-03-23T19:39:37.319Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) -[2024-03-23T19:39:37.319Z] tornado.iostream.StreamClosedError: Stream is closed -[2024-03-23T19:39:37.319Z] -[2024-03-23T19:39:37.319Z] The above exception was the direct cause of the following exception: -[2024-03-23T19:39:37.319Z] -[2024-03-23T19:39:37.319Z] Traceback (most recent call last): -[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat -[2024-03-23T19:39:37.319Z] response = await retry_operation( -[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation -[2024-03-23T19:39:37.319Z] return await retry( -[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry -[2024-03-23T19:39:37.319Z] return await coro() -[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc -[2024-03-23T19:39:37.319Z] return await send_recv(comm=comm, op=key, **kwargs) -[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv -[2024-03-23T19:39:37.319Z] response = await comm.read(deserializers=deserializers) -[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read -[2024-03-23T19:39:37.319Z] convert_stream_closed_error(self, e) -[2024-03-23T19:39:37.319Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error -[2024-03-23T19:39:37.319Z] raise CommClosedError(f"in {obj}: {exc}") from exc -[2024-03-23T19:39:37.319Z] distributed.comm.core.CommClosedError: in : Stream is closed -[2024-03-23T19:39:41.512Z] [NbConvertApp] Writing 1788861 bytes to buildout/climex.output.ipynb -[2024-03-23T19:39:41.512Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-23T19:39:41.512Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-03-23T19:39:41.512Z] + + echo eccc-geoapi-climate-stations.ipynb -[2024-03-23T19:39:41.512Z] sed s/.ipynb$// -[2024-03-23T19:39:41.512Z] + filename=eccc-geoapi-climate-stations -[2024-03-23T19:39:41.512Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-03-23T19:39:41.512Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-03-23T19:39:43.423Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-03-23T19:39:55.621Z] [NbConvertApp] Writing 279293 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-03-23T19:39:55.621Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-23T19:39:55.621Z] + filename=eccc-geoapi-xclim.ipynb -[2024-03-23T19:39:55.621Z] + sed s/.ipynb$// -[2024-03-23T19:39:55.621Z] + echo eccc-geoapi-xclim.ipynb -[2024-03-23T19:39:55.621Z] + filename=eccc-geoapi-xclim -[2024-03-23T19:39:55.621Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-03-23T19:39:55.621Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-03-23T19:39:56.191Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-03-23T19:40:06.225Z] [NbConvertApp] Writing 108449 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-03-23T19:40:06.225Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-03-23T19:40:06.225Z] + filename=esgf-dap.ipynb -[2024-03-23T19:40:06.225Z] + echo esgf-dap.ipynb -[2024-03-23T19:40:06.225Z] + sed s/.ipynb$// -[2024-03-23T19:40:06.225Z] + filename=esgf-dap -[2024-03-23T19:40:06.225Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-03-23T19:40:06.225Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-03-23T19:40:08.135Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-03-23T19:40:16.255Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb -[2024-03-23T19:40:16.255Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-03-23T19:40:16.256Z] + filename=forecasts.ipynb -[2024-03-23T19:40:16.256Z] + echo forecasts.ipynb -[2024-03-23T19:40:16.256Z] + sed s/.ipynb$// -[2024-03-23T19:40:16.256Z] + filename=forecasts -[2024-03-23T19:40:16.256Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-03-23T19:40:16.256Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-03-23T19:40:18.164Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook -[2024-03-23T19:40:36.261Z] [NbConvertApp] Writing 181147 bytes to buildout/forecasts.output.ipynb -[2024-03-23T19:40:36.261Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-23T19:40:36.261Z] + filename=jupyter_extensions.ipynb -[2024-03-23T19:40:36.261Z] + echo jupyter_extensions.ipynb -[2024-03-23T19:40:36.261Z] + sed s/.ipynb$// -[2024-03-23T19:40:36.261Z] + filename=jupyter_extensions -[2024-03-23T19:40:36.261Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-03-23T19:40:36.261Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-03-23T19:40:37.699Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-03-23T19:40:39.600Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb -[2024-03-23T19:40:39.600Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-03-23T19:40:39.600Z] + filename=opendap.ipynb -[2024-03-23T19:40:39.600Z] + + echosed opendap.ipynb s/.ipynb$// -[2024-03-23T19:40:39.600Z] -[2024-03-23T19:40:39.600Z] + filename=opendap -[2024-03-23T19:40:39.600Z] + [ -e buildout/opendap.output.ipynb ] -[2024-03-23T19:40:39.600Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-03-23T19:40:40.970Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook -[2024-03-23T19:40:49.098Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb -[2024-03-23T19:40:49.357Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-23T19:40:49.357Z] + filename=pavics_thredds.ipynb -[2024-03-23T19:40:49.357Z] + echo pavics_thredds.ipynb -[2024-03-23T19:40:49.357Z] + sed s/.ipynb$// -[2024-03-23T19:40:49.357Z] + filename=pavics_thredds -[2024-03-23T19:40:49.357Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-03-23T19:40:49.358Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-03-23T19:40:51.252Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-03-23T19:40:54.534Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-23T19:40:54.534Z] context: Access to service is forbidden. -[2024-03-23T19:40:54.534Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-03-23T19:40:54.534Z] context: Access to service is forbidden. -[2024-03-23T19:40:55.478Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb -[2024-03-23T19:40:55.736Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-03-23T19:40:55.736Z] + filename=regridding.ipynb -[2024-03-23T19:40:55.736Z] + echo regridding.ipynb -[2024-03-23T19:40:55.736Z] + sed s/.ipynb$// -[2024-03-23T19:40:55.736Z] + filename=regridding -[2024-03-23T19:40:55.736Z] + [ -e buildout/regridding.output.ipynb ] -[2024-03-23T19:40:55.737Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-03-23T19:40:57.648Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook -[2024-03-23T19:42:34.126Z] [NbConvertApp] Writing 1239788 bytes to buildout/regridding.output.ipynb -[2024-03-23T19:42:34.126Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-03-23T19:42:34.126Z] + filename=rendering.ipynb -[2024-03-23T19:42:34.126Z] + echo rendering.ipynb -[2024-03-23T19:42:34.126Z] + sed s/.ipynb$// -[2024-03-23T19:42:34.126Z] + filename=rendering -[2024-03-23T19:42:34.126Z] + [ -e buildout/rendering.output.ipynb ] -[2024-03-23T19:42:34.126Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-03-23T19:42:34.126Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook -[2024-03-23T19:42:36.667Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb -[2024-03-23T19:42:36.667Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-03-23T19:42:36.667Z] + filename=subset-user-input.ipynb -[2024-03-23T19:42:36.667Z] + echo subset-user-input.ipynb -[2024-03-23T19:42:36.667Z] + sed s/.ipynb$// -[2024-03-23T19:42:36.667Z] + filename=subset-user-input -[2024-03-23T19:42:36.667Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-03-23T19:42:36.667Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-03-23T19:42:38.036Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-03-23T19:42:59.990Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb -[2024-03-23T19:42:59.990Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-03-23T19:42:59.990Z] + filename=subsetting.ipynb -[2024-03-23T19:42:59.990Z] + echo subsetting.ipynb -[2024-03-23T19:42:59.990Z] + sed s/.ipynb$// -[2024-03-23T19:42:59.990Z] + filename=subsetting -[2024-03-23T19:42:59.990Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-03-23T19:42:59.990Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-03-23T19:43:00.559Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook -[2024-03-23T19:43:10.544Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb -[2024-03-23T19:43:10.544Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-23T19:43:10.544Z] + filename=dap_subset.ipynb -[2024-03-23T19:43:10.544Z] + echo dap_subset.ipynb -[2024-03-23T19:43:10.544Z] + sed s/.ipynb$// -[2024-03-23T19:43:10.544Z] + filename=dap_subset -[2024-03-23T19:43:10.544Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-03-23T19:43:10.544Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-03-23T19:43:11.483Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-03-23T19:43:21.457Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb -[2024-03-23T19:43:21.457Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-23T19:43:21.457Z] + filename=finch-usage.ipynb -[2024-03-23T19:43:21.457Z] + echo finch-usage.ipynb -[2024-03-23T19:43:21.457Z] + sed s/.ipynb$// -[2024-03-23T19:43:21.457Z] + filename=finch-usage -[2024-03-23T19:43:21.457Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-03-23T19:43:21.457Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-03-23T19:43:23.366Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-03-23T19:43:33.340Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb -[2024-03-23T19:43:33.340Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-23T19:43:33.340Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-23T19:43:33.340Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-23T19:43:33.340Z] + sed s/.ipynb$// -[2024-03-23T19:43:33.340Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-03-23T19:43:33.340Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-03-23T19:43:33.340Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-03-23T19:43:35.247Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-03-23T19:43:40.507Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-03-23T19:43:40.507Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-23T19:43:40.507Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-23T19:43:40.507Z] + + sed s/.ipynb$// -[2024-03-23T19:43:40.507Z] echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-23T19:43:40.507Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-03-23T19:43:40.507Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-03-23T19:43:40.507Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-03-23T19:43:42.462Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-03-23T19:44:04.413Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-03-23T19:44:04.413Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-23T19:44:04.413Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-23T19:44:04.413Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-23T19:44:04.413Z] + sed s/.ipynb$// -[2024-03-23T19:44:04.414Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-03-23T19:44:04.414Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-03-23T19:44:04.414Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-03-23T19:44:04.414Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-03-23T19:48:41.078Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). -[2024-03-23T19:48:41.078Z] 2024-03-23 19:48:29,080 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-23T19:48:41.078Z] 2024-03-23 19:48:29,080 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-23T19:48:41.078Z] 2024-03-23 19:48:29,086 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-23T19:48:41.078Z] 2024-03-23 19:48:29,086 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-03-23T19:48:41.078Z] Traceback (most recent call last): -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply -[2024-03-23T19:48:41.078Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async -[2024-03-23T19:48:41.078Z] result = await obj -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg -[2024-03-23T19:48:41.078Z] raise Empty -[2024-03-23T19:48:41.078Z] _queue.Empty -[2024-03-23T19:48:41.078Z] -[2024-03-23T19:48:41.078Z] During handling of the above exception, another exception occurred: -[2024-03-23T19:48:41.078Z] -[2024-03-23T19:48:41.078Z] Traceback (most recent call last): -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-03-23T19:48:41.078Z] sys.exit(main()) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance -[2024-03-23T19:48:41.078Z] super().launch_instance(argv=argv, **kwargs) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance -[2024-03-23T19:48:41.078Z] app.start() -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start -[2024-03-23T19:48:41.078Z] self.convert_notebooks() -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks -[2024-03-23T19:48:41.078Z] self.convert_single_notebook(notebook_filename) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook -[2024-03-23T19:48:41.078Z] output, resources = self.export_single_notebook( -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook -[2024-03-23T19:48:41.078Z] output, resources = self.exporter.from_filename( -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-03-23T19:48:41.078Z] return self.from_file(f, resources=resources, **kw) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-03-23T19:48:41.078Z] return self.from_notebook_node( -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-03-23T19:48:41.078Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-03-23T19:48:41.078Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess -[2024-03-23T19:48:41.078Z] nbc, resc = preprocessor(nbc, resc) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-03-23T19:48:41.078Z] return self.preprocess(nb, resources) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess -[2024-03-23T19:48:41.078Z] self.preprocess_cell(cell, resources, index) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell -[2024-03-23T19:48:41.078Z] cell = self.execute_cell(cell, index, store_history=True) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped -[2024-03-23T19:48:41.078Z] return loop.run_until_complete(inner) -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-03-23T19:48:41.078Z] return future.result() -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell -[2024-03-23T19:48:41.078Z] exec_reply = await self.task_poll_for_reply -[2024-03-23T19:48:41.078Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply -[2024-03-23T19:48:41.078Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) -[2024-03-23T19:48:41.079Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout -[2024-03-23T19:48:41.079Z] raise CellTimeoutError.error_from_timeout_and_cell( -[2024-03-23T19:48:41.079Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. -[2024-03-23T19:48:41.079Z] The message was: Cell execution timed out. -[2024-03-23T19:48:41.079Z] Here is a preview of the cell contents: -[2024-03-23T19:48:41.079Z] ------------------- -[2024-03-23T19:48:41.079Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] -[2024-03-23T19:48:41.079Z] ... -[2024-03-23T19:48:41.079Z] [' print("finished")', ' ', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] -[2024-03-23T19:48:41.079Z] ------------------- -[2024-03-23T19:48:41.079Z] -[2024-03-23T19:48:41.079Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-23T19:48:41.079Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-23T19:48:41.079Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-23T19:48:41.079Z] + sed s/.ipynb$// -[2024-03-23T19:48:41.079Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-03-23T19:48:41.079Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-03-23T19:48:41.079Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-03-23T19:48:41.079Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-03-23T19:48:53.277Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-03-23T19:48:53.277Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-23T19:48:53.277Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-23T19:48:53.277Z] + sed s/.ipynb$// -[2024-03-23T19:48:53.277Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-23T19:48:53.277Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-03-23T19:48:53.277Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-03-23T19:48:53.277Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-03-23T19:48:55.181Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-03-23T19:50:02.865Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-03-23T19:50:02.865Z] + basename notebooks/hummingbird.ipynb -[2024-03-23T19:50:02.865Z] + filename=hummingbird.ipynb -[2024-03-23T19:50:02.865Z] + echo hummingbird.ipynb -[2024-03-23T19:50:02.865Z] + sed s/.ipynb$// -[2024-03-23T19:50:02.865Z] + filename=hummingbird -[2024-03-23T19:50:02.865Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-03-23T19:50:02.865Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-03-23T19:50:02.865Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-03-23T19:50:02.865Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb -[2024-03-23T19:50:02.865Z] + basename notebooks/stress-tests.ipynb -[2024-03-23T19:50:02.865Z] + filename=stress-tests.ipynb -[2024-03-23T19:50:02.865Z] + echo stress-tests.ipynb -[2024-03-23T19:50:02.865Z] + sed s/.ipynb$// -[2024-03-23T19:50:02.865Z] + filename=stress-tests -[2024-03-23T19:50:02.865Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-03-23T19:50:02.866Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-03-23T19:50:04.245Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-03-23T19:52:10.749Z] [NbConvertApp] Writing 428128 bytes to buildout/stress-tests.output.ipynb -[2024-03-23T19:52:10.749Z] + exit 1 -[2024-03-23T19:52:10.749Z] + EXIT_CODE=1 -[2024-03-23T19:52:10.749Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-23T19:52:10.749Z] + mkdir -p buildout/env-dump -[2024-03-23T19:52:10.749Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-23T19:52:10.749Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-23T19:52:10.749Z] + conda env export -n birdy -[2024-03-23T19:52:13.291Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-23T19:52:13.291Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-23T19:52:13.291Z] + conda list -n birdy --explicit -[2024-03-23T19:52:23.281Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-23T19:52:23.281Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-23T19:52:23.281Z] + pip freeze -[2024-03-23T19:52:24.221Z] + exit 1 +[2024-04-02T23:51:58.906Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-02T23:51:58.906Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-02T23:51:58.906Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-02T23:51:58.906Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-02T23:51:58.906Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-02T23:51:58.906Z] FINCH_BRANCH has been set to 'master' +[2024-04-02T23:51:58.906Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-02T23:51:58.906Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-02T23:51:58.906Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-02T23:51:58.906Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-02T23:51:58.906Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-02T23:51:58.906Z] RAVEN_BRANCH has been set to 'main' +[2024-04-02T23:51:58.906Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-02T23:51:58.906Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-02T23:51:58.906Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-02T23:51:58.906Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-02T23:51:58.906Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-02T23:51:58.906Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-02T23:51:58.906Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-02T23:51:58.906Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-02T23:51:58.906Z] + git clean -fdx +[2024-04-02T23:51:59.164Z] Removing .pytest_cache/ +[2024-04-02T23:51:59.164Z] Removing RavenPy-master/ +[2024-04-02T23:51:59.164Z] Removing __pycache__/ +[2024-04-02T23:51:59.164Z] Removing buildout/ +[2024-04-02T23:51:59.164Z] Removing esgf-compute-api-devel/ +[2024-04-02T23:51:59.164Z] Removing finch-master/ +[2024-04-02T23:51:59.164Z] Removing raven-main/ +[2024-04-02T23:51:59.164Z] + ./downloadrepos +[2024-04-02T23:51:59.164Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-02T23:51:59.164Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-02T23:51:59.164Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-02T23:51:59.164Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-02T23:51:59.164Z] FINCH_BRANCH has been set to 'master' +[2024-04-02T23:51:59.164Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-02T23:51:59.164Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-02T23:51:59.164Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-02T23:51:59.164Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-02T23:51:59.164Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-02T23:51:59.164Z] RAVEN_BRANCH has been set to 'main' +[2024-04-02T23:51:59.164Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-02T23:51:59.164Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-02T23:51:59.164Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-02T23:51:59.164Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-02T23:51:59.164Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-02T23:51:59.164Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-02T23:51:59.164Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-02T23:51:59.164Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-02T23:51:59.164Z] + rm -rf pavics-sdi-* +[2024-04-02T23:51:59.164Z] + ls +[2024-04-02T23:51:59.164Z] + grep pavics-sdi +[2024-04-02T23:51:59.164Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:51:59.164Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-02T23:51:59.164Z] + shift +[2024-04-02T23:51:59.164Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:51:59.164Z] + shift +[2024-04-02T23:51:59.164Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-02T23:51:59.164Z] + tar xz +[2024-04-02T23:52:01.688Z] + ls +[2024-04-02T23:52:01.688Z] + grep pavics-sdi +[2024-04-02T23:52:01.688Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:01.688Z] + set +x +[2024-04-02T23:52:01.688Z] + rm -rf finch-* +[2024-04-02T23:52:01.688Z] + ls +[2024-04-02T23:52:01.688Z] + grep finch +[2024-04-02T23:52:01.688Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-02T23:52:01.688Z] + github_repo=https://github.com/bird-house/finch +[2024-04-02T23:52:01.688Z] + shift +[2024-04-02T23:52:01.688Z] + branch=master +[2024-04-02T23:52:01.688Z] + shift +[2024-04-02T23:52:01.688Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-02T23:52:01.688Z] + tar xz +[2024-04-02T23:52:03.054Z] + ls +[2024-04-02T23:52:03.054Z] + grep finch +[2024-04-02T23:52:03.054Z] finch-master +[2024-04-02T23:52:03.054Z] + set +x +[2024-04-02T23:52:03.054Z] + rm -rf PAVICS-landing-* +[2024-04-02T23:52:03.054Z] + ls +[2024-04-02T23:52:03.054Z] + grep PAVICS-landing +[2024-04-02T23:52:03.054Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:03.054Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-02T23:52:03.054Z] + shift +[2024-04-02T23:52:03.054Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:03.054Z] + shift +[2024-04-02T23:52:03.054Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-02T23:52:03.054Z] + tar xz +[2024-04-02T23:52:15.240Z] + ls +[2024-04-02T23:52:15.240Z] + grep PAVICS-landing +[2024-04-02T23:52:15.240Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:15.240Z] + set +x +[2024-04-02T23:52:15.240Z] + rm -rf raven-* +[2024-04-02T23:52:15.240Z] + ls +[2024-04-02T23:52:15.240Z] + grep raven +[2024-04-02T23:52:15.240Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-02T23:52:15.240Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-02T23:52:15.240Z] + shift +[2024-04-02T23:52:15.240Z] + branch=main +[2024-04-02T23:52:15.240Z] + shift +[2024-04-02T23:52:15.240Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-02T23:52:15.240Z] + tar xz +[2024-04-02T23:52:15.801Z] + ls +[2024-04-02T23:52:15.801Z] + grep raven +[2024-04-02T23:52:15.801Z] raven-main +[2024-04-02T23:52:15.801Z] + set +x +[2024-04-02T23:52:15.801Z] + rm -rf RavenPy-* +[2024-04-02T23:52:15.801Z] + ls +[2024-04-02T23:52:15.801Z] + grep RavenPy +[2024-04-02T23:52:15.801Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-02T23:52:15.801Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-02T23:52:15.801Z] + shift +[2024-04-02T23:52:15.801Z] + branch=master +[2024-04-02T23:52:15.801Z] + shift +[2024-04-02T23:52:15.801Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-02T23:52:15.801Z] + tar xz +[2024-04-02T23:52:17.687Z] + ls +[2024-04-02T23:52:17.687Z] + grep RavenPy +[2024-04-02T23:52:17.687Z] RavenPy-master +[2024-04-02T23:52:17.687Z] + set +x +[2024-04-02T23:52:17.687Z] + rm -rf esgf-compute-api-* +[2024-04-02T23:52:17.687Z] + ls +[2024-04-02T23:52:17.687Z] + grep esgf-compute-api +[2024-04-02T23:52:17.687Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-02T23:52:17.687Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-02T23:52:17.687Z] + shift +[2024-04-02T23:52:17.687Z] + branch=devel +[2024-04-02T23:52:17.687Z] + shift +[2024-04-02T23:52:17.687Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-02T23:52:17.687Z] + tar xz +[2024-04-02T23:52:19.059Z] + ls +[2024-04-02T23:52:19.059Z] + grep esgf-compute-api +[2024-04-02T23:52:19.059Z] esgf-compute-api-devel +[2024-04-02T23:52:19.059Z] + set +x +[2024-04-02T23:52:19.059Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:19.059Z] + sed s@/@-@g +[2024-04-02T23:52:19.059Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:19.059Z] + echo Ouranosinc/pavics-sdi +[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g +[2024-04-02T23:52:19.059Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-02T23:52:19.059Z] + echo master +[2024-04-02T23:52:19.059Z] + sed s@/@-@g +[2024-04-02T23:52:19.059Z] + FINCH_BRANCH=master +[2024-04-02T23:52:19.059Z] + echo bird-house/finch +[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g +[2024-04-02T23:52:19.059Z] + FINCH_REPO_NAME=finch +[2024-04-02T23:52:19.059Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:19.059Z] + sed s@/@-@g +[2024-04-02T23:52:19.059Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:19.059Z] + echo Ouranosinc/PAVICS-landing +[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g +[2024-04-02T23:52:19.059Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-02T23:52:19.059Z] + echo main +[2024-04-02T23:52:19.059Z] + sed s@/@-@g +[2024-04-02T23:52:19.059Z] + RAVEN_BRANCH=main +[2024-04-02T23:52:19.059Z] + echo Ouranosinc/raven +[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g +[2024-04-02T23:52:19.059Z] + RAVEN_REPO_NAME=raven +[2024-04-02T23:52:19.059Z] + echo master +[2024-04-02T23:52:19.059Z] + sed s@/@-@g +[2024-04-02T23:52:19.059Z] + RAVENPY_BRANCH=master +[2024-04-02T23:52:19.059Z] + echo CSHS-CWRA/RavenPy +[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g +[2024-04-02T23:52:19.059Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-02T23:52:19.059Z] + echo devel +[2024-04-02T23:52:19.059Z] + sed s@/@-@g +[2024-04-02T23:52:19.059Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-02T23:52:19.059Z] + echo ESGF/esgf-compute-api +[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g +[2024-04-02T23:52:19.059Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-02T23:52:19.059Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:52:19.059Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:19.059Z] + echo finch-master +[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:52:19.059Z] + FINCH_DIR=finch-master +[2024-04-02T23:52:19.059Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:52:19.059Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-02T23:52:19.059Z] + echo raven-main +[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:52:19.059Z] + RAVEN_DIR=raven-main +[2024-04-02T23:52:19.059Z] + echo RavenPy-master +[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:52:19.059Z] + RAVENPY_DIR=RavenPy-master +[2024-04-02T23:52:19.060Z] + echo esgf-compute-api-devel +[2024-04-02T23:52:19.060Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:52:19.060Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-02T23:52:19.060Z] + echo true +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + VERIFY_SSL=true +[2024-04-02T23:52:19.060Z] + [ xtrue = xfalse ] +[2024-04-02T23:52:19.060Z] + rm -v finch-master/setup.cfg +[2024-04-02T23:52:19.060Z] removed 'finch-master/setup.cfg' +[2024-04-02T23:52:19.060Z] + rm -v raven-main/setup.cfg +[2024-04-02T23:52:19.060Z] removed 'raven-main/setup.cfg' +[2024-04-02T23:52:19.060Z] + rm -v raven-main/pyproject.toml +[2024-04-02T23:52:19.060Z] removed 'raven-main/pyproject.toml' +[2024-04-02T23:52:19.060Z] + rm -v RavenPy-master/setup.cfg +[2024-04-02T23:52:19.060Z] removed 'RavenPy-master/setup.cfg' +[2024-04-02T23:52:19.060Z] + rm -v RavenPy-master/tox.ini +[2024-04-02T23:52:19.060Z] removed 'RavenPy-master/tox.ini' +[2024-04-02T23:52:19.060Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-02T23:52:19.060Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-02T23:52:19.060Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-02T23:52:19.060Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-02T23:52:19.060Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-02T23:52:19.060Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-02T23:52:19.060Z] + echo false +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + TEST_MAGPIE_AUTH=false +[2024-04-02T23:52:19.060Z] + echo true +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + TEST_PAVICS_SDI_REPO=true +[2024-04-02T23:52:19.060Z] + echo false +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-02T23:52:19.060Z] + echo true +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + TEST_FINCH_REPO=true +[2024-04-02T23:52:19.060Z] + echo true +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + TEST_PAVICS_LANDING_REPO=true +[2024-04-02T23:52:19.060Z] + echo false +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + TEST_RAVEN_REPO=false +[2024-04-02T23:52:19.060Z] + echo false +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + TEST_RAVENPY_REPO=false +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + echo false +[2024-04-02T23:52:19.060Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] +[2024-04-02T23:52:19.060Z] + echo true +[2024-04-02T23:52:19.060Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-04-02T23:52:19.060Z] + NOTEBOOKS_TO_TEST= +[2024-04-02T23:52:19.060Z] + [ xfalse = xtrue ] +[2024-04-02T23:52:19.060Z] + [ xtrue = xtrue ] +[2024-04-02T23:52:19.060Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb +[2024-04-02T23:52:19.060Z] + [ xfalse = xtrue ] +[2024-04-02T23:52:19.060Z] + [ xtrue = xtrue ] +[2024-04-02T23:52:19.060Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-04-02T23:52:19.060Z] + [ xtrue = xtrue ] +[2024-04-02T23:52:19.060Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb +[2024-04-02T23:52:19.060Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-02T23:52:19.060Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-04-02T23:52:19.060Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-02T23:52:19.060Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-02T23:52:19.060Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-02T23:52:19.060Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-02T23:52:19.060Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators +[2024-04-02T23:52:19.060Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-02T23:52:19.060Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-02T23:52:19.060Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-04-02T23:52:19.060Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip +[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-02T23:52:20.101Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-04-02T23:52:20.101Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-04-02T23:52:20.101Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-04-02T23:52:20.101Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' +[2024-04-02T23:52:20.101Z] + [ xfalse = xtrue ] +[2024-04-02T23:52:20.101Z] + [ xfalse = xtrue ] +[2024-04-02T23:52:20.101Z] + [ xfalse = xtrue ] +[2024-04-02T23:52:20.101Z] + [ xtrue = xtrue ] +[2024-04-02T23:52:20.101Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-02T23:52:20.101Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-02T23:52:20.101Z] + [ -n ] +[2024-04-02T23:52:20.101Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-02T23:52:20.101Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-02T23:52:20.101Z] Will run notebooks against pavics.ouranos.ca +[2024-04-02T23:52:20.101Z] + [ -z ] +[2024-04-02T23:52:20.101Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-04-02T23:52:20.101Z] + git diff +[2024-04-02T23:52:20.101Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-02T23:52:20.102Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-04-02T23:52:22.626Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-02T23:52:22.626Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-02T23:52:23.193Z] ============================= test session starts ============================== +[2024-04-02T23:52:23.193Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-04-02T23:52:23.193Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-04-02T23:52:23.193Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-02T23:52:23.193Z] collected 220 items +[2024-04-02T23:52:23.193Z] +[2024-04-02T23:52:27.368Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-04-02T23:52:54.778Z] ..... [ 2%] +[2024-04-02T23:52:57.300Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-04-02T23:53:03.953Z] ...... [ 5%] +[2024-04-02T23:53:05.854Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-04-02T23:53:11.945Z] ..... [ 8%] +[2024-04-02T23:53:12.881Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-04-02T23:53:15.274Z] FFFFFFF [ 12%] +[2024-04-02T23:53:25.248Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] +[2024-04-02T23:55:59.622Z] ........... [ 17%] +[2024-04-02T23:55:59.622Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-04-02T23:56:03.148Z] ............... [ 25%] +[2024-04-02T23:56:05.674Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-04-02T23:56:11.065Z] .... [ 27%] +[2024-04-02T23:56:12.975Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] +[2024-04-02T23:57:01.606Z] ..... [ 30%] +[2024-04-02T23:57:09.718Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-04-02T23:57:16.282Z] ..... [ 32%] +[2024-04-02T23:57:17.670Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] +[2024-04-02T23:57:20.786Z] ...... [ 35%] +[2024-04-02T23:57:21.718Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-04-02T23:57:24.528Z] .... [ 38%] +[2024-04-02T23:57:42.676Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-04-02T23:59:08.723Z] ........................... [ 50%] +[2024-04-02T23:59:08.723Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-04-02T23:59:09.916Z] ... [ 52%] +[2024-04-02T23:59:10.853Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-04-02T23:59:28.917Z] ........................ [ 64%] +[2024-04-02T23:59:31.450Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-04-02T23:59:35.623Z] ..... [ 66%] +[2024-04-02T23:59:44.334Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] +[2024-04-02T23:59:52.908Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-04-02T23:59:54.278Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-04-02T23:59:57.326Z] ...... [ 77%] +[2024-04-03T00:00:03.876Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] +[2024-04-03T00:00:16.237Z] ............. [ 84%] +[2024-04-03T00:00:26.221Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-04-03T00:00:45.612Z] ....s [ 86%] +[2024-04-03T00:00:53.707Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-04-03T00:01:06.182Z] .F. [ 88%] +[2024-04-03T00:01:18.416Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-04-03T00:02:09.240Z] ...... [ 91%] +[2024-04-03T00:02:10.169Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-04-03T00:04:05.126Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-04-03T00:04:05.126Z] +[2024-04-03T00:04:05.127Z] =================================== FAILURES =================================== +[2024-04-03T00:04:05.127Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 1 _ +[2024-04-03T00:04:05.127Z] Notebook cell execution failed +[2024-04-03T00:04:05.127Z] Cell 1: Cell execution caused an exception +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] Input: +[2024-04-03T00:04:05.127Z] wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") +[2024-04-03T00:04:05.127Z] print("Title: ", wms.identification.title) +[2024-04-03T00:04:05.127Z] print("Type: ", wms.identification.type) +[2024-04-03T00:04:05.127Z] print("Operations: ", [op.name for op in wms.operations]) +[2024-04-03T00:04:05.127Z] print("GetMap options: ", wms.getOperationByName("GetMap").formatOptions) +[2024-04-03T00:04:05.127Z] wms.contents.keys() +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] Traceback: +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] Traceback (most recent call last): +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File /opt/conda/envs/birdy/lib/python3.10/site-packages/IPython/core/interactiveshell.py:3577 in run_code +[2024-04-03T00:04:05.127Z] exec(code_obj, self.user_global_ns, self.user_ns) +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  Cell In[1], line 1 +[2024-04-03T00:04:05.127Z] wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/wms.py:50 in WebMapService +[2024-04-03T00:04:05.127Z] return wms111.WebMapService_1_1_1( +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/wms111.py:75 in __init__ +[2024-04-03T00:04:05.127Z] self._capabilities = reader.read(self.url, timeout=self.timeout) +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/common.py:69 in read +[2024-04-03T00:04:05.127Z] return etree.fromstring(raw_text) +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File src/lxml/etree.pyx:3257 in lxml.etree.fromstring +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:1916 in lxml.etree._parseMemoryDocument +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:1803 in lxml.etree._parseDoc +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:1144 in lxml.etree._BaseParser._parseDoc +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:618 in lxml.etree._ParserContext._handleParseResultDoc +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:728 in lxml.etree._handleParseResult +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:657 in lxml.etree._raiseParseError +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z]  File :1 +[2024-04-03T00:04:05.127Z] XMLSyntaxError: Start tag expected, '<' not found, line 1, column 1 +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 2 _ +[2024-04-03T00:04:05.127Z] Notebook cell execution failed +[2024-04-03T00:04:05.127Z] Cell 2: Cell execution caused an exception +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] Input: +[2024-04-03T00:04:05.127Z] for key in [ +[2024-04-03T00:04:05.127Z] "MOD14A1_M_FIRE", +[2024-04-03T00:04:05.127Z] "CERES_LWFLUX_M", +[2024-04-03T00:04:05.127Z] "ICESAT_ELEV_G", +[2024-04-03T00:04:05.127Z] "MODAL2_M_CLD_WP", +[2024-04-03T00:04:05.127Z] "MOD_143D_RR", +[2024-04-03T00:04:05.127Z] ]: +[2024-04-03T00:04:05.127Z] print(wms.contents[key].title) +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] Traceback: +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] --------------------------------------------------------------------------- +[2024-04-03T00:04:05.127Z] NameError Traceback (most recent call last) +[2024-04-03T00:04:05.127Z] Cell In[1], line 8 +[2024-04-03T00:04:05.127Z]  1 for key in [ +[2024-04-03T00:04:05.127Z]  2 "MOD14A1_M_FIRE", +[2024-04-03T00:04:05.127Z]  3 "CERES_LWFLUX_M", +[2024-04-03T00:04:05.127Z]  (...) +[2024-04-03T00:04:05.127Z]  6 "MOD_143D_RR", +[2024-04-03T00:04:05.127Z]  7 ]: +[2024-04-03T00:04:05.127Z] ----> 8 print(wms.contents[key].title) +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] NameError: name 'wms' is not defined +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 3 _ +[2024-04-03T00:04:05.127Z] Notebook cell execution failed +[2024-04-03T00:04:05.127Z] Cell 3: Cell execution caused an exception +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] Input: +[2024-04-03T00:04:05.127Z] # NBVAL_IGNORE_OUTPUT +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] from IPython.core.display import HTML +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] name = "MOD_143D_RR" +[2024-04-03T00:04:05.127Z] layer = wms.contents[name] +[2024-04-03T00:04:05.127Z] print("Abstract: ", layer.abstract) +[2024-04-03T00:04:05.127Z] print("BBox: ", layer.boundingBoxWGS84) +[2024-04-03T00:04:05.127Z] print("CRS: ", layer.crsOptions) +[2024-04-03T00:04:05.127Z] print("Styles: ", layer.styles) +[2024-04-03T00:04:05.127Z] print("Timestamps: ", layer.timepositions) +[2024-04-03T00:04:05.127Z] HTML(layer.parent.abstract) +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] Traceback: +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] --------------------------------------------------------------------------- +[2024-04-03T00:04:05.127Z] NameError Traceback (most recent call last) +[2024-04-03T00:04:05.127Z] Cell In[1], line 6 +[2024-04-03T00:04:05.127Z]  3 from IPython.core.display import HTML +[2024-04-03T00:04:05.127Z]  5 name = "MOD_143D_RR" +[2024-04-03T00:04:05.127Z] ----> 6 layer = wms.contents[name] +[2024-04-03T00:04:05.127Z]  7 print("Abstract: ", layer.abstract) +[2024-04-03T00:04:05.127Z]  8 print("BBox: ", layer.boundingBoxWGS84) +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] NameError: name 'wms' is not defined +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 4 _ +[2024-04-03T00:04:05.127Z] Notebook cell execution failed +[2024-04-03T00:04:05.127Z] Cell 4: Cell execution caused an exception +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] Input: +[2024-04-03T00:04:05.127Z] response = wms.getmap( +[2024-04-03T00:04:05.127Z] layers=[ +[2024-04-03T00:04:05.127Z] name, +[2024-04-03T00:04:05.127Z] ], +[2024-04-03T00:04:05.127Z] styles=["rgb"], +[2024-04-03T00:04:05.127Z] bbox=(-180, -90, 180, 90), # Left, bottom, right, top +[2024-04-03T00:04:05.127Z] format="image/png", +[2024-04-03T00:04:05.127Z] size=(600, 600), +[2024-04-03T00:04:05.127Z] srs="EPSG:4326", +[2024-04-03T00:04:05.127Z] time="2018-09-16", +[2024-04-03T00:04:05.127Z] transparent=True, +[2024-04-03T00:04:05.127Z] ) +[2024-04-03T00:04:05.127Z] response +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] Traceback: +[2024-04-03T00:04:05.127Z] +[2024-04-03T00:04:05.127Z] --------------------------------------------------------------------------- +[2024-04-03T00:04:05.128Z] NameError Traceback (most recent call last) +[2024-04-03T00:04:05.128Z] Cell In[1], line 1 +[2024-04-03T00:04:05.128Z] ----> 1 response = wms.getmap( +[2024-04-03T00:04:05.128Z]  2 layers=[ +[2024-04-03T00:04:05.128Z]  3 name, +[2024-04-03T00:04:05.128Z]  4 ], +[2024-04-03T00:04:05.128Z]  5 styles=["rgb"], +[2024-04-03T00:04:05.128Z]  6 bbox=(-180, -90, 180, 90), # Left, bottom, right, top +[2024-04-03T00:04:05.128Z]  7 format="image/png", +[2024-04-03T00:04:05.128Z]  8 size=(600, 600), +[2024-04-03T00:04:05.128Z]  9 srs="EPSG:4326", +[2024-04-03T00:04:05.128Z]  10 time="2018-09-16", +[2024-04-03T00:04:05.128Z]  11 transparent=True, +[2024-04-03T00:04:05.128Z]  12 ) +[2024-04-03T00:04:05.128Z]  13 response +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] NameError: name 'wms' is not defined +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 5 _ +[2024-04-03T00:04:05.128Z] Notebook cell execution failed +[2024-04-03T00:04:05.128Z] Cell 5: Cell execution caused an exception +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] Input: +[2024-04-03T00:04:05.128Z] from IPython.display import Image +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] Image(response.read()) +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] Traceback: +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] --------------------------------------------------------------------------- +[2024-04-03T00:04:05.128Z] NameError Traceback (most recent call last) +[2024-04-03T00:04:05.128Z] Cell In[1], line 3 +[2024-04-03T00:04:05.128Z]  1 from IPython.display import Image +[2024-04-03T00:04:05.128Z] ----> 3 Image(response.read()) +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] NameError: name 'response' is not defined +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 6 _ +[2024-04-03T00:04:05.128Z] Notebook cell execution failed +[2024-04-03T00:04:05.128Z] Cell 6: Cell execution caused an exception +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] Input: +[2024-04-03T00:04:05.128Z] import io +[2024-04-03T00:04:05.128Z] import warnings +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] import cartopy +[2024-04-03T00:04:05.128Z] import matplotlib.pyplot as plt +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] image = io.BytesIO(response.read()) +[2024-04-03T00:04:05.128Z] data = plt.imread(image) +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] Traceback: +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] --------------------------------------------------------------------------- +[2024-04-03T00:04:05.128Z] NameError Traceback (most recent call last) +[2024-04-03T00:04:05.128Z] Cell In[1], line 7 +[2024-04-03T00:04:05.128Z]  4 import cartopy +[2024-04-03T00:04:05.128Z]  5 import matplotlib.pyplot as plt +[2024-04-03T00:04:05.128Z] ----> 7 image = io.BytesIO(response.read()) +[2024-04-03T00:04:05.128Z]  8 data = plt.imread(image) +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] NameError: name 'response' is not defined +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 7 _ +[2024-04-03T00:04:05.128Z] Notebook cell execution failed +[2024-04-03T00:04:05.128Z] Cell 7: Cell execution caused an exception +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] Input: +[2024-04-03T00:04:05.128Z] warnings.filterwarnings("ignore", category=cartopy.io.DownloadWarning) +[2024-04-03T00:04:05.128Z] fig = plt.figure(figsize=(8, 6)) +[2024-04-03T00:04:05.128Z] ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) +[2024-04-03T00:04:05.128Z] ax.imshow( +[2024-04-03T00:04:05.128Z] data, +[2024-04-03T00:04:05.128Z] origin="upper", +[2024-04-03T00:04:05.128Z] extent=(-180, 180, -90, 90), +[2024-04-03T00:04:05.128Z] transform=cartopy.crs.PlateCarree(), +[2024-04-03T00:04:05.128Z] ) +[2024-04-03T00:04:05.128Z] ax.coastlines() +[2024-04-03T00:04:05.128Z] plt.show() +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] Traceback: +[2024-04-03T00:04:05.128Z] +[2024-04-03T00:04:05.128Z] --------------------------------------------------------------------------- +[2024-04-03T00:04:05.128Z] NameError Traceback (most recent call last) +[2024-04-03T00:04:05.128Z] Cell In[1], line 5 +[2024-04-03T00:04:05.128Z]  2 fig = plt.figure(figsize=(8, 6)) +[2024-04-03T00:04:05.128Z]  3 ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) +[2024-04-03T00:04:05.128Z]  4 ax.imshow( +[2024-04-03T00:04:05.128Z] ----> 5 data, +[2024-04-03T00:04:05.128Z]  6 origin="upper", +[2024-04-03T00:04:05.128Z]  7 extent=(-180, 180, -90, 90), +[2024-04-03T00:04:05.129Z]  8 transform=cartopy.crs.PlateCarree(), +[2024-04-03T00:04:05.129Z]  9 ) +[2024-04-03T00:04:05.129Z]  10 ax.coastlines() +[2024-04-03T00:04:05.129Z]  11 plt.show() +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] NameError: name 'data' is not defined +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ +[2024-04-03T00:04:05.129Z] Notebook cell execution failed +[2024-04-03T00:04:05.129Z] Cell 2: Cell execution caused an exception +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] Input: +[2024-04-03T00:04:05.129Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) +[2024-04-03T00:04:05.129Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] chng_f, pos_f = xens.change_significance( +[2024-04-03T00:04:05.129Z] fut.sel(time=fut["time.season"] == "JJA"), +[2024-04-03T00:04:05.129Z] ref.sel(time=ref["time.season"] == "JJA"), +[2024-04-03T00:04:05.129Z] test="ttest", +[2024-04-03T00:04:05.129Z] ) +[2024-04-03T00:04:05.129Z] plt.figure( +[2024-04-03T00:04:05.129Z] figsize=(15, 6), +[2024-04-03T00:04:05.129Z] ) +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] plt.subplot(1, 2, 1) +[2024-04-03T00:04:05.129Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] plt.title(chng_f.description.split(".")[0]) +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] plt.subplot(1, 2, 2) +[2024-04-03T00:04:05.129Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-03T00:04:05.129Z] plt.title(pos_f.description.split(".")[0]) +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] display() +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] Traceback: +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] --------------------------------------------------------------------------- +[2024-04-03T00:04:05.129Z] AttributeError Traceback (most recent call last) +[2024-04-03T00:04:05.129Z] Cell In[1], line 20 +[2024-04-03T00:04:05.129Z]  18 plt.subplot(1, 2, 2) +[2024-04-03T00:04:05.129Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-03T00:04:05.129Z] ---> 20 plt.title(pos_f.description.split(".")[0]) +[2024-04-03T00:04:05.129Z]  22 display() +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-04-03T00:04:05.129Z]  275 with suppress(KeyError): +[2024-04-03T00:04:05.129Z]  276 return source[name] +[2024-04-03T00:04:05.129Z] --> 277 raise AttributeError( +[2024-04-03T00:04:05.129Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-04-03T00:04:05.129Z]  279 ) +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-04-03T00:04:05.129Z] +[2024-04-03T00:04:05.129Z] =========================== short test summary info ============================ +[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 1 +[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 2 +[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 3 +[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 4 +[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 5 +[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 6 +[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 7 +[2024-04-03T00:04:05.129Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-04-03T00:04:05.129Z] ============= 8 failed, 211 passed, 1 skipped in 700.87s (0:11:40) ============= +[2024-04-03T00:04:05.129Z] + EXIT_CODE=1 +[2024-04-03T00:04:05.129Z] + echo true +[2024-04-03T00:04:05.129Z] + tr [:upper:] [:lower:] +[2024-04-03T00:04:05.129Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-04-03T00:04:05.129Z] + [ xtrue = xtrue ] +[2024-04-03T00:04:05.129Z] + mkdir -p buildout +[2024-04-03T00:04:05.129Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-03T00:04:05.129Z] + filename=CaSR_basic.ipynb +[2024-04-03T00:04:05.129Z] + echo CaSR_basic.ipynb +[2024-04-03T00:04:05.129Z] + sed s/.ipynb$// +[2024-04-03T00:04:05.129Z] + filename=CaSR_basic +[2024-04-03T00:04:05.129Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-04-03T00:04:05.129Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-03T00:04:05.696Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-04-03T00:04:37.798Z] [NbConvertApp] Writing 694582 bytes to buildout/CaSR_basic.output.ipynb +[2024-04-03T00:04:37.798Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-03T00:04:37.798Z] + filename=WCS_example.ipynb +[2024-04-03T00:04:37.798Z] + sed s/.ipynb$// +[2024-04-03T00:04:37.798Z] + echo WCS_example.ipynb +[2024-04-03T00:04:37.798Z] + filename=WCS_example +[2024-04-03T00:04:37.798Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-04-03T00:04:37.798Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-03T00:04:39.180Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-04-03T00:04:51.377Z] [NbConvertApp] Writing 145194 bytes to buildout/WCS_example.output.ipynb +[2024-04-03T00:04:51.378Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-03T00:04:51.378Z] + filename=WFS_example.ipynb +[2024-04-03T00:04:51.378Z] + echo WFS_example.ipynb +[2024-04-03T00:04:51.378Z] + sed s/.ipynb$// +[2024-04-03T00:04:51.378Z] + filename=WFS_example +[2024-04-03T00:04:51.378Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-04-03T00:04:51.378Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-03T00:04:51.640Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-04-03T00:05:01.640Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb +[2024-04-03T00:05:01.640Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-03T00:05:01.640Z] + filename=WMS_example.ipynb +[2024-04-03T00:05:01.640Z] + echo WMS_example.ipynb +[2024-04-03T00:05:01.640Z] + sed s/.ipynb$// +[2024-04-03T00:05:01.640Z] + filename=WMS_example +[2024-04-03T00:05:01.640Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-04-03T00:05:01.640Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-03T00:05:02.583Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-04-03T00:05:10.680Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb +[2024-04-03T00:05:10.680Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-03T00:05:10.680Z] + filename=climex.ipynb +[2024-04-03T00:05:10.680Z] + echo climex.ipynb +[2024-04-03T00:05:10.680Z] + sed s/.ipynb$// +[2024-04-03T00:05:10.680Z] + filename=climex +[2024-04-03T00:05:10.680Z] + [ -e buildout/climex.output.ipynb ] +[2024-04-03T00:05:10.680Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-03T00:05:11.250Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook +[2024-04-03T00:08:02.771Z] [NbConvertApp] Writing 1789396 bytes to buildout/climex.output.ipynb +[2024-04-03T00:08:02.771Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-03T00:08:02.772Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-04-03T00:08:02.772Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-04-03T00:08:02.772Z] + sed s/.ipynb$// +[2024-04-03T00:08:02.772Z] + filename=eccc-geoapi-climate-stations +[2024-04-03T00:08:02.772Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-04-03T00:08:02.772Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-03T00:08:03.710Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-04-03T00:08:15.936Z] [NbConvertApp] Writing 279048 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-04-03T00:08:15.936Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-03T00:08:15.936Z] + filename=eccc-geoapi-xclim.ipynb +[2024-04-03T00:08:15.936Z] + echo eccc-geoapi-xclim.ipynb +[2024-04-03T00:08:15.936Z] + sed s/.ipynb$// +[2024-04-03T00:08:15.936Z] + filename=eccc-geoapi-xclim +[2024-04-03T00:08:15.936Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-04-03T00:08:15.936Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-03T00:08:16.859Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-04-03T00:08:26.836Z] [NbConvertApp] Writing 108377 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-04-03T00:08:26.836Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-03T00:08:26.836Z] + filename=esgf-dap.ipynb +[2024-04-03T00:08:26.836Z] + sed s/.ipynb$// +[2024-04-03T00:08:26.836Z] + echo esgf-dap.ipynb +[2024-04-03T00:08:26.836Z] + filename=esgf-dap +[2024-04-03T00:08:26.836Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-04-03T00:08:26.836Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-03T00:08:27.776Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-04-03T00:08:35.961Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb +[2024-04-03T00:08:35.961Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-03T00:08:35.961Z] + filename=forecasts.ipynb +[2024-04-03T00:08:35.961Z] + sed s/.ipynb$// +[2024-04-03T00:08:35.962Z] + echo forecasts.ipynb +[2024-04-03T00:08:35.962Z] + filename=forecasts +[2024-04-03T00:08:35.962Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-04-03T00:08:35.962Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-03T00:08:37.343Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook +[2024-04-03T00:08:55.437Z] [NbConvertApp] Writing 181135 bytes to buildout/forecasts.output.ipynb +[2024-04-03T00:08:55.437Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-03T00:08:55.437Z] + filename=jupyter_extensions.ipynb +[2024-04-03T00:08:55.437Z] + echo jupyter_extensions.ipynb +[2024-04-03T00:08:55.437Z] + sed s/.ipynb$// +[2024-04-03T00:08:55.437Z] + filename=jupyter_extensions +[2024-04-03T00:08:55.437Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-04-03T00:08:55.437Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-03T00:08:55.437Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-04-03T00:08:57.334Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb +[2024-04-03T00:08:57.334Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-03T00:08:57.334Z] + filename=opendap.ipynb +[2024-04-03T00:08:57.334Z] + echo opendap.ipynb +[2024-04-03T00:08:57.334Z] + sed s/.ipynb$// +[2024-04-03T00:08:57.334Z] + filename=opendap +[2024-04-03T00:08:57.334Z] + [ -e buildout/opendap.output.ipynb ] +[2024-04-03T00:08:57.334Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-03T00:08:59.229Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook +[2024-04-03T00:09:04.487Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb +[2024-04-03T00:09:04.487Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-03T00:09:04.487Z] + filename=pavics_thredds.ipynb +[2024-04-03T00:09:04.487Z] + sed s/.ipynb$// +[2024-04-03T00:09:04.487Z] + echo pavics_thredds.ipynb +[2024-04-03T00:09:04.487Z] + filename=pavics_thredds +[2024-04-03T00:09:04.487Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-04-03T00:09:04.487Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-03T00:09:05.859Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-04-03T00:09:09.138Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-03T00:09:09.138Z] context: Access to service is forbidden. +[2024-04-03T00:09:09.139Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-03T00:09:09.139Z] context: Access to service is forbidden. +[2024-04-03T00:09:11.042Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb +[2024-04-03T00:09:11.299Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-03T00:09:11.299Z] + filename=regridding.ipynb +[2024-04-03T00:09:11.299Z] + sed s/.ipynb$// +[2024-04-03T00:09:11.299Z] + echo regridding.ipynb +[2024-04-03T00:09:11.299Z] + filename=regridding +[2024-04-03T00:09:11.299Z] + [ -e buildout/regridding.output.ipynb ] +[2024-04-03T00:09:11.299Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-03T00:09:13.210Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook +[2024-04-03T00:10:49.697Z] [NbConvertApp] Writing 1239955 bytes to buildout/regridding.output.ipynb +[2024-04-03T00:10:49.697Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-03T00:10:49.697Z] + filename=rendering.ipynb +[2024-04-03T00:10:49.697Z] + + echo rendering.ipynb +[2024-04-03T00:10:49.698Z] sed s/.ipynb$// +[2024-04-03T00:10:49.698Z] + filename=rendering +[2024-04-03T00:10:49.698Z] + [ -e buildout/rendering.output.ipynb ] +[2024-04-03T00:10:49.698Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-03T00:10:49.698Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook +[2024-04-03T00:10:49.698Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb +[2024-04-03T00:10:49.956Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-03T00:10:49.956Z] + filename=subset-user-input.ipynb +[2024-04-03T00:10:49.956Z] + + sed s/.ipynb$// +[2024-04-03T00:10:49.956Z] echo subset-user-input.ipynb +[2024-04-03T00:10:49.956Z] + filename=subset-user-input +[2024-04-03T00:10:49.956Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-04-03T00:10:49.956Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-03T00:10:51.860Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-04-03T00:11:13.787Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb +[2024-04-03T00:11:13.787Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-03T00:11:13.787Z] + filename=subsetting.ipynb +[2024-04-03T00:11:13.787Z] + sed s/.ipynb$// +[2024-04-03T00:11:13.787Z] + echo subsetting.ipynb +[2024-04-03T00:11:13.787Z] + filename=subsetting +[2024-04-03T00:11:13.787Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-04-03T00:11:13.788Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-03T00:11:13.788Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook +[2024-04-03T00:11:21.986Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb +[2024-04-03T00:11:21.986Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-03T00:11:21.986Z] + filename=dap_subset.ipynb +[2024-04-03T00:11:21.986Z] + sed s/.ipynb$// +[2024-04-03T00:11:21.986Z] + echo dap_subset.ipynb +[2024-04-03T00:11:21.986Z] + filename=dap_subset +[2024-04-03T00:11:21.986Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-04-03T00:11:21.987Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-03T00:11:23.891Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-04-03T00:11:33.867Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb +[2024-04-03T00:11:33.867Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-03T00:11:33.867Z] + filename=finch-usage.ipynb +[2024-04-03T00:11:33.867Z] + sed s/.ipynb$// +[2024-04-03T00:11:33.867Z] + echo finch-usage.ipynb +[2024-04-03T00:11:33.867Z] + filename=finch-usage +[2024-04-03T00:11:33.867Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-04-03T00:11:33.867Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-03T00:11:35.250Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-04-03T00:11:45.222Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb +[2024-04-03T00:11:45.222Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-03T00:11:45.222Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-03T00:11:45.222Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-03T00:11:45.222Z] + sed s/.ipynb$// +[2024-04-03T00:11:45.222Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-04-03T00:11:45.222Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-04-03T00:11:45.222Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-03T00:11:46.604Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-04-03T00:11:51.960Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-04-03T00:11:51.960Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-03T00:11:51.960Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-03T00:11:51.960Z] + sed s/.ipynb$// +[2024-04-03T00:11:51.960Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-03T00:11:51.960Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-04-03T00:11:51.960Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-04-03T00:11:51.960Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-03T00:11:53.340Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-04-03T00:12:15.280Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-04-03T00:12:15.280Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-03T00:12:15.280Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-03T00:12:15.280Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-03T00:12:15.280Z] + sed s/.ipynb$// +[2024-04-03T00:12:15.280Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-04-03T00:12:15.280Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-04-03T00:12:15.280Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-03T00:12:15.280Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-04-03T00:16:51.868Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,306 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,309 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,310 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,313 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError +[2024-04-03T00:16:51.868Z] Traceback (most recent call last): +[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply +[2024-04-03T00:16:51.868Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) +[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async +[2024-04-03T00:16:51.868Z] result = await obj +[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg +[2024-04-03T00:16:51.868Z] raise Empty +[2024-04-03T00:16:51.868Z] _queue.Empty +[2024-04-03T00:16:51.868Z] +[2024-04-03T00:16:51.868Z] During handling of the above exception, another exception occurred: +[2024-04-03T00:16:51.868Z] +[2024-04-03T00:16:51.868Z] Traceback (most recent call last): +[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-04-03T00:16:51.868Z] sys.exit(main()) +[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance +[2024-04-03T00:16:51.868Z] super().launch_instance(argv=argv, **kwargs) +[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance +[2024-04-03T00:16:51.868Z] app.start() +[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start +[2024-04-03T00:16:51.868Z] self.convert_notebooks() +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks +[2024-04-03T00:16:51.869Z] self.convert_single_notebook(notebook_filename) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook +[2024-04-03T00:16:51.869Z] output, resources = self.export_single_notebook( +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook +[2024-04-03T00:16:51.869Z] output, resources = self.exporter.from_filename( +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-04-03T00:16:51.869Z] return self.from_file(f, resources=resources, **kw) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-04-03T00:16:51.869Z] return self.from_notebook_node( +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-04-03T00:16:51.869Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-04-03T00:16:51.869Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess +[2024-04-03T00:16:51.869Z] nbc, resc = preprocessor(nbc, resc) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-04-03T00:16:51.869Z] return self.preprocess(nb, resources) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess +[2024-04-03T00:16:51.869Z] self.preprocess_cell(cell, resources, index) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell +[2024-04-03T00:16:51.869Z] cell = self.execute_cell(cell, index, store_history=True) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped +[2024-04-03T00:16:51.869Z] return loop.run_until_complete(inner) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-04-03T00:16:51.869Z] return future.result() +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell +[2024-04-03T00:16:51.869Z] exec_reply = await self.task_poll_for_reply +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply +[2024-04-03T00:16:51.869Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) +[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout +[2024-04-03T00:16:51.869Z] raise CellTimeoutError.error_from_timeout_and_cell( +[2024-04-03T00:16:51.869Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. +[2024-04-03T00:16:51.869Z] The message was: Cell execution timed out. +[2024-04-03T00:16:51.869Z] Here is a preview of the cell contents: +[2024-04-03T00:16:51.869Z] ------------------- +[2024-04-03T00:16:51.869Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] +[2024-04-03T00:16:51.869Z] ... +[2024-04-03T00:16:51.869Z] [' print("finished")', '', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] +[2024-04-03T00:16:51.869Z] ------------------- +[2024-04-03T00:16:51.869Z] +[2024-04-03T00:16:51.869Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-03T00:16:51.869Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-03T00:16:51.869Z] + sed s/.ipynb$// +[2024-04-03T00:16:51.869Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-03T00:16:51.869Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-04-03T00:16:51.869Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-04-03T00:16:51.869Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-03T00:16:51.869Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-04-03T00:17:09.963Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-04-03T00:17:09.963Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-03T00:17:09.963Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-03T00:17:09.963Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-03T00:17:09.963Z] + sed s/.ipynb$// +[2024-04-03T00:17:09.963Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-04-03T00:17:09.963Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-04-03T00:17:09.963Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-03T00:17:09.963Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-04-03T00:18:17.618Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-04-03T00:18:17.618Z] + basename notebooks/hummingbird.ipynb +[2024-04-03T00:18:17.618Z] + filename=hummingbird.ipynb +[2024-04-03T00:18:17.618Z] + sed s/.ipynb$// +[2024-04-03T00:18:17.618Z] + echo hummingbird.ipynb +[2024-04-03T00:18:17.618Z] + filename=hummingbird +[2024-04-03T00:18:17.618Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-04-03T00:18:17.618Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-04-03T00:18:17.618Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-04-03T00:18:20.147Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb +[2024-04-03T00:18:20.147Z] + basename notebooks/stress-tests.ipynb +[2024-04-03T00:18:20.147Z] + filename=stress-tests.ipynb +[2024-04-03T00:18:20.147Z] + + sed s/.ipynb$// +[2024-04-03T00:18:20.147Z] echo stress-tests.ipynb +[2024-04-03T00:18:20.147Z] + filename=stress-tests +[2024-04-03T00:18:20.147Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-04-03T00:18:20.147Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-04-03T00:18:21.525Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-04-03T00:20:28.025Z] [NbConvertApp] Writing 428302 bytes to buildout/stress-tests.output.ipynb +[2024-04-03T00:20:28.025Z] + exit 1 +[2024-04-03T00:20:28.025Z] + EXIT_CODE=1 +[2024-04-03T00:20:28.025Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-04-03T00:20:28.025Z] + mkdir -p buildout/env-dump +[2024-04-03T00:20:28.025Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-04-03T00:20:28.025Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-04-03T00:20:28.025Z] + conda env export -n birdy +[2024-04-03T00:20:36.144Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-03T00:20:36.144Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-03T00:20:36.144Z] + conda list -n birdy --explicit +[2024-04-03T00:20:46.222Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-03T00:20:46.222Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-03T00:20:46.222Z] + pip freeze +[2024-04-03T00:20:46.487Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -1134,41 +1096,41 @@ $ docker top 243fa8c5fdb17a3f19bb778abbabe55b4c4558e10481f75293ba2f6b4aedab03 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-23T19:52:24.521Z] Archiving artifacts -[2024-03-23T19:52:24.546Z] Recording fingerprints +[2024-04-03T00:20:48.995Z] Archiving artifacts +[2024-04-03T00:20:49.200Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:24.583Z] Archiving artifacts -[2024-03-23T19:52:25.248Z] Recording fingerprints +[2024-04-03T00:20:49.551Z] Archiving artifacts +[2024-04-03T00:20:50.217Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:25.369Z] Archiving artifacts -[2024-03-23T19:52:25.387Z] Recording fingerprints +[2024-04-03T00:20:51.033Z] Archiving artifacts +[2024-04-03T00:20:51.049Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:25.415Z] Archiving artifacts -[2024-03-23T19:52:25.435Z] Recording fingerprints +[2024-04-03T00:20:51.118Z] Archiving artifacts +[2024-04-03T00:20:51.139Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:25.462Z] Archiving artifacts -[2024-03-23T19:52:25.488Z] Recording fingerprints +[2024-04-03T00:20:51.175Z] Archiving artifacts +[2024-04-03T00:20:51.202Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:25.521Z] Archiving artifacts -[2024-03-23T19:52:25.560Z] Recording fingerprints +[2024-04-03T00:20:51.421Z] Archiving artifacts +[2024-04-03T00:20:51.461Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:25.712Z] Archiving artifacts -[2024-03-23T19:52:25.725Z] Recording fingerprints +[2024-04-03T00:20:52.997Z] Archiving artifacts +[2024-04-03T00:20:53.199Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:25.751Z] Archiving artifacts -[2024-03-23T19:52:25.787Z] Recording fingerprints +[2024-04-03T00:20:53.287Z] Archiving artifacts +[2024-04-03T00:20:53.352Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:25.898Z] Archiving artifacts -[2024-03-23T19:52:26.243Z] Recording fingerprints +[2024-04-03T00:20:53.566Z] Archiving artifacts +[2024-04-03T00:20:53.986Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:26.332Z] Archiving artifacts -[2024-03-23T19:52:27.141Z] Recording fingerprints +[2024-04-03T00:20:54.241Z] Archiving artifacts +[2024-04-03T00:20:55.276Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T19:52:27.536Z] Archiving artifacts -[2024-03-23T19:52:27.557Z] Recording fingerprints +[2024-04-03T00:20:56.616Z] Archiving artifacts +[2024-04-03T00:20:56.653Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-23T19:52:27.633Z] Sending e-mails to: vu.long@ouranos.ca +[2024-04-03T00:20:56.783Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -1178,8 +1140,8 @@ $ docker top 243fa8c5fdb17a3f19bb778abbabe55b4c4558e10481f75293ba2f6b4aedab03 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 243fa8c5fdb17a3f19bb778abbabe55b4c4558e10481f75293ba2f6b4aedab03 -$ docker rm -f 243fa8c5fdb17a3f19bb778abbabe55b4c4558e10481f75293ba2f6b4aedab03 +$ docker stop --time=1 f262edeb29bf9aea0954c3fdbe768e35b32e6a65d7c416dc3414ca3469efbe74 +$ docker rm -f f262edeb29bf9aea0954c3fdbe768e35b32e6a65d7c416dc3414ca3469efbe74 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv @@ -1188,4 +1150,3 @@ $ docker rm -f 243fa8c5fdb17a3f19bb778abbabe55b4c4558e10481f75293ba2f6b4aedab03 [Pipeline] End of Pipeline ERROR: script returned exit code 1 Finished: FAILURE - From c0bc360af882397b9578134699d90287a2042227 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 2 Apr 2024 20:27:50 -0400 Subject: [PATCH 057/104] docker: py310-240402: jenkins raven nb --- .../jenkins-buildlogs-raven.txt | 3954 ++++++++--------- 1 file changed, 1977 insertions(+), 1977 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index 89b60bc..7051a13 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -17,7 +17,7 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from e42adfc17796a3fd14a4cc28d45c30d6b003480a +Obtained Jenkinsfile from fbe057b1fb1c37a3611c45502e088c24533e6b12 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -34,1981 +34,1981 @@ Fetching without tags Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision e42adfc17796a3fd14a4cc28d45c30d6b003480a (new-docker-build) -Commit message: "docker: py310-240323: build log" +Checking out Revision fbe057b1fb1c37a3611c45502e088c24533e6b12 (new-docker-build) +Commit message: "docker: py310-240402: build log" > git config core.sparsecheckout # timeout=10 - > git checkout -f e42adfc17796a3fd14a4cc28d45c30d6b003480a # timeout=10 - > git rev-list --no-walk 4fcedaf28732cf4ec885c9bd695610e2b80253a4 # timeout=10 + > git checkout -f fbe057b1fb1c37a3611c45502e088c24533e6b12 # timeout=10 + > git rev-list --no-walk fbe057b1fb1c37a3611c45502e088c24533e6b12 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240323 ++ docker inspect -f . pavics/workflow-tests:py310-240402 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240323 cat -$ docker top df2b6968856f2a6f247b677066bb5c2d2a1f0388cec1053c5e1f361206911ba4 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240402 cat +$ docker top 9c8a3357bc15ed4ff2a5faf012a247ff2e4ecf5c42b9b2d708a1e060347bede9 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-03-23T18:17:22.637Z] Timeout set to expire in 2 hr 0 min +[2024-04-02T23:53:55.162Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-03-23T18:17:22.765Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-02T23:53:56.743Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-03-23T18:17:23.066Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-03-23T18:17:23.067Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-23T18:17:23.067Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-23T18:17:23.067Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-23T18:17:23.067Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-23T18:17:23.067Z] FINCH_BRANCH has been set to 'master' -[2024-03-23T18:17:23.067Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-23T18:17:23.067Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-23T18:17:23.067Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-23T18:17:23.067Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-23T18:17:23.067Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-23T18:17:23.067Z] RAVEN_BRANCH has been set to 'main' -[2024-03-23T18:17:23.067Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-23T18:17:23.067Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-23T18:17:23.067Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-23T18:17:23.067Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-23T18:17:23.067Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-23T18:17:23.067Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-23T18:17:23.067Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-23T18:17:23.067Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-03-23T18:17:23.067Z] + git clean -fdx -[2024-03-23T18:17:24.968Z] Removing .pytest_cache/ -[2024-03-23T18:17:24.968Z] Removing PAVICS-landing-master/ -[2024-03-23T18:17:24.968Z] Removing RavenPy-master/ -[2024-03-23T18:17:24.968Z] Removing __pycache__/ -[2024-03-23T18:17:24.968Z] Removing buildout/ -[2024-03-23T18:17:24.968Z] Removing esgf-compute-api-devel/ -[2024-03-23T18:17:24.968Z] Removing finch-master/ -[2024-03-23T18:17:24.968Z] Removing pavics-sdi-master/ -[2024-03-23T18:17:24.968Z] Removing raven-main/ -[2024-03-23T18:17:24.968Z] + ./downloadrepos -[2024-03-23T18:17:24.968Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-03-23T18:17:24.968Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-03-23T18:17:24.968Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-03-23T18:17:24.968Z] TEST_FINCH_REPO has been set to 'false' -[2024-03-23T18:17:24.968Z] FINCH_BRANCH has been set to 'master' -[2024-03-23T18:17:24.968Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-03-23T18:17:24.968Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-03-23T18:17:24.968Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-03-23T18:17:24.968Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-03-23T18:17:24.968Z] TEST_RAVEN_REPO has been set to 'true' -[2024-03-23T18:17:24.968Z] RAVEN_BRANCH has been set to 'main' -[2024-03-23T18:17:24.968Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-03-23T18:17:24.968Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-03-23T18:17:24.968Z] RAVENPY_BRANCH has been set to 'master' -[2024-03-23T18:17:24.968Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-03-23T18:17:24.968Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-03-23T18:17:24.968Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-03-23T18:17:24.968Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-03-23T18:17:24.968Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-03-23T18:17:24.968Z] + rm -rf pavics-sdi-* -[2024-03-23T18:17:24.968Z] + grep pavics-sdi -[2024-03-23T18:17:24.968Z] + ls -[2024-03-23T18:17:24.968Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-03-23T18:17:24.968Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-03-23T18:17:24.968Z] + shift -[2024-03-23T18:17:24.968Z] + branch=master -[2024-03-23T18:17:24.968Z] + shift -[2024-03-23T18:17:24.968Z] + tar xz -[2024-03-23T18:17:24.968Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-03-23T18:17:28.256Z] + grep pavics-sdi -[2024-03-23T18:17:28.256Z] + ls -[2024-03-23T18:17:28.256Z] pavics-sdi-master -[2024-03-23T18:17:28.256Z] + set +x -[2024-03-23T18:17:28.256Z] + rm -rf finch-* -[2024-03-23T18:17:28.256Z] + ls -[2024-03-23T18:17:28.256Z] + grep finch -[2024-03-23T18:17:28.256Z] + downloadrepos https://github.com/bird-house/finch master -[2024-03-23T18:17:28.257Z] + github_repo=https://github.com/bird-house/finch -[2024-03-23T18:17:28.257Z] + shift -[2024-03-23T18:17:28.257Z] + branch=master -[2024-03-23T18:17:28.257Z] + shift -[2024-03-23T18:17:28.257Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-03-23T18:17:28.257Z] + tar xz -[2024-03-23T18:17:29.628Z] + ls -[2024-03-23T18:17:29.628Z] + grep finch -[2024-03-23T18:17:29.628Z] finch-master -[2024-03-23T18:17:29.628Z] + set +x -[2024-03-23T18:17:29.885Z] + rm -rf PAVICS-landing-* -[2024-03-23T18:17:29.885Z] + ls -[2024-03-23T18:17:29.885Z] + grep PAVICS-landing -[2024-03-23T18:17:29.885Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-03-23T18:17:29.885Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-03-23T18:17:29.885Z] + shift -[2024-03-23T18:17:29.885Z] + branch=master -[2024-03-23T18:17:29.885Z] + shift -[2024-03-23T18:17:29.885Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-03-23T18:17:29.885Z] + tar xz -[2024-03-23T18:17:42.074Z] + ls -[2024-03-23T18:17:42.075Z] + grep PAVICS-landing -[2024-03-23T18:17:42.075Z] PAVICS-landing-master -[2024-03-23T18:17:42.075Z] + set +x -[2024-03-23T18:17:42.075Z] + rm -rf raven-* -[2024-03-23T18:17:42.075Z] + ls -[2024-03-23T18:17:42.075Z] + grep raven -[2024-03-23T18:17:42.075Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-03-23T18:17:42.075Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-03-23T18:17:42.075Z] + shift -[2024-03-23T18:17:42.075Z] + branch=main -[2024-03-23T18:17:42.075Z] + shift -[2024-03-23T18:17:42.075Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-03-23T18:17:42.075Z] + tar xz -[2024-03-23T18:17:43.440Z] + ls -[2024-03-23T18:17:43.440Z] + grep raven -[2024-03-23T18:17:43.440Z] raven-main -[2024-03-23T18:17:43.440Z] + set +x -[2024-03-23T18:17:43.440Z] + rm -rf RavenPy-* -[2024-03-23T18:17:43.440Z] + ls -[2024-03-23T18:17:43.440Z] + grep RavenPy -[2024-03-23T18:17:43.440Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-03-23T18:17:43.440Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-03-23T18:17:43.440Z] + shift -[2024-03-23T18:17:43.440Z] + branch=master -[2024-03-23T18:17:43.440Z] + shift -[2024-03-23T18:17:43.440Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-03-23T18:17:43.440Z] + tar xz -[2024-03-23T18:17:45.957Z] + ls -[2024-03-23T18:17:45.957Z] + grep RavenPy -[2024-03-23T18:17:45.957Z] RavenPy-master -[2024-03-23T18:17:45.957Z] + set +x -[2024-03-23T18:17:45.957Z] + rm -rf esgf-compute-api-* -[2024-03-23T18:17:45.957Z] + ls -[2024-03-23T18:17:45.957Z] + grep esgf-compute-api -[2024-03-23T18:17:45.957Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-03-23T18:17:45.957Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-03-23T18:17:45.957Z] + shift -[2024-03-23T18:17:45.957Z] + branch=devel -[2024-03-23T18:17:45.957Z] + shift -[2024-03-23T18:17:45.957Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-03-23T18:17:45.957Z] + tar xz -[2024-03-23T18:17:46.888Z] + ls -[2024-03-23T18:17:46.888Z] + grep esgf-compute-api -[2024-03-23T18:17:46.888Z] esgf-compute-api-devel -[2024-03-23T18:17:46.888Z] + set +x -[2024-03-23T18:17:46.888Z] + echo master -[2024-03-23T18:17:46.888Z] + sed s@/@-@g -[2024-03-23T18:17:46.888Z] + PAVICS_SDI_BRANCH=master -[2024-03-23T18:17:46.888Z] + echo Ouranosinc/pavics-sdi -[2024-03-23T18:17:46.888Z] + sed s@^.*/@@g -[2024-03-23T18:17:46.888Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-03-23T18:17:46.888Z] + echo master -[2024-03-23T18:17:46.888Z] + sed s@/@-@g -[2024-03-23T18:17:46.889Z] + FINCH_BRANCH=master -[2024-03-23T18:17:46.889Z] + echo bird-house/finch -[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g -[2024-03-23T18:17:46.889Z] + FINCH_REPO_NAME=finch -[2024-03-23T18:17:46.889Z] + echo master -[2024-03-23T18:17:46.889Z] + sed s@/@-@g -[2024-03-23T18:17:46.889Z] + PAVICS_LANDING_BRANCH=master -[2024-03-23T18:17:46.889Z] + echo Ouranosinc/PAVICS-landing -[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g -[2024-03-23T18:17:46.889Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-03-23T18:17:46.889Z] + echo main -[2024-03-23T18:17:46.889Z] + sed s@/@-@g -[2024-03-23T18:17:46.889Z] + RAVEN_BRANCH=main -[2024-03-23T18:17:46.889Z] + echo Ouranosinc/raven -[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g -[2024-03-23T18:17:46.889Z] + RAVEN_REPO_NAME=raven -[2024-03-23T18:17:46.889Z] + echo master -[2024-03-23T18:17:46.889Z] + sed s@/@-@g -[2024-03-23T18:17:46.889Z] + RAVENPY_BRANCH=master -[2024-03-23T18:17:46.889Z] + echo CSHS-CWRA/RavenPy -[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g -[2024-03-23T18:17:46.889Z] + RAVENPY_REPO_NAME=RavenPy -[2024-03-23T18:17:46.889Z] + echo devel -[2024-03-23T18:17:46.889Z] + sed s@/@-@g -[2024-03-23T18:17:46.889Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-03-23T18:17:46.889Z] + echo ESGF/esgf-compute-api -[2024-03-23T18:17:46.889Z] + sed s@^.*/@@g -[2024-03-23T18:17:46.889Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-03-23T18:17:46.889Z] + echo pavics-sdi-master -[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T18:17:46.889Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-03-23T18:17:46.889Z] + echo finch-master -[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T18:17:46.889Z] + FINCH_DIR=finch-master -[2024-03-23T18:17:46.889Z] + echo PAVICS-landing-master -[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T18:17:46.889Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-03-23T18:17:46.889Z] + echo raven-main -[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T18:17:46.889Z] + RAVEN_DIR=raven-main -[2024-03-23T18:17:46.889Z] + echo RavenPy-master -[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T18:17:46.889Z] + RAVENPY_DIR=RavenPy-master -[2024-03-23T18:17:46.889Z] + echo esgf-compute-api-devel -[2024-03-23T18:17:46.889Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-03-23T18:17:46.889Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-03-23T18:17:46.889Z] + echo true -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + VERIFY_SSL=true -[2024-03-23T18:17:46.889Z] + [ xtrue = xfalse ] -[2024-03-23T18:17:46.889Z] + rm -v finch-master/setup.cfg -[2024-03-23T18:17:46.889Z] removed 'finch-master/setup.cfg' -[2024-03-23T18:17:46.889Z] + rm -v raven-main/setup.cfg -[2024-03-23T18:17:46.889Z] removed 'raven-main/setup.cfg' -[2024-03-23T18:17:46.889Z] + rm -v raven-main/pyproject.toml -[2024-03-23T18:17:46.889Z] removed 'raven-main/pyproject.toml' -[2024-03-23T18:17:46.889Z] + rm -v RavenPy-master/setup.cfg -[2024-03-23T18:17:46.889Z] removed 'RavenPy-master/setup.cfg' -[2024-03-23T18:17:46.889Z] + rm -v RavenPy-master/tox.ini -[2024-03-23T18:17:46.889Z] removed 'RavenPy-master/tox.ini' -[2024-03-23T18:17:46.889Z] + rm -v RavenPy-master/pyproject.toml -[2024-03-23T18:17:46.889Z] removed 'RavenPy-master/pyproject.toml' -[2024-03-23T18:17:46.889Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-03-23T18:17:46.889Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-03-23T18:17:46.889Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-03-23T18:17:46.889Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-03-23T18:17:46.889Z] + echo false -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + TEST_MAGPIE_AUTH=false -[2024-03-23T18:17:46.889Z] + echo false -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + TEST_PAVICS_SDI_REPO=false -[2024-03-23T18:17:46.889Z] + echo false -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-03-23T18:17:46.889Z] + echo false -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + TEST_FINCH_REPO=false -[2024-03-23T18:17:46.889Z] + echo false -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + TEST_PAVICS_LANDING_REPO=false -[2024-03-23T18:17:46.889Z] + echo true -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + TEST_RAVEN_REPO=true -[2024-03-23T18:17:46.889Z] + echo true -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + TEST_RAVENPY_REPO=true -[2024-03-23T18:17:46.889Z] + echo false -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-03-23T18:17:46.889Z] + echo false -[2024-03-23T18:17:46.889Z] + tr [:upper:] [:lower:] -[2024-03-23T18:17:46.889Z] + TEST_LOCAL_NOTEBOOKS=false -[2024-03-23T18:17:46.889Z] + NOTEBOOKS_TO_TEST= -[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] -[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] -[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] -[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] -[2024-03-23T18:17:46.889Z] + [ xtrue = xtrue ] -[2024-03-23T18:17:46.889Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-03-23T18:17:46.889Z] + [ xtrue = xtrue ] -[2024-03-23T18:17:46.889Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-03-23T18:17:46.889Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] -[2024-03-23T18:17:46.889Z] + [ xfalse = xtrue ] -[2024-03-23T18:17:46.889Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-03-23T18:17:46.889Z] + [ -n ] -[2024-03-23T18:17:46.889Z] + [ ! -z pavics.ouranos.ca ] -[2024-03-23T18:17:46.889Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-03-23T18:17:46.889Z] Will run notebooks against pavics.ouranos.ca -[2024-03-23T18:17:46.889Z] + [ -z ] -[2024-03-23T18:17:46.889Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-23T18:17:46.889Z] + git diff -[2024-03-23T18:17:46.889Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-03-23T18:17:46.890Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-03-23T18:17:48.784Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-03-23T18:17:48.785Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-03-23T18:17:49.054Z] ============================= test session starts ============================== -[2024-03-23T18:17:49.054Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-03-23T18:17:49.054Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-03-23T18:17:49.054Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-03-23T18:17:49.054Z] collected 242 items -[2024-03-23T18:17:49.054Z] -[2024-03-23T18:18:03.205Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-03-23T18:18:04.589Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] -[2024-03-23T18:18:20.308Z] ...... [ 6%] -[2024-03-23T18:18:22.203Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] -[2024-03-23T18:18:22.203Z] [ 9%] -[2024-03-23T18:18:24.364Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-03-23T18:18:32.475Z] .... [ 12%] -[2024-03-23T18:18:37.762Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] -[2024-03-23T18:18:57.261Z] ....F.FF..F.. [ 18%] -[2024-03-23T18:19:22.586Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] -[2024-03-23T18:20:31.229Z] .. [ 22%] -[2024-03-23T18:20:33.541Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] -[2024-03-23T18:20:43.570Z] ..FFFFFFFF....... [ 30%] -[2024-03-23T18:20:51.144Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] -[2024-03-23T18:21:00.762Z] ........... [ 36%] -[2024-03-23T18:21:10.677Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] -[2024-03-23T18:21:15.975Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] -[2024-03-23T18:21:21.566Z] ..... [ 41%] -[2024-03-23T18:21:23.034Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] -[2024-03-23T18:26:29.633Z] ................. [ 48%] -[2024-03-23T18:26:34.985Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] -[2024-03-23T18:26:44.106Z] .... [ 50%] -[2024-03-23T18:27:27.448Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] -[2024-03-23T18:27:36.488Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] -[2024-03-23T18:28:03.395Z] ...... [ 57%] -[2024-03-23T18:28:11.493Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] -[2024-03-23T18:28:20.109Z] ....... [ 60%] -[2024-03-23T18:28:27.605Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] -[2024-03-23T18:28:43.511Z] .... [ 64%] -[2024-03-23T18:28:51.628Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] -[2024-03-23T18:29:10.764Z] ....... [ 67%] -[2024-03-23T18:29:14.182Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] -[2024-03-23T18:29:44.414Z] ....... [ 70%] -[2024-03-23T18:29:47.191Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] -[2024-03-23T18:29:59.078Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] -[2024-03-23T18:30:06.305Z] .... [ 74%] -[2024-03-23T18:30:57.016Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] -[2024-03-23T18:31:26.754Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] -[2024-03-23T18:31:26.754Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] -[2024-03-23T18:31:39.606Z] ............. [ 84%] -[2024-03-23T18:31:57.109Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] -[2024-03-23T18:32:06.002Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] -[2024-03-23T18:32:15.960Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] -[2024-03-23T18:33:24.037Z] .........FFFFFFFFFFF [100%] -[2024-03-23T18:33:24.037Z] -[2024-03-23T18:33:24.037Z] =================================== FAILURES =================================== -[2024-03-23T18:33:24.037Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ -[2024-03-23T18:33:24.037Z] Notebook cell execution failed -[2024-03-23T18:33:24.037Z] Cell 5: Cell execution caused an exception -[2024-03-23T18:33:24.037Z] -[2024-03-23T18:33:24.037Z] Input: -[2024-03-23T18:33:24.037Z] features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-23T18:33:24.037Z] grid = raster[0] -[2024-03-23T18:33:24.037Z] grid.plot() -[2024-03-23T18:33:24.037Z] -[2024-03-23T18:33:24.037Z] Traceback: -[2024-03-23T18:33:24.037Z] -[2024-03-23T18:33:24.037Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.037Z] ValueError Traceback (most recent call last) -[2024-03-23T18:33:24.037Z] Cell In[1], line 3 -[2024-03-23T18:33:24.037Z]  1 features, statistics, raster = stats_resp.get(asobj=True) -[2024-03-23T18:33:24.037Z]  2 grid = raster[0] -[2024-03-23T18:33:24.037Z] ----> 3 grid.plot() -[2024-03-23T18:33:24.037Z] -[2024-03-23T18:33:24.037Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) -[2024-03-23T18:33:24.037Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: -[2024-03-23T18:33:24.037Z] --> 942 raise ValueError( -[2024-03-23T18:33:24.037Z]  943 "Dataset.plot cannot be called directly. Use " -[2024-03-23T18:33:24.038Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" -[2024-03-23T18:33:24.038Z]  945 ) -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ -[2024-03-23T18:33:24.038Z] Notebook cell execution failed -[2024-03-23T18:33:24.038Z] Cell 7: Cell execution caused an exception -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] Input: -[2024-03-23T18:33:24.038Z] unique, counts = np.unique(grid, return_counts=True) -[2024-03-23T18:33:24.038Z] print("The land-use categories available are: " + str(unique)) -[2024-03-23T18:33:24.038Z] print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] # Pixels values at '127' are NaN and can be ignored. -[2024-03-23T18:33:24.038Z] from matplotlib.colors import Normalize -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] norm = Normalize() -[2024-03-23T18:33:24.038Z] norm.autoscale(unique[:-1]) -[2024-03-23T18:33:24.038Z] cm = mpl.colormaps["tab20"] -[2024-03-23T18:33:24.038Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] # plt.bar(unique[:-1], counts[:-1]) -[2024-03-23T18:33:24.038Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) -[2024-03-23T18:33:24.038Z] plt.xlabel("Land-use categories") -[2024-03-23T18:33:24.038Z] plt.ylabel("Number of pixels") -[2024-03-23T18:33:24.038Z] plt.show() -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") -[2024-03-23T18:33:24.038Z] grid.name = "Land-use categories" -[2024-03-23T18:33:24.038Z] plt.show() -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] Traceback: -[2024-03-23T18:33:24.038Z] -[2024-03-23T18:33:24.038Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.038Z] TypeError Traceback (most recent call last) -[2024-03-23T18:33:24.038Z] /tmp/ipykernel_353/750628277.py in ?() -[2024-03-23T18:33:24.038Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) -[2024-03-23T18:33:24.039Z]  2 print("The land-use categories available are: " + str(unique)) -[2024-03-23T18:33:24.039Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-03-23T18:33:24.039Z]  4  -[2024-03-23T18:33:24.039Z] -[2024-03-23T18:33:24.039Z] <__array_function__ internals> in ?(*args, **kwargs) -[2024-03-23T18:33:24.039Z] -[2024-03-23T18:33:24.039Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) -[2024-03-23T18:33:24.039Z]  268 >>> np.repeat(values, counts) -[2024-03-23T18:33:24.039Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved -[2024-03-23T18:33:24.039Z]  270  -[2024-03-23T18:33:24.039Z]  271 """ -[2024-03-23T18:33:24.039Z] --> 272 ar = np.asanyarray(ar) -[2024-03-23T18:33:24.039Z]  273 if axis is None: -[2024-03-23T18:33:24.039Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, -[2024-03-23T18:33:24.039Z]  275 equal_nan=equal_nan) -[2024-03-23T18:33:24.039Z] -[2024-03-23T18:33:24.039Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) -[2024-03-23T18:33:24.039Z]  1472 def __array__(self, dtype=None): -[2024-03-23T18:33:24.040Z] -> 1473 raise TypeError( -[2024-03-23T18:33:24.040Z]  1474 "cannot directly convert an xarray.Dataset into a " -[2024-03-23T18:33:24.040Z]  1475 "numpy array. Instead, create an xarray.DataArray " -[2024-03-23T18:33:24.040Z]  1476 "first, either with indexing on the Dataset or by " -[2024-03-23T18:33:24.040Z] -[2024-03-23T18:33:24.040Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. -[2024-03-23T18:33:24.040Z] -[2024-03-23T18:33:24.040Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ -[2024-03-23T18:33:24.040Z] Notebook cell execution failed -[2024-03-23T18:33:24.040Z] Cell 8: Cell execution caused an exception -[2024-03-23T18:33:24.040Z] -[2024-03-23T18:33:24.040Z] Input: -[2024-03-23T18:33:24.040Z] import cartopy.crs as ccrs -[2024-03-23T18:33:24.040Z] -[2024-03-23T18:33:24.040Z] # Set a CRS transformation: -[2024-03-23T18:33:24.040Z] crs = ccrs.LambertConformal( -[2024-03-23T18:33:24.040Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-23T18:33:24.040Z] ) -[2024-03-23T18:33:24.040Z] -[2024-03-23T18:33:24.040Z] ax = plt.subplot(projection=crs) -[2024-03-23T18:33:24.040Z] grid.name = "Land-use categories" -[2024-03-23T18:33:24.040Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-23T18:33:24.040Z] plt.show() -[2024-03-23T18:33:24.040Z] -[2024-03-23T18:33:24.040Z] Traceback: -[2024-03-23T18:33:24.040Z] -[2024-03-23T18:33:24.040Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.040Z] AttributeError Traceback (most recent call last) -[2024-03-23T18:33:24.040Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-03-23T18:33:24.040Z]  304 try: -[2024-03-23T18:33:24.040Z] --> 305 object.__setattr__(self, name, value) -[2024-03-23T18:33:24.041Z]  306 except AttributeError as e: -[2024-03-23T18:33:24.041Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-03-23T18:33:24.041Z]  308 # DataArray.dims.setter -[2024-03-23T18:33:24.041Z] -[2024-03-23T18:33:24.041Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-03-23T18:33:24.041Z] -[2024-03-23T18:33:24.041Z] The above exception was the direct cause of the following exception: -[2024-03-23T18:33:24.041Z] -[2024-03-23T18:33:24.041Z] AttributeError Traceback (most recent call last) -[2024-03-23T18:33:24.041Z] Cell In[1], line 9 -[2024-03-23T18:33:24.041Z]  4 crs = ccrs.LambertConformal( -[2024-03-23T18:33:24.041Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-23T18:33:24.041Z]  6 ) -[2024-03-23T18:33:24.041Z]  8 ax = plt.subplot(projection=crs) -[2024-03-23T18:33:24.041Z] ----> 9 grid.name = "Land-use categories" -[2024-03-23T18:33:24.041Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-03-23T18:33:24.041Z]  11 plt.show() -[2024-03-23T18:33:24.041Z] -[2024-03-23T18:33:24.042Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-03-23T18:33:24.042Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-03-23T18:33:24.042Z]  310 raise -[2024-03-23T18:33:24.042Z] --> 311 raise AttributeError( -[2024-03-23T18:33:24.042Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-03-23T18:33:24.042Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-03-23T18:33:24.042Z]  314 ) from e -[2024-03-23T18:33:24.042Z] -[2024-03-23T18:33:24.042Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-03-23T18:33:24.042Z] -[2024-03-23T18:33:24.042Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ -[2024-03-23T18:33:24.042Z] Notebook cell execution failed -[2024-03-23T18:33:24.042Z] Cell 11: Cell execution caused an exception -[2024-03-23T18:33:24.042Z] -[2024-03-23T18:33:24.042Z] Input: -[2024-03-23T18:33:24.042Z] crs = ccrs.LambertConformal( -[2024-03-23T18:33:24.042Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-23T18:33:24.042Z] ) -[2024-03-23T18:33:24.042Z] -[2024-03-23T18:33:24.042Z] dem.name = "Elevation" -[2024-03-23T18:33:24.042Z] dem.attrs["units"] = "m" -[2024-03-23T18:33:24.042Z] ax = plt.subplot(projection=crs) -[2024-03-23T18:33:24.042Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") -[2024-03-23T18:33:24.043Z] plt.show() -[2024-03-23T18:33:24.043Z] -[2024-03-23T18:33:24.043Z] Traceback: -[2024-03-23T18:33:24.043Z] -[2024-03-23T18:33:24.043Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.043Z] AttributeError Traceback (most recent call last) -[2024-03-23T18:33:24.043Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-03-23T18:33:24.043Z]  304 try: -[2024-03-23T18:33:24.043Z] --> 305 object.__setattr__(self, name, value) -[2024-03-23T18:33:24.043Z]  306 except AttributeError as e: -[2024-03-23T18:33:24.043Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-03-23T18:33:24.043Z]  308 # DataArray.dims.setter -[2024-03-23T18:33:24.043Z] -[2024-03-23T18:33:24.043Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-03-23T18:33:24.043Z] -[2024-03-23T18:33:24.043Z] The above exception was the direct cause of the following exception: -[2024-03-23T18:33:24.043Z] -[2024-03-23T18:33:24.043Z] AttributeError Traceback (most recent call last) -[2024-03-23T18:33:24.043Z] Cell In[1], line 5 -[2024-03-23T18:33:24.043Z]  1 crs = ccrs.LambertConformal( -[2024-03-23T18:33:24.043Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-03-23T18:33:24.043Z]  3 ) -[2024-03-23T18:33:24.043Z] ----> 5 dem.name = "Elevation" -[2024-03-23T18:33:24.043Z]  6 dem.attrs["units"] = "m" -[2024-03-23T18:33:24.044Z]  7 ax = plt.subplot(projection=crs) -[2024-03-23T18:33:24.044Z] -[2024-03-23T18:33:24.044Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-03-23T18:33:24.044Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-03-23T18:33:24.044Z]  310 raise -[2024-03-23T18:33:24.044Z] --> 311 raise AttributeError( -[2024-03-23T18:33:24.044Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-03-23T18:33:24.044Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-03-23T18:33:24.044Z]  314 ) from e -[2024-03-23T18:33:24.044Z] -[2024-03-23T18:33:24.044Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-03-23T18:33:24.044Z] -[2024-03-23T18:33:24.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-03-23T18:33:24.044Z] Notebook cell execution failed -[2024-03-23T18:33:24.044Z] Cell 5: Cell execution caused an exception -[2024-03-23T18:33:24.044Z] -[2024-03-23T18:33:24.044Z] Input: -[2024-03-23T18:33:24.044Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-03-23T18:33:24.044Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-03-23T18:33:24.044Z] from ravenpy import OutputReader -[2024-03-23T18:33:24.045Z] from ravenpy.ravenpy import run -[2024-03-23T18:33:24.045Z] -[2024-03-23T18:33:24.045Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-03-23T18:33:24.045Z] run_name = run_name -[2024-03-23T18:33:24.045Z] -[2024-03-23T18:33:24.045Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-03-23T18:33:24.045Z] # subfolder called "outputs" -[2024-03-23T18:33:24.045Z] configdir = workdir -[2024-03-23T18:33:24.045Z] -[2024-03-23T18:33:24.045Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-23T18:33:24.045Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-23T18:33:24.045Z] -[2024-03-23T18:33:24.045Z] # Get the outputs using the Output Reader object. -[2024-03-23T18:33:24.045Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-23T18:33:24.045Z] -[2024-03-23T18:33:24.045Z] Traceback: -[2024-03-23T18:33:24.045Z] -[2024-03-23T18:33:24.045Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.045Z] RavenError Traceback (most recent call last) -[2024-03-23T18:33:24.045Z] Cell In[1], line 14 -[2024-03-23T18:33:24.045Z]  11 configdir = workdir -[2024-03-23T18:33:24.045Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-03-23T18:33:24.047Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-03-23T18:33:24.047Z]  16 # Get the outputs using the Output Reader object. -[2024-03-23T18:33:24.047Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-03-23T18:33:24.047Z] -[2024-03-23T18:33:24.047Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-23T18:33:24.047Z]  320 warn(msg, category=RavenWarning) -[2024-03-23T18:33:24.047Z]  322 if messages["ERROR"]: -[2024-03-23T18:33:24.047Z] --> 323 raise RavenError( -[2024-03-23T18:33:24.053Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-23T18:33:24.053Z]  325 ) -[2024-03-23T18:33:24.053Z]  327 if returncode != 0: -[2024-03-23T18:33:24.053Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] RavenError: Config directory: /tmp/NB4i2jdsylm -[2024-03-23T18:33:24.053Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-03-23T18:33:24.053Z] Notebook cell execution failed -[2024-03-23T18:33:24.053Z] Cell 6: Cell execution caused an exception -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] Input: -[2024-03-23T18:33:24.053Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-03-23T18:33:24.053Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-03-23T18:33:24.053Z] from ravenpy import Emulator -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] # Prepare the emulator by writing files on disk -[2024-03-23T18:33:24.053Z] e = Emulator(config=m) -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] # Run the model and get the outputs. -[2024-03-23T18:33:24.053Z] outputs = e.run() -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] Traceback: -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.053Z] RavenError Traceback (most recent call last) -[2024-03-23T18:33:24.053Z] Cell In[1], line 9 -[2024-03-23T18:33:24.053Z]  6 e = Emulator(config=m) -[2024-03-23T18:33:24.053Z]  8 # Run the model and get the outputs. -[2024-03-23T18:33:24.053Z] ----> 9 outputs = e.run() -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-03-23T18:33:24.053Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-03-23T18:33:24.053Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-03-23T18:33:24.053Z]  66 self.write_rv(overwrite=overwrite) -[2024-03-23T18:33:24.053Z] ---> 68 self._output_path = run( -[2024-03-23T18:33:24.053Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-03-23T18:33:24.053Z]  70 ) -[2024-03-23T18:33:24.053Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-03-23T18:33:24.053Z]  72 return self._output -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-03-23T18:33:24.053Z]  320 warn(msg, category=RavenWarning) -[2024-03-23T18:33:24.053Z]  322 if messages["ERROR"]: -[2024-03-23T18:33:24.053Z] --> 323 raise RavenError( -[2024-03-23T18:33:24.053Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-03-23T18:33:24.053Z]  325 ) -[2024-03-23T18:33:24.053Z]  327 if returncode != 0: -[2024-03-23T18:33:24.053Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.053Z] RavenError: Config directory: /tmp/tmplsp49ky4 -[2024-03-23T18:33:24.053Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-03-23T18:33:24.053Z] -[2024-03-23T18:33:24.054Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-03-23T18:33:24.054Z] Notebook cell execution failed -[2024-03-23T18:33:24.054Z] Cell 7: Cell execution caused an exception -[2024-03-23T18:33:24.054Z] -[2024-03-23T18:33:24.054Z] Input: -[2024-03-23T18:33:24.054Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-23T18:33:24.054Z] outputs.files -[2024-03-23T18:33:24.054Z] -[2024-03-23T18:33:24.054Z] Traceback: -[2024-03-23T18:33:24.054Z] -[2024-03-23T18:33:24.054Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.054Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.054Z] Cell In[1], line 2 -[2024-03-23T18:33:24.054Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-03-23T18:33:24.054Z] ----> 2 outputs.files -[2024-03-23T18:33:24.054Z] -[2024-03-23T18:33:24.054Z] NameError: name 'outputs' is not defined -[2024-03-23T18:33:24.054Z] -[2024-03-23T18:33:24.054Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-03-23T18:33:24.315Z] Notebook cell execution failed -[2024-03-23T18:33:24.316Z] Cell 8: Cell execution caused an exception -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Input: -[2024-03-23T18:33:24.316Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-23T18:33:24.316Z] print("----------------HYDROGRAPH----------------") -[2024-03-23T18:33:24.316Z] display(outputs.hydrograph) -[2024-03-23T18:33:24.316Z] print("") -[2024-03-23T18:33:24.316Z] print("-----------------STORAGE------------------") -[2024-03-23T18:33:24.316Z] display(outputs.storage) -[2024-03-23T18:33:24.316Z] print("") -[2024-03-23T18:33:24.316Z] print("-----------------SOLUTION-----------------") -[2024-03-23T18:33:24.316Z] display(outputs.solution) -[2024-03-23T18:33:24.316Z] print("") -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Traceback: -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.316Z] Cell In[1], line 3 -[2024-03-23T18:33:24.316Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-03-23T18:33:24.316Z]  2 print("----------------HYDROGRAPH----------------") -[2024-03-23T18:33:24.316Z] ----> 3 display(outputs.hydrograph) -[2024-03-23T18:33:24.316Z]  4 print("") -[2024-03-23T18:33:24.316Z]  5 print("-----------------STORAGE------------------") -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-03-23T18:33:24.316Z] Notebook cell execution failed -[2024-03-23T18:33:24.316Z] Cell 9: Cell execution caused an exception -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Input: -[2024-03-23T18:33:24.316Z] # Import the graphing utility built to handle Raven model outputs -[2024-03-23T18:33:24.316Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] hydrograph_objects = outputs.hydrograph -[2024-03-23T18:33:24.316Z] hydrographs(hydrograph_objects) -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Traceback: -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.316Z] Cell In[1], line 4 -[2024-03-23T18:33:24.316Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-03-23T18:33:24.316Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-03-23T18:33:24.316Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-03-23T18:33:24.316Z]  5 hydrographs(hydrograph_objects) -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-03-23T18:33:24.316Z] Notebook cell execution failed -[2024-03-23T18:33:24.316Z] Cell 10: Cell execution caused an exception -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Input: -[2024-03-23T18:33:24.316Z] outputs.hydrograph.q_sim.plot() -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Traceback: -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.316Z] Cell In[1], line 1 -[2024-03-23T18:33:24.316Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-03-23T18:33:24.316Z] Notebook cell execution failed -[2024-03-23T18:33:24.316Z] Cell 11: Cell execution caused an exception -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Input: -[2024-03-23T18:33:24.316Z] print(list(outputs.storage.keys())) -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Traceback: -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.316Z] Cell In[1], line 1 -[2024-03-23T18:33:24.316Z] ----> 1 print(list(outputs.storage.keys())) -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-03-23T18:33:24.316Z] Notebook cell execution failed -[2024-03-23T18:33:24.316Z] Cell 12: Cell execution caused an exception -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Input: -[2024-03-23T18:33:24.316Z] # Plot the "Snow" variable -[2024-03-23T18:33:24.316Z] outputs.storage["Snow"].plot() -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Traceback: -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.316Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.316Z] Cell In[1], line 2 -[2024-03-23T18:33:24.316Z]  1 # Plot the "Snow" variable -[2024-03-23T18:33:24.316Z] ----> 2 outputs.storage["Snow"].plot() -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] NameError: name 'outputs' is not defined -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ -[2024-03-23T18:33:24.316Z] Notebook cell execution failed -[2024-03-23T18:33:24.316Z] Cell 0: Cell execution caused an exception -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Input: -[2024-03-23T18:33:24.316Z] import os -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] from hsclient import HydroShare, Token -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] # Authentication method using username and password -[2024-03-23T18:33:24.316Z] """ -[2024-03-23T18:33:24.316Z] username = 'XXXXX' -[2024-03-23T18:33:24.316Z] password = 'XXXXX' -[2024-03-23T18:33:24.316Z] hs = HydroShare(username=username, password=password) -[2024-03-23T18:33:24.316Z] """ -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-03-23T18:33:24.316Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] token = Token(access_token=access_token, token_type="bearer") -[2024-03-23T18:33:24.316Z] hs = HydroShare(client_id=client_id, token=token) -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] Traceback: -[2024-03-23T18:33:24.316Z] -[2024-03-23T18:33:24.316Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.317Z] ValidationError Traceback (most recent call last) -[2024-03-23T18:33:24.317Z] Cell In[1], line 15 -[2024-03-23T18:33:24.317Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-03-23T18:33:24.317Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-03-23T18:33:24.317Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") -[2024-03-23T18:33:24.317Z]  16 hs = HydroShare(client_id=client_id, token=token) -[2024-03-23T18:33:24.317Z] -[2024-03-23T18:33:24.317Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) -[2024-03-23T18:33:24.317Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks -[2024-03-23T18:33:24.317Z]  170 __tracebackhide__ = True -[2024-03-23T18:33:24.317Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) -[2024-03-23T18:33:24.317Z] -[2024-03-23T18:33:24.317Z] ValidationError: 4 validation errors for Token -[2024-03-23T18:33:24.317Z] scope -[2024-03-23T18:33:24.317Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) -[2024-03-23T18:33:24.317Z]  2 for r in results: -[2024-03-23T18:33:24.317Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-03-23T18:33:24.317Z] -[2024-03-23T18:33:24.317Z] NameError: name 'hs' is not defined -[2024-03-23T18:33:24.317Z] -[2024-03-23T18:33:24.317Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ -[2024-03-23T18:33:24.317Z] Notebook cell execution failed -[2024-03-23T18:33:24.317Z] Cell 2: Cell execution caused an exception -[2024-03-23T18:33:24.317Z] -[2024-03-23T18:33:24.317Z] Input: -[2024-03-23T18:33:24.317Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-23T18:33:24.317Z] res.files() -[2024-03-23T18:33:24.317Z] -[2024-03-23T18:33:24.318Z] Traceback: -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.318Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.318Z] Cell In[1], line 1 -[2024-03-23T18:33:24.318Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-03-23T18:33:24.318Z]  2 res.files() -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] NameError: name 'hs' is not defined -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ -[2024-03-23T18:33:24.318Z] Notebook cell execution failed -[2024-03-23T18:33:24.318Z] Cell 3: Cell execution caused an exception -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] Input: -[2024-03-23T18:33:24.318Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] Traceback: -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.318Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.318Z] Cell In[1], line 1 -[2024-03-23T18:33:24.318Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] NameError: name 'res' is not defined -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ -[2024-03-23T18:33:24.318Z] Notebook cell execution failed -[2024-03-23T18:33:24.318Z] Cell 10: Cell execution caused an exception -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] Input: -[2024-03-23T18:33:24.318Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. -[2024-03-23T18:33:24.318Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" -[2024-03-23T18:33:24.318Z] cat = intake.open_catalog(catalog_name) -[2024-03-23T18:33:24.318Z] ds = cat.era5_reanalysis_single_levels.to_dask() -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] """ -[2024-03-23T18:33:24.318Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, -[2024-03-23T18:33:24.318Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total -[2024-03-23T18:33:24.318Z] precipitation. -[2024-03-23T18:33:24.318Z] """ -[2024-03-23T18:33:24.318Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, -[2024-03-23T18:33:24.318Z] # such as units and variable names. -[2024-03-23T18:33:24.318Z] with xr.set_options(keep_attrs=True): -[2024-03-23T18:33:24.318Z] ERA5_reference = subset.subset_shape( -[2024-03-23T18:33:24.318Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour -[2024-03-23T18:33:24.318Z] ) -[2024-03-23T18:33:24.318Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) -[2024-03-23T18:33:24.318Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) -[2024-03-23T18:33:24.318Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] # Change the units -[2024-03-23T18:33:24.318Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C -[2024-03-23T18:33:24.318Z] ERA5_tmin.attrs["units"] = "degC" -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C -[2024-03-23T18:33:24.318Z] ERA5_tmax.attrs["units"] = "degC" -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] ERA5_pr = ERA5_pr * 1000 # m to mm -[2024-03-23T18:33:24.318Z] ERA5_pr.attrs["units"] = "mm" -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] # Average the variables spatially -[2024-03-23T18:33:24.318Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-03-23T18:33:24.318Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-03-23T18:33:24.318Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-23T18:33:24.318Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-23T18:33:24.318Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-23T18:33:24.318Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-03-23T18:33:24.318Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the -[2024-03-23T18:33:24.318Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. -[2024-03-23T18:33:24.318Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) -[2024-03-23T18:33:24.318Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] Traceback: -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.318Z] KeyError Traceback (most recent call last) -[2024-03-23T18:33:24.318Z] Cell In[1], line 37 -[2024-03-23T18:33:24.318Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-03-23T18:33:24.318Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-03-23T18:33:24.318Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 -[2024-03-23T18:33:24.318Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-03-23T18:33:24.318Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-03-23T18:33:24.318Z] -[2024-03-23T18:33:24.318Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-03-23T18:33:24.318Z]  851 self.coords[key] = value -[2024-03-23T18:33:24.318Z]  852 else: -[2024-03-23T18:33:24.318Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-03-23T18:33:24.319Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-03-23T18:33:24.319Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-03-23T18:33:24.319Z] --> 856 obj = self[key] -[2024-03-23T18:33:24.319Z]  857 if isinstance(value, DataArray): -[2024-03-23T18:33:24.319Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-03-23T18:33:24.319Z] -[2024-03-23T18:33:24.319Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-03-23T18:33:24.319Z]  844 return self._getitem_coord(key) -[2024-03-23T18:33:24.319Z]  845 else: -[2024-03-23T18:33:24.319Z]  846 # xarray-style array indexing -[2024-03-23T18:33:24.319Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-03-23T18:33:24.319Z] -[2024-03-23T18:33:24.319Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-03-23T18:33:24.319Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-03-23T18:33:24.319Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-03-23T18:33:24.319Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-03-23T18:33:24.319Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-03-23T18:33:24.319Z]  1447  ) -[2024-03-23T18:33:24.322Z]  1448 return self._from_temp_dataset(ds) -[2024-03-23T18:33:24.322Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-03-23T18:33:24.322Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-03-23T18:33:24.322Z] -[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-03-23T18:33:24.322Z]  2926 var_indexers = { -[2024-03-23T18:33:24.322Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-03-23T18:33:24.322Z]  2928 } -[2024-03-23T18:33:24.322Z]  2929 if var_indexers: -[2024-03-23T18:33:24.322Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-03-23T18:33:24.322Z]  2931 # drop scalar coordinates -[2024-03-23T18:33:24.322Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-03-23T18:33:24.322Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-03-23T18:33:24.322Z] -[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-03-23T18:33:24.322Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-03-23T18:33:24.322Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-03-23T18:33:24.322Z] -> 1368 return self[key] -[2024-03-23T18:33:24.322Z] -[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-03-23T18:33:24.322Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-03-23T18:33:24.322Z]  879  """Return a new Variable object whose contents are consistent with -[2024-03-23T18:33:24.322Z]  880  getting the provided key from the underlying data. -[2024-03-23T18:33:24.322Z]  881 -[2024-03-23T18:33:24.322Z]  (...) -[2024-03-23T18:33:24.322Z]  889  array `x.values` directly. -[2024-03-23T18:33:24.322Z]  890  """ -[2024-03-23T18:33:24.322Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-03-23T18:33:24.322Z]  892 data = as_indexable(self._data)[indexer] -[2024-03-23T18:33:24.322Z]  893 if new_order: -[2024-03-23T18:33:24.322Z] -[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-03-23T18:33:24.322Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-03-23T18:33:24.322Z]  722 return self._broadcast_indexes_basic(key) -[2024-03-23T18:33:24.322Z] --> 724 self._validate_indexers(key) -[2024-03-23T18:33:24.322Z]  725 # Detect it can be mapped as an outer indexer -[2024-03-23T18:33:24.322Z]  726 # If all key is unlabeled, or -[2024-03-23T18:33:24.322Z]  727 # key can be mapped as an OuterIndexer. -[2024-03-23T18:33:24.322Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-03-23T18:33:24.322Z] -[2024-03-23T18:33:24.322Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-03-23T18:33:24.322Z]  771 raise IndexError( -[2024-03-23T18:33:24.322Z]  772 "{}-dimensional boolean indexing is " -[2024-03-23T18:33:24.322Z]  773 "not supported. ".format(k.ndim) -[2024-03-23T18:33:24.322Z]  774 ) -[2024-03-23T18:33:24.322Z]  775 if is_duck_dask_array(k.data): -[2024-03-23T18:33:24.322Z] --> 776 raise KeyError( -[2024-03-23T18:33:24.323Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-03-23T18:33:24.323Z]  778 "This will result in a dask array of unknown shape. " -[2024-03-23T18:33:24.323Z]  779 "Such arrays are unsupported by Xarray." -[2024-03-23T18:33:24.323Z]  780 "Please compute the indexer first using .compute()" -[2024-03-23T18:33:24.323Z]  781 ) -[2024-03-23T18:33:24.323Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-03-23T18:33:24.323Z]  783 raise IndexError( -[2024-03-23T18:33:24.323Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-03-23T18:33:24.323Z]  785 "same dimension to the indexed array. Indexer is " -[2024-03-23T18:33:24.323Z]  (...) -[2024-03-23T18:33:24.323Z]  788 ) -[2024-03-23T18:33:24.323Z]  789 ) -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ -[2024-03-23T18:33:24.323Z] Notebook cell execution failed -[2024-03-23T18:33:24.323Z] Cell 11: Cell execution caused an exception -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] Input: -[2024-03-23T18:33:24.323Z] # Climate model to use -[2024-03-23T18:33:24.323Z] climate_model = "MIROC6" -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. -[2024-03-23T18:33:24.323Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") -[2024-03-23T18:33:24.323Z] col = intake.open_esm_datastore( -[2024-03-23T18:33:24.323Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" -[2024-03-23T18:33:24.323Z] ) -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. -[2024-03-23T18:33:24.323Z] with xr.set_options(keep_attrs=True): -[2024-03-23T18:33:24.323Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. -[2024-03-23T18:33:24.323Z] out = {} -[2024-03-23T18:33:24.323Z] for exp in ["historical", "ssp585"]: -[2024-03-23T18:33:24.323Z] if exp == "historical": -[2024-03-23T18:33:24.323Z] period_start = reference_start_day -[2024-03-23T18:33:24.323Z] period_end = reference_end_day -[2024-03-23T18:33:24.323Z] else: -[2024-03-23T18:33:24.323Z] period_start = future_start_day -[2024-03-23T18:33:24.323Z] period_end = future_end_day -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] out[exp] = {} -[2024-03-23T18:33:24.323Z] for variable in ["tasmin", "tasmax", "pr"]: -[2024-03-23T18:33:24.323Z] print(exp, variable) -[2024-03-23T18:33:24.323Z] query = dict( -[2024-03-23T18:33:24.323Z] experiment_id=exp, -[2024-03-23T18:33:24.323Z] table_id="day", -[2024-03-23T18:33:24.323Z] variable_id=variable, -[2024-03-23T18:33:24.323Z] member_id="r1i1p1f1", -[2024-03-23T18:33:24.323Z] source_id=climate_model, -[2024-03-23T18:33:24.323Z] ) -[2024-03-23T18:33:24.323Z] col_subset = col.search(require_all_on=["source_id"], **query) -[2024-03-23T18:33:24.323Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. -[2024-03-23T18:33:24.323Z] if variable == "pr": -[2024-03-23T18:33:24.323Z] out[exp][variable] = average.average_shape( -[2024-03-23T18:33:24.323Z] xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-23T18:33:24.323Z] time=slice(period_start, period_end) -[2024-03-23T18:33:24.323Z] )[variable], -[2024-03-23T18:33:24.323Z] basin_contour, -[2024-03-23T18:33:24.323Z] ).chunk(-1) -[2024-03-23T18:33:24.323Z] else: -[2024-03-23T18:33:24.323Z] out[exp][variable] = average.average_shape( -[2024-03-23T18:33:24.323Z] xr.open_zarr(mapper, consolidated=True) -[2024-03-23T18:33:24.323Z] .sel(time=slice(period_start, period_end)) -[2024-03-23T18:33:24.323Z] .reset_coords("height", drop=True)[variable], -[2024-03-23T18:33:24.323Z] basin_contour, -[2024-03-23T18:33:24.323Z] ).chunk(-1) -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] # We can now extract the variables that we will need later: -[2024-03-23T18:33:24.323Z] historical_tasmax = out["historical"]["tasmax"] -[2024-03-23T18:33:24.323Z] historical_tasmin = out["historical"]["tasmin"] -[2024-03-23T18:33:24.323Z] historical_pr = out["historical"]["pr"] -[2024-03-23T18:33:24.323Z] future_tasmax = out["ssp585"]["tasmax"] -[2024-03-23T18:33:24.323Z] future_tasmin = out["ssp585"]["tasmin"] -[2024-03-23T18:33:24.323Z] future_pr = out["ssp585"]["pr"] -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] Traceback: -[2024-03-23T18:33:24.323Z] -[2024-03-23T18:33:24.323Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.323Z] KeyError Traceback (most recent call last) -[2024-03-23T18:33:24.323Z] Cell In[1], line 44 -[2024-03-23T18:33:24.323Z]  37 out[exp][variable] = average.average_shape( -[2024-03-23T18:33:24.323Z]  38 xr.open_zarr(mapper, consolidated=True).sel( -[2024-03-23T18:33:24.323Z]  39 time=slice(period_start, period_end) -[2024-03-23T18:33:24.323Z]  40 )[variable], -[2024-03-23T18:33:24.323Z]  41 basin_contour, -[2024-03-23T18:33:24.323Z]  42 ).chunk(-1) -[2024-03-23T18:33:24.323Z]  43 else: -[2024-03-23T18:33:24.323Z] ---> 44 out[exp][variable] = average.average_shape( -[2024-03-23T18:33:24.324Z]  45  xr.open_zarr(mapper, consolidated=True) -[2024-03-23T18:33:24.324Z]  46  .sel(time=slice(period_start, period_end)) -[2024-03-23T18:33:24.324Z]  47  .reset_coords("height", drop=True)[variable], -[2024-03-23T18:33:24.324Z]  48  basin_contour, -[2024-03-23T18:33:24.324Z]  49  ).chunk(-1) -[2024-03-23T18:33:24.324Z]  51 # We can now extract the variables that we will need later: -[2024-03-23T18:33:24.324Z]  52 historical_tasmax = out["historical"]["tasmax"] -[2024-03-23T18:33:24.324Z] -[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) -[2024-03-23T18:33:24.324Z]  105 ds_sub = ds_copy.isel(indexer) -[2024-03-23T18:33:24.324Z]  107 # Compute the weights -[2024-03-23T18:33:24.324Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) -[2024-03-23T18:33:24.324Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. -[2024-03-23T18:33:24.324Z]  111 nonnull = ( -[2024-03-23T18:33:24.324Z]  112 savger.weights.data.nnz -[2024-03-23T18:33:24.324Z]  113 if isinstance(savger.weights, xr.DataArray) -[2024-03-23T18:33:24.324Z]  114 else savger.weights.nnz -[2024-03-23T18:33:24.324Z]  115 ) -[2024-03-23T18:33:24.324Z] -[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) -[2024-03-23T18:33:24.324Z]  1182 if isinstance(ds_in, xr.DataArray): -[2024-03-23T18:33:24.324Z]  1183 ds_in = ds_in._to_temp_dataset() -[2024-03-23T18:33:24.324Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) -[2024-03-23T18:33:24.324Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. -[2024-03-23T18:33:24.324Z]  1188 # Latitude and longitude coordinates are the polygon centroid. -[2024-03-23T18:33:24.324Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) -[2024-03-23T18:33:24.324Z] -[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) -[2024-03-23T18:33:24.324Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) -[2024-03-23T18:33:24.324Z]  166 if need_bounds: -[2024-03-23T18:33:24.324Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) -[2024-03-23T18:33:24.324Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) -[2024-03-23T18:33:24.324Z]  169 add_corner(grid, lon_b.T, lat_b.T) -[2024-03-23T18:33:24.324Z] -[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) -[2024-03-23T18:33:24.324Z]  105 lat_bnds = ds.cf.get_bounds('latitude') -[2024-03-23T18:33:24.324Z]  107 # Convert from CF bounds to xESMF bounds. -[2024-03-23T18:33:24.324Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. -[2024-03-23T18:33:24.324Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) -[2024-03-23T18:33:24.324Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) -[2024-03-23T18:33:24.324Z]  111 return lon_b, lat_b -[2024-03-23T18:33:24.324Z] -[2024-03-23T18:33:24.324Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) -[2024-03-23T18:33:24.324Z]  2400 filtered = [ -[2024-03-23T18:33:24.324Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs -[2024-03-23T18:33:24.324Z]  2402 ] -[2024-03-23T18:33:24.324Z]  2403 if len(filtered) > 1: -[2024-03-23T18:33:24.324Z] -> 2404 raise KeyError( -[2024-03-23T18:33:24.324Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " -[2024-03-23T18:33:24.324Z]  2406 ) -[2024-03-23T18:33:24.324Z]  2408 (crd_name,) = filtered -[2024-03-23T18:33:24.324Z]  2409 crd = variables[crd_name] -[2024-03-23T18:33:24.324Z] -[2024-03-23T18:33:24.325Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ -[2024-03-23T18:33:24.325Z] Notebook cell execution failed -[2024-03-23T18:33:24.325Z] Cell 12: Cell execution caused an exception -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] Input: -[2024-03-23T18:33:24.325Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-23T18:33:24.325Z] # and make sure everything is consistent. -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Let's start with precipitation: -[2024-03-23T18:33:24.325Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-23T18:33:24.325Z] historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-23T18:33:24.325Z] future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Now we can actually convert units in absolute terms. -[2024-03-23T18:33:24.325Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") -[2024-03-23T18:33:24.325Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Now let's do temperature: -[2024-03-23T18:33:24.325Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") -[2024-03-23T18:33:24.325Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") -[2024-03-23T18:33:24.325Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") -[2024-03-23T18:33:24.325Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] Traceback: -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.325Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.325Z] Cell In[1], line 6 -[2024-03-23T18:33:24.325Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-03-23T18:33:24.325Z]  2 # and make sure everything is consistent. -[2024-03-23T18:33:24.325Z]  3 -[2024-03-23T18:33:24.325Z]  4 # Let's start with precipitation: -[2024-03-23T18:33:24.325Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-03-23T18:33:24.325Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-03-23T18:33:24.325Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) -[2024-03-23T18:33:24.325Z]  9 # Now we can actually convert units in absolute terms. -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] NameError: name 'historical_pr' is not defined -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ -[2024-03-23T18:33:24.325Z] Notebook cell execution failed -[2024-03-23T18:33:24.325Z] Cell 13: Cell execution caused an exception -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] Input: -[2024-03-23T18:33:24.325Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. -[2024-03-23T18:33:24.325Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-23T18:33:24.325Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-23T18:33:24.325Z] ref=ERA5_weather.pr, -[2024-03-23T18:33:24.325Z] hist=historical_pr, -[2024-03-23T18:33:24.325Z] nquantiles=50, -[2024-03-23T18:33:24.325Z] kind="+", -[2024-03-23T18:33:24.325Z] group=group_month_window, -[2024-03-23T18:33:24.325Z] ) -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Apply the correction factors on the reference period -[2024-03-23T18:33:24.325Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Apply the correction factors on the future period -[2024-03-23T18:33:24.325Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Ensure that the precipitation is non-negative, which can happen with some climate models -[2024-03-23T18:33:24.325Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) -[2024-03-23T18:33:24.325Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data -[2024-03-23T18:33:24.325Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-23T18:33:24.325Z] ref=ERA5_weather.tmax, -[2024-03-23T18:33:24.325Z] hist=historical_tasmax, -[2024-03-23T18:33:24.325Z] nquantiles=50, -[2024-03-23T18:33:24.325Z] kind="+", -[2024-03-23T18:33:24.325Z] group=group_month_window, -[2024-03-23T18:33:24.325Z] ) -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Apply the correction factors on the reference period -[2024-03-23T18:33:24.325Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Apply the correction factors on the future period -[2024-03-23T18:33:24.325Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data -[2024-03-23T18:33:24.325Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-23T18:33:24.325Z] ref=ERA5_weather.tmin, -[2024-03-23T18:33:24.325Z] hist=historical_tasmin, -[2024-03-23T18:33:24.325Z] nquantiles=50, -[2024-03-23T18:33:24.325Z] kind="+", -[2024-03-23T18:33:24.325Z] group=group_month_window, -[2024-03-23T18:33:24.325Z] ) -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Apply the correction factors on the reference period -[2024-03-23T18:33:24.325Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] # Apply the correction factors on the future period -[2024-03-23T18:33:24.325Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] Traceback: -[2024-03-23T18:33:24.325Z] -[2024-03-23T18:33:24.325Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.325Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.325Z] Cell In[1], line 6 -[2024-03-23T18:33:24.326Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-03-23T18:33:24.326Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-03-23T18:33:24.326Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-03-23T18:33:24.326Z] ----> 6 ref=ERA5_weather.pr, -[2024-03-23T18:33:24.326Z]  7 hist=historical_pr, -[2024-03-23T18:33:24.326Z]  8 nquantiles=50, -[2024-03-23T18:33:24.326Z]  9 kind="+", -[2024-03-23T18:33:24.326Z]  10 group=group_month_window, -[2024-03-23T18:33:24.326Z]  11 ) -[2024-03-23T18:33:24.326Z]  13 # Apply the correction factors on the reference period -[2024-03-23T18:33:24.326Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] NameError: name 'ERA5_weather' is not defined -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ -[2024-03-23T18:33:24.326Z] Notebook cell execution failed -[2024-03-23T18:33:24.326Z] Cell 14: Cell execution caused an exception -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] Input: -[2024-03-23T18:33:24.326Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-23T18:33:24.326Z] ref_dataset = xr.merge( -[2024-03-23T18:33:24.326Z] [ -[2024-03-23T18:33:24.326Z] corrected_ref_precip.to_dataset(name="pr"), -[2024-03-23T18:33:24.326Z] corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-23T18:33:24.326Z] corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-23T18:33:24.326Z] ] -[2024-03-23T18:33:24.326Z] ) -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] # Write to temporary folder -[2024-03-23T18:33:24.326Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-23T18:33:24.326Z] ref_dataset.to_netcdf(fn_tmp_ref) -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] # Convert the future corrected data into netCDF file -[2024-03-23T18:33:24.326Z] fut_dataset = xr.merge( -[2024-03-23T18:33:24.326Z] [ -[2024-03-23T18:33:24.326Z] corrected_fut_precip.to_dataset(name="pr"), -[2024-03-23T18:33:24.326Z] corrected_fut_tasmax.to_dataset(name="tasmax"), -[2024-03-23T18:33:24.326Z] corrected_fut_tasmin.to_dataset(name="tasmin"), -[2024-03-23T18:33:24.326Z] ] -[2024-03-23T18:33:24.326Z] ) -[2024-03-23T18:33:24.326Z] # Write to temporary folder -[2024-03-23T18:33:24.326Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" -[2024-03-23T18:33:24.326Z] fut_dataset.to_netcdf(fn_tmp_fut) -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] # Write the data to disk to a temporary location for future use. -[2024-03-23T18:33:24.326Z] ref_dataset = xr.open_dataset(fn_tmp_ref) -[2024-03-23T18:33:24.326Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] fut_dataset = xr.open_dataset(fn_tmp_fut) -[2024-03-23T18:33:24.326Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] Traceback: -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.326Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.326Z] Cell In[1], line 4 -[2024-03-23T18:33:24.326Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-03-23T18:33:24.326Z]  2 ref_dataset = xr.merge( -[2024-03-23T18:33:24.326Z]  3 [ -[2024-03-23T18:33:24.326Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), -[2024-03-23T18:33:24.326Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-03-23T18:33:24.326Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-03-23T18:33:24.326Z]  7 ] -[2024-03-23T18:33:24.326Z]  8 ) -[2024-03-23T18:33:24.326Z]  10 # Write to temporary folder -[2024-03-23T18:33:24.326Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] NameError: name 'corrected_ref_precip' is not defined -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ -[2024-03-23T18:33:24.326Z] Notebook cell execution failed -[2024-03-23T18:33:24.326Z] Cell 15: Cell execution caused an exception -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] Input: -[2024-03-23T18:33:24.326Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-03-23T18:33:24.326Z] # populate the fields for the HRU. -[2024-03-23T18:33:24.326Z] hru = {} -[2024-03-23T18:33:24.326Z] hru = dict( -[2024-03-23T18:33:24.326Z] area=all_properties["area"], -[2024-03-23T18:33:24.326Z] elevation=all_properties["elevation"], -[2024-03-23T18:33:24.326Z] latitude=all_properties["latitude"], -[2024-03-23T18:33:24.326Z] longitude=all_properties["longitude"], -[2024-03-23T18:33:24.326Z] hru_type="land", -[2024-03-23T18:33:24.326Z] ) -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-03-23T18:33:24.326Z] # will simply execute the model which has been pre-configured to run on this period. -[2024-03-23T18:33:24.326Z] start_date = dt.datetime(1981, 1, 1) -[2024-03-23T18:33:24.326Z] end_date = dt.datetime(1985, 12, 31) -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. -[2024-03-23T18:33:24.326Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] # Alternative variable names as described in the tutorial. -[2024-03-23T18:33:24.326Z] alt_names = { -[2024-03-23T18:33:24.326Z] "TEMP_MIN": "tmin", -[2024-03-23T18:33:24.326Z] "TEMP_MAX": "tmax", -[2024-03-23T18:33:24.326Z] "PRECIP": "pr", -[2024-03-23T18:33:24.326Z] } -[2024-03-23T18:33:24.326Z] -[2024-03-23T18:33:24.326Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here -[2024-03-23T18:33:24.326Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. -[2024-03-23T18:33:24.326Z] data_kwds = { -[2024-03-23T18:33:24.327Z] "ALL": { -[2024-03-23T18:33:24.327Z] "elevation": hru["elevation"], -[2024-03-23T18:33:24.327Z] "latitude": hru["latitude"], -[2024-03-23T18:33:24.327Z] "longitude": hru["longitude"], -[2024-03-23T18:33:24.327Z] } -[2024-03-23T18:33:24.327Z] } -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] # Give a name to the simulation -[2024-03-23T18:33:24.327Z] run_name = "Paper_example_simulation" -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] # Setup the gauge object that includes meteorological data from ERA5 -[2024-03-23T18:33:24.327Z] gauge = [ -[2024-03-23T18:33:24.327Z] rc.Gauge.from_nc( -[2024-03-23T18:33:24.327Z] tmp -[2024-03-23T18:33:24.327Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-03-23T18:33:24.327Z] data_type=data_type, # Note that this is the list of all the variables -[2024-03-23T18:33:24.327Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-03-23T18:33:24.327Z] data_kwds=data_kwds, -[2024-03-23T18:33:24.327Z] ) -[2024-03-23T18:33:24.327Z] ] -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] # Read the streamflow from the HYSETS catchment data for this basin -[2024-03-23T18:33:24.327Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, -[2024-03-23T18:33:24.327Z] # and the optimizer will read it directly to calibrate. -[2024-03-23T18:33:24.327Z] eval_metrics = ("NASH_SUTCLIFFE",) -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] # Build the model configuration according to user preferences and inputs -[2024-03-23T18:33:24.327Z] model_config = GR4JCN( -[2024-03-23T18:33:24.327Z] ObservationData=discharge_data, -[2024-03-23T18:33:24.327Z] Gauge=gauge, -[2024-03-23T18:33:24.327Z] HRUs=[hru], -[2024-03-23T18:33:24.327Z] StartDate=start_date, -[2024-03-23T18:33:24.327Z] EndDate=end_date, -[2024-03-23T18:33:24.327Z] RunName=run_name, -[2024-03-23T18:33:24.327Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. -[2024-03-23T18:33:24.327Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. -[2024-03-23T18:33:24.327Z] ) -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] Traceback: -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.327Z] ValueError Traceback (most recent call last) -[2024-03-23T18:33:24.327Z] Cell In[1], line 42 -[2024-03-23T18:33:24.327Z]  38 run_name = "Paper_example_simulation" -[2024-03-23T18:33:24.327Z]  40 # Setup the gauge object that includes meteorological data from ERA5 -[2024-03-23T18:33:24.327Z]  41 gauge = [ -[2024-03-23T18:33:24.327Z] ---> 42 rc.Gauge.from_nc( -[2024-03-23T18:33:24.327Z]  43  tmp -[2024-03-23T18:33:24.327Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-03-23T18:33:24.327Z]  45  data_type=data_type, # Note that this is the list of all the variables -[2024-03-23T18:33:24.327Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-03-23T18:33:24.327Z]  47  data_kwds=data_kwds, -[2024-03-23T18:33:24.327Z]  48  ) -[2024-03-23T18:33:24.327Z]  49 ] -[2024-03-23T18:33:24.327Z]  51 # Read the streamflow from the HYSETS catchment data for this basin -[2024-03-23T18:33:24.327Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-03-23T18:33:24.327Z]  751 forcings.difference_update(data) -[2024-03-23T18:33:24.327Z]  753 if len(data) == 0: -[2024-03-23T18:33:24.327Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-03-23T18:33:24.327Z]  756 # Default Gauge name -[2024-03-23T18:33:24.327Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] ValueError: No data found in netCDF files. -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ -[2024-03-23T18:33:24.327Z] Notebook cell execution failed -[2024-03-23T18:33:24.327Z] Cell 16: Cell execution caused an exception -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] Input: -[2024-03-23T18:33:24.327Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, -[2024-03-23T18:33:24.327Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. -[2024-03-23T18:33:24.327Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) -[2024-03-23T18:33:24.327Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. -[2024-03-23T18:33:24.327Z] random_seed = 42 -[2024-03-23T18:33:24.327Z] np.random.seed(random_seed) -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] # Build the optimizer object -[2024-03-23T18:33:24.327Z] spot_setup = SpotSetup( -[2024-03-23T18:33:24.327Z] config=model_config, -[2024-03-23T18:33:24.327Z] low=low, -[2024-03-23T18:33:24.327Z] high=high, -[2024-03-23T18:33:24.327Z] ) -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.327Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-23T18:33:24.327Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-23T18:33:24.327Z] max_iterations = 200 -[2024-03-23T18:33:24.327Z] -[2024-03-23T18:33:24.328Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer -[2024-03-23T18:33:24.328Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most -[2024-03-23T18:33:24.328Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation -[2024-03-23T18:33:24.328Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small -[2024-03-23T18:33:24.328Z] # evaluation budgets. For more details on DDS, see: -[2024-03-23T18:33:24.328Z] # -[2024-03-23T18:33:24.328Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water -[2024-03-23T18:33:24.328Z] # Resources Research, 43(1) -[2024-03-23T18:33:24.328Z] sampler = spotpy.algorithms.dds( -[2024-03-23T18:33:24.328Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False -[2024-03-23T18:33:24.328Z] ) -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and -[2024-03-23T18:33:24.328Z] # the best overall value from all trials is returned. -[2024-03-23T18:33:24.328Z] sampler.sample(max_iterations, trials=1) -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] # Get the model diagnostics -[2024-03-23T18:33:24.328Z] diag = spot_setup.diagnostics -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] # Get all the values of each iteration -[2024-03-23T18:33:24.328Z] results = sampler.getdata() -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] # Get the raw resutlts directly in an array -[2024-03-23T18:33:24.328Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( -[2024-03-23T18:33:24.328Z] results -[2024-03-23T18:33:24.328Z] ) # Want to get the MAX NSE (change for min for RMSE) -[2024-03-23T18:33:24.328Z] best_model_run = list( -[2024-03-23T18:33:24.328Z] results[bestindex][0] -[2024-03-23T18:33:24.328Z] ) # Get the parameter set returning the best NSE -[2024-03-23T18:33:24.328Z] optimized_parameters = best_model_run[ -[2024-03-23T18:33:24.328Z] 1:-1 -[2024-03-23T18:33:24.328Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] # Display the parameter set ready to use in a future run: -[2024-03-23T18:33:24.328Z] print(optimized_parameters) -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] Traceback: -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.328Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.328Z] Cell In[1], line 12 -[2024-03-23T18:33:24.328Z]  8 np.random.seed(random_seed) -[2024-03-23T18:33:24.328Z]  10 # Build the optimizer object -[2024-03-23T18:33:24.328Z]  11 spot_setup = SpotSetup( -[2024-03-23T18:33:24.328Z] ---> 12 config=model_config, -[2024-03-23T18:33:24.328Z]  13 low=low, -[2024-03-23T18:33:24.328Z]  14 high=high, -[2024-03-23T18:33:24.328Z]  15 ) -[2024-03-23T18:33:24.328Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-03-23T18:33:24.328Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-03-23T18:33:24.328Z]  19 max_iterations = 200 -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] NameError: name 'model_config' is not defined -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ -[2024-03-23T18:33:24.328Z] Notebook cell execution failed -[2024-03-23T18:33:24.328Z] Cell 17: Cell execution caused an exception -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] Input: -[2024-03-23T18:33:24.328Z] # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-23T18:33:24.328Z] model_validation = model_config.duplicate( -[2024-03-23T18:33:24.328Z] params=optimized_parameters, -[2024-03-23T18:33:24.328Z] StartDate=dt.datetime(1986, 1, 1), -[2024-03-23T18:33:24.328Z] EndDate=dt.datetime(1990, 12, 31), -[2024-03-23T18:33:24.328Z] SuppressOutput=False, -[2024-03-23T18:33:24.328Z] ) -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] sim_output = Emulator(config=model_validation).run() -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-23T18:33:24.328Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] # Plot the model output -[2024-03-23T18:33:24.328Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") -[2024-03-23T18:33:24.328Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-23T18:33:24.328Z] plt.legend() -[2024-03-23T18:33:24.328Z] plt.title("Validation period - NSE=" + str(NSE[0])) -[2024-03-23T18:33:24.328Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-23T18:33:24.328Z] plt.grid() -[2024-03-23T18:33:24.328Z] plt.show() -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] Traceback: -[2024-03-23T18:33:24.328Z] -[2024-03-23T18:33:24.328Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.328Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.328Z] Cell In[1], line 2 -[2024-03-23T18:33:24.328Z]  1 # Copy the configuration of the previous model that we will modify for our validation: -[2024-03-23T18:33:24.328Z] ----> 2 model_validation = model_config.duplicate( -[2024-03-23T18:33:24.328Z]  3 params=optimized_parameters, -[2024-03-23T18:33:24.328Z]  4 StartDate=dt.datetime(1986, 1, 1), -[2024-03-23T18:33:24.328Z]  5 EndDate=dt.datetime(1990, 12, 31), -[2024-03-23T18:33:24.329Z]  6 SuppressOutput=False, -[2024-03-23T18:33:24.329Z]  7 ) -[2024-03-23T18:33:24.329Z]  9 sim_output = Emulator(config=model_validation).run() -[2024-03-23T18:33:24.329Z]  11 # Get validation NSE (note we are counting the first year without warm-up) -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] NameError: name 'model_config' is not defined -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ -[2024-03-23T18:33:24.329Z] Notebook cell execution failed -[2024-03-23T18:33:24.329Z] Cell 18: Cell execution caused an exception -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] Input: -[2024-03-23T18:33:24.329Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-23T18:33:24.329Z] gauge_ref = [ -[2024-03-23T18:33:24.329Z] rc.Gauge.from_nc( -[2024-03-23T18:33:24.329Z] tmp -[2024-03-23T18:33:24.329Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-23T18:33:24.329Z] data_type=data_type, -[2024-03-23T18:33:24.329Z] alt_names=alt_names, -[2024-03-23T18:33:24.329Z] data_kwds=data_kwds, -[2024-03-23T18:33:24.329Z] ) -[2024-03-23T18:33:24.329Z] ] -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-23T18:33:24.329Z] model_config_reference = model_validation.duplicate( -[2024-03-23T18:33:24.329Z] Gauge=gauge_ref, -[2024-03-23T18:33:24.329Z] StartDate=reference_start_day -[2024-03-23T18:33:24.329Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-23T18:33:24.329Z] EndDate=reference_end_day, -[2024-03-23T18:33:24.329Z] ) -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] # Run the model from the configuration and get the outputs. -[2024-03-23T18:33:24.329Z] ref_output = Emulator(config=model_config_reference).run() -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] # Plot the model output. Note that both simulations should have similar hydrological -[2024-03-23T18:33:24.329Z] # regime but day-to-day variability is not expected to match. -[2024-03-23T18:33:24.329Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") -[2024-03-23T18:33:24.329Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-03-23T18:33:24.329Z] plt.legend() -[2024-03-23T18:33:24.329Z] plt.title("Reference period") -[2024-03-23T18:33:24.329Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-23T18:33:24.329Z] plt.grid() -[2024-03-23T18:33:24.329Z] plt.show() -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] Traceback: -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.329Z] ValueError Traceback (most recent call last) -[2024-03-23T18:33:24.329Z] Cell In[1], line 3 -[2024-03-23T18:33:24.329Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-03-23T18:33:24.329Z]  2 gauge_ref = [ -[2024-03-23T18:33:24.329Z] ----> 3 rc.Gauge.from_nc( -[2024-03-23T18:33:24.329Z]  4  tmp -[2024-03-23T18:33:24.329Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-23T18:33:24.329Z]  6  data_type=data_type, -[2024-03-23T18:33:24.329Z]  7  alt_names=alt_names, -[2024-03-23T18:33:24.329Z]  8  data_kwds=data_kwds, -[2024-03-23T18:33:24.329Z]  9  ) -[2024-03-23T18:33:24.329Z]  10 ] -[2024-03-23T18:33:24.329Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-23T18:33:24.329Z]  13 model_config_reference = model_validation.duplicate( -[2024-03-23T18:33:24.329Z]  14 Gauge=gauge_ref, -[2024-03-23T18:33:24.329Z]  15 StartDate=reference_start_day -[2024-03-23T18:33:24.329Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-03-23T18:33:24.329Z]  17 EndDate=reference_end_day, -[2024-03-23T18:33:24.329Z]  18 ) -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-03-23T18:33:24.329Z]  751 forcings.difference_update(data) -[2024-03-23T18:33:24.329Z]  753 if len(data) == 0: -[2024-03-23T18:33:24.329Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-03-23T18:33:24.329Z]  756 # Default Gauge name -[2024-03-23T18:33:24.329Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] ValueError: No data found in netCDF files. -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ -[2024-03-23T18:33:24.329Z] Notebook cell execution failed -[2024-03-23T18:33:24.329Z] Cell 19: Cell execution caused an exception -[2024-03-23T18:33:24.329Z] -[2024-03-23T18:33:24.329Z] Input: -[2024-03-23T18:33:24.329Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-23T18:33:24.329Z] gauge_fut = [ -[2024-03-23T18:33:24.330Z] rc.Gauge.from_nc( -[2024-03-23T18:33:24.330Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-23T18:33:24.330Z] data_type=data_type, -[2024-03-23T18:33:24.330Z] alt_names=alt_names, -[2024-03-23T18:33:24.330Z] data_kwds=data_kwds, -[2024-03-23T18:33:24.330Z] ) -[2024-03-23T18:33:24.330Z] ] -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-23T18:33:24.330Z] model_config_future = model_validation.duplicate( -[2024-03-23T18:33:24.330Z] Gauge=gauge_fut, -[2024-03-23T18:33:24.330Z] StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-23T18:33:24.330Z] EndDate=future_end_day, -[2024-03-23T18:33:24.330Z] ObservationData=None, # There are no observations for the future period. -[2024-03-23T18:33:24.330Z] ) -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] # Run the model and get the outputs and hydrographs. -[2024-03-23T18:33:24.330Z] fut_output = Emulator(config=model_config_future).run() -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] # Plot the model output -[2024-03-23T18:33:24.330Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") -[2024-03-23T18:33:24.330Z] plt.legend() -[2024-03-23T18:33:24.330Z] plt.title("Future period") -[2024-03-23T18:33:24.330Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-23T18:33:24.330Z] plt.grid() -[2024-03-23T18:33:24.330Z] plt.show() -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] Traceback: -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.330Z] ValueError Traceback (most recent call last) -[2024-03-23T18:33:24.330Z] Cell In[1], line 3 -[2024-03-23T18:33:24.330Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-03-23T18:33:24.330Z]  2 gauge_fut = [ -[2024-03-23T18:33:24.330Z] ----> 3 rc.Gauge.from_nc( -[2024-03-23T18:33:24.330Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-03-23T18:33:24.330Z]  5  data_type=data_type, -[2024-03-23T18:33:24.330Z]  6  alt_names=alt_names, -[2024-03-23T18:33:24.330Z]  7  data_kwds=data_kwds, -[2024-03-23T18:33:24.330Z]  8  ) -[2024-03-23T18:33:24.330Z]  9 ] -[2024-03-23T18:33:24.330Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-03-23T18:33:24.330Z]  12 model_config_future = model_validation.duplicate( -[2024-03-23T18:33:24.330Z]  13 Gauge=gauge_fut, -[2024-03-23T18:33:24.330Z]  14 StartDate=future_start_day + dt.timedelta(days=1), -[2024-03-23T18:33:24.330Z]  15 EndDate=future_end_day, -[2024-03-23T18:33:24.330Z]  16 ObservationData=None, # There are no observations for the future period. -[2024-03-23T18:33:24.330Z]  17 ) -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-03-23T18:33:24.330Z]  751 forcings.difference_update(data) -[2024-03-23T18:33:24.330Z]  753 if len(data) == 0: -[2024-03-23T18:33:24.330Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-03-23T18:33:24.330Z]  756 # Default Gauge name -[2024-03-23T18:33:24.330Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] ValueError: No data found in netCDF files. -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ -[2024-03-23T18:33:24.330Z] Notebook cell execution failed -[2024-03-23T18:33:24.330Z] Cell 20: Cell execution caused an exception -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] Input: -[2024-03-23T18:33:24.330Z] # Extract the mean annual hydrograph for each simulation. -[2024-03-23T18:33:24.330Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-23T18:33:24.330Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-23T18:33:24.330Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-23T18:33:24.330Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] # Plot the model output -[2024-03-23T18:33:24.330Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") -[2024-03-23T18:33:24.330Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") -[2024-03-23T18:33:24.330Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") -[2024-03-23T18:33:24.330Z] future_flows.plot(color="red", label="Future", x="dayofyear") -[2024-03-23T18:33:24.330Z] plt.legend() -[2024-03-23T18:33:24.330Z] plt.ylabel("Streamflow (m��/s)") -[2024-03-23T18:33:24.330Z] plt.xlabel("Day of year") -[2024-03-23T18:33:24.330Z] plt.xlim([0, 365]) -[2024-03-23T18:33:24.330Z] plt.title("Comparison of mean annual hydrographs") -[2024-03-23T18:33:24.330Z] plt.grid() -[2024-03-23T18:33:24.330Z] plt.show() -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] Traceback: -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.330Z] --------------------------------------------------------------------------- -[2024-03-23T18:33:24.330Z] NameError Traceback (most recent call last) -[2024-03-23T18:33:24.330Z] Cell In[1], line 2 -[2024-03-23T18:33:24.330Z]  1 # Extract the mean annual hydrograph for each simulation. -[2024-03-23T18:33:24.330Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-23T18:33:24.330Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-03-23T18:33:24.330Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-03-23T18:33:24.330Z] -[2024-03-23T18:33:24.331Z] NameError: name 'ref_output' is not defined -[2024-03-23T18:33:24.331Z] -[2024-03-23T18:33:24.331Z] =========================== short test summary info ============================ -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 -[2024-03-23T18:33:24.331Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 -[2024-03-23T18:33:24.335Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 -[2024-03-23T18:33:24.335Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 -[2024-03-23T18:33:24.335Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 -[2024-03-23T18:33:24.335Z] ================== 27 failed, 215 passed in 935.41s (0:15:35) ================== -[2024-03-23T18:33:24.335Z] + EXIT_CODE=1 -[2024-03-23T18:33:24.335Z] + echo true -[2024-03-23T18:33:24.335Z] + tr [:upper:] [:lower:] -[2024-03-23T18:33:24.335Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-03-23T18:33:24.335Z] + [ xtrue = xtrue ] -[2024-03-23T18:33:24.335Z] + mkdir -p buildout -[2024-03-23T18:33:24.335Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-23T18:33:24.335Z] + filename=Region_selection.ipynb -[2024-03-23T18:33:24.335Z] + echo Region_selection.ipynb -[2024-03-23T18:33:24.335Z] + sed s/.ipynb$// -[2024-03-23T18:33:24.335Z] + filename=Region_selection -[2024-03-23T18:33:24.335Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-03-23T18:33:24.335Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-03-23T18:33:26.237Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-03-23T18:33:36.200Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb -[2024-03-23T18:33:36.462Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-23T18:33:36.462Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-03-23T18:33:36.462Z] + echo Subset_climate_data_over_watershed.ipynb -[2024-03-23T18:33:36.462Z] + sed s/.ipynb$// -[2024-03-23T18:33:36.462Z] + filename=Subset_climate_data_over_watershed -[2024-03-23T18:33:36.462Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-03-23T18:33:36.462Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-03-23T18:33:38.428Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-03-23T18:33:53.318Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-03-23T18:33:53.318Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-23T18:33:53.318Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-03-23T18:33:53.318Z] + + echo 00_Introduction_to_JupyterLab.ipynb -[2024-03-23T18:33:53.318Z] sed s/.ipynb$// -[2024-03-23T18:33:53.318Z] + filename=00_Introduction_to_JupyterLab -[2024-03-23T18:33:53.318Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-03-23T18:33:53.318Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-03-23T18:33:54.258Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-03-23T18:33:56.785Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-03-23T18:33:56.785Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-23T18:33:56.785Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-03-23T18:33:56.785Z] + echo 01_Getting_watershed_boundaries.ipynb -[2024-03-23T18:33:56.785Z] + sed s/.ipynb$// -[2024-03-23T18:33:56.785Z] + filename=01_Getting_watershed_boundaries -[2024-03-23T18:33:56.785Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-03-23T18:33:56.785Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-03-23T18:33:58.689Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-03-23T18:34:10.887Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-03-23T18:34:10.887Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-23T18:34:10.887Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-03-23T18:34:10.887Z] + sed s/.ipynb$// -[2024-03-23T18:34:10.887Z] + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-03-23T18:34:10.887Z] + filename=02_Extract_geographical_watershed_properties -[2024-03-23T18:34:10.887Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-03-23T18:34:10.887Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-03-23T18:34:11.149Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-03-23T18:34:26.041Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-03-23T18:34:26.041Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-23T18:34:26.041Z] + filename=03_Extracting_forcing_data.ipynb -[2024-03-23T18:34:26.041Z] + echo 03_Extracting_forcing_data.ipynb -[2024-03-23T18:34:26.041Z] + sed s/.ipynb$// -[2024-03-23T18:34:26.041Z] + filename=03_Extracting_forcing_data -[2024-03-23T18:34:26.041Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-03-23T18:34:26.041Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-03-23T18:34:26.973Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-03-23T18:36:03.438Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-03-23T18:36:03.438Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-23T18:36:03.438Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-03-23T18:36:03.438Z] + echo 04_Emulating_hydrological_models.ipynb -[2024-03-23T18:36:03.438Z] + sed s/.ipynb$// -[2024-03-23T18:36:03.438Z] + filename=04_Emulating_hydrological_models -[2024-03-23T18:36:03.438Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-03-23T18:36:03.438Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-03-23T18:36:03.438Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-03-23T18:36:18.318Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-03-23T18:36:18.318Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-23T18:36:18.318Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-03-23T18:36:18.318Z] + sed s/.ipynb$// -[2024-03-23T18:36:18.318Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-03-23T18:36:18.318Z] + filename=05_Advanced_RavenPy_configuration -[2024-03-23T18:36:18.318Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-03-23T18:36:18.318Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-03-23T18:36:19.693Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-03-23T18:36:41.631Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-03-23T18:36:41.631Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-23T18:36:41.631Z] + filename=06_Raven_calibration.ipynb -[2024-03-23T18:36:41.631Z] + + sed s/.ipynb$// -[2024-03-23T18:36:41.631Z] echo 06_Raven_calibration.ipynb -[2024-03-23T18:36:41.631Z] + filename=06_Raven_calibration -[2024-03-23T18:36:41.631Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-03-23T18:36:41.631Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-03-23T18:36:41.631Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-03-23T18:36:54.128Z] [NbConvertApp] Writing 24179 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-03-23T18:36:54.128Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-23T18:36:54.128Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-03-23T18:36:54.128Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-03-23T18:36:54.128Z] + sed s/.ipynb$// -[2024-03-23T18:36:54.128Z] + filename=07_Making_and_using_hotstart_files -[2024-03-23T18:36:54.128Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-03-23T18:36:54.128Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-03-23T18:36:54.391Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-03-23T18:37:06.598Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-03-23T18:37:06.598Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-23T18:37:06.598Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-23T18:37:06.598Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-23T18:37:06.598Z] + sed s/.ipynb$// -[2024-03-23T18:37:06.598Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-03-23T18:37:06.598Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-03-23T18:37:06.598Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-03-23T18:37:07.968Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-03-23T18:40:59.474Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb -[2024-03-23T18:40:59.474Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-23T18:40:59.475Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-23T18:40:59.475Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-23T18:40:59.475Z] + sed s/.ipynb$// -[2024-03-23T18:40:59.475Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-03-23T18:40:59.475Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-03-23T18:40:59.475Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-03-23T18:40:59.475Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-03-23T18:41:14.359Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-03-23T18:41:14.359Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-23T18:41:14.359Z] + filename=10_Data_assimilation.ipynb -[2024-03-23T18:41:14.359Z] + echo 10_Data_assimilation.ipynb -[2024-03-23T18:41:14.359Z] + sed s/.ipynb$// -[2024-03-23T18:41:14.359Z] + filename=10_Data_assimilation -[2024-03-23T18:41:14.359Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-03-23T18:41:14.359Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-03-23T18:41:16.270Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-03-23T18:42:02.941Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-03-23T18:42:02.941Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-23T18:42:02.941Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-03-23T18:42:02.941Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-03-23T18:42:02.941Z] + sed s/.ipynb$// -[2024-03-23T18:42:02.941Z] + filename=11_Climatological_ESP_forecasting -[2024-03-23T18:42:02.941Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-03-23T18:42:02.941Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-03-23T18:42:04.851Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-03-23T18:42:43.695Z] [NbConvertApp] Writing 556869 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-03-23T18:42:43.695Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-23T18:42:43.695Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-03-23T18:42:43.695Z] + echo 12_Performing_hindcasting_experiments.ipynb -[2024-03-23T18:42:43.695Z] + sed s/.ipynb$// -[2024-03-23T18:42:43.695Z] + filename=12_Performing_hindcasting_experiments -[2024-03-23T18:42:43.695Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-03-23T18:42:43.695Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-03-23T18:42:45.073Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-03-23T18:43:07.006Z] [NbConvertApp] Writing 298315 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-03-23T18:43:07.006Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-23T18:43:07.006Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-03-23T18:43:07.006Z] + + sed s/.ipynb$// -[2024-03-23T18:43:07.006Z] echo Assess_probabilistic_flood_risk.ipynb -[2024-03-23T18:43:07.006Z] + filename=Assess_probabilistic_flood_risk -[2024-03-23T18:43:07.006Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-03-23T18:43:07.006Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-03-23T18:43:07.006Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-03-23T18:43:33.574Z] [NbConvertApp] Writing 549164 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-03-23T18:43:33.574Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-23T18:43:33.574Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-23T18:43:33.575Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-23T18:43:33.575Z] + sed s/.ipynb$// -[2024-03-23T18:43:33.575Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-03-23T18:43:33.575Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-03-23T18:43:33.575Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-03-23T18:43:33.575Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-03-23T18:44:05.680Z] [NbConvertApp] Writing 748714 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-03-23T18:44:05.680Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-23T18:44:05.680Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-03-23T18:44:05.680Z] + echo Distributed_hydrological_modelling.ipynb -[2024-03-23T18:44:05.680Z] + sed s/.ipynb$// -[2024-03-23T18:44:05.680Z] + filename=Distributed_hydrological_modelling -[2024-03-23T18:44:05.680Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-03-23T18:44:05.680Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-03-23T18:44:05.680Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-03-23T18:44:37.881Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-03-23T18:44:37.881Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-23T18:44:37.881Z] + filename=HydroShare_integration.ipynb -[2024-03-23T18:44:37.881Z] + sed s/.ipynb$// -[2024-03-23T18:44:37.881Z] + echo HydroShare_integration.ipynb -[2024-03-23T18:44:37.881Z] + filename=HydroShare_integration -[2024-03-23T18:44:37.881Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-03-23T18:44:37.881Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-03-23T18:44:37.881Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-03-23T18:44:40.414Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb -[2024-03-23T18:44:40.672Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-23T18:44:40.672Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-03-23T18:44:40.672Z] + sed s/.ipynb$// -[2024-03-23T18:44:40.672Z] + echo Hydrological_realtime_forecasting.ipynb -[2024-03-23T18:44:40.672Z] + filename=Hydrological_realtime_forecasting -[2024-03-23T18:44:40.672Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-03-23T18:44:40.672Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-03-23T18:44:42.575Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-03-23T18:45:04.554Z] [NbConvertApp] Writing 276412 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-03-23T18:45:04.554Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-23T18:45:04.554Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-03-23T18:45:04.554Z] + + echosed Managing_Jupyter_Environments.ipynb s/.ipynb$// -[2024-03-23T18:45:04.554Z] -[2024-03-23T18:45:04.554Z] + filename=Managing_Jupyter_Environments -[2024-03-23T18:45:04.554Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-03-23T18:45:04.554Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-03-23T18:45:04.554Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-03-23T18:45:14.548Z] [NbConvertApp] Writing 8646 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-03-23T18:45:14.548Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-23T18:45:14.548Z] + filename=Perform_Regionalization.ipynb -[2024-03-23T18:45:14.548Z] + echo Perform_Regionalization.ipynb -[2024-03-23T18:45:14.548Z] + sed s/.ipynb$// -[2024-03-23T18:45:14.548Z] + filename=Perform_Regionalization -[2024-03-23T18:45:14.548Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-03-23T18:45:14.548Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-03-23T18:45:14.805Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-03-23T18:45:41.339Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-03-23T18:45:41.339Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-23T18:45:41.339Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-23T18:45:41.339Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-23T18:45:41.339Z] + sed s/.ipynb$// -[2024-03-23T18:45:41.339Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-03-23T18:45:41.339Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-03-23T18:45:41.339Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-03-23T18:45:42.710Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-03-23T18:46:00.836Z] [NbConvertApp] Writing 108529 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-03-23T18:46:00.836Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-23T18:46:00.836Z] + filename=Sensitivity_analysis.ipynb -[2024-03-23T18:46:00.836Z] + echo Sensitivity_analysis.ipynb -[2024-03-23T18:46:00.836Z] + sed s/.ipynb$// -[2024-03-23T18:46:00.836Z] + filename=Sensitivity_analysis -[2024-03-23T18:46:00.836Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-03-23T18:46:00.837Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-03-23T18:46:00.837Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-03-23T18:46:18.916Z] [NbConvertApp] Writing 35157 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-03-23T18:46:18.916Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-23T18:46:18.916Z] + filename=time_series_analysis.ipynb -[2024-03-23T18:46:18.916Z] + echo time_series_analysis.ipynb -[2024-03-23T18:46:18.916Z] + sed s/.ipynb$// -[2024-03-23T18:46:18.916Z] + filename=time_series_analysis -[2024-03-23T18:46:18.916Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-03-23T18:46:18.916Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-03-23T18:46:19.479Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-03-23T18:46:31.689Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb -[2024-03-23T18:46:31.689Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-23T18:46:31.689Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-23T18:46:31.689Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-23T18:46:31.689Z] + sed s/.ipynb$// -[2024-03-23T18:46:31.689Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-03-23T18:46:31.689Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-03-23T18:46:31.689Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-03-23T18:46:31.689Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-03-23T18:47:53.118Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-03-23T18:47:53.118Z] + exit 1 -[2024-03-23T18:47:53.118Z] + EXIT_CODE=1 -[2024-03-23T18:47:53.118Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-03-23T18:47:53.118Z] + mkdir -p buildout/env-dump -[2024-03-23T18:47:53.118Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-03-23T18:47:53.118Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-03-23T18:47:53.118Z] + conda env export -n birdy -[2024-03-23T18:48:08.049Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-23T18:48:08.049Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-03-23T18:48:08.049Z] + conda list -n birdy --explicit -[2024-03-23T18:48:18.023Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-23T18:48:18.023Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-03-23T18:48:18.023Z] + pip freeze -[2024-03-23T18:48:18.023Z] + exit 1 +[2024-04-02T23:53:57.608Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-02T23:53:57.608Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-02T23:53:57.608Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-02T23:53:57.608Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-02T23:53:57.608Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-02T23:53:57.608Z] FINCH_BRANCH has been set to 'master' +[2024-04-02T23:53:57.608Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-02T23:53:57.608Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-02T23:53:57.608Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-02T23:53:57.608Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-02T23:53:57.608Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-02T23:53:57.608Z] RAVEN_BRANCH has been set to 'main' +[2024-04-02T23:53:57.608Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-02T23:53:57.608Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-02T23:53:57.608Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-02T23:53:57.608Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-02T23:53:57.608Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-02T23:53:57.608Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-02T23:53:57.608Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-02T23:53:57.608Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-02T23:53:57.608Z] + git clean -fdx +[2024-04-02T23:53:58.582Z] Removing .pytest_cache/ +[2024-04-02T23:53:58.582Z] Removing PAVICS-landing-master/ +[2024-04-02T23:53:58.582Z] Removing RavenPy-master/ +[2024-04-02T23:53:58.582Z] Removing __pycache__/ +[2024-04-02T23:53:58.582Z] Removing buildout/ +[2024-04-02T23:53:58.582Z] Removing esgf-compute-api-devel/ +[2024-04-02T23:53:58.582Z] Removing finch-master/ +[2024-04-02T23:53:58.582Z] Removing pavics-sdi-master/ +[2024-04-02T23:53:58.582Z] Removing raven-main/ +[2024-04-02T23:53:58.582Z] + ./downloadrepos +[2024-04-02T23:53:58.582Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-02T23:53:58.582Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-02T23:53:58.582Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-02T23:53:58.582Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-02T23:53:58.582Z] FINCH_BRANCH has been set to 'master' +[2024-04-02T23:53:58.582Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-02T23:53:58.582Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-02T23:53:58.582Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-02T23:53:58.582Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-02T23:53:58.582Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-02T23:53:58.582Z] RAVEN_BRANCH has been set to 'main' +[2024-04-02T23:53:58.582Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-02T23:53:58.582Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-02T23:53:58.582Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-02T23:53:58.582Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-02T23:53:58.582Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-02T23:53:58.582Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-02T23:53:58.582Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-02T23:53:58.582Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-02T23:53:58.582Z] + rm -rf pavics-sdi-* +[2024-04-02T23:53:58.582Z] + ls +[2024-04-02T23:53:58.582Z] + grep pavics-sdi +[2024-04-02T23:53:58.582Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-04-02T23:53:58.582Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-02T23:53:58.582Z] + shift +[2024-04-02T23:53:58.582Z] + branch=master +[2024-04-02T23:53:58.582Z] + shift +[2024-04-02T23:53:58.582Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-04-02T23:53:58.582Z] + tar xz +[2024-04-02T23:54:01.164Z] + ls +[2024-04-02T23:54:01.164Z] + grep pavics-sdi +[2024-04-02T23:54:01.164Z] pavics-sdi-master +[2024-04-02T23:54:01.164Z] + set +x +[2024-04-02T23:54:01.164Z] + rm -rf finch-* +[2024-04-02T23:54:01.164Z] + ls +[2024-04-02T23:54:01.164Z] + grep finch +[2024-04-02T23:54:01.164Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-02T23:54:01.164Z] + github_repo=https://github.com/bird-house/finch +[2024-04-02T23:54:01.164Z] + shift +[2024-04-02T23:54:01.164Z] + branch=master +[2024-04-02T23:54:01.164Z] + shift +[2024-04-02T23:54:01.164Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-02T23:54:01.164Z] + tar xz +[2024-04-02T23:54:03.085Z] + grep finch +[2024-04-02T23:54:03.085Z] + ls +[2024-04-02T23:54:03.085Z] finch-master +[2024-04-02T23:54:03.085Z] + set +x +[2024-04-02T23:54:03.085Z] + rm -rf PAVICS-landing-* +[2024-04-02T23:54:03.085Z] + ls +[2024-04-02T23:54:03.085Z] + grep PAVICS-landing +[2024-04-02T23:54:03.085Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-04-02T23:54:03.085Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-02T23:54:03.085Z] + shift +[2024-04-02T23:54:03.085Z] + branch=master +[2024-04-02T23:54:03.085Z] + shift +[2024-04-02T23:54:03.085Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-04-02T23:54:03.085Z] + tar xz +[2024-04-02T23:54:15.421Z] + + grep PAVICS-landingls +[2024-04-02T23:54:15.421Z] +[2024-04-02T23:54:15.421Z] PAVICS-landing-master +[2024-04-02T23:54:15.421Z] + set +x +[2024-04-02T23:54:15.421Z] + rm -rf raven-* +[2024-04-02T23:54:15.421Z] + ls +[2024-04-02T23:54:15.421Z] + grep raven +[2024-04-02T23:54:15.421Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-02T23:54:15.421Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-02T23:54:15.421Z] + shift +[2024-04-02T23:54:15.421Z] + branch=main +[2024-04-02T23:54:15.421Z] + shift +[2024-04-02T23:54:15.421Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-02T23:54:15.421Z] + tar xz +[2024-04-02T23:54:16.860Z] + ls +[2024-04-02T23:54:16.860Z] + grep raven +[2024-04-02T23:54:16.860Z] raven-main +[2024-04-02T23:54:16.860Z] + set +x +[2024-04-02T23:54:16.860Z] + rm -rf RavenPy-* +[2024-04-02T23:54:16.860Z] + + ls +[2024-04-02T23:54:16.860Z] grep RavenPy +[2024-04-02T23:54:16.860Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-02T23:54:16.860Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-02T23:54:16.860Z] + shift +[2024-04-02T23:54:16.860Z] + branch=master +[2024-04-02T23:54:16.860Z] + shift +[2024-04-02T23:54:16.860Z] + + tar xz +[2024-04-02T23:54:16.860Z] wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-02T23:54:19.483Z] + ls +[2024-04-02T23:54:19.483Z] + grep RavenPy +[2024-04-02T23:54:19.483Z] RavenPy-master +[2024-04-02T23:54:19.483Z] + set +x +[2024-04-02T23:54:19.483Z] + rm -rf esgf-compute-api-* +[2024-04-02T23:54:19.483Z] + grep esgf-compute-api +[2024-04-02T23:54:19.483Z] + ls +[2024-04-02T23:54:19.483Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-02T23:54:19.483Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-02T23:54:19.483Z] + shift +[2024-04-02T23:54:19.483Z] + branch=devel +[2024-04-02T23:54:19.483Z] + shift +[2024-04-02T23:54:19.483Z] + tar xz +[2024-04-02T23:54:19.483Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-02T23:54:20.113Z] + grep esgf-compute-api +[2024-04-02T23:54:20.113Z] + ls +[2024-04-02T23:54:20.113Z] esgf-compute-api-devel +[2024-04-02T23:54:20.113Z] + set +x +[2024-04-02T23:54:20.113Z] + + echo master +[2024-04-02T23:54:20.113Z] sed s@/@-@g +[2024-04-02T23:54:20.113Z] + PAVICS_SDI_BRANCH=master +[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g +[2024-04-02T23:54:20.113Z] + echo Ouranosinc/pavics-sdi +[2024-04-02T23:54:20.113Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-02T23:54:20.113Z] + sed s@/@-@g +[2024-04-02T23:54:20.113Z] + echo master +[2024-04-02T23:54:20.113Z] + FINCH_BRANCH=master +[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g +[2024-04-02T23:54:20.113Z] + echo bird-house/finch +[2024-04-02T23:54:20.113Z] + FINCH_REPO_NAME=finch +[2024-04-02T23:54:20.113Z] + echo master +[2024-04-02T23:54:20.113Z] + sed s@/@-@g +[2024-04-02T23:54:20.113Z] + PAVICS_LANDING_BRANCH=master +[2024-04-02T23:54:20.113Z] + echo Ouranosinc/PAVICS-landing +[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g +[2024-04-02T23:54:20.113Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-02T23:54:20.113Z] + echo main +[2024-04-02T23:54:20.113Z] + sed s@/@-@g +[2024-04-02T23:54:20.113Z] + RAVEN_BRANCH=main +[2024-04-02T23:54:20.113Z] + echo Ouranosinc/raven +[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g +[2024-04-02T23:54:20.113Z] + RAVEN_REPO_NAME=raven +[2024-04-02T23:54:20.113Z] + echo master +[2024-04-02T23:54:20.113Z] + sed s@/@-@g +[2024-04-02T23:54:20.113Z] + RAVENPY_BRANCH=master +[2024-04-02T23:54:20.113Z] + echo CSHS-CWRA/RavenPy +[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g +[2024-04-02T23:54:20.113Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-02T23:54:20.113Z] + echo devel +[2024-04-02T23:54:20.113Z] + sed s@/@-@g +[2024-04-02T23:54:20.113Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-02T23:54:20.113Z] + echo ESGF/esgf-compute-api +[2024-04-02T23:54:20.385Z] + sed s@^.*/@@g +[2024-04-02T23:54:20.385Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-02T23:54:20.385Z] + echo pavics-sdi-master +[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:54:20.385Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:54:20.385Z] + echo finch-master +[2024-04-02T23:54:20.385Z] + FINCH_DIR=finch-master +[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:54:20.385Z] + echo PAVICS-landing-master +[2024-04-02T23:54:20.385Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-04-02T23:54:20.385Z] + echo raven-main +[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:54:20.385Z] + RAVEN_DIR=raven-main +[2024-04-02T23:54:20.385Z] + + echo RavenPy-master +[2024-04-02T23:54:20.385Z] sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:54:20.385Z] + RAVENPY_DIR=RavenPy-master +[2024-04-02T23:54:20.385Z] + echo esgf-compute-api-devel +[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-02T23:54:20.385Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + echo true +[2024-04-02T23:54:20.385Z] + VERIFY_SSL=true +[2024-04-02T23:54:20.385Z] + [ xtrue = xfalse ] +[2024-04-02T23:54:20.385Z] + rm -v finch-master/setup.cfg +[2024-04-02T23:54:20.385Z] removed 'finch-master/setup.cfg' +[2024-04-02T23:54:20.385Z] + rm -v raven-main/setup.cfg +[2024-04-02T23:54:20.385Z] removed 'raven-main/setup.cfg' +[2024-04-02T23:54:20.385Z] + rm -v raven-main/pyproject.toml +[2024-04-02T23:54:20.385Z] removed 'raven-main/pyproject.toml' +[2024-04-02T23:54:20.385Z] + rm -v RavenPy-master/setup.cfg +[2024-04-02T23:54:20.385Z] removed 'RavenPy-master/setup.cfg' +[2024-04-02T23:54:20.385Z] + rm -v RavenPy-master/tox.ini +[2024-04-02T23:54:20.385Z] removed 'RavenPy-master/tox.ini' +[2024-04-02T23:54:20.385Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-02T23:54:20.385Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-02T23:54:20.385Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-02T23:54:20.385Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-02T23:54:20.385Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-02T23:54:20.385Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-02T23:54:20.385Z] + echo false +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + TEST_MAGPIE_AUTH=false +[2024-04-02T23:54:20.385Z] + echo false +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + TEST_PAVICS_SDI_REPO=false +[2024-04-02T23:54:20.385Z] + echo false +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-02T23:54:20.385Z] + echo false +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + TEST_FINCH_REPO=false +[2024-04-02T23:54:20.385Z] + echo false +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + TEST_PAVICS_LANDING_REPO=false +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + echo true +[2024-04-02T23:54:20.385Z] + TEST_RAVEN_REPO=true +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + echo true +[2024-04-02T23:54:20.385Z] + TEST_RAVENPY_REPO=true +[2024-04-02T23:54:20.385Z] + echo false +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-02T23:54:20.385Z] + echo false +[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] +[2024-04-02T23:54:20.385Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-04-02T23:54:20.385Z] + NOTEBOOKS_TO_TEST= +[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] +[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] +[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] +[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] +[2024-04-02T23:54:20.385Z] + [ xtrue = xtrue ] +[2024-04-02T23:54:20.385Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-04-02T23:54:20.385Z] + [ xtrue = xtrue ] +[2024-04-02T23:54:20.385Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-04-02T23:54:20.385Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] +[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] +[2024-04-02T23:54:20.385Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-02T23:54:20.665Z] + [ -n ] +[2024-04-02T23:54:20.665Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-02T23:54:20.665Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-02T23:54:20.665Z] Will run notebooks against pavics.ouranos.ca +[2024-04-02T23:54:20.665Z] + [ -z ] +[2024-04-02T23:54:20.666Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-02T23:54:20.666Z] + git diff +[2024-04-02T23:54:20.666Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-02T23:54:20.666Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-04-02T23:54:26.037Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-02T23:54:26.037Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-02T23:54:26.037Z] ============================= test session starts ============================== +[2024-04-02T23:54:26.037Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-04-02T23:54:26.037Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-04-02T23:54:26.037Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-02T23:54:26.037Z] collected 242 items +[2024-04-02T23:54:26.037Z] +[2024-04-02T23:54:37.957Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-04-02T23:54:40.535Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-04-02T23:54:56.968Z] ...... [ 6%] +[2024-04-02T23:54:58.877Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] +[2024-04-02T23:54:58.877Z] [ 9%] +[2024-04-02T23:55:01.393Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-04-02T23:55:09.526Z] .... [ 12%] +[2024-04-02T23:55:14.821Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-04-02T23:55:22.021Z] ....F.FF..F.. [ 18%] +[2024-04-02T23:55:52.900Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] +[2024-04-02T23:57:06.124Z] .. [ 22%] +[2024-04-02T23:57:07.057Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] +[2024-04-02T23:57:15.718Z] ..FFFFFFFF....... [ 30%] +[2024-04-02T23:57:22.487Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] +[2024-04-02T23:57:33.006Z] ........... [ 36%] +[2024-04-02T23:57:42.436Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] +[2024-04-02T23:57:47.721Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-04-02T23:57:53.016Z] ..... [ 41%] +[2024-04-02T23:57:54.392Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-04-03T00:02:05.534Z] ................. [ 48%] +[2024-04-03T00:02:10.827Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-04-03T00:02:17.782Z] .... [ 50%] +[2024-04-03T00:03:31.955Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] +[2024-04-03T00:03:41.015Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] +[2024-04-03T00:04:13.185Z] ...... [ 57%] +[2024-04-03T00:04:23.237Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] +[2024-04-03T00:04:31.736Z] ....... [ 60%] +[2024-04-03T00:04:39.316Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] +[2024-04-03T00:05:00.183Z] .... [ 64%] +[2024-04-03T00:05:10.154Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-04-03T00:05:33.077Z] ....... [ 67%] +[2024-04-03T00:05:37.286Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-04-03T00:06:07.269Z] ....... [ 70%] +[2024-04-03T00:06:10.630Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] +[2024-04-03T00:06:24.103Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] +[2024-04-03T00:06:32.504Z] .... [ 74%] +[2024-04-03T00:07:30.206Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] +[2024-04-03T00:07:49.798Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] +[2024-04-03T00:07:52.324Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-04-03T00:08:06.030Z] ............. [ 84%] +[2024-04-03T00:08:23.825Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] +[2024-04-03T00:08:32.724Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] +[2024-04-03T00:08:42.707Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-04-03T00:10:00.929Z] .........FFFFFFFFFFF [100%] +[2024-04-03T00:10:00.929Z] +[2024-04-03T00:10:00.929Z] =================================== FAILURES =================================== +[2024-04-03T00:10:00.929Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ +[2024-04-03T00:10:00.929Z] Notebook cell execution failed +[2024-04-03T00:10:00.929Z] Cell 5: Cell execution caused an exception +[2024-04-03T00:10:00.929Z] +[2024-04-03T00:10:00.929Z] Input: +[2024-04-03T00:10:00.929Z] features, statistics, raster = stats_resp.get(asobj=True) +[2024-04-03T00:10:00.929Z] grid = raster[0] +[2024-04-03T00:10:00.929Z] grid.plot() +[2024-04-03T00:10:00.929Z] +[2024-04-03T00:10:00.929Z] Traceback: +[2024-04-03T00:10:00.929Z] +[2024-04-03T00:10:00.929Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.929Z] ValueError Traceback (most recent call last) +[2024-04-03T00:10:00.929Z] Cell In[1], line 3 +[2024-04-03T00:10:00.929Z]  1 features, statistics, raster = stats_resp.get(asobj=True) +[2024-04-03T00:10:00.929Z]  2 grid = raster[0] +[2024-04-03T00:10:00.929Z] ----> 3 grid.plot() +[2024-04-03T00:10:00.929Z] +[2024-04-03T00:10:00.930Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) +[2024-04-03T00:10:00.930Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: +[2024-04-03T00:10:00.930Z] --> 942 raise ValueError( +[2024-04-03T00:10:00.930Z]  943 "Dataset.plot cannot be called directly. Use " +[2024-04-03T00:10:00.930Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" +[2024-04-03T00:10:00.930Z]  945 ) +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ +[2024-04-03T00:10:00.930Z] Notebook cell execution failed +[2024-04-03T00:10:00.930Z] Cell 7: Cell execution caused an exception +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] Input: +[2024-04-03T00:10:00.930Z] unique, counts = np.unique(grid, return_counts=True) +[2024-04-03T00:10:00.930Z] print("The land-use categories available are: " + str(unique)) +[2024-04-03T00:10:00.930Z] print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] # Pixels values at '127' are NaN and can be ignored. +[2024-04-03T00:10:00.930Z] from matplotlib.colors import Normalize +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] norm = Normalize() +[2024-04-03T00:10:00.930Z] norm.autoscale(unique[:-1]) +[2024-04-03T00:10:00.930Z] cm = mpl.colormaps["tab20"] +[2024-04-03T00:10:00.930Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] # plt.bar(unique[:-1], counts[:-1]) +[2024-04-03T00:10:00.930Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) +[2024-04-03T00:10:00.930Z] plt.xlabel("Land-use categories") +[2024-04-03T00:10:00.930Z] plt.ylabel("Number of pixels") +[2024-04-03T00:10:00.930Z] plt.show() +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") +[2024-04-03T00:10:00.930Z] grid.name = "Land-use categories" +[2024-04-03T00:10:00.930Z] plt.show() +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] Traceback: +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.930Z] TypeError Traceback (most recent call last) +[2024-04-03T00:10:00.930Z] /tmp/ipykernel_355/750628277.py in ?() +[2024-04-03T00:10:00.930Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) +[2024-04-03T00:10:00.930Z]  2 print("The land-use categories available are: " + str(unique)) +[2024-04-03T00:10:00.930Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-04-03T00:10:00.930Z]  4  +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] <__array_function__ internals> in ?(*args, **kwargs) +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) +[2024-04-03T00:10:00.930Z]  268 >>> np.repeat(values, counts) +[2024-04-03T00:10:00.930Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved +[2024-04-03T00:10:00.930Z]  270  +[2024-04-03T00:10:00.930Z]  271 """ +[2024-04-03T00:10:00.930Z] --> 272 ar = np.asanyarray(ar) +[2024-04-03T00:10:00.930Z]  273 if axis is None: +[2024-04-03T00:10:00.930Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, +[2024-04-03T00:10:00.930Z]  275 equal_nan=equal_nan) +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) +[2024-04-03T00:10:00.930Z]  1472 def __array__(self, dtype=None): +[2024-04-03T00:10:00.930Z] -> 1473 raise TypeError( +[2024-04-03T00:10:00.930Z]  1474 "cannot directly convert an xarray.Dataset into a " +[2024-04-03T00:10:00.930Z]  1475 "numpy array. Instead, create an xarray.DataArray " +[2024-04-03T00:10:00.930Z]  1476 "first, either with indexing on the Dataset or by " +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ +[2024-04-03T00:10:00.930Z] Notebook cell execution failed +[2024-04-03T00:10:00.930Z] Cell 8: Cell execution caused an exception +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] Input: +[2024-04-03T00:10:00.930Z] import cartopy.crs as ccrs +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] # Set a CRS transformation: +[2024-04-03T00:10:00.930Z] crs = ccrs.LambertConformal( +[2024-04-03T00:10:00.930Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-03T00:10:00.930Z] ) +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] ax = plt.subplot(projection=crs) +[2024-04-03T00:10:00.930Z] grid.name = "Land-use categories" +[2024-04-03T00:10:00.930Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-04-03T00:10:00.930Z] plt.show() +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] Traceback: +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.930Z] AttributeError Traceback (most recent call last) +[2024-04-03T00:10:00.930Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-03T00:10:00.930Z]  304 try: +[2024-04-03T00:10:00.930Z] --> 305 object.__setattr__(self, name, value) +[2024-04-03T00:10:00.930Z]  306 except AttributeError as e: +[2024-04-03T00:10:00.930Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-04-03T00:10:00.930Z]  308 # DataArray.dims.setter +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] The above exception was the direct cause of the following exception: +[2024-04-03T00:10:00.930Z] +[2024-04-03T00:10:00.930Z] AttributeError Traceback (most recent call last) +[2024-04-03T00:10:00.930Z] Cell In[1], line 9 +[2024-04-03T00:10:00.930Z]  4 crs = ccrs.LambertConformal( +[2024-04-03T00:10:00.930Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-03T00:10:00.930Z]  6 ) +[2024-04-03T00:10:00.931Z]  8 ax = plt.subplot(projection=crs) +[2024-04-03T00:10:00.931Z] ----> 9 grid.name = "Land-use categories" +[2024-04-03T00:10:00.931Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-04-03T00:10:00.931Z]  11 plt.show() +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-03T00:10:00.931Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-04-03T00:10:00.931Z]  310 raise +[2024-04-03T00:10:00.931Z] --> 311 raise AttributeError( +[2024-04-03T00:10:00.931Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-04-03T00:10:00.931Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-04-03T00:10:00.931Z]  314 ) from e +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ +[2024-04-03T00:10:00.931Z] Notebook cell execution failed +[2024-04-03T00:10:00.931Z] Cell 11: Cell execution caused an exception +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] Input: +[2024-04-03T00:10:00.931Z] crs = ccrs.LambertConformal( +[2024-04-03T00:10:00.931Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-03T00:10:00.931Z] ) +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] dem.name = "Elevation" +[2024-04-03T00:10:00.931Z] dem.attrs["units"] = "m" +[2024-04-03T00:10:00.931Z] ax = plt.subplot(projection=crs) +[2024-04-03T00:10:00.931Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") +[2024-04-03T00:10:00.931Z] plt.show() +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] Traceback: +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.931Z] AttributeError Traceback (most recent call last) +[2024-04-03T00:10:00.931Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-03T00:10:00.931Z]  304 try: +[2024-04-03T00:10:00.931Z] --> 305 object.__setattr__(self, name, value) +[2024-04-03T00:10:00.931Z]  306 except AttributeError as e: +[2024-04-03T00:10:00.931Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-04-03T00:10:00.931Z]  308 # DataArray.dims.setter +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] The above exception was the direct cause of the following exception: +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] AttributeError Traceback (most recent call last) +[2024-04-03T00:10:00.931Z] Cell In[1], line 5 +[2024-04-03T00:10:00.931Z]  1 crs = ccrs.LambertConformal( +[2024-04-03T00:10:00.931Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-03T00:10:00.931Z]  3 ) +[2024-04-03T00:10:00.931Z] ----> 5 dem.name = "Elevation" +[2024-04-03T00:10:00.931Z]  6 dem.attrs["units"] = "m" +[2024-04-03T00:10:00.931Z]  7 ax = plt.subplot(projection=crs) +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-03T00:10:00.931Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-04-03T00:10:00.931Z]  310 raise +[2024-04-03T00:10:00.931Z] --> 311 raise AttributeError( +[2024-04-03T00:10:00.931Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-04-03T00:10:00.931Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-04-03T00:10:00.931Z]  314 ) from e +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-04-03T00:10:00.931Z] Notebook cell execution failed +[2024-04-03T00:10:00.931Z] Cell 5: Cell execution caused an exception +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] Input: +[2024-04-03T00:10:00.931Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-04-03T00:10:00.931Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-04-03T00:10:00.931Z] from ravenpy import OutputReader +[2024-04-03T00:10:00.931Z] from ravenpy.ravenpy import run +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-04-03T00:10:00.931Z] run_name = run_name +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-04-03T00:10:00.931Z] # subfolder called "outputs" +[2024-04-03T00:10:00.931Z] configdir = workdir +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-04-03T00:10:00.931Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] # Get the outputs using the Output Reader object. +[2024-04-03T00:10:00.931Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] Traceback: +[2024-04-03T00:10:00.931Z] +[2024-04-03T00:10:00.931Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.931Z] RavenError Traceback (most recent call last) +[2024-04-03T00:10:00.932Z] Cell In[1], line 14 +[2024-04-03T00:10:00.932Z]  11 configdir = workdir +[2024-04-03T00:10:00.932Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-04-03T00:10:00.932Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-04-03T00:10:00.932Z]  16 # Get the outputs using the Output Reader object. +[2024-04-03T00:10:00.932Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-04-03T00:10:00.932Z]  320 warn(msg, category=RavenWarning) +[2024-04-03T00:10:00.932Z]  322 if messages["ERROR"]: +[2024-04-03T00:10:00.932Z] --> 323 raise RavenError( +[2024-04-03T00:10:00.932Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-04-03T00:10:00.932Z]  325 ) +[2024-04-03T00:10:00.932Z]  327 if returncode != 0: +[2024-04-03T00:10:00.932Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] RavenError: Config directory: /tmp/NB4zd1xxiv6 +[2024-04-03T00:10:00.932Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-04-03T00:10:00.932Z] Notebook cell execution failed +[2024-04-03T00:10:00.932Z] Cell 6: Cell execution caused an exception +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] Input: +[2024-04-03T00:10:00.932Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-04-03T00:10:00.932Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-04-03T00:10:00.932Z] from ravenpy import Emulator +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] # Prepare the emulator by writing files on disk +[2024-04-03T00:10:00.932Z] e = Emulator(config=m) +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] # Run the model and get the outputs. +[2024-04-03T00:10:00.932Z] outputs = e.run() +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] Traceback: +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.932Z] RavenError Traceback (most recent call last) +[2024-04-03T00:10:00.932Z] Cell In[1], line 9 +[2024-04-03T00:10:00.932Z]  6 e = Emulator(config=m) +[2024-04-03T00:10:00.932Z]  8 # Run the model and get the outputs. +[2024-04-03T00:10:00.932Z] ----> 9 outputs = e.run() +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-04-03T00:10:00.932Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-04-03T00:10:00.932Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-04-03T00:10:00.932Z]  66 self.write_rv(overwrite=overwrite) +[2024-04-03T00:10:00.932Z] ---> 68 self._output_path = run( +[2024-04-03T00:10:00.932Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-04-03T00:10:00.932Z]  70 ) +[2024-04-03T00:10:00.932Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-04-03T00:10:00.932Z]  72 return self._output +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-04-03T00:10:00.932Z]  320 warn(msg, category=RavenWarning) +[2024-04-03T00:10:00.932Z]  322 if messages["ERROR"]: +[2024-04-03T00:10:00.932Z] --> 323 raise RavenError( +[2024-04-03T00:10:00.932Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-04-03T00:10:00.932Z]  325 ) +[2024-04-03T00:10:00.932Z]  327 if returncode != 0: +[2024-04-03T00:10:00.932Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] RavenError: Config directory: /tmp/tmprpv72id4 +[2024-04-03T00:10:00.932Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-04-03T00:10:00.932Z] Notebook cell execution failed +[2024-04-03T00:10:00.932Z] Cell 7: Cell execution caused an exception +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] Input: +[2024-04-03T00:10:00.932Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-04-03T00:10:00.932Z] outputs.files +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] Traceback: +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.932Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.932Z] Cell In[1], line 2 +[2024-04-03T00:10:00.932Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-04-03T00:10:00.932Z] ----> 2 outputs.files +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] NameError: name 'outputs' is not defined +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-04-03T00:10:00.932Z] Notebook cell execution failed +[2024-04-03T00:10:00.932Z] Cell 8: Cell execution caused an exception +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.932Z] Input: +[2024-04-03T00:10:00.932Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-04-03T00:10:00.932Z] print("----------------HYDROGRAPH----------------") +[2024-04-03T00:10:00.932Z] display(outputs.hydrograph) +[2024-04-03T00:10:00.932Z] print("") +[2024-04-03T00:10:00.932Z] print("-----------------STORAGE------------------") +[2024-04-03T00:10:00.932Z] display(outputs.storage) +[2024-04-03T00:10:00.932Z] print("") +[2024-04-03T00:10:00.932Z] print("-----------------SOLUTION-----------------") +[2024-04-03T00:10:00.932Z] display(outputs.solution) +[2024-04-03T00:10:00.932Z] print("") +[2024-04-03T00:10:00.932Z] +[2024-04-03T00:10:00.933Z] Traceback: +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.933Z] Cell In[1], line 3 +[2024-04-03T00:10:00.933Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-04-03T00:10:00.933Z]  2 print("----------------HYDROGRAPH----------------") +[2024-04-03T00:10:00.933Z] ----> 3 display(outputs.hydrograph) +[2024-04-03T00:10:00.933Z]  4 print("") +[2024-04-03T00:10:00.933Z]  5 print("-----------------STORAGE------------------") +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-04-03T00:10:00.933Z] Notebook cell execution failed +[2024-04-03T00:10:00.933Z] Cell 9: Cell execution caused an exception +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Input: +[2024-04-03T00:10:00.933Z] # Import the graphing utility built to handle Raven model outputs +[2024-04-03T00:10:00.933Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] hydrograph_objects = outputs.hydrograph +[2024-04-03T00:10:00.933Z] hydrographs(hydrograph_objects) +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Traceback: +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.933Z] Cell In[1], line 4 +[2024-04-03T00:10:00.933Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-04-03T00:10:00.933Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-04-03T00:10:00.933Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-04-03T00:10:00.933Z]  5 hydrographs(hydrograph_objects) +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-04-03T00:10:00.933Z] Notebook cell execution failed +[2024-04-03T00:10:00.933Z] Cell 10: Cell execution caused an exception +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Input: +[2024-04-03T00:10:00.933Z] outputs.hydrograph.q_sim.plot() +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Traceback: +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.933Z] Cell In[1], line 1 +[2024-04-03T00:10:00.933Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-04-03T00:10:00.933Z] Notebook cell execution failed +[2024-04-03T00:10:00.933Z] Cell 11: Cell execution caused an exception +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Input: +[2024-04-03T00:10:00.933Z] print(list(outputs.storage.keys())) +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Traceback: +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.933Z] Cell In[1], line 1 +[2024-04-03T00:10:00.933Z] ----> 1 print(list(outputs.storage.keys())) +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-04-03T00:10:00.933Z] Notebook cell execution failed +[2024-04-03T00:10:00.933Z] Cell 12: Cell execution caused an exception +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Input: +[2024-04-03T00:10:00.933Z] # Plot the "Snow" variable +[2024-04-03T00:10:00.933Z] outputs.storage["Snow"].plot() +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Traceback: +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.933Z] Cell In[1], line 2 +[2024-04-03T00:10:00.933Z]  1 # Plot the "Snow" variable +[2024-04-03T00:10:00.933Z] ----> 2 outputs.storage["Snow"].plot() +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ +[2024-04-03T00:10:00.933Z] Notebook cell execution failed +[2024-04-03T00:10:00.933Z] Cell 0: Cell execution caused an exception +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Input: +[2024-04-03T00:10:00.933Z] import os +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] from hsclient import HydroShare, Token +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] # Authentication method using username and password +[2024-04-03T00:10:00.933Z] """ +[2024-04-03T00:10:00.933Z] username = 'XXXXX' +[2024-04-03T00:10:00.933Z] password = 'XXXXX' +[2024-04-03T00:10:00.933Z] hs = HydroShare(username=username, password=password) +[2024-04-03T00:10:00.933Z] """ +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-04-03T00:10:00.933Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] token = Token(access_token=access_token, token_type="bearer") +[2024-04-03T00:10:00.933Z] hs = HydroShare(client_id=client_id, token=token) +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] Traceback: +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.933Z] ValidationError Traceback (most recent call last) +[2024-04-03T00:10:00.933Z] Cell In[1], line 15 +[2024-04-03T00:10:00.933Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-04-03T00:10:00.933Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-04-03T00:10:00.933Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-04-03T00:10:00.933Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-04-03T00:10:00.933Z] +[2024-04-03T00:10:00.933Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) +[2024-04-03T00:10:00.933Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-04-03T00:10:00.933Z]  170 __tracebackhide__ = True +[2024-04-03T00:10:00.934Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] ValidationError: 4 validation errors for Token +[2024-04-03T00:10:00.934Z] scope +[2024-04-03T00:10:00.934Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-04-03T00:10:00.934Z]  2 for r in results: +[2024-04-03T00:10:00.934Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] NameError: name 'hs' is not defined +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ +[2024-04-03T00:10:00.934Z] Notebook cell execution failed +[2024-04-03T00:10:00.934Z] Cell 2: Cell execution caused an exception +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] Input: +[2024-04-03T00:10:00.934Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-04-03T00:10:00.934Z] res.files() +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] Traceback: +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.934Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.934Z] Cell In[1], line 1 +[2024-04-03T00:10:00.934Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-04-03T00:10:00.934Z]  2 res.files() +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] NameError: name 'hs' is not defined +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ +[2024-04-03T00:10:00.934Z] Notebook cell execution failed +[2024-04-03T00:10:00.934Z] Cell 3: Cell execution caused an exception +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] Input: +[2024-04-03T00:10:00.934Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] Traceback: +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.934Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.934Z] Cell In[1], line 1 +[2024-04-03T00:10:00.934Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] NameError: name 'res' is not defined +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ +[2024-04-03T00:10:00.934Z] Notebook cell execution failed +[2024-04-03T00:10:00.934Z] Cell 10: Cell execution caused an exception +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] Input: +[2024-04-03T00:10:00.934Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. +[2024-04-03T00:10:00.934Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" +[2024-04-03T00:10:00.934Z] cat = intake.open_catalog(catalog_name) +[2024-04-03T00:10:00.934Z] ds = cat.era5_reanalysis_single_levels.to_dask() +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] """ +[2024-04-03T00:10:00.934Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, +[2024-04-03T00:10:00.934Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total +[2024-04-03T00:10:00.934Z] precipitation. +[2024-04-03T00:10:00.934Z] """ +[2024-04-03T00:10:00.934Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, +[2024-04-03T00:10:00.934Z] # such as units and variable names. +[2024-04-03T00:10:00.934Z] with xr.set_options(keep_attrs=True): +[2024-04-03T00:10:00.934Z] ERA5_reference = subset.subset_shape( +[2024-04-03T00:10:00.934Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour +[2024-04-03T00:10:00.934Z] ) +[2024-04-03T00:10:00.934Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) +[2024-04-03T00:10:00.934Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) +[2024-04-03T00:10:00.934Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] # Change the units +[2024-04-03T00:10:00.934Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C +[2024-04-03T00:10:00.934Z] ERA5_tmin.attrs["units"] = "degC" +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C +[2024-04-03T00:10:00.934Z] ERA5_tmax.attrs["units"] = "degC" +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] ERA5_pr = ERA5_pr * 1000 # m to mm +[2024-04-03T00:10:00.934Z] ERA5_pr.attrs["units"] = "mm" +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] # Average the variables spatially +[2024-04-03T00:10:00.934Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-04-03T00:10:00.934Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-04-03T00:10:00.934Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-04-03T00:10:00.934Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-04-03T00:10:00.934Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-04-03T00:10:00.934Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-04-03T00:10:00.934Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the +[2024-04-03T00:10:00.934Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. +[2024-04-03T00:10:00.934Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) +[2024-04-03T00:10:00.934Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] Traceback: +[2024-04-03T00:10:00.934Z] +[2024-04-03T00:10:00.934Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.934Z] KeyError Traceback (most recent call last) +[2024-04-03T00:10:00.934Z] Cell In[1], line 37 +[2024-04-03T00:10:00.935Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-04-03T00:10:00.935Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-04-03T00:10:00.935Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 +[2024-04-03T00:10:00.935Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-04-03T00:10:00.935Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-04-03T00:10:00.935Z] +[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-04-03T00:10:00.935Z]  851 self.coords[key] = value +[2024-04-03T00:10:00.935Z]  852 else: +[2024-04-03T00:10:00.935Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-04-03T00:10:00.935Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-04-03T00:10:00.935Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-04-03T00:10:00.935Z] --> 856 obj = self[key] +[2024-04-03T00:10:00.935Z]  857 if isinstance(value, DataArray): +[2024-04-03T00:10:00.935Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-04-03T00:10:00.935Z] +[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-04-03T00:10:00.935Z]  844 return self._getitem_coord(key) +[2024-04-03T00:10:00.935Z]  845 else: +[2024-04-03T00:10:00.935Z]  846 # xarray-style array indexing +[2024-04-03T00:10:00.935Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-04-03T00:10:00.935Z] +[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-04-03T00:10:00.935Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-04-03T00:10:00.935Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-04-03T00:10:00.935Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-04-03T00:10:00.935Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-04-03T00:10:00.935Z]  1447  ) +[2024-04-03T00:10:00.935Z]  1448 return self._from_temp_dataset(ds) +[2024-04-03T00:10:00.935Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-04-03T00:10:00.935Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-04-03T00:10:00.935Z] +[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-04-03T00:10:00.935Z]  2926 var_indexers = { +[2024-04-03T00:10:00.935Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-04-03T00:10:00.935Z]  2928 } +[2024-04-03T00:10:00.935Z]  2929 if var_indexers: +[2024-04-03T00:10:00.935Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-04-03T00:10:00.935Z]  2931 # drop scalar coordinates +[2024-04-03T00:10:00.935Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-04-03T00:10:00.935Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-04-03T00:10:00.935Z] +[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-04-03T00:10:00.935Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-04-03T00:10:00.935Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-04-03T00:10:00.935Z] -> 1368 return self[key] +[2024-04-03T00:10:00.935Z] +[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-04-03T00:10:00.935Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-04-03T00:10:00.935Z]  879  """Return a new Variable object whose contents are consistent with +[2024-04-03T00:10:00.935Z]  880  getting the provided key from the underlying data. +[2024-04-03T00:10:00.935Z]  881 +[2024-04-03T00:10:00.935Z]  (...) +[2024-04-03T00:10:00.935Z]  889  array `x.values` directly. +[2024-04-03T00:10:00.935Z]  890  """ +[2024-04-03T00:10:00.935Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-04-03T00:10:00.935Z]  892 data = as_indexable(self._data)[indexer] +[2024-04-03T00:10:00.935Z]  893 if new_order: +[2024-04-03T00:10:00.935Z] +[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-04-03T00:10:00.936Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-04-03T00:10:00.936Z]  722 return self._broadcast_indexes_basic(key) +[2024-04-03T00:10:00.936Z] --> 724 self._validate_indexers(key) +[2024-04-03T00:10:00.936Z]  725 # Detect it can be mapped as an outer indexer +[2024-04-03T00:10:00.936Z]  726 # If all key is unlabeled, or +[2024-04-03T00:10:00.936Z]  727 # key can be mapped as an OuterIndexer. +[2024-04-03T00:10:00.936Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-04-03T00:10:00.936Z]  771 raise IndexError( +[2024-04-03T00:10:00.936Z]  772 "{}-dimensional boolean indexing is " +[2024-04-03T00:10:00.936Z]  773 "not supported. ".format(k.ndim) +[2024-04-03T00:10:00.936Z]  774 ) +[2024-04-03T00:10:00.936Z]  775 if is_duck_dask_array(k.data): +[2024-04-03T00:10:00.936Z] --> 776 raise KeyError( +[2024-04-03T00:10:00.936Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-04-03T00:10:00.936Z]  778 "This will result in a dask array of unknown shape. " +[2024-04-03T00:10:00.936Z]  779 "Such arrays are unsupported by Xarray." +[2024-04-03T00:10:00.936Z]  780 "Please compute the indexer first using .compute()" +[2024-04-03T00:10:00.936Z]  781 ) +[2024-04-03T00:10:00.936Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-04-03T00:10:00.936Z]  783 raise IndexError( +[2024-04-03T00:10:00.936Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-04-03T00:10:00.936Z]  785 "same dimension to the indexed array. Indexer is " +[2024-04-03T00:10:00.936Z]  (...) +[2024-04-03T00:10:00.936Z]  788 ) +[2024-04-03T00:10:00.936Z]  789 ) +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ +[2024-04-03T00:10:00.936Z] Notebook cell execution failed +[2024-04-03T00:10:00.936Z] Cell 11: Cell execution caused an exception +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] Input: +[2024-04-03T00:10:00.936Z] # Climate model to use +[2024-04-03T00:10:00.936Z] climate_model = "MIROC6" +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. +[2024-04-03T00:10:00.936Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") +[2024-04-03T00:10:00.936Z] col = intake.open_esm_datastore( +[2024-04-03T00:10:00.936Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" +[2024-04-03T00:10:00.936Z] ) +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. +[2024-04-03T00:10:00.936Z] with xr.set_options(keep_attrs=True): +[2024-04-03T00:10:00.936Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. +[2024-04-03T00:10:00.936Z] out = {} +[2024-04-03T00:10:00.936Z] for exp in ["historical", "ssp585"]: +[2024-04-03T00:10:00.936Z] if exp == "historical": +[2024-04-03T00:10:00.936Z] period_start = reference_start_day +[2024-04-03T00:10:00.936Z] period_end = reference_end_day +[2024-04-03T00:10:00.936Z] else: +[2024-04-03T00:10:00.936Z] period_start = future_start_day +[2024-04-03T00:10:00.936Z] period_end = future_end_day +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] out[exp] = {} +[2024-04-03T00:10:00.936Z] for variable in ["tasmin", "tasmax", "pr"]: +[2024-04-03T00:10:00.936Z] print(exp, variable) +[2024-04-03T00:10:00.936Z] query = dict( +[2024-04-03T00:10:00.936Z] experiment_id=exp, +[2024-04-03T00:10:00.936Z] table_id="day", +[2024-04-03T00:10:00.936Z] variable_id=variable, +[2024-04-03T00:10:00.936Z] member_id="r1i1p1f1", +[2024-04-03T00:10:00.936Z] source_id=climate_model, +[2024-04-03T00:10:00.936Z] ) +[2024-04-03T00:10:00.936Z] col_subset = col.search(require_all_on=["source_id"], **query) +[2024-04-03T00:10:00.936Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. +[2024-04-03T00:10:00.936Z] if variable == "pr": +[2024-04-03T00:10:00.936Z] out[exp][variable] = average.average_shape( +[2024-04-03T00:10:00.936Z] xr.open_zarr(mapper, consolidated=True).sel( +[2024-04-03T00:10:00.936Z] time=slice(period_start, period_end) +[2024-04-03T00:10:00.936Z] )[variable], +[2024-04-03T00:10:00.936Z] basin_contour, +[2024-04-03T00:10:00.936Z] ).chunk(-1) +[2024-04-03T00:10:00.936Z] else: +[2024-04-03T00:10:00.936Z] out[exp][variable] = average.average_shape( +[2024-04-03T00:10:00.936Z] xr.open_zarr(mapper, consolidated=True) +[2024-04-03T00:10:00.936Z] .sel(time=slice(period_start, period_end)) +[2024-04-03T00:10:00.936Z] .reset_coords("height", drop=True)[variable], +[2024-04-03T00:10:00.936Z] basin_contour, +[2024-04-03T00:10:00.936Z] ).chunk(-1) +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] # We can now extract the variables that we will need later: +[2024-04-03T00:10:00.936Z] historical_tasmax = out["historical"]["tasmax"] +[2024-04-03T00:10:00.936Z] historical_tasmin = out["historical"]["tasmin"] +[2024-04-03T00:10:00.936Z] historical_pr = out["historical"]["pr"] +[2024-04-03T00:10:00.936Z] future_tasmax = out["ssp585"]["tasmax"] +[2024-04-03T00:10:00.936Z] future_tasmin = out["ssp585"]["tasmin"] +[2024-04-03T00:10:00.936Z] future_pr = out["ssp585"]["pr"] +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] Traceback: +[2024-04-03T00:10:00.936Z] +[2024-04-03T00:10:00.936Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.936Z] KeyError Traceback (most recent call last) +[2024-04-03T00:10:00.936Z] Cell In[1], line 44 +[2024-04-03T00:10:00.936Z]  37 out[exp][variable] = average.average_shape( +[2024-04-03T00:10:00.936Z]  38 xr.open_zarr(mapper, consolidated=True).sel( +[2024-04-03T00:10:00.937Z]  39 time=slice(period_start, period_end) +[2024-04-03T00:10:00.937Z]  40 )[variable], +[2024-04-03T00:10:00.937Z]  41 basin_contour, +[2024-04-03T00:10:00.937Z]  42 ).chunk(-1) +[2024-04-03T00:10:00.937Z]  43 else: +[2024-04-03T00:10:00.937Z] ---> 44 out[exp][variable] = average.average_shape( +[2024-04-03T00:10:00.937Z]  45  xr.open_zarr(mapper, consolidated=True) +[2024-04-03T00:10:00.937Z]  46  .sel(time=slice(period_start, period_end)) +[2024-04-03T00:10:00.937Z]  47  .reset_coords("height", drop=True)[variable], +[2024-04-03T00:10:00.937Z]  48  basin_contour, +[2024-04-03T00:10:00.937Z]  49  ).chunk(-1) +[2024-04-03T00:10:00.937Z]  51 # We can now extract the variables that we will need later: +[2024-04-03T00:10:00.937Z]  52 historical_tasmax = out["historical"]["tasmax"] +[2024-04-03T00:10:00.937Z] +[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) +[2024-04-03T00:10:00.937Z]  105 ds_sub = ds_copy.isel(indexer) +[2024-04-03T00:10:00.937Z]  107 # Compute the weights +[2024-04-03T00:10:00.937Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) +[2024-04-03T00:10:00.937Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. +[2024-04-03T00:10:00.937Z]  111 nonnull = ( +[2024-04-03T00:10:00.937Z]  112 savger.weights.data.nnz +[2024-04-03T00:10:00.937Z]  113 if isinstance(savger.weights, xr.DataArray) +[2024-04-03T00:10:00.937Z]  114 else savger.weights.nnz +[2024-04-03T00:10:00.937Z]  115 ) +[2024-04-03T00:10:00.937Z] +[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) +[2024-04-03T00:10:00.937Z]  1182 if isinstance(ds_in, xr.DataArray): +[2024-04-03T00:10:00.937Z]  1183 ds_in = ds_in._to_temp_dataset() +[2024-04-03T00:10:00.937Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) +[2024-04-03T00:10:00.937Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. +[2024-04-03T00:10:00.937Z]  1188 # Latitude and longitude coordinates are the polygon centroid. +[2024-04-03T00:10:00.937Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) +[2024-04-03T00:10:00.937Z] +[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) +[2024-04-03T00:10:00.937Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) +[2024-04-03T00:10:00.937Z]  166 if need_bounds: +[2024-04-03T00:10:00.937Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) +[2024-04-03T00:10:00.937Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) +[2024-04-03T00:10:00.937Z]  169 add_corner(grid, lon_b.T, lat_b.T) +[2024-04-03T00:10:00.937Z] +[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) +[2024-04-03T00:10:00.937Z]  105 lat_bnds = ds.cf.get_bounds('latitude') +[2024-04-03T00:10:00.937Z]  107 # Convert from CF bounds to xESMF bounds. +[2024-04-03T00:10:00.937Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. +[2024-04-03T00:10:00.937Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) +[2024-04-03T00:10:00.937Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) +[2024-04-03T00:10:00.937Z]  111 return lon_b, lat_b +[2024-04-03T00:10:00.937Z] +[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) +[2024-04-03T00:10:00.937Z]  2400 filtered = [ +[2024-04-03T00:10:00.937Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs +[2024-04-03T00:10:00.937Z]  2402 ] +[2024-04-03T00:10:00.937Z]  2403 if len(filtered) > 1: +[2024-04-03T00:10:00.937Z] -> 2404 raise KeyError( +[2024-04-03T00:10:00.937Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " +[2024-04-03T00:10:00.937Z]  2406 ) +[2024-04-03T00:10:00.937Z]  2408 (crd_name,) = filtered +[2024-04-03T00:10:00.937Z]  2409 crd = variables[crd_name] +[2024-04-03T00:10:00.937Z] +[2024-04-03T00:10:00.938Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ +[2024-04-03T00:10:00.938Z] Notebook cell execution failed +[2024-04-03T00:10:00.938Z] Cell 12: Cell execution caused an exception +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] Input: +[2024-04-03T00:10:00.938Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-04-03T00:10:00.938Z] # and make sure everything is consistent. +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Let's start with precipitation: +[2024-04-03T00:10:00.938Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-04-03T00:10:00.938Z] historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-04-03T00:10:00.938Z] future_pr = xclim.core.units.rate2amount(future_pr) +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Now we can actually convert units in absolute terms. +[2024-04-03T00:10:00.938Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") +[2024-04-03T00:10:00.938Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Now let's do temperature: +[2024-04-03T00:10:00.938Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") +[2024-04-03T00:10:00.938Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") +[2024-04-03T00:10:00.938Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") +[2024-04-03T00:10:00.938Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] Traceback: +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.938Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.938Z] Cell In[1], line 6 +[2024-04-03T00:10:00.938Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-04-03T00:10:00.938Z]  2 # and make sure everything is consistent. +[2024-04-03T00:10:00.938Z]  3 +[2024-04-03T00:10:00.938Z]  4 # Let's start with precipitation: +[2024-04-03T00:10:00.938Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-04-03T00:10:00.938Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-04-03T00:10:00.938Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) +[2024-04-03T00:10:00.938Z]  9 # Now we can actually convert units in absolute terms. +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] NameError: name 'historical_pr' is not defined +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ +[2024-04-03T00:10:00.938Z] Notebook cell execution failed +[2024-04-03T00:10:00.938Z] Cell 13: Cell execution caused an exception +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] Input: +[2024-04-03T00:10:00.938Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. +[2024-04-03T00:10:00.938Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-04-03T00:10:00.938Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-03T00:10:00.938Z] ref=ERA5_weather.pr, +[2024-04-03T00:10:00.938Z] hist=historical_pr, +[2024-04-03T00:10:00.938Z] nquantiles=50, +[2024-04-03T00:10:00.938Z] kind="+", +[2024-04-03T00:10:00.938Z] group=group_month_window, +[2024-04-03T00:10:00.938Z] ) +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Apply the correction factors on the reference period +[2024-04-03T00:10:00.938Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Apply the correction factors on the future period +[2024-04-03T00:10:00.938Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Ensure that the precipitation is non-negative, which can happen with some climate models +[2024-04-03T00:10:00.938Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) +[2024-04-03T00:10:00.938Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data +[2024-04-03T00:10:00.938Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-03T00:10:00.938Z] ref=ERA5_weather.tmax, +[2024-04-03T00:10:00.938Z] hist=historical_tasmax, +[2024-04-03T00:10:00.938Z] nquantiles=50, +[2024-04-03T00:10:00.938Z] kind="+", +[2024-04-03T00:10:00.938Z] group=group_month_window, +[2024-04-03T00:10:00.938Z] ) +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Apply the correction factors on the reference period +[2024-04-03T00:10:00.938Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Apply the correction factors on the future period +[2024-04-03T00:10:00.938Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data +[2024-04-03T00:10:00.938Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-03T00:10:00.938Z] ref=ERA5_weather.tmin, +[2024-04-03T00:10:00.938Z] hist=historical_tasmin, +[2024-04-03T00:10:00.938Z] nquantiles=50, +[2024-04-03T00:10:00.938Z] kind="+", +[2024-04-03T00:10:00.938Z] group=group_month_window, +[2024-04-03T00:10:00.938Z] ) +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Apply the correction factors on the reference period +[2024-04-03T00:10:00.938Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] # Apply the correction factors on the future period +[2024-04-03T00:10:00.938Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] Traceback: +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.938Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.938Z] Cell In[1], line 6 +[2024-04-03T00:10:00.938Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-04-03T00:10:00.938Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-04-03T00:10:00.938Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-03T00:10:00.938Z] ----> 6 ref=ERA5_weather.pr, +[2024-04-03T00:10:00.938Z]  7 hist=historical_pr, +[2024-04-03T00:10:00.938Z]  8 nquantiles=50, +[2024-04-03T00:10:00.938Z]  9 kind="+", +[2024-04-03T00:10:00.938Z]  10 group=group_month_window, +[2024-04-03T00:10:00.938Z]  11 ) +[2024-04-03T00:10:00.938Z]  13 # Apply the correction factors on the reference period +[2024-04-03T00:10:00.938Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] NameError: name 'ERA5_weather' is not defined +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ +[2024-04-03T00:10:00.938Z] Notebook cell execution failed +[2024-04-03T00:10:00.938Z] Cell 14: Cell execution caused an exception +[2024-04-03T00:10:00.938Z] +[2024-04-03T00:10:00.938Z] Input: +[2024-04-03T00:10:00.939Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-04-03T00:10:00.939Z] ref_dataset = xr.merge( +[2024-04-03T00:10:00.939Z] [ +[2024-04-03T00:10:00.939Z] corrected_ref_precip.to_dataset(name="pr"), +[2024-04-03T00:10:00.939Z] corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-04-03T00:10:00.939Z] corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-04-03T00:10:00.939Z] ] +[2024-04-03T00:10:00.939Z] ) +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Write to temporary folder +[2024-04-03T00:10:00.939Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-04-03T00:10:00.939Z] ref_dataset.to_netcdf(fn_tmp_ref) +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Convert the future corrected data into netCDF file +[2024-04-03T00:10:00.939Z] fut_dataset = xr.merge( +[2024-04-03T00:10:00.939Z] [ +[2024-04-03T00:10:00.939Z] corrected_fut_precip.to_dataset(name="pr"), +[2024-04-03T00:10:00.939Z] corrected_fut_tasmax.to_dataset(name="tasmax"), +[2024-04-03T00:10:00.939Z] corrected_fut_tasmin.to_dataset(name="tasmin"), +[2024-04-03T00:10:00.939Z] ] +[2024-04-03T00:10:00.939Z] ) +[2024-04-03T00:10:00.939Z] # Write to temporary folder +[2024-04-03T00:10:00.939Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" +[2024-04-03T00:10:00.939Z] fut_dataset.to_netcdf(fn_tmp_fut) +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Write the data to disk to a temporary location for future use. +[2024-04-03T00:10:00.939Z] ref_dataset = xr.open_dataset(fn_tmp_ref) +[2024-04-03T00:10:00.939Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] fut_dataset = xr.open_dataset(fn_tmp_fut) +[2024-04-03T00:10:00.939Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] Traceback: +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.939Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.939Z] Cell In[1], line 4 +[2024-04-03T00:10:00.939Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-04-03T00:10:00.939Z]  2 ref_dataset = xr.merge( +[2024-04-03T00:10:00.939Z]  3 [ +[2024-04-03T00:10:00.939Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), +[2024-04-03T00:10:00.939Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-04-03T00:10:00.939Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-04-03T00:10:00.939Z]  7 ] +[2024-04-03T00:10:00.939Z]  8 ) +[2024-04-03T00:10:00.939Z]  10 # Write to temporary folder +[2024-04-03T00:10:00.939Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] NameError: name 'corrected_ref_precip' is not defined +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ +[2024-04-03T00:10:00.939Z] Notebook cell execution failed +[2024-04-03T00:10:00.939Z] Cell 15: Cell execution caused an exception +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] Input: +[2024-04-03T00:10:00.939Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-04-03T00:10:00.939Z] # populate the fields for the HRU. +[2024-04-03T00:10:00.939Z] hru = {} +[2024-04-03T00:10:00.939Z] hru = dict( +[2024-04-03T00:10:00.939Z] area=all_properties["area"], +[2024-04-03T00:10:00.939Z] elevation=all_properties["elevation"], +[2024-04-03T00:10:00.939Z] latitude=all_properties["latitude"], +[2024-04-03T00:10:00.939Z] longitude=all_properties["longitude"], +[2024-04-03T00:10:00.939Z] hru_type="land", +[2024-04-03T00:10:00.939Z] ) +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-04-03T00:10:00.939Z] # will simply execute the model which has been pre-configured to run on this period. +[2024-04-03T00:10:00.939Z] start_date = dt.datetime(1981, 1, 1) +[2024-04-03T00:10:00.939Z] end_date = dt.datetime(1985, 12, 31) +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. +[2024-04-03T00:10:00.939Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Alternative variable names as described in the tutorial. +[2024-04-03T00:10:00.939Z] alt_names = { +[2024-04-03T00:10:00.939Z] "TEMP_MIN": "tmin", +[2024-04-03T00:10:00.939Z] "TEMP_MAX": "tmax", +[2024-04-03T00:10:00.939Z] "PRECIP": "pr", +[2024-04-03T00:10:00.939Z] } +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here +[2024-04-03T00:10:00.939Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. +[2024-04-03T00:10:00.939Z] data_kwds = { +[2024-04-03T00:10:00.939Z] "ALL": { +[2024-04-03T00:10:00.939Z] "elevation": hru["elevation"], +[2024-04-03T00:10:00.939Z] "latitude": hru["latitude"], +[2024-04-03T00:10:00.939Z] "longitude": hru["longitude"], +[2024-04-03T00:10:00.939Z] } +[2024-04-03T00:10:00.939Z] } +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Give a name to the simulation +[2024-04-03T00:10:00.939Z] run_name = "Paper_example_simulation" +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Setup the gauge object that includes meteorological data from ERA5 +[2024-04-03T00:10:00.939Z] gauge = [ +[2024-04-03T00:10:00.939Z] rc.Gauge.from_nc( +[2024-04-03T00:10:00.939Z] tmp +[2024-04-03T00:10:00.939Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-04-03T00:10:00.939Z] data_type=data_type, # Note that this is the list of all the variables +[2024-04-03T00:10:00.939Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-04-03T00:10:00.939Z] data_kwds=data_kwds, +[2024-04-03T00:10:00.939Z] ) +[2024-04-03T00:10:00.939Z] ] +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Read the streamflow from the HYSETS catchment data for this basin +[2024-04-03T00:10:00.939Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, +[2024-04-03T00:10:00.939Z] # and the optimizer will read it directly to calibrate. +[2024-04-03T00:10:00.939Z] eval_metrics = ("NASH_SUTCLIFFE",) +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] # Build the model configuration according to user preferences and inputs +[2024-04-03T00:10:00.939Z] model_config = GR4JCN( +[2024-04-03T00:10:00.939Z] ObservationData=discharge_data, +[2024-04-03T00:10:00.939Z] Gauge=gauge, +[2024-04-03T00:10:00.939Z] HRUs=[hru], +[2024-04-03T00:10:00.939Z] StartDate=start_date, +[2024-04-03T00:10:00.939Z] EndDate=end_date, +[2024-04-03T00:10:00.939Z] RunName=run_name, +[2024-04-03T00:10:00.939Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. +[2024-04-03T00:10:00.939Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. +[2024-04-03T00:10:00.939Z] ) +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] Traceback: +[2024-04-03T00:10:00.939Z] +[2024-04-03T00:10:00.939Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.939Z] ValueError Traceback (most recent call last) +[2024-04-03T00:10:00.939Z] Cell In[1], line 42 +[2024-04-03T00:10:00.939Z]  38 run_name = "Paper_example_simulation" +[2024-04-03T00:10:00.939Z]  40 # Setup the gauge object that includes meteorological data from ERA5 +[2024-04-03T00:10:00.939Z]  41 gauge = [ +[2024-04-03T00:10:00.939Z] ---> 42 rc.Gauge.from_nc( +[2024-04-03T00:10:00.939Z]  43  tmp +[2024-04-03T00:10:00.939Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-04-03T00:10:00.940Z]  45  data_type=data_type, # Note that this is the list of all the variables +[2024-04-03T00:10:00.940Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-04-03T00:10:00.940Z]  47  data_kwds=data_kwds, +[2024-04-03T00:10:00.940Z]  48  ) +[2024-04-03T00:10:00.940Z]  49 ] +[2024-04-03T00:10:00.940Z]  51 # Read the streamflow from the HYSETS catchment data for this basin +[2024-04-03T00:10:00.940Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-03T00:10:00.940Z]  751 forcings.difference_update(data) +[2024-04-03T00:10:00.940Z]  753 if len(data) == 0: +[2024-04-03T00:10:00.940Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-03T00:10:00.940Z]  756 # Default Gauge name +[2024-04-03T00:10:00.940Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] ValueError: No data found in netCDF files. +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ +[2024-04-03T00:10:00.940Z] Notebook cell execution failed +[2024-04-03T00:10:00.940Z] Cell 16: Cell execution caused an exception +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] Input: +[2024-04-03T00:10:00.940Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, +[2024-04-03T00:10:00.940Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. +[2024-04-03T00:10:00.940Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) +[2024-04-03T00:10:00.940Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. +[2024-04-03T00:10:00.940Z] random_seed = 42 +[2024-04-03T00:10:00.940Z] np.random.seed(random_seed) +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Build the optimizer object +[2024-04-03T00:10:00.940Z] spot_setup = SpotSetup( +[2024-04-03T00:10:00.940Z] config=model_config, +[2024-04-03T00:10:00.940Z] low=low, +[2024-04-03T00:10:00.940Z] high=high, +[2024-04-03T00:10:00.940Z] ) +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-04-03T00:10:00.940Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-04-03T00:10:00.940Z] max_iterations = 200 +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer +[2024-04-03T00:10:00.940Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most +[2024-04-03T00:10:00.940Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation +[2024-04-03T00:10:00.940Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small +[2024-04-03T00:10:00.940Z] # evaluation budgets. For more details on DDS, see: +[2024-04-03T00:10:00.940Z] # +[2024-04-03T00:10:00.940Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water +[2024-04-03T00:10:00.940Z] # Resources Research, 43(1) +[2024-04-03T00:10:00.940Z] sampler = spotpy.algorithms.dds( +[2024-04-03T00:10:00.940Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False +[2024-04-03T00:10:00.940Z] ) +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and +[2024-04-03T00:10:00.940Z] # the best overall value from all trials is returned. +[2024-04-03T00:10:00.940Z] sampler.sample(max_iterations, trials=1) +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Get the model diagnostics +[2024-04-03T00:10:00.940Z] diag = spot_setup.diagnostics +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Get all the values of each iteration +[2024-04-03T00:10:00.940Z] results = sampler.getdata() +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Get the raw resutlts directly in an array +[2024-04-03T00:10:00.940Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( +[2024-04-03T00:10:00.940Z] results +[2024-04-03T00:10:00.940Z] ) # Want to get the MAX NSE (change for min for RMSE) +[2024-04-03T00:10:00.940Z] best_model_run = list( +[2024-04-03T00:10:00.940Z] results[bestindex][0] +[2024-04-03T00:10:00.940Z] ) # Get the parameter set returning the best NSE +[2024-04-03T00:10:00.940Z] optimized_parameters = best_model_run[ +[2024-04-03T00:10:00.940Z] 1:-1 +[2024-04-03T00:10:00.940Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Display the parameter set ready to use in a future run: +[2024-04-03T00:10:00.940Z] print(optimized_parameters) +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] Traceback: +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.940Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.940Z] Cell In[1], line 12 +[2024-04-03T00:10:00.940Z]  8 np.random.seed(random_seed) +[2024-04-03T00:10:00.940Z]  10 # Build the optimizer object +[2024-04-03T00:10:00.940Z]  11 spot_setup = SpotSetup( +[2024-04-03T00:10:00.940Z] ---> 12 config=model_config, +[2024-04-03T00:10:00.940Z]  13 low=low, +[2024-04-03T00:10:00.940Z]  14 high=high, +[2024-04-03T00:10:00.940Z]  15 ) +[2024-04-03T00:10:00.940Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-04-03T00:10:00.940Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-04-03T00:10:00.940Z]  19 max_iterations = 200 +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] NameError: name 'model_config' is not defined +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ +[2024-04-03T00:10:00.940Z] Notebook cell execution failed +[2024-04-03T00:10:00.940Z] Cell 17: Cell execution caused an exception +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] Input: +[2024-04-03T00:10:00.940Z] # Copy the configuration of the previous model that we will modify for our validation: +[2024-04-03T00:10:00.940Z] model_validation = model_config.duplicate( +[2024-04-03T00:10:00.940Z] params=optimized_parameters, +[2024-04-03T00:10:00.940Z] StartDate=dt.datetime(1986, 1, 1), +[2024-04-03T00:10:00.940Z] EndDate=dt.datetime(1990, 12, 31), +[2024-04-03T00:10:00.940Z] SuppressOutput=False, +[2024-04-03T00:10:00.940Z] ) +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] sim_output = Emulator(config=model_validation).run() +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Get validation NSE (note we are counting the first year without warm-up) +[2024-04-03T00:10:00.940Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.940Z] # Plot the model output +[2024-04-03T00:10:00.940Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") +[2024-04-03T00:10:00.940Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-04-03T00:10:00.940Z] plt.legend() +[2024-04-03T00:10:00.940Z] plt.title("Validation period - NSE=" + str(NSE[0])) +[2024-04-03T00:10:00.940Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-03T00:10:00.940Z] plt.grid() +[2024-04-03T00:10:00.940Z] plt.show() +[2024-04-03T00:10:00.940Z] +[2024-04-03T00:10:00.941Z] Traceback: +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.941Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.941Z] Cell In[1], line 2 +[2024-04-03T00:10:00.941Z]  1 # Copy the configuration of the previous model that we will modify for our validation: +[2024-04-03T00:10:00.941Z] ----> 2 model_validation = model_config.duplicate( +[2024-04-03T00:10:00.941Z]  3 params=optimized_parameters, +[2024-04-03T00:10:00.941Z]  4 StartDate=dt.datetime(1986, 1, 1), +[2024-04-03T00:10:00.941Z]  5 EndDate=dt.datetime(1990, 12, 31), +[2024-04-03T00:10:00.941Z]  6 SuppressOutput=False, +[2024-04-03T00:10:00.941Z]  7 ) +[2024-04-03T00:10:00.941Z]  9 sim_output = Emulator(config=model_validation).run() +[2024-04-03T00:10:00.941Z]  11 # Get validation NSE (note we are counting the first year without warm-up) +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] NameError: name 'model_config' is not defined +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ +[2024-04-03T00:10:00.941Z] Notebook cell execution failed +[2024-04-03T00:10:00.941Z] Cell 18: Cell execution caused an exception +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] Input: +[2024-04-03T00:10:00.941Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-04-03T00:10:00.941Z] gauge_ref = [ +[2024-04-03T00:10:00.941Z] rc.Gauge.from_nc( +[2024-04-03T00:10:00.941Z] tmp +[2024-04-03T00:10:00.941Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-03T00:10:00.941Z] data_type=data_type, +[2024-04-03T00:10:00.941Z] alt_names=alt_names, +[2024-04-03T00:10:00.941Z] data_kwds=data_kwds, +[2024-04-03T00:10:00.941Z] ) +[2024-04-03T00:10:00.941Z] ] +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-03T00:10:00.941Z] model_config_reference = model_validation.duplicate( +[2024-04-03T00:10:00.941Z] Gauge=gauge_ref, +[2024-04-03T00:10:00.941Z] StartDate=reference_start_day +[2024-04-03T00:10:00.941Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-04-03T00:10:00.941Z] EndDate=reference_end_day, +[2024-04-03T00:10:00.941Z] ) +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] # Run the model from the configuration and get the outputs. +[2024-04-03T00:10:00.941Z] ref_output = Emulator(config=model_config_reference).run() +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] # Plot the model output. Note that both simulations should have similar hydrological +[2024-04-03T00:10:00.941Z] # regime but day-to-day variability is not expected to match. +[2024-04-03T00:10:00.941Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") +[2024-04-03T00:10:00.941Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-04-03T00:10:00.941Z] plt.legend() +[2024-04-03T00:10:00.941Z] plt.title("Reference period") +[2024-04-03T00:10:00.941Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-03T00:10:00.941Z] plt.grid() +[2024-04-03T00:10:00.941Z] plt.show() +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] Traceback: +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.941Z] ValueError Traceback (most recent call last) +[2024-04-03T00:10:00.941Z] Cell In[1], line 3 +[2024-04-03T00:10:00.941Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-04-03T00:10:00.941Z]  2 gauge_ref = [ +[2024-04-03T00:10:00.941Z] ----> 3 rc.Gauge.from_nc( +[2024-04-03T00:10:00.941Z]  4  tmp +[2024-04-03T00:10:00.941Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-03T00:10:00.941Z]  6  data_type=data_type, +[2024-04-03T00:10:00.941Z]  7  alt_names=alt_names, +[2024-04-03T00:10:00.941Z]  8  data_kwds=data_kwds, +[2024-04-03T00:10:00.941Z]  9  ) +[2024-04-03T00:10:00.941Z]  10 ] +[2024-04-03T00:10:00.941Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-03T00:10:00.941Z]  13 model_config_reference = model_validation.duplicate( +[2024-04-03T00:10:00.941Z]  14 Gauge=gauge_ref, +[2024-04-03T00:10:00.941Z]  15 StartDate=reference_start_day +[2024-04-03T00:10:00.941Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-04-03T00:10:00.941Z]  17 EndDate=reference_end_day, +[2024-04-03T00:10:00.941Z]  18 ) +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-03T00:10:00.941Z]  751 forcings.difference_update(data) +[2024-04-03T00:10:00.941Z]  753 if len(data) == 0: +[2024-04-03T00:10:00.941Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-03T00:10:00.941Z]  756 # Default Gauge name +[2024-04-03T00:10:00.941Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] ValueError: No data found in netCDF files. +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ +[2024-04-03T00:10:00.941Z] Notebook cell execution failed +[2024-04-03T00:10:00.941Z] Cell 19: Cell execution caused an exception +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] Input: +[2024-04-03T00:10:00.941Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-04-03T00:10:00.941Z] gauge_fut = [ +[2024-04-03T00:10:00.941Z] rc.Gauge.from_nc( +[2024-04-03T00:10:00.941Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-03T00:10:00.941Z] data_type=data_type, +[2024-04-03T00:10:00.941Z] alt_names=alt_names, +[2024-04-03T00:10:00.941Z] data_kwds=data_kwds, +[2024-04-03T00:10:00.941Z] ) +[2024-04-03T00:10:00.941Z] ] +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-03T00:10:00.941Z] model_config_future = model_validation.duplicate( +[2024-04-03T00:10:00.941Z] Gauge=gauge_fut, +[2024-04-03T00:10:00.941Z] StartDate=future_start_day + dt.timedelta(days=1), +[2024-04-03T00:10:00.941Z] EndDate=future_end_day, +[2024-04-03T00:10:00.941Z] ObservationData=None, # There are no observations for the future period. +[2024-04-03T00:10:00.941Z] ) +[2024-04-03T00:10:00.941Z] +[2024-04-03T00:10:00.941Z] # Run the model and get the outputs and hydrographs. +[2024-04-03T00:10:00.942Z] fut_output = Emulator(config=model_config_future).run() +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] # Plot the model output +[2024-04-03T00:10:00.942Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") +[2024-04-03T00:10:00.942Z] plt.legend() +[2024-04-03T00:10:00.942Z] plt.title("Future period") +[2024-04-03T00:10:00.942Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-03T00:10:00.942Z] plt.grid() +[2024-04-03T00:10:00.942Z] plt.show() +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] Traceback: +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.942Z] ValueError Traceback (most recent call last) +[2024-04-03T00:10:00.942Z] Cell In[1], line 3 +[2024-04-03T00:10:00.942Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-04-03T00:10:00.942Z]  2 gauge_fut = [ +[2024-04-03T00:10:00.942Z] ----> 3 rc.Gauge.from_nc( +[2024-04-03T00:10:00.942Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-03T00:10:00.942Z]  5  data_type=data_type, +[2024-04-03T00:10:00.942Z]  6  alt_names=alt_names, +[2024-04-03T00:10:00.942Z]  7  data_kwds=data_kwds, +[2024-04-03T00:10:00.942Z]  8  ) +[2024-04-03T00:10:00.942Z]  9 ] +[2024-04-03T00:10:00.942Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-03T00:10:00.942Z]  12 model_config_future = model_validation.duplicate( +[2024-04-03T00:10:00.942Z]  13 Gauge=gauge_fut, +[2024-04-03T00:10:00.942Z]  14 StartDate=future_start_day + dt.timedelta(days=1), +[2024-04-03T00:10:00.942Z]  15 EndDate=future_end_day, +[2024-04-03T00:10:00.942Z]  16 ObservationData=None, # There are no observations for the future period. +[2024-04-03T00:10:00.942Z]  17 ) +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-03T00:10:00.942Z]  751 forcings.difference_update(data) +[2024-04-03T00:10:00.942Z]  753 if len(data) == 0: +[2024-04-03T00:10:00.942Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-03T00:10:00.942Z]  756 # Default Gauge name +[2024-04-03T00:10:00.942Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] ValueError: No data found in netCDF files. +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ +[2024-04-03T00:10:00.942Z] Notebook cell execution failed +[2024-04-03T00:10:00.942Z] Cell 20: Cell execution caused an exception +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] Input: +[2024-04-03T00:10:00.942Z] # Extract the mean annual hydrograph for each simulation. +[2024-04-03T00:10:00.942Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-03T00:10:00.942Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-03T00:10:00.942Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-03T00:10:00.942Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] # Plot the model output +[2024-04-03T00:10:00.942Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") +[2024-04-03T00:10:00.942Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") +[2024-04-03T00:10:00.942Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") +[2024-04-03T00:10:00.942Z] future_flows.plot(color="red", label="Future", x="dayofyear") +[2024-04-03T00:10:00.942Z] plt.legend() +[2024-04-03T00:10:00.942Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-03T00:10:00.942Z] plt.xlabel("Day of year") +[2024-04-03T00:10:00.942Z] plt.xlim([0, 365]) +[2024-04-03T00:10:00.942Z] plt.title("Comparison of mean annual hydrographs") +[2024-04-03T00:10:00.942Z] plt.grid() +[2024-04-03T00:10:00.942Z] plt.show() +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] Traceback: +[2024-04-03T00:10:00.942Z] +[2024-04-03T00:10:00.942Z] --------------------------------------------------------------------------- +[2024-04-03T00:10:00.942Z] NameError Traceback (most recent call last) +[2024-04-03T00:10:00.942Z] Cell In[1], line 2 +[2024-04-03T00:10:00.942Z]  1 # Extract the mean annual hydrograph for each simulation. +[2024-04-03T00:10:00.942Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-03T00:10:00.943Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-03T00:10:00.943Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-03T00:10:00.943Z] +[2024-04-03T00:10:00.943Z] NameError: name 'ref_output' is not defined +[2024-04-03T00:10:00.943Z] +[2024-04-03T00:10:00.943Z] =========================== short test summary info ============================ +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 +[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 +[2024-04-03T00:10:00.943Z] ================== 27 failed, 215 passed in 933.60s (0:15:33) ================== +[2024-04-03T00:10:00.943Z] + EXIT_CODE=1 +[2024-04-03T00:10:00.943Z] + echo true +[2024-04-03T00:10:00.943Z] + tr [:upper:] [:lower:] +[2024-04-03T00:10:00.943Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-04-03T00:10:00.943Z] + [ xtrue = xtrue ] +[2024-04-03T00:10:00.943Z] + mkdir -p buildout +[2024-04-03T00:10:00.943Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-04-03T00:10:00.943Z] + filename=Region_selection.ipynb +[2024-04-03T00:10:00.943Z] + echo Region_selection.ipynb +[2024-04-03T00:10:00.943Z] + sed s/.ipynb$// +[2024-04-03T00:10:00.943Z] + filename=Region_selection +[2024-04-03T00:10:00.943Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-04-03T00:10:00.943Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-04-03T00:10:00.943Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-04-03T00:10:13.210Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb +[2024-04-03T00:10:13.210Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-04-03T00:10:13.210Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-04-03T00:10:13.210Z] + + echo Subset_climate_data_over_watershed.ipynb +[2024-04-03T00:10:13.210Z] sed s/.ipynb$// +[2024-04-03T00:10:13.210Z] + filename=Subset_climate_data_over_watershed +[2024-04-03T00:10:13.210Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-04-03T00:10:13.210Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-04-03T00:10:13.210Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-04-03T00:10:28.104Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-04-03T00:10:28.104Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-04-03T00:10:28.104Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-04-03T00:10:28.104Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-04-03T00:10:28.104Z] + sed s/.ipynb$// +[2024-04-03T00:10:28.104Z] + filename=00_Introduction_to_JupyterLab +[2024-04-03T00:10:28.104Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-04-03T00:10:28.104Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-04-03T00:10:29.489Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-04-03T00:10:32.026Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-04-03T00:10:32.286Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-04-03T00:10:32.286Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-04-03T00:10:32.286Z] + sed s/.ipynb$// +[2024-04-03T00:10:32.286Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-04-03T00:10:32.286Z] + filename=01_Getting_watershed_boundaries +[2024-04-03T00:10:32.286Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-04-03T00:10:32.286Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-04-03T00:10:34.190Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-04-03T00:10:46.398Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-04-03T00:10:46.398Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-04-03T00:10:46.398Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-04-03T00:10:46.398Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-04-03T00:10:46.398Z] + sed s/.ipynb$// +[2024-04-03T00:10:46.398Z] + filename=02_Extract_geographical_watershed_properties +[2024-04-03T00:10:46.398Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-04-03T00:10:46.398Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-04-03T00:10:46.398Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-04-03T00:11:01.298Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-04-03T00:11:01.298Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-04-03T00:11:01.298Z] + filename=03_Extracting_forcing_data.ipynb +[2024-04-03T00:11:01.298Z] + sed s/.ipynb$// +[2024-04-03T00:11:01.298Z] + echo 03_Extracting_forcing_data.ipynb +[2024-04-03T00:11:01.298Z] + filename=03_Extracting_forcing_data +[2024-04-03T00:11:01.298Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-04-03T00:11:01.298Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-04-03T00:11:02.674Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-04-03T00:12:54.119Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-04-03T00:12:54.119Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-04-03T00:12:54.119Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-04-03T00:12:54.119Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-04-03T00:12:54.119Z] + sed s/.ipynb$// +[2024-04-03T00:12:54.119Z] + filename=04_Emulating_hydrological_models +[2024-04-03T00:12:54.119Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-04-03T00:12:54.119Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-04-03T00:12:54.119Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-04-03T00:13:04.442Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-04-03T00:13:04.442Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-04-03T00:13:04.442Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-04-03T00:13:04.442Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-04-03T00:13:04.442Z] + sed s/.ipynb$// +[2024-04-03T00:13:04.442Z] + filename=05_Advanced_RavenPy_configuration +[2024-04-03T00:13:04.442Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-04-03T00:13:04.442Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-04-03T00:13:05.044Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-04-03T00:13:26.996Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-04-03T00:13:26.996Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-04-03T00:13:26.996Z] + filename=06_Raven_calibration.ipynb +[2024-04-03T00:13:26.996Z] + echo 06_Raven_calibration.ipynb +[2024-04-03T00:13:26.996Z] + sed s/.ipynb$// +[2024-04-03T00:13:26.996Z] + filename=06_Raven_calibration +[2024-04-03T00:13:26.996Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-04-03T00:13:26.996Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-04-03T00:13:26.996Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-04-03T00:13:41.964Z] [NbConvertApp] Writing 24180 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-04-03T00:13:41.964Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-04-03T00:13:41.964Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-04-03T00:13:41.964Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-04-03T00:13:41.964Z] + sed s/.ipynb$// +[2024-04-03T00:13:41.964Z] + filename=07_Making_and_using_hotstart_files +[2024-04-03T00:13:41.964Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-04-03T00:13:41.964Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-04-03T00:13:42.257Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-04-03T00:13:57.142Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-04-03T00:13:57.142Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-03T00:13:57.142Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-03T00:13:57.142Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-03T00:13:57.142Z] + sed s/.ipynb$// +[2024-04-03T00:13:57.142Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-04-03T00:13:57.142Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-04-03T00:13:57.142Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-03T00:13:57.398Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-04-03T00:18:18.999Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-04-03T00:18:18.999Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-03T00:18:18.999Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-03T00:18:18.999Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-03T00:18:18.999Z] + sed s/.ipynb$// +[2024-04-03T00:18:18.999Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-04-03T00:18:18.999Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-04-03T00:18:18.999Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-03T00:18:18.999Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-04-03T00:18:23.259Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-04-03T00:18:23.259Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-04-03T00:18:23.259Z] + filename=10_Data_assimilation.ipynb +[2024-04-03T00:18:23.259Z] + echo 10_Data_assimilation.ipynb +[2024-04-03T00:18:23.259Z] + sed s/.ipynb$// +[2024-04-03T00:18:23.259Z] + filename=10_Data_assimilation +[2024-04-03T00:18:23.259Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-04-03T00:18:23.260Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-04-03T00:18:24.633Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-04-03T00:19:46.077Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-04-03T00:19:46.077Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-04-03T00:19:46.077Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-04-03T00:19:46.077Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-04-03T00:19:46.077Z] + sed s/.ipynb$// +[2024-04-03T00:19:46.077Z] + filename=11_Climatological_ESP_forecasting +[2024-04-03T00:19:46.077Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-04-03T00:19:46.077Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-04-03T00:19:46.350Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-04-03T00:20:33.149Z] [NbConvertApp] Writing 556869 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-04-03T00:20:33.149Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-04-03T00:20:33.149Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-04-03T00:20:33.149Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-04-03T00:20:33.149Z] + sed s/.ipynb$// +[2024-04-03T00:20:33.149Z] + filename=12_Performing_hindcasting_experiments +[2024-04-03T00:20:33.149Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-04-03T00:20:33.149Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-04-03T00:20:34.097Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-04-03T00:20:56.053Z] [NbConvertApp] Writing 298402 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-04-03T00:20:56.053Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-04-03T00:20:56.053Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-04-03T00:20:56.053Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-04-03T00:20:56.053Z] + sed s/.ipynb$// +[2024-04-03T00:20:56.053Z] + filename=Assess_probabilistic_flood_risk +[2024-04-03T00:20:56.053Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-04-03T00:20:56.053Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-04-03T00:20:56.312Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-04-03T00:21:28.405Z] [NbConvertApp] Writing 549860 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-04-03T00:21:28.405Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-03T00:21:28.405Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-03T00:21:28.405Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-03T00:21:28.405Z] + sed s/.ipynb$// +[2024-04-03T00:21:28.405Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-04-03T00:21:28.405Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-04-03T00:21:28.405Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-03T00:21:30.313Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-04-03T00:22:09.042Z] [NbConvertApp] Writing 748279 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-04-03T00:22:09.042Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-04-03T00:22:09.042Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-04-03T00:22:09.042Z] + echo Distributed_hydrological_modelling.ipynb +[2024-04-03T00:22:09.042Z] + sed s/.ipynb$// +[2024-04-03T00:22:09.042Z] + filename=Distributed_hydrological_modelling +[2024-04-03T00:22:09.042Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-04-03T00:22:09.042Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-04-03T00:22:09.043Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-04-03T00:22:41.106Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-04-03T00:22:41.106Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-04-03T00:22:41.106Z] + filename=HydroShare_integration.ipynb +[2024-04-03T00:22:41.106Z] + echo HydroShare_integration.ipynb +[2024-04-03T00:22:41.106Z] + sed s/.ipynb$// +[2024-04-03T00:22:41.106Z] + filename=HydroShare_integration +[2024-04-03T00:22:41.106Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-04-03T00:22:41.106Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-04-03T00:22:42.037Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-04-03T00:22:47.316Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb +[2024-04-03T00:22:47.316Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-04-03T00:22:47.316Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-04-03T00:22:47.316Z] + + sed s/.ipynb$// +[2024-04-03T00:22:47.316Z] echo Hydrological_realtime_forecasting.ipynb +[2024-04-03T00:22:47.316Z] + filename=Hydrological_realtime_forecasting +[2024-04-03T00:22:47.316Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-04-03T00:22:47.317Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-04-03T00:22:48.263Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-04-03T00:23:10.323Z] [NbConvertApp] Writing 281472 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-04-03T00:23:10.323Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-04-03T00:23:10.323Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-04-03T00:23:10.323Z] + + sed s/.ipynb$// +[2024-04-03T00:23:10.323Z] echo Managing_Jupyter_Environments.ipynb +[2024-04-03T00:23:10.323Z] + filename=Managing_Jupyter_Environments +[2024-04-03T00:23:10.323Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-04-03T00:23:10.323Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-04-03T00:23:10.581Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-04-03T00:23:20.551Z] [NbConvertApp] Writing 8679 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-04-03T00:23:20.551Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-04-03T00:23:20.551Z] + filename=Perform_Regionalization.ipynb +[2024-04-03T00:23:20.551Z] + echo Perform_Regionalization.ipynb +[2024-04-03T00:23:20.551Z] + sed s/.ipynb$// +[2024-04-03T00:23:20.551Z] + filename=Perform_Regionalization +[2024-04-03T00:23:20.551Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-04-03T00:23:20.551Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-04-03T00:23:22.456Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-04-03T00:23:49.018Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-04-03T00:23:49.018Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-03T00:23:49.018Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-03T00:23:49.018Z] + + echo Running_HMETS_with_CANOPEX_dataset.ipynbsed +[2024-04-03T00:23:49.018Z] s/.ipynb$// +[2024-04-03T00:23:49.018Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-04-03T00:23:49.018Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-04-03T00:23:49.018Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-03T00:23:50.414Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-04-03T00:24:08.512Z] [NbConvertApp] Writing 109349 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-04-03T00:24:08.512Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-04-03T00:24:08.512Z] + filename=Sensitivity_analysis.ipynb +[2024-04-03T00:24:08.512Z] + echo Sensitivity_analysis.ipynb +[2024-04-03T00:24:08.512Z] + sed s/.ipynb$// +[2024-04-03T00:24:08.512Z] + filename=Sensitivity_analysis +[2024-04-03T00:24:08.512Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-04-03T00:24:08.512Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-04-03T00:24:09.456Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-04-03T00:24:31.370Z] [NbConvertApp] Writing 35348 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-04-03T00:24:31.370Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-04-03T00:24:31.370Z] + filename=time_series_analysis.ipynb +[2024-04-03T00:24:31.370Z] + echo time_series_analysis.ipynb +[2024-04-03T00:24:31.370Z] + sed s/.ipynb$// +[2024-04-03T00:24:31.370Z] + filename=time_series_analysis +[2024-04-03T00:24:31.370Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-04-03T00:24:31.370Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-04-03T00:24:31.370Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-04-03T00:24:41.352Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb +[2024-04-03T00:24:41.352Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-03T00:24:41.352Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-03T00:24:41.352Z] + sed s/.ipynb$// +[2024-04-03T00:24:41.352Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-03T00:24:41.352Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-04-03T00:24:41.352Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-04-03T00:24:41.352Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-03T00:24:42.297Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-04-03T00:26:18.809Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-04-03T00:26:18.809Z] + exit 1 +[2024-04-03T00:26:18.810Z] + EXIT_CODE=1 +[2024-04-03T00:26:18.810Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-04-03T00:26:18.810Z] + mkdir -p buildout/env-dump +[2024-04-03T00:26:18.810Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-04-03T00:26:18.810Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-04-03T00:26:18.810Z] + conda env export -n birdy +[2024-04-03T00:26:36.886Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-03T00:26:36.886Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-03T00:26:36.886Z] + conda list -n birdy --explicit +[2024-04-03T00:26:44.994Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-03T00:26:44.994Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-03T00:26:44.994Z] + pip freeze +[2024-04-03T00:26:44.994Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -2018,41 +2018,41 @@ $ docker top df2b6968856f2a6f247b677066bb5c2d2a1f0388cec1053c5e1f361206911ba4 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-03-23T18:48:18.155Z] Archiving artifacts -[2024-03-23T18:48:18.688Z] Recording fingerprints +[2024-04-03T00:26:47.750Z] Archiving artifacts +[2024-04-03T00:26:47.853Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:18.713Z] Archiving artifacts -[2024-03-23T18:48:20.923Z] Recording fingerprints +[2024-04-03T00:26:47.965Z] Archiving artifacts +[2024-04-03T00:26:50.113Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:21.242Z] Archiving artifacts -[2024-03-23T18:48:21.269Z] Recording fingerprints +[2024-04-03T00:26:50.989Z] Archiving artifacts +[2024-04-03T00:26:51.005Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:21.332Z] Archiving artifacts -[2024-03-23T18:48:21.402Z] Recording fingerprints +[2024-04-03T00:26:51.509Z] Archiving artifacts +[2024-04-03T00:26:51.535Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:21.462Z] Archiving artifacts -[2024-03-23T18:48:21.483Z] Recording fingerprints +[2024-04-03T00:26:51.971Z] Archiving artifacts +[2024-04-03T00:26:51.996Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:21.516Z] Archiving artifacts -[2024-03-23T18:48:21.555Z] Recording fingerprints +[2024-04-03T00:26:52.282Z] Archiving artifacts +[2024-04-03T00:26:52.320Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:21.697Z] Archiving artifacts -[2024-03-23T18:48:21.713Z] Recording fingerprints +[2024-04-03T00:26:54.447Z] Archiving artifacts +[2024-04-03T00:26:54.462Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:21.744Z] Archiving artifacts -[2024-03-23T18:48:21.786Z] Recording fingerprints +[2024-04-03T00:26:54.718Z] Archiving artifacts +[2024-04-03T00:26:54.759Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:21.857Z] Archiving artifacts -[2024-03-23T18:48:22.278Z] Recording fingerprints +[2024-04-03T00:26:55.153Z] Archiving artifacts +[2024-04-03T00:26:55.555Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:22.431Z] Archiving artifacts -[2024-03-23T18:48:22.778Z] Recording fingerprints +[2024-04-03T00:26:55.981Z] Archiving artifacts +[2024-04-03T00:26:56.420Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-03-23T18:48:23.119Z] Archiving artifacts -[2024-03-23T18:48:23.158Z] Recording fingerprints +[2024-04-03T00:26:59.234Z] Archiving artifacts +[2024-04-03T00:26:59.249Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-03-23T18:48:23.217Z] Sending e-mails to: vu.long@ouranos.ca +[2024-04-03T00:27:00.176Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -2062,8 +2062,8 @@ $ docker top df2b6968856f2a6f247b677066bb5c2d2a1f0388cec1053c5e1f361206911ba4 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 df2b6968856f2a6f247b677066bb5c2d2a1f0388cec1053c5e1f361206911ba4 -$ docker rm -f df2b6968856f2a6f247b677066bb5c2d2a1f0388cec1053c5e1f361206911ba4 +$ docker stop --time=1 9c8a3357bc15ed4ff2a5faf012a247ff2e4ecf5c42b9b2d708a1e060347bede9 +$ docker rm -f 9c8a3357bc15ed4ff2a5faf012a247ff2e4ecf5c42b9b2d708a1e060347bede9 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 7ef44f7514c7a7d3bd13f2ce577795ede1094e75 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 4 Apr 2024 23:15:38 -0400 Subject: [PATCH 058/104] Revert "docker: remove extra package and build step needed for jupyter-dash" This reverts commit 6dd64ec9bc6b69b770061cff543f6a6f8bc426ef. Have this warning when login into JupyterLab and the build failed: ``` Build Recommended JupyterLab build is suggested: @plotly/dash-jupyterlab needs to be included in build ``` --- docker/Dockerfile | 9 +++++++++ docker/environment.yml | 5 +++++ 2 files changed, 14 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 566b8ec..77ef985 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -61,6 +61,15 @@ RUN python -m ipykernel install --name birdy # environment.yml above # RUN mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy nbdime +# build jupyterlab extensions installed by conda, see `jupyter labextension list` +# Supposedly not needed with jupyterlab v3 anymore but see +# https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998901247 +# TODO: remove 'jupyter lab build' step once all extensions move to prebuilt extensions, +# see comment https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998917305 +# Currently jupyter-dash is holding back this step, see +# https://github.com/plotly/jupyter-dash/issues/49 +RUN jupyter lab build + RUN jupyter serverextension enable voila --sys-prefix \ && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix \ && jupyter serverextension list diff --git a/docker/environment.yml b/docker/environment.yml index b59a0a0..15c527b 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -190,6 +190,11 @@ dependencies: # https://github.com/holoviz/jupyter-panel-proxy # DISABLE: seems to interfere with 'panel serve' command #- jupyter-panel-proxy >= 0.2.0a2 + # Force newer nodejs for 'jupyter lab build' issue + # https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998901247 + # TODO: remove nodejs once all extensions move to prebuilt extensions, see comment + # https://github.com/jupyterlab/jupyterlab/issues/11726#issuecomment-998917305 + - nodejs >= 16.0 # utilities - curl - wget From 216b16e9329a254e7e2e14ebf72437f7abcf3e06 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 4 Apr 2024 23:28:46 -0400 Subject: [PATCH 059/104] release: update to use image pavics/workflow-tests:py310-240404 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3d17d45..07cbf6f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-240402" + image "pavics/workflow-tests:py310-240404" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index f891c71..29b46df 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-240402 +FROM pavics/workflow-tests:py310-240404 USER root diff --git a/launchcontainer b/launchcontainer index f521862..975bea3 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240402" + DOCKER_IMAGE="pavics/workflow-tests:py310-240404" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 5bc6a82..8d07b06 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240402" + DOCKER_IMAGE="pavics/workflow-tests:py310-240404" fi if [ -z "$CONTAINER_NAME" ]; then From b014ee9dc13ebf22e61f0ad98ee175d88ba050f4 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 11 Apr 2024 12:04:48 -0400 Subject: [PATCH 060/104] docker: py310-240404: build log --- docker/saved_buildout/docker-buildlogs.txt | 12098 +++++++++---------- 1 file changed, 6045 insertions(+), 6053 deletions(-) diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index 6f9d68f..cac78f9 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,6053 +1,6045 @@ -2024-04-02T20:53:45Z Building in Docker Cloud's infrastructure... -2024-04-02T20:53:45Z Cloning into '.'... -2024-04-02T20:53:46Z Warning: Permanently added the RSA host key for IP address '140.82.113.3' to the list of known hosts. -2024-04-02T20:53:48Z Switched to a new branch 'docker-py310-240402' -2024-04-02T20:53:48Z KernelVersion: 5.4.0-1068-aws -2024-04-02T20:53:48Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-04-02T20:53:48Z Arch: amd64 -2024-04-02T20:53:48Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-04-02T20:53:48Z ApiVersion: 1.41 -2024-04-02T20:53:48Z Platform: {u'Name': u'Docker Engine - Community'} -2024-04-02T20:53:48Z Version: 20.10.15 -2024-04-02T20:53:48Z MinAPIVersion: 1.12 -2024-04-02T20:53:48Z GitCommit: 4433bf6 -2024-04-02T20:53:48Z Os: linux -2024-04-02T20:53:48Z GoVersion: go1.17.9 -2024-04-02T20:53:48Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240402... -2024-04-02T20:53:53Z #1 [internal] load build definition from Dockerfile -2024-04-02T20:53:53Z #1 transferring dockerfile: 6.46kB done -2024-04-02T20:53:53Z #1 DONE 0.1s -2024-04-02T20:53:53Z -2024-04-02T20:53:53Z #2 [internal] load .dockerignore -2024-04-02T20:53:53Z #2 transferring context: 2B done -2024-04-02T20:53:53Z #2 DONE 0.1s -2024-04-02T20:53:54Z -2024-04-02T20:53:54Z #3 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-04-02T20:53:54Z #3 DONE 0.0s -2024-04-02T20:53:54Z -2024-04-02T20:53:54Z #4 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-04-02T20:53:54Z #4 DONE 0.6s -2024-04-02T20:53:54Z -2024-04-02T20:53:54Z #5 [1/9] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-02T20:53:54Z #5 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done -2024-04-02T20:53:54Z #5 ... -2024-04-02T20:53:54Z -2024-04-02T20:53:54Z #6 [internal] load build context -2024-04-02T20:53:54Z #6 transferring context: 9.26kB done -2024-04-02T20:53:54Z #6 DONE 0.0s -2024-04-02T20:53:54Z -2024-04-02T20:53:54Z #5 [1/9] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-02T20:53:54Z #5 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done -2024-04-02T20:53:54Z #5 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done -2024-04-02T20:53:54Z #5 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done -2024-04-02T20:53:54Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 4.19MB / 50.08MB 0.1s -2024-04-02T20:53:54Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 12.58MB / 50.08MB 0.3s -2024-04-02T20:53:54Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.49MB / 147.31MB 0.3s -2024-04-02T20:53:54Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 7.34MB / 31.42MB 0.3s -2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 9.44MB / 31.42MB 0.4s -2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 17.22MB / 50.08MB 0.5s -2024-04-02T20:53:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 19.92MB / 147.31MB 0.5s -2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 18.87MB / 31.42MB 0.5s -2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 25.20MB / 50.08MB 0.7s -2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 27.26MB / 31.42MB 0.7s -2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 30.41MB / 50.08MB 0.8s -2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 29.36MB / 31.42MB 0.8s -2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 34.60MB / 50.08MB 0.9s -2024-04-02T20:53:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 30.41MB / 147.31MB 0.9s -2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 0.9s -2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 40.44MB / 50.08MB 1.0s -2024-04-02T20:53:55Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 48.23MB / 50.08MB 1.2s -2024-04-02T20:53:55Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 50.33MB / 147.31MB 1.2s -2024-04-02T20:53:55Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.3s done -2024-04-02T20:53:56Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 60.07MB / 147.31MB 1.4s -2024-04-02T20:53:56Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 -2024-04-02T20:53:56Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.5s done -2024-04-02T20:53:56Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 70.25MB / 147.31MB 1.6s -2024-04-02T20:53:56Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 81.79MB / 147.31MB 2.1s -2024-04-02T20:53:56Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 94.88MB / 147.31MB 2.3s -2024-04-02T20:53:57Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 108.58MB / 147.31MB 2.7s -2024-04-02T20:53:57Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 117.44MB / 147.31MB 3.2s -2024-04-02T20:53:58Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 126.88MB / 147.31MB 3.7s -2024-04-02T20:53:58Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 135.27MB / 147.31MB 3.9s -2024-04-02T20:53:58Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 4.1s -2024-04-02T20:53:59Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 5.1s done -2024-04-02T20:54:01Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.1s done -2024-04-02T20:54:01Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 -2024-04-02T20:54:06Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.0s -2024-04-02T20:54:07Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.2s done -2024-04-02T20:54:08Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0.1s -2024-04-02T20:54:13Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.1s -2024-04-02T20:54:18Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.2s -2024-04-02T20:54:22Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.3s done -2024-04-02T20:54:22Z #5 DONE 28.3s -2024-04-02T20:54:23Z -2024-04-02T20:54:23Z #7 [2/9] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-04-02T20:54:24Z #7 1.545 Channels: -2024-04-02T20:54:24Z #7 1.545 - defaults -2024-04-02T20:54:24Z #7 1.545 Platform: linux-64 -2024-04-02T20:54:28Z #7 1.545 Collecting package metadata (repodata.json): ...working... done -2024-04-02T20:54:29Z #7 5.792 Solving environment: ...working... done -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 ## Package Plan ## -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 environment location: /opt/conda -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 added / updated specs: -2024-04-02T20:54:29Z #7 6.103 - conda -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 The following packages will be downloaded: -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 package | build -2024-04-02T20:54:29Z #7 6.103 ---------------------------|----------------- -2024-04-02T20:54:29Z #7 6.103 archspec-0.2.3 | pyhd3eb1b0_0 47 KB -2024-04-02T20:54:29Z #7 6.103 ca-certificates-2024.3.11 | h06a4308_0 127 KB -2024-04-02T20:54:29Z #7 6.103 conda-24.3.0 | py311h06a4308_0 1.2 MB -2024-04-02T20:54:29Z #7 6.103 ------------------------------------------------------------ -2024-04-02T20:54:29Z #7 6.103 Total: 1.4 MB -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 The following packages will be UPDATED: -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 archspec 0.2.1-pyhd3eb1b0_0 --> 0.2.3-pyhd3eb1b0_0 -2024-04-02T20:54:29Z #7 6.103 ca-certificates 2023.12.12-h06a4308_0 --> 2024.3.11-h06a4308_0 -2024-04-02T20:54:29Z #7 6.103 conda 24.1.2-py311h06a4308_0 --> 24.3.0-py311h06a4308_0 -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 -2024-04-02T20:54:29Z #7 6.103 Proceed ([y]/n)? -2024-04-02T20:54:29Z #7 6.614 -2024-04-02T20:54:29Z #7 6.614 Downloading and Extracting Packages: ...working... done -2024-04-02T20:54:29Z #7 6.614 Preparing transaction: ...working... done -2024-04-02T20:54:29Z #7 6.675 Verifying transaction: ...working... done -2024-04-02T20:54:35Z #7 6.801 Executing transaction: ...working... done -2024-04-02T20:54:37Z #7 14.06 Channels: -2024-04-02T20:54:37Z #7 14.06 - conda-forge -2024-04-02T20:54:37Z #7 14.06 - defaults -2024-04-02T20:54:37Z #7 14.06 Platform: linux-64 -2024-04-02T20:55:03Z #7 14.06 Collecting package metadata (repodata.json): ...working... done -2024-04-02T20:55:05Z #7 40.63 Solving environment: ...working... done -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 ## Package Plan ## -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 environment location: /opt/conda -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 added / updated specs: -2024-04-02T20:55:05Z #7 42.73 - conda-pack -2024-04-02T20:55:05Z #7 42.73 - mamba -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 The following packages will be downloaded: -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 package | build -2024-04-02T20:55:05Z #7 42.73 ---------------------------|----------------- -2024-04-02T20:55:05Z #7 42.73 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 c-ares-1.28.1 | hd590300_0 165 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 conda-24.3.0 | py311h38be061_0 1.2 MB conda-forge -2024-04-02T20:55:05Z #7 42.73 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-04-02T20:55:05Z #7 42.73 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge -2024-04-02T20:55:05Z #7 42.73 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 libcurl-8.7.1 | hca28451_0 389 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge -2024-04-02T20:55:05Z #7 42.73 libmambapy-1.5.8 | py311hf2555c7_0 304 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 libssh2-1.11.0 | h0841786_0 265 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge -2024-04-02T20:55:05Z #7 42.73 libxml2-2.12.6 | h232c23b_1 689 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 lzo-2.10 | h516909a_1000 314 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 mamba-1.5.8 | py311h3072747_0 65 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge -2024-04-02T20:55:05Z #7 42.73 python_abi-3.11 | 2_cp311 5 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-04-02T20:55:05Z #7 42.73 ------------------------------------------------------------ -2024-04-02T20:55:05Z #7 42.73 Total: 28.0 MB -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 The following NEW packages will be INSTALLED: -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 -2024-04-02T20:55:05Z #7 42.73 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 -2024-04-02T20:55:05Z #7 42.73 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-04-02T20:55:05Z #7 42.73 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-04-02T20:55:05Z #7 42.73 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 -2024-04-02T20:55:05Z #7 42.73 mamba conda-forge/linux-64::mamba-1.5.8-py311h3072747_0 -2024-04-02T20:55:05Z #7 42.73 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 The following packages will be UPDATED: -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 -2024-04-02T20:55:05Z #7 42.73 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-04-02T20:55:05Z #7 42.73 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-04-02T20:55:05Z #7 42.73 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 -2024-04-02T20:55:05Z #7 42.73 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-04-02T20:55:05Z #7 42.73 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 -2024-04-02T20:55:05Z #7 42.73 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 -2024-04-02T20:55:05Z #7 42.73 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 -2024-04-02T20:55:05Z #7 42.73 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.8-had39da4_0 -2024-04-02T20:55:05Z #7 42.73 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.8-py311hf2555c7_0 -2024-04-02T20:55:05Z #7 42.73 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 -2024-04-02T20:55:05Z #7 42.73 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 -2024-04-02T20:55:05Z #7 42.73 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 -2024-04-02T20:55:05Z #7 42.73 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_1 -2024-04-02T20:55:05Z #7 42.73 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 -2024-04-02T20:55:05Z #7 42.73 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 The following packages will be SUPERSEDED by a higher-priority channel: -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-04-02T20:55:05Z #7 42.73 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-04-02T20:55:05Z #7 42.73 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-04-02T20:55:05Z #7 42.73 conda pkgs/main::conda-24.3.0-py311h06a4308~ --> conda-forge::conda-24.3.0-py311h38be061_0 -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 -2024-04-02T20:55:05Z #7 42.73 Proceed ([y]/n)? -2024-04-02T20:55:08Z #7 45.36 -2024-04-02T20:55:08Z #7 45.36 Downloading and Extracting Packages: ...working... done -2024-04-02T20:55:08Z #7 45.36 Preparing transaction: ...working... done -2024-04-02T20:55:08Z #7 45.51 Verifying transaction: ...working... done -2024-04-02T20:55:19Z #7 46.03 Executing transaction: ...working... done -2024-04-02T20:55:20Z #7 57.76 Will remove 30 (29.4 MB) tarball(s). -2024-04-02T20:55:20Z #7 57.76 Will remove 1 index cache(s). -2024-04-02T20:55:20Z #7 57.76 Will remove 4 (5.0 MB) package(s). -2024-04-02T20:55:20Z #7 57.76 There are no tempfile(s) to remove. -2024-04-02T20:55:20Z #7 57.76 There are no logfile(s) to remove. -2024-04-02T20:55:22Z #7 59.11 bin/micromamba -2024-04-02T20:55:24Z #7 DONE 61.5s -2024-04-02T20:55:24Z -2024-04-02T20:55:24Z #8 [3/9] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-04-02T20:55:24Z #8 0.542 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-04-02T20:55:24Z #8 0.561 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-04-02T20:55:25Z #8 0.561 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-04-02T20:55:25Z #8 0.703 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-04-02T20:55:25Z #8 1.144 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [270 kB] -2024-04-02T20:55:26Z #8 1.780 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-04-02T20:55:27Z #8 2.855 Fetched 8565 kB in 2s (3688 kB/s) -2024-04-02T20:55:28Z #8 2.855 Reading package lists... -2024-04-02T20:55:29Z #8 3.807 Reading package lists... -2024-04-02T20:55:29Z #8 4.748 Building dependency tree... -2024-04-02T20:55:29Z #8 4.982 Reading state information... -2024-04-02T20:55:29Z #8 5.314 git is already the newest version (1:2.30.2-1+deb11u2). -2024-04-02T20:55:29Z #8 5.314 mercurial is already the newest version (5.6.1-4). -2024-04-02T20:55:29Z #8 5.314 The following additional packages will be installed: -2024-04-02T20:55:29Z #8 5.314 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-02T20:55:29Z #8 5.314 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-02T20:55:29Z #8 5.314 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-04-02T20:55:29Z #8 5.314 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-04-02T20:55:29Z #8 5.314 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-04-02T20:55:29Z #8 5.315 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-04-02T20:55:29Z #8 5.315 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-04-02T20:55:29Z #8 5.315 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-02T20:55:29Z #8 5.315 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-02T20:55:29Z #8 5.315 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-04-02T20:55:29Z #8 5.315 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-04-02T20:55:29Z #8 5.315 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-04-02T20:55:29Z #8 5.315 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-04-02T20:55:29Z #8 5.315 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-04-02T20:55:29Z #8 5.315 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-04-02T20:55:29Z #8 5.315 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-04-02T20:55:29Z #8 5.315 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-04-02T20:55:29Z #8 5.315 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-04-02T20:55:29Z #8 5.316 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-04-02T20:55:29Z #8 5.316 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-04-02T20:55:29Z #8 5.316 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-04-02T20:55:29Z #8 5.316 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-04-02T20:55:29Z #8 5.316 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-04-02T20:55:29Z #8 5.316 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-04-02T20:55:29Z #8 5.316 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-04-02T20:55:29Z #8 5.316 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-04-02T20:55:29Z #8 5.316 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-04-02T20:55:29Z #8 5.316 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-04-02T20:55:29Z #8 5.316 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-04-02T20:55:29Z #8 5.317 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-04-02T20:55:29Z #8 5.317 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-04-02T20:55:29Z #8 5.317 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-04-02T20:55:29Z #8 5.317 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-04-02T20:55:29Z #8 5.317 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-04-02T20:55:29Z #8 5.317 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-04-02T20:55:29Z #8 5.317 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-04-02T20:55:29Z #8 5.317 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-04-02T20:55:29Z #8 5.318 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv -2024-04-02T20:55:29Z #8 5.318 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data -2024-04-02T20:55:29Z #8 5.320 Suggested packages: -2024-04-02T20:55:29Z #8 5.320 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-04-02T20:55:29Z #8 5.320 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-04-02T20:55:29Z #8 5.320 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-04-02T20:55:29Z #8 5.320 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs -2024-04-02T20:55:29Z #8 5.320 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser -2024-04-02T20:55:29Z #8 5.320 opencl-icd ed diffutils-doc systemd-container policykit-1 zip -2024-04-02T20:55:29Z #8 5.320 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-04-02T20:55:29Z #8 5.320 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-04-02T20:55:29Z #8 5.320 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-04-02T20:55:31Z #8 6.855 The following NEW packages will be installed: -2024-04-02T20:55:31Z #8 6.855 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-02T20:55:31Z #8 6.855 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-02T20:55:31Z #8 6.855 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-04-02T20:55:31Z #8 6.855 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-04-02T20:55:31Z #8 6.855 glib-networking glib-networking-common glib-networking-services -2024-04-02T20:55:31Z #8 6.856 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-04-02T20:55:31Z #8 6.856 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-04-02T20:55:31Z #8 6.856 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-04-02T20:55:31Z #8 6.856 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-02T20:55:31Z #8 6.856 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-02T20:55:31Z #8 6.856 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-04-02T20:55:31Z #8 6.856 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-04-02T20:55:31Z #8 6.856 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-04-02T20:55:31Z #8 6.856 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-04-02T20:55:31Z #8 6.856 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-04-02T20:55:31Z #8 6.857 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-04-02T20:55:31Z #8 6.857 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-04-02T20:55:31Z #8 6.857 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-04-02T20:55:31Z #8 6.857 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-04-02T20:55:31Z #8 6.857 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-04-02T20:55:31Z #8 6.857 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-04-02T20:55:31Z #8 6.857 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-04-02T20:55:31Z #8 6.857 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-04-02T20:55:31Z #8 6.857 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-04-02T20:55:31Z #8 6.858 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-04-02T20:55:31Z #8 6.858 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-04-02T20:55:31Z #8 6.858 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-04-02T20:55:31Z #8 6.858 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-04-02T20:55:31Z #8 6.858 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-04-02T20:55:31Z #8 6.858 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-04-02T20:55:31Z #8 6.858 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-04-02T20:55:31Z #8 6.858 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-04-02T20:55:31Z #8 6.858 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-04-02T20:55:31Z #8 6.858 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-04-02T20:55:31Z #8 6.858 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-04-02T20:55:31Z #8 6.858 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-04-02T20:55:31Z #8 6.859 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-04-02T20:55:31Z #8 6.859 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-04-02T20:55:31Z #8 6.859 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-04-02T20:55:31Z #8 6.859 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-04-02T20:55:31Z #8 6.859 x11-utils xkb-data -2024-04-02T20:55:31Z #8 6.895 0 upgraded, 221 newly installed, 0 to remove and 7 not upgraded. -2024-04-02T20:55:31Z #8 6.895 Need to get 236 MB of archives. -2024-04-02T20:55:31Z #8 6.895 After this operation, 891 MB of additional disk space will be used. -2024-04-02T20:55:31Z #8 6.895 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-04-02T20:55:31Z #8 6.907 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-04-02T20:55:31Z #8 6.908 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-04-02T20:55:31Z #8 6.909 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-04-02T20:55:31Z #8 6.912 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-04-02T20:55:31Z #8 6.921 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-04-02T20:55:31Z #8 6.923 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-04-02T20:55:31Z #8 6.927 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-04-02T20:55:31Z #8 6.929 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-04-02T20:55:31Z #8 6.930 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-04-02T20:55:31Z #8 7.024 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-04-02T20:55:31Z #8 7.032 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-04-02T20:55:31Z #8 7.035 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-04-02T20:55:31Z #8 7.039 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-04-02T20:55:31Z #8 7.043 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-04-02T20:55:31Z #8 7.047 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-04-02T20:55:31Z #8 7.064 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-04-02T20:55:31Z #8 7.067 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-04-02T20:55:31Z #8 7.080 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-04-02T20:55:31Z #8 7.086 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-04-02T20:55:31Z #8 7.262 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-04-02T20:55:31Z #8 7.272 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-04-02T20:55:31Z #8 7.281 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-04-02T20:55:31Z #8 7.286 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-04-02T20:55:31Z #8 7.291 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-04-02T20:55:31Z #8 7.292 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-04-02T20:55:31Z #8 7.294 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-04-02T20:55:31Z #8 7.298 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-04-02T20:55:31Z #8 7.302 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-04-02T20:55:31Z #8 7.305 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-04-02T20:55:31Z #8 7.308 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-04-02T20:55:31Z #8 7.544 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-04-02T20:55:32Z #8 7.546 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-04-02T20:55:32Z #8 7.548 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-04-02T20:55:32Z #8 7.553 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-04-02T20:55:32Z #8 7.554 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-04-02T20:55:32Z #8 7.556 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-04-02T20:55:32Z #8 7.558 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-04-02T20:55:32Z #8 7.560 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-04-02T20:55:32Z #8 7.561 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-04-02T20:55:32Z #8 7.587 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-04-02T20:55:32Z #8 7.596 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-04-02T20:55:32Z #8 7.615 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-04-02T20:55:32Z #8 7.617 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-04-02T20:55:32Z #8 7.640 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-04-02T20:55:32Z #8 7.642 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-04-02T20:55:32Z #8 7.652 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-04-02T20:55:32Z #8 7.681 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-04-02T20:55:32Z #8 7.683 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-04-02T20:55:32Z #8 7.881 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-04-02T20:55:32Z #8 7.882 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-04-02T20:55:32Z #8 7.885 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-04-02T20:55:32Z #8 7.887 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-04-02T20:55:32Z #8 7.889 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-04-02T20:55:32Z #8 7.890 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-04-02T20:55:32Z #8 7.893 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-04-02T20:55:32Z #8 7.895 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-04-02T20:55:32Z #8 7.901 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-04-02T20:55:32Z #8 7.916 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-04-02T20:55:32Z #8 7.924 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-04-02T20:55:32Z #8 7.929 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-04-02T20:55:32Z #8 7.944 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-04-02T20:55:32Z #8 7.946 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-04-02T20:55:32Z #8 7.949 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-04-02T20:55:32Z #8 7.956 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-04-02T20:55:32Z #8 7.959 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-04-02T20:55:32Z #8 7.961 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-04-02T20:55:32Z #8 7.965 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-04-02T20:55:32Z #8 7.967 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-04-02T20:55:32Z #8 7.971 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-04-02T20:55:32Z #8 7.976 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-04-02T20:55:32Z #8 7.980 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-04-02T20:55:32Z #8 7.983 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-04-02T20:55:32Z #8 7.987 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-04-02T20:55:32Z #8 7.995 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-04-02T20:55:32Z #8 7.998 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-04-02T20:55:32Z #8 8.001 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-04-02T20:55:32Z #8 8.003 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-04-02T20:55:32Z #8 8.021 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-04-02T20:55:32Z #8 8.033 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-04-02T20:55:32Z #8 8.036 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-04-02T20:55:32Z #8 8.046 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-04-02T20:55:32Z #8 8.053 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-04-02T20:55:32Z #8 8.058 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-04-02T20:55:32Z #8 8.062 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-04-02T20:55:32Z #8 8.070 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-04-02T20:55:32Z #8 8.075 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-04-02T20:55:32Z #8 8.079 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-04-02T20:55:32Z #8 8.082 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-04-02T20:55:32Z #8 8.085 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-04-02T20:55:32Z #8 8.088 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-04-02T20:55:32Z #8 8.101 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-04-02T20:55:32Z #8 8.105 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-04-02T20:55:32Z #8 8.113 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-04-02T20:55:32Z #8 8.116 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-04-02T20:55:32Z #8 8.120 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-04-02T20:55:32Z #8 8.124 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-04-02T20:55:32Z #8 8.135 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-04-02T20:55:32Z #8 8.137 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-04-02T20:55:32Z #8 8.140 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-04-02T20:55:32Z #8 8.142 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-04-02T20:55:32Z #8 8.144 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-04-02T20:55:32Z #8 8.146 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-04-02T20:55:32Z #8 8.148 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-04-02T20:55:32Z #8 8.162 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-04-02T20:55:32Z #8 8.165 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-04-02T20:55:32Z #8 8.168 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-04-02T20:55:32Z #8 8.255 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-04-02T20:55:32Z #8 8.306 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-04-02T20:55:32Z #8 8.311 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.9.1esr-1~deb11u1 [63.7 MB] -2024-04-02T20:55:34Z #8 9.598 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-04-02T20:55:34Z #8 9.600 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-04-02T20:55:34Z #8 9.602 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-04-02T20:55:34Z #8 9.604 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-04-02T20:55:34Z #8 9.606 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-04-02T20:55:34Z #8 9.607 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-04-02T20:55:34Z #8 9.642 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-04-02T20:55:34Z #8 9.671 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-04-02T20:55:34Z #8 9.700 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-04-02T20:55:34Z #8 9.717 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-04-02T20:55:34Z #8 9.721 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-04-02T20:55:34Z #8 9.755 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-04-02T20:55:34Z #8 10.14 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-04-02T20:55:34Z #8 10.14 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-04-02T20:55:34Z #8 10.15 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-04-02T20:55:34Z #8 10.15 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-04-02T20:55:34Z #8 10.15 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-04-02T20:55:34Z #8 10.15 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-04-02T20:55:34Z #8 10.15 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-04-02T20:55:34Z #8 10.16 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-04-02T20:55:34Z #8 10.16 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-04-02T20:55:34Z #8 10.19 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-04-02T20:55:34Z #8 10.22 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-04-02T20:55:34Z #8 10.30 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-04-02T20:55:34Z #8 10.30 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-04-02T20:55:34Z #8 10.30 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-04-02T20:55:34Z #8 10.30 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-04-02T20:55:34Z #8 10.31 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-04-02T20:55:34Z #8 10.31 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-04-02T20:55:34Z #8 10.50 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-04-02T20:55:34Z #8 10.50 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-04-02T20:55:34Z #8 10.51 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-04-02T20:55:34Z #8 10.51 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-04-02T20:55:34Z #8 10.52 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-04-02T20:55:34Z #8 10.52 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-04-02T20:55:34Z #8 10.55 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-04-02T20:55:35Z #8 10.55 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-04-02T20:55:35Z #8 10.56 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-04-02T20:55:35Z #8 10.56 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-04-02T20:55:35Z #8 10.56 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-04-02T20:55:35Z #8 10.56 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-04-02T20:55:35Z #8 10.57 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-04-02T20:55:35Z #8 10.57 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-04-02T20:55:35Z #8 10.57 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-04-02T20:55:35Z #8 10.57 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-04-02T20:55:35Z #8 10.58 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-04-02T20:55:35Z #8 10.59 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-04-02T20:55:35Z #8 10.59 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-04-02T20:55:35Z #8 10.59 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-04-02T20:55:35Z #8 10.60 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-04-02T20:55:35Z #8 10.61 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-04-02T20:55:35Z #8 10.62 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-04-02T20:55:35Z #8 10.63 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-04-02T20:55:35Z #8 10.63 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-04-02T20:55:35Z #8 10.64 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-04-02T20:55:35Z #8 10.76 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] -2024-04-02T20:55:35Z #8 10.76 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-04-02T20:55:35Z #8 10.76 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-04-02T20:55:35Z #8 10.76 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] -2024-04-02T20:55:35Z #8 10.77 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-04-02T20:55:35Z #8 10.79 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-04-02T20:55:35Z #8 10.80 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-04-02T20:55:35Z #8 10.80 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-04-02T20:55:35Z #8 10.81 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] -2024-04-02T20:55:35Z #8 10.84 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-04-02T20:55:35Z #8 10.84 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-04-02T20:55:35Z #8 10.85 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-04-02T20:55:35Z #8 10.87 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-04-02T20:55:35Z #8 10.87 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-04-02T20:55:35Z #8 10.87 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-04-02T20:55:35Z #8 10.87 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-04-02T20:55:35Z #8 10.87 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-04-02T20:55:35Z #8 11.00 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-04-02T20:55:35Z #8 11.44 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-04-02T20:55:35Z #8 11.44 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-04-02T20:55:35Z #8 11.45 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-04-02T20:55:35Z #8 11.45 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-04-02T20:55:36Z #8 11.67 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-04-02T20:55:36Z #8 11.67 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-04-02T20:55:36Z #8 11.67 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-04-02T20:55:36Z #8 11.67 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-04-02T20:55:36Z #8 11.68 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-04-02T20:55:36Z #8 11.68 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-04-02T20:55:36Z #8 11.69 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-04-02T20:55:36Z #8 11.69 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-04-02T20:55:36Z #8 11.69 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-04-02T20:55:36Z #8 11.69 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-04-02T20:55:36Z #8 11.70 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-04-02T20:55:36Z #8 11.70 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-04-02T20:55:36Z #8 11.70 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-04-02T20:55:36Z #8 11.71 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-04-02T20:55:36Z #8 11.71 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-04-02T20:55:36Z #8 11.71 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-04-02T20:55:36Z #8 11.72 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-04-02T20:55:36Z #8 11.72 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-04-02T20:55:36Z #8 11.73 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-04-02T20:55:36Z #8 11.73 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-04-02T20:55:36Z #8 11.73 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-04-02T20:55:36Z #8 11.74 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-04-02T20:55:36Z #8 11.74 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-04-02T20:55:36Z #8 11.74 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-04-02T20:55:36Z #8 11.74 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-04-02T20:55:36Z #8 11.75 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-04-02T20:55:36Z #8 11.79 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-04-02T20:55:36Z #8 11.85 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-04-02T20:55:36Z #8 11.90 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-04-02T20:55:36Z #8 11.99 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-04-02T20:55:36Z #8 12.00 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-04-02T20:55:36Z #8 12.00 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-04-02T20:55:36Z #8 12.00 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-04-02T20:55:36Z #8 12.01 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-04-02T20:55:36Z #8 12.39 debconf: delaying package configuration, since apt-utils is not installed -2024-04-02T20:55:36Z #8 12.44 Fetched 236 MB in 5s (45.9 MB/s) -2024-04-02T20:55:36Z #8 12.47 Selecting previously unselected package libapparmor1:amd64. -2024-04-02T20:55:36Z #8 12.47 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-04-02T20:55:36Z #8 12.49 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-04-02T20:55:36Z #8 12.50 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-04-02T20:55:36Z #8 12.55 Selecting previously unselected package libcap2:amd64. -2024-04-02T20:55:37Z #8 12.56 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-04-02T20:55:37Z #8 12.56 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-04-02T20:55:37Z #8 12.61 Selecting previously unselected package libargon2-1:amd64. -2024-04-02T20:55:37Z #8 12.62 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-04-02T20:55:37Z #8 12.62 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-02T20:55:37Z #8 12.67 Selecting previously unselected package dmsetup. -2024-04-02T20:55:37Z #8 12.68 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-04-02T20:55:37Z #8 12.68 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-04-02T20:55:37Z #8 12.74 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-04-02T20:55:37Z #8 12.74 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-04-02T20:55:37Z #8 12.75 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-02T20:55:37Z #8 12.82 Selecting previously unselected package libjson-c5:amd64. -2024-04-02T20:55:37Z #8 12.83 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-04-02T20:55:37Z #8 12.83 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-02T20:55:37Z #8 12.88 Selecting previously unselected package libcryptsetup12:amd64. -2024-04-02T20:55:37Z #8 12.88 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-04-02T20:55:37Z #8 12.89 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-02T20:55:37Z #8 12.98 Selecting previously unselected package libip4tc2:amd64. -2024-04-02T20:55:37Z #8 12.98 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-04-02T20:55:37Z #8 12.99 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-04-02T20:55:37Z #8 13.03 Selecting previously unselected package libkmod2:amd64. -2024-04-02T20:55:37Z #8 13.03 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-04-02T20:55:37Z #8 13.04 Unpacking libkmod2:amd64 (28-1) ... -2024-04-02T20:55:37Z #8 13.10 Selecting previously unselected package systemd. -2024-04-02T20:55:37Z #8 13.10 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-02T20:55:37Z #8 13.18 Unpacking systemd (247.3-7+deb11u4) ... -2024-04-02T20:55:38Z #8 14.17 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-04-02T20:55:38Z #8 14.19 Setting up libcap2:amd64 (1:2.44-1) ... -2024-04-02T20:55:38Z #8 14.20 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-02T20:55:38Z #8 14.22 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-02T20:55:38Z #8 14.23 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-04-02T20:55:38Z #8 14.25 Setting up libkmod2:amd64 (28-1) ... -2024-04-02T20:55:38Z #8 14.27 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-02T20:55:38Z #8 14.30 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-02T20:55:38Z #8 14.35 Setting up systemd (247.3-7+deb11u4) ... -2024-04-02T20:55:38Z #8 14.37 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-04-02T20:55:38Z #8 14.39 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-04-02T20:55:38Z #8 14.39 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-04-02T20:55:38Z #8 14.41 Initializing machine ID from KVM UUID. -2024-04-02T20:55:39Z #8 14.94 Setting up dmsetup (2:1.02.175-2.1) ... -2024-04-02T20:55:39Z #8 15.06 Selecting previously unselected package systemd-sysv. -2024-04-02T20:55:39Z #8 15.06 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-04-02T20:55:39Z #8 15.08 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-04-02T20:55:39Z #8 15.09 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-04-02T20:55:39Z #8 15.14 Selecting previously unselected package libdbus-1-3:amd64. -2024-04-02T20:55:39Z #8 15.14 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-04-02T20:55:39Z #8 15.15 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-02T20:55:39Z #8 15.24 Selecting previously unselected package dbus. -2024-04-02T20:55:39Z #8 15.24 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-04-02T20:55:39Z #8 15.26 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-04-02T20:55:39Z #8 15.35 Selecting previously unselected package libnss-systemd:amd64. -2024-04-02T20:55:39Z #8 15.35 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-02T20:55:39Z #8 15.36 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-02T20:55:39Z #8 15.43 Selecting previously unselected package libpam-systemd:amd64. -2024-04-02T20:55:39Z #8 15.43 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-02T20:55:39Z #8 15.44 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-02T20:55:40Z #8 15.52 Selecting previously unselected package manpages. -2024-04-02T20:55:40Z #8 15.53 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-04-02T20:55:40Z #8 15.53 Unpacking manpages (5.10-1) ... -2024-04-02T20:55:40Z #8 15.79 Selecting previously unselected package systemd-timesyncd. -2024-04-02T20:55:40Z #8 15.79 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-04-02T20:55:40Z #8 15.81 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-02T20:55:40Z #8 15.87 Selecting previously unselected package hicolor-icon-theme. -2024-04-02T20:55:40Z #8 15.88 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-04-02T20:55:40Z #8 15.88 Unpacking hicolor-icon-theme (0.17-2) ... -2024-04-02T20:55:40Z #8 16.01 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-04-02T20:55:40Z #8 16.01 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-04-02T20:55:40Z #8 16.02 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-02T20:55:40Z #8 16.14 Selecting previously unselected package libicu67:amd64. -2024-04-02T20:55:40Z #8 16.15 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-04-02T20:55:40Z #8 16.16 Unpacking libicu67:amd64 (67.1-7) ... -2024-04-02T20:55:42Z #8 17.86 Selecting previously unselected package libxml2:amd64. -2024-04-02T20:55:42Z #8 17.87 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-04-02T20:55:42Z #8 17.87 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-02T20:55:42Z #8 18.03 Selecting previously unselected package shared-mime-info. -2024-04-02T20:55:42Z #8 18.03 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-04-02T20:55:42Z #8 18.04 Unpacking shared-mime-info (2.0-1) ... -2024-04-02T20:55:42Z #8 18.23 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-04-02T20:55:42Z #8 18.23 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-04-02T20:55:42Z #8 18.24 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-02T20:55:42Z #8 18.30 Selecting previously unselected package libpng16-16:amd64. -2024-04-02T20:55:42Z #8 18.31 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-04-02T20:55:42Z #8 18.32 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-04-02T20:55:42Z #8 18.39 Selecting previously unselected package libdeflate0:amd64. -2024-04-02T20:55:42Z #8 18.39 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-04-02T20:55:42Z #8 18.40 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-04-02T20:55:43Z #8 18.44 Selecting previously unselected package libjbig0:amd64. -2024-04-02T20:55:43Z #8 18.45 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-04-02T20:55:43Z #8 18.46 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-02T20:55:43Z #8 18.50 Selecting previously unselected package libwebp6:amd64. -2024-04-02T20:55:43Z #8 18.50 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-02T20:55:43Z #8 18.51 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-02T20:55:43Z #8 18.59 Selecting previously unselected package libtiff5:amd64. -2024-04-02T20:55:43Z #8 18.60 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-04-02T20:55:43Z #8 18.61 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-02T20:55:43Z #8 18.70 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-04-02T20:55:43Z #8 18.70 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-02T20:55:43Z #8 18.71 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-02T20:55:43Z #8 18.78 Selecting previously unselected package gtk-update-icon-cache. -2024-04-02T20:55:43Z #8 18.78 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-04-02T20:55:43Z #8 18.79 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-02T20:55:43Z #8 18.91 Selecting previously unselected package adwaita-icon-theme. -2024-04-02T20:55:43Z #8 18.92 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-04-02T20:55:43Z #8 18.92 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-04-02T20:55:46Z #8 21.76 Selecting previously unselected package alsa-topology-conf. -2024-04-02T20:55:46Z #8 21.77 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-04-02T20:55:46Z #8 21.78 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-04-02T20:55:46Z #8 21.83 Selecting previously unselected package libasound2-data. -2024-04-02T20:55:46Z #8 21.83 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-04-02T20:55:46Z #8 21.84 Unpacking libasound2-data (1.2.4-1.1) ... -2024-04-02T20:55:46Z #8 21.91 Selecting previously unselected package libasound2:amd64. -2024-04-02T20:55:46Z #8 21.91 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-04-02T20:55:46Z #8 21.92 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-04-02T20:55:46Z #8 22.03 Selecting previously unselected package alsa-ucm-conf. -2024-04-02T20:55:46Z #8 22.03 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-04-02T20:55:46Z #8 22.03 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-04-02T20:55:46Z #8 22.13 Selecting previously unselected package libatspi2.0-0:amd64. -2024-04-02T20:55:46Z #8 22.14 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-04-02T20:55:46Z #8 22.14 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-02T20:55:46Z #8 22.20 Selecting previously unselected package libxi6:amd64. -2024-04-02T20:55:46Z #8 22.20 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-04-02T20:55:46Z #8 22.21 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-04-02T20:55:46Z #8 22.27 Selecting previously unselected package libxtst6:amd64. -2024-04-02T20:55:46Z #8 22.27 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-04-02T20:55:46Z #8 22.28 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-04-02T20:55:46Z #8 22.33 Selecting previously unselected package at-spi2-core. -2024-04-02T20:55:46Z #8 22.34 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-04-02T20:55:46Z #8 22.34 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-02T20:55:46Z #8 22.42 Selecting previously unselected package binutils-common:amd64. -2024-04-02T20:55:46Z #8 22.43 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-04-02T20:55:46Z #8 22.43 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-04-02T20:55:47Z #8 22.90 Selecting previously unselected package libbinutils:amd64. -2024-04-02T20:55:47Z #8 22.91 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-04-02T20:55:47Z #8 22.92 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-04-02T20:55:47Z #8 23.07 Selecting previously unselected package libctf-nobfd0:amd64. -2024-04-02T20:55:47Z #8 23.08 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-04-02T20:55:47Z #8 23.08 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-02T20:55:47Z #8 23.14 Selecting previously unselected package libctf0:amd64. -2024-04-02T20:55:47Z #8 23.14 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-04-02T20:55:47Z #8 23.15 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-04-02T20:55:47Z #8 23.19 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-04-02T20:55:47Z #8 23.19 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-04-02T20:55:47Z #8 23.20 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-02T20:55:48Z #8 23.62 Selecting previously unselected package binutils. -2024-04-02T20:55:48Z #8 23.63 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-04-02T20:55:48Z #8 23.64 Unpacking binutils (2.35.2-2) ... -2024-04-02T20:55:48Z #8 23.69 Selecting previously unselected package libisl23:amd64. -2024-04-02T20:55:48Z #8 23.70 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-04-02T20:55:48Z #8 23.71 Unpacking libisl23:amd64 (0.23-1) ... -2024-04-02T20:55:48Z #8 23.87 Selecting previously unselected package libmpfr6:amd64. -2024-04-02T20:55:48Z #8 23.88 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-04-02T20:55:48Z #8 23.88 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-04-02T20:55:48Z #8 24.13 Selecting previously unselected package libmpc3:amd64. -2024-04-02T20:55:48Z #8 24.13 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-04-02T20:55:48Z #8 24.13 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-04-02T20:55:48Z #8 24.17 Selecting previously unselected package cpp-10. -2024-04-02T20:55:48Z #8 24.18 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-04-02T20:55:48Z #8 24.18 Unpacking cpp-10 (10.2.1-6) ... -2024-04-02T20:55:50Z #8 25.75 Selecting previously unselected package cpp. -2024-04-02T20:55:50Z #8 25.75 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-04-02T20:55:50Z #8 25.76 Unpacking cpp (4:10.2.1-1) ... -2024-04-02T20:55:50Z #8 25.80 Selecting previously unselected package dbus-user-session. -2024-04-02T20:55:50Z #8 25.80 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-04-02T20:55:50Z #8 25.81 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-02T20:55:50Z #8 25.86 Selecting previously unselected package libdconf1:amd64. -2024-04-02T20:55:50Z #8 25.87 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-04-02T20:55:50Z #8 25.87 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-04-02T20:55:50Z #8 25.92 Selecting previously unselected package dconf-service. -2024-04-02T20:55:50Z #8 25.92 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-04-02T20:55:50Z #8 25.93 Unpacking dconf-service (0.38.0-2) ... -2024-04-02T20:55:50Z #8 25.97 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-04-02T20:55:50Z #8 25.98 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-04-02T20:55:50Z #8 25.98 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-02T20:55:50Z #8 26.03 Selecting previously unselected package libatk1.0-data. -2024-04-02T20:55:50Z #8 26.03 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-04-02T20:55:50Z #8 26.04 Unpacking libatk1.0-data (2.36.0-2) ... -2024-04-02T20:55:50Z #8 26.12 Selecting previously unselected package libatk1.0-0:amd64. -2024-04-02T20:55:50Z #8 26.13 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-04-02T20:55:50Z #8 26.15 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-02T20:55:50Z #8 26.20 Selecting previously unselected package libfreetype6:amd64. -2024-04-02T20:55:50Z #8 26.20 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-04-02T20:55:50Z #8 26.21 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-02T20:55:50Z #8 26.34 Selecting previously unselected package fonts-dejavu-core. -2024-04-02T20:55:50Z #8 26.34 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-04-02T20:55:50Z #8 26.35 Unpacking fonts-dejavu-core (2.37-2) ... -2024-04-02T20:55:51Z #8 26.59 Selecting previously unselected package fontconfig-config. -2024-04-02T20:55:51Z #8 26.59 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-04-02T20:55:51Z #8 26.73 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-04-02T20:55:51Z #8 26.80 Selecting previously unselected package libfontconfig1:amd64. -2024-04-02T20:55:51Z #8 26.80 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-04-02T20:55:51Z #8 26.81 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-02T20:55:51Z #8 26.88 Selecting previously unselected package libpixman-1-0:amd64. -2024-04-02T20:55:51Z #8 26.89 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-04-02T20:55:51Z #8 26.89 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-02T20:55:51Z #8 27.00 Selecting previously unselected package libxcb-render0:amd64. -2024-04-02T20:55:51Z #8 27.00 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-04-02T20:55:51Z #8 27.01 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-04-02T20:55:51Z #8 27.07 Selecting previously unselected package libxcb-shm0:amd64. -2024-04-02T20:55:51Z #8 27.08 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-04-02T20:55:51Z #8 27.08 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-04-02T20:55:51Z #8 27.14 Selecting previously unselected package libcairo2:amd64. -2024-04-02T20:55:51Z #8 27.15 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-04-02T20:55:51Z #8 27.17 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-04-02T20:55:51Z #8 27.32 Selecting previously unselected package libcairo-gobject2:amd64. -2024-04-02T20:55:51Z #8 27.32 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-04-02T20:55:51Z #8 27.32 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-02T20:55:51Z #8 27.38 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-04-02T20:55:51Z #8 27.39 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-04-02T20:55:51Z #8 27.39 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-02T20:55:51Z #8 27.46 Selecting previously unselected package libevent-2.1-7:amd64. -2024-04-02T20:55:51Z #8 27.46 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-04-02T20:55:51Z #8 27.47 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-02T20:55:52Z #8 27.54 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-04-02T20:55:52Z #8 27.55 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-04-02T20:55:52Z #8 27.55 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-02T20:55:52Z #8 27.61 Selecting previously unselected package liblcms2-2:amd64. -2024-04-02T20:55:52Z #8 27.62 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-04-02T20:55:52Z #8 27.62 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-02T20:55:52Z #8 27.70 Selecting previously unselected package libcolord2:amd64. -2024-04-02T20:55:52Z #8 27.70 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-04-02T20:55:52Z #8 27.71 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-04-02T20:55:52Z #8 27.77 Selecting previously unselected package libavahi-common-data:amd64. -2024-04-02T20:55:52Z #8 27.77 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-04-02T20:55:52Z #8 27.78 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-02T20:55:52Z #8 27.85 Selecting previously unselected package libavahi-common3:amd64. -2024-04-02T20:55:52Z #8 27.86 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-04-02T20:55:52Z #8 27.86 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-02T20:55:52Z #8 27.91 Selecting previously unselected package libavahi-client3:amd64. -2024-04-02T20:55:52Z #8 27.92 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-04-02T20:55:52Z #8 27.92 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-02T20:55:52Z #8 27.98 Selecting previously unselected package libcups2:amd64. -2024-04-02T20:55:52Z #8 27.99 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-04-02T20:55:52Z #8 28.00 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-02T20:55:52Z #8 28.08 Selecting previously unselected package libepoxy0:amd64. -2024-04-02T20:55:52Z #8 28.08 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-04-02T20:55:52Z #8 28.09 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-04-02T20:55:52Z #8 28.19 Selecting previously unselected package libfribidi0:amd64. -2024-04-02T20:55:52Z #8 28.19 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-04-02T20:55:52Z #8 28.20 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-02T20:55:52Z #8 28.25 Selecting previously unselected package libgraphite2-3:amd64. -2024-04-02T20:55:52Z #8 28.25 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-04-02T20:55:52Z #8 28.26 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-02T20:55:52Z #8 28.31 Selecting previously unselected package libharfbuzz0b:amd64. -2024-04-02T20:55:52Z #8 28.32 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-04-02T20:55:52Z #8 28.32 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-02T20:55:52Z #8 28.42 Selecting previously unselected package libjson-glib-1.0-common. -2024-04-02T20:55:52Z #8 28.43 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-04-02T20:55:52Z #8 28.43 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-04-02T20:55:52Z #8 28.50 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-04-02T20:55:52Z #8 28.50 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-04-02T20:55:52Z #8 28.51 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-02T20:55:53Z #8 28.56 Selecting previously unselected package fontconfig. -2024-04-02T20:55:53Z #8 28.57 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-04-02T20:55:53Z #8 28.58 Unpacking fontconfig (2.13.1-4.2) ... -2024-04-02T20:55:53Z #8 28.65 Selecting previously unselected package libthai-data. -2024-04-02T20:55:53Z #8 28.65 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-04-02T20:55:53Z #8 28.66 Unpacking libthai-data (0.1.28-3) ... -2024-04-02T20:55:53Z #8 28.75 Selecting previously unselected package libdatrie1:amd64. -2024-04-02T20:55:53Z #8 28.75 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-04-02T20:55:53Z #8 28.76 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-04-02T20:55:53Z #8 28.81 Selecting previously unselected package libthai0:amd64. -2024-04-02T20:55:53Z #8 28.81 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-04-02T20:55:53Z #8 28.82 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-04-02T20:55:53Z #8 28.87 Selecting previously unselected package libpango-1.0-0:amd64. -2024-04-02T20:55:53Z #8 28.87 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-04-02T20:55:53Z #8 28.88 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-02T20:55:53Z #8 28.96 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-04-02T20:55:53Z #8 28.96 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-04-02T20:55:53Z #8 28.97 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-02T20:55:53Z #8 29.03 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-04-02T20:55:53Z #8 29.04 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-04-02T20:55:53Z #8 29.05 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-02T20:55:53Z #8 29.10 Selecting previously unselected package libproxy1v5:amd64. -2024-04-02T20:55:53Z #8 29.10 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-04-02T20:55:53Z #8 29.11 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-04-02T20:55:53Z #8 29.16 Selecting previously unselected package glib-networking-common. -2024-04-02T20:55:53Z #8 29.16 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-04-02T20:55:53Z #8 29.17 Unpacking glib-networking-common (2.66.0-2) ... -2024-04-02T20:55:53Z #8 29.24 Selecting previously unselected package glib-networking-services. -2024-04-02T20:55:53Z #8 29.25 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-04-02T20:55:53Z #8 29.26 Unpacking glib-networking-services (2.66.0-2) ... -2024-04-02T20:55:53Z #8 29.30 Selecting previously unselected package gsettings-desktop-schemas. -2024-04-02T20:55:53Z #8 29.31 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-04-02T20:55:53Z #8 29.31 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-04-02T20:55:54Z #8 29.49 Selecting previously unselected package glib-networking:amd64. -2024-04-02T20:55:54Z #8 29.50 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-04-02T20:55:54Z #8 29.50 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-04-02T20:55:54Z #8 29.57 Selecting previously unselected package libsoup2.4-1:amd64. -2024-04-02T20:55:54Z #8 29.57 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-04-02T20:55:54Z #8 29.58 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-02T20:55:54Z #8 29.71 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-04-02T20:55:54Z #8 29.71 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-04-02T20:55:54Z #8 29.72 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-02T20:55:54Z #8 29.77 Selecting previously unselected package librest-0.7-0:amd64. -2024-04-02T20:55:54Z #8 29.77 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-04-02T20:55:54Z #8 29.78 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-02T20:55:54Z #8 29.82 Selecting previously unselected package libwayland-client0:amd64. -2024-04-02T20:55:54Z #8 29.83 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-02T20:55:54Z #8 29.83 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-02T20:55:54Z #8 29.88 Selecting previously unselected package libwayland-cursor0:amd64. -2024-04-02T20:55:54Z #8 29.89 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-02T20:55:54Z #8 29.89 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-02T20:55:54Z #8 29.93 Selecting previously unselected package libwayland-egl1:amd64. -2024-04-02T20:55:54Z #8 29.93 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-04-02T20:55:54Z #8 29.94 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-02T20:55:54Z #8 29.98 Selecting previously unselected package libxcomposite1:amd64. -2024-04-02T20:55:54Z #8 29.98 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-04-02T20:55:54Z #8 29.99 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-02T20:55:54Z #8 30.03 Selecting previously unselected package libxfixes3:amd64. -2024-04-02T20:55:54Z #8 30.04 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-04-02T20:55:54Z #8 30.04 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-02T20:55:54Z #8 30.09 Selecting previously unselected package libxcursor1:amd64. -2024-04-02T20:55:54Z #8 30.09 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-04-02T20:55:54Z #8 30.10 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-02T20:55:54Z #8 30.15 Selecting previously unselected package libxdamage1:amd64. -2024-04-02T20:55:54Z #8 30.16 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-04-02T20:55:54Z #8 30.16 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-02T20:55:54Z #8 30.22 Selecting previously unselected package libxinerama1:amd64. -2024-04-02T20:55:54Z #8 30.23 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-04-02T20:55:54Z #8 30.23 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-02T20:55:54Z #8 30.27 Selecting previously unselected package xkb-data. -2024-04-02T20:55:54Z #8 30.28 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-04-02T20:55:54Z #8 30.28 Unpacking xkb-data (2.29-2) ... -2024-04-02T20:55:55Z #8 30.56 Selecting previously unselected package libxkbcommon0:amd64. -2024-04-02T20:55:55Z #8 30.56 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-04-02T20:55:55Z #8 30.57 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-02T20:55:55Z #8 30.64 Selecting previously unselected package libxrandr2:amd64. -2024-04-02T20:55:55Z #8 30.64 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-04-02T20:55:55Z #8 30.65 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-02T20:55:55Z #8 30.70 Selecting previously unselected package libgtk-3-common. -2024-04-02T20:55:55Z #8 30.71 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-04-02T20:55:55Z #8 30.71 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-02T20:55:56Z #8 31.50 Selecting previously unselected package libgtk-3-0:amd64. -2024-04-02T20:55:56Z #8 31.50 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-04-02T20:55:56Z #8 31.51 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-02T20:55:56Z #8 32.06 Selecting previously unselected package libx11-xcb1:amd64. -2024-04-02T20:55:56Z #8 32.06 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-04-02T20:55:56Z #8 32.07 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-02T20:55:56Z #8 32.13 Selecting previously unselected package firefox-esr. -2024-04-02T20:55:56Z #8 32.14 Preparing to unpack .../099-firefox-esr_115.9.1esr-1~deb11u1_amd64.deb ... -2024-04-02T20:55:56Z #8 32.15 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-04-02T20:55:56Z #8 32.16 Unpacking firefox-esr (115.9.1esr-1~deb11u1) ... -2024-04-02T20:56:07Z #8 43.43 Selecting previously unselected package fonts-humor-sans. -2024-04-02T20:56:07Z #8 43.43 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-04-02T20:56:07Z #8 43.44 Unpacking fonts-humor-sans (1.0-4) ... -2024-04-02T20:56:07Z #8 43.49 Selecting previously unselected package libcc1-0:amd64. -2024-04-02T20:56:07Z #8 43.49 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-04-02T20:56:07Z #8 43.50 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-04-02T20:56:08Z #8 43.55 Selecting previously unselected package libgomp1:amd64. -2024-04-02T20:56:08Z #8 43.56 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-04-02T20:56:08Z #8 43.56 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-04-02T20:56:08Z #8 43.63 Selecting previously unselected package libitm1:amd64. -2024-04-02T20:56:08Z #8 43.63 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-04-02T20:56:08Z #8 43.64 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-04-02T20:56:08Z #8 43.69 Selecting previously unselected package libatomic1:amd64. -2024-04-02T20:56:08Z #8 43.70 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-04-02T20:56:08Z #8 43.70 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-04-02T20:56:08Z #8 43.75 Selecting previously unselected package libasan6:amd64. -2024-04-02T20:56:08Z #8 43.76 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-04-02T20:56:08Z #8 43.76 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-04-02T20:56:08Z #8 44.23 Selecting previously unselected package liblsan0:amd64. -2024-04-02T20:56:08Z #8 44.24 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-04-02T20:56:08Z #8 44.24 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-04-02T20:56:09Z #8 44.43 Selecting previously unselected package libtsan0:amd64. -2024-04-02T20:56:09Z #8 44.44 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-04-02T20:56:09Z #8 44.44 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-04-02T20:56:09Z #8 44.86 Selecting previously unselected package libubsan1:amd64. -2024-04-02T20:56:09Z #8 44.87 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-04-02T20:56:09Z #8 44.87 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-04-02T20:56:09Z #8 45.07 Selecting previously unselected package libquadmath0:amd64. -2024-04-02T20:56:09Z #8 45.07 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-04-02T20:56:09Z #8 45.08 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-04-02T20:56:09Z #8 45.14 Selecting previously unselected package libgcc-10-dev:amd64. -2024-04-02T20:56:09Z #8 45.14 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-04-02T20:56:09Z #8 45.15 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-02T20:56:10Z #8 45.65 Selecting previously unselected package gcc-10. -2024-04-02T20:56:10Z #8 45.65 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-04-02T20:56:10Z #8 45.65 Unpacking gcc-10 (10.2.1-6) ... -2024-04-02T20:56:13Z #8 48.66 Selecting previously unselected package gcc. -2024-04-02T20:56:13Z #8 48.66 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-04-02T20:56:13Z #8 48.67 Unpacking gcc (4:10.2.1-1) ... -2024-04-02T20:56:13Z #8 48.72 Selecting previously unselected package libva2:amd64. -2024-04-02T20:56:13Z #8 48.72 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-04-02T20:56:13Z #8 48.73 Unpacking libva2:amd64 (2.10.0-1) ... -2024-04-02T20:56:13Z #8 48.77 Selecting previously unselected package libdrm-common. -2024-04-02T20:56:13Z #8 48.78 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-04-02T20:56:13Z #8 48.78 Unpacking libdrm-common (2.4.104-1) ... -2024-04-02T20:56:13Z #8 48.83 Selecting previously unselected package libdrm2:amd64. -2024-04-02T20:56:13Z #8 48.84 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-04-02T20:56:13Z #8 48.84 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-04-02T20:56:13Z #8 48.90 Selecting previously unselected package libpciaccess0:amd64. -2024-04-02T20:56:13Z #8 48.90 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-04-02T20:56:13Z #8 48.91 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-04-02T20:56:13Z #8 48.96 Selecting previously unselected package libdrm-intel1:amd64. -2024-04-02T20:56:13Z #8 48.97 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-04-02T20:56:13Z #8 48.97 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-02T20:56:13Z #8 49.02 Selecting previously unselected package i965-va-driver:amd64. -2024-04-02T20:56:13Z #8 49.03 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-04-02T20:56:13Z #8 49.03 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-02T20:56:13Z #8 49.14 Selecting previously unselected package libigdgmm11:amd64. -2024-04-02T20:56:13Z #8 49.14 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-04-02T20:56:13Z #8 49.15 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-02T20:56:13Z #8 49.21 Selecting previously unselected package intel-media-va-driver:amd64. -2024-04-02T20:56:13Z #8 49.21 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-04-02T20:56:13Z #8 49.22 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-02T20:56:14Z #8 49.59 Selecting previously unselected package libaom0:amd64. -2024-04-02T20:56:14Z #8 49.59 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-04-02T20:56:14Z #8 49.59 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-02T20:56:14Z #8 49.80 Selecting previously unselected package libmfx1:amd64. -2024-04-02T20:56:14Z #8 49.81 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-04-02T20:56:14Z #8 49.81 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-04-02T20:56:15Z #8 50.53 Selecting previously unselected package libva-drm2:amd64. -2024-04-02T20:56:15Z #8 50.53 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-04-02T20:56:15Z #8 50.54 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-04-02T20:56:15Z #8 50.58 Selecting previously unselected package libva-x11-2:amd64. -2024-04-02T20:56:15Z #8 50.58 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-04-02T20:56:15Z #8 50.59 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-04-02T20:56:15Z #8 50.63 Selecting previously unselected package libvdpau1:amd64. -2024-04-02T20:56:15Z #8 50.64 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-04-02T20:56:15Z #8 50.64 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-04-02T20:56:15Z #8 50.69 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-04-02T20:56:15Z #8 50.70 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-04-02T20:56:15Z #8 50.70 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-02T20:56:15Z #8 50.75 Selecting previously unselected package libavutil56:amd64. -2024-04-02T20:56:15Z #8 50.75 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-02T20:56:15Z #8 50.76 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-02T20:56:15Z #8 50.84 Selecting previously unselected package libcodec2-0.9:amd64. -2024-04-02T20:56:15Z #8 50.84 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-04-02T20:56:15Z #8 50.85 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-02T20:56:16Z #8 52.27 Selecting previously unselected package libdav1d4:amd64. -2024-04-02T20:56:16Z #8 52.27 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-04-02T20:56:16Z #8 52.28 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-04-02T20:56:16Z #8 52.38 Selecting previously unselected package libgsm1:amd64. -2024-04-02T20:56:16Z #8 52.39 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-04-02T20:56:16Z #8 52.40 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-04-02T20:56:16Z #8 52.45 Selecting previously unselected package libmp3lame0:amd64. -2024-04-02T20:56:16Z #8 52.45 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-04-02T20:56:16Z #8 52.46 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-04-02T20:56:17Z #8 52.55 Selecting previously unselected package libopenjp2-7:amd64. -2024-04-02T20:56:17Z #8 52.55 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-04-02T20:56:17Z #8 52.56 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-02T20:56:17Z #8 52.62 Selecting previously unselected package libopus0:amd64. -2024-04-02T20:56:17Z #8 52.62 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-04-02T20:56:17Z #8 52.63 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-04-02T20:56:17Z #8 52.70 Selecting previously unselected package librsvg2-2:amd64. -2024-04-02T20:56:17Z #8 52.70 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-02T20:56:17Z #8 52.71 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-02T20:56:17Z #8 53.19 Selecting previously unselected package libshine3:amd64. -2024-04-02T20:56:17Z #8 53.20 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-04-02T20:56:17Z #8 53.20 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-04-02T20:56:17Z #8 53.25 Selecting previously unselected package libsnappy1v5:amd64. -2024-04-02T20:56:17Z #8 53.26 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-04-02T20:56:17Z #8 53.26 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-02T20:56:17Z #8 53.30 Selecting previously unselected package libspeex1:amd64. -2024-04-02T20:56:17Z #8 53.31 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-04-02T20:56:17Z #8 53.31 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-02T20:56:17Z #8 53.36 Selecting previously unselected package libsoxr0:amd64. -2024-04-02T20:56:17Z #8 53.37 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-04-02T20:56:17Z #8 53.37 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-04-02T20:56:17Z #8 53.42 Selecting previously unselected package libswresample3:amd64. -2024-04-02T20:56:17Z #8 53.43 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-02T20:56:17Z #8 53.43 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-02T20:56:18Z #8 53.52 Selecting previously unselected package libogg0:amd64. -2024-04-02T20:56:18Z #8 53.52 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-04-02T20:56:18Z #8 53.53 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-04-02T20:56:18Z #8 53.58 Selecting previously unselected package libtheora0:amd64. -2024-04-02T20:56:18Z #8 53.59 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-04-02T20:56:18Z #8 53.59 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-02T20:56:18Z #8 53.66 Selecting previously unselected package libtwolame0:amd64. -2024-04-02T20:56:18Z #8 53.67 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-04-02T20:56:18Z #8 53.67 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-04-02T20:56:18Z #8 53.72 Selecting previously unselected package libvorbis0a:amd64. -2024-04-02T20:56:18Z #8 53.72 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-04-02T20:56:18Z #8 53.73 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-04-02T20:56:18Z #8 53.79 Selecting previously unselected package libvorbisenc2:amd64. -2024-04-02T20:56:18Z #8 53.79 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-04-02T20:56:18Z #8 53.80 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-02T20:56:18Z #8 53.86 Selecting previously unselected package libvpx6:amd64. -2024-04-02T20:56:18Z #8 53.87 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-04-02T20:56:18Z #8 53.87 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-02T20:56:18Z #8 54.03 Selecting previously unselected package libwavpack1:amd64. -2024-04-02T20:56:18Z #8 54.03 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-04-02T20:56:18Z #8 54.04 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-04-02T20:56:18Z #8 54.09 Selecting previously unselected package libwebpmux3:amd64. -2024-04-02T20:56:18Z #8 54.10 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-02T20:56:18Z #8 54.10 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-02T20:56:18Z #8 54.16 Selecting previously unselected package libx264-160:amd64. -2024-04-02T20:56:18Z #8 54.17 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-04-02T20:56:18Z #8 54.17 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-02T20:56:18Z #8 54.29 Selecting previously unselected package libnuma1:amd64. -2024-04-02T20:56:18Z #8 54.29 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-04-02T20:56:18Z #8 54.30 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-02T20:56:18Z #8 54.35 Selecting previously unselected package libx265-192:amd64. -2024-04-02T20:56:18Z #8 54.35 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-04-02T20:56:18Z #8 54.36 Unpacking libx265-192:amd64 (3.4-2) ... -2024-04-02T20:56:19Z #8 54.71 Selecting previously unselected package libxvidcore4:amd64. -2024-04-02T20:56:19Z #8 54.71 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-04-02T20:56:19Z #8 54.71 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-02T20:56:19Z #8 54.79 Selecting previously unselected package libzvbi-common. -2024-04-02T20:56:19Z #8 54.80 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-04-02T20:56:19Z #8 54.80 Unpacking libzvbi-common (0.2.35-18) ... -2024-04-02T20:56:19Z #8 54.85 Selecting previously unselected package libzvbi0:amd64. -2024-04-02T20:56:19Z #8 54.85 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-04-02T20:56:19Z #8 54.86 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-04-02T20:56:19Z #8 54.94 Selecting previously unselected package libavcodec58:amd64. -2024-04-02T20:56:19Z #8 54.94 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-02T20:56:19Z #8 54.95 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-02T20:56:20Z #8 55.76 Selecting previously unselected package libc-dev-bin. -2024-04-02T20:56:20Z #8 55.76 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... -2024-04-02T20:56:20Z #8 55.77 Unpacking libc-dev-bin (2.31-13+deb11u8) ... -2024-04-02T20:56:20Z #8 55.81 Selecting previously unselected package libxpm4:amd64. -2024-04-02T20:56:20Z #8 55.82 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-04-02T20:56:20Z #8 55.82 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-02T20:56:20Z #8 55.87 Selecting previously unselected package libgd3:amd64. -2024-04-02T20:56:20Z #8 55.88 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-04-02T20:56:20Z #8 55.88 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-04-02T20:56:20Z #8 55.94 Selecting previously unselected package libc-devtools. -2024-04-02T20:56:20Z #8 55.94 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... -2024-04-02T20:56:20Z #8 55.95 Unpacking libc-devtools (2.31-13+deb11u8) ... -2024-04-02T20:56:20Z #8 56.00 Selecting previously unselected package linux-libc-dev:amd64. -2024-04-02T20:56:20Z #8 56.01 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-04-02T20:56:20Z #8 56.01 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-02T20:56:20Z #8 56.36 Selecting previously unselected package libcrypt-dev:amd64. -2024-04-02T20:56:20Z #8 56.36 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-04-02T20:56:20Z #8 56.37 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-02T20:56:20Z #8 56.42 Selecting previously unselected package libtirpc-dev:amd64. -2024-04-02T20:56:20Z #8 56.43 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-04-02T20:56:20Z #8 56.43 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-02T20:56:20Z #8 56.50 Selecting previously unselected package libnsl-dev:amd64. -2024-04-02T20:56:20Z #8 56.51 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-04-02T20:56:20Z #8 56.51 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-04-02T20:56:21Z #8 56.57 Selecting previously unselected package libc6-dev:amd64. -2024-04-02T20:56:21Z #8 56.58 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... -2024-04-02T20:56:21Z #8 56.58 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-04-02T20:56:21Z #8 57.08 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-04-02T20:56:21Z #8 57.09 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-04-02T20:56:21Z #8 57.09 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-02T20:56:21Z #8 57.13 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-04-02T20:56:21Z #8 57.14 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-04-02T20:56:21Z #8 57.14 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-02T20:56:22Z #8 57.59 Selecting previously unselected package libdrm-radeon1:amd64. -2024-04-02T20:56:22Z #8 57.59 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-04-02T20:56:22Z #8 57.59 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-02T20:56:22Z #8 57.64 Selecting previously unselected package libelf1:amd64. -2024-04-02T20:56:22Z #8 57.64 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-04-02T20:56:22Z #8 57.65 Unpacking libelf1:amd64 (0.183-1) ... -2024-04-02T20:56:22Z #8 57.72 Selecting previously unselected package libfontenc1:amd64. -2024-04-02T20:56:22Z #8 57.73 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-04-02T20:56:22Z #8 57.74 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-02T20:56:22Z #8 57.77 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-04-02T20:56:22Z #8 57.78 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-02T20:56:22Z #8 57.78 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-02T20:56:22Z #8 57.83 Selecting previously unselected package libglapi-mesa:amd64. -2024-04-02T20:56:22Z #8 57.83 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-04-02T20:56:22Z #8 57.84 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-02T20:56:22Z #8 57.89 Selecting previously unselected package libz3-4:amd64. -2024-04-02T20:56:22Z #8 57.89 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-04-02T20:56:22Z #8 57.90 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-04-02T20:56:23Z #8 59.00 Selecting previously unselected package libllvm11:amd64. -2024-04-02T20:56:23Z #8 59.00 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-04-02T20:56:23Z #8 59.01 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-04-02T20:56:26Z #8 61.97 Selecting previously unselected package libsensors-config. -2024-04-02T20:56:26Z #8 61.97 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-04-02T20:56:26Z #8 61.98 Unpacking libsensors-config (1:3.6.0-7) ... -2024-04-02T20:56:26Z #8 62.03 Selecting previously unselected package libsensors5:amd64. -2024-04-02T20:56:26Z #8 62.03 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-04-02T20:56:26Z #8 62.09 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-04-02T20:56:26Z #8 62.14 Selecting previously unselected package libvulkan1:amd64. -2024-04-02T20:56:26Z #8 62.15 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-04-02T20:56:26Z #8 62.15 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-02T20:56:26Z #8 62.22 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-04-02T20:56:26Z #8 62.22 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-04-02T20:56:26Z #8 62.23 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-02T20:56:28Z #8 63.76 Selecting previously unselected package libglvnd0:amd64. -2024-04-02T20:56:28Z #8 63.76 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-04-02T20:56:28Z #8 63.77 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-04-02T20:56:28Z #8 63.83 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-04-02T20:56:28Z #8 63.84 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-04-02T20:56:28Z #8 63.84 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-02T20:56:28Z #8 63.89 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-04-02T20:56:28Z #8 63.90 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-04-02T20:56:28Z #8 63.90 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-02T20:56:28Z #8 63.97 Selecting previously unselected package libxcb-glx0:amd64. -2024-04-02T20:56:28Z #8 63.97 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-04-02T20:56:28Z #8 63.98 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-04-02T20:56:28Z #8 64.05 Selecting previously unselected package libxcb-present0:amd64. -2024-04-02T20:56:28Z #8 64.06 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-04-02T20:56:28Z #8 64.07 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-04-02T20:56:28Z #8 64.15 Selecting previously unselected package libxcb-sync1:amd64. -2024-04-02T20:56:28Z #8 64.15 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-04-02T20:56:28Z #8 64.16 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-04-02T20:56:28Z #8 64.22 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-04-02T20:56:28Z #8 64.22 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-04-02T20:56:28Z #8 64.23 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-02T20:56:28Z #8 64.29 Selecting previously unselected package libxshmfence1:amd64. -2024-04-02T20:56:28Z #8 64.29 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-04-02T20:56:28Z #8 64.30 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-04-02T20:56:28Z #8 64.34 Selecting previously unselected package libxxf86vm1:amd64. -2024-04-02T20:56:28Z #8 64.35 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-04-02T20:56:28Z #8 64.36 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-02T20:56:28Z #8 64.40 Selecting previously unselected package libglx-mesa0:amd64. -2024-04-02T20:56:28Z #8 64.41 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-04-02T20:56:28Z #8 64.41 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-02T20:56:29Z #8 64.49 Selecting previously unselected package libgtk-3-bin. -2024-04-02T20:56:29Z #8 64.49 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-04-02T20:56:29Z #8 64.50 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-02T20:56:29Z #8 64.56 Selecting previously unselected package librsvg2-common:amd64. -2024-04-02T20:56:29Z #8 64.56 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-02T20:56:29Z #8 64.57 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-02T20:56:29Z #8 64.62 Selecting previously unselected package libglx0:amd64. -2024-04-02T20:56:29Z #8 64.63 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-04-02T20:56:29Z #8 64.64 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-04-02T20:56:29Z #8 64.69 Selecting previously unselected package libgl1:amd64. -2024-04-02T20:56:29Z #8 64.69 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-04-02T20:56:29Z #8 64.70 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-04-02T20:56:29Z #8 64.77 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-04-02T20:56:29Z #8 64.78 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-04-02T20:56:29Z #8 64.79 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-02T20:56:29Z #8 64.87 Selecting previously unselected package libxt6:amd64. -2024-04-02T20:56:29Z #8 64.87 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-04-02T20:56:29Z #8 64.88 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-04-02T20:56:29Z #8 64.96 Selecting previously unselected package libxmu6:amd64. -2024-04-02T20:56:29Z #8 64.96 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-02T20:56:29Z #8 64.97 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-02T20:56:29Z #8 65.02 Selecting previously unselected package libxaw7:amd64. -2024-04-02T20:56:29Z #8 65.02 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-04-02T20:56:29Z #8 65.03 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-02T20:56:29Z #8 65.10 Selecting previously unselected package libxcb-randr0:amd64. -2024-04-02T20:56:29Z #8 65.10 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-04-02T20:56:29Z #8 65.11 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-04-02T20:56:29Z #8 65.16 Selecting previously unselected package libxcb-shape0:amd64. -2024-04-02T20:56:29Z #8 65.17 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-04-02T20:56:29Z #8 65.18 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-04-02T20:56:29Z #8 65.24 Selecting previously unselected package libxft2:amd64. -2024-04-02T20:56:29Z #8 65.24 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-04-02T20:56:29Z #8 65.25 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-04-02T20:56:29Z #8 65.31 Selecting previously unselected package libxkbfile1:amd64. -2024-04-02T20:56:29Z #8 65.32 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-04-02T20:56:29Z #8 65.33 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-02T20:56:29Z #8 65.38 Selecting previously unselected package libxmuu1:amd64. -2024-04-02T20:56:29Z #8 65.39 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-02T20:56:29Z #8 65.39 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-02T20:56:29Z #8 65.46 Selecting previously unselected package libxv1:amd64. -2024-04-02T20:56:29Z #8 65.47 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-04-02T20:56:29Z #8 65.47 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-04-02T20:56:29Z #8 65.52 Selecting previously unselected package libxxf86dga1:amd64. -2024-04-02T20:56:29Z #8 65.52 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-04-02T20:56:29Z #8 65.53 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-02T20:56:30Z #8 65.57 Selecting previously unselected package manpages-dev. -2024-04-02T20:56:30Z #8 65.58 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-04-02T20:56:30Z #8 65.58 Unpacking manpages-dev (5.10-1) ... -2024-04-02T20:56:30Z #8 66.00 Selecting previously unselected package mesa-va-drivers:amd64. -2024-04-02T20:56:30Z #8 66.01 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-04-02T20:56:30Z #8 66.01 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-02T20:56:31Z #8 66.48 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-04-02T20:56:31Z #8 66.48 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-04-02T20:56:31Z #8 66.49 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-02T20:56:31Z #8 66.94 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-04-02T20:56:31Z #8 66.95 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-04-02T20:56:31Z #8 66.95 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-02T20:56:32Z #8 67.65 Selecting previously unselected package patch. -2024-04-02T20:56:32Z #8 67.65 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-04-02T20:56:32Z #8 67.66 Unpacking patch (2.7.6-7) ... -2024-04-02T20:56:32Z #8 67.72 Selecting previously unselected package unzip. -2024-04-02T20:56:32Z #8 67.72 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-04-02T20:56:32Z #8 67.72 Unpacking unzip (6.0-26+deb11u1) ... -2024-04-02T20:56:32Z #8 67.79 Selecting previously unselected package va-driver-all:amd64. -2024-04-02T20:56:32Z #8 67.79 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-04-02T20:56:32Z #8 67.80 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-04-02T20:56:32Z #8 67.83 Selecting previously unselected package vdpau-driver-all:amd64. -2024-04-02T20:56:32Z #8 67.84 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-04-02T20:56:32Z #8 67.84 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-04-02T20:56:32Z #8 67.89 Selecting previously unselected package x11-utils. -2024-04-02T20:56:32Z #8 67.90 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-04-02T20:56:32Z #8 67.90 Unpacking x11-utils (7.7+5) ... -2024-04-02T20:56:32Z #8 68.07 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-02T20:56:32Z #8 68.09 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-02T20:56:32Z #8 68.11 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-02T20:56:32Z #8 68.13 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-02T20:56:32Z #8 68.15 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-02T20:56:32Z #8 68.17 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-04-02T20:56:32Z #8 68.18 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-04-02T20:56:32Z #8 68.20 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-04-02T20:56:32Z #8 68.21 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-02T20:56:32Z #8 68.23 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-02T20:56:32Z #8 68.24 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-04-02T20:56:32Z #8 68.25 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-02T20:56:32Z #8 68.27 Setting up libshine3:amd64 (3.1.1-2) ... -2024-04-02T20:56:32Z #8 68.28 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-02T20:56:32Z #8 68.30 Setting up hicolor-icon-theme (0.17-2) ... -2024-04-02T20:56:32Z #8 68.33 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-04-02T20:56:32Z #8 68.34 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-04-02T20:56:32Z #8 68.36 Setting up libicu67:amd64 (67.1-7) ... -2024-04-02T20:56:32Z #8 68.38 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-04-02T20:56:32Z #8 68.39 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-04-02T20:56:32Z #8 68.41 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-04-02T20:56:32Z #8 68.42 Setting up manpages (5.10-1) ... -2024-04-02T20:56:32Z #8 68.44 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-04-02T20:56:32Z #8 68.45 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-04-02T20:56:33Z #8 69.05 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-04-02T20:56:34Z #8 69.69 Setting up unzip (6.0-26+deb11u1) ... -2024-04-02T20:56:34Z #8 70.28 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-02T20:56:34Z #8 70.30 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-02T20:56:34Z #8 70.31 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-04-02T20:56:34Z #8 70.32 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-04-02T20:56:34Z #8 70.33 Setting up libsensors-config (1:3.6.0-7) ... -2024-04-02T20:56:34Z #8 70.36 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-02T20:56:34Z #8 70.38 Setting up libdeflate0:amd64 (1.7-1) ... -2024-04-02T20:56:34Z #8 70.39 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-02T20:56:34Z #8 70.41 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-02T20:56:34Z #8 70.44 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-02T20:56:34Z #8 70.45 First installation detected... -2024-04-02T20:56:34Z #8 70.46 Checking NSS setup... -2024-04-02T20:56:34Z #8 70.46 Setting up xkb-data (2.29-2) ... -2024-04-02T20:56:34Z #8 70.48 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-04-02T20:56:35Z #8 70.50 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-04-02T20:56:35Z #8 70.52 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-02T20:56:35Z #8 70.54 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-02T20:56:35Z #8 70.56 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-02T20:56:35Z #8 70.58 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-04-02T20:56:35Z #8 70.60 Setting up libasan6:amd64 (10.2.1-6) ... -2024-04-02T20:56:35Z #8 70.62 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-02T20:56:35Z #8 70.64 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-02T20:56:35Z #8 70.66 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-04-02T20:56:35Z #8 70.68 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-04-02T20:56:35Z #8 70.70 Setting up libasound2-data (1.2.4-1.1) ... -2024-04-02T20:56:35Z #8 70.71 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-02T20:56:35Z #8 70.73 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-04-02T20:56:35Z #8 70.75 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-02T20:56:35Z #8 70.77 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-04-02T20:56:35Z #8 70.78 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-02T20:56:35Z #8 70.80 Setting up libva2:amd64 (2.10.0-1) ... -2024-04-02T20:56:35Z #8 70.81 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-02T20:56:35Z #8 70.83 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-04-02T20:56:35Z #8 70.84 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-04-02T20:56:35Z #8 70.86 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-02T20:56:35Z #8 70.88 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-04-02T20:56:35Z #8 70.90 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-02T20:56:35Z #8 70.91 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-02T20:56:35Z #8 70.93 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-02T20:56:35Z #8 70.94 Setting up dbus (1.12.28-0+deb11u1) ... -2024-04-02T20:56:35Z #8 71.12 invoke-rc.d: could not determine current runlevel -2024-04-02T20:56:35Z #8 71.12 invoke-rc.d: policy-rc.d denied execution of start. -2024-04-02T20:56:35Z #8 71.13 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-02T20:56:35Z #8 71.15 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-04-02T20:56:35Z #8 71.16 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-04-02T20:56:35Z #8 71.18 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-02T20:56:35Z #8 71.19 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-02T20:56:35Z #8 71.20 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-04-02T20:56:35Z #8 71.21 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-04-02T20:56:35Z #8 71.23 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-04-02T20:56:35Z #8 71.24 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-02T20:56:36Z #8 71.59 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-02T20:56:36Z #8 71.59 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-02T20:56:36Z #8 71.60 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-04-02T20:56:36Z #8 71.62 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-04-02T20:56:36Z #8 71.63 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-02T20:56:36Z #8 71.65 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-02T20:56:36Z #8 71.66 Setting up patch (2.7.6-7) ... -2024-04-02T20:56:36Z #8 71.68 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-02T20:56:36Z #8 71.70 Setting up fonts-dejavu-core (2.37-2) ... -2024-04-02T20:56:36Z #8 71.81 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-04-02T20:56:36Z #8 71.82 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-04-02T20:56:36Z #8 71.83 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-02T20:56:36Z #8 71.84 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-02T20:56:36Z #8 71.86 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-04-02T20:56:36Z #8 71.88 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-02T20:56:36Z #8 71.89 Setting up libatk1.0-data (2.36.0-2) ... -2024-04-02T20:56:36Z #8 71.90 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-02T20:56:36Z #8 71.92 Setting up alsa-topology-conf (1.2.4-1) ... -2024-04-02T20:56:36Z #8 71.93 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-04-02T20:56:36Z #8 71.94 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-02T20:56:36Z #8 71.95 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-04-02T20:56:36Z #8 71.97 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-02T20:56:36Z #8 71.99 Setting up libvdpau1:amd64 (1.4-3) ... -2024-04-02T20:56:36Z #8 72.00 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-02T20:56:36Z #8 72.01 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-04-02T20:56:36Z #8 72.03 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-04-02T20:56:36Z #8 72.04 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-04-02T20:56:36Z #8 72.05 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-02T20:56:36Z #8 72.31 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-04-02T20:56:36Z #8 72.32 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-02T20:56:36Z #8 72.36 Setting up libthai-data (0.1.28-3) ... -2024-04-02T20:56:36Z #8 72.37 Setting up fonts-humor-sans (1.0-4) ... -2024-04-02T20:56:36Z #8 72.39 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-04-02T20:56:36Z #8 72.40 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-02T20:56:36Z #8 72.41 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-02T20:56:36Z #8 72.43 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-02T20:56:36Z #8 72.44 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-02T20:56:36Z #8 72.46 Setting up glib-networking-common (2.66.0-2) ... -2024-04-02T20:56:36Z #8 72.47 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-04-02T20:56:37Z #8 72.48 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-04-02T20:56:37Z #8 72.50 Setting up libisl23:amd64 (0.23-1) ... -2024-04-02T20:56:37Z #8 72.51 Setting up libc-dev-bin (2.31-13+deb11u8) ... -2024-04-02T20:56:37Z #8 72.53 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-02T20:56:37Z #8 72.55 Setting up libdrm-common (2.4.104-1) ... -2024-04-02T20:56:37Z #8 72.57 Setting up libelf1:amd64 (0.183-1) ... -2024-04-02T20:56:37Z #8 72.58 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-02T20:56:37Z #8 72.61 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-02T20:56:37Z #8 72.62 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-04-02T20:56:37Z #8 72.64 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-02T20:56:37Z #8 72.65 Setting up libzvbi-common (0.2.35-18) ... -2024-04-02T20:56:37Z #8 72.66 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-04-02T20:56:37Z #8 72.68 Setting up cpp-10 (10.2.1-6) ... -2024-04-02T20:56:37Z #8 72.69 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-04-02T20:56:37Z #8 72.71 Setting up libitm1:amd64 (10.2.1-6) ... -2024-04-02T20:56:37Z #8 72.72 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-02T20:56:37Z #8 72.73 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-04-02T20:56:37Z #8 72.75 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-02T20:56:37Z #8 72.76 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-02T20:56:37Z #8 72.77 Setting up libctf0:amd64 (2.35.2-2) ... -2024-04-02T20:56:37Z #8 72.79 Setting up glib-networking-services (2.66.0-2) ... -2024-04-02T20:56:37Z #8 72.80 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-04-02T20:56:37Z #8 72.82 Setting up manpages-dev (5.10-1) ... -2024-04-02T20:56:37Z #8 72.83 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-02T20:56:37Z #8 72.84 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-04-02T20:56:37Z #8 72.86 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-04-02T20:56:37Z #8 72.87 Setting up fontconfig-config (2.13.1-4.2) ... -2024-04-02T20:56:37Z #8 73.25 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-02T20:56:37Z #8 73.27 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-02T20:56:37Z #8 73.28 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-02T20:56:37Z #8 73.30 Setting up libx265-192:amd64 (3.4-2) ... -2024-04-02T20:56:37Z #8 73.31 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-02T20:56:37Z #8 73.32 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-02T20:56:37Z #8 73.34 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-02T20:56:37Z #8 73.35 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-02T20:56:37Z #8 73.37 Setting up libthai0:amd64 (0.1.28-3) ... -2024-04-02T20:56:37Z #8 73.38 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-02T20:56:37Z #8 73.40 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-02T20:56:37Z #8 73.41 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-02T20:56:37Z #8 73.43 Setting up shared-mime-info (2.0-1) ... -2024-04-02T20:56:41Z #8 76.86 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-04-02T20:56:41Z #8 76.87 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-04-02T20:56:41Z #8 76.89 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-02T20:56:41Z #8 76.91 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-02T20:56:41Z #8 76.93 Setting up cpp (4:10.2.1-1) ... -2024-04-02T20:56:41Z #8 76.95 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-04-02T20:56:41Z #8 76.96 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-02T20:56:41Z #8 76.97 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-02T20:56:41Z #8 77.01 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-02T20:56:41Z #8 77.07 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-04-02T20:56:41Z #8 77.08 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-02T20:56:41Z #8 77.10 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-02T20:56:41Z #8 77.11 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-02T20:56:41Z #8 77.12 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-02T20:56:41Z #8 77.14 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-02T20:56:41Z #8 77.15 Setting up fontconfig (2.13.1-4.2) ... -2024-04-02T20:56:43Z #8 77.16 Regenerating fonts cache... done. -2024-04-02T20:56:43Z #8 79.19 Setting up libxft2:amd64 (2.3.2-2) ... -2024-04-02T20:56:43Z #8 79.20 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-02T20:56:43Z #8 79.22 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-02T20:56:43Z #8 79.23 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-02T20:56:43Z #8 79.25 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-02T20:56:43Z #8 79.26 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-02T20:56:43Z #8 79.28 Setting up dconf-service (0.38.0-2) ... -2024-04-02T20:56:43Z #8 79.29 Setting up binutils (2.35.2-2) ... -2024-04-02T20:56:43Z #8 79.31 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-04-02T20:56:43Z #8 79.32 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-02T20:56:43Z #8 79.33 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-04-02T20:56:43Z #8 79.42 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-04-02T20:56:43Z #8 79.43 Setting up libgd3:amd64 (2.3.0-2) ... -2024-04-02T20:56:43Z #8 79.44 Setting up gcc-10 (10.2.1-6) ... -2024-04-02T20:56:43Z #8 79.46 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-02T20:56:43Z #8 79.48 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-02T20:56:43Z #8 79.49 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-02T20:56:43Z #8 79.50 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-02T20:56:43Z #8 79.52 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-02T20:56:44Z #8 79.53 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-02T20:56:44Z #8 79.54 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-02T20:56:44Z #8 79.56 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-02T20:56:44Z #8 79.57 Setting up libc-devtools (2.31-13+deb11u8) ... -2024-04-02T20:56:44Z #8 79.59 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-02T20:56:44Z #8 79.60 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-02T20:56:44Z #8 79.61 Setting up libglx0:amd64 (1.3.2-1) ... -2024-04-02T20:56:44Z #8 79.63 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-02T20:56:44Z #8 79.64 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-02T20:56:44Z #8 79.66 Setting up gcc (4:10.2.1-1) ... -2024-04-02T20:56:44Z #8 79.68 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-02T20:56:44Z #8 79.69 Setting up libgl1:amd64 (1.3.2-1) ... -2024-04-02T20:56:44Z #8 79.71 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-04-02T20:56:44Z #8 79.72 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-02T20:56:44Z #8 79.74 Setting up x11-utils (7.7+5) ... -2024-04-02T20:56:44Z #8 79.78 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-02T20:56:44Z #8 79.80 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-02T20:56:44Z #8 79.81 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-02T20:56:44Z #8 79.83 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-04-02T20:56:44Z #8 79.84 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-04-02T20:56:44Z #8 79.86 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-04-02T20:56:44Z #8 79.90 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-02T20:56:44Z #8 79.94 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-04-02T20:56:44Z #8 79.95 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-02T20:56:44Z #8 79.97 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-02T20:56:44Z #8 79.98 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-02T20:56:44Z #8 80.00 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-02T20:56:44Z #8 80.03 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-02T20:56:44Z #8 80.05 Setting up firefox-esr (115.9.1esr-1~deb11u1) ... -2024-04-02T20:56:44Z #8 80.07 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-04-02T20:56:44Z #8 80.07 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-04-02T20:56:44Z #8 80.08 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-04-02T20:56:44Z #8 80.08 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-04-02T20:56:44Z #8 80.09 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-02T20:56:44Z #8 80.12 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-02T20:56:47Z #8 DONE 83.5s -2024-04-02T20:56:48Z -2024-04-02T20:56:48Z #9 [4/9] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-04-02T20:57:34Z #9 DONE 46.8s -2024-04-02T20:57:34Z -2024-04-02T20:57:34Z #10 [5/9] COPY environment.yml /environment.yml -2024-04-02T20:57:34Z #10 DONE 0.1s -2024-04-02T20:57:34Z -2024-04-02T20:57:34Z #11 [6/9] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-04-02T21:00:08Z #11 153.4 Transaction -2024-04-02T21:00:08Z #11 153.4 -2024-04-02T21:00:08Z #11 153.4 Prefix: /opt/conda/envs/birdy -2024-04-02T21:00:08Z #11 153.4 -2024-04-02T21:00:08Z #11 153.4 Updating specs: -2024-04-02T21:00:08Z #11 153.4 -2024-04-02T21:00:08Z #11 153.4 - xclim -2024-04-02T21:00:08Z #11 153.4 - ravenpy -2024-04-02T21:00:08Z #11 153.4 - python=3.10 -2024-04-02T21:00:08Z #11 153.4 -2024-04-02T21:00:08Z #11 153.4 -2024-04-02T21:00:08Z #11 153.5 Package Version Build Channel Size -2024-04-02T21:00:08Z #11 153.5 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-02T21:00:08Z #11 153.5 Install: -2024-04-02T21:00:08Z #11 153.5 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-02T21:00:08Z #11 153.5 -2024-04-02T21:00:08Z #11 153.5 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-04-02T21:00:08Z #11 153.5 + python_abi 3.10 4_cp310 conda-forge 6kB -2024-04-02T21:00:08Z #11 153.5 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB -2024-04-02T21:00:08Z #11 153.5 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB -2024-04-02T21:00:08Z #11 153.5 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB -2024-04-02T21:00:08Z #11 153.5 + mpi 1.0 openmpi conda-forge 4kB -2024-04-02T21:00:08Z #11 153.5 + libgomp 13.2.0 h807b86a_5 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-04-02T21:00:08Z #11 153.5 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-04-02T21:00:08Z #11 153.5 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-04-02T21:00:08Z #11 153.5 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-04-02T21:00:08Z #11 153.5 + lzo 2.10 h516909a_1000 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-04-02T21:00:08Z #11 153.5 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-04-02T21:00:08Z #11 153.5 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-04-02T21:00:08Z #11 153.5 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-04-02T21:00:08Z #11 153.5 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-04-02T21:00:08Z #11 153.5 + c-ares 1.28.1 hd590300_0 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + libev 4.33 hd590300_2 conda-forge 113kB -2024-04-02T21:00:08Z #11 153.5 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-04-02T21:00:08Z #11 153.5 + aws-c-common 0.9.14 hd590300_0 conda-forge 226kB -2024-04-02T21:00:08Z #11 153.5 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-04-02T21:00:08Z #11 153.5 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-04-02T21:00:08Z #11 153.5 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-04-02T21:00:08Z #11 153.5 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-04-02T21:00:08Z #11 153.5 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-04-02T21:00:08Z #11 153.5 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-04-02T21:00:08Z #11 153.5 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB -2024-04-02T21:00:08Z #11 153.5 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-04-02T21:00:08Z #11 153.5 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-04-02T21:00:08Z #11 153.5 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + openssl 3.2.1 hd590300_1 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB -2024-04-02T21:00:08Z #11 153.5 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-04-02T21:00:08Z #11 153.5 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-04-02T21:00:08Z #11 153.5 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-04-02T21:00:08Z #11 153.5 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-04-02T21:00:08Z #11 153.5 + icu 73.2 h59595ed_0 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-04-02T21:00:08Z #11 153.5 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB -2024-04-02T21:00:08Z #11 153.5 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB -2024-04-02T21:00:08Z #11 153.5 + libdeflate 1.20 hd590300_0 conda-forge 72kB -2024-04-02T21:00:08Z #11 153.5 + libaec 1.1.3 h59595ed_0 conda-forge 35kB -2024-04-02T21:00:08Z #11 153.5 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-04-02T21:00:08Z #11 153.5 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-04-02T21:00:08Z #11 153.5 + snappy 1.1.10 h9fff704_0 conda-forge 39kB -2024-04-02T21:00:08Z #11 153.5 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-04-02T21:00:08Z #11 153.5 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-04-02T21:00:08Z #11 153.5 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB -2024-04-02T21:00:08Z #11 153.5 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB -2024-04-02T21:00:08Z #11 153.5 + libnsl 2.0.1 hd590300_0 conda-forge 33kB -2024-04-02T21:00:08Z #11 153.5 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-04-02T21:00:08Z #11 153.5 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB -2024-04-02T21:00:08Z #11 153.5 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-04-02T21:00:08Z #11 153.5 + aws-c-compression 0.2.18 h4466546_2 conda-forge 19kB -2024-04-02T21:00:08Z #11 153.5 + aws-c-sdkutils 0.1.15 h4466546_2 conda-forge 55kB -2024-04-02T21:00:08Z #11 153.5 + aws-checksums 0.1.18 h4466546_2 conda-forge 50kB -2024-04-02T21:00:08Z #11 153.5 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-04-02T21:00:08Z #11 153.5 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-04-02T21:00:08Z #11 153.5 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-04-02T21:00:08Z #11 153.5 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB -2024-04-02T21:00:08Z #11 153.5 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-04-02T21:00:08Z #11 153.5 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-04-02T21:00:08Z #11 153.5 + s2n 1.4.8 h06160fa_0 conda-forge 341kB -2024-04-02T21:00:08Z #11 153.5 + aws-c-cal 0.6.10 ha9bf9b1_2 conda-forge 55kB -2024-04-02T21:00:08Z #11 153.5 + expat 2.6.2 h59595ed_0 conda-forge 138kB -2024-04-02T21:00:08Z #11 153.5 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB -2024-04-02T21:00:08Z #11 153.5 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-04-02T21:00:08Z #11 153.5 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-04-02T21:00:08Z #11 153.5 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-04-02T21:00:08Z #11 153.5 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-04-02T21:00:08Z #11 153.5 + libssh2 1.11.0 h0841786_0 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB -2024-04-02T21:00:08Z #11 153.5 + pcre2 10.43 hcad00b1_0 conda-forge 951kB -2024-04-02T21:00:08Z #11 153.5 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-04-02T21:00:08Z #11 153.5 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2024-04-02T21:00:08Z #11 153.5 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB -2024-04-02T21:00:08Z #11 153.5 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB -2024-04-02T21:00:08Z #11 153.5 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-04-02T21:00:08Z #11 153.5 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-04-02T21:00:08Z #11 153.5 + readline 8.2 h8228510_1 conda-forge 281kB -2024-04-02T21:00:08Z #11 153.5 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-04-02T21:00:08Z #11 153.5 + libxml2 2.12.6 h232c23b_1 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + ucx 1.15.0 ha691c75_8 conda-forge 7MB -2024-04-02T21:00:08Z #11 153.5 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-04-02T21:00:08Z #11 153.5 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-04-02T21:00:08Z #11 153.5 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB -2024-04-02T21:00:08Z #11 153.5 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-04-02T21:00:08Z #11 153.5 + aws-c-io 0.14.6 h96cd748_2 conda-forge 158kB -2024-04-02T21:00:08Z #11 153.5 + libglib 2.80.0 hf2295e7_1 conda-forge 3MB -2024-04-02T21:00:08Z #11 153.5 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-04-02T21:00:08Z #11 153.5 + orc 2.0.0 h1e5e2c1_0 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-04-02T21:00:08Z #11 153.5 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB -2024-04-02T21:00:08Z #11 153.5 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB -2024-04-02T21:00:08Z #11 153.5 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-04-02T21:00:08Z #11 153.5 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB -2024-04-02T21:00:08Z #11 153.5 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB -2024-04-02T21:00:08Z #11 153.5 + krb5 1.21.2 h659d440_0 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB -2024-04-02T21:00:08Z #11 153.5 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-04-02T21:00:08Z #11 153.5 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-04-02T21:00:08Z #11 153.5 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB -2024-04-02T21:00:08Z #11 153.5 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-04-02T21:00:08Z #11 153.5 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-04-02T21:00:08Z #11 153.5 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-04-02T21:00:08Z #11 153.5 + aws-c-http 0.8.1 hbfc29b2_7 conda-forge 194kB -2024-04-02T21:00:08Z #11 153.5 + aws-c-event-stream 0.4.2 he635cd5_6 conda-forge 54kB -2024-04-02T21:00:08Z #11 153.5 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-04-02T21:00:08Z #11 153.5 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-04-02T21:00:08Z #11 153.5 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-04-02T21:00:08Z #11 153.5 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-04-02T21:00:08Z #11 153.5 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-04-02T21:00:08Z #11 153.5 + libpq 16.2 h33b98f1_1 conda-forge 3MB -2024-04-02T21:00:08Z #11 153.5 + libcurl 8.7.1 hca28451_0 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + aws-c-mqtt 0.10.3 hffff1cc_2 conda-forge 163kB -2024-04-02T21:00:08Z #11 153.5 + aws-c-auth 0.7.16 haed3651_8 conda-forge 103kB -2024-04-02T21:00:08Z #11 153.5 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-04-02T21:00:08Z #11 153.5 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB -2024-04-02T21:00:08Z #11 153.5 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB -2024-04-02T21:00:08Z #11 153.5 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB -2024-04-02T21:00:08Z #11 153.5 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-04-02T21:00:08Z #11 153.5 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB -2024-04-02T21:00:08Z #11 153.5 + proj 9.3.1 h1d62c97_0 conda-forge 3MB -2024-04-02T21:00:08Z #11 153.5 + aws-c-s3 0.5.4 h4893938_0 conda-forge 106kB -2024-04-02T21:00:08Z #11 153.5 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB -2024-04-02T21:00:08Z #11 153.5 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB -2024-04-02T21:00:08Z #11 153.5 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-04-02T21:00:08Z #11 153.5 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-04-02T21:00:08Z #11 153.5 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB -2024-04-02T21:00:08Z #11 153.5 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB -2024-04-02T21:00:08Z #11 153.5 + aws-crt-cpp 0.26.4 hba3594f_2 conda-forge 335kB -2024-04-02T21:00:08Z #11 153.5 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB -2024-04-02T21:00:08Z #11 153.5 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-04-02T21:00:08Z #11 153.5 + aws-sdk-cpp 1.11.267 hb1af6a8_4 conda-forge 4MB -2024-04-02T21:00:08Z #11 153.5 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB -2024-04-02T21:00:08Z #11 153.5 + libarrow 15.0.2 hb86450c_1_cpu conda-forge 8MB -2024-04-02T21:00:08Z #11 153.5 + tiledb 2.21.1 ha9641ad_1 conda-forge 5MB -2024-04-02T21:00:08Z #11 153.5 + libparquet 15.0.2 h352af49_1_cpu conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + libarrow-gandiva 15.0.2 hb016d2e_1_cpu conda-forge 897kB -2024-04-02T21:00:08Z #11 153.5 + libarrow-flight 15.0.2 hc6145d9_1_cpu conda-forge 503kB -2024-04-02T21:00:08Z #11 153.5 + libarrow-acero 15.0.2 h59595ed_1_cpu conda-forge 597kB -2024-04-02T21:00:08Z #11 153.5 + libarrow-flight-sql 15.0.2 h757c851_1_cpu conda-forge 194kB -2024-04-02T21:00:08Z #11 153.5 + libarrow-dataset 15.0.2 h59595ed_1_cpu conda-forge 584kB -2024-04-02T21:00:08Z #11 153.5 + libarrow-substrait 15.0.2 h757c851_1_cpu conda-forge 519kB -2024-04-02T21:00:08Z #11 153.5 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-04-02T21:00:08Z #11 153.5 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-04-02T21:00:08Z #11 153.5 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-04-02T21:00:08Z #11 153.5 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-04-02T21:00:08Z #11 153.5 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-04-02T21:00:08Z #11 153.5 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB -2024-04-02T21:00:08Z #11 153.5 + fonts-conda-forge 1 0 conda-forge 4kB -2024-04-02T21:00:08Z #11 153.5 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-04-02T21:00:08Z #11 153.5 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB -2024-04-02T21:00:08Z #11 153.5 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB -2024-04-02T21:00:08Z #11 153.5 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-04-02T21:00:08Z #11 153.5 + poppler 24.03.0 h590f24d_0 conda-forge 2MB -2024-04-02T21:00:08Z #11 153.5 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB -2024-04-02T21:00:08Z #11 153.5 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB -2024-04-02T21:00:08Z #11 153.5 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB -2024-04-02T21:00:08Z #11 153.5 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-04-02T21:00:08Z #11 153.5 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB -2024-04-02T21:00:08Z #11 153.5 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB -2024-04-02T21:00:08Z #11 153.5 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB -2024-04-02T21:00:08Z #11 153.5 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB -2024-04-02T21:00:08Z #11 153.5 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-02T21:00:08Z #11 153.5 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-04-02T21:00:08Z #11 153.5 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-04-02T21:00:08Z #11 153.5 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-02T21:00:08Z #11 153.5 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-04-02T21:00:08Z #11 153.5 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB -2024-04-02T21:00:08Z #11 153.5 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-04-02T21:00:08Z #11 153.5 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-04-02T21:00:08Z #11 153.5 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-04-02T21:00:08Z #11 153.5 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB -2024-04-02T21:00:08Z #11 153.5 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-04-02T21:00:08Z #11 153.5 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-04-02T21:00:08Z #11 153.5 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-04-02T21:00:08Z #11 153.5 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-04-02T21:00:08Z #11 153.5 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-04-02T21:00:08Z #11 153.5 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-04-02T21:00:08Z #11 153.5 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-04-02T21:00:08Z #11 153.5 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-04-02T21:00:08Z #11 153.5 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-04-02T21:00:08Z #11 153.5 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-02T21:00:08Z #11 153.5 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-04-02T21:00:08Z #11 153.5 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-04-02T21:00:08Z #11 153.5 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-04-02T21:00:08Z #11 153.5 + xyzservices 2023.10.1 pyhd8ed1ab_0 conda-forge 36kB -2024-04-02T21:00:08Z #11 153.5 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB -2024-04-02T21:00:08Z #11 153.5 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-04-02T21:00:08Z #11 153.5 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-04-02T21:00:08Z #11 153.5 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB -2024-04-02T21:00:08Z #11 153.5 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB -2024-04-02T21:00:08Z #11 153.5 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-04-02T21:00:08Z #11 153.5 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB -2024-04-02T21:00:08Z #11 153.5 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB -2024-04-02T21:00:08Z #11 153.5 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-04-02T21:00:08Z #11 153.5 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-04-02T21:00:08Z #11 153.5 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-04-02T21:00:08Z #11 153.5 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-04-02T21:00:08Z #11 153.5 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-04-02T21:00:08Z #11 153.5 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB -2024-04-02T21:00:08Z #11 153.5 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-04-02T21:00:08Z #11 153.5 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB -2024-04-02T21:00:08Z #11 153.5 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB -2024-04-02T21:00:08Z #11 153.5 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-02T21:00:08Z #11 153.5 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB -2024-04-02T21:00:08Z #11 153.5 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB -2024-04-02T21:00:08Z #11 153.5 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB -2024-04-02T21:00:08Z #11 153.5 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB -2024-04-02T21:00:08Z #11 153.5 + tornado 6.4 py310h2372a71_0 conda-forge 651kB -2024-04-02T21:00:08Z #11 153.5 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB -2024-04-02T21:00:08Z #11 153.5 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB -2024-04-02T21:00:08Z #11 153.5 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB -2024-04-02T21:00:08Z #11 153.5 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB -2024-04-02T21:00:08Z #11 153.5 + pillow 10.2.0 py310h01dd4db_0 conda-forge 41MB -2024-04-02T21:00:08Z #11 153.5 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB -2024-04-02T21:00:08Z #11 153.5 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB -2024-04-02T21:00:08Z #11 153.5 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB -2024-04-02T21:00:08Z #11 153.5 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB -2024-04-02T21:00:08Z #11 153.5 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB -2024-04-02T21:00:08Z #11 153.5 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB -2024-04-02T21:00:08Z #11 153.5 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB -2024-04-02T21:00:08Z #11 153.5 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB -2024-04-02T21:00:08Z #11 153.5 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB -2024-04-02T21:00:08Z #11 153.5 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB -2024-04-02T21:00:08Z #11 153.5 + fonttools 4.50.0 py310h2372a71_0 conda-forge 2MB -2024-04-02T21:00:08Z #11 153.5 + pyarrow 15.0.2 py310hf9e7431_1_cpu conda-forge 4MB -2024-04-02T21:00:08Z #11 153.5 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB -2024-04-02T21:00:08Z #11 153.5 + gdal 3.8.4 py310he073c5f_5 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB -2024-04-02T21:00:08Z #11 153.5 + numba 0.59.1 py310h7dc5dd1_0 conda-forge 4MB -2024-04-02T21:00:08Z #11 153.5 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB -2024-04-02T21:00:08Z #11 153.5 + h5py 3.10.0 nompi_py310h65828d5_101 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB -2024-04-02T21:00:08Z #11 153.5 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB -2024-04-02T21:00:08Z #11 153.5 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB -2024-04-02T21:00:08Z #11 153.5 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB -2024-04-02T21:00:08Z #11 153.5 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB -2024-04-02T21:00:08Z #11 153.5 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB -2024-04-02T21:00:08Z #11 153.5 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB -2024-04-02T21:00:08Z #11 153.5 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB -2024-04-02T21:00:08Z #11 153.5 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-04-02T21:00:08Z #11 153.5 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-04-02T21:00:08Z #11 153.5 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB -2024-04-02T21:00:08Z #11 153.5 + dask-core 2024.4.0 pyhd8ed1ab_0 conda-forge 881kB -2024-04-02T21:00:08Z #11 153.5 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB -2024-04-02T21:00:08Z #11 153.5 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-04-02T21:00:08Z #11 153.5 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-04-02T21:00:08Z #11 153.5 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-04-02T21:00:08Z #11 153.5 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-04-02T21:00:08Z #11 153.5 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-04-02T21:00:08Z #11 153.5 + pydantic 2.6.4 pyhd8ed1ab_0 conda-forge 272kB -2024-04-02T21:00:08Z #11 153.5 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-04-02T21:00:08Z #11 153.5 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB -2024-04-02T21:00:08Z #11 153.5 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB -2024-04-02T21:00:08Z #11 153.5 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB -2024-04-02T21:00:08Z #11 153.5 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-04-02T21:00:08Z #11 153.5 + properscoring 0.1 py_0 conda-forge 22kB -2024-04-02T21:00:08Z #11 153.5 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-04-02T21:00:08Z #11 153.5 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-04-02T21:00:08Z #11 153.5 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-04-02T21:00:08Z #11 153.5 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB -2024-04-02T21:00:08Z #11 153.5 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB -2024-04-02T21:00:08Z #11 153.5 + dask-expr 1.0.9 pyhd8ed1ab_0 conda-forge 143kB -2024-04-02T21:00:08Z #11 153.5 + distributed 2024.4.0 pyhd8ed1ab_0 conda-forge 797kB -2024-04-02T21:00:08Z #11 153.5 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-04-02T21:00:08Z #11 153.5 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-04-02T21:00:08Z #11 153.5 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-04-02T21:00:08Z #11 153.5 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-04-02T21:00:08Z #11 153.5 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-04-02T21:00:08Z #11 153.5 + dask 2024.4.0 pyhd8ed1ab_0 conda-forge 7kB -2024-04-02T21:00:08Z #11 153.5 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB -2024-04-02T21:00:08Z #11 153.5 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB -2024-04-02T21:00:08Z #11 153.5 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-04-02T21:00:08Z #11 153.5 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-04-02T21:00:08Z #11 153.5 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB -2024-04-02T21:00:08Z #11 153.5 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB -2024-04-02T21:00:08Z #11 153.5 + rioxarray 0.15.2 pyhd8ed1ab_0 conda-forge 48kB -2024-04-02T21:00:08Z #11 153.5 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB -2024-04-02T21:00:08Z #11 153.5 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-04-02T21:00:08Z #11 153.5 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB -2024-04-02T21:00:08Z #11 153.5 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-04-02T21:00:08Z #11 153.5 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB -2024-04-02T21:00:08Z #11 153.5 -2024-04-02T21:00:08Z #11 153.5 Summary: -2024-04-02T21:00:08Z #11 153.5 -2024-04-02T21:00:08Z #11 153.5 Install: 299 packages -2024-04-02T21:00:08Z #11 153.5 -2024-04-02T21:00:08Z #11 153.5 Total download: 438MB -2024-04-02T21:00:08Z #11 153.5 -2024-04-02T21:00:08Z #11 153.5 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-02T21:00:08Z #11 153.5 -2024-04-02T21:00:08Z #11 153.5 -2024-04-02T21:01:43Z #11 248.1 -2024-04-02T21:01:43Z #11 248.1 Looking for: ['xclim', 'ravenpy', 'python=3.10'] -2024-04-02T21:01:43Z #11 248.1 -2024-04-02T21:01:43Z #11 248.1 -2024-04-02T21:01:43Z #11 248.1 Downloading and Extracting Packages: ...working... done -2024-04-02T21:01:47Z #11 248.1 Preparing transaction: ...working... done -2024-04-02T21:02:01Z #11 252.6 Verifying transaction: ...working... done -2024-04-02T21:02:33Z #11 266.3 Executing transaction: ...working... -2024-04-02T21:02:33Z #11 298.8 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-04-02T21:02:33Z #11 298.8 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-04-02T21:02:33Z #11 298.8 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-04-02T21:02:33Z #11 298.8 mpiexec --mca opal_cuda_support 1 ... -2024-04-02T21:02:33Z #11 298.8 -2024-04-02T21:02:33Z #11 298.8 In addition, the UCX support is also built but disabled by default. -2024-04-02T21:02:33Z #11 298.8 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-04-02T21:02:33Z #11 298.8 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-04-02T21:02:33Z #11 298.8 Equivalently, you can set the MCA parameters in the command line: -2024-04-02T21:02:33Z #11 298.8 mpiexec --mca pml ucx --mca osc ucx ... -2024-04-02T21:02:33Z #11 298.8 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-04-02T21:02:33Z #11 298.8 Please consult UCX's documentation for detail. -2024-04-02T21:02:33Z #11 298.8 -2024-04-02T21:02:33Z #11 298.8 -2024-04-02T21:02:33Z #11 298.8 done -2024-04-02T21:02:33Z #11 298.9 -2024-04-02T21:02:33Z #11 298.9 To activate this environment, use -2024-04-02T21:02:33Z #11 298.9 -2024-04-02T21:02:33Z #11 298.9 $ mamba activate birdy -2024-04-02T21:02:33Z #11 298.9 -2024-04-02T21:02:33Z #11 298.9 To deactivate an active environment, use -2024-04-02T21:02:33Z #11 298.9 -2024-04-02T21:02:33Z #11 298.9 $ mamba deactivate -2024-04-02T21:02:33Z #11 298.9 -2024-04-02T21:02:37Z #11 302.3 Channels: -2024-04-02T21:02:37Z #11 302.3 - conda-forge -2024-04-02T21:02:37Z #11 302.3 - cdat -2024-04-02T21:02:37Z #11 302.3 - bokeh -2024-04-02T21:02:37Z #11 302.3 - pyviz/label/dev -2024-04-02T21:02:37Z #11 302.3 - defaults -2024-04-02T21:02:37Z #11 302.3 Platform: linux-64 -2024-04-02T21:03:09Z #11 302.3 Collecting package metadata (repodata.json): ...working... done -2024-04-02T21:10:38Z #11 334.2 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 783.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:38Z #11 784.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:10:39Z #11 784.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:44Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:45Z #11 1150.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:16:46Z #11 1151.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-02T21:19:04Z #11 1289.3 done -2024-04-02T21:20:44Z #11 1389.6 -2024-04-02T21:20:44Z #11 1389.6 Downloading and Extracting Packages: ...working... done -2024-04-02T21:20:51Z #11 1389.6 Preparing transaction: ...working... done -2024-04-02T21:21:14Z #11 1396.6 Verifying transaction: ...working... done -2024-04-02T21:22:10Z #11 1419.4 Executing transaction: ...working... -2024-04-02T21:22:10Z #11 1475.5 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-04-02T21:22:10Z #11 1475.5 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-04-02T21:22:10Z #11 1475.5 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-04-02T21:22:10Z #11 1475.5 mpiexec --mca opal_cuda_support 1 ... -2024-04-02T21:22:10Z #11 1475.5 -2024-04-02T21:22:10Z #11 1475.5 In addition, the UCX support is also built but disabled by default. -2024-04-02T21:22:10Z #11 1475.5 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-04-02T21:22:10Z #11 1475.5 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-04-02T21:22:10Z #11 1475.5 Equivalently, you can set the MCA parameters in the command line: -2024-04-02T21:22:10Z #11 1475.5 mpiexec --mca pml ucx --mca osc ucx ... -2024-04-02T21:22:10Z #11 1475.5 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-04-02T21:22:10Z #11 1475.5 Please consult UCX's documentation for detail. -2024-04-02T21:22:10Z #11 1475.5 -2024-04-02T21:22:10Z #11 1475.5 -2024-04-02T21:22:10Z #11 1475.5 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-04-02T21:22:10Z #11 1475.5 given by the platformdirs library. To remove this warning and -2024-04-02T21:22:10Z #11 1475.5 see the appropriate new directories, set the environment variable -2024-04-02T21:22:10Z #11 1475.5 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-04-02T21:22:10Z #11 1475.5 The use of platformdirs will be the default in `jupyter_core` v6 -2024-04-02T21:22:10Z #11 1475.5 from . import paths -2024-04-02T21:22:10Z #11 1475.5 Enabling: jupyterlab_git -2024-04-02T21:22:10Z #11 1475.5 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-02T21:22:10Z #11 1475.5 - Validating... -2024-04-02T21:22:10Z #11 1475.5 jupyterlab_git OK -2024-04-02T21:22:10Z #11 1475.5 -2024-04-02T21:22:10Z #11 1475.5 done -2024-04-02T21:22:56Z #11 1483.4 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-04-02T21:22:56Z #11 1521.3 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.2hf66e6z.requirements.txt', '--exists-action=b'] -2024-04-02T21:22:56Z #11 1521.3 Pip subprocess output: -2024-04-02T21:22:56Z #11 1521.3 Collecting xncml (from -r /condaenv.2hf66e6z.requirements.txt (line 1)) -2024-04-02T21:22:56Z #11 1521.3 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting hsclient (from -r /condaenv.2hf66e6z.requirements.txt (line 2)) -2024-04-02T21:22:56Z #11 1521.3 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting fstd2nc (from -r /condaenv.2hf66e6z.requirements.txt (line 3)) -2024-04-02T21:22:56Z #11 1521.3 Downloading fstd2nc-0.20231105.2.tar.gz (163 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 163.9/163.9 kB 7.7 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Installing build dependencies: started -2024-04-02T21:22:56Z #11 1521.3 Installing build dependencies: finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Getting requirements to build wheel: started -2024-04-02T21:22:56Z #11 1521.3 Getting requirements to build wheel: finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Installing backend dependencies: started -2024-04-02T21:22:56Z #11 1521.3 Installing backend dependencies: finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (pyproject.toml): started -2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (pyproject.toml): finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Collecting figanos (from -r /condaenv.2hf66e6z.requirements.txt (line 4)) -2024-04-02T21:22:56Z #11 1521.3 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting pixiedust (from -r /condaenv.2hf66e6z.requirements.txt (line 5)) -2024-04-02T21:22:56Z #11 1521.3 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 20.6 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): started -2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Collecting ipython_blocking (from -r /condaenv.2hf66e6z.requirements.txt (line 6)) -2024-04-02T21:22:56Z #11 1521.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting jupyternotify (from -r /condaenv.2hf66e6z.requirements.txt (line 7)) -2024-04-02T21:22:56Z #11 1521.3 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): started -2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Collecting jupyterlab-logout (from -r /condaenv.2hf66e6z.requirements.txt (line 8)) -2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.2hf66e6z.requirements.txt (line 9)) -2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting pytest-tornasync (from -r /condaenv.2hf66e6z.requirements.txt (line 10)) -2024-04-02T21:22:56Z #11 1521.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting xmltodict (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) -2024-04-02T21:22:56Z #11 1521.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting xsdata (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) -2024-04-02T21:22:56Z #11 1521.3 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (2023.8.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (1.6.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (1.6.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (2024.4.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (5.9.8) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (69.2.0) -2024-04-02T21:22:56Z #11 1521.3 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) -2024-04-02T21:22:56Z #11 1521.3 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.31.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.0.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.2hf66e6z.requirements.txt (line 3)) (1.24.4) -2024-04-02T21:22:56Z #11 1521.3 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.2hf66e6z.requirements.txt (line 3)) -2024-04-02T21:22:56Z #11 1521.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-04-02T21:22:56Z #11 1521.3 Collecting progress (from fstd2nc->-r /condaenv.2hf66e6z.requirements.txt (line 3)) -2024-04-02T21:22:56Z #11 1521.3 Downloading progress-1.6.tar.gz (7.8 kB) -2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): started -2024-04-02T21:22:56Z #11 1521.3 Preparing metadata (setup.py): finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.22.0) -2024-04-02T21:22:56Z #11 1521.3 Collecting cairosvg (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) -2024-04-02T21:22:56Z #11 1521.3 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.14.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.8.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.1.4) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (4.2.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (6.0.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.13.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.22.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.47.0) -2024-04-02T21:22:56Z #11 1521.3 Collecting geojson (from pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) -2024-04-02T21:22:56Z #11 1521.3 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting astunparse (from pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) -2024-04-02T21:22:56Z #11 1521.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) (3.6) -2024-04-02T21:22:56Z #11 1521.3 Collecting colour (from pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) -2024-04-02T21:22:56Z #11 1521.3 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (8.22.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (8.1.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.7.4) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (1.0.0) -2024-04-02T21:22:56Z #11 1521.3 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) -2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab-4.1.5-py3-none-any.whl.metadata (15 kB) -2024-04-02T21:22:56Z #11 1521.3 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-04-02T21:22:56Z #11 1521.3 Collecting jupyterlab-logout (from -r /condaenv.2hf66e6z.requirements.txt (line 8)) -2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.6.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (3.6.7) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (23.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (6.4) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (5.7.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.25.4) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.13.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.2.4) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.8.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.0.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (6.5.6) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (3.1.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.0.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.2hf66e6z.requirements.txt (line 10)) (8.1.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.2hf66e6z.requirements.txt (line 3)) (2024.1) -2024-04-02T21:22:56Z #11 1521.3 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) -2024-04-02T21:22:56Z #11 1521.3 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.6.4) -2024-04-02T21:22:56Z #11 1521.3 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) -2024-04-02T21:22:56Z #11 1521.3 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (0.6.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.16.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (4.10.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.2hf66e6z.requirements.txt (line 10)) (2.0.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.2hf66e6z.requirements.txt (line 10)) (1.4.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.2hf66e6z.requirements.txt (line 10)) (1.2.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (24.0.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.3.8) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.9.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (8.1.7) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.0.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.0.6) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.59.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.23) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.4.1.post1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.12.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.14.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (3.0.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (2024.3.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (1.4.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (0.12.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (7.1.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.9.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2024.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) (0.43.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.2hf66e6z.requirements.txt (line 5)) (1.16.0) -2024-04-02T21:22:56Z #11 1521.3 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) -2024-04-02T21:22:56Z #11 1521.3 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) -2024-04-02T21:22:56Z #11 1521.3 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) -2024-04-02T21:22:56Z #11 1521.3 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.7.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (9.4.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.2.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.0.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.3.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.5.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.2.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.12.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (4.50.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.4.5) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.1.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.9.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (5.1.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.19.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.1.6) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (3.0.42) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (2.17.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.6.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (5.14.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (4.9.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.2.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (4.0.10) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (3.0.10) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (5.5.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (6.6.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (7.16.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (6.29.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (7.4.9) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (5.10.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (3.3.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (3.6) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2.0.7) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (2024.2.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) (3.2.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.2.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.34.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2023.8.12) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (23.2.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.1.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.7.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (4.0.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (3.17.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.8.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.1.5) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.4) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (1.6.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (24.0.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (4.3.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (23.1.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.10.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.5.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (7.7.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.20.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.8.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.18.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.7.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.9.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.8.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.5.9) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.14.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.9.24) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (4.21.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (4.12.3) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (6.1.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (0.3.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (3.0.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (1.5.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fastjsonschema in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (2.19.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.2.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.2.4) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.2hf66e6z.requirements.txt (line 1)) (1.0.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.7.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.2.13) -2024-04-02T21:22:56Z #11 1521.3 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) -2024-04-02T21:22:56Z #11 1521.3 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.3.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (3.4.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (1.16.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.5.1) -2024-04-02T21:22:56Z #11 1521.3 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.2hf66e6z.requirements.txt (line 2)) -2024-04-02T21:22:56Z #11 1521.3 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (1.8.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.42.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (2.4.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (2.0.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (2.4.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.2hf66e6z.requirements.txt (line 6)) (0.2.2) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (0.5.6) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.3.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.2hf66e6z.requirements.txt (line 4)) (2.22) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2023.12.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.34.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.18.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.0.7) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.1.4) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.1.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (22.1.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (0.19.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (21.2.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.2hf66e6z.requirements.txt (line 7)) (2.5) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.5.1) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (20.11.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.4) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.3.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.13) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (1.3.0) -2024-04-02T21:22:56Z #11 1521.3 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.2hf66e6z.requirements.txt (line 8)) (2.9.0.20240316) -2024-04-02T21:22:56Z #11 1521.3 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 49.3 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 9.5 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 35.8 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 61.7 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 4.5 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading xsdata-24.4-py3-none-any.whl (229 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 25.2 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 23.0 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 9.6 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-04-02T21:22:56Z #11 1521.3 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 25.5 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-04-02T21:22:56Z #11 1521.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.9 MB/s eta 0:00:00 -2024-04-02T21:22:56Z #11 1521.3 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify, progress -2024-04-02T21:22:56Z #11 1521.3 Building wheel for fstd2nc (pyproject.toml): started -2024-04-02T21:22:56Z #11 1521.3 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Created wheel for fstd2nc: filename=fstd2nc-0.20231105.2-py3-none-any.whl size=165495 sha256=8c51ba8ba79c2cffabde3004ff0155d2ad4f107b85bc5df34f1e6924b5a554cd -2024-04-02T21:22:56Z #11 1521.3 Stored in directory: /root/.cache/pip/wheels/d0/22/fd/511af25806e21ab15c1391e2a2c994bce2a229512f7624db4a -2024-04-02T21:22:56Z #11 1521.3 Building wheel for pixiedust (setup.py): started -2024-04-02T21:22:56Z #11 1521.3 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=28c6755aba6c3683818e3e9f46d6a5cc1d676e2e0d73a9f4aba3fe20b004c80c -2024-04-02T21:22:56Z #11 1521.3 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 -2024-04-02T21:22:56Z #11 1521.3 Building wheel for jupyternotify (setup.py): started -2024-04-02T21:22:56Z #11 1521.3 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=d6b2a1dd4a6268ae87f29a1effcf5db5ec694c6614497e3d9d61f181ac53e1ed -2024-04-02T21:22:56Z #11 1521.3 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 -2024-04-02T21:22:56Z #11 1521.3 Building wheel for progress (setup.py): started -2024-04-02T21:22:56Z #11 1521.3 Building wheel for progress (setup.py): finished with status 'done' -2024-04-02T21:22:56Z #11 1521.3 Created wheel for progress: filename=progress-1.6-py3-none-any.whl size=9614 sha256=c63b13390684ddb9c15f04a5e8d7a8e47fdfb9454cfb6f398d11d2bf8e13469e -2024-04-02T21:22:56Z #11 1521.3 Stored in directory: /root/.cache/pip/wheels/a2/68/5f/c339b20a41659d856c93ccdce6a33095493eb82c3964aac5a1 -2024-04-02T21:22:56Z #11 1521.3 Successfully built fstd2nc pixiedust jupyternotify progress -2024-04-02T21:22:56Z #11 1521.3 Installing collected packages: progress, colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-04-02T21:22:56Z #11 1521.3 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20231105.2 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 progress-1.6 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 -2024-04-02T21:22:56Z #11 1521.3 -2024-04-02T21:22:56Z #11 1521.3 done -2024-04-02T21:22:56Z #11 1521.3 # -2024-04-02T21:22:56Z #11 1521.3 # To activate this environment, use -2024-04-02T21:22:56Z #11 1521.3 # -2024-04-02T21:22:56Z #11 1521.3 # $ conda activate birdy -2024-04-02T21:22:56Z #11 1521.3 # -2024-04-02T21:22:56Z #11 1521.3 # To deactivate an active environment, use -2024-04-02T21:22:56Z #11 1521.3 # -2024-04-02T21:22:56Z #11 1521.3 # $ conda deactivate -2024-04-02T21:22:56Z #11 1521.3 -2024-04-02T21:23:07Z #11 1532.7 Will remove 783 (1.19 GB) tarball(s). -2024-04-02T21:23:07Z #11 1532.7 Will remove 1 index cache(s). -2024-04-02T21:23:07Z #11 1532.7 Will remove 148 (1.22 GB) package(s). -2024-04-02T21:23:07Z #11 1532.7 There are no tempfile(s) to remove. -2024-04-02T21:23:07Z #11 1532.7 There are no logfile(s) to remove. -2024-04-02T21:23:08Z #11 DONE 1533.5s -2024-04-02T21:23:08Z -2024-04-02T21:23:08Z #12 [7/9] RUN python -m ipykernel install --name birdy -2024-04-02T21:23:09Z #12 1.368 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-04-02T21:23:10Z #12 DONE 1.6s -2024-04-02T21:23:10Z -2024-04-02T21:23:10Z #13 [8/9] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-04-02T21:23:10Z #13 0.571 Enabling: voila -2024-04-02T21:23:10Z #13 0.572 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-02T21:23:10Z #13 0.574 - Validating... -2024-04-02T21:23:11Z #13 1.331 voila 0.5.6 OK -2024-04-02T21:23:11Z #13 1.717 Enabling: panel.io.jupyter_server_extension -2024-04-02T21:23:11Z #13 1.717 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-02T21:23:11Z #13 1.719 - Validating... -2024-04-02T21:23:13Z #13 3.318 panel.io.jupyter_server_extension OK -2024-04-02T21:23:13Z #13 3.810 - Validating... -2024-04-02T21:23:14Z #13 4.663 dask_labextension 6.2.0 OK -2024-04-02T21:23:14Z #13 4.663 - Validating... -2024-04-02T21:23:14Z #13 4.663 jupyter_server_proxy 4.1.1-0.dev OK -2024-04-02T21:23:14Z #13 4.663 - Validating... -2024-04-02T21:23:14Z #13 4.842 jupyter_resource_usage 0.7.1 OK -2024-04-02T21:23:14Z #13 4.843 - Validating... -2024-04-02T21:23:14Z #13 4.901  X is jupyter_server_ydoc importable? -2024-04-02T21:23:14Z #13 4.902 - Validating... -2024-04-02T21:23:15Z #13 4.976 jupyterlab 3.6.7 OK -2024-04-02T21:23:15Z #13 4.977 - Validating... -2024-04-02T21:23:15Z #13 5.165 jupyterlab_jupytext OK -2024-04-02T21:23:15Z #13 5.166 - Validating... -2024-04-02T21:23:15Z #13 5.170 mamba_gator 5.2.1 OK -2024-04-02T21:23:15Z #13 5.170 - Validating... -2024-04-02T21:23:15Z #13 5.188 nbdime 4.0.1 OK -2024-04-02T21:23:15Z #13 5.188 - Validating... -2024-04-02T21:23:16Z #13 6.262 panel.io.jupyter_server_extension OK -2024-04-02T21:23:16Z #13 6.262 - Validating... -2024-04-02T21:23:16Z #13 6.334 nbresuse OK -2024-04-02T21:23:16Z #13 6.334 - Validating... -2024-04-02T21:23:16Z #13 6.596 voila.server_extension OK -2024-04-02T21:23:16Z #13 6.596 - Validating... -2024-04-02T21:23:16Z #13 6.598 jupyterlab_git OK -2024-04-02T21:23:16Z #13 6.598 - Validating... -2024-04-02T21:23:16Z #13 6.598 voila 0.5.6 OK -2024-04-02T21:23:16Z #13 6.599 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-04-02T21:23:16Z #13 6.599 dask_labextension  enabled  -2024-04-02T21:23:16Z #13 6.599 jupyter_server_proxy  enabled  -2024-04-02T21:23:16Z #13 6.599 jupyter_resource_usage  enabled  -2024-04-02T21:23:16Z #13 6.599 jupyter_server_ydoc  enabled  -2024-04-02T21:23:16Z #13 6.599 jupyterlab  enabled  -2024-04-02T21:23:16Z #13 6.599 jupyterlab_jupytext  enabled  -2024-04-02T21:23:16Z #13 6.599 mamba_gator  enabled  -2024-04-02T21:23:16Z #13 6.599 nbdime  enabled  -2024-04-02T21:23:16Z #13 6.599 panel.io.jupyter_server_extension  enabled  -2024-04-02T21:23:16Z #13 6.599 nbresuse  enabled  -2024-04-02T21:23:16Z #13 6.599 voila.server_extension  enabled  -2024-04-02T21:23:16Z #13 6.599 jupyterlab_git  enabled  -2024-04-02T21:23:16Z #13 6.599 voila  enabled  -2024-04-02T21:23:17Z #13 DONE 7.1s -2024-04-02T21:23:17Z -2024-04-02T21:23:17Z #14 [9/9] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-04-02T21:23:17Z #14 0.358 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-04-02T21:23:17Z #14 0.382 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.108.133, 185.199.109.133, ... -2024-04-02T21:23:17Z #14 0.387 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-04-02T21:23:17Z #14 0.390 HTTP request sent, awaiting response... 200 OK -2024-04-02T21:23:17Z #14 0.514 Length: 9769 (9.5K) [text/plain] -2024-04-02T21:23:17Z #14 0.514 Saving to: ‘/usr/local/bin/start.sh’ -2024-04-02T21:23:17Z #14 0.515 -2024-04-02T21:23:17Z #14 0.515 0K ......... 100% 6.33M=0.001s -2024-04-02T21:23:17Z #14 0.518 -2024-04-02T21:23:17Z #14 0.518 2024-04-02 21:23:17 (6.33 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-04-02T21:23:17Z #14 0.518 -2024-04-02T21:23:17Z #14 0.520 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-04-02T21:23:17Z #14 0.543 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2024-04-02T21:23:17Z #14 0.544 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-04-02T21:23:17Z #14 0.549 HTTP request sent, awaiting response... 200 OK -2024-04-02T21:23:17Z #14 0.624 Length: 359 [text/plain] -2024-04-02T21:23:17Z #14 0.624 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-04-02T21:23:17Z #14 0.624 -2024-04-02T21:23:17Z #14 0.624 0K 100% 15.1M=0s -2024-04-02T21:23:17Z #14 0.625 -2024-04-02T21:23:17Z #14 0.625 2024-04-02 21:23:17 (15.1 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-04-02T21:23:17Z #14 0.625 -2024-04-02T21:23:17Z #14 0.631 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-04-02T21:23:17Z #14 0.655 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2024-04-02T21:23:17Z #14 0.656 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-04-02T21:23:17Z #14 0.661 HTTP request sent, awaiting response... 200 OK -2024-04-02T21:23:17Z #14 0.737 Length: 852 [text/plain] -2024-04-02T21:23:17Z #14 0.737 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-04-02T21:23:17Z #14 0.737 -2024-04-02T21:23:17Z #14 0.737 0K 100% 37.5M=0s -2024-04-02T21:23:17Z #14 0.738 -2024-04-02T21:23:17Z #14 0.738 2024-04-02 21:23:17 (37.5 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-04-02T21:23:17Z #14 0.738 -2024-04-02T21:23:17Z #14 0.742 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-04-02T21:23:17Z #14 0.767 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2024-04-02T21:23:17Z #14 0.768 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-04-02T21:23:17Z #14 0.774 HTTP request sent, awaiting response... 200 OK -2024-04-02T21:23:17Z #14 0.858 Length: 1034 (1.0K) [text/plain] -2024-04-02T21:23:17Z #14 0.858 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-04-02T21:23:17Z #14 0.858 -2024-04-02T21:23:17Z #14 0.858 0K . 100% 46.0M=0s -2024-04-02T21:23:17Z #14 0.859 -2024-04-02T21:23:17Z #14 0.859 2024-04-02 21:23:17 (46.0 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-04-02T21:23:17Z #14 0.859 -2024-04-02T21:23:17Z #14 0.865 --2024-04-02 21:23:17-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-04-02T21:23:17Z #14 0.890 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2024-04-02T21:23:17Z #14 0.891 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-04-02T21:23:17Z #14 0.897 HTTP request sent, awaiting response... 200 OK -2024-04-02T21:23:18Z #14 0.973 Length: 1836 (1.8K) [text/plain] -2024-04-02T21:23:18Z #14 0.973 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-04-02T21:23:18Z #14 0.973 -2024-04-02T21:23:18Z #14 0.973 0K . 100% 10.9M=0s -2024-04-02T21:23:18Z #14 0.975 -2024-04-02T21:23:18Z #14 0.975 2024-04-02 21:23:17 (10.9 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-04-02T21:23:18Z #14 0.975 -2024-04-02T21:23:18Z #14 1.156 --2024-04-02 21:23:18-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-04-02T21:23:18Z #14 1.180 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.63, 3.162.103.84, 3.162.103.75, ... -2024-04-02T21:23:18Z #14 1.188 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.63|:443... connected. -2024-04-02T21:23:18Z #14 1.193 HTTP request sent, awaiting response... 200 OK -2024-04-02T21:23:18Z #14 1.371 Length: 129825343 (124M) [application/x-tar] -2024-04-02T21:23:18Z #14 1.372 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-04-02T21:23:18Z #14 1.372 -2024-04-02T21:23:18Z #14 1.372 0K .......... .......... .......... .......... .......... 0% 12.6M 10s -2024-04-02T21:23:18Z #14 1.376 50K .......... .......... .......... .......... .......... 0% 11.6M 10s -2024-04-02T21:23:18Z #14 1.380 100K .......... .......... .......... .......... .......... 0% 23.7M 9s -2024-04-02T21:23:18Z #14 1.382 150K .......... .......... .......... .......... .......... 0% 36.6M 7s -2024-04-02T21:23:18Z #14 1.383 200K .......... .......... .......... .......... .......... 0% 165M 6s -2024-04-02T21:23:18Z #14 1.384 250K .......... .......... .......... .......... .......... 0% 27.7M 6s -2024-04-02T21:23:18Z #14 1.385 300K .......... .......... .......... .......... .......... 0% 42.2M 5s -2024-04-02T21:23:18Z #14 1.386 350K .......... .......... .......... .......... .......... 0% 24.8M 5s -2024-04-02T21:23:18Z #14 1.388 400K .......... .......... .......... .......... .......... 0% 24.2M 5s -2024-04-02T21:23:18Z #14 1.391 450K .......... .......... .......... .......... .......... 0% 26.2M 5s -2024-04-02T21:23:18Z #14 1.392 500K .......... .......... .......... .......... .......... 0% 106M 5s -2024-04-02T21:23:18Z #14 1.393 550K .......... .......... .......... .......... .......... 0% 122M 5s -2024-04-02T21:23:18Z #14 1.393 600K .......... .......... .......... .......... .......... 0% 111M 4s -2024-04-02T21:23:18Z #14 1.394 650K .......... .......... .......... .......... .......... 0% 102M 4s -2024-04-02T21:23:18Z #14 1.395 700K .......... .......... .......... .......... .......... 0% 156M 4s -2024-04-02T21:23:18Z #14 1.395 750K .......... .......... .......... .......... .......... 0% 92.3M 4s -2024-04-02T21:23:18Z #14 1.396 800K .......... .......... .......... .......... .......... 0% 124M 3s -2024-04-02T21:23:18Z #14 1.396 850K .......... .......... .......... .......... .......... 0% 117M 3s -2024-04-02T21:23:18Z #14 1.396 900K .......... .......... .......... .......... .......... 0% 104M 3s -2024-04-02T21:23:18Z #14 1.396 950K .......... .......... .......... .......... .......... 0% 97.6M 3s -2024-04-02T21:23:18Z #14 1.397 1000K .......... .......... .......... .......... .......... 0% 119M 3s -2024-04-02T21:23:18Z #14 1.397 1050K .......... .......... .......... .......... .......... 0% 109M 3s -2024-04-02T21:23:18Z #14 1.398 1100K .......... .......... .......... .......... .......... 0% 119M 3s -2024-04-02T21:23:18Z #14 1.398 1150K .......... .......... .......... .......... .......... 0% 136M 3s -2024-04-02T21:23:18Z #14 1.399 1200K .......... .......... .......... .......... .......... 0% 116M 3s -2024-04-02T21:23:18Z #14 1.399 1250K .......... .......... .......... .......... .......... 1% 27.8M 3s -2024-04-02T21:23:18Z #14 1.401 1300K .......... .......... .......... .......... .......... 1% 37.5M 3s -2024-04-02T21:23:18Z #14 1.402 1350K .......... .......... .......... .......... .......... 1% 39.0M 3s -2024-04-02T21:23:18Z #14 1.404 1400K .......... .......... .......... .......... .......... 1% 24.4M 3s -2024-04-02T21:23:18Z #14 1.405 1450K .......... .......... .......... .......... .......... 1% 75.9M 3s -2024-04-02T21:23:18Z #14 1.411 1500K .......... .......... .......... .......... .......... 1% 112M 3s -2024-04-02T21:23:18Z #14 1.411 1550K .......... .......... .......... .......... .......... 1% 129M 3s -2024-04-02T21:23:18Z #14 1.411 1600K .......... .......... .......... .......... .......... 1% 115M 3s -2024-04-02T21:23:18Z #14 1.411 1650K .......... .......... .......... .......... .......... 1% 148M 3s -2024-04-02T21:23:18Z #14 1.411 1700K .......... .......... .......... .......... .......... 1% 111M 3s -2024-04-02T21:23:18Z #14 1.411 1750K .......... .......... .......... .......... .......... 1% 122M 3s -2024-04-02T21:23:18Z #14 1.411 1800K .......... .......... .......... .......... .......... 1% 129M 2s -2024-04-02T21:23:18Z #14 1.411 1850K .......... .......... .......... .......... .......... 1% 130M 2s -2024-04-02T21:23:18Z #14 1.411 1900K .......... .......... .......... .......... .......... 1% 110M 2s -2024-04-02T21:23:18Z #14 1.411 1950K .......... .......... .......... .......... .......... 1% 115M 2s -2024-04-02T21:23:18Z #14 1.411 2000K .......... .......... .......... .......... .......... 1% 122M 2s -2024-04-02T21:23:18Z #14 1.411 2050K .......... .......... .......... .......... .......... 1% 129M 2s -2024-04-02T21:23:18Z #14 1.411 2100K .......... .......... .......... .......... .......... 1% 86.0M 2s -2024-04-02T21:23:18Z #14 1.412 2150K .......... .......... .......... .......... .......... 1% 21.1M 2s -2024-04-02T21:23:18Z #14 1.413 2200K .......... .......... .......... .......... .......... 1% 52.1M 2s -2024-04-02T21:23:18Z #14 1.415 2250K .......... .......... .......... .......... .......... 1% 52.0M 2s -2024-04-02T21:23:18Z #14 1.415 2300K .......... .......... .......... .......... .......... 1% 45.0M 2s -2024-04-02T21:23:18Z #14 1.417 2350K .......... .......... .......... .......... .......... 1% 53.0M 2s -2024-04-02T21:23:18Z #14 1.418 2400K .......... .......... .......... .......... .......... 1% 48.2M 2s -2024-04-02T21:23:18Z #14 1.418 2450K .......... .......... .......... .......... .......... 1% 49.8M 2s -2024-04-02T21:23:18Z #14 1.419 2500K .......... .......... .......... .......... .......... 2% 52.9M 2s -2024-04-02T21:23:18Z #14 1.421 2550K .......... .......... .......... .......... .......... 2% 44.8M 2s -2024-04-02T21:23:18Z #14 1.421 2600K .......... .......... .......... .......... .......... 2% 51.0M 2s -2024-04-02T21:23:18Z #14 1.422 2650K .......... .......... .......... .......... .......... 2% 31.5M 2s -2024-04-02T21:23:18Z #14 1.424 2700K .......... .......... .......... .......... .......... 2% 87.0M 2s -2024-04-02T21:23:18Z #14 1.427 2750K .......... .......... .......... .......... .......... 2% 113M 2s -2024-04-02T21:23:18Z #14 1.427 2800K .......... .......... .......... .......... .......... 2% 145M 2s -2024-04-02T21:23:18Z #14 1.427 2850K .......... .......... .......... .......... .......... 2% 137M 2s -2024-04-02T21:23:18Z #14 1.427 2900K .......... .......... .......... .......... .......... 2% 121M 2s -2024-04-02T21:23:18Z #14 1.427 2950K .......... .......... .......... .......... .......... 2% 141M 2s -2024-04-02T21:23:18Z #14 1.427 3000K .......... .......... .......... .......... .......... 2% 139M 2s -2024-04-02T21:23:18Z #14 1.427 3050K .......... .......... .......... .......... .......... 2% 87.4M 2s -2024-04-02T21:23:18Z #14 1.428 3100K .......... .......... .......... .......... .......... 2% 43.1M 2s -2024-04-02T21:23:18Z #14 1.428 3150K .......... .......... .......... .......... .......... 2% 71.7M 2s -2024-04-02T21:23:18Z #14 1.431 3200K .......... .......... .......... .......... .......... 2% 129M 2s -2024-04-02T21:23:18Z #14 1.431 3250K .......... .......... .......... .......... .......... 2% 127M 2s -2024-04-02T21:23:18Z #14 1.431 3300K .......... .......... .......... .......... .......... 2% 147M 2s -2024-04-02T21:23:18Z #14 1.431 3350K .......... .......... .......... .......... .......... 2% 150M 2s -2024-04-02T21:23:18Z #14 1.431 3400K .......... .......... .......... .......... .......... 2% 127M 2s -2024-04-02T21:23:18Z #14 1.431 3450K .......... .......... .......... .......... .......... 2% 74.5M 2s -2024-04-02T21:23:18Z #14 1.435 3500K .......... .......... .......... .......... .......... 2% 126M 2s -2024-04-02T21:23:18Z #14 1.435 3550K .......... .......... .......... .......... .......... 2% 141M 2s -2024-04-02T21:23:18Z #14 1.435 3600K .......... .......... .......... .......... .......... 2% 148M 2s -2024-04-02T21:23:18Z #14 1.435 3650K .......... .......... .......... .......... .......... 2% 141M 2s -2024-04-02T21:23:18Z #14 1.435 3700K .......... .......... .......... .......... .......... 2% 131M 2s -2024-04-02T21:23:18Z #14 1.435 3750K .......... .......... .......... .......... .......... 2% 147M 2s -2024-04-02T21:23:18Z #14 1.435 3800K .......... .......... .......... .......... .......... 3% 139M 2s -2024-04-02T21:23:18Z #14 1.435 3850K .......... .......... .......... .......... .......... 3% 145M 2s -2024-04-02T21:23:18Z #14 1.435 3900K .......... .......... .......... .......... .......... 3% 126M 2s -2024-04-02T21:23:18Z #14 1.435 3950K .......... .......... .......... .......... .......... 3% 82.5M 2s -2024-04-02T21:23:18Z #14 1.435 4000K .......... .......... .......... .......... .......... 3% 107M 2s -2024-04-02T21:23:18Z #14 1.439 4050K .......... .......... .......... .......... .......... 3% 125M 2s -2024-04-02T21:23:18Z #14 1.439 4100K .......... .......... .......... .......... .......... 3% 138M 2s -2024-04-02T21:23:18Z #14 1.439 4150K .......... .......... .......... .......... .......... 3% 127M 2s -2024-04-02T21:23:18Z #14 1.439 4200K .......... .......... .......... .......... .......... 3% 130M 2s -2024-04-02T21:23:18Z #14 1.439 4250K .......... .......... .......... .......... .......... 3% 118M 2s -2024-04-02T21:23:18Z #14 1.439 4300K .......... .......... .......... .......... .......... 3% 117M 2s -2024-04-02T21:23:18Z #14 1.439 4350K .......... .......... .......... .......... .......... 3% 129M 2s -2024-04-02T21:23:18Z #14 1.439 4400K .......... .......... .......... .......... .......... 3% 135M 2s -2024-04-02T21:23:18Z #14 1.439 4450K .......... .......... .......... .......... .......... 3% 54.0M 2s -2024-04-02T21:23:18Z #14 1.440 4500K .......... .......... .......... .......... .......... 3% 110M 2s -2024-04-02T21:23:18Z #14 1.443 4550K .......... .......... .......... .......... .......... 3% 140M 2s -2024-04-02T21:23:18Z #14 1.443 4600K .......... .......... .......... .......... .......... 3% 122M 2s -2024-04-02T21:23:18Z #14 1.443 4650K .......... .......... .......... .......... .......... 3% 138M 2s -2024-04-02T21:23:18Z #14 1.443 4700K .......... .......... .......... .......... .......... 3% 128M 2s -2024-04-02T21:23:18Z #14 1.443 4750K .......... .......... .......... .......... .......... 3% 104M 2s -2024-04-02T21:23:18Z #14 1.443 4800K .......... .......... .......... .......... .......... 3% 135M 2s -2024-04-02T21:23:18Z #14 1.443 4850K .......... .......... .......... .......... .......... 3% 115M 2s -2024-04-02T21:23:18Z #14 1.443 4900K .......... .......... .......... .......... .......... 3% 67.1M 2s -2024-04-02T21:23:18Z #14 1.447 4950K .......... .......... .......... .......... .......... 3% 126M 2s -2024-04-02T21:23:18Z #14 1.447 5000K .......... .......... .......... .......... .......... 3% 138M 2s -2024-04-02T21:23:18Z #14 1.447 5050K .......... .......... .......... .......... .......... 4% 133M 2s -2024-04-02T21:23:18Z #14 1.447 5100K .......... .......... .......... .......... .......... 4% 119M 2s -2024-04-02T21:23:18Z #14 1.447 5150K .......... .......... .......... .......... .......... 4% 119M 2s -2024-04-02T21:23:18Z #14 1.447 5200K .......... .......... .......... .......... .......... 4% 105M 2s -2024-04-02T21:23:18Z #14 1.447 5250K .......... .......... .......... .......... .......... 4% 148M 2s -2024-04-02T21:23:18Z #14 1.447 5300K .......... .......... .......... .......... .......... 4% 122M 2s -2024-04-02T21:23:18Z #14 1.447 5350K .......... .......... .......... .......... .......... 4% 60.0M 2s -2024-04-02T21:23:18Z #14 1.451 5400K .......... .......... .......... .......... .......... 4% 133M 2s -2024-04-02T21:23:18Z #14 1.451 5450K .......... .......... .......... .......... .......... 4% 117M 2s -2024-04-02T21:23:18Z #14 1.451 5500K .......... .......... .......... .......... .......... 4% 113M 2s -2024-04-02T21:23:18Z #14 1.451 5550K .......... .......... .......... .......... .......... 4% 126M 2s -2024-04-02T21:23:18Z #14 1.451 5600K .......... .......... .......... .......... .......... 4% 140M 2s -2024-04-02T21:23:18Z #14 1.451 5650K .......... .......... .......... .......... .......... 4% 118M 2s -2024-04-02T21:23:18Z #14 1.451 5700K .......... .......... .......... .......... .......... 4% 129M 2s -2024-04-02T21:23:18Z #14 1.451 5750K .......... .......... .......... .......... .......... 4% 118M 2s -2024-04-02T21:23:18Z #14 1.451 5800K .......... .......... .......... .......... .......... 4% 71.8M 2s -2024-04-02T21:23:18Z #14 1.455 5850K .......... .......... .......... .......... .......... 4% 145M 2s -2024-04-02T21:23:18Z #14 1.455 5900K .......... .......... .......... .......... .......... 4% 128M 2s -2024-04-02T21:23:18Z #14 1.455 5950K .......... .......... .......... .......... .......... 4% 100M 2s -2024-04-02T21:23:18Z #14 1.455 6000K .......... .......... .......... .......... .......... 4% 145M 2s -2024-04-02T21:23:18Z #14 1.455 6050K .......... .......... .......... .......... .......... 4% 111M 2s -2024-04-02T21:23:18Z #14 1.455 6100K .......... .......... .......... .......... .......... 4% 126M 2s -2024-04-02T21:23:18Z #14 1.455 6150K .......... .......... .......... .......... .......... 4% 112M 2s -2024-04-02T21:23:18Z #14 1.455 6200K .......... .......... .......... .......... .......... 4% 135M 2s -2024-04-02T21:23:18Z #14 1.455 6250K .......... .......... .......... .......... .......... 4% 103M 2s -2024-04-02T21:23:18Z #14 1.455 6300K .......... .......... .......... .......... .......... 5% 78.2M 2s -2024-04-02T21:23:18Z #14 1.459 6350K .......... .......... .......... .......... .......... 5% 114M 2s -2024-04-02T21:23:18Z #14 1.459 6400K .......... .......... .......... .......... .......... 5% 129M 2s -2024-04-02T21:23:18Z #14 1.459 6450K .......... .......... .......... .......... .......... 5% 121M 2s -2024-04-02T21:23:18Z #14 1.459 6500K .......... .......... .......... .......... .......... 5% 130M 2s -2024-04-02T21:23:18Z #14 1.459 6550K .......... .......... .......... .......... .......... 5% 114M 2s -2024-04-02T21:23:18Z #14 1.459 6600K .......... .......... .......... .......... .......... 5% 136M 2s -2024-04-02T21:23:18Z #14 1.459 6650K .......... .......... .......... .......... .......... 5% 109M 2s -2024-04-02T21:23:18Z #14 1.459 6700K .......... .......... .......... .......... .......... 5% 135M 2s -2024-04-02T21:23:18Z #14 1.459 6750K .......... .......... .......... .......... .......... 5% 48.3M 2s -2024-04-02T21:23:18Z #14 1.463 6800K .......... .......... .......... .......... .......... 5% 123M 2s -2024-04-02T21:23:18Z #14 1.463 6850K .......... .......... .......... .......... .......... 5% 106M 2s -2024-04-02T21:23:18Z #14 1.463 6900K .......... .......... .......... .......... .......... 5% 138M 2s -2024-04-02T21:23:18Z #14 1.463 6950K .......... .......... .......... .......... .......... 5% 116M 2s -2024-04-02T21:23:18Z #14 1.463 7000K .......... .......... .......... .......... .......... 5% 109M 2s -2024-04-02T21:23:18Z #14 1.463 7050K .......... .......... .......... .......... .......... 5% 129M 2s -2024-04-02T21:23:18Z #14 1.463 7100K .......... .......... .......... .......... .......... 5% 122M 2s -2024-04-02T21:23:18Z #14 1.463 7150K .......... .......... .......... .......... .......... 5% 48.4M 2s -2024-04-02T21:23:18Z #14 1.467 7200K .......... .......... .......... .......... .......... 5% 144M 2s -2024-04-02T21:23:18Z #14 1.467 7250K .......... .......... .......... .......... .......... 5% 124M 2s -2024-04-02T21:23:18Z #14 1.467 7300K .......... .......... .......... .......... .......... 5% 122M 2s -2024-04-02T21:23:18Z #14 1.467 7350K .......... .......... .......... .......... .......... 5% 129M 2s -2024-04-02T21:23:18Z #14 1.467 7400K .......... .......... .......... .......... .......... 5% 132M 2s -2024-04-02T21:23:18Z #14 1.467 7450K .......... .......... .......... .......... .......... 5% 114M 1s -2024-04-02T21:23:18Z #14 1.467 7500K .......... .......... .......... .......... .......... 5% 129M 1s -2024-04-02T21:23:18Z #14 1.467 7550K .......... .......... .......... .......... .......... 5% 118M 1s -2024-04-02T21:23:18Z #14 1.467 7600K .......... .......... .......... .......... .......... 6% 75.6M 1s -2024-04-02T21:23:18Z #14 1.471 7650K .......... .......... .......... .......... .......... 6% 146M 1s -2024-04-02T21:23:18Z #14 1.471 7700K .......... .......... .......... .......... .......... 6% 115M 1s -2024-04-02T21:23:18Z #14 1.471 7750K .......... .......... .......... .......... .......... 6% 116M 1s -2024-04-02T21:23:18Z #14 1.471 7800K .......... .......... .......... .......... .......... 6% 127M 1s -2024-04-02T21:23:18Z #14 1.471 7850K .......... .......... .......... .......... .......... 6% 133M 1s -2024-04-02T21:23:18Z #14 1.471 7900K .......... .......... .......... .......... .......... 6% 138M 1s -2024-04-02T21:23:18Z #14 1.471 7950K .......... .......... .......... .......... .......... 6% 98.8M 1s -2024-04-02T21:23:18Z #14 1.471 8000K .......... .......... .......... .......... .......... 6% 139M 1s -2024-04-02T21:23:18Z #14 1.471 8050K .......... .......... .......... .......... .......... 6% 85.4M 1s -2024-04-02T21:23:18Z #14 1.471 8100K .......... .......... .......... .......... .......... 6% 53.9M 1s -2024-04-02T21:23:18Z #14 1.475 8150K .......... .......... .......... .......... .......... 6% 129M 1s -2024-04-02T21:23:18Z #14 1.475 8200K .......... .......... .......... .......... .......... 6% 127M 1s -2024-04-02T21:23:18Z #14 1.475 8250K .......... .......... .......... .......... .......... 6% 124M 1s -2024-04-02T21:23:18Z #14 1.475 8300K .......... .......... .......... .......... .......... 6% 133M 1s -2024-04-02T21:23:18Z #14 1.475 8350K .......... .......... .......... .......... .......... 6% 136M 1s -2024-04-02T21:23:18Z #14 1.475 8400K .......... .......... .......... .......... .......... 6% 126M 1s -2024-04-02T21:23:18Z #14 1.475 8450K .......... .......... .......... .......... .......... 6% 106M 1s -2024-04-02T21:23:18Z #14 1.475 8500K .......... .......... .......... .......... .......... 6% 52.7M 1s -2024-04-02T21:23:18Z #14 1.476 8550K .......... .......... .......... .......... .......... 6% 85.7M 1s -2024-04-02T21:23:18Z #14 1.479 8600K .......... .......... .......... .......... .......... 6% 119M 1s -2024-04-02T21:23:18Z #14 1.479 8650K .......... .......... .......... .......... .......... 6% 121M 1s -2024-04-02T21:23:18Z #14 1.479 8700K .......... .......... .......... .......... .......... 6% 124M 1s -2024-04-02T21:23:18Z #14 1.479 8750K .......... .......... .......... .......... .......... 6% 124M 1s -2024-04-02T21:23:18Z #14 1.479 8800K .......... .......... .......... .......... .......... 6% 133M 1s -2024-04-02T21:23:18Z #14 1.479 8850K .......... .......... .......... .......... .......... 7% 109M 1s -2024-04-02T21:23:18Z #14 1.479 8900K .......... .......... .......... .......... .......... 7% 74.2M 1s -2024-04-02T21:23:18Z #14 1.481 8950K .......... .......... .......... .......... .......... 7% 80.8M 1s -2024-04-02T21:23:18Z #14 1.481 9000K .......... .......... .......... .......... .......... 7% 4.29M 2s -2024-04-02T21:23:18Z #14 1.495 9050K .......... .......... .......... .......... .......... 7% 112M 2s -2024-04-02T21:23:18Z #14 1.495 9100K .......... .......... .......... .......... .......... 7% 117M 2s -2024-04-02T21:23:18Z #14 1.495 9150K .......... .......... .......... .......... .......... 7% 120M 2s -2024-04-02T21:23:18Z #14 1.495 9200K .......... .......... .......... .......... .......... 7% 140M 2s -2024-04-02T21:23:18Z #14 1.495 9250K .......... .......... .......... .......... .......... 7% 102M 2s -2024-04-02T21:23:18Z #14 1.495 9300K .......... .......... .......... .......... .......... 7% 107M 2s -2024-04-02T21:23:18Z #14 1.495 9350K .......... .......... .......... .......... .......... 7% 104M 2s -2024-04-02T21:23:18Z #14 1.495 9400K .......... .......... .......... .......... .......... 7% 132M 2s -2024-04-02T21:23:18Z #14 1.495 9450K .......... .......... .......... .......... .......... 7% 36.4M 2s -2024-04-02T21:23:18Z #14 1.499 9500K .......... .......... .......... .......... .......... 7% 127M 2s -2024-04-02T21:23:18Z #14 1.499 9550K .......... .......... .......... .......... .......... 7% 167M 2s -2024-04-02T21:23:18Z #14 1.499 9600K .......... .......... .......... .......... .......... 7% 178M 2s -2024-04-02T21:23:18Z #14 1.499 9650K .......... .......... .......... .......... .......... 7% 127M 2s -2024-04-02T21:23:18Z #14 1.499 9700K .......... .......... .......... .......... .......... 7% 176M 2s -2024-04-02T21:23:18Z #14 1.499 9750K .......... .......... .......... .......... .......... 7% 177M 2s -2024-04-02T21:23:18Z #14 1.499 9800K .......... .......... .......... .......... .......... 7% 161M 2s -2024-04-02T21:23:18Z #14 1.499 9850K .......... .......... .......... .......... .......... 7% 145M 1s -2024-04-02T21:23:18Z #14 1.499 9900K .......... .......... .......... .......... .......... 7% 180M 1s -2024-04-02T21:23:18Z #14 1.499 9950K .......... .......... .......... .......... .......... 7% 48.7M 1s -2024-04-02T21:23:18Z #14 1.500 10000K .......... .......... .......... .......... .......... 7% 54.6M 1s -2024-04-02T21:23:18Z #14 1.501 10050K .......... .......... .......... .......... .......... 7% 78.3M 1s -2024-04-02T21:23:18Z #14 1.507 10100K .......... .......... .......... .......... .......... 8% 120M 1s -2024-04-02T21:23:18Z #14 1.507 10150K .......... .......... .......... .......... .......... 8% 127M 1s -2024-04-02T21:23:18Z #14 1.507 10200K .......... .......... .......... .......... .......... 8% 119M 1s -2024-04-02T21:23:18Z #14 1.507 10250K .......... .......... .......... .......... .......... 8% 103M 1s -2024-04-02T21:23:18Z #14 1.507 10300K .......... .......... .......... .......... .......... 8% 117M 1s -2024-04-02T21:23:18Z #14 1.507 10350K .......... .......... .......... .......... .......... 8% 145M 1s -2024-04-02T21:23:18Z #14 1.507 10400K .......... .......... .......... .......... .......... 8% 130M 1s -2024-04-02T21:23:18Z #14 1.507 10450K .......... .......... .......... .......... .......... 8% 112M 1s -2024-04-02T21:23:18Z #14 1.507 10500K .......... .......... .......... .......... .......... 8% 119M 1s -2024-04-02T21:23:18Z #14 1.507 10550K .......... .......... .......... .......... .......... 8% 129M 1s -2024-04-02T21:23:18Z #14 1.507 10600K .......... .......... .......... .......... .......... 8% 119M 1s -2024-04-02T21:23:18Z #14 1.507 10650K .......... .......... .......... .......... .......... 8% 107M 1s -2024-04-02T21:23:18Z #14 1.507 10700K .......... .......... .......... .......... .......... 8% 134M 1s -2024-04-02T21:23:18Z #14 1.507 10750K .......... .......... .......... .......... .......... 8% 56.2M 1s -2024-04-02T21:23:18Z #14 1.511 10800K .......... .......... .......... .......... .......... 8% 123M 1s -2024-04-02T21:23:18Z #14 1.511 10850K .......... .......... .......... .......... .......... 8% 116M 1s -2024-04-02T21:23:18Z #14 1.511 10900K .......... .......... .......... .......... .......... 8% 129M 1s -2024-04-02T21:23:18Z #14 1.511 10950K .......... .......... .......... .......... .......... 8% 106M 1s -2024-04-02T21:23:18Z #14 1.511 11000K .......... .......... .......... .......... .......... 8% 141M 1s -2024-04-02T21:23:18Z #14 1.511 11050K .......... .......... .......... .......... .......... 8% 118M 1s -2024-04-02T21:23:18Z #14 1.511 11100K .......... .......... .......... .......... .......... 8% 117M 1s -2024-04-02T21:23:18Z #14 1.511 11150K .......... .......... .......... .......... .......... 8% 108M 1s -2024-04-02T21:23:18Z #14 1.511 11200K .......... .......... .......... .......... .......... 8% 59.0M 1s -2024-04-02T21:23:18Z #14 1.512 11250K .......... .......... .......... .......... .......... 8% 136M 1s -2024-04-02T21:23:18Z #14 1.512 11300K .......... .......... .......... .......... .......... 8% 78.0M 1s -2024-04-02T21:23:18Z #14 1.515 11350K .......... .......... .......... .......... .......... 8% 128M 1s -2024-04-02T21:23:18Z #14 1.515 11400K .......... .......... .......... .......... .......... 9% 115M 1s -2024-04-02T21:23:18Z #14 1.515 11450K .......... .......... .......... .......... .......... 9% 116M 1s -2024-04-02T21:23:18Z #14 1.515 11500K .......... .......... .......... .......... .......... 9% 133M 1s -2024-04-02T21:23:18Z #14 1.515 11550K .......... .......... .......... .......... .......... 9% 119M 1s -2024-04-02T21:23:18Z #14 1.515 11600K .......... .......... .......... .......... .......... 9% 84.9M 1s -2024-04-02T21:23:18Z #14 1.519 11650K .......... .......... .......... .......... .......... 9% 126M 1s -2024-04-02T21:23:18Z #14 1.519 11700K .......... .......... .......... .......... .......... 9% 117M 1s -2024-04-02T21:23:18Z #14 1.519 11750K .......... .......... .......... .......... .......... 9% 107M 1s -2024-04-02T21:23:18Z #14 1.519 11800K .......... .......... .......... .......... .......... 9% 118M 1s -2024-04-02T21:23:18Z #14 1.519 11850K .......... .......... .......... .......... .......... 9% 123M 1s -2024-04-02T21:23:18Z #14 1.519 11900K .......... .......... .......... .......... .......... 9% 122M 1s -2024-04-02T21:23:18Z #14 1.519 11950K .......... .......... .......... .......... .......... 9% 120M 1s -2024-04-02T21:23:18Z #14 1.519 12000K .......... .......... .......... .......... .......... 9% 134M 1s -2024-04-02T21:23:18Z #14 1.519 12050K .......... .......... .......... .......... .......... 9% 102M 1s -2024-04-02T21:23:18Z #14 1.519 12100K .......... .......... .......... .......... .......... 9% 54.4M 1s -2024-04-02T21:23:18Z #14 1.523 12150K .......... .......... .......... .......... .......... 9% 107M 1s -2024-04-02T21:23:18Z #14 1.523 12200K .......... .......... .......... .......... .......... 9% 123M 1s -2024-04-02T21:23:18Z #14 1.523 12250K .......... .......... .......... .......... .......... 9% 139M 1s -2024-04-02T21:23:18Z #14 1.523 12300K .......... .......... .......... .......... .......... 9% 116M 1s -2024-04-02T21:23:18Z #14 1.523 12350K .......... .......... .......... .......... .......... 9% 125M 1s -2024-04-02T21:23:18Z #14 1.523 12400K .......... .......... .......... .......... .......... 9% 110M 1s -2024-04-02T21:23:18Z #14 1.523 12450K .......... .......... .......... .......... .......... 9% 125M 1s -2024-04-02T21:23:18Z #14 1.523 12500K .......... .......... .......... .......... .......... 9% 59.2M 1s -2024-04-02T21:23:18Z #14 1.527 12550K .......... .......... .......... .......... .......... 9% 127M 1s -2024-04-02T21:23:18Z #14 1.527 12600K .......... .......... .......... .......... .......... 9% 109M 1s -2024-04-02T21:23:18Z #14 1.527 12650K .......... .......... .......... .......... .......... 10% 140M 1s -2024-04-02T21:23:18Z #14 1.527 12700K .......... .......... .......... .......... .......... 10% 117M 1s -2024-04-02T21:23:18Z #14 1.527 12750K .......... .......... .......... .......... .......... 10% 109M 1s -2024-04-02T21:23:18Z #14 1.527 12800K .......... .......... .......... .......... .......... 10% 133M 1s -2024-04-02T21:23:18Z #14 1.527 12850K .......... .......... .......... .......... .......... 10% 154M 1s -2024-04-02T21:23:18Z #14 1.527 12900K .......... .......... .......... .......... .......... 10% 106M 1s -2024-04-02T21:23:18Z #14 1.527 12950K .......... .......... .......... .......... .......... 10% 85.8M 1s -2024-04-02T21:23:18Z #14 1.528 13000K .......... .......... .......... .......... .......... 10% 132M 1s -2024-04-02T21:23:18Z #14 1.528 13050K .......... .......... .......... .......... .......... 10% 101M 1s -2024-04-02T21:23:18Z #14 1.531 13100K .......... .......... .......... .......... .......... 10% 106M 1s -2024-04-02T21:23:18Z #14 1.531 13150K .......... .......... .......... .......... .......... 10% 125M 1s -2024-04-02T21:23:18Z #14 1.531 13200K .......... .......... .......... .......... .......... 10% 105M 1s -2024-04-02T21:23:18Z #14 1.531 13250K .......... .......... .......... .......... .......... 10% 121M 1s -2024-04-02T21:23:18Z #14 1.531 13300K .......... .......... .......... .......... .......... 10% 137M 1s -2024-04-02T21:23:18Z #14 1.531 13350K .......... .......... .......... .......... .......... 10% 113M 1s -2024-04-02T21:23:18Z #14 1.531 13400K .......... .......... .......... .......... .......... 10% 155M 1s -2024-04-02T21:23:18Z #14 1.535 13450K .......... .......... .......... .......... .......... 10% 101M 1s -2024-04-02T21:23:18Z #14 1.535 13500K .......... .......... .......... .......... .......... 10% 126M 1s -2024-04-02T21:23:18Z #14 1.535 13550K .......... .......... .......... .......... .......... 10% 113M 1s -2024-04-02T21:23:18Z #14 1.535 13600K .......... .......... .......... .......... .......... 10% 136M 1s -2024-04-02T21:23:18Z #14 1.535 13650K .......... .......... .......... .......... .......... 10% 110M 1s -2024-04-02T21:23:18Z #14 1.535 13700K .......... .......... .......... .......... .......... 10% 118M 1s -2024-04-02T21:23:18Z #14 1.535 13750K .......... .......... .......... .......... .......... 10% 138M 1s -2024-04-02T21:23:18Z #14 1.535 13800K .......... .......... .......... .......... .......... 10% 118M 1s -2024-04-02T21:23:18Z #14 1.535 13850K .......... .......... .......... .......... .......... 10% 117M 1s -2024-04-02T21:23:18Z #14 1.535 13900K .......... .......... .......... .......... .......... 11% 63.5M 1s -2024-04-02T21:23:18Z #14 1.536 13950K .......... .......... .......... .......... .......... 11% 24.5M 1s -2024-04-02T21:23:18Z #14 1.539 14000K .......... .......... .......... .......... .......... 11% 108M 1s -2024-04-02T21:23:18Z #14 1.539 14050K .......... .......... .......... .......... .......... 11% 146M 1s -2024-04-02T21:23:18Z #14 1.539 14100K .......... .......... .......... .......... .......... 11% 130M 1s -2024-04-02T21:23:18Z #14 1.539 14150K .......... .......... .......... .......... .......... 11% 88.3M 1s -2024-04-02T21:23:18Z #14 1.540 14200K .......... .......... .......... .......... .......... 11% 22.3M 1s -2024-04-02T21:23:18Z #14 1.543 14250K .......... .......... .......... .......... .......... 11% 128M 1s -2024-04-02T21:23:18Z #14 1.543 14300K .......... .......... .......... .......... .......... 11% 108M 1s -2024-04-02T21:23:18Z #14 1.543 14350K .......... .......... .......... .......... .......... 11% 108M 1s -2024-04-02T21:23:18Z #14 1.543 14400K .......... .......... .......... .......... .......... 11% 153M 1s -2024-04-02T21:23:18Z #14 1.543 14450K .......... .......... .......... .......... .......... 11% 32.0M 1s -2024-04-02T21:23:18Z #14 1.547 14500K .......... .......... .......... .......... .......... 11% 129M 1s -2024-04-02T21:23:18Z #14 1.547 14550K .......... .......... .......... .......... .......... 11% 122M 1s -2024-04-02T21:23:18Z #14 1.547 14600K .......... .......... .......... .......... .......... 11% 134M 1s -2024-04-02T21:23:18Z #14 1.547 14650K .......... .......... .......... .......... .......... 11% 126M 1s -2024-04-02T21:23:18Z #14 1.547 14700K .......... .......... .......... .......... .......... 11% 135M 1s -2024-04-02T21:23:18Z #14 1.547 14750K .......... .......... .......... .......... .......... 11% 119M 1s -2024-04-02T21:23:18Z #14 1.547 14800K .......... .......... .......... .......... .......... 11% 5.65M 1s -2024-04-02T21:23:18Z #14 1.568 14850K .......... .......... .......... .......... .......... 11% 164M 1s -2024-04-02T21:23:18Z #14 1.568 14900K .......... .......... .......... .......... .......... 11% 120M 1s -2024-04-02T21:23:18Z #14 1.568 14950K .......... .......... .......... .......... .......... 11% 100M 1s -2024-04-02T21:23:18Z #14 1.568 15000K .......... .......... .......... .......... .......... 11% 133M 1s -2024-04-02T21:23:18Z #14 1.568 15050K .......... .......... .......... .......... .......... 11% 102M 1s -2024-04-02T21:23:18Z #14 1.568 15100K .......... .......... .......... .......... .......... 11% 123M 1s -2024-04-02T21:23:18Z #14 1.568 15150K .......... .......... .......... .......... .......... 11% 98.8M 1s -2024-04-02T21:23:18Z #14 1.568 15200K .......... .......... .......... .......... .......... 12% 122M 1s -2024-04-02T21:23:18Z #14 1.568 15250K .......... .......... .......... .......... .......... 12% 73.8M 1s -2024-04-02T21:23:18Z #14 1.568 15300K .......... .......... .......... .......... .......... 12% 125M 1s -2024-04-02T21:23:18Z #14 1.568 15350K .......... .......... .......... .......... .......... 12% 144M 1s -2024-04-02T21:23:18Z #14 1.568 15400K .......... .......... .......... .......... .......... 12% 136M 1s -2024-04-02T21:23:18Z #14 1.568 15450K .......... .......... .......... .......... .......... 12% 150M 1s -2024-04-02T21:23:18Z #14 1.568 15500K .......... .......... .......... .......... .......... 12% 136M 1s -2024-04-02T21:23:18Z #14 1.568 15550K .......... .......... .......... .......... .......... 12% 151M 1s -2024-04-02T21:23:18Z #14 1.568 15600K .......... .......... .......... .......... .......... 12% 167M 1s -2024-04-02T21:23:18Z #14 1.568 15650K .......... .......... .......... .......... .......... 12% 156M 1s -2024-04-02T21:23:18Z #14 1.568 15700K .......... .......... .......... .......... .......... 12% 147M 1s -2024-04-02T21:23:18Z #14 1.568 15750K .......... .......... .......... .......... .......... 12% 143M 1s -2024-04-02T21:23:18Z #14 1.568 15800K .......... .......... .......... .......... .......... 12% 131M 1s -2024-04-02T21:23:18Z #14 1.568 15850K .......... .......... .......... .......... .......... 12% 156M 1s -2024-04-02T21:23:18Z #14 1.568 15900K .......... .......... .......... .......... .......... 12% 127M 1s -2024-04-02T21:23:18Z #14 1.568 15950K .......... .......... .......... .......... .......... 12% 157M 1s -2024-04-02T21:23:18Z #14 1.568 16000K .......... .......... .......... .......... .......... 12% 139M 1s -2024-04-02T21:23:18Z #14 1.568 16050K .......... .......... .......... .......... .......... 12% 164M 1s -2024-04-02T21:23:18Z #14 1.568 16100K .......... .......... .......... .......... .......... 12% 124M 1s -2024-04-02T21:23:18Z #14 1.568 16150K .......... .......... .......... .......... .......... 12% 165M 1s -2024-04-02T21:23:18Z #14 1.568 16200K .......... .......... .......... .......... .......... 12% 141M 1s -2024-04-02T21:23:18Z #14 1.568 16250K .......... .......... .......... .......... .......... 12% 168M 1s -2024-04-02T21:23:18Z #14 1.568 16300K .......... .......... .......... .......... .......... 12% 136M 1s -2024-04-02T21:23:18Z #14 1.568 16350K .......... .......... .......... .......... .......... 12% 153M 1s -2024-04-02T21:23:18Z #14 1.568 16400K .......... .......... .......... .......... .......... 12% 120M 1s -2024-04-02T21:23:18Z #14 1.571 16450K .......... .......... .......... .......... .......... 13% 173M 1s -2024-04-02T21:23:18Z #14 1.571 16500K .......... .......... .......... .......... .......... 13% 122M 1s -2024-04-02T21:23:18Z #14 1.571 16550K .......... .......... .......... .......... .......... 13% 173M 1s -2024-04-02T21:23:18Z #14 1.571 16600K .......... .......... .......... .......... .......... 13% 129M 1s -2024-04-02T21:23:18Z #14 1.571 16650K .......... .......... .......... .......... .......... 13% 121M 1s -2024-04-02T21:23:18Z #14 1.571 16700K .......... .......... .......... .......... .......... 13% 116M 1s -2024-04-02T21:23:18Z #14 1.571 16750K .......... .......... .......... .......... .......... 13% 119M 1s -2024-04-02T21:23:18Z #14 1.571 16800K .......... .......... .......... .......... .......... 13% 144M 1s -2024-04-02T21:23:18Z #14 1.571 16850K .......... .......... .......... .......... .......... 13% 136M 1s -2024-04-02T21:23:18Z #14 1.571 16900K .......... .......... .......... .......... .......... 13% 87.1M 1s -2024-04-02T21:23:18Z #14 1.574 16950K .......... .......... .......... .......... .......... 13% 149M 1s -2024-04-02T21:23:18Z #14 1.574 17000K .......... .......... .......... .......... .......... 13% 128M 1s -2024-04-02T21:23:18Z #14 1.574 17050K .......... .......... .......... .......... .......... 13% 147M 1s -2024-04-02T21:23:18Z #14 1.574 17100K .......... .......... .......... .......... .......... 13% 110M 1s -2024-04-02T21:23:18Z #14 1.574 17150K .......... .......... .......... .......... .......... 13% 135M 1s -2024-04-02T21:23:18Z #14 1.574 17200K .......... .......... .......... .......... .......... 13% 111M 1s -2024-04-02T21:23:18Z #14 1.574 17250K .......... .......... .......... .......... .......... 13% 140M 1s -2024-04-02T21:23:18Z #14 1.574 17300K .......... .......... .......... .......... .......... 13% 643K 2s -2024-04-02T21:23:18Z #14 1.659 17350K .......... .......... .......... .......... .......... 13% 128M 2s -2024-04-02T21:23:18Z #14 1.659 17400K .......... .......... .......... .......... .......... 13% 120M 2s -2024-04-02T21:23:18Z #14 1.659 17450K .......... .......... .......... .......... .......... 13% 101M 2s -2024-04-02T21:23:18Z #14 1.659 17500K .......... .......... .......... .......... .......... 13% 116M 2s -2024-04-02T21:23:18Z #14 1.659 17550K .......... .......... .......... .......... .......... 13% 119M 2s -2024-04-02T21:23:18Z #14 1.659 17600K .......... .......... .......... .......... .......... 13% 100M 2s -2024-04-02T21:23:18Z #14 1.659 17650K .......... .......... .......... .......... .......... 13% 114M 2s -2024-04-02T21:23:18Z #14 1.659 17700K .......... .......... .......... .......... .......... 14% 118M 2s -2024-04-02T21:23:18Z #14 1.659 17750K .......... .......... .......... .......... .......... 14% 137M 2s -2024-04-02T21:23:18Z #14 1.659 17800K .......... .......... .......... .......... .......... 14% 156M 2s -2024-04-02T21:23:18Z #14 1.659 17850K .......... .......... .......... .......... .......... 14% 140M 2s -2024-04-02T21:23:18Z #14 1.659 17900K .......... .......... .......... .......... .......... 14% 124M 2s -2024-04-02T21:23:18Z #14 1.659 17950K .......... .......... .......... .......... .......... 14% 124M 2s -2024-04-02T21:23:18Z #14 1.659 18000K .......... .......... .......... .......... .......... 14% 127M 2s -2024-04-02T21:23:18Z #14 1.659 18050K .......... .......... .......... .......... .......... 14% 130M 2s -2024-04-02T21:23:18Z #14 1.659 18100K .......... .......... .......... .......... .......... 14% 103M 2s -2024-04-02T21:23:18Z #14 1.659 18150K .......... .......... .......... .......... .......... 14% 131M 2s -2024-04-02T21:23:18Z #14 1.659 18200K .......... .......... .......... .......... .......... 14% 108M 2s -2024-04-02T21:23:18Z #14 1.659 18250K .......... .......... .......... .......... .......... 14% 6.40M 2s -2024-04-02T21:23:18Z #14 1.671 18300K .......... .......... .......... .......... .......... 14% 108M 2s -2024-04-02T21:23:18Z #14 1.671 18350K .......... .......... .......... .......... .......... 14% 118M 2s -2024-04-02T21:23:18Z #14 1.671 18400K .......... .......... .......... .......... .......... 14% 128M 2s -2024-04-02T21:23:18Z #14 1.671 18450K .......... .......... .......... .......... .......... 14% 108M 2s -2024-04-02T21:23:18Z #14 1.671 18500K .......... .......... .......... .......... .......... 14% 125M 2s -2024-04-02T21:23:18Z #14 1.671 18550K .......... .......... .......... .......... .......... 14% 127M 2s -2024-04-02T21:23:18Z #14 1.671 18600K .......... .......... .......... .......... .......... 14% 113M 2s -2024-04-02T21:23:18Z #14 1.671 18650K .......... .......... .......... .......... .......... 14% 131M 2s -2024-04-02T21:23:18Z #14 1.671 18700K .......... .......... .......... .......... .......... 14% 123M 2s -2024-04-02T21:23:18Z #14 1.671 18750K .......... .......... .......... .......... .......... 14% 165M 2s -2024-04-02T21:23:18Z #14 1.671 18800K .......... .......... .......... .......... .......... 14% 113M 2s -2024-04-02T21:23:18Z #14 1.671 18850K .......... .......... .......... .......... .......... 14% 6.05M 2s -2024-04-02T21:23:18Z #14 1.683 18900K .......... .......... .......... .......... .......... 14% 159M 2s -2024-04-02T21:23:18Z #14 1.683 18950K .......... .......... .......... .......... .......... 14% 180M 2s -2024-04-02T21:23:18Z #14 1.683 19000K .......... .......... .......... .......... .......... 15% 137M 2s -2024-04-02T21:23:18Z #14 1.683 19050K .......... .......... .......... .......... .......... 15% 146M 2s -2024-04-02T21:23:18Z #14 1.683 19100K .......... .......... .......... .......... .......... 15% 144M 2s -2024-04-02T21:23:18Z #14 1.683 19150K .......... .......... .......... .......... .......... 15% 130M 2s -2024-04-02T21:23:18Z #14 1.683 19200K .......... .......... .......... .......... .......... 15% 30.2M 2s -2024-04-02T21:23:18Z #14 1.683 19250K .......... .......... .......... .......... .......... 15% 177M 2s -2024-04-02T21:23:18Z #14 1.683 19300K .......... .......... .......... .......... .......... 15% 8.24M 2s -2024-04-02T21:23:18Z #14 1.691 19350K .......... .......... .......... .......... .......... 15% 137M 2s -2024-04-02T21:23:18Z #14 1.691 19400K .......... .......... .......... .......... .......... 15% 151M 2s -2024-04-02T21:23:18Z #14 1.691 19450K .......... .......... .......... .......... .......... 15% 120M 2s -2024-04-02T21:23:18Z #14 1.691 19500K .......... .......... .......... .......... .......... 15% 121M 2s -2024-04-02T21:23:18Z #14 1.692 19550K .......... .......... .......... .......... .......... 15% 22.9M 2s -2024-04-02T21:23:18Z #14 1.695 19600K .......... .......... .......... .......... .......... 15% 140M 2s -2024-04-02T21:23:18Z #14 1.695 19650K .......... .......... .......... .......... .......... 15% 112M 2s -2024-04-02T21:23:18Z #14 1.695 19700K .......... .......... .......... .......... .......... 15% 146M 2s -2024-04-02T21:23:18Z #14 1.695 19750K .......... .......... .......... .......... .......... 15% 146M 2s -2024-04-02T21:23:18Z #14 1.695 19800K .......... .......... .......... .......... .......... 15% 115M 2s -2024-04-02T21:23:18Z #14 1.695 19850K .......... .......... .......... .......... .......... 15% 124M 2s -2024-04-02T21:23:18Z #14 1.695 19900K .......... .......... .......... .......... .......... 15% 125M 2s -2024-04-02T21:23:18Z #14 1.699 19950K .......... .......... .......... .......... .......... 15% 115M 2s -2024-04-02T21:23:18Z #14 1.699 20000K .......... .......... .......... .......... .......... 15% 137M 2s -2024-04-02T21:23:18Z #14 1.699 20050K .......... .......... .......... .......... .......... 15% 135M 2s -2024-04-02T21:23:18Z #14 1.699 20100K .......... .......... .......... .......... .......... 15% 119M 2s -2024-04-02T21:23:18Z #14 1.699 20150K .......... .......... .......... .......... .......... 15% 133M 2s -2024-04-02T21:23:18Z #14 1.699 20200K .......... .......... .......... .......... .......... 15% 134M 2s -2024-04-02T21:23:18Z #14 1.699 20250K .......... .......... .......... .......... .......... 16% 113M 2s -2024-04-02T21:23:18Z #14 1.699 20300K .......... .......... .......... .......... .......... 16% 142M 2s -2024-04-02T21:23:18Z #14 1.699 20350K .......... .......... .......... .......... .......... 16% 146M 2s -2024-04-02T21:23:18Z #14 1.699 20400K .......... .......... .......... .......... .......... 16% 133M 2s -2024-04-02T21:23:18Z #14 1.699 20450K .......... .......... .......... .......... .......... 16% 85.5M 2s -2024-04-02T21:23:18Z #14 1.699 20500K .......... .......... .......... .......... .......... 16% 33.0M 2s -2024-04-02T21:23:18Z #14 1.701 20550K .......... .......... .......... .......... .......... 16% 43.5M 2s -2024-04-02T21:23:18Z #14 1.702 20600K .......... .......... .......... .......... .......... 16% 169M 2s -2024-04-02T21:23:18Z #14 1.702 20650K .......... .......... .......... .......... .......... 16% 41.4M 2s -2024-04-02T21:23:18Z #14 1.703 20700K .......... .......... .......... .......... .......... 16% 88.6M 2s -2024-04-02T21:23:18Z #14 1.707 20750K .......... .......... .......... .......... .......... 16% 134M 2s -2024-04-02T21:23:18Z #14 1.707 20800K .......... .......... .......... .......... .......... 16% 101M 2s -2024-04-02T21:23:18Z #14 1.707 20850K .......... .......... .......... .......... .......... 16% 113M 2s -2024-04-02T21:23:18Z #14 1.707 20900K .......... .......... .......... .......... .......... 16% 124M 2s -2024-04-02T21:23:18Z #14 1.707 20950K .......... .......... .......... .......... .......... 16% 124M 2s -2024-04-02T21:23:18Z #14 1.707 21000K .......... .......... .......... .......... .......... 16% 125M 2s -2024-04-02T21:23:18Z #14 1.707 21050K .......... .......... .......... .......... .......... 16% 104M 2s -2024-04-02T21:23:18Z #14 1.707 21100K .......... .......... .......... .......... .......... 16% 94.4M 2s -2024-04-02T21:23:18Z #14 1.711 21150K .......... .......... .......... .......... .......... 16% 135M 2s -2024-04-02T21:23:18Z #14 1.711 21200K .......... .......... .......... .......... .......... 16% 118M 2s -2024-04-02T21:23:18Z #14 1.711 21250K .......... .......... .......... .......... .......... 16% 126M 2s -2024-04-02T21:23:18Z #14 1.711 21300K .......... .......... .......... .......... .......... 16% 134M 2s -2024-04-02T21:23:18Z #14 1.711 21350K .......... .......... .......... .......... .......... 16% 115M 2s -2024-04-02T21:23:18Z #14 1.711 21400K .......... .......... .......... .......... .......... 16% 133M 2s -2024-04-02T21:23:18Z #14 1.711 21450K .......... .......... .......... .......... .......... 16% 122M 2s -2024-04-02T21:23:18Z #14 1.711 21500K .......... .......... .......... .......... .......... 16% 109M 2s -2024-04-02T21:23:18Z #14 1.711 21550K .......... .......... .......... .......... .......... 17% 160M 2s -2024-04-02T21:23:18Z #14 1.711 21600K .......... .......... .......... .......... .......... 17% 67.9M 2s -2024-04-02T21:23:18Z #14 1.711 21650K .......... .......... .......... .......... .......... 17% 95.7M 2s -2024-04-02T21:23:18Z #14 1.715 21700K .......... .......... .......... .......... .......... 17% 83.7M 2s -2024-04-02T21:23:18Z #14 1.715 21750K .......... .......... .......... .......... .......... 17% 119M 2s -2024-04-02T21:23:18Z #14 1.715 21800K .......... .......... .......... .......... .......... 17% 106M 2s -2024-04-02T21:23:18Z #14 1.715 21850K .......... .......... .......... .......... .......... 17% 132M 2s -2024-04-02T21:23:18Z #14 1.715 21900K .......... .......... .......... .......... .......... 17% 128M 2s -2024-04-02T21:23:18Z #14 1.715 21950K .......... .......... .......... .......... .......... 17% 130M 2s -2024-04-02T21:23:18Z #14 1.715 22000K .......... .......... .......... .......... .......... 17% 77.2M 2s -2024-04-02T21:23:18Z #14 1.719 22050K .......... .......... .......... .......... .......... 17% 123M 2s -2024-04-02T21:23:18Z #14 1.719 22100K .......... .......... .......... .......... .......... 17% 111M 2s -2024-04-02T21:23:18Z #14 1.719 22150K .......... .......... .......... .......... .......... 17% 122M 2s -2024-04-02T21:23:18Z #14 1.719 22200K .......... .......... .......... .......... .......... 17% 122M 2s -2024-04-02T21:23:18Z #14 1.719 22250K .......... .......... .......... .......... .......... 17% 117M 2s -2024-04-02T21:23:18Z #14 1.719 22300K .......... .......... .......... .......... .......... 17% 124M 2s -2024-04-02T21:23:18Z #14 1.719 22350K .......... .......... .......... .......... .......... 17% 134M 2s -2024-04-02T21:23:18Z #14 1.719 22400K .......... .......... .......... .......... .......... 17% 135M 2s -2024-04-02T21:23:18Z #14 1.719 22450K .......... .......... .......... .......... .......... 17% 113M 2s -2024-04-02T21:23:18Z #14 1.719 22500K .......... .......... .......... .......... .......... 17% 71.9M 2s -2024-04-02T21:23:18Z #14 1.723 22550K .......... .......... .......... .......... .......... 17% 122M 2s -2024-04-02T21:23:18Z #14 1.723 22600K .......... .......... .......... .......... .......... 17% 131M 2s -2024-04-02T21:23:18Z #14 1.723 22650K .......... .......... .......... .......... .......... 17% 131M 2s -2024-04-02T21:23:18Z #14 1.723 22700K .......... .......... .......... .......... .......... 17% 126M 2s -2024-04-02T21:23:18Z #14 1.723 22750K .......... .......... .......... .......... .......... 17% 107M 2s -2024-04-02T21:23:18Z #14 1.723 22800K .......... .......... .......... .......... .......... 18% 131M 2s -2024-04-02T21:23:18Z #14 1.723 22850K .......... .......... .......... .......... .......... 18% 114M 2s -2024-04-02T21:23:18Z #14 1.723 22900K .......... .......... .......... .......... .......... 18% 123M 2s -2024-04-02T21:23:18Z #14 1.723 22950K .......... .......... .......... .......... .......... 18% 80.6M 2s -2024-04-02T21:23:18Z #14 1.723 23000K .......... .......... .......... .......... .......... 18% 125M 2s -2024-04-02T21:23:18Z #14 1.724 23050K .......... .......... .......... .......... .......... 18% 173M 2s -2024-04-02T21:23:18Z #14 1.724 23100K .......... .......... .......... .......... .......... 18% 169M 2s -2024-04-02T21:23:18Z #14 1.724 23150K .......... .......... .......... .......... .......... 18% 168M 2s -2024-04-02T21:23:18Z #14 1.725 23200K .......... .......... .......... .......... .......... 18% 154M 2s -2024-04-02T21:23:18Z #14 1.725 23250K .......... .......... .......... .......... .......... 18% 185M 2s -2024-04-02T21:23:18Z #14 1.725 23300K .......... .......... .......... .......... .......... 18% 138M 2s -2024-04-02T21:23:18Z #14 1.725 23350K .......... .......... .......... .......... .......... 18% 169M 2s -2024-04-02T21:23:18Z #14 1.726 23400K .......... .......... .......... .......... .......... 18% 148M 2s -2024-04-02T21:23:18Z #14 1.726 23450K .......... .......... .......... .......... .......... 18% 147M 2s -2024-04-02T21:23:18Z #14 1.727 23500K .......... .......... .......... .......... .......... 18% 158M 2s -2024-04-02T21:23:18Z #14 1.727 23550K .......... .......... .......... .......... .......... 18% 160M 2s -2024-04-02T21:23:18Z #14 1.727 23600K .......... .......... .......... .......... .......... 18% 137M 2s -2024-04-02T21:23:18Z #14 1.727 23650K .......... .......... .......... .......... .......... 18% 164M 2s -2024-04-02T21:23:18Z #14 1.728 23700K .......... .......... .......... .......... .......... 18% 172M 2s -2024-04-02T21:23:18Z #14 1.729 23750K .......... .......... .......... .......... .......... 18% 144M 2s -2024-04-02T21:23:18Z #14 1.729 23800K .......... .......... .......... .......... .......... 18% 121M 2s -2024-04-02T21:23:18Z #14 1.729 23850K .......... .......... .......... .......... .......... 18% 153M 2s -2024-04-02T21:23:18Z #14 1.729 23900K .......... .......... .......... .......... .......... 18% 141M 2s -2024-04-02T21:23:18Z #14 1.730 23950K .......... .......... .......... .......... .......... 18% 121M 2s -2024-04-02T21:23:18Z #14 1.730 24000K .......... .......... .......... .......... .......... 18% 139M 2s -2024-04-02T21:23:18Z #14 1.731 24050K .......... .......... .......... .......... .......... 19% 158M 2s -2024-04-02T21:23:18Z #14 1.731 24100K .......... .......... .......... .......... .......... 19% 157M 2s -2024-04-02T21:23:18Z #14 1.731 24150K .......... .......... .......... .......... .......... 19% 106M 2s -2024-04-02T21:23:18Z #14 1.732 24200K .......... .......... .......... .......... .......... 19% 134M 2s -2024-04-02T21:23:18Z #14 1.732 24250K .......... .......... .......... .......... .......... 19% 121M 2s -2024-04-02T21:23:18Z #14 1.740 24300K .......... .......... .......... .......... .......... 19% 152M 2s -2024-04-02T21:23:18Z #14 1.740 24350K .......... .......... .......... .......... .......... 19% 137M 2s -2024-04-02T21:23:18Z #14 1.740 24400K .......... .......... .......... .......... .......... 19% 158M 2s -2024-04-02T21:23:18Z #14 1.740 24450K .......... .......... .......... .......... .......... 19% 135M 2s -2024-04-02T21:23:18Z #14 1.740 24500K .......... .......... .......... .......... .......... 19% 123M 2s -2024-04-02T21:23:18Z #14 1.740 24550K .......... .......... .......... .......... .......... 19% 123M 2s -2024-04-02T21:23:18Z #14 1.740 24600K .......... .......... .......... .......... .......... 19% 106M 2s -2024-04-02T21:23:18Z #14 1.740 24650K .......... .......... .......... .......... .......... 19% 110M 2s -2024-04-02T21:23:18Z #14 1.740 24700K .......... .......... .......... .......... .......... 19% 138M 1s -2024-04-02T21:23:18Z #14 1.740 24750K .......... .......... .......... .......... .......... 19% 135M 1s -2024-04-02T21:23:18Z #14 1.740 24800K .......... .......... .......... .......... .......... 19% 114M 1s -2024-04-02T21:23:18Z #14 1.740 24850K .......... .......... .......... .......... .......... 19% 133M 1s -2024-04-02T21:23:18Z #14 1.740 24900K .......... .......... .......... .......... .......... 19% 105M 1s -2024-04-02T21:23:18Z #14 1.740 24950K .......... .......... .......... .......... .......... 19% 125M 1s -2024-04-02T21:23:18Z #14 1.740 25000K .......... .......... .......... .......... .......... 19% 119M 1s -2024-04-02T21:23:18Z #14 1.740 25050K .......... .......... .......... .......... .......... 19% 151M 1s -2024-04-02T21:23:18Z #14 1.740 25100K .......... .......... .......... .......... .......... 19% 149M 1s -2024-04-02T21:23:18Z #14 1.740 25150K .......... .......... .......... .......... .......... 19% 95.8M 1s -2024-04-02T21:23:18Z #14 1.740 25200K .......... .......... .......... .......... .......... 19% 116M 1s -2024-04-02T21:23:18Z #14 1.740 25250K .......... .......... .......... .......... .......... 19% 127M 1s -2024-04-02T21:23:18Z #14 1.740 25300K .......... .......... .......... .......... .......... 19% 112M 1s -2024-04-02T21:23:18Z #14 1.741 25350K .......... .......... .......... .......... .......... 20% 116M 1s -2024-04-02T21:23:18Z #14 1.741 25400K .......... .......... .......... .......... .......... 20% 122M 1s -2024-04-02T21:23:18Z #14 1.742 25450K .......... .......... .......... .......... .......... 20% 132M 1s -2024-04-02T21:23:18Z #14 1.742 25500K .......... .......... .......... .......... .......... 20% 119M 1s -2024-04-02T21:23:18Z #14 1.742 25550K .......... .......... .......... .......... .......... 20% 103M 1s -2024-04-02T21:23:18Z #14 1.742 25600K .......... .......... .......... .......... .......... 20% 116M 1s -2024-04-02T21:23:18Z #14 1.743 25650K .......... .......... .......... .......... .......... 20% 104M 1s -2024-04-02T21:23:18Z #14 1.743 25700K .......... .......... .......... .......... .......... 20% 121M 1s -2024-04-02T21:23:18Z #14 1.744 25750K .......... .......... .......... .......... .......... 20% 120M 1s -2024-04-02T21:23:18Z #14 1.744 25800K .......... .......... .......... .......... .......... 20% 105M 1s -2024-04-02T21:23:18Z #14 1.745 25850K .......... .......... .......... .......... .......... 20% 109M 1s -2024-04-02T21:23:18Z #14 1.745 25900K .......... .......... .......... .......... .......... 20% 127M 1s -2024-04-02T21:23:18Z #14 1.745 25950K .......... .......... .......... .......... .......... 20% 111M 1s -2024-04-02T21:23:18Z #14 1.746 26000K .......... .......... .......... .......... .......... 20% 118M 1s -2024-04-02T21:23:18Z #14 1.746 26050K .......... .......... .......... .......... .......... 20% 154M 1s -2024-04-02T21:23:18Z #14 1.747 26100K .......... .......... .......... .......... .......... 20% 129M 1s -2024-04-02T21:23:18Z #14 1.747 26150K .......... .......... .......... .......... .......... 20% 105M 1s -2024-04-02T21:23:18Z #14 1.747 26200K .......... .......... .......... .......... .......... 20% 140M 1s -2024-04-02T21:23:18Z #14 1.748 26250K .......... .......... .......... .......... .......... 20% 139M 1s -2024-04-02T21:23:18Z #14 1.748 26300K .......... .......... .......... .......... .......... 20% 142M 1s -2024-04-02T21:23:18Z #14 1.749 26350K .......... .......... .......... .......... .......... 20% 113M 1s -2024-04-02T21:23:18Z #14 1.749 26400K .......... .......... .......... .......... .......... 20% 146M 1s -2024-04-02T21:23:18Z #14 1.750 26450K .......... .......... .......... .......... .......... 20% 126M 1s -2024-04-02T21:23:18Z #14 1.750 26500K .......... .......... .......... .......... .......... 20% 141M 1s -2024-04-02T21:23:18Z #14 1.750 26550K .......... .......... .......... .......... .......... 20% 130M 1s -2024-04-02T21:23:18Z #14 1.751 26600K .......... .......... .......... .......... .......... 21% 109M 1s -2024-04-02T21:23:18Z #14 1.751 26650K .......... .......... .......... .......... .......... 21% 126M 1s -2024-04-02T21:23:18Z #14 1.751 26700K .......... .......... .......... .......... .......... 21% 111M 1s -2024-04-02T21:23:18Z #14 1.752 26750K .......... .......... .......... .......... .......... 21% 144M 1s -2024-04-02T21:23:18Z #14 1.753 26800K .......... .......... .......... .......... .......... 21% 113M 1s -2024-04-02T21:23:18Z #14 1.753 26850K .......... .......... .......... .......... .......... 21% 149M 1s -2024-04-02T21:23:18Z #14 1.753 26900K .......... .......... .......... .......... .......... 21% 128M 1s -2024-04-02T21:23:18Z #14 1.753 26950K .......... .......... .......... .......... .......... 21% 116M 1s -2024-04-02T21:23:18Z #14 1.754 27000K .......... .......... .......... .......... .......... 21% 148M 1s -2024-04-02T21:23:18Z #14 1.754 27050K .......... .......... .......... .......... .......... 21% 121M 1s -2024-04-02T21:23:18Z #14 1.754 27100K .......... .......... .......... .......... .......... 21% 144M 1s -2024-04-02T21:23:18Z #14 1.756 27150K .......... .......... .......... .......... .......... 21% 135M 1s -2024-04-02T21:23:18Z #14 1.756 27200K .......... .......... .......... .......... .......... 21% 118M 1s -2024-04-02T21:23:18Z #14 1.756 27250K .......... .......... .......... .......... .......... 21% 130M 1s -2024-04-02T21:23:18Z #14 1.756 27300K .......... .......... .......... .......... .......... 21% 126M 1s -2024-04-02T21:23:18Z #14 1.757 27350K .......... .......... .......... .......... .......... 21% 112M 1s -2024-04-02T21:23:18Z #14 1.757 27400K .......... .......... .......... .......... .......... 21% 132M 1s -2024-04-02T21:23:18Z #14 1.758 27450K .......... .......... .......... .......... .......... 21% 153M 1s -2024-04-02T21:23:18Z #14 1.759 27500K .......... .......... .......... .......... .......... 21% 115M 1s -2024-04-02T21:23:18Z #14 1.759 27550K .......... .......... .......... .......... .......... 21% 173M 1s -2024-04-02T21:23:18Z #14 1.759 27600K .......... .......... .......... .......... .......... 21% 120M 1s -2024-04-02T21:23:18Z #14 1.759 27650K .......... .......... .......... .......... .......... 21% 110M 1s -2024-04-02T21:23:18Z #14 1.760 27700K .......... .......... .......... .......... .......... 21% 5.83M 1s -2024-04-02T21:23:18Z #14 1.769 27750K .......... .......... .......... .......... .......... 21% 119M 1s -2024-04-02T21:23:18Z #14 1.769 27800K .......... .......... .......... .......... .......... 21% 127M 1s -2024-04-02T21:23:18Z #14 1.769 27850K .......... .......... .......... .......... .......... 22% 155M 1s -2024-04-02T21:23:18Z #14 1.769 27900K .......... .......... .......... .......... .......... 22% 116M 1s -2024-04-02T21:23:18Z #14 1.769 27950K .......... .......... .......... .......... .......... 22% 138M 1s -2024-04-02T21:23:18Z #14 1.769 28000K .......... .......... .......... .......... .......... 22% 146M 1s -2024-04-02T21:23:18Z #14 1.771 28050K .......... .......... .......... .......... .......... 22% 113M 1s -2024-04-02T21:23:18Z #14 1.771 28100K .......... .......... .......... .......... .......... 22% 157M 1s -2024-04-02T21:23:18Z #14 1.771 28150K .......... .......... .......... .......... .......... 22% 113M 1s -2024-04-02T21:23:18Z #14 1.771 28200K .......... .......... .......... .......... .......... 22% 144M 1s -2024-04-02T21:23:18Z #14 1.771 28250K .......... .......... .......... .......... .......... 22% 116M 1s -2024-04-02T21:23:18Z #14 1.772 28300K .......... .......... .......... .......... .......... 22% 153M 1s -2024-04-02T21:23:18Z #14 1.773 28350K .......... .......... .......... .......... .......... 22% 119M 1s -2024-04-02T21:23:18Z #14 1.773 28400K .......... .......... .......... .......... .......... 22% 128M 1s -2024-04-02T21:23:18Z #14 1.774 28450K .......... .......... .......... .......... .......... 22% 163M 1s -2024-04-02T21:23:18Z #14 1.774 28500K .......... .......... .......... .......... .......... 22% 142M 1s -2024-04-02T21:23:18Z #14 1.774 28550K .......... .......... .......... .......... .......... 22% 125M 1s -2024-04-02T21:23:18Z #14 1.774 28600K .......... .......... .......... .......... .......... 22% 138M 1s -2024-04-02T21:23:18Z #14 1.774 28650K .......... .......... .......... .......... .......... 22% 145M 1s -2024-04-02T21:23:18Z #14 1.776 28700K .......... .......... .......... .......... .......... 22% 134M 1s -2024-04-02T21:23:18Z #14 1.776 28750K .......... .......... .......... .......... .......... 22% 136M 1s -2024-04-02T21:23:18Z #14 1.777 28800K .......... .......... .......... .......... .......... 22% 20.4M 1s -2024-04-02T21:23:18Z #14 1.778 28850K .......... .......... .......... .......... .......... 22% 113M 1s -2024-04-02T21:23:18Z #14 1.778 28900K .......... .......... .......... .......... .......... 22% 155M 1s -2024-04-02T21:23:18Z #14 1.779 28950K .......... .......... .......... .......... .......... 22% 155M 1s -2024-04-02T21:23:18Z #14 1.780 29000K .......... .......... .......... .......... .......... 22% 153M 1s -2024-04-02T21:23:18Z #14 1.780 29050K .......... .......... .......... .......... .......... 22% 95.2M 1s -2024-04-02T21:23:18Z #14 1.780 29100K .......... .......... .......... .......... .......... 22% 135M 1s -2024-04-02T21:23:18Z #14 1.780 29150K .......... .......... .......... .......... .......... 23% 123M 1s -2024-04-02T21:23:18Z #14 1.780 29200K .......... .......... .......... .......... .......... 23% 165M 1s -2024-04-02T21:23:18Z #14 1.780 29250K .......... .......... .......... .......... .......... 23% 124M 1s -2024-04-02T21:23:18Z #14 1.781 29300K .......... .......... .......... .......... .......... 23% 154M 1s -2024-04-02T21:23:18Z #14 1.781 29350K .......... .......... .......... .......... .......... 23% 145M 1s -2024-04-02T21:23:18Z #14 1.781 29400K .......... .......... .......... .......... .......... 23% 140M 1s -2024-04-02T21:23:18Z #14 1.782 29450K .......... .......... .......... .......... .......... 23% 126M 1s -2024-04-02T21:23:18Z #14 1.782 29500K .......... .......... .......... .......... .......... 23% 136M 1s -2024-04-02T21:23:18Z #14 1.782 29550K .......... .......... .......... .......... .......... 23% 153M 1s -2024-04-02T21:23:18Z #14 1.783 29600K .......... .......... .......... .......... .......... 23% 125M 1s -2024-04-02T21:23:18Z #14 1.784 29650K .......... .......... .......... .......... .......... 23% 140M 1s -2024-04-02T21:23:18Z #14 1.784 29700K .......... .......... .......... .......... .......... 23% 123M 1s -2024-04-02T21:23:18Z #14 1.784 29750K .......... .......... .......... .......... .......... 23% 151M 1s -2024-04-02T21:23:18Z #14 1.784 29800K .......... .......... .......... .......... .......... 23% 119M 1s -2024-04-02T21:23:18Z #14 1.784 29850K .......... .......... .......... .......... .......... 23% 125M 1s -2024-04-02T21:23:18Z #14 1.786 29900K .......... .......... .......... .......... .......... 23% 155M 1s -2024-04-02T21:23:18Z #14 1.786 29950K .......... .......... .......... .......... .......... 23% 164M 1s -2024-04-02T21:23:18Z #14 1.786 30000K .......... .......... .......... .......... .......... 23% 109M 1s -2024-04-02T21:23:18Z #14 1.786 30050K .......... .......... .......... .......... .......... 23% 135M 1s -2024-04-02T21:23:18Z #14 1.786 30100K .......... .......... .......... .......... .......... 23% 151M 1s -2024-04-02T21:23:18Z #14 1.787 30150K .......... .......... .......... .......... .......... 23% 5.79M 1s -2024-04-02T21:23:18Z #14 1.795 30200K .......... .......... .......... .......... .......... 23% 130M 1s -2024-04-02T21:23:18Z #14 1.795 30250K .......... .......... .......... .......... .......... 23% 137M 1s -2024-04-02T21:23:18Z #14 1.796 30300K .......... .......... .......... .......... .......... 23% 141M 1s -2024-04-02T21:23:18Z #14 1.797 30350K .......... .......... .......... .......... .......... 23% 142M 1s -2024-04-02T21:23:18Z #14 1.801 30400K .......... .......... .......... .......... .......... 24% 152M 1s -2024-04-02T21:23:18Z #14 1.801 30450K .......... .......... .......... .......... .......... 24% 173M 1s -2024-04-02T21:23:18Z #14 1.801 30500K .......... .......... .......... .......... .......... 24% 155M 1s -2024-04-02T21:23:18Z #14 1.801 30550K .......... .......... .......... .......... .......... 24% 129M 1s -2024-04-02T21:23:18Z #14 1.801 30600K .......... .......... .......... .......... .......... 24% 164M 1s -2024-04-02T21:23:18Z #14 1.801 30650K .......... .......... .......... .......... .......... 24% 152M 1s -2024-04-02T21:23:18Z #14 1.801 30700K .......... .......... .......... .......... .......... 24% 152M 1s -2024-04-02T21:23:18Z #14 1.801 30750K .......... .......... .......... .......... .......... 24% 28.3M 1s -2024-04-02T21:23:18Z #14 1.801 30800K .......... .......... .......... .......... .......... 24% 132M 1s -2024-04-02T21:23:18Z #14 1.801 30850K .......... .......... .......... .......... .......... 24% 140M 1s -2024-04-02T21:23:18Z #14 1.801 30900K .......... .......... .......... .......... .......... 24% 133M 1s -2024-04-02T21:23:18Z #14 1.802 30950K .......... .......... .......... .......... .......... 24% 133M 1s -2024-04-02T21:23:18Z #14 1.802 31000K .......... .......... .......... .......... .......... 24% 148M 1s -2024-04-02T21:23:18Z #14 1.802 31050K .......... .......... .......... .......... .......... 24% 147M 1s -2024-04-02T21:23:18Z #14 1.802 31100K .......... .......... .......... .......... .......... 24% 131M 1s -2024-04-02T21:23:18Z #14 1.804 31150K .......... .......... .......... .......... .......... 24% 109M 1s -2024-04-02T21:23:18Z #14 1.804 31200K .......... .......... .......... .......... .......... 24% 142M 1s -2024-04-02T21:23:18Z #14 1.804 31250K .......... .......... .......... .......... .......... 24% 132M 1s -2024-04-02T21:23:18Z #14 1.807 31300K .......... .......... .......... .......... .......... 24% 165M 1s -2024-04-02T21:23:18Z #14 1.807 31350K .......... .......... .......... .......... .......... 24% 149M 1s -2024-04-02T21:23:18Z #14 1.807 31400K .......... .......... .......... .......... .......... 24% 199M 1s -2024-04-02T21:23:18Z #14 1.807 31450K .......... .......... .......... .......... .......... 24% 210M 1s -2024-04-02T21:23:18Z #14 1.807 31500K .......... .......... .......... .......... .......... 24% 176M 1s -2024-04-02T21:23:18Z #14 1.807 31550K .......... .......... .......... .......... .......... 24% 199M 1s -2024-04-02T21:23:18Z #14 1.807 31600K .......... .......... .......... .......... .......... 24% 208M 1s -2024-04-02T21:23:18Z #14 1.807 31650K .......... .......... .......... .......... .......... 25% 194M 1s -2024-04-02T21:23:18Z #14 1.807 31700K .......... .......... .......... .......... .......... 25% 183M 1s -2024-04-02T21:23:18Z #14 1.807 31750K .......... .......... .......... .......... .......... 25% 213M 1s -2024-04-02T21:23:18Z #14 1.807 31800K .......... .......... .......... .......... .......... 25% 13.5M 1s -2024-04-02T21:23:18Z #14 1.810 31850K .......... .......... .......... .......... .......... 25% 124M 1s -2024-04-02T21:23:18Z #14 1.811 31900K .......... .......... .......... .......... .......... 25% 53.1M 1s -2024-04-02T21:23:18Z #14 1.812 31950K .......... .......... .......... .......... .......... 25% 150M 1s -2024-04-02T21:23:18Z #14 1.812 32000K .......... .......... .......... .......... .......... 25% 145M 1s -2024-04-02T21:23:18Z #14 1.812 32050K .......... .......... .......... .......... .......... 25% 152M 1s -2024-04-02T21:23:18Z #14 1.812 32100K .......... .......... .......... .......... .......... 25% 138M 1s -2024-04-02T21:23:18Z #14 1.813 32150K .......... .......... .......... .......... .......... 25% 162M 1s -2024-04-02T21:23:18Z #14 1.813 32200K .......... .......... .......... .......... .......... 25% 165M 1s -2024-04-02T21:23:18Z #14 1.813 32250K .......... .......... .......... .......... .......... 25% 152M 1s -2024-04-02T21:23:18Z #14 1.814 32300K .......... .......... .......... .......... .......... 25% 128M 1s -2024-04-02T21:23:18Z #14 1.814 32350K .......... .......... .......... .......... .......... 25% 161M 1s -2024-04-02T21:23:18Z #14 1.814 32400K .......... .......... .......... .......... .......... 25% 149M 1s -2024-04-02T21:23:18Z #14 1.815 32450K .......... .......... .......... .......... .......... 25% 129M 1s -2024-04-02T21:23:18Z #14 1.815 32500K .......... .......... .......... .......... .......... 25% 155M 1s -2024-04-02T21:23:18Z #14 1.815 32550K .......... .......... .......... .......... .......... 25% 164M 1s -2024-04-02T21:23:18Z #14 1.816 32600K .......... .......... .......... .......... .......... 25% 137M 1s -2024-04-02T21:23:18Z #14 1.816 32650K .......... .......... .......... .......... .......... 25% 148M 1s -2024-04-02T21:23:18Z #14 1.816 32700K .......... .......... .......... .......... .......... 25% 133M 1s -2024-04-02T21:23:18Z #14 1.817 32750K .......... .......... .......... .......... .......... 25% 147M 1s -2024-04-02T21:23:18Z #14 1.817 32800K .......... .......... .......... .......... .......... 25% 171M 1s -2024-04-02T21:23:18Z #14 1.818 32850K .......... .......... .......... .......... .......... 25% 144M 1s -2024-04-02T21:23:18Z #14 1.818 32900K .......... .......... .......... .......... .......... 25% 163M 1s -2024-04-02T21:23:18Z #14 1.818 32950K .......... .......... .......... .......... .......... 26% 140M 1s -2024-04-02T21:23:18Z #14 1.819 33000K .......... .......... .......... .......... .......... 26% 170M 1s -2024-04-02T21:23:18Z #14 1.819 33050K .......... .......... .......... .......... .......... 26% 17.3M 1s -2024-04-02T21:23:18Z #14 1.822 33100K .......... .......... .......... .......... .......... 26% 164M 1s -2024-04-02T21:23:18Z #14 1.822 33150K .......... .......... .......... .......... .......... 26% 144M 1s -2024-04-02T21:23:18Z #14 1.822 33200K .......... .......... .......... .......... .......... 26% 164M 1s -2024-04-02T21:23:18Z #14 1.823 33250K .......... .......... .......... .......... .......... 26% 153M 1s -2024-04-02T21:23:18Z #14 1.823 33300K .......... .......... .......... .......... .......... 26% 80.0M 1s -2024-04-02T21:23:18Z #14 1.824 33350K .......... .......... .......... .......... .......... 26% 68.2M 1s -2024-04-02T21:23:18Z #14 1.824 33400K .......... .......... .......... .......... .......... 26% 99.7M 1s -2024-04-02T21:23:18Z #14 1.825 33450K .......... .......... .......... .......... .......... 26% 97.0M 1s -2024-04-02T21:23:18Z #14 1.825 33500K .......... .......... .......... .......... .......... 26% 143M 1s -2024-04-02T21:23:18Z #14 1.826 33550K .......... .......... .......... .......... .......... 26% 115M 1s -2024-04-02T21:23:18Z #14 1.826 33600K .......... .......... .......... .......... .......... 26% 136M 1s -2024-04-02T21:23:18Z #14 1.826 33650K .......... .......... .......... .......... .......... 26% 128M 1s -2024-04-02T21:23:18Z #14 1.827 33700K .......... .......... .......... .......... .......... 26% 77.6M 1s -2024-04-02T21:23:18Z #14 1.828 33750K .......... .......... .......... .......... .......... 26% 70.9M 1s -2024-04-02T21:23:18Z #14 1.828 33800K .......... .......... .......... .......... .......... 26% 133M 1s -2024-04-02T21:23:18Z #14 1.829 33850K .......... .......... .......... .......... .......... 26% 110M 1s -2024-04-02T21:23:18Z #14 1.829 33900K .......... .......... .......... .......... .......... 26% 101M 1s -2024-04-02T21:23:18Z #14 1.830 33950K .......... .......... .......... .......... .......... 26% 120M 1s -2024-04-02T21:23:18Z #14 1.830 34000K .......... .......... .......... .......... .......... 26% 60.7M 1s -2024-04-02T21:23:18Z #14 1.831 34050K .......... .......... .......... .......... .......... 26% 75.8M 1s -2024-04-02T21:23:18Z #14 1.831 34100K .......... .......... .......... .......... .......... 26% 79.9M 1s -2024-04-02T21:23:18Z #14 1.832 34150K .......... .......... .......... .......... .......... 26% 6.63M 1s -2024-04-02T21:23:18Z #14 1.839 34200K .......... .......... .......... .......... .......... 27% 160M 1s -2024-04-02T21:23:18Z #14 1.839 34250K .......... .......... .......... .......... .......... 27% 134M 1s -2024-04-02T21:23:18Z #14 1.840 34300K .......... .......... .......... .......... .......... 27% 159M 1s -2024-04-02T21:23:18Z #14 1.840 34350K .......... .......... .......... .......... .......... 27% 156M 1s -2024-04-02T21:23:18Z #14 1.840 34400K .......... .......... .......... .......... .......... 27% 161M 1s -2024-04-02T21:23:18Z #14 1.841 34450K .......... .......... .......... .......... .......... 27% 139M 1s -2024-04-02T21:23:18Z #14 1.841 34500K .......... .......... .......... .......... .......... 27% 172M 1s -2024-04-02T21:23:18Z #14 1.842 34550K .......... .......... .......... .......... .......... 27% 148M 1s -2024-04-02T21:23:18Z #14 1.842 34600K .......... .......... .......... .......... .......... 27% 160M 1s -2024-04-02T21:23:18Z #14 1.842 34650K .......... .......... .......... .......... .......... 27% 147M 1s -2024-04-02T21:23:18Z #14 1.842 34700K .......... .......... .......... .......... .......... 27% 1011K 1s -2024-04-02T21:23:18Z #14 1.892 34750K .......... .......... .......... .......... .......... 27% 163M 1s -2024-04-02T21:23:18Z #14 1.892 34800K .......... .......... .......... .......... .......... 27% 125M 1s -2024-04-02T21:23:18Z #14 1.892 34850K .......... .......... .......... .......... .......... 27% 68.0M 1s -2024-04-02T21:23:18Z #14 1.894 34900K .......... .......... .......... .......... .......... 27% 116M 1s -2024-04-02T21:23:18Z #14 1.894 34950K .......... .......... .......... .......... .......... 27% 141M 1s -2024-04-02T21:23:18Z #14 1.894 35000K .......... .......... .......... .......... .......... 27% 154M 1s -2024-04-02T21:23:18Z #14 1.894 35050K .......... .......... .......... .......... .......... 27% 147M 1s -2024-04-02T21:23:18Z #14 1.895 35100K .......... .......... .......... .......... .......... 27% 122M 1s -2024-04-02T21:23:18Z #14 1.895 35150K .......... .......... .......... .......... .......... 27% 162M 1s -2024-04-02T21:23:18Z #14 1.896 35200K .......... .......... .......... .......... .......... 27% 126M 1s -2024-04-02T21:23:18Z #14 1.896 35250K .......... .......... .......... .......... .......... 27% 167M 1s -2024-04-02T21:23:18Z #14 1.896 35300K .......... .......... .......... .......... .......... 27% 135M 1s -2024-04-02T21:23:18Z #14 1.896 35350K .......... .......... .......... .......... .......... 27% 157M 1s -2024-04-02T21:23:18Z #14 1.897 35400K .......... .......... .......... .......... .......... 27% 134M 1s -2024-04-02T21:23:18Z #14 1.898 35450K .......... .......... .......... .......... .......... 28% 132M 1s -2024-04-02T21:23:18Z #14 1.898 35500K .......... .......... .......... .......... .......... 28% 149M 1s -2024-04-02T21:23:18Z #14 1.898 35550K .......... .......... .......... .......... .......... 28% 134M 1s -2024-04-02T21:23:18Z #14 1.899 35600K .......... .......... .......... .......... .......... 28% 151M 1s -2024-04-02T21:23:18Z #14 1.899 35650K .......... .......... .......... .......... .......... 28% 157M 1s -2024-04-02T21:23:18Z #14 1.899 35700K .......... .......... .......... .......... .......... 28% 55.0M 1s -2024-04-02T21:23:18Z #14 1.900 35750K .......... .......... .......... .......... .......... 28% 155M 1s -2024-04-02T21:23:18Z #14 1.900 35800K .......... .......... .......... .......... .......... 28% 126M 1s -2024-04-02T21:23:18Z #14 1.900 35850K .......... .......... .......... .......... .......... 28% 147M 1s -2024-04-02T21:23:18Z #14 1.903 35900K .......... .......... .......... .......... .......... 28% 170M 1s -2024-04-02T21:23:18Z #14 1.903 35950K .......... .......... .......... .......... .......... 28% 133M 1s -2024-04-02T21:23:18Z #14 1.903 36000K .......... .......... .......... .......... .......... 28% 148M 1s -2024-04-02T21:23:18Z #14 1.903 36050K .......... .......... .......... .......... .......... 28% 170M 1s -2024-04-02T21:23:18Z #14 1.903 36100K .......... .......... .......... .......... .......... 28% 157M 1s -2024-04-02T21:23:18Z #14 1.903 36150K .......... .......... .......... .......... .......... 28% 144M 1s -2024-04-02T21:23:18Z #14 1.903 36200K .......... .......... .......... .......... .......... 28% 170M 1s -2024-04-02T21:23:18Z #14 1.903 36250K .......... .......... .......... .......... .......... 28% 129M 1s -2024-04-02T21:23:18Z #14 1.904 36300K .......... .......... .......... .......... .......... 28% 140M 1s -2024-04-02T21:23:18Z #14 1.904 36350K .......... .......... .......... .......... .......... 28% 130M 1s -2024-04-02T21:23:18Z #14 1.904 36400K .......... .......... .......... .......... .......... 28% 164M 1s -2024-04-02T21:23:18Z #14 1.905 36450K .......... .......... .......... .......... .......... 28% 138M 1s -2024-04-02T21:23:18Z #14 1.905 36500K .......... .......... .......... .......... .......... 28% 145M 1s -2024-04-02T21:23:18Z #14 1.905 36550K .......... .......... .......... .......... .......... 28% 96.2M 1s -2024-04-02T21:23:18Z #14 1.905 36600K .......... .......... .......... .......... .......... 28% 46.7M 1s -2024-04-02T21:23:18Z #14 1.907 36650K .......... .......... .......... .......... .......... 28% 110M 1s -2024-04-02T21:23:18Z #14 1.907 36700K .......... .......... .......... .......... .......... 28% 78.8M 1s -2024-04-02T21:23:18Z #14 1.908 36750K .......... .......... .......... .......... .......... 29% 134M 1s -2024-04-02T21:23:18Z #14 1.908 36800K .......... .......... .......... .......... .......... 29% 10.7M 1s -2024-04-02T21:23:18Z #14 1.913 36850K .......... .......... .......... .......... .......... 29% 140M 1s -2024-04-02T21:23:18Z #14 1.913 36900K .......... .......... .......... .......... .......... 29% 19.2M 1s -2024-04-02T21:23:18Z #14 1.918 36950K .......... .......... .......... .......... .......... 29% 163M 1s -2024-04-02T21:23:18Z #14 1.918 37000K .......... .......... .......... .......... .......... 29% 159M 1s -2024-04-02T21:23:18Z #14 1.918 37050K .......... .......... .......... .......... .......... 29% 153M 1s -2024-04-02T21:23:18Z #14 1.918 37100K .......... .......... .......... .......... .......... 29% 30.0M 1s -2024-04-02T21:23:18Z #14 1.918 37150K .......... .......... .......... .......... .......... 29% 39.4M 1s -2024-04-02T21:23:18Z #14 1.921 37200K .......... .......... .......... .......... .......... 29% 25.5M 1s -2024-04-02T21:23:18Z #14 1.923 37250K .......... .......... .......... .......... .......... 29% 172M 1s -2024-04-02T21:23:18Z #14 1.923 37300K .......... .......... .......... .......... .......... 29% 155M 1s -2024-04-02T21:23:18Z #14 1.923 37350K .......... .......... .......... .......... .......... 29% 134M 1s -2024-04-02T21:23:18Z #14 1.923 37400K .......... .......... .......... .......... .......... 29% 143M 1s -2024-04-02T21:23:18Z #14 1.923 37450K .......... .......... .......... .......... .......... 29% 132M 1s -2024-04-02T21:23:18Z #14 1.923 37500K .......... .......... .......... .......... .......... 29% 87.7M 1s -2024-04-02T21:23:18Z #14 1.927 37550K .......... .......... .......... .......... .......... 29% 157M 1s -2024-04-02T21:23:18Z #14 1.927 37600K .......... .......... .......... .......... .......... 29% 140M 1s -2024-04-02T21:23:18Z #14 1.927 37650K .......... .......... .......... .......... .......... 29% 157M 1s -2024-04-02T21:23:18Z #14 1.927 37700K .......... .......... .......... .......... .......... 29% 133M 1s -2024-04-02T21:23:18Z #14 1.927 37750K .......... .......... .......... .......... .......... 29% 158M 1s -2024-04-02T21:23:18Z #14 1.927 37800K .......... .......... .......... .......... .......... 29% 156M 1s -2024-04-02T21:23:18Z #14 1.927 37850K .......... .......... .......... .......... .......... 29% 136M 1s -2024-04-02T21:23:18Z #14 1.927 37900K .......... .......... .......... .......... .......... 29% 151M 1s -2024-04-02T21:23:18Z #14 1.927 37950K .......... .......... .......... .......... .......... 29% 126M 1s -2024-04-02T21:23:18Z #14 1.927 38000K .......... .......... .......... .......... .......... 30% 149M 1s -2024-04-02T21:23:18Z #14 1.927 38050K .......... .......... .......... .......... .......... 30% 78.1M 1s -2024-04-02T21:23:18Z #14 1.927 38100K .......... .......... .......... .......... .......... 30% 100M 1s -2024-04-02T21:23:18Z #14 1.931 38150K .......... .......... .......... .......... .......... 30% 157M 1s -2024-04-02T21:23:18Z #14 1.931 38200K .......... .......... .......... .......... .......... 30% 132M 1s -2024-04-02T21:23:18Z #14 1.931 38250K .......... .......... .......... .......... .......... 30% 129M 1s -2024-04-02T21:23:18Z #14 1.931 38300K .......... .......... .......... .......... .......... 30% 144M 1s -2024-04-02T21:23:18Z #14 1.931 38350K .......... .......... .......... .......... .......... 30% 141M 1s -2024-04-02T21:23:18Z #14 1.931 38400K .......... .......... .......... .......... .......... 30% 115M 1s -2024-04-02T21:23:18Z #14 1.931 38450K .......... .......... .......... .......... .......... 30% 139M 1s -2024-04-02T21:23:18Z #14 1.931 38500K .......... .......... .......... .......... .......... 30% 138M 1s -2024-04-02T21:23:18Z #14 1.931 38550K .......... .......... .......... .......... .......... 30% 71.2M 1s -2024-04-02T21:23:19Z #14 1.932 38600K .......... .......... .......... .......... .......... 30% 61.3M 1s -2024-04-02T21:23:19Z #14 1.935 38650K .......... .......... .......... .......... .......... 30% 159M 1s -2024-04-02T21:23:19Z #14 1.935 38700K .......... .......... .......... .......... .......... 30% 162M 1s -2024-04-02T21:23:19Z #14 1.935 38750K .......... .......... .......... .......... .......... 30% 171M 1s -2024-04-02T21:23:19Z #14 1.935 38800K .......... .......... .......... .......... .......... 30% 119M 1s -2024-04-02T21:23:19Z #14 1.935 38850K .......... .......... .......... .......... .......... 30% 76.9M 1s -2024-04-02T21:23:19Z #14 1.935 38900K .......... .......... .......... .......... .......... 30% 64.0M 1s -2024-04-02T21:23:19Z #14 1.935 38950K .......... .......... .......... .......... .......... 30% 51.7M 1s -2024-04-02T21:23:19Z #14 1.937 39000K .......... .......... .......... .......... .......... 30% 168M 1s -2024-04-02T21:23:19Z #14 1.937 39050K .......... .......... .......... .......... .......... 30% 160M 1s -2024-04-02T21:23:19Z #14 1.937 39100K .......... .......... .......... .......... .......... 30% 73.7M 1s -2024-04-02T21:23:19Z #14 1.937 39150K .......... .......... .......... .......... .......... 30% 96.4M 1s -2024-04-02T21:23:19Z #14 1.938 39200K .......... .......... .......... .......... .......... 30% 117M 1s -2024-04-02T21:23:19Z #14 1.939 39250K .......... .......... .......... .......... .......... 30% 140M 1s -2024-04-02T21:23:19Z #14 1.939 39300K .......... .......... .......... .......... .......... 31% 116M 1s -2024-04-02T21:23:19Z #14 1.940 39350K .......... .......... .......... .......... .......... 31% 119M 1s -2024-04-02T21:23:19Z #14 1.940 39400K .......... .......... .......... .......... .......... 31% 121M 1s -2024-04-02T21:23:19Z #14 1.940 39450K .......... .......... .......... .......... .......... 31% 112M 1s -2024-04-02T21:23:19Z #14 1.941 39500K .......... .......... .......... .......... .......... 31% 121M 1s -2024-04-02T21:23:19Z #14 1.941 39550K .......... .......... .......... .......... .......... 31% 118M 1s -2024-04-02T21:23:19Z #14 1.942 39600K .......... .......... .......... .......... .......... 31% 108M 1s -2024-04-02T21:23:19Z #14 1.942 39650K .......... .......... .......... .......... .......... 31% 119M 1s -2024-04-02T21:23:19Z #14 1.942 39700K .......... .......... .......... .......... .......... 31% 152M 1s -2024-04-02T21:23:19Z #14 1.942 39750K .......... .......... .......... .......... .......... 31% 91.4M 1s -2024-04-02T21:23:19Z #14 1.944 39800K .......... .......... .......... .......... .......... 31% 145M 1s -2024-04-02T21:23:19Z #14 1.944 39850K .......... .......... .......... .......... .......... 31% 111M 1s -2024-04-02T21:23:19Z #14 1.944 39900K .......... .......... .......... .......... .......... 31% 94.3M 1s -2024-04-02T21:23:19Z #14 1.945 39950K .......... .......... .......... .......... .......... 31% 140M 1s -2024-04-02T21:23:19Z #14 1.945 40000K .......... .......... .......... .......... .......... 31% 135M 1s -2024-04-02T21:23:19Z #14 1.945 40050K .......... .......... .......... .......... .......... 31% 86.1M 1s -2024-04-02T21:23:19Z #14 1.945 40100K .......... .......... .......... .......... .......... 31% 97.9M 1s -2024-04-02T21:23:19Z #14 1.947 40150K .......... .......... .......... .......... .......... 31% 138M 1s -2024-04-02T21:23:19Z #14 1.947 40200K .......... .......... .......... .......... .......... 31% 102M 1s -2024-04-02T21:23:19Z #14 1.947 40250K .......... .......... .......... .......... .......... 31% 131M 1s -2024-04-02T21:23:19Z #14 1.947 40300K .......... .......... .......... .......... .......... 31% 73.3M 1s -2024-04-02T21:23:19Z #14 1.948 40350K .......... .......... .......... .......... .......... 31% 117M 1s -2024-04-02T21:23:19Z #14 1.948 40400K .......... .......... .......... .......... .......... 31% 140M 1s -2024-04-02T21:23:19Z #14 1.948 40450K .......... .......... .......... .......... .......... 31% 58.7M 1s -2024-04-02T21:23:19Z #14 1.949 40500K .......... .......... .......... .......... .......... 31% 90.2M 1s -2024-04-02T21:23:19Z #14 1.951 40550K .......... .......... .......... .......... .......... 32% 152M 1s -2024-04-02T21:23:19Z #14 1.951 40600K .......... .......... .......... .......... .......... 32% 122M 1s -2024-04-02T21:23:19Z #14 1.951 40650K .......... .......... .......... .......... .......... 32% 138M 1s -2024-04-02T21:23:19Z #14 1.951 40700K .......... .......... .......... .......... .......... 32% 72.0M 1s -2024-04-02T21:23:19Z #14 1.954 40750K .......... .......... .......... .......... .......... 32% 92.4M 1s -2024-04-02T21:23:19Z #14 1.954 40800K .......... .......... .......... .......... .......... 32% 128M 1s -2024-04-02T21:23:19Z #14 1.954 40850K .......... .......... .......... .......... .......... 32% 130M 1s -2024-04-02T21:23:19Z #14 1.954 40900K .......... .......... .......... .......... .......... 32% 156M 1s -2024-04-02T21:23:19Z #14 1.954 40950K .......... .......... .......... .......... .......... 32% 122M 1s -2024-04-02T21:23:19Z #14 1.954 41000K .......... .......... .......... .......... .......... 32% 95.0M 1s -2024-04-02T21:23:19Z #14 1.954 41050K .......... .......... .......... .......... .......... 32% 51.7M 1s -2024-04-02T21:23:19Z #14 1.955 41100K .......... .......... .......... .......... .......... 32% 125M 1s -2024-04-02T21:23:19Z #14 1.957 41150K .......... .......... .......... .......... .......... 32% 117M 1s -2024-04-02T21:23:19Z #14 1.957 41200K .......... .......... .......... .......... .......... 32% 127M 1s -2024-04-02T21:23:19Z #14 1.957 41250K .......... .......... .......... .......... .......... 32% 126M 1s -2024-04-02T21:23:19Z #14 1.957 41300K .......... .......... .......... .......... .......... 32% 85.7M 1s -2024-04-02T21:23:19Z #14 1.958 41350K .......... .......... .......... .......... .......... 32% 138M 1s -2024-04-02T21:23:19Z #14 1.958 41400K .......... .......... .......... .......... .......... 32% 114M 1s -2024-04-02T21:23:19Z #14 1.958 41450K .......... .......... .......... .......... .......... 32% 78.9M 1s -2024-04-02T21:23:19Z #14 1.958 41500K .......... .......... .......... .......... .......... 32% 10.3M 1s -2024-04-02T21:23:19Z #14 1.969 41550K .......... .......... .......... .......... .......... 32% 126M 1s -2024-04-02T21:23:19Z #14 1.969 41600K .......... .......... .......... .......... .......... 32% 139M 1s -2024-04-02T21:23:19Z #14 1.969 41650K .......... .......... .......... .......... .......... 32% 134M 1s -2024-04-02T21:23:19Z #14 1.969 41700K .......... .......... .......... .......... .......... 32% 148M 1s -2024-04-02T21:23:19Z #14 1.969 41750K .......... .......... .......... .......... .......... 32% 116M 1s -2024-04-02T21:23:19Z #14 1.969 41800K .......... .......... .......... .......... .......... 33% 122M 1s -2024-04-02T21:23:19Z #14 1.969 41850K .......... .......... .......... .......... .......... 33% 123M 1s -2024-04-02T21:23:19Z #14 1.969 41900K .......... .......... .......... .......... .......... 33% 117M 1s -2024-04-02T21:23:19Z #14 1.969 41950K .......... .......... .......... .......... .......... 33% 129M 1s -2024-04-02T21:23:19Z #14 1.969 42000K .......... .......... .......... .......... .......... 33% 13.8M 1s -2024-04-02T21:23:19Z #14 1.971 42050K .......... .......... .......... .......... .......... 33% 121M 1s -2024-04-02T21:23:19Z #14 1.976 42100K .......... .......... .......... .......... .......... 33% 28.6M 1s -2024-04-02T21:23:19Z #14 1.976 42150K .......... .......... .......... .......... .......... 33% 178M 1s -2024-04-02T21:23:19Z #14 1.976 42200K .......... .......... .......... .......... .......... 33% 161M 1s -2024-04-02T21:23:19Z #14 1.976 42250K .......... .......... .......... .......... .......... 33% 155M 1s -2024-04-02T21:23:19Z #14 1.976 42300K .......... .......... .......... .......... .......... 33% 170M 1s -2024-04-02T21:23:19Z #14 1.976 42350K .......... .......... .......... .......... .......... 33% 116M 1s -2024-04-02T21:23:19Z #14 1.976 42400K .......... .......... .......... .......... .......... 33% 126M 1s -2024-04-02T21:23:19Z #14 1.976 42450K .......... .......... .......... .......... .......... 33% 15.0M 1s -2024-04-02T21:23:19Z #14 1.989 42500K .......... .......... .......... .......... .......... 33% 128M 1s -2024-04-02T21:23:19Z #14 1.989 42550K .......... .......... .......... .......... .......... 33% 139M 1s -2024-04-02T21:23:19Z #14 1.989 42600K .......... .......... .......... .......... .......... 33% 113M 1s -2024-04-02T21:23:19Z #14 1.989 42650K .......... .......... .......... .......... .......... 33% 119M 1s -2024-04-02T21:23:19Z #14 1.989 42700K .......... .......... .......... .......... .......... 33% 120M 1s -2024-04-02T21:23:19Z #14 1.989 42750K .......... .......... .......... .......... .......... 33% 141M 1s -2024-04-02T21:23:19Z #14 1.989 42800K .......... .......... .......... .......... .......... 33% 118M 1s -2024-04-02T21:23:19Z #14 1.989 42850K .......... .......... .......... .......... .......... 33% 131M 1s -2024-04-02T21:23:19Z #14 1.989 42900K .......... .......... .......... .......... .......... 33% 136M 1s -2024-04-02T21:23:19Z #14 1.989 42950K .......... .......... .......... .......... .......... 33% 131M 1s -2024-04-02T21:23:19Z #14 1.989 43000K .......... .......... .......... .......... .......... 33% 117M 1s -2024-04-02T21:23:19Z #14 1.989 43050K .......... .......... .......... .......... .......... 33% 146M 1s -2024-04-02T21:23:19Z #14 1.989 43100K .......... .......... .......... .......... .......... 34% 132M 1s -2024-04-02T21:23:19Z #14 1.989 43150K .......... .......... .......... .......... .......... 34% 117M 1s -2024-04-02T21:23:19Z #14 1.989 43200K .......... .......... .......... .......... .......... 34% 146M 1s -2024-04-02T21:23:19Z #14 1.989 43250K .......... .......... .......... .......... .......... 34% 163M 1s -2024-04-02T21:23:19Z #14 1.989 43300K .......... .......... .......... .......... .......... 34% 186M 1s -2024-04-02T21:23:19Z #14 1.989 43350K .......... .......... .......... .......... .......... 34% 167M 1s -2024-04-02T21:23:19Z #14 1.989 43400K .......... .......... .......... .......... .......... 34% 184M 1s -2024-04-02T21:23:19Z #14 1.989 43450K .......... .......... .......... .......... .......... 34% 176M 1s -2024-04-02T21:23:19Z #14 1.989 43500K .......... .......... .......... .......... .......... 34% 156M 1s -2024-04-02T21:23:19Z #14 1.989 43550K .......... .......... .......... .......... .......... 34% 168M 1s -2024-04-02T21:23:19Z #14 1.989 43600K .......... .......... .......... .......... .......... 34% 188M 1s -2024-04-02T21:23:19Z #14 1.989 43650K .......... .......... .......... .......... .......... 34% 161M 1s -2024-04-02T21:23:19Z #14 1.989 43700K .......... .......... .......... .......... .......... 34% 177M 1s -2024-04-02T21:23:19Z #14 1.989 43750K .......... .......... .......... .......... .......... 34% 175M 1s -2024-04-02T21:23:19Z #14 1.989 43800K .......... .......... .......... .......... .......... 34% 152M 1s -2024-04-02T21:23:19Z #14 1.989 43850K .......... .......... .......... .......... .......... 34% 153M 1s -2024-04-02T21:23:19Z #14 1.989 43900K .......... .......... .......... .......... .......... 34% 150M 1s -2024-04-02T21:23:19Z #14 1.989 43950K .......... .......... .......... .......... .......... 34% 180M 1s -2024-04-02T21:23:19Z #14 1.989 44000K .......... .......... .......... .......... .......... 34% 189M 1s -2024-04-02T21:23:19Z #14 1.989 44050K .......... .......... .......... .......... .......... 34% 182M 1s -2024-04-02T21:23:19Z #14 1.989 44100K .......... .......... .......... .......... .......... 34% 158M 1s -2024-04-02T21:23:19Z #14 1.989 44150K .......... .......... .......... .......... .......... 34% 184M 1s -2024-04-02T21:23:19Z #14 1.989 44200K .......... .......... .......... .......... .......... 34% 171M 1s -2024-04-02T21:23:19Z #14 1.989 44250K .......... .......... .......... .......... .......... 34% 166M 1s -2024-04-02T21:23:19Z #14 1.989 44300K .......... .......... .......... .......... .......... 34% 164M 1s -2024-04-02T21:23:19Z #14 1.990 44350K .......... .......... .......... .......... .......... 35% 166M 1s -2024-04-02T21:23:19Z #14 1.990 44400K .......... .......... .......... .......... .......... 35% 143M 1s -2024-04-02T21:23:19Z #14 1.990 44450K .......... .......... .......... .......... .......... 35% 154M 1s -2024-04-02T21:23:19Z #14 1.991 44500K .......... .......... .......... .......... .......... 35% 150M 1s -2024-04-02T21:23:19Z #14 1.991 44550K .......... .......... .......... .......... .......... 35% 152M 1s -2024-04-02T21:23:19Z #14 1.991 44600K .......... .......... .......... .......... .......... 35% 147M 1s -2024-04-02T21:23:19Z #14 1.991 44650K .......... .......... .......... .......... .......... 35% 162M 1s -2024-04-02T21:23:19Z #14 1.992 44700K .......... .......... .......... .......... .......... 35% 143M 1s -2024-04-02T21:23:19Z #14 1.993 44750K .......... .......... .......... .......... .......... 35% 162M 1s -2024-04-02T21:23:19Z #14 1.993 44800K .......... .......... .......... .......... .......... 35% 176M 1s -2024-04-02T21:23:19Z #14 1.993 44850K .......... .......... .......... .......... .......... 35% 138M 1s -2024-04-02T21:23:19Z #14 1.993 44900K .......... .......... .......... .......... .......... 35% 171M 1s -2024-04-02T21:23:19Z #14 1.994 44950K .......... .......... .......... .......... .......... 35% 174M 1s -2024-04-02T21:23:19Z #14 1.994 45000K .......... .......... .......... .......... .......... 35% 159M 1s -2024-04-02T21:23:19Z #14 1.994 45050K .......... .......... .......... .......... .......... 35% 137M 1s -2024-04-02T21:23:19Z #14 1.995 45100K .......... .......... .......... .......... .......... 35% 152M 1s -2024-04-02T21:23:19Z #14 1.995 45150K .......... .......... .......... .......... .......... 35% 156M 1s -2024-04-02T21:23:19Z #14 1.995 45200K .......... .......... .......... .......... .......... 35% 136M 1s -2024-04-02T21:23:19Z #14 1.995 45250K .......... .......... .......... .......... .......... 35% 162M 1s -2024-04-02T21:23:19Z #14 1.996 45300K .......... .......... .......... .......... .......... 35% 141M 1s -2024-04-02T21:23:19Z #14 1.996 45350K .......... .......... .......... .......... .......... 35% 170M 1s -2024-04-02T21:23:19Z #14 1.996 45400K .......... .......... .......... .......... .......... 35% 159M 1s -2024-04-02T21:23:19Z #14 1.997 45450K .......... .......... .......... .......... .......... 35% 156M 1s -2024-04-02T21:23:19Z #14 1.997 45500K .......... .......... .......... .......... .......... 35% 137M 1s -2024-04-02T21:23:19Z #14 1.997 45550K .......... .......... .......... .......... .......... 35% 176M 1s -2024-04-02T21:23:19Z #14 1.998 45600K .......... .......... .......... .......... .......... 36% 161M 1s -2024-04-02T21:23:19Z #14 1.998 45650K .......... .......... .......... .......... .......... 36% 135M 1s -2024-04-02T21:23:19Z #14 1.998 45700K .......... .......... .......... .......... .......... 36% 171M 1s -2024-04-02T21:23:19Z #14 1.998 45750K .......... .......... .......... .......... .......... 36% 166M 1s -2024-04-02T21:23:19Z #14 1.999 45800K .......... .......... .......... .......... .......... 36% 149M 1s -2024-04-02T21:23:19Z #14 1.999 45850K .......... .......... .......... .......... .......... 36% 155M 1s -2024-04-02T21:23:19Z #14 1.999 45900K .......... .......... .......... .......... .......... 36% 152M 1s -2024-04-02T21:23:19Z #14 2.000 45950K .......... .......... .......... .......... .......... 36% 164M 1s -2024-04-02T21:23:19Z #14 2.000 46000K .......... .......... .......... .......... .......... 36% 141M 1s -2024-04-02T21:23:19Z #14 2.000 46050K .......... .......... .......... .......... .......... 36% 164M 1s -2024-04-02T21:23:19Z #14 2.001 46100K .......... .......... .......... .......... .......... 36% 159M 1s -2024-04-02T21:23:19Z #14 2.001 46150K .......... .......... .......... .......... .......... 36% 136M 1s -2024-04-02T21:23:19Z #14 2.001 46200K .......... .......... .......... .......... .......... 36% 171M 1s -2024-04-02T21:23:19Z #14 2.002 46250K .......... .......... .......... .......... .......... 36% 152M 1s -2024-04-02T21:23:19Z #14 2.002 46300K .......... .......... .......... .......... .......... 36% 139M 1s -2024-04-02T21:23:19Z #14 2.002 46350K .......... .......... .......... .......... .......... 36% 176M 1s -2024-04-02T21:23:19Z #14 2.003 46400K .......... .......... .......... .......... .......... 36% 143M 1s -2024-04-02T21:23:19Z #14 2.003 46450K .......... .......... .......... .......... .......... 36% 146M 1s -2024-04-02T21:23:19Z #14 2.003 46500K .......... .......... .......... .......... .......... 36% 163M 1s -2024-04-02T21:23:19Z #14 2.003 46550K .......... .......... .......... .......... .......... 36% 166M 1s -2024-04-02T21:23:19Z #14 2.004 46600K .......... .......... .......... .......... .......... 36% 143M 1s -2024-04-02T21:23:19Z #14 2.004 46650K .......... .......... .......... .......... .......... 36% 157M 1s -2024-04-02T21:23:19Z #14 2.004 46700K .......... .......... .......... .......... .......... 36% 145M 1s -2024-04-02T21:23:19Z #14 2.005 46750K .......... .......... .......... .......... .......... 36% 155M 1s -2024-04-02T21:23:19Z #14 2.005 46800K .......... .......... .......... .......... .......... 36% 165M 1s -2024-04-02T21:23:19Z #14 2.005 46850K .......... .......... .......... .......... .......... 36% 145M 1s -2024-04-02T21:23:19Z #14 2.006 46900K .......... .......... .......... .......... .......... 37% 147M 1s -2024-04-02T21:23:19Z #14 2.006 46950K .......... .......... .......... .......... .......... 37% 154M 1s -2024-04-02T21:23:19Z #14 2.006 47000K .......... .......... .......... .......... .......... 37% 166M 1s -2024-04-02T21:23:19Z #14 2.007 47050K .......... .......... .......... .......... .......... 37% 128M 1s -2024-04-02T21:23:19Z #14 2.007 47100K .......... .......... .......... .......... .......... 37% 142M 1s -2024-04-02T21:23:19Z #14 2.007 47150K .......... .......... .......... .......... .......... 37% 138M 1s -2024-04-02T21:23:19Z #14 2.008 47200K .......... .......... .......... .......... .......... 37% 138M 1s -2024-04-02T21:23:19Z #14 2.008 47250K .......... .......... .......... .......... .......... 37% 150M 1s -2024-04-02T21:23:19Z #14 2.009 47300K .......... .......... .......... .......... .......... 37% 150M 1s -2024-04-02T21:23:19Z #14 2.009 47350K .......... .......... .......... .......... .......... 37% 128M 1s -2024-04-02T21:23:19Z #14 2.009 47400K .......... .......... .......... .......... .......... 37% 148M 1s -2024-04-02T21:23:19Z #14 2.010 47450K .......... .......... .......... .......... .......... 37% 130M 1s -2024-04-02T21:23:19Z #14 2.010 47500K .......... .......... .......... .......... .......... 37% 145M 1s -2024-04-02T21:23:19Z #14 2.010 47550K .......... .......... .......... .......... .......... 37% 152M 1s -2024-04-02T21:23:19Z #14 2.011 47600K .......... .......... .......... .......... .......... 37% 113M 1s -2024-04-02T21:23:19Z #14 2.011 47650K .......... .......... .......... .......... .......... 37% 152M 1s -2024-04-02T21:23:19Z #14 2.011 47700K .......... .......... .......... .......... .......... 37% 155M 1s -2024-04-02T21:23:19Z #14 2.012 47750K .......... .......... .......... .......... .......... 37% 145M 1s -2024-04-02T21:23:19Z #14 2.012 47800K .......... .......... .......... .......... .......... 37% 126M 1s -2024-04-02T21:23:19Z #14 2.013 47850K .......... .......... .......... .......... .......... 37% 112M 1s -2024-04-02T21:23:19Z #14 2.013 47900K .......... .......... .......... .......... .......... 37% 155M 1s -2024-04-02T21:23:19Z #14 2.013 47950K .......... .......... .......... .......... .......... 37% 144M 1s -2024-04-02T21:23:19Z #14 2.014 48000K .......... .......... .......... .......... .......... 37% 133M 1s -2024-04-02T21:23:19Z #14 2.014 48050K .......... .......... .......... .......... .......... 37% 143M 1s -2024-04-02T21:23:19Z #14 2.015 48100K .......... .......... .......... .......... .......... 37% 148M 1s -2024-04-02T21:23:19Z #14 2.015 48150K .......... .......... .......... .......... .......... 38% 133M 1s -2024-04-02T21:23:19Z #14 2.015 48200K .......... .......... .......... .......... .......... 38% 112M 1s -2024-04-02T21:23:19Z #14 2.015 48250K .......... .......... .......... .......... .......... 38% 162M 1s -2024-04-02T21:23:19Z #14 2.016 48300K .......... .......... .......... .......... .......... 38% 157M 1s -2024-04-02T21:23:19Z #14 2.016 48350K .......... .......... .......... .......... .......... 38% 158M 1s -2024-04-02T21:23:19Z #14 2.017 48400K .......... .......... .......... .......... .......... 38% 125M 1s -2024-04-02T21:23:19Z #14 2.017 48450K .......... .......... .......... .......... .......... 38% 158M 1s -2024-04-02T21:23:19Z #14 2.017 48500K .......... .......... .......... .......... .......... 38% 119M 1s -2024-04-02T21:23:19Z #14 2.017 48550K .......... .......... .......... .......... .......... 38% 136M 1s -2024-04-02T21:23:19Z #14 2.018 48600K .......... .......... .......... .......... .......... 38% 156M 1s -2024-04-02T21:23:19Z #14 2.018 48650K .......... .......... .......... .......... .......... 38% 153M 1s -2024-04-02T21:23:19Z #14 2.018 48700K .......... .......... .......... .......... .......... 38% 127M 1s -2024-04-02T21:23:19Z #14 2.019 48750K .......... .......... .......... .......... .......... 38% 130M 1s -2024-04-02T21:23:19Z #14 2.019 48800K .......... .......... .......... .......... .......... 38% 152M 1s -2024-04-02T21:23:19Z #14 2.019 48850K .......... .......... .......... .......... .......... 38% 144M 1s -2024-04-02T21:23:19Z #14 2.020 48900K .......... .......... .......... .......... .......... 38% 130M 1s -2024-04-02T21:23:19Z #14 2.020 48950K .......... .......... .......... .......... .......... 38% 149M 1s -2024-04-02T21:23:19Z #14 2.021 49000K .......... .......... .......... .......... .......... 38% 121M 1s -2024-04-02T21:23:19Z #14 2.021 49050K .......... .......... .......... .......... .......... 38% 137M 1s -2024-04-02T21:23:19Z #14 2.021 49100K .......... .......... .......... .......... .......... 38% 142M 1s -2024-04-02T21:23:19Z #14 2.022 49150K .......... .......... .......... .......... .......... 38% 153M 1s -2024-04-02T21:23:19Z #14 2.022 49200K .......... .......... .......... .......... .......... 38% 142M 1s -2024-04-02T21:23:19Z #14 2.022 49250K .......... .......... .......... .......... .......... 38% 155M 1s -2024-04-02T21:23:19Z #14 2.023 49300K .......... .......... .......... .......... .......... 38% 113M 1s -2024-04-02T21:23:19Z #14 2.023 49350K .......... .......... .......... .......... .......... 38% 32.5M 1s -2024-04-02T21:23:19Z #14 2.024 49400K .......... .......... .......... .......... .......... 39% 35.2M 1s -2024-04-02T21:23:19Z #14 2.026 49450K .......... .......... .......... .......... .......... 39% 38.5M 1s -2024-04-02T21:23:19Z #14 2.027 49500K .......... .......... .......... .......... .......... 39% 52.6M 1s -2024-04-02T21:23:19Z #14 2.028 49550K .......... .......... .......... .......... .......... 39% 31.0M 1s -2024-04-02T21:23:19Z #14 2.030 49600K .......... .......... .......... .......... .......... 39% 28.7M 1s -2024-04-02T21:23:19Z #14 2.031 49650K .......... .......... .......... .......... .......... 39% 55.8M 1s -2024-04-02T21:23:19Z #14 2.035 49700K .......... .......... .......... .......... .......... 39% 152M 1s -2024-04-02T21:23:19Z #14 2.035 49750K .......... .......... .......... .......... .......... 39% 116M 1s -2024-04-02T21:23:19Z #14 2.035 49800K .......... .......... .......... .......... .......... 39% 123M 1s -2024-04-02T21:23:19Z #14 2.035 49850K .......... .......... .......... .......... .......... 39% 140M 1s -2024-04-02T21:23:19Z #14 2.035 49900K .......... .......... .......... .......... .......... 39% 142M 1s -2024-04-02T21:23:19Z #14 2.035 49950K .......... .......... .......... .......... .......... 39% 103M 1s -2024-04-02T21:23:19Z #14 2.035 50000K .......... .......... .......... .......... .......... 39% 136M 1s -2024-04-02T21:23:19Z #14 2.035 50050K .......... .......... .......... .......... .......... 39% 121M 1s -2024-04-02T21:23:19Z #14 2.039 50100K .......... .......... .......... .......... .......... 39% 163M 1s -2024-04-02T21:23:19Z #14 2.039 50150K .......... .......... .......... .......... .......... 39% 180M 1s -2024-04-02T21:23:19Z #14 2.039 50200K .......... .......... .......... .......... .......... 39% 140M 1s -2024-04-02T21:23:19Z #14 2.039 50250K .......... .......... .......... .......... .......... 39% 156M 1s -2024-04-02T21:23:19Z #14 2.039 50300K .......... .......... .......... .......... .......... 39% 173M 1s -2024-04-02T21:23:19Z #14 2.039 50350K .......... .......... .......... .......... .......... 39% 158M 1s -2024-04-02T21:23:19Z #14 2.039 50400K .......... .......... .......... .......... .......... 39% 151M 1s -2024-04-02T21:23:19Z #14 2.039 50450K .......... .......... .......... .......... .......... 39% 175M 1s -2024-04-02T21:23:19Z #14 2.039 50500K .......... .......... .......... .......... .......... 39% 171M 1s -2024-04-02T21:23:19Z #14 2.039 50550K .......... .......... .......... .......... .......... 39% 173M 1s -2024-04-02T21:23:19Z #14 2.039 50600K .......... .......... .......... .......... .......... 39% 149M 1s -2024-04-02T21:23:19Z #14 2.039 50650K .......... .......... .......... .......... .......... 39% 167M 1s -2024-04-02T21:23:19Z #14 2.039 50700K .......... .......... .......... .......... .......... 40% 140M 1s -2024-04-02T21:23:19Z #14 2.039 50750K .......... .......... .......... .......... .......... 40% 181M 1s -2024-04-02T21:23:19Z #14 2.039 50800K .......... .......... .......... .......... .......... 40% 134M 1s -2024-04-02T21:23:19Z #14 2.040 50850K .......... .......... .......... .......... .......... 40% 162M 1s -2024-04-02T21:23:19Z #14 2.040 50900K .......... .......... .......... .......... .......... 40% 159M 1s -2024-04-02T21:23:19Z #14 2.040 50950K .......... .......... .......... .......... .......... 40% 141M 1s -2024-04-02T21:23:19Z #14 2.041 51000K .......... .......... .......... .......... .......... 40% 139M 1s -2024-04-02T21:23:19Z #14 2.041 51050K .......... .......... .......... .......... .......... 40% 132M 1s -2024-04-02T21:23:19Z #14 2.041 51100K .......... .......... .......... .......... .......... 40% 158M 1s -2024-04-02T21:23:19Z #14 2.042 51150K .......... .......... .......... .......... .......... 40% 162M 1s -2024-04-02T21:23:19Z #14 2.042 51200K .......... .......... .......... .......... .......... 40% 133M 1s -2024-04-02T21:23:19Z #14 2.042 51250K .......... .......... .......... .......... .......... 40% 144M 1s -2024-04-02T21:23:19Z #14 2.043 51300K .......... .......... .......... .......... .......... 40% 131M 1s -2024-04-02T21:23:19Z #14 2.047 51350K .......... .......... .......... .......... .......... 40% 135M 1s -2024-04-02T21:23:19Z #14 2.047 51400K .......... .......... .......... .......... .......... 40% 173M 1s -2024-04-02T21:23:19Z #14 2.047 51450K .......... .......... .......... .......... .......... 40% 148M 1s -2024-04-02T21:23:19Z #14 2.047 51500K .......... .......... .......... .......... .......... 40% 161M 1s -2024-04-02T21:23:19Z #14 2.047 51550K .......... .......... .......... .......... .......... 40% 172M 1s -2024-04-02T21:23:19Z #14 2.047 51600K .......... .......... .......... .......... .......... 40% 143M 1s -2024-04-02T21:23:19Z #14 2.047 51650K .......... .......... .......... .......... .......... 40% 154M 1s -2024-04-02T21:23:19Z #14 2.047 51700K .......... .......... .......... .......... .......... 40% 173M 1s -2024-04-02T21:23:19Z #14 2.047 51750K .......... .......... .......... .......... .......... 40% 177M 1s -2024-04-02T21:23:19Z #14 2.047 51800K .......... .......... .......... .......... .......... 40% 158M 1s -2024-04-02T21:23:19Z #14 2.047 51850K .......... .......... .......... .......... .......... 40% 177M 1s -2024-04-02T21:23:19Z #14 2.047 51900K .......... .......... .......... .......... .......... 40% 144M 1s -2024-04-02T21:23:19Z #14 2.047 51950K .......... .......... .......... .......... .......... 41% 138M 1s -2024-04-02T21:23:19Z #14 2.047 52000K .......... .......... .......... .......... .......... 41% 163M 1s -2024-04-02T21:23:19Z #14 2.047 52050K .......... .......... .......... .......... .......... 41% 151M 1s -2024-04-02T21:23:19Z #14 2.048 52100K .......... .......... .......... .......... .......... 41% 157K 1s -2024-04-02T21:23:19Z #14 2.373 52150K .......... .......... .......... .......... .......... 41% 167M 1s -2024-04-02T21:23:19Z #14 2.373 52200K .......... .......... .......... .......... .......... 41% 137M 1s -2024-04-02T21:23:19Z #14 2.373 52250K .......... .......... .......... .......... .......... 41% 130M 1s -2024-04-02T21:23:19Z #14 2.373 52300K .......... .......... .......... .......... .......... 41% 159M 1s -2024-04-02T21:23:19Z #14 2.373 52350K .......... .......... .......... .......... .......... 41% 160M 1s -2024-04-02T21:23:19Z #14 2.373 52400K .......... .......... .......... .......... .......... 41% 140M 1s -2024-04-02T21:23:19Z #14 2.373 52450K .......... .......... .......... .......... .......... 41% 155M 1s -2024-04-02T21:23:19Z #14 2.373 52500K .......... .......... .......... .......... .......... 41% 132M 1s -2024-04-02T21:23:19Z #14 2.373 52550K .......... .......... .......... .......... .......... 41% 152M 1s -2024-04-02T21:23:19Z #14 2.373 52600K .......... .......... .......... .......... .......... 41% 161M 1s -2024-04-02T21:23:19Z #14 2.373 52650K .......... .......... .......... .......... .......... 41% 133M 1s -2024-04-02T21:23:19Z #14 2.373 52700K .......... .......... .......... .......... .......... 41% 126M 1s -2024-04-02T21:23:19Z #14 2.373 52750K .......... .......... .......... .......... .......... 41% 145M 1s -2024-04-02T21:23:19Z #14 2.373 52800K .......... .......... .......... .......... .......... 41% 138M 1s -2024-04-02T21:23:19Z #14 2.373 52850K .......... .......... .......... .......... .......... 41% 106M 1s -2024-04-02T21:23:19Z #14 2.373 52900K .......... .......... .......... .......... .......... 41% 32.0M 1s -2024-04-02T21:23:19Z #14 2.373 52950K .......... .......... .......... .......... .......... 41% 37.3M 1s -2024-04-02T21:23:19Z #14 2.375 53000K .......... .......... .......... .......... .......... 41% 30.9M 1s -2024-04-02T21:23:19Z #14 2.378 53050K .......... .......... .......... .......... .......... 41% 25.7M 1s -2024-04-02T21:23:19Z #14 2.384 53100K .......... .......... .......... .......... .......... 41% 175M 1s -2024-04-02T21:23:19Z #14 2.384 53150K .......... .......... .......... .......... .......... 41% 176M 1s -2024-04-02T21:23:19Z #14 2.384 53200K .......... .......... .......... .......... .......... 42% 149M 1s -2024-04-02T21:23:19Z #14 2.384 53250K .......... .......... .......... .......... .......... 42% 149M 1s -2024-04-02T21:23:19Z #14 2.384 53300K .......... .......... .......... .......... .......... 42% 29.3M 1s -2024-04-02T21:23:19Z #14 2.384 53350K .......... .......... .......... .......... .......... 42% 167M 1s -2024-04-02T21:23:19Z #14 2.384 53400K .......... .......... .......... .......... .......... 42% 140M 1s -2024-04-02T21:23:19Z #14 2.384 53450K .......... .......... .......... .......... .......... 42% 145M 1s -2024-04-02T21:23:19Z #14 2.384 53500K .......... .......... .......... .......... .......... 42% 131M 1s -2024-04-02T21:23:19Z #14 2.384 53550K .......... .......... .......... .......... .......... 42% 157M 1s -2024-04-02T21:23:19Z #14 2.384 53600K .......... .......... .......... .......... .......... 42% 19.8M 1s -2024-04-02T21:23:19Z #14 2.387 53650K .......... .......... .......... .......... .......... 42% 19.5M 1s -2024-04-02T21:23:19Z #14 2.387 53700K .......... .......... .......... .......... .......... 42% 17.2M 1s -2024-04-02T21:23:19Z #14 2.392 53750K .......... .......... .......... .......... .......... 42% 157M 1s -2024-04-02T21:23:19Z #14 2.392 53800K .......... .......... .......... .......... .......... 42% 152M 1s -2024-04-02T21:23:19Z #14 2.392 53850K .......... .......... .......... .......... .......... 42% 165M 1s -2024-04-02T21:23:19Z #14 2.392 53900K .......... .......... .......... .......... .......... 42% 135M 1s -2024-04-02T21:23:19Z #14 2.392 53950K .......... .......... .......... .......... .......... 42% 166M 1s -2024-04-02T21:23:19Z #14 2.392 54000K .......... .......... .......... .......... .......... 42% 124M 1s -2024-04-02T21:23:19Z #14 2.392 54050K .......... .......... .......... .......... .......... 42% 175M 1s -2024-04-02T21:23:19Z #14 2.392 54100K .......... .......... .......... .......... .......... 42% 147M 1s -2024-04-02T21:23:19Z #14 2.393 54150K .......... .......... .......... .......... .......... 42% 172M 1s -2024-04-02T21:23:19Z #14 2.393 54200K .......... .......... .......... .......... .......... 42% 163M 1s -2024-04-02T21:23:19Z #14 2.393 54250K .......... .......... .......... .......... .......... 42% 149M 1s -2024-04-02T21:23:19Z #14 2.393 54300K .......... .......... .......... .......... .......... 42% 138M 1s -2024-04-02T21:23:19Z #14 2.394 54350K .......... .......... .......... .......... .......... 42% 167M 1s -2024-04-02T21:23:19Z #14 2.394 54400K .......... .......... .......... .......... .......... 42% 169M 1s -2024-04-02T21:23:19Z #14 2.394 54450K .......... .......... .......... .......... .......... 42% 137M 1s -2024-04-02T21:23:19Z #14 2.395 54500K .......... .......... .......... .......... .......... 43% 138M 1s -2024-04-02T21:23:19Z #14 2.395 54550K .......... .......... .......... .......... .......... 43% 162M 1s -2024-04-02T21:23:19Z #14 2.395 54600K .......... .......... .......... .......... .......... 43% 168M 1s -2024-04-02T21:23:19Z #14 2.396 54650K .......... .......... .......... .......... .......... 43% 150M 1s -2024-04-02T21:23:19Z #14 2.396 54700K .......... .......... .......... .......... .......... 43% 170M 1s -2024-04-02T21:23:19Z #14 2.396 54750K .......... .......... .......... .......... .......... 43% 157M 1s -2024-04-02T21:23:19Z #14 2.397 54800K .......... .......... .......... .......... .......... 43% 142M 1s -2024-04-02T21:23:19Z #14 2.397 54850K .......... .......... .......... .......... .......... 43% 166M 1s -2024-04-02T21:23:19Z #14 2.397 54900K .......... .......... .......... .......... .......... 43% 157M 1s -2024-04-02T21:23:19Z #14 2.397 54950K .......... .......... .......... .......... .......... 43% 165M 1s -2024-04-02T21:23:19Z #14 2.398 55000K .......... .......... .......... .......... .......... 43% 157M 1s -2024-04-02T21:23:19Z #14 2.398 55050K .......... .......... .......... .......... .......... 43% 142M 1s -2024-04-02T21:23:19Z #14 2.398 55100K .......... .......... .......... .......... .......... 43% 178M 1s -2024-04-02T21:23:19Z #14 2.399 55150K .......... .......... .......... .......... .......... 43% 140M 1s -2024-04-02T21:23:19Z #14 2.399 55200K .......... .......... .......... .......... .......... 43% 139M 1s -2024-04-02T21:23:19Z #14 2.400 55250K .......... .......... .......... .......... .......... 43% 171M 1s -2024-04-02T21:23:19Z #14 2.400 55300K .......... .......... .......... .......... .......... 43% 163M 1s -2024-04-02T21:23:19Z #14 2.400 55350K .......... .......... .......... .......... .......... 43% 156M 1s -2024-04-02T21:23:19Z #14 2.400 55400K .......... .......... .......... .......... .......... 43% 151M 1s -2024-04-02T21:23:19Z #14 2.401 55450K .......... .......... .......... .......... .......... 43% 178M 1s -2024-04-02T21:23:19Z #14 2.401 55500K .......... .......... .......... .......... .......... 43% 146M 1s -2024-04-02T21:23:19Z #14 2.401 55550K .......... .......... .......... .......... .......... 43% 159M 1s -2024-04-02T21:23:19Z #14 2.402 55600K .......... .......... .......... .......... .......... 43% 179M 1s -2024-04-02T21:23:19Z #14 2.402 55650K .......... .......... .......... .......... .......... 43% 143M 1s -2024-04-02T21:23:19Z #14 2.402 55700K .......... .......... .......... .......... .......... 43% 160M 1s -2024-04-02T21:23:19Z #14 2.402 55750K .......... .......... .......... .......... .......... 44% 157M 1s -2024-04-02T21:23:19Z #14 2.403 55800K .......... .......... .......... .......... .......... 44% 130M 1s -2024-04-02T21:23:19Z #14 2.403 55850K .......... .......... .......... .......... .......... 44% 162M 1s -2024-04-02T21:23:19Z #14 2.404 55900K .......... .......... .......... .......... .......... 44% 160M 1s -2024-04-02T21:23:19Z #14 2.404 55950K .......... .......... .......... .......... .......... 44% 162M 1s -2024-04-02T21:23:19Z #14 2.404 56000K .......... .......... .......... .......... .......... 44% 140M 1s -2024-04-02T21:23:19Z #14 2.404 56050K .......... .......... .......... .......... .......... 44% 164M 1s -2024-04-02T21:23:19Z #14 2.405 56100K .......... .......... .......... .......... .......... 44% 173M 1s -2024-04-02T21:23:19Z #14 2.405 56150K .......... .......... .......... .......... .......... 44% 160M 1s -2024-04-02T21:23:19Z #14 2.405 56200K .......... .......... .......... .......... .......... 44% 145M 1s -2024-04-02T21:23:19Z #14 2.406 56250K .......... .......... .......... .......... .......... 44% 171M 1s -2024-04-02T21:23:19Z #14 2.406 56300K .......... .......... .......... .......... .......... 44% 133M 1s -2024-04-02T21:23:19Z #14 2.406 56350K .......... .......... .......... .......... .......... 44% 151M 1s -2024-04-02T21:23:19Z #14 2.407 56400K .......... .......... .......... .......... .......... 44% 137M 1s -2024-04-02T21:23:19Z #14 2.407 56450K .......... .......... .......... .......... .......... 44% 155M 1s -2024-04-02T21:23:19Z #14 2.407 56500K .......... .......... .......... .......... .......... 44% 171M 1s -2024-04-02T21:23:19Z #14 2.408 56550K .......... .......... .......... .......... .......... 44% 152M 1s -2024-04-02T21:23:19Z #14 2.408 56600K .......... .......... .......... .......... .......... 44% 165M 1s -2024-04-02T21:23:19Z #14 2.408 56650K .......... .......... .......... .......... .......... 44% 162M 1s -2024-04-02T21:23:19Z #14 2.409 56700K .......... .......... .......... .......... .......... 44% 174M 1s -2024-04-02T21:23:19Z #14 2.409 56750K .......... .......... .......... .......... .......... 44% 150M 1s -2024-04-02T21:23:19Z #14 2.409 56800K .......... .......... .......... .......... .......... 44% 155M 1s -2024-04-02T21:23:19Z #14 2.410 56850K .......... .......... .......... .......... .......... 44% 147M 1s -2024-04-02T21:23:19Z #14 2.410 56900K .......... .......... .......... .......... .......... 44% 165M 1s -2024-04-02T21:23:19Z #14 2.410 56950K .......... .......... .......... .......... .......... 44% 160M 1s -2024-04-02T21:23:19Z #14 2.410 57000K .......... .......... .......... .......... .......... 44% 139M 1s -2024-04-02T21:23:19Z #14 2.411 57050K .......... .......... .......... .......... .......... 45% 132M 1s -2024-04-02T21:23:19Z #14 2.412 57100K .......... .......... .......... .......... .......... 45% 158M 1s -2024-04-02T21:23:19Z #14 2.412 57150K .......... .......... .......... .......... .......... 45% 163M 1s -2024-04-02T21:23:19Z #14 2.412 57200K .......... .......... .......... .......... .......... 45% 161M 1s -2024-04-02T21:23:19Z #14 2.412 57250K .......... .......... .......... .......... .......... 45% 153M 1s -2024-04-02T21:23:19Z #14 2.412 57300K .......... .......... .......... .......... .......... 45% 154M 1s -2024-04-02T21:23:19Z #14 2.413 57350K .......... .......... .......... .......... .......... 45% 139M 1s -2024-04-02T21:23:19Z #14 2.413 57400K .......... .......... .......... .......... .......... 45% 157M 1s -2024-04-02T21:23:19Z #14 2.414 57450K .......... .......... .......... .......... .......... 45% 159M 1s -2024-04-02T21:23:19Z #14 2.414 57500K .......... .......... .......... .......... .......... 45% 176M 1s -2024-04-02T21:23:19Z #14 2.414 57550K .......... .......... .......... .......... .......... 45% 153M 1s -2024-04-02T21:23:19Z #14 2.414 57600K .......... .......... .......... .......... .......... 45% 122M 1s -2024-04-02T21:23:19Z #14 2.415 57650K .......... .......... .......... .......... .......... 45% 161M 1s -2024-04-02T21:23:19Z #14 2.415 57700K .......... .......... .......... .......... .......... 45% 149M 1s -2024-04-02T21:23:19Z #14 2.415 57750K .......... .......... .......... .......... .......... 45% 169M 1s -2024-04-02T21:23:19Z #14 2.416 57800K .......... .......... .......... .......... .......... 45% 156M 1s -2024-04-02T21:23:19Z #14 2.416 57850K .......... .......... .......... .......... .......... 45% 150M 1s -2024-04-02T21:23:19Z #14 2.416 57900K .......... .......... .......... .......... .......... 45% 169M 1s -2024-04-02T21:23:19Z #14 2.417 57950K .......... .......... .......... .......... .......... 45% 166M 1s -2024-04-02T21:23:19Z #14 2.417 58000K .......... .......... .......... .......... .......... 45% 146M 1s -2024-04-02T21:23:19Z #14 2.417 58050K .......... .......... .......... .......... .......... 45% 146M 1s -2024-04-02T21:23:19Z #14 2.417 58100K .......... .......... .......... .......... .......... 45% 177M 1s -2024-04-02T21:23:19Z #14 2.418 58150K .......... .......... .......... .......... .......... 45% 176M 1s -2024-04-02T21:23:19Z #14 2.419 58200K .......... .......... .......... .......... .......... 45% 145M 1s -2024-04-02T21:23:19Z #14 2.419 58250K .......... .......... .......... .......... .......... 45% 149M 1s -2024-04-02T21:23:19Z #14 2.419 58300K .......... .......... .......... .......... .......... 46% 141M 1s -2024-04-02T21:23:19Z #14 2.419 58350K .......... .......... .......... .......... .......... 46% 131M 1s -2024-04-02T21:23:19Z #14 2.419 58400K .......... .......... .......... .......... .......... 46% 176M 1s -2024-04-02T21:23:19Z #14 2.420 58450K .......... .......... .......... .......... .......... 46% 170M 1s -2024-04-02T21:23:19Z #14 2.420 58500K .......... .......... .......... .......... .......... 46% 149M 1s -2024-04-02T21:23:19Z #14 2.420 58550K .......... .......... .......... .......... .......... 46% 134M 1s -2024-04-02T21:23:19Z #14 2.421 58600K .......... .......... .......... .......... .......... 46% 172M 1s -2024-04-02T21:23:19Z #14 2.421 58650K .......... .......... .......... .......... .......... 46% 155M 1s -2024-04-02T21:23:19Z #14 2.422 58700K .......... .......... .......... .......... .......... 46% 150M 1s -2024-04-02T21:23:19Z #14 2.422 58750K .......... .......... .......... .......... .......... 46% 118M 1s -2024-04-02T21:23:19Z #14 2.423 58800K .......... .......... .......... .......... .......... 46% 140M 1s -2024-04-02T21:23:19Z #14 2.423 58850K .......... .......... .......... .......... .......... 46% 140M 1s -2024-04-02T21:23:19Z #14 2.423 58900K .......... .......... .......... .......... .......... 46% 123M 1s -2024-04-02T21:23:19Z #14 2.424 58950K .......... .......... .......... .......... .......... 46% 149M 1s -2024-04-02T21:23:19Z #14 2.424 59000K .......... .......... .......... .......... .......... 46% 138M 1s -2024-04-02T21:23:19Z #14 2.424 59050K .......... .......... .......... .......... .......... 46% 114M 1s -2024-04-02T21:23:19Z #14 2.424 59100K .......... .......... .......... .......... .......... 46% 148M 1s -2024-04-02T21:23:19Z #14 2.424 59150K .......... .......... .......... .......... .......... 46% 150M 1s -2024-04-02T21:23:19Z #14 2.425 59200K .......... .......... .......... .......... .......... 46% 132M 1s -2024-04-02T21:23:19Z #14 2.425 59250K .......... .......... .......... .......... .......... 46% 153M 1s -2024-04-02T21:23:19Z #14 2.427 59300K .......... .......... .......... .......... .......... 46% 129M 1s -2024-04-02T21:23:19Z #14 2.427 59350K .......... .......... .......... .......... .......... 46% 152M 1s -2024-04-02T21:23:19Z #14 2.427 59400K .......... .......... .......... .......... .......... 46% 158M 1s -2024-04-02T21:23:19Z #14 2.427 59450K .......... .......... .......... .......... .......... 46% 134M 1s -2024-04-02T21:23:19Z #14 2.427 59500K .......... .......... .......... .......... .......... 46% 153M 1s -2024-04-02T21:23:19Z #14 2.427 59550K .......... .......... .......... .......... .......... 47% 146M 1s -2024-04-02T21:23:19Z #14 2.428 59600K .......... .......... .......... .......... .......... 47% 165M 1s -2024-04-02T21:23:19Z #14 2.428 59650K .......... .......... .......... .......... .......... 47% 128M 1s -2024-04-02T21:23:19Z #14 2.428 59700K .......... .......... .......... .......... .......... 47% 148M 1s -2024-04-02T21:23:19Z #14 2.429 59750K .......... .......... .......... .......... .......... 47% 123M 1s -2024-04-02T21:23:19Z #14 2.429 59800K .......... .......... .......... .......... .......... 47% 165M 1s -2024-04-02T21:23:19Z #14 2.429 59850K .......... .......... .......... .......... .......... 47% 141M 1s -2024-04-02T21:23:19Z #14 2.429 59900K .......... .......... .......... .......... .......... 47% 142M 1s -2024-04-02T21:23:19Z #14 2.430 59950K .......... .......... .......... .......... .......... 47% 139M 1s -2024-04-02T21:23:19Z #14 2.431 60000K .......... .......... .......... .......... .......... 47% 148M 1s -2024-04-02T21:23:19Z #14 2.431 60050K .......... .......... .......... .......... .......... 47% 112M 1s -2024-04-02T21:23:19Z #14 2.431 60100K .......... .......... .......... .......... .......... 47% 139M 1s -2024-04-02T21:23:19Z #14 2.431 60150K .......... .......... .......... .......... .......... 47% 135M 1s -2024-04-02T21:23:19Z #14 2.432 60200K .......... .......... .......... .......... .......... 47% 122M 1s -2024-04-02T21:23:19Z #14 2.432 60250K .......... .......... .......... .......... .......... 47% 156M 1s -2024-04-02T21:23:19Z #14 2.433 60300K .......... .......... .......... .......... .......... 47% 126M 1s -2024-04-02T21:23:19Z #14 2.433 60350K .......... .......... .......... .......... .......... 47% 127M 1s -2024-04-02T21:23:19Z #14 2.434 60400K .......... .......... .......... .......... .......... 47% 138M 1s -2024-04-02T21:23:19Z #14 2.434 60450K .......... .......... .......... .......... .......... 47% 139M 1s -2024-04-02T21:23:19Z #14 2.434 60500K .......... .......... .......... .......... .......... 47% 168M 1s -2024-04-02T21:23:19Z #14 2.434 60550K .......... .......... .......... .......... .......... 47% 137M 1s -2024-04-02T21:23:19Z #14 2.435 60600K .......... .......... .......... .......... .......... 47% 128M 1s -2024-04-02T21:23:19Z #14 2.436 60650K .......... .......... .......... .......... .......... 47% 132M 1s -2024-04-02T21:23:19Z #14 2.436 60700K .......... .......... .......... .......... .......... 47% 140M 1s -2024-04-02T21:23:19Z #14 2.436 60750K .......... .......... .......... .......... .......... 47% 121M 1s -2024-04-02T21:23:19Z #14 2.436 60800K .......... .......... .......... .......... .......... 47% 150M 1s -2024-04-02T21:23:19Z #14 2.436 60850K .......... .......... .......... .......... .......... 48% 152M 1s -2024-04-02T21:23:19Z #14 2.437 60900K .......... .......... .......... .......... .......... 48% 149M 1s -2024-04-02T21:23:19Z #14 2.439 60950K .......... .......... .......... .......... .......... 48% 131M 1s -2024-04-02T21:23:19Z #14 2.439 61000K .......... .......... .......... .......... .......... 48% 148M 1s -2024-04-02T21:23:19Z #14 2.439 61050K .......... .......... .......... .......... .......... 48% 167M 1s -2024-04-02T21:23:19Z #14 2.439 61100K .......... .......... .......... .......... .......... 48% 145M 1s -2024-04-02T21:23:19Z #14 2.439 61150K .......... .......... .......... .......... .......... 48% 35.9M 1s -2024-04-02T21:23:19Z #14 2.440 61200K .......... .......... .......... .......... .......... 48% 37.3M 1s -2024-04-02T21:23:19Z #14 2.447 61250K .......... .......... .......... .......... .......... 48% 183M 1s -2024-04-02T21:23:19Z #14 2.447 61300K .......... .......... .......... .......... .......... 48% 150M 1s -2024-04-02T21:23:19Z #14 2.447 61350K .......... .......... .......... .......... .......... 48% 127M 1s -2024-04-02T21:23:19Z #14 2.447 61400K .......... .......... .......... .......... .......... 48% 155M 1s -2024-04-02T21:23:19Z #14 2.447 61450K .......... .......... .......... .......... .......... 48% 156M 1s -2024-04-02T21:23:19Z #14 2.447 61500K .......... .......... .......... .......... .......... 48% 97.5M 1s -2024-04-02T21:23:19Z #14 2.447 61550K .......... .......... .......... .......... .......... 48% 127M 1s -2024-04-02T21:23:19Z #14 2.447 61600K .......... .......... .......... .......... .......... 48% 111M 1s -2024-04-02T21:23:19Z #14 2.447 61650K .......... .......... .......... .......... .......... 48% 122M 1s -2024-04-02T21:23:19Z #14 2.447 61700K .......... .......... .......... .......... .......... 48% 111M 1s -2024-04-02T21:23:19Z #14 2.447 61750K .......... .......... .......... .......... .......... 48% 117M 1s -2024-04-02T21:23:19Z #14 2.447 61800K .......... .......... .......... .......... .......... 48% 107M 1s -2024-04-02T21:23:19Z #14 2.447 61850K .......... .......... .......... .......... .......... 48% 117M 1s -2024-04-02T21:23:19Z #14 2.447 61900K .......... .......... .......... .......... .......... 48% 117M 1s -2024-04-02T21:23:19Z #14 2.447 61950K .......... .......... .......... .......... .......... 48% 74.3M 1s -2024-04-02T21:23:19Z #14 2.449 62000K .......... .......... .......... .......... .......... 48% 176M 1s -2024-04-02T21:23:19Z #14 2.449 62050K .......... .......... .......... .......... .......... 48% 138M 1s -2024-04-02T21:23:19Z #14 2.449 62100K .......... .......... .......... .......... .......... 49% 136M 1s -2024-04-02T21:23:19Z #14 2.449 62150K .......... .......... .......... .......... .......... 49% 111M 1s -2024-04-02T21:23:19Z #14 2.449 62200K .......... .......... .......... .......... .......... 49% 128M 1s -2024-04-02T21:23:19Z #14 2.449 62250K .......... .......... .......... .......... .......... 49% 71.3M 1s -2024-04-02T21:23:19Z #14 2.450 62300K .......... .......... .......... .......... .......... 49% 133M 1s -2024-04-02T21:23:19Z #14 2.450 62350K .......... .......... .......... .......... .......... 49% 84.8M 1s -2024-04-02T21:23:19Z #14 2.451 62400K .......... .......... .......... .......... .......... 49% 110M 1s -2024-04-02T21:23:19Z #14 2.452 62450K .......... .......... .......... .......... .......... 49% 110M 1s -2024-04-02T21:23:19Z #14 2.452 62500K .......... .......... .......... .......... .......... 49% 139M 1s -2024-04-02T21:23:19Z #14 2.452 62550K .......... .......... .......... .......... .......... 49% 98.7M 1s -2024-04-02T21:23:19Z #14 2.454 62600K .......... .......... .......... .......... .......... 49% 87.0M 1s -2024-04-02T21:23:19Z #14 2.454 62650K .......... .......... .......... .......... .......... 49% 139M 1s -2024-04-02T21:23:19Z #14 2.454 62700K .......... .......... .......... .......... .......... 49% 145M 1s -2024-04-02T21:23:19Z #14 2.454 62750K .......... .......... .......... .......... .......... 49% 105M 1s -2024-04-02T21:23:19Z #14 2.454 62800K .......... .......... .......... .......... .......... 49% 156M 1s -2024-04-02T21:23:19Z #14 2.455 62850K .......... .......... .......... .......... .......... 49% 74.9M 1s -2024-04-02T21:23:19Z #14 2.457 62900K .......... .......... .......... .......... .......... 49% 140M 1s -2024-04-02T21:23:19Z #14 2.457 62950K .......... .......... .......... .......... .......... 49% 137M 1s -2024-04-02T21:23:19Z #14 2.457 63000K .......... .......... .......... .......... .......... 49% 116M 1s -2024-04-02T21:23:19Z #14 2.457 63050K .......... .......... .......... .......... .......... 49% 134M 1s -2024-04-02T21:23:19Z #14 2.457 63100K .......... .......... .......... .......... .......... 49% 130M 1s -2024-04-02T21:23:19Z #14 2.457 63150K .......... .......... .......... .......... .......... 49% 83.4M 1s -2024-04-02T21:23:19Z #14 2.459 63200K .......... .......... .......... .......... .......... 49% 117M 1s -2024-04-02T21:23:19Z #14 2.459 63250K .......... .......... .......... .......... .......... 49% 150M 1s -2024-04-02T21:23:19Z #14 2.459 63300K .......... .......... .......... .......... .......... 49% 105M 1s -2024-04-02T21:23:19Z #14 2.459 63350K .......... .......... .......... .......... .......... 50% 58.1M 1s -2024-04-02T21:23:19Z #14 2.461 63400K .......... .......... .......... .......... .......... 50% 142M 1s -2024-04-02T21:23:19Z #14 2.461 63450K .......... .......... .......... .......... .......... 50% 106M 1s -2024-04-02T21:23:19Z #14 2.461 63500K .......... .......... .......... .......... .......... 50% 127M 1s -2024-04-02T21:23:19Z #14 2.461 63550K .......... .......... .......... .......... .......... 50% 110M 1s -2024-04-02T21:23:19Z #14 2.461 63600K .......... .......... .......... .......... .......... 50% 28.6M 1s -2024-04-02T21:23:19Z #14 2.463 63650K .......... .......... .......... .......... .......... 50% 72.4M 1s -2024-04-02T21:23:19Z #14 2.464 63700K .......... .......... .......... .......... .......... 50% 161M 1s -2024-04-02T21:23:19Z #14 2.464 63750K .......... .......... .......... .......... .......... 50% 123M 1s -2024-04-02T21:23:19Z #14 2.464 63800K .......... .......... .......... .......... .......... 50% 66.5M 1s -2024-04-02T21:23:19Z #14 2.465 63850K .......... .......... .......... .......... .......... 50% 27.6M 1s -2024-04-02T21:23:19Z #14 2.467 63900K .......... .......... .......... .......... .......... 50% 17.3M 1s -2024-04-02T21:23:19Z #14 2.471 63950K .......... .......... .......... .......... .......... 50% 111M 1s -2024-04-02T21:23:19Z #14 2.471 64000K .......... .......... .......... .......... .......... 50% 126M 1s -2024-04-02T21:23:19Z #14 2.471 64050K .......... .......... .......... .......... .......... 50% 115M 1s -2024-04-02T21:23:19Z #14 2.471 64100K .......... .......... .......... .......... .......... 50% 82.2M 1s -2024-04-02T21:23:19Z #14 2.476 64150K .......... .......... .......... .......... .......... 50% 151M 1s -2024-04-02T21:23:19Z #14 2.476 64200K .......... .......... .......... .......... .......... 50% 180M 1s -2024-04-02T21:23:19Z #14 2.476 64250K .......... .......... .......... .......... .......... 50% 152M 1s -2024-04-02T21:23:19Z #14 2.476 64300K .......... .......... .......... .......... .......... 50% 115M 1s -2024-04-02T21:23:19Z #14 2.476 64350K .......... .......... .......... .......... .......... 50% 118M 1s -2024-04-02T21:23:19Z #14 2.476 64400K .......... .......... .......... .......... .......... 50% 122M 1s -2024-04-02T21:23:19Z #14 2.476 64450K .......... .......... .......... .......... .......... 50% 125M 1s -2024-04-02T21:23:19Z #14 2.476 64500K .......... .......... .......... .......... .......... 50% 114M 1s -2024-04-02T21:23:19Z #14 2.476 64550K .......... .......... .......... .......... .......... 50% 25.3M 1s -2024-04-02T21:23:19Z #14 2.480 64600K .......... .......... .......... .......... .......... 50% 136M 1s -2024-04-02T21:23:19Z #14 2.480 64650K .......... .......... .......... .......... .......... 51% 134M 1s -2024-04-02T21:23:19Z #14 2.480 64700K .......... .......... .......... .......... .......... 51% 139M 1s -2024-04-02T21:23:19Z #14 2.480 64750K .......... .......... .......... .......... .......... 51% 136M 1s -2024-04-02T21:23:19Z #14 2.480 64800K .......... .......... .......... .......... .......... 51% 120M 1s -2024-04-02T21:23:19Z #14 2.480 64850K .......... .......... .......... .......... .......... 51% 17.1M 1s -2024-04-02T21:23:19Z #14 2.482 64900K .......... .......... .......... .......... .......... 51% 20.6M 1s -2024-04-02T21:23:19Z #14 2.484 64950K .......... .......... .......... .......... .......... 51% 28.1M 1s -2024-04-02T21:23:19Z #14 2.487 65000K .......... .......... .......... .......... .......... 51% 133M 1s -2024-04-02T21:23:19Z #14 2.487 65050K .......... .......... .......... .......... .......... 51% 46.2M 1s -2024-04-02T21:23:19Z #14 2.487 65100K .......... .......... .......... .......... .......... 51% 77.9M 1s -2024-04-02T21:23:19Z #14 2.488 65150K .......... .......... .......... .......... .......... 51% 165M 1s -2024-04-02T21:23:19Z #14 2.488 65200K .......... .......... .......... .......... .......... 51% 128M 1s -2024-04-02T21:23:19Z #14 2.488 65250K .......... .......... .......... .......... .......... 51% 80.0M 1s -2024-04-02T21:23:19Z #14 2.488 65300K .......... .......... .......... .......... .......... 51% 51.2M 1s -2024-04-02T21:23:19Z #14 2.492 65350K .......... .......... .......... .......... .......... 51% 122M 1s -2024-04-02T21:23:19Z #14 2.492 65400K .......... .......... .......... .......... .......... 51% 109M 1s -2024-04-02T21:23:19Z #14 2.492 65450K .......... .......... .......... .......... .......... 51% 132M 1s -2024-04-02T21:23:19Z #14 2.492 65500K .......... .......... .......... .......... .......... 51% 99.1M 1s -2024-04-02T21:23:19Z #14 2.492 65550K .......... .......... .......... .......... .......... 51% 129M 1s -2024-04-02T21:23:19Z #14 2.492 65600K .......... .......... .......... .......... .......... 51% 35.3M 1s -2024-04-02T21:23:19Z #14 2.494 65650K .......... .......... .......... .......... .......... 51% 87.9M 1s -2024-04-02T21:23:19Z #14 2.494 65700K .......... .......... .......... .......... .......... 51% 68.7M 1s -2024-04-02T21:23:19Z #14 2.494 65750K .......... .......... .......... .......... .......... 51% 50.0M 1s -2024-04-02T21:23:19Z #14 2.496 65800K .......... .......... .......... .......... .......... 51% 141M 1s -2024-04-02T21:23:19Z #14 2.496 65850K .......... .......... .......... .......... .......... 51% 114M 1s -2024-04-02T21:23:19Z #14 2.496 65900K .......... .......... .......... .......... .......... 52% 46.7M 1s -2024-04-02T21:23:19Z #14 2.497 65950K .......... .......... .......... .......... .......... 52% 14.9M 1s -2024-04-02T21:23:19Z #14 2.502 66000K .......... .......... .......... .......... .......... 52% 125M 1s -2024-04-02T21:23:19Z #14 2.502 66050K .......... .......... .......... .......... .......... 52% 109M 1s -2024-04-02T21:23:19Z #14 2.502 66100K .......... .......... .......... .......... .......... 52% 124M 1s -2024-04-02T21:23:19Z #14 2.502 66150K .......... .......... .......... .......... .......... 52% 132M 1s -2024-04-02T21:23:19Z #14 2.502 66200K .......... .......... .......... .......... .......... 52% 150M 1s -2024-04-02T21:23:19Z #14 2.502 66250K .......... .......... .......... .......... .......... 52% 10.6M 1s -2024-04-02T21:23:19Z #14 2.508 66300K .......... .......... .......... .......... .......... 52% 119M 1s -2024-04-02T21:23:19Z #14 2.508 66350K .......... .......... .......... .......... .......... 52% 132M 1s -2024-04-02T21:23:19Z #14 2.508 66400K .......... .......... .......... .......... .......... 52% 133M 1s -2024-04-02T21:23:19Z #14 2.508 66450K .......... .......... .......... .......... .......... 52% 75.7M 1s -2024-04-02T21:23:19Z #14 2.511 66500K .......... .......... .......... .......... .......... 52% 29.0M 1s -2024-04-02T21:23:19Z #14 2.511 66550K .......... .......... .......... .......... .......... 52% 142M 1s -2024-04-02T21:23:19Z #14 2.511 66600K .......... .......... .......... .......... .......... 52% 95.4M 1s -2024-04-02T21:23:19Z #14 2.511 66650K .......... .......... .......... .......... .......... 52% 80.6M 1s -2024-04-02T21:23:19Z #14 2.515 66700K .......... .......... .......... .......... .......... 52% 152M 1s -2024-04-02T21:23:19Z #14 2.515 66750K .......... .......... .......... .......... .......... 52% 134M 1s -2024-04-02T21:23:19Z #14 2.515 66800K .......... .......... .......... .......... .......... 52% 27.9M 1s -2024-04-02T21:23:19Z #14 2.515 66850K .......... .......... .......... .......... .......... 52% 119M 1s -2024-04-02T21:23:19Z #14 2.515 66900K .......... .......... .......... .......... .......... 52% 163M 1s -2024-04-02T21:23:19Z #14 2.515 66950K .......... .......... .......... .......... .......... 52% 66.1M 1s -2024-04-02T21:23:19Z #14 2.518 67000K .......... .......... .......... .......... .......... 52% 128M 1s -2024-04-02T21:23:19Z #14 2.518 67050K .......... .......... .......... .......... .......... 52% 135M 1s -2024-04-02T21:23:19Z #14 2.518 67100K .......... .......... .......... .......... .......... 52% 139M 1s -2024-04-02T21:23:19Z #14 2.518 67150K .......... .......... .......... .......... .......... 53% 132M 1s -2024-04-02T21:23:19Z #14 2.518 67200K .......... .......... .......... .......... .......... 53% 113M 1s -2024-04-02T21:23:19Z #14 2.518 67250K .......... .......... .......... .......... .......... 53% 143M 1s -2024-04-02T21:23:19Z #14 2.518 67300K .......... .......... .......... .......... .......... 53% 52.4M 1s -2024-04-02T21:23:19Z #14 2.519 67350K .......... .......... .......... .......... .......... 53% 138M 1s -2024-04-02T21:23:19Z #14 2.520 67400K .......... .......... .......... .......... .......... 53% 150M 1s -2024-04-02T21:23:19Z #14 2.520 67450K .......... .......... .......... .......... .......... 53% 100M 1s -2024-04-02T21:23:19Z #14 2.521 67500K .......... .......... .......... .......... .......... 53% 149M 1s -2024-04-02T21:23:19Z #14 2.521 67550K .......... .......... .......... .......... .......... 53% 146M 1s -2024-04-02T21:23:19Z #14 2.521 67600K .......... .......... .......... .......... .......... 53% 97.4M 1s -2024-04-02T21:23:19Z #14 2.522 67650K .......... .......... .......... .......... .......... 53% 132M 1s -2024-04-02T21:23:19Z #14 2.522 67700K .......... .......... .......... .......... .......... 53% 140M 1s -2024-04-02T21:23:19Z #14 2.522 67750K .......... .......... .......... .......... .......... 53% 149M 1s -2024-04-02T21:23:19Z #14 2.522 67800K .......... .......... .......... .......... .......... 53% 67.6M 1s -2024-04-02T21:23:19Z #14 2.523 67850K .......... .......... .......... .......... .......... 53% 101M 1s -2024-04-02T21:23:19Z #14 2.524 67900K .......... .......... .......... .......... .......... 53% 134M 1s -2024-04-02T21:23:19Z #14 2.524 67950K .......... .......... .......... .......... .......... 53% 146M 1s -2024-04-02T21:23:19Z #14 2.525 68000K .......... .......... .......... .......... .......... 53% 113M 1s -2024-04-02T21:23:19Z #14 2.525 68050K .......... .......... .......... .......... .......... 53% 151M 1s -2024-04-02T21:23:19Z #14 2.525 68100K .......... .......... .......... .......... .......... 53% 100M 1s -2024-04-02T21:23:19Z #14 2.526 68150K .......... .......... .......... .......... .......... 53% 129M 1s -2024-04-02T21:23:19Z #14 2.526 68200K .......... .......... .......... .......... .......... 53% 145M 1s -2024-04-02T21:23:19Z #14 2.527 68250K .......... .......... .......... .......... .......... 53% 140M 1s -2024-04-02T21:23:19Z #14 2.527 68300K .......... .......... .......... .......... .......... 53% 122M 1s -2024-04-02T21:23:19Z #14 2.527 68350K .......... .......... .......... .......... .......... 53% 82.5M 1s -2024-04-02T21:23:19Z #14 2.528 68400K .......... .......... .......... .......... .......... 53% 119M 1s -2024-04-02T21:23:19Z #14 2.528 68450K .......... .......... .......... .......... .......... 54% 132M 1s -2024-04-02T21:23:19Z #14 2.528 68500K .......... .......... .......... .......... .......... 54% 95.2M 1s -2024-04-02T21:23:19Z #14 2.529 68550K .......... .......... .......... .......... .......... 54% 157M 1s -2024-04-02T21:23:19Z #14 2.529 68600K .......... .......... .......... .......... .......... 54% 123M 1s -2024-04-02T21:23:19Z #14 2.529 68650K .......... .......... .......... .......... .......... 54% 91.9M 1s -2024-04-02T21:23:19Z #14 2.530 68700K .......... .......... .......... .......... .......... 54% 156M 1s -2024-04-02T21:23:19Z #14 2.530 68750K .......... .......... .......... .......... .......... 54% 112M 1s -2024-04-02T21:23:19Z #14 2.531 68800K .......... .......... .......... .......... .......... 54% 86.7M 1s -2024-04-02T21:23:19Z #14 2.532 68850K .......... .......... .......... .......... .......... 54% 167M 1s -2024-04-02T21:23:19Z #14 2.532 68900K .......... .......... .......... .......... .......... 54% 128M 1s -2024-04-02T21:23:19Z #14 2.532 68950K .......... .......... .......... .......... .......... 54% 114M 1s -2024-04-02T21:23:19Z #14 2.533 69000K .......... .......... .......... .......... .......... 54% 115M 1s -2024-04-02T21:23:19Z #14 2.533 69050K .......... .......... .......... .......... .......... 54% 157M 1s -2024-04-02T21:23:19Z #14 2.533 69100K .......... .......... .......... .......... .......... 54% 107M 1s -2024-04-02T21:23:19Z #14 2.534 69150K .......... .......... .......... .......... .......... 54% 140M 1s -2024-04-02T21:23:19Z #14 2.534 69200K .......... .......... .......... .......... .......... 54% 178M 1s -2024-04-02T21:23:19Z #14 2.534 69250K .......... .......... .......... .......... .......... 54% 98.3M 1s -2024-04-02T21:23:19Z #14 2.535 69300K .......... .......... .......... .......... .......... 54% 149M 1s -2024-04-02T21:23:19Z #14 2.536 69350K .......... .......... .......... .......... .......... 54% 99.1M 1s -2024-04-02T21:23:19Z #14 2.536 69400K .......... .......... .......... .......... .......... 54% 117M 1s -2024-04-02T21:23:19Z #14 2.537 69450K .......... .......... .......... .......... .......... 54% 128M 1s -2024-04-02T21:23:19Z #14 2.537 69500K .......... .......... .......... .......... .......... 54% 122M 1s -2024-04-02T21:23:19Z #14 2.537 69550K .......... .......... .......... .......... .......... 54% 110M 1s -2024-04-02T21:23:19Z #14 2.539 69600K .......... .......... .......... .......... .......... 54% 139M 1s -2024-04-02T21:23:19Z #14 2.539 69650K .......... .......... .......... .......... .......... 54% 119M 1s -2024-04-02T21:23:19Z #14 2.539 69700K .......... .......... .......... .......... .......... 55% 181M 1s -2024-04-02T21:23:19Z #14 2.539 69750K .......... .......... .......... .......... .......... 55% 199M 1s -2024-04-02T21:23:19Z #14 2.539 69800K .......... .......... .......... .......... .......... 55% 121M 1s -2024-04-02T21:23:19Z #14 2.539 69850K .......... .......... .......... .......... .......... 55% 93.9M 1s -2024-04-02T21:23:19Z #14 2.541 69900K .......... .......... .......... .......... .......... 55% 127M 1s -2024-04-02T21:23:19Z #14 2.541 69950K .......... .......... .......... .......... .......... 55% 109M 1s -2024-04-02T21:23:19Z #14 2.541 70000K .......... .......... .......... .......... .......... 55% 96.3M 1s -2024-04-02T21:23:19Z #14 2.542 70050K .......... .......... .......... .......... .......... 55% 119M 1s -2024-04-02T21:23:19Z #14 2.542 70100K .......... .......... .......... .......... .......... 55% 144M 1s -2024-04-02T21:23:19Z #14 2.542 70150K .......... .......... .......... .......... .......... 55% 142M 1s -2024-04-02T21:23:19Z #14 2.542 70200K .......... .......... .......... .......... .......... 55% 110M 1s -2024-04-02T21:23:19Z #14 2.543 70250K .......... .......... .......... .......... .......... 55% 138M 1s -2024-04-02T21:23:19Z #14 2.543 70300K .......... .......... .......... .......... .......... 55% 155M 1s -2024-04-02T21:23:19Z #14 2.543 70350K .......... .......... .......... .......... .......... 55% 102M 1s -2024-04-02T21:23:19Z #14 2.544 70400K .......... .......... .......... .......... .......... 55% 108M 1s -2024-04-02T21:23:19Z #14 2.545 70450K .......... .......... .......... .......... .......... 55% 121M 1s -2024-04-02T21:23:19Z #14 2.545 70500K .......... .......... .......... .......... .......... 55% 138M 1s -2024-04-02T21:23:19Z #14 2.545 70550K .......... .......... .......... .......... .......... 55% 114M 1s -2024-04-02T21:23:19Z #14 2.546 70600K .......... .......... .......... .......... .......... 55% 114M 1s -2024-04-02T21:23:19Z #14 2.546 70650K .......... .......... .......... .......... .......... 55% 161M 1s -2024-04-02T21:23:19Z #14 2.546 70700K .......... .......... .......... .......... .......... 55% 102M 1s -2024-04-02T21:23:19Z #14 2.547 70750K .......... .......... .......... .......... .......... 55% 140M 1s -2024-04-02T21:23:19Z #14 2.547 70800K .......... .......... .......... .......... .......... 55% 160M 1s -2024-04-02T21:23:19Z #14 2.547 70850K .......... .......... .......... .......... .......... 55% 88.3M 1s -2024-04-02T21:23:19Z #14 2.548 70900K .......... .......... .......... .......... .......... 55% 127M 1s -2024-04-02T21:23:19Z #14 2.548 70950K .......... .......... .......... .......... .......... 56% 150M 1s -2024-04-02T21:23:19Z #14 2.548 71000K .......... .......... .......... .......... .......... 56% 116M 1s -2024-04-02T21:23:19Z #14 2.549 71050K .......... .......... .......... .......... .......... 56% 138M 1s -2024-04-02T21:23:19Z #14 2.549 71100K .......... .......... .......... .......... .......... 56% 106M 1s -2024-04-02T21:23:19Z #14 2.551 71150K .......... .......... .......... .......... .......... 56% 126M 1s -2024-04-02T21:23:19Z #14 2.551 71200K .......... .......... .......... .......... .......... 56% 110M 1s -2024-04-02T21:23:19Z #14 2.551 71250K .......... .......... .......... .......... .......... 56% 160M 1s -2024-04-02T21:23:19Z #14 2.551 71300K .......... .......... .......... .......... .......... 56% 102M 1s -2024-04-02T21:23:19Z #14 2.551 71350K .......... .......... .......... .......... .......... 56% 110M 1s -2024-04-02T21:23:19Z #14 2.552 71400K .......... .......... .......... .......... .......... 56% 147M 1s -2024-04-02T21:23:19Z #14 2.552 71450K .......... .......... .......... .......... .......... 56% 94.6M 1s -2024-04-02T21:23:19Z #14 2.553 71500K .......... .......... .......... .......... .......... 56% 101M 1s -2024-04-02T21:23:19Z #14 2.553 71550K .......... .......... .......... .......... .......... 56% 141M 1s -2024-04-02T21:23:19Z #14 2.553 71600K .......... .......... .......... .......... .......... 56% 101M 1s -2024-04-02T21:23:19Z #14 2.555 71650K .......... .......... .......... .......... .......... 56% 145M 1s -2024-04-02T21:23:19Z #14 2.555 71700K .......... .......... .......... .......... .......... 56% 114M 1s -2024-04-02T21:23:19Z #14 2.555 71750K .......... .......... .......... .......... .......... 56% 119M 1s -2024-04-02T21:23:19Z #14 2.555 71800K .......... .......... .......... .......... .......... 56% 88.3M 1s -2024-04-02T21:23:19Z #14 2.556 71850K .......... .......... .......... .......... .......... 56% 142M 1s -2024-04-02T21:23:19Z #14 2.556 71900K .......... .......... .......... .......... .......... 56% 97.1M 1s -2024-04-02T21:23:19Z #14 2.560 71950K .......... .......... .......... .......... .......... 56% 113M 1s -2024-04-02T21:23:19Z #14 2.560 72000K .......... .......... .......... .......... .......... 56% 128M 1s -2024-04-02T21:23:19Z #14 2.560 72050K .......... .......... .......... .......... .......... 56% 149M 1s -2024-04-02T21:23:19Z #14 2.560 72100K .......... .......... .......... .......... .......... 56% 140M 1s -2024-04-02T21:23:19Z #14 2.560 72150K .......... .......... .......... .......... .......... 56% 151M 1s -2024-04-02T21:23:19Z #14 2.560 72200K .......... .......... .......... .......... .......... 56% 157M 1s -2024-04-02T21:23:19Z #14 2.560 72250K .......... .......... .......... .......... .......... 57% 142M 1s -2024-04-02T21:23:19Z #14 2.560 72300K .......... .......... .......... .......... .......... 57% 148M 1s -2024-04-02T21:23:19Z #14 2.560 72350K .......... .......... .......... .......... .......... 57% 90.7M 1s -2024-04-02T21:23:19Z #14 2.561 72400K .......... .......... .......... .......... .......... 57% 117M 1s -2024-04-02T21:23:19Z #14 2.561 72450K .......... .......... .......... .......... .......... 57% 122M 1s -2024-04-02T21:23:19Z #14 2.561 72500K .......... .......... .......... .......... .......... 57% 115M 1s -2024-04-02T21:23:19Z #14 2.561 72550K .......... .......... .......... .......... .......... 57% 101M 1s -2024-04-02T21:23:19Z #14 2.561 72600K .......... .......... .......... .......... .......... 57% 63.1M 1s -2024-04-02T21:23:19Z #14 2.562 72650K .......... .......... .......... .......... .......... 57% 30.4M 1s -2024-04-02T21:23:19Z #14 2.564 72700K .......... .......... .......... .......... .......... 57% 95.1M 1s -2024-04-02T21:23:19Z #14 2.564 72750K .......... .......... .......... .......... .......... 57% 49.5M 1s -2024-04-02T21:23:19Z #14 2.565 72800K .......... .......... .......... .......... .......... 57% 148M 1s -2024-04-02T21:23:19Z #14 2.565 72850K .......... .......... .......... .......... .......... 57% 31.5M 1s -2024-04-02T21:23:19Z #14 2.567 72900K .......... .......... .......... .......... .......... 57% 28.1M 1s -2024-04-02T21:23:19Z #14 2.569 72950K .......... .......... .......... .......... .......... 57% 52.5M 1s -2024-04-02T21:23:19Z #14 2.571 73000K .......... .......... .......... .......... .......... 57% 91.4M 1s -2024-04-02T21:23:19Z #14 2.571 73050K .......... .......... .......... .......... .......... 57% 148M 1s -2024-04-02T21:23:19Z #14 2.571 73100K .......... .......... .......... .......... .......... 57% 39.5M 1s -2024-04-02T21:23:19Z #14 2.572 73150K .......... .......... .......... .......... .......... 57% 53.7M 1s -2024-04-02T21:23:19Z #14 2.574 73200K .......... .......... .......... .......... .......... 57% 76.5M 1s -2024-04-02T21:23:19Z #14 2.574 73250K .......... .......... .......... .......... .......... 57% 120M 1s -2024-04-02T21:23:19Z #14 2.574 73300K .......... .......... .......... .......... .......... 57% 14.7M 1s -2024-04-02T21:23:19Z #14 2.577 73350K .......... .......... .......... .......... .......... 57% 33.1M 1s -2024-04-02T21:23:19Z #14 2.583 73400K .......... .......... .......... .......... .......... 57% 122M 1s -2024-04-02T21:23:19Z #14 2.583 73450K .......... .......... .......... .......... .......... 57% 110M 1s -2024-04-02T21:23:19Z #14 2.583 73500K .......... .......... .......... .......... .......... 58% 105M 1s -2024-04-02T21:23:19Z #14 2.583 73550K .......... .......... .......... .......... .......... 58% 107M 1s -2024-04-02T21:23:19Z #14 2.583 73600K .......... .......... .......... .......... .......... 58% 119M 1s -2024-04-02T21:23:19Z #14 2.583 73650K .......... .......... .......... .......... .......... 58% 92.9M 1s -2024-04-02T21:23:19Z #14 2.583 73700K .......... .......... .......... .......... .......... 58% 118M 1s -2024-04-02T21:23:19Z #14 2.583 73750K .......... .......... .......... .......... .......... 58% 118M 1s -2024-04-02T21:23:19Z #14 2.583 73800K .......... .......... .......... .......... .......... 58% 99.6M 1s -2024-04-02T21:23:19Z #14 2.583 73850K .......... .......... .......... .......... .......... 58% 114M 1s -2024-04-02T21:23:19Z #14 2.583 73900K .......... .......... .......... .......... .......... 58% 11.3M 1s -2024-04-02T21:23:19Z #14 2.587 73950K .......... .......... .......... .......... .......... 58% 75.7M 1s -2024-04-02T21:23:19Z #14 2.588 74000K .......... .......... .......... .......... .......... 58% 109M 1s -2024-04-02T21:23:19Z #14 2.588 74050K .......... .......... .......... .......... .......... 58% 75.6M 1s -2024-04-02T21:23:19Z #14 2.590 74100K .......... .......... .......... .......... .......... 58% 134M 1s -2024-04-02T21:23:19Z #14 2.590 74150K .......... .......... .......... .......... .......... 58% 142M 1s -2024-04-02T21:23:19Z #14 2.590 74200K .......... .......... .......... .......... .......... 58% 70.7M 1s -2024-04-02T21:23:19Z #14 2.590 74250K .......... .......... .......... .......... .......... 58% 16.2M 1s -2024-04-02T21:23:19Z #14 2.593 74300K .......... .......... .......... .......... .......... 58% 44.8M 1s -2024-04-02T21:23:19Z #14 2.595 74350K .......... .......... .......... .......... .......... 58% 64.1M 1s -2024-04-02T21:23:19Z #14 2.596 74400K .......... .......... .......... .......... .......... 58% 67.0M 1s -2024-04-02T21:23:19Z #14 2.596 74450K .......... .......... .......... .......... .......... 58% 120M 1s -2024-04-02T21:23:19Z #14 2.597 74500K .......... .......... .......... .......... .......... 58% 19.5M 1s -2024-04-02T21:23:19Z #14 2.599 74550K .......... .......... .......... .......... .......... 58% 36.7M 1s -2024-04-02T21:23:19Z #14 2.603 74600K .......... .......... .......... .......... .......... 58% 37.1M 1s -2024-04-02T21:23:19Z #14 2.603 74650K .......... .......... .......... .......... .......... 58% 54.1M 1s -2024-04-02T21:23:19Z #14 2.603 74700K .......... .......... .......... .......... .......... 58% 47.2M 1s -2024-04-02T21:23:19Z #14 2.604 74750K .......... .......... .......... .......... .......... 58% 127M 1s -2024-04-02T21:23:19Z #14 2.605 74800K .......... .......... .......... .......... .......... 59% 37.7M 1s -2024-04-02T21:23:19Z #14 2.605 74850K .......... .......... .......... .......... .......... 59% 76.0M 1s -2024-04-02T21:23:19Z #14 2.607 74900K .......... .......... .......... .......... .......... 59% 117M 1s -2024-04-02T21:23:19Z #14 2.607 74950K .......... .......... .......... .......... .......... 59% 132M 1s -2024-04-02T21:23:19Z #14 2.607 75000K .......... .......... .......... .......... .......... 59% 135M 1s -2024-04-02T21:23:19Z #14 2.607 75050K .......... .......... .......... .......... .......... 59% 50.6M 1s -2024-04-02T21:23:19Z #14 2.608 75100K .......... .......... .......... .......... .......... 59% 16.4M 1s -2024-04-02T21:23:19Z #14 2.611 75150K .......... .......... .......... .......... .......... 59% 22.9M 1s -2024-04-02T21:23:19Z #14 2.613 75200K .......... .......... .......... .......... .......... 59% 57.2M 1s -2024-04-02T21:23:19Z #14 2.614 75250K .......... .......... .......... .......... .......... 59% 36.0M 1s -2024-04-02T21:23:19Z #14 2.615 75300K .......... .......... .......... .......... .......... 59% 65.3M 1s -2024-04-02T21:23:19Z #14 2.617 75350K .......... .......... .......... .......... .......... 59% 61.7M 1s -2024-04-02T21:23:19Z #14 2.617 75400K .......... .......... .......... .......... .......... 59% 115M 1s -2024-04-02T21:23:19Z #14 2.617 75450K .......... .......... .......... .......... .......... 59% 33.0M 1s -2024-04-02T21:23:19Z #14 2.619 75500K .......... .......... .......... .......... .......... 59% 15.2M 1s -2024-04-02T21:23:19Z #14 2.622 75550K .......... .......... .......... .......... .......... 59% 21.3M 1s -2024-04-02T21:23:19Z #14 2.627 75600K .......... .......... .......... .......... .......... 59% 63.5M 1s -2024-04-02T21:23:19Z #14 2.627 75650K .......... .......... .......... .......... .......... 59% 89.7M 1s -2024-04-02T21:23:19Z #14 2.627 75700K .......... .......... .......... .......... .......... 59% 127M 1s -2024-04-02T21:23:19Z #14 2.627 75750K .......... .......... .......... .......... .......... 59% 124M 1s -2024-04-02T21:23:19Z #14 2.627 75800K .......... .......... .......... .......... .......... 59% 117M 1s -2024-04-02T21:23:19Z #14 2.627 75850K .......... .......... .......... .......... .......... 59% 16.8M 1s -2024-04-02T21:23:19Z #14 2.630 75900K .......... .......... .......... .......... .......... 59% 28.8M 1s -2024-04-02T21:23:19Z #14 2.631 75950K .......... .......... .......... .......... .......... 59% 51.6M 1s -2024-04-02T21:23:19Z #14 2.632 76000K .......... .......... .......... .......... .......... 59% 23.3M 1s -2024-04-02T21:23:19Z #14 2.635 76050K .......... .......... .......... .......... .......... 60% 38.7M 1s -2024-04-02T21:23:19Z #14 2.636 76100K .......... .......... .......... .......... .......... 60% 33.0M 1s -2024-04-02T21:23:19Z #14 2.639 76150K .......... .......... .......... .......... .......... 60% 58.1M 1s -2024-04-02T21:23:19Z #14 2.639 76200K .......... .......... .......... .......... .......... 60% 100M 1s -2024-04-02T21:23:19Z #14 2.639 76250K .......... .......... .......... .......... .......... 60% 105M 1s -2024-04-02T21:23:19Z #14 2.639 76300K .......... .......... .......... .......... .......... 60% 19.1M 1s -2024-04-02T21:23:19Z #14 2.642 76350K .......... .......... .......... .......... .......... 60% 38.1M 1s -2024-04-02T21:23:19Z #14 2.643 76400K .......... .......... .......... .......... .......... 60% 41.0M 1s -2024-04-02T21:23:19Z #14 2.644 76450K .......... .......... .......... .......... .......... 60% 47.1M 1s -2024-04-02T21:23:19Z #14 2.645 76500K .......... .......... .......... .......... .......... 60% 39.7M 1s -2024-04-02T21:23:19Z #14 2.646 76550K .......... .......... .......... .......... .......... 60% 49.2M 1s -2024-04-02T21:23:19Z #14 2.648 76600K .......... .......... .......... .......... .......... 60% 97.0M 1s -2024-04-02T21:23:19Z #14 2.648 76650K .......... .......... .......... .......... .......... 60% 27.6M 1s -2024-04-02T21:23:19Z #14 2.649 76700K .......... .......... .......... .......... .......... 60% 49.3M 1s -2024-04-02T21:23:19Z #14 2.651 76750K .......... .......... .......... .......... .......... 60% 60.1M 1s -2024-04-02T21:23:19Z #14 2.651 76800K .......... .......... .......... .......... .......... 60% 71.2M 1s -2024-04-02T21:23:19Z #14 2.653 76850K .......... .......... .......... .......... .......... 60% 62.5M 1s -2024-04-02T21:23:19Z #14 2.653 76900K .......... .......... .......... .......... .......... 60% 37.0M 1s -2024-04-02T21:23:19Z #14 2.654 76950K .......... .......... .......... .......... .......... 60% 50.3M 1s -2024-04-02T21:23:19Z #14 2.655 77000K .......... .......... .......... .......... .......... 60% 116M 1s -2024-04-02T21:23:19Z #14 2.656 77050K .......... .......... .......... .......... .......... 60% 34.8M 1s -2024-04-02T21:23:19Z #14 2.657 77100K .......... .......... .......... .......... .......... 60% 88.0M 1s -2024-04-02T21:23:19Z #14 2.657 77150K .......... .......... .......... .......... .......... 60% 37.2M 1s -2024-04-02T21:23:19Z #14 2.659 77200K .......... .......... .......... .......... .......... 60% 25.0M 1s -2024-04-02T21:23:19Z #14 2.661 77250K .......... .......... .......... .......... .......... 60% 74.1M 1s -2024-04-02T21:23:19Z #14 2.662 77300K .......... .......... .......... .......... .......... 61% 126M 1s -2024-04-02T21:23:19Z #14 2.662 77350K .......... .......... .......... .......... .......... 61% 51.0M 1s -2024-04-02T21:23:19Z #14 2.663 77400K .......... .......... .......... .......... .......... 61% 70.5M 1s -2024-04-02T21:23:19Z #14 2.664 77450K .......... .......... .......... .......... .......... 61% 157M 1s -2024-04-02T21:23:19Z #14 2.664 77500K .......... .......... .......... .......... .......... 61% 43.6M 1s -2024-04-02T21:23:19Z #14 2.665 77550K .......... .......... .......... .......... .......... 61% 28.2M 1s -2024-04-02T21:23:19Z #14 2.667 77600K .......... .......... .......... .......... .......... 61% 22.6M 1s -2024-04-02T21:23:19Z #14 2.671 77650K .......... .......... .......... .......... .......... 61% 23.5M 1s -2024-04-02T21:23:19Z #14 2.671 77700K .......... .......... .......... .......... .......... 61% 17.1M 1s -2024-04-02T21:23:19Z #14 2.674 77750K .......... .......... .......... .......... .......... 61% 98.3M 1s -2024-04-02T21:23:19Z #14 2.674 77800K .......... .......... .......... .......... .......... 61% 32.1M 1s -2024-04-02T21:23:19Z #14 2.676 77850K .......... .......... .......... .......... .......... 61% 113M 1s -2024-04-02T21:23:19Z #14 2.676 77900K .......... .......... .......... .......... .......... 61% 43.2M 1s -2024-04-02T21:23:19Z #14 2.679 77950K .......... .......... .......... .......... .......... 61% 78.1M 1s -2024-04-02T21:23:19Z #14 2.679 78000K .......... .......... .......... .......... .......... 61% 58.4M 1s -2024-04-02T21:23:19Z #14 2.679 78050K .......... .......... .......... .......... .......... 61% 49.3M 1s -2024-04-02T21:23:19Z #14 2.680 78100K .......... .......... .......... .......... .......... 61% 46.8M 1s -2024-04-02T21:23:19Z #14 2.681 78150K .......... .......... .......... .......... .......... 61% 87.8M 1s -2024-04-02T21:23:19Z #14 2.682 78200K .......... .......... .......... .......... .......... 61% 40.5M 1s -2024-04-02T21:23:19Z #14 2.682 78250K .......... .......... .......... .......... .......... 61% 36.5M 1s -2024-04-02T21:23:19Z #14 2.687 78300K .......... .......... .......... .......... .......... 61% 52.2M 1s -2024-04-02T21:23:19Z #14 2.687 78350K .......... .......... .......... .......... .......... 61% 100M 1s -2024-04-02T21:23:19Z #14 2.687 78400K .......... .......... .......... .......... .......... 61% 38.6M 1s -2024-04-02T21:23:19Z #14 2.687 78450K .......... .......... .......... .......... .......... 61% 42.6M 1s -2024-04-02T21:23:19Z #14 2.688 78500K .......... .......... .......... .......... .......... 61% 77.4M 1s -2024-04-02T21:23:19Z #14 2.688 78550K .......... .......... .......... .......... .......... 61% 60.7M 1s -2024-04-02T21:23:19Z #14 2.689 78600K .......... .......... .......... .......... .......... 62% 53.9M 1s -2024-04-02T21:23:19Z #14 2.690 78650K .......... .......... .......... .......... .......... 62% 22.6M 1s -2024-04-02T21:23:19Z #14 2.692 78700K .......... .......... .......... .......... .......... 62% 116M 1s -2024-04-02T21:23:19Z #14 2.694 78750K .......... .......... .......... .......... .......... 62% 98.1M 1s -2024-04-02T21:23:19Z #14 2.694 78800K .......... .......... .......... .......... .......... 62% 103M 1s -2024-04-02T21:23:19Z #14 2.694 78850K .......... .......... .......... .......... .......... 62% 95.5M 1s -2024-04-02T21:23:19Z #14 2.695 78900K .......... .......... .......... .......... .......... 62% 112M 1s -2024-04-02T21:23:19Z #14 2.695 78950K .......... .......... .......... .......... .......... 62% 125M 1s -2024-04-02T21:23:19Z #14 2.695 79000K .......... .......... .......... .......... .......... 62% 105M 1s -2024-04-02T21:23:19Z #14 2.695 79050K .......... .......... .......... .......... .......... 62% 19.8M 1s -2024-04-02T21:23:19Z #14 2.698 79100K .......... .......... .......... .......... .......... 62% 150M 1s -2024-04-02T21:23:19Z #14 2.698 79150K .......... .......... .......... .......... .......... 62% 136M 1s -2024-04-02T21:23:19Z #14 2.698 79200K .......... .......... .......... .......... .......... 62% 49.6M 1s -2024-04-02T21:23:19Z #14 2.699 79250K .......... .......... .......... .......... .......... 62% 42.9M 1s -2024-04-02T21:23:19Z #14 2.701 79300K .......... .......... .......... .......... .......... 62% 92.3M 1s -2024-04-02T21:23:19Z #14 2.701 79350K .......... .......... .......... .......... .......... 62% 19.6M 1s -2024-04-02T21:23:19Z #14 2.703 79400K .......... .......... .......... .......... .......... 62% 33.6M 1s -2024-04-02T21:23:19Z #14 2.705 79450K .......... .......... .......... .......... .......... 62% 67.7M 1s -2024-04-02T21:23:19Z #14 2.706 79500K .......... .......... .......... .......... .......... 62% 29.6M 1s -2024-04-02T21:23:19Z #14 2.707 79550K .......... .......... .......... .......... .......... 62% 67.7M 1s -2024-04-02T21:23:19Z #14 2.708 79600K .......... .......... .......... .......... .......... 62% 27.1M 1s -2024-04-02T21:23:19Z #14 2.710 79650K .......... .......... .......... .......... .......... 62% 46.7M 1s -2024-04-02T21:23:19Z #14 2.711 79700K .......... .......... .......... .......... .......... 62% 52.2M 1s -2024-04-02T21:23:19Z #14 2.712 79750K .......... .......... .......... .......... .......... 62% 41.6M 1s -2024-04-02T21:23:19Z #14 2.713 79800K .......... .......... .......... .......... .......... 62% 76.6M 1s -2024-04-02T21:23:19Z #14 2.714 79850K .......... .......... .......... .......... .......... 63% 87.7M 1s -2024-04-02T21:23:19Z #14 2.715 79900K .......... .......... .......... .......... .......... 63% 26.8M 1s -2024-04-02T21:23:19Z #14 2.716 79950K .......... .......... .......... .......... .......... 63% 32.6M 1s -2024-04-02T21:23:19Z #14 2.718 80000K .......... .......... .......... .......... .......... 63% 115M 1s -2024-04-02T21:23:19Z #14 2.718 80050K .......... .......... .......... .......... .......... 63% 38.6M 1s -2024-04-02T21:23:19Z #14 2.719 80100K .......... .......... .......... .......... .......... 63% 60.6M 1s -2024-04-02T21:23:19Z #14 2.720 80150K .......... .......... .......... .......... .......... 63% 40.7M 1s -2024-04-02T21:23:19Z #14 2.723 80200K .......... .......... .......... .......... .......... 63% 96.3M 1s -2024-04-02T21:23:19Z #14 2.723 80250K .......... .......... .......... .......... .......... 63% 164M 1s -2024-04-02T21:23:19Z #14 2.723 80300K .......... .......... .......... .......... .......... 63% 114M 1s -2024-04-02T21:23:19Z #14 2.723 80350K .......... .......... .......... .......... .......... 63% 108M 1s -2024-04-02T21:23:19Z #14 2.723 80400K .......... .......... .......... .......... .......... 63% 100M 1s -2024-04-02T21:23:19Z #14 2.724 80450K .......... .......... .......... .......... .......... 63% 127M 1s -2024-04-02T21:23:19Z #14 2.724 80500K .......... .......... .......... .......... .......... 63% 101M 1s -2024-04-02T21:23:19Z #14 2.725 80550K .......... .......... .......... .......... .......... 63% 101M 1s -2024-04-02T21:23:19Z #14 2.725 80600K .......... .......... .......... .......... .......... 63% 121M 1s -2024-04-02T21:23:19Z #14 2.725 80650K .......... .......... .......... .......... .......... 63% 58.0M 1s -2024-04-02T21:23:19Z #14 2.726 80700K .......... .......... .......... .......... .......... 63% 27.9M 1s -2024-04-02T21:23:19Z #14 2.728 80750K .......... .......... .......... .......... .......... 63% 39.8M 1s -2024-04-02T21:23:19Z #14 2.729 80800K .......... .......... .......... .......... .......... 63% 42.7M 1s -2024-04-02T21:23:19Z #14 2.730 80850K .......... .......... .......... .......... .......... 63% 44.8M 1s -2024-04-02T21:23:19Z #14 2.731 80900K .......... .......... .......... .......... .......... 63% 74.4M 1s -2024-04-02T21:23:19Z #14 2.732 80950K .......... .......... .......... .......... .......... 63% 47.9M 1s -2024-04-02T21:23:19Z #14 2.733 81000K .......... .......... .......... .......... .......... 63% 146M 1s -2024-04-02T21:23:19Z #14 2.733 81050K .......... .......... .......... .......... .......... 63% 60.0M 1s -2024-04-02T21:23:19Z #14 2.736 81100K .......... .......... .......... .......... .......... 64% 53.1M 1s -2024-04-02T21:23:19Z #14 2.736 81150K .......... .......... .......... .......... .......... 64% 42.0M 1s -2024-04-02T21:23:19Z #14 2.737 81200K .......... .......... .......... .......... .......... 64% 46.0M 1s -2024-04-02T21:23:19Z #14 2.737 81250K .......... .......... .......... .......... .......... 64% 47.8M 1s -2024-04-02T21:23:19Z #14 2.739 81300K .......... .......... .......... .......... .......... 64% 45.6M 1s -2024-04-02T21:23:19Z #14 2.751 81350K .......... .......... .......... .......... .......... 64% 58.1M 1s -2024-04-02T21:23:19Z #14 2.751 81400K .......... .......... .......... .......... .......... 64% 150M 1s -2024-04-02T21:23:19Z #14 2.751 81450K .......... .......... .......... .......... .......... 64% 66.0M 1s -2024-04-02T21:23:19Z #14 2.751 81500K .......... .......... .......... .......... .......... 64% 103M 1s -2024-04-02T21:23:19Z #14 2.751 81550K .......... .......... .......... .......... .......... 64% 108M 1s -2024-04-02T21:23:19Z #14 2.751 81600K .......... .......... .......... .......... .......... 64% 78.0M 1s -2024-04-02T21:23:19Z #14 2.751 81650K .......... .......... .......... .......... .......... 64% 81.7M 1s -2024-04-02T21:23:19Z #14 2.751 81700K .......... .......... .......... .......... .......... 64% 93.0M 1s -2024-04-02T21:23:19Z #14 2.751 81750K .......... .......... .......... .......... .......... 64% 178M 1s -2024-04-02T21:23:19Z #14 2.751 81800K .......... .......... .......... .......... .......... 64% 136M 1s -2024-04-02T21:23:19Z #14 2.751 81850K .......... .......... .......... .......... .......... 64% 98.2M 1s -2024-04-02T21:23:19Z #14 2.751 81900K .......... .......... .......... .......... .......... 64% 144M 1s -2024-04-02T21:23:19Z #14 2.751 81950K .......... .......... .......... .......... .......... 64% 127M 1s -2024-04-02T21:23:19Z #14 2.751 82000K .......... .......... .......... .......... .......... 64% 160M 1s -2024-04-02T21:23:19Z #14 2.751 82050K .......... .......... .......... .......... .......... 64% 159M 1s -2024-04-02T21:23:19Z #14 2.751 82100K .......... .......... .......... .......... .......... 64% 181M 1s -2024-04-02T21:23:19Z #14 2.751 82150K .......... .......... .......... .......... .......... 64% 132M 1s -2024-04-02T21:23:19Z #14 2.751 82200K .......... .......... .......... .......... .......... 64% 78.2M 1s -2024-04-02T21:23:19Z #14 2.751 82250K .......... .......... .......... .......... .......... 64% 121M 1s -2024-04-02T21:23:19Z #14 2.751 82300K .......... .......... .......... .......... .......... 64% 104M 1s -2024-04-02T21:23:19Z #14 2.751 82350K .......... .......... .......... .......... .......... 64% 133M 1s -2024-04-02T21:23:19Z #14 2.751 82400K .......... .......... .......... .......... .......... 65% 113M 1s -2024-04-02T21:23:19Z #14 2.751 82450K .......... .......... .......... .......... .......... 65% 121M 1s -2024-04-02T21:23:19Z #14 2.751 82500K .......... .......... .......... .......... .......... 65% 99.9M 1s -2024-04-02T21:23:19Z #14 2.751 82550K .......... .......... .......... .......... .......... 65% 112M 1s -2024-04-02T21:23:19Z #14 2.751 82600K .......... .......... .......... .......... .......... 65% 53.2M 1s -2024-04-02T21:23:19Z #14 2.757 82650K .......... .......... .......... .......... .......... 65% 103M 1s -2024-04-02T21:23:19Z #14 2.757 82700K .......... .......... .......... .......... .......... 65% 144M 1s -2024-04-02T21:23:19Z #14 2.757 82750K .......... .......... .......... .......... .......... 65% 123M 1s -2024-04-02T21:23:19Z #14 2.757 82800K .......... .......... .......... .......... .......... 65% 111M 1s -2024-04-02T21:23:19Z #14 2.757 82850K .......... .......... .......... .......... .......... 65% 102M 1s -2024-04-02T21:23:19Z #14 2.757 82900K .......... .......... .......... .......... .......... 65% 126M 1s -2024-04-02T21:23:19Z #14 2.757 82950K .......... .......... .......... .......... .......... 65% 123M 1s -2024-04-02T21:23:19Z #14 2.757 83000K .......... .......... .......... .......... .......... 65% 119M 1s -2024-04-02T21:23:19Z #14 2.757 83050K .......... .......... .......... .......... .......... 65% 68.9M 1s -2024-04-02T21:23:19Z #14 2.757 83100K .......... .......... .......... .......... .......... 65% 123M 1s -2024-04-02T21:23:19Z #14 2.757 83150K .......... .......... .......... .......... .......... 65% 125M 1s -2024-04-02T21:23:19Z #14 2.757 83200K .......... .......... .......... .......... .......... 65% 103M 1s -2024-04-02T21:23:19Z #14 2.757 83250K .......... .......... .......... .......... .......... 65% 113M 1s -2024-04-02T21:23:19Z #14 2.760 83300K .......... .......... .......... .......... .......... 65% 7.85M 1s -2024-04-02T21:23:19Z #14 2.776 83350K .......... .......... .......... .......... .......... 65% 119M 1s -2024-04-02T21:23:19Z #14 2.776 83400K .......... .......... .......... .......... .......... 65% 124M 1s -2024-04-02T21:23:19Z #14 2.776 83450K .......... .......... .......... .......... .......... 65% 124M 1s -2024-04-02T21:23:19Z #14 2.776 83500K .......... .......... .......... .......... .......... 65% 97.5M 1s -2024-04-02T21:23:19Z #14 2.776 83550K .......... .......... .......... .......... .......... 65% 124M 1s -2024-04-02T21:23:19Z #14 2.776 83600K .......... .......... .......... .......... .......... 65% 126M 1s -2024-04-02T21:23:19Z #14 2.776 83650K .......... .......... .......... .......... .......... 66% 136M 1s -2024-04-02T21:23:19Z #14 2.776 83700K .......... .......... .......... .......... .......... 66% 115M 1s -2024-04-02T21:23:19Z #14 2.776 83750K .......... .......... .......... .......... .......... 66% 113M 1s -2024-04-02T21:23:19Z #14 2.776 83800K .......... .......... .......... .......... .......... 66% 132M 1s -2024-04-02T21:23:19Z #14 2.776 83850K .......... .......... .......... .......... .......... 66% 121M 1s -2024-04-02T21:23:19Z #14 2.776 83900K .......... .......... .......... .......... .......... 66% 90.5M 1s -2024-04-02T21:23:19Z #14 2.776 83950K .......... .......... .......... .......... .......... 66% 128M 1s -2024-04-02T21:23:19Z #14 2.776 84000K .......... .......... .......... .......... .......... 66% 150M 1s -2024-04-02T21:23:19Z #14 2.776 84050K .......... .......... .......... .......... .......... 66% 115M 1s -2024-04-02T21:23:19Z #14 2.776 84100K .......... .......... .......... .......... .......... 66% 135M 1s -2024-04-02T21:23:19Z #14 2.776 84150K .......... .......... .......... .......... .......... 66% 181M 1s -2024-04-02T21:23:19Z #14 2.776 84200K .......... .......... .......... .......... .......... 66% 131M 1s -2024-04-02T21:23:19Z #14 2.776 84250K .......... .......... .......... .......... .......... 66% 153M 1s -2024-04-02T21:23:19Z #14 2.776 84300K .......... .......... .......... .......... .......... 66% 132M 1s -2024-04-02T21:23:19Z #14 2.776 84350K .......... .......... .......... .......... .......... 66% 163M 1s -2024-04-02T21:23:19Z #14 2.776 84400K .......... .......... .......... .......... .......... 66% 149M 1s -2024-04-02T21:23:19Z #14 2.776 84450K .......... .......... .......... .......... .......... 66% 154M 1s -2024-04-02T21:23:19Z #14 2.776 84500K .......... .......... .......... .......... .......... 66% 148M 1s -2024-04-02T21:23:19Z #14 2.776 84550K .......... .......... .......... .......... .......... 66% 157M 1s -2024-04-02T21:23:19Z #14 2.776 84600K .......... .......... .......... .......... .......... 66% 144M 1s -2024-04-02T21:23:19Z #14 2.776 84650K .......... .......... .......... .......... .......... 66% 178M 1s -2024-04-02T21:23:19Z #14 2.776 84700K .......... .......... .......... .......... .......... 66% 134M 1s -2024-04-02T21:23:19Z #14 2.776 84750K .......... .......... .......... .......... .......... 66% 144M 1s -2024-04-02T21:23:19Z #14 2.776 84800K .......... .......... .......... .......... .......... 66% 163M 1s -2024-04-02T21:23:19Z #14 2.776 84850K .......... .......... .......... .......... .......... 66% 145M 1s -2024-04-02T21:23:19Z #14 2.776 84900K .......... .......... .......... .......... .......... 67% 98.2M 1s -2024-04-02T21:23:19Z #14 2.779 84950K .......... .......... .......... .......... .......... 67% 128M 1s -2024-04-02T21:23:19Z #14 2.779 85000K .......... .......... .......... .......... .......... 67% 122M 1s -2024-04-02T21:23:19Z #14 2.779 85050K .......... .......... .......... .......... .......... 67% 117M 1s -2024-04-02T21:23:19Z #14 2.779 85100K .......... .......... .......... .......... .......... 67% 101M 1s -2024-04-02T21:23:19Z #14 2.779 85150K .......... .......... .......... .......... .......... 67% 128M 1s -2024-04-02T21:23:19Z #14 2.779 85200K .......... .......... .......... .......... .......... 67% 127M 1s -2024-04-02T21:23:19Z #14 2.779 85250K .......... .......... .......... .......... .......... 67% 129M 1s -2024-04-02T21:23:19Z #14 2.779 85300K .......... .......... .......... .......... .......... 67% 107M 1s -2024-04-02T21:23:19Z #14 2.779 85350K .......... .......... .......... .......... .......... 67% 104M 1s -2024-04-02T21:23:19Z #14 2.788 85400K .......... .......... .......... .......... .......... 67% 116M 1s -2024-04-02T21:23:19Z #14 2.788 85450K .......... .......... .......... .......... .......... 67% 126M 1s -2024-04-02T21:23:19Z #14 2.788 85500K .......... .......... .......... .......... .......... 67% 131M 1s -2024-04-02T21:23:19Z #14 2.788 85550K .......... .......... .......... .......... .......... 67% 105M 1s -2024-04-02T21:23:19Z #14 2.788 85600K .......... .......... .......... .......... .......... 67% 131M 1s -2024-04-02T21:23:19Z #14 2.788 85650K .......... .......... .......... .......... .......... 67% 122M 1s -2024-04-02T21:23:19Z #14 2.788 85700K .......... .......... .......... .......... .......... 67% 138M 1s -2024-04-02T21:23:19Z #14 2.788 85750K .......... .......... .......... .......... .......... 67% 129M 1s -2024-04-02T21:23:19Z #14 2.788 85800K .......... .......... .......... .......... .......... 67% 128M 1s -2024-04-02T21:23:19Z #14 2.788 85850K .......... .......... .......... .......... .......... 67% 84.3M 1s -2024-04-02T21:23:19Z #14 2.788 85900K .......... .......... .......... .......... .......... 67% 173M 1s -2024-04-02T21:23:19Z #14 2.788 85950K .......... .......... .......... .......... .......... 67% 174M 1s -2024-04-02T21:23:19Z #14 2.788 86000K .......... .......... .......... .......... .......... 67% 186M 1s -2024-04-02T21:23:19Z #14 2.788 86050K .......... .......... .......... .......... .......... 67% 153M 1s -2024-04-02T21:23:19Z #14 2.788 86100K .......... .......... .......... .......... .......... 67% 161M 1s -2024-04-02T21:23:19Z #14 2.788 86150K .......... .......... .......... .......... .......... 67% 171M 1s -2024-04-02T21:23:19Z #14 2.788 86200K .......... .......... .......... .......... .......... 68% 146M 1s -2024-04-02T21:23:19Z #14 2.788 86250K .......... .......... .......... .......... .......... 68% 171M 1s -2024-04-02T21:23:19Z #14 2.788 86300K .......... .......... .......... .......... .......... 68% 175M 1s -2024-04-02T21:23:19Z #14 2.788 86350K .......... .......... .......... .......... .......... 68% 166M 1s -2024-04-02T21:23:19Z #14 2.788 86400K .......... .......... .......... .......... .......... 68% 164M 1s -2024-04-02T21:23:19Z #14 2.788 86450K .......... .......... .......... .......... .......... 68% 177M 1s -2024-04-02T21:23:19Z #14 2.788 86500K .......... .......... .......... .......... .......... 68% 181M 1s -2024-04-02T21:23:19Z #14 2.790 86550K .......... .......... .......... .......... .......... 68% 90.9M 1s -2024-04-02T21:23:19Z #14 2.790 86600K .......... .......... .......... .......... .......... 68% 131M 1s -2024-04-02T21:23:19Z #14 2.790 86650K .......... .......... .......... .......... .......... 68% 107M 1s -2024-04-02T21:23:19Z #14 2.790 86700K .......... .......... .......... .......... .......... 68% 126M 1s -2024-04-02T21:23:19Z #14 2.790 86750K .......... .......... .......... .......... .......... 68% 119M 1s -2024-04-02T21:23:19Z #14 2.790 86800K .......... .......... .......... .......... .......... 68% 122M 1s -2024-04-02T21:23:20Z #14 2.790 86850K .......... .......... .......... .......... .......... 68% 361K 1s -2024-04-02T21:23:20Z #14 2.929 86900K .......... .......... .......... .......... .......... 68% 124M 1s -2024-04-02T21:23:20Z #14 2.929 86950K .......... .......... .......... .......... .......... 68% 122M 1s -2024-04-02T21:23:20Z #14 2.935 87000K .......... .......... .......... .......... .......... 68% 134M 1s -2024-04-02T21:23:20Z #14 2.935 87050K .......... .......... .......... .......... .......... 68% 113M 1s -2024-04-02T21:23:20Z #14 2.935 87100K .......... .......... .......... .......... .......... 68% 150M 1s -2024-04-02T21:23:20Z #14 2.935 87150K .......... .......... .......... .......... .......... 68% 149M 1s -2024-04-02T21:23:20Z #14 2.935 87200K .......... .......... .......... .......... .......... 68% 171M 1s -2024-04-02T21:23:20Z #14 2.935 87250K .......... .......... .......... .......... .......... 68% 123M 1s -2024-04-02T21:23:20Z #14 2.935 87300K .......... .......... .......... .......... .......... 68% 159M 1s -2024-04-02T21:23:20Z #14 2.935 87350K .......... .......... .......... .......... .......... 68% 150M 1s -2024-04-02T21:23:20Z #14 2.935 87400K .......... .......... .......... .......... .......... 68% 155M 1s -2024-04-02T21:23:20Z #14 2.935 87450K .......... .......... .......... .......... .......... 69% 164M 1s -2024-04-02T21:23:20Z #14 2.935 87500K .......... .......... .......... .......... .......... 69% 138M 1s -2024-04-02T21:23:20Z #14 2.935 87550K .......... .......... .......... .......... .......... 69% 119M 1s -2024-04-02T21:23:20Z #14 2.935 87600K .......... .......... .......... .......... .......... 69% 141M 1s -2024-04-02T21:23:20Z #14 2.935 87650K .......... .......... .......... .......... .......... 69% 124M 1s -2024-04-02T21:23:20Z #14 2.935 87700K .......... .......... .......... .......... .......... 69% 125M 1s -2024-04-02T21:23:20Z #14 2.935 87750K .......... .......... .......... .......... .......... 69% 143M 1s -2024-04-02T21:23:20Z #14 2.935 87800K .......... .......... .......... .......... .......... 69% 129M 1s -2024-04-02T21:23:20Z #14 2.935 87850K .......... .......... .......... .......... .......... 69% 30.0M 1s -2024-04-02T21:23:20Z #14 2.937 87900K .......... .......... .......... .......... .......... 69% 15.4M 1s -2024-04-02T21:23:20Z #14 2.943 87950K .......... .......... .......... .......... .......... 69% 28.5M 1s -2024-04-02T21:23:20Z #14 2.943 88000K .......... .......... .......... .......... .......... 69% 18.8M 1s -2024-04-02T21:23:20Z #14 2.946 88050K .......... .......... .......... .......... .......... 69% 158M 1s -2024-04-02T21:23:20Z #14 2.946 88100K .......... .......... .......... .......... .......... 69% 109M 1s -2024-04-02T21:23:20Z #14 2.946 88150K .......... .......... .......... .......... .......... 69% 30.4M 1s -2024-04-02T21:23:20Z #14 2.946 88200K .......... .......... .......... .......... .......... 69% 73.0M 1s -2024-04-02T21:23:20Z #14 2.948 88250K .......... .......... .......... .......... .......... 69% 75.1M 1s -2024-04-02T21:23:20Z #14 2.951 88300K .......... .......... .......... .......... .......... 69% 24.9M 1s -2024-04-02T21:23:20Z #14 2.951 88350K .......... .......... .......... .......... .......... 69% 127M 1s -2024-04-02T21:23:20Z #14 2.951 88400K .......... .......... .......... .......... .......... 69% 143M 1s -2024-04-02T21:23:20Z #14 2.951 88450K .......... .......... .......... .......... .......... 69% 24.6M 1s -2024-04-02T21:23:20Z #14 2.952 88500K .......... .......... .......... .......... .......... 69% 122M 1s -2024-04-02T21:23:20Z #14 2.954 88550K .......... .......... .......... .......... .......... 69% 178M 1s -2024-04-02T21:23:20Z #14 2.954 88600K .......... .......... .......... .......... .......... 69% 135M 1s -2024-04-02T21:23:20Z #14 2.954 88650K .......... .......... .......... .......... .......... 69% 135M 1s -2024-04-02T21:23:20Z #14 2.955 88700K .......... .......... .......... .......... .......... 70% 163M 1s -2024-04-02T21:23:20Z #14 2.955 88750K .......... .......... .......... .......... .......... 70% 131M 1s -2024-04-02T21:23:20Z #14 2.955 88800K .......... .......... .......... .......... .......... 70% 117M 1s -2024-04-02T21:23:20Z #14 2.955 88850K .......... .......... .......... .......... .......... 70% 137M 1s -2024-04-02T21:23:20Z #14 2.955 88900K .......... .......... .......... .......... .......... 70% 128M 1s -2024-04-02T21:23:20Z #14 2.956 88950K .......... .......... .......... .......... .......... 70% 141M 1s -2024-04-02T21:23:20Z #14 2.956 89000K .......... .......... .......... .......... .......... 70% 129M 1s -2024-04-02T21:23:20Z #14 2.956 89050K .......... .......... .......... .......... .......... 70% 128M 1s -2024-04-02T21:23:20Z #14 2.957 89100K .......... .......... .......... .......... .......... 70% 151M 1s -2024-04-02T21:23:20Z #14 2.957 89150K .......... .......... .......... .......... .......... 70% 136M 1s -2024-04-02T21:23:20Z #14 2.957 89200K .......... .......... .......... .......... .......... 70% 98.3M 1s -2024-04-02T21:23:20Z #14 2.958 89250K .......... .......... .......... .......... .......... 70% 161M 1s -2024-04-02T21:23:20Z #14 2.958 89300K .......... .......... .......... .......... .......... 70% 139M 1s -2024-04-02T21:23:20Z #14 2.959 89350K .......... .......... .......... .......... .......... 70% 139M 1s -2024-04-02T21:23:20Z #14 2.959 89400K .......... .......... .......... .......... .......... 70% 117M 1s -2024-04-02T21:23:20Z #14 2.959 89450K .......... .......... .......... .......... .......... 70% 121M 1s -2024-04-02T21:23:20Z #14 2.960 89500K .......... .......... .......... .......... .......... 70% 136M 1s -2024-04-02T21:23:20Z #14 2.960 89550K .......... .......... .......... .......... .......... 70% 109M 1s -2024-04-02T21:23:20Z #14 2.960 89600K .......... .......... .......... .......... .......... 70% 141M 1s -2024-04-02T21:23:20Z #14 2.961 89650K .......... .......... .......... .......... .......... 70% 114M 1s -2024-04-02T21:23:20Z #14 2.963 89700K .......... .......... .......... .......... .......... 70% 139M 1s -2024-04-02T21:23:20Z #14 2.963 89750K .......... .......... .......... .......... .......... 70% 150M 1s -2024-04-02T21:23:20Z #14 2.963 89800K .......... .......... .......... .......... .......... 70% 125M 1s -2024-04-02T21:23:20Z #14 2.963 89850K .......... .......... .......... .......... .......... 70% 150M 1s -2024-04-02T21:23:20Z #14 2.963 89900K .......... .......... .......... .......... .......... 70% 87.9M 1s -2024-04-02T21:23:20Z #14 2.966 89950K .......... .......... .......... .......... .......... 70% 95.8M 1s -2024-04-02T21:23:20Z #14 2.966 90000K .......... .......... .......... .......... .......... 71% 154M 1s -2024-04-02T21:23:20Z #14 2.966 90050K .......... .......... .......... .......... .......... 71% 151M 1s -2024-04-02T21:23:20Z #14 2.966 90100K .......... .......... .......... .......... .......... 71% 128M 1s -2024-04-02T21:23:20Z #14 2.966 90150K .......... .......... .......... .......... .......... 71% 123M 1s -2024-04-02T21:23:20Z #14 2.966 90200K .......... .......... .......... .......... .......... 71% 124M 1s -2024-04-02T21:23:20Z #14 2.966 90250K .......... .......... .......... .......... .......... 71% 146M 1s -2024-04-02T21:23:20Z #14 2.966 90300K .......... .......... .......... .......... .......... 71% 102M 1s -2024-04-02T21:23:20Z #14 2.971 90350K .......... .......... .......... .......... .......... 71% 160M 1s -2024-04-02T21:23:20Z #14 2.971 90400K .......... .......... .......... .......... .......... 71% 109M 1s -2024-04-02T21:23:20Z #14 2.971 90450K .......... .......... .......... .......... .......... 71% 156M 1s -2024-04-02T21:23:20Z #14 2.971 90500K .......... .......... .......... .......... .......... 71% 141M 1s -2024-04-02T21:23:20Z #14 2.971 90550K .......... .......... .......... .......... .......... 71% 127M 1s -2024-04-02T21:23:20Z #14 2.971 90600K .......... .......... .......... .......... .......... 71% 137M 1s -2024-04-02T21:23:20Z #14 2.971 90650K .......... .......... .......... .......... .......... 71% 119M 1s -2024-04-02T21:23:20Z #14 2.971 90700K .......... .......... .......... .......... .......... 71% 124M 1s -2024-04-02T21:23:20Z #14 2.971 90750K .......... .......... .......... .......... .......... 71% 142M 1s -2024-04-02T21:23:20Z #14 2.971 90800K .......... .......... .......... .......... .......... 71% 128M 1s -2024-04-02T21:23:20Z #14 2.971 90850K .......... .......... .......... .......... .......... 71% 143M 1s -2024-04-02T21:23:20Z #14 2.971 90900K .......... .......... .......... .......... .......... 71% 129M 1s -2024-04-02T21:23:20Z #14 2.971 90950K .......... .......... .......... .......... .......... 71% 66.0M 1s -2024-04-02T21:23:20Z #14 2.975 91000K .......... .......... .......... .......... .......... 71% 140M 1s -2024-04-02T21:23:20Z #14 2.975 91050K .......... .......... .......... .......... .......... 71% 151M 1s -2024-04-02T21:23:20Z #14 2.975 91100K .......... .......... .......... .......... .......... 71% 122M 1s -2024-04-02T21:23:20Z #14 2.975 91150K .......... .......... .......... .......... .......... 71% 149M 1s -2024-04-02T21:23:20Z #14 2.975 91200K .......... .......... .......... .......... .......... 71% 113M 1s -2024-04-02T21:23:20Z #14 2.975 91250K .......... .......... .......... .......... .......... 72% 136M 1s -2024-04-02T21:23:20Z #14 2.975 91300K .......... .......... .......... .......... .......... 72% 136M 1s -2024-04-02T21:23:20Z #14 2.975 91350K .......... .......... .......... .......... .......... 72% 142M 1s -2024-04-02T21:23:20Z #14 2.975 91400K .......... .......... .......... .......... .......... 72% 115M 1s -2024-04-02T21:23:20Z #14 2.975 91450K .......... .......... .......... .......... .......... 72% 59.7M 1s -2024-04-02T21:23:20Z #14 2.979 91500K .......... .......... .......... .......... .......... 72% 154M 1s -2024-04-02T21:23:20Z #14 2.979 91550K .......... .......... .......... .......... .......... 72% 139M 1s -2024-04-02T21:23:20Z #14 2.979 91600K .......... .......... .......... .......... .......... 72% 133M 1s -2024-04-02T21:23:20Z #14 2.979 91650K .......... .......... .......... .......... .......... 72% 149M 1s -2024-04-02T21:23:20Z #14 2.979 91700K .......... .......... .......... .......... .......... 72% 110M 1s -2024-04-02T21:23:20Z #14 2.979 91750K .......... .......... .......... .......... .......... 72% 139M 1s -2024-04-02T21:23:20Z #14 2.979 91800K .......... .......... .......... .......... .......... 72% 145M 1s -2024-04-02T21:23:20Z #14 2.979 91850K .......... .......... .......... .......... .......... 72% 115M 1s -2024-04-02T21:23:20Z #14 2.979 91900K .......... .......... .......... .......... .......... 72% 141M 1s -2024-04-02T21:23:20Z #14 2.979 91950K .......... .......... .......... .......... .......... 72% 92.2M 1s -2024-04-02T21:23:20Z #14 2.983 92000K .......... .......... .......... .......... .......... 72% 133M 1s -2024-04-02T21:23:20Z #14 2.983 92050K .......... .......... .......... .......... .......... 72% 132M 1s -2024-04-02T21:23:20Z #14 2.983 92100K .......... .......... .......... .......... .......... 72% 137M 1s -2024-04-02T21:23:20Z #14 2.983 92150K .......... .......... .......... .......... .......... 72% 148M 1s -2024-04-02T21:23:20Z #14 2.983 92200K .......... .......... .......... .......... .......... 72% 112M 1s -2024-04-02T21:23:20Z #14 2.983 92250K .......... .......... .......... .......... .......... 72% 140M 1s -2024-04-02T21:23:20Z #14 2.983 92300K .......... .......... .......... .......... .......... 72% 135M 1s -2024-04-02T21:23:20Z #14 2.983 92350K .......... .......... .......... .......... .......... 72% 123M 1s -2024-04-02T21:23:20Z #14 2.983 92400K .......... .......... .......... .......... .......... 72% 140M 1s -2024-04-02T21:23:20Z #14 2.983 92450K .......... .......... .......... .......... .......... 72% 70.7M 1s -2024-04-02T21:23:20Z #14 2.987 92500K .......... .......... .......... .......... .......... 72% 153M 1s -2024-04-02T21:23:20Z #14 2.987 92550K .......... .......... .......... .......... .......... 73% 150M 1s -2024-04-02T21:23:20Z #14 2.987 92600K .......... .......... .......... .......... .......... 73% 135M 1s -2024-04-02T21:23:20Z #14 2.987 92650K .......... .......... .......... .......... .......... 73% 128M 1s -2024-04-02T21:23:20Z #14 2.987 92700K .......... .......... .......... .......... .......... 73% 120M 1s -2024-04-02T21:23:20Z #14 2.987 92750K .......... .......... .......... .......... .......... 73% 153M 1s -2024-04-02T21:23:20Z #14 2.987 92800K .......... .......... .......... .......... .......... 73% 101M 1s -2024-04-02T21:23:20Z #14 2.987 92850K .......... .......... .......... .......... .......... 73% 121M 1s -2024-04-02T21:23:20Z #14 2.987 92900K .......... .......... .......... .......... .......... 73% 129M 1s -2024-04-02T21:23:20Z #14 2.987 92950K .......... .......... .......... .......... .......... 73% 54.0M 1s -2024-04-02T21:23:20Z #14 2.988 93000K .......... .......... .......... .......... .......... 73% 40.2M 1s -2024-04-02T21:23:20Z #14 2.989 93050K .......... .......... .......... .......... .......... 73% 29.3M 1s -2024-04-02T21:23:20Z #14 2.995 93100K .......... .......... .......... .......... .......... 73% 116M 1s -2024-04-02T21:23:20Z #14 2.995 93150K .......... .......... .......... .......... .......... 73% 172M 1s -2024-04-02T21:23:20Z #14 2.995 93200K .......... .......... .......... .......... .......... 73% 146M 1s -2024-04-02T21:23:20Z #14 2.995 93250K .......... .......... .......... .......... .......... 73% 187M 1s -2024-04-02T21:23:20Z #14 2.995 93300K .......... .......... .......... .......... .......... 73% 150M 1s -2024-04-02T21:23:20Z #14 2.995 93350K .......... .......... .......... .......... .......... 73% 142M 1s -2024-04-02T21:23:20Z #14 2.995 93400K .......... .......... .......... .......... .......... 73% 169M 1s -2024-04-02T21:23:20Z #14 2.995 93450K .......... .......... .......... .......... .......... 73% 132M 1s -2024-04-02T21:23:20Z #14 2.995 93500K .......... .......... .......... .......... .......... 73% 153M 1s -2024-04-02T21:23:20Z #14 2.995 93550K .......... .......... .......... .......... .......... 73% 181M 1s -2024-04-02T21:23:20Z #14 2.995 93600K .......... .......... .......... .......... .......... 73% 179M 1s -2024-04-02T21:23:20Z #14 2.995 93650K .......... .......... .......... .......... .......... 73% 169M 1s -2024-04-02T21:23:20Z #14 2.995 93700K .......... .......... .......... .......... .......... 73% 174M 1s -2024-04-02T21:23:20Z #14 2.995 93750K .......... .......... .......... .......... .......... 73% 82.2M 1s -2024-04-02T21:23:20Z #14 2.997 93800K .......... .......... .......... .......... .......... 74% 17.7M 1s -2024-04-02T21:23:20Z #14 2.998 93850K .......... .......... .......... .......... .......... 74% 30.5M 1s -2024-04-02T21:23:20Z #14 3.003 93900K .......... .......... .......... .......... .......... 74% 152M 1s -2024-04-02T21:23:20Z #14 3.003 93950K .......... .......... .......... .......... .......... 74% 153M 1s -2024-04-02T21:23:20Z #14 3.003 94000K .......... .......... .......... .......... .......... 74% 141M 1s -2024-04-02T21:23:20Z #14 3.003 94050K .......... .......... .......... .......... .......... 74% 154M 1s -2024-04-02T21:23:20Z #14 3.003 94100K .......... .......... .......... .......... .......... 74% 126M 1s -2024-04-02T21:23:20Z #14 3.003 94150K .......... .......... .......... .......... .......... 74% 27.5M 1s -2024-04-02T21:23:20Z #14 3.007 94200K .......... .......... .......... .......... .......... 74% 116M 1s -2024-04-02T21:23:20Z #14 3.007 94250K .......... .......... .......... .......... .......... 74% 184M 1s -2024-04-02T21:23:20Z #14 3.007 94300K .......... .......... .......... .......... .......... 74% 175M 1s -2024-04-02T21:23:20Z #14 3.007 94350K .......... .......... .......... .......... .......... 74% 111M 1s -2024-04-02T21:23:20Z #14 3.007 94400K .......... .......... .......... .......... .......... 74% 138M 1s -2024-04-02T21:23:20Z #14 3.007 94450K .......... .......... .......... .......... .......... 74% 128M 1s -2024-04-02T21:23:20Z #14 3.007 94500K .......... .......... .......... .......... .......... 74% 171M 1s -2024-04-02T21:23:20Z #14 3.007 94550K .......... .......... .......... .......... .......... 74% 181M 1s -2024-04-02T21:23:20Z #14 3.007 94600K .......... .......... .......... .......... .......... 74% 120M 1s -2024-04-02T21:23:20Z #14 3.007 94650K .......... .......... .......... .......... .......... 74% 135M 1s -2024-04-02T21:23:20Z #14 3.007 94700K .......... .......... .......... .......... .......... 74% 119M 1s -2024-04-02T21:23:20Z #14 3.010 94750K .......... .......... .......... .......... .......... 74% 112M 1s -2024-04-02T21:23:20Z #14 3.010 94800K .......... .......... .......... .......... .......... 74% 129M 1s -2024-04-02T21:23:20Z #14 3.010 94850K .......... .......... .......... .......... .......... 74% 28.8M 1s -2024-04-02T21:23:20Z #14 3.010 94900K .......... .......... .......... .......... .......... 74% 88.3M 1s -2024-04-02T21:23:20Z #14 3.016 94950K .......... .......... .......... .......... .......... 74% 170M 1s -2024-04-02T21:23:20Z #14 3.016 95000K .......... .......... .......... .......... .......... 74% 152M 1s -2024-04-02T21:23:20Z #14 3.016 95050K .......... .......... .......... .......... .......... 75% 134M 1s -2024-04-02T21:23:20Z #14 3.016 95100K .......... .......... .......... .......... .......... 75% 136M 1s -2024-04-02T21:23:20Z #14 3.016 95150K .......... .......... .......... .......... .......... 75% 30.5M 1s -2024-04-02T21:23:20Z #14 3.016 95200K .......... .......... .......... .......... .......... 75% 156M 1s -2024-04-02T21:23:20Z #14 3.016 95250K .......... .......... .......... .......... .......... 75% 124M 1s -2024-04-02T21:23:20Z #14 3.016 95300K .......... .......... .......... .......... .......... 75% 149M 1s -2024-04-02T21:23:20Z #14 3.016 95350K .......... .......... .......... .......... .......... 75% 133M 1s -2024-04-02T21:23:20Z #14 3.016 95400K .......... .......... .......... .......... .......... 75% 26.5M 1s -2024-04-02T21:23:20Z #14 3.016 95450K .......... .......... .......... .......... .......... 75% 101M 1s -2024-04-02T21:23:20Z #14 3.019 95500K .......... .......... .......... .......... .......... 75% 151M 1s -2024-04-02T21:23:20Z #14 3.019 95550K .......... .......... .......... .......... .......... 75% 117M 1s -2024-04-02T21:23:20Z #14 3.019 95600K .......... .......... .......... .......... .......... 75% 142M 1s -2024-04-02T21:23:20Z #14 3.019 95650K .......... .......... .......... .......... .......... 75% 141M 1s -2024-04-02T21:23:20Z #14 3.019 95700K .......... .......... .......... .......... .......... 75% 100M 1s -2024-04-02T21:23:20Z #14 3.019 95750K .......... .......... .......... .......... .......... 75% 91.4M 1s -2024-04-02T21:23:20Z #14 3.023 95800K .......... .......... .......... .......... .......... 75% 128M 1s -2024-04-02T21:23:20Z #14 3.023 95850K .......... .......... .......... .......... .......... 75% 137M 1s -2024-04-02T21:23:20Z #14 3.023 95900K .......... .......... .......... .......... .......... 75% 118M 1s -2024-04-02T21:23:20Z #14 3.023 95950K .......... .......... .......... .......... .......... 75% 131M 1s -2024-04-02T21:23:20Z #14 3.023 96000K .......... .......... .......... .......... .......... 75% 121M 1s -2024-04-02T21:23:20Z #14 3.023 96050K .......... .......... .......... .......... .......... 75% 121M 1s -2024-04-02T21:23:20Z #14 3.023 96100K .......... .......... .......... .......... .......... 75% 121M 1s -2024-04-02T21:23:20Z #14 3.023 96150K .......... .......... .......... .......... .......... 75% 152M 1s -2024-04-02T21:23:20Z #14 3.023 96200K .......... .......... .......... .......... .......... 75% 121M 1s -2024-04-02T21:23:20Z #14 3.023 96250K .......... .......... .......... .......... .......... 75% 59.6M 1s -2024-04-02T21:23:20Z #14 3.027 96300K .......... .......... .......... .......... .......... 75% 112M 1s -2024-04-02T21:23:20Z #14 3.027 96350K .......... .......... .......... .......... .......... 76% 149M 1s -2024-04-02T21:23:20Z #14 3.027 96400K .......... .......... .......... .......... .......... 76% 131M 1s -2024-04-02T21:23:20Z #14 3.027 96450K .......... .......... .......... .......... .......... 76% 128M 1s -2024-04-02T21:23:20Z #14 3.027 96500K .......... .......... .......... .......... .......... 76% 124M 1s -2024-04-02T21:23:20Z #14 3.027 96550K .......... .......... .......... .......... .......... 76% 109M 1s -2024-04-02T21:23:20Z #14 3.027 96600K .......... .......... .......... .......... .......... 76% 142M 1s -2024-04-02T21:23:20Z #14 3.027 96650K .......... .......... .......... .......... .......... 76% 131M 1s -2024-04-02T21:23:20Z #14 3.027 96700K .......... .......... .......... .......... .......... 76% 116M 1s -2024-04-02T21:23:20Z #14 3.031 96750K .......... .......... .......... .......... .......... 76% 108M 1s -2024-04-02T21:23:20Z #14 3.031 96800K .......... .......... .......... .......... .......... 76% 130M 1s -2024-04-02T21:23:20Z #14 3.031 96850K .......... .......... .......... .......... .......... 76% 127M 1s -2024-04-02T21:23:20Z #14 3.031 96900K .......... .......... .......... .......... .......... 76% 127M 1s -2024-04-02T21:23:20Z #14 3.031 96950K .......... .......... .......... .......... .......... 76% 126M 1s -2024-04-02T21:23:20Z #14 3.031 97000K .......... .......... .......... .......... .......... 76% 111M 1s -2024-04-02T21:23:20Z #14 3.031 97050K .......... .......... .......... .......... .......... 76% 120M 1s -2024-04-02T21:23:20Z #14 3.031 97100K .......... .......... .......... .......... .......... 76% 124M 1s -2024-04-02T21:23:20Z #14 3.031 97150K .......... .......... .......... .......... .......... 76% 145M 1s -2024-04-02T21:23:20Z #14 3.031 97200K .......... .......... .......... .......... .......... 76% 118M 1s -2024-04-02T21:23:20Z #14 3.035 97250K .......... .......... .......... .......... .......... 76% 108M 1s -2024-04-02T21:23:20Z #14 3.035 97300K .......... .......... .......... .......... .......... 76% 107M 1s -2024-04-02T21:23:20Z #14 3.035 97350K .......... .......... .......... .......... .......... 76% 125M 1s -2024-04-02T21:23:20Z #14 3.035 97400K .......... .......... .......... .......... .......... 76% 109M 0s -2024-04-02T21:23:20Z #14 3.035 97450K .......... .......... .......... .......... .......... 76% 143M 0s -2024-04-02T21:23:20Z #14 3.035 97500K .......... .......... .......... .......... .......... 76% 132M 0s -2024-04-02T21:23:20Z #14 3.035 97550K .......... .......... .......... .......... .......... 76% 110M 0s -2024-04-02T21:23:20Z #14 3.035 97600K .......... .......... .......... .......... .......... 77% 114M 0s -2024-04-02T21:23:20Z #14 3.035 97650K .......... .......... .......... .......... .......... 77% 133M 0s -2024-04-02T21:23:20Z #14 3.035 97700K .......... .......... .......... .......... .......... 77% 122M 0s -2024-04-02T21:23:20Z #14 3.039 97750K .......... .......... .......... .......... .......... 77% 127M 0s -2024-04-02T21:23:20Z #14 3.039 97800K .......... .......... .......... .......... .......... 77% 118M 0s -2024-04-02T21:23:20Z #14 3.039 97850K .......... .......... .......... .......... .......... 77% 131M 0s -2024-04-02T21:23:20Z #14 3.039 97900K .......... .......... .......... .......... .......... 77% 102M 0s -2024-04-02T21:23:20Z #14 3.039 97950K .......... .......... .......... .......... .......... 77% 129M 0s -2024-04-02T21:23:20Z #14 3.039 98000K .......... .......... .......... .......... .......... 77% 128M 0s -2024-04-02T21:23:20Z #14 3.039 98050K .......... .......... .......... .......... .......... 77% 144M 0s -2024-04-02T21:23:20Z #14 3.039 98100K .......... .......... .......... .......... .......... 77% 119M 0s -2024-04-02T21:23:20Z #14 3.039 98150K .......... .......... .......... .......... .......... 77% 136M 0s -2024-04-02T21:23:20Z #14 3.039 98200K .......... .......... .......... .......... .......... 77% 98.3M 0s -2024-04-02T21:23:20Z #14 3.043 98250K .......... .......... .......... .......... .......... 77% 132M 0s -2024-04-02T21:23:20Z #14 3.043 98300K .......... .......... .......... .......... .......... 77% 132M 0s -2024-04-02T21:23:20Z #14 3.043 98350K .......... .......... .......... .......... .......... 77% 108M 0s -2024-04-02T21:23:20Z #14 3.043 98400K .......... .......... .......... .......... .......... 77% 112M 0s -2024-04-02T21:23:20Z #14 3.043 98450K .......... .......... .......... .......... .......... 77% 141M 0s -2024-04-02T21:23:20Z #14 3.043 98500K .......... .......... .......... .......... .......... 77% 117M 0s -2024-04-02T21:23:20Z #14 3.043 98550K .......... .......... .......... .......... .......... 77% 120M 0s -2024-04-02T21:23:20Z #14 3.043 98600K .......... .......... .......... .......... .......... 77% 118M 0s -2024-04-02T21:23:20Z #14 3.043 98650K .......... .......... .......... .......... .......... 77% 138M 0s -2024-04-02T21:23:20Z #14 3.043 98700K .......... .......... .......... .......... .......... 77% 103M 0s -2024-04-02T21:23:20Z #14 3.047 98750K .......... .......... .......... .......... .......... 77% 133M 0s -2024-04-02T21:23:20Z #14 3.047 98800K .......... .......... .......... .......... .......... 77% 124M 0s -2024-04-02T21:23:20Z #14 3.047 98850K .......... .......... .......... .......... .......... 78% 113M 0s -2024-04-02T21:23:20Z #14 3.047 98900K .......... .......... .......... .......... .......... 78% 149M 0s -2024-04-02T21:23:20Z #14 3.047 98950K .......... .......... .......... .......... .......... 78% 124M 0s -2024-04-02T21:23:20Z #14 3.047 99000K .......... .......... .......... .......... .......... 78% 129M 0s -2024-04-02T21:23:20Z #14 3.047 99050K .......... .......... .......... .......... .......... 78% 111M 0s -2024-04-02T21:23:20Z #14 3.047 99100K .......... .......... .......... .......... .......... 78% 147M 0s -2024-04-02T21:23:20Z #14 3.047 99150K .......... .......... .......... .......... .......... 78% 151M 0s -2024-04-02T21:23:20Z #14 3.047 99200K .......... .......... .......... .......... .......... 78% 151M 0s -2024-04-02T21:23:20Z #14 3.047 99250K .......... .......... .......... .......... .......... 78% 26.8M 0s -2024-04-02T21:23:20Z #14 3.051 99300K .......... .......... .......... .......... .......... 78% 130M 0s -2024-04-02T21:23:20Z #14 3.051 99350K .......... .......... .......... .......... .......... 78% 160M 0s -2024-04-02T21:23:20Z #14 3.051 99400K .......... .......... .......... .......... .......... 78% 143M 0s -2024-04-02T21:23:20Z #14 3.051 99450K .......... .......... .......... .......... .......... 78% 160M 0s -2024-04-02T21:23:20Z #14 3.051 99500K .......... .......... .......... .......... .......... 78% 153M 0s -2024-04-02T21:23:20Z #14 3.051 99550K .......... .......... .......... .......... .......... 78% 151M 0s -2024-04-02T21:23:20Z #14 3.051 99600K .......... .......... .......... .......... .......... 78% 154M 0s -2024-04-02T21:23:20Z #14 3.051 99650K .......... .......... .......... .......... .......... 78% 77.7M 0s -2024-04-02T21:23:20Z #14 3.055 99700K .......... .......... .......... .......... .......... 78% 123M 0s -2024-04-02T21:23:20Z #14 3.055 99750K .......... .......... .......... .......... .......... 78% 158M 0s -2024-04-02T21:23:20Z #14 3.055 99800K .......... .......... .......... .......... .......... 78% 137M 0s -2024-04-02T21:23:20Z #14 3.055 99850K .......... .......... .......... .......... .......... 78% 114M 0s -2024-04-02T21:23:20Z #14 3.055 99900K .......... .......... .......... .......... .......... 78% 147M 0s -2024-04-02T21:23:20Z #14 3.055 99950K .......... .......... .......... .......... .......... 78% 129M 0s -2024-04-02T21:23:20Z #14 3.055 100000K .......... .......... .......... .......... .......... 78% 129M 0s -2024-04-02T21:23:20Z #14 3.055 100050K .......... .......... .......... .......... .......... 78% 105M 0s -2024-04-02T21:23:20Z #14 3.055 100100K .......... .......... .......... .......... .......... 78% 66.8M 0s -2024-04-02T21:23:20Z #14 3.055 100150K .......... .......... .......... .......... .......... 79% 32.6M 0s -2024-04-02T21:23:20Z #14 3.057 100200K .......... .......... .......... .......... .......... 79% 56.1M 0s -2024-04-02T21:23:20Z #14 3.063 100250K .......... .......... .......... .......... .......... 79% 152M 0s -2024-04-02T21:23:20Z #14 3.063 100300K .......... .......... .......... .......... .......... 79% 154M 0s -2024-04-02T21:23:20Z #14 3.063 100350K .......... .......... .......... .......... .......... 79% 173M 0s -2024-04-02T21:23:20Z #14 3.063 100400K .......... .......... .......... .......... .......... 79% 155M 0s -2024-04-02T21:23:20Z #14 3.063 100450K .......... .......... .......... .......... .......... 79% 113M 0s -2024-04-02T21:23:20Z #14 3.063 100500K .......... .......... .......... .......... .......... 79% 145M 0s -2024-04-02T21:23:20Z #14 3.063 100550K .......... .......... .......... .......... .......... 79% 158M 0s -2024-04-02T21:23:20Z #14 3.063 100600K .......... .......... .......... .......... .......... 79% 172M 0s -2024-04-02T21:23:20Z #14 3.063 100650K .......... .......... .......... .......... .......... 79% 124M 0s -2024-04-02T21:23:20Z #14 3.063 100700K .......... .......... .......... .......... .......... 79% 191M 0s -2024-04-02T21:23:20Z #14 3.063 100750K .......... .......... .......... .......... .......... 79% 113M 0s -2024-04-02T21:23:20Z #14 3.063 100800K .......... .......... .......... .......... .......... 79% 171M 0s -2024-04-02T21:23:20Z #14 3.063 100850K .......... .......... .......... .......... .......... 79% 138M 0s -2024-04-02T21:23:20Z #14 3.063 100900K .......... .......... .......... .......... .......... 79% 156M 0s -2024-04-02T21:23:20Z #14 3.063 100950K .......... .......... .......... .......... .......... 79% 141M 0s -2024-04-02T21:23:20Z #14 3.063 101000K .......... .......... .......... .......... .......... 79% 170M 0s -2024-04-02T21:23:20Z #14 3.063 101050K .......... .......... .......... .......... .......... 79% 61.9M 0s -2024-04-02T21:23:20Z #14 3.064 101100K .......... .......... .......... .......... .......... 79% 118M 0s -2024-04-02T21:23:20Z #14 3.064 101150K .......... .......... .......... .......... .......... 79% 29.5M 0s -2024-04-02T21:23:20Z #14 3.067 101200K .......... .......... .......... .......... .......... 79% 108M 0s -2024-04-02T21:23:20Z #14 3.067 101250K .......... .......... .......... .......... .......... 79% 114M 0s -2024-04-02T21:23:20Z #14 3.067 101300K .......... .......... .......... .......... .......... 79% 99.4M 0s -2024-04-02T21:23:20Z #14 3.071 101350K .......... .......... .......... .......... .......... 79% 126M 0s -2024-04-02T21:23:20Z #14 3.071 101400K .......... .......... .......... .......... .......... 80% 127M 0s -2024-04-02T21:23:20Z #14 3.071 101450K .......... .......... .......... .......... .......... 80% 106M 0s -2024-04-02T21:23:20Z #14 3.071 101500K .......... .......... .......... .......... .......... 80% 116M 0s -2024-04-02T21:23:20Z #14 3.071 101550K .......... .......... .......... .......... .......... 80% 123M 0s -2024-04-02T21:23:20Z #14 3.071 101600K .......... .......... .......... .......... .......... 80% 102M 0s -2024-04-02T21:23:20Z #14 3.071 101650K .......... .......... .......... .......... .......... 80% 133M 0s -2024-04-02T21:23:20Z #14 3.071 101700K .......... .......... .......... .......... .......... 80% 173M 0s -2024-04-02T21:23:20Z #14 3.071 101750K .......... .......... .......... .......... .......... 80% 114M 0s -2024-04-02T21:23:20Z #14 3.071 101800K .......... .......... .......... .......... .......... 80% 58.0M 0s -2024-04-02T21:23:20Z #14 3.075 101850K .......... .......... .......... .......... .......... 80% 112M 0s -2024-04-02T21:23:20Z #14 3.075 101900K .......... .......... .......... .......... .......... 80% 105M 0s -2024-04-02T21:23:20Z #14 3.075 101950K .......... .......... .......... .......... .......... 80% 134M 0s -2024-04-02T21:23:20Z #14 3.075 102000K .......... .......... .......... .......... .......... 80% 121M 0s -2024-04-02T21:23:20Z #14 3.075 102050K .......... .......... .......... .......... .......... 80% 137M 0s -2024-04-02T21:23:20Z #14 3.075 102100K .......... .......... .......... .......... .......... 80% 115M 0s -2024-04-02T21:23:20Z #14 3.075 102150K .......... .......... .......... .......... .......... 80% 117M 0s -2024-04-02T21:23:20Z #14 3.075 102200K .......... .......... .......... .......... .......... 80% 124M 0s -2024-04-02T21:23:20Z #14 3.075 102250K .......... .......... .......... .......... .......... 80% 53.7M 0s -2024-04-02T21:23:20Z #14 3.079 102300K .......... .......... .......... .......... .......... 80% 111M 0s -2024-04-02T21:23:20Z #14 3.079 102350K .......... .......... .......... .......... .......... 80% 128M 0s -2024-04-02T21:23:20Z #14 3.079 102400K .......... .......... .......... .......... .......... 80% 118M 0s -2024-04-02T21:23:20Z #14 3.079 102450K .......... .......... .......... .......... .......... 80% 129M 0s -2024-04-02T21:23:20Z #14 3.079 102500K .......... .......... .......... .......... .......... 80% 124M 0s -2024-04-02T21:23:20Z #14 3.079 102550K .......... .......... .......... .......... .......... 80% 114M 0s -2024-04-02T21:23:20Z #14 3.079 102600K .......... .......... .......... .......... .......... 80% 123M 0s -2024-04-02T21:23:20Z #14 3.079 102650K .......... .......... .......... .......... .......... 81% 36.0M 0s -2024-04-02T21:23:20Z #14 3.080 102700K .......... .......... .......... .......... .......... 81% 58.6M 0s -2024-04-02T21:23:20Z #14 3.083 102750K .......... .......... .......... .......... .......... 81% 117M 0s -2024-04-02T21:23:20Z #14 3.083 102800K .......... .......... .......... .......... .......... 81% 118M 0s -2024-04-02T21:23:20Z #14 3.083 102850K .......... .......... .......... .......... .......... 81% 121M 0s -2024-04-02T21:23:20Z #14 3.083 102900K .......... .......... .......... .......... .......... 81% 109M 0s -2024-04-02T21:23:20Z #14 3.083 102950K .......... .......... .......... .......... .......... 81% 135M 0s -2024-04-02T21:23:20Z #14 3.083 103000K .......... .......... .......... .......... .......... 81% 20.2M 0s -2024-04-02T21:23:20Z #14 3.085 103050K .......... .......... .......... .......... .......... 81% 71.3M 0s -2024-04-02T21:23:20Z #14 3.091 103100K .......... .......... .......... .......... .......... 81% 131M 0s -2024-04-02T21:23:20Z #14 3.091 103150K .......... .......... .......... .......... .......... 81% 134M 0s -2024-04-02T21:23:20Z #14 3.091 103200K .......... .......... .......... .......... .......... 81% 123M 0s -2024-04-02T21:23:20Z #14 3.091 103250K .......... .......... .......... .......... .......... 81% 114M 0s -2024-04-02T21:23:20Z #14 3.091 103300K .......... .......... .......... .......... .......... 81% 129M 0s -2024-04-02T21:23:20Z #14 3.091 103350K .......... .......... .......... .......... .......... 81% 132M 0s -2024-04-02T21:23:20Z #14 3.091 103400K .......... .......... .......... .......... .......... 81% 138M 0s -2024-04-02T21:23:20Z #14 3.091 103450K .......... .......... .......... .......... .......... 81% 125M 0s -2024-04-02T21:23:20Z #14 3.091 103500K .......... .......... .......... .......... .......... 81% 135M 0s -2024-04-02T21:23:20Z #14 3.091 103550K .......... .......... .......... .......... .......... 81% 149M 0s -2024-04-02T21:23:20Z #14 3.091 103600K .......... .......... .......... .......... .......... 81% 128M 0s -2024-04-02T21:23:20Z #14 3.091 103650K .......... .......... .......... .......... .......... 81% 105M 0s -2024-04-02T21:23:20Z #14 3.091 103700K .......... .......... .......... .......... .......... 81% 128M 0s -2024-04-02T21:23:20Z #14 3.091 103750K .......... .......... .......... .......... .......... 81% 12.8M 0s -2024-04-02T21:23:20Z #14 3.099 103800K .......... .......... .......... .......... .......... 81% 128M 0s -2024-04-02T21:23:20Z #14 3.099 103850K .......... .......... .......... .......... .......... 81% 117M 0s -2024-04-02T21:23:20Z #14 3.099 103900K .......... .......... .......... .......... .......... 81% 129M 0s -2024-04-02T21:23:20Z #14 3.099 103950K .......... .......... .......... .......... .......... 82% 127M 0s -2024-04-02T21:23:20Z #14 3.099 104000K .......... .......... .......... .......... .......... 82% 99.9M 0s -2024-04-02T21:23:20Z #14 3.099 104050K .......... .......... .......... .......... .......... 82% 131M 0s -2024-04-02T21:23:20Z #14 3.099 104100K .......... .......... .......... .......... .......... 82% 110M 0s -2024-04-02T21:23:20Z #14 3.099 104150K .......... .......... .......... .......... .......... 82% 126M 0s -2024-04-02T21:23:20Z #14 3.099 104200K .......... .......... .......... .......... .......... 82% 126M 0s -2024-04-02T21:23:20Z #14 3.099 104250K .......... .......... .......... .......... .......... 82% 122M 0s -2024-04-02T21:23:20Z #14 3.099 104300K .......... .......... .......... .......... .......... 82% 629K 0s -2024-04-02T21:23:20Z #14 3.187 104350K .......... .......... .......... .......... .......... 82% 112M 0s -2024-04-02T21:23:20Z #14 3.187 104400K .......... .......... .......... .......... .......... 82% 132M 0s -2024-04-02T21:23:20Z #14 3.187 104450K .......... .......... .......... .......... .......... 82% 154M 0s -2024-04-02T21:23:20Z #14 3.187 104500K .......... .......... .......... .......... .......... 82% 118M 0s -2024-04-02T21:23:20Z #14 3.187 104550K .......... .......... .......... .......... .......... 82% 127M 0s -2024-04-02T21:23:20Z #14 3.187 104600K .......... .......... .......... .......... .......... 82% 134M 0s -2024-04-02T21:23:20Z #14 3.187 104650K .......... .......... .......... .......... .......... 82% 102M 0s -2024-04-02T21:23:20Z #14 3.187 104700K .......... .......... .......... .......... .......... 82% 140M 0s -2024-04-02T21:23:20Z #14 3.187 104750K .......... .......... .......... .......... .......... 82% 134M 0s -2024-04-02T21:23:20Z #14 3.187 104800K .......... .......... .......... .......... .......... 82% 115M 0s -2024-04-02T21:23:20Z #14 3.187 104850K .......... .......... .......... .......... .......... 82% 124M 0s -2024-04-02T21:23:20Z #14 3.187 104900K .......... .......... .......... .......... .......... 82% 144M 0s -2024-04-02T21:23:20Z #14 3.187 104950K .......... .......... .......... .......... .......... 82% 99.0M 0s -2024-04-02T21:23:20Z #14 3.187 105000K .......... .......... .......... .......... .......... 82% 151M 0s -2024-04-02T21:23:20Z #14 3.187 105050K .......... .......... .......... .......... .......... 82% 164M 0s -2024-04-02T21:23:20Z #14 3.187 105100K .......... .......... .......... .......... .......... 82% 164M 0s -2024-04-02T21:23:20Z #14 3.187 105150K .......... .......... .......... .......... .......... 82% 151M 0s -2024-04-02T21:23:20Z #14 3.187 105200K .......... .......... .......... .......... .......... 83% 101M 0s -2024-04-02T21:23:20Z #14 3.187 105250K .......... .......... .......... .......... .......... 83% 124M 0s -2024-04-02T21:23:20Z #14 3.187 105300K .......... .......... .......... .......... .......... 83% 129M 0s -2024-04-02T21:23:20Z #14 3.187 105350K .......... .......... .......... .......... .......... 83% 128M 0s -2024-04-02T21:23:20Z #14 3.187 105400K .......... .......... .......... .......... .......... 83% 113M 0s -2024-04-02T21:23:20Z #14 3.187 105450K .......... .......... .......... .......... .......... 83% 11.9M 0s -2024-04-02T21:23:20Z #14 3.196 105500K .......... .......... .......... .......... .......... 83% 22.9M 0s -2024-04-02T21:23:20Z #14 3.196 105550K .......... .......... .......... .......... .......... 83% 171M 0s -2024-04-02T21:23:20Z #14 3.196 105600K .......... .......... .......... .......... .......... 83% 134M 0s -2024-04-02T21:23:20Z #14 3.196 105650K .......... .......... .......... .......... .......... 83% 132M 0s -2024-04-02T21:23:20Z #14 3.196 105700K .......... .......... .......... .......... .......... 83% 143M 0s -2024-04-02T21:23:20Z #14 3.196 105750K .......... .......... .......... .......... .......... 83% 14.1M 0s -2024-04-02T21:23:20Z #14 3.199 105800K .......... .......... .......... .......... .......... 83% 129M 0s -2024-04-02T21:23:20Z #14 3.199 105850K .......... .......... .......... .......... .......... 83% 150M 0s -2024-04-02T21:23:20Z #14 3.199 105900K .......... .......... .......... .......... .......... 83% 14.4M 0s -2024-04-02T21:23:20Z #14 3.202 105950K .......... .......... .......... .......... .......... 83% 18.5M 0s -2024-04-02T21:23:20Z #14 3.207 106000K .......... .......... .......... .......... .......... 83% 187M 0s -2024-04-02T21:23:20Z #14 3.207 106050K .......... .......... .......... .......... .......... 83% 171M 0s -2024-04-02T21:23:20Z #14 3.207 106100K .......... .......... .......... .......... .......... 83% 139M 0s -2024-04-02T21:23:20Z #14 3.207 106150K .......... .......... .......... .......... .......... 83% 165M 0s -2024-04-02T21:23:20Z #14 3.207 106200K .......... .......... .......... .......... .......... 83% 149M 0s -2024-04-02T21:23:20Z #14 3.207 106250K .......... .......... .......... .......... .......... 83% 183M 0s -2024-04-02T21:23:20Z #14 3.207 106300K .......... .......... .......... .......... .......... 83% 169M 0s -2024-04-02T21:23:20Z #14 3.207 106350K .......... .......... .......... .......... .......... 83% 180M 0s -2024-04-02T21:23:20Z #14 3.207 106400K .......... .......... .......... .......... .......... 83% 11.8M 0s -2024-04-02T21:23:20Z #14 3.211 106450K .......... .......... .......... .......... .......... 84% 56.8M 0s -2024-04-02T21:23:20Z #14 3.212 106500K .......... .......... .......... .......... .......... 84% 64.8M 0s -2024-04-02T21:23:20Z #14 3.213 106550K .......... .......... .......... .......... .......... 84% 61.8M 0s -2024-04-02T21:23:20Z #14 3.214 106600K .......... .......... .......... .......... .......... 84% 118M 0s -2024-04-02T21:23:20Z #14 3.214 106650K .......... .......... .......... .......... .......... 84% 17.8M 0s -2024-04-02T21:23:20Z #14 3.217 106700K .......... .......... .......... .......... .......... 84% 39.7M 0s -2024-04-02T21:23:20Z #14 3.218 106750K .......... .......... .......... .......... .......... 84% 14.4M 0s -2024-04-02T21:23:20Z #14 3.221 106800K .......... .......... .......... .......... .......... 84% 65.3M 0s -2024-04-02T21:23:20Z #14 3.222 106850K .......... .......... .......... .......... .......... 84% 49.9M 0s -2024-04-02T21:23:20Z #14 3.226 106900K .......... .......... .......... .......... .......... 84% 58.2M 0s -2024-04-02T21:23:20Z #14 3.226 106950K .......... .......... .......... .......... .......... 84% 58.8M 0s -2024-04-02T21:23:20Z #14 3.226 107000K .......... .......... .......... .......... .......... 84% 55.6M 0s -2024-04-02T21:23:20Z #14 3.226 107050K .......... .......... .......... .......... .......... 84% 60.7M 0s -2024-04-02T21:23:20Z #14 3.226 107100K .......... .......... .......... .......... .......... 84% 15.8M 0s -2024-04-02T21:23:20Z #14 3.231 107150K .......... .......... .......... .......... .......... 84% 134M 0s -2024-04-02T21:23:20Z #14 3.231 107200K .......... .......... .......... .......... .......... 84% 140M 0s -2024-04-02T21:23:20Z #14 3.231 107250K .......... .......... .......... .......... .......... 84% 127M 0s -2024-04-02T21:23:20Z #14 3.231 107300K .......... .......... .......... .......... .......... 84% 128M 0s -2024-04-02T21:23:20Z #14 3.231 107350K .......... .......... .......... .......... .......... 84% 18.4M 0s -2024-04-02T21:23:20Z #14 3.233 107400K .......... .......... .......... .......... .......... 84% 35.8M 0s -2024-04-02T21:23:20Z #14 3.235 107450K .......... .......... .......... .......... .......... 84% 37.0M 0s -2024-04-02T21:23:20Z #14 3.236 107500K .......... .......... .......... .......... .......... 84% 128M 0s -2024-04-02T21:23:20Z #14 3.238 107550K .......... .......... .......... .......... .......... 84% 47.7M 0s -2024-04-02T21:23:20Z #14 3.238 107600K .......... .......... .......... .......... .......... 84% 44.1M 0s -2024-04-02T21:23:20Z #14 3.239 107650K .......... .......... .......... .......... .......... 84% 24.3M 0s -2024-04-02T21:23:20Z #14 3.241 107700K .......... .......... .......... .......... .......... 84% 83.7M 0s -2024-04-02T21:23:20Z #14 3.242 107750K .......... .......... .......... .......... .......... 85% 142M 0s -2024-04-02T21:23:20Z #14 3.242 107800K .......... .......... .......... .......... .......... 85% 27.3M 0s -2024-04-02T21:23:20Z #14 3.244 107850K .......... .......... .......... .......... .......... 85% 130M 0s -2024-04-02T21:23:20Z #14 3.244 107900K .......... .......... .......... .......... .......... 85% 63.3M 0s -2024-04-02T21:23:20Z #14 3.245 107950K .......... .......... .......... .......... .......... 85% 38.1M 0s -2024-04-02T21:23:20Z #14 3.247 108000K .......... .......... .......... .......... .......... 85% 48.0M 0s -2024-04-02T21:23:20Z #14 3.247 108050K .......... .......... .......... .......... .......... 85% 111M 0s -2024-04-02T21:23:20Z #14 3.248 108100K .......... .......... .......... .......... .......... 85% 22.9M 0s -2024-04-02T21:23:20Z #14 3.249 108150K .......... .......... .......... .......... .......... 85% 47.2M 0s -2024-04-02T21:23:20Z #14 3.251 108200K .......... .......... .......... .......... .......... 85% 56.3M 0s -2024-04-02T21:23:20Z #14 3.251 108250K .......... .......... .......... .......... .......... 85% 27.3M 0s -2024-04-02T21:23:20Z #14 3.253 108300K .......... .......... .......... .......... .......... 85% 49.2M 0s -2024-04-02T21:23:20Z #14 3.255 108350K .......... .......... .......... .......... .......... 85% 20.1M 0s -2024-04-02T21:23:20Z #14 3.257 108400K .......... .......... .......... .......... .......... 85% 68.4M 0s -2024-04-02T21:23:20Z #14 3.258 108450K .......... .......... .......... .......... .......... 85% 109M 0s -2024-04-02T21:23:20Z #14 3.258 108500K .......... .......... .......... .......... .......... 85% 97.6M 0s -2024-04-02T21:23:20Z #14 3.259 108550K .......... .......... .......... .......... .......... 85% 120M 0s -2024-04-02T21:23:20Z #14 3.259 108600K .......... .......... .......... .......... .......... 85% 103M 0s -2024-04-02T21:23:20Z #14 3.259 108650K .......... .......... .......... .......... .......... 85% 34.2M 0s -2024-04-02T21:23:20Z #14 3.261 108700K .......... .......... .......... .......... .......... 85% 21.8M 0s -2024-04-02T21:23:20Z #14 3.263 108750K .......... .......... .......... .......... .......... 85% 24.4M 0s -2024-04-02T21:23:20Z #14 3.265 108800K .......... .......... .......... .......... .......... 85% 70.5M 0s -2024-04-02T21:23:20Z #14 3.266 108850K .......... .......... .......... .......... .......... 85% 69.3M 0s -2024-04-02T21:23:20Z #14 3.266 108900K .......... .......... .......... .......... .......... 85% 52.5M 0s -2024-04-02T21:23:20Z #14 3.267 108950K .......... .......... .......... .......... .......... 85% 81.9M 0s -2024-04-02T21:23:20Z #14 3.268 109000K .......... .......... .......... .......... .......... 86% 129M 0s -2024-04-02T21:23:20Z #14 3.268 109050K .......... .......... .......... .......... .......... 86% 129M 0s -2024-04-02T21:23:20Z #14 3.268 109100K .......... .......... .......... .......... .......... 86% 34.6M 0s -2024-04-02T21:23:20Z #14 3.270 109150K .......... .......... .......... .......... .......... 86% 26.2M 0s -2024-04-02T21:23:20Z #14 3.272 109200K .......... .......... .......... .......... .......... 86% 114M 0s -2024-04-02T21:23:20Z #14 3.272 109250K .......... .......... .......... .......... .......... 86% 67.7M 0s -2024-04-02T21:23:20Z #14 3.273 109300K .......... .......... .......... .......... .......... 86% 45.0M 0s -2024-04-02T21:23:20Z #14 3.274 109350K .......... .......... .......... .......... .......... 86% 68.8M 0s -2024-04-02T21:23:20Z #14 3.275 109400K .......... .......... .......... .......... .......... 86% 38.2M 0s -2024-04-02T21:23:20Z #14 3.276 109450K .......... .......... .......... .......... .......... 86% 46.8M 0s -2024-04-02T21:23:20Z #14 3.277 109500K .......... .......... .......... .......... .......... 86% 26.7M 0s -2024-04-02T21:23:20Z #14 3.279 109550K .......... .......... .......... .......... .......... 86% 79.2M 0s -2024-04-02T21:23:20Z #14 3.280 109600K .......... .......... .......... .......... .......... 86% 48.3M 0s -2024-04-02T21:23:20Z #14 3.281 109650K .......... .......... .......... .......... .......... 86% 38.2M 0s -2024-04-02T21:23:20Z #14 3.282 109700K .......... .......... .......... .......... .......... 86% 89.2M 0s -2024-04-02T21:23:20Z #14 3.283 109750K .......... .......... .......... .......... .......... 86% 41.7M 0s -2024-04-02T21:23:20Z #14 3.284 109800K .......... .......... .......... .......... .......... 86% 121M 0s -2024-04-02T21:23:20Z #14 3.284 109850K .......... .......... .......... .......... .......... 86% 60.7M 0s -2024-04-02T21:23:20Z #14 3.285 109900K .......... .......... .......... .......... .......... 86% 26.1M 0s -2024-04-02T21:23:20Z #14 3.287 109950K .......... .......... .......... .......... .......... 86% 127M 0s -2024-04-02T21:23:20Z #14 3.287 110000K .......... .......... .......... .......... .......... 86% 119M 0s -2024-04-02T21:23:20Z #14 3.288 110050K .......... .......... .......... .......... .......... 86% 14.0M 0s -2024-04-02T21:23:20Z #14 3.291 110100K .......... .......... .......... .......... .......... 86% 104M 0s -2024-04-02T21:23:20Z #14 3.291 110150K .......... .......... .......... .......... .......... 86% 128M 0s -2024-04-02T21:23:20Z #14 3.292 110200K .......... .......... .......... .......... .......... 86% 136M 0s -2024-04-02T21:23:20Z #14 3.292 110250K .......... .......... .......... .......... .......... 86% 140M 0s -2024-04-02T21:23:20Z #14 3.292 110300K .......... .......... .......... .......... .......... 87% 125M 0s -2024-04-02T21:23:20Z #14 3.293 110350K .......... .......... .......... .......... .......... 87% 110M 0s -2024-04-02T21:23:20Z #14 3.293 110400K .......... .......... .......... .......... .......... 87% 127M 0s -2024-04-02T21:23:20Z #14 3.293 110450K .......... .......... .......... .......... .......... 87% 136M 0s -2024-04-02T21:23:20Z #14 3.294 110500K .......... .......... .......... .......... .......... 87% 128M 0s -2024-04-02T21:23:20Z #14 3.294 110550K .......... .......... .......... .......... .......... 87% 112M 0s -2024-04-02T21:23:20Z #14 3.295 110600K .......... .......... .......... .......... .......... 87% 110M 0s -2024-04-02T21:23:20Z #14 3.295 110650K .......... .......... .......... .......... .......... 87% 120M 0s -2024-04-02T21:23:20Z #14 3.295 110700K .......... .......... .......... .......... .......... 87% 144M 0s -2024-04-02T21:23:20Z #14 3.296 110750K .......... .......... .......... .......... .......... 87% 131M 0s -2024-04-02T21:23:20Z #14 3.297 110800K .......... .......... .......... .......... .......... 87% 132M 0s -2024-04-02T21:23:20Z #14 3.297 110850K .......... .......... .......... .......... .......... 87% 105M 0s -2024-04-02T21:23:20Z #14 3.297 110900K .......... .......... .......... .......... .......... 87% 137M 0s -2024-04-02T21:23:20Z #14 3.297 110950K .......... .......... .......... .......... .......... 87% 135M 0s -2024-04-02T21:23:20Z #14 3.298 111000K .......... .......... .......... .......... .......... 87% 121M 0s -2024-04-02T21:23:20Z #14 3.298 111050K .......... .......... .......... .......... .......... 87% 132M 0s -2024-04-02T21:23:20Z #14 3.299 111100K .......... .......... .......... .......... .......... 87% 116M 0s -2024-04-02T21:23:20Z #14 3.303 111150K .......... .......... .......... .......... .......... 87% 157M 0s -2024-04-02T21:23:20Z #14 3.303 111200K .......... .......... .......... .......... .......... 87% 112M 0s -2024-04-02T21:23:20Z #14 3.303 111250K .......... .......... .......... .......... .......... 87% 84.8M 0s -2024-04-02T21:23:20Z #14 3.303 111300K .......... .......... .......... .......... .......... 87% 107M 0s -2024-04-02T21:23:20Z #14 3.303 111350K .......... .......... .......... .......... .......... 87% 111M 0s -2024-04-02T21:23:20Z #14 3.303 111400K .......... .......... .......... .......... .......... 87% 74.1M 0s -2024-04-02T21:23:20Z #14 3.303 111450K .......... .......... .......... .......... .......... 87% 81.6M 0s -2024-04-02T21:23:20Z #14 3.303 111500K .......... .......... .......... .......... .......... 87% 52.4M 0s -2024-04-02T21:23:20Z #14 3.307 111550K .......... .......... .......... .......... .......... 88% 128M 0s -2024-04-02T21:23:20Z #14 3.307 111600K .......... .......... .......... .......... .......... 88% 113M 0s -2024-04-02T21:23:20Z #14 3.307 111650K .......... .......... .......... .......... .......... 88% 95.5M 0s -2024-04-02T21:23:20Z #14 3.307 111700K .......... .......... .......... .......... .......... 88% 120M 0s -2024-04-02T21:23:20Z #14 3.307 111750K .......... .......... .......... .......... .......... 88% 129M 0s -2024-04-02T21:23:20Z #14 3.307 111800K .......... .......... .......... .......... .......... 88% 122M 0s -2024-04-02T21:23:20Z #14 3.307 111850K .......... .......... .......... .......... .......... 88% 119M 0s -2024-04-02T21:23:20Z #14 3.307 111900K .......... .......... .......... .......... .......... 88% 99.3M 0s -2024-04-02T21:23:20Z #14 3.307 111950K .......... .......... .......... .......... .......... 88% 96.1M 0s -2024-04-02T21:23:20Z #14 3.308 112000K .......... .......... .......... .......... .......... 88% 121M 0s -2024-04-02T21:23:20Z #14 3.308 112050K .......... .......... .......... .......... .......... 88% 43.0M 0s -2024-04-02T21:23:20Z #14 3.309 112100K .......... .......... .......... .......... .......... 88% 56.2M 0s -2024-04-02T21:23:20Z #14 3.310 112150K .......... .......... .......... .......... .......... 88% 104M 0s -2024-04-02T21:23:20Z #14 3.310 112200K .......... .......... .......... .......... .......... 88% 128M 0s -2024-04-02T21:23:20Z #14 3.311 112250K .......... .......... .......... .......... .......... 88% 112M 0s -2024-04-02T21:23:20Z #14 3.311 112300K .......... .......... .......... .......... .......... 88% 104M 0s -2024-04-02T21:23:20Z #14 3.312 112350K .......... .......... .......... .......... .......... 88% 139M 0s -2024-04-02T21:23:20Z #14 3.312 112400K .......... .......... .......... .......... .......... 88% 128M 0s -2024-04-02T21:23:20Z #14 3.313 112450K .......... .......... .......... .......... .......... 88% 112M 0s -2024-04-02T21:23:20Z #14 3.313 112500K .......... .......... .......... .......... .......... 88% 134M 0s -2024-04-02T21:23:20Z #14 3.313 112550K .......... .......... .......... .......... .......... 88% 101M 0s -2024-04-02T21:23:20Z #14 3.314 112600K .......... .......... .......... .......... .......... 88% 121M 0s -2024-04-02T21:23:20Z #14 3.314 112650K .......... .......... .......... .......... .......... 88% 132M 0s -2024-04-02T21:23:20Z #14 3.316 112700K .......... .......... .......... .......... .......... 88% 109M 0s -2024-04-02T21:23:20Z #14 3.316 112750K .......... .......... .......... .......... .......... 88% 105M 0s -2024-04-02T21:23:20Z #14 3.316 112800K .......... .......... .......... .......... .......... 89% 152M 0s -2024-04-02T21:23:20Z #14 3.316 112850K .......... .......... .......... .......... .......... 89% 144M 0s -2024-04-02T21:23:20Z #14 3.316 112900K .......... .......... .......... .......... .......... 89% 92.3M 0s -2024-04-02T21:23:20Z #14 3.318 112950K .......... .......... .......... .......... .......... 89% 136M 0s -2024-04-02T21:23:20Z #14 3.318 113000K .......... .......... .......... .......... .......... 89% 109M 0s -2024-04-02T21:23:20Z #14 3.318 113050K .......... .......... .......... .......... .......... 89% 127M 0s -2024-04-02T21:23:20Z #14 3.319 113100K .......... .......... .......... .......... .......... 89% 68.5M 0s -2024-04-02T21:23:20Z #14 3.319 113150K .......... .......... .......... .......... .......... 89% 120M 0s -2024-04-02T21:23:20Z #14 3.319 113200K .......... .......... .......... .......... .......... 89% 65.3M 0s -2024-04-02T21:23:20Z #14 3.320 113250K .......... .......... .......... .......... .......... 89% 108M 0s -2024-04-02T21:23:20Z #14 3.321 113300K .......... .......... .......... .......... .......... 89% 140M 0s -2024-04-02T21:23:20Z #14 3.321 113350K .......... .......... .......... .......... .......... 89% 124M 0s -2024-04-02T21:23:20Z #14 3.321 113400K .......... .......... .......... .......... .......... 89% 45.0M 0s -2024-04-02T21:23:20Z #14 3.322 113450K .......... .......... .......... .......... .......... 89% 43.7M 0s -2024-04-02T21:23:20Z #14 3.323 113500K .......... .......... .......... .......... .......... 89% 58.5M 0s -2024-04-02T21:23:20Z #14 3.324 113550K .......... .......... .......... .......... .......... 89% 112M 0s -2024-04-02T21:23:20Z #14 3.324 113600K .......... .......... .......... .......... .......... 89% 141M 0s -2024-04-02T21:23:20Z #14 3.324 113650K .......... .......... .......... .......... .......... 89% 98.0M 0s -2024-04-02T21:23:20Z #14 3.326 113700K .......... .......... .......... .......... .......... 89% 108M 0s -2024-04-02T21:23:20Z #14 3.326 113750K .......... .......... .......... .......... .......... 89% 111M 0s -2024-04-02T21:23:20Z #14 3.326 113800K .......... .......... .......... .......... .......... 89% 76.6M 0s -2024-04-02T21:23:20Z #14 3.328 113850K .......... .......... .......... .......... .......... 89% 91.3M 0s -2024-04-02T21:23:20Z #14 3.328 113900K .......... .......... .......... .......... .......... 89% 144M 0s -2024-04-02T21:23:20Z #14 3.328 113950K .......... .......... .......... .......... .......... 89% 106M 0s -2024-04-02T21:23:20Z #14 3.328 114000K .......... .......... .......... .......... .......... 89% 92.9M 0s -2024-04-02T21:23:20Z #14 3.328 114050K .......... .......... .......... .......... .......... 89% 85.2M 0s -2024-04-02T21:23:20Z #14 3.330 114100K .......... .......... .......... .......... .......... 90% 118M 0s -2024-04-02T21:23:20Z #14 3.330 114150K .......... .......... .......... .......... .......... 90% 65.1M 0s -2024-04-02T21:23:20Z #14 3.330 114200K .......... .......... .......... .......... .......... 90% 85.1M 0s -2024-04-02T21:23:20Z #14 3.335 114250K .......... .......... .......... .......... .......... 90% 134M 0s -2024-04-02T21:23:20Z #14 3.336 114300K .......... .......... .......... .......... .......... 90% 99.5M 0s -2024-04-02T21:23:20Z #14 3.336 114350K .......... .......... .......... .......... .......... 90% 160M 0s -2024-04-02T21:23:20Z #14 3.336 114400K .......... .......... .......... .......... .......... 90% 170M 0s -2024-04-02T21:23:20Z #14 3.336 114450K .......... .......... .......... .......... .......... 90% 142M 0s -2024-04-02T21:23:20Z #14 3.336 114500K .......... .......... .......... .......... .......... 90% 164M 0s -2024-04-02T21:23:20Z #14 3.336 114550K .......... .......... .......... .......... .......... 90% 152M 0s -2024-04-02T21:23:20Z #14 3.336 114600K .......... .......... .......... .......... .......... 90% 154M 0s -2024-04-02T21:23:20Z #14 3.336 114650K .......... .......... .......... .......... .......... 90% 128M 0s -2024-04-02T21:23:20Z #14 3.336 114700K .......... .......... .......... .......... .......... 90% 171M 0s -2024-04-02T21:23:20Z #14 3.336 114750K .......... .......... .......... .......... .......... 90% 145M 0s -2024-04-02T21:23:20Z #14 3.336 114800K .......... .......... .......... .......... .......... 90% 166M 0s -2024-04-02T21:23:20Z #14 3.336 114850K .......... .......... .......... .......... .......... 90% 91.4M 0s -2024-04-02T21:23:20Z #14 3.336 114900K .......... .......... .......... .......... .......... 90% 115M 0s -2024-04-02T21:23:20Z #14 3.336 114950K .......... .......... .......... .......... .......... 90% 86.6M 0s -2024-04-02T21:23:20Z #14 3.336 115000K .......... .......... .......... .......... .......... 90% 65.0M 0s -2024-04-02T21:23:20Z #14 3.337 115050K .......... .......... .......... .......... .......... 90% 81.8M 0s -2024-04-02T21:23:20Z #14 3.338 115100K .......... .......... .......... .......... .......... 90% 130M 0s -2024-04-02T21:23:20Z #14 3.339 115150K .......... .......... .......... .......... .......... 90% 111M 0s -2024-04-02T21:23:20Z #14 3.339 115200K .......... .......... .......... .......... .......... 90% 129M 0s -2024-04-02T21:23:20Z #14 3.339 115250K .......... .......... .......... .......... .......... 90% 95.0M 0s -2024-04-02T21:23:20Z #14 3.339 115300K .......... .......... .......... .......... .......... 90% 130M 0s -2024-04-02T21:23:20Z #14 3.340 115350K .......... .......... .......... .......... .......... 91% 105M 0s -2024-04-02T21:23:20Z #14 3.340 115400K .......... .......... .......... .......... .......... 91% 124M 0s -2024-04-02T21:23:20Z #14 3.341 115450K .......... .......... .......... .......... .......... 91% 130M 0s -2024-04-02T21:23:20Z #14 3.341 115500K .......... .......... .......... .......... .......... 91% 119M 0s -2024-04-02T21:23:20Z #14 3.341 115550K .......... .......... .......... .......... .......... 91% 108M 0s -2024-04-02T21:23:20Z #14 3.342 115600K .......... .......... .......... .......... .......... 91% 138M 0s -2024-04-02T21:23:20Z #14 3.342 115650K .......... .......... .......... .......... .......... 91% 101M 0s -2024-04-02T21:23:20Z #14 3.343 115700K .......... .......... .......... .......... .......... 91% 112M 0s -2024-04-02T21:23:20Z #14 3.344 115750K .......... .......... .......... .......... .......... 91% 132M 0s -2024-04-02T21:23:20Z #14 3.344 115800K .......... .......... .......... .......... .......... 91% 128M 0s -2024-04-02T21:23:20Z #14 3.344 115850K .......... .......... .......... .......... .......... 91% 108M 0s -2024-04-02T21:23:20Z #14 3.347 115900K .......... .......... .......... .......... .......... 91% 113M 0s -2024-04-02T21:23:20Z #14 3.347 115950K .......... .......... .......... .......... .......... 91% 99.7M 0s -2024-04-02T21:23:20Z #14 3.347 116000K .......... .......... .......... .......... .......... 91% 120M 0s -2024-04-02T21:23:20Z #14 3.347 116050K .......... .......... .......... .......... .......... 91% 154M 0s -2024-04-02T21:23:20Z #14 3.347 116100K .......... .......... .......... .......... .......... 91% 110M 0s -2024-04-02T21:23:20Z #14 3.347 116150K .......... .......... .......... .......... .......... 91% 116M 0s -2024-04-02T21:23:20Z #14 3.347 116200K .......... .......... .......... .......... .......... 91% 80.7M 0s -2024-04-02T21:23:20Z #14 3.347 116250K .......... .......... .......... .......... .......... 91% 135M 0s -2024-04-02T21:23:20Z #14 3.348 116300K .......... .......... .......... .......... .......... 91% 128M 0s -2024-04-02T21:23:20Z #14 3.349 116350K .......... .......... .......... .......... .......... 91% 121M 0s -2024-04-02T21:23:20Z #14 3.349 116400K .......... .......... .......... .......... .......... 91% 124M 0s -2024-04-02T21:23:20Z #14 3.349 116450K .......... .......... .......... .......... .......... 91% 125M 0s -2024-04-02T21:23:20Z #14 3.350 116500K .......... .......... .......... .......... .......... 91% 136M 0s -2024-04-02T21:23:20Z #14 3.350 116550K .......... .......... .......... .......... .......... 91% 127M 0s -2024-04-02T21:23:20Z #14 3.350 116600K .......... .......... .......... .......... .......... 92% 118M 0s -2024-04-02T21:23:20Z #14 3.350 116650K .......... .......... .......... .......... .......... 92% 129M 0s -2024-04-02T21:23:20Z #14 3.351 116700K .......... .......... .......... .......... .......... 92% 105M 0s -2024-04-02T21:23:20Z #14 3.355 116750K .......... .......... .......... .......... .......... 92% 106M 0s -2024-04-02T21:23:20Z #14 3.355 116800K .......... .......... .......... .......... .......... 92% 150M 0s -2024-04-02T21:23:20Z #14 3.355 116850K .......... .......... .......... .......... .......... 92% 150M 0s -2024-04-02T21:23:20Z #14 3.355 116900K .......... .......... .......... .......... .......... 92% 127M 0s -2024-04-02T21:23:20Z #14 3.355 116950K .......... .......... .......... .......... .......... 92% 119M 0s -2024-04-02T21:23:20Z #14 3.355 117000K .......... .......... .......... .......... .......... 92% 162M 0s -2024-04-02T21:23:20Z #14 3.355 117050K .......... .......... .......... .......... .......... 92% 126M 0s -2024-04-02T21:23:20Z #14 3.355 117100K .......... .......... .......... .......... .......... 92% 109M 0s -2024-04-02T21:23:20Z #14 3.355 117150K .......... .......... .......... .......... .......... 92% 120M 0s -2024-04-02T21:23:20Z #14 3.355 117200K .......... .......... .......... .......... .......... 92% 75.1M 0s -2024-04-02T21:23:20Z #14 3.357 117250K .......... .......... .......... .......... .......... 92% 109M 0s -2024-04-02T21:23:20Z #14 3.357 117300K .......... .......... .......... .......... .......... 92% 114M 0s -2024-04-02T21:23:20Z #14 3.357 117350K .......... .......... .......... .......... .......... 92% 78.6M 0s -2024-04-02T21:23:20Z #14 3.359 117400K .......... .......... .......... .......... .......... 92% 97.8M 0s -2024-04-02T21:23:20Z #14 3.359 117450K .......... .......... .......... .......... .......... 92% 122M 0s -2024-04-02T21:23:20Z #14 3.359 117500K .......... .......... .......... .......... .......... 92% 127M 0s -2024-04-02T21:23:20Z #14 3.359 117550K .......... .......... .......... .......... .......... 92% 122M 0s -2024-04-02T21:23:20Z #14 3.359 117600K .......... .......... .......... .......... .......... 92% 87.7M 0s -2024-04-02T21:23:20Z #14 3.361 117650K .......... .......... .......... .......... .......... 92% 134M 0s -2024-04-02T21:23:20Z #14 3.361 117700K .......... .......... .......... .......... .......... 92% 102M 0s -2024-04-02T21:23:20Z #14 3.361 117750K .......... .......... .......... .......... .......... 92% 132M 0s -2024-04-02T21:23:20Z #14 3.361 117800K .......... .......... .......... .......... .......... 92% 97.3M 0s -2024-04-02T21:23:20Z #14 3.361 117850K .......... .......... .......... .......... .......... 92% 75.5M 0s -2024-04-02T21:23:20Z #14 3.362 117900K .......... .......... .......... .......... .......... 93% 124M 0s -2024-04-02T21:23:20Z #14 3.362 117950K .......... .......... .......... .......... .......... 93% 87.3M 0s -2024-04-02T21:23:20Z #14 3.363 118000K .......... .......... .......... .......... .......... 93% 105M 0s -2024-04-02T21:23:20Z #14 3.363 118050K .......... .......... .......... .......... .......... 93% 83.3M 0s -2024-04-02T21:23:20Z #14 3.364 118100K .......... .......... .......... .......... .......... 93% 65.1M 0s -2024-04-02T21:23:20Z #14 3.365 118150K .......... .......... .......... .......... .......... 93% 115M 0s -2024-04-02T21:23:20Z #14 3.365 118200K .......... .......... .......... .......... .......... 93% 78.0M 0s -2024-04-02T21:23:20Z #14 3.366 118250K .......... .......... .......... .......... .......... 93% 133M 0s -2024-04-02T21:23:20Z #14 3.366 118300K .......... .......... .......... .......... .......... 93% 98.4M 0s -2024-04-02T21:23:20Z #14 3.366 118350K .......... .......... .......... .......... .......... 93% 81.5M 0s -2024-04-02T21:23:20Z #14 3.367 118400K .......... .......... .......... .......... .......... 93% 53.0M 0s -2024-04-02T21:23:20Z #14 3.368 118450K .......... .......... .......... .......... .......... 93% 38.5M 0s -2024-04-02T21:23:20Z #14 3.369 118500K .......... .......... .......... .......... .......... 93% 68.2M 0s -2024-04-02T21:23:20Z #14 3.370 118550K .......... .......... .......... .......... .......... 93% 49.0M 0s -2024-04-02T21:23:20Z #14 3.371 118600K .......... .......... .......... .......... .......... 93% 76.6M 0s -2024-04-02T21:23:20Z #14 3.371 118650K .......... .......... .......... .......... .......... 93% 44.8M 0s -2024-04-02T21:23:20Z #14 3.373 118700K .......... .......... .......... .......... .......... 93% 65.7M 0s -2024-04-02T21:23:20Z #14 3.374 118750K .......... .......... .......... .......... .......... 93% 124M 0s -2024-04-02T21:23:20Z #14 3.374 118800K .......... .......... .......... .......... .......... 93% 102M 0s -2024-04-02T21:23:20Z #14 3.374 118850K .......... .......... .......... .......... .......... 93% 62.5M 0s -2024-04-02T21:23:20Z #14 3.376 118900K .......... .......... .......... .......... .......... 93% 125M 0s -2024-04-02T21:23:20Z #14 3.376 118950K .......... .......... .......... .......... .......... 93% 134M 0s -2024-04-02T21:23:20Z #14 3.376 119000K .......... .......... .......... .......... .......... 93% 113M 0s -2024-04-02T21:23:20Z #14 3.376 119050K .......... .......... .......... .......... .......... 93% 95.4M 0s -2024-04-02T21:23:20Z #14 3.378 119100K .......... .......... .......... .......... .......... 93% 141M 0s -2024-04-02T21:23:20Z #14 3.378 119150K .......... .......... .......... .......... .......... 94% 106M 0s -2024-04-02T21:23:20Z #14 3.378 119200K .......... .......... .......... .......... .......... 94% 105M 0s -2024-04-02T21:23:20Z #14 3.379 119250K .......... .......... .......... .......... .......... 94% 137M 0s -2024-04-02T21:23:20Z #14 3.379 119300K .......... .......... .......... .......... .......... 94% 145M 0s -2024-04-02T21:23:20Z #14 3.379 119350K .......... .......... .......... .......... .......... 94% 115M 0s -2024-04-02T21:23:20Z #14 3.379 119400K .......... .......... .......... .......... .......... 94% 105M 0s -2024-04-02T21:23:20Z #14 3.380 119450K .......... .......... .......... .......... .......... 94% 105M 0s -2024-04-02T21:23:20Z #14 3.380 119500K .......... .......... .......... .......... .......... 94% 101M 0s -2024-04-02T21:23:20Z #14 3.380 119550K .......... .......... .......... .......... .......... 94% 124M 0s -2024-04-02T21:23:20Z #14 3.381 119600K .......... .......... .......... .......... .......... 94% 117M 0s -2024-04-02T21:23:20Z #14 3.381 119650K .......... .......... .......... .......... .......... 94% 160M 0s -2024-04-02T21:23:20Z #14 3.381 119700K .......... .......... .......... .......... .......... 94% 123M 0s -2024-04-02T21:23:20Z #14 3.382 119750K .......... .......... .......... .......... .......... 94% 114M 0s -2024-04-02T21:23:20Z #14 3.382 119800K .......... .......... .......... .......... .......... 94% 109M 0s -2024-04-02T21:23:20Z #14 3.383 119850K .......... .......... .......... .......... .......... 94% 123M 0s -2024-04-02T21:23:20Z #14 3.383 119900K .......... .......... .......... .......... .......... 94% 128M 0s -2024-04-02T21:23:20Z #14 3.383 119950K .......... .......... .......... .......... .......... 94% 115M 0s -2024-04-02T21:23:20Z #14 3.384 120000K .......... .......... .......... .......... .......... 94% 127M 0s -2024-04-02T21:23:20Z #14 3.384 120050K .......... .......... .......... .......... .......... 94% 95.2M 0s -2024-04-02T21:23:20Z #14 3.385 120100K .......... .......... .......... .......... .......... 94% 131M 0s -2024-04-02T21:23:20Z #14 3.385 120150K .......... .......... .......... .......... .......... 94% 92.4M 0s -2024-04-02T21:23:20Z #14 3.386 120200K .......... .......... .......... .......... .......... 94% 137M 0s -2024-04-02T21:23:20Z #14 3.386 120250K .......... .......... .......... .......... .......... 94% 115M 0s -2024-04-02T21:23:20Z #14 3.386 120300K .......... .......... .......... .......... .......... 94% 107M 0s -2024-04-02T21:23:20Z #14 3.387 120350K .......... .......... .......... .......... .......... 94% 26.3M 0s -2024-04-02T21:23:20Z #14 3.389 120400K .......... .......... .......... .......... .......... 95% 35.8M 0s -2024-04-02T21:23:20Z #14 3.390 120450K .......... .......... .......... .......... .......... 95% 42.0M 0s -2024-04-02T21:23:20Z #14 3.392 120500K .......... .......... .......... .......... .......... 95% 32.9M 0s -2024-04-02T21:23:20Z #14 3.393 120550K .......... .......... .......... .......... .......... 95% 39.5M 0s -2024-04-02T21:23:20Z #14 3.394 120600K .......... .......... .......... .......... .......... 95% 43.4M 0s -2024-04-02T21:23:20Z #14 3.395 120650K .......... .......... .......... .......... .......... 95% 67.6M 0s -2024-04-02T21:23:20Z #14 3.396 120700K .......... .......... .......... .......... .......... 95% 69.8M 0s -2024-04-02T21:23:20Z #14 3.397 120750K .......... .......... .......... .......... .......... 95% 124M 0s -2024-04-02T21:23:20Z #14 3.398 120800K .......... .......... .......... .......... .......... 95% 71.3M 0s -2024-04-02T21:23:20Z #14 3.399 120850K .......... .......... .......... .......... .......... 95% 22.2M 0s -2024-04-02T21:23:20Z #14 3.401 120900K .......... .......... .......... .......... .......... 95% 119M 0s -2024-04-02T21:23:20Z #14 3.401 120950K .......... .......... .......... .......... .......... 95% 118M 0s -2024-04-02T21:23:20Z #14 3.401 121000K .......... .......... .......... .......... .......... 95% 35.7M 0s -2024-04-02T21:23:20Z #14 3.402 121050K .......... .......... .......... .......... .......... 95% 115M 0s -2024-04-02T21:23:20Z #14 3.402 121100K .......... .......... .......... .......... .......... 95% 78.4M 0s -2024-04-02T21:23:20Z #14 3.405 121150K .......... .......... .......... .......... .......... 95% 134M 0s -2024-04-02T21:23:20Z #14 3.405 121200K .......... .......... .......... .......... .......... 95% 155M 0s -2024-04-02T21:23:20Z #14 3.405 121250K .......... .......... .......... .......... .......... 95% 114M 0s -2024-04-02T21:23:20Z #14 3.405 121300K .......... .......... .......... .......... .......... 95% 145M 0s -2024-04-02T21:23:20Z #14 3.405 121350K .......... .......... .......... .......... .......... 95% 108M 0s -2024-04-02T21:23:20Z #14 3.407 121400K .......... .......... .......... .......... .......... 95% 135M 0s -2024-04-02T21:23:20Z #14 3.407 121450K .......... .......... .......... .......... .......... 95% 111M 0s -2024-04-02T21:23:20Z #14 3.407 121500K .......... .......... .......... .......... .......... 95% 151M 0s -2024-04-02T21:23:20Z #14 3.407 121550K .......... .......... .......... .......... .......... 95% 129M 0s -2024-04-02T21:23:20Z #14 3.407 121600K .......... .......... .......... .......... .......... 95% 112M 0s -2024-04-02T21:23:20Z #14 3.411 121650K .......... .......... .......... .......... .......... 95% 120M 0s -2024-04-02T21:23:20Z #14 3.411 121700K .......... .......... .......... .......... .......... 96% 152M 0s -2024-04-02T21:23:20Z #14 3.411 121750K .......... .......... .......... .......... .......... 96% 164M 0s -2024-04-02T21:23:20Z #14 3.411 121800K .......... .......... .......... .......... .......... 96% 143M 0s -2024-04-02T21:23:20Z #14 3.411 121850K .......... .......... .......... .......... .......... 96% 116M 0s -2024-04-02T21:23:20Z #14 3.411 121900K .......... .......... .......... .......... .......... 96% 123M 0s -2024-04-02T21:23:20Z #14 3.411 121950K .......... .......... .......... .......... .......... 96% 135M 0s -2024-04-02T21:23:20Z #14 3.411 122000K .......... .......... .......... .......... .......... 96% 110M 0s -2024-04-02T21:23:20Z #14 3.411 122050K .......... .......... .......... .......... .......... 96% 138M 0s -2024-04-02T21:23:20Z #14 3.411 122100K .......... .......... .......... .......... .......... 96% 132M 0s -2024-04-02T21:23:20Z #14 3.411 122150K .......... .......... .......... .......... .......... 96% 90.7M 0s -2024-04-02T21:23:20Z #14 3.413 122200K .......... .......... .......... .......... .......... 96% 124M 0s -2024-04-02T21:23:20Z #14 3.413 122250K .......... .......... .......... .......... .......... 96% 123M 0s -2024-04-02T21:23:20Z #14 3.413 122300K .......... .......... .......... .......... .......... 96% 120M 0s -2024-04-02T21:23:20Z #14 3.413 122350K .......... .......... .......... .......... .......... 96% 121M 0s -2024-04-02T21:23:20Z #14 3.413 122400K .......... .......... .......... .......... .......... 96% 112M 0s -2024-04-02T21:23:20Z #14 3.414 122450K .......... .......... .......... .......... .......... 96% 126M 0s -2024-04-02T21:23:20Z #14 3.414 122500K .......... .......... .......... .......... .......... 96% 113M 0s -2024-04-02T21:23:20Z #14 3.414 122550K .......... .......... .......... .......... .......... 96% 101M 0s -2024-04-02T21:23:20Z #14 3.415 122600K .......... .......... .......... .......... .......... 96% 153M 0s -2024-04-02T21:23:20Z #14 3.415 122650K .......... .......... .......... .......... .......... 96% 119M 0s -2024-04-02T21:23:20Z #14 3.415 122700K .......... .......... .......... .......... .......... 96% 52.1M 0s -2024-04-02T21:23:20Z #14 3.416 122750K .......... .......... .......... .......... .......... 96% 33.4M 0s -2024-04-02T21:23:20Z #14 3.418 122800K .......... .......... .......... .......... .......... 96% 40.6M 0s -2024-04-02T21:23:20Z #14 3.419 122850K .......... .......... .......... .......... .......... 96% 44.8M 0s -2024-04-02T21:23:20Z #14 3.420 122900K .......... .......... .......... .......... .......... 96% 20.3M 0s -2024-04-02T21:23:20Z #14 3.423 122950K .......... .......... .......... .......... .......... 97% 145M 0s -2024-04-02T21:23:20Z #14 3.423 123000K .......... .......... .......... .......... .......... 97% 123M 0s -2024-04-02T21:23:20Z #14 3.423 123050K .......... .......... .......... .......... .......... 97% 82.2M 0s -2024-04-02T21:23:20Z #14 3.424 123100K .......... .......... .......... .......... .......... 97% 76.8M 0s -2024-04-02T21:23:20Z #14 3.426 123150K .......... .......... .......... .......... .......... 97% 112M 0s -2024-04-02T21:23:20Z #14 3.426 123200K .......... .......... .......... .......... .......... 97% 122M 0s -2024-04-02T21:23:20Z #14 3.426 123250K .......... .......... .......... .......... .......... 97% 115M 0s -2024-04-02T21:23:20Z #14 3.426 123300K .......... .......... .......... .......... .......... 97% 87.8M 0s -2024-04-02T21:23:20Z #14 3.426 123350K .......... .......... .......... .......... .......... 97% 47.3M 0s -2024-04-02T21:23:20Z #14 3.428 123400K .......... .......... .......... .......... .......... 97% 125M 0s -2024-04-02T21:23:20Z #14 3.428 123450K .......... .......... .......... .......... .......... 97% 104M 0s -2024-04-02T21:23:20Z #14 3.428 123500K .......... .......... .......... .......... .......... 97% 13.3M 0s -2024-04-02T21:23:20Z #14 3.433 123550K .......... .......... .......... .......... .......... 97% 27.8M 0s -2024-04-02T21:23:20Z #14 3.434 123600K .......... .......... .......... .......... .......... 97% 129M 0s -2024-04-02T21:23:20Z #14 3.434 123650K .......... .......... .......... .......... .......... 97% 114M 0s -2024-04-02T21:23:20Z #14 3.434 123700K .......... .......... .......... .......... .......... 97% 25.5M 0s -2024-04-02T21:23:20Z #14 3.437 123750K .......... .......... .......... .......... .......... 97% 123M 0s -2024-04-02T21:23:20Z #14 3.437 123800K .......... .......... .......... .......... .......... 97% 83.5M 0s -2024-04-02T21:23:20Z #14 3.438 123850K .......... .......... .......... .......... .......... 97% 38.3M 0s -2024-04-02T21:23:20Z #14 3.439 123900K .......... .......... .......... .......... .......... 97% 33.4M 0s -2024-04-02T21:23:20Z #14 3.440 123950K .......... .......... .......... .......... .......... 97% 62.5M 0s -2024-04-02T21:23:20Z #14 3.441 124000K .......... .......... .......... .......... .......... 97% 119M 0s -2024-04-02T21:23:20Z #14 3.441 124050K .......... .......... .......... .......... .......... 97% 131M 0s -2024-04-02T21:23:20Z #14 3.441 124100K .......... .......... .......... .......... .......... 97% 90.9M 0s -2024-04-02T21:23:20Z #14 3.443 124150K .......... .......... .......... .......... .......... 97% 129M 0s -2024-04-02T21:23:20Z #14 3.443 124200K .......... .......... .......... .......... .......... 98% 135M 0s -2024-04-02T21:23:20Z #14 3.443 124250K .......... .......... .......... .......... .......... 98% 106M 0s -2024-04-02T21:23:20Z #14 3.444 124300K .......... .......... .......... .......... .......... 98% 146M 0s -2024-04-02T21:23:20Z #14 3.444 124350K .......... .......... .......... .......... .......... 98% 109M 0s -2024-04-02T21:23:20Z #14 3.444 124400K .......... .......... .......... .......... .......... 98% 113M 0s -2024-04-02T21:23:20Z #14 3.445 124450K .......... .......... .......... .......... .......... 98% 130M 0s -2024-04-02T21:23:20Z #14 3.445 124500K .......... .......... .......... .......... .......... 98% 131M 0s -2024-04-02T21:23:20Z #14 3.445 124550K .......... .......... .......... .......... .......... 98% 105M 0s -2024-04-02T21:23:20Z #14 3.446 124600K .......... .......... .......... .......... .......... 98% 124M 0s -2024-04-02T21:23:20Z #14 3.446 124650K .......... .......... .......... .......... .......... 98% 118M 0s -2024-04-02T21:23:20Z #14 3.447 124700K .......... .......... .......... .......... .......... 98% 107M 0s -2024-04-02T21:23:20Z #14 3.447 124750K .......... .......... .......... .......... .......... 98% 121M 0s -2024-04-02T21:23:20Z #14 3.447 124800K .......... .......... .......... .......... .......... 98% 119M 0s -2024-04-02T21:23:20Z #14 3.448 124850K .......... .......... .......... .......... .......... 98% 143M 0s -2024-04-02T21:23:20Z #14 3.448 124900K .......... .......... .......... .......... .......... 98% 106M 0s -2024-04-02T21:23:20Z #14 3.448 124950K .......... .......... .......... .......... .......... 98% 114M 0s -2024-04-02T21:23:20Z #14 3.450 125000K .......... .......... .......... .......... .......... 98% 144M 0s -2024-04-02T21:23:20Z #14 3.450 125050K .......... .......... .......... .......... .......... 98% 130M 0s -2024-04-02T21:23:20Z #14 3.450 125100K .......... .......... .......... .......... .......... 98% 108M 0s -2024-04-02T21:23:20Z #14 3.451 125150K .......... .......... .......... .......... .......... 98% 108M 0s -2024-04-02T21:23:20Z #14 3.451 125200K .......... .......... .......... .......... .......... 98% 118M 0s -2024-04-02T21:23:20Z #14 3.452 125250K .......... .......... .......... .......... .......... 98% 13.8M 0s -2024-04-02T21:23:20Z #14 3.456 125300K .......... .......... .......... .......... .......... 98% 78.0M 0s -2024-04-02T21:23:20Z #14 3.456 125350K .......... .......... .......... .......... .......... 98% 112M 0s -2024-04-02T21:23:20Z #14 3.456 125400K .......... .......... .......... .......... .......... 98% 150M 0s -2024-04-02T21:23:20Z #14 3.457 125450K .......... .......... .......... .......... .......... 98% 71.4M 0s -2024-04-02T21:23:20Z #14 3.457 125500K .......... .......... .......... .......... .......... 99% 110M 0s -2024-04-02T21:23:20Z #14 3.457 125550K .......... .......... .......... .......... .......... 99% 114M 0s -2024-04-02T21:23:20Z #14 3.459 125600K .......... .......... .......... .......... .......... 99% 136M 0s -2024-04-02T21:23:20Z #14 3.459 125650K .......... .......... .......... .......... .......... 99% 131M 0s -2024-04-02T21:23:20Z #14 3.459 125700K .......... .......... .......... .......... .......... 99% 129M 0s -2024-04-02T21:23:20Z #14 3.459 125750K .......... .......... .......... .......... .......... 99% 120M 0s -2024-04-02T21:23:20Z #14 3.459 125800K .......... .......... .......... .......... .......... 99% 16.5M 0s -2024-04-02T21:23:20Z #14 3.463 125850K .......... .......... .......... .......... .......... 99% 96.0M 0s -2024-04-02T21:23:20Z #14 3.463 125900K .......... .......... .......... .......... .......... 99% 125M 0s -2024-04-02T21:23:20Z #14 3.463 125950K .......... .......... .......... .......... .......... 99% 25.2M 0s -2024-04-02T21:23:20Z #14 3.465 126000K .......... .......... .......... .......... .......... 99% 907K 0s -2024-04-02T21:23:20Z #14 3.527 126050K .......... .......... .......... .......... .......... 99% 103M 0s -2024-04-02T21:23:20Z #14 3.527 126100K .......... .......... .......... .......... .......... 99% 167M 0s -2024-04-02T21:23:20Z #14 3.527 126150K .......... .......... .......... .......... .......... 99% 185M 0s -2024-04-02T21:23:20Z #14 3.527 126200K .......... .......... .......... .......... .......... 99% 146M 0s -2024-04-02T21:23:20Z #14 3.527 126250K .......... .......... .......... .......... .......... 99% 146M 0s -2024-04-02T21:23:20Z #14 3.527 126300K .......... .......... .......... .......... .......... 99% 183M 0s -2024-04-02T21:23:20Z #14 3.527 126350K .......... .......... .......... .......... .......... 99% 167M 0s -2024-04-02T21:23:20Z #14 3.527 126400K .......... .......... .......... .......... .......... 99% 169M 0s -2024-04-02T21:23:20Z #14 3.527 126450K .......... .......... .......... .......... .......... 99% 147M 0s -2024-04-02T21:23:20Z #14 3.527 126500K .......... .......... .......... .......... .......... 99% 135M 0s -2024-04-02T21:23:20Z #14 3.527 126550K .......... .......... .......... .......... .......... 99% 166M 0s -2024-04-02T21:23:20Z #14 3.527 126600K .......... .......... .......... .......... .......... 99% 179M 0s -2024-04-02T21:23:20Z #14 3.527 126650K .......... .......... .......... .......... .......... 99% 145M 0s -2024-04-02T21:23:20Z #14 3.527 126700K .......... .......... .......... .......... .......... 99% 192M 0s -2024-04-02T21:23:20Z #14 3.527 126750K .......... .......... .......... .. 100% 150M=2.2s -2024-04-02T21:23:20Z #14 3.527 -2024-04-02T21:23:20Z #14 3.527 2024-04-02 21:23:20 (57.5 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] -2024-04-02T21:23:20Z #14 3.527 -2024-04-02T21:23:22Z #14 4.968 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' -2024-04-02T21:23:22Z #14 4.990 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-04-02T21:23:22Z #14 DONE 5.4s -2024-04-02T21:23:22Z -2024-04-02T21:23:22Z #15 exporting to image -2024-04-02T21:23:22Z #15 exporting layers -2024-04-02T21:25:27Z #15 exporting layers 125.5s done -2024-04-02T21:25:27Z #15 writing image sha256:109ac01a3dce19209ed4c20243931c10f55719ff3e2ef717aade1292659df6eb done -2024-04-02T21:25:27Z #15 naming to docker.io/pavics/workflow-tests:py310-240402 done -2024-04-02T21:25:27Z #15 DONE 125.5s -2024-04-02T21:25:27Z Pushing index.docker.io/pavics/workflow-tests:py310-240402... -2024-04-02T21:32:29Z Done! -2024-04-02T21:32:29Z Build finished +2024-04-05T03:30:38Z Building in Docker Cloud's infrastructure... +2024-04-05T03:30:38Z Cloning into '.'... +2024-04-05T03:30:39Z Warning: Permanently added the RSA host key for IP address '140.82.113.4' to the list of known hosts. +2024-04-05T03:30:40Z Switched to a new branch 'docker-py310-240404' +2024-04-05T03:30:40Z KernelVersion: 5.4.0-1068-aws +2024-04-05T03:30:40Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-04-05T03:30:40Z Arch: amd64 +2024-04-05T03:30:40Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-04-05T03:30:40Z ApiVersion: 1.41 +2024-04-05T03:30:40Z Platform: {u'Name': u'Docker Engine - Community'} +2024-04-05T03:30:40Z Version: 20.10.15 +2024-04-05T03:30:40Z MinAPIVersion: 1.12 +2024-04-05T03:30:40Z GitCommit: 4433bf6 +2024-04-05T03:30:40Z Os: linux +2024-04-05T03:30:40Z GoVersion: go1.17.9 +2024-04-05T03:30:40Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240404... +2024-04-05T03:30:45Z #1 [internal] load build definition from Dockerfile +2024-04-05T03:30:45Z #1 transferring dockerfile: 6.99kB done +2024-04-05T03:30:45Z #1 DONE 0.1s +2024-04-05T03:30:45Z +2024-04-05T03:30:45Z #2 [internal] load .dockerignore +2024-04-05T03:30:45Z #2 transferring context: 2B done +2024-04-05T03:30:45Z #2 DONE 0.1s +2024-04-05T03:30:45Z +2024-04-05T03:30:45Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-04-05T03:30:46Z #3 ... +2024-04-05T03:30:46Z +2024-04-05T03:30:46Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-04-05T03:30:46Z #4 DONE 0.0s +2024-04-05T03:30:46Z +2024-04-05T03:30:46Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-04-05T03:30:46Z #3 DONE 0.6s +2024-04-05T03:30:46Z +2024-04-05T03:30:46Z #5 [internal] load build context +2024-04-05T03:30:46Z #5 transferring context: 9.58kB done +2024-04-05T03:30:46Z #5 DONE 0.0s +2024-04-05T03:30:46Z +2024-04-05T03:30:46Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-05T03:30:46Z #6 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 0.0s done +2024-04-05T03:30:46Z #6 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done +2024-04-05T03:30:46Z #6 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done +2024-04-05T03:30:46Z #6 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done +2024-04-05T03:30:46Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 0B / 31.42MB 0.1s +2024-04-05T03:30:46Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s +2024-04-05T03:30:46Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.1s +2024-04-05T03:30:46Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 6.30MB / 31.42MB 0.3s +2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 10.07MB / 31.42MB 0.4s +2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 4.19MB / 50.08MB 0.4s +2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 11.53MB / 50.08MB 0.5s +2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 16.02MB / 31.42MB 0.7s +2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 18.87MB / 50.08MB 0.7s +2024-04-05T03:30:47Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.68MB / 147.31MB 0.7s +2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 22.02MB / 31.42MB 0.8s +2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 25.17MB / 31.42MB 0.9s +2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 27.26MB / 50.08MB 0.9s +2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.1s +2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 37.75MB / 50.08MB 1.1s +2024-04-05T03:30:47Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 30.39MB / 147.31MB 1.1s +2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 44.04MB / 50.08MB 1.2s +2024-04-05T03:30:48Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.3s done +2024-04-05T03:30:48Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.4s +2024-04-05T03:30:48Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 53.98MB / 147.31MB 1.4s +2024-04-05T03:30:48Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.6s done +2024-04-05T03:30:48Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 63.96MB / 147.31MB 1.6s +2024-04-05T03:30:48Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 +2024-04-05T03:30:48Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 75.50MB / 147.31MB 2.3s +2024-04-05T03:30:49Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 85.59MB / 147.31MB 2.7s +2024-04-05T03:30:49Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 99.61MB / 147.31MB 3.2s +2024-04-05T03:30:50Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 113.25MB / 147.31MB 3.6s +2024-04-05T03:30:50Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 121.63MB / 147.31MB 3.8s +2024-04-05T03:30:50Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 132.12MB / 147.31MB 4.1s +2024-04-05T03:30:51Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 140.51MB / 147.31MB 4.5s +2024-04-05T03:30:52Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 6.2s done +2024-04-05T03:30:53Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 4.9s done +2024-04-05T03:30:53Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 +2024-04-05T03:30:58Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.1s +2024-04-05T03:30:59Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.2s done +2024-04-05T03:31:00Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0.1s +2024-04-05T03:31:05Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.2s +2024-04-05T03:31:10Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.2s +2024-04-05T03:31:14Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.0s done +2024-04-05T03:31:14Z #6 ... +2024-04-05T03:31:14Z +2024-04-05T03:31:14Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-04-05T03:31:15Z #7 1.585 Channels: +2024-04-05T03:31:15Z #7 1.585 - defaults +2024-04-05T03:31:15Z #7 1.585 Platform: linux-64 +2024-04-05T03:31:20Z #7 1.585 Collecting package metadata (repodata.json): ...working... done +2024-04-05T03:31:20Z #7 5.824 Solving environment: ...working... done +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 ## Package Plan ## +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 environment location: /opt/conda +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 added / updated specs: +2024-04-05T03:31:20Z #7 6.137 - conda +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 The following packages will be downloaded: +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 package | build +2024-04-05T03:31:20Z #7 6.137 ---------------------------|----------------- +2024-04-05T03:31:20Z #7 6.137 archspec-0.2.3 | pyhd3eb1b0_0 47 KB +2024-04-05T03:31:20Z #7 6.137 ca-certificates-2024.3.11 | h06a4308_0 127 KB +2024-04-05T03:31:20Z #7 6.137 conda-24.3.0 | py311h06a4308_0 1.2 MB +2024-04-05T03:31:20Z #7 6.137 ------------------------------------------------------------ +2024-04-05T03:31:20Z #7 6.137 Total: 1.4 MB +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 The following packages will be UPDATED: +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 archspec 0.2.1-pyhd3eb1b0_0 --> 0.2.3-pyhd3eb1b0_0 +2024-04-05T03:31:20Z #7 6.137 ca-certificates 2023.12.12-h06a4308_0 --> 2024.3.11-h06a4308_0 +2024-04-05T03:31:20Z #7 6.137 conda 24.1.2-py311h06a4308_0 --> 24.3.0-py311h06a4308_0 +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 +2024-04-05T03:31:20Z #7 6.137 Proceed ([y]/n)? +2024-04-05T03:31:21Z #7 6.679 +2024-04-05T03:31:21Z #7 6.679 Downloading and Extracting Packages: ...working... done +2024-04-05T03:31:21Z #7 6.679 Preparing transaction: ...working... done +2024-04-05T03:31:21Z #7 6.740 Verifying transaction: ...working... done +2024-04-05T03:31:24Z #7 6.959 Executing transaction: ...working... done +2024-04-05T03:31:26Z #7 11.66 Channels: +2024-04-05T03:31:26Z #7 11.66 - conda-forge +2024-04-05T03:31:26Z #7 11.66 - defaults +2024-04-05T03:31:26Z #7 11.66 Platform: linux-64 +2024-04-05T03:31:52Z #7 11.66 Collecting package metadata (repodata.json): ...working... done +2024-04-05T03:31:54Z #7 37.90 Solving environment: ...working... done +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 ## Package Plan ## +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 environment location: /opt/conda +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 added / updated specs: +2024-04-05T03:31:54Z #7 40.07 - conda-pack +2024-04-05T03:31:54Z #7 40.07 - mamba +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 The following packages will be downloaded: +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 package | build +2024-04-05T03:31:54Z #7 40.07 ---------------------------|----------------- +2024-04-05T03:31:54Z #7 40.07 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 c-ares-1.28.1 | hd590300_0 165 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 conda-24.3.0 | py311h38be061_0 1.2 MB conda-forge +2024-04-05T03:31:54Z #7 40.07 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-04-05T03:31:54Z #7 40.07 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge +2024-04-05T03:31:54Z #7 40.07 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 libcurl-8.7.1 | hca28451_0 389 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge +2024-04-05T03:31:54Z #7 40.07 libmambapy-1.5.8 | py311hf2555c7_0 304 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 libssh2-1.11.0 | h0841786_0 265 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge +2024-04-05T03:31:54Z #7 40.07 libxml2-2.12.6 | h232c23b_1 689 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 lzo-2.10 | h516909a_1000 314 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 mamba-1.5.8 | py311h3072747_0 65 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge +2024-04-05T03:31:54Z #7 40.07 python_abi-3.11 | 2_cp311 5 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-04-05T03:31:54Z #7 40.07 ------------------------------------------------------------ +2024-04-05T03:31:54Z #7 40.07 Total: 28.0 MB +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 The following NEW packages will be INSTALLED: +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 +2024-04-05T03:31:54Z #7 40.07 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 +2024-04-05T03:31:54Z #7 40.07 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-04-05T03:31:54Z #7 40.07 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-04-05T03:31:54Z #7 40.07 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 +2024-04-05T03:31:54Z #7 40.07 mamba conda-forge/linux-64::mamba-1.5.8-py311h3072747_0 +2024-04-05T03:31:54Z #7 40.07 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 The following packages will be UPDATED: +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 +2024-04-05T03:31:54Z #7 40.07 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-04-05T03:31:54Z #7 40.07 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-04-05T03:31:54Z #7 40.07 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 +2024-04-05T03:31:54Z #7 40.07 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-04-05T03:31:54Z #7 40.07 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 +2024-04-05T03:31:54Z #7 40.07 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 +2024-04-05T03:31:54Z #7 40.07 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 +2024-04-05T03:31:54Z #7 40.07 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.8-had39da4_0 +2024-04-05T03:31:54Z #7 40.07 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.8-py311hf2555c7_0 +2024-04-05T03:31:54Z #7 40.07 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 +2024-04-05T03:31:54Z #7 40.07 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 +2024-04-05T03:31:54Z #7 40.07 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 +2024-04-05T03:31:54Z #7 40.07 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_1 +2024-04-05T03:31:54Z #7 40.07 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 +2024-04-05T03:31:54Z #7 40.07 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 The following packages will be SUPERSEDED by a higher-priority channel: +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-04-05T03:31:54Z #7 40.07 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-04-05T03:31:54Z #7 40.07 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-04-05T03:31:54Z #7 40.07 conda pkgs/main::conda-24.3.0-py311h06a4308~ --> conda-forge::conda-24.3.0-py311h38be061_0 +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 +2024-04-05T03:31:54Z #7 40.07 Proceed ([y]/n)? +2024-04-05T03:31:57Z #7 42.63 +2024-04-05T03:31:57Z #7 42.63 Downloading and Extracting Packages: ...working... done +2024-04-05T03:31:57Z #7 42.63 Preparing transaction: ...working... done +2024-04-05T03:31:57Z #7 42.78 Verifying transaction: ...working... done +2024-04-05T03:32:06Z #7 43.31 Executing transaction: ...working... done +2024-04-05T03:32:08Z #7 53.65 Will remove 30 (29.4 MB) tarball(s). +2024-04-05T03:32:08Z #7 53.65 Will remove 1 index cache(s). +2024-04-05T03:32:08Z #7 53.65 Will remove 4 (5.0 MB) package(s). +2024-04-05T03:32:08Z #7 53.65 There are no tempfile(s) to remove. +2024-04-05T03:32:08Z #7 53.65 There are no logfile(s) to remove. +2024-04-05T03:32:10Z #7 55.81 bin/micromamba +2024-04-05T03:32:12Z #7 DONE 58.0s +2024-04-05T03:32:12Z +2024-04-05T03:32:12Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-05T03:32:12Z #6 ... +2024-04-05T03:32:12Z +2024-04-05T03:32:12Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-04-05T03:32:12Z #8 0.559 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-04-05T03:32:13Z #8 0.576 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-04-05T03:32:13Z #8 0.577 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-04-05T03:32:13Z #8 0.724 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-04-05T03:32:13Z #8 0.972 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] +2024-04-05T03:32:13Z #8 1.544 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-04-05T03:32:15Z #8 2.874 Fetched 8565 kB in 2s (3682 kB/s) +2024-04-05T03:32:16Z #8 2.874 Reading package lists... +2024-04-05T03:32:17Z #8 3.844 Reading package lists... +2024-04-05T03:32:17Z #8 4.767 Building dependency tree... +2024-04-05T03:32:17Z #8 4.994 Reading state information... +2024-04-05T03:32:17Z #8 5.318 git is already the newest version (1:2.30.2-1+deb11u2). +2024-04-05T03:32:17Z #8 5.318 mercurial is already the newest version (5.6.1-4). +2024-04-05T03:32:17Z #8 5.318 The following additional packages will be installed: +2024-04-05T03:32:17Z #8 5.318 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-05T03:32:17Z #8 5.319 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-05T03:32:17Z #8 5.319 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-04-05T03:32:17Z #8 5.320 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-04-05T03:32:17Z #8 5.320 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-04-05T03:32:17Z #8 5.320 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-04-05T03:32:17Z #8 5.321 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-04-05T03:32:17Z #8 5.327 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-05T03:32:17Z #8 5.327 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-05T03:32:17Z #8 5.327 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-04-05T03:32:17Z #8 5.327 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-04-05T03:32:17Z #8 5.327 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-04-05T03:32:17Z #8 5.327 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-04-05T03:32:17Z #8 5.327 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-04-05T03:32:17Z #8 5.327 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-04-05T03:32:17Z #8 5.327 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-04-05T03:32:17Z #8 5.327 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-04-05T03:32:17Z #8 5.327 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-04-05T03:32:17Z #8 5.327 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-04-05T03:32:17Z #8 5.327 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-04-05T03:32:17Z #8 5.327 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-04-05T03:32:17Z #8 5.327 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-04-05T03:32:17Z #8 5.327 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-04-05T03:32:17Z #8 5.327 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-04-05T03:32:17Z #8 5.327 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-04-05T03:32:17Z #8 5.327 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-04-05T03:32:17Z #8 5.327 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-04-05T03:32:17Z #8 5.327 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-04-05T03:32:17Z #8 5.327 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-04-05T03:32:17Z #8 5.327 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-04-05T03:32:17Z #8 5.327 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-04-05T03:32:17Z #8 5.327 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-04-05T03:32:17Z #8 5.327 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-04-05T03:32:17Z #8 5.327 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-04-05T03:32:17Z #8 5.327 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-04-05T03:32:17Z #8 5.327 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-04-05T03:32:17Z #8 5.327 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-04-05T03:32:17Z #8 5.327 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv +2024-04-05T03:32:17Z #8 5.327 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data +2024-04-05T03:32:17Z #8 5.327 Suggested packages: +2024-04-05T03:32:17Z #8 5.327 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-04-05T03:32:17Z #8 5.327 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-04-05T03:32:17Z #8 5.327 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-04-05T03:32:17Z #8 5.327 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs +2024-04-05T03:32:17Z #8 5.327 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser +2024-04-05T03:32:17Z #8 5.327 opencl-icd ed diffutils-doc systemd-container policykit-1 zip +2024-04-05T03:32:17Z #8 5.327 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-04-05T03:32:17Z #8 5.327 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-04-05T03:32:17Z #8 5.327 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-04-05T03:32:19Z #8 6.892 The following NEW packages will be installed: +2024-04-05T03:32:19Z #8 6.893 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-05T03:32:19Z #8 6.893 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-05T03:32:19Z #8 6.894 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-04-05T03:32:19Z #8 6.894 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-04-05T03:32:19Z #8 6.895 glib-networking glib-networking-common glib-networking-services +2024-04-05T03:32:19Z #8 6.903 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-04-05T03:32:19Z #8 6.904 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-04-05T03:32:19Z #8 6.904 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-04-05T03:32:19Z #8 6.904 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-05T03:32:19Z #8 6.904 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-05T03:32:19Z #8 6.904 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-04-05T03:32:19Z #8 6.904 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-04-05T03:32:19Z #8 6.904 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-04-05T03:32:19Z #8 6.904 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-04-05T03:32:19Z #8 6.904 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-04-05T03:32:19Z #8 6.904 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-04-05T03:32:19Z #8 6.904 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-04-05T03:32:19Z #8 6.904 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-04-05T03:32:19Z #8 6.904 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-04-05T03:32:19Z #8 6.904 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-04-05T03:32:19Z #8 6.904 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-04-05T03:32:19Z #8 6.904 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-04-05T03:32:19Z #8 6.904 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-04-05T03:32:19Z #8 6.904 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-04-05T03:32:19Z #8 6.904 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-04-05T03:32:19Z #8 6.904 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-04-05T03:32:19Z #8 6.904 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-04-05T03:32:19Z #8 6.904 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-04-05T03:32:19Z #8 6.904 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-04-05T03:32:19Z #8 6.904 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-04-05T03:32:19Z #8 6.904 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-04-05T03:32:19Z #8 6.904 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-04-05T03:32:19Z #8 6.904 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-04-05T03:32:19Z #8 6.904 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-04-05T03:32:19Z #8 6.904 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-04-05T03:32:19Z #8 6.904 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-04-05T03:32:19Z #8 6.904 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-04-05T03:32:19Z #8 6.904 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-04-05T03:32:19Z #8 6.904 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-04-05T03:32:19Z #8 6.904 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-04-05T03:32:19Z #8 6.904 x11-utils xkb-data +2024-04-05T03:32:19Z #8 6.935 0 upgraded, 221 newly installed, 0 to remove and 7 not upgraded. +2024-04-05T03:32:19Z #8 6.935 Need to get 236 MB of archives. +2024-04-05T03:32:19Z #8 6.935 After this operation, 891 MB of additional disk space will be used. +2024-04-05T03:32:19Z #8 6.935 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-04-05T03:32:19Z #8 6.939 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-04-05T03:32:19Z #8 6.941 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-04-05T03:32:19Z #8 6.942 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-04-05T03:32:19Z #8 6.944 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-04-05T03:32:19Z #8 6.947 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-04-05T03:32:19Z #8 6.948 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-04-05T03:32:19Z #8 6.952 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-04-05T03:32:19Z #8 6.954 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-04-05T03:32:19Z #8 6.955 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-04-05T03:32:19Z #8 7.040 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-04-05T03:32:19Z #8 7.056 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-04-05T03:32:19Z #8 7.070 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-04-05T03:32:19Z #8 7.076 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-04-05T03:32:19Z #8 7.080 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-04-05T03:32:19Z #8 7.083 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-04-05T03:32:19Z #8 7.098 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-04-05T03:32:19Z #8 7.101 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-04-05T03:32:19Z #8 7.102 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-04-05T03:32:19Z #8 7.107 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-04-05T03:32:19Z #8 7.260 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-04-05T03:32:19Z #8 7.279 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-04-05T03:32:19Z #8 7.287 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-04-05T03:32:19Z #8 7.290 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-04-05T03:32:19Z #8 7.294 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-04-05T03:32:19Z #8 7.298 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-04-05T03:32:19Z #8 7.299 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-04-05T03:32:19Z #8 7.303 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-04-05T03:32:19Z #8 7.307 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-04-05T03:32:19Z #8 7.311 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-04-05T03:32:19Z #8 7.314 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-04-05T03:32:19Z #8 7.527 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-04-05T03:32:19Z #8 7.529 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-04-05T03:32:19Z #8 7.531 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-04-05T03:32:19Z #8 7.536 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-04-05T03:32:19Z #8 7.538 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-04-05T03:32:19Z #8 7.539 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-04-05T03:32:19Z #8 7.541 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-04-05T03:32:19Z #8 7.543 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-04-05T03:32:19Z #8 7.545 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-04-05T03:32:20Z #8 7.572 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-04-05T03:32:20Z #8 7.579 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-04-05T03:32:20Z #8 7.605 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-04-05T03:32:20Z #8 7.607 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-04-05T03:32:20Z #8 7.627 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-04-05T03:32:20Z #8 7.629 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-04-05T03:32:20Z #8 7.637 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-04-05T03:32:20Z #8 7.674 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-04-05T03:32:20Z #8 7.679 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-04-05T03:32:20Z #8 7.860 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-04-05T03:32:20Z #8 7.862 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-04-05T03:32:20Z #8 7.864 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-04-05T03:32:20Z #8 7.866 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-04-05T03:32:20Z #8 7.868 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-04-05T03:32:20Z #8 7.869 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-04-05T03:32:20Z #8 7.872 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-04-05T03:32:20Z #8 7.873 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-04-05T03:32:20Z #8 7.879 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-04-05T03:32:20Z #8 7.890 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-04-05T03:32:20Z #8 7.895 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-04-05T03:32:20Z #8 7.900 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-04-05T03:32:20Z #8 7.907 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-04-05T03:32:20Z #8 7.919 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-04-05T03:32:20Z #8 7.922 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-04-05T03:32:20Z #8 7.936 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-04-05T03:32:20Z #8 7.948 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-04-05T03:32:20Z #8 7.950 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-04-05T03:32:20Z #8 7.953 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-04-05T03:32:20Z #8 7.955 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-04-05T03:32:20Z #8 7.957 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-04-05T03:32:20Z #8 7.960 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-04-05T03:32:20Z #8 7.962 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-04-05T03:32:20Z #8 7.964 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-04-05T03:32:20Z #8 7.966 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-04-05T03:32:20Z #8 7.970 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-04-05T03:32:20Z #8 7.974 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-04-05T03:32:20Z #8 7.976 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-04-05T03:32:20Z #8 7.978 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-04-05T03:32:20Z #8 7.993 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-04-05T03:32:20Z #8 7.995 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-04-05T03:32:20Z #8 7.997 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-04-05T03:32:20Z #8 8.003 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-04-05T03:32:20Z #8 8.006 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-04-05T03:32:20Z #8 8.008 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-04-05T03:32:20Z #8 8.010 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-04-05T03:32:20Z #8 8.013 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-04-05T03:32:20Z #8 8.015 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-04-05T03:32:20Z #8 8.017 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-04-05T03:32:20Z #8 8.019 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-04-05T03:32:20Z #8 8.020 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-04-05T03:32:20Z #8 8.022 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-04-05T03:32:20Z #8 8.028 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-04-05T03:32:20Z #8 8.030 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-04-05T03:32:20Z #8 8.034 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-04-05T03:32:20Z #8 8.035 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-04-05T03:32:20Z #8 8.037 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-04-05T03:32:20Z #8 8.048 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-04-05T03:32:20Z #8 8.051 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-04-05T03:32:20Z #8 8.053 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-04-05T03:32:20Z #8 8.054 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-04-05T03:32:20Z #8 8.055 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-04-05T03:32:20Z #8 8.057 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-04-05T03:32:20Z #8 8.058 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-04-05T03:32:20Z #8 8.059 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-04-05T03:32:20Z #8 8.067 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-04-05T03:32:20Z #8 8.069 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-04-05T03:32:20Z #8 8.071 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-04-05T03:32:20Z #8 8.167 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-04-05T03:32:20Z #8 8.225 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-04-05T03:32:20Z #8 8.231 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.9.1esr-1~deb11u1 [63.7 MB] +2024-04-05T03:32:21Z #8 9.508 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-04-05T03:32:21Z #8 9.511 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-04-05T03:32:21Z #8 9.513 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-04-05T03:32:21Z #8 9.515 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-04-05T03:32:21Z #8 9.516 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-04-05T03:32:21Z #8 9.518 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-04-05T03:32:21Z #8 9.544 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-04-05T03:32:21Z #8 9.559 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-04-05T03:32:21Z #8 9.591 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-04-05T03:32:21Z #8 9.601 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-04-05T03:32:21Z #8 9.604 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-04-05T03:32:21Z #8 9.644 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-04-05T03:32:22Z #8 10.09 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-04-05T03:32:22Z #8 10.10 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-04-05T03:32:22Z #8 10.11 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-04-05T03:32:22Z #8 10.11 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-04-05T03:32:22Z #8 10.11 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-04-05T03:32:22Z #8 10.11 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-04-05T03:32:22Z #8 10.11 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-04-05T03:32:22Z #8 10.12 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-04-05T03:32:22Z #8 10.12 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-04-05T03:32:22Z #8 10.14 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-04-05T03:32:22Z #8 10.18 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-04-05T03:32:22Z #8 10.26 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-04-05T03:32:22Z #8 10.26 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-04-05T03:32:22Z #8 10.26 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-04-05T03:32:22Z #8 10.26 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-04-05T03:32:22Z #8 10.26 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-04-05T03:32:22Z #8 10.27 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-04-05T03:32:22Z #8 10.46 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-04-05T03:32:22Z #8 10.47 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-04-05T03:32:22Z #8 10.47 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-04-05T03:32:22Z #8 10.47 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-04-05T03:32:22Z #8 10.47 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-04-05T03:32:22Z #8 10.48 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-04-05T03:32:22Z #8 10.52 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-04-05T03:32:23Z #8 10.53 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-04-05T03:32:23Z #8 10.53 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-04-05T03:32:23Z #8 10.53 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-04-05T03:32:23Z #8 10.53 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-04-05T03:32:23Z #8 10.54 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-04-05T03:32:23Z #8 10.54 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-04-05T03:32:23Z #8 10.54 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-04-05T03:32:23Z #8 10.54 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-04-05T03:32:23Z #8 10.55 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-04-05T03:32:23Z #8 10.55 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-04-05T03:32:23Z #8 10.56 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-04-05T03:32:23Z #8 10.56 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-04-05T03:32:23Z #8 10.57 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-04-05T03:32:23Z #8 10.58 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-04-05T03:32:23Z #8 10.58 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-04-05T03:32:23Z #8 10.60 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-04-05T03:32:23Z #8 10.61 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-04-05T03:32:23Z #8 10.61 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-04-05T03:32:23Z #8 10.62 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-04-05T03:32:23Z #8 10.73 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] +2024-04-05T03:32:23Z #8 10.74 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-04-05T03:32:23Z #8 10.74 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-04-05T03:32:23Z #8 10.74 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] +2024-04-05T03:32:23Z #8 10.75 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-04-05T03:32:23Z #8 10.79 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-04-05T03:32:23Z #8 10.80 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-04-05T03:32:23Z #8 10.80 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-04-05T03:32:23Z #8 10.80 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] +2024-04-05T03:32:23Z #8 10.83 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-04-05T03:32:23Z #8 10.84 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-04-05T03:32:23Z #8 10.84 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-04-05T03:32:23Z #8 10.86 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-04-05T03:32:23Z #8 10.86 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-04-05T03:32:23Z #8 10.87 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-04-05T03:32:23Z #8 10.87 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-04-05T03:32:23Z #8 10.87 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-04-05T03:32:23Z #8 11.03 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-04-05T03:32:23Z #8 11.51 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-04-05T03:32:24Z #8 11.52 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-04-05T03:32:24Z #8 11.52 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-04-05T03:32:24Z #8 11.52 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-04-05T03:32:24Z #8 11.78 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-04-05T03:32:24Z #8 11.78 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-04-05T03:32:24Z #8 11.79 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-04-05T03:32:24Z #8 11.79 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-04-05T03:32:24Z #8 11.79 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-04-05T03:32:24Z #8 11.79 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-04-05T03:32:24Z #8 11.80 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-04-05T03:32:24Z #8 11.80 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-04-05T03:32:24Z #8 11.80 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-04-05T03:32:24Z #8 11.80 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-04-05T03:32:24Z #8 11.81 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-04-05T03:32:24Z #8 11.81 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-04-05T03:32:24Z #8 11.81 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-04-05T03:32:24Z #8 11.81 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-04-05T03:32:24Z #8 11.81 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-04-05T03:32:24Z #8 11.82 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-04-05T03:32:24Z #8 11.82 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-04-05T03:32:24Z #8 11.82 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-04-05T03:32:24Z #8 11.83 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-04-05T03:32:24Z #8 11.83 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-04-05T03:32:24Z #8 11.83 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-04-05T03:32:24Z #8 11.83 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-04-05T03:32:24Z #8 11.84 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-04-05T03:32:24Z #8 11.84 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-04-05T03:32:24Z #8 11.84 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-04-05T03:32:24Z #8 11.84 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-04-05T03:32:24Z #8 11.87 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-04-05T03:32:24Z #8 11.93 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-04-05T03:32:24Z #8 12.00 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-04-05T03:32:24Z #8 12.09 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-04-05T03:32:24Z #8 12.09 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-04-05T03:32:24Z #8 12.10 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-04-05T03:32:24Z #8 12.10 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-04-05T03:32:24Z #8 12.10 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-04-05T03:32:24Z #8 12.39 debconf: delaying package configuration, since apt-utils is not installed +2024-04-05T03:32:24Z #8 12.45 Fetched 236 MB in 5s (45.5 MB/s) +2024-04-05T03:32:24Z #8 12.48 Selecting previously unselected package libapparmor1:amd64. +2024-04-05T03:32:24Z #8 12.49 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-04-05T03:32:24Z #8 12.51 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-04-05T03:32:24Z #8 12.52 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-04-05T03:32:24Z #8 12.58 Selecting previously unselected package libcap2:amd64. +2024-04-05T03:32:24Z #8 12.58 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-04-05T03:32:25Z #8 12.59 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-04-05T03:32:25Z #8 12.63 Selecting previously unselected package libargon2-1:amd64. +2024-04-05T03:32:25Z #8 12.64 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-04-05T03:32:25Z #8 12.64 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-05T03:32:25Z #8 12.69 Selecting previously unselected package dmsetup. +2024-04-05T03:32:25Z #8 12.70 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-04-05T03:32:25Z #8 12.70 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-04-05T03:32:25Z #8 12.78 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-04-05T03:32:25Z #8 12.78 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-04-05T03:32:25Z #8 12.79 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-05T03:32:25Z #8 12.89 Selecting previously unselected package libjson-c5:amd64. +2024-04-05T03:32:25Z #8 12.89 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-04-05T03:32:25Z #8 12.89 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-05T03:32:25Z #8 12.94 Selecting previously unselected package libcryptsetup12:amd64. +2024-04-05T03:32:25Z #8 12.95 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-04-05T03:32:25Z #8 12.95 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-05T03:32:25Z #8 13.03 Selecting previously unselected package libip4tc2:amd64. +2024-04-05T03:32:25Z #8 13.03 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-04-05T03:32:25Z #8 13.04 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-04-05T03:32:25Z #8 13.08 Selecting previously unselected package libkmod2:amd64. +2024-04-05T03:32:25Z #8 13.09 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-04-05T03:32:25Z #8 13.10 Unpacking libkmod2:amd64 (28-1) ... +2024-04-05T03:32:25Z #8 13.17 Selecting previously unselected package systemd. +2024-04-05T03:32:25Z #8 13.17 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-05T03:32:25Z #8 13.24 Unpacking systemd (247.3-7+deb11u4) ... +2024-04-05T03:32:26Z #8 14.24 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-04-05T03:32:26Z #8 14.26 Setting up libcap2:amd64 (1:2.44-1) ... +2024-04-05T03:32:26Z #8 14.27 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-05T03:32:26Z #8 14.29 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-05T03:32:26Z #8 14.30 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-04-05T03:32:26Z #8 14.32 Setting up libkmod2:amd64 (28-1) ... +2024-04-05T03:32:26Z #8 14.33 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-05T03:32:26Z #8 14.35 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-05T03:32:26Z #8 14.37 Setting up systemd (247.3-7+deb11u4) ... +2024-04-05T03:32:26Z #8 14.43 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-04-05T03:32:26Z #8 14.43 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-04-05T03:32:26Z #8 14.44 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-04-05T03:32:26Z #8 14.46 Initializing machine ID from KVM UUID. +2024-04-05T03:32:27Z #8 15.01 Setting up dmsetup (2:1.02.175-2.1) ... +2024-04-05T03:32:27Z #8 15.09 Selecting previously unselected package systemd-sysv. +2024-04-05T03:32:27Z #8 15.09 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-04-05T03:32:27Z #8 15.11 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-04-05T03:32:27Z #8 15.12 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-04-05T03:32:27Z #8 15.19 Selecting previously unselected package libdbus-1-3:amd64. +2024-04-05T03:32:27Z #8 15.19 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-04-05T03:32:27Z #8 15.20 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-05T03:32:27Z #8 15.30 Selecting previously unselected package dbus. +2024-04-05T03:32:27Z #8 15.31 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-04-05T03:32:27Z #8 15.32 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-04-05T03:32:27Z #8 15.41 Selecting previously unselected package libnss-systemd:amd64. +2024-04-05T03:32:27Z #8 15.42 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-05T03:32:27Z #8 15.42 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-05T03:32:27Z #8 15.49 Selecting previously unselected package libpam-systemd:amd64. +2024-04-05T03:32:27Z #8 15.50 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-05T03:32:27Z #8 15.50 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-05T03:32:28Z #8 15.59 Selecting previously unselected package manpages. +2024-04-05T03:32:28Z #8 15.59 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-04-05T03:32:28Z #8 15.60 Unpacking manpages (5.10-1) ... +2024-04-05T03:32:28Z #8 15.80 Selecting previously unselected package systemd-timesyncd. +2024-04-05T03:32:28Z #8 15.80 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-04-05T03:32:28Z #8 15.81 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-05T03:32:28Z #8 15.89 Selecting previously unselected package hicolor-icon-theme. +2024-04-05T03:32:28Z #8 15.89 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-04-05T03:32:28Z #8 15.90 Unpacking hicolor-icon-theme (0.17-2) ... +2024-04-05T03:32:28Z #8 16.01 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-04-05T03:32:28Z #8 16.02 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-04-05T03:32:28Z #8 16.03 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-05T03:32:28Z #8 16.20 Selecting previously unselected package libicu67:amd64. +2024-04-05T03:32:28Z #8 16.20 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-04-05T03:32:28Z #8 16.21 Unpacking libicu67:amd64 (67.1-7) ... +2024-04-05T03:32:30Z #8 17.93 Selecting previously unselected package libxml2:amd64. +2024-04-05T03:32:30Z #8 17.93 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-04-05T03:32:30Z #8 17.94 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-05T03:32:30Z #8 18.11 Selecting previously unselected package shared-mime-info. +2024-04-05T03:32:30Z #8 18.12 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-04-05T03:32:30Z #8 18.13 Unpacking shared-mime-info (2.0-1) ... +2024-04-05T03:32:30Z #8 18.36 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-04-05T03:32:30Z #8 18.36 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-04-05T03:32:30Z #8 18.37 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-05T03:32:30Z #8 18.44 Selecting previously unselected package libpng16-16:amd64. +2024-04-05T03:32:30Z #8 18.44 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-04-05T03:32:30Z #8 18.45 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-04-05T03:32:30Z #8 18.54 Selecting previously unselected package libdeflate0:amd64. +2024-04-05T03:32:30Z #8 18.55 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-04-05T03:32:30Z #8 18.55 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-04-05T03:32:31Z #8 18.62 Selecting previously unselected package libjbig0:amd64. +2024-04-05T03:32:31Z #8 18.62 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-04-05T03:32:31Z #8 18.63 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-05T03:32:31Z #8 18.70 Selecting previously unselected package libwebp6:amd64. +2024-04-05T03:32:31Z #8 18.70 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-05T03:32:31Z #8 18.71 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-05T03:32:31Z #8 18.80 Selecting previously unselected package libtiff5:amd64. +2024-04-05T03:32:31Z #8 18.81 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-04-05T03:32:31Z #8 18.82 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-05T03:32:31Z #8 18.93 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-04-05T03:32:31Z #8 18.93 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-05T03:32:31Z #8 18.94 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-05T03:32:31Z #8 19.03 Selecting previously unselected package gtk-update-icon-cache. +2024-04-05T03:32:31Z #8 19.04 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-04-05T03:32:31Z #8 19.05 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-05T03:32:31Z #8 19.19 Selecting previously unselected package adwaita-icon-theme. +2024-04-05T03:32:31Z #8 19.19 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-04-05T03:32:31Z #8 19.20 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-04-05T03:32:34Z #8 22.02 Selecting previously unselected package alsa-topology-conf. +2024-04-05T03:32:34Z #8 22.02 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-04-05T03:32:34Z #8 22.03 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-04-05T03:32:34Z #8 22.13 Selecting previously unselected package libasound2-data. +2024-04-05T03:32:34Z #8 22.13 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-04-05T03:32:34Z #8 22.14 Unpacking libasound2-data (1.2.4-1.1) ... +2024-04-05T03:32:34Z #8 22.23 Selecting previously unselected package libasound2:amd64. +2024-04-05T03:32:34Z #8 22.23 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-04-05T03:32:34Z #8 22.23 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-04-05T03:32:34Z #8 22.36 Selecting previously unselected package alsa-ucm-conf. +2024-04-05T03:32:34Z #8 22.36 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-04-05T03:32:34Z #8 22.37 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-04-05T03:32:34Z #8 22.48 Selecting previously unselected package libatspi2.0-0:amd64. +2024-04-05T03:32:34Z #8 22.48 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-04-05T03:32:34Z #8 22.49 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-05T03:32:34Z #8 22.58 Selecting previously unselected package libxi6:amd64. +2024-04-05T03:32:34Z #8 22.58 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-04-05T03:32:34Z #8 22.59 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-04-05T03:32:35Z #8 22.68 Selecting previously unselected package libxtst6:amd64. +2024-04-05T03:32:35Z #8 22.68 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-04-05T03:32:35Z #8 22.69 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-04-05T03:32:35Z #8 22.76 Selecting previously unselected package at-spi2-core. +2024-04-05T03:32:35Z #8 22.77 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-04-05T03:32:35Z #8 22.78 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-05T03:32:35Z #8 22.87 Selecting previously unselected package binutils-common:amd64. +2024-04-05T03:32:35Z #8 22.87 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-04-05T03:32:35Z #8 22.88 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-04-05T03:32:35Z #8 23.33 Selecting previously unselected package libbinutils:amd64. +2024-04-05T03:32:35Z #8 23.33 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-04-05T03:32:35Z #8 23.34 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-04-05T03:32:35Z #8 23.49 Selecting previously unselected package libctf-nobfd0:amd64. +2024-04-05T03:32:35Z #8 23.50 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-04-05T03:32:35Z #8 23.51 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-05T03:32:36Z #8 23.57 Selecting previously unselected package libctf0:amd64. +2024-04-05T03:32:36Z #8 23.58 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-04-05T03:32:36Z #8 23.59 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-04-05T03:32:36Z #8 23.64 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-04-05T03:32:36Z #8 23.65 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-04-05T03:32:36Z #8 23.65 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-05T03:32:36Z #8 24.08 Selecting previously unselected package binutils. +2024-04-05T03:32:36Z #8 24.09 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-04-05T03:32:36Z #8 24.09 Unpacking binutils (2.35.2-2) ... +2024-04-05T03:32:36Z #8 24.16 Selecting previously unselected package libisl23:amd64. +2024-04-05T03:32:36Z #8 24.16 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-04-05T03:32:36Z #8 24.17 Unpacking libisl23:amd64 (0.23-1) ... +2024-04-05T03:32:36Z #8 24.34 Selecting previously unselected package libmpfr6:amd64. +2024-04-05T03:32:36Z #8 24.35 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-04-05T03:32:36Z #8 24.35 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-04-05T03:32:37Z #8 24.59 Selecting previously unselected package libmpc3:amd64. +2024-04-05T03:32:37Z #8 24.59 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-04-05T03:32:37Z #8 24.60 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-04-05T03:32:37Z #8 24.64 Selecting previously unselected package cpp-10. +2024-04-05T03:32:37Z #8 24.65 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-04-05T03:32:37Z #8 24.65 Unpacking cpp-10 (10.2.1-6) ... +2024-04-05T03:32:38Z #8 26.21 Selecting previously unselected package cpp. +2024-04-05T03:32:38Z #8 26.21 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-04-05T03:32:38Z #8 26.22 Unpacking cpp (4:10.2.1-1) ... +2024-04-05T03:32:38Z #8 26.27 Selecting previously unselected package dbus-user-session. +2024-04-05T03:32:38Z #8 26.27 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-04-05T03:32:38Z #8 26.28 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-05T03:32:38Z #8 26.34 Selecting previously unselected package libdconf1:amd64. +2024-04-05T03:32:38Z #8 26.35 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-04-05T03:32:38Z #8 26.36 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-04-05T03:32:38Z #8 26.42 Selecting previously unselected package dconf-service. +2024-04-05T03:32:38Z #8 26.42 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-04-05T03:32:38Z #8 26.43 Unpacking dconf-service (0.38.0-2) ... +2024-04-05T03:32:38Z #8 26.47 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-04-05T03:32:38Z #8 26.48 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-04-05T03:32:38Z #8 26.48 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-05T03:32:38Z #8 26.53 Selecting previously unselected package libatk1.0-data. +2024-04-05T03:32:38Z #8 26.53 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-04-05T03:32:38Z #8 26.54 Unpacking libatk1.0-data (2.36.0-2) ... +2024-04-05T03:32:39Z #8 26.64 Selecting previously unselected package libatk1.0-0:amd64. +2024-04-05T03:32:39Z #8 26.64 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-04-05T03:32:39Z #8 26.65 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-05T03:32:39Z #8 26.70 Selecting previously unselected package libfreetype6:amd64. +2024-04-05T03:32:39Z #8 26.70 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-04-05T03:32:39Z #8 26.70 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-05T03:32:39Z #8 26.80 Selecting previously unselected package fonts-dejavu-core. +2024-04-05T03:32:39Z #8 26.81 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-04-05T03:32:39Z #8 26.81 Unpacking fonts-dejavu-core (2.37-2) ... +2024-04-05T03:32:39Z #8 27.06 Selecting previously unselected package fontconfig-config. +2024-04-05T03:32:39Z #8 27.07 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-04-05T03:32:39Z #8 27.24 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-04-05T03:32:39Z #8 27.31 Selecting previously unselected package libfontconfig1:amd64. +2024-04-05T03:32:39Z #8 27.32 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-04-05T03:32:39Z #8 27.33 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-05T03:32:39Z #8 27.40 Selecting previously unselected package libpixman-1-0:amd64. +2024-04-05T03:32:39Z #8 27.41 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-04-05T03:32:39Z #8 27.41 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-05T03:32:39Z #8 27.52 Selecting previously unselected package libxcb-render0:amd64. +2024-04-05T03:32:39Z #8 27.53 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-04-05T03:32:39Z #8 27.54 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-04-05T03:32:40Z #8 27.59 Selecting previously unselected package libxcb-shm0:amd64. +2024-04-05T03:32:40Z #8 27.60 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-04-05T03:32:40Z #8 27.61 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-04-05T03:32:40Z #8 27.68 Selecting previously unselected package libcairo2:amd64. +2024-04-05T03:32:40Z #8 27.68 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-04-05T03:32:40Z #8 27.69 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-04-05T03:32:40Z #8 27.84 Selecting previously unselected package libcairo-gobject2:amd64. +2024-04-05T03:32:40Z #8 27.85 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-04-05T03:32:40Z #8 27.85 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-05T03:32:40Z #8 27.92 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-04-05T03:32:40Z #8 27.93 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-04-05T03:32:40Z #8 27.93 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-05T03:32:40Z #8 27.99 Selecting previously unselected package libevent-2.1-7:amd64. +2024-04-05T03:32:40Z #8 28.00 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-04-05T03:32:40Z #8 28.01 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-05T03:32:40Z #8 28.08 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-04-05T03:32:40Z #8 28.08 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-04-05T03:32:40Z #8 28.09 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-05T03:32:40Z #8 28.15 Selecting previously unselected package liblcms2-2:amd64. +2024-04-05T03:32:40Z #8 28.16 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-04-05T03:32:40Z #8 28.16 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-05T03:32:40Z #8 28.23 Selecting previously unselected package libcolord2:amd64. +2024-04-05T03:32:40Z #8 28.24 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-04-05T03:32:40Z #8 28.24 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-04-05T03:32:40Z #8 28.31 Selecting previously unselected package libavahi-common-data:amd64. +2024-04-05T03:32:40Z #8 28.31 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-04-05T03:32:40Z #8 28.32 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-05T03:32:40Z #8 28.39 Selecting previously unselected package libavahi-common3:amd64. +2024-04-05T03:32:40Z #8 28.39 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-04-05T03:32:40Z #8 28.40 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-05T03:32:40Z #8 28.45 Selecting previously unselected package libavahi-client3:amd64. +2024-04-05T03:32:40Z #8 28.45 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-04-05T03:32:40Z #8 28.46 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-05T03:32:40Z #8 28.52 Selecting previously unselected package libcups2:amd64. +2024-04-05T03:32:40Z #8 28.53 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-04-05T03:32:41Z #8 28.53 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-05T03:32:41Z #8 28.66 Selecting previously unselected package libepoxy0:amd64. +2024-04-05T03:32:41Z #8 28.67 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-04-05T03:32:41Z #8 28.68 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-04-05T03:32:41Z #8 28.76 Selecting previously unselected package libfribidi0:amd64. +2024-04-05T03:32:41Z #8 28.77 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-04-05T03:32:41Z #8 28.77 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-05T03:32:41Z #8 28.83 Selecting previously unselected package libgraphite2-3:amd64. +2024-04-05T03:32:41Z #8 28.83 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-04-05T03:32:41Z #8 28.84 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-05T03:32:41Z #8 28.90 Selecting previously unselected package libharfbuzz0b:amd64. +2024-04-05T03:32:41Z #8 28.90 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-04-05T03:32:41Z #8 28.91 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-05T03:32:41Z #8 29.02 Selecting previously unselected package libjson-glib-1.0-common. +2024-04-05T03:32:41Z #8 29.02 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-04-05T03:32:41Z #8 29.03 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-04-05T03:32:41Z #8 29.09 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-04-05T03:32:41Z #8 29.10 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-04-05T03:32:41Z #8 29.11 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-05T03:32:41Z #8 29.16 Selecting previously unselected package fontconfig. +2024-04-05T03:32:41Z #8 29.16 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-04-05T03:32:41Z #8 29.17 Unpacking fontconfig (2.13.1-4.2) ... +2024-04-05T03:32:41Z #8 29.24 Selecting previously unselected package libthai-data. +2024-04-05T03:32:41Z #8 29.25 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-04-05T03:32:41Z #8 29.25 Unpacking libthai-data (0.1.28-3) ... +2024-04-05T03:32:41Z #8 29.34 Selecting previously unselected package libdatrie1:amd64. +2024-04-05T03:32:41Z #8 29.35 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-04-05T03:32:41Z #8 29.35 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-04-05T03:32:41Z #8 29.41 Selecting previously unselected package libthai0:amd64. +2024-04-05T03:32:41Z #8 29.42 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-04-05T03:32:41Z #8 29.43 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-04-05T03:32:41Z #8 29.48 Selecting previously unselected package libpango-1.0-0:amd64. +2024-04-05T03:32:41Z #8 29.48 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-04-05T03:32:41Z #8 29.49 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-05T03:32:42Z #8 29.57 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-04-05T03:32:42Z #8 29.58 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-04-05T03:32:42Z #8 29.58 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-05T03:32:42Z #8 29.64 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-04-05T03:32:42Z #8 29.64 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-04-05T03:32:42Z #8 29.65 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-05T03:32:42Z #8 29.70 Selecting previously unselected package libproxy1v5:amd64. +2024-04-05T03:32:42Z #8 29.71 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-04-05T03:32:42Z #8 29.72 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-04-05T03:32:42Z #8 29.77 Selecting previously unselected package glib-networking-common. +2024-04-05T03:32:42Z #8 29.78 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-04-05T03:32:42Z #8 29.78 Unpacking glib-networking-common (2.66.0-2) ... +2024-04-05T03:32:42Z #8 29.85 Selecting previously unselected package glib-networking-services. +2024-04-05T03:32:42Z #8 29.85 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-04-05T03:32:42Z #8 29.86 Unpacking glib-networking-services (2.66.0-2) ... +2024-04-05T03:32:42Z #8 29.91 Selecting previously unselected package gsettings-desktop-schemas. +2024-04-05T03:32:42Z #8 29.91 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-04-05T03:32:42Z #8 29.92 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-04-05T03:32:42Z #8 30.10 Selecting previously unselected package glib-networking:amd64. +2024-04-05T03:32:42Z #8 30.11 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-04-05T03:32:42Z #8 30.11 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-04-05T03:32:42Z #8 30.18 Selecting previously unselected package libsoup2.4-1:amd64. +2024-04-05T03:32:42Z #8 30.19 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-04-05T03:32:42Z #8 30.20 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-05T03:32:42Z #8 30.33 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-04-05T03:32:42Z #8 30.33 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-04-05T03:32:42Z #8 30.34 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-05T03:32:42Z #8 30.40 Selecting previously unselected package librest-0.7-0:amd64. +2024-04-05T03:32:42Z #8 30.40 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-04-05T03:32:42Z #8 30.41 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-05T03:32:42Z #8 30.47 Selecting previously unselected package libwayland-client0:amd64. +2024-04-05T03:32:42Z #8 30.48 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-05T03:32:42Z #8 30.49 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-05T03:32:42Z #8 30.55 Selecting previously unselected package libwayland-cursor0:amd64. +2024-04-05T03:32:42Z #8 30.56 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-05T03:32:42Z #8 30.57 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-05T03:32:43Z #8 30.66 Selecting previously unselected package libwayland-egl1:amd64. +2024-04-05T03:32:43Z #8 30.66 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-04-05T03:32:43Z #8 30.67 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-05T03:32:43Z #8 30.72 Selecting previously unselected package libxcomposite1:amd64. +2024-04-05T03:32:43Z #8 30.73 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-04-05T03:32:43Z #8 30.73 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-05T03:32:43Z #8 30.79 Selecting previously unselected package libxfixes3:amd64. +2024-04-05T03:32:43Z #8 30.80 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-04-05T03:32:43Z #8 30.81 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-05T03:32:43Z #8 30.86 Selecting previously unselected package libxcursor1:amd64. +2024-04-05T03:32:43Z #8 30.86 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-04-05T03:32:43Z #8 30.87 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-05T03:32:43Z #8 30.92 Selecting previously unselected package libxdamage1:amd64. +2024-04-05T03:32:43Z #8 30.93 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-04-05T03:32:43Z #8 30.93 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-05T03:32:43Z #8 30.98 Selecting previously unselected package libxinerama1:amd64. +2024-04-05T03:32:43Z #8 30.98 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-04-05T03:32:43Z #8 30.99 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-05T03:32:43Z #8 31.04 Selecting previously unselected package xkb-data. +2024-04-05T03:32:43Z #8 31.05 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-04-05T03:32:43Z #8 31.05 Unpacking xkb-data (2.29-2) ... +2024-04-05T03:32:43Z #8 31.32 Selecting previously unselected package libxkbcommon0:amd64. +2024-04-05T03:32:43Z #8 31.32 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-04-05T03:32:43Z #8 31.32 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-05T03:32:43Z #8 31.39 Selecting previously unselected package libxrandr2:amd64. +2024-04-05T03:32:43Z #8 31.39 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-04-05T03:32:43Z #8 31.40 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-05T03:32:43Z #8 31.44 Selecting previously unselected package libgtk-3-common. +2024-04-05T03:32:43Z #8 31.45 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-04-05T03:32:43Z #8 31.45 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-05T03:32:44Z #8 32.27 Selecting previously unselected package libgtk-3-0:amd64. +2024-04-05T03:32:44Z #8 32.27 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-04-05T03:32:44Z #8 32.28 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-05T03:32:45Z #8 32.82 Selecting previously unselected package libx11-xcb1:amd64. +2024-04-05T03:32:45Z #8 32.83 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-04-05T03:32:45Z #8 32.83 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-05T03:32:45Z #8 32.90 Selecting previously unselected package firefox-esr. +2024-04-05T03:32:45Z #8 32.91 Preparing to unpack .../099-firefox-esr_115.9.1esr-1~deb11u1_amd64.deb ... +2024-04-05T03:32:45Z #8 32.92 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-04-05T03:32:45Z #8 32.93 Unpacking firefox-esr (115.9.1esr-1~deb11u1) ... +2024-04-05T03:32:56Z #8 44.09 Selecting previously unselected package fonts-humor-sans. +2024-04-05T03:32:56Z #8 44.09 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-04-05T03:32:56Z #8 44.10 Unpacking fonts-humor-sans (1.0-4) ... +2024-04-05T03:32:56Z #8 44.14 Selecting previously unselected package libcc1-0:amd64. +2024-04-05T03:32:56Z #8 44.15 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-04-05T03:32:56Z #8 44.15 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-04-05T03:32:56Z #8 44.21 Selecting previously unselected package libgomp1:amd64. +2024-04-05T03:32:56Z #8 44.21 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-04-05T03:32:56Z #8 44.22 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-04-05T03:32:56Z #8 44.28 Selecting previously unselected package libitm1:amd64. +2024-04-05T03:32:56Z #8 44.28 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-04-05T03:32:56Z #8 44.29 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-04-05T03:32:56Z #8 44.33 Selecting previously unselected package libatomic1:amd64. +2024-04-05T03:32:56Z #8 44.34 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-04-05T03:32:56Z #8 44.34 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-04-05T03:32:56Z #8 44.39 Selecting previously unselected package libasan6:amd64. +2024-04-05T03:32:56Z #8 44.40 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-04-05T03:32:56Z #8 44.40 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-04-05T03:32:57Z #8 44.88 Selecting previously unselected package liblsan0:amd64. +2024-04-05T03:32:57Z #8 44.89 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-04-05T03:32:57Z #8 44.89 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-04-05T03:32:57Z #8 45.10 Selecting previously unselected package libtsan0:amd64. +2024-04-05T03:32:57Z #8 45.10 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-04-05T03:32:57Z #8 45.11 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-04-05T03:32:58Z #8 45.57 Selecting previously unselected package libubsan1:amd64. +2024-04-05T03:32:58Z #8 45.58 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-04-05T03:32:58Z #8 45.58 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-04-05T03:32:58Z #8 45.80 Selecting previously unselected package libquadmath0:amd64. +2024-04-05T03:32:58Z #8 45.80 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-04-05T03:32:58Z #8 45.81 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-04-05T03:32:58Z #8 45.87 Selecting previously unselected package libgcc-10-dev:amd64. +2024-04-05T03:32:58Z #8 45.87 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-04-05T03:32:58Z #8 45.88 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-05T03:32:59Z #8 46.66 Selecting previously unselected package gcc-10. +2024-04-05T03:32:59Z #8 46.67 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-04-05T03:32:59Z #8 46.67 Unpacking gcc-10 (10.2.1-6) ... +2024-04-05T03:33:01Z #8 49.58 Selecting previously unselected package gcc. +2024-04-05T03:33:01Z #8 49.58 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-04-05T03:33:01Z #8 49.59 Unpacking gcc (4:10.2.1-1) ... +2024-04-05T03:33:02Z #8 49.63 Selecting previously unselected package libva2:amd64. +2024-04-05T03:33:02Z #8 49.64 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-04-05T03:33:02Z #8 49.64 Unpacking libva2:amd64 (2.10.0-1) ... +2024-04-05T03:33:02Z #8 49.71 Selecting previously unselected package libdrm-common. +2024-04-05T03:33:02Z #8 49.71 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-04-05T03:33:02Z #8 49.72 Unpacking libdrm-common (2.4.104-1) ... +2024-04-05T03:33:02Z #8 49.76 Selecting previously unselected package libdrm2:amd64. +2024-04-05T03:33:02Z #8 49.77 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-04-05T03:33:02Z #8 49.77 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-04-05T03:33:02Z #8 49.83 Selecting previously unselected package libpciaccess0:amd64. +2024-04-05T03:33:02Z #8 49.83 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-04-05T03:33:02Z #8 49.84 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-04-05T03:33:02Z #8 49.89 Selecting previously unselected package libdrm-intel1:amd64. +2024-04-05T03:33:02Z #8 49.89 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-04-05T03:33:02Z #8 49.90 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-05T03:33:02Z #8 49.95 Selecting previously unselected package i965-va-driver:amd64. +2024-04-05T03:33:02Z #8 49.95 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-04-05T03:33:02Z #8 49.96 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-05T03:33:02Z #8 50.11 Selecting previously unselected package libigdgmm11:amd64. +2024-04-05T03:33:02Z #8 50.12 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-04-05T03:33:02Z #8 50.12 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-05T03:33:02Z #8 50.18 Selecting previously unselected package intel-media-va-driver:amd64. +2024-04-05T03:33:02Z #8 50.18 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-04-05T03:33:02Z #8 50.19 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-05T03:33:02Z #8 50.51 Selecting previously unselected package libaom0:amd64. +2024-04-05T03:33:02Z #8 50.52 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-04-05T03:33:02Z #8 50.52 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-05T03:33:03Z #8 50.77 Selecting previously unselected package libmfx1:amd64. +2024-04-05T03:33:03Z #8 50.77 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-04-05T03:33:03Z #8 50.78 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-04-05T03:33:03Z #8 51.62 Selecting previously unselected package libva-drm2:amd64. +2024-04-05T03:33:04Z #8 51.63 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-04-05T03:33:04Z #8 51.63 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-04-05T03:33:04Z #8 51.69 Selecting previously unselected package libva-x11-2:amd64. +2024-04-05T03:33:04Z #8 51.69 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-04-05T03:33:04Z #8 51.70 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-04-05T03:33:04Z #8 51.76 Selecting previously unselected package libvdpau1:amd64. +2024-04-05T03:33:04Z #8 51.77 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-04-05T03:33:04Z #8 51.78 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-04-05T03:33:04Z #8 51.83 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-04-05T03:33:04Z #8 51.84 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-04-05T03:33:04Z #8 51.84 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-05T03:33:04Z #8 52.02 Selecting previously unselected package libavutil56:amd64. +2024-04-05T03:33:04Z #8 52.02 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-05T03:33:04Z #8 52.03 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-05T03:33:04Z #8 52.20 Selecting previously unselected package libcodec2-0.9:amd64. +2024-04-05T03:33:04Z #8 52.20 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-04-05T03:33:04Z #8 52.21 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-05T03:33:05Z #8 53.36 Selecting previously unselected package libdav1d4:amd64. +2024-04-05T03:33:05Z #8 53.36 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-04-05T03:33:05Z #8 53.39 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-04-05T03:33:05Z #8 53.50 Selecting previously unselected package libgsm1:amd64. +2024-04-05T03:33:05Z #8 53.50 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-04-05T03:33:05Z #8 53.51 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-04-05T03:33:05Z #8 53.58 Selecting previously unselected package libmp3lame0:amd64. +2024-04-05T03:33:05Z #8 53.58 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-04-05T03:33:05Z #8 53.59 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-04-05T03:33:06Z #8 53.68 Selecting previously unselected package libopenjp2-7:amd64. +2024-04-05T03:33:06Z #8 53.68 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-04-05T03:33:06Z #8 53.72 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-05T03:33:06Z #8 53.79 Selecting previously unselected package libopus0:amd64. +2024-04-05T03:33:06Z #8 53.80 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-04-05T03:33:06Z #8 53.80 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-04-05T03:33:06Z #8 53.87 Selecting previously unselected package librsvg2-2:amd64. +2024-04-05T03:33:06Z #8 53.88 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-05T03:33:06Z #8 53.88 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-05T03:33:06Z #8 54.38 Selecting previously unselected package libshine3:amd64. +2024-04-05T03:33:06Z #8 54.39 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-04-05T03:33:06Z #8 54.39 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-04-05T03:33:06Z #8 54.44 Selecting previously unselected package libsnappy1v5:amd64. +2024-04-05T03:33:06Z #8 54.44 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-04-05T03:33:06Z #8 54.44 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-05T03:33:06Z #8 54.49 Selecting previously unselected package libspeex1:amd64. +2024-04-05T03:33:06Z #8 54.49 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-04-05T03:33:06Z #8 54.50 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-05T03:33:06Z #8 54.55 Selecting previously unselected package libsoxr0:amd64. +2024-04-05T03:33:06Z #8 54.55 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-04-05T03:33:06Z #8 54.56 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-04-05T03:33:06Z #8 54.62 Selecting previously unselected package libswresample3:amd64. +2024-04-05T03:33:07Z #8 54.62 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-05T03:33:07Z #8 54.62 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-05T03:33:07Z #8 54.68 Selecting previously unselected package libogg0:amd64. +2024-04-05T03:33:07Z #8 54.69 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-04-05T03:33:07Z #8 54.69 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-04-05T03:33:07Z #8 54.75 Selecting previously unselected package libtheora0:amd64. +2024-04-05T03:33:07Z #8 54.76 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-04-05T03:33:07Z #8 54.76 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-05T03:33:07Z #8 54.83 Selecting previously unselected package libtwolame0:amd64. +2024-04-05T03:33:07Z #8 54.84 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-04-05T03:33:07Z #8 54.84 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-04-05T03:33:07Z #8 54.90 Selecting previously unselected package libvorbis0a:amd64. +2024-04-05T03:33:07Z #8 54.90 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-04-05T03:33:07Z #8 54.91 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-04-05T03:33:07Z #8 54.97 Selecting previously unselected package libvorbisenc2:amd64. +2024-04-05T03:33:07Z #8 54.97 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-04-05T03:33:07Z #8 54.97 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-05T03:33:07Z #8 55.04 Selecting previously unselected package libvpx6:amd64. +2024-04-05T03:33:07Z #8 55.04 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-04-05T03:33:07Z #8 55.05 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-05T03:33:07Z #8 55.26 Selecting previously unselected package libwavpack1:amd64. +2024-04-05T03:33:07Z #8 55.26 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-04-05T03:33:07Z #8 55.26 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-04-05T03:33:07Z #8 55.32 Selecting previously unselected package libwebpmux3:amd64. +2024-04-05T03:33:07Z #8 55.32 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-05T03:33:07Z #8 55.33 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-05T03:33:07Z #8 55.41 Selecting previously unselected package libx264-160:amd64. +2024-04-05T03:33:07Z #8 55.41 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-04-05T03:33:07Z #8 55.41 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-05T03:33:07Z #8 55.55 Selecting previously unselected package libnuma1:amd64. +2024-04-05T03:33:07Z #8 55.55 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-04-05T03:33:07Z #8 55.56 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-05T03:33:08Z #8 55.69 Selecting previously unselected package libx265-192:amd64. +2024-04-05T03:33:08Z #8 55.69 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-04-05T03:33:08Z #8 55.70 Unpacking libx265-192:amd64 (3.4-2) ... +2024-04-05T03:33:08Z #8 56.02 Selecting previously unselected package libxvidcore4:amd64. +2024-04-05T03:33:08Z #8 56.02 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-04-05T03:33:08Z #8 56.03 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-05T03:33:08Z #8 56.11 Selecting previously unselected package libzvbi-common. +2024-04-05T03:33:08Z #8 56.11 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-04-05T03:33:08Z #8 56.12 Unpacking libzvbi-common (0.2.35-18) ... +2024-04-05T03:33:08Z #8 56.17 Selecting previously unselected package libzvbi0:amd64. +2024-04-05T03:33:08Z #8 56.17 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-04-05T03:33:08Z #8 56.18 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-04-05T03:33:08Z #8 56.26 Selecting previously unselected package libavcodec58:amd64. +2024-04-05T03:33:08Z #8 56.26 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-05T03:33:08Z #8 56.27 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-05T03:33:09Z #8 57.04 Selecting previously unselected package libc-dev-bin. +2024-04-05T03:33:09Z #8 57.04 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... +2024-04-05T03:33:09Z #8 57.05 Unpacking libc-dev-bin (2.31-13+deb11u8) ... +2024-04-05T03:33:09Z #8 57.10 Selecting previously unselected package libxpm4:amd64. +2024-04-05T03:33:09Z #8 57.10 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-04-05T03:33:09Z #8 57.11 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-05T03:33:09Z #8 57.16 Selecting previously unselected package libgd3:amd64. +2024-04-05T03:33:09Z #8 57.17 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-04-05T03:33:09Z #8 57.17 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-04-05T03:33:09Z #8 57.25 Selecting previously unselected package libc-devtools. +2024-04-05T03:33:09Z #8 57.25 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... +2024-04-05T03:33:09Z #8 57.28 Unpacking libc-devtools (2.31-13+deb11u8) ... +2024-04-05T03:33:10Z #8 57.65 Selecting previously unselected package linux-libc-dev:amd64. +2024-04-05T03:33:10Z #8 57.66 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-04-05T03:33:10Z #8 57.66 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-05T03:33:10Z #8 58.02 Selecting previously unselected package libcrypt-dev:amd64. +2024-04-05T03:33:10Z #8 58.02 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-04-05T03:33:10Z #8 58.03 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-05T03:33:10Z #8 58.08 Selecting previously unselected package libtirpc-dev:amd64. +2024-04-05T03:33:10Z #8 58.08 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-04-05T03:33:10Z #8 58.09 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-05T03:33:10Z #8 58.19 Selecting previously unselected package libnsl-dev:amd64. +2024-04-05T03:33:10Z #8 58.19 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-04-05T03:33:10Z #8 58.20 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-04-05T03:33:10Z #8 58.25 Selecting previously unselected package libc6-dev:amd64. +2024-04-05T03:33:10Z #8 58.26 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... +2024-04-05T03:33:10Z #8 58.26 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-04-05T03:33:11Z #8 58.81 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-04-05T03:33:11Z #8 58.81 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-04-05T03:33:11Z #8 58.82 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-05T03:33:11Z #8 58.87 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-04-05T03:33:11Z #8 58.88 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-04-05T03:33:11Z #8 58.89 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-05T03:33:11Z #8 58.99 Selecting previously unselected package libdrm-radeon1:amd64. +2024-04-05T03:33:11Z #8 58.99 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-04-05T03:33:11Z #8 59.00 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-05T03:33:11Z #8 59.04 Selecting previously unselected package libelf1:amd64. +2024-04-05T03:33:11Z #8 59.05 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-04-05T03:33:11Z #8 59.05 Unpacking libelf1:amd64 (0.183-1) ... +2024-04-05T03:33:11Z #8 59.13 Selecting previously unselected package libfontenc1:amd64. +2024-04-05T03:33:11Z #8 59.14 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-04-05T03:33:11Z #8 59.14 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-05T03:33:11Z #8 59.18 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-04-05T03:33:11Z #8 59.19 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-05T03:33:11Z #8 59.19 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-05T03:33:11Z #8 59.25 Selecting previously unselected package libglapi-mesa:amd64. +2024-04-05T03:33:11Z #8 59.26 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-04-05T03:33:11Z #8 59.26 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-05T03:33:11Z #8 59.32 Selecting previously unselected package libz3-4:amd64. +2024-04-05T03:33:11Z #8 59.32 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-04-05T03:33:11Z #8 59.33 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-04-05T03:33:12Z #8 60.41 Selecting previously unselected package libllvm11:amd64. +2024-04-05T03:33:12Z #8 60.41 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-04-05T03:33:12Z #8 60.41 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-04-05T03:33:16Z #8 63.67 Selecting previously unselected package libsensors-config. +2024-04-05T03:33:16Z #8 63.67 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-04-05T03:33:16Z #8 63.67 Unpacking libsensors-config (1:3.6.0-7) ... +2024-04-05T03:33:16Z #8 63.72 Selecting previously unselected package libsensors5:amd64. +2024-04-05T03:33:16Z #8 63.73 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-04-05T03:33:16Z #8 63.77 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-04-05T03:33:16Z #8 63.82 Selecting previously unselected package libvulkan1:amd64. +2024-04-05T03:33:16Z #8 63.83 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-04-05T03:33:16Z #8 63.83 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-05T03:33:16Z #8 63.90 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-04-05T03:33:16Z #8 63.90 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-04-05T03:33:16Z #8 63.91 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-05T03:33:17Z #8 65.46 Selecting previously unselected package libglvnd0:amd64. +2024-04-05T03:33:17Z #8 65.46 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-04-05T03:33:17Z #8 65.47 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-04-05T03:33:17Z #8 65.53 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-04-05T03:33:17Z #8 65.53 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-04-05T03:33:17Z #8 65.54 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-05T03:33:17Z #8 65.59 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-04-05T03:33:17Z #8 65.60 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-04-05T03:33:17Z #8 65.61 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-05T03:33:18Z #8 65.66 Selecting previously unselected package libxcb-glx0:amd64. +2024-04-05T03:33:18Z #8 65.66 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-04-05T03:33:18Z #8 65.67 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-04-05T03:33:18Z #8 65.72 Selecting previously unselected package libxcb-present0:amd64. +2024-04-05T03:33:18Z #8 65.73 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-04-05T03:33:18Z #8 65.73 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-04-05T03:33:18Z #8 65.80 Selecting previously unselected package libxcb-sync1:amd64. +2024-04-05T03:33:18Z #8 65.81 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-04-05T03:33:18Z #8 65.82 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-04-05T03:33:18Z #8 65.87 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-04-05T03:33:18Z #8 65.88 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-04-05T03:33:18Z #8 65.88 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-05T03:33:18Z #8 65.94 Selecting previously unselected package libxshmfence1:amd64. +2024-04-05T03:33:18Z #8 65.95 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-04-05T03:33:18Z #8 65.96 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-04-05T03:33:18Z #8 65.99 Selecting previously unselected package libxxf86vm1:amd64. +2024-04-05T03:33:18Z #8 66.00 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-04-05T03:33:18Z #8 66.00 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-05T03:33:18Z #8 66.05 Selecting previously unselected package libglx-mesa0:amd64. +2024-04-05T03:33:18Z #8 66.05 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-04-05T03:33:18Z #8 66.06 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-05T03:33:18Z #8 66.12 Selecting previously unselected package libgtk-3-bin. +2024-04-05T03:33:18Z #8 66.12 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-04-05T03:33:18Z #8 66.13 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-05T03:33:18Z #8 66.18 Selecting previously unselected package librsvg2-common:amd64. +2024-04-05T03:33:18Z #8 66.19 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-05T03:33:18Z #8 66.20 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-05T03:33:18Z #8 66.24 Selecting previously unselected package libglx0:amd64. +2024-04-05T03:33:18Z #8 66.24 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-04-05T03:33:18Z #8 66.25 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-04-05T03:33:18Z #8 66.30 Selecting previously unselected package libgl1:amd64. +2024-04-05T03:33:18Z #8 66.31 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-04-05T03:33:18Z #8 66.31 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-04-05T03:33:18Z #8 66.36 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-04-05T03:33:18Z #8 66.37 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-04-05T03:33:18Z #8 66.37 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-05T03:33:18Z #8 66.42 Selecting previously unselected package libxt6:amd64. +2024-04-05T03:33:18Z #8 66.43 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-04-05T03:33:18Z #8 66.44 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-04-05T03:33:18Z #8 66.50 Selecting previously unselected package libxmu6:amd64. +2024-04-05T03:33:18Z #8 66.50 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-05T03:33:18Z #8 66.51 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-05T03:33:18Z #8 66.55 Selecting previously unselected package libxaw7:amd64. +2024-04-05T03:33:18Z #8 66.56 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-04-05T03:33:18Z #8 66.57 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-05T03:33:18Z #8 66.65 Selecting previously unselected package libxcb-randr0:amd64. +2024-04-05T03:33:18Z #8 66.65 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-04-05T03:33:19Z #8 66.66 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-04-05T03:33:19Z #8 66.71 Selecting previously unselected package libxcb-shape0:amd64. +2024-04-05T03:33:19Z #8 66.71 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-04-05T03:33:19Z #8 66.72 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-04-05T03:33:19Z #8 66.77 Selecting previously unselected package libxft2:amd64. +2024-04-05T03:33:19Z #8 66.78 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-04-05T03:33:19Z #8 66.78 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-04-05T03:33:19Z #8 66.83 Selecting previously unselected package libxkbfile1:amd64. +2024-04-05T03:33:19Z #8 66.84 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-04-05T03:33:19Z #8 66.84 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-05T03:33:19Z #8 66.89 Selecting previously unselected package libxmuu1:amd64. +2024-04-05T03:33:19Z #8 66.90 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-05T03:33:19Z #8 66.90 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-05T03:33:19Z #8 66.94 Selecting previously unselected package libxv1:amd64. +2024-04-05T03:33:19Z #8 66.95 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-04-05T03:33:19Z #8 66.96 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-04-05T03:33:19Z #8 67.00 Selecting previously unselected package libxxf86dga1:amd64. +2024-04-05T03:33:19Z #8 67.01 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-04-05T03:33:19Z #8 67.02 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-05T03:33:19Z #8 67.05 Selecting previously unselected package manpages-dev. +2024-04-05T03:33:19Z #8 67.06 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-04-05T03:33:19Z #8 67.06 Unpacking manpages-dev (5.10-1) ... +2024-04-05T03:33:19Z #8 67.52 Selecting previously unselected package mesa-va-drivers:amd64. +2024-04-05T03:33:19Z #8 67.53 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-04-05T03:33:19Z #8 67.53 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-05T03:33:20Z #8 68.04 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-04-05T03:33:20Z #8 68.04 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-04-05T03:33:20Z #8 68.05 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-05T03:33:20Z #8 68.53 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-04-05T03:33:20Z #8 68.53 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-04-05T03:33:20Z #8 68.54 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-05T03:33:23Z #8 70.58 Selecting previously unselected package patch. +2024-04-05T03:33:23Z #8 70.59 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-04-05T03:33:23Z #8 70.91 Unpacking patch (2.7.6-7) ... +2024-04-05T03:33:23Z #8 71.18 Selecting previously unselected package unzip. +2024-04-05T03:33:23Z #8 71.18 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-04-05T03:33:23Z #8 71.19 Unpacking unzip (6.0-26+deb11u1) ... +2024-04-05T03:33:23Z #8 71.25 Selecting previously unselected package va-driver-all:amd64. +2024-04-05T03:33:23Z #8 71.25 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-04-05T03:33:23Z #8 71.26 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-04-05T03:33:23Z #8 71.29 Selecting previously unselected package vdpau-driver-all:amd64. +2024-04-05T03:33:23Z #8 71.30 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-04-05T03:33:23Z #8 71.30 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-04-05T03:33:23Z #8 71.35 Selecting previously unselected package x11-utils. +2024-04-05T03:33:23Z #8 71.35 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-04-05T03:33:23Z #8 71.36 Unpacking x11-utils (7.7+5) ... +2024-04-05T03:33:23Z #8 71.49 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-05T03:33:23Z #8 71.50 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-05T03:33:23Z #8 71.52 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-05T03:33:23Z #8 71.53 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-05T03:33:23Z #8 71.54 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-05T03:33:24Z #8 71.55 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-04-05T03:33:24Z #8 71.57 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-04-05T03:33:24Z #8 71.58 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-04-05T03:33:24Z #8 71.60 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-05T03:33:24Z #8 71.61 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-05T03:33:24Z #8 71.62 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-04-05T03:33:24Z #8 71.64 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-05T03:33:24Z #8 71.65 Setting up libshine3:amd64 (3.1.1-2) ... +2024-04-05T03:33:24Z #8 71.66 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-05T03:33:24Z #8 71.68 Setting up hicolor-icon-theme (0.17-2) ... +2024-04-05T03:33:24Z #8 71.71 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-04-05T03:33:24Z #8 71.72 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-04-05T03:33:24Z #8 71.73 Setting up libicu67:amd64 (67.1-7) ... +2024-04-05T03:33:24Z #8 71.75 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-04-05T03:33:24Z #8 71.76 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-04-05T03:33:24Z #8 71.78 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-04-05T03:33:24Z #8 71.79 Setting up manpages (5.10-1) ... +2024-04-05T03:33:24Z #8 71.81 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-04-05T03:33:24Z #8 71.82 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-04-05T03:33:24Z #8 71.83 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-04-05T03:33:24Z #8 71.85 Setting up unzip (6.0-26+deb11u1) ... +2024-04-05T03:33:24Z #8 71.86 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-05T03:33:24Z #8 71.88 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-05T03:33:24Z #8 71.90 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-04-05T03:33:24Z #8 71.91 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-04-05T03:33:24Z #8 71.93 Setting up libsensors-config (1:3.6.0-7) ... +2024-04-05T03:33:24Z #8 71.95 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-05T03:33:24Z #8 71.96 Setting up libdeflate0:amd64 (1.7-1) ... +2024-04-05T03:33:24Z #8 71.97 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-05T03:33:24Z #8 71.98 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-05T03:33:24Z #8 72.00 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-05T03:33:24Z #8 72.01 First installation detected... +2024-04-05T03:33:24Z #8 72.01 Checking NSS setup... +2024-04-05T03:33:24Z #8 72.02 Setting up xkb-data (2.29-2) ... +2024-04-05T03:33:24Z #8 72.03 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-04-05T03:33:24Z #8 72.04 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-04-05T03:33:24Z #8 72.06 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-05T03:33:24Z #8 72.07 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-05T03:33:24Z #8 72.08 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-05T03:33:24Z #8 72.10 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-04-05T03:33:24Z #8 72.11 Setting up libasan6:amd64 (10.2.1-6) ... +2024-04-05T03:33:24Z #8 72.12 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-05T03:33:24Z #8 72.14 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-05T03:33:24Z #8 72.15 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-04-05T03:33:24Z #8 72.17 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-04-05T03:33:24Z #8 72.18 Setting up libasound2-data (1.2.4-1.1) ... +2024-04-05T03:33:24Z #8 72.20 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-05T03:33:24Z #8 72.22 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-04-05T03:33:24Z #8 72.23 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-05T03:33:24Z #8 72.24 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-04-05T03:33:24Z #8 72.26 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-05T03:33:24Z #8 72.27 Setting up libva2:amd64 (2.10.0-1) ... +2024-04-05T03:33:24Z #8 72.28 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-05T03:33:24Z #8 72.30 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-04-05T03:33:24Z #8 72.31 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-04-05T03:33:24Z #8 72.33 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-05T03:33:24Z #8 72.34 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-04-05T03:33:24Z #8 72.35 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-05T03:33:24Z #8 72.37 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-05T03:33:24Z #8 72.38 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-05T03:33:24Z #8 72.39 Setting up dbus (1.12.28-0+deb11u1) ... +2024-04-05T03:33:25Z #8 72.56 invoke-rc.d: could not determine current runlevel +2024-04-05T03:33:25Z #8 72.57 invoke-rc.d: policy-rc.d denied execution of start. +2024-04-05T03:33:25Z #8 72.58 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-05T03:33:25Z #8 72.59 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-04-05T03:33:25Z #8 72.60 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-04-05T03:33:25Z #8 72.62 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-05T03:33:25Z #8 72.63 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-05T03:33:25Z #8 72.65 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-04-05T03:33:25Z #8 72.66 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-04-05T03:33:25Z #8 72.68 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-04-05T03:33:25Z #8 72.70 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-05T03:33:25Z #8 73.04 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-05T03:33:25Z #8 73.04 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-05T03:33:25Z #8 73.05 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-04-05T03:33:25Z #8 73.07 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-04-05T03:33:25Z #8 73.08 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-05T03:33:25Z #8 73.09 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-05T03:33:25Z #8 73.11 Setting up patch (2.7.6-7) ... +2024-04-05T03:33:25Z #8 73.12 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-05T03:33:25Z #8 73.13 Setting up fonts-dejavu-core (2.37-2) ... +2024-04-05T03:33:25Z #8 73.30 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-04-05T03:33:25Z #8 73.31 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-04-05T03:33:25Z #8 73.33 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-05T03:33:25Z #8 73.34 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-05T03:33:25Z #8 73.36 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-04-05T03:33:25Z #8 73.37 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-05T03:33:25Z #8 73.38 Setting up libatk1.0-data (2.36.0-2) ... +2024-04-05T03:33:25Z #8 73.40 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-05T03:33:25Z #8 73.41 Setting up alsa-topology-conf (1.2.4-1) ... +2024-04-05T03:33:25Z #8 73.42 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-04-05T03:33:25Z #8 73.43 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-05T03:33:25Z #8 73.45 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-04-05T03:33:25Z #8 73.46 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-05T03:33:25Z #8 73.47 Setting up libvdpau1:amd64 (1.4-3) ... +2024-04-05T03:33:25Z #8 73.49 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-05T03:33:25Z #8 73.50 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-04-05T03:33:25Z #8 73.52 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-04-05T03:33:25Z #8 73.53 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-04-05T03:33:26Z #8 73.55 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-05T03:33:26Z #8 73.79 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-04-05T03:33:26Z #8 73.80 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-05T03:33:26Z #8 73.81 Setting up libthai-data (0.1.28-3) ... +2024-04-05T03:33:26Z #8 73.83 Setting up fonts-humor-sans (1.0-4) ... +2024-04-05T03:33:26Z #8 73.84 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-04-05T03:33:26Z #8 73.85 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-05T03:33:26Z #8 73.87 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-05T03:33:26Z #8 73.88 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-05T03:33:26Z #8 73.89 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-05T03:33:26Z #8 73.91 Setting up glib-networking-common (2.66.0-2) ... +2024-04-05T03:33:26Z #8 73.92 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-04-05T03:33:26Z #8 73.93 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-04-05T03:33:26Z #8 73.95 Setting up libisl23:amd64 (0.23-1) ... +2024-04-05T03:33:26Z #8 73.96 Setting up libc-dev-bin (2.31-13+deb11u8) ... +2024-04-05T03:33:26Z #8 73.98 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-05T03:33:26Z #8 73.99 Setting up libdrm-common (2.4.104-1) ... +2024-04-05T03:33:26Z #8 74.01 Setting up libelf1:amd64 (0.183-1) ... +2024-04-05T03:33:26Z #8 74.02 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-05T03:33:26Z #8 74.04 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-05T03:33:26Z #8 74.05 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-04-05T03:33:26Z #8 74.07 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-05T03:33:26Z #8 74.08 Setting up libzvbi-common (0.2.35-18) ... +2024-04-05T03:33:26Z #8 74.10 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-04-05T03:33:26Z #8 74.11 Setting up cpp-10 (10.2.1-6) ... +2024-04-05T03:33:26Z #8 74.13 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-04-05T03:33:26Z #8 74.14 Setting up libitm1:amd64 (10.2.1-6) ... +2024-04-05T03:33:26Z #8 74.16 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-05T03:33:26Z #8 74.17 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-04-05T03:33:26Z #8 74.18 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-05T03:33:26Z #8 74.20 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-05T03:33:26Z #8 74.21 Setting up libctf0:amd64 (2.35.2-2) ... +2024-04-05T03:33:26Z #8 74.22 Setting up glib-networking-services (2.66.0-2) ... +2024-04-05T03:33:26Z #8 74.24 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-04-05T03:33:26Z #8 74.25 Setting up manpages-dev (5.10-1) ... +2024-04-05T03:33:26Z #8 74.27 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-05T03:33:26Z #8 74.28 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-04-05T03:33:26Z #8 74.29 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-04-05T03:33:26Z #8 74.31 Setting up fontconfig-config (2.13.1-4.2) ... +2024-04-05T03:33:27Z #8 74.68 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-05T03:33:27Z #8 74.69 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-05T03:33:27Z #8 74.70 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-05T03:33:27Z #8 74.72 Setting up libx265-192:amd64 (3.4-2) ... +2024-04-05T03:33:27Z #8 74.73 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-05T03:33:27Z #8 74.75 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-05T03:33:27Z #8 74.76 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-05T03:33:27Z #8 74.77 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-05T03:33:27Z #8 74.79 Setting up libthai0:amd64 (0.1.28-3) ... +2024-04-05T03:33:27Z #8 74.80 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-05T03:33:27Z #8 74.82 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-05T03:33:27Z #8 74.84 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-05T03:33:27Z #8 74.85 Setting up shared-mime-info (2.0-1) ... +2024-04-05T03:33:31Z #8 78.83 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-04-05T03:33:31Z #8 78.84 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-04-05T03:33:31Z #8 78.86 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-05T03:33:31Z #8 78.89 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-05T03:33:31Z #8 78.90 Setting up cpp (4:10.2.1-1) ... +2024-04-05T03:33:31Z #8 78.92 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-04-05T03:33:31Z #8 78.94 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-05T03:33:31Z #8 78.95 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-05T03:33:31Z #8 78.99 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-05T03:33:31Z #8 79.05 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-04-05T03:33:31Z #8 79.07 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-05T03:33:31Z #8 79.08 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-05T03:33:31Z #8 79.10 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-05T03:33:31Z #8 79.11 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-05T03:33:31Z #8 79.13 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-05T03:33:31Z #8 79.14 Setting up fontconfig (2.13.1-4.2) ... +2024-04-05T03:33:33Z #8 79.16 Regenerating fonts cache... done. +2024-04-05T03:33:33Z #8 81.19 Setting up libxft2:amd64 (2.3.2-2) ... +2024-04-05T03:33:33Z #8 81.20 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-05T03:33:33Z #8 81.22 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-05T03:33:33Z #8 81.24 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-05T03:33:33Z #8 81.25 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-05T03:33:33Z #8 81.27 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-05T03:33:33Z #8 81.29 Setting up dconf-service (0.38.0-2) ... +2024-04-05T03:33:33Z #8 81.30 Setting up binutils (2.35.2-2) ... +2024-04-05T03:33:33Z #8 81.32 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-04-05T03:33:33Z #8 81.33 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-05T03:33:33Z #8 81.35 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-04-05T03:33:33Z #8 81.44 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-04-05T03:33:33Z #8 81.45 Setting up libgd3:amd64 (2.3.0-2) ... +2024-04-05T03:33:33Z #8 81.46 Setting up gcc-10 (10.2.1-6) ... +2024-04-05T03:33:33Z #8 81.48 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-05T03:33:33Z #8 81.49 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-05T03:33:33Z #8 81.50 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-05T03:33:33Z #8 81.52 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-05T03:33:33Z #8 81.53 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-05T03:33:33Z #8 81.55 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-05T03:33:33Z #8 81.57 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-05T03:33:33Z #8 81.58 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-05T03:33:33Z #8 81.60 Setting up libc-devtools (2.31-13+deb11u8) ... +2024-04-05T03:33:33Z #8 81.61 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-05T03:33:33Z #8 81.62 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-05T03:33:33Z #8 81.64 Setting up libglx0:amd64 (1.3.2-1) ... +2024-04-05T03:33:34Z #8 81.65 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-05T03:33:34Z #8 81.67 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-05T03:33:34Z #8 81.68 Setting up gcc (4:10.2.1-1) ... +2024-04-05T03:33:34Z #8 81.71 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-05T03:33:34Z #8 81.73 Setting up libgl1:amd64 (1.3.2-1) ... +2024-04-05T03:33:34Z #8 81.74 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-04-05T03:33:34Z #8 81.75 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-05T03:33:34Z #8 81.78 Setting up x11-utils (7.7+5) ... +2024-04-05T03:33:34Z #8 81.84 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-05T03:33:34Z #8 81.85 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-05T03:33:34Z #8 81.87 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-05T03:33:34Z #8 81.89 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-04-05T03:33:34Z #8 81.91 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-04-05T03:33:34Z #8 81.93 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-04-05T03:33:34Z #8 81.98 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-05T03:33:34Z #8 82.02 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-04-05T03:33:34Z #8 82.04 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-05T03:33:34Z #8 82.06 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-05T03:33:34Z #8 82.08 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-05T03:33:34Z #8 82.10 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-05T03:33:34Z #8 82.14 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-05T03:33:34Z #8 82.15 Setting up firefox-esr (115.9.1esr-1~deb11u1) ... +2024-04-05T03:33:34Z #8 82.18 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-04-05T03:33:34Z #8 82.18 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-04-05T03:33:34Z #8 82.19 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-04-05T03:33:34Z #8 82.19 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-04-05T03:33:34Z #8 82.20 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-05T03:33:34Z #8 82.24 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-05T03:33:39Z #8 DONE 87.0s +2024-04-05T03:33:39Z +2024-04-05T03:33:39Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-05T03:33:39Z #6 ... +2024-04-05T03:33:39Z +2024-04-05T03:33:39Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-04-05T03:34:24Z #9 DONE 45.4s +2024-04-05T03:34:24Z +2024-04-05T03:34:24Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-05T03:34:24Z #6 ... +2024-04-05T03:34:24Z +2024-04-05T03:34:24Z #10 [ 5/10] COPY environment.yml /environment.yml +2024-04-05T03:34:24Z #10 DONE 0.1s +2024-04-05T03:34:24Z +2024-04-05T03:34:24Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-04-05T03:36:55Z #11 150.8 Transaction +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 Prefix: /opt/conda/envs/birdy +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 Updating specs: +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 - xclim +2024-04-05T03:36:55Z #11 150.8 - ravenpy +2024-04-05T03:36:55Z #11 150.8 - python=3.10 +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 Package Version Build Channel Size +2024-04-05T03:36:55Z #11 150.8 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-05T03:36:55Z #11 150.8 Install: +2024-04-05T03:36:55Z #11 150.8 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-04-05T03:36:55Z #11 150.8 + python_abi 3.10 4_cp310 conda-forge 6kB +2024-04-05T03:36:55Z #11 150.8 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB +2024-04-05T03:36:55Z #11 150.8 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB +2024-04-05T03:36:55Z #11 150.8 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB +2024-04-05T03:36:55Z #11 150.8 + mpi 1.0 openmpi conda-forge 4kB +2024-04-05T03:36:55Z #11 150.8 + libgomp 13.2.0 h807b86a_5 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-04-05T03:36:55Z #11 150.8 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-04-05T03:36:55Z #11 150.8 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-04-05T03:36:55Z #11 150.8 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-04-05T03:36:55Z #11 150.8 + lzo 2.10 h516909a_1000 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-04-05T03:36:55Z #11 150.8 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-04-05T03:36:55Z #11 150.8 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-04-05T03:36:55Z #11 150.8 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-04-05T03:36:55Z #11 150.8 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-04-05T03:36:55Z #11 150.8 + c-ares 1.28.1 hd590300_0 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + libev 4.33 hd590300_2 conda-forge 113kB +2024-04-05T03:36:55Z #11 150.8 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-04-05T03:36:55Z #11 150.8 + aws-c-common 0.9.14 hd590300_0 conda-forge 226kB +2024-04-05T03:36:55Z #11 150.8 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-04-05T03:36:55Z #11 150.8 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-04-05T03:36:55Z #11 150.8 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-04-05T03:36:55Z #11 150.8 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-04-05T03:36:55Z #11 150.8 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-04-05T03:36:55Z #11 150.8 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-04-05T03:36:55Z #11 150.8 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB +2024-04-05T03:36:55Z #11 150.8 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-04-05T03:36:55Z #11 150.8 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-04-05T03:36:55Z #11 150.8 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + openssl 3.2.1 hd590300_1 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB +2024-04-05T03:36:55Z #11 150.8 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-04-05T03:36:55Z #11 150.8 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-04-05T03:36:55Z #11 150.8 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-04-05T03:36:55Z #11 150.8 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-04-05T03:36:55Z #11 150.8 + icu 73.2 h59595ed_0 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-04-05T03:36:55Z #11 150.8 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB +2024-04-05T03:36:55Z #11 150.8 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB +2024-04-05T03:36:55Z #11 150.8 + libdeflate 1.20 hd590300_0 conda-forge 72kB +2024-04-05T03:36:55Z #11 150.8 + libaec 1.1.3 h59595ed_0 conda-forge 35kB +2024-04-05T03:36:55Z #11 150.8 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-04-05T03:36:55Z #11 150.8 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-04-05T03:36:55Z #11 150.8 + snappy 1.1.10 h9fff704_0 conda-forge 39kB +2024-04-05T03:36:55Z #11 150.8 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-04-05T03:36:55Z #11 150.8 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-04-05T03:36:55Z #11 150.8 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB +2024-04-05T03:36:55Z #11 150.8 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB +2024-04-05T03:36:55Z #11 150.8 + libnsl 2.0.1 hd590300_0 conda-forge 33kB +2024-04-05T03:36:55Z #11 150.8 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-04-05T03:36:55Z #11 150.8 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB +2024-04-05T03:36:55Z #11 150.8 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-04-05T03:36:55Z #11 150.8 + aws-c-compression 0.2.18 h4466546_2 conda-forge 19kB +2024-04-05T03:36:55Z #11 150.8 + aws-c-sdkutils 0.1.15 h4466546_2 conda-forge 55kB +2024-04-05T03:36:55Z #11 150.8 + aws-checksums 0.1.18 h4466546_2 conda-forge 50kB +2024-04-05T03:36:55Z #11 150.8 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-04-05T03:36:55Z #11 150.8 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-04-05T03:36:55Z #11 150.8 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-04-05T03:36:55Z #11 150.8 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB +2024-04-05T03:36:55Z #11 150.8 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-04-05T03:36:55Z #11 150.8 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-04-05T03:36:55Z #11 150.8 + s2n 1.4.8 h06160fa_0 conda-forge 341kB +2024-04-05T03:36:55Z #11 150.8 + aws-c-cal 0.6.10 ha9bf9b1_2 conda-forge 55kB +2024-04-05T03:36:55Z #11 150.8 + expat 2.6.2 h59595ed_0 conda-forge 138kB +2024-04-05T03:36:55Z #11 150.8 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB +2024-04-05T03:36:55Z #11 150.8 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-04-05T03:36:55Z #11 150.8 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-04-05T03:36:55Z #11 150.8 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-04-05T03:36:55Z #11 150.8 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-04-05T03:36:55Z #11 150.8 + libssh2 1.11.0 h0841786_0 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB +2024-04-05T03:36:55Z #11 150.8 + pcre2 10.43 hcad00b1_0 conda-forge 951kB +2024-04-05T03:36:55Z #11 150.8 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-04-05T03:36:55Z #11 150.8 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2024-04-05T03:36:55Z #11 150.8 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB +2024-04-05T03:36:55Z #11 150.8 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB +2024-04-05T03:36:55Z #11 150.8 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-04-05T03:36:55Z #11 150.8 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-04-05T03:36:55Z #11 150.8 + readline 8.2 h8228510_1 conda-forge 281kB +2024-04-05T03:36:55Z #11 150.8 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-04-05T03:36:55Z #11 150.8 + libxml2 2.12.6 h232c23b_1 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + ucx 1.15.0 ha691c75_8 conda-forge 7MB +2024-04-05T03:36:55Z #11 150.8 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-04-05T03:36:55Z #11 150.8 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-04-05T03:36:55Z #11 150.8 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB +2024-04-05T03:36:55Z #11 150.8 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-04-05T03:36:55Z #11 150.8 + aws-c-io 0.14.6 h96cd748_2 conda-forge 158kB +2024-04-05T03:36:55Z #11 150.8 + libglib 2.80.0 hf2295e7_1 conda-forge 3MB +2024-04-05T03:36:55Z #11 150.8 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-04-05T03:36:55Z #11 150.8 + orc 2.0.0 h1e5e2c1_0 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-04-05T03:36:55Z #11 150.8 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB +2024-04-05T03:36:55Z #11 150.8 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB +2024-04-05T03:36:55Z #11 150.8 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-04-05T03:36:55Z #11 150.8 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB +2024-04-05T03:36:55Z #11 150.8 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB +2024-04-05T03:36:55Z #11 150.8 + krb5 1.21.2 h659d440_0 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB +2024-04-05T03:36:55Z #11 150.8 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-04-05T03:36:55Z #11 150.8 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-04-05T03:36:55Z #11 150.8 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB +2024-04-05T03:36:55Z #11 150.8 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-04-05T03:36:55Z #11 150.8 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-04-05T03:36:55Z #11 150.8 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-04-05T03:36:55Z #11 150.8 + aws-c-http 0.8.1 hbfc29b2_7 conda-forge 194kB +2024-04-05T03:36:55Z #11 150.8 + aws-c-event-stream 0.4.2 he635cd5_6 conda-forge 54kB +2024-04-05T03:36:55Z #11 150.8 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-04-05T03:36:55Z #11 150.8 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-04-05T03:36:55Z #11 150.8 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-04-05T03:36:55Z #11 150.8 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-04-05T03:36:55Z #11 150.8 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-04-05T03:36:55Z #11 150.8 + libpq 16.2 h33b98f1_1 conda-forge 3MB +2024-04-05T03:36:55Z #11 150.8 + libcurl 8.7.1 hca28451_0 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + aws-c-mqtt 0.10.3 hffff1cc_2 conda-forge 163kB +2024-04-05T03:36:55Z #11 150.8 + aws-c-auth 0.7.16 haed3651_8 conda-forge 103kB +2024-04-05T03:36:55Z #11 150.8 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB +2024-04-05T03:36:55Z #11 150.8 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB +2024-04-05T03:36:55Z #11 150.8 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB +2024-04-05T03:36:55Z #11 150.8 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB +2024-04-05T03:36:55Z #11 150.8 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-04-05T03:36:55Z #11 150.8 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB +2024-04-05T03:36:55Z #11 150.8 + proj 9.3.1 h1d62c97_0 conda-forge 3MB +2024-04-05T03:36:55Z #11 150.8 + aws-c-s3 0.5.5 h4893938_0 conda-forge 105kB +2024-04-05T03:36:55Z #11 150.8 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB +2024-04-05T03:36:55Z #11 150.8 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB +2024-04-05T03:36:55Z #11 150.8 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-04-05T03:36:55Z #11 150.8 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-04-05T03:36:55Z #11 150.8 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB +2024-04-05T03:36:55Z #11 150.8 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB +2024-04-05T03:36:55Z #11 150.8 + aws-crt-cpp 0.26.4 h58a74b7_3 conda-forge 336kB +2024-04-05T03:36:55Z #11 150.8 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB +2024-04-05T03:36:55Z #11 150.8 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-04-05T03:36:55Z #11 150.8 + aws-sdk-cpp 1.11.267 hb1af6a8_4 conda-forge 4MB +2024-04-05T03:36:55Z #11 150.8 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB +2024-04-05T03:36:55Z #11 150.8 + libarrow 15.0.2 hb86450c_1_cpu conda-forge 8MB +2024-04-05T03:36:55Z #11 150.8 + tiledb 2.21.1 ha9641ad_1 conda-forge 5MB +2024-04-05T03:36:55Z #11 150.8 + libparquet 15.0.2 h352af49_1_cpu conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + libarrow-gandiva 15.0.2 hb016d2e_1_cpu conda-forge 897kB +2024-04-05T03:36:55Z #11 150.8 + libarrow-flight 15.0.2 hc6145d9_1_cpu conda-forge 503kB +2024-04-05T03:36:55Z #11 150.8 + libarrow-acero 15.0.2 h59595ed_1_cpu conda-forge 597kB +2024-04-05T03:36:55Z #11 150.8 + libarrow-flight-sql 15.0.2 h757c851_1_cpu conda-forge 194kB +2024-04-05T03:36:55Z #11 150.8 + libarrow-dataset 15.0.2 h59595ed_1_cpu conda-forge 584kB +2024-04-05T03:36:55Z #11 150.8 + libarrow-substrait 15.0.2 h757c851_1_cpu conda-forge 519kB +2024-04-05T03:36:55Z #11 150.8 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-04-05T03:36:55Z #11 150.8 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-04-05T03:36:55Z #11 150.8 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-04-05T03:36:55Z #11 150.8 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-04-05T03:36:55Z #11 150.8 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-04-05T03:36:55Z #11 150.8 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB +2024-04-05T03:36:55Z #11 150.8 + fonts-conda-forge 1 0 conda-forge 4kB +2024-04-05T03:36:55Z #11 150.8 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-04-05T03:36:55Z #11 150.8 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB +2024-04-05T03:36:55Z #11 150.8 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB +2024-04-05T03:36:55Z #11 150.8 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-04-05T03:36:55Z #11 150.8 + poppler 24.03.0 h590f24d_0 conda-forge 2MB +2024-04-05T03:36:55Z #11 150.8 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB +2024-04-05T03:36:55Z #11 150.8 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB +2024-04-05T03:36:55Z #11 150.8 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB +2024-04-05T03:36:55Z #11 150.8 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB +2024-04-05T03:36:55Z #11 150.8 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB +2024-04-05T03:36:55Z #11 150.8 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-04-05T03:36:55Z #11 150.8 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB +2024-04-05T03:36:55Z #11 150.8 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB +2024-04-05T03:36:55Z #11 150.8 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-05T03:36:55Z #11 150.8 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-04-05T03:36:55Z #11 150.8 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-04-05T03:36:55Z #11 150.8 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-05T03:36:55Z #11 150.8 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-04-05T03:36:55Z #11 150.8 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB +2024-04-05T03:36:55Z #11 150.8 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-04-05T03:36:55Z #11 150.8 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-04-05T03:36:55Z #11 150.8 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-04-05T03:36:55Z #11 150.8 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB +2024-04-05T03:36:55Z #11 150.8 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-04-05T03:36:55Z #11 150.8 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-04-05T03:36:55Z #11 150.8 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-04-05T03:36:55Z #11 150.8 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-04-05T03:36:55Z #11 150.8 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-04-05T03:36:55Z #11 150.8 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-04-05T03:36:55Z #11 150.8 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-04-05T03:36:55Z #11 150.8 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-04-05T03:36:55Z #11 150.8 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-04-05T03:36:55Z #11 150.8 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-05T03:36:55Z #11 150.8 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-04-05T03:36:55Z #11 150.8 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-04-05T03:36:55Z #11 150.8 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-04-05T03:36:55Z #11 150.8 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB +2024-04-05T03:36:55Z #11 150.8 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB +2024-04-05T03:36:55Z #11 150.8 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-04-05T03:36:55Z #11 150.8 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-04-05T03:36:55Z #11 150.8 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB +2024-04-05T03:36:55Z #11 150.8 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB +2024-04-05T03:36:55Z #11 150.8 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-04-05T03:36:55Z #11 150.8 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB +2024-04-05T03:36:55Z #11 150.8 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB +2024-04-05T03:36:55Z #11 150.8 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-04-05T03:36:55Z #11 150.8 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-04-05T03:36:55Z #11 150.8 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-04-05T03:36:55Z #11 150.8 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-04-05T03:36:55Z #11 150.8 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-04-05T03:36:55Z #11 150.8 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB +2024-04-05T03:36:55Z #11 150.8 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-04-05T03:36:55Z #11 150.8 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB +2024-04-05T03:36:55Z #11 150.8 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB +2024-04-05T03:36:55Z #11 150.8 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-05T03:36:55Z #11 150.8 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB +2024-04-05T03:36:55Z #11 150.8 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB +2024-04-05T03:36:55Z #11 150.8 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB +2024-04-05T03:36:55Z #11 150.8 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB +2024-04-05T03:36:55Z #11 150.8 + tornado 6.4 py310h2372a71_0 conda-forge 651kB +2024-04-05T03:36:55Z #11 150.8 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB +2024-04-05T03:36:55Z #11 150.8 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB +2024-04-05T03:36:55Z #11 150.8 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB +2024-04-05T03:36:55Z #11 150.8 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB +2024-04-05T03:36:55Z #11 150.8 + pillow 10.3.0 py310hf73ecf8_0 conda-forge 42MB +2024-04-05T03:36:55Z #11 150.8 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB +2024-04-05T03:36:55Z #11 150.8 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB +2024-04-05T03:36:55Z #11 150.8 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB +2024-04-05T03:36:55Z #11 150.8 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB +2024-04-05T03:36:55Z #11 150.8 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB +2024-04-05T03:36:55Z #11 150.8 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB +2024-04-05T03:36:55Z #11 150.8 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB +2024-04-05T03:36:55Z #11 150.8 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB +2024-04-05T03:36:55Z #11 150.8 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB +2024-04-05T03:36:55Z #11 150.8 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB +2024-04-05T03:36:55Z #11 150.8 + fonttools 4.50.0 py310h2372a71_0 conda-forge 2MB +2024-04-05T03:36:55Z #11 150.8 + pyarrow 15.0.2 py310hf9e7431_1_cpu conda-forge 4MB +2024-04-05T03:36:55Z #11 150.8 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB +2024-04-05T03:36:55Z #11 150.8 + gdal 3.8.4 py310he073c5f_5 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB +2024-04-05T03:36:55Z #11 150.8 + numba 0.59.1 py310h7dc5dd1_0 conda-forge 4MB +2024-04-05T03:36:55Z #11 150.8 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB +2024-04-05T03:36:55Z #11 150.8 + h5py 3.10.0 nompi_py310h65828d5_101 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB +2024-04-05T03:36:55Z #11 150.8 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB +2024-04-05T03:36:55Z #11 150.8 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB +2024-04-05T03:36:55Z #11 150.8 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB +2024-04-05T03:36:55Z #11 150.8 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB +2024-04-05T03:36:55Z #11 150.8 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB +2024-04-05T03:36:55Z #11 150.8 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB +2024-04-05T03:36:55Z #11 150.8 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB +2024-04-05T03:36:55Z #11 150.8 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-04-05T03:36:55Z #11 150.8 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-04-05T03:36:55Z #11 150.8 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB +2024-04-05T03:36:55Z #11 150.8 + dask-core 2024.4.0 pyhd8ed1ab_0 conda-forge 881kB +2024-04-05T03:36:55Z #11 150.8 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB +2024-04-05T03:36:55Z #11 150.8 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-04-05T03:36:55Z #11 150.8 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-04-05T03:36:55Z #11 150.8 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-04-05T03:36:55Z #11 150.8 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-04-05T03:36:55Z #11 150.8 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-04-05T03:36:55Z #11 150.8 + pydantic 2.6.4 pyhd8ed1ab_0 conda-forge 272kB +2024-04-05T03:36:55Z #11 150.8 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-04-05T03:36:55Z #11 150.8 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB +2024-04-05T03:36:55Z #11 150.8 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB +2024-04-05T03:36:55Z #11 150.8 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB +2024-04-05T03:36:55Z #11 150.8 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-04-05T03:36:55Z #11 150.8 + properscoring 0.1 py_0 conda-forge 22kB +2024-04-05T03:36:55Z #11 150.8 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-04-05T03:36:55Z #11 150.8 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-04-05T03:36:55Z #11 150.8 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-04-05T03:36:55Z #11 150.8 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB +2024-04-05T03:36:55Z #11 150.8 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB +2024-04-05T03:36:55Z #11 150.8 + dask-expr 1.0.9 pyhd8ed1ab_0 conda-forge 143kB +2024-04-05T03:36:55Z #11 150.8 + distributed 2024.4.0 pyhd8ed1ab_0 conda-forge 797kB +2024-04-05T03:36:55Z #11 150.8 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-04-05T03:36:55Z #11 150.8 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-04-05T03:36:55Z #11 150.8 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-04-05T03:36:55Z #11 150.8 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-04-05T03:36:55Z #11 150.8 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-04-05T03:36:55Z #11 150.8 + dask 2024.4.0 pyhd8ed1ab_0 conda-forge 7kB +2024-04-05T03:36:55Z #11 150.8 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB +2024-04-05T03:36:55Z #11 150.8 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB +2024-04-05T03:36:55Z #11 150.8 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-04-05T03:36:55Z #11 150.8 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-04-05T03:36:55Z #11 150.8 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB +2024-04-05T03:36:55Z #11 150.8 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB +2024-04-05T03:36:55Z #11 150.8 + rioxarray 0.15.3 pyhd8ed1ab_0 conda-forge 51kB +2024-04-05T03:36:55Z #11 150.8 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB +2024-04-05T03:36:55Z #11 150.8 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-04-05T03:36:55Z #11 150.8 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB +2024-04-05T03:36:55Z #11 150.8 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-04-05T03:36:55Z #11 150.8 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 Summary: +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 Install: 299 packages +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 Total download: 439MB +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:36:55Z #11 150.8 +2024-04-05T03:38:30Z #11 245.5 +2024-04-05T03:38:30Z #11 245.5 Looking for: ['xclim', 'ravenpy', 'python=3.10'] +2024-04-05T03:38:30Z #11 245.5 +2024-04-05T03:38:30Z #11 245.5 +2024-04-05T03:38:30Z #11 245.5 Downloading and Extracting Packages: ...working... done +2024-04-05T03:38:34Z #11 245.5 Preparing transaction: ...working... done +2024-04-05T03:38:48Z #11 249.6 Verifying transaction: ...working... done +2024-04-05T03:39:22Z #11 263.1 Executing transaction: ...working... +2024-04-05T03:39:22Z #11 297.5 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-04-05T03:39:22Z #11 297.5 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-04-05T03:39:22Z #11 297.5 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-04-05T03:39:22Z #11 297.5 mpiexec --mca opal_cuda_support 1 ... +2024-04-05T03:39:22Z #11 297.5 +2024-04-05T03:39:22Z #11 297.5 In addition, the UCX support is also built but disabled by default. +2024-04-05T03:39:22Z #11 297.5 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-04-05T03:39:22Z #11 297.5 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-04-05T03:39:22Z #11 297.5 Equivalently, you can set the MCA parameters in the command line: +2024-04-05T03:39:22Z #11 297.5 mpiexec --mca pml ucx --mca osc ucx ... +2024-04-05T03:39:22Z #11 297.5 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-04-05T03:39:22Z #11 297.5 Please consult UCX's documentation for detail. +2024-04-05T03:39:22Z #11 297.5 +2024-04-05T03:39:22Z #11 297.5 +2024-04-05T03:39:22Z #11 297.5 done +2024-04-05T03:39:22Z #11 297.6 +2024-04-05T03:39:22Z #11 297.6 To activate this environment, use +2024-04-05T03:39:22Z #11 297.6 +2024-04-05T03:39:22Z #11 297.6 $ mamba activate birdy +2024-04-05T03:39:22Z #11 297.6 +2024-04-05T03:39:22Z #11 297.6 To deactivate an active environment, use +2024-04-05T03:39:22Z #11 297.6 +2024-04-05T03:39:22Z #11 297.6 $ mamba deactivate +2024-04-05T03:39:22Z #11 297.6 +2024-04-05T03:39:25Z #11 301.0 Channels: +2024-04-05T03:39:25Z #11 301.0 - conda-forge +2024-04-05T03:39:25Z #11 301.0 - cdat +2024-04-05T03:39:25Z #11 301.0 - bokeh +2024-04-05T03:39:25Z #11 301.0 - pyviz/label/dev +2024-04-05T03:39:25Z #11 301.0 - defaults +2024-04-05T03:39:25Z #11 301.0 Platform: linux-64 +2024-04-05T03:40:03Z #11 301.0 Collecting package metadata (repodata.json): ...working... done +2024-04-05T03:41:05Z #11 338.3 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.7 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-05T03:44:14Z #11 589.4 done +2024-04-05T03:46:12Z #11 707.7 +2024-04-05T03:46:12Z #11 707.7 Downloading and Extracting Packages: ...working... done +2024-04-05T03:46:22Z #11 707.7 Preparing transaction: ...working... done +2024-04-05T03:46:46Z #11 717.3 Verifying transaction: ...working... done +2024-04-05T03:47:47Z #11 741.6 Executing transaction: ...working... +2024-04-05T03:47:47Z #11 802.1 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-04-05T03:47:47Z #11 802.1 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-04-05T03:47:47Z #11 802.1 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-04-05T03:47:47Z #11 802.1 mpiexec --mca opal_cuda_support 1 ... +2024-04-05T03:47:47Z #11 802.1 +2024-04-05T03:47:47Z #11 802.1 In addition, the UCX support is also built but disabled by default. +2024-04-05T03:47:47Z #11 802.1 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-04-05T03:47:47Z #11 802.1 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-04-05T03:47:47Z #11 802.1 Equivalently, you can set the MCA parameters in the command line: +2024-04-05T03:47:47Z #11 802.1 mpiexec --mca pml ucx --mca osc ucx ... +2024-04-05T03:47:47Z #11 802.1 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-04-05T03:47:47Z #11 802.1 Please consult UCX's documentation for detail. +2024-04-05T03:47:47Z #11 802.1 +2024-04-05T03:47:47Z #11 802.1 +2024-04-05T03:47:47Z #11 802.1 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-04-05T03:47:47Z #11 802.1 given by the platformdirs library. To remove this warning and +2024-04-05T03:47:47Z #11 802.1 see the appropriate new directories, set the environment variable +2024-04-05T03:47:47Z #11 802.1 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-04-05T03:47:47Z #11 802.1 The use of platformdirs will be the default in `jupyter_core` v6 +2024-04-05T03:47:47Z #11 802.1 from . import paths +2024-04-05T03:47:47Z #11 802.1 Enabling: jupyterlab_git +2024-04-05T03:47:47Z #11 802.1 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-05T03:47:47Z #11 802.1 - Validating... +2024-04-05T03:47:47Z #11 802.1 jupyterlab_git OK +2024-04-05T03:47:47Z #11 802.1 +2024-04-05T03:47:47Z #11 802.1 done +2024-04-05T03:48:32Z #11 809.9 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-04-05T03:48:32Z #11 847.3 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.qil_1kl6.requirements.txt', '--exists-action=b'] +2024-04-05T03:48:32Z #11 847.3 Pip subprocess output: +2024-04-05T03:48:32Z #11 847.3 Collecting xncml (from -r /condaenv.qil_1kl6.requirements.txt (line 1)) +2024-04-05T03:48:32Z #11 847.3 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting hsclient (from -r /condaenv.qil_1kl6.requirements.txt (line 2)) +2024-04-05T03:48:32Z #11 847.3 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting fstd2nc (from -r /condaenv.qil_1kl6.requirements.txt (line 3)) +2024-04-05T03:48:32Z #11 847.3 Downloading fstd2nc-0.20240401.0.tar.gz (166 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.9/166.9 kB 9.0 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Installing build dependencies: started +2024-04-05T03:48:32Z #11 847.3 Installing build dependencies: finished with status 'done' +2024-04-05T03:48:32Z #11 847.3 Getting requirements to build wheel: started +2024-04-05T03:48:32Z #11 847.3 Getting requirements to build wheel: finished with status 'done' +2024-04-05T03:48:32Z #11 847.3 Installing backend dependencies: started +2024-04-05T03:48:32Z #11 847.3 Installing backend dependencies: finished with status 'done' +2024-04-05T03:48:32Z #11 847.3 Preparing metadata (pyproject.toml): started +2024-04-05T03:48:32Z #11 847.3 Preparing metadata (pyproject.toml): finished with status 'done' +2024-04-05T03:48:32Z #11 847.3 Collecting figanos (from -r /condaenv.qil_1kl6.requirements.txt (line 4)) +2024-04-05T03:48:32Z #11 847.3 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting pixiedust (from -r /condaenv.qil_1kl6.requirements.txt (line 5)) +2024-04-05T03:48:32Z #11 847.3 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 11.7 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Preparing metadata (setup.py): started +2024-04-05T03:48:32Z #11 847.3 Preparing metadata (setup.py): finished with status 'done' +2024-04-05T03:48:32Z #11 847.3 Collecting ipython_blocking (from -r /condaenv.qil_1kl6.requirements.txt (line 6)) +2024-04-05T03:48:32Z #11 847.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting jupyternotify (from -r /condaenv.qil_1kl6.requirements.txt (line 7)) +2024-04-05T03:48:32Z #11 847.3 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-04-05T03:48:32Z #11 847.3 Preparing metadata (setup.py): started +2024-04-05T03:48:32Z #11 847.3 Preparing metadata (setup.py): finished with status 'done' +2024-04-05T03:48:32Z #11 847.3 Collecting jupyterlab-logout (from -r /condaenv.qil_1kl6.requirements.txt (line 8)) +2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.qil_1kl6.requirements.txt (line 9)) +2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting pytest-tornasync (from -r /condaenv.qil_1kl6.requirements.txt (line 10)) +2024-04-05T03:48:32Z #11 847.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting xmltodict (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) +2024-04-05T03:48:32Z #11 847.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting xsdata (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) +2024-04-05T03:48:32Z #11 847.3 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (2023.8.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (1.6.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (1.6.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (2024.4.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (5.9.8) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (69.2.0) +2024-04-05T03:48:32Z #11 847.3 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) +2024-04-05T03:48:32Z #11 847.3 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.31.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.0.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.qil_1kl6.requirements.txt (line 3)) (1.24.4) +2024-04-05T03:48:32Z #11 847.3 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.qil_1kl6.requirements.txt (line 3)) +2024-04-05T03:48:32Z #11 847.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.22.0) +2024-04-05T03:48:32Z #11 847.3 Collecting cairosvg (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) +2024-04-05T03:48:32Z #11 847.3 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.14.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.8.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.1.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (4.2.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (6.0.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.13.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.22.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.47.0) +2024-04-05T03:48:32Z #11 847.3 Collecting geojson (from pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) +2024-04-05T03:48:32Z #11 847.3 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting astunparse (from pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) +2024-04-05T03:48:32Z #11 847.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) (3.6) +2024-04-05T03:48:32Z #11 847.3 Collecting colour (from pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) +2024-04-05T03:48:32Z #11 847.3 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (8.22.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (8.1.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.7.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (1.0.0) +2024-04-05T03:48:32Z #11 847.3 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) +2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab-4.1.5-py3-none-any.whl.metadata (15 kB) +2024-04-05T03:48:32Z #11 847.3 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-04-05T03:48:32Z #11 847.3 Collecting jupyterlab-logout (from -r /condaenv.qil_1kl6.requirements.txt (line 8)) +2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.6.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (3.6.7) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (23.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (6.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (5.7.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.25.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.13.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.2.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.8.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.0.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (6.5.6) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (3.1.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.0.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.qil_1kl6.requirements.txt (line 10)) (8.1.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.qil_1kl6.requirements.txt (line 3)) (2024.1) +2024-04-05T03:48:32Z #11 847.3 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) +2024-04-05T03:48:32Z #11 847.3 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.6.4) +2024-04-05T03:48:32Z #11 847.3 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) +2024-04-05T03:48:32Z #11 847.3 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (0.6.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.16.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (4.10.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.qil_1kl6.requirements.txt (line 10)) (2.0.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.qil_1kl6.requirements.txt (line 10)) (1.4.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.qil_1kl6.requirements.txt (line 10)) (1.2.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (24.0.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.3.8) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.9.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (8.1.7) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.0.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.0.6) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.59.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.23) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.4.1.post1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.12.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.14.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (3.0.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (2024.3.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (1.4.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (0.12.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (7.1.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.9.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2024.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) (0.43.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) (1.16.0) +2024-04-05T03:48:32Z #11 847.3 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) +2024-04-05T03:48:32Z #11 847.3 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) +2024-04-05T03:48:32Z #11 847.3 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) +2024-04-05T03:48:32Z #11 847.3 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.7.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (9.4.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.2.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.0.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.3.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.5.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.2.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.12.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (4.50.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.4.5) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.1.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.9.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (5.1.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.19.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.1.6) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (3.0.42) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (2.17.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.6.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (5.14.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (4.9.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.2.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (4.0.10) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (3.0.10) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (5.5.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (6.6.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (7.16.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (6.29.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (7.4.9) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (5.10.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (3.3.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (3.6) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.0.7) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2024.2.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (3.2.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.2.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.34.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2023.8.12) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (23.2.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.1.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.7.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (4.0.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (3.17.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.8.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.1.5) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (1.6.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (24.0.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (4.3.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (23.1.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.10.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.5.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (7.7.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.20.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.8.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.18.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.7.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.9.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.8.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.5.9) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.14.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.9.24) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (4.21.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (4.12.3) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (6.1.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (0.3.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (3.0.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (1.5.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (2.19.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.2.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.2.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (1.0.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.7.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.2.13) +2024-04-05T03:48:32Z #11 847.3 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) +2024-04-05T03:48:32Z #11 847.3 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.3.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.4.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.16.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.5.1) +2024-04-05T03:48:32Z #11 847.3 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) +2024-04-05T03:48:32Z #11 847.3 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (1.8.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.42.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (2.4.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (2.0.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (2.4.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.2.2) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.5.6) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.3.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.22) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2023.12.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.34.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.18.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.0.7) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.1.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.1.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (22.1.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.19.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (21.2.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (2.5) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.5.1) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (20.11.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.4) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.3.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.13) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.3.0) +2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.9.0.20240316) +2024-04-05T03:48:32Z #11 847.3 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 41.5 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 9.0 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 34.2 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 52.2 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 4.0 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading xsdata-24.4-py3-none-any.whl (229 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 22.4 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 18.7 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 6.6 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-04-05T03:48:32Z #11 847.3 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 24.1 MB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 628.2 kB/s eta 0:00:00 +2024-04-05T03:48:32Z #11 847.3 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify +2024-04-05T03:48:32Z #11 847.3 Building wheel for fstd2nc (pyproject.toml): started +2024-04-05T03:48:32Z #11 847.3 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-04-05T03:48:32Z #11 847.3 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.0-py3-none-any.whl size=169076 sha256=50c552132ce4b88f0db3a589b7aaa698f6e65ba0c5f284be6bd995ccd5c0b90d +2024-04-05T03:48:32Z #11 847.3 Stored in directory: /root/.cache/pip/wheels/b7/e5/e2/65589bc6ca947390d3d694cdc195ca6662e0448bb58d970eb6 +2024-04-05T03:48:32Z #11 847.3 Building wheel for pixiedust (setup.py): started +2024-04-05T03:48:32Z #11 847.3 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-04-05T03:48:32Z #11 847.3 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=7c07f4b53014bc56d5c0fa8c3e1a5f8515078f24179c39f4f9cced07b82bc47b +2024-04-05T03:48:32Z #11 847.3 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 +2024-04-05T03:48:32Z #11 847.3 Building wheel for jupyternotify (setup.py): started +2024-04-05T03:48:32Z #11 847.3 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-04-05T03:48:32Z #11 847.3 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=a7f5cd8379f5939b1880e6f972110625ffa68023062906246ccfc25721d8f1fc +2024-04-05T03:48:32Z #11 847.3 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 +2024-04-05T03:48:32Z #11 847.3 Successfully built fstd2nc pixiedust jupyternotify +2024-04-05T03:48:32Z #11 847.3 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-04-05T03:48:32Z #11 847.3 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.0 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 +2024-04-05T03:48:32Z #11 847.3 +2024-04-05T03:48:32Z #11 847.3 done +2024-04-05T03:48:32Z #11 847.3 # +2024-04-05T03:48:32Z #11 847.3 # To activate this environment, use +2024-04-05T03:48:32Z #11 847.3 # +2024-04-05T03:48:32Z #11 847.3 # $ conda activate birdy +2024-04-05T03:48:32Z #11 847.3 # +2024-04-05T03:48:32Z #11 847.3 # To deactivate an active environment, use +2024-04-05T03:48:32Z #11 847.3 # +2024-04-05T03:48:32Z #11 847.3 # $ conda deactivate +2024-04-05T03:48:32Z #11 847.3 +2024-04-05T03:48:53Z #11 868.1 Will remove 783 (1.19 GB) tarball(s). +2024-04-05T03:48:53Z #11 868.1 Will remove 1 index cache(s). +2024-04-05T03:48:53Z #11 868.1 Will remove 148 (1.22 GB) package(s). +2024-04-05T03:48:53Z #11 868.1 There are no tempfile(s) to remove. +2024-04-05T03:48:53Z #11 868.1 There are no logfile(s) to remove. +2024-04-05T03:48:53Z #11 DONE 868.9s +2024-04-05T03:48:53Z +2024-04-05T03:48:53Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2024-04-05T03:48:55Z #12 1.439 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-04-05T03:48:55Z #12 DONE 1.6s +2024-04-05T03:48:55Z +2024-04-05T03:48:55Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-05T03:48:55Z #6 ... +2024-04-05T03:48:55Z +2024-04-05T03:48:55Z #13 [ 8/10] RUN jupyter lab build +2024-04-05T03:48:57Z #13 2.089 [LabBuildApp] JupyterLab 3.6.7 +2024-04-05T03:48:57Z #13 2.090 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2024-04-05T03:48:58Z #13 2.742 [LabBuildApp] Building jupyterlab assets (production, minimized) +2024-04-05T03:48:58Z #13 2.767 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. +2024-04-05T03:48:58Z #13 2.767 +2024-04-05T03:51:13Z #13 2.772 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ +2024-04-05T03:51:13Z #13 DONE 138.3s +2024-04-05T03:51:13Z +2024-04-05T03:51:13Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-05T03:51:13Z #6 ... +2024-04-05T03:51:13Z +2024-04-05T03:51:13Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-04-05T03:51:14Z #14 0.705 Enabling: voila +2024-04-05T03:51:14Z #14 0.705 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-05T03:51:14Z #14 0.708 - Validating... +2024-04-05T03:51:15Z #14 1.412 voila 0.5.6 OK +2024-04-05T03:51:15Z #14 1.789 Enabling: panel.io.jupyter_server_extension +2024-04-05T03:51:15Z #14 1.789 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-05T03:51:15Z #14 1.791 - Validating... +2024-04-05T03:51:17Z #14 3.508 panel.io.jupyter_server_extension OK +2024-04-05T03:51:17Z #14 4.003 - Validating... +2024-04-05T03:51:18Z #14 4.949 dask_labextension 6.2.0 OK +2024-04-05T03:51:18Z #14 4.949 - Validating... +2024-04-05T03:51:18Z #14 4.949 jupyter_server_proxy 4.1.1-0.dev OK +2024-04-05T03:51:18Z #14 4.949 - Validating... +2024-04-05T03:51:18Z #14 5.128 jupyter_resource_usage 0.7.1 OK +2024-04-05T03:51:18Z #14 5.128 - Validating... +2024-04-05T03:51:18Z #14 5.188  X is jupyter_server_ydoc importable? +2024-04-05T03:51:18Z #14 5.188 - Validating... +2024-04-05T03:51:18Z #14 5.264 jupyterlab 3.6.7 OK +2024-04-05T03:51:18Z #14 5.264 - Validating... +2024-04-05T03:51:19Z #14 5.494 jupyterlab_jupytext OK +2024-04-05T03:51:19Z #14 5.494 - Validating... +2024-04-05T03:51:19Z #14 5.500 mamba_gator 5.2.1 OK +2024-04-05T03:51:19Z #14 5.500 - Validating... +2024-04-05T03:51:19Z #14 5.518 nbdime 4.0.1 OK +2024-04-05T03:51:19Z #14 5.518 - Validating... +2024-04-05T03:51:20Z #14 6.590 panel.io.jupyter_server_extension OK +2024-04-05T03:51:20Z #14 6.590 - Validating... +2024-04-05T03:51:20Z #14 6.658 nbresuse OK +2024-04-05T03:51:20Z #14 6.658 - Validating... +2024-04-05T03:51:20Z #14 6.916 voila.server_extension OK +2024-04-05T03:51:20Z #14 6.916 - Validating... +2024-04-05T03:51:20Z #14 6.918 jupyterlab_git OK +2024-04-05T03:51:20Z #14 6.918 - Validating... +2024-04-05T03:51:20Z #14 6.918 voila 0.5.6 OK +2024-04-05T03:51:20Z #14 6.919 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-04-05T03:51:20Z #14 6.919 dask_labextension  enabled  +2024-04-05T03:51:20Z #14 6.919 jupyter_server_proxy  enabled  +2024-04-05T03:51:20Z #14 6.919 jupyter_resource_usage  enabled  +2024-04-05T03:51:20Z #14 6.919 jupyter_server_ydoc  enabled  +2024-04-05T03:51:20Z #14 6.919 jupyterlab  enabled  +2024-04-05T03:51:20Z #14 6.919 jupyterlab_jupytext  enabled  +2024-04-05T03:51:20Z #14 6.919 mamba_gator  enabled  +2024-04-05T03:51:20Z #14 6.919 nbdime  enabled  +2024-04-05T03:51:20Z #14 6.919 panel.io.jupyter_server_extension  enabled  +2024-04-05T03:51:20Z #14 6.919 nbresuse  enabled  +2024-04-05T03:51:20Z #14 6.919 voila.server_extension  enabled  +2024-04-05T03:51:20Z #14 6.919 jupyterlab_git  enabled  +2024-04-05T03:51:20Z #14 6.919 voila  enabled  +2024-04-05T03:51:21Z #14 DONE 7.3s +2024-04-05T03:51:21Z +2024-04-05T03:51:21Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-04-05T03:51:21Z #15 0.367 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-04-05T03:51:21Z #15 0.391 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.111.133, 185.199.108.133, ... +2024-04-05T03:51:21Z #15 0.397 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-04-05T03:51:21Z #15 0.403 HTTP request sent, awaiting response... 200 OK +2024-04-05T03:51:21Z #15 0.485 Length: 9769 (9.5K) [text/plain] +2024-04-05T03:51:21Z #15 0.485 Saving to: ‘/usr/local/bin/start.sh’ +2024-04-05T03:51:21Z #15 0.486 +2024-04-05T03:51:21Z #15 0.486 0K ......... 100% 8.80M=0.001s +2024-04-05T03:51:21Z #15 0.488 +2024-04-05T03:51:21Z #15 0.488 2024-04-05 03:51:21 (8.80 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-04-05T03:51:21Z #15 0.488 +2024-04-05T03:51:21Z #15 0.490 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-04-05T03:51:21Z #15 0.515 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2024-04-05T03:51:21Z #15 0.516 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-04-05T03:51:21Z #15 0.522 HTTP request sent, awaiting response... 200 OK +2024-04-05T03:51:21Z #15 0.602 Length: 359 [text/plain] +2024-04-05T03:51:21Z #15 0.603 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-04-05T03:51:21Z #15 0.603 +2024-04-05T03:51:21Z #15 0.603 0K 100% 5.76M=0s +2024-04-05T03:51:21Z #15 0.604 +2024-04-05T03:51:21Z #15 0.604 2024-04-05 03:51:21 (5.76 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-04-05T03:51:21Z #15 0.604 +2024-04-05T03:51:21Z #15 0.607 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-04-05T03:51:21Z #15 0.631 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2024-04-05T03:51:21Z #15 0.633 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-04-05T03:51:21Z #15 0.639 HTTP request sent, awaiting response... 200 OK +2024-04-05T03:51:21Z #15 0.715 Length: 852 [text/plain] +2024-04-05T03:51:21Z #15 0.715 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-04-05T03:51:21Z #15 0.716 +2024-04-05T03:51:21Z #15 0.716 0K 100% 2.43M=0s +2024-04-05T03:51:21Z #15 0.718 +2024-04-05T03:51:21Z #15 0.718 2024-04-05 03:51:21 (2.43 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-04-05T03:51:21Z #15 0.718 +2024-04-05T03:51:21Z #15 0.722 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-04-05T03:51:21Z #15 0.746 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2024-04-05T03:51:21Z #15 0.750 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-04-05T03:51:21Z #15 0.754 HTTP request sent, awaiting response... 200 OK +2024-04-05T03:51:21Z #15 0.839 Length: 1034 (1.0K) [text/plain] +2024-04-05T03:51:21Z #15 0.839 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-04-05T03:51:21Z #15 0.839 +2024-04-05T03:51:21Z #15 0.839 0K . 100% 41.6M=0s +2024-04-05T03:51:21Z #15 0.841 +2024-04-05T03:51:21Z #15 0.841 2024-04-05 03:51:21 (41.6 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-04-05T03:51:21Z #15 0.841 +2024-04-05T03:51:21Z #15 0.845 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-04-05T03:51:21Z #15 0.870 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2024-04-05T03:51:21Z #15 0.871 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-04-05T03:51:21Z #15 0.876 HTTP request sent, awaiting response... 200 OK +2024-04-05T03:51:21Z #15 0.967 Length: 1836 (1.8K) [text/plain] +2024-04-05T03:51:21Z #15 0.968 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-04-05T03:51:21Z #15 0.968 +2024-04-05T03:51:22Z #15 0.968 0K . 100% 6.00M=0s +2024-04-05T03:51:22Z #15 0.970 +2024-04-05T03:51:22Z #15 0.970 2024-04-05 03:51:21 (6.00 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-04-05T03:51:22Z #15 0.970 +2024-04-05T03:51:22Z #15 1.194 --2024-04-05 03:51:22-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-04-05T03:51:22Z #15 1.217 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.75, 3.162.103.35, 3.162.103.63, ... +2024-04-05T03:51:22Z #15 1.254 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.75|:443... connected. +2024-04-05T03:51:22Z #15 1.261 HTTP request sent, awaiting response... 200 OK +2024-04-05T03:51:22Z #15 1.442 Length: 129825343 (124M) [application/x-tar] +2024-04-05T03:51:22Z #15 1.442 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-04-05T03:51:22Z #15 1.443 +2024-04-05T03:51:22Z #15 1.443 0K .......... .......... .......... .......... .......... 0% 13.5M 9s +2024-04-05T03:51:22Z #15 1.447 50K .......... .......... .......... .......... .......... 0% 11.1M 10s +2024-04-05T03:51:22Z #15 1.451 100K .......... .......... .......... .......... .......... 0% 14.8M 10s +2024-04-05T03:51:22Z #15 1.454 150K .......... .......... .......... .......... .......... 0% 28.8M 8s +2024-04-05T03:51:22Z #15 1.456 200K .......... .......... .......... .......... .......... 0% 62.6M 7s +2024-04-05T03:51:22Z #15 1.456 250K .......... .......... .......... .......... .......... 0% 80.2M 6s +2024-04-05T03:51:22Z #15 1.457 300K .......... .......... .......... .......... .......... 0% 42.8M 6s +2024-04-05T03:51:22Z #15 1.458 350K .......... .......... .......... .......... .......... 0% 54.8M 5s +2024-04-05T03:51:22Z #15 1.461 400K .......... .......... .......... .......... .......... 0% 96.6M 5s +2024-04-05T03:51:22Z #15 1.461 450K .......... .......... .......... .......... .......... 0% 122M 4s +2024-04-05T03:51:22Z #15 1.461 500K .......... .......... .......... .......... .......... 0% 121M 4s +2024-04-05T03:51:22Z #15 1.461 550K .......... .......... .......... .......... .......... 0% 43.9M 4s +2024-04-05T03:51:22Z #15 1.462 600K .......... .......... .......... .......... .......... 0% 28.0M 4s +2024-04-05T03:51:22Z #15 1.463 650K .......... .......... .......... .......... .......... 0% 38.6M 4s +2024-04-05T03:51:22Z #15 1.465 700K .......... .......... .......... .......... .......... 0% 34.4M 4s +2024-04-05T03:51:22Z #15 1.466 750K .......... .......... .......... .......... .......... 0% 50.4M 4s +2024-04-05T03:51:22Z #15 1.467 800K .......... .......... .......... .......... .......... 0% 35.0M 4s +2024-04-05T03:51:22Z #15 1.468 850K .......... .......... .......... .......... .......... 0% 48.6M 4s +2024-04-05T03:51:22Z #15 1.469 900K .......... .......... .......... .......... .......... 0% 44.5M 4s +2024-04-05T03:51:22Z #15 1.470 950K .......... .......... .......... .......... .......... 0% 29.6M 4s +2024-04-05T03:51:22Z #15 1.478 1000K .......... .......... .......... .......... .......... 0% 111M 4s +2024-04-05T03:51:22Z #15 1.478 1050K .......... .......... .......... .......... .......... 0% 184M 3s +2024-04-05T03:51:22Z #15 1.478 1100K .......... .......... .......... .......... .......... 0% 211M 3s +2024-04-05T03:51:22Z #15 1.478 1150K .......... .......... .......... .......... .......... 0% 180M 3s +2024-04-05T03:51:22Z #15 1.478 1200K .......... .......... .......... .......... .......... 0% 141M 3s +2024-04-05T03:51:22Z #15 1.478 1250K .......... .......... .......... .......... .......... 1% 170M 3s +2024-04-05T03:51:22Z #15 1.478 1300K .......... .......... .......... .......... .......... 1% 145M 3s +2024-04-05T03:51:22Z #15 1.478 1350K .......... .......... .......... .......... .......... 1% 191M 3s +2024-04-05T03:51:22Z #15 1.478 1400K .......... .......... .......... .......... .......... 1% 146M 3s +2024-04-05T03:51:22Z #15 1.478 1450K .......... .......... .......... .......... .......... 1% 164M 3s +2024-04-05T03:51:22Z #15 1.478 1500K .......... .......... .......... .......... .......... 1% 154M 3s +2024-04-05T03:51:22Z #15 1.478 1550K .......... .......... .......... .......... .......... 1% 190M 3s +2024-04-05T03:51:22Z #15 1.478 1600K .......... .......... .......... .......... .......... 1% 181M 3s +2024-04-05T03:51:22Z #15 1.478 1650K .......... .......... .......... .......... .......... 1% 199M 2s +2024-04-05T03:51:22Z #15 1.478 1700K .......... .......... .......... .......... .......... 1% 161M 2s +2024-04-05T03:51:22Z #15 1.478 1750K .......... .......... .......... .......... .......... 1% 152M 2s +2024-04-05T03:51:22Z #15 1.478 1800K .......... .......... .......... .......... .......... 1% 198M 2s +2024-04-05T03:51:22Z #15 1.478 1850K .......... .......... .......... .......... .......... 1% 141M 2s +2024-04-05T03:51:22Z #15 1.478 1900K .......... .......... .......... .......... .......... 1% 195M 2s +2024-04-05T03:51:22Z #15 1.478 1950K .......... .......... .......... .......... .......... 1% 35.2M 2s +2024-04-05T03:51:22Z #15 1.479 2000K .......... .......... .......... .......... .......... 1% 16.7M 2s +2024-04-05T03:51:22Z #15 1.482 2050K .......... .......... .......... .......... .......... 1% 29.2M 2s +2024-04-05T03:51:22Z #15 1.484 2100K .......... .......... .......... .......... .......... 1% 109M 2s +2024-04-05T03:51:22Z #15 1.485 2150K .......... .......... .......... .......... .......... 1% 41.4M 2s +2024-04-05T03:51:22Z #15 1.485 2200K .......... .......... .......... .......... .......... 1% 96.3M 2s +2024-04-05T03:51:22Z #15 1.486 2250K .......... .......... .......... .......... .......... 1% 129M 2s +2024-04-05T03:51:22Z #15 1.486 2300K .......... .......... .......... .......... .......... 1% 41.8M 2s +2024-04-05T03:51:22Z #15 1.487 2350K .......... .......... .......... .......... .......... 1% 37.7M 2s +2024-04-05T03:51:22Z #15 1.489 2400K .......... .......... .......... .......... .......... 1% 119M 2s +2024-04-05T03:51:22Z #15 1.490 2450K .......... .......... .......... .......... .......... 1% 96.1M 2s +2024-04-05T03:51:22Z #15 1.490 2500K .......... .......... .......... .......... .......... 2% 74.1M 2s +2024-04-05T03:51:22Z #15 1.490 2550K .......... .......... .......... .......... .......... 2% 36.4M 2s +2024-04-05T03:51:22Z #15 1.494 2600K .......... .......... .......... .......... .......... 2% 115M 2s +2024-04-05T03:51:22Z #15 1.494 2650K .......... .......... .......... .......... .......... 2% 107M 2s +2024-04-05T03:51:22Z #15 1.494 2700K .......... .......... .......... .......... .......... 2% 121M 2s +2024-04-05T03:51:22Z #15 1.494 2750K .......... .......... .......... .......... .......... 2% 119M 2s +2024-04-05T03:51:22Z #15 1.494 2800K .......... .......... .......... .......... .......... 2% 118M 2s +2024-04-05T03:51:22Z #15 1.494 2850K .......... .......... .......... .......... .......... 2% 46.6M 2s +2024-04-05T03:51:22Z #15 1.498 2900K .......... .......... .......... .......... .......... 2% 126M 2s +2024-04-05T03:51:22Z #15 1.498 2950K .......... .......... .......... .......... .......... 2% 127M 2s +2024-04-05T03:51:22Z #15 1.498 3000K .......... .......... .......... .......... .......... 2% 139M 2s +2024-04-05T03:51:22Z #15 1.498 3050K .......... .......... .......... .......... .......... 2% 122M 2s +2024-04-05T03:51:22Z #15 1.498 3100K .......... .......... .......... .......... .......... 2% 131M 2s +2024-04-05T03:51:22Z #15 1.498 3150K .......... .......... .......... .......... .......... 2% 101M 2s +2024-04-05T03:51:22Z #15 1.498 3200K .......... .......... .......... .......... .......... 2% 131M 2s +2024-04-05T03:51:22Z #15 1.498 3250K .......... .......... .......... .......... .......... 2% 63.8M 2s +2024-04-05T03:51:22Z #15 1.498 3300K .......... .......... .......... .......... .......... 2% 48.8M 2s +2024-04-05T03:51:22Z #15 1.502 3350K .......... .......... .......... .......... .......... 2% 118M 2s +2024-04-05T03:51:22Z #15 1.502 3400K .......... .......... .......... .......... .......... 2% 141M 2s +2024-04-05T03:51:22Z #15 1.502 3450K .......... .......... .......... .......... .......... 2% 124M 2s +2024-04-05T03:51:22Z #15 1.502 3500K .......... .......... .......... .......... .......... 2% 121M 2s +2024-04-05T03:51:22Z #15 1.502 3550K .......... .......... .......... .......... .......... 2% 111M 2s +2024-04-05T03:51:22Z #15 1.502 3600K .......... .......... .......... .......... .......... 2% 118M 2s +2024-04-05T03:51:22Z #15 1.502 3650K .......... .......... .......... .......... .......... 2% 54.6M 2s +2024-04-05T03:51:22Z #15 1.504 3700K .......... .......... .......... .......... .......... 2% 97.0M 2s +2024-04-05T03:51:22Z #15 1.504 3750K .......... .......... .......... .......... .......... 2% 131M 2s +2024-04-05T03:51:22Z #15 1.504 3800K .......... .......... .......... .......... .......... 3% 149M 2s +2024-04-05T03:51:22Z #15 1.504 3850K .......... .......... .......... .......... .......... 3% 130M 2s +2024-04-05T03:51:22Z #15 1.504 3900K .......... .......... .......... .......... .......... 3% 55.0M 2s +2024-04-05T03:51:22Z #15 1.505 3950K .......... .......... .......... .......... .......... 3% 8.91M 2s +2024-04-05T03:51:22Z #15 1.511 4000K .......... .......... .......... .......... .......... 3% 30.9M 2s +2024-04-05T03:51:22Z #15 1.512 4050K .......... .......... .......... .......... .......... 3% 46.6M 2s +2024-04-05T03:51:22Z #15 1.518 4100K .......... .......... .......... .......... .......... 3% 60.5M 2s +2024-04-05T03:51:22Z #15 1.518 4150K .......... .......... .......... .......... .......... 3% 134M 2s +2024-04-05T03:51:22Z #15 1.518 4200K .......... .......... .......... .......... .......... 3% 165M 2s +2024-04-05T03:51:22Z #15 1.518 4250K .......... .......... .......... .......... .......... 3% 173M 2s +2024-04-05T03:51:22Z #15 1.518 4300K .......... .......... .......... .......... .......... 3% 167M 2s +2024-04-05T03:51:22Z #15 1.518 4350K .......... .......... .......... .......... .......... 3% 149M 2s +2024-04-05T03:51:22Z #15 1.518 4400K .......... .......... .......... .......... .......... 3% 175M 2s +2024-04-05T03:51:22Z #15 1.518 4450K .......... .......... .......... .......... .......... 3% 174M 2s +2024-04-05T03:51:22Z #15 1.518 4500K .......... .......... .......... .......... .......... 3% 174M 2s +2024-04-05T03:51:22Z #15 1.518 4550K .......... .......... .......... .......... .......... 3% 165M 2s +2024-04-05T03:51:22Z #15 1.518 4600K .......... .......... .......... .......... .......... 3% 160M 2s +2024-04-05T03:51:22Z #15 1.518 4650K .......... .......... .......... .......... .......... 3% 179M 2s +2024-04-05T03:51:22Z #15 1.518 4700K .......... .......... .......... .......... .......... 3% 171M 2s +2024-04-05T03:51:22Z #15 1.518 4750K .......... .......... .......... .......... .......... 3% 7.12M 2s +2024-04-05T03:51:22Z #15 1.530 4800K .......... .......... .......... .......... .......... 3% 117M 2s +2024-04-05T03:51:22Z #15 1.530 4850K .......... .......... .......... .......... .......... 3% 124M 2s +2024-04-05T03:51:22Z #15 1.530 4900K .......... .......... .......... .......... .......... 3% 134M 2s +2024-04-05T03:51:22Z #15 1.530 4950K .......... .......... .......... .......... .......... 3% 96.6M 2s +2024-04-05T03:51:22Z #15 1.530 5000K .......... .......... .......... .......... .......... 3% 129M 2s +2024-04-05T03:51:22Z #15 1.530 5050K .......... .......... .......... .......... .......... 4% 120M 2s +2024-04-05T03:51:22Z #15 1.530 5100K .......... .......... .......... .......... .......... 4% 130M 2s +2024-04-05T03:51:22Z #15 1.530 5150K .......... .......... .......... .......... .......... 4% 101M 2s +2024-04-05T03:51:22Z #15 1.530 5200K .......... .......... .......... .......... .......... 4% 118M 2s +2024-04-05T03:51:22Z #15 1.530 5250K .......... .......... .......... .......... .......... 4% 138M 2s +2024-04-05T03:51:22Z #15 1.530 5300K .......... .......... .......... .......... .......... 4% 115M 2s +2024-04-05T03:51:22Z #15 1.530 5350K .......... .......... .......... .......... .......... 4% 106M 2s +2024-04-05T03:51:22Z #15 1.530 5400K .......... .......... .......... .......... .......... 4% 129M 2s +2024-04-05T03:51:22Z #15 1.530 5450K .......... .......... .......... .......... .......... 4% 44.5M 2s +2024-04-05T03:51:22Z #15 1.531 5500K .......... .......... .......... .......... .......... 4% 51.3M 2s +2024-04-05T03:51:22Z #15 1.532 5550K .......... .......... .......... .......... .......... 4% 55.7M 2s +2024-04-05T03:51:22Z #15 1.533 5600K .......... .......... .......... .......... .......... 4% 68.5M 2s +2024-04-05T03:51:22Z #15 1.533 5650K .......... .......... .......... .......... .......... 4% 38.8M 2s +2024-04-05T03:51:22Z #15 1.535 5700K .......... .......... .......... .......... .......... 4% 32.0M 2s +2024-04-05T03:51:22Z #15 1.536 5750K .......... .......... .......... .......... .......... 4% 60.8M 2s +2024-04-05T03:51:22Z #15 1.537 5800K .......... .......... .......... .......... .......... 4% 36.9M 2s +2024-04-05T03:51:22Z #15 1.538 5850K .......... .......... .......... .......... .......... 4% 37.1M 2s +2024-04-05T03:51:22Z #15 1.540 5900K .......... .......... .......... .......... .......... 4% 50.4M 2s +2024-04-05T03:51:22Z #15 1.541 5950K .......... .......... .......... .......... .......... 4% 44.7M 2s +2024-04-05T03:51:22Z #15 1.542 6000K .......... .......... .......... .......... .......... 4% 46.9M 2s +2024-04-05T03:51:22Z #15 1.543 6050K .......... .......... .......... .......... .......... 4% 43.7M 2s +2024-04-05T03:51:22Z #15 1.544 6100K .......... .......... .......... .......... .......... 4% 40.2M 2s +2024-04-05T03:51:22Z #15 1.546 6150K .......... .......... .......... .......... .......... 4% 36.1M 2s +2024-04-05T03:51:22Z #15 1.546 6200K .......... .......... .......... .......... .......... 4% 41.0M 2s +2024-04-05T03:51:22Z #15 1.548 6250K .......... .......... .......... .......... .......... 4% 41.1M 2s +2024-04-05T03:51:22Z #15 1.549 6300K .......... .......... .......... .......... .......... 5% 32.6M 2s +2024-04-05T03:51:22Z #15 1.550 6350K .......... .......... .......... .......... .......... 5% 39.2M 2s +2024-04-05T03:51:22Z #15 1.551 6400K .......... .......... .......... .......... .......... 5% 45.7M 2s +2024-04-05T03:51:22Z #15 1.553 6450K .......... .......... .......... .......... .......... 5% 47.6M 2s +2024-04-05T03:51:22Z #15 1.554 6500K .......... .......... .......... .......... .......... 5% 40.0M 2s +2024-04-05T03:51:22Z #15 1.555 6550K .......... .......... .......... .......... .......... 5% 47.3M 2s +2024-04-05T03:51:22Z #15 1.556 6600K .......... .......... .......... .......... .......... 5% 40.3M 2s +2024-04-05T03:51:22Z #15 1.557 6650K .......... .......... .......... .......... .......... 5% 19.6M 2s +2024-04-05T03:51:22Z #15 1.560 6700K .......... .......... .......... .......... .......... 5% 59.1M 2s +2024-04-05T03:51:22Z #15 1.560 6750K .......... .......... .......... .......... .......... 5% 73.0M 2s +2024-04-05T03:51:22Z #15 1.561 6800K .......... .......... .......... .......... .......... 5% 41.3M 2s +2024-04-05T03:51:22Z #15 1.562 6850K .......... .......... .......... .......... .......... 5% 62.2M 2s +2024-04-05T03:51:22Z #15 1.563 6900K .......... .......... .......... .......... .......... 5% 57.7M 2s +2024-04-05T03:51:22Z #15 1.564 6950K .......... .......... .......... .......... .......... 5% 67.3M 2s +2024-04-05T03:51:22Z #15 1.565 7000K .......... .......... .......... .......... .......... 5% 68.6M 2s +2024-04-05T03:51:22Z #15 1.565 7050K .......... .......... .......... .......... .......... 5% 58.7M 2s +2024-04-05T03:51:22Z #15 1.566 7100K .......... .......... .......... .......... .......... 5% 57.5M 2s +2024-04-05T03:51:22Z #15 1.567 7150K .......... .......... .......... .......... .......... 5% 104M 2s +2024-04-05T03:51:22Z #15 1.567 7200K .......... .......... .......... .......... .......... 5% 77.2M 2s +2024-04-05T03:51:22Z #15 1.568 7250K .......... .......... .......... .......... .......... 5% 65.9M 2s +2024-04-05T03:51:22Z #15 1.570 7300K .......... .......... .......... .......... .......... 5% 125M 2s +2024-04-05T03:51:22Z #15 1.570 7350K .......... .......... .......... .......... .......... 5% 190M 2s +2024-04-05T03:51:22Z #15 1.570 7400K .......... .......... .......... .......... .......... 5% 126M 2s +2024-04-05T03:51:22Z #15 1.570 7450K .......... .......... .......... .......... .......... 5% 146M 2s +2024-04-05T03:51:22Z #15 1.570 7500K .......... .......... .......... .......... .......... 5% 122M 2s +2024-04-05T03:51:22Z #15 1.570 7550K .......... .......... .......... .......... .......... 5% 138M 2s +2024-04-05T03:51:22Z #15 1.571 7600K .......... .......... .......... .......... .......... 6% 128M 2s +2024-04-05T03:51:22Z #15 1.571 7650K .......... .......... .......... .......... .......... 6% 112M 2s +2024-04-05T03:51:22Z #15 1.572 7700K .......... .......... .......... .......... .......... 6% 97.8M 2s +2024-04-05T03:51:22Z #15 1.573 7750K .......... .......... .......... .......... .......... 6% 148M 2s +2024-04-05T03:51:22Z #15 1.573 7800K .......... .......... .......... .......... .......... 6% 137M 2s +2024-04-05T03:51:22Z #15 1.573 7850K .......... .......... .......... .......... .......... 6% 136M 2s +2024-04-05T03:51:22Z #15 1.573 7900K .......... .......... .......... .......... .......... 6% 110M 2s +2024-04-05T03:51:22Z #15 1.574 7950K .......... .......... .......... .......... .......... 6% 120M 2s +2024-04-05T03:51:22Z #15 1.575 8000K .......... .......... .......... .......... .......... 6% 129M 2s +2024-04-05T03:51:22Z #15 1.575 8050K .......... .......... .......... .......... .......... 6% 130M 2s +2024-04-05T03:51:22Z #15 1.575 8100K .......... .......... .......... .......... .......... 6% 96.2M 2s +2024-04-05T03:51:22Z #15 1.576 8150K .......... .......... .......... .......... .......... 6% 134M 2s +2024-04-05T03:51:22Z #15 1.576 8200K .......... .......... .......... .......... .......... 6% 115M 2s +2024-04-05T03:51:22Z #15 1.577 8250K .......... .......... .......... .......... .......... 6% 117M 2s +2024-04-05T03:51:22Z #15 1.577 8300K .......... .......... .......... .......... .......... 6% 102M 2s +2024-04-05T03:51:22Z #15 1.577 8350K .......... .......... .......... .......... .......... 6% 129M 2s +2024-04-05T03:51:22Z #15 1.577 8400K .......... .......... .......... .......... .......... 6% 113M 2s +2024-04-05T03:51:22Z #15 1.578 8450K .......... .......... .......... .......... .......... 6% 120M 2s +2024-04-05T03:51:22Z #15 1.579 8500K .......... .......... .......... .......... .......... 6% 97.2M 2s +2024-04-05T03:51:22Z #15 1.580 8550K .......... .......... .......... .......... .......... 6% 127M 2s +2024-04-05T03:51:22Z #15 1.580 8600K .......... .......... .......... .......... .......... 6% 142M 2s +2024-04-05T03:51:22Z #15 1.580 8650K .......... .......... .......... .......... .......... 6% 125M 2s +2024-04-05T03:51:22Z #15 1.580 8700K .......... .......... .......... .......... .......... 6% 120M 2s +2024-04-05T03:51:22Z #15 1.581 8750K .......... .......... .......... .......... .......... 6% 140M 2s +2024-04-05T03:51:22Z #15 1.581 8800K .......... .......... .......... .......... .......... 6% 137M 2s +2024-04-05T03:51:22Z #15 1.581 8850K .......... .......... .......... .......... .......... 7% 113M 2s +2024-04-05T03:51:22Z #15 1.582 8900K .......... .......... .......... .......... .......... 7% 109M 2s +2024-04-05T03:51:22Z #15 1.582 8950K .......... .......... .......... .......... .......... 7% 129M 2s +2024-04-05T03:51:22Z #15 1.582 9000K .......... .......... .......... .......... .......... 7% 122M 2s +2024-04-05T03:51:22Z #15 1.584 9050K .......... .......... .......... .......... .......... 7% 113M 2s +2024-04-05T03:51:22Z #15 1.584 9100K .......... .......... .......... .......... .......... 7% 133M 2s +2024-04-05T03:51:22Z #15 1.584 9150K .......... .......... .......... .......... .......... 7% 139M 2s +2024-04-05T03:51:22Z #15 1.584 9200K .......... .......... .......... .......... .......... 7% 118M 2s +2024-04-05T03:51:22Z #15 1.584 9250K .......... .......... .......... .......... .......... 7% 152M 2s +2024-04-05T03:51:22Z #15 1.585 9300K .......... .......... .......... .......... .......... 7% 95.5M 2s +2024-04-05T03:51:22Z #15 1.586 9350K .......... .......... .......... .......... .......... 7% 126M 2s +2024-04-05T03:51:22Z #15 1.586 9400K .......... .......... .......... .......... .......... 7% 120M 2s +2024-04-05T03:51:22Z #15 1.586 9450K .......... .......... .......... .......... .......... 7% 133M 2s +2024-04-05T03:51:22Z #15 1.586 9500K .......... .......... .......... .......... .......... 7% 124M 2s +2024-04-05T03:51:22Z #15 1.587 9550K .......... .......... .......... .......... .......... 7% 127M 2s +2024-04-05T03:51:22Z #15 1.587 9600K .......... .......... .......... .......... .......... 7% 138M 2s +2024-04-05T03:51:22Z #15 1.587 9650K .......... .......... .......... .......... .......... 7% 133M 2s +2024-04-05T03:51:22Z #15 1.588 9700K .......... .......... .......... .......... .......... 7% 120M 2s +2024-04-05T03:51:22Z #15 1.588 9750K .......... .......... .......... .......... .......... 7% 127M 2s +2024-04-05T03:51:22Z #15 1.590 9800K .......... .......... .......... .......... .......... 7% 126M 2s +2024-04-05T03:51:22Z #15 1.590 9850K .......... .......... .......... .......... .......... 7% 130M 2s +2024-04-05T03:51:22Z #15 1.590 9900K .......... .......... .......... .......... .......... 7% 132M 2s +2024-04-05T03:51:22Z #15 1.590 9950K .......... .......... .......... .......... .......... 7% 134M 2s +2024-04-05T03:51:22Z #15 1.590 10000K .......... .......... .......... .......... .......... 7% 135M 2s +2024-04-05T03:51:22Z #15 1.591 10050K .......... .......... .......... .......... .......... 7% 133M 2s +2024-04-05T03:51:22Z #15 1.591 10100K .......... .......... .......... .......... .......... 8% 110M 2s +2024-04-05T03:51:22Z #15 1.591 10150K .......... .......... .......... .......... .......... 8% 142M 2s +2024-04-05T03:51:22Z #15 1.592 10200K .......... .......... .......... .......... .......... 8% 148M 2s +2024-04-05T03:51:22Z #15 1.592 10250K .......... .......... .......... .......... .......... 8% 158M 2s +2024-04-05T03:51:22Z #15 1.593 10300K .......... .......... .......... .......... .......... 8% 113M 2s +2024-04-05T03:51:22Z #15 1.594 10350K .......... .......... .......... .......... .......... 8% 135M 2s +2024-04-05T03:51:22Z #15 1.594 10400K .......... .......... .......... .......... .......... 8% 147M 2s +2024-04-05T03:51:22Z #15 1.594 10450K .......... .......... .......... .......... .......... 8% 147M 2s +2024-04-05T03:51:22Z #15 1.595 10500K .......... .......... .......... .......... .......... 8% 107M 2s +2024-04-05T03:51:22Z #15 1.595 10550K .......... .......... .......... .......... .......... 8% 134M 2s +2024-04-05T03:51:22Z #15 1.595 10600K .......... .......... .......... .......... .......... 8% 138M 2s +2024-04-05T03:51:22Z #15 1.596 10650K .......... .......... .......... .......... .......... 8% 141M 2s +2024-04-05T03:51:22Z #15 1.597 10700K .......... .......... .......... .......... .......... 8% 143M 2s +2024-04-05T03:51:22Z #15 1.597 10750K .......... .......... .......... .......... .......... 8% 126M 2s +2024-04-05T03:51:22Z #15 1.597 10800K .......... .......... .......... .......... .......... 8% 143M 2s +2024-04-05T03:51:22Z #15 1.597 10850K .......... .......... .......... .......... .......... 8% 134M 2s +2024-04-05T03:51:22Z #15 1.597 10900K .......... .......... .......... .......... .......... 8% 109M 2s +2024-04-05T03:51:22Z #15 1.597 10950K .......... .......... .......... .......... .......... 8% 122M 2s +2024-04-05T03:51:22Z #15 1.598 11000K .......... .......... .......... .......... .......... 8% 121M 2s +2024-04-05T03:51:22Z #15 1.598 11050K .......... .......... .......... .......... .......... 8% 141M 2s +2024-04-05T03:51:22Z #15 1.599 11100K .......... .......... .......... .......... .......... 8% 114M 2s +2024-04-05T03:51:22Z #15 1.599 11150K .......... .......... .......... .......... .......... 8% 121M 2s +2024-04-05T03:51:22Z #15 1.599 11200K .......... .......... .......... .......... .......... 8% 137M 2s +2024-04-05T03:51:22Z #15 1.601 11250K .......... .......... .......... .......... .......... 8% 134M 2s +2024-04-05T03:51:22Z #15 1.601 11300K .......... .......... .......... .......... .......... 8% 114M 2s +2024-04-05T03:51:22Z #15 1.601 11350K .......... .......... .......... .......... .......... 8% 116M 2s +2024-04-05T03:51:22Z #15 1.601 11400K .......... .......... .......... .......... .......... 9% 131M 2s +2024-04-05T03:51:22Z #15 1.602 11450K .......... .......... .......... .......... .......... 9% 148M 2s +2024-04-05T03:51:22Z #15 1.602 11500K .......... .......... .......... .......... .......... 9% 142M 2s +2024-04-05T03:51:22Z #15 1.602 11550K .......... .......... .......... .......... .......... 9% 103M 2s +2024-04-05T03:51:22Z #15 1.603 11600K .......... .......... .......... .......... .......... 9% 134M 2s +2024-04-05T03:51:22Z #15 1.603 11650K .......... .......... .......... .......... .......... 9% 136M 2s +2024-04-05T03:51:22Z #15 1.603 11700K .......... .......... .......... .......... .......... 9% 133M 2s +2024-04-05T03:51:22Z #15 1.603 11750K .......... .......... .......... .......... .......... 9% 111M 2s +2024-04-05T03:51:22Z #15 1.604 11800K .......... .......... .......... .......... .......... 9% 121M 2s +2024-04-05T03:51:22Z #15 1.604 11850K .......... .......... .......... .......... .......... 9% 120M 2s +2024-04-05T03:51:22Z #15 1.605 11900K .......... .......... .......... .......... .......... 9% 147M 2s +2024-04-05T03:51:22Z #15 1.605 11950K .......... .......... .......... .......... .......... 9% 112M 2s +2024-04-05T03:51:22Z #15 1.605 12000K .......... .......... .......... .......... .......... 9% 139M 2s +2024-04-05T03:51:22Z #15 1.607 12050K .......... .......... .......... .......... .......... 9% 5.74M 2s +2024-04-05T03:51:22Z #15 1.615 12100K .......... .......... .......... .......... .......... 9% 125M 2s +2024-04-05T03:51:22Z #15 1.615 12150K .......... .......... .......... .......... .......... 9% 105M 2s +2024-04-05T03:51:22Z #15 1.616 12200K .......... .......... .......... .......... .......... 9% 127M 2s +2024-04-05T03:51:22Z #15 1.616 12250K .......... .......... .......... .......... .......... 9% 138M 2s +2024-04-05T03:51:22Z #15 1.616 12300K .......... .......... .......... .......... .......... 9% 116M 2s +2024-04-05T03:51:22Z #15 1.616 12350K .......... .......... .......... .......... .......... 9% 127M 2s +2024-04-05T03:51:22Z #15 1.617 12400K .......... .......... .......... .......... .......... 9% 141M 2s +2024-04-05T03:51:22Z #15 1.617 12450K .......... .......... .......... .......... .......... 9% 130M 2s +2024-04-05T03:51:22Z #15 1.618 12500K .......... .......... .......... .......... .......... 9% 122M 2s +2024-04-05T03:51:22Z #15 1.618 12550K .......... .......... .......... .......... .......... 9% 131M 2s +2024-04-05T03:51:22Z #15 1.618 12600K .......... .......... .......... .......... .......... 9% 127M 2s +2024-04-05T03:51:22Z #15 1.618 12650K .......... .......... .......... .......... .......... 10% 143M 2s +2024-04-05T03:51:22Z #15 1.620 12700K .......... .......... .......... .......... .......... 10% 120M 2s +2024-04-05T03:51:22Z #15 1.620 12750K .......... .......... .......... .......... .......... 10% 149M 2s +2024-04-05T03:51:22Z #15 1.621 12800K .......... .......... .......... .......... .......... 10% 140M 2s +2024-04-05T03:51:22Z #15 1.622 12850K .......... .......... .......... .......... .......... 10% 144M 2s +2024-04-05T03:51:22Z #15 1.622 12900K .......... .......... .......... .......... .......... 10% 109M 2s +2024-04-05T03:51:22Z #15 1.622 12950K .......... .......... .......... .......... .......... 10% 136M 2s +2024-04-05T03:51:22Z #15 1.622 13000K .......... .......... .......... .......... .......... 10% 128M 2s +2024-04-05T03:51:22Z #15 1.622 13050K .......... .......... .......... .......... .......... 10% 145M 2s +2024-04-05T03:51:22Z #15 1.623 13100K .......... .......... .......... .......... .......... 10% 115M 2s +2024-04-05T03:51:22Z #15 1.623 13150K .......... .......... .......... .......... .......... 10% 136M 2s +2024-04-05T03:51:22Z #15 1.623 13200K .......... .......... .......... .......... .......... 10% 145M 2s +2024-04-05T03:51:22Z #15 1.624 13250K .......... .......... .......... .......... .......... 10% 129M 2s +2024-04-05T03:51:22Z #15 1.624 13300K .......... .......... .......... .......... .......... 10% 113M 2s +2024-04-05T03:51:22Z #15 1.624 13350K .......... .......... .......... .......... .......... 10% 155M 2s +2024-04-05T03:51:22Z #15 1.626 13400K .......... .......... .......... .......... .......... 10% 140M 2s +2024-04-05T03:51:22Z #15 1.626 13450K .......... .......... .......... .......... .......... 10% 120M 2s +2024-04-05T03:51:22Z #15 1.626 13500K .......... .......... .......... .......... .......... 10% 145M 2s +2024-04-05T03:51:22Z #15 1.627 13550K .......... .......... .......... .......... .......... 10% 121M 2s +2024-04-05T03:51:22Z #15 1.627 13600K .......... .......... .......... .......... .......... 10% 122M 2s +2024-04-05T03:51:22Z #15 1.627 13650K .......... .......... .......... .......... .......... 10% 137M 2s +2024-04-05T03:51:22Z #15 1.628 13700K .......... .......... .......... .......... .......... 10% 103M 2s +2024-04-05T03:51:22Z #15 1.628 13750K .......... .......... .......... .......... .......... 10% 140M 2s +2024-04-05T03:51:22Z #15 1.628 13800K .......... .......... .......... .......... .......... 10% 135M 2s +2024-04-05T03:51:22Z #15 1.628 13850K .......... .......... .......... .......... .......... 10% 152M 2s +2024-04-05T03:51:22Z #15 1.628 13900K .......... .......... .......... .......... .......... 11% 117M 2s +2024-04-05T03:51:22Z #15 1.628 13950K .......... .......... .......... .......... .......... 11% 150M 1s +2024-04-05T03:51:22Z #15 1.629 14000K .......... .......... .......... .......... .......... 11% 131M 1s +2024-04-05T03:51:22Z #15 1.629 14050K .......... .......... .......... .......... .......... 11% 162M 1s +2024-04-05T03:51:22Z #15 1.629 14100K .......... .......... .......... .......... .......... 11% 117M 1s +2024-04-05T03:51:22Z #15 1.630 14150K .......... .......... .......... .......... .......... 11% 10.6M 2s +2024-04-05T03:51:22Z #15 1.635 14200K .......... .......... .......... .......... .......... 11% 141M 2s +2024-04-05T03:51:22Z #15 1.635 14250K .......... .......... .......... .......... .......... 11% 134M 2s +2024-04-05T03:51:22Z #15 1.636 14300K .......... .......... .......... .......... .......... 11% 117M 2s +2024-04-05T03:51:22Z #15 1.636 14350K .......... .......... .......... .......... .......... 11% 123M 2s +2024-04-05T03:51:22Z #15 1.636 14400K .......... .......... .......... .......... .......... 11% 158M 2s +2024-04-05T03:51:22Z #15 1.636 14450K .......... .......... .......... .......... .......... 11% 136M 1s +2024-04-05T03:51:22Z #15 1.638 14500K .......... .......... .......... .......... .......... 11% 114M 1s +2024-04-05T03:51:22Z #15 1.638 14550K .......... .......... .......... .......... .......... 11% 112M 1s +2024-04-05T03:51:22Z #15 1.638 14600K .......... .......... .......... .......... .......... 11% 145M 1s +2024-04-05T03:51:22Z #15 1.642 14650K .......... .......... .......... .......... .......... 11% 112M 1s +2024-04-05T03:51:22Z #15 1.642 14700K .......... .......... .......... .......... .......... 11% 129M 1s +2024-04-05T03:51:22Z #15 1.642 14750K .......... .......... .......... .......... .......... 11% 112M 1s +2024-04-05T03:51:22Z #15 1.642 14800K .......... .......... .......... .......... .......... 11% 136M 1s +2024-04-05T03:51:22Z #15 1.642 14850K .......... .......... .......... .......... .......... 11% 121M 1s +2024-04-05T03:51:22Z #15 1.642 14900K .......... .......... .......... .......... .......... 11% 134M 1s +2024-04-05T03:51:22Z #15 1.642 14950K .......... .......... .......... .......... .......... 11% 113M 1s +2024-04-05T03:51:22Z #15 1.642 15000K .......... .......... .......... .......... .......... 11% 148M 1s +2024-04-05T03:51:22Z #15 1.642 15050K .......... .......... .......... .......... .......... 11% 118M 1s +2024-04-05T03:51:22Z #15 1.642 15100K .......... .......... .......... .......... .......... 11% 134M 1s +2024-04-05T03:51:22Z #15 1.642 15150K .......... .......... .......... .......... .......... 11% 10.8M 1s +2024-04-05T03:51:22Z #15 1.646 15200K .......... .......... .......... .......... .......... 12% 130M 1s +2024-04-05T03:51:22Z #15 1.647 15250K .......... .......... .......... .......... .......... 12% 166M 1s +2024-04-05T03:51:22Z #15 1.647 15300K .......... .......... .......... .......... .......... 12% 128M 1s +2024-04-05T03:51:22Z #15 1.648 15350K .......... .......... .......... .......... .......... 12% 142M 1s +2024-04-05T03:51:22Z #15 1.648 15400K .......... .......... .......... .......... .......... 12% 145M 1s +2024-04-05T03:51:22Z #15 1.648 15450K .......... .......... .......... .......... .......... 12% 142M 1s +2024-04-05T03:51:22Z #15 1.648 15500K .......... .......... .......... .......... .......... 12% 127M 1s +2024-04-05T03:51:22Z #15 1.649 15550K .......... .......... .......... .......... .......... 12% 117M 1s +2024-04-05T03:51:22Z #15 1.649 15600K .......... .......... .......... .......... .......... 12% 156M 1s +2024-04-05T03:51:22Z #15 1.649 15650K .......... .......... .......... .......... .......... 12% 142M 1s +2024-04-05T03:51:22Z #15 1.649 15700K .......... .......... .......... .......... .......... 12% 135M 1s +2024-04-05T03:51:22Z #15 1.650 15750K .......... .......... .......... .......... .......... 12% 133M 1s +2024-04-05T03:51:22Z #15 1.651 15800K .......... .......... .......... .......... .......... 12% 143M 1s +2024-04-05T03:51:22Z #15 1.651 15850K .......... .......... .......... .......... .......... 12% 123M 1s +2024-04-05T03:51:22Z #15 1.651 15900K .......... .......... .......... .......... .......... 12% 155M 1s +2024-04-05T03:51:22Z #15 1.651 15950K .......... .......... .......... .......... .......... 12% 112M 1s +2024-04-05T03:51:22Z #15 1.652 16000K .......... .......... .......... .......... .......... 12% 151M 1s +2024-04-05T03:51:22Z #15 1.652 16050K .......... .......... .......... .......... .......... 12% 130M 1s +2024-04-05T03:51:22Z #15 1.652 16100K .......... .......... .......... .......... .......... 12% 138M 1s +2024-04-05T03:51:22Z #15 1.653 16150K .......... .......... .......... .......... .......... 12% 138M 1s +2024-04-05T03:51:22Z #15 1.653 16200K .......... .......... .......... .......... .......... 12% 156M 1s +2024-04-05T03:51:22Z #15 1.654 16250K .......... .......... .......... .......... .......... 12% 132M 1s +2024-04-05T03:51:22Z #15 1.654 16300K .......... .......... .......... .......... .......... 12% 159M 1s +2024-04-05T03:51:22Z #15 1.654 16350K .......... .......... .......... .......... .......... 12% 114M 1s +2024-04-05T03:51:22Z #15 1.656 16400K .......... .......... .......... .......... .......... 12% 129M 1s +2024-04-05T03:51:22Z #15 1.657 16450K .......... .......... .......... .......... .......... 13% 155M 1s +2024-04-05T03:51:22Z #15 1.657 16500K .......... .......... .......... .......... .......... 13% 165M 1s +2024-04-05T03:51:22Z #15 1.657 16550K .......... .......... .......... .......... .......... 13% 126M 1s +2024-04-05T03:51:22Z #15 1.657 16600K .......... .......... .......... .......... .......... 13% 140M 1s +2024-04-05T03:51:22Z #15 1.657 16650K .......... .......... .......... .......... .......... 13% 143M 1s +2024-04-05T03:51:22Z #15 1.662 16700K .......... .......... .......... .......... .......... 13% 8.72M 1s +2024-04-05T03:51:22Z #15 1.662 16750K .......... .......... .......... .......... .......... 13% 115M 1s +2024-04-05T03:51:22Z #15 1.663 16800K .......... .......... .......... .......... .......... 13% 149M 1s +2024-04-05T03:51:22Z #15 1.663 16850K .......... .......... .......... .......... .......... 13% 136M 1s +2024-04-05T03:51:22Z #15 1.663 16900K .......... .......... .......... .......... .......... 13% 149M 1s +2024-04-05T03:51:22Z #15 1.664 16950K .......... .......... .......... .......... .......... 13% 128M 1s +2024-04-05T03:51:22Z #15 1.664 17000K .......... .......... .......... .......... .......... 13% 164M 1s +2024-04-05T03:51:22Z #15 1.664 17050K .......... .......... .......... .......... .......... 13% 120M 1s +2024-04-05T03:51:22Z #15 1.665 17100K .......... .......... .......... .......... .......... 13% 137M 1s +2024-04-05T03:51:22Z #15 1.665 17150K .......... .......... .......... .......... .......... 13% 116M 1s +2024-04-05T03:51:22Z #15 1.666 17200K .......... .......... .......... .......... .......... 13% 142M 1s +2024-04-05T03:51:22Z #15 1.666 17250K .......... .......... .......... .......... .......... 13% 153M 1s +2024-04-05T03:51:22Z #15 1.666 17300K .......... .......... .......... .......... .......... 13% 110M 1s +2024-04-05T03:51:22Z #15 1.667 17350K .......... .......... .......... .......... .......... 13% 135M 1s +2024-04-05T03:51:22Z #15 1.668 17400K .......... .......... .......... .......... .......... 13% 165M 1s +2024-04-05T03:51:22Z #15 1.668 17450K .......... .......... .......... .......... .......... 13% 119M 1s +2024-04-05T03:51:22Z #15 1.668 17500K .......... .......... .......... .......... .......... 13% 140M 1s +2024-04-05T03:51:22Z #15 1.669 17550K .......... .......... .......... .......... .......... 13% 147M 1s +2024-04-05T03:51:22Z #15 1.670 17600K .......... .......... .......... .......... .......... 13% 166M 1s +2024-04-05T03:51:22Z #15 1.670 17650K .......... .......... .......... .......... .......... 13% 108M 1s +2024-04-05T03:51:22Z #15 1.670 17700K .......... .......... .......... .......... .......... 14% 150M 1s +2024-04-05T03:51:22Z #15 1.670 17750K .......... .......... .......... .......... .......... 14% 124M 1s +2024-04-05T03:51:22Z #15 1.670 17800K .......... .......... .......... .......... .......... 14% 132M 1s +2024-04-05T03:51:22Z #15 1.670 17850K .......... .......... .......... .......... .......... 14% 120M 1s +2024-04-05T03:51:22Z #15 1.671 17900K .......... .......... .......... .......... .......... 14% 140M 1s +2024-04-05T03:51:22Z #15 1.671 17950K .......... .......... .......... .......... .......... 14% 126M 1s +2024-04-05T03:51:22Z #15 1.672 18000K .......... .......... .......... .......... .......... 14% 155M 1s +2024-04-05T03:51:22Z #15 1.672 18050K .......... .......... .......... .......... .......... 14% 128M 1s +2024-04-05T03:51:22Z #15 1.672 18100K .......... .......... .......... .......... .......... 14% 148M 1s +2024-04-05T03:51:22Z #15 1.673 18150K .......... .......... .......... .......... .......... 14% 140M 1s +2024-04-05T03:51:22Z #15 1.673 18200K .......... .......... .......... .......... .......... 14% 152M 1s +2024-04-05T03:51:22Z #15 1.673 18250K .......... .......... .......... .......... .......... 14% 127M 1s +2024-04-05T03:51:22Z #15 1.674 18300K .......... .......... .......... .......... .......... 14% 142M 1s +2024-04-05T03:51:22Z #15 1.678 18350K .......... .......... .......... .......... .......... 14% 10.8M 1s +2024-04-05T03:51:22Z #15 1.678 18400K .......... .......... .......... .......... .......... 14% 142M 1s +2024-04-05T03:51:22Z #15 1.679 18450K .......... .......... .......... .......... .......... 14% 113M 1s +2024-04-05T03:51:22Z #15 1.680 18500K .......... .......... .......... .......... .......... 14% 143M 1s +2024-04-05T03:51:22Z #15 1.680 18550K .......... .......... .......... .......... .......... 14% 136M 1s +2024-04-05T03:51:22Z #15 1.680 18600K .......... .......... .......... .......... .......... 14% 133M 1s +2024-04-05T03:51:22Z #15 1.680 18650K .......... .......... .......... .......... .......... 14% 130M 1s +2024-04-05T03:51:22Z #15 1.680 18700K .......... .......... .......... .......... .......... 14% 158M 1s +2024-04-05T03:51:22Z #15 1.681 18750K .......... .......... .......... .......... .......... 14% 139M 1s +2024-04-05T03:51:22Z #15 1.681 18800K .......... .......... .......... .......... .......... 14% 148M 1s +2024-04-05T03:51:22Z #15 1.682 18850K .......... .......... .......... .......... .......... 14% 112M 1s +2024-04-05T03:51:22Z #15 1.682 18900K .......... .......... .......... .......... .......... 14% 132M 1s +2024-04-05T03:51:22Z #15 1.683 18950K .......... .......... .......... .......... .......... 14% 132M 1s +2024-04-05T03:51:22Z #15 1.683 19000K .......... .......... .......... .......... .......... 15% 145M 1s +2024-04-05T03:51:22Z #15 1.683 19050K .......... .......... .......... .......... .......... 15% 116M 1s +2024-04-05T03:51:22Z #15 1.684 19100K .......... .......... .......... .......... .......... 15% 135M 1s +2024-04-05T03:51:22Z #15 1.684 19150K .......... .......... .......... .......... .......... 15% 151M 1s +2024-04-05T03:51:22Z #15 1.685 19200K .......... .......... .......... .......... .......... 15% 129M 1s +2024-04-05T03:51:22Z #15 1.685 19250K .......... .......... .......... .......... .......... 15% 115M 1s +2024-04-05T03:51:22Z #15 1.685 19300K .......... .......... .......... .......... .......... 15% 147M 1s +2024-04-05T03:51:22Z #15 1.686 19350K .......... .......... .......... .......... .......... 15% 147M 1s +2024-04-05T03:51:22Z #15 1.686 19400K .......... .......... .......... .......... .......... 15% 10.8M 1s +2024-04-05T03:51:22Z #15 1.690 19450K .......... .......... .......... .......... .......... 15% 119M 1s +2024-04-05T03:51:22Z #15 1.690 19500K .......... .......... .......... .......... .......... 15% 131M 1s +2024-04-05T03:51:22Z #15 1.691 19550K .......... .......... .......... .......... .......... 15% 126M 1s +2024-04-05T03:51:22Z #15 1.693 19600K .......... .......... .......... .......... .......... 15% 173M 1s +2024-04-05T03:51:22Z #15 1.693 19650K .......... .......... .......... .......... .......... 15% 124M 1s +2024-04-05T03:51:22Z #15 1.693 19700K .......... .......... .......... .......... .......... 15% 141M 1s +2024-04-05T03:51:22Z #15 1.693 19750K .......... .......... .......... .......... .......... 15% 136M 1s +2024-04-05T03:51:22Z #15 1.693 19800K .......... .......... .......... .......... .......... 15% 147M 1s +2024-04-05T03:51:22Z #15 1.693 19850K .......... .......... .......... .......... .......... 15% 123M 1s +2024-04-05T03:51:22Z #15 1.693 19900K .......... .......... .......... .......... .......... 15% 138M 1s +2024-04-05T03:51:22Z #15 1.694 19950K .......... .......... .......... .......... .......... 15% 10.9M 1s +2024-04-05T03:51:22Z #15 1.699 20000K .......... .......... .......... .......... .......... 15% 119M 1s +2024-04-05T03:51:22Z #15 1.699 20050K .......... .......... .......... .......... .......... 15% 90.9M 1s +2024-04-05T03:51:22Z #15 1.700 20100K .......... .......... .......... .......... .......... 15% 143M 1s +2024-04-05T03:51:22Z #15 1.700 20150K .......... .......... .......... .......... .......... 15% 128M 1s +2024-04-05T03:51:22Z #15 1.700 20200K .......... .......... .......... .......... .......... 15% 132M 1s +2024-04-05T03:51:22Z #15 1.700 20250K .......... .......... .......... .......... .......... 16% 114M 1s +2024-04-05T03:51:22Z #15 1.701 20300K .......... .......... .......... .......... .......... 16% 139M 1s +2024-04-05T03:51:22Z #15 1.701 20350K .......... .......... .......... .......... .......... 16% 130M 1s +2024-04-05T03:51:22Z #15 1.702 20400K .......... .......... .......... .......... .......... 16% 136M 1s +2024-04-05T03:51:22Z #15 1.702 20450K .......... .......... .......... .......... .......... 16% 103M 1s +2024-04-05T03:51:22Z #15 1.703 20500K .......... .......... .......... .......... .......... 16% 137M 1s +2024-04-05T03:51:22Z #15 1.703 20550K .......... .......... .......... .......... .......... 16% 142M 1s +2024-04-05T03:51:22Z #15 1.704 20600K .......... .......... .......... .......... .......... 16% 143M 1s +2024-04-05T03:51:22Z #15 1.704 20650K .......... .......... .......... .......... .......... 16% 129M 1s +2024-04-05T03:51:22Z #15 1.704 20700K .......... .......... .......... .......... .......... 16% 128M 1s +2024-04-05T03:51:22Z #15 1.704 20750K .......... .......... .......... .......... .......... 16% 146M 1s +2024-04-05T03:51:22Z #15 1.704 20800K .......... .......... .......... .......... .......... 16% 127M 1s +2024-04-05T03:51:22Z #15 1.705 20850K .......... .......... .......... .......... .......... 16% 131M 1s +2024-04-05T03:51:22Z #15 1.705 20900K .......... .......... .......... .......... .......... 16% 133M 1s +2024-04-05T03:51:22Z #15 1.706 20950K .......... .......... .......... .......... .......... 16% 11.0M 1s +2024-04-05T03:51:22Z #15 1.710 21000K .......... .......... .......... .......... .......... 16% 117M 1s +2024-04-05T03:51:22Z #15 1.710 21050K .......... .......... .......... .......... .......... 16% 111M 1s +2024-04-05T03:51:22Z #15 1.711 21100K .......... .......... .......... .......... .......... 16% 140M 1s +2024-04-05T03:51:22Z #15 1.713 21150K .......... .......... .......... .......... .......... 16% 145M 1s +2024-04-05T03:51:22Z #15 1.713 21200K .......... .......... .......... .......... .......... 16% 150M 1s +2024-04-05T03:51:22Z #15 1.713 21250K .......... .......... .......... .......... .......... 16% 112M 1s +2024-04-05T03:51:22Z #15 1.713 21300K .......... .......... .......... .......... .......... 16% 135M 1s +2024-04-05T03:51:22Z #15 1.713 21350K .......... .......... .......... .......... .......... 16% 134M 1s +2024-04-05T03:51:22Z #15 1.713 21400K .......... .......... .......... .......... .......... 16% 120M 1s +2024-04-05T03:51:22Z #15 1.714 21450K .......... .......... .......... .......... .......... 16% 149M 1s +2024-04-05T03:51:22Z #15 1.714 21500K .......... .......... .......... .......... .......... 16% 99.1M 1s +2024-04-05T03:51:22Z #15 1.715 21550K .......... .......... .......... .......... .......... 17% 124M 1s +2024-04-05T03:51:22Z #15 1.715 21600K .......... .......... .......... .......... .......... 17% 127M 1s +2024-04-05T03:51:22Z #15 1.715 21650K .......... .......... .......... .......... .......... 17% 141M 1s +2024-04-05T03:51:22Z #15 1.716 21700K .......... .......... .......... .......... .......... 17% 127M 1s +2024-04-05T03:51:22Z #15 1.716 21750K .......... .......... .......... .......... .......... 17% 120M 1s +2024-04-05T03:51:22Z #15 1.716 21800K .......... .......... .......... .......... .......... 17% 126M 1s +2024-04-05T03:51:22Z #15 1.717 21850K .......... .......... .......... .......... .......... 17% 138M 1s +2024-04-05T03:51:22Z #15 1.718 21900K .......... .......... .......... .......... .......... 17% 101M 1s +2024-04-05T03:51:22Z #15 1.719 21950K .......... .......... .......... .......... .......... 17% 139M 1s +2024-04-05T03:51:22Z #15 1.719 22000K .......... .......... .......... .......... .......... 17% 10.9M 1s +2024-04-05T03:51:22Z #15 1.722 22050K .......... .......... .......... .......... .......... 17% 117M 1s +2024-04-05T03:51:22Z #15 1.724 22100K .......... .......... .......... .......... .......... 17% 112M 1s +2024-04-05T03:51:22Z #15 1.724 22150K .......... .......... .......... .......... .......... 17% 132M 1s +2024-04-05T03:51:22Z #15 1.724 22200K .......... .......... .......... .......... .......... 17% 120M 1s +2024-04-05T03:51:22Z #15 1.724 22250K .......... .......... .......... .......... .......... 17% 109M 1s +2024-04-05T03:51:22Z #15 1.725 22300K .......... .......... .......... .......... .......... 17% 149M 1s +2024-04-05T03:51:22Z #15 1.725 22350K .......... .......... .......... .......... .......... 17% 156M 1s +2024-04-05T03:51:22Z #15 1.725 22400K .......... .......... .......... .......... .......... 17% 127M 1s +2024-04-05T03:51:22Z #15 1.725 22450K .......... .......... .......... .......... .......... 17% 116M 1s +2024-04-05T03:51:22Z #15 1.726 22500K .......... .......... .......... .......... .......... 17% 98.3M 1s +2024-04-05T03:51:22Z #15 1.726 22550K .......... .......... .......... .......... .......... 17% 120M 1s +2024-04-05T03:51:22Z #15 1.728 22600K .......... .......... .......... .......... .......... 17% 135M 1s +2024-04-05T03:51:22Z #15 1.728 22650K .......... .......... .......... .......... .......... 17% 155M 1s +2024-04-05T03:51:22Z #15 1.728 22700K .......... .......... .......... .......... .......... 17% 111M 1s +2024-04-05T03:51:22Z #15 1.728 22750K .......... .......... .......... .......... .......... 17% 129M 1s +2024-04-05T03:51:22Z #15 1.729 22800K .......... .......... .......... .......... .......... 18% 115M 1s +2024-04-05T03:51:22Z #15 1.729 22850K .......... .......... .......... .......... .......... 18% 112M 1s +2024-04-05T03:51:22Z #15 1.730 22900K .......... .......... .......... .......... .......... 18% 120M 1s +2024-04-05T03:51:22Z #15 1.730 22950K .......... .......... .......... .......... .......... 18% 130M 1s +2024-04-05T03:51:22Z #15 1.730 23000K .......... .......... .......... .......... .......... 18% 94.0M 1s +2024-04-05T03:51:22Z #15 1.730 23050K .......... .......... .......... .......... .......... 18% 156M 1s +2024-04-05T03:51:22Z #15 1.731 23100K .......... .......... .......... .......... .......... 18% 114M 1s +2024-04-05T03:51:22Z #15 1.732 23150K .......... .......... .......... .......... .......... 18% 138M 1s +2024-04-05T03:51:22Z #15 1.732 23200K .......... .......... .......... .......... .......... 18% 124M 1s +2024-04-05T03:51:22Z #15 1.732 23250K .......... .......... .......... .......... .......... 18% 134M 1s +2024-04-05T03:51:22Z #15 1.733 23300K .......... .......... .......... .......... .......... 18% 135M 1s +2024-04-05T03:51:22Z #15 1.733 23350K .......... .......... .......... .......... .......... 18% 156M 1s +2024-04-05T03:51:22Z #15 1.733 23400K .......... .......... .......... .......... .......... 18% 136M 1s +2024-04-05T03:51:22Z #15 1.735 23450K .......... .......... .......... .......... .......... 18% 134M 1s +2024-04-05T03:51:22Z #15 1.735 23500K .......... .......... .......... .......... .......... 18% 11.1M 1s +2024-04-05T03:51:22Z #15 1.739 23550K .......... .......... .......... .......... .......... 18% 103M 1s +2024-04-05T03:51:22Z #15 1.739 23600K .......... .......... .......... .......... .......... 18% 140M 1s +2024-04-05T03:51:22Z #15 1.739 23650K .......... .......... .......... .......... .......... 18% 129M 1s +2024-04-05T03:51:22Z #15 1.739 23700K .......... .......... .......... .......... .......... 18% 143M 1s +2024-04-05T03:51:22Z #15 1.741 23750K .......... .......... .......... .......... .......... 18% 119M 1s +2024-04-05T03:51:22Z #15 1.741 23800K .......... .......... .......... .......... .......... 18% 151M 1s +2024-04-05T03:51:22Z #15 1.741 23850K .......... .......... .......... .......... .......... 18% 144M 1s +2024-04-05T03:51:22Z #15 1.743 23900K .......... .......... .......... .......... .......... 18% 137M 1s +2024-04-05T03:51:22Z #15 1.743 23950K .......... .......... .......... .......... .......... 18% 128M 1s +2024-04-05T03:51:22Z #15 1.743 24000K .......... .......... .......... .......... .......... 18% 149M 1s +2024-04-05T03:51:22Z #15 1.745 24050K .......... .......... .......... .......... .......... 19% 11.1M 1s +2024-04-05T03:51:22Z #15 1.746 24100K .......... .......... .......... .......... .......... 19% 139M 1s +2024-04-05T03:51:22Z #15 1.747 24150K .......... .......... .......... .......... .......... 19% 129M 1s +2024-04-05T03:51:22Z #15 1.747 24200K .......... .......... .......... .......... .......... 19% 139M 1s +2024-04-05T03:51:22Z #15 1.748 24250K .......... .......... .......... .......... .......... 19% 150M 1s +2024-04-05T03:51:22Z #15 1.748 24300K .......... .......... .......... .......... .......... 19% 155M 1s +2024-04-05T03:51:22Z #15 1.748 24350K .......... .......... .......... .......... .......... 19% 105M 1s +2024-04-05T03:51:22Z #15 1.748 24400K .......... .......... .......... .......... .......... 19% 153M 1s +2024-04-05T03:51:22Z #15 1.749 24450K .......... .......... .......... .......... .......... 19% 146M 1s +2024-04-05T03:51:22Z #15 1.749 24500K .......... .......... .......... .......... .......... 19% 152M 1s +2024-04-05T03:51:22Z #15 1.749 24550K .......... .......... .......... .......... .......... 19% 128M 1s +2024-04-05T03:51:22Z #15 1.750 24600K .......... .......... .......... .......... .......... 19% 128M 1s +2024-04-05T03:51:22Z #15 1.750 24650K .......... .......... .......... .......... .......... 19% 159M 1s +2024-04-05T03:51:22Z #15 1.750 24700K .......... .......... .......... .......... .......... 19% 149M 1s +2024-04-05T03:51:22Z #15 1.751 24750K .......... .......... .......... .......... .......... 19% 113M 1s +2024-04-05T03:51:22Z #15 1.752 24800K .......... .......... .......... .......... .......... 19% 151M 1s +2024-04-05T03:51:22Z #15 1.752 24850K .......... .......... .......... .......... .......... 19% 146M 1s +2024-04-05T03:51:22Z #15 1.752 24900K .......... .......... .......... .......... .......... 19% 158M 1s +2024-04-05T03:51:22Z #15 1.752 24950K .......... .......... .......... .......... .......... 19% 126M 1s +2024-04-05T03:51:22Z #15 1.753 25000K .......... .......... .......... .......... .......... 19% 144M 1s +2024-04-05T03:51:22Z #15 1.753 25050K .......... .......... .......... .......... .......... 19% 159M 1s +2024-04-05T03:51:22Z #15 1.753 25100K .......... .......... .......... .......... .......... 19% 158M 1s +2024-04-05T03:51:22Z #15 1.753 25150K .......... .......... .......... .......... .......... 19% 115M 1s +2024-04-05T03:51:22Z #15 1.754 25200K .......... .......... .......... .......... .......... 19% 133M 1s +2024-04-05T03:51:22Z #15 1.754 25250K .......... .......... .......... .......... .......... 19% 154M 1s +2024-04-05T03:51:22Z #15 1.754 25300K .......... .......... .......... .......... .......... 19% 140M 1s +2024-04-05T03:51:22Z #15 1.756 25350K .......... .......... .......... .......... .......... 20% 122M 1s +2024-04-05T03:51:22Z #15 1.756 25400K .......... .......... .......... .......... .......... 20% 142M 1s +2024-04-05T03:51:22Z #15 1.756 25450K .......... .......... .......... .......... .......... 20% 146M 1s +2024-04-05T03:51:22Z #15 1.757 25500K .......... .......... .......... .......... .......... 20% 145M 1s +2024-04-05T03:51:22Z #15 1.757 25550K .......... .......... .......... .......... .......... 20% 128M 1s +2024-04-05T03:51:22Z #15 1.757 25600K .......... .......... .......... .......... .......... 20% 140M 1s +2024-04-05T03:51:22Z #15 1.757 25650K .......... .......... .......... .......... .......... 20% 154M 1s +2024-04-05T03:51:22Z #15 1.758 25700K .......... .......... .......... .......... .......... 20% 148M 1s +2024-04-05T03:51:22Z #15 1.758 25750K .......... .......... .......... .......... .......... 20% 10.9M 1s +2024-04-05T03:51:22Z #15 1.762 25800K .......... .......... .......... .......... .......... 20% 129M 1s +2024-04-05T03:51:22Z #15 1.764 25850K .......... .......... .......... .......... .......... 20% 150M 1s +2024-04-05T03:51:22Z #15 1.764 25900K .......... .......... .......... .......... .......... 20% 111M 1s +2024-04-05T03:51:22Z #15 1.764 25950K .......... .......... .......... .......... .......... 20% 119M 1s +2024-04-05T03:51:22Z #15 1.765 26000K .......... .......... .......... .......... .......... 20% 143M 1s +2024-04-05T03:51:22Z #15 1.765 26050K .......... .......... .......... .......... .......... 20% 129M 1s +2024-04-05T03:51:22Z #15 1.765 26100K .......... .......... .......... .......... .......... 20% 126M 1s +2024-04-05T03:51:22Z #15 1.778 26150K .......... .......... .......... .......... .......... 20% 127M 1s +2024-04-05T03:51:22Z #15 1.778 26200K .......... .......... .......... .......... .......... 20% 138M 1s +2024-04-05T03:51:22Z #15 1.778 26250K .......... .......... .......... .......... .......... 20% 106M 1s +2024-04-05T03:51:22Z #15 1.778 26300K .......... .......... .......... .......... .......... 20% 135M 1s +2024-04-05T03:51:22Z #15 1.778 26350K .......... .......... .......... .......... .......... 20% 125M 1s +2024-04-05T03:51:22Z #15 1.778 26400K .......... .......... .......... .......... .......... 20% 125M 1s +2024-04-05T03:51:22Z #15 1.778 26450K .......... .......... .......... .......... .......... 20% 107M 1s +2024-04-05T03:51:22Z #15 1.778 26500K .......... .......... .......... .......... .......... 20% 116M 1s +2024-04-05T03:51:22Z #15 1.778 26550K .......... .......... .......... .......... .......... 20% 126M 1s +2024-04-05T03:51:22Z #15 1.778 26600K .......... .......... .......... .......... .......... 21% 127M 1s +2024-04-05T03:51:22Z #15 1.778 26650K .......... .......... .......... .......... .......... 21% 103M 1s +2024-04-05T03:51:22Z #15 1.778 26700K .......... .......... .......... .......... .......... 21% 114M 1s +2024-04-05T03:51:22Z #15 1.778 26750K .......... .......... .......... .......... .......... 21% 124M 1s +2024-04-05T03:51:22Z #15 1.778 26800K .......... .......... .......... .......... .......... 21% 164M 1s +2024-04-05T03:51:22Z #15 1.778 26850K .......... .......... .......... .......... .......... 21% 135M 1s +2024-04-05T03:51:22Z #15 1.778 26900K .......... .......... .......... .......... .......... 21% 160M 1s +2024-04-05T03:51:22Z #15 1.778 26950K .......... .......... .......... .......... .......... 21% 151M 1s +2024-04-05T03:51:22Z #15 1.778 27000K .......... .......... .......... .......... .......... 21% 157M 1s +2024-04-05T03:51:22Z #15 1.778 27050K .......... .......... .......... .......... .......... 21% 120M 1s +2024-04-05T03:51:22Z #15 1.778 27100K .......... .......... .......... .......... .......... 21% 159M 1s +2024-04-05T03:51:22Z #15 1.778 27150K .......... .......... .......... .......... .......... 21% 154M 1s +2024-04-05T03:51:22Z #15 1.778 27200K .......... .......... .......... .......... .......... 21% 169M 1s +2024-04-05T03:51:22Z #15 1.778 27250K .......... .......... .......... .......... .......... 21% 134M 1s +2024-04-05T03:51:22Z #15 1.778 27300K .......... .......... .......... .......... .......... 21% 150M 1s +2024-04-05T03:51:22Z #15 1.778 27350K .......... .......... .......... .......... .......... 21% 126M 1s +2024-04-05T03:51:22Z #15 1.778 27400K .......... .......... .......... .......... .......... 21% 164M 1s +2024-04-05T03:51:22Z #15 1.778 27450K .......... .......... .......... .......... .......... 21% 141M 1s +2024-04-05T03:51:22Z #15 1.778 27500K .......... .......... .......... .......... .......... 21% 123M 1s +2024-04-05T03:51:22Z #15 1.778 27550K .......... .......... .......... .......... .......... 21% 154M 1s +2024-04-05T03:51:22Z #15 1.778 27600K .......... .......... .......... .......... .......... 21% 167M 1s +2024-04-05T03:51:22Z #15 1.778 27650K .......... .......... .......... .......... .......... 21% 145M 1s +2024-04-05T03:51:22Z #15 1.778 27700K .......... .......... .......... .......... .......... 21% 137M 1s +2024-04-05T03:51:22Z #15 1.778 27750K .......... .......... .......... .......... .......... 21% 158M 1s +2024-04-05T03:51:22Z #15 1.778 27800K .......... .......... .......... .......... .......... 21% 153M 1s +2024-04-05T03:51:22Z #15 1.778 27850K .......... .......... .......... .......... .......... 22% 159M 1s +2024-04-05T03:51:22Z #15 1.778 27900K .......... .......... .......... .......... .......... 22% 130M 1s +2024-04-05T03:51:22Z #15 1.778 27950K .......... .......... .......... .......... .......... 22% 124M 1s +2024-04-05T03:51:22Z #15 1.782 28000K .......... .......... .......... .......... .......... 22% 142M 1s +2024-04-05T03:51:22Z #15 1.782 28050K .......... .......... .......... .......... .......... 22% 161M 1s +2024-04-05T03:51:22Z #15 1.782 28100K .......... .......... .......... .......... .......... 22% 135M 1s +2024-04-05T03:51:22Z #15 1.782 28150K .......... .......... .......... .......... .......... 22% 127M 1s +2024-04-05T03:51:22Z #15 1.782 28200K .......... .......... .......... .......... .......... 22% 135M 1s +2024-04-05T03:51:22Z #15 1.782 28250K .......... .......... .......... .......... .......... 22% 135M 1s +2024-04-05T03:51:22Z #15 1.782 28300K .......... .......... .......... .......... .......... 22% 93.7M 1s +2024-04-05T03:51:22Z #15 1.782 28350K .......... .......... .......... .......... .......... 22% 134M 1s +2024-04-05T03:51:22Z #15 1.782 28400K .......... .......... .......... .......... .......... 22% 122M 1s +2024-04-05T03:51:22Z #15 1.782 28450K .......... .......... .......... .......... .......... 22% 48.1M 1s +2024-04-05T03:51:23Z #15 1.782 28500K .......... .......... .......... .......... .......... 22% 38.1M 1s +2024-04-05T03:51:23Z #15 1.786 28550K .......... .......... .......... .......... .......... 22% 114M 1s +2024-04-05T03:51:23Z #15 1.786 28600K .......... .......... .......... .......... .......... 22% 116M 1s +2024-04-05T03:51:23Z #15 1.786 28650K .......... .......... .......... .......... .......... 22% 129M 1s +2024-04-05T03:51:23Z #15 1.786 28700K .......... .......... .......... .......... .......... 22% 109M 1s +2024-04-05T03:51:23Z #15 1.786 28750K .......... .......... .......... .......... .......... 22% 39.4M 1s +2024-04-05T03:51:23Z #15 1.787 28800K .......... .......... .......... .......... .......... 22% 25.7M 1s +2024-04-05T03:51:23Z #15 1.790 28850K .......... .......... .......... .......... .......... 22% 106M 1s +2024-04-05T03:51:23Z #15 1.790 28900K .......... .......... .......... .......... .......... 22% 133M 1s +2024-04-05T03:51:23Z #15 1.790 28950K .......... .......... .......... .......... .......... 22% 24.1M 1s +2024-04-05T03:51:23Z #15 1.794 29000K .......... .......... .......... .......... .......... 22% 93.2M 1s +2024-04-05T03:51:23Z #15 1.794 29050K .......... .......... .......... .......... .......... 22% 104M 1s +2024-04-05T03:51:23Z #15 1.794 29100K .......... .......... .......... .......... .......... 22% 143M 1s +2024-04-05T03:51:23Z #15 1.794 29150K .......... .......... .......... .......... .......... 23% 117M 1s +2024-04-05T03:51:23Z #15 1.794 29200K .......... .......... .......... .......... .......... 23% 147M 1s +2024-04-05T03:51:23Z #15 1.794 29250K .......... .......... .......... .......... .......... 23% 101M 1s +2024-04-05T03:51:23Z #15 1.794 29300K .......... .......... .......... .......... .......... 23% 141M 1s +2024-04-05T03:51:23Z #15 1.794 29350K .......... .......... .......... .......... .......... 23% 97.1M 1s +2024-04-05T03:51:23Z #15 1.795 29400K .......... .......... .......... .......... .......... 23% 114M 1s +2024-04-05T03:51:23Z #15 1.795 29450K .......... .......... .......... .......... .......... 23% 30.8M 1s +2024-04-05T03:51:23Z #15 1.797 29500K .......... .......... .......... .......... .......... 23% 114M 1s +2024-04-05T03:51:23Z #15 1.797 29550K .......... .......... .......... .......... .......... 23% 40.8M 1s +2024-04-05T03:51:23Z #15 1.798 29600K .......... .......... .......... .......... .......... 23% 36.7M 1s +2024-04-05T03:51:23Z #15 1.800 29650K .......... .......... .......... .......... .......... 23% 31.3M 1s +2024-04-05T03:51:23Z #15 1.806 29700K .......... .......... .......... .......... .......... 23% 117M 1s +2024-04-05T03:51:23Z #15 1.806 29750K .......... .......... .......... .......... .......... 23% 124M 1s +2024-04-05T03:51:23Z #15 1.806 29800K .......... .......... .......... .......... .......... 23% 142M 1s +2024-04-05T03:51:23Z #15 1.806 29850K .......... .......... .......... .......... .......... 23% 85.8M 1s +2024-04-05T03:51:23Z #15 1.806 29900K .......... .......... .......... .......... .......... 23% 121M 1s +2024-04-05T03:51:23Z #15 1.806 29950K .......... .......... .......... .......... .......... 23% 145M 1s +2024-04-05T03:51:23Z #15 1.806 30000K .......... .......... .......... .......... .......... 23% 127M 1s +2024-04-05T03:51:23Z #15 1.806 30050K .......... .......... .......... .......... .......... 23% 118M 1s +2024-04-05T03:51:23Z #15 1.806 30100K .......... .......... .......... .......... .......... 23% 114M 1s +2024-04-05T03:51:23Z #15 1.806 30150K .......... .......... .......... .......... .......... 23% 124M 1s +2024-04-05T03:51:23Z #15 1.806 30200K .......... .......... .......... .......... .......... 23% 99.6M 1s +2024-04-05T03:51:23Z #15 1.807 30250K .......... .......... .......... .......... .......... 23% 97.4M 1s +2024-04-05T03:51:23Z #15 1.807 30300K .......... .......... .......... .......... .......... 23% 21.9M 1s +2024-04-05T03:51:23Z #15 1.809 30350K .......... .......... .......... .......... .......... 23% 116M 1s +2024-04-05T03:51:23Z #15 1.809 30400K .......... .......... .......... .......... .......... 24% 121M 1s +2024-04-05T03:51:23Z #15 1.809 30450K .......... .......... .......... .......... .......... 24% 14.2M 1s +2024-04-05T03:51:23Z #15 1.818 30500K .......... .......... .......... .......... .......... 24% 115M 1s +2024-04-05T03:51:23Z #15 1.818 30550K .......... .......... .......... .......... .......... 24% 119M 1s +2024-04-05T03:51:23Z #15 1.818 30600K .......... .......... .......... .......... .......... 24% 132M 1s +2024-04-05T03:51:23Z #15 1.818 30650K .......... .......... .......... .......... .......... 24% 98.7M 1s +2024-04-05T03:51:23Z #15 1.818 30700K .......... .......... .......... .......... .......... 24% 119M 1s +2024-04-05T03:51:23Z #15 1.818 30750K .......... .......... .......... .......... .......... 24% 132M 1s +2024-04-05T03:51:23Z #15 1.818 30800K .......... .......... .......... .......... .......... 24% 114M 1s +2024-04-05T03:51:23Z #15 1.818 30850K .......... .......... .......... .......... .......... 24% 112M 1s +2024-04-05T03:51:23Z #15 1.818 30900K .......... .......... .......... .......... .......... 24% 119M 1s +2024-04-05T03:51:23Z #15 1.818 30950K .......... .......... .......... .......... .......... 24% 118M 1s +2024-04-05T03:51:23Z #15 1.818 31000K .......... .......... .......... .......... .......... 24% 125M 1s +2024-04-05T03:51:23Z #15 1.818 31050K .......... .......... .......... .......... .......... 24% 17.9M 1s +2024-04-05T03:51:23Z #15 1.822 31100K .......... .......... .......... .......... .......... 24% 118M 1s +2024-04-05T03:51:23Z #15 1.822 31150K .......... .......... .......... .......... .......... 24% 122M 1s +2024-04-05T03:51:23Z #15 1.822 31200K .......... .......... .......... .......... .......... 24% 125M 1s +2024-04-05T03:51:23Z #15 1.822 31250K .......... .......... .......... .......... .......... 24% 31.1M 1s +2024-04-05T03:51:23Z #15 1.824 31300K .......... .......... .......... .......... .......... 24% 33.5M 1s +2024-04-05T03:51:23Z #15 1.826 31350K .......... .......... .......... .......... .......... 24% 126M 1s +2024-04-05T03:51:23Z #15 1.826 31400K .......... .......... .......... .......... .......... 24% 132M 1s +2024-04-05T03:51:23Z #15 1.826 31450K .......... .......... .......... .......... .......... 24% 111M 1s +2024-04-05T03:51:23Z #15 1.826 31500K .......... .......... .......... .......... .......... 24% 64.7M 1s +2024-04-05T03:51:23Z #15 1.830 31550K .......... .......... .......... .......... .......... 24% 129M 1s +2024-04-05T03:51:23Z #15 1.830 31600K .......... .......... .......... .......... .......... 24% 128M 1s +2024-04-05T03:51:23Z #15 1.830 31650K .......... .......... .......... .......... .......... 25% 135M 1s +2024-04-05T03:51:23Z #15 1.830 31700K .......... .......... .......... .......... .......... 25% 120M 1s +2024-04-05T03:51:23Z #15 1.830 31750K .......... .......... .......... .......... .......... 25% 125M 1s +2024-04-05T03:51:23Z #15 1.830 31800K .......... .......... .......... .......... .......... 25% 121M 1s +2024-04-05T03:51:23Z #15 1.830 31850K .......... .......... .......... .......... .......... 25% 95.8M 1s +2024-04-05T03:51:23Z #15 1.830 31900K .......... .......... .......... .......... .......... 25% 131M 1s +2024-04-05T03:51:23Z #15 1.830 31950K .......... .......... .......... .......... .......... 25% 120M 1s +2024-04-05T03:51:23Z #15 1.834 32000K .......... .......... .......... .......... .......... 25% 121M 1s +2024-04-05T03:51:23Z #15 1.834 32050K .......... .......... .......... .......... .......... 25% 109M 1s +2024-04-05T03:51:23Z #15 1.834 32100K .......... .......... .......... .......... .......... 25% 114M 1s +2024-04-05T03:51:23Z #15 1.834 32150K .......... .......... .......... .......... .......... 25% 139M 1s +2024-04-05T03:51:23Z #15 1.834 32200K .......... .......... .......... .......... .......... 25% 121M 1s +2024-04-05T03:51:23Z #15 1.834 32250K .......... .......... .......... .......... .......... 25% 104M 1s +2024-04-05T03:51:23Z #15 1.834 32300K .......... .......... .......... .......... .......... 25% 134M 1s +2024-04-05T03:51:23Z #15 1.834 32350K .......... .......... .......... .......... .......... 25% 123M 1s +2024-04-05T03:51:23Z #15 1.834 32400K .......... .......... .......... .......... .......... 25% 116M 1s +2024-04-05T03:51:23Z #15 1.834 32450K .......... .......... .......... .......... .......... 25% 121M 1s +2024-04-05T03:51:23Z #15 1.838 32500K .......... .......... .......... .......... .......... 25% 148M 1s +2024-04-05T03:51:23Z #15 1.838 32550K .......... .......... .......... .......... .......... 25% 138M 1s +2024-04-05T03:51:23Z #15 1.838 32600K .......... .......... .......... .......... .......... 25% 101M 1s +2024-04-05T03:51:23Z #15 1.838 32650K .......... .......... .......... .......... .......... 25% 127M 1s +2024-04-05T03:51:23Z #15 1.838 32700K .......... .......... .......... .......... .......... 25% 120M 1s +2024-04-05T03:51:23Z #15 1.838 32750K .......... .......... .......... .......... .......... 25% 111M 1s +2024-04-05T03:51:23Z #15 1.838 32800K .......... .......... .......... .......... .......... 25% 106M 1s +2024-04-05T03:51:23Z #15 1.838 32850K .......... .......... .......... .......... .......... 25% 127M 1s +2024-04-05T03:51:23Z #15 1.838 32900K .......... .......... .......... .......... .......... 25% 131M 1s +2024-04-05T03:51:23Z #15 1.838 32950K .......... .......... .......... .......... .......... 26% 26.7M 1s +2024-04-05T03:51:23Z #15 1.846 33000K .......... .......... .......... .......... .......... 26% 36.6M 1s +2024-04-05T03:51:23Z #15 1.846 33050K .......... .......... .......... .......... .......... 26% 128M 1s +2024-04-05T03:51:23Z #15 1.846 33100K .......... .......... .......... .......... .......... 26% 127M 1s +2024-04-05T03:51:23Z #15 1.846 33150K .......... .......... .......... .......... .......... 26% 119M 1s +2024-04-05T03:51:23Z #15 1.846 33200K .......... .......... .......... .......... .......... 26% 94.5M 1s +2024-04-05T03:51:23Z #15 1.846 33250K .......... .......... .......... .......... .......... 26% 141M 1s +2024-04-05T03:51:23Z #15 1.846 33300K .......... .......... .......... .......... .......... 26% 110M 1s +2024-04-05T03:51:23Z #15 1.846 33350K .......... .......... .......... .......... .......... 26% 120M 1s +2024-04-05T03:51:23Z #15 1.846 33400K .......... .......... .......... .......... .......... 26% 110M 1s +2024-04-05T03:51:23Z #15 1.846 33450K .......... .......... .......... .......... .......... 26% 114M 1s +2024-04-05T03:51:23Z #15 1.846 33500K .......... .......... .......... .......... .......... 26% 111M 1s +2024-04-05T03:51:23Z #15 1.846 33550K .......... .......... .......... .......... .......... 26% 118M 1s +2024-04-05T03:51:23Z #15 1.846 33600K .......... .......... .......... .......... .......... 26% 15.6M 1s +2024-04-05T03:51:23Z #15 1.854 33650K .......... .......... .......... .......... .......... 26% 96.4M 1s +2024-04-05T03:51:23Z #15 1.854 33700K .......... .......... .......... .......... .......... 26% 122M 1s +2024-04-05T03:51:23Z #15 1.854 33750K .......... .......... .......... .......... .......... 26% 106M 1s +2024-04-05T03:51:23Z #15 1.854 33800K .......... .......... .......... .......... .......... 26% 113M 1s +2024-04-05T03:51:23Z #15 1.854 33850K .......... .......... .......... .......... .......... 26% 126M 1s +2024-04-05T03:51:23Z #15 1.854 33900K .......... .......... .......... .......... .......... 26% 106M 1s +2024-04-05T03:51:23Z #15 1.854 33950K .......... .......... .......... .......... .......... 26% 112M 1s +2024-04-05T03:51:23Z #15 1.854 34000K .......... .......... .......... .......... .......... 26% 104M 1s +2024-04-05T03:51:23Z #15 1.854 34050K .......... .......... .......... .......... .......... 26% 126M 1s +2024-04-05T03:51:23Z #15 1.854 34100K .......... .......... .......... .......... .......... 26% 113M 1s +2024-04-05T03:51:23Z #15 1.854 34150K .......... .......... .......... .......... .......... 26% 114M 1s +2024-04-05T03:51:23Z #15 1.854 34200K .......... .......... .......... .......... .......... 27% 31.3M 1s +2024-04-05T03:51:23Z #15 1.858 34250K .......... .......... .......... .......... .......... 27% 72.9M 1s +2024-04-05T03:51:23Z #15 1.858 34300K .......... .......... .......... .......... .......... 27% 143M 1s +2024-04-05T03:51:23Z #15 1.858 34350K .......... .......... .......... .......... .......... 27% 110M 1s +2024-04-05T03:51:23Z #15 1.858 34400K .......... .......... .......... .......... .......... 27% 125M 1s +2024-04-05T03:51:23Z #15 1.858 34450K .......... .......... .......... .......... .......... 27% 129M 1s +2024-04-05T03:51:23Z #15 1.858 34500K .......... .......... .......... .......... .......... 27% 129M 1s +2024-04-05T03:51:23Z #15 1.858 34550K .......... .......... .......... .......... .......... 27% 99.5M 1s +2024-04-05T03:51:23Z #15 1.859 34600K .......... .......... .......... .......... .......... 27% 122M 1s +2024-04-05T03:51:23Z #15 1.859 34650K .......... .......... .......... .......... .......... 27% 87.7M 1s +2024-04-05T03:51:23Z #15 1.860 34700K .......... .......... .......... .......... .......... 27% 118M 1s +2024-04-05T03:51:23Z #15 1.860 34750K .......... .......... .......... .......... .......... 27% 96.8M 1s +2024-04-05T03:51:23Z #15 1.860 34800K .......... .......... .......... .......... .......... 27% 24.0M 1s +2024-04-05T03:51:23Z #15 1.863 34850K .......... .......... .......... .......... .......... 27% 16.5M 1s +2024-04-05T03:51:23Z #15 1.870 34900K .......... .......... .......... .......... .......... 27% 104M 1s +2024-04-05T03:51:23Z #15 1.870 34950K .......... .......... .......... .......... .......... 27% 128M 1s +2024-04-05T03:51:23Z #15 1.870 35000K .......... .......... .......... .......... .......... 27% 109M 1s +2024-04-05T03:51:23Z #15 1.870 35050K .......... .......... .......... .......... .......... 27% 139M 1s +2024-04-05T03:51:23Z #15 1.870 35100K .......... .......... .......... .......... .......... 27% 103M 1s +2024-04-05T03:51:23Z #15 1.870 35150K .......... .......... .......... .......... .......... 27% 141M 1s +2024-04-05T03:51:23Z #15 1.870 35200K .......... .......... .......... .......... .......... 27% 110M 1s +2024-04-05T03:51:23Z #15 1.870 35250K .......... .......... .......... .......... .......... 27% 111M 1s +2024-04-05T03:51:23Z #15 1.870 35300K .......... .......... .......... .......... .......... 27% 112M 1s +2024-04-05T03:51:23Z #15 1.870 35350K .......... .......... .......... .......... .......... 27% 111M 1s +2024-04-05T03:51:23Z #15 1.870 35400K .......... .......... .......... .......... .......... 27% 103M 1s +2024-04-05T03:51:23Z #15 1.870 35450K .......... .......... .......... .......... .......... 28% 24.8M 1s +2024-04-05T03:51:23Z #15 1.874 35500K .......... .......... .......... .......... .......... 28% 125M 1s +2024-04-05T03:51:23Z #15 1.874 35550K .......... .......... .......... .......... .......... 28% 155M 1s +2024-04-05T03:51:23Z #15 1.874 35600K .......... .......... .......... .......... .......... 28% 101M 1s +2024-04-05T03:51:23Z #15 1.874 35650K .......... .......... .......... .......... .......... 28% 133M 1s +2024-04-05T03:51:23Z #15 1.874 35700K .......... .......... .......... .......... .......... 28% 133M 1s +2024-04-05T03:51:23Z #15 1.874 35750K .......... .......... .......... .......... .......... 28% 55.6M 1s +2024-04-05T03:51:23Z #15 1.878 35800K .......... .......... .......... .......... .......... 28% 69.8M 1s +2024-04-05T03:51:23Z #15 1.878 35850K .......... .......... .......... .......... .......... 28% 161M 1s +2024-04-05T03:51:23Z #15 1.878 35900K .......... .......... .......... .......... .......... 28% 130M 1s +2024-04-05T03:51:23Z #15 1.878 35950K .......... .......... .......... .......... .......... 28% 154M 1s +2024-04-05T03:51:23Z #15 1.878 36000K .......... .......... .......... .......... .......... 28% 128M 1s +2024-04-05T03:51:23Z #15 1.878 36050K .......... .......... .......... .......... .......... 28% 132M 1s +2024-04-05T03:51:23Z #15 1.878 36100K .......... .......... .......... .......... .......... 28% 116M 1s +2024-04-05T03:51:23Z #15 1.878 36150K .......... .......... .......... .......... .......... 28% 146M 1s +2024-04-05T03:51:23Z #15 1.878 36200K .......... .......... .......... .......... .......... 28% 15.8M 1s +2024-04-05T03:51:23Z #15 1.881 36250K .......... .......... .......... .......... .......... 28% 82.1M 1s +2024-04-05T03:51:23Z #15 1.886 36300K .......... .......... .......... .......... .......... 28% 129M 1s +2024-04-05T03:51:23Z #15 1.886 36350K .......... .......... .......... .......... .......... 28% 105M 1s +2024-04-05T03:51:23Z #15 1.886 36400K .......... .......... .......... .......... .......... 28% 95.7M 1s +2024-04-05T03:51:23Z #15 1.886 36450K .......... .......... .......... .......... .......... 28% 111M 1s +2024-04-05T03:51:23Z #15 1.886 36500K .......... .......... .......... .......... .......... 28% 118M 1s +2024-04-05T03:51:23Z #15 1.886 36550K .......... .......... .......... .......... .......... 28% 108M 1s +2024-04-05T03:51:23Z #15 1.886 36600K .......... .......... .......... .......... .......... 28% 103M 1s +2024-04-05T03:51:23Z #15 1.886 36650K .......... .......... .......... .......... .......... 28% 135M 1s +2024-04-05T03:51:23Z #15 1.886 36700K .......... .......... .......... .......... .......... 28% 114M 1s +2024-04-05T03:51:23Z #15 1.886 36750K .......... .......... .......... .......... .......... 29% 100M 1s +2024-04-05T03:51:23Z #15 1.886 36800K .......... .......... .......... .......... .......... 29% 57.0M 1s +2024-04-05T03:51:23Z #15 1.890 36850K .......... .......... .......... .......... .......... 29% 111M 1s +2024-04-05T03:51:23Z #15 1.890 36900K .......... .......... .......... .......... .......... 29% 122M 1s +2024-04-05T03:51:23Z #15 1.890 36950K .......... .......... .......... .......... .......... 29% 135M 1s +2024-04-05T03:51:23Z #15 1.890 37000K .......... .......... .......... .......... .......... 29% 109M 1s +2024-04-05T03:51:23Z #15 1.890 37050K .......... .......... .......... .......... .......... 29% 131M 1s +2024-04-05T03:51:23Z #15 1.890 37100K .......... .......... .......... .......... .......... 29% 130M 1s +2024-04-05T03:51:23Z #15 1.890 37150K .......... .......... .......... .......... .......... 29% 115M 1s +2024-04-05T03:51:23Z #15 1.890 37200K .......... .......... .......... .......... .......... 29% 144M 1s +2024-04-05T03:51:23Z #15 1.894 37250K .......... .......... .......... .......... .......... 29% 65.3M 1s +2024-04-05T03:51:23Z #15 1.894 37300K .......... .......... .......... .......... .......... 29% 105M 1s +2024-04-05T03:51:23Z #15 1.894 37350K .......... .......... .......... .......... .......... 29% 129M 1s +2024-04-05T03:51:23Z #15 1.894 37400K .......... .......... .......... .......... .......... 29% 112M 1s +2024-04-05T03:51:23Z #15 1.894 37450K .......... .......... .......... .......... .......... 29% 129M 1s +2024-04-05T03:51:23Z #15 1.894 37500K .......... .......... .......... .......... .......... 29% 128M 1s +2024-04-05T03:51:23Z #15 1.894 37550K .......... .......... .......... .......... .......... 29% 142M 1s +2024-04-05T03:51:23Z #15 1.894 37600K .......... .......... .......... .......... .......... 29% 111M 1s +2024-04-05T03:51:23Z #15 1.894 37650K .......... .......... .......... .......... .......... 29% 141M 1s +2024-04-05T03:51:23Z #15 1.894 37700K .......... .......... .......... .......... .......... 29% 79.1M 1s +2024-04-05T03:51:23Z #15 1.894 37750K .......... .......... .......... .......... .......... 29% 36.9M 1s +2024-04-05T03:51:23Z #15 1.896 37800K .......... .......... .......... .......... .......... 29% 20.0M 1s +2024-04-05T03:51:23Z #15 1.898 37850K .......... .......... .......... .......... .......... 29% 26.1M 1s +2024-04-05T03:51:23Z #15 1.900 37900K .......... .......... .......... .......... .......... 29% 24.7M 1s +2024-04-05T03:51:23Z #15 1.902 37950K .......... .......... .......... .......... .......... 29% 14.9M 1s +2024-04-05T03:51:23Z #15 1.906 38000K .......... .......... .......... .......... .......... 30% 153M 1s +2024-04-05T03:51:23Z #15 1.906 38050K .......... .......... .......... .......... .......... 30% 67.1M 1s +2024-04-05T03:51:23Z #15 1.906 38100K .......... .......... .......... .......... .......... 30% 63.6M 1s +2024-04-05T03:51:23Z #15 1.908 38150K .......... .......... .......... .......... .......... 30% 119M 1s +2024-04-05T03:51:23Z #15 1.908 38200K .......... .......... .......... .......... .......... 30% 100M 1s +2024-04-05T03:51:23Z #15 1.909 38250K .......... .......... .......... .......... .......... 30% 110M 1s +2024-04-05T03:51:23Z #15 1.909 38300K .......... .......... .......... .......... .......... 30% 111M 1s +2024-04-05T03:51:23Z #15 1.909 38350K .......... .......... .......... .......... .......... 30% 104M 1s +2024-04-05T03:51:23Z #15 1.909 38400K .......... .......... .......... .......... .......... 30% 10.4M 1s +2024-04-05T03:51:23Z #15 1.918 38450K .......... .......... .......... .......... .......... 30% 127M 1s +2024-04-05T03:51:23Z #15 1.918 38500K .......... .......... .......... .......... .......... 30% 115M 1s +2024-04-05T03:51:23Z #15 1.918 38550K .......... .......... .......... .......... .......... 30% 135M 1s +2024-04-05T03:51:23Z #15 1.918 38600K .......... .......... .......... .......... .......... 30% 103M 1s +2024-04-05T03:51:23Z #15 1.918 38650K .......... .......... .......... .......... .......... 30% 121M 1s +2024-04-05T03:51:23Z #15 1.918 38700K .......... .......... .......... .......... .......... 30% 137M 1s +2024-04-05T03:51:23Z #15 1.918 38750K .......... .......... .......... .......... .......... 30% 126M 1s +2024-04-05T03:51:23Z #15 1.918 38800K .......... .......... .......... .......... .......... 30% 98.9M 1s +2024-04-05T03:51:23Z #15 1.918 38850K .......... .......... .......... .......... .......... 30% 117M 1s +2024-04-05T03:51:23Z #15 1.918 38900K .......... .......... .......... .......... .......... 30% 11.0M 1s +2024-04-05T03:51:23Z #15 1.930 38950K .......... .......... .......... .......... .......... 30% 133M 1s +2024-04-05T03:51:23Z #15 1.930 39000K .......... .......... .......... .......... .......... 30% 115M 1s +2024-04-05T03:51:23Z #15 1.930 39050K .......... .......... .......... .......... .......... 30% 112M 1s +2024-04-05T03:51:23Z #15 1.930 39100K .......... .......... .......... .......... .......... 30% 125M 1s +2024-04-05T03:51:23Z #15 1.930 39150K .......... .......... .......... .......... .......... 30% 121M 1s +2024-04-05T03:51:23Z #15 1.930 39200K .......... .......... .......... .......... .......... 30% 124M 1s +2024-04-05T03:51:23Z #15 1.930 39250K .......... .......... .......... .......... .......... 30% 107M 1s +2024-04-05T03:51:23Z #15 1.930 39300K .......... .......... .......... .......... .......... 31% 119M 1s +2024-04-05T03:51:23Z #15 1.930 39350K .......... .......... .......... .......... .......... 31% 138M 1s +2024-04-05T03:51:23Z #15 1.930 39400K .......... .......... .......... .......... .......... 31% 122M 1s +2024-04-05T03:51:23Z #15 1.930 39450K .......... .......... .......... .......... .......... 31% 126M 1s +2024-04-05T03:51:23Z #15 1.930 39500K .......... .......... .......... .......... .......... 31% 151M 1s +2024-04-05T03:51:23Z #15 1.930 39550K .......... .......... .......... .......... .......... 31% 148M 1s +2024-04-05T03:51:23Z #15 1.930 39600K .......... .......... .......... .......... .......... 31% 134M 1s +2024-04-05T03:51:23Z #15 1.930 39650K .......... .......... .......... .......... .......... 31% 163M 1s +2024-04-05T03:51:23Z #15 1.930 39700K .......... .......... .......... .......... .......... 31% 154M 1s +2024-04-05T03:51:23Z #15 1.930 39750K .......... .......... .......... .......... .......... 31% 175M 1s +2024-04-05T03:51:23Z #15 1.930 39800K .......... .......... .......... .......... .......... 31% 132M 1s +2024-04-05T03:51:23Z #15 1.930 39850K .......... .......... .......... .......... .......... 31% 152M 1s +2024-04-05T03:51:23Z #15 1.930 39900K .......... .......... .......... .......... .......... 31% 161M 1s +2024-04-05T03:51:23Z #15 1.930 39950K .......... .......... .......... .......... .......... 31% 150M 1s +2024-04-05T03:51:23Z #15 1.930 40000K .......... .......... .......... .......... .......... 31% 116M 1s +2024-04-05T03:51:23Z #15 1.930 40050K .......... .......... .......... .......... .......... 31% 141M 1s +2024-04-05T03:51:23Z #15 1.931 40100K .......... .......... .......... .......... .......... 31% 118M 1s +2024-04-05T03:51:23Z #15 1.931 40150K .......... .......... .......... .......... .......... 31% 131M 1s +2024-04-05T03:51:23Z #15 1.932 40200K .......... .......... .......... .......... .......... 31% 105M 1s +2024-04-05T03:51:23Z #15 1.932 40250K .......... .......... .......... .......... .......... 31% 134M 1s +2024-04-05T03:51:23Z #15 1.932 40300K .......... .......... .......... .......... .......... 31% 138M 1s +2024-04-05T03:51:23Z #15 1.933 40350K .......... .......... .......... .......... .......... 31% 138M 1s +2024-04-05T03:51:23Z #15 1.933 40400K .......... .......... .......... .......... .......... 31% 138M 1s +2024-04-05T03:51:23Z #15 1.933 40450K .......... .......... .......... .......... .......... 31% 142M 1s +2024-04-05T03:51:23Z #15 1.934 40500K .......... .......... .......... .......... .......... 31% 128M 1s +2024-04-05T03:51:23Z #15 1.935 40550K .......... .......... .......... .......... .......... 32% 146M 1s +2024-04-05T03:51:23Z #15 1.935 40600K .......... .......... .......... .......... .......... 32% 121M 1s +2024-04-05T03:51:23Z #15 1.935 40650K .......... .......... .......... .......... .......... 32% 143M 1s +2024-04-05T03:51:23Z #15 1.935 40700K .......... .......... .......... .......... .......... 32% 154M 1s +2024-04-05T03:51:23Z #15 1.935 40750K .......... .......... .......... .......... .......... 32% 119M 1s +2024-04-05T03:51:23Z #15 1.936 40800K .......... .......... .......... .......... .......... 32% 130M 1s +2024-04-05T03:51:23Z #15 1.936 40850K .......... .......... .......... .......... .......... 32% 150M 1s +2024-04-05T03:51:23Z #15 1.942 40900K .......... .......... .......... .......... .......... 32% 128M 1s +2024-04-05T03:51:23Z #15 1.942 40950K .......... .......... .......... .......... .......... 32% 161M 1s +2024-04-05T03:51:23Z #15 1.942 41000K .......... .......... .......... .......... .......... 32% 129M 1s +2024-04-05T03:51:23Z #15 1.942 41050K .......... .......... .......... .......... .......... 32% 154M 1s +2024-04-05T03:51:23Z #15 1.942 41100K .......... .......... .......... .......... .......... 32% 61.9M 1s +2024-04-05T03:51:23Z #15 1.942 41150K .......... .......... .......... .......... .......... 32% 173M 1s +2024-04-05T03:51:23Z #15 1.942 41200K .......... .......... .......... .......... .......... 32% 139M 1s +2024-04-05T03:51:23Z #15 1.942 41250K .......... .......... .......... .......... .......... 32% 140M 1s +2024-04-05T03:51:23Z #15 1.942 41300K .......... .......... .......... .......... .......... 32% 146M 1s +2024-04-05T03:51:23Z #15 1.942 41350K .......... .......... .......... .......... .......... 32% 155M 1s +2024-04-05T03:51:23Z #15 1.942 41400K .......... .......... .......... .......... .......... 32% 157M 1s +2024-04-05T03:51:23Z #15 1.942 41450K .......... .......... .......... .......... .......... 32% 135M 1s +2024-04-05T03:51:23Z #15 1.942 41500K .......... .......... .......... .......... .......... 32% 166M 1s +2024-04-05T03:51:23Z #15 1.942 41550K .......... .......... .......... .......... .......... 32% 140M 1s +2024-04-05T03:51:23Z #15 1.942 41600K .......... .......... .......... .......... .......... 32% 122M 1s +2024-04-05T03:51:23Z #15 1.943 41650K .......... .......... .......... .......... .......... 32% 149M 1s +2024-04-05T03:51:23Z #15 1.943 41700K .......... .......... .......... .......... .......... 32% 141M 1s +2024-04-05T03:51:23Z #15 1.943 41750K .......... .......... .......... .......... .......... 32% 118M 1s +2024-04-05T03:51:23Z #15 1.943 41800K .......... .......... .......... .......... .......... 33% 99.2M 1s +2024-04-05T03:51:23Z #15 1.944 41850K .......... .......... .......... .......... .......... 33% 113M 1s +2024-04-05T03:51:23Z #15 1.944 41900K .......... .......... .......... .......... .......... 33% 97.2M 1s +2024-04-05T03:51:23Z #15 1.945 41950K .......... .......... .......... .......... .......... 33% 101M 1s +2024-04-05T03:51:23Z #15 1.945 42000K .......... .......... .......... .......... .......... 33% 131M 1s +2024-04-05T03:51:23Z #15 1.946 42050K .......... .......... .......... .......... .......... 33% 115M 1s +2024-04-05T03:51:23Z #15 1.946 42100K .......... .......... .......... .......... .......... 33% 114M 1s +2024-04-05T03:51:23Z #15 1.947 42150K .......... .......... .......... .......... .......... 33% 81.9M 1s +2024-04-05T03:51:23Z #15 1.947 42200K .......... .......... .......... .......... .......... 33% 112M 1s +2024-04-05T03:51:23Z #15 1.950 42250K .......... .......... .......... .......... .......... 33% 109M 1s +2024-04-05T03:51:23Z #15 1.950 42300K .......... .......... .......... .......... .......... 33% 166M 1s +2024-04-05T03:51:23Z #15 1.950 42350K .......... .......... .......... .......... .......... 33% 111M 1s +2024-04-05T03:51:23Z #15 1.950 42400K .......... .......... .......... .......... .......... 33% 134M 1s +2024-04-05T03:51:23Z #15 1.950 42450K .......... .......... .......... .......... .......... 33% 123M 1s +2024-04-05T03:51:23Z #15 1.950 42500K .......... .......... .......... .......... .......... 33% 121M 1s +2024-04-05T03:51:23Z #15 1.950 42550K .......... .......... .......... .......... .......... 33% 115M 1s +2024-04-05T03:51:23Z #15 1.950 42600K .......... .......... .......... .......... .......... 33% 85.6M 1s +2024-04-05T03:51:23Z #15 1.954 42650K .......... .......... .......... .......... .......... 33% 101M 1s +2024-04-05T03:51:23Z #15 1.954 42700K .......... .......... .......... .......... .......... 33% 122M 1s +2024-04-05T03:51:23Z #15 1.954 42750K .......... .......... .......... .......... .......... 33% 124M 1s +2024-04-05T03:51:23Z #15 1.954 42800K .......... .......... .......... .......... .......... 33% 116M 1s +2024-04-05T03:51:23Z #15 1.954 42850K .......... .......... .......... .......... .......... 33% 120M 1s +2024-04-05T03:51:23Z #15 1.954 42900K .......... .......... .......... .......... .......... 33% 119M 1s +2024-04-05T03:51:23Z #15 1.954 42950K .......... .......... .......... .......... .......... 33% 130M 1s +2024-04-05T03:51:23Z #15 1.954 43000K .......... .......... .......... .......... .......... 33% 112M 1s +2024-04-05T03:51:23Z #15 1.954 43050K .......... .......... .......... .......... .......... 33% 58.6M 1s +2024-04-05T03:51:23Z #15 1.958 43100K .......... .......... .......... .......... .......... 34% 111M 1s +2024-04-05T03:51:23Z #15 1.958 43150K .......... .......... .......... .......... .......... 34% 132M 1s +2024-04-05T03:51:23Z #15 1.958 43200K .......... .......... .......... .......... .......... 34% 142M 1s +2024-04-05T03:51:23Z #15 1.958 43250K .......... .......... .......... .......... .......... 34% 103M 1s +2024-04-05T03:51:23Z #15 1.958 43300K .......... .......... .......... .......... .......... 34% 108M 1s +2024-04-05T03:51:23Z #15 1.958 43350K .......... .......... .......... .......... .......... 34% 141M 1s +2024-04-05T03:51:23Z #15 1.958 43400K .......... .......... .......... .......... .......... 34% 136M 1s +2024-04-05T03:51:23Z #15 1.958 43450K .......... .......... .......... .......... .......... 34% 76.8M 1s +2024-04-05T03:51:23Z #15 1.962 43500K .......... .......... .......... .......... .......... 34% 139M 1s +2024-04-05T03:51:23Z #15 1.962 43550K .......... .......... .......... .......... .......... 34% 105M 1s +2024-04-05T03:51:23Z #15 1.962 43600K .......... .......... .......... .......... .......... 34% 117M 1s +2024-04-05T03:51:23Z #15 1.962 43650K .......... .......... .......... .......... .......... 34% 147M 1s +2024-04-05T03:51:23Z #15 1.962 43700K .......... .......... .......... .......... .......... 34% 120M 1s +2024-04-05T03:51:23Z #15 1.962 43750K .......... .......... .......... .......... .......... 34% 107M 1s +2024-04-05T03:51:23Z #15 1.962 43800K .......... .......... .......... .......... .......... 34% 114M 1s +2024-04-05T03:51:23Z #15 1.962 43850K .......... .......... .......... .......... .......... 34% 128M 1s +2024-04-05T03:51:23Z #15 1.962 43900K .......... .......... .......... .......... .......... 34% 135M 1s +2024-04-05T03:51:23Z #15 1.962 43950K .......... .......... .......... .......... .......... 34% 29.2M 1s +2024-04-05T03:51:23Z #15 1.966 44000K .......... .......... .......... .......... .......... 34% 124M 1s +2024-04-05T03:51:23Z #15 1.966 44050K .......... .......... .......... .......... .......... 34% 122M 1s +2024-04-05T03:51:23Z #15 1.966 44100K .......... .......... .......... .......... .......... 34% 134M 1s +2024-04-05T03:51:23Z #15 1.966 44150K .......... .......... .......... .......... .......... 34% 113M 1s +2024-04-05T03:51:23Z #15 1.966 44200K .......... .......... .......... .......... .......... 34% 133M 1s +2024-04-05T03:51:23Z #15 1.966 44250K .......... .......... .......... .......... .......... 34% 119M 1s +2024-04-05T03:51:23Z #15 1.966 44300K .......... .......... .......... .......... .......... 34% 43.8M 1s +2024-04-05T03:51:23Z #15 1.968 44350K .......... .......... .......... .......... .......... 35% 28.5M 1s +2024-04-05T03:51:23Z #15 1.969 44400K .......... .......... .......... .......... .......... 35% 152M 1s +2024-04-05T03:51:23Z #15 1.969 44450K .......... .......... .......... .......... .......... 35% 114M 1s +2024-04-05T03:51:23Z #15 1.969 44500K .......... .......... .......... .......... .......... 35% 91.6M 1s +2024-04-05T03:51:23Z #15 1.974 44550K .......... .......... .......... .......... .......... 35% 105M 1s +2024-04-05T03:51:23Z #15 1.974 44600K .......... .......... .......... .......... .......... 35% 113M 1s +2024-04-05T03:51:23Z #15 1.974 44650K .......... .......... .......... .......... .......... 35% 131M 1s +2024-04-05T03:51:23Z #15 1.974 44700K .......... .......... .......... .......... .......... 35% 135M 1s +2024-04-05T03:51:23Z #15 1.974 44750K .......... .......... .......... .......... .......... 35% 136M 1s +2024-04-05T03:51:23Z #15 1.974 44800K .......... .......... .......... .......... .......... 35% 112M 1s +2024-04-05T03:51:23Z #15 1.974 44850K .......... .......... .......... .......... .......... 35% 135M 1s +2024-04-05T03:51:23Z #15 1.974 44900K .......... .......... .......... .......... .......... 35% 111M 1s +2024-04-05T03:51:23Z #15 1.974 44950K .......... .......... .......... .......... .......... 35% 113M 1s +2024-04-05T03:51:23Z #15 1.974 45000K .......... .......... .......... .......... .......... 35% 109M 1s +2024-04-05T03:51:23Z #15 1.978 45050K .......... .......... .......... .......... .......... 35% 82.4M 1s +2024-04-05T03:51:23Z #15 1.978 45100K .......... .......... .......... .......... .......... 35% 121M 1s +2024-04-05T03:51:23Z #15 1.978 45150K .......... .......... .......... .......... .......... 35% 121M 1s +2024-04-05T03:51:23Z #15 1.978 45200K .......... .......... .......... .......... .......... 35% 140M 1s +2024-04-05T03:51:23Z #15 1.978 45250K .......... .......... .......... .......... .......... 35% 124M 1s +2024-04-05T03:51:23Z #15 1.978 45300K .......... .......... .......... .......... .......... 35% 118M 1s +2024-04-05T03:51:23Z #15 1.978 45350K .......... .......... .......... .......... .......... 35% 128M 1s +2024-04-05T03:51:23Z #15 1.978 45400K .......... .......... .......... .......... .......... 35% 139M 1s +2024-04-05T03:51:23Z #15 1.978 45450K .......... .......... .......... .......... .......... 35% 124M 1s +2024-04-05T03:51:23Z #15 1.978 45500K .......... .......... .......... .......... .......... 35% 84.4M 1s +2024-04-05T03:51:23Z #15 1.982 45550K .......... .......... .......... .......... .......... 35% 77.1M 1s +2024-04-05T03:51:23Z #15 1.982 45600K .......... .......... .......... .......... .......... 36% 118M 1s +2024-04-05T03:51:23Z #15 1.982 45650K .......... .......... .......... .......... .......... 36% 144M 1s +2024-04-05T03:51:23Z #15 1.982 45700K .......... .......... .......... .......... .......... 36% 118M 1s +2024-04-05T03:51:23Z #15 1.982 45750K .......... .......... .......... .......... .......... 36% 143M 1s +2024-04-05T03:51:23Z #15 1.982 45800K .......... .......... .......... .......... .......... 36% 117M 1s +2024-04-05T03:51:23Z #15 1.982 45850K .......... .......... .......... .......... .......... 36% 116M 1s +2024-04-05T03:51:23Z #15 1.982 45900K .......... .......... .......... .......... .......... 36% 113M 1s +2024-04-05T03:51:23Z #15 1.982 45950K .......... .......... .......... .......... .......... 36% 82.3M 1s +2024-04-05T03:51:23Z #15 1.986 46000K .......... .......... .......... .......... .......... 36% 89.7M 1s +2024-04-05T03:51:23Z #15 1.986 46050K .......... .......... .......... .......... .......... 36% 106M 1s +2024-04-05T03:51:23Z #15 1.986 46100K .......... .......... .......... .......... .......... 36% 130M 1s +2024-04-05T03:51:23Z #15 1.986 46150K .......... .......... .......... .......... .......... 36% 127M 1s +2024-04-05T03:51:23Z #15 1.986 46200K .......... .......... .......... .......... .......... 36% 112M 1s +2024-04-05T03:51:23Z #15 1.986 46250K .......... .......... .......... .......... .......... 36% 125M 1s +2024-04-05T03:51:23Z #15 1.986 46300K .......... .......... .......... .......... .......... 36% 132M 1s +2024-04-05T03:51:23Z #15 1.986 46350K .......... .......... .......... .......... .......... 36% 108M 1s +2024-04-05T03:51:23Z #15 1.986 46400K .......... .......... .......... .......... .......... 36% 115M 1s +2024-04-05T03:51:23Z #15 1.990 46450K .......... .......... .......... .......... .......... 36% 62.9M 1s +2024-04-05T03:51:23Z #15 1.990 46500K .......... .......... .......... .......... .......... 36% 105M 1s +2024-04-05T03:51:23Z #15 1.990 46550K .......... .......... .......... .......... .......... 36% 151M 1s +2024-04-05T03:51:23Z #15 1.990 46600K .......... .......... .......... .......... .......... 36% 95.7M 1s +2024-04-05T03:51:23Z #15 1.990 46650K .......... .......... .......... .......... .......... 36% 130M 1s +2024-04-05T03:51:23Z #15 1.990 46700K .......... .......... .......... .......... .......... 36% 114M 1s +2024-04-05T03:51:23Z #15 1.990 46750K .......... .......... .......... .......... .......... 36% 134M 1s +2024-04-05T03:51:23Z #15 1.990 46800K .......... .......... .......... .......... .......... 36% 127M 1s +2024-04-05T03:51:23Z #15 1.990 46850K .......... .......... .......... .......... .......... 36% 73.9M 1s +2024-04-05T03:51:23Z #15 1.994 46900K .......... .......... .......... .......... .......... 37% 122M 1s +2024-04-05T03:51:23Z #15 1.994 46950K .......... .......... .......... .......... .......... 37% 136M 1s +2024-04-05T03:51:23Z #15 1.994 47000K .......... .......... .......... .......... .......... 37% 104M 1s +2024-04-05T03:51:23Z #15 1.994 47050K .......... .......... .......... .......... .......... 37% 131M 1s +2024-04-05T03:51:23Z #15 1.994 47100K .......... .......... .......... .......... .......... 37% 113M 1s +2024-04-05T03:51:23Z #15 1.994 47150K .......... .......... .......... .......... .......... 37% 150M 1s +2024-04-05T03:51:23Z #15 1.994 47200K .......... .......... .......... .......... .......... 37% 120M 1s +2024-04-05T03:51:23Z #15 1.994 47250K .......... .......... .......... .......... .......... 37% 129M 1s +2024-04-05T03:51:23Z #15 1.994 47300K .......... .......... .......... .......... .......... 37% 107M 1s +2024-04-05T03:51:23Z #15 1.994 47350K .......... .......... .......... .......... .......... 37% 64.5M 1s +2024-04-05T03:51:23Z #15 1.998 47400K .......... .......... .......... .......... .......... 37% 94.1M 1s +2024-04-05T03:51:23Z #15 1.998 47450K .......... .......... .......... .......... .......... 37% 129M 1s +2024-04-05T03:51:23Z #15 1.998 47500K .......... .......... .......... .......... .......... 37% 124M 1s +2024-04-05T03:51:23Z #15 1.998 47550K .......... .......... .......... .......... .......... 37% 124M 1s +2024-04-05T03:51:23Z #15 1.998 47600K .......... .......... .......... .......... .......... 37% 133M 1s +2024-04-05T03:51:23Z #15 1.998 47650K .......... .......... .......... .......... .......... 37% 116M 1s +2024-04-05T03:51:23Z #15 1.998 47700K .......... .......... .......... .......... .......... 37% 133M 1s +2024-04-05T03:51:23Z #15 1.998 47750K .......... .......... .......... .......... .......... 37% 127M 1s +2024-04-05T03:51:23Z #15 1.998 47800K .......... .......... .......... .......... .......... 37% 50.9M 1s +2024-04-05T03:51:23Z #15 2.002 47850K .......... .......... .......... .......... .......... 37% 132M 1s +2024-04-05T03:51:23Z #15 2.002 47900K .......... .......... .......... .......... .......... 37% 113M 1s +2024-04-05T03:51:23Z #15 2.002 47950K .......... .......... .......... .......... .......... 37% 128M 1s +2024-04-05T03:51:23Z #15 2.002 48000K .......... .......... .......... .......... .......... 37% 149M 1s +2024-04-05T03:51:23Z #15 2.002 48050K .......... .......... .......... .......... .......... 37% 128M 1s +2024-04-05T03:51:23Z #15 2.002 48100K .......... .......... .......... .......... .......... 37% 123M 1s +2024-04-05T03:51:23Z #15 2.002 48150K .......... .......... .......... .......... .......... 38% 119M 1s +2024-04-05T03:51:23Z #15 2.002 48200K .......... .......... .......... .......... .......... 38% 104M 1s +2024-04-05T03:51:23Z #15 2.006 48250K .......... .......... .......... .......... .......... 38% 88.4M 1s +2024-04-05T03:51:23Z #15 2.006 48300K .......... .......... .......... .......... .......... 38% 142M 1s +2024-04-05T03:51:23Z #15 2.006 48350K .......... .......... .......... .......... .......... 38% 113M 1s +2024-04-05T03:51:23Z #15 2.006 48400K .......... .......... .......... .......... .......... 38% 156M 1s +2024-04-05T03:51:23Z #15 2.006 48450K .......... .......... .......... .......... .......... 38% 134M 1s +2024-04-05T03:51:23Z #15 2.006 48500K .......... .......... .......... .......... .......... 38% 142M 1s +2024-04-05T03:51:23Z #15 2.006 48550K .......... .......... .......... .......... .......... 38% 135M 1s +2024-04-05T03:51:23Z #15 2.006 48600K .......... .......... .......... .......... .......... 38% 121M 1s +2024-04-05T03:51:23Z #15 2.006 48650K .......... .......... .......... .......... .......... 38% 121M 1s +2024-04-05T03:51:23Z #15 2.006 48700K .......... .......... .......... .......... .......... 38% 120M 1s +2024-04-05T03:51:23Z #15 2.010 48750K .......... .......... .......... .......... .......... 38% 107M 1s +2024-04-05T03:51:23Z #15 2.010 48800K .......... .......... .......... .......... .......... 38% 130M 1s +2024-04-05T03:51:23Z #15 2.010 48850K .......... .......... .......... .......... .......... 38% 123M 1s +2024-04-05T03:51:23Z #15 2.010 48900K .......... .......... .......... .......... .......... 38% 148M 1s +2024-04-05T03:51:23Z #15 2.010 48950K .......... .......... .......... .......... .......... 38% 130M 1s +2024-04-05T03:51:23Z #15 2.010 49000K .......... .......... .......... .......... .......... 38% 127M 1s +2024-04-05T03:51:23Z #15 2.010 49050K .......... .......... .......... .......... .......... 38% 159M 1s +2024-04-05T03:51:23Z #15 2.010 49100K .......... .......... .......... .......... .......... 38% 134M 1s +2024-04-05T03:51:23Z #15 2.010 49150K .......... .......... .......... .......... .......... 38% 92.1M 1s +2024-04-05T03:51:23Z #15 2.010 49200K .......... .......... .......... .......... .......... 38% 119M 1s +2024-04-05T03:51:23Z #15 2.014 49250K .......... .......... .......... .......... .......... 38% 113M 1s +2024-04-05T03:51:23Z #15 2.014 49300K .......... .......... .......... .......... .......... 38% 154M 1s +2024-04-05T03:51:23Z #15 2.014 49350K .......... .......... .......... .......... .......... 38% 145M 1s +2024-04-05T03:51:23Z #15 2.014 49400K .......... .......... .......... .......... .......... 39% 148M 1s +2024-04-05T03:51:23Z #15 2.014 49450K .......... .......... .......... .......... .......... 39% 150M 1s +2024-04-05T03:51:23Z #15 2.014 49500K .......... .......... .......... .......... .......... 39% 119M 1s +2024-04-05T03:51:23Z #15 2.014 49550K .......... .......... .......... .......... .......... 39% 118M 1s +2024-04-05T03:51:23Z #15 2.014 49600K .......... .......... .......... .......... .......... 39% 123M 1s +2024-04-05T03:51:23Z #15 2.014 49650K .......... .......... .......... .......... .......... 39% 114M 1s +2024-04-05T03:51:23Z #15 2.014 49700K .......... .......... .......... .......... .......... 39% 122M 1s +2024-04-05T03:51:23Z #15 2.014 49750K .......... .......... .......... .......... .......... 39% 108M 1s +2024-04-05T03:51:23Z #15 2.015 49800K .......... .......... .......... .......... .......... 39% 116M 1s +2024-04-05T03:51:23Z #15 2.015 49850K .......... .......... .......... .......... .......... 39% 101M 1s +2024-04-05T03:51:23Z #15 2.016 49900K .......... .......... .......... .......... .......... 39% 108M 1s +2024-04-05T03:51:23Z #15 2.016 49950K .......... .......... .......... .......... .......... 39% 91.4M 1s +2024-04-05T03:51:23Z #15 2.017 50000K .......... .......... .......... .......... .......... 39% 107M 1s +2024-04-05T03:51:23Z #15 2.017 50050K .......... .......... .......... .......... .......... 39% 109M 1s +2024-04-05T03:51:23Z #15 2.018 50100K .......... .......... .......... .......... .......... 39% 107M 1s +2024-04-05T03:51:23Z #15 2.018 50150K .......... .......... .......... .......... .......... 39% 99.6M 1s +2024-04-05T03:51:23Z #15 2.019 50200K .......... .......... .......... .......... .......... 39% 129M 1s +2024-04-05T03:51:23Z #15 2.019 50250K .......... .......... .......... .......... .......... 39% 127M 1s +2024-04-05T03:51:23Z #15 2.019 50300K .......... .......... .......... .......... .......... 39% 76.8M 1s +2024-04-05T03:51:23Z #15 2.019 50350K .......... .......... .......... .......... .......... 39% 95.9M 1s +2024-04-05T03:51:23Z #15 2.021 50400K .......... .......... .......... .......... .......... 39% 109M 1s +2024-04-05T03:51:23Z #15 2.021 50450K .......... .......... .......... .......... .......... 39% 128M 1s +2024-04-05T03:51:23Z #15 2.021 50500K .......... .......... .......... .......... .......... 39% 86.4M 1s +2024-04-05T03:51:23Z #15 2.022 50550K .......... .......... .......... .......... .......... 39% 100M 1s +2024-04-05T03:51:23Z #15 2.022 50600K .......... .......... .......... .......... .......... 39% 81.6M 1s +2024-04-05T03:51:23Z #15 2.023 50650K .......... .......... .......... .......... .......... 39% 133M 1s +2024-04-05T03:51:23Z #15 2.023 50700K .......... .......... .......... .......... .......... 40% 118M 1s +2024-04-05T03:51:23Z #15 2.023 50750K .......... .......... .......... .......... .......... 40% 90.4M 1s +2024-04-05T03:51:23Z #15 2.024 50800K .......... .......... .......... .......... .......... 40% 96.0M 1s +2024-04-05T03:51:23Z #15 2.025 50850K .......... .......... .......... .......... .......... 40% 63.3M 1s +2024-04-05T03:51:23Z #15 2.025 50900K .......... .......... .......... .......... .......... 40% 81.4M 1s +2024-04-05T03:51:23Z #15 2.025 50950K .......... .......... .......... .......... .......... 40% 121M 1s +2024-04-05T03:51:23Z #15 2.026 51000K .......... .......... .......... .......... .......... 40% 119M 1s +2024-04-05T03:51:23Z #15 2.026 51050K .......... .......... .......... .......... .......... 40% 142M 1s +2024-04-05T03:51:23Z #15 2.027 51100K .......... .......... .......... .......... .......... 40% 92.4M 1s +2024-04-05T03:51:23Z #15 2.027 51150K .......... .......... .......... .......... .......... 40% 117M 1s +2024-04-05T03:51:23Z #15 2.028 51200K .......... .......... .......... .......... .......... 40% 117M 1s +2024-04-05T03:51:23Z #15 2.028 51250K .......... .......... .......... .......... .......... 40% 135M 1s +2024-04-05T03:51:23Z #15 2.028 51300K .......... .......... .......... .......... .......... 40% 109M 1s +2024-04-05T03:51:23Z #15 2.034 51350K .......... .......... .......... .......... .......... 40% 135M 1s +2024-04-05T03:51:23Z #15 2.034 51400K .......... .......... .......... .......... .......... 40% 158M 1s +2024-04-05T03:51:23Z #15 2.034 51450K .......... .......... .......... .......... .......... 40% 93.4M 1s +2024-04-05T03:51:23Z #15 2.034 51500K .......... .......... .......... .......... .......... 40% 78.6M 1s +2024-04-05T03:51:23Z #15 2.034 51550K .......... .......... .......... .......... .......... 40% 153M 1s +2024-04-05T03:51:23Z #15 2.034 51600K .......... .......... .......... .......... .......... 40% 162M 1s +2024-04-05T03:51:23Z #15 2.034 51650K .......... .......... .......... .......... .......... 40% 166M 1s +2024-04-05T03:51:23Z #15 2.034 51700K .......... .......... .......... .......... .......... 40% 153M 1s +2024-04-05T03:51:23Z #15 2.034 51750K .......... .......... .......... .......... .......... 40% 157M 1s +2024-04-05T03:51:23Z #15 2.034 51800K .......... .......... .......... .......... .......... 40% 166M 1s +2024-04-05T03:51:23Z #15 2.034 51850K .......... .......... .......... .......... .......... 40% 174M 1s +2024-04-05T03:51:23Z #15 2.034 51900K .......... .......... .......... .......... .......... 40% 156M 1s +2024-04-05T03:51:23Z #15 2.034 51950K .......... .......... .......... .......... .......... 41% 157M 1s +2024-04-05T03:51:23Z #15 2.034 52000K .......... .......... .......... .......... .......... 41% 165M 1s +2024-04-05T03:51:23Z #15 2.034 52050K .......... .......... .......... .......... .......... 41% 109M 1s +2024-04-05T03:51:23Z #15 2.034 52100K .......... .......... .......... .......... .......... 41% 728K 1s +2024-04-05T03:51:23Z #15 2.110 52150K .......... .......... .......... .......... .......... 41% 119M 1s +2024-04-05T03:51:23Z #15 2.110 52200K .......... .......... .......... .......... .......... 41% 145M 1s +2024-04-05T03:51:23Z #15 2.110 52250K .......... .......... .......... .......... .......... 41% 137M 1s +2024-04-05T03:51:23Z #15 2.110 52300K .......... .......... .......... .......... .......... 41% 142M 1s +2024-04-05T03:51:23Z #15 2.110 52350K .......... .......... .......... .......... .......... 41% 129M 1s +2024-04-05T03:51:23Z #15 2.110 52400K .......... .......... .......... .......... .......... 41% 169M 1s +2024-04-05T03:51:23Z #15 2.110 52450K .......... .......... .......... .......... .......... 41% 140M 1s +2024-04-05T03:51:23Z #15 2.110 52500K .......... .......... .......... .......... .......... 41% 153M 1s +2024-04-05T03:51:23Z #15 2.110 52550K .......... .......... .......... .......... .......... 41% 97.7M 1s +2024-04-05T03:51:23Z #15 2.110 52600K .......... .......... .......... .......... .......... 41% 145M 1s +2024-04-05T03:51:23Z #15 2.110 52650K .......... .......... .......... .......... .......... 41% 144M 1s +2024-04-05T03:51:23Z #15 2.110 52700K .......... .......... .......... .......... .......... 41% 132M 1s +2024-04-05T03:51:23Z #15 2.110 52750K .......... .......... .......... .......... .......... 41% 148M 1s +2024-04-05T03:51:23Z #15 2.110 52800K .......... .......... .......... .......... .......... 41% 122M 1s +2024-04-05T03:51:23Z #15 2.110 52850K .......... .......... .......... .......... .......... 41% 110M 1s +2024-04-05T03:51:23Z #15 2.110 52900K .......... .......... .......... .......... .......... 41% 162M 1s +2024-04-05T03:51:23Z #15 2.110 52950K .......... .......... .......... .......... .......... 41% 145M 1s +2024-04-05T03:51:23Z #15 2.110 53000K .......... .......... .......... .......... .......... 41% 144M 1s +2024-04-05T03:51:23Z #15 2.110 53050K .......... .......... .......... .......... .......... 41% 137M 1s +2024-04-05T03:51:23Z #15 2.110 53100K .......... .......... .......... .......... .......... 41% 6.85M 1s +2024-04-05T03:51:23Z #15 2.118 53150K .......... .......... .......... .......... .......... 41% 140M 1s +2024-04-05T03:51:23Z #15 2.118 53200K .......... .......... .......... .......... .......... 42% 175M 1s +2024-04-05T03:51:23Z #15 2.118 53250K .......... .......... .......... .......... .......... 42% 164M 1s +2024-04-05T03:51:23Z #15 2.118 53300K .......... .......... .......... .......... .......... 42% 15.6M 1s +2024-04-05T03:51:23Z #15 2.122 53350K .......... .......... .......... .......... .......... 42% 172M 1s +2024-04-05T03:51:23Z #15 2.122 53400K .......... .......... .......... .......... .......... 42% 132M 1s +2024-04-05T03:51:23Z #15 2.122 53450K .......... .......... .......... .......... .......... 42% 179M 1s +2024-04-05T03:51:23Z #15 2.122 53500K .......... .......... .......... .......... .......... 42% 59.3M 1s +2024-04-05T03:51:23Z #15 2.123 53550K .......... .......... .......... .......... .......... 42% 33.9M 1s +2024-04-05T03:51:23Z #15 2.125 53600K .......... .......... .......... .......... .......... 42% 61.9M 1s +2024-04-05T03:51:23Z #15 2.125 53650K .......... .......... .......... .......... .......... 42% 37.5M 1s +2024-04-05T03:51:23Z #15 2.126 53700K .......... .......... .......... .......... .......... 42% 37.4M 1s +2024-04-05T03:51:23Z #15 2.128 53750K .......... .......... .......... .......... .......... 42% 60.7M 1s +2024-04-05T03:51:23Z #15 2.129 53800K .......... .......... .......... .......... .......... 42% 44.2M 1s +2024-04-05T03:51:23Z #15 2.129 53850K .......... .......... .......... .......... .......... 42% 50.8M 1s +2024-04-05T03:51:23Z #15 2.130 53900K .......... .......... .......... .......... .......... 42% 29.5M 1s +2024-04-05T03:51:23Z #15 2.132 53950K .......... .......... .......... .......... .......... 42% 118M 1s +2024-04-05T03:51:23Z #15 2.132 54000K .......... .......... .......... .......... .......... 42% 30.8M 1s +2024-04-05T03:51:23Z #15 2.134 54050K .......... .......... .......... .......... .......... 42% 42.7M 1s +2024-04-05T03:51:23Z #15 2.135 54100K .......... .......... .......... .......... .......... 42% 33.1M 1s +2024-04-05T03:51:23Z #15 2.137 54150K .......... .......... .......... .......... .......... 42% 32.9M 1s +2024-04-05T03:51:23Z #15 2.138 54200K .......... .......... .......... .......... .......... 42% 26.1M 1s +2024-04-05T03:51:23Z #15 2.140 54250K .......... .......... .......... .......... .......... 42% 34.9M 1s +2024-04-05T03:51:23Z #15 2.141 54300K .......... .......... .......... .......... .......... 42% 35.4M 1s +2024-04-05T03:51:23Z #15 2.143 54350K .......... .......... .......... .......... .......... 42% 28.6M 1s +2024-04-05T03:51:23Z #15 2.145 54400K .......... .......... .......... .......... .......... 42% 24.9M 1s +2024-04-05T03:51:23Z #15 2.147 54450K .......... .......... .......... .......... .......... 42% 70.2M 1s +2024-04-05T03:51:23Z #15 2.156 54500K .......... .......... .......... .......... .......... 43% 5.40M 1s +2024-04-05T03:51:23Z #15 2.156 54550K .......... .......... .......... .......... .......... 43% 77.5M 1s +2024-04-05T03:51:23Z #15 2.157 54600K .......... .......... .......... .......... .......... 43% 136M 1s +2024-04-05T03:51:23Z #15 2.157 54650K .......... .......... .......... .......... .......... 43% 116M 1s +2024-04-05T03:51:23Z #15 2.158 54700K .......... .......... .......... .......... .......... 43% 102M 1s +2024-04-05T03:51:23Z #15 2.158 54750K .......... .......... .......... .......... .......... 43% 131M 1s +2024-04-05T03:51:23Z #15 2.158 54800K .......... .......... .......... .......... .......... 43% 116M 1s +2024-04-05T03:51:23Z #15 2.161 54850K .......... .......... .......... .......... .......... 43% 131M 1s +2024-04-05T03:51:23Z #15 2.161 54900K .......... .......... .......... .......... .......... 43% 91.0M 1s +2024-04-05T03:51:23Z #15 2.161 54950K .......... .......... .......... .......... .......... 43% 127M 1s +2024-04-05T03:51:23Z #15 2.161 55000K .......... .......... .......... .......... .......... 43% 105M 1s +2024-04-05T03:51:23Z #15 2.161 55050K .......... .......... .......... .......... .......... 43% 99.7M 1s +2024-04-05T03:51:23Z #15 2.161 55100K .......... .......... .......... .......... .......... 43% 112M 1s +2024-04-05T03:51:23Z #15 2.161 55150K .......... .......... .......... .......... .......... 43% 112M 1s +2024-04-05T03:51:23Z #15 2.162 55200K .......... .......... .......... .......... .......... 43% 127M 1s +2024-04-05T03:51:23Z #15 2.162 55250K .......... .......... .......... .......... .......... 43% 106M 1s +2024-04-05T03:51:23Z #15 2.163 55300K .......... .......... .......... .......... .......... 43% 109M 1s +2024-04-05T03:51:23Z #15 2.163 55350K .......... .......... .......... .......... .......... 43% 134M 1s +2024-04-05T03:51:23Z #15 2.163 55400K .......... .......... .......... .......... .......... 43% 96.0M 1s +2024-04-05T03:51:23Z #15 2.164 55450K .......... .......... .......... .......... .......... 43% 99.8M 1s +2024-04-05T03:51:23Z #15 2.164 55500K .......... .......... .......... .......... .......... 43% 91.4M 1s +2024-04-05T03:51:23Z #15 2.166 55550K .......... .......... .......... .......... .......... 43% 67.6M 1s +2024-04-05T03:51:23Z #15 2.166 55600K .......... .......... .......... .......... .......... 43% 35.1M 1s +2024-04-05T03:51:23Z #15 2.167 55650K .......... .......... .......... .......... .......... 43% 30.0M 1s +2024-04-05T03:51:23Z #15 2.169 55700K .......... .......... .......... .......... .......... 43% 116M 1s +2024-04-05T03:51:23Z #15 2.169 55750K .......... .......... .......... .......... .......... 44% 124M 1s +2024-04-05T03:51:23Z #15 2.170 55800K .......... .......... .......... .......... .......... 44% 127M 1s +2024-04-05T03:51:23Z #15 2.170 55850K .......... .......... .......... .......... .......... 44% 142M 1s +2024-04-05T03:51:23Z #15 2.170 55900K .......... .......... .......... .......... .......... 44% 129M 1s +2024-04-05T03:51:23Z #15 2.171 55950K .......... .......... .......... .......... .......... 44% 108M 1s +2024-04-05T03:51:23Z #15 2.171 56000K .......... .......... .......... .......... .......... 44% 122M 1s +2024-04-05T03:51:23Z #15 2.172 56050K .......... .......... .......... .......... .......... 44% 130M 1s +2024-04-05T03:51:23Z #15 2.172 56100K .......... .......... .......... .......... .......... 44% 139M 1s +2024-04-05T03:51:23Z #15 2.173 56150K .......... .......... .......... .......... .......... 44% 107M 1s +2024-04-05T03:51:23Z #15 2.173 56200K .......... .......... .......... .......... .......... 44% 124M 1s +2024-04-05T03:51:23Z #15 2.173 56250K .......... .......... .......... .......... .......... 44% 135M 1s +2024-04-05T03:51:23Z #15 2.174 56300K .......... .......... .......... .......... .......... 44% 95.5M 1s +2024-04-05T03:51:23Z #15 2.174 56350K .......... .......... .......... .......... .......... 44% 112M 1s +2024-04-05T03:51:23Z #15 2.175 56400K .......... .......... .......... .......... .......... 44% 124M 1s +2024-04-05T03:51:23Z #15 2.175 56450K .......... .......... .......... .......... .......... 44% 122M 1s +2024-04-05T03:51:23Z #15 2.175 56500K .......... .......... .......... .......... .......... 44% 120M 1s +2024-04-05T03:51:23Z #15 2.176 56550K .......... .......... .......... .......... .......... 44% 126M 1s +2024-04-05T03:51:23Z #15 2.176 56600K .......... .......... .......... .......... .......... 44% 124M 1s +2024-04-05T03:51:23Z #15 2.177 56650K .......... .......... .......... .......... .......... 44% 117M 1s +2024-04-05T03:51:23Z #15 2.177 56700K .......... .......... .......... .......... .......... 44% 119M 1s +2024-04-05T03:51:23Z #15 2.178 56750K .......... .......... .......... .......... .......... 44% 141M 1s +2024-04-05T03:51:23Z #15 2.178 56800K .......... .......... .......... .......... .......... 44% 18.8M 1s +2024-04-05T03:51:23Z #15 2.181 56850K .......... .......... .......... .......... .......... 44% 18.5M 1s +2024-04-05T03:51:23Z #15 2.183 56900K .......... .......... .......... .......... .......... 44% 110M 1s +2024-04-05T03:51:23Z #15 2.183 56950K .......... .......... .......... .......... .......... 44% 105M 1s +2024-04-05T03:51:23Z #15 2.184 57000K .......... .......... .......... .......... .......... 44% 142M 1s +2024-04-05T03:51:23Z #15 2.184 57050K .......... .......... .......... .......... .......... 45% 135M 1s +2024-04-05T03:51:23Z #15 2.184 57100K .......... .......... .......... .......... .......... 45% 5.19M 1s +2024-04-05T03:51:23Z #15 2.196 57150K .......... .......... .......... .......... .......... 45% 43.0M 1s +2024-04-05T03:51:23Z #15 2.196 57200K .......... .......... .......... .......... .......... 45% 50.7M 1s +2024-04-05T03:51:23Z #15 2.196 57250K .......... .......... .......... .......... .......... 45% 77.1M 1s +2024-04-05T03:51:23Z #15 2.198 57300K .......... .......... .......... .......... .......... 45% 112M 1s +2024-04-05T03:51:23Z #15 2.198 57350K .......... .......... .......... .......... .......... 45% 113M 1s +2024-04-05T03:51:23Z #15 2.198 57400K .......... .......... .......... .......... .......... 45% 75.3M 1s +2024-04-05T03:51:23Z #15 2.202 57450K .......... .......... .......... .......... .......... 45% 109M 1s +2024-04-05T03:51:23Z #15 2.202 57500K .......... .......... .......... .......... .......... 45% 30.5M 1s +2024-04-05T03:51:23Z #15 2.202 57550K .......... .......... .......... .......... .......... 45% 120M 1s +2024-04-05T03:51:23Z #15 2.202 57600K .......... .......... .......... .......... .......... 45% 86.3M 1s +2024-04-05T03:51:23Z #15 2.202 57650K .......... .......... .......... .......... .......... 45% 168M 1s +2024-04-05T03:51:23Z #15 2.202 57700K .......... .......... .......... .......... .......... 45% 103M 1s +2024-04-05T03:51:23Z #15 2.202 57750K .......... .......... .......... .......... .......... 45% 117M 1s +2024-04-05T03:51:23Z #15 2.202 57800K .......... .......... .......... .......... .......... 45% 68.6M 1s +2024-04-05T03:51:23Z #15 2.203 57850K .......... .......... .......... .......... .......... 45% 56.2M 1s +2024-04-05T03:51:23Z #15 2.205 57900K .......... .......... .......... .......... .......... 45% 123M 1s +2024-04-05T03:51:23Z #15 2.205 57950K .......... .......... .......... .......... .......... 45% 119M 1s +2024-04-05T03:51:23Z #15 2.205 58000K .......... .......... .......... .......... .......... 45% 77.4M 1s +2024-04-05T03:51:23Z #15 2.205 58050K .......... .......... .......... .......... .......... 45% 81.0M 1s +2024-04-05T03:51:23Z #15 2.208 58100K .......... .......... .......... .......... .......... 45% 27.6M 1s +2024-04-05T03:51:23Z #15 2.208 58150K .......... .......... .......... .......... .......... 45% 97.8M 1s +2024-04-05T03:51:23Z #15 2.209 58200K .......... .......... .......... .......... .......... 45% 148M 1s +2024-04-05T03:51:23Z #15 2.209 58250K .......... .......... .......... .......... .......... 45% 82.0M 1s +2024-04-05T03:51:23Z #15 2.209 58300K .......... .......... .......... .......... .......... 46% 26.5M 1s +2024-04-05T03:51:23Z #15 2.211 58350K .......... .......... .......... .......... .......... 46% 115M 1s +2024-04-05T03:51:23Z #15 2.219 58400K .......... .......... .......... .......... .......... 46% 154M 1s +2024-04-05T03:51:23Z #15 2.219 58450K .......... .......... .......... .......... .......... 46% 166M 1s +2024-04-05T03:51:23Z #15 2.219 58500K .......... .......... .......... .......... .......... 46% 143M 1s +2024-04-05T03:51:23Z #15 2.219 58550K .......... .......... .......... .......... .......... 46% 136M 1s +2024-04-05T03:51:23Z #15 2.219 58600K .......... .......... .......... .......... .......... 46% 125M 1s +2024-04-05T03:51:23Z #15 2.219 58650K .......... .......... .......... .......... .......... 46% 126M 1s +2024-04-05T03:51:23Z #15 2.219 58700K .......... .......... .......... .......... .......... 46% 146M 1s +2024-04-05T03:51:23Z #15 2.219 58750K .......... .......... .......... .......... .......... 46% 123M 1s +2024-04-05T03:51:23Z #15 2.219 58800K .......... .......... .......... .......... .......... 46% 144M 1s +2024-04-05T03:51:23Z #15 2.219 58850K .......... .......... .......... .......... .......... 46% 113M 1s +2024-04-05T03:51:23Z #15 2.219 58900K .......... .......... .......... .......... .......... 46% 136M 1s +2024-04-05T03:51:23Z #15 2.219 58950K .......... .......... .......... .......... .......... 46% 136M 1s +2024-04-05T03:51:23Z #15 2.219 59000K .......... .......... .......... .......... .......... 46% 130M 1s +2024-04-05T03:51:23Z #15 2.219 59050K .......... .......... .......... .......... .......... 46% 158M 1s +2024-04-05T03:51:23Z #15 2.219 59100K .......... .......... .......... .......... .......... 46% 137M 1s +2024-04-05T03:51:23Z #15 2.219 59150K .......... .......... .......... .......... .......... 46% 117M 1s +2024-04-05T03:51:23Z #15 2.219 59200K .......... .......... .......... .......... .......... 46% 124M 1s +2024-04-05T03:51:23Z #15 2.219 59250K .......... .......... .......... .......... .......... 46% 117M 1s +2024-04-05T03:51:23Z #15 2.219 59300K .......... .......... .......... .......... .......... 46% 138M 1s +2024-04-05T03:51:23Z #15 2.219 59350K .......... .......... .......... .......... .......... 46% 122M 1s +2024-04-05T03:51:23Z #15 2.219 59400K .......... .......... .......... .......... .......... 46% 134M 1s +2024-04-05T03:51:23Z #15 2.219 59450K .......... .......... .......... .......... .......... 46% 125M 1s +2024-04-05T03:51:23Z #15 2.219 59500K .......... .......... .......... .......... .......... 46% 119M 1s +2024-04-05T03:51:23Z #15 2.220 59550K .......... .......... .......... .......... .......... 47% 131M 1s +2024-04-05T03:51:23Z #15 2.220 59600K .......... .......... .......... .......... .......... 47% 110M 1s +2024-04-05T03:51:23Z #15 2.221 59650K .......... .......... .......... .......... .......... 47% 147M 1s +2024-04-05T03:51:23Z #15 2.221 59700K .......... .......... .......... .......... .......... 47% 116M 1s +2024-04-05T03:51:23Z #15 2.222 59750K .......... .......... .......... .......... .......... 47% 111M 1s +2024-04-05T03:51:23Z #15 2.222 59800K .......... .......... .......... .......... .......... 47% 122M 1s +2024-04-05T03:51:23Z #15 2.222 59850K .......... .......... .......... .......... .......... 47% 146M 1s +2024-04-05T03:51:23Z #15 2.223 59900K .......... .......... .......... .......... .......... 47% 134M 1s +2024-04-05T03:51:23Z #15 2.223 59950K .......... .......... .......... .......... .......... 47% 119M 1s +2024-04-05T03:51:23Z #15 2.223 60000K .......... .......... .......... .......... .......... 47% 131M 1s +2024-04-05T03:51:23Z #15 2.224 60050K .......... .......... .......... .......... .......... 47% 129M 1s +2024-04-05T03:51:23Z #15 2.224 60100K .......... .......... .......... .......... .......... 47% 141M 1s +2024-04-05T03:51:23Z #15 2.225 60150K .......... .......... .......... .......... .......... 47% 128M 1s +2024-04-05T03:51:23Z #15 2.230 60200K .......... .......... .......... .......... .......... 47% 191M 1s +2024-04-05T03:51:23Z #15 2.230 60250K .......... .......... .......... .......... .......... 47% 149M 1s +2024-04-05T03:51:23Z #15 2.230 60300K .......... .......... .......... .......... .......... 47% 117M 1s +2024-04-05T03:51:23Z #15 2.230 60350K .......... .......... .......... .......... .......... 47% 137M 1s +2024-04-05T03:51:23Z #15 2.230 60400K .......... .......... .......... .......... .......... 47% 30.2M 1s +2024-04-05T03:51:23Z #15 2.230 60450K .......... .......... .......... .......... .......... 47% 175M 1s +2024-04-05T03:51:23Z #15 2.230 60500K .......... .......... .......... .......... .......... 47% 176M 1s +2024-04-05T03:51:23Z #15 2.230 60550K .......... .......... .......... .......... .......... 47% 140M 1s +2024-04-05T03:51:23Z #15 2.230 60600K .......... .......... .......... .......... .......... 47% 147M 1s +2024-04-05T03:51:23Z #15 2.230 60650K .......... .......... .......... .......... .......... 47% 150M 1s +2024-04-05T03:51:23Z #15 2.230 60700K .......... .......... .......... .......... .......... 47% 22.2M 1s +2024-04-05T03:51:23Z #15 2.232 60750K .......... .......... .......... .......... .......... 47% 121M 1s +2024-04-05T03:51:23Z #15 2.232 60800K .......... .......... .......... .......... .......... 47% 132M 1s +2024-04-05T03:51:23Z #15 2.232 60850K .......... .......... .......... .......... .......... 48% 138M 1s +2024-04-05T03:51:23Z #15 2.233 60900K .......... .......... .......... .......... .......... 48% 118M 1s +2024-04-05T03:51:23Z #15 2.233 60950K .......... .......... .......... .......... .......... 48% 121M 1s +2024-04-05T03:51:23Z #15 2.234 61000K .......... .......... .......... .......... .......... 48% 118M 1s +2024-04-05T03:51:23Z #15 2.236 61050K .......... .......... .......... .......... .......... 48% 159M 1s +2024-04-05T03:51:23Z #15 2.236 61100K .......... .......... .......... .......... .......... 48% 155M 1s +2024-04-05T03:51:23Z #15 2.236 61150K .......... .......... .......... .......... .......... 48% 28.1M 1s +2024-04-05T03:51:23Z #15 2.236 61200K .......... .......... .......... .......... .......... 48% 131M 1s +2024-04-05T03:51:23Z #15 2.237 61250K .......... .......... .......... .......... .......... 48% 133M 1s +2024-04-05T03:51:23Z #15 2.237 61300K .......... .......... .......... .......... .......... 48% 158M 1s +2024-04-05T03:51:23Z #15 2.237 61350K .......... .......... .......... .......... .......... 48% 21.2M 1s +2024-04-05T03:51:23Z #15 2.240 61400K .......... .......... .......... .......... .......... 48% 132M 1s +2024-04-05T03:51:23Z #15 2.240 61450K .......... .......... .......... .......... .......... 48% 132M 1s +2024-04-05T03:51:23Z #15 2.241 61500K .......... .......... .......... .......... .......... 48% 125M 1s +2024-04-05T03:51:23Z #15 2.241 61550K .......... .......... .......... .......... .......... 48% 115M 1s +2024-04-05T03:51:23Z #15 2.241 61600K .......... .......... .......... .......... .......... 48% 127M 1s +2024-04-05T03:51:23Z #15 2.242 61650K .......... .......... .......... .......... .......... 48% 24.7M 1s +2024-04-05T03:51:23Z #15 2.246 61700K .......... .......... .......... .......... .......... 48% 9.31M 1s +2024-04-05T03:51:23Z #15 2.256 61750K .......... .......... .......... .......... .......... 48% 126M 1s +2024-04-05T03:51:23Z #15 2.256 61800K .......... .......... .......... .......... .......... 48% 176M 1s +2024-04-05T03:51:23Z #15 2.256 61850K .......... .......... .......... .......... .......... 48% 95.9M 1s +2024-04-05T03:51:23Z #15 2.256 61900K .......... .......... .......... .......... .......... 48% 177M 1s +2024-04-05T03:51:23Z #15 2.256 61950K .......... .......... .......... .......... .......... 48% 84.6M 1s +2024-04-05T03:51:23Z #15 2.256 62000K .......... .......... .......... .......... .......... 48% 171M 1s +2024-04-05T03:51:23Z #15 2.256 62050K .......... .......... .......... .......... .......... 48% 180M 1s +2024-04-05T03:51:23Z #15 2.256 62100K .......... .......... .......... .......... .......... 49% 181M 1s +2024-04-05T03:51:23Z #15 2.256 62150K .......... .......... .......... .......... .......... 49% 156M 1s +2024-04-05T03:51:23Z #15 2.256 62200K .......... .......... .......... .......... .......... 49% 177M 1s +2024-04-05T03:51:23Z #15 2.256 62250K .......... .......... .......... .......... .......... 49% 161M 1s +2024-04-05T03:51:23Z #15 2.256 62300K .......... .......... .......... .......... .......... 49% 182M 1s +2024-04-05T03:51:23Z #15 2.256 62350K .......... .......... .......... .......... .......... 49% 122M 1s +2024-04-05T03:51:23Z #15 2.256 62400K .......... .......... .......... .......... .......... 49% 8.30M 1s +2024-04-05T03:51:23Z #15 2.259 62450K .......... .......... .......... .......... .......... 49% 130M 1s +2024-04-05T03:51:23Z #15 2.260 62500K .......... .......... .......... .......... .......... 49% 136M 1s +2024-04-05T03:51:23Z #15 2.260 62550K .......... .......... .......... .......... .......... 49% 134M 1s +2024-04-05T03:51:23Z #15 2.260 62600K .......... .......... .......... .......... .......... 49% 112M 1s +2024-04-05T03:51:23Z #15 2.261 62650K .......... .......... .......... .......... .......... 49% 158M 1s +2024-04-05T03:51:23Z #15 2.261 62700K .......... .......... .......... .......... .......... 49% 125M 1s +2024-04-05T03:51:23Z #15 2.262 62750K .......... .......... .......... .......... .......... 49% 107M 1s +2024-04-05T03:51:23Z #15 2.262 62800K .......... .......... .......... .......... .......... 49% 118M 1s +2024-04-05T03:51:23Z #15 2.262 62850K .......... .......... .......... .......... .......... 49% 131M 1s +2024-04-05T03:51:23Z #15 2.263 62900K .......... .......... .......... .......... .......... 49% 129M 1s +2024-04-05T03:51:23Z #15 2.263 62950K .......... .......... .......... .......... .......... 49% 131M 1s +2024-04-05T03:51:23Z #15 2.263 63000K .......... .......... .......... .......... .......... 49% 113M 1s +2024-04-05T03:51:23Z #15 2.264 63050K .......... .......... .......... .......... .......... 49% 131M 1s +2024-04-05T03:51:23Z #15 2.264 63100K .......... .......... .......... .......... .......... 49% 147M 1s +2024-04-05T03:51:23Z #15 2.264 63150K .......... .......... .......... .......... .......... 49% 129M 1s +2024-04-05T03:51:23Z #15 2.265 63200K .......... .......... .......... .......... .......... 49% 105M 1s +2024-04-05T03:51:23Z #15 2.265 63250K .......... .......... .......... .......... .......... 49% 137M 1s +2024-04-05T03:51:23Z #15 2.266 63300K .......... .......... .......... .......... .......... 49% 49.2M 1s +2024-04-05T03:51:23Z #15 2.267 63350K .......... .......... .......... .......... .......... 50% 128M 1s +2024-04-05T03:51:23Z #15 2.267 63400K .......... .......... .......... .......... .......... 50% 112M 1s +2024-04-05T03:51:23Z #15 2.268 63450K .......... .......... .......... .......... .......... 50% 132M 1s +2024-04-05T03:51:23Z #15 2.268 63500K .......... .......... .......... .......... .......... 50% 139M 1s +2024-04-05T03:51:23Z #15 2.268 63550K .......... .......... .......... .......... .......... 50% 145M 1s +2024-04-05T03:51:23Z #15 2.269 63600K .......... .......... .......... .......... .......... 50% 110M 1s +2024-04-05T03:51:23Z #15 2.269 63650K .......... .......... .......... .......... .......... 50% 132M 1s +2024-04-05T03:51:23Z #15 2.269 63700K .......... .......... .......... .......... .......... 50% 60.2M 1s +2024-04-05T03:51:23Z #15 2.271 63750K .......... .......... .......... .......... .......... 50% 125M 1s +2024-04-05T03:51:23Z #15 2.271 63800K .......... .......... .......... .......... .......... 50% 110M 1s +2024-04-05T03:51:23Z #15 2.271 63850K .......... .......... .......... .......... .......... 50% 144M 1s +2024-04-05T03:51:23Z #15 2.272 63900K .......... .......... .......... .......... .......... 50% 128M 1s +2024-04-05T03:51:23Z #15 2.272 63950K .......... .......... .......... .......... .......... 50% 113M 1s +2024-04-05T03:51:23Z #15 2.272 64000K .......... .......... .......... .......... .......... 50% 131M 1s +2024-04-05T03:51:23Z #15 2.273 64050K .......... .......... .......... .......... .......... 50% 130M 1s +2024-04-05T03:51:23Z #15 2.273 64100K .......... .......... .......... .......... .......... 50% 144M 1s +2024-04-05T03:51:23Z #15 2.273 64150K .......... .......... .......... .......... .......... 50% 115M 1s +2024-04-05T03:51:23Z #15 2.274 64200K .......... .......... .......... .......... .......... 50% 86.0M 1s +2024-04-05T03:51:23Z #15 2.274 64250K .......... .......... .......... .......... .......... 50% 119M 1s +2024-04-05T03:51:23Z #15 2.275 64300K .......... .......... .......... .......... .......... 50% 133M 1s +2024-04-05T03:51:23Z #15 2.275 64350K .......... .......... .......... .......... .......... 50% 120M 1s +2024-04-05T03:51:23Z #15 2.275 64400K .......... .......... .......... .......... .......... 50% 132M 1s +2024-04-05T03:51:23Z #15 2.276 64450K .......... .......... .......... .......... .......... 50% 136M 1s +2024-04-05T03:51:23Z #15 2.276 64500K .......... .......... .......... .......... .......... 50% 123M 1s +2024-04-05T03:51:23Z #15 2.277 64550K .......... .......... .......... .......... .......... 50% 68.4M 1s +2024-04-05T03:51:23Z #15 2.277 64600K .......... .......... .......... .......... .......... 50% 120M 1s +2024-04-05T03:51:23Z #15 2.278 64650K .......... .......... .......... .......... .......... 51% 137M 1s +2024-04-05T03:51:23Z #15 2.278 64700K .......... .......... .......... .......... .......... 51% 126M 1s +2024-04-05T03:51:23Z #15 2.278 64750K .......... .......... .......... .......... .......... 51% 106M 1s +2024-04-05T03:51:23Z #15 2.279 64800K .......... .......... .......... .......... .......... 51% 108M 1s +2024-04-05T03:51:23Z #15 2.279 64850K .......... .......... .......... .......... .......... 51% 127M 1s +2024-04-05T03:51:23Z #15 2.280 64900K .......... .......... .......... .......... .......... 51% 128M 1s +2024-04-05T03:51:23Z #15 2.280 64950K .......... .......... .......... .......... .......... 51% 115M 1s +2024-04-05T03:51:23Z #15 2.281 65000K .......... .......... .......... .......... .......... 51% 136M 1s +2024-04-05T03:51:23Z #15 2.281 65050K .......... .......... .......... .......... .......... 51% 102M 1s +2024-04-05T03:51:23Z #15 2.281 65100K .......... .......... .......... .......... .......... 51% 92.1M 1s +2024-04-05T03:51:23Z #15 2.282 65150K .......... .......... .......... .......... .......... 51% 131M 1s +2024-04-05T03:51:23Z #15 2.282 65200K .......... .......... .......... .......... .......... 51% 140M 1s +2024-04-05T03:51:23Z #15 2.283 65250K .......... .......... .......... .......... .......... 51% 101M 1s +2024-04-05T03:51:23Z #15 2.283 65300K .......... .......... .......... .......... .......... 51% 109M 1s +2024-04-05T03:51:23Z #15 2.284 65350K .......... .......... .......... .......... .......... 51% 131M 1s +2024-04-05T03:51:23Z #15 2.284 65400K .......... .......... .......... .......... .......... 51% 137M 1s +2024-04-05T03:51:23Z #15 2.284 65450K .......... .......... .......... .......... .......... 51% 129M 1s +2024-04-05T03:51:23Z #15 2.285 65500K .......... .......... .......... .......... .......... 51% 117M 1s +2024-04-05T03:51:23Z #15 2.286 65550K .......... .......... .......... .......... .......... 51% 121M 1s +2024-04-05T03:51:23Z #15 2.286 65600K .......... .......... .......... .......... .......... 51% 103M 1s +2024-04-05T03:51:23Z #15 2.286 65650K .......... .......... .......... .......... .......... 51% 134M 1s +2024-04-05T03:51:23Z #15 2.286 65700K .......... .......... .......... .......... .......... 51% 120M 1s +2024-04-05T03:51:23Z #15 2.287 65750K .......... .......... .......... .......... .......... 51% 101M 1s +2024-04-05T03:51:23Z #15 2.287 65800K .......... .......... .......... .......... .......... 51% 144M 1s +2024-04-05T03:51:23Z #15 2.288 65850K .......... .......... .......... .......... .......... 51% 124M 1s +2024-04-05T03:51:23Z #15 2.288 65900K .......... .......... .......... .......... .......... 52% 109M 1s +2024-04-05T03:51:23Z #15 2.288 65950K .......... .......... .......... .......... .......... 52% 125M 1s +2024-04-05T03:51:23Z #15 2.289 66000K .......... .......... .......... .......... .......... 52% 110M 1s +2024-04-05T03:51:23Z #15 2.290 66050K .......... .......... .......... .......... .......... 52% 149M 1s +2024-04-05T03:51:23Z #15 2.290 66100K .......... .......... .......... .......... .......... 52% 86.8M 1s +2024-04-05T03:51:23Z #15 2.290 66150K .......... .......... .......... .......... .......... 52% 130M 1s +2024-04-05T03:51:23Z #15 2.290 66200K .......... .......... .......... .......... .......... 52% 116M 1s +2024-04-05T03:51:23Z #15 2.291 66250K .......... .......... .......... .......... .......... 52% 119M 1s +2024-04-05T03:51:23Z #15 2.291 66300K .......... .......... .......... .......... .......... 52% 102M 1s +2024-04-05T03:51:23Z #15 2.292 66350K .......... .......... .......... .......... .......... 52% 141M 1s +2024-04-05T03:51:23Z #15 2.292 66400K .......... .......... .......... .......... .......... 52% 129M 1s +2024-04-05T03:51:23Z #15 2.293 66450K .......... .......... .......... .......... .......... 52% 120M 1s +2024-04-05T03:51:23Z #15 2.293 66500K .......... .......... .......... .......... .......... 52% 99.9M 1s +2024-04-05T03:51:23Z #15 2.293 66550K .......... .......... .......... .......... .......... 52% 124M 1s +2024-04-05T03:51:23Z #15 2.294 66600K .......... .......... .......... .......... .......... 52% 130M 1s +2024-04-05T03:51:23Z #15 2.294 66650K .......... .......... .......... .......... .......... 52% 125M 1s +2024-04-05T03:51:23Z #15 2.295 66700K .......... .......... .......... .......... .......... 52% 104M 1s +2024-04-05T03:51:23Z #15 2.295 66750K .......... .......... .......... .......... .......... 52% 122M 1s +2024-04-05T03:51:23Z #15 2.296 66800K .......... .......... .......... .......... .......... 52% 117M 1s +2024-04-05T03:51:23Z #15 2.296 66850K .......... .......... .......... .......... .......... 52% 116M 1s +2024-04-05T03:51:23Z #15 2.296 66900K .......... .......... .......... .......... .......... 52% 105M 1s +2024-04-05T03:51:23Z #15 2.297 66950K .......... .......... .......... .......... .......... 52% 122M 1s +2024-04-05T03:51:23Z #15 2.297 67000K .......... .......... .......... .......... .......... 52% 107M 1s +2024-04-05T03:51:23Z #15 2.298 67050K .......... .......... .......... .......... .......... 52% 102M 1s +2024-04-05T03:51:23Z #15 2.298 67100K .......... .......... .......... .......... .......... 52% 86.1M 1s +2024-04-05T03:51:23Z #15 2.299 67150K .......... .......... .......... .......... .......... 53% 106M 1s +2024-04-05T03:51:23Z #15 2.299 67200K .......... .......... .......... .......... .......... 53% 131M 1s +2024-04-05T03:51:23Z #15 2.300 67250K .......... .......... .......... .......... .......... 53% 106M 1s +2024-04-05T03:51:23Z #15 2.300 67300K .......... .......... .......... .......... .......... 53% 104M 1s +2024-04-05T03:51:23Z #15 2.301 67350K .......... .......... .......... .......... .......... 53% 99.7M 1s +2024-04-05T03:51:23Z #15 2.301 67400K .......... .......... .......... .......... .......... 53% 88.0M 1s +2024-04-05T03:51:23Z #15 2.301 67450K .......... .......... .......... .......... .......... 53% 96.6M 1s +2024-04-05T03:51:23Z #15 2.302 67500K .......... .......... .......... .......... .......... 53% 106M 1s +2024-04-05T03:51:23Z #15 2.302 67550K .......... .......... .......... .......... .......... 53% 96.1M 1s +2024-04-05T03:51:23Z #15 2.303 67600K .......... .......... .......... .......... .......... 53% 111M 1s +2024-04-05T03:51:23Z #15 2.304 67650K .......... .......... .......... .......... .......... 53% 85.9M 1s +2024-04-05T03:51:23Z #15 2.304 67700K .......... .......... .......... .......... .......... 53% 114M 1s +2024-04-05T03:51:23Z #15 2.304 67750K .......... .......... .......... .......... .......... 53% 105M 1s +2024-04-05T03:51:23Z #15 2.305 67800K .......... .......... .......... .......... .......... 53% 51.1M 1s +2024-04-05T03:51:23Z #15 2.306 67850K .......... .......... .......... .......... .......... 53% 90.9M 1s +2024-04-05T03:51:23Z #15 2.306 67900K .......... .......... .......... .......... .......... 53% 114M 1s +2024-04-05T03:51:23Z #15 2.307 67950K .......... .......... .......... .......... .......... 53% 84.2M 1s +2024-04-05T03:51:23Z #15 2.307 68000K .......... .......... .......... .......... .......... 53% 76.7M 1s +2024-04-05T03:51:23Z #15 2.308 68050K .......... .......... .......... .......... .......... 53% 67.8M 1s +2024-04-05T03:51:23Z #15 2.309 68100K .......... .......... .......... .......... .......... 53% 104M 1s +2024-04-05T03:51:23Z #15 2.309 68150K .......... .......... .......... .......... .......... 53% 117M 1s +2024-04-05T03:51:23Z #15 2.310 68200K .......... .......... .......... .......... .......... 53% 92.1M 1s +2024-04-05T03:51:23Z #15 2.310 68250K .......... .......... .......... .......... .......... 53% 77.7M 1s +2024-04-05T03:51:23Z #15 2.311 68300K .......... .......... .......... .......... .......... 53% 95.8M 1s +2024-04-05T03:51:23Z #15 2.312 68350K .......... .......... .......... .......... .......... 53% 118M 1s +2024-04-05T03:51:23Z #15 2.312 68400K .......... .......... .......... .......... .......... 53% 25.6M 1s +2024-04-05T03:51:23Z #15 2.319 68450K .......... .......... .......... .......... .......... 54% 147M 1s +2024-04-05T03:51:23Z #15 2.319 68500K .......... .......... .......... .......... .......... 54% 174M 1s +2024-04-05T03:51:23Z #15 2.319 68550K .......... .......... .......... .......... .......... 54% 173M 1s +2024-04-05T03:51:23Z #15 2.319 68600K .......... .......... .......... .......... .......... 54% 147M 1s +2024-04-05T03:51:23Z #15 2.319 68650K .......... .......... .......... .......... .......... 54% 170M 1s +2024-04-05T03:51:23Z #15 2.319 68700K .......... .......... .......... .......... .......... 54% 179M 1s +2024-04-05T03:51:23Z #15 2.319 68750K .......... .......... .......... .......... .......... 54% 169M 1s +2024-04-05T03:51:23Z #15 2.319 68800K .......... .......... .......... .......... .......... 54% 155M 1s +2024-04-05T03:51:23Z #15 2.319 68850K .......... .......... .......... .......... .......... 54% 176M 1s +2024-04-05T03:51:23Z #15 2.319 68900K .......... .......... .......... .......... .......... 54% 168M 1s +2024-04-05T03:51:23Z #15 2.319 68950K .......... .......... .......... .......... .......... 54% 170M 1s +2024-04-05T03:51:23Z #15 2.319 69000K .......... .......... .......... .......... .......... 54% 144M 1s +2024-04-05T03:51:23Z #15 2.319 69050K .......... .......... .......... .......... .......... 54% 172M 1s +2024-04-05T03:51:23Z #15 2.319 69100K .......... .......... .......... .......... .......... 54% 162M 1s +2024-04-05T03:51:23Z #15 2.319 69150K .......... .......... .......... .......... .......... 54% 171M 1s +2024-04-05T03:51:23Z #15 2.319 69200K .......... .......... .......... .......... .......... 54% 150M 1s +2024-04-05T03:51:23Z #15 2.319 69250K .......... .......... .......... .......... .......... 54% 176M 1s +2024-04-05T03:51:23Z #15 2.319 69300K .......... .......... .......... .......... .......... 54% 146M 1s +2024-04-05T03:51:23Z #15 2.319 69350K .......... .......... .......... .......... .......... 54% 86.0M 1s +2024-04-05T03:51:23Z #15 2.320 69400K .......... .......... .......... .......... .......... 54% 27.5M 1s +2024-04-05T03:51:23Z #15 2.322 69450K .......... .......... .......... .......... .......... 54% 147M 1s +2024-04-05T03:51:23Z #15 2.322 69500K .......... .......... .......... .......... .......... 54% 205K 1s +2024-04-05T03:51:23Z #15 2.566 69550K .......... .......... .......... .......... .......... 54% 24.1M 1s +2024-04-05T03:51:23Z #15 2.568 69600K .......... .......... .......... .......... .......... 54% 17.3M 1s +2024-04-05T03:51:23Z #15 2.571 69650K .......... .......... .......... .......... .......... 54% 18.6M 1s +2024-04-05T03:51:23Z #15 2.574 69700K .......... .......... .......... .......... .......... 55% 24.5M 1s +2024-04-05T03:51:23Z #15 2.577 69750K .......... .......... .......... .......... .......... 55% 18.0M 1s +2024-04-05T03:51:23Z #15 2.578 69800K .......... .......... .......... .......... .......... 55% 16.3M 1s +2024-04-05T03:51:23Z #15 2.581 69850K .......... .......... .......... .......... .......... 55% 17.5M 1s +2024-04-05T03:51:23Z #15 2.584 69900K .......... .......... .......... .......... .......... 55% 66.9M 1s +2024-04-05T03:51:23Z #15 2.584 69950K .......... .......... .......... .......... .......... 55% 84.2M 1s +2024-04-05T03:51:23Z #15 2.585 70000K .......... .......... .......... .......... .......... 55% 26.1M 1s +2024-04-05T03:51:23Z #15 2.587 70050K .......... .......... .......... .......... .......... 55% 82.7M 1s +2024-04-05T03:51:23Z #15 2.587 70100K .......... .......... .......... .......... .......... 55% 81.1M 1s +2024-04-05T03:51:23Z #15 2.588 70150K .......... .......... .......... .......... .......... 55% 68.7M 1s +2024-04-05T03:51:23Z #15 2.589 70200K .......... .......... .......... .......... .......... 55% 120M 1s +2024-04-05T03:51:23Z #15 2.589 70250K .......... .......... .......... .......... .......... 55% 147M 1s +2024-04-05T03:51:23Z #15 2.589 70300K .......... .......... .......... .......... .......... 55% 151M 1s +2024-04-05T03:51:23Z #15 2.590 70350K .......... .......... .......... .......... .......... 55% 114M 1s +2024-04-05T03:51:23Z #15 2.590 70400K .......... .......... .......... .......... .......... 55% 136M 1s +2024-04-05T03:51:23Z #15 2.591 70450K .......... .......... .......... .......... .......... 55% 147M 1s +2024-04-05T03:51:23Z #15 2.591 70500K .......... .......... .......... .......... .......... 55% 117M 1s +2024-04-05T03:51:23Z #15 2.591 70550K .......... .......... .......... .......... .......... 55% 145M 1s +2024-04-05T03:51:23Z #15 2.592 70600K .......... .......... .......... .......... .......... 55% 131M 1s +2024-04-05T03:51:23Z #15 2.592 70650K .......... .......... .......... .......... .......... 55% 145M 1s +2024-04-05T03:51:23Z #15 2.593 70700K .......... .......... .......... .......... .......... 55% 58.7M 1s +2024-04-05T03:51:23Z #15 2.593 70750K .......... .......... .......... .......... .......... 55% 107M 1s +2024-04-05T03:51:23Z #15 2.594 70800K .......... .......... .......... .......... .......... 55% 136M 1s +2024-04-05T03:51:23Z #15 2.594 70850K .......... .......... .......... .......... .......... 55% 136M 1s +2024-04-05T03:51:23Z #15 2.595 70900K .......... .......... .......... .......... .......... 55% 115M 1s +2024-04-05T03:51:23Z #15 2.595 70950K .......... .......... .......... .......... .......... 56% 136M 1s +2024-04-05T03:51:23Z #15 2.595 71000K .......... .......... .......... .......... .......... 56% 139M 1s +2024-04-05T03:51:23Z #15 2.596 71050K .......... .......... .......... .......... .......... 56% 143M 1s +2024-04-05T03:51:23Z #15 2.596 71100K .......... .......... .......... .......... .......... 56% 139M 1s +2024-04-05T03:51:23Z #15 2.596 71150K .......... .......... .......... .......... .......... 56% 150M 1s +2024-04-05T03:51:23Z #15 2.597 71200K .......... .......... .......... .......... .......... 56% 123M 1s +2024-04-05T03:51:23Z #15 2.597 71250K .......... .......... .......... .......... .......... 56% 67.8M 1s +2024-04-05T03:51:23Z #15 2.598 71300K .......... .......... .......... .......... .......... 56% 118M 1s +2024-04-05T03:51:23Z #15 2.598 71350K .......... .......... .......... .......... .......... 56% 111M 1s +2024-04-05T03:51:23Z #15 2.598 71400K .......... .......... .......... .......... .......... 56% 127M 1s +2024-04-05T03:51:23Z #15 2.599 71450K .......... .......... .......... .......... .......... 56% 137M 1s +2024-04-05T03:51:23Z #15 2.599 71500K .......... .......... .......... .......... .......... 56% 131M 1s +2024-04-05T03:51:23Z #15 2.600 71550K .......... .......... .......... .......... .......... 56% 144M 1s +2024-04-05T03:51:23Z #15 2.600 71600K .......... .......... .......... .......... .......... 56% 116M 1s +2024-04-05T03:51:23Z #15 2.601 71650K .......... .......... .......... .......... .......... 56% 142M 1s +2024-04-05T03:51:23Z #15 2.601 71700K .......... .......... .......... .......... .......... 56% 135M 1s +2024-04-05T03:51:23Z #15 2.601 71750K .......... .......... .......... .......... .......... 56% 103M 1s +2024-04-05T03:51:23Z #15 2.602 71800K .......... .......... .......... .......... .......... 56% 131M 1s +2024-04-05T03:51:23Z #15 2.602 71850K .......... .......... .......... .......... .......... 56% 73.7M 1s +2024-04-05T03:51:23Z #15 2.603 71900K .......... .......... .......... .......... .......... 56% 147M 1s +2024-04-05T03:51:23Z #15 2.603 71950K .......... .......... .......... .......... .......... 56% 122M 1s +2024-04-05T03:51:23Z #15 2.604 72000K .......... .......... .......... .......... .......... 56% 136M 1s +2024-04-05T03:51:23Z #15 2.604 72050K .......... .......... .......... .......... .......... 56% 148M 1s +2024-04-05T03:51:23Z #15 2.604 72100K .......... .......... .......... .......... .......... 56% 154M 1s +2024-04-05T03:51:23Z #15 2.604 72150K .......... .......... .......... .......... .......... 56% 122M 1s +2024-04-05T03:51:23Z #15 2.605 72200K .......... .......... .......... .......... .......... 56% 150M 1s +2024-04-05T03:51:23Z #15 2.605 72250K .......... .......... .......... .......... .......... 57% 125M 1s +2024-04-05T03:51:23Z #15 2.606 72300K .......... .......... .......... .......... .......... 57% 118M 1s +2024-04-05T03:51:23Z #15 2.606 72350K .......... .......... .......... .......... .......... 57% 63.9M 1s +2024-04-05T03:51:23Z #15 2.608 72400K .......... .......... .......... .......... .......... 57% 25.8M 1s +2024-04-05T03:51:23Z #15 2.609 72450K .......... .......... .......... .......... .......... 57% 72.9M 1s +2024-04-05T03:51:23Z #15 2.609 72500K .......... .......... .......... .......... .......... 57% 64.9M 1s +2024-04-05T03:51:23Z #15 2.610 72550K .......... .......... .......... .......... .......... 57% 51.3M 1s +2024-04-05T03:51:23Z #15 2.611 72600K .......... .......... .......... .......... .......... 57% 50.6M 1s +2024-04-05T03:51:23Z #15 2.612 72650K .......... .......... .......... .......... .......... 57% 21.6M 1s +2024-04-05T03:51:23Z #15 2.614 72700K .......... .......... .......... .......... .......... 57% 39.5M 1s +2024-04-05T03:51:23Z #15 2.615 72750K .......... .......... .......... .......... .......... 57% 25.2M 1s +2024-04-05T03:51:23Z #15 2.617 72800K .......... .......... .......... .......... .......... 57% 72.0M 1s +2024-04-05T03:51:23Z #15 2.618 72850K .......... .......... .......... .......... .......... 57% 21.3M 1s +2024-04-05T03:51:23Z #15 2.621 72900K .......... .......... .......... .......... .......... 57% 131M 1s +2024-04-05T03:51:23Z #15 2.621 72950K .......... .......... .......... .......... .......... 57% 117M 1s +2024-04-05T03:51:23Z #15 2.621 73000K .......... .......... .......... .......... .......... 57% 118M 1s +2024-04-05T03:51:23Z #15 2.621 73050K .......... .......... .......... .......... .......... 57% 82.3M 1s +2024-04-05T03:51:23Z #15 2.622 73100K .......... .......... .......... .......... .......... 57% 129M 1s +2024-04-05T03:51:23Z #15 2.622 73150K .......... .......... .......... .......... .......... 57% 95.9M 1s +2024-04-05T03:51:23Z #15 2.623 73200K .......... .......... .......... .......... .......... 57% 19.4M 1s +2024-04-05T03:51:23Z #15 2.625 73250K .......... .......... .......... .......... .......... 57% 68.8M 1s +2024-04-05T03:51:23Z #15 2.626 73300K .......... .......... .......... .......... .......... 57% 21.3M 1s +2024-04-05T03:51:23Z #15 2.628 73350K .......... .......... .......... .......... .......... 57% 145M 1s +2024-04-05T03:51:23Z #15 2.629 73400K .......... .......... .......... .......... .......... 57% 109M 1s +2024-04-05T03:51:23Z #15 2.629 73450K .......... .......... .......... .......... .......... 57% 92.2M 1s +2024-04-05T03:51:23Z #15 2.630 73500K .......... .......... .......... .......... .......... 58% 31.5M 1s +2024-04-05T03:51:23Z #15 2.631 73550K .......... .......... .......... .......... .......... 58% 33.2M 1s +2024-04-05T03:51:23Z #15 2.634 73600K .......... .......... .......... .......... .......... 58% 39.1M 1s +2024-04-05T03:51:23Z #15 2.634 73650K .......... .......... .......... .......... .......... 58% 36.3M 1s +2024-04-05T03:51:23Z #15 2.635 73700K .......... .......... .......... .......... .......... 58% 48.1M 1s +2024-04-05T03:51:23Z #15 2.636 73750K .......... .......... .......... .......... .......... 58% 42.5M 1s +2024-04-05T03:51:23Z #15 2.640 73800K .......... .......... .......... .......... .......... 58% 27.5M 1s +2024-04-05T03:51:23Z #15 2.640 73850K .......... .......... .......... .......... .......... 58% 44.1M 1s +2024-04-05T03:51:23Z #15 2.642 73900K .......... .......... .......... .......... .......... 58% 101M 1s +2024-04-05T03:51:23Z #15 2.642 73950K .......... .......... .......... .......... .......... 58% 155M 1s +2024-04-05T03:51:23Z #15 2.642 74000K .......... .......... .......... .......... .......... 58% 130M 1s +2024-04-05T03:51:23Z #15 2.642 74050K .......... .......... .......... .......... .......... 58% 139M 1s +2024-04-05T03:51:23Z #15 2.642 74100K .......... .......... .......... .......... .......... 58% 135M 1s +2024-04-05T03:51:23Z #15 2.643 74150K .......... .......... .......... .......... .......... 58% 162M 1s +2024-04-05T03:51:23Z #15 2.643 74200K .......... .......... .......... .......... .......... 58% 133M 1s +2024-04-05T03:51:23Z #15 2.643 74250K .......... .......... .......... .......... .......... 58% 136M 1s +2024-04-05T03:51:23Z #15 2.643 74300K .......... .......... .......... .......... .......... 58% 70.5M 1s +2024-04-05T03:51:23Z #15 2.644 74350K .......... .......... .......... .......... .......... 58% 109M 1s +2024-04-05T03:51:23Z #15 2.645 74400K .......... .......... .......... .......... .......... 58% 150M 1s +2024-04-05T03:51:23Z #15 2.645 74450K .......... .......... .......... .......... .......... 58% 152M 1s +2024-04-05T03:51:23Z #15 2.645 74500K .......... .......... .......... .......... .......... 58% 129M 1s +2024-04-05T03:51:23Z #15 2.645 74550K .......... .......... .......... .......... .......... 58% 131M 1s +2024-04-05T03:51:23Z #15 2.646 74600K .......... .......... .......... .......... .......... 58% 128M 1s +2024-04-05T03:51:23Z #15 2.646 74650K .......... .......... .......... .......... .......... 58% 139M 1s +2024-04-05T03:51:23Z #15 2.647 74700K .......... .......... .......... .......... .......... 58% 139M 1s +2024-04-05T03:51:23Z #15 2.647 74750K .......... .......... .......... .......... .......... 58% 63.7M 1s +2024-04-05T03:51:23Z #15 2.648 74800K .......... .......... .......... .......... .......... 59% 144M 1s +2024-04-05T03:51:23Z #15 2.648 74850K .......... .......... .......... .......... .......... 59% 103M 1s +2024-04-05T03:51:23Z #15 2.649 74900K .......... .......... .......... .......... .......... 59% 151M 1s +2024-04-05T03:51:23Z #15 2.649 74950K .......... .......... .......... .......... .......... 59% 132M 1s +2024-04-05T03:51:23Z #15 2.649 75000K .......... .......... .......... .......... .......... 59% 153M 1s +2024-04-05T03:51:23Z #15 2.650 75050K .......... .......... .......... .......... .......... 59% 137M 1s +2024-04-05T03:51:23Z #15 2.650 75100K .......... .......... .......... .......... .......... 59% 124M 1s +2024-04-05T03:51:23Z #15 2.650 75150K .......... .......... .......... .......... .......... 59% 117M 1s +2024-04-05T03:51:23Z #15 2.651 75200K .......... .......... .......... .......... .......... 59% 131M 1s +2024-04-05T03:51:23Z #15 2.651 75250K .......... .......... .......... .......... .......... 59% 130M 1s +2024-04-05T03:51:23Z #15 2.651 75300K .......... .......... .......... .......... .......... 59% 126M 1s +2024-04-05T03:51:23Z #15 2.652 75350K .......... .......... .......... .......... .......... 59% 55.9M 1s +2024-04-05T03:51:23Z #15 2.653 75400K .......... .......... .......... .......... .......... 59% 24.3M 1s +2024-04-05T03:51:23Z #15 2.655 75450K .......... .......... .......... .......... .......... 59% 89.6M 1s +2024-04-05T03:51:23Z #15 2.655 75500K .......... .......... .......... .......... .......... 59% 143M 1s +2024-04-05T03:51:23Z #15 2.656 75550K .......... .......... .......... .......... .......... 59% 49.4M 1s +2024-04-05T03:51:23Z #15 2.657 75600K .......... .......... .......... .......... .......... 59% 66.1M 1s +2024-04-05T03:51:23Z #15 2.657 75650K .......... .......... .......... .......... .......... 59% 64.6M 1s +2024-04-05T03:51:23Z #15 2.658 75700K .......... .......... .......... .......... .......... 59% 22.1M 1s +2024-04-05T03:51:23Z #15 2.660 75750K .......... .......... .......... .......... .......... 59% 88.3M 1s +2024-04-05T03:51:23Z #15 2.661 75800K .......... .......... .......... .......... .......... 59% 73.4M 1s +2024-04-05T03:51:23Z #15 2.662 75850K .......... .......... .......... .......... .......... 59% 58.4M 1s +2024-04-05T03:51:23Z #15 2.663 75900K .......... .......... .......... .......... .......... 59% 26.4M 1s +2024-04-05T03:51:23Z #15 2.664 75950K .......... .......... .......... .......... .......... 59% 132M 1s +2024-04-05T03:51:23Z #15 2.664 76000K .......... .......... .......... .......... .......... 59% 80.6M 1s +2024-04-05T03:51:23Z #15 2.665 76050K .......... .......... .......... .......... .......... 60% 20.4M 1s +2024-04-05T03:51:23Z #15 2.670 76100K .......... .......... .......... .......... .......... 60% 148M 1s +2024-04-05T03:51:23Z #15 2.670 76150K .......... .......... .......... .......... .......... 60% 92.9M 1s +2024-04-05T03:51:23Z #15 2.670 76200K .......... .......... .......... .......... .......... 60% 85.6M 1s +2024-04-05T03:51:23Z #15 2.670 76250K .......... .......... .......... .......... .......... 60% 177M 1s +2024-04-05T03:51:23Z #15 2.670 76300K .......... .......... .......... .......... .......... 60% 165M 1s +2024-04-05T03:51:23Z #15 2.670 76350K .......... .......... .......... .......... .......... 60% 155M 1s +2024-04-05T03:51:23Z #15 2.670 76400K .......... .......... .......... .......... .......... 60% 146M 1s +2024-04-05T03:51:23Z #15 2.670 76450K .......... .......... .......... .......... .......... 60% 133M 1s +2024-04-05T03:51:23Z #15 2.671 76500K .......... .......... .......... .......... .......... 60% 129M 1s +2024-04-05T03:51:23Z #15 2.671 76550K .......... .......... .......... .......... .......... 60% 144M 1s +2024-04-05T03:51:23Z #15 2.671 76600K .......... .......... .......... .......... .......... 60% 132M 1s +2024-04-05T03:51:23Z #15 2.672 76650K .......... .......... .......... .......... .......... 60% 114M 1s +2024-04-05T03:51:23Z #15 2.674 76700K .......... .......... .......... .......... .......... 60% 65.1M 1s +2024-04-05T03:51:23Z #15 2.674 76750K .......... .......... .......... .......... .......... 60% 143M 1s +2024-04-05T03:51:23Z #15 2.674 76800K .......... .......... .......... .......... .......... 60% 124M 1s +2024-04-05T03:51:23Z #15 2.674 76850K .......... .......... .......... .......... .......... 60% 162M 1s +2024-04-05T03:51:23Z #15 2.674 76900K .......... .......... .......... .......... .......... 60% 140M 1s +2024-04-05T03:51:23Z #15 2.674 76950K .......... .......... .......... .......... .......... 60% 151M 1s +2024-04-05T03:51:23Z #15 2.675 77000K .......... .......... .......... .......... .......... 60% 175M 1s +2024-04-05T03:51:23Z #15 2.675 77050K .......... .......... .......... .......... .......... 60% 115M 1s +2024-04-05T03:51:23Z #15 2.675 77100K .......... .......... .......... .......... .......... 60% 133M 1s +2024-04-05T03:51:23Z #15 2.676 77150K .......... .......... .......... .......... .......... 60% 146M 1s +2024-04-05T03:51:23Z #15 2.676 77200K .......... .......... .......... .......... .......... 60% 122M 1s +2024-04-05T03:51:23Z #15 2.676 77250K .......... .......... .......... .......... .......... 60% 98.7M 1s +2024-04-05T03:51:23Z #15 2.677 77300K .......... .......... .......... .......... .......... 61% 76.9M 1s +2024-04-05T03:51:23Z #15 2.682 77350K .......... .......... .......... .......... .......... 61% 157M 1s +2024-04-05T03:51:23Z #15 2.682 77400K .......... .......... .......... .......... .......... 61% 111M 1s +2024-04-05T03:51:23Z #15 2.682 77450K .......... .......... .......... .......... .......... 61% 188M 1s +2024-04-05T03:51:23Z #15 2.682 77500K .......... .......... .......... .......... .......... 61% 167M 1s +2024-04-05T03:51:23Z #15 2.682 77550K .......... .......... .......... .......... .......... 61% 174M 1s +2024-04-05T03:51:23Z #15 2.682 77600K .......... .......... .......... .......... .......... 61% 156M 1s +2024-04-05T03:51:23Z #15 2.682 77650K .......... .......... .......... .......... .......... 61% 185M 1s +2024-04-05T03:51:23Z #15 2.682 77700K .......... .......... .......... .......... .......... 61% 186M 1s +2024-04-05T03:51:23Z #15 2.682 77750K .......... .......... .......... .......... .......... 61% 188M 1s +2024-04-05T03:51:23Z #15 2.682 77800K .......... .......... .......... .......... .......... 61% 145M 1s +2024-04-05T03:51:23Z #15 2.682 77850K .......... .......... .......... .......... .......... 61% 183M 1s +2024-04-05T03:51:23Z #15 2.682 77900K .......... .......... .......... .......... .......... 61% 71.6M 1s +2024-04-05T03:51:23Z #15 2.682 77950K .......... .......... .......... .......... .......... 61% 184M 1s +2024-04-05T03:51:23Z #15 2.682 78000K .......... .......... .......... .......... .......... 61% 90.0M 1s +2024-04-05T03:51:23Z #15 2.682 78050K .......... .......... .......... .......... .......... 61% 132M 1s +2024-04-05T03:51:23Z #15 2.684 78100K .......... .......... .......... .......... .......... 61% 131M 1s +2024-04-05T03:51:23Z #15 2.684 78150K .......... .......... .......... .......... .......... 61% 126M 1s +2024-04-05T03:51:23Z #15 2.684 78200K .......... .......... .......... .......... .......... 61% 122M 1s +2024-04-05T03:51:23Z #15 2.684 78250K .......... .......... .......... .......... .......... 61% 143M 1s +2024-04-05T03:51:23Z #15 2.684 78300K .......... .......... .......... .......... .......... 61% 134M 1s +2024-04-05T03:51:23Z #15 2.684 78350K .......... .......... .......... .......... .......... 61% 107M 1s +2024-04-05T03:51:23Z #15 2.685 78400K .......... .......... .......... .......... .......... 61% 127M 1s +2024-04-05T03:51:23Z #15 2.685 78450K .......... .......... .......... .......... .......... 61% 19.4M 1s +2024-04-05T03:51:23Z #15 2.688 78500K .......... .......... .......... .......... .......... 61% 81.9M 1s +2024-04-05T03:51:23Z #15 2.688 78550K .......... .......... .......... .......... .......... 61% 128M 1s +2024-04-05T03:51:23Z #15 2.689 78600K .......... .......... .......... .......... .......... 62% 32.7M 1s +2024-04-05T03:51:23Z #15 2.690 78650K .......... .......... .......... .......... .......... 62% 19.0M 1s +2024-04-05T03:51:23Z #15 2.693 78700K .......... .......... .......... .......... .......... 62% 61.1M 1s +2024-04-05T03:51:23Z #15 2.694 78750K .......... .......... .......... .......... .......... 62% 19.2M 1s +2024-04-05T03:51:23Z #15 2.696 78800K .......... .......... .......... .......... .......... 62% 61.1M 1s +2024-04-05T03:51:23Z #15 2.697 78850K .......... .......... .......... .......... .......... 62% 17.8M 1s +2024-04-05T03:51:23Z #15 2.700 78900K .......... .......... .......... .......... .......... 62% 130M 1s +2024-04-05T03:51:23Z #15 2.700 78950K .......... .......... .......... .......... .......... 62% 81.1M 1s +2024-04-05T03:51:23Z #15 2.703 79000K .......... .......... .......... .......... .......... 62% 18.6M 1s +2024-04-05T03:51:23Z #15 2.703 79050K .......... .......... .......... .......... .......... 62% 96.0M 1s +2024-04-05T03:51:23Z #15 2.704 79100K .......... .......... .......... .......... .......... 62% 73.1M 1s +2024-04-05T03:51:23Z #15 2.704 79150K .......... .......... .......... .......... .......... 62% 96.4M 1s +2024-04-05T03:51:23Z #15 2.705 79200K .......... .......... .......... .......... .......... 62% 146M 1s +2024-04-05T03:51:23Z #15 2.705 79250K .......... .......... .......... .......... .......... 62% 98.7M 1s +2024-04-05T03:51:23Z #15 2.706 79300K .......... .......... .......... .......... .......... 62% 139M 1s +2024-04-05T03:51:23Z #15 2.706 79350K .......... .......... .......... .......... .......... 62% 136M 1s +2024-04-05T03:51:23Z #15 2.707 79400K .......... .......... .......... .......... .......... 62% 116M 1s +2024-04-05T03:51:23Z #15 2.707 79450K .......... .......... .......... .......... .......... 62% 96.1M 1s +2024-04-05T03:51:23Z #15 2.708 79500K .......... .......... .......... .......... .......... 62% 71.4M 1s +2024-04-05T03:51:23Z #15 2.708 79550K .......... .......... .......... .......... .......... 62% 102M 1s +2024-04-05T03:51:23Z #15 2.709 79600K .......... .......... .......... .......... .......... 62% 135M 1s +2024-04-05T03:51:23Z #15 2.709 79650K .......... .......... .......... .......... .......... 62% 146M 1s +2024-04-05T03:51:23Z #15 2.709 79700K .......... .......... .......... .......... .......... 62% 108M 1s +2024-04-05T03:51:23Z #15 2.710 79750K .......... .......... .......... .......... .......... 62% 142M 1s +2024-04-05T03:51:23Z #15 2.710 79800K .......... .......... .......... .......... .......... 62% 113M 1s +2024-04-05T03:51:23Z #15 2.711 79850K .......... .......... .......... .......... .......... 63% 114M 1s +2024-04-05T03:51:23Z #15 2.714 79900K .......... .......... .......... .......... .......... 63% 149M 1s +2024-04-05T03:51:23Z #15 2.714 79950K .......... .......... .......... .......... .......... 63% 76.2M 1s +2024-04-05T03:51:23Z #15 2.714 80000K .......... .......... .......... .......... .......... 63% 120M 1s +2024-04-05T03:51:23Z #15 2.714 80050K .......... .......... .......... .......... .......... 63% 121M 1s +2024-04-05T03:51:23Z #15 2.714 80100K .......... .......... .......... .......... .......... 63% 188M 1s +2024-04-05T03:51:23Z #15 2.714 80150K .......... .......... .......... .......... .......... 63% 201M 1s +2024-04-05T03:51:23Z #15 2.714 80200K .......... .......... .......... .......... .......... 63% 168M 1s +2024-04-05T03:51:23Z #15 2.714 80250K .......... .......... .......... .......... .......... 63% 139M 1s +2024-04-05T03:51:23Z #15 2.714 80300K .......... .......... .......... .......... .......... 63% 112M 1s +2024-04-05T03:51:23Z #15 2.714 80350K .......... .......... .......... .......... .......... 63% 111M 1s +2024-04-05T03:51:23Z #15 2.715 80400K .......... .......... .......... .......... .......... 63% 129M 1s +2024-04-05T03:51:23Z #15 2.715 80450K .......... .......... .......... .......... .......... 63% 169M 1s +2024-04-05T03:51:23Z #15 2.718 80500K .......... .......... .......... .......... .......... 63% 64.0M 1s +2024-04-05T03:51:23Z #15 2.718 80550K .......... .......... .......... .......... .......... 63% 118M 1s +2024-04-05T03:51:23Z #15 2.718 80600K .......... .......... .......... .......... .......... 63% 214M 1s +2024-04-05T03:51:23Z #15 2.718 80650K .......... .......... .......... .......... .......... 63% 223M 1s +2024-04-05T03:51:23Z #15 2.718 80700K .......... .......... .......... .......... .......... 63% 226M 1s +2024-04-05T03:51:23Z #15 2.718 80750K .......... .......... .......... .......... .......... 63% 204M 1s +2024-04-05T03:51:23Z #15 2.718 80800K .......... .......... .......... .......... .......... 63% 173M 1s +2024-04-05T03:51:23Z #15 2.718 80850K .......... .......... .......... .......... .......... 63% 135M 1s +2024-04-05T03:51:23Z #15 2.718 80900K .......... .......... .......... .......... .......... 63% 127M 1s +2024-04-05T03:51:23Z #15 2.719 80950K .......... .......... .......... .......... .......... 63% 103M 1s +2024-04-05T03:51:23Z #15 2.719 81000K .......... .......... .......... .......... .......... 63% 135M 1s +2024-04-05T03:51:23Z #15 2.719 81050K .......... .......... .......... .......... .......... 63% 75.4M 1s +2024-04-05T03:51:23Z #15 2.720 81100K .......... .......... .......... .......... .......... 64% 153M 1s +2024-04-05T03:51:23Z #15 2.720 81150K .......... .......... .......... .......... .......... 64% 103M 1s +2024-04-05T03:51:23Z #15 2.721 81200K .......... .......... .......... .......... .......... 64% 136M 1s +2024-04-05T03:51:23Z #15 2.721 81250K .......... .......... .......... .......... .......... 64% 152M 1s +2024-04-05T03:51:23Z #15 2.721 81300K .......... .......... .......... .......... .......... 64% 132M 1s +2024-04-05T03:51:23Z #15 2.722 81350K .......... .......... .......... .......... .......... 64% 156M 1s +2024-04-05T03:51:23Z #15 2.722 81400K .......... .......... .......... .......... .......... 64% 114M 1s +2024-04-05T03:51:23Z #15 2.723 81450K .......... .......... .......... .......... .......... 64% 131M 1s +2024-04-05T03:51:23Z #15 2.723 81500K .......... .......... .......... .......... .......... 64% 133M 1s +2024-04-05T03:51:23Z #15 2.723 81550K .......... .......... .......... .......... .......... 64% 108M 1s +2024-04-05T03:51:23Z #15 2.724 81600K .......... .......... .......... .......... .......... 64% 136M 1s +2024-04-05T03:51:23Z #15 2.724 81650K .......... .......... .......... .......... .......... 64% 68.8M 1s +2024-04-05T03:51:23Z #15 2.726 81700K .......... .......... .......... .......... .......... 64% 173M 1s +2024-04-05T03:51:23Z #15 2.726 81750K .......... .......... .......... .......... .......... 64% 97.2M 1s +2024-04-05T03:51:23Z #15 2.726 81800K .......... .......... .......... .......... .......... 64% 142M 1s +2024-04-05T03:51:23Z #15 2.726 81850K .......... .......... .......... .......... .......... 64% 118M 1s +2024-04-05T03:51:23Z #15 2.726 81900K .......... .......... .......... .......... .......... 64% 145M 1s +2024-04-05T03:51:23Z #15 2.727 81950K .......... .......... .......... .......... .......... 64% 124M 1s +2024-04-05T03:51:23Z #15 2.727 82000K .......... .......... .......... .......... .......... 64% 113M 1s +2024-04-05T03:51:23Z #15 2.728 82050K .......... .......... .......... .......... .......... 64% 145M 1s +2024-04-05T03:51:23Z #15 2.728 82100K .......... .......... .......... .......... .......... 64% 129M 1s +2024-04-05T03:51:23Z #15 2.728 82150K .......... .......... .......... .......... .......... 64% 114M 1s +2024-04-05T03:51:23Z #15 2.729 82200K .......... .......... .......... .......... .......... 64% 59.3M 1s +2024-04-05T03:51:23Z #15 2.734 82250K .......... .......... .......... .......... .......... 64% 120M 1s +2024-04-05T03:51:23Z #15 2.734 82300K .......... .......... .......... .......... .......... 64% 139M 1s +2024-04-05T03:51:23Z #15 2.734 82350K .......... .......... .......... .......... .......... 64% 166M 1s +2024-04-05T03:51:23Z #15 2.734 82400K .......... .......... .......... .......... .......... 65% 155M 1s +2024-04-05T03:51:23Z #15 2.734 82450K .......... .......... .......... .......... .......... 65% 183M 1s +2024-04-05T03:51:23Z #15 2.734 82500K .......... .......... .......... .......... .......... 65% 186M 1s +2024-04-05T03:51:23Z #15 2.734 82550K .......... .......... .......... .......... .......... 65% 172M 1s +2024-04-05T03:51:23Z #15 2.734 82600K .......... .......... .......... .......... .......... 65% 151M 1s +2024-04-05T03:51:23Z #15 2.734 82650K .......... .......... .......... .......... .......... 65% 184M 1s +2024-04-05T03:51:23Z #15 2.734 82700K .......... .......... .......... .......... .......... 65% 159M 1s +2024-04-05T03:51:23Z #15 2.734 82750K .......... .......... .......... .......... .......... 65% 184M 1s +2024-04-05T03:51:23Z #15 2.734 82800K .......... .......... .......... .......... .......... 65% 67.7M 1s +2024-04-05T03:51:23Z #15 2.735 82850K .......... .......... .......... .......... .......... 65% 23.3M 1s +2024-04-05T03:51:23Z #15 2.736 82900K .......... .......... .......... .......... .......... 65% 110M 1s +2024-04-05T03:51:23Z #15 2.736 82950K .......... .......... .......... .......... .......... 65% 132M 1s +2024-04-05T03:51:23Z #15 2.737 83000K .......... .......... .......... .......... .......... 65% 52.8M 1s +2024-04-05T03:51:23Z #15 2.738 83050K .......... .......... .......... .......... .......... 65% 31.5M 1s +2024-04-05T03:51:23Z #15 2.739 83100K .......... .......... .......... .......... .......... 65% 17.5M 1s +2024-04-05T03:51:23Z #15 2.742 83150K .......... .......... .......... .......... .......... 65% 128M 1s +2024-04-05T03:51:23Z #15 2.742 83200K .......... .......... .......... .......... .......... 65% 118M 1s +2024-04-05T03:51:23Z #15 2.743 83250K .......... .......... .......... .......... .......... 65% 133M 1s +2024-04-05T03:51:23Z #15 2.743 83300K .......... .......... .......... .......... .......... 65% 165M 1s +2024-04-05T03:51:23Z #15 2.743 83350K .......... .......... .......... .......... .......... 65% 128M 1s +2024-04-05T03:51:23Z #15 2.744 83400K .......... .......... .......... .......... .......... 65% 113M 1s +2024-04-05T03:51:23Z #15 2.744 83450K .......... .......... .......... .......... .......... 65% 148M 1s +2024-04-05T03:51:23Z #15 2.744 83500K .......... .......... .......... .......... .......... 65% 155M 1s +2024-04-05T03:51:23Z #15 2.745 83550K .......... .......... .......... .......... .......... 65% 147M 1s +2024-04-05T03:51:23Z #15 2.745 83600K .......... .......... .......... .......... .......... 65% 141M 1s +2024-04-05T03:51:23Z #15 2.745 83650K .......... .......... .......... .......... .......... 66% 165M 1s +2024-04-05T03:51:23Z #15 2.746 83700K .......... .......... .......... .......... .......... 66% 142M 1s +2024-04-05T03:51:23Z #15 2.746 83750K .......... .......... .......... .......... .......... 66% 162M 1s +2024-04-05T03:51:23Z #15 2.746 83800K .......... .......... .......... .......... .......... 66% 139M 1s +2024-04-05T03:51:23Z #15 2.747 83850K .......... .......... .......... .......... .......... 66% 151M 1s +2024-04-05T03:51:23Z #15 2.747 83900K .......... .......... .......... .......... .......... 66% 153M 1s +2024-04-05T03:51:23Z #15 2.754 83950K .......... .......... .......... .......... .......... 66% 164M 1s +2024-04-05T03:51:23Z #15 2.754 84000K .......... .......... .......... .......... .......... 66% 159M 1s +2024-04-05T03:51:23Z #15 2.754 84050K .......... .......... .......... .......... .......... 66% 181M 1s +2024-04-05T03:51:23Z #15 2.754 84100K .......... .......... .......... .......... .......... 66% 184M 1s +2024-04-05T03:51:23Z #15 2.754 84150K .......... .......... .......... .......... .......... 66% 185M 1s +2024-04-05T03:51:23Z #15 2.754 84200K .......... .......... .......... .......... .......... 66% 152M 1s +2024-04-05T03:51:23Z #15 2.754 84250K .......... .......... .......... .......... .......... 66% 186M 1s +2024-04-05T03:51:23Z #15 2.754 84300K .......... .......... .......... .......... .......... 66% 184M 1s +2024-04-05T03:51:23Z #15 2.754 84350K .......... .......... .......... .......... .......... 66% 149M 1s +2024-04-05T03:51:23Z #15 2.754 84400K .......... .......... .......... .......... .......... 66% 165M 1s +2024-04-05T03:51:23Z #15 2.754 84450K .......... .......... .......... .......... .......... 66% 179M 1s +2024-04-05T03:51:23Z #15 2.754 84500K .......... .......... .......... .......... .......... 66% 187M 1s +2024-04-05T03:51:23Z #15 2.754 84550K .......... .......... .......... .......... .......... 66% 168M 1s +2024-04-05T03:51:23Z #15 2.754 84600K .......... .......... .......... .......... .......... 66% 154M 1s +2024-04-05T03:51:23Z #15 2.754 84650K .......... .......... .......... .......... .......... 66% 189M 1s +2024-04-05T03:51:23Z #15 2.754 84700K .......... .......... .......... .......... .......... 66% 176M 1s +2024-04-05T03:51:23Z #15 2.754 84750K .......... .......... .......... .......... .......... 66% 191M 1s +2024-04-05T03:51:23Z #15 2.754 84800K .......... .......... .......... .......... .......... 66% 162M 1s +2024-04-05T03:51:23Z #15 2.754 84850K .......... .......... .......... .......... .......... 66% 173M 1s +2024-04-05T03:51:23Z #15 2.754 84900K .......... .......... .......... .......... .......... 67% 189M 1s +2024-04-05T03:51:23Z #15 2.754 84950K .......... .......... .......... .......... .......... 67% 185M 1s +2024-04-05T03:51:23Z #15 2.754 85000K .......... .......... .......... .......... .......... 67% 155M 1s +2024-04-05T03:51:23Z #15 2.754 85050K .......... .......... .......... .......... .......... 67% 155M 1s +2024-04-05T03:51:23Z #15 2.754 85100K .......... .......... .......... .......... .......... 67% 175M 1s +2024-04-05T03:51:23Z #15 2.754 85150K .......... .......... .......... .......... .......... 67% 157M 1s +2024-04-05T03:51:23Z #15 2.755 85200K .......... .......... .......... .......... .......... 67% 146M 1s +2024-04-05T03:51:23Z #15 2.755 85250K .......... .......... .......... .......... .......... 67% 154M 1s +2024-04-05T03:51:23Z #15 2.755 85300K .......... .......... .......... .......... .......... 67% 143M 1s +2024-04-05T03:51:23Z #15 2.756 85350K .......... .......... .......... .......... .......... 67% 139M 1s +2024-04-05T03:51:23Z #15 2.756 85400K .......... .......... .......... .......... .......... 67% 124M 1s +2024-04-05T03:51:23Z #15 2.756 85450K .......... .......... .......... .......... .......... 67% 127M 1s +2024-04-05T03:51:23Z #15 2.757 85500K .......... .......... .......... .......... .......... 67% 165M 1s +2024-04-05T03:51:23Z #15 2.757 85550K .......... .......... .......... .......... .......... 67% 136M 1s +2024-04-05T03:51:23Z #15 2.757 85600K .......... .......... .......... .......... .......... 67% 162M 1s +2024-04-05T03:51:23Z #15 2.758 85650K .......... .......... .......... .......... .......... 67% 127M 1s +2024-04-05T03:51:23Z #15 2.758 85700K .......... .......... .......... .......... .......... 67% 162M 1s +2024-04-05T03:51:23Z #15 2.758 85750K .......... .......... .......... .......... .......... 67% 153M 1s +2024-04-05T03:51:23Z #15 2.759 85800K .......... .......... .......... .......... .......... 67% 125M 1s +2024-04-05T03:51:23Z #15 2.759 85850K .......... .......... .......... .......... .......... 67% 170M 1s +2024-04-05T03:51:23Z #15 2.759 85900K .......... .......... .......... .......... .......... 67% 152M 1s +2024-04-05T03:51:23Z #15 2.760 85950K .......... .......... .......... .......... .......... 67% 156M 1s +2024-04-05T03:51:23Z #15 2.760 86000K .......... .......... .......... .......... .......... 67% 118M 1s +2024-04-05T03:51:23Z #15 2.760 86050K .......... .......... .......... .......... .......... 67% 148M 1s +2024-04-05T03:51:23Z #15 2.761 86100K .......... .......... .......... .......... .......... 67% 132M 1s +2024-04-05T03:51:23Z #15 2.761 86150K .......... .......... .......... .......... .......... 67% 149M 1s +2024-04-05T03:51:23Z #15 2.761 86200K .......... .......... .......... .......... .......... 68% 124M 1s +2024-04-05T03:51:23Z #15 2.762 86250K .......... .......... .......... .......... .......... 68% 149M 1s +2024-04-05T03:51:23Z #15 2.762 86300K .......... .......... .......... .......... .......... 68% 167M 1s +2024-04-05T03:51:23Z #15 2.762 86350K .......... .......... .......... .......... .......... 68% 149M 1s +2024-04-05T03:51:23Z #15 2.763 86400K .......... .......... .......... .......... .......... 68% 158M 1s +2024-04-05T03:51:23Z #15 2.763 86450K .......... .......... .......... .......... .......... 68% 164M 1s +2024-04-05T03:51:23Z #15 2.763 86500K .......... .......... .......... .......... .......... 68% 168M 1s +2024-04-05T03:51:23Z #15 2.764 86550K .......... .......... .......... .......... .......... 68% 141M 1s +2024-04-05T03:51:23Z #15 2.765 86600K .......... .......... .......... .......... .......... 68% 179M 1s +2024-04-05T03:51:23Z #15 2.766 86650K .......... .......... .......... .......... .......... 68% 184M 1s +2024-04-05T03:51:23Z #15 2.766 86700K .......... .......... .......... .......... .......... 68% 148M 1s +2024-04-05T03:51:23Z #15 2.766 86750K .......... .......... .......... .......... .......... 68% 159M 1s +2024-04-05T03:51:23Z #15 2.766 86800K .......... .......... .......... .......... .......... 68% 179M 1s +2024-04-05T03:51:23Z #15 2.766 86850K .......... .......... .......... .......... .......... 68% 660K 1s +2024-04-05T03:51:23Z #15 2.846 86900K .......... .......... .......... .......... .......... 68% 143M 1s +2024-04-05T03:51:23Z #15 2.846 86950K .......... .......... .......... .......... .......... 68% 137M 1s +2024-04-05T03:51:23Z #15 2.846 87000K .......... .......... .......... .......... .......... 68% 160M 1s +2024-04-05T03:51:23Z #15 2.846 87050K .......... .......... .......... .......... .......... 68% 118M 1s +2024-04-05T03:51:23Z #15 2.846 87100K .......... .......... .......... .......... .......... 68% 126M 1s +2024-04-05T03:51:23Z #15 2.846 87150K .......... .......... .......... .......... .......... 68% 140M 1s +2024-04-05T03:51:23Z #15 2.846 87200K .......... .......... .......... .......... .......... 68% 147M 1s +2024-04-05T03:51:23Z #15 2.846 87250K .......... .......... .......... .......... .......... 68% 150M 1s +2024-04-05T03:51:23Z #15 2.846 87300K .......... .......... .......... .......... .......... 68% 124M 1s +2024-04-05T03:51:23Z #15 2.846 87350K .......... .......... .......... .......... .......... 68% 112M 1s +2024-04-05T03:51:23Z #15 2.846 87400K .......... .......... .......... .......... .......... 68% 154M 1s +2024-04-05T03:51:23Z #15 2.846 87450K .......... .......... .......... .......... .......... 69% 155M 1s +2024-04-05T03:51:23Z #15 2.846 87500K .......... .......... .......... .......... .......... 69% 58.0M 1s +2024-04-05T03:51:23Z #15 2.847 87550K .......... .......... .......... .......... .......... 69% 25.0M 1s +2024-04-05T03:51:23Z #15 2.850 87600K .......... .......... .......... .......... .......... 69% 21.9M 1s +2024-04-05T03:51:23Z #15 2.853 87650K .......... .......... .......... .......... .......... 69% 24.2M 1s +2024-04-05T03:51:23Z #15 2.853 87700K .......... .......... .......... .......... .......... 69% 50.1M 1s +2024-04-05T03:51:23Z #15 2.858 87750K .......... .......... .......... .......... .......... 69% 23.7M 1s +2024-04-05T03:51:23Z #15 2.858 87800K .......... .......... .......... .......... .......... 69% 17.0M 1s +2024-04-05T03:51:23Z #15 2.858 87850K .......... .......... .......... .......... .......... 69% 4.24M 1s +2024-04-05T03:51:23Z #15 2.870 87900K .......... .......... .......... .......... .......... 69% 114M 1s +2024-04-05T03:51:23Z #15 2.871 87950K .......... .......... .......... .......... .......... 69% 126M 1s +2024-04-05T03:51:23Z #15 2.871 88000K .......... .......... .......... .......... .......... 69% 126M 1s +2024-04-05T03:51:23Z #15 2.871 88050K .......... .......... .......... .......... .......... 69% 106M 1s +2024-04-05T03:51:23Z #15 2.872 88100K .......... .......... .......... .......... .......... 69% 121M 1s +2024-04-05T03:51:23Z #15 2.872 88150K .......... .......... .......... .......... .......... 69% 127M 1s +2024-04-05T03:51:23Z #15 2.873 88200K .......... .......... .......... .......... .......... 69% 112M 1s +2024-04-05T03:51:23Z #15 2.873 88250K .......... .......... .......... .......... .......... 69% 144M 1s +2024-04-05T03:51:23Z #15 2.873 88300K .......... .......... .......... .......... .......... 69% 112M 1s +2024-04-05T03:51:23Z #15 2.874 88350K .......... .......... .......... .......... .......... 69% 10.2M 1s +2024-04-05T03:51:23Z #15 2.878 88400K .......... .......... .......... .......... .......... 69% 113M 1s +2024-04-05T03:51:23Z #15 2.879 88450K .......... .......... .......... .......... .......... 69% 16.1M 1s +2024-04-05T03:51:23Z #15 2.882 88500K .......... .......... .......... .......... .......... 69% 115M 1s +2024-04-05T03:51:23Z #15 2.882 88550K .......... .......... .......... .......... .......... 69% 124M 1s +2024-04-05T03:51:23Z #15 2.883 88600K .......... .......... .......... .......... .......... 69% 109M 1s +2024-04-05T03:51:23Z #15 2.883 88650K .......... .......... .......... .......... .......... 69% 25.4M 1s +2024-04-05T03:51:23Z #15 2.885 88700K .......... .......... .......... .......... .......... 70% 116M 1s +2024-04-05T03:51:23Z #15 2.885 88750K .......... .......... .......... .......... .......... 70% 5.73M 1s +2024-04-05T03:51:23Z #15 2.894 88800K .......... .......... .......... .......... .......... 70% 113M 1s +2024-04-05T03:51:23Z #15 2.895 88850K .......... .......... .......... .......... .......... 70% 145M 1s +2024-04-05T03:51:23Z #15 2.895 88900K .......... .......... .......... .......... .......... 70% 130M 1s +2024-04-05T03:51:23Z #15 2.895 88950K .......... .......... .......... .......... .......... 70% 120M 1s +2024-04-05T03:51:23Z #15 2.895 89000K .......... .......... .......... .......... .......... 70% 134M 1s +2024-04-05T03:51:23Z #15 2.896 89050K .......... .......... .......... .......... .......... 70% 132M 1s +2024-04-05T03:51:23Z #15 2.896 89100K .......... .......... .......... .......... .......... 70% 119M 1s +2024-04-05T03:51:23Z #15 2.897 89150K .......... .......... .......... .......... .......... 70% 136M 1s +2024-04-05T03:51:23Z #15 2.897 89200K .......... .......... .......... .......... .......... 70% 131M 1s +2024-04-05T03:51:23Z #15 2.897 89250K .......... .......... .......... .......... .......... 70% 110M 1s +2024-04-05T03:51:23Z #15 2.898 89300K .......... .......... .......... .......... .......... 70% 127M 1s +2024-04-05T03:51:23Z #15 2.898 89350K .......... .......... .......... .......... .......... 70% 111M 1s +2024-04-05T03:51:23Z #15 2.899 89400K .......... .......... .......... .......... .......... 70% 127M 1s +2024-04-05T03:51:23Z #15 2.899 89450K .......... .......... .......... .......... .......... 70% 124M 1s +2024-04-05T03:51:23Z #15 2.900 89500K .......... .......... .......... .......... .......... 70% 119M 1s +2024-04-05T03:51:23Z #15 2.900 89550K .......... .......... .......... .......... .......... 70% 110M 1s +2024-04-05T03:51:23Z #15 2.900 89600K .......... .......... .......... .......... .......... 70% 108M 1s +2024-04-05T03:51:23Z #15 2.901 89650K .......... .......... .......... .......... .......... 70% 117M 1s +2024-04-05T03:51:23Z #15 2.901 89700K .......... .......... .......... .......... .......... 70% 116M 1s +2024-04-05T03:51:23Z #15 2.902 89750K .......... .......... .......... .......... .......... 70% 5.81M 1s +2024-04-05T03:51:23Z #15 2.911 89800K .......... .......... .......... .......... .......... 70% 174M 1s +2024-04-05T03:51:23Z #15 2.911 89850K .......... .......... .......... .......... .......... 70% 169M 1s +2024-04-05T03:51:23Z #15 2.911 89900K .......... .......... .......... .......... .......... 70% 161M 1s +2024-04-05T03:51:23Z #15 2.911 89950K .......... .......... .......... .......... .......... 70% 144M 1s +2024-04-05T03:51:23Z #15 2.912 90000K .......... .......... .......... .......... .......... 71% 104M 1s +2024-04-05T03:51:23Z #15 2.912 90050K .......... .......... .......... .......... .......... 71% 119M 1s +2024-04-05T03:51:23Z #15 2.912 90100K .......... .......... .......... .......... .......... 71% 126M 1s +2024-04-05T03:51:23Z #15 2.912 90150K .......... .......... .......... .......... .......... 71% 131M 1s +2024-04-05T03:51:23Z #15 2.913 90200K .......... .......... .......... .......... .......... 71% 110M 1s +2024-04-05T03:51:23Z #15 2.913 90250K .......... .......... .......... .......... .......... 71% 130M 1s +2024-04-05T03:51:23Z #15 2.914 90300K .......... .......... .......... .......... .......... 71% 120M 1s +2024-04-05T03:51:23Z #15 2.914 90350K .......... .......... .......... .......... .......... 71% 111M 1s +2024-04-05T03:51:24Z #15 2.914 90400K .......... .......... .......... .......... .......... 71% 120M 1s +2024-04-05T03:51:24Z #15 2.915 90450K .......... .......... .......... .......... .......... 71% 128M 1s +2024-04-05T03:51:24Z #15 2.915 90500K .......... .......... .......... .......... .......... 71% 131M 1s +2024-04-05T03:51:24Z #15 2.916 90550K .......... .......... .......... .......... .......... 71% 127M 1s +2024-04-05T03:51:24Z #15 2.916 90600K .......... .......... .......... .......... .......... 71% 111M 1s +2024-04-05T03:51:24Z #15 2.916 90650K .......... .......... .......... .......... .......... 71% 128M 1s +2024-04-05T03:51:24Z #15 2.917 90700K .......... .......... .......... .......... .......... 71% 137M 1s +2024-04-05T03:51:24Z #15 2.917 90750K .......... .......... .......... .......... .......... 71% 115M 1s +2024-04-05T03:51:24Z #15 2.918 90800K .......... .......... .......... .......... .......... 71% 40.9M 1s +2024-04-05T03:51:24Z #15 2.919 90850K .......... .......... .......... .......... .......... 71% 133M 1s +2024-04-05T03:51:24Z #15 2.919 90900K .......... .......... .......... .......... .......... 71% 133M 1s +2024-04-05T03:51:24Z #15 2.920 90950K .......... .......... .......... .......... .......... 71% 119M 1s +2024-04-05T03:51:24Z #15 2.920 91000K .......... .......... .......... .......... .......... 71% 123M 1s +2024-04-05T03:51:24Z #15 2.920 91050K .......... .......... .......... .......... .......... 71% 143M 1s +2024-04-05T03:51:24Z #15 2.921 91100K .......... .......... .......... .......... .......... 71% 135M 1s +2024-04-05T03:51:24Z #15 2.921 91150K .......... .......... .......... .......... .......... 71% 101M 1s +2024-04-05T03:51:24Z #15 2.922 91200K .......... .......... .......... .......... .......... 71% 62.5M 1s +2024-04-05T03:51:24Z #15 2.922 91250K .......... .......... .......... .......... .......... 72% 131M 1s +2024-04-05T03:51:24Z #15 2.923 91300K .......... .......... .......... .......... .......... 72% 110M 1s +2024-04-05T03:51:24Z #15 2.923 91350K .......... .......... .......... .......... .......... 72% 139M 1s +2024-04-05T03:51:24Z #15 2.924 91400K .......... .......... .......... .......... .......... 72% 116M 1s +2024-04-05T03:51:24Z #15 2.924 91450K .......... .......... .......... .......... .......... 72% 140M 1s +2024-04-05T03:51:24Z #15 2.924 91500K .......... .......... .......... .......... .......... 72% 128M 1s +2024-04-05T03:51:24Z #15 2.925 91550K .......... .......... .......... .......... .......... 72% 110M 1s +2024-04-05T03:51:24Z #15 2.925 91600K .......... .......... .......... .......... .......... 72% 119M 1s +2024-04-05T03:51:24Z #15 2.926 91650K .......... .......... .......... .......... .......... 72% 55.7M 1s +2024-04-05T03:51:24Z #15 2.926 91700K .......... .......... .......... .......... .......... 72% 68.7M 1s +2024-04-05T03:51:24Z #15 2.927 91750K .......... .......... .......... .......... .......... 72% 101M 1s +2024-04-05T03:51:24Z #15 2.928 91800K .......... .......... .......... .......... .......... 72% 133M 1s +2024-04-05T03:51:24Z #15 2.928 91850K .......... .......... .......... .......... .......... 72% 77.9M 1s +2024-04-05T03:51:24Z #15 2.929 91900K .......... .......... .......... .......... .......... 72% 65.5M 1s +2024-04-05T03:51:24Z #15 2.934 91950K .......... .......... .......... .......... .......... 72% 178M 1s +2024-04-05T03:51:24Z #15 2.934 92000K .......... .......... .......... .......... .......... 72% 165M 1s +2024-04-05T03:51:24Z #15 2.934 92050K .......... .......... .......... .......... .......... 72% 171M 1s +2024-04-05T03:51:24Z #15 2.934 92100K .......... .......... .......... .......... .......... 72% 164M 1s +2024-04-05T03:51:24Z #15 2.934 92150K .......... .......... .......... .......... .......... 72% 189M 1s +2024-04-05T03:51:24Z #15 2.934 92200K .......... .......... .......... .......... .......... 72% 173M 1s +2024-04-05T03:51:24Z #15 2.934 92250K .......... .......... .......... .......... .......... 72% 144M 1s +2024-04-05T03:51:24Z #15 2.934 92300K .......... .......... .......... .......... .......... 72% 176M 1s +2024-04-05T03:51:24Z #15 2.934 92350K .......... .......... .......... .......... .......... 72% 142M 1s +2024-04-05T03:51:24Z #15 2.934 92400K .......... .......... .......... .......... .......... 72% 182M 1s +2024-04-05T03:51:24Z #15 2.934 92450K .......... .......... .......... .......... .......... 72% 164M 1s +2024-04-05T03:51:24Z #15 2.934 92500K .......... .......... .......... .......... .......... 72% 183M 1s +2024-04-05T03:51:24Z #15 2.934 92550K .......... .......... .......... .......... .......... 73% 167M 1s +2024-04-05T03:51:24Z #15 2.934 92600K .......... .......... .......... .......... .......... 73% 187M 1s +2024-04-05T03:51:24Z #15 2.934 92650K .......... .......... .......... .......... .......... 73% 167M 1s +2024-04-05T03:51:24Z #15 2.934 92700K .......... .......... .......... .......... .......... 73% 125M 1s +2024-04-05T03:51:24Z #15 2.936 92750K .......... .......... .......... .......... .......... 73% 130M 1s +2024-04-05T03:51:24Z #15 2.936 92800K .......... .......... .......... .......... .......... 73% 120M 1s +2024-04-05T03:51:24Z #15 2.936 92850K .......... .......... .......... .......... .......... 73% 137M 1s +2024-04-05T03:51:24Z #15 2.936 92900K .......... .......... .......... .......... .......... 73% 98.9M 1s +2024-04-05T03:51:24Z #15 2.936 92950K .......... .......... .......... .......... .......... 73% 121M 1s +2024-04-05T03:51:24Z #15 2.936 93000K .......... .......... .......... .......... .......... 73% 58.9M 1s +2024-04-05T03:51:24Z #15 2.937 93050K .......... .......... .......... .......... .......... 73% 127M 1s +2024-04-05T03:51:24Z #15 2.937 93100K .......... .......... .......... .......... .......... 73% 123M 1s +2024-04-05T03:51:24Z #15 2.938 93150K .......... .......... .......... .......... .......... 73% 130M 1s +2024-04-05T03:51:24Z #15 2.938 93200K .......... .......... .......... .......... .......... 73% 122M 1s +2024-04-05T03:51:24Z #15 2.938 93250K .......... .......... .......... .......... .......... 73% 135M 1s +2024-04-05T03:51:24Z #15 2.939 93300K .......... .......... .......... .......... .......... 73% 108M 1s +2024-04-05T03:51:24Z #15 2.939 93350K .......... .......... .......... .......... .......... 73% 112M 1s +2024-04-05T03:51:24Z #15 2.940 93400K .......... .......... .......... .......... .......... 73% 120M 1s +2024-04-05T03:51:24Z #15 2.940 93450K .......... .......... .......... .......... .......... 73% 124M 1s +2024-04-05T03:51:24Z #15 2.941 93500K .......... .......... .......... .......... .......... 73% 119M 1s +2024-04-05T03:51:24Z #15 2.941 93550K .......... .......... .......... .......... .......... 73% 114M 1s +2024-04-05T03:51:24Z #15 2.941 93600K .......... .......... .......... .......... .......... 73% 94.7M 1s +2024-04-05T03:51:24Z #15 2.942 93650K .......... .......... .......... .......... .......... 73% 100M 1s +2024-04-05T03:51:24Z #15 2.954 93700K .......... .......... .......... .......... .......... 73% 149M 1s +2024-04-05T03:51:24Z #15 2.954 93750K .......... .......... .......... .......... .......... 73% 107M 1s +2024-04-05T03:51:24Z #15 2.954 93800K .......... .......... .......... .......... .......... 74% 120M 1s +2024-04-05T03:51:24Z #15 2.954 93850K .......... .......... .......... .......... .......... 74% 76.5M 1s +2024-04-05T03:51:24Z #15 2.954 93900K .......... .......... .......... .......... .......... 74% 108M 1s +2024-04-05T03:51:24Z #15 2.954 93950K .......... .......... .......... .......... .......... 74% 144M 1s +2024-04-05T03:51:24Z #15 2.954 94000K .......... .......... .......... .......... .......... 74% 151M 1s +2024-04-05T03:51:24Z #15 2.954 94050K .......... .......... .......... .......... .......... 74% 138M 1s +2024-04-05T03:51:24Z #15 2.954 94100K .......... .......... .......... .......... .......... 74% 128M 1s +2024-04-05T03:51:24Z #15 2.954 94150K .......... .......... .......... .......... .......... 74% 145M 1s +2024-04-05T03:51:24Z #15 2.954 94200K .......... .......... .......... .......... .......... 74% 138M 1s +2024-04-05T03:51:24Z #15 2.954 94250K .......... .......... .......... .......... .......... 74% 157M 1s +2024-04-05T03:51:24Z #15 2.954 94300K .......... .......... .......... .......... .......... 74% 162M 1s +2024-04-05T03:51:24Z #15 2.954 94350K .......... .......... .......... .......... .......... 74% 160M 1s +2024-04-05T03:51:24Z #15 2.954 94400K .......... .......... .......... .......... .......... 74% 145M 1s +2024-04-05T03:51:24Z #15 2.954 94450K .......... .......... .......... .......... .......... 74% 130M 1s +2024-04-05T03:51:24Z #15 2.954 94500K .......... .......... .......... .......... .......... 74% 156M 1s +2024-04-05T03:51:24Z #15 2.954 94550K .......... .......... .......... .......... .......... 74% 155M 1s +2024-04-05T03:51:24Z #15 2.954 94600K .......... .......... .......... .......... .......... 74% 156M 1s +2024-04-05T03:51:24Z #15 2.954 94650K .......... .......... .......... .......... .......... 74% 156M 1s +2024-04-05T03:51:24Z #15 2.954 94700K .......... .......... .......... .......... .......... 74% 104M 1s +2024-04-05T03:51:24Z #15 2.954 94750K .......... .......... .......... .......... .......... 74% 139M 1s +2024-04-05T03:51:24Z #15 2.954 94800K .......... .......... .......... .......... .......... 74% 110M 1s +2024-04-05T03:51:24Z #15 2.954 94850K .......... .......... .......... .......... .......... 74% 109M 1s +2024-04-05T03:51:24Z #15 2.954 94900K .......... .......... .......... .......... .......... 74% 103M 1s +2024-04-05T03:51:24Z #15 2.954 94950K .......... .......... .......... .......... .......... 74% 103M 1s +2024-04-05T03:51:24Z #15 2.954 95000K .......... .......... .......... .......... .......... 74% 129M 1s +2024-04-05T03:51:24Z #15 2.954 95050K .......... .......... .......... .......... .......... 75% 117M 1s +2024-04-05T03:51:24Z #15 2.954 95100K .......... .......... .......... .......... .......... 75% 102M 1s +2024-04-05T03:51:24Z #15 2.954 95150K .......... .......... .......... .......... .......... 75% 104M 1s +2024-04-05T03:51:24Z #15 2.954 95200K .......... .......... .......... .......... .......... 75% 115M 1s +2024-04-05T03:51:24Z #15 2.960 95250K .......... .......... .......... .......... .......... 75% 110M 0s +2024-04-05T03:51:24Z #15 2.960 95300K .......... .......... .......... .......... .......... 75% 117M 0s +2024-04-05T03:51:24Z #15 2.960 95350K .......... .......... .......... .......... .......... 75% 114M 0s +2024-04-05T03:51:24Z #15 2.960 95400K .......... .......... .......... .......... .......... 75% 103M 0s +2024-04-05T03:51:24Z #15 2.960 95450K .......... .......... .......... .......... .......... 75% 122M 0s +2024-04-05T03:51:24Z #15 2.960 95500K .......... .......... .......... .......... .......... 75% 139M 0s +2024-04-05T03:51:24Z #15 2.960 95550K .......... .......... .......... .......... .......... 75% 97.1M 0s +2024-04-05T03:51:24Z #15 2.960 95600K .......... .......... .......... .......... .......... 75% 114M 0s +2024-04-05T03:51:24Z #15 2.960 95650K .......... .......... .......... .......... .......... 75% 108M 0s +2024-04-05T03:51:24Z #15 2.960 95700K .......... .......... .......... .......... .......... 75% 128M 0s +2024-04-05T03:51:24Z #15 2.960 95750K .......... .......... .......... .......... .......... 75% 111M 0s +2024-04-05T03:51:24Z #15 2.960 95800K .......... .......... .......... .......... .......... 75% 111M 0s +2024-04-05T03:51:24Z #15 2.960 95850K .......... .......... .......... .......... .......... 75% 51.8M 0s +2024-04-05T03:51:24Z #15 2.984 95900K .......... .......... .......... .......... .......... 75% 28.3M 0s +2024-04-05T03:51:24Z #15 2.984 95950K .......... .......... .......... .......... .......... 75% 183M 0s +2024-04-05T03:51:24Z #15 2.984 96000K .......... .......... .......... .......... .......... 75% 152M 0s +2024-04-05T03:51:24Z #15 2.984 96050K .......... .......... .......... .......... .......... 75% 150M 0s +2024-04-05T03:51:24Z #15 2.984 96100K .......... .......... .......... .......... .......... 75% 198M 0s +2024-04-05T03:51:24Z #15 2.984 96150K .......... .......... .......... .......... .......... 75% 147M 0s +2024-04-05T03:51:24Z #15 2.984 96200K .......... .......... .......... .......... .......... 75% 179M 0s +2024-04-05T03:51:24Z #15 2.984 96250K .......... .......... .......... .......... .......... 75% 144M 0s +2024-04-05T03:51:24Z #15 2.984 96300K .......... .......... .......... .......... .......... 75% 158M 0s +2024-04-05T03:51:24Z #15 2.984 96350K .......... .......... .......... .......... .......... 76% 142M 0s +2024-04-05T03:51:24Z #15 2.984 96400K .......... .......... .......... .......... .......... 76% 144M 0s +2024-04-05T03:51:24Z #15 2.984 96450K .......... .......... .......... .......... .......... 76% 137M 0s +2024-04-05T03:51:24Z #15 2.984 96500K .......... .......... .......... .......... .......... 76% 89.0M 0s +2024-04-05T03:51:24Z #15 2.984 96550K .......... .......... .......... .......... .......... 76% 129M 0s +2024-04-05T03:51:24Z #15 2.984 96600K .......... .......... .......... .......... .......... 76% 24.8M 0s +2024-04-05T03:51:24Z #15 2.984 96650K .......... .......... .......... .......... .......... 76% 133M 0s +2024-04-05T03:51:24Z #15 2.984 96700K .......... .......... .......... .......... .......... 76% 134M 0s +2024-04-05T03:51:24Z #15 2.984 96750K .......... .......... .......... .......... .......... 76% 123M 0s +2024-04-05T03:51:24Z #15 2.984 96800K .......... .......... .......... .......... .......... 76% 108M 0s +2024-04-05T03:51:24Z #15 2.984 96850K .......... .......... .......... .......... .......... 76% 144M 0s +2024-04-05T03:51:24Z #15 2.984 96900K .......... .......... .......... .......... .......... 76% 28.3M 0s +2024-04-05T03:51:24Z #15 2.984 96950K .......... .......... .......... .......... .......... 76% 138M 0s +2024-04-05T03:51:24Z #15 2.984 97000K .......... .......... .......... .......... .......... 76% 122M 0s +2024-04-05T03:51:24Z #15 2.984 97050K .......... .......... .......... .......... .......... 76% 146M 0s +2024-04-05T03:51:24Z #15 2.984 97100K .......... .......... .......... .......... .......... 76% 102M 0s +2024-04-05T03:51:24Z #15 2.984 97150K .......... .......... .......... .......... .......... 76% 27.4M 0s +2024-04-05T03:51:24Z #15 2.984 97200K .......... .......... .......... .......... .......... 76% 122M 0s +2024-04-05T03:51:24Z #15 2.984 97250K .......... .......... .......... .......... .......... 76% 159M 0s +2024-04-05T03:51:24Z #15 2.984 97300K .......... .......... .......... .......... .......... 76% 128M 0s +2024-04-05T03:51:24Z #15 2.984 97350K .......... .......... .......... .......... .......... 76% 131M 0s +2024-04-05T03:51:24Z #15 2.984 97400K .......... .......... .......... .......... .......... 76% 26.8M 0s +2024-04-05T03:51:24Z #15 2.984 97450K .......... .......... .......... .......... .......... 76% 165M 0s +2024-04-05T03:51:24Z #15 2.984 97500K .......... .......... .......... .......... .......... 76% 172M 0s +2024-04-05T03:51:24Z #15 2.984 97550K .......... .......... .......... .......... .......... 76% 178M 0s +2024-04-05T03:51:24Z #15 2.984 97600K .......... .......... .......... .......... .......... 77% 164M 0s +2024-04-05T03:51:24Z #15 2.984 97650K .......... .......... .......... .......... .......... 77% 152M 0s +2024-04-05T03:51:24Z #15 2.984 97700K .......... .......... .......... .......... .......... 77% 165M 0s +2024-04-05T03:51:24Z #15 2.984 97750K .......... .......... .......... .......... .......... 77% 28.5M 0s +2024-04-05T03:51:24Z #15 2.984 97800K .......... .......... .......... .......... .......... 77% 121M 0s +2024-04-05T03:51:24Z #15 2.984 97850K .......... .......... .......... .......... .......... 77% 136M 0s +2024-04-05T03:51:24Z #15 2.984 97900K .......... .......... .......... .......... .......... 77% 93.3M 0s +2024-04-05T03:51:24Z #15 2.984 97950K .......... .......... .......... .......... .......... 77% 128M 0s +2024-04-05T03:51:24Z #15 2.985 98000K .......... .......... .......... .......... .......... 77% 124M 0s +2024-04-05T03:51:24Z #15 2.985 98050K .......... .......... .......... .......... .......... 77% 68.7M 0s +2024-04-05T03:51:24Z #15 2.985 98100K .......... .......... .......... .......... .......... 77% 140M 0s +2024-04-05T03:51:24Z #15 2.985 98150K .......... .......... .......... .......... .......... 77% 121M 0s +2024-04-05T03:51:24Z #15 2.986 98200K .......... .......... .......... .......... .......... 77% 66.1M 0s +2024-04-05T03:51:24Z #15 2.987 98250K .......... .......... .......... .......... .......... 77% 135M 0s +2024-04-05T03:51:24Z #15 2.987 98300K .......... .......... .......... .......... .......... 77% 115M 0s +2024-04-05T03:51:24Z #15 2.988 98350K .......... .......... .......... .......... .......... 77% 85.2M 0s +2024-04-05T03:51:24Z #15 2.988 98400K .......... .......... .......... .......... .......... 77% 84.1M 0s +2024-04-05T03:51:24Z #15 2.989 98450K .......... .......... .......... .......... .......... 77% 92.5M 0s +2024-04-05T03:51:24Z #15 2.989 98500K .......... .......... .......... .......... .......... 77% 112M 0s +2024-04-05T03:51:24Z #15 2.990 98550K .......... .......... .......... .......... .......... 77% 96.6M 0s +2024-04-05T03:51:24Z #15 2.990 98600K .......... .......... .......... .......... .......... 77% 113M 0s +2024-04-05T03:51:24Z #15 2.995 98650K .......... .......... .......... .......... .......... 77% 177M 0s +2024-04-05T03:51:24Z #15 2.995 98700K .......... .......... .......... .......... .......... 77% 177M 0s +2024-04-05T03:51:24Z #15 2.995 98750K .......... .......... .......... .......... .......... 77% 165M 0s +2024-04-05T03:51:24Z #15 2.995 98800K .......... .......... .......... .......... .......... 77% 186M 0s +2024-04-05T03:51:24Z #15 2.995 98850K .......... .......... .......... .......... .......... 78% 184M 0s +2024-04-05T03:51:24Z #15 2.995 98900K .......... .......... .......... .......... .......... 78% 191M 0s +2024-04-05T03:51:24Z #15 2.995 98950K .......... .......... .......... .......... .......... 78% 149M 0s +2024-04-05T03:51:24Z #15 2.995 99000K .......... .......... .......... .......... .......... 78% 180M 0s +2024-04-05T03:51:24Z #15 2.995 99050K .......... .......... .......... .......... .......... 78% 190M 0s +2024-04-05T03:51:24Z #15 2.995 99100K .......... .......... .......... .......... .......... 78% 164M 0s +2024-04-05T03:51:24Z #15 2.995 99150K .......... .......... .......... .......... .......... 78% 140M 0s +2024-04-05T03:51:24Z #15 2.995 99200K .......... .......... .......... .......... .......... 78% 112M 0s +2024-04-05T03:51:24Z #15 2.995 99250K .......... .......... .......... .......... .......... 78% 131M 0s +2024-04-05T03:51:24Z #15 2.995 99300K .......... .......... .......... .......... .......... 78% 129M 0s +2024-04-05T03:51:24Z #15 2.995 99350K .......... .......... .......... .......... .......... 78% 114M 0s +2024-04-05T03:51:24Z #15 2.995 99400K .......... .......... .......... .......... .......... 78% 139M 0s +2024-04-05T03:51:24Z #15 2.996 99450K .......... .......... .......... .......... .......... 78% 133M 0s +2024-04-05T03:51:24Z #15 2.998 99500K .......... .......... .......... .......... .......... 78% 135M 0s +2024-04-05T03:51:24Z #15 2.998 99550K .......... .......... .......... .......... .......... 78% 123M 0s +2024-04-05T03:51:24Z #15 2.998 99600K .......... .......... .......... .......... .......... 78% 131M 0s +2024-04-05T03:51:24Z #15 2.998 99650K .......... .......... .......... .......... .......... 78% 143M 0s +2024-04-05T03:51:24Z #15 2.998 99700K .......... .......... .......... .......... .......... 78% 124M 0s +2024-04-05T03:51:24Z #15 2.998 99750K .......... .......... .......... .......... .......... 78% 120M 0s +2024-04-05T03:51:24Z #15 2.998 99800K .......... .......... .......... .......... .......... 78% 56.3M 0s +2024-04-05T03:51:24Z #15 2.999 99850K .......... .......... .......... .......... .......... 78% 62.9M 0s +2024-04-05T03:51:24Z #15 3.000 99900K .......... .......... .......... .......... .......... 78% 61.8M 0s +2024-04-05T03:51:24Z #15 3.001 99950K .......... .......... .......... .......... .......... 78% 141M 0s +2024-04-05T03:51:24Z #15 3.001 100000K .......... .......... .......... .......... .......... 78% 70.7M 0s +2024-04-05T03:51:24Z #15 3.002 100050K .......... .......... .......... .......... .......... 78% 107M 0s +2024-04-05T03:51:24Z #15 3.006 100100K .......... .......... .......... .......... .......... 78% 147M 0s +2024-04-05T03:51:24Z #15 3.006 100150K .......... .......... .......... .......... .......... 79% 186M 0s +2024-04-05T03:51:24Z #15 3.006 100200K .......... .......... .......... .......... .......... 79% 168M 0s +2024-04-05T03:51:24Z #15 3.006 100250K .......... .......... .......... .......... .......... 79% 168M 0s +2024-04-05T03:51:24Z #15 3.006 100300K .......... .......... .......... .......... .......... 79% 130M 0s +2024-04-05T03:51:24Z #15 3.006 100350K .......... .......... .......... .......... .......... 79% 188M 0s +2024-04-05T03:51:24Z #15 3.006 100400K .......... .......... .......... .......... .......... 79% 162M 0s +2024-04-05T03:51:24Z #15 3.006 100450K .......... .......... .......... .......... .......... 79% 180M 0s +2024-04-05T03:51:24Z #15 3.006 100500K .......... .......... .......... .......... .......... 79% 167M 0s +2024-04-05T03:51:24Z #15 3.006 100550K .......... .......... .......... .......... .......... 79% 180M 0s +2024-04-05T03:51:24Z #15 3.006 100600K .......... .......... .......... .......... .......... 79% 191M 0s +2024-04-05T03:51:24Z #15 3.006 100650K .......... .......... .......... .......... .......... 79% 185M 0s +2024-04-05T03:51:24Z #15 3.006 100700K .......... .......... .......... .......... .......... 79% 111M 0s +2024-04-05T03:51:24Z #15 3.008 100750K .......... .......... .......... .......... .......... 79% 137M 0s +2024-04-05T03:51:24Z #15 3.008 100800K .......... .......... .......... .......... .......... 79% 141M 0s +2024-04-05T03:51:24Z #15 3.008 100850K .......... .......... .......... .......... .......... 79% 132M 0s +2024-04-05T03:51:24Z #15 3.008 100900K .......... .......... .......... .......... .......... 79% 125M 0s +2024-04-05T03:51:24Z #15 3.008 100950K .......... .......... .......... .......... .......... 79% 134M 0s +2024-04-05T03:51:24Z #15 3.008 101000K .......... .......... .......... .......... .......... 79% 136M 0s +2024-04-05T03:51:24Z #15 3.008 101050K .......... .......... .......... .......... .......... 79% 108M 0s +2024-04-05T03:51:24Z #15 3.009 101100K .......... .......... .......... .......... .......... 79% 109M 0s +2024-04-05T03:51:24Z #15 3.011 101150K .......... .......... .......... .......... .......... 79% 69.1M 0s +2024-04-05T03:51:24Z #15 3.011 101200K .......... .......... .......... .......... .......... 79% 143M 0s +2024-04-05T03:51:24Z #15 3.011 101250K .......... .......... .......... .......... .......... 79% 140M 0s +2024-04-05T03:51:24Z #15 3.011 101300K .......... .......... .......... .......... .......... 79% 123M 0s +2024-04-05T03:51:24Z #15 3.011 101350K .......... .......... .......... .......... .......... 79% 96.1M 0s +2024-04-05T03:51:24Z #15 3.012 101400K .......... .......... .......... .......... .......... 80% 109M 0s +2024-04-05T03:51:24Z #15 3.012 101450K .......... .......... .......... .......... .......... 80% 133M 0s +2024-04-05T03:51:24Z #15 3.012 101500K .......... .......... .......... .......... .......... 80% 98.7M 0s +2024-04-05T03:51:24Z #15 3.013 101550K .......... .......... .......... .......... .......... 80% 105M 0s +2024-04-05T03:51:24Z #15 3.016 101600K .......... .......... .......... .......... .......... 80% 180M 0s +2024-04-05T03:51:24Z #15 3.016 101650K .......... .......... .......... .......... .......... 80% 157M 0s +2024-04-05T03:51:24Z #15 3.016 101700K .......... .......... .......... .......... .......... 80% 158M 0s +2024-04-05T03:51:24Z #15 3.016 101750K .......... .......... .......... .......... .......... 80% 191M 0s +2024-04-05T03:51:24Z #15 3.016 101800K .......... .......... .......... .......... .......... 80% 176M 0s +2024-04-05T03:51:24Z #15 3.016 101850K .......... .......... .......... .......... .......... 80% 183M 0s +2024-04-05T03:51:24Z #15 3.016 101900K .......... .......... .......... .......... .......... 80% 95.4M 0s +2024-04-05T03:51:24Z #15 3.016 101950K .......... .......... .......... .......... .......... 80% 136M 0s +2024-04-05T03:51:24Z #15 3.016 102000K .......... .......... .......... .......... .......... 80% 146M 0s +2024-04-05T03:51:24Z #15 3.016 102050K .......... .......... .......... .......... .......... 80% 108M 0s +2024-04-05T03:51:24Z #15 3.017 102100K .......... .......... .......... .......... .......... 80% 68.6M 0s +2024-04-05T03:51:24Z #15 3.017 102150K .......... .......... .......... .......... .......... 80% 134M 0s +2024-04-05T03:51:24Z #15 3.018 102200K .......... .......... .......... .......... .......... 80% 91.3M 0s +2024-04-05T03:51:24Z #15 3.018 102250K .......... .......... .......... .......... .......... 80% 116M 0s +2024-04-05T03:51:24Z #15 3.019 102300K .......... .......... .......... .......... .......... 80% 128M 0s +2024-04-05T03:51:24Z #15 3.019 102350K .......... .......... .......... .......... .......... 80% 133M 0s +2024-04-05T03:51:24Z #15 3.020 102400K .......... .......... .......... .......... .......... 80% 134M 0s +2024-04-05T03:51:24Z #15 3.020 102450K .......... .......... .......... .......... .......... 80% 120M 0s +2024-04-05T03:51:24Z #15 3.020 102500K .......... .......... .......... .......... .......... 80% 127M 0s +2024-04-05T03:51:24Z #15 3.021 102550K .......... .......... .......... .......... .......... 80% 131M 0s +2024-04-05T03:51:24Z #15 3.021 102600K .......... .......... .......... .......... .......... 80% 132M 0s +2024-04-05T03:51:24Z #15 3.023 102650K .......... .......... .......... .......... .......... 81% 52.4M 0s +2024-04-05T03:51:24Z #15 3.023 102700K .......... .......... .......... .......... .......... 81% 54.5M 0s +2024-04-05T03:51:24Z #15 3.023 102750K .......... .......... .......... .......... .......... 81% 77.6M 0s +2024-04-05T03:51:24Z #15 3.024 102800K .......... .......... .......... .......... .......... 81% 64.5M 0s +2024-04-05T03:51:24Z #15 3.024 102850K .......... .......... .......... .......... .......... 81% 67.4M 0s +2024-04-05T03:51:24Z #15 3.026 102900K .......... .......... .......... .......... .......... 81% 134M 0s +2024-04-05T03:51:24Z #15 3.026 102950K .......... .......... .......... .......... .......... 81% 69.5M 0s +2024-04-05T03:51:24Z #15 3.027 103000K .......... .......... .......... .......... .......... 81% 123M 0s +2024-04-05T03:51:24Z #15 3.027 103050K .......... .......... .......... .......... .......... 81% 107M 0s +2024-04-05T03:51:24Z #15 3.027 103100K .......... .......... .......... .......... .......... 81% 98.4M 0s +2024-04-05T03:51:24Z #15 3.028 103150K .......... .......... .......... .......... .......... 81% 88.6M 0s +2024-04-05T03:51:24Z #15 3.028 103200K .......... .......... .......... .......... .......... 81% 98.7M 0s +2024-04-05T03:51:24Z #15 3.034 103250K .......... .......... .......... .......... .......... 81% 43.6M 0s +2024-04-05T03:51:24Z #15 3.034 103300K .......... .......... .......... .......... .......... 81% 168M 0s +2024-04-05T03:51:24Z #15 3.034 103350K .......... .......... .......... .......... .......... 81% 167M 0s +2024-04-05T03:51:24Z #15 3.034 103400K .......... .......... .......... .......... .......... 81% 160M 0s +2024-04-05T03:51:24Z #15 3.034 103450K .......... .......... .......... .......... .......... 81% 129M 0s +2024-04-05T03:51:24Z #15 3.034 103500K .......... .......... .......... .......... .......... 81% 163M 0s +2024-04-05T03:51:24Z #15 3.034 103550K .......... .......... .......... .......... .......... 81% 171M 0s +2024-04-05T03:51:24Z #15 3.034 103600K .......... .......... .......... .......... .......... 81% 165M 0s +2024-04-05T03:51:24Z #15 3.034 103650K .......... .......... .......... .......... .......... 81% 144M 0s +2024-04-05T03:51:24Z #15 3.034 103700K .......... .......... .......... .......... .......... 81% 175M 0s +2024-04-05T03:51:24Z #15 3.034 103750K .......... .......... .......... .......... .......... 81% 170M 0s +2024-04-05T03:51:24Z #15 3.034 103800K .......... .......... .......... .......... .......... 81% 168M 0s +2024-04-05T03:51:24Z #15 3.034 103850K .......... .......... .......... .......... .......... 81% 148M 0s +2024-04-05T03:51:24Z #15 3.034 103900K .......... .......... .......... .......... .......... 81% 172M 0s +2024-04-05T03:51:24Z #15 3.034 103950K .......... .......... .......... .......... .......... 82% 121M 0s +2024-04-05T03:51:24Z #15 3.036 104000K .......... .......... .......... .......... .......... 82% 128M 0s +2024-04-05T03:51:24Z #15 3.036 104050K .......... .......... .......... .......... .......... 82% 74.7M 0s +2024-04-05T03:51:24Z #15 3.036 104100K .......... .......... .......... .......... .......... 82% 122M 0s +2024-04-05T03:51:24Z #15 3.036 104150K .......... .......... .......... .......... .......... 82% 127M 0s +2024-04-05T03:51:24Z #15 3.036 104200K .......... .......... .......... .......... .......... 82% 104M 0s +2024-04-05T03:51:24Z #15 3.045 104250K .......... .......... .......... .......... .......... 82% 78.5M 0s +2024-04-05T03:51:24Z #15 3.045 104300K .......... .......... .......... .......... .......... 82% 885K 0s +2024-04-05T03:51:24Z #15 3.094 104350K .......... .......... .......... .......... .......... 82% 70.4M 0s +2024-04-05T03:51:24Z #15 3.095 104400K .......... .......... .......... .......... .......... 82% 146M 0s +2024-04-05T03:51:24Z #15 3.096 104450K .......... .......... .......... .......... .......... 82% 87.0M 0s +2024-04-05T03:51:24Z #15 3.096 104500K .......... .......... .......... .......... .......... 82% 140M 0s +2024-04-05T03:51:24Z #15 3.096 104550K .......... .......... .......... .......... .......... 82% 171M 0s +2024-04-05T03:51:24Z #15 3.096 104600K .......... .......... .......... .......... .......... 82% 136M 0s +2024-04-05T03:51:24Z #15 3.104 104650K .......... .......... .......... .......... .......... 82% 130M 0s +2024-04-05T03:51:24Z #15 3.104 104700K .......... .......... .......... .......... .......... 82% 146M 0s +2024-04-05T03:51:24Z #15 3.104 104750K .......... .......... .......... .......... .......... 82% 159M 0s +2024-04-05T03:51:24Z #15 3.104 104800K .......... .......... .......... .......... .......... 82% 147M 0s +2024-04-05T03:51:24Z #15 3.104 104850K .......... .......... .......... .......... .......... 82% 117M 0s +2024-04-05T03:51:24Z #15 3.104 104900K .......... .......... .......... .......... .......... 82% 130M 0s +2024-04-05T03:51:24Z #15 3.104 104950K .......... .......... .......... .......... .......... 82% 165M 0s +2024-04-05T03:51:24Z #15 3.104 105000K .......... .......... .......... .......... .......... 82% 145M 0s +2024-04-05T03:51:24Z #15 3.104 105050K .......... .......... .......... .......... .......... 82% 133M 0s +2024-04-05T03:51:24Z #15 3.104 105100K .......... .......... .......... .......... .......... 82% 157M 0s +2024-04-05T03:51:24Z #15 3.104 105150K .......... .......... .......... .......... .......... 82% 168M 0s +2024-04-05T03:51:24Z #15 3.104 105200K .......... .......... .......... .......... .......... 83% 124M 0s +2024-04-05T03:51:24Z #15 3.104 105250K .......... .......... .......... .......... .......... 83% 148M 0s +2024-04-05T03:51:24Z #15 3.104 105300K .......... .......... .......... .......... .......... 83% 138M 0s +2024-04-05T03:51:24Z #15 3.104 105350K .......... .......... .......... .......... .......... 83% 140M 0s +2024-04-05T03:51:24Z #15 3.104 105400K .......... .......... .......... .......... .......... 83% 118M 0s +2024-04-05T03:51:24Z #15 3.104 105450K .......... .......... .......... .......... .......... 83% 124M 0s +2024-04-05T03:51:24Z #15 3.104 105500K .......... .......... .......... .......... .......... 83% 130M 0s +2024-04-05T03:51:24Z #15 3.104 105550K .......... .......... .......... .......... .......... 83% 124M 0s +2024-04-05T03:51:24Z #15 3.104 105600K .......... .......... .......... .......... .......... 83% 25.3M 0s +2024-04-05T03:51:24Z #15 3.111 105650K .......... .......... .......... .......... .......... 83% 172M 0s +2024-04-05T03:51:24Z #15 3.111 105700K .......... .......... .......... .......... .......... 83% 173M 0s +2024-04-05T03:51:24Z #15 3.111 105750K .......... .......... .......... .......... .......... 83% 146M 0s +2024-04-05T03:51:24Z #15 3.111 105800K .......... .......... .......... .......... .......... 83% 138M 0s +2024-04-05T03:51:24Z #15 3.111 105850K .......... .......... .......... .......... .......... 83% 151M 0s +2024-04-05T03:51:24Z #15 3.111 105900K .......... .......... .......... .......... .......... 83% 163M 0s +2024-04-05T03:51:24Z #15 3.111 105950K .......... .......... .......... .......... .......... 83% 157M 0s +2024-04-05T03:51:24Z #15 3.111 106000K .......... .......... .......... .......... .......... 83% 130M 0s +2024-04-05T03:51:24Z #15 3.111 106050K .......... .......... .......... .......... .......... 83% 140M 0s +2024-04-05T03:51:24Z #15 3.111 106100K .......... .......... .......... .......... .......... 83% 29.5M 0s +2024-04-05T03:51:24Z #15 3.111 106150K .......... .......... .......... .......... .......... 83% 166M 0s +2024-04-05T03:51:24Z #15 3.111 106200K .......... .......... .......... .......... .......... 83% 137M 0s +2024-04-05T03:51:24Z #15 3.113 106250K .......... .......... .......... .......... .......... 83% 169M 0s +2024-04-05T03:51:24Z #15 3.113 106300K .......... .......... .......... .......... .......... 83% 159M 0s +2024-04-05T03:51:24Z #15 3.113 106350K .......... .......... .......... .......... .......... 83% 70.6M 0s +2024-04-05T03:51:24Z #15 3.113 106400K .......... .......... .......... .......... .......... 83% 24.8M 0s +2024-04-05T03:51:24Z #15 3.114 106450K .......... .......... .......... .......... .......... 84% 130M 0s +2024-04-05T03:51:24Z #15 3.114 106500K .......... .......... .......... .......... .......... 84% 99.9M 0s +2024-04-05T03:51:24Z #15 3.116 106550K .......... .......... .......... .......... .......... 84% 27.7M 0s +2024-04-05T03:51:24Z #15 3.116 106600K .......... .......... .......... .......... .......... 84% 176M 0s +2024-04-05T03:51:24Z #15 3.116 106650K .......... .......... .......... .......... .......... 84% 153M 0s +2024-04-05T03:51:24Z #15 3.117 106700K .......... .......... .......... .......... .......... 84% 144M 0s +2024-04-05T03:51:24Z #15 3.119 106750K .......... .......... .......... .......... .......... 84% 127M 0s +2024-04-05T03:51:24Z #15 3.119 106800K .......... .......... .......... .......... .......... 84% 27.8M 0s +2024-04-05T03:51:24Z #15 3.120 106850K .......... .......... .......... .......... .......... 84% 168M 0s +2024-04-05T03:51:24Z #15 3.120 106900K .......... .......... .......... .......... .......... 84% 177M 0s +2024-04-05T03:51:24Z #15 3.120 106950K .......... .......... .......... .......... .......... 84% 108M 0s +2024-04-05T03:51:24Z #15 3.121 107000K .......... .......... .......... .......... .......... 84% 148M 0s +2024-04-05T03:51:24Z #15 3.121 107050K .......... .......... .......... .......... .......... 84% 151M 0s +2024-04-05T03:51:24Z #15 3.122 107100K .......... .......... .......... .......... .......... 84% 180M 0s +2024-04-05T03:51:24Z #15 3.122 107150K .......... .......... .......... .......... .......... 84% 139M 0s +2024-04-05T03:51:24Z #15 3.123 107200K .......... .......... .......... .......... .......... 84% 148M 0s +2024-04-05T03:51:24Z #15 3.123 107250K .......... .......... .......... .......... .......... 84% 140M 0s +2024-04-05T03:51:24Z #15 3.123 107300K .......... .......... .......... .......... .......... 84% 160M 0s +2024-04-05T03:51:24Z #15 3.123 107350K .......... .......... .......... .......... .......... 84% 140M 0s +2024-04-05T03:51:24Z #15 3.123 107400K .......... .......... .......... .......... .......... 84% 110M 0s +2024-04-05T03:51:24Z #15 3.123 107450K .......... .......... .......... .......... .......... 84% 137M 0s +2024-04-05T03:51:24Z #15 3.124 107500K .......... .......... .......... .......... .......... 84% 128M 0s +2024-04-05T03:51:24Z #15 3.124 107550K .......... .......... .......... .......... .......... 84% 153M 0s +2024-04-05T03:51:24Z #15 3.124 107600K .......... .......... .......... .......... .......... 84% 119M 0s +2024-04-05T03:51:24Z #15 3.125 107650K .......... .......... .......... .......... .......... 84% 114M 0s +2024-04-05T03:51:24Z #15 3.125 107700K .......... .......... .......... .......... .......... 84% 128M 0s +2024-04-05T03:51:24Z #15 3.125 107750K .......... .......... .......... .......... .......... 85% 138M 0s +2024-04-05T03:51:24Z #15 3.126 107800K .......... .......... .......... .......... .......... 85% 131M 0s +2024-04-05T03:51:24Z #15 3.126 107850K .......... .......... .......... .......... .......... 85% 129M 0s +2024-04-05T03:51:24Z #15 3.126 107900K .......... .......... .......... .......... .......... 85% 151M 0s +2024-04-05T03:51:24Z #15 3.130 107950K .......... .......... .......... .......... .......... 85% 122M 0s +2024-04-05T03:51:24Z #15 3.130 108000K .......... .......... .......... .......... .......... 85% 150M 0s +2024-04-05T03:51:24Z #15 3.130 108050K .......... .......... .......... .......... .......... 85% 146M 0s +2024-04-05T03:51:24Z #15 3.130 108100K .......... .......... .......... .......... .......... 85% 160M 0s +2024-04-05T03:51:24Z #15 3.130 108150K .......... .......... .......... .......... .......... 85% 144M 0s +2024-04-05T03:51:24Z #15 3.130 108200K .......... .......... .......... .......... .......... 85% 137M 0s +2024-04-05T03:51:24Z #15 3.130 108250K .......... .......... .......... .......... .......... 85% 5.29M 0s +2024-04-05T03:51:24Z #15 3.138 108300K .......... .......... .......... .......... .......... 85% 121M 0s +2024-04-05T03:51:24Z #15 3.139 108350K .......... .......... .......... .......... .......... 85% 132M 0s +2024-04-05T03:51:24Z #15 3.139 108400K .......... .......... .......... .......... .......... 85% 151M 0s +2024-04-05T03:51:24Z #15 3.139 108450K .......... .......... .......... .......... .......... 85% 162M 0s +2024-04-05T03:51:24Z #15 3.140 108500K .......... .......... .......... .......... .......... 85% 123M 0s +2024-04-05T03:51:24Z #15 3.140 108550K .......... .......... .......... .......... .......... 85% 134M 0s +2024-04-05T03:51:24Z #15 3.140 108600K .......... .......... .......... .......... .......... 85% 164M 0s +2024-04-05T03:51:24Z #15 3.141 108650K .......... .......... .......... .......... .......... 85% 162M 0s +2024-04-05T03:51:24Z #15 3.141 108700K .......... .......... .......... .......... .......... 85% 116M 0s +2024-04-05T03:51:24Z #15 3.141 108750K .......... .......... .......... .......... .......... 85% 129M 0s +2024-04-05T03:51:24Z #15 3.142 108800K .......... .......... .......... .......... .......... 85% 130M 0s +2024-04-05T03:51:24Z #15 3.142 108850K .......... .......... .......... .......... .......... 85% 144M 0s +2024-04-05T03:51:24Z #15 3.142 108900K .......... .......... .......... .......... .......... 85% 121M 0s +2024-04-05T03:51:24Z #15 3.144 108950K .......... .......... .......... .......... .......... 85% 142M 0s +2024-04-05T03:51:24Z #15 3.144 109000K .......... .......... .......... .......... .......... 86% 133M 0s +2024-04-05T03:51:24Z #15 3.144 109050K .......... .......... .......... .......... .......... 86% 144M 0s +2024-04-05T03:51:24Z #15 3.144 109100K .......... .......... .......... .......... .......... 86% 119M 0s +2024-04-05T03:51:24Z #15 3.144 109150K .......... .......... .......... .......... .......... 86% 134M 0s +2024-04-05T03:51:24Z #15 3.145 109200K .......... .......... .......... .......... .......... 86% 144M 0s +2024-04-05T03:51:24Z #15 3.145 109250K .......... .......... .......... .......... .......... 86% 158M 0s +2024-04-05T03:51:24Z #15 3.145 109300K .......... .......... .......... .......... .......... 86% 116M 0s +2024-04-05T03:51:24Z #15 3.146 109350K .......... .......... .......... .......... .......... 86% 5.82M 0s +2024-04-05T03:51:24Z #15 3.154 109400K .......... .......... .......... .......... .......... 86% 172M 0s +2024-04-05T03:51:24Z #15 3.154 109450K .......... .......... .......... .......... .......... 86% 159M 0s +2024-04-05T03:51:24Z #15 3.155 109500K .......... .......... .......... .......... .......... 86% 139M 0s +2024-04-05T03:51:24Z #15 3.155 109550K .......... .......... .......... .......... .......... 86% 172M 0s +2024-04-05T03:51:24Z #15 3.155 109600K .......... .......... .......... .......... .......... 86% 174M 0s +2024-04-05T03:51:24Z #15 3.156 109650K .......... .......... .......... .......... .......... 86% 175M 0s +2024-04-05T03:51:24Z #15 3.156 109700K .......... .......... .......... .......... .......... 86% 160M 0s +2024-04-05T03:51:24Z #15 3.156 109750K .......... .......... .......... .......... .......... 86% 159M 0s +2024-04-05T03:51:24Z #15 3.157 109800K .......... .......... .......... .......... .......... 86% 171M 0s +2024-04-05T03:51:24Z #15 3.157 109850K .......... .......... .......... .......... .......... 86% 153M 0s +2024-04-05T03:51:24Z #15 3.157 109900K .......... .......... .......... .......... .......... 86% 157M 0s +2024-04-05T03:51:24Z #15 3.158 109950K .......... .......... .......... .......... .......... 86% 175M 0s +2024-04-05T03:51:24Z #15 3.158 110000K .......... .......... .......... .......... .......... 86% 151M 0s +2024-04-05T03:51:24Z #15 3.158 110050K .......... .......... .......... .......... .......... 86% 152M 0s +2024-04-05T03:51:24Z #15 3.158 110100K .......... .......... .......... .......... .......... 86% 176M 0s +2024-04-05T03:51:24Z #15 3.159 110150K .......... .......... .......... .......... .......... 86% 176M 0s +2024-04-05T03:51:24Z #15 3.159 110200K .......... .......... .......... .......... .......... 86% 136M 0s +2024-04-05T03:51:24Z #15 3.159 110250K .......... .......... .......... .......... .......... 86% 164M 0s +2024-04-05T03:51:24Z #15 3.159 110300K .......... .......... .......... .......... .......... 87% 174M 0s +2024-04-05T03:51:24Z #15 3.160 110350K .......... .......... .......... .......... .......... 87% 166M 0s +2024-04-05T03:51:24Z #15 3.160 110400K .......... .......... .......... .......... .......... 87% 133M 0s +2024-04-05T03:51:24Z #15 3.161 110450K .......... .......... .......... .......... .......... 87% 170M 0s +2024-04-05T03:51:24Z #15 3.161 110500K .......... .......... .......... .......... .......... 87% 181M 0s +2024-04-05T03:51:24Z #15 3.161 110550K .......... .......... .......... .......... .......... 87% 134M 0s +2024-04-05T03:51:24Z #15 3.161 110600K .......... .......... .......... .......... .......... 87% 159M 0s +2024-04-05T03:51:24Z #15 3.162 110650K .......... .......... .......... .......... .......... 87% 144M 0s +2024-04-05T03:51:24Z #15 3.162 110700K .......... .......... .......... .......... .......... 87% 164M 0s +2024-04-05T03:51:24Z #15 3.162 110750K .......... .......... .......... .......... .......... 87% 146M 0s +2024-04-05T03:51:24Z #15 3.163 110800K .......... .......... .......... .......... .......... 87% 176M 0s +2024-04-05T03:51:24Z #15 3.163 110850K .......... .......... .......... .......... .......... 87% 148M 0s +2024-04-05T03:51:24Z #15 3.163 110900K .......... .......... .......... .......... .......... 87% 162M 0s +2024-04-05T03:51:24Z #15 3.164 110950K .......... .......... .......... .......... .......... 87% 127M 0s +2024-04-05T03:51:24Z #15 3.164 111000K .......... .......... .......... .......... .......... 87% 136M 0s +2024-04-05T03:51:24Z #15 3.164 111050K .......... .......... .......... .......... .......... 87% 174M 0s +2024-04-05T03:51:24Z #15 3.164 111100K .......... .......... .......... .......... .......... 87% 142M 0s +2024-04-05T03:51:24Z #15 3.165 111150K .......... .......... .......... .......... .......... 87% 162M 0s +2024-04-05T03:51:24Z #15 3.165 111200K .......... .......... .......... .......... .......... 87% 170M 0s +2024-04-05T03:51:24Z #15 3.165 111250K .......... .......... .......... .......... .......... 87% 22.0M 0s +2024-04-05T03:51:24Z #15 3.168 111300K .......... .......... .......... .......... .......... 87% 142M 0s +2024-04-05T03:51:24Z #15 3.168 111350K .......... .......... .......... .......... .......... 87% 146M 0s +2024-04-05T03:51:24Z #15 3.168 111400K .......... .......... .......... .......... .......... 87% 142M 0s +2024-04-05T03:51:24Z #15 3.169 111450K .......... .......... .......... .......... .......... 87% 146M 0s +2024-04-05T03:51:24Z #15 3.169 111500K .......... .......... .......... .......... .......... 87% 127M 0s +2024-04-05T03:51:24Z #15 3.170 111550K .......... .......... .......... .......... .......... 88% 122M 0s +2024-04-05T03:51:24Z #15 3.170 111600K .......... .......... .......... .......... .......... 88% 141M 0s +2024-04-05T03:51:24Z #15 3.170 111650K .......... .......... .......... .......... .......... 88% 120M 0s +2024-04-05T03:51:24Z #15 3.171 111700K .......... .......... .......... .......... .......... 88% 160M 0s +2024-04-05T03:51:24Z #15 3.171 111750K .......... .......... .......... .......... .......... 88% 133M 0s +2024-04-05T03:51:24Z #15 3.171 111800K .......... .......... .......... .......... .......... 88% 153M 0s +2024-04-05T03:51:24Z #15 3.172 111850K .......... .......... .......... .......... .......... 88% 120M 0s +2024-04-05T03:51:24Z #15 3.172 111900K .......... .......... .......... .......... .......... 88% 155M 0s +2024-04-05T03:51:24Z #15 3.172 111950K .......... .......... .......... .......... .......... 88% 112M 0s +2024-04-05T03:51:24Z #15 3.173 112000K .......... .......... .......... .......... .......... 88% 129M 0s +2024-04-05T03:51:24Z #15 3.173 112050K .......... .......... .......... .......... .......... 88% 96.3M 0s +2024-04-05T03:51:24Z #15 3.174 112100K .......... .......... .......... .......... .......... 88% 121M 0s +2024-04-05T03:51:24Z #15 3.175 112150K .......... .......... .......... .......... .......... 88% 138M 0s +2024-04-05T03:51:24Z #15 3.175 112200K .......... .......... .......... .......... .......... 88% 123M 0s +2024-04-05T03:51:24Z #15 3.175 112250K .......... .......... .......... .......... .......... 88% 104M 0s +2024-04-05T03:51:24Z #15 3.175 112300K .......... .......... .......... .......... .......... 88% 135M 0s +2024-04-05T03:51:24Z #15 3.176 112350K .......... .......... .......... .......... .......... 88% 104M 0s +2024-04-05T03:51:24Z #15 3.176 112400K .......... .......... .......... .......... .......... 88% 123M 0s +2024-04-05T03:51:24Z #15 3.176 112450K .......... .......... .......... .......... .......... 88% 127M 0s +2024-04-05T03:51:24Z #15 3.177 112500K .......... .......... .......... .......... .......... 88% 127M 0s +2024-04-05T03:51:24Z #15 3.177 112550K .......... .......... .......... .......... .......... 88% 85.8M 0s +2024-04-05T03:51:24Z #15 3.178 112600K .......... .......... .......... .......... .......... 88% 123M 0s +2024-04-05T03:51:24Z #15 3.178 112650K .......... .......... .......... .......... .......... 88% 109M 0s +2024-04-05T03:51:24Z #15 3.179 112700K .......... .......... .......... .......... .......... 88% 116M 0s +2024-04-05T03:51:24Z #15 3.180 112750K .......... .......... .......... .......... .......... 88% 141M 0s +2024-04-05T03:51:24Z #15 3.180 112800K .......... .......... .......... .......... .......... 89% 106M 0s +2024-04-05T03:51:24Z #15 3.180 112850K .......... .......... .......... .......... .......... 89% 122M 0s +2024-04-05T03:51:24Z #15 3.180 112900K .......... .......... .......... .......... .......... 89% 91.4M 0s +2024-04-05T03:51:24Z #15 3.181 112950K .......... .......... .......... .......... .......... 89% 120M 0s +2024-04-05T03:51:24Z #15 3.182 113000K .......... .......... .......... .......... .......... 89% 146M 0s +2024-04-05T03:51:24Z #15 3.182 113050K .......... .......... .......... .......... .......... 89% 102M 0s +2024-04-05T03:51:24Z #15 3.182 113100K .......... .......... .......... .......... .......... 89% 141M 0s +2024-04-05T03:51:24Z #15 3.182 113150K .......... .......... .......... .......... .......... 89% 125M 0s +2024-04-05T03:51:24Z #15 3.183 113200K .......... .......... .......... .......... .......... 89% 98.6M 0s +2024-04-05T03:51:24Z #15 3.183 113250K .......... .......... .......... .......... .......... 89% 101M 0s +2024-04-05T03:51:24Z #15 3.184 113300K .......... .......... .......... .......... .......... 89% 135M 0s +2024-04-05T03:51:24Z #15 3.184 113350K .......... .......... .......... .......... .......... 89% 103M 0s +2024-04-05T03:51:24Z #15 3.185 113400K .......... .......... .......... .......... .......... 89% 119M 0s +2024-04-05T03:51:24Z #15 3.185 113450K .......... .......... .......... .......... .......... 89% 136M 0s +2024-04-05T03:51:24Z #15 3.185 113500K .......... .......... .......... .......... .......... 89% 120M 0s +2024-04-05T03:51:24Z #15 3.186 113550K .......... .......... .......... .......... .......... 89% 139M 0s +2024-04-05T03:51:24Z #15 3.186 113600K .......... .......... .......... .......... .......... 89% 118M 0s +2024-04-05T03:51:24Z #15 3.187 113650K .......... .......... .......... .......... .......... 89% 136M 0s +2024-04-05T03:51:24Z #15 3.188 113700K .......... .......... .......... .......... .......... 89% 141M 0s +2024-04-05T03:51:24Z #15 3.188 113750K .......... .......... .......... .......... .......... 89% 119M 0s +2024-04-05T03:51:24Z #15 3.188 113800K .......... .......... .......... .......... .......... 89% 128M 0s +2024-04-05T03:51:24Z #15 3.188 113850K .......... .......... .......... .......... .......... 89% 136M 0s +2024-04-05T03:51:24Z #15 3.188 113900K .......... .......... .......... .......... .......... 89% 116M 0s +2024-04-05T03:51:24Z #15 3.189 113950K .......... .......... .......... .......... .......... 89% 119M 0s +2024-04-05T03:51:24Z #15 3.190 114000K .......... .......... .......... .......... .......... 89% 151M 0s +2024-04-05T03:51:24Z #15 3.190 114050K .......... .......... .......... .......... .......... 89% 123M 0s +2024-04-05T03:51:24Z #15 3.190 114100K .......... .......... .......... .......... .......... 90% 127M 0s +2024-04-05T03:51:24Z #15 3.190 114150K .......... .......... .......... .......... .......... 90% 111M 0s +2024-04-05T03:51:24Z #15 3.191 114200K .......... .......... .......... .......... .......... 90% 130M 0s +2024-04-05T03:51:24Z #15 3.191 114250K .......... .......... .......... .......... .......... 90% 123M 0s +2024-04-05T03:51:24Z #15 3.192 114300K .......... .......... .......... .......... .......... 90% 102M 0s +2024-04-05T03:51:24Z #15 3.192 114350K .......... .......... .......... .......... .......... 90% 131M 0s +2024-04-05T03:51:24Z #15 3.193 114400K .......... .......... .......... .......... .......... 90% 114M 0s +2024-04-05T03:51:24Z #15 3.193 114450K .......... .......... .......... .......... .......... 90% 161M 0s +2024-04-05T03:51:24Z #15 3.193 114500K .......... .......... .......... .......... .......... 90% 132M 0s +2024-04-05T03:51:24Z #15 3.193 114550K .......... .......... .......... .......... .......... 90% 109M 0s +2024-04-05T03:51:24Z #15 3.194 114600K .......... .......... .......... .......... .......... 90% 126M 0s +2024-04-05T03:51:24Z #15 3.195 114650K .......... .......... .......... .......... .......... 90% 147M 0s +2024-04-05T03:51:24Z #15 3.195 114700K .......... .......... .......... .......... .......... 90% 98.9M 0s +2024-04-05T03:51:24Z #15 3.196 114750K .......... .......... .......... .......... .......... 90% 132M 0s +2024-04-05T03:51:24Z #15 3.196 114800K .......... .......... .......... .......... .......... 90% 135M 0s +2024-04-05T03:51:24Z #15 3.196 114850K .......... .......... .......... .......... .......... 90% 115M 0s +2024-04-05T03:51:24Z #15 3.197 114900K .......... .......... .......... .......... .......... 90% 143M 0s +2024-04-05T03:51:24Z #15 3.197 114950K .......... .......... .......... .......... .......... 90% 142M 0s +2024-04-05T03:51:24Z #15 3.197 115000K .......... .......... .......... .......... .......... 90% 133M 0s +2024-04-05T03:51:24Z #15 3.198 115050K .......... .......... .......... .......... .......... 90% 117M 0s +2024-04-05T03:51:24Z #15 3.198 115100K .......... .......... .......... .......... .......... 90% 126M 0s +2024-04-05T03:51:24Z #15 3.198 115150K .......... .......... .......... .......... .......... 90% 132M 0s +2024-04-05T03:51:24Z #15 3.199 115200K .......... .......... .......... .......... .......... 90% 115M 0s +2024-04-05T03:51:24Z #15 3.199 115250K .......... .......... .......... .......... .......... 90% 144M 0s +2024-04-05T03:51:24Z #15 3.199 115300K .......... .......... .......... .......... .......... 90% 150M 0s +2024-04-05T03:51:24Z #15 3.200 115350K .......... .......... .......... .......... .......... 91% 138M 0s +2024-04-05T03:51:24Z #15 3.200 115400K .......... .......... .......... .......... .......... 91% 126M 0s +2024-04-05T03:51:24Z #15 3.200 115450K .......... .......... .......... .......... .......... 91% 118M 0s +2024-04-05T03:51:24Z #15 3.201 115500K .......... .......... .......... .......... .......... 91% 136M 0s +2024-04-05T03:51:24Z #15 3.202 115550K .......... .......... .......... .......... .......... 91% 145M 0s +2024-04-05T03:51:24Z #15 3.202 115600K .......... .......... .......... .......... .......... 91% 112M 0s +2024-04-05T03:51:24Z #15 3.202 115650K .......... .......... .......... .......... .......... 91% 130M 0s +2024-04-05T03:51:24Z #15 3.202 115700K .......... .......... .......... .......... .......... 91% 147M 0s +2024-04-05T03:51:24Z #15 3.203 115750K .......... .......... .......... .......... .......... 91% 114M 0s +2024-04-05T03:51:24Z #15 3.204 115800K .......... .......... .......... .......... .......... 91% 122M 0s +2024-04-05T03:51:24Z #15 3.204 115850K .......... .......... .......... .......... .......... 91% 114M 0s +2024-04-05T03:51:24Z #15 3.204 115900K .......... .......... .......... .......... .......... 91% 115M 0s +2024-04-05T03:51:24Z #15 3.205 115950K .......... .......... .......... .......... .......... 91% 118M 0s +2024-04-05T03:51:24Z #15 3.205 116000K .......... .......... .......... .......... .......... 91% 124M 0s +2024-04-05T03:51:24Z #15 3.205 116050K .......... .......... .......... .......... .......... 91% 115M 0s +2024-04-05T03:51:24Z #15 3.206 116100K .......... .......... .......... .......... .......... 91% 123M 0s +2024-04-05T03:51:24Z #15 3.206 116150K .......... .......... .......... .......... .......... 91% 119M 0s +2024-04-05T03:51:24Z #15 3.207 116200K .......... .......... .......... .......... .......... 91% 137M 0s +2024-04-05T03:51:24Z #15 3.207 116250K .......... .......... .......... .......... .......... 91% 110M 0s +2024-04-05T03:51:24Z #15 3.207 116300K .......... .......... .......... .......... .......... 91% 127M 0s +2024-04-05T03:51:24Z #15 3.208 116350K .......... .......... .......... .......... .......... 91% 136M 0s +2024-04-05T03:51:24Z #15 3.208 116400K .......... .......... .......... .......... .......... 91% 141M 0s +2024-04-05T03:51:24Z #15 3.209 116450K .......... .......... .......... .......... .......... 91% 114M 0s +2024-04-05T03:51:24Z #15 3.209 116500K .......... .......... .......... .......... .......... 91% 131M 0s +2024-04-05T03:51:24Z #15 3.209 116550K .......... .......... .......... .......... .......... 91% 134M 0s +2024-04-05T03:51:24Z #15 3.210 116600K .......... .......... .......... .......... .......... 92% 102M 0s +2024-04-05T03:51:24Z #15 3.210 116650K .......... .......... .......... .......... .......... 92% 130M 0s +2024-04-05T03:51:24Z #15 3.210 116700K .......... .......... .......... .......... .......... 92% 104M 0s +2024-04-05T03:51:24Z #15 3.211 116750K .......... .......... .......... .......... .......... 92% 113M 0s +2024-04-05T03:51:24Z #15 3.212 116800K .......... .......... .......... .......... .......... 92% 129M 0s +2024-04-05T03:51:24Z #15 3.212 116850K .......... .......... .......... .......... .......... 92% 95.2M 0s +2024-04-05T03:51:24Z #15 3.212 116900K .......... .......... .......... .......... .......... 92% 132M 0s +2024-04-05T03:51:24Z #15 3.213 116950K .......... .......... .......... .......... .......... 92% 131M 0s +2024-04-05T03:51:24Z #15 3.213 117000K .......... .......... .......... .......... .......... 92% 126M 0s +2024-04-05T03:51:24Z #15 3.214 117050K .......... .......... .......... .......... .......... 92% 128M 0s +2024-04-05T03:51:24Z #15 3.214 117100K .......... .......... .......... .......... .......... 92% 134M 0s +2024-04-05T03:51:24Z #15 3.214 117150K .......... .......... .......... .......... .......... 92% 118M 0s +2024-04-05T03:51:24Z #15 3.214 117200K .......... .......... .......... .......... .......... 92% 126M 0s +2024-04-05T03:51:24Z #15 3.215 117250K .......... .......... .......... .......... .......... 92% 97.6M 0s +2024-04-05T03:51:24Z #15 3.215 117300K .......... .......... .......... .......... .......... 92% 122M 0s +2024-04-05T03:51:24Z #15 3.216 117350K .......... .......... .......... .......... .......... 92% 120M 0s +2024-04-05T03:51:24Z #15 3.216 117400K .......... .......... .......... .......... .......... 92% 151M 0s +2024-04-05T03:51:24Z #15 3.216 117450K .......... .......... .......... .......... .......... 92% 116M 0s +2024-04-05T03:51:24Z #15 3.217 117500K .......... .......... .......... .......... .......... 92% 127M 0s +2024-04-05T03:51:24Z #15 3.217 117550K .......... .......... .......... .......... .......... 92% 128M 0s +2024-04-05T03:51:24Z #15 3.218 117600K .......... .......... .......... .......... .......... 92% 94.8M 0s +2024-04-05T03:51:24Z #15 3.222 117650K .......... .......... .......... .......... .......... 92% 110M 0s +2024-04-05T03:51:24Z #15 3.222 117700K .......... .......... .......... .......... .......... 92% 137M 0s +2024-04-05T03:51:24Z #15 3.222 117750K .......... .......... .......... .......... .......... 92% 132M 0s +2024-04-05T03:51:24Z #15 3.222 117800K .......... .......... .......... .......... .......... 92% 135M 0s +2024-04-05T03:51:24Z #15 3.222 117850K .......... .......... .......... .......... .......... 92% 117M 0s +2024-04-05T03:51:24Z #15 3.222 117900K .......... .......... .......... .......... .......... 93% 134M 0s +2024-04-05T03:51:24Z #15 3.222 117950K .......... .......... .......... .......... .......... 93% 145M 0s +2024-04-05T03:51:24Z #15 3.222 118000K .......... .......... .......... .......... .......... 93% 124M 0s +2024-04-05T03:51:24Z #15 3.222 118050K .......... .......... .......... .......... .......... 93% 112M 0s +2024-04-05T03:51:24Z #15 3.222 118100K .......... .......... .......... .......... .......... 93% 95.2M 0s +2024-04-05T03:51:24Z #15 3.226 118150K .......... .......... .......... .......... .......... 93% 143M 0s +2024-04-05T03:51:24Z #15 3.226 118200K .......... .......... .......... .......... .......... 93% 122M 0s +2024-04-05T03:51:24Z #15 3.226 118250K .......... .......... .......... .......... .......... 93% 115M 0s +2024-04-05T03:51:24Z #15 3.226 118300K .......... .......... .......... .......... .......... 93% 138M 0s +2024-04-05T03:51:24Z #15 3.226 118350K .......... .......... .......... .......... .......... 93% 111M 0s +2024-04-05T03:51:24Z #15 3.226 118400K .......... .......... .......... .......... .......... 93% 160M 0s +2024-04-05T03:51:24Z #15 3.226 118450K .......... .......... .......... .......... .......... 93% 137M 0s +2024-04-05T03:51:24Z #15 3.226 118500K .......... .......... .......... .......... .......... 93% 133M 0s +2024-04-05T03:51:24Z #15 3.226 118550K .......... .......... .......... .......... .......... 93% 116M 0s +2024-04-05T03:51:24Z #15 3.226 118600K .......... .......... .......... .......... .......... 93% 124M 0s +2024-04-05T03:51:24Z #15 3.226 118650K .......... .......... .......... .......... .......... 93% 126M 0s +2024-04-05T03:51:24Z #15 3.227 118700K .......... .......... .......... .......... .......... 93% 136M 0s +2024-04-05T03:51:24Z #15 3.227 118750K .......... .......... .......... .......... .......... 93% 134M 0s +2024-04-05T03:51:24Z #15 3.227 118800K .......... .......... .......... .......... .......... 93% 126M 0s +2024-04-05T03:51:24Z #15 3.227 118850K .......... .......... .......... .......... .......... 93% 114M 0s +2024-04-05T03:51:24Z #15 3.228 118900K .......... .......... .......... .......... .......... 93% 119M 0s +2024-04-05T03:51:24Z #15 3.229 118950K .......... .......... .......... .......... .......... 93% 152M 0s +2024-04-05T03:51:24Z #15 3.229 119000K .......... .......... .......... .......... .......... 93% 132M 0s +2024-04-05T03:51:24Z #15 3.229 119050K .......... .......... .......... .......... .......... 93% 144M 0s +2024-04-05T03:51:24Z #15 3.229 119100K .......... .......... .......... .......... .......... 93% 119M 0s +2024-04-05T03:51:24Z #15 3.230 119150K .......... .......... .......... .......... .......... 94% 123M 0s +2024-04-05T03:51:24Z #15 3.230 119200K .......... .......... .......... .......... .......... 94% 133M 0s +2024-04-05T03:51:24Z #15 3.232 119250K .......... .......... .......... .......... .......... 94% 6.60M 0s +2024-04-05T03:51:24Z #15 3.238 119300K .......... .......... .......... .......... .......... 94% 130M 0s +2024-04-05T03:51:24Z #15 3.238 119350K .......... .......... .......... .......... .......... 94% 124M 0s +2024-04-05T03:51:24Z #15 3.239 119400K .......... .......... .......... .......... .......... 94% 132M 0s +2024-04-05T03:51:24Z #15 3.239 119450K .......... .......... .......... .......... .......... 94% 121M 0s +2024-04-05T03:51:24Z #15 3.240 119500K .......... .......... .......... .......... .......... 94% 132M 0s +2024-04-05T03:51:24Z #15 3.240 119550K .......... .......... .......... .......... .......... 94% 120M 0s +2024-04-05T03:51:24Z #15 3.240 119600K .......... .......... .......... .......... .......... 94% 124M 0s +2024-04-05T03:51:24Z #15 3.240 119650K .......... .......... .......... .......... .......... 94% 103M 0s +2024-04-05T03:51:24Z #15 3.242 119700K .......... .......... .......... .......... .......... 94% 124M 0s +2024-04-05T03:51:24Z #15 3.242 119750K .......... .......... .......... .......... .......... 94% 128M 0s +2024-04-05T03:51:24Z #15 3.242 119800K .......... .......... .......... .......... .......... 94% 126M 0s +2024-04-05T03:51:24Z #15 3.245 119850K .......... .......... .......... .......... .......... 94% 140M 0s +2024-04-05T03:51:24Z #15 3.245 119900K .......... .......... .......... .......... .......... 94% 143M 0s +2024-04-05T03:51:24Z #15 3.245 119950K .......... .......... .......... .......... .......... 94% 137M 0s +2024-04-05T03:51:24Z #15 3.245 120000K .......... .......... .......... .......... .......... 94% 150M 0s +2024-04-05T03:51:24Z #15 3.245 120050K .......... .......... .......... .......... .......... 94% 108M 0s +2024-04-05T03:51:24Z #15 3.245 120100K .......... .......... .......... .......... .......... 94% 131M 0s +2024-04-05T03:51:24Z #15 3.245 120150K .......... .......... .......... .......... .......... 94% 148M 0s +2024-04-05T03:51:24Z #15 3.245 120200K .......... .......... .......... .......... .......... 94% 141M 0s +2024-04-05T03:51:24Z #15 3.245 120250K .......... .......... .......... .......... .......... 94% 121M 0s +2024-04-05T03:51:24Z #15 3.245 120300K .......... .......... .......... .......... .......... 94% 11.1M 0s +2024-04-05T03:51:24Z #15 3.250 120350K .......... .......... .......... .......... .......... 94% 123M 0s +2024-04-05T03:51:24Z #15 3.251 120400K .......... .......... .......... .......... .......... 95% 131M 0s +2024-04-05T03:51:24Z #15 3.251 120450K .......... .......... .......... .......... .......... 95% 109M 0s +2024-04-05T03:51:24Z #15 3.251 120500K .......... .......... .......... .......... .......... 95% 124M 0s +2024-04-05T03:51:24Z #15 3.251 120550K .......... .......... .......... .......... .......... 95% 121M 0s +2024-04-05T03:51:24Z #15 3.252 120600K .......... .......... .......... .......... .......... 95% 121M 0s +2024-04-05T03:51:24Z #15 3.252 120650K .......... .......... .......... .......... .......... 95% 118M 0s +2024-04-05T03:51:24Z #15 3.253 120700K .......... .......... .......... .......... .......... 95% 103M 0s +2024-04-05T03:51:24Z #15 3.253 120750K .......... .......... .......... .......... .......... 95% 127M 0s +2024-04-05T03:51:24Z #15 3.254 120800K .......... .......... .......... .......... .......... 95% 118M 0s +2024-04-05T03:51:24Z #15 3.254 120850K .......... .......... .......... .......... .......... 95% 125M 0s +2024-04-05T03:51:24Z #15 3.255 120900K .......... .......... .......... .......... .......... 95% 114M 0s +2024-04-05T03:51:24Z #15 3.255 120950K .......... .......... .......... .......... .......... 95% 132M 0s +2024-04-05T03:51:24Z #15 3.255 121000K .......... .......... .......... .......... .......... 95% 124M 0s +2024-04-05T03:51:24Z #15 3.256 121050K .......... .......... .......... .......... .......... 95% 122M 0s +2024-04-05T03:51:24Z #15 3.256 121100K .......... .......... .......... .......... .......... 95% 104M 0s +2024-04-05T03:51:24Z #15 3.256 121150K .......... .......... .......... .......... .......... 95% 124M 0s +2024-04-05T03:51:24Z #15 3.257 121200K .......... .......... .......... .......... .......... 95% 130M 0s +2024-04-05T03:51:24Z #15 3.257 121250K .......... .......... .......... .......... .......... 95% 130M 0s +2024-04-05T03:51:24Z #15 3.258 121300K .......... .......... .......... .......... .......... 95% 10.9M 0s +2024-04-05T03:51:24Z #15 3.262 121350K .......... .......... .......... .......... .......... 95% 158M 0s +2024-04-05T03:51:24Z #15 3.262 121400K .......... .......... .......... .......... .......... 95% 157M 0s +2024-04-05T03:51:24Z #15 3.263 121450K .......... .......... .......... .......... .......... 95% 141M 0s +2024-04-05T03:51:24Z #15 3.263 121500K .......... .......... .......... .......... .......... 95% 130M 0s +2024-04-05T03:51:24Z #15 3.263 121550K .......... .......... .......... .......... .......... 95% 158M 0s +2024-04-05T03:51:24Z #15 3.264 121600K .......... .......... .......... .......... .......... 95% 147M 0s +2024-04-05T03:51:24Z #15 3.264 121650K .......... .......... .......... .......... .......... 95% 691K 0s +2024-04-05T03:51:24Z #15 3.340 121700K .......... .......... .......... .......... .......... 96% 145M 0s +2024-04-05T03:51:24Z #15 3.340 121750K .......... .......... .......... .......... .......... 96% 147M 0s +2024-04-05T03:51:24Z #15 3.340 121800K .......... .......... .......... .......... .......... 96% 148M 0s +2024-04-05T03:51:24Z #15 3.340 121850K .......... .......... .......... .......... .......... 96% 185M 0s +2024-04-05T03:51:24Z #15 3.340 121900K .......... .......... .......... .......... .......... 96% 123M 0s +2024-04-05T03:51:24Z #15 3.340 121950K .......... .......... .......... .......... .......... 96% 168M 0s +2024-04-05T03:51:24Z #15 3.340 122000K .......... .......... .......... .......... .......... 96% 179M 0s +2024-04-05T03:51:24Z #15 3.340 122050K .......... .......... .......... .......... .......... 96% 152M 0s +2024-04-05T03:51:24Z #15 3.340 122100K .......... .......... .......... .......... .......... 96% 120M 0s +2024-04-05T03:51:24Z #15 3.340 122150K .......... .......... .......... .......... .......... 96% 124M 0s +2024-04-05T03:51:24Z #15 3.340 122200K .......... .......... .......... .......... .......... 96% 135M 0s +2024-04-05T03:51:24Z #15 3.340 122250K .......... .......... .......... .......... .......... 96% 128M 0s +2024-04-05T03:51:24Z #15 3.340 122300K .......... .......... .......... .......... .......... 96% 111M 0s +2024-04-05T03:51:24Z #15 3.342 122350K .......... .......... .......... .......... .......... 96% 149M 0s +2024-04-05T03:51:24Z #15 3.342 122400K .......... .......... .......... .......... .......... 96% 148M 0s +2024-04-05T03:51:24Z #15 3.342 122450K .......... .......... .......... .......... .......... 96% 125M 0s +2024-04-05T03:51:24Z #15 3.342 122500K .......... .......... .......... .......... .......... 96% 149M 0s +2024-04-05T03:51:24Z #15 3.342 122550K .......... .......... .......... .......... .......... 96% 134M 0s +2024-04-05T03:51:24Z #15 3.344 122600K .......... .......... .......... .......... .......... 96% 134M 0s +2024-04-05T03:51:24Z #15 3.344 122650K .......... .......... .......... .......... .......... 96% 31.4M 0s +2024-04-05T03:51:24Z #15 3.344 122700K .......... .......... .......... .......... .......... 96% 159M 0s +2024-04-05T03:51:24Z #15 3.345 122750K .......... .......... .......... .......... .......... 96% 156M 0s +2024-04-05T03:51:24Z #15 3.345 122800K .......... .......... .......... .......... .......... 96% 138M 0s +2024-04-05T03:51:24Z #15 3.345 122850K .......... .......... .......... .......... .......... 96% 11.8M 0s +2024-04-05T03:51:24Z #15 3.350 122900K .......... .......... .......... .......... .......... 96% 125M 0s +2024-04-05T03:51:24Z #15 3.350 122950K .......... .......... .......... .......... .......... 97% 165M 0s +2024-04-05T03:51:24Z #15 3.350 123000K .......... .......... .......... .......... .......... 97% 144M 0s +2024-04-05T03:51:24Z #15 3.351 123050K .......... .......... .......... .......... .......... 97% 162M 0s +2024-04-05T03:51:24Z #15 3.351 123100K .......... .......... .......... .......... .......... 97% 151M 0s +2024-04-05T03:51:24Z #15 3.351 123150K .......... .......... .......... .......... .......... 97% 135M 0s +2024-04-05T03:51:24Z #15 3.352 123200K .......... .......... .......... .......... .......... 97% 163M 0s +2024-04-05T03:51:24Z #15 3.352 123250K .......... .......... .......... .......... .......... 97% 171M 0s +2024-04-05T03:51:24Z #15 3.352 123300K .......... .......... .......... .......... .......... 97% 150M 0s +2024-04-05T03:51:24Z #15 3.353 123350K .......... .......... .......... .......... .......... 97% 162M 0s +2024-04-05T03:51:24Z #15 3.353 123400K .......... .......... .......... .......... .......... 97% 155M 0s +2024-04-05T03:51:24Z #15 3.353 123450K .......... .......... .......... .......... .......... 97% 157M 0s +2024-04-05T03:51:24Z #15 3.354 123500K .......... .......... .......... .......... .......... 97% 148M 0s +2024-04-05T03:51:24Z #15 3.354 123550K .......... .......... .......... .......... .......... 97% 167M 0s +2024-04-05T03:51:24Z #15 3.354 123600K .......... .......... .......... .......... .......... 97% 141M 0s +2024-04-05T03:51:24Z #15 3.354 123650K .......... .......... .......... .......... .......... 97% 160M 0s +2024-04-05T03:51:24Z #15 3.355 123700K .......... .......... .......... .......... .......... 97% 163M 0s +2024-04-05T03:51:24Z #15 3.355 123750K .......... .......... .......... .......... .......... 97% 149M 0s +2024-04-05T03:51:24Z #15 3.355 123800K .......... .......... .......... .......... .......... 97% 154M 0s +2024-04-05T03:51:24Z #15 3.356 123850K .......... .......... .......... .......... .......... 97% 163M 0s +2024-04-05T03:51:24Z #15 3.356 123900K .......... .......... .......... .......... .......... 97% 171M 0s +2024-04-05T03:51:24Z #15 3.356 123950K .......... .......... .......... .......... .......... 97% 157M 0s +2024-04-05T03:51:24Z #15 3.357 124000K .......... .......... .......... .......... .......... 97% 136M 0s +2024-04-05T03:51:24Z #15 3.357 124050K .......... .......... .......... .......... .......... 97% 168M 0s +2024-04-05T03:51:24Z #15 3.358 124100K .......... .......... .......... .......... .......... 97% 154M 0s +2024-04-05T03:51:24Z #15 3.358 124150K .......... .......... .......... .......... .......... 97% 47.4M 0s +2024-04-05T03:51:24Z #15 3.366 124200K .......... .......... .......... .......... .......... 98% 136M 0s +2024-04-05T03:51:24Z #15 3.366 124250K .......... .......... .......... .......... .......... 98% 162M 0s +2024-04-05T03:51:24Z #15 3.366 124300K .......... .......... .......... .......... .......... 98% 183M 0s +2024-04-05T03:51:24Z #15 3.366 124350K .......... .......... .......... .......... .......... 98% 178M 0s +2024-04-05T03:51:24Z #15 3.366 124400K .......... .......... .......... .......... .......... 98% 152M 0s +2024-04-05T03:51:24Z #15 3.366 124450K .......... .......... .......... .......... .......... 98% 187M 0s +2024-04-05T03:51:24Z #15 3.366 124500K .......... .......... .......... .......... .......... 98% 187M 0s +2024-04-05T03:51:24Z #15 3.366 124550K .......... .......... .......... .......... .......... 98% 187M 0s +2024-04-05T03:51:24Z #15 3.366 124600K .......... .......... .......... .......... .......... 98% 153M 0s +2024-04-05T03:51:24Z #15 3.366 124650K .......... .......... .......... .......... .......... 98% 190M 0s +2024-04-05T03:51:24Z #15 3.366 124700K .......... .......... .......... .......... .......... 98% 183M 0s +2024-04-05T03:51:24Z #15 3.366 124750K .......... .......... .......... .......... .......... 98% 141M 0s +2024-04-05T03:51:24Z #15 3.366 124800K .......... .......... .......... .......... .......... 98% 181M 0s +2024-04-05T03:51:24Z #15 3.366 124850K .......... .......... .......... .......... .......... 98% 153M 0s +2024-04-05T03:51:24Z #15 3.366 124900K .......... .......... .......... .......... .......... 98% 178M 0s +2024-04-05T03:51:24Z #15 3.366 124950K .......... .......... .......... .......... .......... 98% 172M 0s +2024-04-05T03:51:24Z #15 3.366 125000K .......... .......... .......... .......... .......... 98% 158M 0s +2024-04-05T03:51:24Z #15 3.366 125050K .......... .......... .......... .......... .......... 98% 153M 0s +2024-04-05T03:51:24Z #15 3.366 125100K .......... .......... .......... .......... .......... 98% 180M 0s +2024-04-05T03:51:24Z #15 3.366 125150K .......... .......... .......... .......... .......... 98% 180M 0s +2024-04-05T03:51:24Z #15 3.366 125200K .......... .......... .......... .......... .......... 98% 172M 0s +2024-04-05T03:51:24Z #15 3.366 125250K .......... .......... .......... .......... .......... 98% 150M 0s +2024-04-05T03:51:24Z #15 3.366 125300K .......... .......... .......... .......... .......... 98% 145M 0s +2024-04-05T03:51:24Z #15 3.366 125350K .......... .......... .......... .......... .......... 98% 182M 0s +2024-04-05T03:51:24Z #15 3.366 125400K .......... .......... .......... .......... .......... 98% 11.0M 0s +2024-04-05T03:51:24Z #15 3.370 125450K .......... .......... .......... .......... .......... 98% 18.7M 0s +2024-04-05T03:51:24Z #15 3.373 125500K .......... .......... .......... .......... .......... 99% 18.3M 0s +2024-04-05T03:51:24Z #15 3.376 125550K .......... .......... .......... .......... .......... 99% 27.3M 0s +2024-04-05T03:51:24Z #15 3.377 125600K .......... .......... .......... .......... .......... 99% 33.0M 0s +2024-04-05T03:51:24Z #15 3.381 125650K .......... .......... .......... .......... .......... 99% 142M 0s +2024-04-05T03:51:24Z #15 3.381 125700K .......... .......... .......... .......... .......... 99% 127M 0s +2024-04-05T03:51:24Z #15 3.381 125750K .......... .......... .......... .......... .......... 99% 119M 0s +2024-04-05T03:51:24Z #15 3.381 125800K .......... .......... .......... .......... .......... 99% 148M 0s +2024-04-05T03:51:24Z #15 3.381 125850K .......... .......... .......... .......... .......... 99% 156M 0s +2024-04-05T03:51:24Z #15 3.381 125900K .......... .......... .......... .......... .......... 99% 142M 0s +2024-04-05T03:51:24Z #15 3.381 125950K .......... .......... .......... .......... .......... 99% 113M 0s +2024-04-05T03:51:24Z #15 3.381 126000K .......... .......... .......... .......... .......... 99% 2.56M 0s +2024-04-05T03:51:24Z #15 3.400 126050K .......... .......... .......... .......... .......... 99% 10.0M 0s +2024-04-05T03:51:24Z #15 3.405 126100K .......... .......... .......... .......... .......... 99% 23.8M 0s +2024-04-05T03:51:24Z #15 3.407 126150K .......... .......... .......... .......... .......... 99% 104M 0s +2024-04-05T03:51:24Z #15 3.407 126200K .......... .......... .......... .......... .......... 99% 116M 0s +2024-04-05T03:51:24Z #15 3.408 126250K .......... .......... .......... .......... .......... 99% 134M 0s +2024-04-05T03:51:24Z #15 3.408 126300K .......... .......... .......... .......... .......... 99% 147M 0s +2024-04-05T03:51:24Z #15 3.409 126350K .......... .......... .......... .......... .......... 99% 138M 0s +2024-04-05T03:51:24Z #15 3.409 126400K .......... .......... .......... .......... .......... 99% 135M 0s +2024-04-05T03:51:24Z #15 3.409 126450K .......... .......... .......... .......... .......... 99% 121M 0s +2024-04-05T03:51:24Z #15 3.410 126500K .......... .......... .......... .......... .......... 99% 124M 0s +2024-04-05T03:51:24Z #15 3.410 126550K .......... .......... .......... .......... .......... 99% 132M 0s +2024-04-05T03:51:24Z #15 3.411 126600K .......... .......... .......... .......... .......... 99% 123M 0s +2024-04-05T03:51:24Z #15 3.411 126650K .......... .......... .......... .......... .......... 99% 133M 0s +2024-04-05T03:51:24Z #15 3.411 126700K .......... .......... .......... .......... .......... 99% 138M 0s +2024-04-05T03:51:24Z #15 3.412 126750K .......... .......... .......... .. 100% 144M=2.0s +2024-04-05T03:51:24Z #15 3.412 +2024-04-05T03:51:24Z #15 3.412 2024-04-05 03:51:24 (62.9 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] +2024-04-05T03:51:24Z #15 3.412 +2024-04-05T03:51:25Z #15 4.862 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' +2024-04-05T03:51:25Z #15 4.885 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-04-05T03:51:26Z #15 DONE 5.4s +2024-04-05T03:51:26Z +2024-04-05T03:51:26Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-05T03:51:26Z #6 ... +2024-04-05T03:51:26Z +2024-04-05T03:51:26Z #16 exporting to image +2024-04-05T03:51:26Z #16 exporting layers +2024-04-05T03:54:42Z #16 exporting layers 196.3s done +2024-04-05T03:54:42Z #16 writing image sha256:e1e6b3fb3c2f945d9200a24c8f9b5124d8442e45170078f4267811286137c599 done +2024-04-05T03:54:42Z #16 naming to docker.io/pavics/workflow-tests:py310-240404 +2024-04-05T03:54:42Z #16 naming to docker.io/pavics/workflow-tests:py310-240404 done +2024-04-05T03:54:42Z #16 DONE 196.3s +2024-04-05T03:54:42Z +2024-04-05T03:54:42Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-05T03:54:42Z Pushing index.docker.io/pavics/workflow-tests:py310-240404... +2024-04-05T04:02:43Z Done! +2024-04-05T04:02:43Z Build finished From dab5eb3f04882e09e33b18c543bf1431c1fe3ba3 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 11 Apr 2024 13:27:20 -0400 Subject: [PATCH 061/104] docker: py310-240404: conda env export --- docker/saved_buildout/conda-env-export.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index 7b70295..d2dc246 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -7,7 +7,7 @@ dependencies: - _libgcc_mutex=0.1=conda_forge - _openmp_mutex=4.5=2_gnu - affine=2.4.0=pyhd8ed1ab_0 - - aiobotocore=2.12.1=pyhd8ed1ab_0 + - aiobotocore=2.12.2=pyhd8ed1ab_0 - aiofiles=22.1.0=pyhd8ed1ab_0 - aiohttp=3.9.3=py310h2372a71_1 - aioitertools=0.11.0=pyhd8ed1ab_0 @@ -64,7 +64,7 @@ dependencies: - brunsli=0.1=h9c3ff4c_0 - bzip2=1.0.8=hd590300_5 - c-ares=1.28.1=hd590300_0 - - c-blosc2=2.14.0=hb4ffafa_0 + - c-blosc2=2.14.1=hb4ffafa_0 - ca-certificates=2024.2.2=hbcca054_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 @@ -94,7 +94,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_0 - colorcet=3.1.0=pyhd8ed1ab_0 - comm=0.2.2=pyhd8ed1ab_0 - - configurable-http-proxy=4.5.6=h3b247e2_0 + - configurable-http-proxy=4.5.4=he2f69ee_2 - contourpy=1.2.0=py310hd41b1e2_0 - coverage=7.4.4=py310h2372a71_0 - cryptography=42.0.2=py310hb8475ec_0 @@ -406,7 +406,7 @@ dependencies: - nbconvert-core=7.16.3=pyhd8ed1ab_0 - nbconvert-pandoc=7.16.3=hd8ed1ab_0 - nbdime=4.0.1=pyhd8ed1ab_0 - - nbformat=5.10.3=pyhd8ed1ab_0 + - nbformat=5.10.4=pyhd8ed1ab_0 - nbresuse=0.4.0=pyhd8ed1ab_0 - nbval=0.11.0=pyhd8ed1ab_0 - nc-time-axis=1.4.1=pyhd8ed1ab_0 @@ -419,7 +419,7 @@ dependencies: - nettle=3.9.1=h7ab15ed_0 - networkx=3.2.1=pyhd8ed1ab_0 - nodeenv=1.8.0=pyhd8ed1ab_0 - - nodejs=16.19.0=h8d033a5_0 + - nodejs=18.15.0=h8d033a5_0 - notebook=6.5.6=pyha770c72_0 - notebook-shim=0.2.4=pyhd8ed1ab_0 - nspr=4.35=h27087fc_0 @@ -548,7 +548,7 @@ dependencies: - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rich=13.7.1=pyhd8ed1ab_0 - - rioxarray=0.15.2=pyhd8ed1ab_0 + - rioxarray=0.15.3=pyhd8ed1ab_0 - roocs-grids=0.1.2=pyhd8ed1ab_0 - roocs-utils=0.6.7=pyhca7485f_0 - rpds-py=0.18.0=py310hcb5633a_0 @@ -623,7 +623,7 @@ dependencies: - url-normalize=1.4.3=pyhd8ed1ab_0 - urllib3=2.0.7=pyhd8ed1ab_0 - urlpath=1.2.0=pyhd8ed1ab_0 - - validators=0.25.0=pyhd8ed1ab_0 + - validators=0.28.0=pyhd8ed1ab_0 - virtualenv=20.25.1=pyhd8ed1ab_0 - voila=0.5.6=pyhd8ed1ab_0 - watchdog=4.0.0=py310hff52083_0 @@ -633,7 +633,7 @@ dependencies: - webob=1.8.7=pyhd8ed1ab_0 - websocket-client=1.7.0=pyhd8ed1ab_0 - websockets=12.0=py310h2372a71_0 - - werkzeug=3.0.1=pyhd8ed1ab_0 + - werkzeug=3.0.2=pyhd8ed1ab_0 - wget=1.20.3=ha35d2d1_1 - wheel=0.43.0=pyhd8ed1ab_1 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -682,7 +682,7 @@ dependencies: - xrft=1.0.1=pyhd8ed1ab_0 - xscen=0.8.2=pyhd8ed1ab_0 - xskillscore=0.0.26=pyhd8ed1ab_0 - - xyzservices=2023.10.1=pyhd8ed1ab_0 + - xyzservices=2024.4.0=pyhd8ed1ab_0 - xz=5.2.6=h166bdaf_0 - y-py=0.5.9=py310h4426083_0 - yamale=4.0.4=pyh6c4a22f_0 @@ -707,7 +707,7 @@ dependencies: - dnspython==2.6.1 - email-validator==2.1.1 - figanos==0.3.0 - - fstd2nc==0.20231105.2 + - fstd2nc==0.20240401.0 - fstd2nc-deps==0.20200304.6 - geojson==3.1.0 - hsclient==1.0.0 @@ -718,7 +718,6 @@ dependencies: - jupyterlab-tabular-data-editor==1.0.0 - jupyternotify==0.1.15 - pixiedust==1.1.19 - - progress==1.6 - pytest-tornasync==0.6.0.post2 - rdflib==5.0.0 - xmltodict==0.13.0 From 76eb988a73bc27129ac4b43388314fe88fa93bc7 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 11 Apr 2024 13:29:58 -0400 Subject: [PATCH 062/104] docker: py310-240404: initial jenkins, default nb, only homepage nb 4 failing --- .../jenkins-buildlogs-default.txt | 1877 ++++++++--------- 1 file changed, 822 insertions(+), 1055 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index 79a6ecb..4c5f266 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -17,7 +17,7 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from fbe057b1fb1c37a3611c45502e088c24533e6b12 +Obtained Jenkinsfile from 216b16e9329a254e7e2e14ebf72437f7abcf3e06 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -29,1064 +29,831 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision fbe057b1fb1c37a3611c45502e088c24533e6b12 (new-docker-build) +Checking out Revision 216b16e9329a254e7e2e14ebf72437f7abcf3e06 (new-docker-build) +Commit message: "release: update to use image pavics/workflow-tests:py310-240404" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 > git config core.sparsecheckout # timeout=10 - > git checkout -f fbe057b1fb1c37a3611c45502e088c24533e6b12 # timeout=10 -Commit message: "docker: py310-240402: build log" - > git rev-list --no-walk f7e7c43d9da06b7e8af4e117d2738700b681a920 # timeout=10 + > git checkout -f 216b16e9329a254e7e2e14ebf72437f7abcf3e06 # timeout=10 + > git rev-list --no-walk 216b16e9329a254e7e2e14ebf72437f7abcf3e06 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240402 ++ docker inspect -f . pavics/workflow-tests:py310-240404 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240402 cat -$ docker top f262edeb29bf9aea0954c3fdbe768e35b32e6a65d7c416dc3414ca3469efbe74 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240404 cat +$ docker top 2abf83cdd74e10acfe44bf0aad443e5cd0fcd7e0b43b4378bbf1731f7c2bb24e -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-02T23:51:57.984Z] Timeout set to expire in 2 hr 0 min +[2024-04-11T15:53:33.593Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-02T23:51:58.615Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-11T15:53:35.393Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-02T23:51:58.906Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-02T23:51:58.906Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-02T23:51:58.906Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-02T23:51:58.906Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-02T23:51:58.906Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-02T23:51:58.906Z] FINCH_BRANCH has been set to 'master' -[2024-04-02T23:51:58.906Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-02T23:51:58.906Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-02T23:51:58.906Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-02T23:51:58.906Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-02T23:51:58.906Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-02T23:51:58.906Z] RAVEN_BRANCH has been set to 'main' -[2024-04-02T23:51:58.906Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-02T23:51:58.906Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-02T23:51:58.906Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-02T23:51:58.906Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-02T23:51:58.906Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-02T23:51:58.906Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-02T23:51:58.906Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-02T23:51:58.906Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-02T23:51:58.906Z] + git clean -fdx -[2024-04-02T23:51:59.164Z] Removing .pytest_cache/ -[2024-04-02T23:51:59.164Z] Removing RavenPy-master/ -[2024-04-02T23:51:59.164Z] Removing __pycache__/ -[2024-04-02T23:51:59.164Z] Removing buildout/ -[2024-04-02T23:51:59.164Z] Removing esgf-compute-api-devel/ -[2024-04-02T23:51:59.164Z] Removing finch-master/ -[2024-04-02T23:51:59.164Z] Removing raven-main/ -[2024-04-02T23:51:59.164Z] + ./downloadrepos -[2024-04-02T23:51:59.164Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-02T23:51:59.164Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-02T23:51:59.164Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-02T23:51:59.164Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-02T23:51:59.164Z] FINCH_BRANCH has been set to 'master' -[2024-04-02T23:51:59.164Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-02T23:51:59.164Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-02T23:51:59.164Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-02T23:51:59.164Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-02T23:51:59.164Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-02T23:51:59.164Z] RAVEN_BRANCH has been set to 'main' -[2024-04-02T23:51:59.164Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-02T23:51:59.164Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-02T23:51:59.164Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-02T23:51:59.164Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-02T23:51:59.164Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-02T23:51:59.164Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-02T23:51:59.164Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-02T23:51:59.164Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-02T23:51:59.164Z] + rm -rf pavics-sdi-* -[2024-04-02T23:51:59.164Z] + ls -[2024-04-02T23:51:59.164Z] + grep pavics-sdi -[2024-04-02T23:51:59.164Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:51:59.164Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-02T23:51:59.164Z] + shift -[2024-04-02T23:51:59.164Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:51:59.164Z] + shift -[2024-04-02T23:51:59.164Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-02T23:51:59.164Z] + tar xz -[2024-04-02T23:52:01.688Z] + ls -[2024-04-02T23:52:01.688Z] + grep pavics-sdi -[2024-04-02T23:52:01.688Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:01.688Z] + set +x -[2024-04-02T23:52:01.688Z] + rm -rf finch-* -[2024-04-02T23:52:01.688Z] + ls -[2024-04-02T23:52:01.688Z] + grep finch -[2024-04-02T23:52:01.688Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-02T23:52:01.688Z] + github_repo=https://github.com/bird-house/finch -[2024-04-02T23:52:01.688Z] + shift -[2024-04-02T23:52:01.688Z] + branch=master -[2024-04-02T23:52:01.688Z] + shift -[2024-04-02T23:52:01.688Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-02T23:52:01.688Z] + tar xz -[2024-04-02T23:52:03.054Z] + ls -[2024-04-02T23:52:03.054Z] + grep finch -[2024-04-02T23:52:03.054Z] finch-master -[2024-04-02T23:52:03.054Z] + set +x -[2024-04-02T23:52:03.054Z] + rm -rf PAVICS-landing-* -[2024-04-02T23:52:03.054Z] + ls -[2024-04-02T23:52:03.054Z] + grep PAVICS-landing -[2024-04-02T23:52:03.054Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:03.054Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-02T23:52:03.054Z] + shift -[2024-04-02T23:52:03.054Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:03.054Z] + shift -[2024-04-02T23:52:03.054Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-02T23:52:03.054Z] + tar xz -[2024-04-02T23:52:15.240Z] + ls -[2024-04-02T23:52:15.240Z] + grep PAVICS-landing -[2024-04-02T23:52:15.240Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:15.240Z] + set +x -[2024-04-02T23:52:15.240Z] + rm -rf raven-* -[2024-04-02T23:52:15.240Z] + ls -[2024-04-02T23:52:15.240Z] + grep raven -[2024-04-02T23:52:15.240Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-02T23:52:15.240Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-02T23:52:15.240Z] + shift -[2024-04-02T23:52:15.240Z] + branch=main -[2024-04-02T23:52:15.240Z] + shift -[2024-04-02T23:52:15.240Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-02T23:52:15.240Z] + tar xz -[2024-04-02T23:52:15.801Z] + ls -[2024-04-02T23:52:15.801Z] + grep raven -[2024-04-02T23:52:15.801Z] raven-main -[2024-04-02T23:52:15.801Z] + set +x -[2024-04-02T23:52:15.801Z] + rm -rf RavenPy-* -[2024-04-02T23:52:15.801Z] + ls -[2024-04-02T23:52:15.801Z] + grep RavenPy -[2024-04-02T23:52:15.801Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-02T23:52:15.801Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-02T23:52:15.801Z] + shift -[2024-04-02T23:52:15.801Z] + branch=master -[2024-04-02T23:52:15.801Z] + shift -[2024-04-02T23:52:15.801Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-02T23:52:15.801Z] + tar xz -[2024-04-02T23:52:17.687Z] + ls -[2024-04-02T23:52:17.687Z] + grep RavenPy -[2024-04-02T23:52:17.687Z] RavenPy-master -[2024-04-02T23:52:17.687Z] + set +x -[2024-04-02T23:52:17.687Z] + rm -rf esgf-compute-api-* -[2024-04-02T23:52:17.687Z] + ls -[2024-04-02T23:52:17.687Z] + grep esgf-compute-api -[2024-04-02T23:52:17.687Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-02T23:52:17.687Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-02T23:52:17.687Z] + shift -[2024-04-02T23:52:17.687Z] + branch=devel -[2024-04-02T23:52:17.687Z] + shift -[2024-04-02T23:52:17.687Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-02T23:52:17.687Z] + tar xz -[2024-04-02T23:52:19.059Z] + ls -[2024-04-02T23:52:19.059Z] + grep esgf-compute-api -[2024-04-02T23:52:19.059Z] esgf-compute-api-devel -[2024-04-02T23:52:19.059Z] + set +x -[2024-04-02T23:52:19.059Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:19.059Z] + sed s@/@-@g -[2024-04-02T23:52:19.059Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:19.059Z] + echo Ouranosinc/pavics-sdi -[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g -[2024-04-02T23:52:19.059Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-02T23:52:19.059Z] + echo master -[2024-04-02T23:52:19.059Z] + sed s@/@-@g -[2024-04-02T23:52:19.059Z] + FINCH_BRANCH=master -[2024-04-02T23:52:19.059Z] + echo bird-house/finch -[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g -[2024-04-02T23:52:19.059Z] + FINCH_REPO_NAME=finch -[2024-04-02T23:52:19.059Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:19.059Z] + sed s@/@-@g -[2024-04-02T23:52:19.059Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:19.059Z] + echo Ouranosinc/PAVICS-landing -[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g -[2024-04-02T23:52:19.059Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-02T23:52:19.059Z] + echo main -[2024-04-02T23:52:19.059Z] + sed s@/@-@g -[2024-04-02T23:52:19.059Z] + RAVEN_BRANCH=main -[2024-04-02T23:52:19.059Z] + echo Ouranosinc/raven -[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g -[2024-04-02T23:52:19.059Z] + RAVEN_REPO_NAME=raven -[2024-04-02T23:52:19.059Z] + echo master -[2024-04-02T23:52:19.059Z] + sed s@/@-@g -[2024-04-02T23:52:19.059Z] + RAVENPY_BRANCH=master -[2024-04-02T23:52:19.059Z] + echo CSHS-CWRA/RavenPy -[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g -[2024-04-02T23:52:19.059Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-02T23:52:19.059Z] + echo devel -[2024-04-02T23:52:19.059Z] + sed s@/@-@g -[2024-04-02T23:52:19.059Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-02T23:52:19.059Z] + echo ESGF/esgf-compute-api -[2024-04-02T23:52:19.059Z] + sed s@^.*/@@g -[2024-04-02T23:52:19.059Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-02T23:52:19.059Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:52:19.059Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:19.059Z] + echo finch-master -[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:52:19.059Z] + FINCH_DIR=finch-master -[2024-04-02T23:52:19.059Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:52:19.059Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-02T23:52:19.059Z] + echo raven-main -[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:52:19.059Z] + RAVEN_DIR=raven-main -[2024-04-02T23:52:19.059Z] + echo RavenPy-master -[2024-04-02T23:52:19.059Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:52:19.059Z] + RAVENPY_DIR=RavenPy-master -[2024-04-02T23:52:19.060Z] + echo esgf-compute-api-devel -[2024-04-02T23:52:19.060Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:52:19.060Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-02T23:52:19.060Z] + echo true -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + VERIFY_SSL=true -[2024-04-02T23:52:19.060Z] + [ xtrue = xfalse ] -[2024-04-02T23:52:19.060Z] + rm -v finch-master/setup.cfg -[2024-04-02T23:52:19.060Z] removed 'finch-master/setup.cfg' -[2024-04-02T23:52:19.060Z] + rm -v raven-main/setup.cfg -[2024-04-02T23:52:19.060Z] removed 'raven-main/setup.cfg' -[2024-04-02T23:52:19.060Z] + rm -v raven-main/pyproject.toml -[2024-04-02T23:52:19.060Z] removed 'raven-main/pyproject.toml' -[2024-04-02T23:52:19.060Z] + rm -v RavenPy-master/setup.cfg -[2024-04-02T23:52:19.060Z] removed 'RavenPy-master/setup.cfg' -[2024-04-02T23:52:19.060Z] + rm -v RavenPy-master/tox.ini -[2024-04-02T23:52:19.060Z] removed 'RavenPy-master/tox.ini' -[2024-04-02T23:52:19.060Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-02T23:52:19.060Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-02T23:52:19.060Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-02T23:52:19.060Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-02T23:52:19.060Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-02T23:52:19.060Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-02T23:52:19.060Z] + echo false -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + TEST_MAGPIE_AUTH=false -[2024-04-02T23:52:19.060Z] + echo true -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + TEST_PAVICS_SDI_REPO=true -[2024-04-02T23:52:19.060Z] + echo false -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-02T23:52:19.060Z] + echo true -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + TEST_FINCH_REPO=true -[2024-04-02T23:52:19.060Z] + echo true -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + TEST_PAVICS_LANDING_REPO=true -[2024-04-02T23:52:19.060Z] + echo false -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + TEST_RAVEN_REPO=false -[2024-04-02T23:52:19.060Z] + echo false -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + TEST_RAVENPY_REPO=false -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + echo false -[2024-04-02T23:52:19.060Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-02T23:52:19.060Z] + tr [:upper:] [:lower:] -[2024-04-02T23:52:19.060Z] + echo true -[2024-04-02T23:52:19.060Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-04-02T23:52:19.060Z] + NOTEBOOKS_TO_TEST= -[2024-04-02T23:52:19.060Z] + [ xfalse = xtrue ] -[2024-04-02T23:52:19.060Z] + [ xtrue = xtrue ] -[2024-04-02T23:52:19.060Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb -[2024-04-02T23:52:19.060Z] + [ xfalse = xtrue ] -[2024-04-02T23:52:19.060Z] + [ xtrue = xtrue ] -[2024-04-02T23:52:19.060Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-04-02T23:52:19.060Z] + [ xtrue = xtrue ] -[2024-04-02T23:52:19.060Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb -[2024-04-02T23:52:19.060Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-02T23:52:19.060Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-04-02T23:52:19.060Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-02T23:52:19.060Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-02T23:52:19.060Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-02T23:52:19.060Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-02T23:52:19.060Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators -[2024-04-02T23:52:19.060Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-02T23:52:19.060Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-02T23:52:19.060Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-04-02T23:52:19.060Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.060Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.578Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.579Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.837Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:19.838Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.100Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.101Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-02T23:52:20.101Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-04-02T23:52:20.101Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-04-02T23:52:20.101Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-04-02T23:52:20.101Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' -[2024-04-02T23:52:20.101Z] + [ xfalse = xtrue ] -[2024-04-02T23:52:20.101Z] + [ xfalse = xtrue ] -[2024-04-02T23:52:20.101Z] + [ xfalse = xtrue ] -[2024-04-02T23:52:20.101Z] + [ xtrue = xtrue ] -[2024-04-02T23:52:20.101Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-02T23:52:20.101Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-02T23:52:20.101Z] + [ -n ] -[2024-04-02T23:52:20.101Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-02T23:52:20.101Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-02T23:52:20.101Z] Will run notebooks against pavics.ouranos.ca -[2024-04-02T23:52:20.101Z] + [ -z ] -[2024-04-02T23:52:20.101Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-04-02T23:52:20.101Z] + git diff -[2024-04-02T23:52:20.101Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-02T23:52:20.102Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-04-02T23:52:22.626Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-02T23:52:22.626Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-02T23:52:23.193Z] ============================= test session starts ============================== -[2024-04-02T23:52:23.193Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-04-02T23:52:23.193Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-04-02T23:52:23.193Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-02T23:52:23.193Z] collected 220 items -[2024-04-02T23:52:23.193Z] -[2024-04-02T23:52:27.368Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] -[2024-04-02T23:52:54.778Z] ..... [ 2%] -[2024-04-02T23:52:57.300Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] -[2024-04-02T23:53:03.953Z] ...... [ 5%] -[2024-04-02T23:53:05.854Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] -[2024-04-02T23:53:11.945Z] ..... [ 8%] -[2024-04-02T23:53:12.881Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] -[2024-04-02T23:53:15.274Z] FFFFFFF [ 12%] -[2024-04-02T23:53:25.248Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] -[2024-04-02T23:55:59.622Z] ........... [ 17%] -[2024-04-02T23:55:59.622Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] -[2024-04-02T23:56:03.148Z] ............... [ 25%] -[2024-04-02T23:56:05.674Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] -[2024-04-02T23:56:11.065Z] .... [ 27%] -[2024-04-02T23:56:12.975Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] -[2024-04-02T23:57:01.606Z] ..... [ 30%] -[2024-04-02T23:57:09.718Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] -[2024-04-02T23:57:16.282Z] ..... [ 32%] -[2024-04-02T23:57:17.670Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] -[2024-04-02T23:57:20.786Z] ...... [ 35%] -[2024-04-02T23:57:21.718Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] -[2024-04-02T23:57:24.528Z] .... [ 38%] -[2024-04-02T23:57:42.676Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] -[2024-04-02T23:59:08.723Z] ........................... [ 50%] -[2024-04-02T23:59:08.723Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] -[2024-04-02T23:59:09.916Z] ... [ 52%] -[2024-04-02T23:59:10.853Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] -[2024-04-02T23:59:28.917Z] ........................ [ 64%] -[2024-04-02T23:59:31.450Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] -[2024-04-02T23:59:35.623Z] ..... [ 66%] -[2024-04-02T23:59:44.334Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] -[2024-04-02T23:59:52.908Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] -[2024-04-02T23:59:54.278Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] -[2024-04-02T23:59:57.326Z] ...... [ 77%] -[2024-04-03T00:00:03.876Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] -[2024-04-03T00:00:16.237Z] ............. [ 84%] -[2024-04-03T00:00:26.221Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-04-03T00:00:45.612Z] ....s [ 86%] -[2024-04-03T00:00:53.707Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] -[2024-04-03T00:01:06.182Z] .F. [ 88%] -[2024-04-03T00:01:18.416Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] -[2024-04-03T00:02:09.240Z] ...... [ 91%] -[2024-04-03T00:02:10.169Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-04-03T00:04:05.126Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-04-03T00:04:05.126Z] -[2024-04-03T00:04:05.127Z] =================================== FAILURES =================================== -[2024-04-03T00:04:05.127Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 1 _ -[2024-04-03T00:04:05.127Z] Notebook cell execution failed -[2024-04-03T00:04:05.127Z] Cell 1: Cell execution caused an exception -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] Input: -[2024-04-03T00:04:05.127Z] wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") -[2024-04-03T00:04:05.127Z] print("Title: ", wms.identification.title) -[2024-04-03T00:04:05.127Z] print("Type: ", wms.identification.type) -[2024-04-03T00:04:05.127Z] print("Operations: ", [op.name for op in wms.operations]) -[2024-04-03T00:04:05.127Z] print("GetMap options: ", wms.getOperationByName("GetMap").formatOptions) -[2024-04-03T00:04:05.127Z] wms.contents.keys() -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] Traceback: -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] Traceback (most recent call last): -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File /opt/conda/envs/birdy/lib/python3.10/site-packages/IPython/core/interactiveshell.py:3577 in run_code -[2024-04-03T00:04:05.127Z] exec(code_obj, self.user_global_ns, self.user_ns) -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  Cell In[1], line 1 -[2024-04-03T00:04:05.127Z] wms = WebMapService("https://neo.gsfc.nasa.gov/wms/wms") -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/wms.py:50 in WebMapService -[2024-04-03T00:04:05.127Z] return wms111.WebMapService_1_1_1( -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/wms111.py:75 in __init__ -[2024-04-03T00:04:05.127Z] self._capabilities = reader.read(self.url, timeout=self.timeout) -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File /opt/conda/envs/birdy/lib/python3.10/site-packages/owslib/map/common.py:69 in read -[2024-04-03T00:04:05.127Z] return etree.fromstring(raw_text) -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File src/lxml/etree.pyx:3257 in lxml.etree.fromstring -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:1916 in lxml.etree._parseMemoryDocument -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:1803 in lxml.etree._parseDoc -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:1144 in lxml.etree._BaseParser._parseDoc -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:618 in lxml.etree._ParserContext._handleParseResultDoc -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:728 in lxml.etree._handleParseResult -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File src/lxml/parser.pxi:657 in lxml.etree._raiseParseError -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z]  File :1 -[2024-04-03T00:04:05.127Z] XMLSyntaxError: Start tag expected, '<' not found, line 1, column 1 -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 2 _ -[2024-04-03T00:04:05.127Z] Notebook cell execution failed -[2024-04-03T00:04:05.127Z] Cell 2: Cell execution caused an exception -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] Input: -[2024-04-03T00:04:05.127Z] for key in [ -[2024-04-03T00:04:05.127Z] "MOD14A1_M_FIRE", -[2024-04-03T00:04:05.127Z] "CERES_LWFLUX_M", -[2024-04-03T00:04:05.127Z] "ICESAT_ELEV_G", -[2024-04-03T00:04:05.127Z] "MODAL2_M_CLD_WP", -[2024-04-03T00:04:05.127Z] "MOD_143D_RR", -[2024-04-03T00:04:05.127Z] ]: -[2024-04-03T00:04:05.127Z] print(wms.contents[key].title) -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] Traceback: -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] --------------------------------------------------------------------------- -[2024-04-03T00:04:05.127Z] NameError Traceback (most recent call last) -[2024-04-03T00:04:05.127Z] Cell In[1], line 8 -[2024-04-03T00:04:05.127Z]  1 for key in [ -[2024-04-03T00:04:05.127Z]  2 "MOD14A1_M_FIRE", -[2024-04-03T00:04:05.127Z]  3 "CERES_LWFLUX_M", -[2024-04-03T00:04:05.127Z]  (...) -[2024-04-03T00:04:05.127Z]  6 "MOD_143D_RR", -[2024-04-03T00:04:05.127Z]  7 ]: -[2024-04-03T00:04:05.127Z] ----> 8 print(wms.contents[key].title) -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] NameError: name 'wms' is not defined -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 3 _ -[2024-04-03T00:04:05.127Z] Notebook cell execution failed -[2024-04-03T00:04:05.127Z] Cell 3: Cell execution caused an exception -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] Input: -[2024-04-03T00:04:05.127Z] # NBVAL_IGNORE_OUTPUT -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] from IPython.core.display import HTML -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] name = "MOD_143D_RR" -[2024-04-03T00:04:05.127Z] layer = wms.contents[name] -[2024-04-03T00:04:05.127Z] print("Abstract: ", layer.abstract) -[2024-04-03T00:04:05.127Z] print("BBox: ", layer.boundingBoxWGS84) -[2024-04-03T00:04:05.127Z] print("CRS: ", layer.crsOptions) -[2024-04-03T00:04:05.127Z] print("Styles: ", layer.styles) -[2024-04-03T00:04:05.127Z] print("Timestamps: ", layer.timepositions) -[2024-04-03T00:04:05.127Z] HTML(layer.parent.abstract) -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] Traceback: -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] --------------------------------------------------------------------------- -[2024-04-03T00:04:05.127Z] NameError Traceback (most recent call last) -[2024-04-03T00:04:05.127Z] Cell In[1], line 6 -[2024-04-03T00:04:05.127Z]  3 from IPython.core.display import HTML -[2024-04-03T00:04:05.127Z]  5 name = "MOD_143D_RR" -[2024-04-03T00:04:05.127Z] ----> 6 layer = wms.contents[name] -[2024-04-03T00:04:05.127Z]  7 print("Abstract: ", layer.abstract) -[2024-04-03T00:04:05.127Z]  8 print("BBox: ", layer.boundingBoxWGS84) -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] NameError: name 'wms' is not defined -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 4 _ -[2024-04-03T00:04:05.127Z] Notebook cell execution failed -[2024-04-03T00:04:05.127Z] Cell 4: Cell execution caused an exception -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] Input: -[2024-04-03T00:04:05.127Z] response = wms.getmap( -[2024-04-03T00:04:05.127Z] layers=[ -[2024-04-03T00:04:05.127Z] name, -[2024-04-03T00:04:05.127Z] ], -[2024-04-03T00:04:05.127Z] styles=["rgb"], -[2024-04-03T00:04:05.127Z] bbox=(-180, -90, 180, 90), # Left, bottom, right, top -[2024-04-03T00:04:05.127Z] format="image/png", -[2024-04-03T00:04:05.127Z] size=(600, 600), -[2024-04-03T00:04:05.127Z] srs="EPSG:4326", -[2024-04-03T00:04:05.127Z] time="2018-09-16", -[2024-04-03T00:04:05.127Z] transparent=True, -[2024-04-03T00:04:05.127Z] ) -[2024-04-03T00:04:05.127Z] response -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] Traceback: -[2024-04-03T00:04:05.127Z] -[2024-04-03T00:04:05.127Z] --------------------------------------------------------------------------- -[2024-04-03T00:04:05.128Z] NameError Traceback (most recent call last) -[2024-04-03T00:04:05.128Z] Cell In[1], line 1 -[2024-04-03T00:04:05.128Z] ----> 1 response = wms.getmap( -[2024-04-03T00:04:05.128Z]  2 layers=[ -[2024-04-03T00:04:05.128Z]  3 name, -[2024-04-03T00:04:05.128Z]  4 ], -[2024-04-03T00:04:05.128Z]  5 styles=["rgb"], -[2024-04-03T00:04:05.128Z]  6 bbox=(-180, -90, 180, 90), # Left, bottom, right, top -[2024-04-03T00:04:05.128Z]  7 format="image/png", -[2024-04-03T00:04:05.128Z]  8 size=(600, 600), -[2024-04-03T00:04:05.128Z]  9 srs="EPSG:4326", -[2024-04-03T00:04:05.128Z]  10 time="2018-09-16", -[2024-04-03T00:04:05.128Z]  11 transparent=True, -[2024-04-03T00:04:05.128Z]  12 ) -[2024-04-03T00:04:05.128Z]  13 response -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] NameError: name 'wms' is not defined -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 5 _ -[2024-04-03T00:04:05.128Z] Notebook cell execution failed -[2024-04-03T00:04:05.128Z] Cell 5: Cell execution caused an exception -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] Input: -[2024-04-03T00:04:05.128Z] from IPython.display import Image -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] Image(response.read()) -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] Traceback: -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] --------------------------------------------------------------------------- -[2024-04-03T00:04:05.128Z] NameError Traceback (most recent call last) -[2024-04-03T00:04:05.128Z] Cell In[1], line 3 -[2024-04-03T00:04:05.128Z]  1 from IPython.display import Image -[2024-04-03T00:04:05.128Z] ----> 3 Image(response.read()) -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] NameError: name 'response' is not defined -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 6 _ -[2024-04-03T00:04:05.128Z] Notebook cell execution failed -[2024-04-03T00:04:05.128Z] Cell 6: Cell execution caused an exception -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] Input: -[2024-04-03T00:04:05.128Z] import io -[2024-04-03T00:04:05.128Z] import warnings -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] import cartopy -[2024-04-03T00:04:05.128Z] import matplotlib.pyplot as plt -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] image = io.BytesIO(response.read()) -[2024-04-03T00:04:05.128Z] data = plt.imread(image) -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] Traceback: -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] --------------------------------------------------------------------------- -[2024-04-03T00:04:05.128Z] NameError Traceback (most recent call last) -[2024-04-03T00:04:05.128Z] Cell In[1], line 7 -[2024-04-03T00:04:05.128Z]  4 import cartopy -[2024-04-03T00:04:05.128Z]  5 import matplotlib.pyplot as plt -[2024-04-03T00:04:05.128Z] ----> 7 image = io.BytesIO(response.read()) -[2024-04-03T00:04:05.128Z]  8 data = plt.imread(image) -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] NameError: name 'response' is not defined -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 7 _ -[2024-04-03T00:04:05.128Z] Notebook cell execution failed -[2024-04-03T00:04:05.128Z] Cell 7: Cell execution caused an exception -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] Input: -[2024-04-03T00:04:05.128Z] warnings.filterwarnings("ignore", category=cartopy.io.DownloadWarning) -[2024-04-03T00:04:05.128Z] fig = plt.figure(figsize=(8, 6)) -[2024-04-03T00:04:05.128Z] ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) -[2024-04-03T00:04:05.128Z] ax.imshow( -[2024-04-03T00:04:05.128Z] data, -[2024-04-03T00:04:05.128Z] origin="upper", -[2024-04-03T00:04:05.128Z] extent=(-180, 180, -90, 90), -[2024-04-03T00:04:05.128Z] transform=cartopy.crs.PlateCarree(), -[2024-04-03T00:04:05.128Z] ) -[2024-04-03T00:04:05.128Z] ax.coastlines() -[2024-04-03T00:04:05.128Z] plt.show() -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] Traceback: -[2024-04-03T00:04:05.128Z] -[2024-04-03T00:04:05.128Z] --------------------------------------------------------------------------- -[2024-04-03T00:04:05.128Z] NameError Traceback (most recent call last) -[2024-04-03T00:04:05.128Z] Cell In[1], line 5 -[2024-04-03T00:04:05.128Z]  2 fig = plt.figure(figsize=(8, 6)) -[2024-04-03T00:04:05.128Z]  3 ax = fig.add_axes([0, 0, 1, 1], projection=cartopy.crs.Mollweide()) -[2024-04-03T00:04:05.128Z]  4 ax.imshow( -[2024-04-03T00:04:05.128Z] ----> 5 data, -[2024-04-03T00:04:05.128Z]  6 origin="upper", -[2024-04-03T00:04:05.128Z]  7 extent=(-180, 180, -90, 90), -[2024-04-03T00:04:05.129Z]  8 transform=cartopy.crs.PlateCarree(), -[2024-04-03T00:04:05.129Z]  9 ) -[2024-04-03T00:04:05.129Z]  10 ax.coastlines() -[2024-04-03T00:04:05.129Z]  11 plt.show() -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] NameError: name 'data' is not defined -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ -[2024-04-03T00:04:05.129Z] Notebook cell execution failed -[2024-04-03T00:04:05.129Z] Cell 2: Cell execution caused an exception -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] Input: -[2024-04-03T00:04:05.129Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) -[2024-04-03T00:04:05.129Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] chng_f, pos_f = xens.change_significance( -[2024-04-03T00:04:05.129Z] fut.sel(time=fut["time.season"] == "JJA"), -[2024-04-03T00:04:05.129Z] ref.sel(time=ref["time.season"] == "JJA"), -[2024-04-03T00:04:05.129Z] test="ttest", -[2024-04-03T00:04:05.129Z] ) -[2024-04-03T00:04:05.129Z] plt.figure( -[2024-04-03T00:04:05.129Z] figsize=(15, 6), -[2024-04-03T00:04:05.129Z] ) -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] plt.subplot(1, 2, 1) -[2024-04-03T00:04:05.129Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] plt.title(chng_f.description.split(".")[0]) -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] plt.subplot(1, 2, 2) -[2024-04-03T00:04:05.129Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-03T00:04:05.129Z] plt.title(pos_f.description.split(".")[0]) -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] display() -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] Traceback: -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] --------------------------------------------------------------------------- -[2024-04-03T00:04:05.129Z] AttributeError Traceback (most recent call last) -[2024-04-03T00:04:05.129Z] Cell In[1], line 20 -[2024-04-03T00:04:05.129Z]  18 plt.subplot(1, 2, 2) -[2024-04-03T00:04:05.129Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-03T00:04:05.129Z] ---> 20 plt.title(pos_f.description.split(".")[0]) -[2024-04-03T00:04:05.129Z]  22 display() -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-04-03T00:04:05.129Z]  275 with suppress(KeyError): -[2024-04-03T00:04:05.129Z]  276 return source[name] -[2024-04-03T00:04:05.129Z] --> 277 raise AttributeError( -[2024-04-03T00:04:05.129Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-04-03T00:04:05.129Z]  279 ) -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-04-03T00:04:05.129Z] -[2024-04-03T00:04:05.129Z] =========================== short test summary info ============================ -[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 1 -[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 2 -[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 3 -[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 4 -[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 5 -[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 6 -[2024-04-03T00:04:05.129Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb::Cell 7 -[2024-04-03T00:04:05.129Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-04-03T00:04:05.129Z] ============= 8 failed, 211 passed, 1 skipped in 700.87s (0:11:40) ============= -[2024-04-03T00:04:05.129Z] + EXIT_CODE=1 -[2024-04-03T00:04:05.129Z] + echo true -[2024-04-03T00:04:05.129Z] + tr [:upper:] [:lower:] -[2024-04-03T00:04:05.129Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-04-03T00:04:05.129Z] + [ xtrue = xtrue ] -[2024-04-03T00:04:05.129Z] + mkdir -p buildout -[2024-04-03T00:04:05.129Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-03T00:04:05.129Z] + filename=CaSR_basic.ipynb -[2024-04-03T00:04:05.129Z] + echo CaSR_basic.ipynb -[2024-04-03T00:04:05.129Z] + sed s/.ipynb$// -[2024-04-03T00:04:05.129Z] + filename=CaSR_basic -[2024-04-03T00:04:05.129Z] + [ -e buildout/CaSR_basic.output.ipynb ] -[2024-04-03T00:04:05.129Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-03T00:04:05.696Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook -[2024-04-03T00:04:37.798Z] [NbConvertApp] Writing 694582 bytes to buildout/CaSR_basic.output.ipynb -[2024-04-03T00:04:37.798Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-03T00:04:37.798Z] + filename=WCS_example.ipynb -[2024-04-03T00:04:37.798Z] + sed s/.ipynb$// -[2024-04-03T00:04:37.798Z] + echo WCS_example.ipynb -[2024-04-03T00:04:37.798Z] + filename=WCS_example -[2024-04-03T00:04:37.798Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-04-03T00:04:37.798Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-03T00:04:39.180Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-04-03T00:04:51.377Z] [NbConvertApp] Writing 145194 bytes to buildout/WCS_example.output.ipynb -[2024-04-03T00:04:51.378Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-03T00:04:51.378Z] + filename=WFS_example.ipynb -[2024-04-03T00:04:51.378Z] + echo WFS_example.ipynb -[2024-04-03T00:04:51.378Z] + sed s/.ipynb$// -[2024-04-03T00:04:51.378Z] + filename=WFS_example -[2024-04-03T00:04:51.378Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-04-03T00:04:51.378Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-03T00:04:51.640Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-04-03T00:05:01.640Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb -[2024-04-03T00:05:01.640Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-03T00:05:01.640Z] + filename=WMS_example.ipynb -[2024-04-03T00:05:01.640Z] + echo WMS_example.ipynb -[2024-04-03T00:05:01.640Z] + sed s/.ipynb$// -[2024-04-03T00:05:01.640Z] + filename=WMS_example -[2024-04-03T00:05:01.640Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-04-03T00:05:01.640Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-03T00:05:02.583Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-04-03T00:05:10.680Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb -[2024-04-03T00:05:10.680Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-03T00:05:10.680Z] + filename=climex.ipynb -[2024-04-03T00:05:10.680Z] + echo climex.ipynb -[2024-04-03T00:05:10.680Z] + sed s/.ipynb$// -[2024-04-03T00:05:10.680Z] + filename=climex -[2024-04-03T00:05:10.680Z] + [ -e buildout/climex.output.ipynb ] -[2024-04-03T00:05:10.680Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-03T00:05:11.250Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook -[2024-04-03T00:08:02.771Z] [NbConvertApp] Writing 1789396 bytes to buildout/climex.output.ipynb -[2024-04-03T00:08:02.771Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-03T00:08:02.772Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-04-03T00:08:02.772Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-04-03T00:08:02.772Z] + sed s/.ipynb$// -[2024-04-03T00:08:02.772Z] + filename=eccc-geoapi-climate-stations -[2024-04-03T00:08:02.772Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-04-03T00:08:02.772Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-03T00:08:03.710Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-04-03T00:08:15.936Z] [NbConvertApp] Writing 279048 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-04-03T00:08:15.936Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-03T00:08:15.936Z] + filename=eccc-geoapi-xclim.ipynb -[2024-04-03T00:08:15.936Z] + echo eccc-geoapi-xclim.ipynb -[2024-04-03T00:08:15.936Z] + sed s/.ipynb$// -[2024-04-03T00:08:15.936Z] + filename=eccc-geoapi-xclim -[2024-04-03T00:08:15.936Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-04-03T00:08:15.936Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-03T00:08:16.859Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-04-03T00:08:26.836Z] [NbConvertApp] Writing 108377 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-04-03T00:08:26.836Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-03T00:08:26.836Z] + filename=esgf-dap.ipynb -[2024-04-03T00:08:26.836Z] + sed s/.ipynb$// -[2024-04-03T00:08:26.836Z] + echo esgf-dap.ipynb -[2024-04-03T00:08:26.836Z] + filename=esgf-dap -[2024-04-03T00:08:26.836Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-04-03T00:08:26.836Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-03T00:08:27.776Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-04-03T00:08:35.961Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb -[2024-04-03T00:08:35.961Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-03T00:08:35.961Z] + filename=forecasts.ipynb -[2024-04-03T00:08:35.961Z] + sed s/.ipynb$// -[2024-04-03T00:08:35.962Z] + echo forecasts.ipynb -[2024-04-03T00:08:35.962Z] + filename=forecasts -[2024-04-03T00:08:35.962Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-04-03T00:08:35.962Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-03T00:08:37.343Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook -[2024-04-03T00:08:55.437Z] [NbConvertApp] Writing 181135 bytes to buildout/forecasts.output.ipynb -[2024-04-03T00:08:55.437Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-03T00:08:55.437Z] + filename=jupyter_extensions.ipynb -[2024-04-03T00:08:55.437Z] + echo jupyter_extensions.ipynb -[2024-04-03T00:08:55.437Z] + sed s/.ipynb$// -[2024-04-03T00:08:55.437Z] + filename=jupyter_extensions -[2024-04-03T00:08:55.437Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-04-03T00:08:55.437Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-03T00:08:55.437Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-04-03T00:08:57.334Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb -[2024-04-03T00:08:57.334Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-03T00:08:57.334Z] + filename=opendap.ipynb -[2024-04-03T00:08:57.334Z] + echo opendap.ipynb -[2024-04-03T00:08:57.334Z] + sed s/.ipynb$// -[2024-04-03T00:08:57.334Z] + filename=opendap -[2024-04-03T00:08:57.334Z] + [ -e buildout/opendap.output.ipynb ] -[2024-04-03T00:08:57.334Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-03T00:08:59.229Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook -[2024-04-03T00:09:04.487Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb -[2024-04-03T00:09:04.487Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-03T00:09:04.487Z] + filename=pavics_thredds.ipynb -[2024-04-03T00:09:04.487Z] + sed s/.ipynb$// -[2024-04-03T00:09:04.487Z] + echo pavics_thredds.ipynb -[2024-04-03T00:09:04.487Z] + filename=pavics_thredds -[2024-04-03T00:09:04.487Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-04-03T00:09:04.487Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-03T00:09:05.859Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-04-03T00:09:09.138Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-03T00:09:09.138Z] context: Access to service is forbidden. -[2024-04-03T00:09:09.139Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-03T00:09:09.139Z] context: Access to service is forbidden. -[2024-04-03T00:09:11.042Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb -[2024-04-03T00:09:11.299Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-03T00:09:11.299Z] + filename=regridding.ipynb -[2024-04-03T00:09:11.299Z] + sed s/.ipynb$// -[2024-04-03T00:09:11.299Z] + echo regridding.ipynb -[2024-04-03T00:09:11.299Z] + filename=regridding -[2024-04-03T00:09:11.299Z] + [ -e buildout/regridding.output.ipynb ] -[2024-04-03T00:09:11.299Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-03T00:09:13.210Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook -[2024-04-03T00:10:49.697Z] [NbConvertApp] Writing 1239955 bytes to buildout/regridding.output.ipynb -[2024-04-03T00:10:49.697Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-03T00:10:49.697Z] + filename=rendering.ipynb -[2024-04-03T00:10:49.697Z] + + echo rendering.ipynb -[2024-04-03T00:10:49.698Z] sed s/.ipynb$// -[2024-04-03T00:10:49.698Z] + filename=rendering -[2024-04-03T00:10:49.698Z] + [ -e buildout/rendering.output.ipynb ] -[2024-04-03T00:10:49.698Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-03T00:10:49.698Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook -[2024-04-03T00:10:49.698Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb -[2024-04-03T00:10:49.956Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-03T00:10:49.956Z] + filename=subset-user-input.ipynb -[2024-04-03T00:10:49.956Z] + + sed s/.ipynb$// -[2024-04-03T00:10:49.956Z] echo subset-user-input.ipynb -[2024-04-03T00:10:49.956Z] + filename=subset-user-input -[2024-04-03T00:10:49.956Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-04-03T00:10:49.956Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-03T00:10:51.860Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-04-03T00:11:13.787Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb -[2024-04-03T00:11:13.787Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-03T00:11:13.787Z] + filename=subsetting.ipynb -[2024-04-03T00:11:13.787Z] + sed s/.ipynb$// -[2024-04-03T00:11:13.787Z] + echo subsetting.ipynb -[2024-04-03T00:11:13.787Z] + filename=subsetting -[2024-04-03T00:11:13.787Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-04-03T00:11:13.788Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-03T00:11:13.788Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook -[2024-04-03T00:11:21.986Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb -[2024-04-03T00:11:21.986Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-03T00:11:21.986Z] + filename=dap_subset.ipynb -[2024-04-03T00:11:21.986Z] + sed s/.ipynb$// -[2024-04-03T00:11:21.986Z] + echo dap_subset.ipynb -[2024-04-03T00:11:21.986Z] + filename=dap_subset -[2024-04-03T00:11:21.986Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-04-03T00:11:21.987Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-03T00:11:23.891Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-04-03T00:11:33.867Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb -[2024-04-03T00:11:33.867Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-03T00:11:33.867Z] + filename=finch-usage.ipynb -[2024-04-03T00:11:33.867Z] + sed s/.ipynb$// -[2024-04-03T00:11:33.867Z] + echo finch-usage.ipynb -[2024-04-03T00:11:33.867Z] + filename=finch-usage -[2024-04-03T00:11:33.867Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-04-03T00:11:33.867Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-03T00:11:35.250Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-04-03T00:11:45.222Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb -[2024-04-03T00:11:45.222Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-03T00:11:45.222Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-03T00:11:45.222Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-03T00:11:45.222Z] + sed s/.ipynb$// -[2024-04-03T00:11:45.222Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-04-03T00:11:45.222Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-04-03T00:11:45.222Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-03T00:11:46.604Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-04-03T00:11:51.960Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-04-03T00:11:51.960Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-03T00:11:51.960Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-03T00:11:51.960Z] + sed s/.ipynb$// -[2024-04-03T00:11:51.960Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-03T00:11:51.960Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-04-03T00:11:51.960Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-04-03T00:11:51.960Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-03T00:11:53.340Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-04-03T00:12:15.280Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-04-03T00:12:15.280Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-03T00:12:15.280Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-03T00:12:15.280Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-03T00:12:15.280Z] + sed s/.ipynb$// -[2024-04-03T00:12:15.280Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-04-03T00:12:15.280Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-04-03T00:12:15.280Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-03T00:12:15.280Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-04-03T00:16:51.868Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (240s). -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,306 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,309 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,310 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,312 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] 2024-04-03 00:16:40,313 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError -[2024-04-03T00:16:51.868Z] Traceback (most recent call last): -[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply -[2024-04-03T00:16:51.868Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) -[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async -[2024-04-03T00:16:51.868Z] result = await obj -[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg -[2024-04-03T00:16:51.868Z] raise Empty -[2024-04-03T00:16:51.868Z] _queue.Empty -[2024-04-03T00:16:51.868Z] -[2024-04-03T00:16:51.868Z] During handling of the above exception, another exception occurred: -[2024-04-03T00:16:51.868Z] -[2024-04-03T00:16:51.868Z] Traceback (most recent call last): -[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-04-03T00:16:51.868Z] sys.exit(main()) -[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance -[2024-04-03T00:16:51.868Z] super().launch_instance(argv=argv, **kwargs) -[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance -[2024-04-03T00:16:51.868Z] app.start() -[2024-04-03T00:16:51.868Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start -[2024-04-03T00:16:51.868Z] self.convert_notebooks() -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks -[2024-04-03T00:16:51.869Z] self.convert_single_notebook(notebook_filename) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook -[2024-04-03T00:16:51.869Z] output, resources = self.export_single_notebook( -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook -[2024-04-03T00:16:51.869Z] output, resources = self.exporter.from_filename( -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-04-03T00:16:51.869Z] return self.from_file(f, resources=resources, **kw) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-04-03T00:16:51.869Z] return self.from_notebook_node( -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-04-03T00:16:51.869Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-04-03T00:16:51.869Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess -[2024-04-03T00:16:51.869Z] nbc, resc = preprocessor(nbc, resc) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-04-03T00:16:51.869Z] return self.preprocess(nb, resources) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess -[2024-04-03T00:16:51.869Z] self.preprocess_cell(cell, resources, index) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell -[2024-04-03T00:16:51.869Z] cell = self.execute_cell(cell, index, store_history=True) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped -[2024-04-03T00:16:51.869Z] return loop.run_until_complete(inner) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-04-03T00:16:51.869Z] return future.result() -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell -[2024-04-03T00:16:51.869Z] exec_reply = await self.task_poll_for_reply -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply -[2024-04-03T00:16:51.869Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) -[2024-04-03T00:16:51.869Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout -[2024-04-03T00:16:51.869Z] raise CellTimeoutError.error_from_timeout_and_cell( -[2024-04-03T00:16:51.869Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 240 seconds. -[2024-04-03T00:16:51.869Z] The message was: Cell execution timed out. -[2024-04-03T00:16:51.869Z] Here is a preview of the cell contents: -[2024-04-03T00:16:51.869Z] ------------------- -[2024-04-03T00:16:51.869Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] -[2024-04-03T00:16:51.869Z] ... -[2024-04-03T00:16:51.869Z] [' print("finished")', '', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] -[2024-04-03T00:16:51.869Z] ------------------- -[2024-04-03T00:16:51.869Z] -[2024-04-03T00:16:51.869Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-03T00:16:51.869Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-03T00:16:51.869Z] + sed s/.ipynb$// -[2024-04-03T00:16:51.869Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-03T00:16:51.869Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-04-03T00:16:51.869Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-04-03T00:16:51.869Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-03T00:16:51.869Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-04-03T00:17:09.963Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-04-03T00:17:09.963Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-03T00:17:09.963Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-03T00:17:09.963Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-03T00:17:09.963Z] + sed s/.ipynb$// -[2024-04-03T00:17:09.963Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-04-03T00:17:09.963Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-04-03T00:17:09.963Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-03T00:17:09.963Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-04-03T00:18:17.618Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-04-03T00:18:17.618Z] + basename notebooks/hummingbird.ipynb -[2024-04-03T00:18:17.618Z] + filename=hummingbird.ipynb -[2024-04-03T00:18:17.618Z] + sed s/.ipynb$// -[2024-04-03T00:18:17.618Z] + echo hummingbird.ipynb -[2024-04-03T00:18:17.618Z] + filename=hummingbird -[2024-04-03T00:18:17.618Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-04-03T00:18:17.618Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-04-03T00:18:17.618Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-04-03T00:18:20.147Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb -[2024-04-03T00:18:20.147Z] + basename notebooks/stress-tests.ipynb -[2024-04-03T00:18:20.147Z] + filename=stress-tests.ipynb -[2024-04-03T00:18:20.147Z] + + sed s/.ipynb$// -[2024-04-03T00:18:20.147Z] echo stress-tests.ipynb -[2024-04-03T00:18:20.147Z] + filename=stress-tests -[2024-04-03T00:18:20.147Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-04-03T00:18:20.147Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=240 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-04-03T00:18:21.525Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-04-03T00:20:28.025Z] [NbConvertApp] Writing 428302 bytes to buildout/stress-tests.output.ipynb -[2024-04-03T00:20:28.025Z] + exit 1 -[2024-04-03T00:20:28.025Z] + EXIT_CODE=1 -[2024-04-03T00:20:28.025Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-04-03T00:20:28.025Z] + mkdir -p buildout/env-dump -[2024-04-03T00:20:28.025Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-04-03T00:20:28.025Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-04-03T00:20:28.025Z] + conda env export -n birdy -[2024-04-03T00:20:36.144Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-03T00:20:36.144Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-03T00:20:36.144Z] + conda list -n birdy --explicit -[2024-04-03T00:20:46.222Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-03T00:20:46.222Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-03T00:20:46.222Z] + pip freeze -[2024-04-03T00:20:46.487Z] + exit 1 +[2024-04-11T15:53:35.888Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-11T15:53:35.888Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-11T15:53:35.888Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-11T15:53:35.888Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-11T15:53:35.888Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-11T15:53:35.888Z] FINCH_BRANCH has been set to 'master' +[2024-04-11T15:53:35.888Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-11T15:53:35.888Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-11T15:53:35.888Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-11T15:53:35.888Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-11T15:53:35.888Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-11T15:53:35.888Z] RAVEN_BRANCH has been set to 'main' +[2024-04-11T15:53:35.888Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-11T15:53:35.888Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-11T15:53:35.888Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-11T15:53:35.888Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-11T15:53:35.888Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-11T15:53:35.888Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-11T15:53:35.888Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-11T15:53:35.888Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-11T15:53:35.888Z] + git clean -fdx +[2024-04-11T15:53:36.453Z] Removing .pytest_cache/ +[2024-04-11T15:53:36.453Z] Removing PAVICS-landing-master/ +[2024-04-11T15:53:36.453Z] Removing RavenPy-master/ +[2024-04-11T15:53:36.453Z] Removing __pycache__/ +[2024-04-11T15:53:36.453Z] Removing buildout/ +[2024-04-11T15:53:36.453Z] Removing esgf-compute-api-devel/ +[2024-04-11T15:53:36.453Z] Removing finch-master/ +[2024-04-11T15:53:36.453Z] Removing pavics-sdi-master/ +[2024-04-11T15:53:36.453Z] Removing raven-main/ +[2024-04-11T15:53:36.453Z] + ./downloadrepos +[2024-04-11T15:53:36.453Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-11T15:53:36.453Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-11T15:53:36.453Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-11T15:53:36.453Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-11T15:53:36.453Z] FINCH_BRANCH has been set to 'master' +[2024-04-11T15:53:36.453Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-11T15:53:36.453Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-11T15:53:36.453Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-11T15:53:36.453Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-11T15:53:36.453Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-11T15:53:36.453Z] RAVEN_BRANCH has been set to 'main' +[2024-04-11T15:53:36.453Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-11T15:53:36.453Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-11T15:53:36.453Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-11T15:53:36.453Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-11T15:53:36.453Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-11T15:53:36.453Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-11T15:53:36.453Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-11T15:53:36.453Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-11T15:53:36.453Z] + rm -rf pavics-sdi-* +[2024-04-11T15:53:36.453Z] + ls +[2024-04-11T15:53:36.453Z] + grep pavics-sdi +[2024-04-11T15:53:36.453Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:36.453Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-11T15:53:36.453Z] + shift +[2024-04-11T15:53:36.453Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:36.453Z] + shift +[2024-04-11T15:53:36.453Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-11T15:53:36.453Z] + tar xz +[2024-04-11T15:53:38.984Z] + grep pavics-sdi +[2024-04-11T15:53:38.984Z] + ls +[2024-04-11T15:53:38.984Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:38.984Z] + set +x +[2024-04-11T15:53:39.245Z] + rm -rf finch-* +[2024-04-11T15:53:39.245Z] + ls +[2024-04-11T15:53:39.245Z] + grep finch +[2024-04-11T15:53:39.245Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-11T15:53:39.246Z] + github_repo=https://github.com/bird-house/finch +[2024-04-11T15:53:39.246Z] + shift +[2024-04-11T15:53:39.246Z] + branch=master +[2024-04-11T15:53:39.246Z] + shift +[2024-04-11T15:53:39.246Z] + tar xz +[2024-04-11T15:53:39.246Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-11T15:53:40.618Z] + ls +[2024-04-11T15:53:40.618Z] + grep finch +[2024-04-11T15:53:40.618Z] finch-master +[2024-04-11T15:53:40.618Z] + set +x +[2024-04-11T15:53:40.618Z] + rm -rf PAVICS-landing-* +[2024-04-11T15:53:40.618Z] + ls +[2024-04-11T15:53:40.618Z] + grep PAVICS-landing +[2024-04-11T15:53:40.618Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:40.618Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-11T15:53:40.618Z] + shift +[2024-04-11T15:53:40.618Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:40.618Z] + shift +[2024-04-11T15:53:40.618Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-11T15:53:40.618Z] + tar xz +[2024-04-11T15:53:52.844Z] + grep PAVICS-landing +[2024-04-11T15:53:52.844Z] + ls +[2024-04-11T15:53:52.844Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:52.844Z] + set +x +[2024-04-11T15:53:52.844Z] + rm -rf raven-* +[2024-04-11T15:53:52.844Z] + + grep raven +[2024-04-11T15:53:52.844Z] ls +[2024-04-11T15:53:52.845Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-11T15:53:52.845Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-11T15:53:52.845Z] + shift +[2024-04-11T15:53:52.845Z] + branch=main +[2024-04-11T15:53:52.845Z] + shift +[2024-04-11T15:53:52.845Z] + + tar xz +[2024-04-11T15:53:52.845Z] wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-11T15:53:53.773Z] + ls +[2024-04-11T15:53:53.773Z] + grep raven +[2024-04-11T15:53:53.773Z] raven-main +[2024-04-11T15:53:53.773Z] + set +x +[2024-04-11T15:53:53.773Z] + rm -rf RavenPy-* +[2024-04-11T15:53:53.773Z] + ls +[2024-04-11T15:53:53.773Z] + grep RavenPy +[2024-04-11T15:53:53.773Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-11T15:53:53.773Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-11T15:53:53.773Z] + shift +[2024-04-11T15:53:53.773Z] + branch=master +[2024-04-11T15:53:53.773Z] + shift +[2024-04-11T15:53:53.773Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-11T15:53:53.773Z] + tar xz +[2024-04-11T15:53:55.146Z] + grep RavenPy +[2024-04-11T15:53:55.146Z] + ls +[2024-04-11T15:53:55.146Z] RavenPy-master +[2024-04-11T15:53:55.146Z] + set +x +[2024-04-11T15:53:55.146Z] + rm -rf esgf-compute-api-* +[2024-04-11T15:53:55.146Z] + grep esgf-compute-api +[2024-04-11T15:53:55.146Z] + ls +[2024-04-11T15:53:55.146Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-11T15:53:55.146Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-11T15:53:55.146Z] + shift +[2024-04-11T15:53:55.146Z] + branch=devel +[2024-04-11T15:53:55.146Z] + shift +[2024-04-11T15:53:55.146Z] + tar xz +[2024-04-11T15:53:55.146Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-11T15:53:56.516Z] + ls +[2024-04-11T15:53:56.516Z] + grep esgf-compute-api +[2024-04-11T15:53:56.516Z] esgf-compute-api-devel +[2024-04-11T15:53:56.516Z] + set +x +[2024-04-11T15:53:56.516Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:56.516Z] + sed s@/@-@g +[2024-04-11T15:53:56.516Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:56.516Z] + echo Ouranosinc/pavics-sdi +[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g +[2024-04-11T15:53:56.516Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-11T15:53:56.516Z] + echo master +[2024-04-11T15:53:56.516Z] + sed s@/@-@g +[2024-04-11T15:53:56.516Z] + FINCH_BRANCH=master +[2024-04-11T15:53:56.516Z] + echo bird-house/finch +[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g +[2024-04-11T15:53:56.516Z] + FINCH_REPO_NAME=finch +[2024-04-11T15:53:56.516Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:56.516Z] + sed s@/@-@g +[2024-04-11T15:53:56.516Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:56.516Z] + echo Ouranosinc/PAVICS-landing +[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g +[2024-04-11T15:53:56.516Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-11T15:53:56.516Z] + echo main +[2024-04-11T15:53:56.516Z] + sed s@/@-@g +[2024-04-11T15:53:56.516Z] + RAVEN_BRANCH=main +[2024-04-11T15:53:56.516Z] + echo Ouranosinc/raven +[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g +[2024-04-11T15:53:56.516Z] + RAVEN_REPO_NAME=raven +[2024-04-11T15:53:56.516Z] + echo master +[2024-04-11T15:53:56.516Z] + sed s@/@-@g +[2024-04-11T15:53:56.516Z] + RAVENPY_BRANCH=master +[2024-04-11T15:53:56.516Z] + echo CSHS-CWRA/RavenPy +[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g +[2024-04-11T15:53:56.516Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-11T15:53:56.516Z] + echo devel +[2024-04-11T15:53:56.516Z] + sed s@/@-@g +[2024-04-11T15:53:56.516Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-11T15:53:56.516Z] + echo ESGF/esgf-compute-api +[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g +[2024-04-11T15:53:56.516Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-11T15:53:56.516Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:53:56.516Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:56.516Z] + echo finch-master +[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:53:56.516Z] + FINCH_DIR=finch-master +[2024-04-11T15:53:56.516Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:53:56.516Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-11T15:53:56.516Z] + echo raven-main +[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:53:56.516Z] + RAVEN_DIR=raven-main +[2024-04-11T15:53:56.516Z] + echo RavenPy-master +[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:53:56.516Z] + RAVENPY_DIR=RavenPy-master +[2024-04-11T15:53:56.516Z] + echo esgf-compute-api-devel +[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:53:56.516Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-11T15:53:56.516Z] + echo true +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + VERIFY_SSL=true +[2024-04-11T15:53:56.516Z] + [ xtrue = xfalse ] +[2024-04-11T15:53:56.516Z] + rm -v finch-master/setup.cfg +[2024-04-11T15:53:56.516Z] removed 'finch-master/setup.cfg' +[2024-04-11T15:53:56.516Z] + rm -v raven-main/setup.cfg +[2024-04-11T15:53:56.516Z] removed 'raven-main/setup.cfg' +[2024-04-11T15:53:56.516Z] + rm -v raven-main/pyproject.toml +[2024-04-11T15:53:56.516Z] removed 'raven-main/pyproject.toml' +[2024-04-11T15:53:56.516Z] + rm -v RavenPy-master/setup.cfg +[2024-04-11T15:53:56.516Z] removed 'RavenPy-master/setup.cfg' +[2024-04-11T15:53:56.516Z] + rm -v RavenPy-master/tox.ini +[2024-04-11T15:53:56.516Z] removed 'RavenPy-master/tox.ini' +[2024-04-11T15:53:56.516Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-11T15:53:56.516Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-11T15:53:56.516Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-11T15:53:56.516Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-11T15:53:56.516Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-11T15:53:56.516Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-11T15:53:56.516Z] + echo false +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + TEST_MAGPIE_AUTH=false +[2024-04-11T15:53:56.516Z] + echo true +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + TEST_PAVICS_SDI_REPO=true +[2024-04-11T15:53:56.516Z] + echo false +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-11T15:53:56.516Z] + echo true +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + TEST_FINCH_REPO=true +[2024-04-11T15:53:56.516Z] + echo true +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + TEST_PAVICS_LANDING_REPO=true +[2024-04-11T15:53:56.516Z] + echo false +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + TEST_RAVEN_REPO=false +[2024-04-11T15:53:56.516Z] + echo false +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + TEST_RAVENPY_REPO=false +[2024-04-11T15:53:56.516Z] + echo false +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-11T15:53:56.516Z] + echo true +[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] +[2024-04-11T15:53:56.516Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-04-11T15:53:56.516Z] + NOTEBOOKS_TO_TEST= +[2024-04-11T15:53:56.516Z] + [ xfalse = xtrue ] +[2024-04-11T15:53:56.516Z] + [ xtrue = xtrue ] +[2024-04-11T15:53:56.516Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb +[2024-04-11T15:53:56.516Z] + [ xfalse = xtrue ] +[2024-04-11T15:53:56.516Z] + [ xtrue = xtrue ] +[2024-04-11T15:53:56.516Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-04-11T15:53:56.516Z] + [ xtrue = xtrue ] +[2024-04-11T15:53:56.516Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb +[2024-04-11T15:53:56.516Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-11T15:53:56.516Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-04-11T15:53:56.516Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-11T15:53:56.517Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-11T15:53:56.517Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-11T15:53:56.517Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-11T15:53:56.517Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators +[2024-04-11T15:53:56.517Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-11T15:53:56.517Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-11T15:53:56.517Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-04-11T15:53:56.517Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.289Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.289Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.289Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-11T15:53:57.289Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-04-11T15:53:57.289Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-04-11T15:53:57.289Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-04-11T15:53:57.289Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' +[2024-04-11T15:53:57.289Z] + [ xfalse = xtrue ] +[2024-04-11T15:53:57.289Z] + [ xfalse = xtrue ] +[2024-04-11T15:53:57.289Z] + [ xfalse = xtrue ] +[2024-04-11T15:53:57.289Z] + [ xtrue = xtrue ] +[2024-04-11T15:53:57.289Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-11T15:53:57.289Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-11T15:53:57.289Z] + [ -n ] +[2024-04-11T15:53:57.289Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-11T15:53:57.289Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-11T15:53:57.289Z] Will run notebooks against pavics.ouranos.ca +[2024-04-11T15:53:57.289Z] + [ -z ] +[2024-04-11T15:53:57.289Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-04-11T15:53:57.289Z] + git diff +[2024-04-11T15:53:57.289Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-11T15:53:57.290Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-04-11T15:53:59.807Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-11T15:53:59.807Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-11T15:54:00.064Z] ============================= test session starts ============================== +[2024-04-11T15:54:00.064Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-04-11T15:54:00.064Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-04-11T15:54:00.064Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-11T15:54:00.064Z] collected 220 items +[2024-04-11T15:54:00.064Z] +[2024-04-11T15:54:04.239Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-04-11T15:54:28.397Z] ..... [ 2%] +[2024-04-11T15:54:31.679Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-04-11T15:54:38.393Z] ...... [ 5%] +[2024-04-11T15:54:40.288Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-04-11T15:54:46.497Z] ..... [ 8%] +[2024-04-11T15:54:47.065Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-04-11T15:54:51.762Z] ....... [ 12%] +[2024-04-11T15:54:59.872Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] +[2024-04-11T15:57:24.740Z] ........... [ 17%] +[2024-04-11T15:57:24.740Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-04-11T15:57:31.874Z] ............... [ 25%] +[2024-04-11T15:57:34.415Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-04-11T15:57:39.717Z] .... [ 27%] +[2024-04-11T15:57:41.616Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] +[2024-04-11T15:57:46.959Z] ..... [ 30%] +[2024-04-11T15:57:55.095Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-04-11T15:58:01.827Z] ..... [ 32%] +[2024-04-11T15:58:03.736Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] +[2024-04-11T15:58:06.208Z] ...... [ 35%] +[2024-04-11T15:58:07.587Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-04-11T15:58:10.591Z] .... [ 38%] +[2024-04-11T15:58:28.689Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-04-11T15:59:59.048Z] ........................... [ 50%] +[2024-04-11T15:59:59.048Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-04-11T15:59:59.882Z] ... [ 52%] +[2024-04-11T16:00:00.820Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-04-11T16:00:20.540Z] ........................ [ 64%] +[2024-04-11T16:00:24.082Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-04-11T16:00:28.493Z] ..... [ 66%] +[2024-04-11T16:00:37.182Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] +[2024-04-11T16:00:44.980Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-04-11T16:00:46.365Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-04-11T16:00:49.465Z] ...... [ 77%] +[2024-04-11T16:00:57.590Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] +[2024-04-11T16:01:09.789Z] ............. [ 84%] +[2024-04-11T16:01:17.920Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-04-11T16:01:35.003Z] ....s [ 86%] +[2024-04-11T16:01:41.582Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-04-11T16:01:53.280Z] .F. [ 88%] +[2024-04-11T16:02:05.472Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-04-11T16:02:55.487Z] ...... [ 91%] +[2024-04-11T16:02:56.002Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-04-11T16:04:51.693Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] =================================== FAILURES =================================== +[2024-04-11T16:04:51.693Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ +[2024-04-11T16:04:51.693Z] Notebook cell execution failed +[2024-04-11T16:04:51.693Z] Cell 2: Cell execution caused an exception +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] Input: +[2024-04-11T16:04:51.693Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) +[2024-04-11T16:04:51.693Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] chng_f, pos_f = xens.change_significance( +[2024-04-11T16:04:51.693Z] fut.sel(time=fut["time.season"] == "JJA"), +[2024-04-11T16:04:51.693Z] ref.sel(time=ref["time.season"] == "JJA"), +[2024-04-11T16:04:51.693Z] test="ttest", +[2024-04-11T16:04:51.693Z] ) +[2024-04-11T16:04:51.693Z] plt.figure( +[2024-04-11T16:04:51.693Z] figsize=(15, 6), +[2024-04-11T16:04:51.693Z] ) +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] plt.subplot(1, 2, 1) +[2024-04-11T16:04:51.693Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] plt.title(chng_f.description.split(".")[0]) +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] plt.subplot(1, 2, 2) +[2024-04-11T16:04:51.693Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-11T16:04:51.693Z] plt.title(pos_f.description.split(".")[0]) +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] display() +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] Traceback: +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] --------------------------------------------------------------------------- +[2024-04-11T16:04:51.693Z] AttributeError Traceback (most recent call last) +[2024-04-11T16:04:51.693Z] Cell In[1], line 20 +[2024-04-11T16:04:51.693Z]  18 plt.subplot(1, 2, 2) +[2024-04-11T16:04:51.693Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-11T16:04:51.693Z] ---> 20 plt.title(pos_f.description.split(".")[0]) +[2024-04-11T16:04:51.693Z]  22 display() +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-04-11T16:04:51.693Z]  275 with suppress(KeyError): +[2024-04-11T16:04:51.693Z]  276 return source[name] +[2024-04-11T16:04:51.693Z] --> 277 raise AttributeError( +[2024-04-11T16:04:51.693Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-04-11T16:04:51.693Z]  279 ) +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-04-11T16:04:51.693Z] +[2024-04-11T16:04:51.693Z] =========================== short test summary info ============================ +[2024-04-11T16:04:51.693Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-04-11T16:04:51.693Z] ============= 1 failed, 218 passed, 1 skipped in 648.22s (0:10:48) ============= +[2024-04-11T16:04:51.693Z] + EXIT_CODE=1 +[2024-04-11T16:04:51.693Z] + echo true +[2024-04-11T16:04:51.693Z] + tr [:upper:] [:lower:] +[2024-04-11T16:04:51.694Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-04-11T16:04:51.694Z] + [ xtrue = xtrue ] +[2024-04-11T16:04:51.694Z] + mkdir -p buildout +[2024-04-11T16:04:51.694Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-11T16:04:51.694Z] + filename=CaSR_basic.ipynb +[2024-04-11T16:04:51.694Z] + echo+ CaSR_basic.ipynb +[2024-04-11T16:04:51.694Z] sed s/.ipynb$// +[2024-04-11T16:04:51.694Z] + filename=CaSR_basic +[2024-04-11T16:04:51.694Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-04-11T16:04:51.694Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-11T16:04:51.694Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-04-11T16:05:09.839Z] 2024-04-11 16:05:08,176 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. +[2024-04-11T16:05:09.839Z] Traceback (most recent call last): +[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read +[2024-04-11T16:05:09.839Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) +[2024-04-11T16:05:09.839Z] tornado.iostream.StreamClosedError: Stream is closed +[2024-04-11T16:05:09.839Z] +[2024-04-11T16:05:09.839Z] The above exception was the direct cause of the following exception: +[2024-04-11T16:05:09.839Z] +[2024-04-11T16:05:09.839Z] Traceback (most recent call last): +[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat +[2024-04-11T16:05:09.839Z] response = await retry_operation( +[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation +[2024-04-11T16:05:09.839Z] return await retry( +[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry +[2024-04-11T16:05:09.839Z] return await coro() +[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc +[2024-04-11T16:05:09.839Z] return await send_recv(comm=comm, op=key, **kwargs) +[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv +[2024-04-11T16:05:09.839Z] response = await comm.read(deserializers=deserializers) +[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read +[2024-04-11T16:05:09.839Z] convert_stream_closed_error(self, e) +[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error +[2024-04-11T16:05:09.839Z] raise CommClosedError(f"in {obj}: {exc}") from exc +[2024-04-11T16:05:09.839Z] distributed.comm.core.CommClosedError: in : Stream is closed +[2024-04-11T16:05:22.060Z] [NbConvertApp] Writing 694582 bytes to buildout/CaSR_basic.output.ipynb +[2024-04-11T16:05:22.319Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-11T16:05:22.319Z] + filename=WCS_example.ipynb +[2024-04-11T16:05:22.319Z] + sed s/.ipynb$// +[2024-04-11T16:05:22.319Z] + echo WCS_example.ipynb +[2024-04-11T16:05:22.319Z] + filename=WCS_example +[2024-04-11T16:05:22.319Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-04-11T16:05:22.319Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-11T16:05:24.215Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-04-11T16:05:34.185Z] [NbConvertApp] Writing 144330 bytes to buildout/WCS_example.output.ipynb +[2024-04-11T16:05:34.185Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-11T16:05:34.185Z] + filename=WFS_example.ipynb +[2024-04-11T16:05:34.185Z] + echo WFS_example.ipynb +[2024-04-11T16:05:34.185Z] + sed s/.ipynb$// +[2024-04-11T16:05:34.185Z] + filename=WFS_example +[2024-04-11T16:05:34.185Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-04-11T16:05:34.185Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-11T16:05:35.567Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-04-11T16:05:45.550Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb +[2024-04-11T16:05:45.550Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-11T16:05:45.550Z] + filename=WMS_example.ipynb +[2024-04-11T16:05:45.550Z] + sed s/.ipynb$// +[2024-04-11T16:05:45.550Z] + echo WMS_example.ipynb +[2024-04-11T16:05:45.550Z] + filename=WMS_example +[2024-04-11T16:05:45.550Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-04-11T16:05:45.550Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-11T16:05:46.492Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-04-11T16:06:08.414Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb +[2024-04-11T16:06:08.415Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-11T16:06:08.415Z] + filename=climex.ipynb +[2024-04-11T16:06:08.415Z] + echo climex.ipynb +[2024-04-11T16:06:08.415Z] + sed s/.ipynb$// +[2024-04-11T16:06:08.415Z] + filename=climex +[2024-04-11T16:06:08.415Z] + [ -e buildout/climex.output.ipynb ] +[2024-04-11T16:06:08.415Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-11T16:06:08.415Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook +[2024-04-11T16:08:00.054Z] 2024-04-11 16:07:47,054 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. +[2024-04-11T16:08:00.054Z] Traceback (most recent call last): +[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read +[2024-04-11T16:08:00.054Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) +[2024-04-11T16:08:00.054Z] tornado.iostream.StreamClosedError: Stream is closed +[2024-04-11T16:08:00.054Z] +[2024-04-11T16:08:00.054Z] The above exception was the direct cause of the following exception: +[2024-04-11T16:08:00.054Z] +[2024-04-11T16:08:00.054Z] Traceback (most recent call last): +[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat +[2024-04-11T16:08:00.054Z] response = await retry_operation( +[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation +[2024-04-11T16:08:00.054Z] return await retry( +[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry +[2024-04-11T16:08:00.054Z] return await coro() +[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc +[2024-04-11T16:08:00.054Z] return await send_recv(comm=comm, op=key, **kwargs) +[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv +[2024-04-11T16:08:00.054Z] response = await comm.read(deserializers=deserializers) +[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read +[2024-04-11T16:08:00.054Z] convert_stream_closed_error(self, e) +[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error +[2024-04-11T16:08:00.054Z] raise CommClosedError(f"in {obj}: {exc}") from exc +[2024-04-11T16:08:00.055Z] distributed.comm.core.CommClosedError: in : Stream is closed +[2024-04-11T16:08:56.341Z] 2024-04-11 16:08:52,812 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. +[2024-04-11T16:08:56.341Z] Traceback (most recent call last): +[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read +[2024-04-11T16:08:56.341Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) +[2024-04-11T16:08:56.341Z] tornado.iostream.StreamClosedError: Stream is closed +[2024-04-11T16:08:56.341Z] +[2024-04-11T16:08:56.341Z] The above exception was the direct cause of the following exception: +[2024-04-11T16:08:56.341Z] +[2024-04-11T16:08:56.341Z] Traceback (most recent call last): +[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat +[2024-04-11T16:08:56.341Z] response = await retry_operation( +[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation +[2024-04-11T16:08:56.341Z] return await retry( +[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry +[2024-04-11T16:08:56.341Z] return await coro() +[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc +[2024-04-11T16:08:56.341Z] return await send_recv(comm=comm, op=key, **kwargs) +[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv +[2024-04-11T16:08:56.341Z] response = await comm.read(deserializers=deserializers) +[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read +[2024-04-11T16:08:56.341Z] convert_stream_closed_error(self, e) +[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error +[2024-04-11T16:08:56.341Z] raise CommClosedError(f"in {obj}: {exc}") from exc +[2024-04-11T16:08:56.341Z] distributed.comm.core.CommClosedError: in : Stream is closed +[2024-04-11T16:08:57.904Z] [NbConvertApp] Writing 1789572 bytes to buildout/climex.output.ipynb +[2024-04-11T16:08:57.904Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-11T16:08:57.904Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-04-11T16:08:57.904Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-04-11T16:08:57.904Z] + sed s/.ipynb$// +[2024-04-11T16:08:57.904Z] + filename=eccc-geoapi-climate-stations +[2024-04-11T16:08:57.904Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-04-11T16:08:57.904Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-11T16:08:59.856Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-04-11T16:09:12.062Z] [NbConvertApp] Writing 279067 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-04-11T16:09:12.062Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-11T16:09:12.062Z] + filename=eccc-geoapi-xclim.ipynb +[2024-04-11T16:09:12.062Z] + echo eccc-geoapi-xclim.ipynb +[2024-04-11T16:09:12.062Z] + sed s/.ipynb$// +[2024-04-11T16:09:12.062Z] + filename=eccc-geoapi-xclim +[2024-04-11T16:09:12.062Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-04-11T16:09:12.062Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-11T16:09:12.328Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-04-11T16:09:22.355Z] [NbConvertApp] Writing 108011 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-04-11T16:09:22.355Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-11T16:09:22.355Z] + filename=esgf-dap.ipynb +[2024-04-11T16:09:22.355Z] + echo esgf-dap.ipynb +[2024-04-11T16:09:22.355Z] + sed s/.ipynb$// +[2024-04-11T16:09:22.355Z] + filename=esgf-dap +[2024-04-11T16:09:22.355Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-04-11T16:09:22.355Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-11T16:09:23.295Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-04-11T16:09:33.280Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb +[2024-04-11T16:09:33.280Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-11T16:09:33.280Z] + filename=forecasts.ipynb +[2024-04-11T16:09:33.280Z] + echo forecasts.ipynb +[2024-04-11T16:09:33.280Z] + sed s/.ipynb$// +[2024-04-11T16:09:33.280Z] + filename=forecasts +[2024-04-11T16:09:33.280Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-04-11T16:09:33.280Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-11T16:09:33.543Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook +[2024-04-11T16:09:51.634Z] [NbConvertApp] Writing 181135 bytes to buildout/forecasts.output.ipynb +[2024-04-11T16:09:51.634Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-11T16:09:51.634Z] + filename=jupyter_extensions.ipynb +[2024-04-11T16:09:51.634Z] + echo jupyter_extensions.ipynb +[2024-04-11T16:09:51.634Z] + sed s/.ipynb$// +[2024-04-11T16:09:51.634Z] + filename=jupyter_extensions +[2024-04-11T16:09:51.634Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-04-11T16:09:51.634Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-11T16:09:53.008Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-04-11T16:09:54.915Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb +[2024-04-11T16:09:54.915Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-11T16:09:54.915Z] + filename=opendap.ipynb +[2024-04-11T16:09:54.915Z] + echo opendap.ipynb +[2024-04-11T16:09:54.915Z] + sed s/.ipynb$// +[2024-04-11T16:09:54.915Z] + filename=opendap +[2024-04-11T16:09:54.915Z] + [ -e buildout/opendap.output.ipynb ] +[2024-04-11T16:09:54.915Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-11T16:09:56.852Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook +[2024-04-11T16:10:02.170Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb +[2024-04-11T16:10:02.170Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-11T16:10:02.170Z] + filename=pavics_thredds.ipynb +[2024-04-11T16:10:02.170Z] + echo pavics_thredds.ipynb +[2024-04-11T16:10:02.170Z] + sed s/.ipynb$// +[2024-04-11T16:10:02.170Z] + filename=pavics_thredds +[2024-04-11T16:10:02.170Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-04-11T16:10:02.170Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-11T16:10:04.062Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-04-11T16:10:07.342Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-11T16:10:07.343Z] context: Access to service is forbidden. +[2024-04-11T16:10:07.343Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-11T16:10:07.343Z] context: Access to service is forbidden. +[2024-04-11T16:10:09.236Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb +[2024-04-11T16:10:09.236Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-11T16:10:09.236Z] + filename=regridding.ipynb +[2024-04-11T16:10:09.236Z] + echo regridding.ipynb +[2024-04-11T16:10:09.236Z] + sed s/.ipynb$// +[2024-04-11T16:10:09.236Z] + filename=regridding +[2024-04-11T16:10:09.236Z] + [ -e buildout/regridding.output.ipynb ] +[2024-04-11T16:10:09.236Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-11T16:10:11.132Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook +[2024-04-11T16:11:47.576Z] [NbConvertApp] Writing 1239953 bytes to buildout/regridding.output.ipynb +[2024-04-11T16:11:47.577Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-11T16:11:47.577Z] + filename=rendering.ipynb +[2024-04-11T16:11:47.577Z] + echo rendering.ipynb +[2024-04-11T16:11:47.577Z] + sed s/.ipynb$// +[2024-04-11T16:11:47.577Z] + filename=rendering +[2024-04-11T16:11:47.577Z] + [ -e buildout/rendering.output.ipynb ] +[2024-04-11T16:11:47.577Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-11T16:11:47.577Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook +[2024-04-11T16:11:51.775Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb +[2024-04-11T16:11:52.038Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-11T16:11:52.038Z] + filename=subset-user-input.ipynb +[2024-04-11T16:11:52.038Z] + sed s/.ipynb$// +[2024-04-11T16:11:52.038Z] + echo subset-user-input.ipynb +[2024-04-11T16:11:52.038Z] + filename=subset-user-input +[2024-04-11T16:11:52.038Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-04-11T16:11:52.038Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-11T16:11:53.949Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-04-11T16:12:15.945Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb +[2024-04-11T16:12:15.945Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-11T16:12:15.945Z] + filename=subsetting.ipynb +[2024-04-11T16:12:15.945Z] + echo subsetting.ipynb +[2024-04-11T16:12:15.945Z] + sed s/.ipynb$// +[2024-04-11T16:12:15.945Z] + filename=subsetting +[2024-04-11T16:12:15.945Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-04-11T16:12:15.945Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-11T16:12:15.945Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook +[2024-04-11T16:12:25.953Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb +[2024-04-11T16:12:25.953Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-11T16:12:25.953Z] + filename=dap_subset.ipynb +[2024-04-11T16:12:25.953Z] + + sed s/.ipynb$//echo +[2024-04-11T16:12:25.953Z] dap_subset.ipynb +[2024-04-11T16:12:25.953Z] + filename=dap_subset +[2024-04-11T16:12:25.953Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-04-11T16:12:25.953Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-11T16:12:26.906Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-04-11T16:12:36.889Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb +[2024-04-11T16:12:36.889Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-11T16:12:36.889Z] + filename=finch-usage.ipynb +[2024-04-11T16:12:36.889Z] + echo finch-usage.ipynb +[2024-04-11T16:12:36.889Z] + sed s/.ipynb$// +[2024-04-11T16:12:36.889Z] + filename=finch-usage +[2024-04-11T16:12:36.889Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-04-11T16:12:36.889Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-11T16:12:38.313Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-04-11T16:12:50.561Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb +[2024-04-11T16:12:50.561Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-11T16:12:50.561Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-11T16:12:50.561Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-11T16:12:50.561Z] + sed s/.ipynb$// +[2024-04-11T16:12:50.561Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-04-11T16:12:50.561Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-04-11T16:12:50.561Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-11T16:12:51.993Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-04-11T16:12:57.291Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-04-11T16:12:57.556Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-11T16:12:57.556Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-11T16:12:57.556Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-11T16:12:57.556Z] + sed s/.ipynb$// +[2024-04-11T16:12:57.556Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-04-11T16:12:57.556Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-04-11T16:12:57.556Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-11T16:12:59.471Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-04-11T16:13:21.521Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-04-11T16:13:21.522Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-11T16:13:21.522Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-11T16:13:21.522Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-11T16:13:21.522Z] + sed s/.ipynb$// +[2024-04-11T16:13:21.522Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-04-11T16:13:21.522Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-04-11T16:13:21.522Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-11T16:13:21.522Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-04-11T16:23:28.754Z] [NbConvertApp] Writing 578104 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb +[2024-04-11T16:23:28.754Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-11T16:23:28.754Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-11T16:23:28.754Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-11T16:23:28.754Z] + sed s/.ipynb$// +[2024-04-11T16:23:28.754Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-04-11T16:23:28.754Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-04-11T16:23:28.754Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-11T16:23:28.755Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-04-11T16:23:38.738Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-04-11T16:23:39.000Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-11T16:23:39.000Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-11T16:23:39.000Z] + sed s/.ipynb$// +[2024-04-11T16:23:39.000Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-11T16:23:39.000Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-04-11T16:23:39.000Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-04-11T16:23:39.000Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-11T16:23:40.904Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-04-11T16:24:48.723Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-04-11T16:24:48.723Z] + basename notebooks/hummingbird.ipynb +[2024-04-11T16:24:48.723Z] + filename=hummingbird.ipynb +[2024-04-11T16:24:48.723Z] + echo hummingbird.ipynb +[2024-04-11T16:24:48.723Z] + sed s/.ipynb$// +[2024-04-11T16:24:48.723Z] + filename=hummingbird +[2024-04-11T16:24:48.723Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-04-11T16:24:48.723Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-04-11T16:24:48.723Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-04-11T16:24:50.684Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb +[2024-04-11T16:24:50.684Z] + basename notebooks/stress-tests.ipynb +[2024-04-11T16:24:50.684Z] + filename=stress-tests.ipynb +[2024-04-11T16:24:50.684Z] + sed s/.ipynb$// +[2024-04-11T16:24:50.684Z] + echo stress-tests.ipynb +[2024-04-11T16:24:50.684Z] + filename=stress-tests +[2024-04-11T16:24:50.684Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-04-11T16:24:50.684Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-04-11T16:24:52.603Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-04-11T16:26:59.082Z] [NbConvertApp] Writing 428650 bytes to buildout/stress-tests.output.ipynb +[2024-04-11T16:26:59.082Z] + exit 1 +[2024-04-11T16:26:59.082Z] + EXIT_CODE=1 +[2024-04-11T16:26:59.082Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-04-11T16:26:59.082Z] + mkdir -p buildout/env-dump +[2024-04-11T16:26:59.082Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-04-11T16:26:59.082Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-04-11T16:26:59.082Z] + conda env export -n birdy +[2024-04-11T16:27:04.365Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-11T16:27:04.365Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-11T16:27:04.365Z] + conda list -n birdy --explicit +[2024-04-11T16:27:14.399Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-11T16:27:14.399Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-11T16:27:14.399Z] + pip freeze +[2024-04-11T16:27:14.967Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -1096,41 +863,41 @@ $ docker top f262edeb29bf9aea0954c3fdbe768e35b32e6a65d7c416dc3414ca3469efbe74 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-03T00:20:48.995Z] Archiving artifacts -[2024-04-03T00:20:49.200Z] Recording fingerprints +[2024-04-11T16:27:16.106Z] Archiving artifacts +[2024-04-11T16:27:16.138Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:49.551Z] Archiving artifacts -[2024-04-03T00:20:50.217Z] Recording fingerprints +[2024-04-11T16:27:16.168Z] Archiving artifacts +[2024-04-11T16:27:16.903Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:51.033Z] Archiving artifacts -[2024-04-03T00:20:51.049Z] Recording fingerprints +[2024-04-11T16:27:17.490Z] Archiving artifacts +[2024-04-11T16:27:17.631Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:51.118Z] Archiving artifacts -[2024-04-03T00:20:51.139Z] Recording fingerprints +[2024-04-11T16:27:17.679Z] Archiving artifacts +[2024-04-11T16:27:17.700Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:51.175Z] Archiving artifacts -[2024-04-03T00:20:51.202Z] Recording fingerprints +[2024-04-11T16:27:17.724Z] Archiving artifacts +[2024-04-11T16:27:17.747Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:51.421Z] Archiving artifacts -[2024-04-03T00:20:51.461Z] Recording fingerprints +[2024-04-11T16:27:17.819Z] Archiving artifacts +[2024-04-11T16:27:17.884Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:52.997Z] Archiving artifacts -[2024-04-03T00:20:53.199Z] Recording fingerprints +[2024-04-11T16:27:18.078Z] Archiving artifacts +[2024-04-11T16:27:18.098Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:53.287Z] Archiving artifacts -[2024-04-03T00:20:53.352Z] Recording fingerprints +[2024-04-11T16:27:18.131Z] Archiving artifacts +[2024-04-11T16:27:18.173Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:53.566Z] Archiving artifacts -[2024-04-03T00:20:53.986Z] Recording fingerprints +[2024-04-11T16:27:18.244Z] Archiving artifacts +[2024-04-11T16:27:18.648Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:54.241Z] Archiving artifacts -[2024-04-03T00:20:55.276Z] Recording fingerprints +[2024-04-11T16:27:19.016Z] Archiving artifacts +[2024-04-11T16:27:20.143Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:20:56.616Z] Archiving artifacts -[2024-04-03T00:20:56.653Z] Recording fingerprints +[2024-04-11T16:27:20.345Z] Archiving artifacts +[2024-04-11T16:27:20.369Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-04-03T00:20:56.783Z] Sending e-mails to: vu.long@ouranos.ca +[2024-04-11T16:27:20.687Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -1140,8 +907,8 @@ $ docker top f262edeb29bf9aea0954c3fdbe768e35b32e6a65d7c416dc3414ca3469efbe74 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 f262edeb29bf9aea0954c3fdbe768e35b32e6a65d7c416dc3414ca3469efbe74 -$ docker rm -f f262edeb29bf9aea0954c3fdbe768e35b32e6a65d7c416dc3414ca3469efbe74 +$ docker stop --time=1 2abf83cdd74e10acfe44bf0aad443e5cd0fcd7e0b43b4378bbf1731f7c2bb24e +$ docker rm -f 2abf83cdd74e10acfe44bf0aad443e5cd0fcd7e0b43b4378bbf1731f7c2bb24e [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 375c271912b92b7929888632780ddea460d81223 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 11 Apr 2024 13:34:28 -0400 Subject: [PATCH 063/104] docker: py310-240404: initial jenkins, raven nb --- .../jenkins-buildlogs-raven.txt | 3954 ++++++++--------- 1 file changed, 1977 insertions(+), 1977 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index 7051a13..f312440 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -17,7 +17,7 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from fbe057b1fb1c37a3611c45502e088c24533e6b12 +Obtained Jenkinsfile from 216b16e9329a254e7e2e14ebf72437f7abcf3e06 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -34,1981 +34,1981 @@ Fetching without tags Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision fbe057b1fb1c37a3611c45502e088c24533e6b12 (new-docker-build) -Commit message: "docker: py310-240402: build log" +Checking out Revision 216b16e9329a254e7e2e14ebf72437f7abcf3e06 (new-docker-build) +Commit message: "release: update to use image pavics/workflow-tests:py310-240404" > git config core.sparsecheckout # timeout=10 - > git checkout -f fbe057b1fb1c37a3611c45502e088c24533e6b12 # timeout=10 - > git rev-list --no-walk fbe057b1fb1c37a3611c45502e088c24533e6b12 # timeout=10 + > git checkout -f 216b16e9329a254e7e2e14ebf72437f7abcf3e06 # timeout=10 + > git rev-list --no-walk 216b16e9329a254e7e2e14ebf72437f7abcf3e06 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240402 ++ docker inspect -f . pavics/workflow-tests:py310-240404 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240402 cat -$ docker top 9c8a3357bc15ed4ff2a5faf012a247ff2e4ecf5c42b9b2d708a1e060347bede9 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240404 cat +$ docker top 08458e3617288787ce7ba47a580b094b7d640d230fb137d8a2e0d08df3b2c1d1 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-02T23:53:55.162Z] Timeout set to expire in 2 hr 0 min +[2024-04-11T15:55:50.419Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-02T23:53:56.743Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-11T15:55:52.414Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-02T23:53:57.608Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-02T23:53:57.608Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-02T23:53:57.608Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-02T23:53:57.608Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-02T23:53:57.608Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-02T23:53:57.608Z] FINCH_BRANCH has been set to 'master' -[2024-04-02T23:53:57.608Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-02T23:53:57.608Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-02T23:53:57.608Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-02T23:53:57.608Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-02T23:53:57.608Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-02T23:53:57.608Z] RAVEN_BRANCH has been set to 'main' -[2024-04-02T23:53:57.608Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-02T23:53:57.608Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-02T23:53:57.608Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-02T23:53:57.608Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-02T23:53:57.608Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-02T23:53:57.608Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-02T23:53:57.608Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-02T23:53:57.608Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-02T23:53:57.608Z] + git clean -fdx -[2024-04-02T23:53:58.582Z] Removing .pytest_cache/ -[2024-04-02T23:53:58.582Z] Removing PAVICS-landing-master/ -[2024-04-02T23:53:58.582Z] Removing RavenPy-master/ -[2024-04-02T23:53:58.582Z] Removing __pycache__/ -[2024-04-02T23:53:58.582Z] Removing buildout/ -[2024-04-02T23:53:58.582Z] Removing esgf-compute-api-devel/ -[2024-04-02T23:53:58.582Z] Removing finch-master/ -[2024-04-02T23:53:58.582Z] Removing pavics-sdi-master/ -[2024-04-02T23:53:58.582Z] Removing raven-main/ -[2024-04-02T23:53:58.582Z] + ./downloadrepos -[2024-04-02T23:53:58.582Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-02T23:53:58.582Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-02T23:53:58.582Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-02T23:53:58.582Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-02T23:53:58.582Z] FINCH_BRANCH has been set to 'master' -[2024-04-02T23:53:58.582Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-02T23:53:58.582Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-02T23:53:58.582Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-02T23:53:58.582Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-02T23:53:58.582Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-02T23:53:58.582Z] RAVEN_BRANCH has been set to 'main' -[2024-04-02T23:53:58.582Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-02T23:53:58.582Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-02T23:53:58.582Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-02T23:53:58.582Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-02T23:53:58.582Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-02T23:53:58.582Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-02T23:53:58.582Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-02T23:53:58.582Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-02T23:53:58.582Z] + rm -rf pavics-sdi-* -[2024-04-02T23:53:58.582Z] + ls -[2024-04-02T23:53:58.582Z] + grep pavics-sdi -[2024-04-02T23:53:58.582Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-04-02T23:53:58.582Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-02T23:53:58.582Z] + shift -[2024-04-02T23:53:58.582Z] + branch=master -[2024-04-02T23:53:58.582Z] + shift -[2024-04-02T23:53:58.582Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-04-02T23:53:58.582Z] + tar xz -[2024-04-02T23:54:01.164Z] + ls -[2024-04-02T23:54:01.164Z] + grep pavics-sdi -[2024-04-02T23:54:01.164Z] pavics-sdi-master -[2024-04-02T23:54:01.164Z] + set +x -[2024-04-02T23:54:01.164Z] + rm -rf finch-* -[2024-04-02T23:54:01.164Z] + ls -[2024-04-02T23:54:01.164Z] + grep finch -[2024-04-02T23:54:01.164Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-02T23:54:01.164Z] + github_repo=https://github.com/bird-house/finch -[2024-04-02T23:54:01.164Z] + shift -[2024-04-02T23:54:01.164Z] + branch=master -[2024-04-02T23:54:01.164Z] + shift -[2024-04-02T23:54:01.164Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-02T23:54:01.164Z] + tar xz -[2024-04-02T23:54:03.085Z] + grep finch -[2024-04-02T23:54:03.085Z] + ls -[2024-04-02T23:54:03.085Z] finch-master -[2024-04-02T23:54:03.085Z] + set +x -[2024-04-02T23:54:03.085Z] + rm -rf PAVICS-landing-* -[2024-04-02T23:54:03.085Z] + ls -[2024-04-02T23:54:03.085Z] + grep PAVICS-landing -[2024-04-02T23:54:03.085Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-04-02T23:54:03.085Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-02T23:54:03.085Z] + shift -[2024-04-02T23:54:03.085Z] + branch=master -[2024-04-02T23:54:03.085Z] + shift -[2024-04-02T23:54:03.085Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-04-02T23:54:03.085Z] + tar xz -[2024-04-02T23:54:15.421Z] + + grep PAVICS-landingls -[2024-04-02T23:54:15.421Z] -[2024-04-02T23:54:15.421Z] PAVICS-landing-master -[2024-04-02T23:54:15.421Z] + set +x -[2024-04-02T23:54:15.421Z] + rm -rf raven-* -[2024-04-02T23:54:15.421Z] + ls -[2024-04-02T23:54:15.421Z] + grep raven -[2024-04-02T23:54:15.421Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-02T23:54:15.421Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-02T23:54:15.421Z] + shift -[2024-04-02T23:54:15.421Z] + branch=main -[2024-04-02T23:54:15.421Z] + shift -[2024-04-02T23:54:15.421Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-02T23:54:15.421Z] + tar xz -[2024-04-02T23:54:16.860Z] + ls -[2024-04-02T23:54:16.860Z] + grep raven -[2024-04-02T23:54:16.860Z] raven-main -[2024-04-02T23:54:16.860Z] + set +x -[2024-04-02T23:54:16.860Z] + rm -rf RavenPy-* -[2024-04-02T23:54:16.860Z] + + ls -[2024-04-02T23:54:16.860Z] grep RavenPy -[2024-04-02T23:54:16.860Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-02T23:54:16.860Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-02T23:54:16.860Z] + shift -[2024-04-02T23:54:16.860Z] + branch=master -[2024-04-02T23:54:16.860Z] + shift -[2024-04-02T23:54:16.860Z] + + tar xz -[2024-04-02T23:54:16.860Z] wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-02T23:54:19.483Z] + ls -[2024-04-02T23:54:19.483Z] + grep RavenPy -[2024-04-02T23:54:19.483Z] RavenPy-master -[2024-04-02T23:54:19.483Z] + set +x -[2024-04-02T23:54:19.483Z] + rm -rf esgf-compute-api-* -[2024-04-02T23:54:19.483Z] + grep esgf-compute-api -[2024-04-02T23:54:19.483Z] + ls -[2024-04-02T23:54:19.483Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-02T23:54:19.483Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-02T23:54:19.483Z] + shift -[2024-04-02T23:54:19.483Z] + branch=devel -[2024-04-02T23:54:19.483Z] + shift -[2024-04-02T23:54:19.483Z] + tar xz -[2024-04-02T23:54:19.483Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-02T23:54:20.113Z] + grep esgf-compute-api -[2024-04-02T23:54:20.113Z] + ls -[2024-04-02T23:54:20.113Z] esgf-compute-api-devel -[2024-04-02T23:54:20.113Z] + set +x -[2024-04-02T23:54:20.113Z] + + echo master -[2024-04-02T23:54:20.113Z] sed s@/@-@g -[2024-04-02T23:54:20.113Z] + PAVICS_SDI_BRANCH=master -[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g -[2024-04-02T23:54:20.113Z] + echo Ouranosinc/pavics-sdi -[2024-04-02T23:54:20.113Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-02T23:54:20.113Z] + sed s@/@-@g -[2024-04-02T23:54:20.113Z] + echo master -[2024-04-02T23:54:20.113Z] + FINCH_BRANCH=master -[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g -[2024-04-02T23:54:20.113Z] + echo bird-house/finch -[2024-04-02T23:54:20.113Z] + FINCH_REPO_NAME=finch -[2024-04-02T23:54:20.113Z] + echo master -[2024-04-02T23:54:20.113Z] + sed s@/@-@g -[2024-04-02T23:54:20.113Z] + PAVICS_LANDING_BRANCH=master -[2024-04-02T23:54:20.113Z] + echo Ouranosinc/PAVICS-landing -[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g -[2024-04-02T23:54:20.113Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-02T23:54:20.113Z] + echo main -[2024-04-02T23:54:20.113Z] + sed s@/@-@g -[2024-04-02T23:54:20.113Z] + RAVEN_BRANCH=main -[2024-04-02T23:54:20.113Z] + echo Ouranosinc/raven -[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g -[2024-04-02T23:54:20.113Z] + RAVEN_REPO_NAME=raven -[2024-04-02T23:54:20.113Z] + echo master -[2024-04-02T23:54:20.113Z] + sed s@/@-@g -[2024-04-02T23:54:20.113Z] + RAVENPY_BRANCH=master -[2024-04-02T23:54:20.113Z] + echo CSHS-CWRA/RavenPy -[2024-04-02T23:54:20.113Z] + sed s@^.*/@@g -[2024-04-02T23:54:20.113Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-02T23:54:20.113Z] + echo devel -[2024-04-02T23:54:20.113Z] + sed s@/@-@g -[2024-04-02T23:54:20.113Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-02T23:54:20.113Z] + echo ESGF/esgf-compute-api -[2024-04-02T23:54:20.385Z] + sed s@^.*/@@g -[2024-04-02T23:54:20.385Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-02T23:54:20.385Z] + echo pavics-sdi-master -[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:54:20.385Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:54:20.385Z] + echo finch-master -[2024-04-02T23:54:20.385Z] + FINCH_DIR=finch-master -[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:54:20.385Z] + echo PAVICS-landing-master -[2024-04-02T23:54:20.385Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-04-02T23:54:20.385Z] + echo raven-main -[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:54:20.385Z] + RAVEN_DIR=raven-main -[2024-04-02T23:54:20.385Z] + + echo RavenPy-master -[2024-04-02T23:54:20.385Z] sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:54:20.385Z] + RAVENPY_DIR=RavenPy-master -[2024-04-02T23:54:20.385Z] + echo esgf-compute-api-devel -[2024-04-02T23:54:20.385Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-02T23:54:20.385Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + echo true -[2024-04-02T23:54:20.385Z] + VERIFY_SSL=true -[2024-04-02T23:54:20.385Z] + [ xtrue = xfalse ] -[2024-04-02T23:54:20.385Z] + rm -v finch-master/setup.cfg -[2024-04-02T23:54:20.385Z] removed 'finch-master/setup.cfg' -[2024-04-02T23:54:20.385Z] + rm -v raven-main/setup.cfg -[2024-04-02T23:54:20.385Z] removed 'raven-main/setup.cfg' -[2024-04-02T23:54:20.385Z] + rm -v raven-main/pyproject.toml -[2024-04-02T23:54:20.385Z] removed 'raven-main/pyproject.toml' -[2024-04-02T23:54:20.385Z] + rm -v RavenPy-master/setup.cfg -[2024-04-02T23:54:20.385Z] removed 'RavenPy-master/setup.cfg' -[2024-04-02T23:54:20.385Z] + rm -v RavenPy-master/tox.ini -[2024-04-02T23:54:20.385Z] removed 'RavenPy-master/tox.ini' -[2024-04-02T23:54:20.385Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-02T23:54:20.385Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-02T23:54:20.385Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-02T23:54:20.385Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-02T23:54:20.385Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-02T23:54:20.385Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-02T23:54:20.385Z] + echo false -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + TEST_MAGPIE_AUTH=false -[2024-04-02T23:54:20.385Z] + echo false -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + TEST_PAVICS_SDI_REPO=false -[2024-04-02T23:54:20.385Z] + echo false -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-02T23:54:20.385Z] + echo false -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + TEST_FINCH_REPO=false -[2024-04-02T23:54:20.385Z] + echo false -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + TEST_PAVICS_LANDING_REPO=false -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + echo true -[2024-04-02T23:54:20.385Z] + TEST_RAVEN_REPO=true -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + echo true -[2024-04-02T23:54:20.385Z] + TEST_RAVENPY_REPO=true -[2024-04-02T23:54:20.385Z] + echo false -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-02T23:54:20.385Z] + echo false -[2024-04-02T23:54:20.385Z] + tr [:upper:] [:lower:] -[2024-04-02T23:54:20.385Z] + TEST_LOCAL_NOTEBOOKS=false -[2024-04-02T23:54:20.385Z] + NOTEBOOKS_TO_TEST= -[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] -[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] -[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] -[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] -[2024-04-02T23:54:20.385Z] + [ xtrue = xtrue ] -[2024-04-02T23:54:20.385Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-04-02T23:54:20.385Z] + [ xtrue = xtrue ] -[2024-04-02T23:54:20.385Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-04-02T23:54:20.385Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] -[2024-04-02T23:54:20.385Z] + [ xfalse = xtrue ] -[2024-04-02T23:54:20.385Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-02T23:54:20.665Z] + [ -n ] -[2024-04-02T23:54:20.665Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-02T23:54:20.665Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-02T23:54:20.665Z] Will run notebooks against pavics.ouranos.ca -[2024-04-02T23:54:20.665Z] + [ -z ] -[2024-04-02T23:54:20.666Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-02T23:54:20.666Z] + git diff -[2024-04-02T23:54:20.666Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-02T23:54:20.666Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-04-02T23:54:26.037Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-02T23:54:26.037Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-02T23:54:26.037Z] ============================= test session starts ============================== -[2024-04-02T23:54:26.037Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-04-02T23:54:26.037Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-04-02T23:54:26.037Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-02T23:54:26.037Z] collected 242 items -[2024-04-02T23:54:26.037Z] -[2024-04-02T23:54:37.957Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-04-02T23:54:40.535Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] -[2024-04-02T23:54:56.968Z] ...... [ 6%] -[2024-04-02T23:54:58.877Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] -[2024-04-02T23:54:58.877Z] [ 9%] -[2024-04-02T23:55:01.393Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-04-02T23:55:09.526Z] .... [ 12%] -[2024-04-02T23:55:14.821Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] -[2024-04-02T23:55:22.021Z] ....F.FF..F.. [ 18%] -[2024-04-02T23:55:52.900Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] -[2024-04-02T23:57:06.124Z] .. [ 22%] -[2024-04-02T23:57:07.057Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] -[2024-04-02T23:57:15.718Z] ..FFFFFFFF....... [ 30%] -[2024-04-02T23:57:22.487Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] -[2024-04-02T23:57:33.006Z] ........... [ 36%] -[2024-04-02T23:57:42.436Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] -[2024-04-02T23:57:47.721Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] -[2024-04-02T23:57:53.016Z] ..... [ 41%] -[2024-04-02T23:57:54.392Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] -[2024-04-03T00:02:05.534Z] ................. [ 48%] -[2024-04-03T00:02:10.827Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] -[2024-04-03T00:02:17.782Z] .... [ 50%] -[2024-04-03T00:03:31.955Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] -[2024-04-03T00:03:41.015Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] -[2024-04-03T00:04:13.185Z] ...... [ 57%] -[2024-04-03T00:04:23.237Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] -[2024-04-03T00:04:31.736Z] ....... [ 60%] -[2024-04-03T00:04:39.316Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] -[2024-04-03T00:05:00.183Z] .... [ 64%] -[2024-04-03T00:05:10.154Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] -[2024-04-03T00:05:33.077Z] ....... [ 67%] -[2024-04-03T00:05:37.286Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] -[2024-04-03T00:06:07.269Z] ....... [ 70%] -[2024-04-03T00:06:10.630Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] -[2024-04-03T00:06:24.103Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] -[2024-04-03T00:06:32.504Z] .... [ 74%] -[2024-04-03T00:07:30.206Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] -[2024-04-03T00:07:49.798Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] -[2024-04-03T00:07:52.324Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] -[2024-04-03T00:08:06.030Z] ............. [ 84%] -[2024-04-03T00:08:23.825Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] -[2024-04-03T00:08:32.724Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] -[2024-04-03T00:08:42.707Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] -[2024-04-03T00:10:00.929Z] .........FFFFFFFFFFF [100%] -[2024-04-03T00:10:00.929Z] -[2024-04-03T00:10:00.929Z] =================================== FAILURES =================================== -[2024-04-03T00:10:00.929Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ -[2024-04-03T00:10:00.929Z] Notebook cell execution failed -[2024-04-03T00:10:00.929Z] Cell 5: Cell execution caused an exception -[2024-04-03T00:10:00.929Z] -[2024-04-03T00:10:00.929Z] Input: -[2024-04-03T00:10:00.929Z] features, statistics, raster = stats_resp.get(asobj=True) -[2024-04-03T00:10:00.929Z] grid = raster[0] -[2024-04-03T00:10:00.929Z] grid.plot() -[2024-04-03T00:10:00.929Z] -[2024-04-03T00:10:00.929Z] Traceback: -[2024-04-03T00:10:00.929Z] -[2024-04-03T00:10:00.929Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.929Z] ValueError Traceback (most recent call last) -[2024-04-03T00:10:00.929Z] Cell In[1], line 3 -[2024-04-03T00:10:00.929Z]  1 features, statistics, raster = stats_resp.get(asobj=True) -[2024-04-03T00:10:00.929Z]  2 grid = raster[0] -[2024-04-03T00:10:00.929Z] ----> 3 grid.plot() -[2024-04-03T00:10:00.929Z] -[2024-04-03T00:10:00.930Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) -[2024-04-03T00:10:00.930Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: -[2024-04-03T00:10:00.930Z] --> 942 raise ValueError( -[2024-04-03T00:10:00.930Z]  943 "Dataset.plot cannot be called directly. Use " -[2024-04-03T00:10:00.930Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" -[2024-04-03T00:10:00.930Z]  945 ) -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ -[2024-04-03T00:10:00.930Z] Notebook cell execution failed -[2024-04-03T00:10:00.930Z] Cell 7: Cell execution caused an exception -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] Input: -[2024-04-03T00:10:00.930Z] unique, counts = np.unique(grid, return_counts=True) -[2024-04-03T00:10:00.930Z] print("The land-use categories available are: " + str(unique)) -[2024-04-03T00:10:00.930Z] print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] # Pixels values at '127' are NaN and can be ignored. -[2024-04-03T00:10:00.930Z] from matplotlib.colors import Normalize -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] norm = Normalize() -[2024-04-03T00:10:00.930Z] norm.autoscale(unique[:-1]) -[2024-04-03T00:10:00.930Z] cm = mpl.colormaps["tab20"] -[2024-04-03T00:10:00.930Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] # plt.bar(unique[:-1], counts[:-1]) -[2024-04-03T00:10:00.930Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) -[2024-04-03T00:10:00.930Z] plt.xlabel("Land-use categories") -[2024-04-03T00:10:00.930Z] plt.ylabel("Number of pixels") -[2024-04-03T00:10:00.930Z] plt.show() -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") -[2024-04-03T00:10:00.930Z] grid.name = "Land-use categories" -[2024-04-03T00:10:00.930Z] plt.show() -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] Traceback: -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.930Z] TypeError Traceback (most recent call last) -[2024-04-03T00:10:00.930Z] /tmp/ipykernel_355/750628277.py in ?() -[2024-04-03T00:10:00.930Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) -[2024-04-03T00:10:00.930Z]  2 print("The land-use categories available are: " + str(unique)) -[2024-04-03T00:10:00.930Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-04-03T00:10:00.930Z]  4  -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] <__array_function__ internals> in ?(*args, **kwargs) -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) -[2024-04-03T00:10:00.930Z]  268 >>> np.repeat(values, counts) -[2024-04-03T00:10:00.930Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved -[2024-04-03T00:10:00.930Z]  270  -[2024-04-03T00:10:00.930Z]  271 """ -[2024-04-03T00:10:00.930Z] --> 272 ar = np.asanyarray(ar) -[2024-04-03T00:10:00.930Z]  273 if axis is None: -[2024-04-03T00:10:00.930Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, -[2024-04-03T00:10:00.930Z]  275 equal_nan=equal_nan) -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) -[2024-04-03T00:10:00.930Z]  1472 def __array__(self, dtype=None): -[2024-04-03T00:10:00.930Z] -> 1473 raise TypeError( -[2024-04-03T00:10:00.930Z]  1474 "cannot directly convert an xarray.Dataset into a " -[2024-04-03T00:10:00.930Z]  1475 "numpy array. Instead, create an xarray.DataArray " -[2024-04-03T00:10:00.930Z]  1476 "first, either with indexing on the Dataset or by " -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ -[2024-04-03T00:10:00.930Z] Notebook cell execution failed -[2024-04-03T00:10:00.930Z] Cell 8: Cell execution caused an exception -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] Input: -[2024-04-03T00:10:00.930Z] import cartopy.crs as ccrs -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] # Set a CRS transformation: -[2024-04-03T00:10:00.930Z] crs = ccrs.LambertConformal( -[2024-04-03T00:10:00.930Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-03T00:10:00.930Z] ) -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] ax = plt.subplot(projection=crs) -[2024-04-03T00:10:00.930Z] grid.name = "Land-use categories" -[2024-04-03T00:10:00.930Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-04-03T00:10:00.930Z] plt.show() -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] Traceback: -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.930Z] AttributeError Traceback (most recent call last) -[2024-04-03T00:10:00.930Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-03T00:10:00.930Z]  304 try: -[2024-04-03T00:10:00.930Z] --> 305 object.__setattr__(self, name, value) -[2024-04-03T00:10:00.930Z]  306 except AttributeError as e: -[2024-04-03T00:10:00.930Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-04-03T00:10:00.930Z]  308 # DataArray.dims.setter -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] The above exception was the direct cause of the following exception: -[2024-04-03T00:10:00.930Z] -[2024-04-03T00:10:00.930Z] AttributeError Traceback (most recent call last) -[2024-04-03T00:10:00.930Z] Cell In[1], line 9 -[2024-04-03T00:10:00.930Z]  4 crs = ccrs.LambertConformal( -[2024-04-03T00:10:00.930Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-03T00:10:00.930Z]  6 ) -[2024-04-03T00:10:00.931Z]  8 ax = plt.subplot(projection=crs) -[2024-04-03T00:10:00.931Z] ----> 9 grid.name = "Land-use categories" -[2024-04-03T00:10:00.931Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-04-03T00:10:00.931Z]  11 plt.show() -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-03T00:10:00.931Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-04-03T00:10:00.931Z]  310 raise -[2024-04-03T00:10:00.931Z] --> 311 raise AttributeError( -[2024-04-03T00:10:00.931Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-04-03T00:10:00.931Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-04-03T00:10:00.931Z]  314 ) from e -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ -[2024-04-03T00:10:00.931Z] Notebook cell execution failed -[2024-04-03T00:10:00.931Z] Cell 11: Cell execution caused an exception -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] Input: -[2024-04-03T00:10:00.931Z] crs = ccrs.LambertConformal( -[2024-04-03T00:10:00.931Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-03T00:10:00.931Z] ) -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] dem.name = "Elevation" -[2024-04-03T00:10:00.931Z] dem.attrs["units"] = "m" -[2024-04-03T00:10:00.931Z] ax = plt.subplot(projection=crs) -[2024-04-03T00:10:00.931Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") -[2024-04-03T00:10:00.931Z] plt.show() -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] Traceback: -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.931Z] AttributeError Traceback (most recent call last) -[2024-04-03T00:10:00.931Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-03T00:10:00.931Z]  304 try: -[2024-04-03T00:10:00.931Z] --> 305 object.__setattr__(self, name, value) -[2024-04-03T00:10:00.931Z]  306 except AttributeError as e: -[2024-04-03T00:10:00.931Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-04-03T00:10:00.931Z]  308 # DataArray.dims.setter -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] The above exception was the direct cause of the following exception: -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] AttributeError Traceback (most recent call last) -[2024-04-03T00:10:00.931Z] Cell In[1], line 5 -[2024-04-03T00:10:00.931Z]  1 crs = ccrs.LambertConformal( -[2024-04-03T00:10:00.931Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-03T00:10:00.931Z]  3 ) -[2024-04-03T00:10:00.931Z] ----> 5 dem.name = "Elevation" -[2024-04-03T00:10:00.931Z]  6 dem.attrs["units"] = "m" -[2024-04-03T00:10:00.931Z]  7 ax = plt.subplot(projection=crs) -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-03T00:10:00.931Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-04-03T00:10:00.931Z]  310 raise -[2024-04-03T00:10:00.931Z] --> 311 raise AttributeError( -[2024-04-03T00:10:00.931Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-04-03T00:10:00.931Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-04-03T00:10:00.931Z]  314 ) from e -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-04-03T00:10:00.931Z] Notebook cell execution failed -[2024-04-03T00:10:00.931Z] Cell 5: Cell execution caused an exception -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] Input: -[2024-04-03T00:10:00.931Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-04-03T00:10:00.931Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-04-03T00:10:00.931Z] from ravenpy import OutputReader -[2024-04-03T00:10:00.931Z] from ravenpy.ravenpy import run -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-04-03T00:10:00.931Z] run_name = run_name -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-04-03T00:10:00.931Z] # subfolder called "outputs" -[2024-04-03T00:10:00.931Z] configdir = workdir -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-04-03T00:10:00.931Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] # Get the outputs using the Output Reader object. -[2024-04-03T00:10:00.931Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] Traceback: -[2024-04-03T00:10:00.931Z] -[2024-04-03T00:10:00.931Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.931Z] RavenError Traceback (most recent call last) -[2024-04-03T00:10:00.932Z] Cell In[1], line 14 -[2024-04-03T00:10:00.932Z]  11 configdir = workdir -[2024-04-03T00:10:00.932Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-04-03T00:10:00.932Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-04-03T00:10:00.932Z]  16 # Get the outputs using the Output Reader object. -[2024-04-03T00:10:00.932Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-04-03T00:10:00.932Z]  320 warn(msg, category=RavenWarning) -[2024-04-03T00:10:00.932Z]  322 if messages["ERROR"]: -[2024-04-03T00:10:00.932Z] --> 323 raise RavenError( -[2024-04-03T00:10:00.932Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-04-03T00:10:00.932Z]  325 ) -[2024-04-03T00:10:00.932Z]  327 if returncode != 0: -[2024-04-03T00:10:00.932Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] RavenError: Config directory: /tmp/NB4zd1xxiv6 -[2024-04-03T00:10:00.932Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-04-03T00:10:00.932Z] Notebook cell execution failed -[2024-04-03T00:10:00.932Z] Cell 6: Cell execution caused an exception -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] Input: -[2024-04-03T00:10:00.932Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-04-03T00:10:00.932Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-04-03T00:10:00.932Z] from ravenpy import Emulator -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] # Prepare the emulator by writing files on disk -[2024-04-03T00:10:00.932Z] e = Emulator(config=m) -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] # Run the model and get the outputs. -[2024-04-03T00:10:00.932Z] outputs = e.run() -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] Traceback: -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.932Z] RavenError Traceback (most recent call last) -[2024-04-03T00:10:00.932Z] Cell In[1], line 9 -[2024-04-03T00:10:00.932Z]  6 e = Emulator(config=m) -[2024-04-03T00:10:00.932Z]  8 # Run the model and get the outputs. -[2024-04-03T00:10:00.932Z] ----> 9 outputs = e.run() -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-04-03T00:10:00.932Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-04-03T00:10:00.932Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-04-03T00:10:00.932Z]  66 self.write_rv(overwrite=overwrite) -[2024-04-03T00:10:00.932Z] ---> 68 self._output_path = run( -[2024-04-03T00:10:00.932Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-04-03T00:10:00.932Z]  70 ) -[2024-04-03T00:10:00.932Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-04-03T00:10:00.932Z]  72 return self._output -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-04-03T00:10:00.932Z]  320 warn(msg, category=RavenWarning) -[2024-04-03T00:10:00.932Z]  322 if messages["ERROR"]: -[2024-04-03T00:10:00.932Z] --> 323 raise RavenError( -[2024-04-03T00:10:00.932Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-04-03T00:10:00.932Z]  325 ) -[2024-04-03T00:10:00.932Z]  327 if returncode != 0: -[2024-04-03T00:10:00.932Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] RavenError: Config directory: /tmp/tmprpv72id4 -[2024-04-03T00:10:00.932Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-04-03T00:10:00.932Z] Notebook cell execution failed -[2024-04-03T00:10:00.932Z] Cell 7: Cell execution caused an exception -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] Input: -[2024-04-03T00:10:00.932Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-04-03T00:10:00.932Z] outputs.files -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] Traceback: -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.932Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.932Z] Cell In[1], line 2 -[2024-04-03T00:10:00.932Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-04-03T00:10:00.932Z] ----> 2 outputs.files -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] NameError: name 'outputs' is not defined -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-04-03T00:10:00.932Z] Notebook cell execution failed -[2024-04-03T00:10:00.932Z] Cell 8: Cell execution caused an exception -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.932Z] Input: -[2024-04-03T00:10:00.932Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-04-03T00:10:00.932Z] print("----------------HYDROGRAPH----------------") -[2024-04-03T00:10:00.932Z] display(outputs.hydrograph) -[2024-04-03T00:10:00.932Z] print("") -[2024-04-03T00:10:00.932Z] print("-----------------STORAGE------------------") -[2024-04-03T00:10:00.932Z] display(outputs.storage) -[2024-04-03T00:10:00.932Z] print("") -[2024-04-03T00:10:00.932Z] print("-----------------SOLUTION-----------------") -[2024-04-03T00:10:00.932Z] display(outputs.solution) -[2024-04-03T00:10:00.932Z] print("") -[2024-04-03T00:10:00.932Z] -[2024-04-03T00:10:00.933Z] Traceback: -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.933Z] Cell In[1], line 3 -[2024-04-03T00:10:00.933Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-04-03T00:10:00.933Z]  2 print("----------------HYDROGRAPH----------------") -[2024-04-03T00:10:00.933Z] ----> 3 display(outputs.hydrograph) -[2024-04-03T00:10:00.933Z]  4 print("") -[2024-04-03T00:10:00.933Z]  5 print("-----------------STORAGE------------------") -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-04-03T00:10:00.933Z] Notebook cell execution failed -[2024-04-03T00:10:00.933Z] Cell 9: Cell execution caused an exception -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Input: -[2024-04-03T00:10:00.933Z] # Import the graphing utility built to handle Raven model outputs -[2024-04-03T00:10:00.933Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] hydrograph_objects = outputs.hydrograph -[2024-04-03T00:10:00.933Z] hydrographs(hydrograph_objects) -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Traceback: -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.933Z] Cell In[1], line 4 -[2024-04-03T00:10:00.933Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-04-03T00:10:00.933Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-04-03T00:10:00.933Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-04-03T00:10:00.933Z]  5 hydrographs(hydrograph_objects) -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-04-03T00:10:00.933Z] Notebook cell execution failed -[2024-04-03T00:10:00.933Z] Cell 10: Cell execution caused an exception -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Input: -[2024-04-03T00:10:00.933Z] outputs.hydrograph.q_sim.plot() -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Traceback: -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.933Z] Cell In[1], line 1 -[2024-04-03T00:10:00.933Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-04-03T00:10:00.933Z] Notebook cell execution failed -[2024-04-03T00:10:00.933Z] Cell 11: Cell execution caused an exception -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Input: -[2024-04-03T00:10:00.933Z] print(list(outputs.storage.keys())) -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Traceback: -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.933Z] Cell In[1], line 1 -[2024-04-03T00:10:00.933Z] ----> 1 print(list(outputs.storage.keys())) -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-04-03T00:10:00.933Z] Notebook cell execution failed -[2024-04-03T00:10:00.933Z] Cell 12: Cell execution caused an exception -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Input: -[2024-04-03T00:10:00.933Z] # Plot the "Snow" variable -[2024-04-03T00:10:00.933Z] outputs.storage["Snow"].plot() -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Traceback: -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.933Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.933Z] Cell In[1], line 2 -[2024-04-03T00:10:00.933Z]  1 # Plot the "Snow" variable -[2024-04-03T00:10:00.933Z] ----> 2 outputs.storage["Snow"].plot() -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] NameError: name 'outputs' is not defined -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ -[2024-04-03T00:10:00.933Z] Notebook cell execution failed -[2024-04-03T00:10:00.933Z] Cell 0: Cell execution caused an exception -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Input: -[2024-04-03T00:10:00.933Z] import os -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] from hsclient import HydroShare, Token -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] # Authentication method using username and password -[2024-04-03T00:10:00.933Z] """ -[2024-04-03T00:10:00.933Z] username = 'XXXXX' -[2024-04-03T00:10:00.933Z] password = 'XXXXX' -[2024-04-03T00:10:00.933Z] hs = HydroShare(username=username, password=password) -[2024-04-03T00:10:00.933Z] """ -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-04-03T00:10:00.933Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] token = Token(access_token=access_token, token_type="bearer") -[2024-04-03T00:10:00.933Z] hs = HydroShare(client_id=client_id, token=token) -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] Traceback: -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.933Z] ValidationError Traceback (most recent call last) -[2024-04-03T00:10:00.933Z] Cell In[1], line 15 -[2024-04-03T00:10:00.933Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-04-03T00:10:00.933Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-04-03T00:10:00.933Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") -[2024-04-03T00:10:00.933Z]  16 hs = HydroShare(client_id=client_id, token=token) -[2024-04-03T00:10:00.933Z] -[2024-04-03T00:10:00.933Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) -[2024-04-03T00:10:00.933Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks -[2024-04-03T00:10:00.933Z]  170 __tracebackhide__ = True -[2024-04-03T00:10:00.934Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] ValidationError: 4 validation errors for Token -[2024-04-03T00:10:00.934Z] scope -[2024-04-03T00:10:00.934Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) -[2024-04-03T00:10:00.934Z]  2 for r in results: -[2024-04-03T00:10:00.934Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] NameError: name 'hs' is not defined -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ -[2024-04-03T00:10:00.934Z] Notebook cell execution failed -[2024-04-03T00:10:00.934Z] Cell 2: Cell execution caused an exception -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] Input: -[2024-04-03T00:10:00.934Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-04-03T00:10:00.934Z] res.files() -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] Traceback: -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.934Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.934Z] Cell In[1], line 1 -[2024-04-03T00:10:00.934Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-04-03T00:10:00.934Z]  2 res.files() -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] NameError: name 'hs' is not defined -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ -[2024-04-03T00:10:00.934Z] Notebook cell execution failed -[2024-04-03T00:10:00.934Z] Cell 3: Cell execution caused an exception -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] Input: -[2024-04-03T00:10:00.934Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] Traceback: -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.934Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.934Z] Cell In[1], line 1 -[2024-04-03T00:10:00.934Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] NameError: name 'res' is not defined -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ -[2024-04-03T00:10:00.934Z] Notebook cell execution failed -[2024-04-03T00:10:00.934Z] Cell 10: Cell execution caused an exception -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] Input: -[2024-04-03T00:10:00.934Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. -[2024-04-03T00:10:00.934Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" -[2024-04-03T00:10:00.934Z] cat = intake.open_catalog(catalog_name) -[2024-04-03T00:10:00.934Z] ds = cat.era5_reanalysis_single_levels.to_dask() -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] """ -[2024-04-03T00:10:00.934Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, -[2024-04-03T00:10:00.934Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total -[2024-04-03T00:10:00.934Z] precipitation. -[2024-04-03T00:10:00.934Z] """ -[2024-04-03T00:10:00.934Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, -[2024-04-03T00:10:00.934Z] # such as units and variable names. -[2024-04-03T00:10:00.934Z] with xr.set_options(keep_attrs=True): -[2024-04-03T00:10:00.934Z] ERA5_reference = subset.subset_shape( -[2024-04-03T00:10:00.934Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour -[2024-04-03T00:10:00.934Z] ) -[2024-04-03T00:10:00.934Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) -[2024-04-03T00:10:00.934Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) -[2024-04-03T00:10:00.934Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] # Change the units -[2024-04-03T00:10:00.934Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C -[2024-04-03T00:10:00.934Z] ERA5_tmin.attrs["units"] = "degC" -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C -[2024-04-03T00:10:00.934Z] ERA5_tmax.attrs["units"] = "degC" -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] ERA5_pr = ERA5_pr * 1000 # m to mm -[2024-04-03T00:10:00.934Z] ERA5_pr.attrs["units"] = "mm" -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] # Average the variables spatially -[2024-04-03T00:10:00.934Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-04-03T00:10:00.934Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-04-03T00:10:00.934Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-04-03T00:10:00.934Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-04-03T00:10:00.934Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-04-03T00:10:00.934Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-04-03T00:10:00.934Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the -[2024-04-03T00:10:00.934Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. -[2024-04-03T00:10:00.934Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) -[2024-04-03T00:10:00.934Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] Traceback: -[2024-04-03T00:10:00.934Z] -[2024-04-03T00:10:00.934Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.934Z] KeyError Traceback (most recent call last) -[2024-04-03T00:10:00.934Z] Cell In[1], line 37 -[2024-04-03T00:10:00.935Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-04-03T00:10:00.935Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-04-03T00:10:00.935Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 -[2024-04-03T00:10:00.935Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-04-03T00:10:00.935Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-04-03T00:10:00.935Z] -[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-04-03T00:10:00.935Z]  851 self.coords[key] = value -[2024-04-03T00:10:00.935Z]  852 else: -[2024-04-03T00:10:00.935Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-04-03T00:10:00.935Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-04-03T00:10:00.935Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-04-03T00:10:00.935Z] --> 856 obj = self[key] -[2024-04-03T00:10:00.935Z]  857 if isinstance(value, DataArray): -[2024-04-03T00:10:00.935Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-04-03T00:10:00.935Z] -[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-04-03T00:10:00.935Z]  844 return self._getitem_coord(key) -[2024-04-03T00:10:00.935Z]  845 else: -[2024-04-03T00:10:00.935Z]  846 # xarray-style array indexing -[2024-04-03T00:10:00.935Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-04-03T00:10:00.935Z] -[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-04-03T00:10:00.935Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-04-03T00:10:00.935Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-04-03T00:10:00.935Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-04-03T00:10:00.935Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-04-03T00:10:00.935Z]  1447  ) -[2024-04-03T00:10:00.935Z]  1448 return self._from_temp_dataset(ds) -[2024-04-03T00:10:00.935Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-04-03T00:10:00.935Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-04-03T00:10:00.935Z] -[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-04-03T00:10:00.935Z]  2926 var_indexers = { -[2024-04-03T00:10:00.935Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-04-03T00:10:00.935Z]  2928 } -[2024-04-03T00:10:00.935Z]  2929 if var_indexers: -[2024-04-03T00:10:00.935Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-04-03T00:10:00.935Z]  2931 # drop scalar coordinates -[2024-04-03T00:10:00.935Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-04-03T00:10:00.935Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-04-03T00:10:00.935Z] -[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-04-03T00:10:00.935Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-04-03T00:10:00.935Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-04-03T00:10:00.935Z] -> 1368 return self[key] -[2024-04-03T00:10:00.935Z] -[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-04-03T00:10:00.935Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-04-03T00:10:00.935Z]  879  """Return a new Variable object whose contents are consistent with -[2024-04-03T00:10:00.935Z]  880  getting the provided key from the underlying data. -[2024-04-03T00:10:00.935Z]  881 -[2024-04-03T00:10:00.935Z]  (...) -[2024-04-03T00:10:00.935Z]  889  array `x.values` directly. -[2024-04-03T00:10:00.935Z]  890  """ -[2024-04-03T00:10:00.935Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-04-03T00:10:00.935Z]  892 data = as_indexable(self._data)[indexer] -[2024-04-03T00:10:00.935Z]  893 if new_order: -[2024-04-03T00:10:00.935Z] -[2024-04-03T00:10:00.935Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-04-03T00:10:00.936Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-04-03T00:10:00.936Z]  722 return self._broadcast_indexes_basic(key) -[2024-04-03T00:10:00.936Z] --> 724 self._validate_indexers(key) -[2024-04-03T00:10:00.936Z]  725 # Detect it can be mapped as an outer indexer -[2024-04-03T00:10:00.936Z]  726 # If all key is unlabeled, or -[2024-04-03T00:10:00.936Z]  727 # key can be mapped as an OuterIndexer. -[2024-04-03T00:10:00.936Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-04-03T00:10:00.936Z]  771 raise IndexError( -[2024-04-03T00:10:00.936Z]  772 "{}-dimensional boolean indexing is " -[2024-04-03T00:10:00.936Z]  773 "not supported. ".format(k.ndim) -[2024-04-03T00:10:00.936Z]  774 ) -[2024-04-03T00:10:00.936Z]  775 if is_duck_dask_array(k.data): -[2024-04-03T00:10:00.936Z] --> 776 raise KeyError( -[2024-04-03T00:10:00.936Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-04-03T00:10:00.936Z]  778 "This will result in a dask array of unknown shape. " -[2024-04-03T00:10:00.936Z]  779 "Such arrays are unsupported by Xarray." -[2024-04-03T00:10:00.936Z]  780 "Please compute the indexer first using .compute()" -[2024-04-03T00:10:00.936Z]  781 ) -[2024-04-03T00:10:00.936Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-04-03T00:10:00.936Z]  783 raise IndexError( -[2024-04-03T00:10:00.936Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-04-03T00:10:00.936Z]  785 "same dimension to the indexed array. Indexer is " -[2024-04-03T00:10:00.936Z]  (...) -[2024-04-03T00:10:00.936Z]  788 ) -[2024-04-03T00:10:00.936Z]  789 ) -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ -[2024-04-03T00:10:00.936Z] Notebook cell execution failed -[2024-04-03T00:10:00.936Z] Cell 11: Cell execution caused an exception -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] Input: -[2024-04-03T00:10:00.936Z] # Climate model to use -[2024-04-03T00:10:00.936Z] climate_model = "MIROC6" -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. -[2024-04-03T00:10:00.936Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") -[2024-04-03T00:10:00.936Z] col = intake.open_esm_datastore( -[2024-04-03T00:10:00.936Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" -[2024-04-03T00:10:00.936Z] ) -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. -[2024-04-03T00:10:00.936Z] with xr.set_options(keep_attrs=True): -[2024-04-03T00:10:00.936Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. -[2024-04-03T00:10:00.936Z] out = {} -[2024-04-03T00:10:00.936Z] for exp in ["historical", "ssp585"]: -[2024-04-03T00:10:00.936Z] if exp == "historical": -[2024-04-03T00:10:00.936Z] period_start = reference_start_day -[2024-04-03T00:10:00.936Z] period_end = reference_end_day -[2024-04-03T00:10:00.936Z] else: -[2024-04-03T00:10:00.936Z] period_start = future_start_day -[2024-04-03T00:10:00.936Z] period_end = future_end_day -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] out[exp] = {} -[2024-04-03T00:10:00.936Z] for variable in ["tasmin", "tasmax", "pr"]: -[2024-04-03T00:10:00.936Z] print(exp, variable) -[2024-04-03T00:10:00.936Z] query = dict( -[2024-04-03T00:10:00.936Z] experiment_id=exp, -[2024-04-03T00:10:00.936Z] table_id="day", -[2024-04-03T00:10:00.936Z] variable_id=variable, -[2024-04-03T00:10:00.936Z] member_id="r1i1p1f1", -[2024-04-03T00:10:00.936Z] source_id=climate_model, -[2024-04-03T00:10:00.936Z] ) -[2024-04-03T00:10:00.936Z] col_subset = col.search(require_all_on=["source_id"], **query) -[2024-04-03T00:10:00.936Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. -[2024-04-03T00:10:00.936Z] if variable == "pr": -[2024-04-03T00:10:00.936Z] out[exp][variable] = average.average_shape( -[2024-04-03T00:10:00.936Z] xr.open_zarr(mapper, consolidated=True).sel( -[2024-04-03T00:10:00.936Z] time=slice(period_start, period_end) -[2024-04-03T00:10:00.936Z] )[variable], -[2024-04-03T00:10:00.936Z] basin_contour, -[2024-04-03T00:10:00.936Z] ).chunk(-1) -[2024-04-03T00:10:00.936Z] else: -[2024-04-03T00:10:00.936Z] out[exp][variable] = average.average_shape( -[2024-04-03T00:10:00.936Z] xr.open_zarr(mapper, consolidated=True) -[2024-04-03T00:10:00.936Z] .sel(time=slice(period_start, period_end)) -[2024-04-03T00:10:00.936Z] .reset_coords("height", drop=True)[variable], -[2024-04-03T00:10:00.936Z] basin_contour, -[2024-04-03T00:10:00.936Z] ).chunk(-1) -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] # We can now extract the variables that we will need later: -[2024-04-03T00:10:00.936Z] historical_tasmax = out["historical"]["tasmax"] -[2024-04-03T00:10:00.936Z] historical_tasmin = out["historical"]["tasmin"] -[2024-04-03T00:10:00.936Z] historical_pr = out["historical"]["pr"] -[2024-04-03T00:10:00.936Z] future_tasmax = out["ssp585"]["tasmax"] -[2024-04-03T00:10:00.936Z] future_tasmin = out["ssp585"]["tasmin"] -[2024-04-03T00:10:00.936Z] future_pr = out["ssp585"]["pr"] -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] Traceback: -[2024-04-03T00:10:00.936Z] -[2024-04-03T00:10:00.936Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.936Z] KeyError Traceback (most recent call last) -[2024-04-03T00:10:00.936Z] Cell In[1], line 44 -[2024-04-03T00:10:00.936Z]  37 out[exp][variable] = average.average_shape( -[2024-04-03T00:10:00.936Z]  38 xr.open_zarr(mapper, consolidated=True).sel( -[2024-04-03T00:10:00.937Z]  39 time=slice(period_start, period_end) -[2024-04-03T00:10:00.937Z]  40 )[variable], -[2024-04-03T00:10:00.937Z]  41 basin_contour, -[2024-04-03T00:10:00.937Z]  42 ).chunk(-1) -[2024-04-03T00:10:00.937Z]  43 else: -[2024-04-03T00:10:00.937Z] ---> 44 out[exp][variable] = average.average_shape( -[2024-04-03T00:10:00.937Z]  45  xr.open_zarr(mapper, consolidated=True) -[2024-04-03T00:10:00.937Z]  46  .sel(time=slice(period_start, period_end)) -[2024-04-03T00:10:00.937Z]  47  .reset_coords("height", drop=True)[variable], -[2024-04-03T00:10:00.937Z]  48  basin_contour, -[2024-04-03T00:10:00.937Z]  49  ).chunk(-1) -[2024-04-03T00:10:00.937Z]  51 # We can now extract the variables that we will need later: -[2024-04-03T00:10:00.937Z]  52 historical_tasmax = out["historical"]["tasmax"] -[2024-04-03T00:10:00.937Z] -[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) -[2024-04-03T00:10:00.937Z]  105 ds_sub = ds_copy.isel(indexer) -[2024-04-03T00:10:00.937Z]  107 # Compute the weights -[2024-04-03T00:10:00.937Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) -[2024-04-03T00:10:00.937Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. -[2024-04-03T00:10:00.937Z]  111 nonnull = ( -[2024-04-03T00:10:00.937Z]  112 savger.weights.data.nnz -[2024-04-03T00:10:00.937Z]  113 if isinstance(savger.weights, xr.DataArray) -[2024-04-03T00:10:00.937Z]  114 else savger.weights.nnz -[2024-04-03T00:10:00.937Z]  115 ) -[2024-04-03T00:10:00.937Z] -[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) -[2024-04-03T00:10:00.937Z]  1182 if isinstance(ds_in, xr.DataArray): -[2024-04-03T00:10:00.937Z]  1183 ds_in = ds_in._to_temp_dataset() -[2024-04-03T00:10:00.937Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) -[2024-04-03T00:10:00.937Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. -[2024-04-03T00:10:00.937Z]  1188 # Latitude and longitude coordinates are the polygon centroid. -[2024-04-03T00:10:00.937Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) -[2024-04-03T00:10:00.937Z] -[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) -[2024-04-03T00:10:00.937Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) -[2024-04-03T00:10:00.937Z]  166 if need_bounds: -[2024-04-03T00:10:00.937Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) -[2024-04-03T00:10:00.937Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) -[2024-04-03T00:10:00.937Z]  169 add_corner(grid, lon_b.T, lat_b.T) -[2024-04-03T00:10:00.937Z] -[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) -[2024-04-03T00:10:00.937Z]  105 lat_bnds = ds.cf.get_bounds('latitude') -[2024-04-03T00:10:00.937Z]  107 # Convert from CF bounds to xESMF bounds. -[2024-04-03T00:10:00.937Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. -[2024-04-03T00:10:00.937Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) -[2024-04-03T00:10:00.937Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) -[2024-04-03T00:10:00.937Z]  111 return lon_b, lat_b -[2024-04-03T00:10:00.937Z] -[2024-04-03T00:10:00.937Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) -[2024-04-03T00:10:00.937Z]  2400 filtered = [ -[2024-04-03T00:10:00.937Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs -[2024-04-03T00:10:00.937Z]  2402 ] -[2024-04-03T00:10:00.937Z]  2403 if len(filtered) > 1: -[2024-04-03T00:10:00.937Z] -> 2404 raise KeyError( -[2024-04-03T00:10:00.937Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " -[2024-04-03T00:10:00.937Z]  2406 ) -[2024-04-03T00:10:00.937Z]  2408 (crd_name,) = filtered -[2024-04-03T00:10:00.937Z]  2409 crd = variables[crd_name] -[2024-04-03T00:10:00.937Z] -[2024-04-03T00:10:00.938Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ -[2024-04-03T00:10:00.938Z] Notebook cell execution failed -[2024-04-03T00:10:00.938Z] Cell 12: Cell execution caused an exception -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] Input: -[2024-04-03T00:10:00.938Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-04-03T00:10:00.938Z] # and make sure everything is consistent. -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Let's start with precipitation: -[2024-04-03T00:10:00.938Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-04-03T00:10:00.938Z] historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-04-03T00:10:00.938Z] future_pr = xclim.core.units.rate2amount(future_pr) -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Now we can actually convert units in absolute terms. -[2024-04-03T00:10:00.938Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") -[2024-04-03T00:10:00.938Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Now let's do temperature: -[2024-04-03T00:10:00.938Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") -[2024-04-03T00:10:00.938Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") -[2024-04-03T00:10:00.938Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") -[2024-04-03T00:10:00.938Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] Traceback: -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.938Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.938Z] Cell In[1], line 6 -[2024-04-03T00:10:00.938Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-04-03T00:10:00.938Z]  2 # and make sure everything is consistent. -[2024-04-03T00:10:00.938Z]  3 -[2024-04-03T00:10:00.938Z]  4 # Let's start with precipitation: -[2024-04-03T00:10:00.938Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-04-03T00:10:00.938Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-04-03T00:10:00.938Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) -[2024-04-03T00:10:00.938Z]  9 # Now we can actually convert units in absolute terms. -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] NameError: name 'historical_pr' is not defined -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ -[2024-04-03T00:10:00.938Z] Notebook cell execution failed -[2024-04-03T00:10:00.938Z] Cell 13: Cell execution caused an exception -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] Input: -[2024-04-03T00:10:00.938Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. -[2024-04-03T00:10:00.938Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-04-03T00:10:00.938Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-03T00:10:00.938Z] ref=ERA5_weather.pr, -[2024-04-03T00:10:00.938Z] hist=historical_pr, -[2024-04-03T00:10:00.938Z] nquantiles=50, -[2024-04-03T00:10:00.938Z] kind="+", -[2024-04-03T00:10:00.938Z] group=group_month_window, -[2024-04-03T00:10:00.938Z] ) -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Apply the correction factors on the reference period -[2024-04-03T00:10:00.938Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Apply the correction factors on the future period -[2024-04-03T00:10:00.938Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Ensure that the precipitation is non-negative, which can happen with some climate models -[2024-04-03T00:10:00.938Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) -[2024-04-03T00:10:00.938Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data -[2024-04-03T00:10:00.938Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-03T00:10:00.938Z] ref=ERA5_weather.tmax, -[2024-04-03T00:10:00.938Z] hist=historical_tasmax, -[2024-04-03T00:10:00.938Z] nquantiles=50, -[2024-04-03T00:10:00.938Z] kind="+", -[2024-04-03T00:10:00.938Z] group=group_month_window, -[2024-04-03T00:10:00.938Z] ) -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Apply the correction factors on the reference period -[2024-04-03T00:10:00.938Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Apply the correction factors on the future period -[2024-04-03T00:10:00.938Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data -[2024-04-03T00:10:00.938Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-03T00:10:00.938Z] ref=ERA5_weather.tmin, -[2024-04-03T00:10:00.938Z] hist=historical_tasmin, -[2024-04-03T00:10:00.938Z] nquantiles=50, -[2024-04-03T00:10:00.938Z] kind="+", -[2024-04-03T00:10:00.938Z] group=group_month_window, -[2024-04-03T00:10:00.938Z] ) -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Apply the correction factors on the reference period -[2024-04-03T00:10:00.938Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] # Apply the correction factors on the future period -[2024-04-03T00:10:00.938Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] Traceback: -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.938Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.938Z] Cell In[1], line 6 -[2024-04-03T00:10:00.938Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-04-03T00:10:00.938Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-04-03T00:10:00.938Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-03T00:10:00.938Z] ----> 6 ref=ERA5_weather.pr, -[2024-04-03T00:10:00.938Z]  7 hist=historical_pr, -[2024-04-03T00:10:00.938Z]  8 nquantiles=50, -[2024-04-03T00:10:00.938Z]  9 kind="+", -[2024-04-03T00:10:00.938Z]  10 group=group_month_window, -[2024-04-03T00:10:00.938Z]  11 ) -[2024-04-03T00:10:00.938Z]  13 # Apply the correction factors on the reference period -[2024-04-03T00:10:00.938Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] NameError: name 'ERA5_weather' is not defined -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ -[2024-04-03T00:10:00.938Z] Notebook cell execution failed -[2024-04-03T00:10:00.938Z] Cell 14: Cell execution caused an exception -[2024-04-03T00:10:00.938Z] -[2024-04-03T00:10:00.938Z] Input: -[2024-04-03T00:10:00.939Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-04-03T00:10:00.939Z] ref_dataset = xr.merge( -[2024-04-03T00:10:00.939Z] [ -[2024-04-03T00:10:00.939Z] corrected_ref_precip.to_dataset(name="pr"), -[2024-04-03T00:10:00.939Z] corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-04-03T00:10:00.939Z] corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-04-03T00:10:00.939Z] ] -[2024-04-03T00:10:00.939Z] ) -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Write to temporary folder -[2024-04-03T00:10:00.939Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-04-03T00:10:00.939Z] ref_dataset.to_netcdf(fn_tmp_ref) -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Convert the future corrected data into netCDF file -[2024-04-03T00:10:00.939Z] fut_dataset = xr.merge( -[2024-04-03T00:10:00.939Z] [ -[2024-04-03T00:10:00.939Z] corrected_fut_precip.to_dataset(name="pr"), -[2024-04-03T00:10:00.939Z] corrected_fut_tasmax.to_dataset(name="tasmax"), -[2024-04-03T00:10:00.939Z] corrected_fut_tasmin.to_dataset(name="tasmin"), -[2024-04-03T00:10:00.939Z] ] -[2024-04-03T00:10:00.939Z] ) -[2024-04-03T00:10:00.939Z] # Write to temporary folder -[2024-04-03T00:10:00.939Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" -[2024-04-03T00:10:00.939Z] fut_dataset.to_netcdf(fn_tmp_fut) -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Write the data to disk to a temporary location for future use. -[2024-04-03T00:10:00.939Z] ref_dataset = xr.open_dataset(fn_tmp_ref) -[2024-04-03T00:10:00.939Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] fut_dataset = xr.open_dataset(fn_tmp_fut) -[2024-04-03T00:10:00.939Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] Traceback: -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.939Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.939Z] Cell In[1], line 4 -[2024-04-03T00:10:00.939Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-04-03T00:10:00.939Z]  2 ref_dataset = xr.merge( -[2024-04-03T00:10:00.939Z]  3 [ -[2024-04-03T00:10:00.939Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), -[2024-04-03T00:10:00.939Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-04-03T00:10:00.939Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-04-03T00:10:00.939Z]  7 ] -[2024-04-03T00:10:00.939Z]  8 ) -[2024-04-03T00:10:00.939Z]  10 # Write to temporary folder -[2024-04-03T00:10:00.939Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] NameError: name 'corrected_ref_precip' is not defined -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ -[2024-04-03T00:10:00.939Z] Notebook cell execution failed -[2024-04-03T00:10:00.939Z] Cell 15: Cell execution caused an exception -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] Input: -[2024-04-03T00:10:00.939Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-04-03T00:10:00.939Z] # populate the fields for the HRU. -[2024-04-03T00:10:00.939Z] hru = {} -[2024-04-03T00:10:00.939Z] hru = dict( -[2024-04-03T00:10:00.939Z] area=all_properties["area"], -[2024-04-03T00:10:00.939Z] elevation=all_properties["elevation"], -[2024-04-03T00:10:00.939Z] latitude=all_properties["latitude"], -[2024-04-03T00:10:00.939Z] longitude=all_properties["longitude"], -[2024-04-03T00:10:00.939Z] hru_type="land", -[2024-04-03T00:10:00.939Z] ) -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-04-03T00:10:00.939Z] # will simply execute the model which has been pre-configured to run on this period. -[2024-04-03T00:10:00.939Z] start_date = dt.datetime(1981, 1, 1) -[2024-04-03T00:10:00.939Z] end_date = dt.datetime(1985, 12, 31) -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. -[2024-04-03T00:10:00.939Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Alternative variable names as described in the tutorial. -[2024-04-03T00:10:00.939Z] alt_names = { -[2024-04-03T00:10:00.939Z] "TEMP_MIN": "tmin", -[2024-04-03T00:10:00.939Z] "TEMP_MAX": "tmax", -[2024-04-03T00:10:00.939Z] "PRECIP": "pr", -[2024-04-03T00:10:00.939Z] } -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here -[2024-04-03T00:10:00.939Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. -[2024-04-03T00:10:00.939Z] data_kwds = { -[2024-04-03T00:10:00.939Z] "ALL": { -[2024-04-03T00:10:00.939Z] "elevation": hru["elevation"], -[2024-04-03T00:10:00.939Z] "latitude": hru["latitude"], -[2024-04-03T00:10:00.939Z] "longitude": hru["longitude"], -[2024-04-03T00:10:00.939Z] } -[2024-04-03T00:10:00.939Z] } -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Give a name to the simulation -[2024-04-03T00:10:00.939Z] run_name = "Paper_example_simulation" -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Setup the gauge object that includes meteorological data from ERA5 -[2024-04-03T00:10:00.939Z] gauge = [ -[2024-04-03T00:10:00.939Z] rc.Gauge.from_nc( -[2024-04-03T00:10:00.939Z] tmp -[2024-04-03T00:10:00.939Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-04-03T00:10:00.939Z] data_type=data_type, # Note that this is the list of all the variables -[2024-04-03T00:10:00.939Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-04-03T00:10:00.939Z] data_kwds=data_kwds, -[2024-04-03T00:10:00.939Z] ) -[2024-04-03T00:10:00.939Z] ] -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Read the streamflow from the HYSETS catchment data for this basin -[2024-04-03T00:10:00.939Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, -[2024-04-03T00:10:00.939Z] # and the optimizer will read it directly to calibrate. -[2024-04-03T00:10:00.939Z] eval_metrics = ("NASH_SUTCLIFFE",) -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] # Build the model configuration according to user preferences and inputs -[2024-04-03T00:10:00.939Z] model_config = GR4JCN( -[2024-04-03T00:10:00.939Z] ObservationData=discharge_data, -[2024-04-03T00:10:00.939Z] Gauge=gauge, -[2024-04-03T00:10:00.939Z] HRUs=[hru], -[2024-04-03T00:10:00.939Z] StartDate=start_date, -[2024-04-03T00:10:00.939Z] EndDate=end_date, -[2024-04-03T00:10:00.939Z] RunName=run_name, -[2024-04-03T00:10:00.939Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. -[2024-04-03T00:10:00.939Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. -[2024-04-03T00:10:00.939Z] ) -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] Traceback: -[2024-04-03T00:10:00.939Z] -[2024-04-03T00:10:00.939Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.939Z] ValueError Traceback (most recent call last) -[2024-04-03T00:10:00.939Z] Cell In[1], line 42 -[2024-04-03T00:10:00.939Z]  38 run_name = "Paper_example_simulation" -[2024-04-03T00:10:00.939Z]  40 # Setup the gauge object that includes meteorological data from ERA5 -[2024-04-03T00:10:00.939Z]  41 gauge = [ -[2024-04-03T00:10:00.939Z] ---> 42 rc.Gauge.from_nc( -[2024-04-03T00:10:00.939Z]  43  tmp -[2024-04-03T00:10:00.939Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-04-03T00:10:00.940Z]  45  data_type=data_type, # Note that this is the list of all the variables -[2024-04-03T00:10:00.940Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-04-03T00:10:00.940Z]  47  data_kwds=data_kwds, -[2024-04-03T00:10:00.940Z]  48  ) -[2024-04-03T00:10:00.940Z]  49 ] -[2024-04-03T00:10:00.940Z]  51 # Read the streamflow from the HYSETS catchment data for this basin -[2024-04-03T00:10:00.940Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-03T00:10:00.940Z]  751 forcings.difference_update(data) -[2024-04-03T00:10:00.940Z]  753 if len(data) == 0: -[2024-04-03T00:10:00.940Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-03T00:10:00.940Z]  756 # Default Gauge name -[2024-04-03T00:10:00.940Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] ValueError: No data found in netCDF files. -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ -[2024-04-03T00:10:00.940Z] Notebook cell execution failed -[2024-04-03T00:10:00.940Z] Cell 16: Cell execution caused an exception -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] Input: -[2024-04-03T00:10:00.940Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, -[2024-04-03T00:10:00.940Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. -[2024-04-03T00:10:00.940Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) -[2024-04-03T00:10:00.940Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. -[2024-04-03T00:10:00.940Z] random_seed = 42 -[2024-04-03T00:10:00.940Z] np.random.seed(random_seed) -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Build the optimizer object -[2024-04-03T00:10:00.940Z] spot_setup = SpotSetup( -[2024-04-03T00:10:00.940Z] config=model_config, -[2024-04-03T00:10:00.940Z] low=low, -[2024-04-03T00:10:00.940Z] high=high, -[2024-04-03T00:10:00.940Z] ) -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-04-03T00:10:00.940Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-04-03T00:10:00.940Z] max_iterations = 200 -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer -[2024-04-03T00:10:00.940Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most -[2024-04-03T00:10:00.940Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation -[2024-04-03T00:10:00.940Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small -[2024-04-03T00:10:00.940Z] # evaluation budgets. For more details on DDS, see: -[2024-04-03T00:10:00.940Z] # -[2024-04-03T00:10:00.940Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water -[2024-04-03T00:10:00.940Z] # Resources Research, 43(1) -[2024-04-03T00:10:00.940Z] sampler = spotpy.algorithms.dds( -[2024-04-03T00:10:00.940Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False -[2024-04-03T00:10:00.940Z] ) -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and -[2024-04-03T00:10:00.940Z] # the best overall value from all trials is returned. -[2024-04-03T00:10:00.940Z] sampler.sample(max_iterations, trials=1) -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Get the model diagnostics -[2024-04-03T00:10:00.940Z] diag = spot_setup.diagnostics -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Get all the values of each iteration -[2024-04-03T00:10:00.940Z] results = sampler.getdata() -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Get the raw resutlts directly in an array -[2024-04-03T00:10:00.940Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( -[2024-04-03T00:10:00.940Z] results -[2024-04-03T00:10:00.940Z] ) # Want to get the MAX NSE (change for min for RMSE) -[2024-04-03T00:10:00.940Z] best_model_run = list( -[2024-04-03T00:10:00.940Z] results[bestindex][0] -[2024-04-03T00:10:00.940Z] ) # Get the parameter set returning the best NSE -[2024-04-03T00:10:00.940Z] optimized_parameters = best_model_run[ -[2024-04-03T00:10:00.940Z] 1:-1 -[2024-04-03T00:10:00.940Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Display the parameter set ready to use in a future run: -[2024-04-03T00:10:00.940Z] print(optimized_parameters) -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] Traceback: -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.940Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.940Z] Cell In[1], line 12 -[2024-04-03T00:10:00.940Z]  8 np.random.seed(random_seed) -[2024-04-03T00:10:00.940Z]  10 # Build the optimizer object -[2024-04-03T00:10:00.940Z]  11 spot_setup = SpotSetup( -[2024-04-03T00:10:00.940Z] ---> 12 config=model_config, -[2024-04-03T00:10:00.940Z]  13 low=low, -[2024-04-03T00:10:00.940Z]  14 high=high, -[2024-04-03T00:10:00.940Z]  15 ) -[2024-04-03T00:10:00.940Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-04-03T00:10:00.940Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-04-03T00:10:00.940Z]  19 max_iterations = 200 -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] NameError: name 'model_config' is not defined -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ -[2024-04-03T00:10:00.940Z] Notebook cell execution failed -[2024-04-03T00:10:00.940Z] Cell 17: Cell execution caused an exception -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] Input: -[2024-04-03T00:10:00.940Z] # Copy the configuration of the previous model that we will modify for our validation: -[2024-04-03T00:10:00.940Z] model_validation = model_config.duplicate( -[2024-04-03T00:10:00.940Z] params=optimized_parameters, -[2024-04-03T00:10:00.940Z] StartDate=dt.datetime(1986, 1, 1), -[2024-04-03T00:10:00.940Z] EndDate=dt.datetime(1990, 12, 31), -[2024-04-03T00:10:00.940Z] SuppressOutput=False, -[2024-04-03T00:10:00.940Z] ) -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] sim_output = Emulator(config=model_validation).run() -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Get validation NSE (note we are counting the first year without warm-up) -[2024-04-03T00:10:00.940Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.940Z] # Plot the model output -[2024-04-03T00:10:00.940Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") -[2024-04-03T00:10:00.940Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-04-03T00:10:00.940Z] plt.legend() -[2024-04-03T00:10:00.940Z] plt.title("Validation period - NSE=" + str(NSE[0])) -[2024-04-03T00:10:00.940Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-03T00:10:00.940Z] plt.grid() -[2024-04-03T00:10:00.940Z] plt.show() -[2024-04-03T00:10:00.940Z] -[2024-04-03T00:10:00.941Z] Traceback: -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.941Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.941Z] Cell In[1], line 2 -[2024-04-03T00:10:00.941Z]  1 # Copy the configuration of the previous model that we will modify for our validation: -[2024-04-03T00:10:00.941Z] ----> 2 model_validation = model_config.duplicate( -[2024-04-03T00:10:00.941Z]  3 params=optimized_parameters, -[2024-04-03T00:10:00.941Z]  4 StartDate=dt.datetime(1986, 1, 1), -[2024-04-03T00:10:00.941Z]  5 EndDate=dt.datetime(1990, 12, 31), -[2024-04-03T00:10:00.941Z]  6 SuppressOutput=False, -[2024-04-03T00:10:00.941Z]  7 ) -[2024-04-03T00:10:00.941Z]  9 sim_output = Emulator(config=model_validation).run() -[2024-04-03T00:10:00.941Z]  11 # Get validation NSE (note we are counting the first year without warm-up) -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] NameError: name 'model_config' is not defined -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ -[2024-04-03T00:10:00.941Z] Notebook cell execution failed -[2024-04-03T00:10:00.941Z] Cell 18: Cell execution caused an exception -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] Input: -[2024-04-03T00:10:00.941Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-04-03T00:10:00.941Z] gauge_ref = [ -[2024-04-03T00:10:00.941Z] rc.Gauge.from_nc( -[2024-04-03T00:10:00.941Z] tmp -[2024-04-03T00:10:00.941Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-03T00:10:00.941Z] data_type=data_type, -[2024-04-03T00:10:00.941Z] alt_names=alt_names, -[2024-04-03T00:10:00.941Z] data_kwds=data_kwds, -[2024-04-03T00:10:00.941Z] ) -[2024-04-03T00:10:00.941Z] ] -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-03T00:10:00.941Z] model_config_reference = model_validation.duplicate( -[2024-04-03T00:10:00.941Z] Gauge=gauge_ref, -[2024-04-03T00:10:00.941Z] StartDate=reference_start_day -[2024-04-03T00:10:00.941Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-04-03T00:10:00.941Z] EndDate=reference_end_day, -[2024-04-03T00:10:00.941Z] ) -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] # Run the model from the configuration and get the outputs. -[2024-04-03T00:10:00.941Z] ref_output = Emulator(config=model_config_reference).run() -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] # Plot the model output. Note that both simulations should have similar hydrological -[2024-04-03T00:10:00.941Z] # regime but day-to-day variability is not expected to match. -[2024-04-03T00:10:00.941Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") -[2024-04-03T00:10:00.941Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-04-03T00:10:00.941Z] plt.legend() -[2024-04-03T00:10:00.941Z] plt.title("Reference period") -[2024-04-03T00:10:00.941Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-03T00:10:00.941Z] plt.grid() -[2024-04-03T00:10:00.941Z] plt.show() -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] Traceback: -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.941Z] ValueError Traceback (most recent call last) -[2024-04-03T00:10:00.941Z] Cell In[1], line 3 -[2024-04-03T00:10:00.941Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-04-03T00:10:00.941Z]  2 gauge_ref = [ -[2024-04-03T00:10:00.941Z] ----> 3 rc.Gauge.from_nc( -[2024-04-03T00:10:00.941Z]  4  tmp -[2024-04-03T00:10:00.941Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-03T00:10:00.941Z]  6  data_type=data_type, -[2024-04-03T00:10:00.941Z]  7  alt_names=alt_names, -[2024-04-03T00:10:00.941Z]  8  data_kwds=data_kwds, -[2024-04-03T00:10:00.941Z]  9  ) -[2024-04-03T00:10:00.941Z]  10 ] -[2024-04-03T00:10:00.941Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-03T00:10:00.941Z]  13 model_config_reference = model_validation.duplicate( -[2024-04-03T00:10:00.941Z]  14 Gauge=gauge_ref, -[2024-04-03T00:10:00.941Z]  15 StartDate=reference_start_day -[2024-04-03T00:10:00.941Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-04-03T00:10:00.941Z]  17 EndDate=reference_end_day, -[2024-04-03T00:10:00.941Z]  18 ) -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-03T00:10:00.941Z]  751 forcings.difference_update(data) -[2024-04-03T00:10:00.941Z]  753 if len(data) == 0: -[2024-04-03T00:10:00.941Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-03T00:10:00.941Z]  756 # Default Gauge name -[2024-04-03T00:10:00.941Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] ValueError: No data found in netCDF files. -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ -[2024-04-03T00:10:00.941Z] Notebook cell execution failed -[2024-04-03T00:10:00.941Z] Cell 19: Cell execution caused an exception -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] Input: -[2024-04-03T00:10:00.941Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-04-03T00:10:00.941Z] gauge_fut = [ -[2024-04-03T00:10:00.941Z] rc.Gauge.from_nc( -[2024-04-03T00:10:00.941Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-03T00:10:00.941Z] data_type=data_type, -[2024-04-03T00:10:00.941Z] alt_names=alt_names, -[2024-04-03T00:10:00.941Z] data_kwds=data_kwds, -[2024-04-03T00:10:00.941Z] ) -[2024-04-03T00:10:00.941Z] ] -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-03T00:10:00.941Z] model_config_future = model_validation.duplicate( -[2024-04-03T00:10:00.941Z] Gauge=gauge_fut, -[2024-04-03T00:10:00.941Z] StartDate=future_start_day + dt.timedelta(days=1), -[2024-04-03T00:10:00.941Z] EndDate=future_end_day, -[2024-04-03T00:10:00.941Z] ObservationData=None, # There are no observations for the future period. -[2024-04-03T00:10:00.941Z] ) -[2024-04-03T00:10:00.941Z] -[2024-04-03T00:10:00.941Z] # Run the model and get the outputs and hydrographs. -[2024-04-03T00:10:00.942Z] fut_output = Emulator(config=model_config_future).run() -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] # Plot the model output -[2024-04-03T00:10:00.942Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") -[2024-04-03T00:10:00.942Z] plt.legend() -[2024-04-03T00:10:00.942Z] plt.title("Future period") -[2024-04-03T00:10:00.942Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-03T00:10:00.942Z] plt.grid() -[2024-04-03T00:10:00.942Z] plt.show() -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] Traceback: -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.942Z] ValueError Traceback (most recent call last) -[2024-04-03T00:10:00.942Z] Cell In[1], line 3 -[2024-04-03T00:10:00.942Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-04-03T00:10:00.942Z]  2 gauge_fut = [ -[2024-04-03T00:10:00.942Z] ----> 3 rc.Gauge.from_nc( -[2024-04-03T00:10:00.942Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-03T00:10:00.942Z]  5  data_type=data_type, -[2024-04-03T00:10:00.942Z]  6  alt_names=alt_names, -[2024-04-03T00:10:00.942Z]  7  data_kwds=data_kwds, -[2024-04-03T00:10:00.942Z]  8  ) -[2024-04-03T00:10:00.942Z]  9 ] -[2024-04-03T00:10:00.942Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-03T00:10:00.942Z]  12 model_config_future = model_validation.duplicate( -[2024-04-03T00:10:00.942Z]  13 Gauge=gauge_fut, -[2024-04-03T00:10:00.942Z]  14 StartDate=future_start_day + dt.timedelta(days=1), -[2024-04-03T00:10:00.942Z]  15 EndDate=future_end_day, -[2024-04-03T00:10:00.942Z]  16 ObservationData=None, # There are no observations for the future period. -[2024-04-03T00:10:00.942Z]  17 ) -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-03T00:10:00.942Z]  751 forcings.difference_update(data) -[2024-04-03T00:10:00.942Z]  753 if len(data) == 0: -[2024-04-03T00:10:00.942Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-03T00:10:00.942Z]  756 # Default Gauge name -[2024-04-03T00:10:00.942Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] ValueError: No data found in netCDF files. -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ -[2024-04-03T00:10:00.942Z] Notebook cell execution failed -[2024-04-03T00:10:00.942Z] Cell 20: Cell execution caused an exception -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] Input: -[2024-04-03T00:10:00.942Z] # Extract the mean annual hydrograph for each simulation. -[2024-04-03T00:10:00.942Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-03T00:10:00.942Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-03T00:10:00.942Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-03T00:10:00.942Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] # Plot the model output -[2024-04-03T00:10:00.942Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") -[2024-04-03T00:10:00.942Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") -[2024-04-03T00:10:00.942Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") -[2024-04-03T00:10:00.942Z] future_flows.plot(color="red", label="Future", x="dayofyear") -[2024-04-03T00:10:00.942Z] plt.legend() -[2024-04-03T00:10:00.942Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-03T00:10:00.942Z] plt.xlabel("Day of year") -[2024-04-03T00:10:00.942Z] plt.xlim([0, 365]) -[2024-04-03T00:10:00.942Z] plt.title("Comparison of mean annual hydrographs") -[2024-04-03T00:10:00.942Z] plt.grid() -[2024-04-03T00:10:00.942Z] plt.show() -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] Traceback: -[2024-04-03T00:10:00.942Z] -[2024-04-03T00:10:00.942Z] --------------------------------------------------------------------------- -[2024-04-03T00:10:00.942Z] NameError Traceback (most recent call last) -[2024-04-03T00:10:00.942Z] Cell In[1], line 2 -[2024-04-03T00:10:00.942Z]  1 # Extract the mean annual hydrograph for each simulation. -[2024-04-03T00:10:00.942Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-03T00:10:00.943Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-03T00:10:00.943Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-03T00:10:00.943Z] -[2024-04-03T00:10:00.943Z] NameError: name 'ref_output' is not defined -[2024-04-03T00:10:00.943Z] -[2024-04-03T00:10:00.943Z] =========================== short test summary info ============================ -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 -[2024-04-03T00:10:00.943Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 -[2024-04-03T00:10:00.943Z] ================== 27 failed, 215 passed in 933.60s (0:15:33) ================== -[2024-04-03T00:10:00.943Z] + EXIT_CODE=1 -[2024-04-03T00:10:00.943Z] + echo true -[2024-04-03T00:10:00.943Z] + tr [:upper:] [:lower:] -[2024-04-03T00:10:00.943Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-04-03T00:10:00.943Z] + [ xtrue = xtrue ] -[2024-04-03T00:10:00.943Z] + mkdir -p buildout -[2024-04-03T00:10:00.943Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-04-03T00:10:00.943Z] + filename=Region_selection.ipynb -[2024-04-03T00:10:00.943Z] + echo Region_selection.ipynb -[2024-04-03T00:10:00.943Z] + sed s/.ipynb$// -[2024-04-03T00:10:00.943Z] + filename=Region_selection -[2024-04-03T00:10:00.943Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-04-03T00:10:00.943Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-04-03T00:10:00.943Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-04-03T00:10:13.210Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb -[2024-04-03T00:10:13.210Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-04-03T00:10:13.210Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-04-03T00:10:13.210Z] + + echo Subset_climate_data_over_watershed.ipynb -[2024-04-03T00:10:13.210Z] sed s/.ipynb$// -[2024-04-03T00:10:13.210Z] + filename=Subset_climate_data_over_watershed -[2024-04-03T00:10:13.210Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-04-03T00:10:13.210Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-04-03T00:10:13.210Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-04-03T00:10:28.104Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-04-03T00:10:28.104Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-04-03T00:10:28.104Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-04-03T00:10:28.104Z] + echo 00_Introduction_to_JupyterLab.ipynb -[2024-04-03T00:10:28.104Z] + sed s/.ipynb$// -[2024-04-03T00:10:28.104Z] + filename=00_Introduction_to_JupyterLab -[2024-04-03T00:10:28.104Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-04-03T00:10:28.104Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-04-03T00:10:29.489Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-04-03T00:10:32.026Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-04-03T00:10:32.286Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-04-03T00:10:32.286Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-04-03T00:10:32.286Z] + sed s/.ipynb$// -[2024-04-03T00:10:32.286Z] + echo 01_Getting_watershed_boundaries.ipynb -[2024-04-03T00:10:32.286Z] + filename=01_Getting_watershed_boundaries -[2024-04-03T00:10:32.286Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-04-03T00:10:32.286Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-04-03T00:10:34.190Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-04-03T00:10:46.398Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-04-03T00:10:46.398Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-04-03T00:10:46.398Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-04-03T00:10:46.398Z] + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-04-03T00:10:46.398Z] + sed s/.ipynb$// -[2024-04-03T00:10:46.398Z] + filename=02_Extract_geographical_watershed_properties -[2024-04-03T00:10:46.398Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-04-03T00:10:46.398Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-04-03T00:10:46.398Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-04-03T00:11:01.298Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-04-03T00:11:01.298Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-04-03T00:11:01.298Z] + filename=03_Extracting_forcing_data.ipynb -[2024-04-03T00:11:01.298Z] + sed s/.ipynb$// -[2024-04-03T00:11:01.298Z] + echo 03_Extracting_forcing_data.ipynb -[2024-04-03T00:11:01.298Z] + filename=03_Extracting_forcing_data -[2024-04-03T00:11:01.298Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-04-03T00:11:01.298Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-04-03T00:11:02.674Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-04-03T00:12:54.119Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-04-03T00:12:54.119Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-04-03T00:12:54.119Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-04-03T00:12:54.119Z] + echo 04_Emulating_hydrological_models.ipynb -[2024-04-03T00:12:54.119Z] + sed s/.ipynb$// -[2024-04-03T00:12:54.119Z] + filename=04_Emulating_hydrological_models -[2024-04-03T00:12:54.119Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-04-03T00:12:54.119Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-04-03T00:12:54.119Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-04-03T00:13:04.442Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-04-03T00:13:04.442Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-04-03T00:13:04.442Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-04-03T00:13:04.442Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-04-03T00:13:04.442Z] + sed s/.ipynb$// -[2024-04-03T00:13:04.442Z] + filename=05_Advanced_RavenPy_configuration -[2024-04-03T00:13:04.442Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-04-03T00:13:04.442Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-04-03T00:13:05.044Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-04-03T00:13:26.996Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-04-03T00:13:26.996Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-04-03T00:13:26.996Z] + filename=06_Raven_calibration.ipynb -[2024-04-03T00:13:26.996Z] + echo 06_Raven_calibration.ipynb -[2024-04-03T00:13:26.996Z] + sed s/.ipynb$// -[2024-04-03T00:13:26.996Z] + filename=06_Raven_calibration -[2024-04-03T00:13:26.996Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-04-03T00:13:26.996Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-04-03T00:13:26.996Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-04-03T00:13:41.964Z] [NbConvertApp] Writing 24180 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-04-03T00:13:41.964Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-04-03T00:13:41.964Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-04-03T00:13:41.964Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-04-03T00:13:41.964Z] + sed s/.ipynb$// -[2024-04-03T00:13:41.964Z] + filename=07_Making_and_using_hotstart_files -[2024-04-03T00:13:41.964Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-04-03T00:13:41.964Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-04-03T00:13:42.257Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-04-03T00:13:57.142Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-04-03T00:13:57.142Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-03T00:13:57.142Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-03T00:13:57.142Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-03T00:13:57.142Z] + sed s/.ipynb$// -[2024-04-03T00:13:57.142Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-04-03T00:13:57.142Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-04-03T00:13:57.142Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-03T00:13:57.398Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-04-03T00:18:18.999Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb -[2024-04-03T00:18:18.999Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-03T00:18:18.999Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-03T00:18:18.999Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-03T00:18:18.999Z] + sed s/.ipynb$// -[2024-04-03T00:18:18.999Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-04-03T00:18:18.999Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-04-03T00:18:18.999Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-03T00:18:18.999Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-04-03T00:18:23.259Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-04-03T00:18:23.259Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-04-03T00:18:23.259Z] + filename=10_Data_assimilation.ipynb -[2024-04-03T00:18:23.259Z] + echo 10_Data_assimilation.ipynb -[2024-04-03T00:18:23.259Z] + sed s/.ipynb$// -[2024-04-03T00:18:23.259Z] + filename=10_Data_assimilation -[2024-04-03T00:18:23.259Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-04-03T00:18:23.260Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-04-03T00:18:24.633Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-04-03T00:19:46.077Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-04-03T00:19:46.077Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-04-03T00:19:46.077Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-04-03T00:19:46.077Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-04-03T00:19:46.077Z] + sed s/.ipynb$// -[2024-04-03T00:19:46.077Z] + filename=11_Climatological_ESP_forecasting -[2024-04-03T00:19:46.077Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-04-03T00:19:46.077Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-04-03T00:19:46.350Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-04-03T00:20:33.149Z] [NbConvertApp] Writing 556869 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-04-03T00:20:33.149Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-04-03T00:20:33.149Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-04-03T00:20:33.149Z] + echo 12_Performing_hindcasting_experiments.ipynb -[2024-04-03T00:20:33.149Z] + sed s/.ipynb$// -[2024-04-03T00:20:33.149Z] + filename=12_Performing_hindcasting_experiments -[2024-04-03T00:20:33.149Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-04-03T00:20:33.149Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-04-03T00:20:34.097Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-04-03T00:20:56.053Z] [NbConvertApp] Writing 298402 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-04-03T00:20:56.053Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-04-03T00:20:56.053Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-04-03T00:20:56.053Z] + echo Assess_probabilistic_flood_risk.ipynb -[2024-04-03T00:20:56.053Z] + sed s/.ipynb$// -[2024-04-03T00:20:56.053Z] + filename=Assess_probabilistic_flood_risk -[2024-04-03T00:20:56.053Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-04-03T00:20:56.053Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-04-03T00:20:56.312Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-04-03T00:21:28.405Z] [NbConvertApp] Writing 549860 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-04-03T00:21:28.405Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-03T00:21:28.405Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-03T00:21:28.405Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-03T00:21:28.405Z] + sed s/.ipynb$// -[2024-04-03T00:21:28.405Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-04-03T00:21:28.405Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-04-03T00:21:28.405Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-03T00:21:30.313Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-04-03T00:22:09.042Z] [NbConvertApp] Writing 748279 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-04-03T00:22:09.042Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-04-03T00:22:09.042Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-04-03T00:22:09.042Z] + echo Distributed_hydrological_modelling.ipynb -[2024-04-03T00:22:09.042Z] + sed s/.ipynb$// -[2024-04-03T00:22:09.042Z] + filename=Distributed_hydrological_modelling -[2024-04-03T00:22:09.042Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-04-03T00:22:09.042Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-04-03T00:22:09.043Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-04-03T00:22:41.106Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-04-03T00:22:41.106Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-04-03T00:22:41.106Z] + filename=HydroShare_integration.ipynb -[2024-04-03T00:22:41.106Z] + echo HydroShare_integration.ipynb -[2024-04-03T00:22:41.106Z] + sed s/.ipynb$// -[2024-04-03T00:22:41.106Z] + filename=HydroShare_integration -[2024-04-03T00:22:41.106Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-04-03T00:22:41.106Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-04-03T00:22:42.037Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-04-03T00:22:47.316Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb -[2024-04-03T00:22:47.316Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-04-03T00:22:47.316Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-04-03T00:22:47.316Z] + + sed s/.ipynb$// -[2024-04-03T00:22:47.316Z] echo Hydrological_realtime_forecasting.ipynb -[2024-04-03T00:22:47.316Z] + filename=Hydrological_realtime_forecasting -[2024-04-03T00:22:47.316Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-04-03T00:22:47.317Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-04-03T00:22:48.263Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-04-03T00:23:10.323Z] [NbConvertApp] Writing 281472 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-04-03T00:23:10.323Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-04-03T00:23:10.323Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-04-03T00:23:10.323Z] + + sed s/.ipynb$// -[2024-04-03T00:23:10.323Z] echo Managing_Jupyter_Environments.ipynb -[2024-04-03T00:23:10.323Z] + filename=Managing_Jupyter_Environments -[2024-04-03T00:23:10.323Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-04-03T00:23:10.323Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-04-03T00:23:10.581Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-04-03T00:23:20.551Z] [NbConvertApp] Writing 8679 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-04-03T00:23:20.551Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-04-03T00:23:20.551Z] + filename=Perform_Regionalization.ipynb -[2024-04-03T00:23:20.551Z] + echo Perform_Regionalization.ipynb -[2024-04-03T00:23:20.551Z] + sed s/.ipynb$// -[2024-04-03T00:23:20.551Z] + filename=Perform_Regionalization -[2024-04-03T00:23:20.551Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-04-03T00:23:20.551Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-04-03T00:23:22.456Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-04-03T00:23:49.018Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-04-03T00:23:49.018Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-03T00:23:49.018Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-03T00:23:49.018Z] + + echo Running_HMETS_with_CANOPEX_dataset.ipynbsed -[2024-04-03T00:23:49.018Z] s/.ipynb$// -[2024-04-03T00:23:49.018Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-04-03T00:23:49.018Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-04-03T00:23:49.018Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-03T00:23:50.414Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-04-03T00:24:08.512Z] [NbConvertApp] Writing 109349 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-04-03T00:24:08.512Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-04-03T00:24:08.512Z] + filename=Sensitivity_analysis.ipynb -[2024-04-03T00:24:08.512Z] + echo Sensitivity_analysis.ipynb -[2024-04-03T00:24:08.512Z] + sed s/.ipynb$// -[2024-04-03T00:24:08.512Z] + filename=Sensitivity_analysis -[2024-04-03T00:24:08.512Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-04-03T00:24:08.512Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-04-03T00:24:09.456Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-04-03T00:24:31.370Z] [NbConvertApp] Writing 35348 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-04-03T00:24:31.370Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-04-03T00:24:31.370Z] + filename=time_series_analysis.ipynb -[2024-04-03T00:24:31.370Z] + echo time_series_analysis.ipynb -[2024-04-03T00:24:31.370Z] + sed s/.ipynb$// -[2024-04-03T00:24:31.370Z] + filename=time_series_analysis -[2024-04-03T00:24:31.370Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-04-03T00:24:31.370Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-04-03T00:24:31.370Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-04-03T00:24:41.352Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb -[2024-04-03T00:24:41.352Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-03T00:24:41.352Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-03T00:24:41.352Z] + sed s/.ipynb$// -[2024-04-03T00:24:41.352Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-03T00:24:41.352Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-04-03T00:24:41.352Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-04-03T00:24:41.352Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-03T00:24:42.297Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-04-03T00:26:18.809Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-04-03T00:26:18.809Z] + exit 1 -[2024-04-03T00:26:18.810Z] + EXIT_CODE=1 -[2024-04-03T00:26:18.810Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-04-03T00:26:18.810Z] + mkdir -p buildout/env-dump -[2024-04-03T00:26:18.810Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-04-03T00:26:18.810Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-04-03T00:26:18.810Z] + conda env export -n birdy -[2024-04-03T00:26:36.886Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-03T00:26:36.886Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-03T00:26:36.886Z] + conda list -n birdy --explicit -[2024-04-03T00:26:44.994Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-03T00:26:44.994Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-03T00:26:44.994Z] + pip freeze -[2024-04-03T00:26:44.994Z] + exit 1 +[2024-04-11T15:55:52.848Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-11T15:55:52.848Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-11T15:55:52.848Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-11T15:55:52.848Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-11T15:55:52.848Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-11T15:55:52.848Z] FINCH_BRANCH has been set to 'master' +[2024-04-11T15:55:52.848Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-11T15:55:52.848Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-11T15:55:52.848Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-11T15:55:52.848Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-11T15:55:52.848Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-11T15:55:52.848Z] RAVEN_BRANCH has been set to 'main' +[2024-04-11T15:55:52.848Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-11T15:55:52.848Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-11T15:55:52.848Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-11T15:55:52.848Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-11T15:55:52.848Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-11T15:55:52.848Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-11T15:55:52.848Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-11T15:55:52.848Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-11T15:55:52.848Z] + git clean -fdx +[2024-04-11T15:55:53.826Z] Removing .pytest_cache/ +[2024-04-11T15:55:53.826Z] Removing PAVICS-landing-master/ +[2024-04-11T15:55:53.826Z] Removing RavenPy-master/ +[2024-04-11T15:55:53.826Z] Removing __pycache__/ +[2024-04-11T15:55:53.826Z] Removing buildout/ +[2024-04-11T15:55:53.826Z] Removing esgf-compute-api-devel/ +[2024-04-11T15:55:53.826Z] Removing finch-master/ +[2024-04-11T15:55:53.826Z] Removing pavics-sdi-master/ +[2024-04-11T15:55:53.826Z] Removing raven-main/ +[2024-04-11T15:55:53.826Z] + ./downloadrepos +[2024-04-11T15:55:53.826Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-11T15:55:53.826Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-11T15:55:53.826Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-11T15:55:53.826Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-11T15:55:53.826Z] FINCH_BRANCH has been set to 'master' +[2024-04-11T15:55:53.826Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-11T15:55:53.826Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-11T15:55:53.826Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-11T15:55:53.826Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-11T15:55:53.826Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-11T15:55:53.826Z] RAVEN_BRANCH has been set to 'main' +[2024-04-11T15:55:53.826Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-11T15:55:53.826Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-11T15:55:53.827Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-11T15:55:53.827Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-11T15:55:53.827Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-11T15:55:53.827Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-11T15:55:53.827Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-11T15:55:53.827Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-11T15:55:53.827Z] + rm -rf pavics-sdi-* +[2024-04-11T15:55:53.827Z] + ls +[2024-04-11T15:55:53.827Z] + grep pavics-sdi +[2024-04-11T15:55:53.827Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-04-11T15:55:53.827Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-11T15:55:53.827Z] + shift +[2024-04-11T15:55:53.827Z] + branch=master +[2024-04-11T15:55:53.827Z] + shift +[2024-04-11T15:55:53.827Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-04-11T15:55:53.827Z] + tar xz +[2024-04-11T15:55:58.054Z] + ls +[2024-04-11T15:55:58.054Z] + grep pavics-sdi +[2024-04-11T15:55:58.054Z] pavics-sdi-master +[2024-04-11T15:55:58.054Z] + set +x +[2024-04-11T15:55:58.054Z] + rm -rf finch-* +[2024-04-11T15:55:58.054Z] + ls +[2024-04-11T15:55:58.054Z] + grep finch +[2024-04-11T15:55:58.054Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-11T15:55:58.054Z] + github_repo=https://github.com/bird-house/finch +[2024-04-11T15:55:58.054Z] + shift +[2024-04-11T15:55:58.054Z] + branch=master +[2024-04-11T15:55:58.054Z] + shift +[2024-04-11T15:55:58.054Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-11T15:55:58.054Z] + tar xz +[2024-04-11T15:55:59.465Z] + grep finch +[2024-04-11T15:55:59.465Z] + ls +[2024-04-11T15:55:59.465Z] finch-master +[2024-04-11T15:55:59.465Z] + set +x +[2024-04-11T15:55:59.465Z] + rm -rf PAVICS-landing-* +[2024-04-11T15:55:59.465Z] + ls +[2024-04-11T15:55:59.465Z] + grep PAVICS-landing +[2024-04-11T15:55:59.465Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-04-11T15:55:59.465Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-11T15:55:59.465Z] + shift +[2024-04-11T15:55:59.465Z] + branch=master +[2024-04-11T15:55:59.465Z] + shift +[2024-04-11T15:55:59.465Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-04-11T15:55:59.465Z] + tar xz +[2024-04-11T15:56:14.494Z] + ls +[2024-04-11T15:56:14.494Z] + grep PAVICS-landing +[2024-04-11T15:56:14.494Z] PAVICS-landing-master +[2024-04-11T15:56:14.494Z] + set +x +[2024-04-11T15:56:14.494Z] + rm -rf raven-* +[2024-04-11T15:56:14.494Z] + ls +[2024-04-11T15:56:14.494Z] + grep raven +[2024-04-11T15:56:14.494Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-11T15:56:14.494Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-11T15:56:14.494Z] + shift +[2024-04-11T15:56:14.494Z] + branch=main +[2024-04-11T15:56:14.494Z] + shift +[2024-04-11T15:56:14.494Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-11T15:56:14.494Z] + tar xz +[2024-04-11T15:56:14.768Z] + ls +[2024-04-11T15:56:14.768Z] + grep raven +[2024-04-11T15:56:14.768Z] raven-main +[2024-04-11T15:56:14.768Z] + set +x +[2024-04-11T15:56:14.768Z] + rm -rf RavenPy-* +[2024-04-11T15:56:14.768Z] + grep RavenPy +[2024-04-11T15:56:14.768Z] + ls +[2024-04-11T15:56:14.768Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-11T15:56:14.768Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-11T15:56:14.768Z] + shift +[2024-04-11T15:56:14.768Z] + branch=master +[2024-04-11T15:56:14.768Z] + shift +[2024-04-11T15:56:14.768Z] + tar xz +[2024-04-11T15:56:14.768Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-11T15:56:17.337Z] + + ls +[2024-04-11T15:56:17.337Z] grep RavenPy +[2024-04-11T15:56:17.337Z] RavenPy-master +[2024-04-11T15:56:17.337Z] + set +x +[2024-04-11T15:56:17.337Z] + rm -rf esgf-compute-api-* +[2024-04-11T15:56:17.337Z] + ls +[2024-04-11T15:56:17.337Z] + grep esgf-compute-api +[2024-04-11T15:56:17.337Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-11T15:56:17.337Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-11T15:56:17.337Z] + shift +[2024-04-11T15:56:17.337Z] + branch=devel +[2024-04-11T15:56:17.337Z] + shift +[2024-04-11T15:56:17.337Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-11T15:56:17.337Z] + tar xz +[2024-04-11T15:56:18.279Z] + ls +[2024-04-11T15:56:18.279Z] + grep esgf-compute-api +[2024-04-11T15:56:18.279Z] esgf-compute-api-devel +[2024-04-11T15:56:18.279Z] + set +x +[2024-04-11T15:56:18.279Z] + echo master +[2024-04-11T15:56:18.279Z] + sed s@/@-@g +[2024-04-11T15:56:18.279Z] + PAVICS_SDI_BRANCH=master +[2024-04-11T15:56:18.279Z] + echo Ouranosinc/pavics-sdi +[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g +[2024-04-11T15:56:18.279Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-11T15:56:18.279Z] + echo master +[2024-04-11T15:56:18.279Z] + sed s@/@-@g +[2024-04-11T15:56:18.279Z] + FINCH_BRANCH=master +[2024-04-11T15:56:18.279Z] + echo bird-house/finch +[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g +[2024-04-11T15:56:18.279Z] + FINCH_REPO_NAME=finch +[2024-04-11T15:56:18.279Z] + echo master +[2024-04-11T15:56:18.279Z] + sed s@/@-@g +[2024-04-11T15:56:18.279Z] + PAVICS_LANDING_BRANCH=master +[2024-04-11T15:56:18.279Z] + echo Ouranosinc/PAVICS-landing +[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g +[2024-04-11T15:56:18.279Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-11T15:56:18.279Z] + echo main +[2024-04-11T15:56:18.279Z] + sed s@/@-@g +[2024-04-11T15:56:18.279Z] + RAVEN_BRANCH=main +[2024-04-11T15:56:18.279Z] + echo Ouranosinc/raven +[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g +[2024-04-11T15:56:18.279Z] + RAVEN_REPO_NAME=raven +[2024-04-11T15:56:18.279Z] + echo master +[2024-04-11T15:56:18.279Z] + sed s@/@-@g +[2024-04-11T15:56:18.279Z] + RAVENPY_BRANCH=master +[2024-04-11T15:56:18.279Z] + echo CSHS-CWRA/RavenPy +[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g +[2024-04-11T15:56:18.279Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-11T15:56:18.279Z] + echo devel +[2024-04-11T15:56:18.279Z] + sed s@/@-@g +[2024-04-11T15:56:18.279Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-11T15:56:18.279Z] + echo ESGF/esgf-compute-api +[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g +[2024-04-11T15:56:18.279Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-11T15:56:18.279Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:56:18.279Z] + echo pavics-sdi-master +[2024-04-11T15:56:18.279Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-04-11T15:56:18.279Z] + echo finch-master +[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:56:18.280Z] + FINCH_DIR=finch-master +[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:56:18.280Z] + echo PAVICS-landing-master +[2024-04-11T15:56:18.280Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-04-11T15:56:18.280Z] + echo raven-main +[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:56:18.280Z] + RAVEN_DIR=raven-main +[2024-04-11T15:56:18.280Z] + echo RavenPy-master +[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:56:18.280Z] + RAVENPY_DIR=RavenPy-master +[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-11T15:56:18.280Z] + echo esgf-compute-api-devel +[2024-04-11T15:56:18.280Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-11T15:56:18.280Z] + echo true +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + VERIFY_SSL=true +[2024-04-11T15:56:18.280Z] + [ xtrue = xfalse ] +[2024-04-11T15:56:18.280Z] + rm -v finch-master/setup.cfg +[2024-04-11T15:56:18.280Z] removed 'finch-master/setup.cfg' +[2024-04-11T15:56:18.280Z] + rm -v raven-main/setup.cfg +[2024-04-11T15:56:18.280Z] removed 'raven-main/setup.cfg' +[2024-04-11T15:56:18.280Z] + rm -v raven-main/pyproject.toml +[2024-04-11T15:56:18.280Z] removed 'raven-main/pyproject.toml' +[2024-04-11T15:56:18.280Z] + rm -v RavenPy-master/setup.cfg +[2024-04-11T15:56:18.280Z] removed 'RavenPy-master/setup.cfg' +[2024-04-11T15:56:18.280Z] + rm -v RavenPy-master/tox.ini +[2024-04-11T15:56:18.280Z] removed 'RavenPy-master/tox.ini' +[2024-04-11T15:56:18.280Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-11T15:56:18.280Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-11T15:56:18.280Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-11T15:56:18.280Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-11T15:56:18.280Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-11T15:56:18.280Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-11T15:56:18.280Z] + echo false +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + TEST_MAGPIE_AUTH=false +[2024-04-11T15:56:18.280Z] + echo false +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + TEST_PAVICS_SDI_REPO=false +[2024-04-11T15:56:18.280Z] + echo false +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-11T15:56:18.280Z] + echo false +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + TEST_FINCH_REPO=false +[2024-04-11T15:56:18.280Z] + echo false +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + TEST_PAVICS_LANDING_REPO=false +[2024-04-11T15:56:18.280Z] + echo true +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + TEST_RAVEN_REPO=true +[2024-04-11T15:56:18.280Z] + echo true +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + TEST_RAVENPY_REPO=true +[2024-04-11T15:56:18.280Z] + echo false +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-11T15:56:18.280Z] + echo false +[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] +[2024-04-11T15:56:18.280Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-04-11T15:56:18.280Z] + NOTEBOOKS_TO_TEST= +[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] +[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] +[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] +[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] +[2024-04-11T15:56:18.280Z] + [ xtrue = xtrue ] +[2024-04-11T15:56:18.280Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-04-11T15:56:18.280Z] + [ xtrue = xtrue ] +[2024-04-11T15:56:18.280Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-04-11T15:56:18.280Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] +[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] +[2024-04-11T15:56:18.280Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-11T15:56:18.280Z] + [ -n ] +[2024-04-11T15:56:18.280Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-11T15:56:18.280Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-11T15:56:18.280Z] Will run notebooks against pavics.ouranos.ca +[2024-04-11T15:56:18.280Z] + [ -z ] +[2024-04-11T15:56:18.280Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-11T15:56:18.280Z] + git diff +[2024-04-11T15:56:18.280Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-11T15:56:18.280Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-04-11T15:56:22.476Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-11T15:56:22.476Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-11T15:56:22.476Z] ============================= test session starts ============================== +[2024-04-11T15:56:22.476Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-04-11T15:56:22.476Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-04-11T15:56:22.476Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-11T15:56:22.476Z] collected 242 items +[2024-04-11T15:56:22.476Z] +[2024-04-11T15:56:34.625Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-04-11T15:56:35.557Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-04-11T15:56:52.907Z] ...... [ 6%] +[2024-04-11T15:56:54.815Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] +[2024-04-11T15:56:54.815Z] [ 9%] +[2024-04-11T15:56:57.009Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-04-11T15:57:05.124Z] .... [ 12%] +[2024-04-11T15:57:11.682Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-04-11T15:57:19.209Z] ....F.FF..F.. [ 18%] +[2024-04-11T15:57:48.781Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] +[2024-04-11T15:59:02.011Z] .. [ 22%] +[2024-04-11T15:59:02.956Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] +[2024-04-11T15:59:11.968Z] ..FFFFFFFF....... [ 30%] +[2024-04-11T15:59:18.689Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] +[2024-04-11T15:59:29.932Z] ........... [ 36%] +[2024-04-11T15:59:39.718Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] +[2024-04-11T15:59:44.989Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-04-11T15:59:50.235Z] ..... [ 41%] +[2024-04-11T15:59:52.132Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-04-11T16:04:07.100Z] ................. [ 48%] +[2024-04-11T16:04:12.366Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-04-11T16:04:20.171Z] .... [ 50%] +[2024-04-11T16:05:24.871Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] +[2024-04-11T16:05:34.868Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] +[2024-04-11T16:06:06.794Z] ...... [ 57%] +[2024-04-11T16:06:14.900Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] +[2024-04-11T16:06:25.045Z] ....... [ 60%] +[2024-04-11T16:06:33.023Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] +[2024-04-11T16:06:55.233Z] .... [ 64%] +[2024-04-11T16:07:05.288Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-04-11T16:07:30.384Z] ....... [ 67%] +[2024-04-11T16:07:34.671Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-04-11T16:08:04.757Z] ....... [ 70%] +[2024-04-11T16:08:06.389Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] +[2024-04-11T16:08:18.734Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] +[2024-04-11T16:08:27.375Z] .... [ 74%] +[2024-04-11T16:09:15.069Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] +[2024-04-11T16:09:40.465Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] +[2024-04-11T16:09:40.465Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-04-11T16:09:54.379Z] ............. [ 84%] +[2024-04-11T16:10:11.900Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] +[2024-04-11T16:10:20.670Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] +[2024-04-11T16:10:30.646Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-04-11T16:11:48.040Z] .........FFFFFFFFFFF [100%] +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] =================================== FAILURES =================================== +[2024-04-11T16:11:48.040Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ +[2024-04-11T16:11:48.040Z] Notebook cell execution failed +[2024-04-11T16:11:48.040Z] Cell 5: Cell execution caused an exception +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] Input: +[2024-04-11T16:11:48.040Z] features, statistics, raster = stats_resp.get(asobj=True) +[2024-04-11T16:11:48.040Z] grid = raster[0] +[2024-04-11T16:11:48.040Z] grid.plot() +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] Traceback: +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.040Z] ValueError Traceback (most recent call last) +[2024-04-11T16:11:48.040Z] Cell In[1], line 3 +[2024-04-11T16:11:48.040Z]  1 features, statistics, raster = stats_resp.get(asobj=True) +[2024-04-11T16:11:48.040Z]  2 grid = raster[0] +[2024-04-11T16:11:48.040Z] ----> 3 grid.plot() +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) +[2024-04-11T16:11:48.040Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: +[2024-04-11T16:11:48.040Z] --> 942 raise ValueError( +[2024-04-11T16:11:48.040Z]  943 "Dataset.plot cannot be called directly. Use " +[2024-04-11T16:11:48.040Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" +[2024-04-11T16:11:48.040Z]  945 ) +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ +[2024-04-11T16:11:48.040Z] Notebook cell execution failed +[2024-04-11T16:11:48.040Z] Cell 7: Cell execution caused an exception +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] Input: +[2024-04-11T16:11:48.040Z] unique, counts = np.unique(grid, return_counts=True) +[2024-04-11T16:11:48.040Z] print("The land-use categories available are: " + str(unique)) +[2024-04-11T16:11:48.040Z] print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] # Pixels values at '127' are NaN and can be ignored. +[2024-04-11T16:11:48.040Z] from matplotlib.colors import Normalize +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] norm = Normalize() +[2024-04-11T16:11:48.040Z] norm.autoscale(unique[:-1]) +[2024-04-11T16:11:48.040Z] cm = mpl.colormaps["tab20"] +[2024-04-11T16:11:48.040Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] # plt.bar(unique[:-1], counts[:-1]) +[2024-04-11T16:11:48.040Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) +[2024-04-11T16:11:48.040Z] plt.xlabel("Land-use categories") +[2024-04-11T16:11:48.040Z] plt.ylabel("Number of pixels") +[2024-04-11T16:11:48.040Z] plt.show() +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") +[2024-04-11T16:11:48.040Z] grid.name = "Land-use categories" +[2024-04-11T16:11:48.040Z] plt.show() +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] Traceback: +[2024-04-11T16:11:48.040Z] +[2024-04-11T16:11:48.040Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.040Z] TypeError Traceback (most recent call last) +[2024-04-11T16:11:48.040Z] /tmp/ipykernel_355/750628277.py in ?() +[2024-04-11T16:11:48.041Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) +[2024-04-11T16:11:48.041Z]  2 print("The land-use categories available are: " + str(unique)) +[2024-04-11T16:11:48.041Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-04-11T16:11:48.041Z]  4  +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] <__array_function__ internals> in ?(*args, **kwargs) +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) +[2024-04-11T16:11:48.041Z]  268 >>> np.repeat(values, counts) +[2024-04-11T16:11:48.041Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved +[2024-04-11T16:11:48.041Z]  270  +[2024-04-11T16:11:48.041Z]  271 """ +[2024-04-11T16:11:48.041Z] --> 272 ar = np.asanyarray(ar) +[2024-04-11T16:11:48.041Z]  273 if axis is None: +[2024-04-11T16:11:48.041Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, +[2024-04-11T16:11:48.041Z]  275 equal_nan=equal_nan) +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) +[2024-04-11T16:11:48.041Z]  1472 def __array__(self, dtype=None): +[2024-04-11T16:11:48.041Z] -> 1473 raise TypeError( +[2024-04-11T16:11:48.041Z]  1474 "cannot directly convert an xarray.Dataset into a " +[2024-04-11T16:11:48.041Z]  1475 "numpy array. Instead, create an xarray.DataArray " +[2024-04-11T16:11:48.041Z]  1476 "first, either with indexing on the Dataset or by " +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ +[2024-04-11T16:11:48.041Z] Notebook cell execution failed +[2024-04-11T16:11:48.041Z] Cell 8: Cell execution caused an exception +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] Input: +[2024-04-11T16:11:48.041Z] import cartopy.crs as ccrs +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] # Set a CRS transformation: +[2024-04-11T16:11:48.041Z] crs = ccrs.LambertConformal( +[2024-04-11T16:11:48.041Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-11T16:11:48.041Z] ) +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] ax = plt.subplot(projection=crs) +[2024-04-11T16:11:48.041Z] grid.name = "Land-use categories" +[2024-04-11T16:11:48.041Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-04-11T16:11:48.041Z] plt.show() +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] Traceback: +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.041Z] AttributeError Traceback (most recent call last) +[2024-04-11T16:11:48.041Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-11T16:11:48.041Z]  304 try: +[2024-04-11T16:11:48.041Z] --> 305 object.__setattr__(self, name, value) +[2024-04-11T16:11:48.041Z]  306 except AttributeError as e: +[2024-04-11T16:11:48.041Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-04-11T16:11:48.041Z]  308 # DataArray.dims.setter +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] The above exception was the direct cause of the following exception: +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.041Z] AttributeError Traceback (most recent call last) +[2024-04-11T16:11:48.041Z] Cell In[1], line 9 +[2024-04-11T16:11:48.041Z]  4 crs = ccrs.LambertConformal( +[2024-04-11T16:11:48.041Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-11T16:11:48.041Z]  6 ) +[2024-04-11T16:11:48.041Z]  8 ax = plt.subplot(projection=crs) +[2024-04-11T16:11:48.041Z] ----> 9 grid.name = "Land-use categories" +[2024-04-11T16:11:48.041Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-04-11T16:11:48.041Z]  11 plt.show() +[2024-04-11T16:11:48.041Z] +[2024-04-11T16:11:48.042Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-11T16:11:48.042Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-04-11T16:11:48.042Z]  310 raise +[2024-04-11T16:11:48.042Z] --> 311 raise AttributeError( +[2024-04-11T16:11:48.042Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-04-11T16:11:48.042Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-04-11T16:11:48.042Z]  314 ) from e +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ +[2024-04-11T16:11:48.042Z] Notebook cell execution failed +[2024-04-11T16:11:48.042Z] Cell 11: Cell execution caused an exception +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] Input: +[2024-04-11T16:11:48.042Z] crs = ccrs.LambertConformal( +[2024-04-11T16:11:48.042Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-11T16:11:48.042Z] ) +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] dem.name = "Elevation" +[2024-04-11T16:11:48.042Z] dem.attrs["units"] = "m" +[2024-04-11T16:11:48.042Z] ax = plt.subplot(projection=crs) +[2024-04-11T16:11:48.042Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") +[2024-04-11T16:11:48.042Z] plt.show() +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] Traceback: +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.042Z] AttributeError Traceback (most recent call last) +[2024-04-11T16:11:48.042Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-11T16:11:48.042Z]  304 try: +[2024-04-11T16:11:48.042Z] --> 305 object.__setattr__(self, name, value) +[2024-04-11T16:11:48.042Z]  306 except AttributeError as e: +[2024-04-11T16:11:48.042Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-04-11T16:11:48.042Z]  308 # DataArray.dims.setter +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] The above exception was the direct cause of the following exception: +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] AttributeError Traceback (most recent call last) +[2024-04-11T16:11:48.042Z] Cell In[1], line 5 +[2024-04-11T16:11:48.042Z]  1 crs = ccrs.LambertConformal( +[2024-04-11T16:11:48.042Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-11T16:11:48.042Z]  3 ) +[2024-04-11T16:11:48.042Z] ----> 5 dem.name = "Elevation" +[2024-04-11T16:11:48.042Z]  6 dem.attrs["units"] = "m" +[2024-04-11T16:11:48.042Z]  7 ax = plt.subplot(projection=crs) +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-11T16:11:48.042Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-04-11T16:11:48.042Z]  310 raise +[2024-04-11T16:11:48.042Z] --> 311 raise AttributeError( +[2024-04-11T16:11:48.042Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-04-11T16:11:48.042Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-04-11T16:11:48.042Z]  314 ) from e +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-04-11T16:11:48.042Z] Notebook cell execution failed +[2024-04-11T16:11:48.042Z] Cell 5: Cell execution caused an exception +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] Input: +[2024-04-11T16:11:48.042Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-04-11T16:11:48.042Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-04-11T16:11:48.042Z] from ravenpy import OutputReader +[2024-04-11T16:11:48.042Z] from ravenpy.ravenpy import run +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-04-11T16:11:48.042Z] run_name = run_name +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-04-11T16:11:48.042Z] # subfolder called "outputs" +[2024-04-11T16:11:48.042Z] configdir = workdir +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-04-11T16:11:48.042Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] # Get the outputs using the Output Reader object. +[2024-04-11T16:11:48.042Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] Traceback: +[2024-04-11T16:11:48.042Z] +[2024-04-11T16:11:48.042Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.043Z] RavenError Traceback (most recent call last) +[2024-04-11T16:11:48.043Z] Cell In[1], line 14 +[2024-04-11T16:11:48.043Z]  11 configdir = workdir +[2024-04-11T16:11:48.043Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-04-11T16:11:48.043Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-04-11T16:11:48.043Z]  16 # Get the outputs using the Output Reader object. +[2024-04-11T16:11:48.043Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-04-11T16:11:48.043Z]  320 warn(msg, category=RavenWarning) +[2024-04-11T16:11:48.043Z]  322 if messages["ERROR"]: +[2024-04-11T16:11:48.043Z] --> 323 raise RavenError( +[2024-04-11T16:11:48.043Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-04-11T16:11:48.043Z]  325 ) +[2024-04-11T16:11:48.043Z]  327 if returncode != 0: +[2024-04-11T16:11:48.043Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] RavenError: Config directory: /tmp/NB40ug08fft +[2024-04-11T16:11:48.043Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-04-11T16:11:48.043Z] Notebook cell execution failed +[2024-04-11T16:11:48.043Z] Cell 6: Cell execution caused an exception +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] Input: +[2024-04-11T16:11:48.043Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-04-11T16:11:48.043Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-04-11T16:11:48.043Z] from ravenpy import Emulator +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] # Prepare the emulator by writing files on disk +[2024-04-11T16:11:48.043Z] e = Emulator(config=m) +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] # Run the model and get the outputs. +[2024-04-11T16:11:48.043Z] outputs = e.run() +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] Traceback: +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.043Z] RavenError Traceback (most recent call last) +[2024-04-11T16:11:48.043Z] Cell In[1], line 9 +[2024-04-11T16:11:48.043Z]  6 e = Emulator(config=m) +[2024-04-11T16:11:48.043Z]  8 # Run the model and get the outputs. +[2024-04-11T16:11:48.043Z] ----> 9 outputs = e.run() +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-04-11T16:11:48.043Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-04-11T16:11:48.043Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-04-11T16:11:48.043Z]  66 self.write_rv(overwrite=overwrite) +[2024-04-11T16:11:48.043Z] ---> 68 self._output_path = run( +[2024-04-11T16:11:48.043Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-04-11T16:11:48.043Z]  70 ) +[2024-04-11T16:11:48.043Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-04-11T16:11:48.043Z]  72 return self._output +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-04-11T16:11:48.043Z]  320 warn(msg, category=RavenWarning) +[2024-04-11T16:11:48.043Z]  322 if messages["ERROR"]: +[2024-04-11T16:11:48.043Z] --> 323 raise RavenError( +[2024-04-11T16:11:48.043Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-04-11T16:11:48.043Z]  325 ) +[2024-04-11T16:11:48.043Z]  327 if returncode != 0: +[2024-04-11T16:11:48.043Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] RavenError: Config directory: /tmp/tmpee53ov9_ +[2024-04-11T16:11:48.043Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-04-11T16:11:48.043Z] Notebook cell execution failed +[2024-04-11T16:11:48.043Z] Cell 7: Cell execution caused an exception +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] Input: +[2024-04-11T16:11:48.043Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-04-11T16:11:48.043Z] outputs.files +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] Traceback: +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.043Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.043Z] Cell In[1], line 2 +[2024-04-11T16:11:48.043Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-04-11T16:11:48.043Z] ----> 2 outputs.files +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] NameError: name 'outputs' is not defined +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-04-11T16:11:48.043Z] Notebook cell execution failed +[2024-04-11T16:11:48.043Z] Cell 8: Cell execution caused an exception +[2024-04-11T16:11:48.043Z] +[2024-04-11T16:11:48.043Z] Input: +[2024-04-11T16:11:48.043Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-04-11T16:11:48.043Z] print("----------------HYDROGRAPH----------------") +[2024-04-11T16:11:48.043Z] display(outputs.hydrograph) +[2024-04-11T16:11:48.043Z] print("") +[2024-04-11T16:11:48.043Z] print("-----------------STORAGE------------------") +[2024-04-11T16:11:48.044Z] display(outputs.storage) +[2024-04-11T16:11:48.044Z] print("") +[2024-04-11T16:11:48.044Z] print("-----------------SOLUTION-----------------") +[2024-04-11T16:11:48.044Z] display(outputs.solution) +[2024-04-11T16:11:48.044Z] print("") +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Traceback: +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.044Z] Cell In[1], line 3 +[2024-04-11T16:11:48.044Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-04-11T16:11:48.044Z]  2 print("----------------HYDROGRAPH----------------") +[2024-04-11T16:11:48.044Z] ----> 3 display(outputs.hydrograph) +[2024-04-11T16:11:48.044Z]  4 print("") +[2024-04-11T16:11:48.044Z]  5 print("-----------------STORAGE------------------") +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-04-11T16:11:48.044Z] Notebook cell execution failed +[2024-04-11T16:11:48.044Z] Cell 9: Cell execution caused an exception +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Input: +[2024-04-11T16:11:48.044Z] # Import the graphing utility built to handle Raven model outputs +[2024-04-11T16:11:48.044Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] hydrograph_objects = outputs.hydrograph +[2024-04-11T16:11:48.044Z] hydrographs(hydrograph_objects) +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Traceback: +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.044Z] Cell In[1], line 4 +[2024-04-11T16:11:48.044Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-04-11T16:11:48.044Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-04-11T16:11:48.044Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-04-11T16:11:48.044Z]  5 hydrographs(hydrograph_objects) +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-04-11T16:11:48.044Z] Notebook cell execution failed +[2024-04-11T16:11:48.044Z] Cell 10: Cell execution caused an exception +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Input: +[2024-04-11T16:11:48.044Z] outputs.hydrograph.q_sim.plot() +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Traceback: +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.044Z] Cell In[1], line 1 +[2024-04-11T16:11:48.044Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-04-11T16:11:48.044Z] Notebook cell execution failed +[2024-04-11T16:11:48.044Z] Cell 11: Cell execution caused an exception +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Input: +[2024-04-11T16:11:48.044Z] print(list(outputs.storage.keys())) +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Traceback: +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.044Z] Cell In[1], line 1 +[2024-04-11T16:11:48.044Z] ----> 1 print(list(outputs.storage.keys())) +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-04-11T16:11:48.044Z] Notebook cell execution failed +[2024-04-11T16:11:48.044Z] Cell 12: Cell execution caused an exception +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Input: +[2024-04-11T16:11:48.044Z] # Plot the "Snow" variable +[2024-04-11T16:11:48.044Z] outputs.storage["Snow"].plot() +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Traceback: +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.044Z] Cell In[1], line 2 +[2024-04-11T16:11:48.044Z]  1 # Plot the "Snow" variable +[2024-04-11T16:11:48.044Z] ----> 2 outputs.storage["Snow"].plot() +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ +[2024-04-11T16:11:48.044Z] Notebook cell execution failed +[2024-04-11T16:11:48.044Z] Cell 0: Cell execution caused an exception +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Input: +[2024-04-11T16:11:48.044Z] import os +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] from hsclient import HydroShare, Token +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] # Authentication method using username and password +[2024-04-11T16:11:48.044Z] """ +[2024-04-11T16:11:48.044Z] username = 'XXXXX' +[2024-04-11T16:11:48.044Z] password = 'XXXXX' +[2024-04-11T16:11:48.044Z] hs = HydroShare(username=username, password=password) +[2024-04-11T16:11:48.044Z] """ +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-04-11T16:11:48.044Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] token = Token(access_token=access_token, token_type="bearer") +[2024-04-11T16:11:48.044Z] hs = HydroShare(client_id=client_id, token=token) +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] Traceback: +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.044Z] ValidationError Traceback (most recent call last) +[2024-04-11T16:11:48.044Z] Cell In[1], line 15 +[2024-04-11T16:11:48.044Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-04-11T16:11:48.044Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-04-11T16:11:48.044Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-04-11T16:11:48.044Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-04-11T16:11:48.044Z] +[2024-04-11T16:11:48.044Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) +[2024-04-11T16:11:48.044Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-04-11T16:11:48.044Z]  170 __tracebackhide__ = True +[2024-04-11T16:11:48.045Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] ValidationError: 4 validation errors for Token +[2024-04-11T16:11:48.045Z] scope +[2024-04-11T16:11:48.045Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-04-11T16:11:48.045Z]  2 for r in results: +[2024-04-11T16:11:48.045Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] NameError: name 'hs' is not defined +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ +[2024-04-11T16:11:48.045Z] Notebook cell execution failed +[2024-04-11T16:11:48.045Z] Cell 2: Cell execution caused an exception +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] Input: +[2024-04-11T16:11:48.045Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-04-11T16:11:48.045Z] res.files() +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] Traceback: +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.045Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.045Z] Cell In[1], line 1 +[2024-04-11T16:11:48.045Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-04-11T16:11:48.045Z]  2 res.files() +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] NameError: name 'hs' is not defined +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ +[2024-04-11T16:11:48.045Z] Notebook cell execution failed +[2024-04-11T16:11:48.045Z] Cell 3: Cell execution caused an exception +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] Input: +[2024-04-11T16:11:48.045Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] Traceback: +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.045Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.045Z] Cell In[1], line 1 +[2024-04-11T16:11:48.045Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] NameError: name 'res' is not defined +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ +[2024-04-11T16:11:48.045Z] Notebook cell execution failed +[2024-04-11T16:11:48.045Z] Cell 10: Cell execution caused an exception +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] Input: +[2024-04-11T16:11:48.045Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. +[2024-04-11T16:11:48.045Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" +[2024-04-11T16:11:48.045Z] cat = intake.open_catalog(catalog_name) +[2024-04-11T16:11:48.045Z] ds = cat.era5_reanalysis_single_levels.to_dask() +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] """ +[2024-04-11T16:11:48.045Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, +[2024-04-11T16:11:48.045Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total +[2024-04-11T16:11:48.045Z] precipitation. +[2024-04-11T16:11:48.045Z] """ +[2024-04-11T16:11:48.045Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, +[2024-04-11T16:11:48.045Z] # such as units and variable names. +[2024-04-11T16:11:48.045Z] with xr.set_options(keep_attrs=True): +[2024-04-11T16:11:48.045Z] ERA5_reference = subset.subset_shape( +[2024-04-11T16:11:48.045Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour +[2024-04-11T16:11:48.045Z] ) +[2024-04-11T16:11:48.045Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) +[2024-04-11T16:11:48.045Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) +[2024-04-11T16:11:48.045Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] # Change the units +[2024-04-11T16:11:48.045Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C +[2024-04-11T16:11:48.045Z] ERA5_tmin.attrs["units"] = "degC" +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C +[2024-04-11T16:11:48.045Z] ERA5_tmax.attrs["units"] = "degC" +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] ERA5_pr = ERA5_pr * 1000 # m to mm +[2024-04-11T16:11:48.045Z] ERA5_pr.attrs["units"] = "mm" +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] # Average the variables spatially +[2024-04-11T16:11:48.045Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-04-11T16:11:48.045Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-04-11T16:11:48.045Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-04-11T16:11:48.045Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-04-11T16:11:48.045Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-04-11T16:11:48.045Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-04-11T16:11:48.045Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the +[2024-04-11T16:11:48.045Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. +[2024-04-11T16:11:48.045Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) +[2024-04-11T16:11:48.045Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] Traceback: +[2024-04-11T16:11:48.045Z] +[2024-04-11T16:11:48.045Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.045Z] KeyError Traceback (most recent call last) +[2024-04-11T16:11:48.045Z] Cell In[1], line 37 +[2024-04-11T16:11:48.045Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-04-11T16:11:48.046Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-04-11T16:11:48.046Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 +[2024-04-11T16:11:48.046Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-04-11T16:11:48.046Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-04-11T16:11:48.046Z] +[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-04-11T16:11:48.046Z]  851 self.coords[key] = value +[2024-04-11T16:11:48.046Z]  852 else: +[2024-04-11T16:11:48.046Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-04-11T16:11:48.046Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-04-11T16:11:48.046Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-04-11T16:11:48.046Z] --> 856 obj = self[key] +[2024-04-11T16:11:48.046Z]  857 if isinstance(value, DataArray): +[2024-04-11T16:11:48.046Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-04-11T16:11:48.046Z] +[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-04-11T16:11:48.046Z]  844 return self._getitem_coord(key) +[2024-04-11T16:11:48.046Z]  845 else: +[2024-04-11T16:11:48.046Z]  846 # xarray-style array indexing +[2024-04-11T16:11:48.046Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-04-11T16:11:48.046Z] +[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-04-11T16:11:48.046Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-04-11T16:11:48.046Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-04-11T16:11:48.046Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-04-11T16:11:48.046Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-04-11T16:11:48.046Z]  1447  ) +[2024-04-11T16:11:48.046Z]  1448 return self._from_temp_dataset(ds) +[2024-04-11T16:11:48.046Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-04-11T16:11:48.046Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-04-11T16:11:48.046Z] +[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-04-11T16:11:48.046Z]  2926 var_indexers = { +[2024-04-11T16:11:48.046Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-04-11T16:11:48.046Z]  2928 } +[2024-04-11T16:11:48.046Z]  2929 if var_indexers: +[2024-04-11T16:11:48.046Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-04-11T16:11:48.046Z]  2931 # drop scalar coordinates +[2024-04-11T16:11:48.046Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-04-11T16:11:48.046Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-04-11T16:11:48.046Z] +[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-04-11T16:11:48.046Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-04-11T16:11:48.046Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-04-11T16:11:48.046Z] -> 1368 return self[key] +[2024-04-11T16:11:48.046Z] +[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-04-11T16:11:48.046Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-04-11T16:11:48.046Z]  879  """Return a new Variable object whose contents are consistent with +[2024-04-11T16:11:48.046Z]  880  getting the provided key from the underlying data. +[2024-04-11T16:11:48.046Z]  881 +[2024-04-11T16:11:48.046Z]  (...) +[2024-04-11T16:11:48.046Z]  889  array `x.values` directly. +[2024-04-11T16:11:48.046Z]  890  """ +[2024-04-11T16:11:48.046Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-04-11T16:11:48.046Z]  892 data = as_indexable(self._data)[indexer] +[2024-04-11T16:11:48.046Z]  893 if new_order: +[2024-04-11T16:11:48.046Z] +[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-04-11T16:11:48.046Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-04-11T16:11:48.046Z]  722 return self._broadcast_indexes_basic(key) +[2024-04-11T16:11:48.046Z] --> 724 self._validate_indexers(key) +[2024-04-11T16:11:48.046Z]  725 # Detect it can be mapped as an outer indexer +[2024-04-11T16:11:48.046Z]  726 # If all key is unlabeled, or +[2024-04-11T16:11:48.046Z]  727 # key can be mapped as an OuterIndexer. +[2024-04-11T16:11:48.047Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-04-11T16:11:48.047Z]  771 raise IndexError( +[2024-04-11T16:11:48.047Z]  772 "{}-dimensional boolean indexing is " +[2024-04-11T16:11:48.047Z]  773 "not supported. ".format(k.ndim) +[2024-04-11T16:11:48.047Z]  774 ) +[2024-04-11T16:11:48.047Z]  775 if is_duck_dask_array(k.data): +[2024-04-11T16:11:48.047Z] --> 776 raise KeyError( +[2024-04-11T16:11:48.047Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-04-11T16:11:48.047Z]  778 "This will result in a dask array of unknown shape. " +[2024-04-11T16:11:48.047Z]  779 "Such arrays are unsupported by Xarray." +[2024-04-11T16:11:48.047Z]  780 "Please compute the indexer first using .compute()" +[2024-04-11T16:11:48.047Z]  781 ) +[2024-04-11T16:11:48.047Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-04-11T16:11:48.047Z]  783 raise IndexError( +[2024-04-11T16:11:48.047Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-04-11T16:11:48.047Z]  785 "same dimension to the indexed array. Indexer is " +[2024-04-11T16:11:48.047Z]  (...) +[2024-04-11T16:11:48.047Z]  788 ) +[2024-04-11T16:11:48.047Z]  789 ) +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ +[2024-04-11T16:11:48.047Z] Notebook cell execution failed +[2024-04-11T16:11:48.047Z] Cell 11: Cell execution caused an exception +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] Input: +[2024-04-11T16:11:48.047Z] # Climate model to use +[2024-04-11T16:11:48.047Z] climate_model = "MIROC6" +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. +[2024-04-11T16:11:48.047Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") +[2024-04-11T16:11:48.047Z] col = intake.open_esm_datastore( +[2024-04-11T16:11:48.047Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" +[2024-04-11T16:11:48.047Z] ) +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. +[2024-04-11T16:11:48.047Z] with xr.set_options(keep_attrs=True): +[2024-04-11T16:11:48.047Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. +[2024-04-11T16:11:48.047Z] out = {} +[2024-04-11T16:11:48.047Z] for exp in ["historical", "ssp585"]: +[2024-04-11T16:11:48.047Z] if exp == "historical": +[2024-04-11T16:11:48.047Z] period_start = reference_start_day +[2024-04-11T16:11:48.047Z] period_end = reference_end_day +[2024-04-11T16:11:48.047Z] else: +[2024-04-11T16:11:48.047Z] period_start = future_start_day +[2024-04-11T16:11:48.047Z] period_end = future_end_day +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] out[exp] = {} +[2024-04-11T16:11:48.047Z] for variable in ["tasmin", "tasmax", "pr"]: +[2024-04-11T16:11:48.047Z] print(exp, variable) +[2024-04-11T16:11:48.047Z] query = dict( +[2024-04-11T16:11:48.047Z] experiment_id=exp, +[2024-04-11T16:11:48.047Z] table_id="day", +[2024-04-11T16:11:48.047Z] variable_id=variable, +[2024-04-11T16:11:48.047Z] member_id="r1i1p1f1", +[2024-04-11T16:11:48.047Z] source_id=climate_model, +[2024-04-11T16:11:48.047Z] ) +[2024-04-11T16:11:48.047Z] col_subset = col.search(require_all_on=["source_id"], **query) +[2024-04-11T16:11:48.047Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. +[2024-04-11T16:11:48.047Z] if variable == "pr": +[2024-04-11T16:11:48.047Z] out[exp][variable] = average.average_shape( +[2024-04-11T16:11:48.047Z] xr.open_zarr(mapper, consolidated=True).sel( +[2024-04-11T16:11:48.047Z] time=slice(period_start, period_end) +[2024-04-11T16:11:48.047Z] )[variable], +[2024-04-11T16:11:48.047Z] basin_contour, +[2024-04-11T16:11:48.047Z] ).chunk(-1) +[2024-04-11T16:11:48.047Z] else: +[2024-04-11T16:11:48.047Z] out[exp][variable] = average.average_shape( +[2024-04-11T16:11:48.047Z] xr.open_zarr(mapper, consolidated=True) +[2024-04-11T16:11:48.047Z] .sel(time=slice(period_start, period_end)) +[2024-04-11T16:11:48.047Z] .reset_coords("height", drop=True)[variable], +[2024-04-11T16:11:48.047Z] basin_contour, +[2024-04-11T16:11:48.047Z] ).chunk(-1) +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] # We can now extract the variables that we will need later: +[2024-04-11T16:11:48.047Z] historical_tasmax = out["historical"]["tasmax"] +[2024-04-11T16:11:48.047Z] historical_tasmin = out["historical"]["tasmin"] +[2024-04-11T16:11:48.047Z] historical_pr = out["historical"]["pr"] +[2024-04-11T16:11:48.047Z] future_tasmax = out["ssp585"]["tasmax"] +[2024-04-11T16:11:48.047Z] future_tasmin = out["ssp585"]["tasmin"] +[2024-04-11T16:11:48.047Z] future_pr = out["ssp585"]["pr"] +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] Traceback: +[2024-04-11T16:11:48.047Z] +[2024-04-11T16:11:48.047Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.047Z] KeyError Traceback (most recent call last) +[2024-04-11T16:11:48.047Z] Cell In[1], line 44 +[2024-04-11T16:11:48.047Z]  37 out[exp][variable] = average.average_shape( +[2024-04-11T16:11:48.047Z]  38 xr.open_zarr(mapper, consolidated=True).sel( +[2024-04-11T16:11:48.047Z]  39 time=slice(period_start, period_end) +[2024-04-11T16:11:48.047Z]  40 )[variable], +[2024-04-11T16:11:48.047Z]  41 basin_contour, +[2024-04-11T16:11:48.047Z]  42 ).chunk(-1) +[2024-04-11T16:11:48.047Z]  43 else: +[2024-04-11T16:11:48.047Z] ---> 44 out[exp][variable] = average.average_shape( +[2024-04-11T16:11:48.047Z]  45  xr.open_zarr(mapper, consolidated=True) +[2024-04-11T16:11:48.048Z]  46  .sel(time=slice(period_start, period_end)) +[2024-04-11T16:11:48.048Z]  47  .reset_coords("height", drop=True)[variable], +[2024-04-11T16:11:48.048Z]  48  basin_contour, +[2024-04-11T16:11:48.048Z]  49  ).chunk(-1) +[2024-04-11T16:11:48.048Z]  51 # We can now extract the variables that we will need later: +[2024-04-11T16:11:48.048Z]  52 historical_tasmax = out["historical"]["tasmax"] +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) +[2024-04-11T16:11:48.048Z]  105 ds_sub = ds_copy.isel(indexer) +[2024-04-11T16:11:48.048Z]  107 # Compute the weights +[2024-04-11T16:11:48.048Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) +[2024-04-11T16:11:48.048Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. +[2024-04-11T16:11:48.048Z]  111 nonnull = ( +[2024-04-11T16:11:48.048Z]  112 savger.weights.data.nnz +[2024-04-11T16:11:48.048Z]  113 if isinstance(savger.weights, xr.DataArray) +[2024-04-11T16:11:48.048Z]  114 else savger.weights.nnz +[2024-04-11T16:11:48.048Z]  115 ) +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) +[2024-04-11T16:11:48.048Z]  1182 if isinstance(ds_in, xr.DataArray): +[2024-04-11T16:11:48.048Z]  1183 ds_in = ds_in._to_temp_dataset() +[2024-04-11T16:11:48.048Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) +[2024-04-11T16:11:48.048Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. +[2024-04-11T16:11:48.048Z]  1188 # Latitude and longitude coordinates are the polygon centroid. +[2024-04-11T16:11:48.048Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) +[2024-04-11T16:11:48.048Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) +[2024-04-11T16:11:48.048Z]  166 if need_bounds: +[2024-04-11T16:11:48.048Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) +[2024-04-11T16:11:48.048Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) +[2024-04-11T16:11:48.048Z]  169 add_corner(grid, lon_b.T, lat_b.T) +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) +[2024-04-11T16:11:48.048Z]  105 lat_bnds = ds.cf.get_bounds('latitude') +[2024-04-11T16:11:48.048Z]  107 # Convert from CF bounds to xESMF bounds. +[2024-04-11T16:11:48.048Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. +[2024-04-11T16:11:48.048Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) +[2024-04-11T16:11:48.048Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) +[2024-04-11T16:11:48.048Z]  111 return lon_b, lat_b +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) +[2024-04-11T16:11:48.048Z]  2400 filtered = [ +[2024-04-11T16:11:48.048Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs +[2024-04-11T16:11:48.048Z]  2402 ] +[2024-04-11T16:11:48.048Z]  2403 if len(filtered) > 1: +[2024-04-11T16:11:48.048Z] -> 2404 raise KeyError( +[2024-04-11T16:11:48.048Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " +[2024-04-11T16:11:48.048Z]  2406 ) +[2024-04-11T16:11:48.048Z]  2408 (crd_name,) = filtered +[2024-04-11T16:11:48.048Z]  2409 crd = variables[crd_name] +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ +[2024-04-11T16:11:48.048Z] Notebook cell execution failed +[2024-04-11T16:11:48.048Z] Cell 12: Cell execution caused an exception +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] Input: +[2024-04-11T16:11:48.048Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-04-11T16:11:48.048Z] # and make sure everything is consistent. +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] # Let's start with precipitation: +[2024-04-11T16:11:48.048Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-04-11T16:11:48.048Z] historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-04-11T16:11:48.048Z] future_pr = xclim.core.units.rate2amount(future_pr) +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] # Now we can actually convert units in absolute terms. +[2024-04-11T16:11:48.048Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") +[2024-04-11T16:11:48.048Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") +[2024-04-11T16:11:48.048Z] +[2024-04-11T16:11:48.048Z] # Now let's do temperature: +[2024-04-11T16:11:48.048Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") +[2024-04-11T16:11:48.049Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") +[2024-04-11T16:11:48.049Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") +[2024-04-11T16:11:48.049Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] Traceback: +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.049Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.049Z] Cell In[1], line 6 +[2024-04-11T16:11:48.049Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-04-11T16:11:48.049Z]  2 # and make sure everything is consistent. +[2024-04-11T16:11:48.049Z]  3 +[2024-04-11T16:11:48.049Z]  4 # Let's start with precipitation: +[2024-04-11T16:11:48.049Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-04-11T16:11:48.049Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-04-11T16:11:48.049Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) +[2024-04-11T16:11:48.049Z]  9 # Now we can actually convert units in absolute terms. +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] NameError: name 'historical_pr' is not defined +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ +[2024-04-11T16:11:48.049Z] Notebook cell execution failed +[2024-04-11T16:11:48.049Z] Cell 13: Cell execution caused an exception +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] Input: +[2024-04-11T16:11:48.049Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. +[2024-04-11T16:11:48.049Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-04-11T16:11:48.049Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-11T16:11:48.049Z] ref=ERA5_weather.pr, +[2024-04-11T16:11:48.049Z] hist=historical_pr, +[2024-04-11T16:11:48.049Z] nquantiles=50, +[2024-04-11T16:11:48.049Z] kind="+", +[2024-04-11T16:11:48.049Z] group=group_month_window, +[2024-04-11T16:11:48.049Z] ) +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Apply the correction factors on the reference period +[2024-04-11T16:11:48.049Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Apply the correction factors on the future period +[2024-04-11T16:11:48.049Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Ensure that the precipitation is non-negative, which can happen with some climate models +[2024-04-11T16:11:48.049Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) +[2024-04-11T16:11:48.049Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data +[2024-04-11T16:11:48.049Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-11T16:11:48.049Z] ref=ERA5_weather.tmax, +[2024-04-11T16:11:48.049Z] hist=historical_tasmax, +[2024-04-11T16:11:48.049Z] nquantiles=50, +[2024-04-11T16:11:48.049Z] kind="+", +[2024-04-11T16:11:48.049Z] group=group_month_window, +[2024-04-11T16:11:48.049Z] ) +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Apply the correction factors on the reference period +[2024-04-11T16:11:48.049Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Apply the correction factors on the future period +[2024-04-11T16:11:48.049Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data +[2024-04-11T16:11:48.049Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-11T16:11:48.049Z] ref=ERA5_weather.tmin, +[2024-04-11T16:11:48.049Z] hist=historical_tasmin, +[2024-04-11T16:11:48.049Z] nquantiles=50, +[2024-04-11T16:11:48.049Z] kind="+", +[2024-04-11T16:11:48.049Z] group=group_month_window, +[2024-04-11T16:11:48.049Z] ) +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Apply the correction factors on the reference period +[2024-04-11T16:11:48.049Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Apply the correction factors on the future period +[2024-04-11T16:11:48.049Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] Traceback: +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.049Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.049Z] Cell In[1], line 6 +[2024-04-11T16:11:48.049Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-04-11T16:11:48.049Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-04-11T16:11:48.049Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-11T16:11:48.049Z] ----> 6 ref=ERA5_weather.pr, +[2024-04-11T16:11:48.049Z]  7 hist=historical_pr, +[2024-04-11T16:11:48.049Z]  8 nquantiles=50, +[2024-04-11T16:11:48.049Z]  9 kind="+", +[2024-04-11T16:11:48.049Z]  10 group=group_month_window, +[2024-04-11T16:11:48.049Z]  11 ) +[2024-04-11T16:11:48.049Z]  13 # Apply the correction factors on the reference period +[2024-04-11T16:11:48.049Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] NameError: name 'ERA5_weather' is not defined +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ +[2024-04-11T16:11:48.049Z] Notebook cell execution failed +[2024-04-11T16:11:48.049Z] Cell 14: Cell execution caused an exception +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] Input: +[2024-04-11T16:11:48.049Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-04-11T16:11:48.049Z] ref_dataset = xr.merge( +[2024-04-11T16:11:48.049Z] [ +[2024-04-11T16:11:48.049Z] corrected_ref_precip.to_dataset(name="pr"), +[2024-04-11T16:11:48.049Z] corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-04-11T16:11:48.049Z] corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-04-11T16:11:48.049Z] ] +[2024-04-11T16:11:48.049Z] ) +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Write to temporary folder +[2024-04-11T16:11:48.049Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-04-11T16:11:48.049Z] ref_dataset.to_netcdf(fn_tmp_ref) +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Convert the future corrected data into netCDF file +[2024-04-11T16:11:48.049Z] fut_dataset = xr.merge( +[2024-04-11T16:11:48.049Z] [ +[2024-04-11T16:11:48.049Z] corrected_fut_precip.to_dataset(name="pr"), +[2024-04-11T16:11:48.049Z] corrected_fut_tasmax.to_dataset(name="tasmax"), +[2024-04-11T16:11:48.049Z] corrected_fut_tasmin.to_dataset(name="tasmin"), +[2024-04-11T16:11:48.049Z] ] +[2024-04-11T16:11:48.049Z] ) +[2024-04-11T16:11:48.049Z] # Write to temporary folder +[2024-04-11T16:11:48.049Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" +[2024-04-11T16:11:48.049Z] fut_dataset.to_netcdf(fn_tmp_fut) +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] # Write the data to disk to a temporary location for future use. +[2024-04-11T16:11:48.049Z] ref_dataset = xr.open_dataset(fn_tmp_ref) +[2024-04-11T16:11:48.049Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] fut_dataset = xr.open_dataset(fn_tmp_fut) +[2024-04-11T16:11:48.049Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] Traceback: +[2024-04-11T16:11:48.049Z] +[2024-04-11T16:11:48.049Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.049Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.049Z] Cell In[1], line 4 +[2024-04-11T16:11:48.049Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-04-11T16:11:48.049Z]  2 ref_dataset = xr.merge( +[2024-04-11T16:11:48.050Z]  3 [ +[2024-04-11T16:11:48.050Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), +[2024-04-11T16:11:48.050Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-04-11T16:11:48.050Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-04-11T16:11:48.050Z]  7 ] +[2024-04-11T16:11:48.050Z]  8 ) +[2024-04-11T16:11:48.050Z]  10 # Write to temporary folder +[2024-04-11T16:11:48.050Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] NameError: name 'corrected_ref_precip' is not defined +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ +[2024-04-11T16:11:48.050Z] Notebook cell execution failed +[2024-04-11T16:11:48.050Z] Cell 15: Cell execution caused an exception +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] Input: +[2024-04-11T16:11:48.050Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-04-11T16:11:48.050Z] # populate the fields for the HRU. +[2024-04-11T16:11:48.050Z] hru = {} +[2024-04-11T16:11:48.050Z] hru = dict( +[2024-04-11T16:11:48.050Z] area=all_properties["area"], +[2024-04-11T16:11:48.050Z] elevation=all_properties["elevation"], +[2024-04-11T16:11:48.050Z] latitude=all_properties["latitude"], +[2024-04-11T16:11:48.050Z] longitude=all_properties["longitude"], +[2024-04-11T16:11:48.050Z] hru_type="land", +[2024-04-11T16:11:48.050Z] ) +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-04-11T16:11:48.050Z] # will simply execute the model which has been pre-configured to run on this period. +[2024-04-11T16:11:48.050Z] start_date = dt.datetime(1981, 1, 1) +[2024-04-11T16:11:48.050Z] end_date = dt.datetime(1985, 12, 31) +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. +[2024-04-11T16:11:48.050Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] # Alternative variable names as described in the tutorial. +[2024-04-11T16:11:48.050Z] alt_names = { +[2024-04-11T16:11:48.050Z] "TEMP_MIN": "tmin", +[2024-04-11T16:11:48.050Z] "TEMP_MAX": "tmax", +[2024-04-11T16:11:48.050Z] "PRECIP": "pr", +[2024-04-11T16:11:48.050Z] } +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here +[2024-04-11T16:11:48.050Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. +[2024-04-11T16:11:48.050Z] data_kwds = { +[2024-04-11T16:11:48.050Z] "ALL": { +[2024-04-11T16:11:48.050Z] "elevation": hru["elevation"], +[2024-04-11T16:11:48.050Z] "latitude": hru["latitude"], +[2024-04-11T16:11:48.050Z] "longitude": hru["longitude"], +[2024-04-11T16:11:48.050Z] } +[2024-04-11T16:11:48.050Z] } +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] # Give a name to the simulation +[2024-04-11T16:11:48.050Z] run_name = "Paper_example_simulation" +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] # Setup the gauge object that includes meteorological data from ERA5 +[2024-04-11T16:11:48.050Z] gauge = [ +[2024-04-11T16:11:48.050Z] rc.Gauge.from_nc( +[2024-04-11T16:11:48.050Z] tmp +[2024-04-11T16:11:48.050Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-04-11T16:11:48.050Z] data_type=data_type, # Note that this is the list of all the variables +[2024-04-11T16:11:48.050Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-04-11T16:11:48.050Z] data_kwds=data_kwds, +[2024-04-11T16:11:48.050Z] ) +[2024-04-11T16:11:48.050Z] ] +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] # Read the streamflow from the HYSETS catchment data for this basin +[2024-04-11T16:11:48.050Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, +[2024-04-11T16:11:48.050Z] # and the optimizer will read it directly to calibrate. +[2024-04-11T16:11:48.050Z] eval_metrics = ("NASH_SUTCLIFFE",) +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] # Build the model configuration according to user preferences and inputs +[2024-04-11T16:11:48.050Z] model_config = GR4JCN( +[2024-04-11T16:11:48.050Z] ObservationData=discharge_data, +[2024-04-11T16:11:48.050Z] Gauge=gauge, +[2024-04-11T16:11:48.050Z] HRUs=[hru], +[2024-04-11T16:11:48.050Z] StartDate=start_date, +[2024-04-11T16:11:48.050Z] EndDate=end_date, +[2024-04-11T16:11:48.050Z] RunName=run_name, +[2024-04-11T16:11:48.050Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. +[2024-04-11T16:11:48.050Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. +[2024-04-11T16:11:48.050Z] ) +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] Traceback: +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.050Z] ValueError Traceback (most recent call last) +[2024-04-11T16:11:48.050Z] Cell In[1], line 42 +[2024-04-11T16:11:48.050Z]  38 run_name = "Paper_example_simulation" +[2024-04-11T16:11:48.050Z]  40 # Setup the gauge object that includes meteorological data from ERA5 +[2024-04-11T16:11:48.050Z]  41 gauge = [ +[2024-04-11T16:11:48.050Z] ---> 42 rc.Gauge.from_nc( +[2024-04-11T16:11:48.050Z]  43  tmp +[2024-04-11T16:11:48.050Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-04-11T16:11:48.050Z]  45  data_type=data_type, # Note that this is the list of all the variables +[2024-04-11T16:11:48.050Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-04-11T16:11:48.050Z]  47  data_kwds=data_kwds, +[2024-04-11T16:11:48.050Z]  48  ) +[2024-04-11T16:11:48.050Z]  49 ] +[2024-04-11T16:11:48.050Z]  51 # Read the streamflow from the HYSETS catchment data for this basin +[2024-04-11T16:11:48.050Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-04-11T16:11:48.050Z] +[2024-04-11T16:11:48.050Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-11T16:11:48.050Z]  751 forcings.difference_update(data) +[2024-04-11T16:11:48.050Z]  753 if len(data) == 0: +[2024-04-11T16:11:48.050Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-11T16:11:48.050Z]  756 # Default Gauge name +[2024-04-11T16:11:48.051Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] ValueError: No data found in netCDF files. +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ +[2024-04-11T16:11:48.051Z] Notebook cell execution failed +[2024-04-11T16:11:48.051Z] Cell 16: Cell execution caused an exception +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] Input: +[2024-04-11T16:11:48.051Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, +[2024-04-11T16:11:48.051Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. +[2024-04-11T16:11:48.051Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) +[2024-04-11T16:11:48.051Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. +[2024-04-11T16:11:48.051Z] random_seed = 42 +[2024-04-11T16:11:48.051Z] np.random.seed(random_seed) +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Build the optimizer object +[2024-04-11T16:11:48.051Z] spot_setup = SpotSetup( +[2024-04-11T16:11:48.051Z] config=model_config, +[2024-04-11T16:11:48.051Z] low=low, +[2024-04-11T16:11:48.051Z] high=high, +[2024-04-11T16:11:48.051Z] ) +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-04-11T16:11:48.051Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-04-11T16:11:48.051Z] max_iterations = 200 +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer +[2024-04-11T16:11:48.051Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most +[2024-04-11T16:11:48.051Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation +[2024-04-11T16:11:48.051Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small +[2024-04-11T16:11:48.051Z] # evaluation budgets. For more details on DDS, see: +[2024-04-11T16:11:48.051Z] # +[2024-04-11T16:11:48.051Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water +[2024-04-11T16:11:48.051Z] # Resources Research, 43(1) +[2024-04-11T16:11:48.051Z] sampler = spotpy.algorithms.dds( +[2024-04-11T16:11:48.051Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False +[2024-04-11T16:11:48.051Z] ) +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and +[2024-04-11T16:11:48.051Z] # the best overall value from all trials is returned. +[2024-04-11T16:11:48.051Z] sampler.sample(max_iterations, trials=1) +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Get the model diagnostics +[2024-04-11T16:11:48.051Z] diag = spot_setup.diagnostics +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Get all the values of each iteration +[2024-04-11T16:11:48.051Z] results = sampler.getdata() +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Get the raw resutlts directly in an array +[2024-04-11T16:11:48.051Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( +[2024-04-11T16:11:48.051Z] results +[2024-04-11T16:11:48.051Z] ) # Want to get the MAX NSE (change for min for RMSE) +[2024-04-11T16:11:48.051Z] best_model_run = list( +[2024-04-11T16:11:48.051Z] results[bestindex][0] +[2024-04-11T16:11:48.051Z] ) # Get the parameter set returning the best NSE +[2024-04-11T16:11:48.051Z] optimized_parameters = best_model_run[ +[2024-04-11T16:11:48.051Z] 1:-1 +[2024-04-11T16:11:48.051Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Display the parameter set ready to use in a future run: +[2024-04-11T16:11:48.051Z] print(optimized_parameters) +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] Traceback: +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.051Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.051Z] Cell In[1], line 12 +[2024-04-11T16:11:48.051Z]  8 np.random.seed(random_seed) +[2024-04-11T16:11:48.051Z]  10 # Build the optimizer object +[2024-04-11T16:11:48.051Z]  11 spot_setup = SpotSetup( +[2024-04-11T16:11:48.051Z] ---> 12 config=model_config, +[2024-04-11T16:11:48.051Z]  13 low=low, +[2024-04-11T16:11:48.051Z]  14 high=high, +[2024-04-11T16:11:48.051Z]  15 ) +[2024-04-11T16:11:48.051Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-04-11T16:11:48.051Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-04-11T16:11:48.051Z]  19 max_iterations = 200 +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] NameError: name 'model_config' is not defined +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ +[2024-04-11T16:11:48.051Z] Notebook cell execution failed +[2024-04-11T16:11:48.051Z] Cell 17: Cell execution caused an exception +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] Input: +[2024-04-11T16:11:48.051Z] # Copy the configuration of the previous model that we will modify for our validation: +[2024-04-11T16:11:48.051Z] model_validation = model_config.duplicate( +[2024-04-11T16:11:48.051Z] params=optimized_parameters, +[2024-04-11T16:11:48.051Z] StartDate=dt.datetime(1986, 1, 1), +[2024-04-11T16:11:48.051Z] EndDate=dt.datetime(1990, 12, 31), +[2024-04-11T16:11:48.051Z] SuppressOutput=False, +[2024-04-11T16:11:48.051Z] ) +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] sim_output = Emulator(config=model_validation).run() +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Get validation NSE (note we are counting the first year without warm-up) +[2024-04-11T16:11:48.051Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Plot the model output +[2024-04-11T16:11:48.051Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") +[2024-04-11T16:11:48.051Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-04-11T16:11:48.051Z] plt.legend() +[2024-04-11T16:11:48.051Z] plt.title("Validation period - NSE=" + str(NSE[0])) +[2024-04-11T16:11:48.051Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-11T16:11:48.051Z] plt.grid() +[2024-04-11T16:11:48.051Z] plt.show() +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] Traceback: +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.051Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.051Z] Cell In[1], line 2 +[2024-04-11T16:11:48.051Z]  1 # Copy the configuration of the previous model that we will modify for our validation: +[2024-04-11T16:11:48.051Z] ----> 2 model_validation = model_config.duplicate( +[2024-04-11T16:11:48.051Z]  3 params=optimized_parameters, +[2024-04-11T16:11:48.051Z]  4 StartDate=dt.datetime(1986, 1, 1), +[2024-04-11T16:11:48.051Z]  5 EndDate=dt.datetime(1990, 12, 31), +[2024-04-11T16:11:48.051Z]  6 SuppressOutput=False, +[2024-04-11T16:11:48.051Z]  7 ) +[2024-04-11T16:11:48.051Z]  9 sim_output = Emulator(config=model_validation).run() +[2024-04-11T16:11:48.051Z]  11 # Get validation NSE (note we are counting the first year without warm-up) +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] NameError: name 'model_config' is not defined +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ +[2024-04-11T16:11:48.051Z] Notebook cell execution failed +[2024-04-11T16:11:48.051Z] Cell 18: Cell execution caused an exception +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] Input: +[2024-04-11T16:11:48.051Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-04-11T16:11:48.051Z] gauge_ref = [ +[2024-04-11T16:11:48.051Z] rc.Gauge.from_nc( +[2024-04-11T16:11:48.051Z] tmp +[2024-04-11T16:11:48.051Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-11T16:11:48.051Z] data_type=data_type, +[2024-04-11T16:11:48.051Z] alt_names=alt_names, +[2024-04-11T16:11:48.051Z] data_kwds=data_kwds, +[2024-04-11T16:11:48.051Z] ) +[2024-04-11T16:11:48.051Z] ] +[2024-04-11T16:11:48.051Z] +[2024-04-11T16:11:48.051Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-11T16:11:48.051Z] model_config_reference = model_validation.duplicate( +[2024-04-11T16:11:48.051Z] Gauge=gauge_ref, +[2024-04-11T16:11:48.051Z] StartDate=reference_start_day +[2024-04-11T16:11:48.052Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-04-11T16:11:48.052Z] EndDate=reference_end_day, +[2024-04-11T16:11:48.052Z] ) +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] # Run the model from the configuration and get the outputs. +[2024-04-11T16:11:48.052Z] ref_output = Emulator(config=model_config_reference).run() +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] # Plot the model output. Note that both simulations should have similar hydrological +[2024-04-11T16:11:48.052Z] # regime but day-to-day variability is not expected to match. +[2024-04-11T16:11:48.052Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") +[2024-04-11T16:11:48.052Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-04-11T16:11:48.052Z] plt.legend() +[2024-04-11T16:11:48.052Z] plt.title("Reference period") +[2024-04-11T16:11:48.052Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-11T16:11:48.052Z] plt.grid() +[2024-04-11T16:11:48.052Z] plt.show() +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] Traceback: +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.052Z] ValueError Traceback (most recent call last) +[2024-04-11T16:11:48.052Z] Cell In[1], line 3 +[2024-04-11T16:11:48.052Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-04-11T16:11:48.052Z]  2 gauge_ref = [ +[2024-04-11T16:11:48.052Z] ----> 3 rc.Gauge.from_nc( +[2024-04-11T16:11:48.052Z]  4  tmp +[2024-04-11T16:11:48.052Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-11T16:11:48.052Z]  6  data_type=data_type, +[2024-04-11T16:11:48.052Z]  7  alt_names=alt_names, +[2024-04-11T16:11:48.052Z]  8  data_kwds=data_kwds, +[2024-04-11T16:11:48.052Z]  9  ) +[2024-04-11T16:11:48.052Z]  10 ] +[2024-04-11T16:11:48.052Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-11T16:11:48.052Z]  13 model_config_reference = model_validation.duplicate( +[2024-04-11T16:11:48.052Z]  14 Gauge=gauge_ref, +[2024-04-11T16:11:48.052Z]  15 StartDate=reference_start_day +[2024-04-11T16:11:48.052Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-04-11T16:11:48.052Z]  17 EndDate=reference_end_day, +[2024-04-11T16:11:48.052Z]  18 ) +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-11T16:11:48.052Z]  751 forcings.difference_update(data) +[2024-04-11T16:11:48.052Z]  753 if len(data) == 0: +[2024-04-11T16:11:48.052Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-11T16:11:48.052Z]  756 # Default Gauge name +[2024-04-11T16:11:48.052Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] ValueError: No data found in netCDF files. +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ +[2024-04-11T16:11:48.052Z] Notebook cell execution failed +[2024-04-11T16:11:48.052Z] Cell 19: Cell execution caused an exception +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] Input: +[2024-04-11T16:11:48.052Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-04-11T16:11:48.052Z] gauge_fut = [ +[2024-04-11T16:11:48.052Z] rc.Gauge.from_nc( +[2024-04-11T16:11:48.052Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-11T16:11:48.052Z] data_type=data_type, +[2024-04-11T16:11:48.052Z] alt_names=alt_names, +[2024-04-11T16:11:48.052Z] data_kwds=data_kwds, +[2024-04-11T16:11:48.052Z] ) +[2024-04-11T16:11:48.052Z] ] +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-11T16:11:48.052Z] model_config_future = model_validation.duplicate( +[2024-04-11T16:11:48.052Z] Gauge=gauge_fut, +[2024-04-11T16:11:48.052Z] StartDate=future_start_day + dt.timedelta(days=1), +[2024-04-11T16:11:48.052Z] EndDate=future_end_day, +[2024-04-11T16:11:48.052Z] ObservationData=None, # There are no observations for the future period. +[2024-04-11T16:11:48.052Z] ) +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] # Run the model and get the outputs and hydrographs. +[2024-04-11T16:11:48.052Z] fut_output = Emulator(config=model_config_future).run() +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] # Plot the model output +[2024-04-11T16:11:48.052Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") +[2024-04-11T16:11:48.052Z] plt.legend() +[2024-04-11T16:11:48.052Z] plt.title("Future period") +[2024-04-11T16:11:48.052Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-11T16:11:48.052Z] plt.grid() +[2024-04-11T16:11:48.052Z] plt.show() +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] Traceback: +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.052Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.052Z] ValueError Traceback (most recent call last) +[2024-04-11T16:11:48.052Z] Cell In[1], line 3 +[2024-04-11T16:11:48.052Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-04-11T16:11:48.052Z]  2 gauge_fut = [ +[2024-04-11T16:11:48.052Z] ----> 3 rc.Gauge.from_nc( +[2024-04-11T16:11:48.052Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-11T16:11:48.052Z]  5  data_type=data_type, +[2024-04-11T16:11:48.052Z]  6  alt_names=alt_names, +[2024-04-11T16:11:48.052Z]  7  data_kwds=data_kwds, +[2024-04-11T16:11:48.052Z]  8  ) +[2024-04-11T16:11:48.052Z]  9 ] +[2024-04-11T16:11:48.052Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-11T16:11:48.052Z]  12 model_config_future = model_validation.duplicate( +[2024-04-11T16:11:48.052Z]  13 Gauge=gauge_fut, +[2024-04-11T16:11:48.052Z]  14 StartDate=future_start_day + dt.timedelta(days=1), +[2024-04-11T16:11:48.052Z]  15 EndDate=future_end_day, +[2024-04-11T16:11:48.052Z]  16 ObservationData=None, # There are no observations for the future period. +[2024-04-11T16:11:48.052Z]  17 ) +[2024-04-11T16:11:48.052Z] +[2024-04-11T16:11:48.053Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-11T16:11:48.053Z]  751 forcings.difference_update(data) +[2024-04-11T16:11:48.053Z]  753 if len(data) == 0: +[2024-04-11T16:11:48.053Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-11T16:11:48.053Z]  756 # Default Gauge name +[2024-04-11T16:11:48.053Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-11T16:11:48.053Z] +[2024-04-11T16:11:48.053Z] ValueError: No data found in netCDF files. +[2024-04-11T16:11:48.053Z] +[2024-04-11T16:11:48.053Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ +[2024-04-11T16:11:48.053Z] Notebook cell execution failed +[2024-04-11T16:11:48.053Z] Cell 20: Cell execution caused an exception +[2024-04-11T16:11:48.053Z] +[2024-04-11T16:11:48.053Z] Input: +[2024-04-11T16:11:48.053Z] # Extract the mean annual hydrograph for each simulation. +[2024-04-11T16:11:48.053Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-11T16:11:48.053Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-11T16:11:48.053Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-11T16:11:48.053Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-11T16:11:48.053Z] +[2024-04-11T16:11:48.054Z] # Plot the model output +[2024-04-11T16:11:48.054Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") +[2024-04-11T16:11:48.054Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") +[2024-04-11T16:11:48.054Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") +[2024-04-11T16:11:48.054Z] future_flows.plot(color="red", label="Future", x="dayofyear") +[2024-04-11T16:11:48.054Z] plt.legend() +[2024-04-11T16:11:48.054Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-11T16:11:48.054Z] plt.xlabel("Day of year") +[2024-04-11T16:11:48.054Z] plt.xlim([0, 365]) +[2024-04-11T16:11:48.054Z] plt.title("Comparison of mean annual hydrographs") +[2024-04-11T16:11:48.054Z] plt.grid() +[2024-04-11T16:11:48.054Z] plt.show() +[2024-04-11T16:11:48.054Z] +[2024-04-11T16:11:48.054Z] Traceback: +[2024-04-11T16:11:48.054Z] +[2024-04-11T16:11:48.054Z] --------------------------------------------------------------------------- +[2024-04-11T16:11:48.054Z] NameError Traceback (most recent call last) +[2024-04-11T16:11:48.054Z] Cell In[1], line 2 +[2024-04-11T16:11:48.054Z]  1 # Extract the mean annual hydrograph for each simulation. +[2024-04-11T16:11:48.054Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-11T16:11:48.054Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-11T16:11:48.054Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-11T16:11:48.054Z] +[2024-04-11T16:11:48.054Z] NameError: name 'ref_output' is not defined +[2024-04-11T16:11:48.054Z] +[2024-04-11T16:11:48.054Z] =========================== short test summary info ============================ +[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 +[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 +[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 +[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 +[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 +[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 +[2024-04-11T16:11:48.055Z] ================== 27 failed, 215 passed in 922.59s (0:15:22) ================== +[2024-04-11T16:11:48.055Z] + EXIT_CODE=1 +[2024-04-11T16:11:48.055Z] + echo true +[2024-04-11T16:11:48.055Z] + tr [:upper:] [:lower:] +[2024-04-11T16:11:48.056Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-04-11T16:11:48.056Z] + [ xtrue = xtrue ] +[2024-04-11T16:11:48.056Z] + mkdir -p buildout +[2024-04-11T16:11:48.056Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-04-11T16:11:48.056Z] + filename=Region_selection.ipynb +[2024-04-11T16:11:48.056Z] + echo Region_selection.ipynb +[2024-04-11T16:11:48.056Z] + sed s/.ipynb$// +[2024-04-11T16:11:48.056Z] + filename=Region_selection +[2024-04-11T16:11:48.056Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-04-11T16:11:48.056Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-04-11T16:11:48.056Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-04-11T16:12:00.270Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb +[2024-04-11T16:12:00.270Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-04-11T16:12:00.270Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-04-11T16:12:00.270Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-04-11T16:12:00.270Z] + sed s/.ipynb$// +[2024-04-11T16:12:00.270Z] + filename=Subset_climate_data_over_watershed +[2024-04-11T16:12:00.270Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-04-11T16:12:00.270Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-04-11T16:12:00.270Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-04-11T16:12:18.394Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-04-11T16:12:18.394Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-04-11T16:12:18.394Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-04-11T16:12:18.394Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-04-11T16:12:18.394Z] + sed s/.ipynb$// +[2024-04-11T16:12:18.394Z] + filename=00_Introduction_to_JupyterLab +[2024-04-11T16:12:18.394Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-04-11T16:12:18.394Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-04-11T16:12:19.327Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-04-11T16:12:21.861Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-04-11T16:12:21.861Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-04-11T16:12:21.861Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-04-11T16:12:21.861Z] + sed s/.ipynb$// +[2024-04-11T16:12:21.861Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-04-11T16:12:21.861Z] + filename=01_Getting_watershed_boundaries +[2024-04-11T16:12:21.861Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-04-11T16:12:21.861Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-04-11T16:12:23.771Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-04-11T16:12:36.051Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-04-11T16:12:36.051Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-04-11T16:12:36.051Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-04-11T16:12:36.051Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-04-11T16:12:36.051Z] + sed s/.ipynb$// +[2024-04-11T16:12:36.051Z] + filename=02_Extract_geographical_watershed_properties +[2024-04-11T16:12:36.051Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-04-11T16:12:36.051Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-04-11T16:12:36.051Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-04-11T16:12:50.968Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-04-11T16:12:50.968Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-04-11T16:12:50.968Z] + filename=03_Extracting_forcing_data.ipynb +[2024-04-11T16:12:50.968Z] + echo 03_Extracting_forcing_data.ipynb +[2024-04-11T16:12:50.968Z] + sed s/.ipynb$// +[2024-04-11T16:12:50.968Z] + filename=03_Extracting_forcing_data +[2024-04-11T16:12:50.968Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-04-11T16:12:50.968Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-04-11T16:12:52.367Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-04-11T16:14:43.960Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-04-11T16:14:43.960Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-04-11T16:14:43.960Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-04-11T16:14:43.960Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-04-11T16:14:43.960Z] + sed s/.ipynb$// +[2024-04-11T16:14:43.960Z] + filename=04_Emulating_hydrological_models +[2024-04-11T16:14:43.960Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-04-11T16:14:43.960Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-04-11T16:14:43.961Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-04-11T16:14:58.899Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-04-11T16:14:58.899Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-04-11T16:14:58.899Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-04-11T16:14:58.899Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-04-11T16:14:58.899Z] + sed s/.ipynb$// +[2024-04-11T16:14:58.899Z] + filename=05_Advanced_RavenPy_configuration +[2024-04-11T16:14:58.899Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-04-11T16:14:58.899Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-04-11T16:15:00.330Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-04-11T16:15:22.428Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-04-11T16:15:22.428Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-04-11T16:15:22.428Z] + filename=06_Raven_calibration.ipynb +[2024-04-11T16:15:22.428Z] + echo 06_Raven_calibration.ipynb +[2024-04-11T16:15:22.428Z] + sed s/.ipynb$// +[2024-04-11T16:15:22.428Z] + filename=06_Raven_calibration +[2024-04-11T16:15:22.428Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-04-11T16:15:22.428Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-04-11T16:15:22.428Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-04-11T16:15:34.694Z] [NbConvertApp] Writing 24172 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-04-11T16:15:34.694Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-04-11T16:15:34.694Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-04-11T16:15:34.694Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-04-11T16:15:34.694Z] + sed s/.ipynb$// +[2024-04-11T16:15:34.694Z] + filename=07_Making_and_using_hotstart_files +[2024-04-11T16:15:34.694Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-04-11T16:15:34.694Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-04-11T16:15:34.954Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-04-11T16:15:50.005Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-04-11T16:15:50.005Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-11T16:15:50.005Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-11T16:15:50.005Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-11T16:15:50.005Z] + sed s/.ipynb$// +[2024-04-11T16:15:50.005Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-04-11T16:15:50.005Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-04-11T16:15:50.005Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-11T16:15:50.276Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-04-11T16:20:26.970Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-04-11T16:20:26.970Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-11T16:20:26.970Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-11T16:20:26.970Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-11T16:20:26.970Z] + sed s/.ipynb$// +[2024-04-11T16:20:26.970Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-04-11T16:20:26.970Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-04-11T16:20:26.970Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-11T16:20:26.970Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-04-11T16:20:39.280Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-04-11T16:20:39.280Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-04-11T16:20:39.280Z] + filename=10_Data_assimilation.ipynb +[2024-04-11T16:20:39.280Z] + sed s/.ipynb$// +[2024-04-11T16:20:39.280Z] + echo 10_Data_assimilation.ipynb +[2024-04-11T16:20:39.280Z] + filename=10_Data_assimilation +[2024-04-11T16:20:39.280Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-04-11T16:20:39.280Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-04-11T16:20:40.663Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-04-11T16:22:02.313Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-04-11T16:22:02.313Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-04-11T16:22:02.313Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-04-11T16:22:02.313Z] + sed s/.ipynb$// +[2024-04-11T16:22:02.313Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-04-11T16:22:02.313Z] + filename=11_Climatological_ESP_forecasting +[2024-04-11T16:22:02.313Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-04-11T16:22:02.313Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-04-11T16:22:02.313Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-04-11T16:22:49.239Z] [NbConvertApp] Writing 556869 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-04-11T16:22:49.239Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-04-11T16:22:49.239Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-04-11T16:22:49.239Z] + sed s/.ipynb$// +[2024-04-11T16:22:49.239Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-04-11T16:22:49.239Z] + filename=12_Performing_hindcasting_experiments +[2024-04-11T16:22:49.239Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-04-11T16:22:49.239Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-04-11T16:22:49.239Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-04-11T16:23:07.408Z] [NbConvertApp] Writing 298315 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-04-11T16:23:07.408Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-04-11T16:23:07.408Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-04-11T16:23:07.408Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-04-11T16:23:07.408Z] + sed s/.ipynb$// +[2024-04-11T16:23:07.408Z] + filename=Assess_probabilistic_flood_risk +[2024-04-11T16:23:07.408Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-04-11T16:23:07.408Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-04-11T16:23:08.368Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-04-11T16:23:40.562Z] [NbConvertApp] Writing 549251 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-04-11T16:23:40.562Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-11T16:23:40.562Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-11T16:23:40.562Z] + sed s/.ipynb$// +[2024-04-11T16:23:40.562Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-11T16:23:40.562Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-04-11T16:23:40.562Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-04-11T16:23:40.562Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-11T16:23:40.562Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-04-11T16:24:12.709Z] [NbConvertApp] Writing 748453 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-04-11T16:24:12.709Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-04-11T16:24:12.709Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-04-11T16:24:12.709Z] + echo Distributed_hydrological_modelling.ipynb +[2024-04-11T16:24:12.709Z] + sed s/.ipynb$// +[2024-04-11T16:24:12.709Z] + filename=Distributed_hydrological_modelling +[2024-04-11T16:24:12.709Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-04-11T16:24:12.709Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-04-11T16:24:13.279Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-04-11T16:24:45.392Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-04-11T16:24:45.392Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-04-11T16:24:45.393Z] + filename=HydroShare_integration.ipynb +[2024-04-11T16:24:45.393Z] + sed s/.ipynb$// +[2024-04-11T16:24:45.393Z] + echo HydroShare_integration.ipynb +[2024-04-11T16:24:45.393Z] + filename=HydroShare_integration +[2024-04-11T16:24:45.393Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-04-11T16:24:45.393Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-04-11T16:24:47.305Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-04-11T16:24:52.593Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb +[2024-04-11T16:24:52.593Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-04-11T16:24:52.593Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-04-11T16:24:52.593Z] + echo Hydrological_realtime_forecasting.ipynb +[2024-04-11T16:24:52.593Z] + sed s/.ipynb$// +[2024-04-11T16:24:52.593Z] + filename=Hydrological_realtime_forecasting +[2024-04-11T16:24:52.593Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-04-11T16:24:52.593Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-04-11T16:24:53.547Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-04-11T16:25:15.498Z] [NbConvertApp] Writing 306660 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-04-11T16:25:15.498Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-04-11T16:25:15.498Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-04-11T16:25:15.498Z] + echo Managing_Jupyter_Environments.ipynb +[2024-04-11T16:25:15.498Z] + sed s/.ipynb$// +[2024-04-11T16:25:15.498Z] + filename=Managing_Jupyter_Environments +[2024-04-11T16:25:15.498Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-04-11T16:25:15.498Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-04-11T16:25:16.961Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-04-11T16:25:26.931Z] [NbConvertApp] Writing 7997 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-04-11T16:25:26.931Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-04-11T16:25:26.931Z] + filename=Perform_Regionalization.ipynb +[2024-04-11T16:25:26.931Z] + echo Perform_Regionalization.ipynb +[2024-04-11T16:25:26.931Z] + sed s/.ipynb$// +[2024-04-11T16:25:26.931Z] + filename=Perform_Regionalization +[2024-04-11T16:25:26.931Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-04-11T16:25:26.931Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-04-11T16:25:28.308Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-04-11T16:26:00.368Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-04-11T16:26:00.368Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-11T16:26:00.368Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-11T16:26:00.368Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-11T16:26:00.368Z] + sed s/.ipynb$// +[2024-04-11T16:26:00.368Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-04-11T16:26:00.368Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-04-11T16:26:00.368Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-11T16:26:00.368Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-04-11T16:26:15.262Z] [NbConvertApp] Writing 117971 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-04-11T16:26:15.262Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-04-11T16:26:15.262Z] + filename=Sensitivity_analysis.ipynb +[2024-04-11T16:26:15.262Z] + echo Sensitivity_analysis.ipynb +[2024-04-11T16:26:15.262Z] + sed s/.ipynb$// +[2024-04-11T16:26:15.262Z] + filename=Sensitivity_analysis +[2024-04-11T16:26:15.262Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-04-11T16:26:15.262Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-04-11T16:26:15.530Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-04-11T16:26:33.615Z] [NbConvertApp] Writing 35133 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-04-11T16:26:33.615Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-04-11T16:26:33.615Z] + filename=time_series_analysis.ipynb +[2024-04-11T16:26:33.615Z] + + sed s/.ipynb$// +[2024-04-11T16:26:33.615Z] echo time_series_analysis.ipynb +[2024-04-11T16:26:33.615Z] + filename=time_series_analysis +[2024-04-11T16:26:33.615Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-04-11T16:26:33.615Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-04-11T16:26:35.517Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-04-11T16:26:50.407Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb +[2024-04-11T16:26:50.407Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-11T16:26:50.407Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-11T16:26:50.407Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-11T16:26:50.407Z] + sed s/.ipynb$// +[2024-04-11T16:26:50.407Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-04-11T16:26:50.407Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-04-11T16:26:50.407Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-11T16:26:50.407Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-04-11T16:28:26.832Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-04-11T16:28:26.832Z] + exit 1 +[2024-04-11T16:28:26.832Z] + EXIT_CODE=1 +[2024-04-11T16:28:26.832Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-04-11T16:28:26.832Z] + mkdir -p buildout/env-dump +[2024-04-11T16:28:26.832Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-04-11T16:28:26.832Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-04-11T16:28:26.832Z] + conda env export -n birdy +[2024-04-11T16:28:33.395Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-11T16:28:33.395Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-11T16:28:33.395Z] + conda list -n birdy --explicit +[2024-04-11T16:28:43.448Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-11T16:28:43.448Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-11T16:28:43.448Z] + pip freeze +[2024-04-11T16:28:43.448Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -2018,41 +2018,41 @@ $ docker top 9c8a3357bc15ed4ff2a5faf012a247ff2e4ecf5c42b9b2d708a1e060347bede9 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-03T00:26:47.750Z] Archiving artifacts -[2024-04-03T00:26:47.853Z] Recording fingerprints +[2024-04-11T16:28:45.480Z] Archiving artifacts +[2024-04-11T16:28:45.655Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:47.965Z] Archiving artifacts -[2024-04-03T00:26:50.113Z] Recording fingerprints +[2024-04-11T16:28:45.785Z] Archiving artifacts +[2024-04-11T16:28:48.028Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:50.989Z] Archiving artifacts -[2024-04-03T00:26:51.005Z] Recording fingerprints +[2024-04-11T16:28:49.030Z] Archiving artifacts +[2024-04-11T16:28:49.091Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:51.509Z] Archiving artifacts -[2024-04-03T00:26:51.535Z] Recording fingerprints +[2024-04-11T16:28:49.238Z] Archiving artifacts +[2024-04-11T16:28:49.392Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:51.971Z] Archiving artifacts -[2024-04-03T00:26:51.996Z] Recording fingerprints +[2024-04-11T16:28:49.840Z] Archiving artifacts +[2024-04-11T16:28:49.869Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:52.282Z] Archiving artifacts -[2024-04-03T00:26:52.320Z] Recording fingerprints +[2024-04-11T16:28:49.959Z] Archiving artifacts +[2024-04-11T16:28:49.999Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:54.447Z] Archiving artifacts -[2024-04-03T00:26:54.462Z] Recording fingerprints +[2024-04-11T16:28:50.440Z] Archiving artifacts +[2024-04-11T16:28:50.458Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:54.718Z] Archiving artifacts -[2024-04-03T00:26:54.759Z] Recording fingerprints +[2024-04-11T16:28:50.717Z] Archiving artifacts +[2024-04-11T16:28:50.761Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:55.153Z] Archiving artifacts -[2024-04-03T00:26:55.555Z] Recording fingerprints +[2024-04-11T16:28:50.872Z] Archiving artifacts +[2024-04-11T16:28:51.331Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:55.981Z] Archiving artifacts -[2024-04-03T00:26:56.420Z] Recording fingerprints +[2024-04-11T16:28:51.414Z] Archiving artifacts +[2024-04-11T16:28:51.879Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-03T00:26:59.234Z] Archiving artifacts -[2024-04-03T00:26:59.249Z] Recording fingerprints +[2024-04-11T16:28:54.121Z] Archiving artifacts +[2024-04-11T16:28:54.147Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-04-03T00:27:00.176Z] Sending e-mails to: vu.long@ouranos.ca +[2024-04-11T16:28:54.409Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -2062,8 +2062,8 @@ $ docker top 9c8a3357bc15ed4ff2a5faf012a247ff2e4ecf5c42b9b2d708a1e060347bede9 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 9c8a3357bc15ed4ff2a5faf012a247ff2e4ecf5c42b9b2d708a1e060347bede9 -$ docker rm -f 9c8a3357bc15ed4ff2a5faf012a247ff2e4ecf5c42b9b2d708a1e060347bede9 +$ docker stop --time=1 08458e3617288787ce7ba47a580b094b7d640d230fb137d8a2e0d08df3b2c1d1 +$ docker rm -f 08458e3617288787ce7ba47a580b094b7d640d230fb137d8a2e0d08df3b2c1d1 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 11 Apr 2024 13:36:13 -0400 Subject: [PATCH 064/104] release: update to use image pavics/workflow-tests:py310-240411 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 07cbf6f..cead70f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-240404" + image "pavics/workflow-tests:py310-240411" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 29b46df..6edf09c 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-240404 +FROM pavics/workflow-tests:py310-240411 USER root diff --git a/launchcontainer b/launchcontainer index 975bea3..4dd7f83 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240404" + DOCKER_IMAGE="pavics/workflow-tests:py310-240411" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 8d07b06..cc81048 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240404" + DOCKER_IMAGE="pavics/workflow-tests:py310-240411" fi if [ -z "$CONTAINER_NAME" ]; then From d3e072db9ededdddd163156a845850ca6caeafd6 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 11 Apr 2024 23:48:50 -0400 Subject: [PATCH 065/104] docker: py310-240411: build log --- docker/saved_buildout/docker-buildlogs.txt | 12084 +++++++++---------- 1 file changed, 6039 insertions(+), 6045 deletions(-) diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index cac78f9..4c16705 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,6045 +1,6039 @@ -2024-04-05T03:30:38Z Building in Docker Cloud's infrastructure... -2024-04-05T03:30:38Z Cloning into '.'... -2024-04-05T03:30:39Z Warning: Permanently added the RSA host key for IP address '140.82.113.4' to the list of known hosts. -2024-04-05T03:30:40Z Switched to a new branch 'docker-py310-240404' -2024-04-05T03:30:40Z KernelVersion: 5.4.0-1068-aws -2024-04-05T03:30:40Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-04-05T03:30:40Z Arch: amd64 -2024-04-05T03:30:40Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-04-05T03:30:40Z ApiVersion: 1.41 -2024-04-05T03:30:40Z Platform: {u'Name': u'Docker Engine - Community'} -2024-04-05T03:30:40Z Version: 20.10.15 -2024-04-05T03:30:40Z MinAPIVersion: 1.12 -2024-04-05T03:30:40Z GitCommit: 4433bf6 -2024-04-05T03:30:40Z Os: linux -2024-04-05T03:30:40Z GoVersion: go1.17.9 -2024-04-05T03:30:40Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240404... -2024-04-05T03:30:45Z #1 [internal] load build definition from Dockerfile -2024-04-05T03:30:45Z #1 transferring dockerfile: 6.99kB done -2024-04-05T03:30:45Z #1 DONE 0.1s -2024-04-05T03:30:45Z -2024-04-05T03:30:45Z #2 [internal] load .dockerignore -2024-04-05T03:30:45Z #2 transferring context: 2B done -2024-04-05T03:30:45Z #2 DONE 0.1s -2024-04-05T03:30:45Z -2024-04-05T03:30:45Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-04-05T03:30:46Z #3 ... -2024-04-05T03:30:46Z -2024-04-05T03:30:46Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-04-05T03:30:46Z #4 DONE 0.0s -2024-04-05T03:30:46Z -2024-04-05T03:30:46Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-04-05T03:30:46Z #3 DONE 0.6s -2024-04-05T03:30:46Z -2024-04-05T03:30:46Z #5 [internal] load build context -2024-04-05T03:30:46Z #5 transferring context: 9.58kB done -2024-04-05T03:30:46Z #5 DONE 0.0s -2024-04-05T03:30:46Z -2024-04-05T03:30:46Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-05T03:30:46Z #6 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 0.0s done -2024-04-05T03:30:46Z #6 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done -2024-04-05T03:30:46Z #6 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done -2024-04-05T03:30:46Z #6 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done -2024-04-05T03:30:46Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 0B / 31.42MB 0.1s -2024-04-05T03:30:46Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s -2024-04-05T03:30:46Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.1s -2024-04-05T03:30:46Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 6.30MB / 31.42MB 0.3s -2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 10.07MB / 31.42MB 0.4s -2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 4.19MB / 50.08MB 0.4s -2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 11.53MB / 50.08MB 0.5s -2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 16.02MB / 31.42MB 0.7s -2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 18.87MB / 50.08MB 0.7s -2024-04-05T03:30:47Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.68MB / 147.31MB 0.7s -2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 22.02MB / 31.42MB 0.8s -2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 25.17MB / 31.42MB 0.9s -2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 27.26MB / 50.08MB 0.9s -2024-04-05T03:30:47Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.1s -2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 37.75MB / 50.08MB 1.1s -2024-04-05T03:30:47Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 30.39MB / 147.31MB 1.1s -2024-04-05T03:30:47Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 44.04MB / 50.08MB 1.2s -2024-04-05T03:30:48Z #6 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.3s done -2024-04-05T03:30:48Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.4s -2024-04-05T03:30:48Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 53.98MB / 147.31MB 1.4s -2024-04-05T03:30:48Z #6 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.6s done -2024-04-05T03:30:48Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 63.96MB / 147.31MB 1.6s -2024-04-05T03:30:48Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 -2024-04-05T03:30:48Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 75.50MB / 147.31MB 2.3s -2024-04-05T03:30:49Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 85.59MB / 147.31MB 2.7s -2024-04-05T03:30:49Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 99.61MB / 147.31MB 3.2s -2024-04-05T03:30:50Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 113.25MB / 147.31MB 3.6s -2024-04-05T03:30:50Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 121.63MB / 147.31MB 3.8s -2024-04-05T03:30:50Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 132.12MB / 147.31MB 4.1s -2024-04-05T03:30:51Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 140.51MB / 147.31MB 4.5s -2024-04-05T03:30:52Z #6 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 6.2s done -2024-04-05T03:30:53Z #6 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 4.9s done -2024-04-05T03:30:53Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 -2024-04-05T03:30:58Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.1s -2024-04-05T03:30:59Z #6 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.2s done -2024-04-05T03:31:00Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0.1s -2024-04-05T03:31:05Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.2s -2024-04-05T03:31:10Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.2s -2024-04-05T03:31:14Z #6 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.0s done -2024-04-05T03:31:14Z #6 ... -2024-04-05T03:31:14Z -2024-04-05T03:31:14Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-04-05T03:31:15Z #7 1.585 Channels: -2024-04-05T03:31:15Z #7 1.585 - defaults -2024-04-05T03:31:15Z #7 1.585 Platform: linux-64 -2024-04-05T03:31:20Z #7 1.585 Collecting package metadata (repodata.json): ...working... done -2024-04-05T03:31:20Z #7 5.824 Solving environment: ...working... done -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 ## Package Plan ## -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 environment location: /opt/conda -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 added / updated specs: -2024-04-05T03:31:20Z #7 6.137 - conda -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 The following packages will be downloaded: -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 package | build -2024-04-05T03:31:20Z #7 6.137 ---------------------------|----------------- -2024-04-05T03:31:20Z #7 6.137 archspec-0.2.3 | pyhd3eb1b0_0 47 KB -2024-04-05T03:31:20Z #7 6.137 ca-certificates-2024.3.11 | h06a4308_0 127 KB -2024-04-05T03:31:20Z #7 6.137 conda-24.3.0 | py311h06a4308_0 1.2 MB -2024-04-05T03:31:20Z #7 6.137 ------------------------------------------------------------ -2024-04-05T03:31:20Z #7 6.137 Total: 1.4 MB -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 The following packages will be UPDATED: -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 archspec 0.2.1-pyhd3eb1b0_0 --> 0.2.3-pyhd3eb1b0_0 -2024-04-05T03:31:20Z #7 6.137 ca-certificates 2023.12.12-h06a4308_0 --> 2024.3.11-h06a4308_0 -2024-04-05T03:31:20Z #7 6.137 conda 24.1.2-py311h06a4308_0 --> 24.3.0-py311h06a4308_0 -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 -2024-04-05T03:31:20Z #7 6.137 Proceed ([y]/n)? -2024-04-05T03:31:21Z #7 6.679 -2024-04-05T03:31:21Z #7 6.679 Downloading and Extracting Packages: ...working... done -2024-04-05T03:31:21Z #7 6.679 Preparing transaction: ...working... done -2024-04-05T03:31:21Z #7 6.740 Verifying transaction: ...working... done -2024-04-05T03:31:24Z #7 6.959 Executing transaction: ...working... done -2024-04-05T03:31:26Z #7 11.66 Channels: -2024-04-05T03:31:26Z #7 11.66 - conda-forge -2024-04-05T03:31:26Z #7 11.66 - defaults -2024-04-05T03:31:26Z #7 11.66 Platform: linux-64 -2024-04-05T03:31:52Z #7 11.66 Collecting package metadata (repodata.json): ...working... done -2024-04-05T03:31:54Z #7 37.90 Solving environment: ...working... done -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 ## Package Plan ## -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 environment location: /opt/conda -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 added / updated specs: -2024-04-05T03:31:54Z #7 40.07 - conda-pack -2024-04-05T03:31:54Z #7 40.07 - mamba -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 The following packages will be downloaded: -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 package | build -2024-04-05T03:31:54Z #7 40.07 ---------------------------|----------------- -2024-04-05T03:31:54Z #7 40.07 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 c-ares-1.28.1 | hd590300_0 165 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 conda-24.3.0 | py311h38be061_0 1.2 MB conda-forge -2024-04-05T03:31:54Z #7 40.07 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-04-05T03:31:54Z #7 40.07 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge -2024-04-05T03:31:54Z #7 40.07 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 libcurl-8.7.1 | hca28451_0 389 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge -2024-04-05T03:31:54Z #7 40.07 libmambapy-1.5.8 | py311hf2555c7_0 304 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 libssh2-1.11.0 | h0841786_0 265 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge -2024-04-05T03:31:54Z #7 40.07 libxml2-2.12.6 | h232c23b_1 689 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 lzo-2.10 | h516909a_1000 314 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 mamba-1.5.8 | py311h3072747_0 65 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge -2024-04-05T03:31:54Z #7 40.07 python_abi-3.11 | 2_cp311 5 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-04-05T03:31:54Z #7 40.07 ------------------------------------------------------------ -2024-04-05T03:31:54Z #7 40.07 Total: 28.0 MB -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 The following NEW packages will be INSTALLED: -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 -2024-04-05T03:31:54Z #7 40.07 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 -2024-04-05T03:31:54Z #7 40.07 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-04-05T03:31:54Z #7 40.07 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-04-05T03:31:54Z #7 40.07 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 -2024-04-05T03:31:54Z #7 40.07 mamba conda-forge/linux-64::mamba-1.5.8-py311h3072747_0 -2024-04-05T03:31:54Z #7 40.07 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 The following packages will be UPDATED: -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 -2024-04-05T03:31:54Z #7 40.07 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-04-05T03:31:54Z #7 40.07 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-04-05T03:31:54Z #7 40.07 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 -2024-04-05T03:31:54Z #7 40.07 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-04-05T03:31:54Z #7 40.07 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 -2024-04-05T03:31:54Z #7 40.07 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 -2024-04-05T03:31:54Z #7 40.07 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 -2024-04-05T03:31:54Z #7 40.07 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.8-had39da4_0 -2024-04-05T03:31:54Z #7 40.07 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.8-py311hf2555c7_0 -2024-04-05T03:31:54Z #7 40.07 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 -2024-04-05T03:31:54Z #7 40.07 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 -2024-04-05T03:31:54Z #7 40.07 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 -2024-04-05T03:31:54Z #7 40.07 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_1 -2024-04-05T03:31:54Z #7 40.07 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 -2024-04-05T03:31:54Z #7 40.07 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 The following packages will be SUPERSEDED by a higher-priority channel: -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-04-05T03:31:54Z #7 40.07 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-04-05T03:31:54Z #7 40.07 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-04-05T03:31:54Z #7 40.07 conda pkgs/main::conda-24.3.0-py311h06a4308~ --> conda-forge::conda-24.3.0-py311h38be061_0 -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 -2024-04-05T03:31:54Z #7 40.07 Proceed ([y]/n)? -2024-04-05T03:31:57Z #7 42.63 -2024-04-05T03:31:57Z #7 42.63 Downloading and Extracting Packages: ...working... done -2024-04-05T03:31:57Z #7 42.63 Preparing transaction: ...working... done -2024-04-05T03:31:57Z #7 42.78 Verifying transaction: ...working... done -2024-04-05T03:32:06Z #7 43.31 Executing transaction: ...working... done -2024-04-05T03:32:08Z #7 53.65 Will remove 30 (29.4 MB) tarball(s). -2024-04-05T03:32:08Z #7 53.65 Will remove 1 index cache(s). -2024-04-05T03:32:08Z #7 53.65 Will remove 4 (5.0 MB) package(s). -2024-04-05T03:32:08Z #7 53.65 There are no tempfile(s) to remove. -2024-04-05T03:32:08Z #7 53.65 There are no logfile(s) to remove. -2024-04-05T03:32:10Z #7 55.81 bin/micromamba -2024-04-05T03:32:12Z #7 DONE 58.0s -2024-04-05T03:32:12Z -2024-04-05T03:32:12Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-05T03:32:12Z #6 ... -2024-04-05T03:32:12Z -2024-04-05T03:32:12Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-04-05T03:32:12Z #8 0.559 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-04-05T03:32:13Z #8 0.576 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-04-05T03:32:13Z #8 0.577 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-04-05T03:32:13Z #8 0.724 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-04-05T03:32:13Z #8 0.972 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] -2024-04-05T03:32:13Z #8 1.544 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-04-05T03:32:15Z #8 2.874 Fetched 8565 kB in 2s (3682 kB/s) -2024-04-05T03:32:16Z #8 2.874 Reading package lists... -2024-04-05T03:32:17Z #8 3.844 Reading package lists... -2024-04-05T03:32:17Z #8 4.767 Building dependency tree... -2024-04-05T03:32:17Z #8 4.994 Reading state information... -2024-04-05T03:32:17Z #8 5.318 git is already the newest version (1:2.30.2-1+deb11u2). -2024-04-05T03:32:17Z #8 5.318 mercurial is already the newest version (5.6.1-4). -2024-04-05T03:32:17Z #8 5.318 The following additional packages will be installed: -2024-04-05T03:32:17Z #8 5.318 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-05T03:32:17Z #8 5.319 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-05T03:32:17Z #8 5.319 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-04-05T03:32:17Z #8 5.320 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-04-05T03:32:17Z #8 5.320 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-04-05T03:32:17Z #8 5.320 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-04-05T03:32:17Z #8 5.321 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-04-05T03:32:17Z #8 5.327 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-05T03:32:17Z #8 5.327 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-05T03:32:17Z #8 5.327 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-04-05T03:32:17Z #8 5.327 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-04-05T03:32:17Z #8 5.327 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-04-05T03:32:17Z #8 5.327 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-04-05T03:32:17Z #8 5.327 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-04-05T03:32:17Z #8 5.327 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-04-05T03:32:17Z #8 5.327 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-04-05T03:32:17Z #8 5.327 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-04-05T03:32:17Z #8 5.327 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-04-05T03:32:17Z #8 5.327 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-04-05T03:32:17Z #8 5.327 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-04-05T03:32:17Z #8 5.327 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-04-05T03:32:17Z #8 5.327 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-04-05T03:32:17Z #8 5.327 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-04-05T03:32:17Z #8 5.327 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-04-05T03:32:17Z #8 5.327 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-04-05T03:32:17Z #8 5.327 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-04-05T03:32:17Z #8 5.327 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-04-05T03:32:17Z #8 5.327 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-04-05T03:32:17Z #8 5.327 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-04-05T03:32:17Z #8 5.327 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-04-05T03:32:17Z #8 5.327 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-04-05T03:32:17Z #8 5.327 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-04-05T03:32:17Z #8 5.327 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-04-05T03:32:17Z #8 5.327 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-04-05T03:32:17Z #8 5.327 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-04-05T03:32:17Z #8 5.327 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-04-05T03:32:17Z #8 5.327 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-04-05T03:32:17Z #8 5.327 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv -2024-04-05T03:32:17Z #8 5.327 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data -2024-04-05T03:32:17Z #8 5.327 Suggested packages: -2024-04-05T03:32:17Z #8 5.327 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-04-05T03:32:17Z #8 5.327 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-04-05T03:32:17Z #8 5.327 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-04-05T03:32:17Z #8 5.327 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs -2024-04-05T03:32:17Z #8 5.327 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser -2024-04-05T03:32:17Z #8 5.327 opencl-icd ed diffutils-doc systemd-container policykit-1 zip -2024-04-05T03:32:17Z #8 5.327 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-04-05T03:32:17Z #8 5.327 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-04-05T03:32:17Z #8 5.327 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-04-05T03:32:19Z #8 6.892 The following NEW packages will be installed: -2024-04-05T03:32:19Z #8 6.893 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-05T03:32:19Z #8 6.893 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-05T03:32:19Z #8 6.894 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-04-05T03:32:19Z #8 6.894 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-04-05T03:32:19Z #8 6.895 glib-networking glib-networking-common glib-networking-services -2024-04-05T03:32:19Z #8 6.903 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-04-05T03:32:19Z #8 6.904 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-04-05T03:32:19Z #8 6.904 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-04-05T03:32:19Z #8 6.904 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-05T03:32:19Z #8 6.904 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-05T03:32:19Z #8 6.904 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-04-05T03:32:19Z #8 6.904 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-04-05T03:32:19Z #8 6.904 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-04-05T03:32:19Z #8 6.904 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-04-05T03:32:19Z #8 6.904 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-04-05T03:32:19Z #8 6.904 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-04-05T03:32:19Z #8 6.904 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-04-05T03:32:19Z #8 6.904 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-04-05T03:32:19Z #8 6.904 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-04-05T03:32:19Z #8 6.904 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-04-05T03:32:19Z #8 6.904 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-04-05T03:32:19Z #8 6.904 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-04-05T03:32:19Z #8 6.904 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-04-05T03:32:19Z #8 6.904 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-04-05T03:32:19Z #8 6.904 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-04-05T03:32:19Z #8 6.904 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-04-05T03:32:19Z #8 6.904 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-04-05T03:32:19Z #8 6.904 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-04-05T03:32:19Z #8 6.904 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-04-05T03:32:19Z #8 6.904 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-04-05T03:32:19Z #8 6.904 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-04-05T03:32:19Z #8 6.904 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-04-05T03:32:19Z #8 6.904 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-04-05T03:32:19Z #8 6.904 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-04-05T03:32:19Z #8 6.904 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-04-05T03:32:19Z #8 6.904 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-04-05T03:32:19Z #8 6.904 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-04-05T03:32:19Z #8 6.904 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-04-05T03:32:19Z #8 6.904 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-04-05T03:32:19Z #8 6.904 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-04-05T03:32:19Z #8 6.904 x11-utils xkb-data -2024-04-05T03:32:19Z #8 6.935 0 upgraded, 221 newly installed, 0 to remove and 7 not upgraded. -2024-04-05T03:32:19Z #8 6.935 Need to get 236 MB of archives. -2024-04-05T03:32:19Z #8 6.935 After this operation, 891 MB of additional disk space will be used. -2024-04-05T03:32:19Z #8 6.935 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-04-05T03:32:19Z #8 6.939 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-04-05T03:32:19Z #8 6.941 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-04-05T03:32:19Z #8 6.942 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-04-05T03:32:19Z #8 6.944 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-04-05T03:32:19Z #8 6.947 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-04-05T03:32:19Z #8 6.948 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-04-05T03:32:19Z #8 6.952 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-04-05T03:32:19Z #8 6.954 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-04-05T03:32:19Z #8 6.955 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-04-05T03:32:19Z #8 7.040 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-04-05T03:32:19Z #8 7.056 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-04-05T03:32:19Z #8 7.070 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-04-05T03:32:19Z #8 7.076 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-04-05T03:32:19Z #8 7.080 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-04-05T03:32:19Z #8 7.083 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-04-05T03:32:19Z #8 7.098 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-04-05T03:32:19Z #8 7.101 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-04-05T03:32:19Z #8 7.102 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-04-05T03:32:19Z #8 7.107 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-04-05T03:32:19Z #8 7.260 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-04-05T03:32:19Z #8 7.279 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-04-05T03:32:19Z #8 7.287 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-04-05T03:32:19Z #8 7.290 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-04-05T03:32:19Z #8 7.294 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-04-05T03:32:19Z #8 7.298 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-04-05T03:32:19Z #8 7.299 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-04-05T03:32:19Z #8 7.303 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-04-05T03:32:19Z #8 7.307 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-04-05T03:32:19Z #8 7.311 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-04-05T03:32:19Z #8 7.314 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-04-05T03:32:19Z #8 7.527 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-04-05T03:32:19Z #8 7.529 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-04-05T03:32:19Z #8 7.531 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-04-05T03:32:19Z #8 7.536 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-04-05T03:32:19Z #8 7.538 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-04-05T03:32:19Z #8 7.539 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-04-05T03:32:19Z #8 7.541 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-04-05T03:32:19Z #8 7.543 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-04-05T03:32:19Z #8 7.545 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-04-05T03:32:20Z #8 7.572 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-04-05T03:32:20Z #8 7.579 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-04-05T03:32:20Z #8 7.605 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-04-05T03:32:20Z #8 7.607 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-04-05T03:32:20Z #8 7.627 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-04-05T03:32:20Z #8 7.629 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-04-05T03:32:20Z #8 7.637 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-04-05T03:32:20Z #8 7.674 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-04-05T03:32:20Z #8 7.679 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-04-05T03:32:20Z #8 7.860 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-04-05T03:32:20Z #8 7.862 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-04-05T03:32:20Z #8 7.864 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-04-05T03:32:20Z #8 7.866 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-04-05T03:32:20Z #8 7.868 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-04-05T03:32:20Z #8 7.869 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-04-05T03:32:20Z #8 7.872 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-04-05T03:32:20Z #8 7.873 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-04-05T03:32:20Z #8 7.879 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-04-05T03:32:20Z #8 7.890 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-04-05T03:32:20Z #8 7.895 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-04-05T03:32:20Z #8 7.900 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-04-05T03:32:20Z #8 7.907 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-04-05T03:32:20Z #8 7.919 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-04-05T03:32:20Z #8 7.922 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-04-05T03:32:20Z #8 7.936 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-04-05T03:32:20Z #8 7.948 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-04-05T03:32:20Z #8 7.950 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-04-05T03:32:20Z #8 7.953 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-04-05T03:32:20Z #8 7.955 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-04-05T03:32:20Z #8 7.957 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-04-05T03:32:20Z #8 7.960 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-04-05T03:32:20Z #8 7.962 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-04-05T03:32:20Z #8 7.964 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-04-05T03:32:20Z #8 7.966 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-04-05T03:32:20Z #8 7.970 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-04-05T03:32:20Z #8 7.974 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-04-05T03:32:20Z #8 7.976 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-04-05T03:32:20Z #8 7.978 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-04-05T03:32:20Z #8 7.993 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-04-05T03:32:20Z #8 7.995 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-04-05T03:32:20Z #8 7.997 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-04-05T03:32:20Z #8 8.003 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-04-05T03:32:20Z #8 8.006 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-04-05T03:32:20Z #8 8.008 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-04-05T03:32:20Z #8 8.010 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-04-05T03:32:20Z #8 8.013 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-04-05T03:32:20Z #8 8.015 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-04-05T03:32:20Z #8 8.017 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-04-05T03:32:20Z #8 8.019 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-04-05T03:32:20Z #8 8.020 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-04-05T03:32:20Z #8 8.022 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-04-05T03:32:20Z #8 8.028 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-04-05T03:32:20Z #8 8.030 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-04-05T03:32:20Z #8 8.034 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-04-05T03:32:20Z #8 8.035 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-04-05T03:32:20Z #8 8.037 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-04-05T03:32:20Z #8 8.048 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-04-05T03:32:20Z #8 8.051 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-04-05T03:32:20Z #8 8.053 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-04-05T03:32:20Z #8 8.054 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-04-05T03:32:20Z #8 8.055 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-04-05T03:32:20Z #8 8.057 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-04-05T03:32:20Z #8 8.058 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-04-05T03:32:20Z #8 8.059 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-04-05T03:32:20Z #8 8.067 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-04-05T03:32:20Z #8 8.069 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-04-05T03:32:20Z #8 8.071 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-04-05T03:32:20Z #8 8.167 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-04-05T03:32:20Z #8 8.225 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-04-05T03:32:20Z #8 8.231 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.9.1esr-1~deb11u1 [63.7 MB] -2024-04-05T03:32:21Z #8 9.508 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-04-05T03:32:21Z #8 9.511 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-04-05T03:32:21Z #8 9.513 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-04-05T03:32:21Z #8 9.515 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-04-05T03:32:21Z #8 9.516 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-04-05T03:32:21Z #8 9.518 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-04-05T03:32:21Z #8 9.544 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-04-05T03:32:21Z #8 9.559 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-04-05T03:32:21Z #8 9.591 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-04-05T03:32:21Z #8 9.601 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-04-05T03:32:21Z #8 9.604 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-04-05T03:32:21Z #8 9.644 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-04-05T03:32:22Z #8 10.09 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-04-05T03:32:22Z #8 10.10 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-04-05T03:32:22Z #8 10.11 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-04-05T03:32:22Z #8 10.11 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-04-05T03:32:22Z #8 10.11 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-04-05T03:32:22Z #8 10.11 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-04-05T03:32:22Z #8 10.11 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-04-05T03:32:22Z #8 10.12 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-04-05T03:32:22Z #8 10.12 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-04-05T03:32:22Z #8 10.14 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-04-05T03:32:22Z #8 10.18 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-04-05T03:32:22Z #8 10.26 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-04-05T03:32:22Z #8 10.26 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-04-05T03:32:22Z #8 10.26 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-04-05T03:32:22Z #8 10.26 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-04-05T03:32:22Z #8 10.26 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-04-05T03:32:22Z #8 10.27 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-04-05T03:32:22Z #8 10.46 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-04-05T03:32:22Z #8 10.47 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-04-05T03:32:22Z #8 10.47 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-04-05T03:32:22Z #8 10.47 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-04-05T03:32:22Z #8 10.47 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-04-05T03:32:22Z #8 10.48 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-04-05T03:32:22Z #8 10.52 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-04-05T03:32:23Z #8 10.53 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-04-05T03:32:23Z #8 10.53 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-04-05T03:32:23Z #8 10.53 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-04-05T03:32:23Z #8 10.53 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-04-05T03:32:23Z #8 10.54 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-04-05T03:32:23Z #8 10.54 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-04-05T03:32:23Z #8 10.54 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-04-05T03:32:23Z #8 10.54 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-04-05T03:32:23Z #8 10.55 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-04-05T03:32:23Z #8 10.55 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-04-05T03:32:23Z #8 10.56 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-04-05T03:32:23Z #8 10.56 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-04-05T03:32:23Z #8 10.57 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-04-05T03:32:23Z #8 10.58 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-04-05T03:32:23Z #8 10.58 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-04-05T03:32:23Z #8 10.60 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-04-05T03:32:23Z #8 10.61 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-04-05T03:32:23Z #8 10.61 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-04-05T03:32:23Z #8 10.62 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-04-05T03:32:23Z #8 10.73 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] -2024-04-05T03:32:23Z #8 10.74 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-04-05T03:32:23Z #8 10.74 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-04-05T03:32:23Z #8 10.74 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] -2024-04-05T03:32:23Z #8 10.75 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-04-05T03:32:23Z #8 10.79 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-04-05T03:32:23Z #8 10.80 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-04-05T03:32:23Z #8 10.80 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-04-05T03:32:23Z #8 10.80 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] -2024-04-05T03:32:23Z #8 10.83 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-04-05T03:32:23Z #8 10.84 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-04-05T03:32:23Z #8 10.84 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-04-05T03:32:23Z #8 10.86 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-04-05T03:32:23Z #8 10.86 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-04-05T03:32:23Z #8 10.87 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-04-05T03:32:23Z #8 10.87 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-04-05T03:32:23Z #8 10.87 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-04-05T03:32:23Z #8 11.03 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-04-05T03:32:23Z #8 11.51 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-04-05T03:32:24Z #8 11.52 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-04-05T03:32:24Z #8 11.52 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-04-05T03:32:24Z #8 11.52 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-04-05T03:32:24Z #8 11.78 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-04-05T03:32:24Z #8 11.78 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-04-05T03:32:24Z #8 11.79 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-04-05T03:32:24Z #8 11.79 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-04-05T03:32:24Z #8 11.79 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-04-05T03:32:24Z #8 11.79 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-04-05T03:32:24Z #8 11.80 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-04-05T03:32:24Z #8 11.80 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-04-05T03:32:24Z #8 11.80 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-04-05T03:32:24Z #8 11.80 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-04-05T03:32:24Z #8 11.81 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-04-05T03:32:24Z #8 11.81 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-04-05T03:32:24Z #8 11.81 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-04-05T03:32:24Z #8 11.81 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-04-05T03:32:24Z #8 11.81 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-04-05T03:32:24Z #8 11.82 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-04-05T03:32:24Z #8 11.82 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-04-05T03:32:24Z #8 11.82 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-04-05T03:32:24Z #8 11.83 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-04-05T03:32:24Z #8 11.83 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-04-05T03:32:24Z #8 11.83 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-04-05T03:32:24Z #8 11.83 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-04-05T03:32:24Z #8 11.84 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-04-05T03:32:24Z #8 11.84 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-04-05T03:32:24Z #8 11.84 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-04-05T03:32:24Z #8 11.84 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-04-05T03:32:24Z #8 11.87 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-04-05T03:32:24Z #8 11.93 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-04-05T03:32:24Z #8 12.00 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-04-05T03:32:24Z #8 12.09 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-04-05T03:32:24Z #8 12.09 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-04-05T03:32:24Z #8 12.10 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-04-05T03:32:24Z #8 12.10 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-04-05T03:32:24Z #8 12.10 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-04-05T03:32:24Z #8 12.39 debconf: delaying package configuration, since apt-utils is not installed -2024-04-05T03:32:24Z #8 12.45 Fetched 236 MB in 5s (45.5 MB/s) -2024-04-05T03:32:24Z #8 12.48 Selecting previously unselected package libapparmor1:amd64. -2024-04-05T03:32:24Z #8 12.49 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-04-05T03:32:24Z #8 12.51 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-04-05T03:32:24Z #8 12.52 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-04-05T03:32:24Z #8 12.58 Selecting previously unselected package libcap2:amd64. -2024-04-05T03:32:24Z #8 12.58 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-04-05T03:32:25Z #8 12.59 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-04-05T03:32:25Z #8 12.63 Selecting previously unselected package libargon2-1:amd64. -2024-04-05T03:32:25Z #8 12.64 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-04-05T03:32:25Z #8 12.64 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-05T03:32:25Z #8 12.69 Selecting previously unselected package dmsetup. -2024-04-05T03:32:25Z #8 12.70 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-04-05T03:32:25Z #8 12.70 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-04-05T03:32:25Z #8 12.78 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-04-05T03:32:25Z #8 12.78 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-04-05T03:32:25Z #8 12.79 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-05T03:32:25Z #8 12.89 Selecting previously unselected package libjson-c5:amd64. -2024-04-05T03:32:25Z #8 12.89 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-04-05T03:32:25Z #8 12.89 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-05T03:32:25Z #8 12.94 Selecting previously unselected package libcryptsetup12:amd64. -2024-04-05T03:32:25Z #8 12.95 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-04-05T03:32:25Z #8 12.95 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-05T03:32:25Z #8 13.03 Selecting previously unselected package libip4tc2:amd64. -2024-04-05T03:32:25Z #8 13.03 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-04-05T03:32:25Z #8 13.04 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-04-05T03:32:25Z #8 13.08 Selecting previously unselected package libkmod2:amd64. -2024-04-05T03:32:25Z #8 13.09 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-04-05T03:32:25Z #8 13.10 Unpacking libkmod2:amd64 (28-1) ... -2024-04-05T03:32:25Z #8 13.17 Selecting previously unselected package systemd. -2024-04-05T03:32:25Z #8 13.17 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-05T03:32:25Z #8 13.24 Unpacking systemd (247.3-7+deb11u4) ... -2024-04-05T03:32:26Z #8 14.24 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-04-05T03:32:26Z #8 14.26 Setting up libcap2:amd64 (1:2.44-1) ... -2024-04-05T03:32:26Z #8 14.27 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-05T03:32:26Z #8 14.29 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-05T03:32:26Z #8 14.30 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-04-05T03:32:26Z #8 14.32 Setting up libkmod2:amd64 (28-1) ... -2024-04-05T03:32:26Z #8 14.33 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-05T03:32:26Z #8 14.35 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-05T03:32:26Z #8 14.37 Setting up systemd (247.3-7+deb11u4) ... -2024-04-05T03:32:26Z #8 14.43 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-04-05T03:32:26Z #8 14.43 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-04-05T03:32:26Z #8 14.44 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-04-05T03:32:26Z #8 14.46 Initializing machine ID from KVM UUID. -2024-04-05T03:32:27Z #8 15.01 Setting up dmsetup (2:1.02.175-2.1) ... -2024-04-05T03:32:27Z #8 15.09 Selecting previously unselected package systemd-sysv. -2024-04-05T03:32:27Z #8 15.09 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-04-05T03:32:27Z #8 15.11 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-04-05T03:32:27Z #8 15.12 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-04-05T03:32:27Z #8 15.19 Selecting previously unselected package libdbus-1-3:amd64. -2024-04-05T03:32:27Z #8 15.19 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-04-05T03:32:27Z #8 15.20 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-05T03:32:27Z #8 15.30 Selecting previously unselected package dbus. -2024-04-05T03:32:27Z #8 15.31 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-04-05T03:32:27Z #8 15.32 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-04-05T03:32:27Z #8 15.41 Selecting previously unselected package libnss-systemd:amd64. -2024-04-05T03:32:27Z #8 15.42 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-05T03:32:27Z #8 15.42 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-05T03:32:27Z #8 15.49 Selecting previously unselected package libpam-systemd:amd64. -2024-04-05T03:32:27Z #8 15.50 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-05T03:32:27Z #8 15.50 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-05T03:32:28Z #8 15.59 Selecting previously unselected package manpages. -2024-04-05T03:32:28Z #8 15.59 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-04-05T03:32:28Z #8 15.60 Unpacking manpages (5.10-1) ... -2024-04-05T03:32:28Z #8 15.80 Selecting previously unselected package systemd-timesyncd. -2024-04-05T03:32:28Z #8 15.80 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-04-05T03:32:28Z #8 15.81 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-05T03:32:28Z #8 15.89 Selecting previously unselected package hicolor-icon-theme. -2024-04-05T03:32:28Z #8 15.89 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-04-05T03:32:28Z #8 15.90 Unpacking hicolor-icon-theme (0.17-2) ... -2024-04-05T03:32:28Z #8 16.01 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-04-05T03:32:28Z #8 16.02 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-04-05T03:32:28Z #8 16.03 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-05T03:32:28Z #8 16.20 Selecting previously unselected package libicu67:amd64. -2024-04-05T03:32:28Z #8 16.20 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-04-05T03:32:28Z #8 16.21 Unpacking libicu67:amd64 (67.1-7) ... -2024-04-05T03:32:30Z #8 17.93 Selecting previously unselected package libxml2:amd64. -2024-04-05T03:32:30Z #8 17.93 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-04-05T03:32:30Z #8 17.94 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-05T03:32:30Z #8 18.11 Selecting previously unselected package shared-mime-info. -2024-04-05T03:32:30Z #8 18.12 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-04-05T03:32:30Z #8 18.13 Unpacking shared-mime-info (2.0-1) ... -2024-04-05T03:32:30Z #8 18.36 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-04-05T03:32:30Z #8 18.36 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-04-05T03:32:30Z #8 18.37 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-05T03:32:30Z #8 18.44 Selecting previously unselected package libpng16-16:amd64. -2024-04-05T03:32:30Z #8 18.44 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-04-05T03:32:30Z #8 18.45 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-04-05T03:32:30Z #8 18.54 Selecting previously unselected package libdeflate0:amd64. -2024-04-05T03:32:30Z #8 18.55 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-04-05T03:32:30Z #8 18.55 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-04-05T03:32:31Z #8 18.62 Selecting previously unselected package libjbig0:amd64. -2024-04-05T03:32:31Z #8 18.62 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-04-05T03:32:31Z #8 18.63 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-05T03:32:31Z #8 18.70 Selecting previously unselected package libwebp6:amd64. -2024-04-05T03:32:31Z #8 18.70 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-05T03:32:31Z #8 18.71 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-05T03:32:31Z #8 18.80 Selecting previously unselected package libtiff5:amd64. -2024-04-05T03:32:31Z #8 18.81 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-04-05T03:32:31Z #8 18.82 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-05T03:32:31Z #8 18.93 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-04-05T03:32:31Z #8 18.93 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-05T03:32:31Z #8 18.94 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-05T03:32:31Z #8 19.03 Selecting previously unselected package gtk-update-icon-cache. -2024-04-05T03:32:31Z #8 19.04 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-04-05T03:32:31Z #8 19.05 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-05T03:32:31Z #8 19.19 Selecting previously unselected package adwaita-icon-theme. -2024-04-05T03:32:31Z #8 19.19 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-04-05T03:32:31Z #8 19.20 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-04-05T03:32:34Z #8 22.02 Selecting previously unselected package alsa-topology-conf. -2024-04-05T03:32:34Z #8 22.02 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-04-05T03:32:34Z #8 22.03 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-04-05T03:32:34Z #8 22.13 Selecting previously unselected package libasound2-data. -2024-04-05T03:32:34Z #8 22.13 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-04-05T03:32:34Z #8 22.14 Unpacking libasound2-data (1.2.4-1.1) ... -2024-04-05T03:32:34Z #8 22.23 Selecting previously unselected package libasound2:amd64. -2024-04-05T03:32:34Z #8 22.23 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-04-05T03:32:34Z #8 22.23 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-04-05T03:32:34Z #8 22.36 Selecting previously unselected package alsa-ucm-conf. -2024-04-05T03:32:34Z #8 22.36 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-04-05T03:32:34Z #8 22.37 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-04-05T03:32:34Z #8 22.48 Selecting previously unselected package libatspi2.0-0:amd64. -2024-04-05T03:32:34Z #8 22.48 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-04-05T03:32:34Z #8 22.49 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-05T03:32:34Z #8 22.58 Selecting previously unselected package libxi6:amd64. -2024-04-05T03:32:34Z #8 22.58 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-04-05T03:32:34Z #8 22.59 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-04-05T03:32:35Z #8 22.68 Selecting previously unselected package libxtst6:amd64. -2024-04-05T03:32:35Z #8 22.68 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-04-05T03:32:35Z #8 22.69 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-04-05T03:32:35Z #8 22.76 Selecting previously unselected package at-spi2-core. -2024-04-05T03:32:35Z #8 22.77 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-04-05T03:32:35Z #8 22.78 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-05T03:32:35Z #8 22.87 Selecting previously unselected package binutils-common:amd64. -2024-04-05T03:32:35Z #8 22.87 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-04-05T03:32:35Z #8 22.88 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-04-05T03:32:35Z #8 23.33 Selecting previously unselected package libbinutils:amd64. -2024-04-05T03:32:35Z #8 23.33 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-04-05T03:32:35Z #8 23.34 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-04-05T03:32:35Z #8 23.49 Selecting previously unselected package libctf-nobfd0:amd64. -2024-04-05T03:32:35Z #8 23.50 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-04-05T03:32:35Z #8 23.51 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-05T03:32:36Z #8 23.57 Selecting previously unselected package libctf0:amd64. -2024-04-05T03:32:36Z #8 23.58 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-04-05T03:32:36Z #8 23.59 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-04-05T03:32:36Z #8 23.64 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-04-05T03:32:36Z #8 23.65 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-04-05T03:32:36Z #8 23.65 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-05T03:32:36Z #8 24.08 Selecting previously unselected package binutils. -2024-04-05T03:32:36Z #8 24.09 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-04-05T03:32:36Z #8 24.09 Unpacking binutils (2.35.2-2) ... -2024-04-05T03:32:36Z #8 24.16 Selecting previously unselected package libisl23:amd64. -2024-04-05T03:32:36Z #8 24.16 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-04-05T03:32:36Z #8 24.17 Unpacking libisl23:amd64 (0.23-1) ... -2024-04-05T03:32:36Z #8 24.34 Selecting previously unselected package libmpfr6:amd64. -2024-04-05T03:32:36Z #8 24.35 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-04-05T03:32:36Z #8 24.35 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-04-05T03:32:37Z #8 24.59 Selecting previously unselected package libmpc3:amd64. -2024-04-05T03:32:37Z #8 24.59 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-04-05T03:32:37Z #8 24.60 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-04-05T03:32:37Z #8 24.64 Selecting previously unselected package cpp-10. -2024-04-05T03:32:37Z #8 24.65 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-04-05T03:32:37Z #8 24.65 Unpacking cpp-10 (10.2.1-6) ... -2024-04-05T03:32:38Z #8 26.21 Selecting previously unselected package cpp. -2024-04-05T03:32:38Z #8 26.21 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-04-05T03:32:38Z #8 26.22 Unpacking cpp (4:10.2.1-1) ... -2024-04-05T03:32:38Z #8 26.27 Selecting previously unselected package dbus-user-session. -2024-04-05T03:32:38Z #8 26.27 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-04-05T03:32:38Z #8 26.28 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-05T03:32:38Z #8 26.34 Selecting previously unselected package libdconf1:amd64. -2024-04-05T03:32:38Z #8 26.35 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-04-05T03:32:38Z #8 26.36 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-04-05T03:32:38Z #8 26.42 Selecting previously unselected package dconf-service. -2024-04-05T03:32:38Z #8 26.42 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-04-05T03:32:38Z #8 26.43 Unpacking dconf-service (0.38.0-2) ... -2024-04-05T03:32:38Z #8 26.47 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-04-05T03:32:38Z #8 26.48 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-04-05T03:32:38Z #8 26.48 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-05T03:32:38Z #8 26.53 Selecting previously unselected package libatk1.0-data. -2024-04-05T03:32:38Z #8 26.53 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-04-05T03:32:38Z #8 26.54 Unpacking libatk1.0-data (2.36.0-2) ... -2024-04-05T03:32:39Z #8 26.64 Selecting previously unselected package libatk1.0-0:amd64. -2024-04-05T03:32:39Z #8 26.64 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-04-05T03:32:39Z #8 26.65 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-05T03:32:39Z #8 26.70 Selecting previously unselected package libfreetype6:amd64. -2024-04-05T03:32:39Z #8 26.70 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-04-05T03:32:39Z #8 26.70 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-05T03:32:39Z #8 26.80 Selecting previously unselected package fonts-dejavu-core. -2024-04-05T03:32:39Z #8 26.81 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-04-05T03:32:39Z #8 26.81 Unpacking fonts-dejavu-core (2.37-2) ... -2024-04-05T03:32:39Z #8 27.06 Selecting previously unselected package fontconfig-config. -2024-04-05T03:32:39Z #8 27.07 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-04-05T03:32:39Z #8 27.24 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-04-05T03:32:39Z #8 27.31 Selecting previously unselected package libfontconfig1:amd64. -2024-04-05T03:32:39Z #8 27.32 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-04-05T03:32:39Z #8 27.33 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-05T03:32:39Z #8 27.40 Selecting previously unselected package libpixman-1-0:amd64. -2024-04-05T03:32:39Z #8 27.41 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-04-05T03:32:39Z #8 27.41 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-05T03:32:39Z #8 27.52 Selecting previously unselected package libxcb-render0:amd64. -2024-04-05T03:32:39Z #8 27.53 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-04-05T03:32:39Z #8 27.54 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-04-05T03:32:40Z #8 27.59 Selecting previously unselected package libxcb-shm0:amd64. -2024-04-05T03:32:40Z #8 27.60 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-04-05T03:32:40Z #8 27.61 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-04-05T03:32:40Z #8 27.68 Selecting previously unselected package libcairo2:amd64. -2024-04-05T03:32:40Z #8 27.68 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-04-05T03:32:40Z #8 27.69 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-04-05T03:32:40Z #8 27.84 Selecting previously unselected package libcairo-gobject2:amd64. -2024-04-05T03:32:40Z #8 27.85 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-04-05T03:32:40Z #8 27.85 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-05T03:32:40Z #8 27.92 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-04-05T03:32:40Z #8 27.93 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-04-05T03:32:40Z #8 27.93 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-05T03:32:40Z #8 27.99 Selecting previously unselected package libevent-2.1-7:amd64. -2024-04-05T03:32:40Z #8 28.00 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-04-05T03:32:40Z #8 28.01 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-05T03:32:40Z #8 28.08 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-04-05T03:32:40Z #8 28.08 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-04-05T03:32:40Z #8 28.09 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-05T03:32:40Z #8 28.15 Selecting previously unselected package liblcms2-2:amd64. -2024-04-05T03:32:40Z #8 28.16 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-04-05T03:32:40Z #8 28.16 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-05T03:32:40Z #8 28.23 Selecting previously unselected package libcolord2:amd64. -2024-04-05T03:32:40Z #8 28.24 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-04-05T03:32:40Z #8 28.24 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-04-05T03:32:40Z #8 28.31 Selecting previously unselected package libavahi-common-data:amd64. -2024-04-05T03:32:40Z #8 28.31 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-04-05T03:32:40Z #8 28.32 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-05T03:32:40Z #8 28.39 Selecting previously unselected package libavahi-common3:amd64. -2024-04-05T03:32:40Z #8 28.39 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-04-05T03:32:40Z #8 28.40 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-05T03:32:40Z #8 28.45 Selecting previously unselected package libavahi-client3:amd64. -2024-04-05T03:32:40Z #8 28.45 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-04-05T03:32:40Z #8 28.46 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-05T03:32:40Z #8 28.52 Selecting previously unselected package libcups2:amd64. -2024-04-05T03:32:40Z #8 28.53 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-04-05T03:32:41Z #8 28.53 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-05T03:32:41Z #8 28.66 Selecting previously unselected package libepoxy0:amd64. -2024-04-05T03:32:41Z #8 28.67 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-04-05T03:32:41Z #8 28.68 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-04-05T03:32:41Z #8 28.76 Selecting previously unselected package libfribidi0:amd64. -2024-04-05T03:32:41Z #8 28.77 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-04-05T03:32:41Z #8 28.77 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-05T03:32:41Z #8 28.83 Selecting previously unselected package libgraphite2-3:amd64. -2024-04-05T03:32:41Z #8 28.83 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-04-05T03:32:41Z #8 28.84 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-05T03:32:41Z #8 28.90 Selecting previously unselected package libharfbuzz0b:amd64. -2024-04-05T03:32:41Z #8 28.90 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-04-05T03:32:41Z #8 28.91 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-05T03:32:41Z #8 29.02 Selecting previously unselected package libjson-glib-1.0-common. -2024-04-05T03:32:41Z #8 29.02 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-04-05T03:32:41Z #8 29.03 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-04-05T03:32:41Z #8 29.09 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-04-05T03:32:41Z #8 29.10 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-04-05T03:32:41Z #8 29.11 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-05T03:32:41Z #8 29.16 Selecting previously unselected package fontconfig. -2024-04-05T03:32:41Z #8 29.16 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-04-05T03:32:41Z #8 29.17 Unpacking fontconfig (2.13.1-4.2) ... -2024-04-05T03:32:41Z #8 29.24 Selecting previously unselected package libthai-data. -2024-04-05T03:32:41Z #8 29.25 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-04-05T03:32:41Z #8 29.25 Unpacking libthai-data (0.1.28-3) ... -2024-04-05T03:32:41Z #8 29.34 Selecting previously unselected package libdatrie1:amd64. -2024-04-05T03:32:41Z #8 29.35 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-04-05T03:32:41Z #8 29.35 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-04-05T03:32:41Z #8 29.41 Selecting previously unselected package libthai0:amd64. -2024-04-05T03:32:41Z #8 29.42 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-04-05T03:32:41Z #8 29.43 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-04-05T03:32:41Z #8 29.48 Selecting previously unselected package libpango-1.0-0:amd64. -2024-04-05T03:32:41Z #8 29.48 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-04-05T03:32:41Z #8 29.49 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-05T03:32:42Z #8 29.57 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-04-05T03:32:42Z #8 29.58 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-04-05T03:32:42Z #8 29.58 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-05T03:32:42Z #8 29.64 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-04-05T03:32:42Z #8 29.64 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-04-05T03:32:42Z #8 29.65 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-05T03:32:42Z #8 29.70 Selecting previously unselected package libproxy1v5:amd64. -2024-04-05T03:32:42Z #8 29.71 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-04-05T03:32:42Z #8 29.72 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-04-05T03:32:42Z #8 29.77 Selecting previously unselected package glib-networking-common. -2024-04-05T03:32:42Z #8 29.78 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-04-05T03:32:42Z #8 29.78 Unpacking glib-networking-common (2.66.0-2) ... -2024-04-05T03:32:42Z #8 29.85 Selecting previously unselected package glib-networking-services. -2024-04-05T03:32:42Z #8 29.85 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-04-05T03:32:42Z #8 29.86 Unpacking glib-networking-services (2.66.0-2) ... -2024-04-05T03:32:42Z #8 29.91 Selecting previously unselected package gsettings-desktop-schemas. -2024-04-05T03:32:42Z #8 29.91 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-04-05T03:32:42Z #8 29.92 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-04-05T03:32:42Z #8 30.10 Selecting previously unselected package glib-networking:amd64. -2024-04-05T03:32:42Z #8 30.11 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-04-05T03:32:42Z #8 30.11 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-04-05T03:32:42Z #8 30.18 Selecting previously unselected package libsoup2.4-1:amd64. -2024-04-05T03:32:42Z #8 30.19 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-04-05T03:32:42Z #8 30.20 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-05T03:32:42Z #8 30.33 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-04-05T03:32:42Z #8 30.33 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-04-05T03:32:42Z #8 30.34 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-05T03:32:42Z #8 30.40 Selecting previously unselected package librest-0.7-0:amd64. -2024-04-05T03:32:42Z #8 30.40 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-04-05T03:32:42Z #8 30.41 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-05T03:32:42Z #8 30.47 Selecting previously unselected package libwayland-client0:amd64. -2024-04-05T03:32:42Z #8 30.48 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-05T03:32:42Z #8 30.49 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-05T03:32:42Z #8 30.55 Selecting previously unselected package libwayland-cursor0:amd64. -2024-04-05T03:32:42Z #8 30.56 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-05T03:32:42Z #8 30.57 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-05T03:32:43Z #8 30.66 Selecting previously unselected package libwayland-egl1:amd64. -2024-04-05T03:32:43Z #8 30.66 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-04-05T03:32:43Z #8 30.67 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-05T03:32:43Z #8 30.72 Selecting previously unselected package libxcomposite1:amd64. -2024-04-05T03:32:43Z #8 30.73 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-04-05T03:32:43Z #8 30.73 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-05T03:32:43Z #8 30.79 Selecting previously unselected package libxfixes3:amd64. -2024-04-05T03:32:43Z #8 30.80 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-04-05T03:32:43Z #8 30.81 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-05T03:32:43Z #8 30.86 Selecting previously unselected package libxcursor1:amd64. -2024-04-05T03:32:43Z #8 30.86 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-04-05T03:32:43Z #8 30.87 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-05T03:32:43Z #8 30.92 Selecting previously unselected package libxdamage1:amd64. -2024-04-05T03:32:43Z #8 30.93 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-04-05T03:32:43Z #8 30.93 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-05T03:32:43Z #8 30.98 Selecting previously unselected package libxinerama1:amd64. -2024-04-05T03:32:43Z #8 30.98 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-04-05T03:32:43Z #8 30.99 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-05T03:32:43Z #8 31.04 Selecting previously unselected package xkb-data. -2024-04-05T03:32:43Z #8 31.05 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-04-05T03:32:43Z #8 31.05 Unpacking xkb-data (2.29-2) ... -2024-04-05T03:32:43Z #8 31.32 Selecting previously unselected package libxkbcommon0:amd64. -2024-04-05T03:32:43Z #8 31.32 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-04-05T03:32:43Z #8 31.32 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-05T03:32:43Z #8 31.39 Selecting previously unselected package libxrandr2:amd64. -2024-04-05T03:32:43Z #8 31.39 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-04-05T03:32:43Z #8 31.40 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-05T03:32:43Z #8 31.44 Selecting previously unselected package libgtk-3-common. -2024-04-05T03:32:43Z #8 31.45 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-04-05T03:32:43Z #8 31.45 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-05T03:32:44Z #8 32.27 Selecting previously unselected package libgtk-3-0:amd64. -2024-04-05T03:32:44Z #8 32.27 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-04-05T03:32:44Z #8 32.28 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-05T03:32:45Z #8 32.82 Selecting previously unselected package libx11-xcb1:amd64. -2024-04-05T03:32:45Z #8 32.83 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-04-05T03:32:45Z #8 32.83 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-05T03:32:45Z #8 32.90 Selecting previously unselected package firefox-esr. -2024-04-05T03:32:45Z #8 32.91 Preparing to unpack .../099-firefox-esr_115.9.1esr-1~deb11u1_amd64.deb ... -2024-04-05T03:32:45Z #8 32.92 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-04-05T03:32:45Z #8 32.93 Unpacking firefox-esr (115.9.1esr-1~deb11u1) ... -2024-04-05T03:32:56Z #8 44.09 Selecting previously unselected package fonts-humor-sans. -2024-04-05T03:32:56Z #8 44.09 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-04-05T03:32:56Z #8 44.10 Unpacking fonts-humor-sans (1.0-4) ... -2024-04-05T03:32:56Z #8 44.14 Selecting previously unselected package libcc1-0:amd64. -2024-04-05T03:32:56Z #8 44.15 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-04-05T03:32:56Z #8 44.15 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-04-05T03:32:56Z #8 44.21 Selecting previously unselected package libgomp1:amd64. -2024-04-05T03:32:56Z #8 44.21 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-04-05T03:32:56Z #8 44.22 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-04-05T03:32:56Z #8 44.28 Selecting previously unselected package libitm1:amd64. -2024-04-05T03:32:56Z #8 44.28 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-04-05T03:32:56Z #8 44.29 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-04-05T03:32:56Z #8 44.33 Selecting previously unselected package libatomic1:amd64. -2024-04-05T03:32:56Z #8 44.34 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-04-05T03:32:56Z #8 44.34 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-04-05T03:32:56Z #8 44.39 Selecting previously unselected package libasan6:amd64. -2024-04-05T03:32:56Z #8 44.40 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-04-05T03:32:56Z #8 44.40 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-04-05T03:32:57Z #8 44.88 Selecting previously unselected package liblsan0:amd64. -2024-04-05T03:32:57Z #8 44.89 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-04-05T03:32:57Z #8 44.89 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-04-05T03:32:57Z #8 45.10 Selecting previously unselected package libtsan0:amd64. -2024-04-05T03:32:57Z #8 45.10 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-04-05T03:32:57Z #8 45.11 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-04-05T03:32:58Z #8 45.57 Selecting previously unselected package libubsan1:amd64. -2024-04-05T03:32:58Z #8 45.58 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-04-05T03:32:58Z #8 45.58 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-04-05T03:32:58Z #8 45.80 Selecting previously unselected package libquadmath0:amd64. -2024-04-05T03:32:58Z #8 45.80 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-04-05T03:32:58Z #8 45.81 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-04-05T03:32:58Z #8 45.87 Selecting previously unselected package libgcc-10-dev:amd64. -2024-04-05T03:32:58Z #8 45.87 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-04-05T03:32:58Z #8 45.88 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-05T03:32:59Z #8 46.66 Selecting previously unselected package gcc-10. -2024-04-05T03:32:59Z #8 46.67 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-04-05T03:32:59Z #8 46.67 Unpacking gcc-10 (10.2.1-6) ... -2024-04-05T03:33:01Z #8 49.58 Selecting previously unselected package gcc. -2024-04-05T03:33:01Z #8 49.58 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-04-05T03:33:01Z #8 49.59 Unpacking gcc (4:10.2.1-1) ... -2024-04-05T03:33:02Z #8 49.63 Selecting previously unselected package libva2:amd64. -2024-04-05T03:33:02Z #8 49.64 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-04-05T03:33:02Z #8 49.64 Unpacking libva2:amd64 (2.10.0-1) ... -2024-04-05T03:33:02Z #8 49.71 Selecting previously unselected package libdrm-common. -2024-04-05T03:33:02Z #8 49.71 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-04-05T03:33:02Z #8 49.72 Unpacking libdrm-common (2.4.104-1) ... -2024-04-05T03:33:02Z #8 49.76 Selecting previously unselected package libdrm2:amd64. -2024-04-05T03:33:02Z #8 49.77 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-04-05T03:33:02Z #8 49.77 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-04-05T03:33:02Z #8 49.83 Selecting previously unselected package libpciaccess0:amd64. -2024-04-05T03:33:02Z #8 49.83 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-04-05T03:33:02Z #8 49.84 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-04-05T03:33:02Z #8 49.89 Selecting previously unselected package libdrm-intel1:amd64. -2024-04-05T03:33:02Z #8 49.89 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-04-05T03:33:02Z #8 49.90 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-05T03:33:02Z #8 49.95 Selecting previously unselected package i965-va-driver:amd64. -2024-04-05T03:33:02Z #8 49.95 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-04-05T03:33:02Z #8 49.96 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-05T03:33:02Z #8 50.11 Selecting previously unselected package libigdgmm11:amd64. -2024-04-05T03:33:02Z #8 50.12 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-04-05T03:33:02Z #8 50.12 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-05T03:33:02Z #8 50.18 Selecting previously unselected package intel-media-va-driver:amd64. -2024-04-05T03:33:02Z #8 50.18 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-04-05T03:33:02Z #8 50.19 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-05T03:33:02Z #8 50.51 Selecting previously unselected package libaom0:amd64. -2024-04-05T03:33:02Z #8 50.52 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-04-05T03:33:02Z #8 50.52 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-05T03:33:03Z #8 50.77 Selecting previously unselected package libmfx1:amd64. -2024-04-05T03:33:03Z #8 50.77 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-04-05T03:33:03Z #8 50.78 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-04-05T03:33:03Z #8 51.62 Selecting previously unselected package libva-drm2:amd64. -2024-04-05T03:33:04Z #8 51.63 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-04-05T03:33:04Z #8 51.63 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-04-05T03:33:04Z #8 51.69 Selecting previously unselected package libva-x11-2:amd64. -2024-04-05T03:33:04Z #8 51.69 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-04-05T03:33:04Z #8 51.70 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-04-05T03:33:04Z #8 51.76 Selecting previously unselected package libvdpau1:amd64. -2024-04-05T03:33:04Z #8 51.77 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-04-05T03:33:04Z #8 51.78 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-04-05T03:33:04Z #8 51.83 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-04-05T03:33:04Z #8 51.84 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-04-05T03:33:04Z #8 51.84 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-05T03:33:04Z #8 52.02 Selecting previously unselected package libavutil56:amd64. -2024-04-05T03:33:04Z #8 52.02 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-05T03:33:04Z #8 52.03 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-05T03:33:04Z #8 52.20 Selecting previously unselected package libcodec2-0.9:amd64. -2024-04-05T03:33:04Z #8 52.20 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-04-05T03:33:04Z #8 52.21 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-05T03:33:05Z #8 53.36 Selecting previously unselected package libdav1d4:amd64. -2024-04-05T03:33:05Z #8 53.36 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-04-05T03:33:05Z #8 53.39 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-04-05T03:33:05Z #8 53.50 Selecting previously unselected package libgsm1:amd64. -2024-04-05T03:33:05Z #8 53.50 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-04-05T03:33:05Z #8 53.51 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-04-05T03:33:05Z #8 53.58 Selecting previously unselected package libmp3lame0:amd64. -2024-04-05T03:33:05Z #8 53.58 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-04-05T03:33:05Z #8 53.59 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-04-05T03:33:06Z #8 53.68 Selecting previously unselected package libopenjp2-7:amd64. -2024-04-05T03:33:06Z #8 53.68 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-04-05T03:33:06Z #8 53.72 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-05T03:33:06Z #8 53.79 Selecting previously unselected package libopus0:amd64. -2024-04-05T03:33:06Z #8 53.80 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-04-05T03:33:06Z #8 53.80 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-04-05T03:33:06Z #8 53.87 Selecting previously unselected package librsvg2-2:amd64. -2024-04-05T03:33:06Z #8 53.88 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-05T03:33:06Z #8 53.88 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-05T03:33:06Z #8 54.38 Selecting previously unselected package libshine3:amd64. -2024-04-05T03:33:06Z #8 54.39 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-04-05T03:33:06Z #8 54.39 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-04-05T03:33:06Z #8 54.44 Selecting previously unselected package libsnappy1v5:amd64. -2024-04-05T03:33:06Z #8 54.44 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-04-05T03:33:06Z #8 54.44 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-05T03:33:06Z #8 54.49 Selecting previously unselected package libspeex1:amd64. -2024-04-05T03:33:06Z #8 54.49 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-04-05T03:33:06Z #8 54.50 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-05T03:33:06Z #8 54.55 Selecting previously unselected package libsoxr0:amd64. -2024-04-05T03:33:06Z #8 54.55 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-04-05T03:33:06Z #8 54.56 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-04-05T03:33:06Z #8 54.62 Selecting previously unselected package libswresample3:amd64. -2024-04-05T03:33:07Z #8 54.62 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-05T03:33:07Z #8 54.62 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-05T03:33:07Z #8 54.68 Selecting previously unselected package libogg0:amd64. -2024-04-05T03:33:07Z #8 54.69 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-04-05T03:33:07Z #8 54.69 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-04-05T03:33:07Z #8 54.75 Selecting previously unselected package libtheora0:amd64. -2024-04-05T03:33:07Z #8 54.76 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-04-05T03:33:07Z #8 54.76 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-05T03:33:07Z #8 54.83 Selecting previously unselected package libtwolame0:amd64. -2024-04-05T03:33:07Z #8 54.84 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-04-05T03:33:07Z #8 54.84 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-04-05T03:33:07Z #8 54.90 Selecting previously unselected package libvorbis0a:amd64. -2024-04-05T03:33:07Z #8 54.90 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-04-05T03:33:07Z #8 54.91 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-04-05T03:33:07Z #8 54.97 Selecting previously unselected package libvorbisenc2:amd64. -2024-04-05T03:33:07Z #8 54.97 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-04-05T03:33:07Z #8 54.97 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-05T03:33:07Z #8 55.04 Selecting previously unselected package libvpx6:amd64. -2024-04-05T03:33:07Z #8 55.04 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-04-05T03:33:07Z #8 55.05 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-05T03:33:07Z #8 55.26 Selecting previously unselected package libwavpack1:amd64. -2024-04-05T03:33:07Z #8 55.26 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-04-05T03:33:07Z #8 55.26 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-04-05T03:33:07Z #8 55.32 Selecting previously unselected package libwebpmux3:amd64. -2024-04-05T03:33:07Z #8 55.32 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-05T03:33:07Z #8 55.33 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-05T03:33:07Z #8 55.41 Selecting previously unselected package libx264-160:amd64. -2024-04-05T03:33:07Z #8 55.41 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-04-05T03:33:07Z #8 55.41 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-05T03:33:07Z #8 55.55 Selecting previously unselected package libnuma1:amd64. -2024-04-05T03:33:07Z #8 55.55 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-04-05T03:33:07Z #8 55.56 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-05T03:33:08Z #8 55.69 Selecting previously unselected package libx265-192:amd64. -2024-04-05T03:33:08Z #8 55.69 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-04-05T03:33:08Z #8 55.70 Unpacking libx265-192:amd64 (3.4-2) ... -2024-04-05T03:33:08Z #8 56.02 Selecting previously unselected package libxvidcore4:amd64. -2024-04-05T03:33:08Z #8 56.02 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-04-05T03:33:08Z #8 56.03 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-05T03:33:08Z #8 56.11 Selecting previously unselected package libzvbi-common. -2024-04-05T03:33:08Z #8 56.11 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-04-05T03:33:08Z #8 56.12 Unpacking libzvbi-common (0.2.35-18) ... -2024-04-05T03:33:08Z #8 56.17 Selecting previously unselected package libzvbi0:amd64. -2024-04-05T03:33:08Z #8 56.17 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-04-05T03:33:08Z #8 56.18 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-04-05T03:33:08Z #8 56.26 Selecting previously unselected package libavcodec58:amd64. -2024-04-05T03:33:08Z #8 56.26 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-05T03:33:08Z #8 56.27 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-05T03:33:09Z #8 57.04 Selecting previously unselected package libc-dev-bin. -2024-04-05T03:33:09Z #8 57.04 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... -2024-04-05T03:33:09Z #8 57.05 Unpacking libc-dev-bin (2.31-13+deb11u8) ... -2024-04-05T03:33:09Z #8 57.10 Selecting previously unselected package libxpm4:amd64. -2024-04-05T03:33:09Z #8 57.10 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-04-05T03:33:09Z #8 57.11 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-05T03:33:09Z #8 57.16 Selecting previously unselected package libgd3:amd64. -2024-04-05T03:33:09Z #8 57.17 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-04-05T03:33:09Z #8 57.17 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-04-05T03:33:09Z #8 57.25 Selecting previously unselected package libc-devtools. -2024-04-05T03:33:09Z #8 57.25 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... -2024-04-05T03:33:09Z #8 57.28 Unpacking libc-devtools (2.31-13+deb11u8) ... -2024-04-05T03:33:10Z #8 57.65 Selecting previously unselected package linux-libc-dev:amd64. -2024-04-05T03:33:10Z #8 57.66 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-04-05T03:33:10Z #8 57.66 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-05T03:33:10Z #8 58.02 Selecting previously unselected package libcrypt-dev:amd64. -2024-04-05T03:33:10Z #8 58.02 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-04-05T03:33:10Z #8 58.03 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-05T03:33:10Z #8 58.08 Selecting previously unselected package libtirpc-dev:amd64. -2024-04-05T03:33:10Z #8 58.08 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-04-05T03:33:10Z #8 58.09 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-05T03:33:10Z #8 58.19 Selecting previously unselected package libnsl-dev:amd64. -2024-04-05T03:33:10Z #8 58.19 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-04-05T03:33:10Z #8 58.20 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-04-05T03:33:10Z #8 58.25 Selecting previously unselected package libc6-dev:amd64. -2024-04-05T03:33:10Z #8 58.26 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... -2024-04-05T03:33:10Z #8 58.26 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-04-05T03:33:11Z #8 58.81 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-04-05T03:33:11Z #8 58.81 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-04-05T03:33:11Z #8 58.82 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-05T03:33:11Z #8 58.87 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-04-05T03:33:11Z #8 58.88 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-04-05T03:33:11Z #8 58.89 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-05T03:33:11Z #8 58.99 Selecting previously unselected package libdrm-radeon1:amd64. -2024-04-05T03:33:11Z #8 58.99 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-04-05T03:33:11Z #8 59.00 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-05T03:33:11Z #8 59.04 Selecting previously unselected package libelf1:amd64. -2024-04-05T03:33:11Z #8 59.05 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-04-05T03:33:11Z #8 59.05 Unpacking libelf1:amd64 (0.183-1) ... -2024-04-05T03:33:11Z #8 59.13 Selecting previously unselected package libfontenc1:amd64. -2024-04-05T03:33:11Z #8 59.14 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-04-05T03:33:11Z #8 59.14 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-05T03:33:11Z #8 59.18 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-04-05T03:33:11Z #8 59.19 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-05T03:33:11Z #8 59.19 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-05T03:33:11Z #8 59.25 Selecting previously unselected package libglapi-mesa:amd64. -2024-04-05T03:33:11Z #8 59.26 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-04-05T03:33:11Z #8 59.26 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-05T03:33:11Z #8 59.32 Selecting previously unselected package libz3-4:amd64. -2024-04-05T03:33:11Z #8 59.32 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-04-05T03:33:11Z #8 59.33 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-04-05T03:33:12Z #8 60.41 Selecting previously unselected package libllvm11:amd64. -2024-04-05T03:33:12Z #8 60.41 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-04-05T03:33:12Z #8 60.41 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-04-05T03:33:16Z #8 63.67 Selecting previously unselected package libsensors-config. -2024-04-05T03:33:16Z #8 63.67 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-04-05T03:33:16Z #8 63.67 Unpacking libsensors-config (1:3.6.0-7) ... -2024-04-05T03:33:16Z #8 63.72 Selecting previously unselected package libsensors5:amd64. -2024-04-05T03:33:16Z #8 63.73 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-04-05T03:33:16Z #8 63.77 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-04-05T03:33:16Z #8 63.82 Selecting previously unselected package libvulkan1:amd64. -2024-04-05T03:33:16Z #8 63.83 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-04-05T03:33:16Z #8 63.83 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-05T03:33:16Z #8 63.90 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-04-05T03:33:16Z #8 63.90 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-04-05T03:33:16Z #8 63.91 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-05T03:33:17Z #8 65.46 Selecting previously unselected package libglvnd0:amd64. -2024-04-05T03:33:17Z #8 65.46 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-04-05T03:33:17Z #8 65.47 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-04-05T03:33:17Z #8 65.53 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-04-05T03:33:17Z #8 65.53 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-04-05T03:33:17Z #8 65.54 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-05T03:33:17Z #8 65.59 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-04-05T03:33:17Z #8 65.60 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-04-05T03:33:17Z #8 65.61 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-05T03:33:18Z #8 65.66 Selecting previously unselected package libxcb-glx0:amd64. -2024-04-05T03:33:18Z #8 65.66 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-04-05T03:33:18Z #8 65.67 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-04-05T03:33:18Z #8 65.72 Selecting previously unselected package libxcb-present0:amd64. -2024-04-05T03:33:18Z #8 65.73 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-04-05T03:33:18Z #8 65.73 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-04-05T03:33:18Z #8 65.80 Selecting previously unselected package libxcb-sync1:amd64. -2024-04-05T03:33:18Z #8 65.81 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-04-05T03:33:18Z #8 65.82 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-04-05T03:33:18Z #8 65.87 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-04-05T03:33:18Z #8 65.88 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-04-05T03:33:18Z #8 65.88 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-05T03:33:18Z #8 65.94 Selecting previously unselected package libxshmfence1:amd64. -2024-04-05T03:33:18Z #8 65.95 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-04-05T03:33:18Z #8 65.96 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-04-05T03:33:18Z #8 65.99 Selecting previously unselected package libxxf86vm1:amd64. -2024-04-05T03:33:18Z #8 66.00 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-04-05T03:33:18Z #8 66.00 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-05T03:33:18Z #8 66.05 Selecting previously unselected package libglx-mesa0:amd64. -2024-04-05T03:33:18Z #8 66.05 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-04-05T03:33:18Z #8 66.06 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-05T03:33:18Z #8 66.12 Selecting previously unselected package libgtk-3-bin. -2024-04-05T03:33:18Z #8 66.12 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-04-05T03:33:18Z #8 66.13 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-05T03:33:18Z #8 66.18 Selecting previously unselected package librsvg2-common:amd64. -2024-04-05T03:33:18Z #8 66.19 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-05T03:33:18Z #8 66.20 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-05T03:33:18Z #8 66.24 Selecting previously unselected package libglx0:amd64. -2024-04-05T03:33:18Z #8 66.24 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-04-05T03:33:18Z #8 66.25 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-04-05T03:33:18Z #8 66.30 Selecting previously unselected package libgl1:amd64. -2024-04-05T03:33:18Z #8 66.31 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-04-05T03:33:18Z #8 66.31 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-04-05T03:33:18Z #8 66.36 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-04-05T03:33:18Z #8 66.37 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-04-05T03:33:18Z #8 66.37 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-05T03:33:18Z #8 66.42 Selecting previously unselected package libxt6:amd64. -2024-04-05T03:33:18Z #8 66.43 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-04-05T03:33:18Z #8 66.44 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-04-05T03:33:18Z #8 66.50 Selecting previously unselected package libxmu6:amd64. -2024-04-05T03:33:18Z #8 66.50 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-05T03:33:18Z #8 66.51 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-05T03:33:18Z #8 66.55 Selecting previously unselected package libxaw7:amd64. -2024-04-05T03:33:18Z #8 66.56 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-04-05T03:33:18Z #8 66.57 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-05T03:33:18Z #8 66.65 Selecting previously unselected package libxcb-randr0:amd64. -2024-04-05T03:33:18Z #8 66.65 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-04-05T03:33:19Z #8 66.66 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-04-05T03:33:19Z #8 66.71 Selecting previously unselected package libxcb-shape0:amd64. -2024-04-05T03:33:19Z #8 66.71 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-04-05T03:33:19Z #8 66.72 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-04-05T03:33:19Z #8 66.77 Selecting previously unselected package libxft2:amd64. -2024-04-05T03:33:19Z #8 66.78 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-04-05T03:33:19Z #8 66.78 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-04-05T03:33:19Z #8 66.83 Selecting previously unselected package libxkbfile1:amd64. -2024-04-05T03:33:19Z #8 66.84 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-04-05T03:33:19Z #8 66.84 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-05T03:33:19Z #8 66.89 Selecting previously unselected package libxmuu1:amd64. -2024-04-05T03:33:19Z #8 66.90 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-05T03:33:19Z #8 66.90 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-05T03:33:19Z #8 66.94 Selecting previously unselected package libxv1:amd64. -2024-04-05T03:33:19Z #8 66.95 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-04-05T03:33:19Z #8 66.96 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-04-05T03:33:19Z #8 67.00 Selecting previously unselected package libxxf86dga1:amd64. -2024-04-05T03:33:19Z #8 67.01 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-04-05T03:33:19Z #8 67.02 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-05T03:33:19Z #8 67.05 Selecting previously unselected package manpages-dev. -2024-04-05T03:33:19Z #8 67.06 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-04-05T03:33:19Z #8 67.06 Unpacking manpages-dev (5.10-1) ... -2024-04-05T03:33:19Z #8 67.52 Selecting previously unselected package mesa-va-drivers:amd64. -2024-04-05T03:33:19Z #8 67.53 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-04-05T03:33:19Z #8 67.53 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-05T03:33:20Z #8 68.04 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-04-05T03:33:20Z #8 68.04 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-04-05T03:33:20Z #8 68.05 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-05T03:33:20Z #8 68.53 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-04-05T03:33:20Z #8 68.53 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-04-05T03:33:20Z #8 68.54 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-05T03:33:23Z #8 70.58 Selecting previously unselected package patch. -2024-04-05T03:33:23Z #8 70.59 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-04-05T03:33:23Z #8 70.91 Unpacking patch (2.7.6-7) ... -2024-04-05T03:33:23Z #8 71.18 Selecting previously unselected package unzip. -2024-04-05T03:33:23Z #8 71.18 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-04-05T03:33:23Z #8 71.19 Unpacking unzip (6.0-26+deb11u1) ... -2024-04-05T03:33:23Z #8 71.25 Selecting previously unselected package va-driver-all:amd64. -2024-04-05T03:33:23Z #8 71.25 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-04-05T03:33:23Z #8 71.26 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-04-05T03:33:23Z #8 71.29 Selecting previously unselected package vdpau-driver-all:amd64. -2024-04-05T03:33:23Z #8 71.30 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-04-05T03:33:23Z #8 71.30 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-04-05T03:33:23Z #8 71.35 Selecting previously unselected package x11-utils. -2024-04-05T03:33:23Z #8 71.35 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-04-05T03:33:23Z #8 71.36 Unpacking x11-utils (7.7+5) ... -2024-04-05T03:33:23Z #8 71.49 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-05T03:33:23Z #8 71.50 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-05T03:33:23Z #8 71.52 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-05T03:33:23Z #8 71.53 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-05T03:33:23Z #8 71.54 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-05T03:33:24Z #8 71.55 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-04-05T03:33:24Z #8 71.57 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-04-05T03:33:24Z #8 71.58 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-04-05T03:33:24Z #8 71.60 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-05T03:33:24Z #8 71.61 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-05T03:33:24Z #8 71.62 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-04-05T03:33:24Z #8 71.64 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-05T03:33:24Z #8 71.65 Setting up libshine3:amd64 (3.1.1-2) ... -2024-04-05T03:33:24Z #8 71.66 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-05T03:33:24Z #8 71.68 Setting up hicolor-icon-theme (0.17-2) ... -2024-04-05T03:33:24Z #8 71.71 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-04-05T03:33:24Z #8 71.72 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-04-05T03:33:24Z #8 71.73 Setting up libicu67:amd64 (67.1-7) ... -2024-04-05T03:33:24Z #8 71.75 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-04-05T03:33:24Z #8 71.76 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-04-05T03:33:24Z #8 71.78 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-04-05T03:33:24Z #8 71.79 Setting up manpages (5.10-1) ... -2024-04-05T03:33:24Z #8 71.81 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-04-05T03:33:24Z #8 71.82 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-04-05T03:33:24Z #8 71.83 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-04-05T03:33:24Z #8 71.85 Setting up unzip (6.0-26+deb11u1) ... -2024-04-05T03:33:24Z #8 71.86 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-05T03:33:24Z #8 71.88 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-05T03:33:24Z #8 71.90 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-04-05T03:33:24Z #8 71.91 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-04-05T03:33:24Z #8 71.93 Setting up libsensors-config (1:3.6.0-7) ... -2024-04-05T03:33:24Z #8 71.95 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-05T03:33:24Z #8 71.96 Setting up libdeflate0:amd64 (1.7-1) ... -2024-04-05T03:33:24Z #8 71.97 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-05T03:33:24Z #8 71.98 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-05T03:33:24Z #8 72.00 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-05T03:33:24Z #8 72.01 First installation detected... -2024-04-05T03:33:24Z #8 72.01 Checking NSS setup... -2024-04-05T03:33:24Z #8 72.02 Setting up xkb-data (2.29-2) ... -2024-04-05T03:33:24Z #8 72.03 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-04-05T03:33:24Z #8 72.04 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-04-05T03:33:24Z #8 72.06 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-05T03:33:24Z #8 72.07 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-05T03:33:24Z #8 72.08 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-05T03:33:24Z #8 72.10 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-04-05T03:33:24Z #8 72.11 Setting up libasan6:amd64 (10.2.1-6) ... -2024-04-05T03:33:24Z #8 72.12 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-05T03:33:24Z #8 72.14 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-05T03:33:24Z #8 72.15 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-04-05T03:33:24Z #8 72.17 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-04-05T03:33:24Z #8 72.18 Setting up libasound2-data (1.2.4-1.1) ... -2024-04-05T03:33:24Z #8 72.20 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-05T03:33:24Z #8 72.22 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-04-05T03:33:24Z #8 72.23 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-05T03:33:24Z #8 72.24 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-04-05T03:33:24Z #8 72.26 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-05T03:33:24Z #8 72.27 Setting up libva2:amd64 (2.10.0-1) ... -2024-04-05T03:33:24Z #8 72.28 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-05T03:33:24Z #8 72.30 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-04-05T03:33:24Z #8 72.31 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-04-05T03:33:24Z #8 72.33 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-05T03:33:24Z #8 72.34 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-04-05T03:33:24Z #8 72.35 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-05T03:33:24Z #8 72.37 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-05T03:33:24Z #8 72.38 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-05T03:33:24Z #8 72.39 Setting up dbus (1.12.28-0+deb11u1) ... -2024-04-05T03:33:25Z #8 72.56 invoke-rc.d: could not determine current runlevel -2024-04-05T03:33:25Z #8 72.57 invoke-rc.d: policy-rc.d denied execution of start. -2024-04-05T03:33:25Z #8 72.58 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-05T03:33:25Z #8 72.59 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-04-05T03:33:25Z #8 72.60 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-04-05T03:33:25Z #8 72.62 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-05T03:33:25Z #8 72.63 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-05T03:33:25Z #8 72.65 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-04-05T03:33:25Z #8 72.66 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-04-05T03:33:25Z #8 72.68 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-04-05T03:33:25Z #8 72.70 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-05T03:33:25Z #8 73.04 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-05T03:33:25Z #8 73.04 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-05T03:33:25Z #8 73.05 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-04-05T03:33:25Z #8 73.07 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-04-05T03:33:25Z #8 73.08 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-05T03:33:25Z #8 73.09 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-05T03:33:25Z #8 73.11 Setting up patch (2.7.6-7) ... -2024-04-05T03:33:25Z #8 73.12 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-05T03:33:25Z #8 73.13 Setting up fonts-dejavu-core (2.37-2) ... -2024-04-05T03:33:25Z #8 73.30 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-04-05T03:33:25Z #8 73.31 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-04-05T03:33:25Z #8 73.33 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-05T03:33:25Z #8 73.34 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-05T03:33:25Z #8 73.36 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-04-05T03:33:25Z #8 73.37 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-05T03:33:25Z #8 73.38 Setting up libatk1.0-data (2.36.0-2) ... -2024-04-05T03:33:25Z #8 73.40 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-05T03:33:25Z #8 73.41 Setting up alsa-topology-conf (1.2.4-1) ... -2024-04-05T03:33:25Z #8 73.42 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-04-05T03:33:25Z #8 73.43 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-05T03:33:25Z #8 73.45 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-04-05T03:33:25Z #8 73.46 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-05T03:33:25Z #8 73.47 Setting up libvdpau1:amd64 (1.4-3) ... -2024-04-05T03:33:25Z #8 73.49 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-05T03:33:25Z #8 73.50 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-04-05T03:33:25Z #8 73.52 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-04-05T03:33:25Z #8 73.53 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-04-05T03:33:26Z #8 73.55 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-05T03:33:26Z #8 73.79 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-04-05T03:33:26Z #8 73.80 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-05T03:33:26Z #8 73.81 Setting up libthai-data (0.1.28-3) ... -2024-04-05T03:33:26Z #8 73.83 Setting up fonts-humor-sans (1.0-4) ... -2024-04-05T03:33:26Z #8 73.84 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-04-05T03:33:26Z #8 73.85 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-05T03:33:26Z #8 73.87 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-05T03:33:26Z #8 73.88 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-05T03:33:26Z #8 73.89 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-05T03:33:26Z #8 73.91 Setting up glib-networking-common (2.66.0-2) ... -2024-04-05T03:33:26Z #8 73.92 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-04-05T03:33:26Z #8 73.93 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-04-05T03:33:26Z #8 73.95 Setting up libisl23:amd64 (0.23-1) ... -2024-04-05T03:33:26Z #8 73.96 Setting up libc-dev-bin (2.31-13+deb11u8) ... -2024-04-05T03:33:26Z #8 73.98 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-05T03:33:26Z #8 73.99 Setting up libdrm-common (2.4.104-1) ... -2024-04-05T03:33:26Z #8 74.01 Setting up libelf1:amd64 (0.183-1) ... -2024-04-05T03:33:26Z #8 74.02 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-05T03:33:26Z #8 74.04 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-05T03:33:26Z #8 74.05 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-04-05T03:33:26Z #8 74.07 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-05T03:33:26Z #8 74.08 Setting up libzvbi-common (0.2.35-18) ... -2024-04-05T03:33:26Z #8 74.10 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-04-05T03:33:26Z #8 74.11 Setting up cpp-10 (10.2.1-6) ... -2024-04-05T03:33:26Z #8 74.13 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-04-05T03:33:26Z #8 74.14 Setting up libitm1:amd64 (10.2.1-6) ... -2024-04-05T03:33:26Z #8 74.16 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-05T03:33:26Z #8 74.17 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-04-05T03:33:26Z #8 74.18 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-05T03:33:26Z #8 74.20 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-05T03:33:26Z #8 74.21 Setting up libctf0:amd64 (2.35.2-2) ... -2024-04-05T03:33:26Z #8 74.22 Setting up glib-networking-services (2.66.0-2) ... -2024-04-05T03:33:26Z #8 74.24 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-04-05T03:33:26Z #8 74.25 Setting up manpages-dev (5.10-1) ... -2024-04-05T03:33:26Z #8 74.27 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-05T03:33:26Z #8 74.28 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-04-05T03:33:26Z #8 74.29 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-04-05T03:33:26Z #8 74.31 Setting up fontconfig-config (2.13.1-4.2) ... -2024-04-05T03:33:27Z #8 74.68 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-05T03:33:27Z #8 74.69 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-05T03:33:27Z #8 74.70 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-05T03:33:27Z #8 74.72 Setting up libx265-192:amd64 (3.4-2) ... -2024-04-05T03:33:27Z #8 74.73 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-05T03:33:27Z #8 74.75 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-05T03:33:27Z #8 74.76 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-05T03:33:27Z #8 74.77 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-05T03:33:27Z #8 74.79 Setting up libthai0:amd64 (0.1.28-3) ... -2024-04-05T03:33:27Z #8 74.80 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-05T03:33:27Z #8 74.82 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-05T03:33:27Z #8 74.84 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-05T03:33:27Z #8 74.85 Setting up shared-mime-info (2.0-1) ... -2024-04-05T03:33:31Z #8 78.83 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-04-05T03:33:31Z #8 78.84 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-04-05T03:33:31Z #8 78.86 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-05T03:33:31Z #8 78.89 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-05T03:33:31Z #8 78.90 Setting up cpp (4:10.2.1-1) ... -2024-04-05T03:33:31Z #8 78.92 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-04-05T03:33:31Z #8 78.94 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-05T03:33:31Z #8 78.95 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-05T03:33:31Z #8 78.99 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-05T03:33:31Z #8 79.05 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-04-05T03:33:31Z #8 79.07 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-05T03:33:31Z #8 79.08 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-05T03:33:31Z #8 79.10 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-05T03:33:31Z #8 79.11 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-05T03:33:31Z #8 79.13 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-05T03:33:31Z #8 79.14 Setting up fontconfig (2.13.1-4.2) ... -2024-04-05T03:33:33Z #8 79.16 Regenerating fonts cache... done. -2024-04-05T03:33:33Z #8 81.19 Setting up libxft2:amd64 (2.3.2-2) ... -2024-04-05T03:33:33Z #8 81.20 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-05T03:33:33Z #8 81.22 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-05T03:33:33Z #8 81.24 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-05T03:33:33Z #8 81.25 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-05T03:33:33Z #8 81.27 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-05T03:33:33Z #8 81.29 Setting up dconf-service (0.38.0-2) ... -2024-04-05T03:33:33Z #8 81.30 Setting up binutils (2.35.2-2) ... -2024-04-05T03:33:33Z #8 81.32 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-04-05T03:33:33Z #8 81.33 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-05T03:33:33Z #8 81.35 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-04-05T03:33:33Z #8 81.44 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-04-05T03:33:33Z #8 81.45 Setting up libgd3:amd64 (2.3.0-2) ... -2024-04-05T03:33:33Z #8 81.46 Setting up gcc-10 (10.2.1-6) ... -2024-04-05T03:33:33Z #8 81.48 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-05T03:33:33Z #8 81.49 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-05T03:33:33Z #8 81.50 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-05T03:33:33Z #8 81.52 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-05T03:33:33Z #8 81.53 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-05T03:33:33Z #8 81.55 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-05T03:33:33Z #8 81.57 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-05T03:33:33Z #8 81.58 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-05T03:33:33Z #8 81.60 Setting up libc-devtools (2.31-13+deb11u8) ... -2024-04-05T03:33:33Z #8 81.61 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-05T03:33:33Z #8 81.62 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-05T03:33:33Z #8 81.64 Setting up libglx0:amd64 (1.3.2-1) ... -2024-04-05T03:33:34Z #8 81.65 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-05T03:33:34Z #8 81.67 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-05T03:33:34Z #8 81.68 Setting up gcc (4:10.2.1-1) ... -2024-04-05T03:33:34Z #8 81.71 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-05T03:33:34Z #8 81.73 Setting up libgl1:amd64 (1.3.2-1) ... -2024-04-05T03:33:34Z #8 81.74 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-04-05T03:33:34Z #8 81.75 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-05T03:33:34Z #8 81.78 Setting up x11-utils (7.7+5) ... -2024-04-05T03:33:34Z #8 81.84 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-05T03:33:34Z #8 81.85 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-05T03:33:34Z #8 81.87 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-05T03:33:34Z #8 81.89 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-04-05T03:33:34Z #8 81.91 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-04-05T03:33:34Z #8 81.93 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-04-05T03:33:34Z #8 81.98 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-05T03:33:34Z #8 82.02 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-04-05T03:33:34Z #8 82.04 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-05T03:33:34Z #8 82.06 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-05T03:33:34Z #8 82.08 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-05T03:33:34Z #8 82.10 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-05T03:33:34Z #8 82.14 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-05T03:33:34Z #8 82.15 Setting up firefox-esr (115.9.1esr-1~deb11u1) ... -2024-04-05T03:33:34Z #8 82.18 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-04-05T03:33:34Z #8 82.18 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-04-05T03:33:34Z #8 82.19 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-04-05T03:33:34Z #8 82.19 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-04-05T03:33:34Z #8 82.20 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-05T03:33:34Z #8 82.24 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-05T03:33:39Z #8 DONE 87.0s -2024-04-05T03:33:39Z -2024-04-05T03:33:39Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-05T03:33:39Z #6 ... -2024-04-05T03:33:39Z -2024-04-05T03:33:39Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-04-05T03:34:24Z #9 DONE 45.4s -2024-04-05T03:34:24Z -2024-04-05T03:34:24Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-05T03:34:24Z #6 ... -2024-04-05T03:34:24Z -2024-04-05T03:34:24Z #10 [ 5/10] COPY environment.yml /environment.yml -2024-04-05T03:34:24Z #10 DONE 0.1s -2024-04-05T03:34:24Z -2024-04-05T03:34:24Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-04-05T03:36:55Z #11 150.8 Transaction -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 Prefix: /opt/conda/envs/birdy -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 Updating specs: -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 - xclim -2024-04-05T03:36:55Z #11 150.8 - ravenpy -2024-04-05T03:36:55Z #11 150.8 - python=3.10 -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 Package Version Build Channel Size -2024-04-05T03:36:55Z #11 150.8 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-05T03:36:55Z #11 150.8 Install: -2024-04-05T03:36:55Z #11 150.8 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-04-05T03:36:55Z #11 150.8 + python_abi 3.10 4_cp310 conda-forge 6kB -2024-04-05T03:36:55Z #11 150.8 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB -2024-04-05T03:36:55Z #11 150.8 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB -2024-04-05T03:36:55Z #11 150.8 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB -2024-04-05T03:36:55Z #11 150.8 + mpi 1.0 openmpi conda-forge 4kB -2024-04-05T03:36:55Z #11 150.8 + libgomp 13.2.0 h807b86a_5 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-04-05T03:36:55Z #11 150.8 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-04-05T03:36:55Z #11 150.8 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-04-05T03:36:55Z #11 150.8 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-04-05T03:36:55Z #11 150.8 + lzo 2.10 h516909a_1000 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-04-05T03:36:55Z #11 150.8 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-04-05T03:36:55Z #11 150.8 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-04-05T03:36:55Z #11 150.8 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-04-05T03:36:55Z #11 150.8 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-04-05T03:36:55Z #11 150.8 + c-ares 1.28.1 hd590300_0 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + libev 4.33 hd590300_2 conda-forge 113kB -2024-04-05T03:36:55Z #11 150.8 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-04-05T03:36:55Z #11 150.8 + aws-c-common 0.9.14 hd590300_0 conda-forge 226kB -2024-04-05T03:36:55Z #11 150.8 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-04-05T03:36:55Z #11 150.8 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-04-05T03:36:55Z #11 150.8 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-04-05T03:36:55Z #11 150.8 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-04-05T03:36:55Z #11 150.8 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-04-05T03:36:55Z #11 150.8 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-04-05T03:36:55Z #11 150.8 + giflib 5.2.1 h0b41bf4_3 conda-forge 77kB -2024-04-05T03:36:55Z #11 150.8 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-04-05T03:36:55Z #11 150.8 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-04-05T03:36:55Z #11 150.8 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + openssl 3.2.1 hd590300_1 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB -2024-04-05T03:36:55Z #11 150.8 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-04-05T03:36:55Z #11 150.8 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-04-05T03:36:55Z #11 150.8 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-04-05T03:36:55Z #11 150.8 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-04-05T03:36:55Z #11 150.8 + icu 73.2 h59595ed_0 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-04-05T03:36:55Z #11 150.8 + libwebp-base 1.3.2 hd590300_0 conda-forge 402kB -2024-04-05T03:36:55Z #11 150.8 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB -2024-04-05T03:36:55Z #11 150.8 + libdeflate 1.20 hd590300_0 conda-forge 72kB -2024-04-05T03:36:55Z #11 150.8 + libaec 1.1.3 h59595ed_0 conda-forge 35kB -2024-04-05T03:36:55Z #11 150.8 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-04-05T03:36:55Z #11 150.8 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-04-05T03:36:55Z #11 150.8 + snappy 1.1.10 h9fff704_0 conda-forge 39kB -2024-04-05T03:36:55Z #11 150.8 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-04-05T03:36:55Z #11 150.8 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-04-05T03:36:55Z #11 150.8 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB -2024-04-05T03:36:55Z #11 150.8 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB -2024-04-05T03:36:55Z #11 150.8 + libnsl 2.0.1 hd590300_0 conda-forge 33kB -2024-04-05T03:36:55Z #11 150.8 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-04-05T03:36:55Z #11 150.8 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB -2024-04-05T03:36:55Z #11 150.8 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-04-05T03:36:55Z #11 150.8 + aws-c-compression 0.2.18 h4466546_2 conda-forge 19kB -2024-04-05T03:36:55Z #11 150.8 + aws-c-sdkutils 0.1.15 h4466546_2 conda-forge 55kB -2024-04-05T03:36:55Z #11 150.8 + aws-checksums 0.1.18 h4466546_2 conda-forge 50kB -2024-04-05T03:36:55Z #11 150.8 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-04-05T03:36:55Z #11 150.8 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-04-05T03:36:55Z #11 150.8 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-04-05T03:36:55Z #11 150.8 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB -2024-04-05T03:36:55Z #11 150.8 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-04-05T03:36:55Z #11 150.8 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-04-05T03:36:55Z #11 150.8 + s2n 1.4.8 h06160fa_0 conda-forge 341kB -2024-04-05T03:36:55Z #11 150.8 + aws-c-cal 0.6.10 ha9bf9b1_2 conda-forge 55kB -2024-04-05T03:36:55Z #11 150.8 + expat 2.6.2 h59595ed_0 conda-forge 138kB -2024-04-05T03:36:55Z #11 150.8 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB -2024-04-05T03:36:55Z #11 150.8 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-04-05T03:36:55Z #11 150.8 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-04-05T03:36:55Z #11 150.8 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-04-05T03:36:55Z #11 150.8 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-04-05T03:36:55Z #11 150.8 + libssh2 1.11.0 h0841786_0 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB -2024-04-05T03:36:55Z #11 150.8 + pcre2 10.43 hcad00b1_0 conda-forge 951kB -2024-04-05T03:36:55Z #11 150.8 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-04-05T03:36:55Z #11 150.8 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2024-04-05T03:36:55Z #11 150.8 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB -2024-04-05T03:36:55Z #11 150.8 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB -2024-04-05T03:36:55Z #11 150.8 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-04-05T03:36:55Z #11 150.8 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-04-05T03:36:55Z #11 150.8 + readline 8.2 h8228510_1 conda-forge 281kB -2024-04-05T03:36:55Z #11 150.8 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-04-05T03:36:55Z #11 150.8 + libxml2 2.12.6 h232c23b_1 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + ucx 1.15.0 ha691c75_8 conda-forge 7MB -2024-04-05T03:36:55Z #11 150.8 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-04-05T03:36:55Z #11 150.8 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-04-05T03:36:55Z #11 150.8 + xorg-libx11 1.8.7 h8ee46fc_0 conda-forge 829kB -2024-04-05T03:36:55Z #11 150.8 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-04-05T03:36:55Z #11 150.8 + aws-c-io 0.14.6 h96cd748_2 conda-forge 158kB -2024-04-05T03:36:55Z #11 150.8 + libglib 2.80.0 hf2295e7_1 conda-forge 3MB -2024-04-05T03:36:55Z #11 150.8 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-04-05T03:36:55Z #11 150.8 + orc 2.0.0 h1e5e2c1_0 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-04-05T03:36:55Z #11 150.8 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB -2024-04-05T03:36:55Z #11 150.8 + blosc 1.21.5 h0f2a231_0 conda-forge 49kB -2024-04-05T03:36:55Z #11 150.8 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-04-05T03:36:55Z #11 150.8 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB -2024-04-05T03:36:55Z #11 150.8 + libopenblas 0.3.26 pthreads_h413a1c8_0 conda-forge 6MB -2024-04-05T03:36:55Z #11 150.8 + krb5 1.21.2 h659d440_0 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB -2024-04-05T03:36:55Z #11 150.8 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-04-05T03:36:55Z #11 150.8 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-04-05T03:36:55Z #11 150.8 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB -2024-04-05T03:36:55Z #11 150.8 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-04-05T03:36:55Z #11 150.8 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-04-05T03:36:55Z #11 150.8 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-04-05T03:36:55Z #11 150.8 + aws-c-http 0.8.1 hbfc29b2_7 conda-forge 194kB -2024-04-05T03:36:55Z #11 150.8 + aws-c-event-stream 0.4.2 he635cd5_6 conda-forge 54kB -2024-04-05T03:36:55Z #11 150.8 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-04-05T03:36:55Z #11 150.8 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-04-05T03:36:55Z #11 150.8 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-04-05T03:36:55Z #11 150.8 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-04-05T03:36:55Z #11 150.8 + libblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-04-05T03:36:55Z #11 150.8 + libpq 16.2 h33b98f1_1 conda-forge 3MB -2024-04-05T03:36:55Z #11 150.8 + libcurl 8.7.1 hca28451_0 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + aws-c-mqtt 0.10.3 hffff1cc_2 conda-forge 163kB -2024-04-05T03:36:55Z #11 150.8 + aws-c-auth 0.7.16 haed3651_8 conda-forge 103kB -2024-04-05T03:36:55Z #11 150.8 + libcblas 3.9.0 21_linux64_openblas conda-forge 15kB -2024-04-05T03:36:55Z #11 150.8 + liblapack 3.9.0 21_linux64_openblas conda-forge 15kB -2024-04-05T03:36:55Z #11 150.8 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB -2024-04-05T03:36:55Z #11 150.8 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB -2024-04-05T03:36:55Z #11 150.8 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-04-05T03:36:55Z #11 150.8 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB -2024-04-05T03:36:55Z #11 150.8 + proj 9.3.1 h1d62c97_0 conda-forge 3MB -2024-04-05T03:36:55Z #11 150.8 + aws-c-s3 0.5.5 h4893938_0 conda-forge 105kB -2024-04-05T03:36:55Z #11 150.8 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB -2024-04-05T03:36:55Z #11 150.8 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB -2024-04-05T03:36:55Z #11 150.8 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-04-05T03:36:55Z #11 150.8 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-04-05T03:36:55Z #11 150.8 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB -2024-04-05T03:36:55Z #11 150.8 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB -2024-04-05T03:36:55Z #11 150.8 + aws-crt-cpp 0.26.4 h58a74b7_3 conda-forge 336kB -2024-04-05T03:36:55Z #11 150.8 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB -2024-04-05T03:36:55Z #11 150.8 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-04-05T03:36:55Z #11 150.8 + aws-sdk-cpp 1.11.267 hb1af6a8_4 conda-forge 4MB -2024-04-05T03:36:55Z #11 150.8 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB -2024-04-05T03:36:55Z #11 150.8 + libarrow 15.0.2 hb86450c_1_cpu conda-forge 8MB -2024-04-05T03:36:55Z #11 150.8 + tiledb 2.21.1 ha9641ad_1 conda-forge 5MB -2024-04-05T03:36:55Z #11 150.8 + libparquet 15.0.2 h352af49_1_cpu conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + libarrow-gandiva 15.0.2 hb016d2e_1_cpu conda-forge 897kB -2024-04-05T03:36:55Z #11 150.8 + libarrow-flight 15.0.2 hc6145d9_1_cpu conda-forge 503kB -2024-04-05T03:36:55Z #11 150.8 + libarrow-acero 15.0.2 h59595ed_1_cpu conda-forge 597kB -2024-04-05T03:36:55Z #11 150.8 + libarrow-flight-sql 15.0.2 h757c851_1_cpu conda-forge 194kB -2024-04-05T03:36:55Z #11 150.8 + libarrow-dataset 15.0.2 h59595ed_1_cpu conda-forge 584kB -2024-04-05T03:36:55Z #11 150.8 + libarrow-substrait 15.0.2 h757c851_1_cpu conda-forge 519kB -2024-04-05T03:36:55Z #11 150.8 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-04-05T03:36:55Z #11 150.8 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-04-05T03:36:55Z #11 150.8 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-04-05T03:36:55Z #11 150.8 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-04-05T03:36:55Z #11 150.8 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-04-05T03:36:55Z #11 150.8 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB -2024-04-05T03:36:55Z #11 150.8 + fonts-conda-forge 1 0 conda-forge 4kB -2024-04-05T03:36:55Z #11 150.8 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-04-05T03:36:55Z #11 150.8 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB -2024-04-05T03:36:55Z #11 150.8 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB -2024-04-05T03:36:55Z #11 150.8 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-04-05T03:36:55Z #11 150.8 + poppler 24.03.0 h590f24d_0 conda-forge 2MB -2024-04-05T03:36:55Z #11 150.8 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB -2024-04-05T03:36:55Z #11 150.8 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB -2024-04-05T03:36:55Z #11 150.8 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB -2024-04-05T03:36:55Z #11 150.8 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB -2024-04-05T03:36:55Z #11 150.8 + joblib 1.3.2 pyhd8ed1ab_0 conda-forge 221kB -2024-04-05T03:36:55Z #11 150.8 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-04-05T03:36:55Z #11 150.8 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB -2024-04-05T03:36:55Z #11 150.8 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB -2024-04-05T03:36:55Z #11 150.8 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-05T03:36:55Z #11 150.8 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-04-05T03:36:55Z #11 150.8 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-04-05T03:36:55Z #11 150.8 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-05T03:36:55Z #11 150.8 + networkx 3.2.1 pyhd8ed1ab_0 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-04-05T03:36:55Z #11 150.8 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB -2024-04-05T03:36:55Z #11 150.8 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-04-05T03:36:55Z #11 150.8 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-04-05T03:36:55Z #11 150.8 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-04-05T03:36:55Z #11 150.8 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB -2024-04-05T03:36:55Z #11 150.8 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-04-05T03:36:55Z #11 150.8 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-04-05T03:36:55Z #11 150.8 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-04-05T03:36:55Z #11 150.8 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-04-05T03:36:55Z #11 150.8 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-04-05T03:36:55Z #11 150.8 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-04-05T03:36:55Z #11 150.8 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-04-05T03:36:55Z #11 150.8 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-04-05T03:36:55Z #11 150.8 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-04-05T03:36:55Z #11 150.8 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-05T03:36:55Z #11 150.8 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-04-05T03:36:55Z #11 150.8 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-04-05T03:36:55Z #11 150.8 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-04-05T03:36:55Z #11 150.8 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB -2024-04-05T03:36:55Z #11 150.8 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB -2024-04-05T03:36:55Z #11 150.8 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-04-05T03:36:55Z #11 150.8 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-04-05T03:36:55Z #11 150.8 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB -2024-04-05T03:36:55Z #11 150.8 + typing_extensions 4.10.0 pyha770c72_0 conda-forge 37kB -2024-04-05T03:36:55Z #11 150.8 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-04-05T03:36:55Z #11 150.8 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB -2024-04-05T03:36:55Z #11 150.8 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB -2024-04-05T03:36:55Z #11 150.8 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-04-05T03:36:55Z #11 150.8 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-04-05T03:36:55Z #11 150.8 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-04-05T03:36:55Z #11 150.8 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-04-05T03:36:55Z #11 150.8 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-04-05T03:36:55Z #11 150.8 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB -2024-04-05T03:36:55Z #11 150.8 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-04-05T03:36:55Z #11 150.8 + typing-extensions 4.10.0 hd8ed1ab_0 conda-forge 10kB -2024-04-05T03:36:55Z #11 150.8 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB -2024-04-05T03:36:55Z #11 150.8 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-05T03:36:55Z #11 150.8 + jsonpickle 3.0.2 pyhd8ed1ab_1 conda-forge 39kB -2024-04-05T03:36:55Z #11 150.8 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB -2024-04-05T03:36:55Z #11 150.8 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB -2024-04-05T03:36:55Z #11 150.8 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB -2024-04-05T03:36:55Z #11 150.8 + tornado 6.4 py310h2372a71_0 conda-forge 651kB -2024-04-05T03:36:55Z #11 150.8 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB -2024-04-05T03:36:55Z #11 150.8 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB -2024-04-05T03:36:55Z #11 150.8 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB -2024-04-05T03:36:55Z #11 150.8 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB -2024-04-05T03:36:55Z #11 150.8 + pillow 10.3.0 py310hf73ecf8_0 conda-forge 42MB -2024-04-05T03:36:55Z #11 150.8 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB -2024-04-05T03:36:55Z #11 150.8 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB -2024-04-05T03:36:55Z #11 150.8 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB -2024-04-05T03:36:55Z #11 150.8 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB -2024-04-05T03:36:55Z #11 150.8 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB -2024-04-05T03:36:55Z #11 150.8 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB -2024-04-05T03:36:55Z #11 150.8 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB -2024-04-05T03:36:55Z #11 150.8 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB -2024-04-05T03:36:55Z #11 150.8 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB -2024-04-05T03:36:55Z #11 150.8 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB -2024-04-05T03:36:55Z #11 150.8 + fonttools 4.50.0 py310h2372a71_0 conda-forge 2MB -2024-04-05T03:36:55Z #11 150.8 + pyarrow 15.0.2 py310hf9e7431_1_cpu conda-forge 4MB -2024-04-05T03:36:55Z #11 150.8 + contourpy 1.2.0 py310hd41b1e2_0 conda-forge 239kB -2024-04-05T03:36:55Z #11 150.8 + gdal 3.8.4 py310he073c5f_5 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB -2024-04-05T03:36:55Z #11 150.8 + numba 0.59.1 py310h7dc5dd1_0 conda-forge 4MB -2024-04-05T03:36:55Z #11 150.8 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB -2024-04-05T03:36:55Z #11 150.8 + h5py 3.10.0 nompi_py310h65828d5_101 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + pandas 2.2.1 py310hcc13569_0 conda-forge 13MB -2024-04-05T03:36:55Z #11 150.8 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB -2024-04-05T03:36:55Z #11 150.8 + scipy 1.12.0 py310hb13e2d6_2 conda-forge 16MB -2024-04-05T03:36:55Z #11 150.8 + matplotlib-base 3.8.3 py310h62c0568_0 conda-forge 7MB -2024-04-05T03:36:55Z #11 150.8 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB -2024-04-05T03:36:55Z #11 150.8 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB -2024-04-05T03:36:55Z #11 150.8 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB -2024-04-05T03:36:55Z #11 150.8 + scikit-learn 1.4.1.post1 py310h1fdf081_0 conda-forge 9MB -2024-04-05T03:36:55Z #11 150.8 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-04-05T03:36:55Z #11 150.8 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-04-05T03:36:55Z #11 150.8 + yamale 4.0.4 pyh6c4a22f_0 conda-forge 41kB -2024-04-05T03:36:55Z #11 150.8 + dask-core 2024.4.0 pyhd8ed1ab_0 conda-forge 881kB -2024-04-05T03:36:55Z #11 150.8 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB -2024-04-05T03:36:55Z #11 150.8 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-04-05T03:36:55Z #11 150.8 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-04-05T03:36:55Z #11 150.8 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-04-05T03:36:55Z #11 150.8 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-04-05T03:36:55Z #11 150.8 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-04-05T03:36:55Z #11 150.8 + pydantic 2.6.4 pyhd8ed1ab_0 conda-forge 272kB -2024-04-05T03:36:55Z #11 150.8 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-04-05T03:36:55Z #11 150.8 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB -2024-04-05T03:36:55Z #11 150.8 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB -2024-04-05T03:36:55Z #11 150.8 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB -2024-04-05T03:36:55Z #11 150.8 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-04-05T03:36:55Z #11 150.8 + properscoring 0.1 py_0 conda-forge 22kB -2024-04-05T03:36:55Z #11 150.8 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-04-05T03:36:55Z #11 150.8 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-04-05T03:36:55Z #11 150.8 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-04-05T03:36:55Z #11 150.8 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB -2024-04-05T03:36:55Z #11 150.8 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB -2024-04-05T03:36:55Z #11 150.8 + dask-expr 1.0.9 pyhd8ed1ab_0 conda-forge 143kB -2024-04-05T03:36:55Z #11 150.8 + distributed 2024.4.0 pyhd8ed1ab_0 conda-forge 797kB -2024-04-05T03:36:55Z #11 150.8 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-04-05T03:36:55Z #11 150.8 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-04-05T03:36:55Z #11 150.8 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-04-05T03:36:55Z #11 150.8 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-04-05T03:36:55Z #11 150.8 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-04-05T03:36:55Z #11 150.8 + dask 2024.4.0 pyhd8ed1ab_0 conda-forge 7kB -2024-04-05T03:36:55Z #11 150.8 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB -2024-04-05T03:36:55Z #11 150.8 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB -2024-04-05T03:36:55Z #11 150.8 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-04-05T03:36:55Z #11 150.8 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-04-05T03:36:55Z #11 150.8 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB -2024-04-05T03:36:55Z #11 150.8 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB -2024-04-05T03:36:55Z #11 150.8 + rioxarray 0.15.3 pyhd8ed1ab_0 conda-forge 51kB -2024-04-05T03:36:55Z #11 150.8 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB -2024-04-05T03:36:55Z #11 150.8 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-04-05T03:36:55Z #11 150.8 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB -2024-04-05T03:36:55Z #11 150.8 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-04-05T03:36:55Z #11 150.8 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 Summary: -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 Install: 299 packages -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 Total download: 439MB -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:36:55Z #11 150.8 -2024-04-05T03:38:30Z #11 245.5 -2024-04-05T03:38:30Z #11 245.5 Looking for: ['xclim', 'ravenpy', 'python=3.10'] -2024-04-05T03:38:30Z #11 245.5 -2024-04-05T03:38:30Z #11 245.5 -2024-04-05T03:38:30Z #11 245.5 Downloading and Extracting Packages: ...working... done -2024-04-05T03:38:34Z #11 245.5 Preparing transaction: ...working... done -2024-04-05T03:38:48Z #11 249.6 Verifying transaction: ...working... done -2024-04-05T03:39:22Z #11 263.1 Executing transaction: ...working... -2024-04-05T03:39:22Z #11 297.5 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-04-05T03:39:22Z #11 297.5 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-04-05T03:39:22Z #11 297.5 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-04-05T03:39:22Z #11 297.5 mpiexec --mca opal_cuda_support 1 ... -2024-04-05T03:39:22Z #11 297.5 -2024-04-05T03:39:22Z #11 297.5 In addition, the UCX support is also built but disabled by default. -2024-04-05T03:39:22Z #11 297.5 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-04-05T03:39:22Z #11 297.5 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-04-05T03:39:22Z #11 297.5 Equivalently, you can set the MCA parameters in the command line: -2024-04-05T03:39:22Z #11 297.5 mpiexec --mca pml ucx --mca osc ucx ... -2024-04-05T03:39:22Z #11 297.5 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-04-05T03:39:22Z #11 297.5 Please consult UCX's documentation for detail. -2024-04-05T03:39:22Z #11 297.5 -2024-04-05T03:39:22Z #11 297.5 -2024-04-05T03:39:22Z #11 297.5 done -2024-04-05T03:39:22Z #11 297.6 -2024-04-05T03:39:22Z #11 297.6 To activate this environment, use -2024-04-05T03:39:22Z #11 297.6 -2024-04-05T03:39:22Z #11 297.6 $ mamba activate birdy -2024-04-05T03:39:22Z #11 297.6 -2024-04-05T03:39:22Z #11 297.6 To deactivate an active environment, use -2024-04-05T03:39:22Z #11 297.6 -2024-04-05T03:39:22Z #11 297.6 $ mamba deactivate -2024-04-05T03:39:22Z #11 297.6 -2024-04-05T03:39:25Z #11 301.0 Channels: -2024-04-05T03:39:25Z #11 301.0 - conda-forge -2024-04-05T03:39:25Z #11 301.0 - cdat -2024-04-05T03:39:25Z #11 301.0 - bokeh -2024-04-05T03:39:25Z #11 301.0 - pyviz/label/dev -2024-04-05T03:39:25Z #11 301.0 - defaults -2024-04-05T03:39:25Z #11 301.0 Platform: linux-64 -2024-04-05T03:40:03Z #11 301.0 Collecting package metadata (repodata.json): ...working... done -2024-04-05T03:41:05Z #11 338.3 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.7 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 400.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:05Z #11 401.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:41:06Z #11 401.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:02Z #11 457.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:03Z #11 458.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 459.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:04Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:42:05Z #11 460.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-05T03:44:14Z #11 589.4 done -2024-04-05T03:46:12Z #11 707.7 -2024-04-05T03:46:12Z #11 707.7 Downloading and Extracting Packages: ...working... done -2024-04-05T03:46:22Z #11 707.7 Preparing transaction: ...working... done -2024-04-05T03:46:46Z #11 717.3 Verifying transaction: ...working... done -2024-04-05T03:47:47Z #11 741.6 Executing transaction: ...working... -2024-04-05T03:47:47Z #11 802.1 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-04-05T03:47:47Z #11 802.1 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-04-05T03:47:47Z #11 802.1 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-04-05T03:47:47Z #11 802.1 mpiexec --mca opal_cuda_support 1 ... -2024-04-05T03:47:47Z #11 802.1 -2024-04-05T03:47:47Z #11 802.1 In addition, the UCX support is also built but disabled by default. -2024-04-05T03:47:47Z #11 802.1 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-04-05T03:47:47Z #11 802.1 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-04-05T03:47:47Z #11 802.1 Equivalently, you can set the MCA parameters in the command line: -2024-04-05T03:47:47Z #11 802.1 mpiexec --mca pml ucx --mca osc ucx ... -2024-04-05T03:47:47Z #11 802.1 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-04-05T03:47:47Z #11 802.1 Please consult UCX's documentation for detail. -2024-04-05T03:47:47Z #11 802.1 -2024-04-05T03:47:47Z #11 802.1 -2024-04-05T03:47:47Z #11 802.1 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-04-05T03:47:47Z #11 802.1 given by the platformdirs library. To remove this warning and -2024-04-05T03:47:47Z #11 802.1 see the appropriate new directories, set the environment variable -2024-04-05T03:47:47Z #11 802.1 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-04-05T03:47:47Z #11 802.1 The use of platformdirs will be the default in `jupyter_core` v6 -2024-04-05T03:47:47Z #11 802.1 from . import paths -2024-04-05T03:47:47Z #11 802.1 Enabling: jupyterlab_git -2024-04-05T03:47:47Z #11 802.1 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-05T03:47:47Z #11 802.1 - Validating... -2024-04-05T03:47:47Z #11 802.1 jupyterlab_git OK -2024-04-05T03:47:47Z #11 802.1 -2024-04-05T03:47:47Z #11 802.1 done -2024-04-05T03:48:32Z #11 809.9 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-04-05T03:48:32Z #11 847.3 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.qil_1kl6.requirements.txt', '--exists-action=b'] -2024-04-05T03:48:32Z #11 847.3 Pip subprocess output: -2024-04-05T03:48:32Z #11 847.3 Collecting xncml (from -r /condaenv.qil_1kl6.requirements.txt (line 1)) -2024-04-05T03:48:32Z #11 847.3 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting hsclient (from -r /condaenv.qil_1kl6.requirements.txt (line 2)) -2024-04-05T03:48:32Z #11 847.3 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting fstd2nc (from -r /condaenv.qil_1kl6.requirements.txt (line 3)) -2024-04-05T03:48:32Z #11 847.3 Downloading fstd2nc-0.20240401.0.tar.gz (166 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.9/166.9 kB 9.0 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Installing build dependencies: started -2024-04-05T03:48:32Z #11 847.3 Installing build dependencies: finished with status 'done' -2024-04-05T03:48:32Z #11 847.3 Getting requirements to build wheel: started -2024-04-05T03:48:32Z #11 847.3 Getting requirements to build wheel: finished with status 'done' -2024-04-05T03:48:32Z #11 847.3 Installing backend dependencies: started -2024-04-05T03:48:32Z #11 847.3 Installing backend dependencies: finished with status 'done' -2024-04-05T03:48:32Z #11 847.3 Preparing metadata (pyproject.toml): started -2024-04-05T03:48:32Z #11 847.3 Preparing metadata (pyproject.toml): finished with status 'done' -2024-04-05T03:48:32Z #11 847.3 Collecting figanos (from -r /condaenv.qil_1kl6.requirements.txt (line 4)) -2024-04-05T03:48:32Z #11 847.3 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting pixiedust (from -r /condaenv.qil_1kl6.requirements.txt (line 5)) -2024-04-05T03:48:32Z #11 847.3 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 11.7 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Preparing metadata (setup.py): started -2024-04-05T03:48:32Z #11 847.3 Preparing metadata (setup.py): finished with status 'done' -2024-04-05T03:48:32Z #11 847.3 Collecting ipython_blocking (from -r /condaenv.qil_1kl6.requirements.txt (line 6)) -2024-04-05T03:48:32Z #11 847.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting jupyternotify (from -r /condaenv.qil_1kl6.requirements.txt (line 7)) -2024-04-05T03:48:32Z #11 847.3 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-04-05T03:48:32Z #11 847.3 Preparing metadata (setup.py): started -2024-04-05T03:48:32Z #11 847.3 Preparing metadata (setup.py): finished with status 'done' -2024-04-05T03:48:32Z #11 847.3 Collecting jupyterlab-logout (from -r /condaenv.qil_1kl6.requirements.txt (line 8)) -2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.qil_1kl6.requirements.txt (line 9)) -2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting pytest-tornasync (from -r /condaenv.qil_1kl6.requirements.txt (line 10)) -2024-04-05T03:48:32Z #11 847.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting xmltodict (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) -2024-04-05T03:48:32Z #11 847.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting xsdata (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) -2024-04-05T03:48:32Z #11 847.3 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (2023.8.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (1.6.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (1.6.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (2024.4.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (5.9.8) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (69.2.0) -2024-04-05T03:48:32Z #11 847.3 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) -2024-04-05T03:48:32Z #11 847.3 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.31.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.0.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.qil_1kl6.requirements.txt (line 3)) (1.24.4) -2024-04-05T03:48:32Z #11 847.3 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.qil_1kl6.requirements.txt (line 3)) -2024-04-05T03:48:32Z #11 847.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.22.0) -2024-04-05T03:48:32Z #11 847.3 Collecting cairosvg (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) -2024-04-05T03:48:32Z #11 847.3 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.14.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.8.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.1.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (4.2.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (6.0.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.13.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.22.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.47.0) -2024-04-05T03:48:32Z #11 847.3 Collecting geojson (from pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) -2024-04-05T03:48:32Z #11 847.3 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting astunparse (from pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) -2024-04-05T03:48:32Z #11 847.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) (3.6) -2024-04-05T03:48:32Z #11 847.3 Collecting colour (from pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) -2024-04-05T03:48:32Z #11 847.3 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (8.22.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (8.1.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.7.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (1.0.0) -2024-04-05T03:48:32Z #11 847.3 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) -2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab-4.1.5-py3-none-any.whl.metadata (15 kB) -2024-04-05T03:48:32Z #11 847.3 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-04-05T03:48:32Z #11 847.3 Collecting jupyterlab-logout (from -r /condaenv.qil_1kl6.requirements.txt (line 8)) -2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.6.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (3.6.7) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (23.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (6.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (5.7.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.25.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.13.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.2.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.8.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.0.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (6.5.6) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (3.1.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.0.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.qil_1kl6.requirements.txt (line 10)) (8.1.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.qil_1kl6.requirements.txt (line 3)) (2024.1) -2024-04-05T03:48:32Z #11 847.3 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) -2024-04-05T03:48:32Z #11 847.3 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.6.4) -2024-04-05T03:48:32Z #11 847.3 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) -2024-04-05T03:48:32Z #11 847.3 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (0.6.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.16.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (4.10.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.qil_1kl6.requirements.txt (line 10)) (2.0.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.qil_1kl6.requirements.txt (line 10)) (1.4.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.qil_1kl6.requirements.txt (line 10)) (1.2.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (24.0.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.3.8) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.9.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (8.1.7) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.0.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.0.6) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.59.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.23) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.4.1.post1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.12.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.14.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (3.0.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (2024.3.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (1.4.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (0.12.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (7.1.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.9.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2024.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) (0.43.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.qil_1kl6.requirements.txt (line 5)) (1.16.0) -2024-04-05T03:48:32Z #11 847.3 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) -2024-04-05T03:48:32Z #11 847.3 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) -2024-04-05T03:48:32Z #11 847.3 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) -2024-04-05T03:48:32Z #11 847.3 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.7.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (9.4.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.2.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.0.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyshp>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.3.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyproj>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.5.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.2.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.12.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (4.50.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.4.5) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.1.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.9.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (5.1.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.19.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.1.6) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (3.0.42) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (2.17.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.6.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (5.14.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (4.9.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.2.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (4.0.10) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (3.0.10) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (5.5.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (6.6.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (7.16.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (6.29.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (7.4.9) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (5.10.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (3.3.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (3.6) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2.0.7) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (2024.2.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) (3.2.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.2.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.34.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2023.8.12) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (23.2.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.1.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.7.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (4.0.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (3.17.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.8.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.1.5) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (1.6.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (24.0.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (4.3.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (23.1.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.10.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.5.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (7.7.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.20.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.8.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.18.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.7.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.9.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.8.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.5.9) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.14.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.9.24) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (4.21.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (4.12.3) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (6.1.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (0.3.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (3.0.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (1.5.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (2.19.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.2.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.2.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.qil_1kl6.requirements.txt (line 1)) (1.0.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.7.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.2.13) -2024-04-05T03:48:32Z #11 847.3 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) -2024-04-05T03:48:32Z #11 847.3 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.3.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (3.4.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (1.16.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.5.1) -2024-04-05T03:48:32Z #11 847.3 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.qil_1kl6.requirements.txt (line 2)) -2024-04-05T03:48:32Z #11 847.3 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (1.8.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.42.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (2.4.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (2.0.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (2.4.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.qil_1kl6.requirements.txt (line 6)) (0.2.2) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (0.5.6) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.3.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.qil_1kl6.requirements.txt (line 4)) (2.22) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2023.12.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.34.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.18.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.0.7) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.1.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.1.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (22.1.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (0.19.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (21.2.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.qil_1kl6.requirements.txt (line 7)) (2.5) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.5.1) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (20.11.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.4) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.3.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.13) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (1.3.0) -2024-04-05T03:48:32Z #11 847.3 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.qil_1kl6.requirements.txt (line 8)) (2.9.0.20240316) -2024-04-05T03:48:32Z #11 847.3 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 41.5 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 9.0 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 34.2 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 52.2 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 4.0 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading xsdata-24.4-py3-none-any.whl (229 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 22.4 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 18.7 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 6.6 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-04-05T03:48:32Z #11 847.3 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 24.1 MB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-04-05T03:48:32Z #11 847.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 628.2 kB/s eta 0:00:00 -2024-04-05T03:48:32Z #11 847.3 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify -2024-04-05T03:48:32Z #11 847.3 Building wheel for fstd2nc (pyproject.toml): started -2024-04-05T03:48:32Z #11 847.3 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-04-05T03:48:32Z #11 847.3 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.0-py3-none-any.whl size=169076 sha256=50c552132ce4b88f0db3a589b7aaa698f6e65ba0c5f284be6bd995ccd5c0b90d -2024-04-05T03:48:32Z #11 847.3 Stored in directory: /root/.cache/pip/wheels/b7/e5/e2/65589bc6ca947390d3d694cdc195ca6662e0448bb58d970eb6 -2024-04-05T03:48:32Z #11 847.3 Building wheel for pixiedust (setup.py): started -2024-04-05T03:48:32Z #11 847.3 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-04-05T03:48:32Z #11 847.3 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=7c07f4b53014bc56d5c0fa8c3e1a5f8515078f24179c39f4f9cced07b82bc47b -2024-04-05T03:48:32Z #11 847.3 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 -2024-04-05T03:48:32Z #11 847.3 Building wheel for jupyternotify (setup.py): started -2024-04-05T03:48:32Z #11 847.3 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-04-05T03:48:32Z #11 847.3 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=a7f5cd8379f5939b1880e6f972110625ffa68023062906246ccfc25721d8f1fc -2024-04-05T03:48:32Z #11 847.3 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 -2024-04-05T03:48:32Z #11 847.3 Successfully built fstd2nc pixiedust jupyternotify -2024-04-05T03:48:32Z #11 847.3 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-04-05T03:48:32Z #11 847.3 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.0 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 -2024-04-05T03:48:32Z #11 847.3 -2024-04-05T03:48:32Z #11 847.3 done -2024-04-05T03:48:32Z #11 847.3 # -2024-04-05T03:48:32Z #11 847.3 # To activate this environment, use -2024-04-05T03:48:32Z #11 847.3 # -2024-04-05T03:48:32Z #11 847.3 # $ conda activate birdy -2024-04-05T03:48:32Z #11 847.3 # -2024-04-05T03:48:32Z #11 847.3 # To deactivate an active environment, use -2024-04-05T03:48:32Z #11 847.3 # -2024-04-05T03:48:32Z #11 847.3 # $ conda deactivate -2024-04-05T03:48:32Z #11 847.3 -2024-04-05T03:48:53Z #11 868.1 Will remove 783 (1.19 GB) tarball(s). -2024-04-05T03:48:53Z #11 868.1 Will remove 1 index cache(s). -2024-04-05T03:48:53Z #11 868.1 Will remove 148 (1.22 GB) package(s). -2024-04-05T03:48:53Z #11 868.1 There are no tempfile(s) to remove. -2024-04-05T03:48:53Z #11 868.1 There are no logfile(s) to remove. -2024-04-05T03:48:53Z #11 DONE 868.9s -2024-04-05T03:48:53Z -2024-04-05T03:48:53Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2024-04-05T03:48:55Z #12 1.439 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-04-05T03:48:55Z #12 DONE 1.6s -2024-04-05T03:48:55Z -2024-04-05T03:48:55Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-05T03:48:55Z #6 ... -2024-04-05T03:48:55Z -2024-04-05T03:48:55Z #13 [ 8/10] RUN jupyter lab build -2024-04-05T03:48:57Z #13 2.089 [LabBuildApp] JupyterLab 3.6.7 -2024-04-05T03:48:57Z #13 2.090 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2024-04-05T03:48:58Z #13 2.742 [LabBuildApp] Building jupyterlab assets (production, minimized) -2024-04-05T03:48:58Z #13 2.767 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. -2024-04-05T03:48:58Z #13 2.767 -2024-04-05T03:51:13Z #13 2.772 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ -2024-04-05T03:51:13Z #13 DONE 138.3s -2024-04-05T03:51:13Z -2024-04-05T03:51:13Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-05T03:51:13Z #6 ... -2024-04-05T03:51:13Z -2024-04-05T03:51:13Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-04-05T03:51:14Z #14 0.705 Enabling: voila -2024-04-05T03:51:14Z #14 0.705 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-05T03:51:14Z #14 0.708 - Validating... -2024-04-05T03:51:15Z #14 1.412 voila 0.5.6 OK -2024-04-05T03:51:15Z #14 1.789 Enabling: panel.io.jupyter_server_extension -2024-04-05T03:51:15Z #14 1.789 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-05T03:51:15Z #14 1.791 - Validating... -2024-04-05T03:51:17Z #14 3.508 panel.io.jupyter_server_extension OK -2024-04-05T03:51:17Z #14 4.003 - Validating... -2024-04-05T03:51:18Z #14 4.949 dask_labextension 6.2.0 OK -2024-04-05T03:51:18Z #14 4.949 - Validating... -2024-04-05T03:51:18Z #14 4.949 jupyter_server_proxy 4.1.1-0.dev OK -2024-04-05T03:51:18Z #14 4.949 - Validating... -2024-04-05T03:51:18Z #14 5.128 jupyter_resource_usage 0.7.1 OK -2024-04-05T03:51:18Z #14 5.128 - Validating... -2024-04-05T03:51:18Z #14 5.188  X is jupyter_server_ydoc importable? -2024-04-05T03:51:18Z #14 5.188 - Validating... -2024-04-05T03:51:18Z #14 5.264 jupyterlab 3.6.7 OK -2024-04-05T03:51:18Z #14 5.264 - Validating... -2024-04-05T03:51:19Z #14 5.494 jupyterlab_jupytext OK -2024-04-05T03:51:19Z #14 5.494 - Validating... -2024-04-05T03:51:19Z #14 5.500 mamba_gator 5.2.1 OK -2024-04-05T03:51:19Z #14 5.500 - Validating... -2024-04-05T03:51:19Z #14 5.518 nbdime 4.0.1 OK -2024-04-05T03:51:19Z #14 5.518 - Validating... -2024-04-05T03:51:20Z #14 6.590 panel.io.jupyter_server_extension OK -2024-04-05T03:51:20Z #14 6.590 - Validating... -2024-04-05T03:51:20Z #14 6.658 nbresuse OK -2024-04-05T03:51:20Z #14 6.658 - Validating... -2024-04-05T03:51:20Z #14 6.916 voila.server_extension OK -2024-04-05T03:51:20Z #14 6.916 - Validating... -2024-04-05T03:51:20Z #14 6.918 jupyterlab_git OK -2024-04-05T03:51:20Z #14 6.918 - Validating... -2024-04-05T03:51:20Z #14 6.918 voila 0.5.6 OK -2024-04-05T03:51:20Z #14 6.919 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-04-05T03:51:20Z #14 6.919 dask_labextension  enabled  -2024-04-05T03:51:20Z #14 6.919 jupyter_server_proxy  enabled  -2024-04-05T03:51:20Z #14 6.919 jupyter_resource_usage  enabled  -2024-04-05T03:51:20Z #14 6.919 jupyter_server_ydoc  enabled  -2024-04-05T03:51:20Z #14 6.919 jupyterlab  enabled  -2024-04-05T03:51:20Z #14 6.919 jupyterlab_jupytext  enabled  -2024-04-05T03:51:20Z #14 6.919 mamba_gator  enabled  -2024-04-05T03:51:20Z #14 6.919 nbdime  enabled  -2024-04-05T03:51:20Z #14 6.919 panel.io.jupyter_server_extension  enabled  -2024-04-05T03:51:20Z #14 6.919 nbresuse  enabled  -2024-04-05T03:51:20Z #14 6.919 voila.server_extension  enabled  -2024-04-05T03:51:20Z #14 6.919 jupyterlab_git  enabled  -2024-04-05T03:51:20Z #14 6.919 voila  enabled  -2024-04-05T03:51:21Z #14 DONE 7.3s -2024-04-05T03:51:21Z -2024-04-05T03:51:21Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-04-05T03:51:21Z #15 0.367 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-04-05T03:51:21Z #15 0.391 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.111.133, 185.199.108.133, ... -2024-04-05T03:51:21Z #15 0.397 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-04-05T03:51:21Z #15 0.403 HTTP request sent, awaiting response... 200 OK -2024-04-05T03:51:21Z #15 0.485 Length: 9769 (9.5K) [text/plain] -2024-04-05T03:51:21Z #15 0.485 Saving to: ‘/usr/local/bin/start.sh’ -2024-04-05T03:51:21Z #15 0.486 -2024-04-05T03:51:21Z #15 0.486 0K ......... 100% 8.80M=0.001s -2024-04-05T03:51:21Z #15 0.488 -2024-04-05T03:51:21Z #15 0.488 2024-04-05 03:51:21 (8.80 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-04-05T03:51:21Z #15 0.488 -2024-04-05T03:51:21Z #15 0.490 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-04-05T03:51:21Z #15 0.515 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2024-04-05T03:51:21Z #15 0.516 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-04-05T03:51:21Z #15 0.522 HTTP request sent, awaiting response... 200 OK -2024-04-05T03:51:21Z #15 0.602 Length: 359 [text/plain] -2024-04-05T03:51:21Z #15 0.603 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-04-05T03:51:21Z #15 0.603 -2024-04-05T03:51:21Z #15 0.603 0K 100% 5.76M=0s -2024-04-05T03:51:21Z #15 0.604 -2024-04-05T03:51:21Z #15 0.604 2024-04-05 03:51:21 (5.76 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-04-05T03:51:21Z #15 0.604 -2024-04-05T03:51:21Z #15 0.607 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-04-05T03:51:21Z #15 0.631 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2024-04-05T03:51:21Z #15 0.633 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-04-05T03:51:21Z #15 0.639 HTTP request sent, awaiting response... 200 OK -2024-04-05T03:51:21Z #15 0.715 Length: 852 [text/plain] -2024-04-05T03:51:21Z #15 0.715 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-04-05T03:51:21Z #15 0.716 -2024-04-05T03:51:21Z #15 0.716 0K 100% 2.43M=0s -2024-04-05T03:51:21Z #15 0.718 -2024-04-05T03:51:21Z #15 0.718 2024-04-05 03:51:21 (2.43 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-04-05T03:51:21Z #15 0.718 -2024-04-05T03:51:21Z #15 0.722 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-04-05T03:51:21Z #15 0.746 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2024-04-05T03:51:21Z #15 0.750 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-04-05T03:51:21Z #15 0.754 HTTP request sent, awaiting response... 200 OK -2024-04-05T03:51:21Z #15 0.839 Length: 1034 (1.0K) [text/plain] -2024-04-05T03:51:21Z #15 0.839 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-04-05T03:51:21Z #15 0.839 -2024-04-05T03:51:21Z #15 0.839 0K . 100% 41.6M=0s -2024-04-05T03:51:21Z #15 0.841 -2024-04-05T03:51:21Z #15 0.841 2024-04-05 03:51:21 (41.6 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-04-05T03:51:21Z #15 0.841 -2024-04-05T03:51:21Z #15 0.845 --2024-04-05 03:51:21-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-04-05T03:51:21Z #15 0.870 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2024-04-05T03:51:21Z #15 0.871 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-04-05T03:51:21Z #15 0.876 HTTP request sent, awaiting response... 200 OK -2024-04-05T03:51:21Z #15 0.967 Length: 1836 (1.8K) [text/plain] -2024-04-05T03:51:21Z #15 0.968 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-04-05T03:51:21Z #15 0.968 -2024-04-05T03:51:22Z #15 0.968 0K . 100% 6.00M=0s -2024-04-05T03:51:22Z #15 0.970 -2024-04-05T03:51:22Z #15 0.970 2024-04-05 03:51:21 (6.00 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-04-05T03:51:22Z #15 0.970 -2024-04-05T03:51:22Z #15 1.194 --2024-04-05 03:51:22-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-04-05T03:51:22Z #15 1.217 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.75, 3.162.103.35, 3.162.103.63, ... -2024-04-05T03:51:22Z #15 1.254 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.75|:443... connected. -2024-04-05T03:51:22Z #15 1.261 HTTP request sent, awaiting response... 200 OK -2024-04-05T03:51:22Z #15 1.442 Length: 129825343 (124M) [application/x-tar] -2024-04-05T03:51:22Z #15 1.442 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-04-05T03:51:22Z #15 1.443 -2024-04-05T03:51:22Z #15 1.443 0K .......... .......... .......... .......... .......... 0% 13.5M 9s -2024-04-05T03:51:22Z #15 1.447 50K .......... .......... .......... .......... .......... 0% 11.1M 10s -2024-04-05T03:51:22Z #15 1.451 100K .......... .......... .......... .......... .......... 0% 14.8M 10s -2024-04-05T03:51:22Z #15 1.454 150K .......... .......... .......... .......... .......... 0% 28.8M 8s -2024-04-05T03:51:22Z #15 1.456 200K .......... .......... .......... .......... .......... 0% 62.6M 7s -2024-04-05T03:51:22Z #15 1.456 250K .......... .......... .......... .......... .......... 0% 80.2M 6s -2024-04-05T03:51:22Z #15 1.457 300K .......... .......... .......... .......... .......... 0% 42.8M 6s -2024-04-05T03:51:22Z #15 1.458 350K .......... .......... .......... .......... .......... 0% 54.8M 5s -2024-04-05T03:51:22Z #15 1.461 400K .......... .......... .......... .......... .......... 0% 96.6M 5s -2024-04-05T03:51:22Z #15 1.461 450K .......... .......... .......... .......... .......... 0% 122M 4s -2024-04-05T03:51:22Z #15 1.461 500K .......... .......... .......... .......... .......... 0% 121M 4s -2024-04-05T03:51:22Z #15 1.461 550K .......... .......... .......... .......... .......... 0% 43.9M 4s -2024-04-05T03:51:22Z #15 1.462 600K .......... .......... .......... .......... .......... 0% 28.0M 4s -2024-04-05T03:51:22Z #15 1.463 650K .......... .......... .......... .......... .......... 0% 38.6M 4s -2024-04-05T03:51:22Z #15 1.465 700K .......... .......... .......... .......... .......... 0% 34.4M 4s -2024-04-05T03:51:22Z #15 1.466 750K .......... .......... .......... .......... .......... 0% 50.4M 4s -2024-04-05T03:51:22Z #15 1.467 800K .......... .......... .......... .......... .......... 0% 35.0M 4s -2024-04-05T03:51:22Z #15 1.468 850K .......... .......... .......... .......... .......... 0% 48.6M 4s -2024-04-05T03:51:22Z #15 1.469 900K .......... .......... .......... .......... .......... 0% 44.5M 4s -2024-04-05T03:51:22Z #15 1.470 950K .......... .......... .......... .......... .......... 0% 29.6M 4s -2024-04-05T03:51:22Z #15 1.478 1000K .......... .......... .......... .......... .......... 0% 111M 4s -2024-04-05T03:51:22Z #15 1.478 1050K .......... .......... .......... .......... .......... 0% 184M 3s -2024-04-05T03:51:22Z #15 1.478 1100K .......... .......... .......... .......... .......... 0% 211M 3s -2024-04-05T03:51:22Z #15 1.478 1150K .......... .......... .......... .......... .......... 0% 180M 3s -2024-04-05T03:51:22Z #15 1.478 1200K .......... .......... .......... .......... .......... 0% 141M 3s -2024-04-05T03:51:22Z #15 1.478 1250K .......... .......... .......... .......... .......... 1% 170M 3s -2024-04-05T03:51:22Z #15 1.478 1300K .......... .......... .......... .......... .......... 1% 145M 3s -2024-04-05T03:51:22Z #15 1.478 1350K .......... .......... .......... .......... .......... 1% 191M 3s -2024-04-05T03:51:22Z #15 1.478 1400K .......... .......... .......... .......... .......... 1% 146M 3s -2024-04-05T03:51:22Z #15 1.478 1450K .......... .......... .......... .......... .......... 1% 164M 3s -2024-04-05T03:51:22Z #15 1.478 1500K .......... .......... .......... .......... .......... 1% 154M 3s -2024-04-05T03:51:22Z #15 1.478 1550K .......... .......... .......... .......... .......... 1% 190M 3s -2024-04-05T03:51:22Z #15 1.478 1600K .......... .......... .......... .......... .......... 1% 181M 3s -2024-04-05T03:51:22Z #15 1.478 1650K .......... .......... .......... .......... .......... 1% 199M 2s -2024-04-05T03:51:22Z #15 1.478 1700K .......... .......... .......... .......... .......... 1% 161M 2s -2024-04-05T03:51:22Z #15 1.478 1750K .......... .......... .......... .......... .......... 1% 152M 2s -2024-04-05T03:51:22Z #15 1.478 1800K .......... .......... .......... .......... .......... 1% 198M 2s -2024-04-05T03:51:22Z #15 1.478 1850K .......... .......... .......... .......... .......... 1% 141M 2s -2024-04-05T03:51:22Z #15 1.478 1900K .......... .......... .......... .......... .......... 1% 195M 2s -2024-04-05T03:51:22Z #15 1.478 1950K .......... .......... .......... .......... .......... 1% 35.2M 2s -2024-04-05T03:51:22Z #15 1.479 2000K .......... .......... .......... .......... .......... 1% 16.7M 2s -2024-04-05T03:51:22Z #15 1.482 2050K .......... .......... .......... .......... .......... 1% 29.2M 2s -2024-04-05T03:51:22Z #15 1.484 2100K .......... .......... .......... .......... .......... 1% 109M 2s -2024-04-05T03:51:22Z #15 1.485 2150K .......... .......... .......... .......... .......... 1% 41.4M 2s -2024-04-05T03:51:22Z #15 1.485 2200K .......... .......... .......... .......... .......... 1% 96.3M 2s -2024-04-05T03:51:22Z #15 1.486 2250K .......... .......... .......... .......... .......... 1% 129M 2s -2024-04-05T03:51:22Z #15 1.486 2300K .......... .......... .......... .......... .......... 1% 41.8M 2s -2024-04-05T03:51:22Z #15 1.487 2350K .......... .......... .......... .......... .......... 1% 37.7M 2s -2024-04-05T03:51:22Z #15 1.489 2400K .......... .......... .......... .......... .......... 1% 119M 2s -2024-04-05T03:51:22Z #15 1.490 2450K .......... .......... .......... .......... .......... 1% 96.1M 2s -2024-04-05T03:51:22Z #15 1.490 2500K .......... .......... .......... .......... .......... 2% 74.1M 2s -2024-04-05T03:51:22Z #15 1.490 2550K .......... .......... .......... .......... .......... 2% 36.4M 2s -2024-04-05T03:51:22Z #15 1.494 2600K .......... .......... .......... .......... .......... 2% 115M 2s -2024-04-05T03:51:22Z #15 1.494 2650K .......... .......... .......... .......... .......... 2% 107M 2s -2024-04-05T03:51:22Z #15 1.494 2700K .......... .......... .......... .......... .......... 2% 121M 2s -2024-04-05T03:51:22Z #15 1.494 2750K .......... .......... .......... .......... .......... 2% 119M 2s -2024-04-05T03:51:22Z #15 1.494 2800K .......... .......... .......... .......... .......... 2% 118M 2s -2024-04-05T03:51:22Z #15 1.494 2850K .......... .......... .......... .......... .......... 2% 46.6M 2s -2024-04-05T03:51:22Z #15 1.498 2900K .......... .......... .......... .......... .......... 2% 126M 2s -2024-04-05T03:51:22Z #15 1.498 2950K .......... .......... .......... .......... .......... 2% 127M 2s -2024-04-05T03:51:22Z #15 1.498 3000K .......... .......... .......... .......... .......... 2% 139M 2s -2024-04-05T03:51:22Z #15 1.498 3050K .......... .......... .......... .......... .......... 2% 122M 2s -2024-04-05T03:51:22Z #15 1.498 3100K .......... .......... .......... .......... .......... 2% 131M 2s -2024-04-05T03:51:22Z #15 1.498 3150K .......... .......... .......... .......... .......... 2% 101M 2s -2024-04-05T03:51:22Z #15 1.498 3200K .......... .......... .......... .......... .......... 2% 131M 2s -2024-04-05T03:51:22Z #15 1.498 3250K .......... .......... .......... .......... .......... 2% 63.8M 2s -2024-04-05T03:51:22Z #15 1.498 3300K .......... .......... .......... .......... .......... 2% 48.8M 2s -2024-04-05T03:51:22Z #15 1.502 3350K .......... .......... .......... .......... .......... 2% 118M 2s -2024-04-05T03:51:22Z #15 1.502 3400K .......... .......... .......... .......... .......... 2% 141M 2s -2024-04-05T03:51:22Z #15 1.502 3450K .......... .......... .......... .......... .......... 2% 124M 2s -2024-04-05T03:51:22Z #15 1.502 3500K .......... .......... .......... .......... .......... 2% 121M 2s -2024-04-05T03:51:22Z #15 1.502 3550K .......... .......... .......... .......... .......... 2% 111M 2s -2024-04-05T03:51:22Z #15 1.502 3600K .......... .......... .......... .......... .......... 2% 118M 2s -2024-04-05T03:51:22Z #15 1.502 3650K .......... .......... .......... .......... .......... 2% 54.6M 2s -2024-04-05T03:51:22Z #15 1.504 3700K .......... .......... .......... .......... .......... 2% 97.0M 2s -2024-04-05T03:51:22Z #15 1.504 3750K .......... .......... .......... .......... .......... 2% 131M 2s -2024-04-05T03:51:22Z #15 1.504 3800K .......... .......... .......... .......... .......... 3% 149M 2s -2024-04-05T03:51:22Z #15 1.504 3850K .......... .......... .......... .......... .......... 3% 130M 2s -2024-04-05T03:51:22Z #15 1.504 3900K .......... .......... .......... .......... .......... 3% 55.0M 2s -2024-04-05T03:51:22Z #15 1.505 3950K .......... .......... .......... .......... .......... 3% 8.91M 2s -2024-04-05T03:51:22Z #15 1.511 4000K .......... .......... .......... .......... .......... 3% 30.9M 2s -2024-04-05T03:51:22Z #15 1.512 4050K .......... .......... .......... .......... .......... 3% 46.6M 2s -2024-04-05T03:51:22Z #15 1.518 4100K .......... .......... .......... .......... .......... 3% 60.5M 2s -2024-04-05T03:51:22Z #15 1.518 4150K .......... .......... .......... .......... .......... 3% 134M 2s -2024-04-05T03:51:22Z #15 1.518 4200K .......... .......... .......... .......... .......... 3% 165M 2s -2024-04-05T03:51:22Z #15 1.518 4250K .......... .......... .......... .......... .......... 3% 173M 2s -2024-04-05T03:51:22Z #15 1.518 4300K .......... .......... .......... .......... .......... 3% 167M 2s -2024-04-05T03:51:22Z #15 1.518 4350K .......... .......... .......... .......... .......... 3% 149M 2s -2024-04-05T03:51:22Z #15 1.518 4400K .......... .......... .......... .......... .......... 3% 175M 2s -2024-04-05T03:51:22Z #15 1.518 4450K .......... .......... .......... .......... .......... 3% 174M 2s -2024-04-05T03:51:22Z #15 1.518 4500K .......... .......... .......... .......... .......... 3% 174M 2s -2024-04-05T03:51:22Z #15 1.518 4550K .......... .......... .......... .......... .......... 3% 165M 2s -2024-04-05T03:51:22Z #15 1.518 4600K .......... .......... .......... .......... .......... 3% 160M 2s -2024-04-05T03:51:22Z #15 1.518 4650K .......... .......... .......... .......... .......... 3% 179M 2s -2024-04-05T03:51:22Z #15 1.518 4700K .......... .......... .......... .......... .......... 3% 171M 2s -2024-04-05T03:51:22Z #15 1.518 4750K .......... .......... .......... .......... .......... 3% 7.12M 2s -2024-04-05T03:51:22Z #15 1.530 4800K .......... .......... .......... .......... .......... 3% 117M 2s -2024-04-05T03:51:22Z #15 1.530 4850K .......... .......... .......... .......... .......... 3% 124M 2s -2024-04-05T03:51:22Z #15 1.530 4900K .......... .......... .......... .......... .......... 3% 134M 2s -2024-04-05T03:51:22Z #15 1.530 4950K .......... .......... .......... .......... .......... 3% 96.6M 2s -2024-04-05T03:51:22Z #15 1.530 5000K .......... .......... .......... .......... .......... 3% 129M 2s -2024-04-05T03:51:22Z #15 1.530 5050K .......... .......... .......... .......... .......... 4% 120M 2s -2024-04-05T03:51:22Z #15 1.530 5100K .......... .......... .......... .......... .......... 4% 130M 2s -2024-04-05T03:51:22Z #15 1.530 5150K .......... .......... .......... .......... .......... 4% 101M 2s -2024-04-05T03:51:22Z #15 1.530 5200K .......... .......... .......... .......... .......... 4% 118M 2s -2024-04-05T03:51:22Z #15 1.530 5250K .......... .......... .......... .......... .......... 4% 138M 2s -2024-04-05T03:51:22Z #15 1.530 5300K .......... .......... .......... .......... .......... 4% 115M 2s -2024-04-05T03:51:22Z #15 1.530 5350K .......... .......... .......... .......... .......... 4% 106M 2s -2024-04-05T03:51:22Z #15 1.530 5400K .......... .......... .......... .......... .......... 4% 129M 2s -2024-04-05T03:51:22Z #15 1.530 5450K .......... .......... .......... .......... .......... 4% 44.5M 2s -2024-04-05T03:51:22Z #15 1.531 5500K .......... .......... .......... .......... .......... 4% 51.3M 2s -2024-04-05T03:51:22Z #15 1.532 5550K .......... .......... .......... .......... .......... 4% 55.7M 2s -2024-04-05T03:51:22Z #15 1.533 5600K .......... .......... .......... .......... .......... 4% 68.5M 2s -2024-04-05T03:51:22Z #15 1.533 5650K .......... .......... .......... .......... .......... 4% 38.8M 2s -2024-04-05T03:51:22Z #15 1.535 5700K .......... .......... .......... .......... .......... 4% 32.0M 2s -2024-04-05T03:51:22Z #15 1.536 5750K .......... .......... .......... .......... .......... 4% 60.8M 2s -2024-04-05T03:51:22Z #15 1.537 5800K .......... .......... .......... .......... .......... 4% 36.9M 2s -2024-04-05T03:51:22Z #15 1.538 5850K .......... .......... .......... .......... .......... 4% 37.1M 2s -2024-04-05T03:51:22Z #15 1.540 5900K .......... .......... .......... .......... .......... 4% 50.4M 2s -2024-04-05T03:51:22Z #15 1.541 5950K .......... .......... .......... .......... .......... 4% 44.7M 2s -2024-04-05T03:51:22Z #15 1.542 6000K .......... .......... .......... .......... .......... 4% 46.9M 2s -2024-04-05T03:51:22Z #15 1.543 6050K .......... .......... .......... .......... .......... 4% 43.7M 2s -2024-04-05T03:51:22Z #15 1.544 6100K .......... .......... .......... .......... .......... 4% 40.2M 2s -2024-04-05T03:51:22Z #15 1.546 6150K .......... .......... .......... .......... .......... 4% 36.1M 2s -2024-04-05T03:51:22Z #15 1.546 6200K .......... .......... .......... .......... .......... 4% 41.0M 2s -2024-04-05T03:51:22Z #15 1.548 6250K .......... .......... .......... .......... .......... 4% 41.1M 2s -2024-04-05T03:51:22Z #15 1.549 6300K .......... .......... .......... .......... .......... 5% 32.6M 2s -2024-04-05T03:51:22Z #15 1.550 6350K .......... .......... .......... .......... .......... 5% 39.2M 2s -2024-04-05T03:51:22Z #15 1.551 6400K .......... .......... .......... .......... .......... 5% 45.7M 2s -2024-04-05T03:51:22Z #15 1.553 6450K .......... .......... .......... .......... .......... 5% 47.6M 2s -2024-04-05T03:51:22Z #15 1.554 6500K .......... .......... .......... .......... .......... 5% 40.0M 2s -2024-04-05T03:51:22Z #15 1.555 6550K .......... .......... .......... .......... .......... 5% 47.3M 2s -2024-04-05T03:51:22Z #15 1.556 6600K .......... .......... .......... .......... .......... 5% 40.3M 2s -2024-04-05T03:51:22Z #15 1.557 6650K .......... .......... .......... .......... .......... 5% 19.6M 2s -2024-04-05T03:51:22Z #15 1.560 6700K .......... .......... .......... .......... .......... 5% 59.1M 2s -2024-04-05T03:51:22Z #15 1.560 6750K .......... .......... .......... .......... .......... 5% 73.0M 2s -2024-04-05T03:51:22Z #15 1.561 6800K .......... .......... .......... .......... .......... 5% 41.3M 2s -2024-04-05T03:51:22Z #15 1.562 6850K .......... .......... .......... .......... .......... 5% 62.2M 2s -2024-04-05T03:51:22Z #15 1.563 6900K .......... .......... .......... .......... .......... 5% 57.7M 2s -2024-04-05T03:51:22Z #15 1.564 6950K .......... .......... .......... .......... .......... 5% 67.3M 2s -2024-04-05T03:51:22Z #15 1.565 7000K .......... .......... .......... .......... .......... 5% 68.6M 2s -2024-04-05T03:51:22Z #15 1.565 7050K .......... .......... .......... .......... .......... 5% 58.7M 2s -2024-04-05T03:51:22Z #15 1.566 7100K .......... .......... .......... .......... .......... 5% 57.5M 2s -2024-04-05T03:51:22Z #15 1.567 7150K .......... .......... .......... .......... .......... 5% 104M 2s -2024-04-05T03:51:22Z #15 1.567 7200K .......... .......... .......... .......... .......... 5% 77.2M 2s -2024-04-05T03:51:22Z #15 1.568 7250K .......... .......... .......... .......... .......... 5% 65.9M 2s -2024-04-05T03:51:22Z #15 1.570 7300K .......... .......... .......... .......... .......... 5% 125M 2s -2024-04-05T03:51:22Z #15 1.570 7350K .......... .......... .......... .......... .......... 5% 190M 2s -2024-04-05T03:51:22Z #15 1.570 7400K .......... .......... .......... .......... .......... 5% 126M 2s -2024-04-05T03:51:22Z #15 1.570 7450K .......... .......... .......... .......... .......... 5% 146M 2s -2024-04-05T03:51:22Z #15 1.570 7500K .......... .......... .......... .......... .......... 5% 122M 2s -2024-04-05T03:51:22Z #15 1.570 7550K .......... .......... .......... .......... .......... 5% 138M 2s -2024-04-05T03:51:22Z #15 1.571 7600K .......... .......... .......... .......... .......... 6% 128M 2s -2024-04-05T03:51:22Z #15 1.571 7650K .......... .......... .......... .......... .......... 6% 112M 2s -2024-04-05T03:51:22Z #15 1.572 7700K .......... .......... .......... .......... .......... 6% 97.8M 2s -2024-04-05T03:51:22Z #15 1.573 7750K .......... .......... .......... .......... .......... 6% 148M 2s -2024-04-05T03:51:22Z #15 1.573 7800K .......... .......... .......... .......... .......... 6% 137M 2s -2024-04-05T03:51:22Z #15 1.573 7850K .......... .......... .......... .......... .......... 6% 136M 2s -2024-04-05T03:51:22Z #15 1.573 7900K .......... .......... .......... .......... .......... 6% 110M 2s -2024-04-05T03:51:22Z #15 1.574 7950K .......... .......... .......... .......... .......... 6% 120M 2s -2024-04-05T03:51:22Z #15 1.575 8000K .......... .......... .......... .......... .......... 6% 129M 2s -2024-04-05T03:51:22Z #15 1.575 8050K .......... .......... .......... .......... .......... 6% 130M 2s -2024-04-05T03:51:22Z #15 1.575 8100K .......... .......... .......... .......... .......... 6% 96.2M 2s -2024-04-05T03:51:22Z #15 1.576 8150K .......... .......... .......... .......... .......... 6% 134M 2s -2024-04-05T03:51:22Z #15 1.576 8200K .......... .......... .......... .......... .......... 6% 115M 2s -2024-04-05T03:51:22Z #15 1.577 8250K .......... .......... .......... .......... .......... 6% 117M 2s -2024-04-05T03:51:22Z #15 1.577 8300K .......... .......... .......... .......... .......... 6% 102M 2s -2024-04-05T03:51:22Z #15 1.577 8350K .......... .......... .......... .......... .......... 6% 129M 2s -2024-04-05T03:51:22Z #15 1.577 8400K .......... .......... .......... .......... .......... 6% 113M 2s -2024-04-05T03:51:22Z #15 1.578 8450K .......... .......... .......... .......... .......... 6% 120M 2s -2024-04-05T03:51:22Z #15 1.579 8500K .......... .......... .......... .......... .......... 6% 97.2M 2s -2024-04-05T03:51:22Z #15 1.580 8550K .......... .......... .......... .......... .......... 6% 127M 2s -2024-04-05T03:51:22Z #15 1.580 8600K .......... .......... .......... .......... .......... 6% 142M 2s -2024-04-05T03:51:22Z #15 1.580 8650K .......... .......... .......... .......... .......... 6% 125M 2s -2024-04-05T03:51:22Z #15 1.580 8700K .......... .......... .......... .......... .......... 6% 120M 2s -2024-04-05T03:51:22Z #15 1.581 8750K .......... .......... .......... .......... .......... 6% 140M 2s -2024-04-05T03:51:22Z #15 1.581 8800K .......... .......... .......... .......... .......... 6% 137M 2s -2024-04-05T03:51:22Z #15 1.581 8850K .......... .......... .......... .......... .......... 7% 113M 2s -2024-04-05T03:51:22Z #15 1.582 8900K .......... .......... .......... .......... .......... 7% 109M 2s -2024-04-05T03:51:22Z #15 1.582 8950K .......... .......... .......... .......... .......... 7% 129M 2s -2024-04-05T03:51:22Z #15 1.582 9000K .......... .......... .......... .......... .......... 7% 122M 2s -2024-04-05T03:51:22Z #15 1.584 9050K .......... .......... .......... .......... .......... 7% 113M 2s -2024-04-05T03:51:22Z #15 1.584 9100K .......... .......... .......... .......... .......... 7% 133M 2s -2024-04-05T03:51:22Z #15 1.584 9150K .......... .......... .......... .......... .......... 7% 139M 2s -2024-04-05T03:51:22Z #15 1.584 9200K .......... .......... .......... .......... .......... 7% 118M 2s -2024-04-05T03:51:22Z #15 1.584 9250K .......... .......... .......... .......... .......... 7% 152M 2s -2024-04-05T03:51:22Z #15 1.585 9300K .......... .......... .......... .......... .......... 7% 95.5M 2s -2024-04-05T03:51:22Z #15 1.586 9350K .......... .......... .......... .......... .......... 7% 126M 2s -2024-04-05T03:51:22Z #15 1.586 9400K .......... .......... .......... .......... .......... 7% 120M 2s -2024-04-05T03:51:22Z #15 1.586 9450K .......... .......... .......... .......... .......... 7% 133M 2s -2024-04-05T03:51:22Z #15 1.586 9500K .......... .......... .......... .......... .......... 7% 124M 2s -2024-04-05T03:51:22Z #15 1.587 9550K .......... .......... .......... .......... .......... 7% 127M 2s -2024-04-05T03:51:22Z #15 1.587 9600K .......... .......... .......... .......... .......... 7% 138M 2s -2024-04-05T03:51:22Z #15 1.587 9650K .......... .......... .......... .......... .......... 7% 133M 2s -2024-04-05T03:51:22Z #15 1.588 9700K .......... .......... .......... .......... .......... 7% 120M 2s -2024-04-05T03:51:22Z #15 1.588 9750K .......... .......... .......... .......... .......... 7% 127M 2s -2024-04-05T03:51:22Z #15 1.590 9800K .......... .......... .......... .......... .......... 7% 126M 2s -2024-04-05T03:51:22Z #15 1.590 9850K .......... .......... .......... .......... .......... 7% 130M 2s -2024-04-05T03:51:22Z #15 1.590 9900K .......... .......... .......... .......... .......... 7% 132M 2s -2024-04-05T03:51:22Z #15 1.590 9950K .......... .......... .......... .......... .......... 7% 134M 2s -2024-04-05T03:51:22Z #15 1.590 10000K .......... .......... .......... .......... .......... 7% 135M 2s -2024-04-05T03:51:22Z #15 1.591 10050K .......... .......... .......... .......... .......... 7% 133M 2s -2024-04-05T03:51:22Z #15 1.591 10100K .......... .......... .......... .......... .......... 8% 110M 2s -2024-04-05T03:51:22Z #15 1.591 10150K .......... .......... .......... .......... .......... 8% 142M 2s -2024-04-05T03:51:22Z #15 1.592 10200K .......... .......... .......... .......... .......... 8% 148M 2s -2024-04-05T03:51:22Z #15 1.592 10250K .......... .......... .......... .......... .......... 8% 158M 2s -2024-04-05T03:51:22Z #15 1.593 10300K .......... .......... .......... .......... .......... 8% 113M 2s -2024-04-05T03:51:22Z #15 1.594 10350K .......... .......... .......... .......... .......... 8% 135M 2s -2024-04-05T03:51:22Z #15 1.594 10400K .......... .......... .......... .......... .......... 8% 147M 2s -2024-04-05T03:51:22Z #15 1.594 10450K .......... .......... .......... .......... .......... 8% 147M 2s -2024-04-05T03:51:22Z #15 1.595 10500K .......... .......... .......... .......... .......... 8% 107M 2s -2024-04-05T03:51:22Z #15 1.595 10550K .......... .......... .......... .......... .......... 8% 134M 2s -2024-04-05T03:51:22Z #15 1.595 10600K .......... .......... .......... .......... .......... 8% 138M 2s -2024-04-05T03:51:22Z #15 1.596 10650K .......... .......... .......... .......... .......... 8% 141M 2s -2024-04-05T03:51:22Z #15 1.597 10700K .......... .......... .......... .......... .......... 8% 143M 2s -2024-04-05T03:51:22Z #15 1.597 10750K .......... .......... .......... .......... .......... 8% 126M 2s -2024-04-05T03:51:22Z #15 1.597 10800K .......... .......... .......... .......... .......... 8% 143M 2s -2024-04-05T03:51:22Z #15 1.597 10850K .......... .......... .......... .......... .......... 8% 134M 2s -2024-04-05T03:51:22Z #15 1.597 10900K .......... .......... .......... .......... .......... 8% 109M 2s -2024-04-05T03:51:22Z #15 1.597 10950K .......... .......... .......... .......... .......... 8% 122M 2s -2024-04-05T03:51:22Z #15 1.598 11000K .......... .......... .......... .......... .......... 8% 121M 2s -2024-04-05T03:51:22Z #15 1.598 11050K .......... .......... .......... .......... .......... 8% 141M 2s -2024-04-05T03:51:22Z #15 1.599 11100K .......... .......... .......... .......... .......... 8% 114M 2s -2024-04-05T03:51:22Z #15 1.599 11150K .......... .......... .......... .......... .......... 8% 121M 2s -2024-04-05T03:51:22Z #15 1.599 11200K .......... .......... .......... .......... .......... 8% 137M 2s -2024-04-05T03:51:22Z #15 1.601 11250K .......... .......... .......... .......... .......... 8% 134M 2s -2024-04-05T03:51:22Z #15 1.601 11300K .......... .......... .......... .......... .......... 8% 114M 2s -2024-04-05T03:51:22Z #15 1.601 11350K .......... .......... .......... .......... .......... 8% 116M 2s -2024-04-05T03:51:22Z #15 1.601 11400K .......... .......... .......... .......... .......... 9% 131M 2s -2024-04-05T03:51:22Z #15 1.602 11450K .......... .......... .......... .......... .......... 9% 148M 2s -2024-04-05T03:51:22Z #15 1.602 11500K .......... .......... .......... .......... .......... 9% 142M 2s -2024-04-05T03:51:22Z #15 1.602 11550K .......... .......... .......... .......... .......... 9% 103M 2s -2024-04-05T03:51:22Z #15 1.603 11600K .......... .......... .......... .......... .......... 9% 134M 2s -2024-04-05T03:51:22Z #15 1.603 11650K .......... .......... .......... .......... .......... 9% 136M 2s -2024-04-05T03:51:22Z #15 1.603 11700K .......... .......... .......... .......... .......... 9% 133M 2s -2024-04-05T03:51:22Z #15 1.603 11750K .......... .......... .......... .......... .......... 9% 111M 2s -2024-04-05T03:51:22Z #15 1.604 11800K .......... .......... .......... .......... .......... 9% 121M 2s -2024-04-05T03:51:22Z #15 1.604 11850K .......... .......... .......... .......... .......... 9% 120M 2s -2024-04-05T03:51:22Z #15 1.605 11900K .......... .......... .......... .......... .......... 9% 147M 2s -2024-04-05T03:51:22Z #15 1.605 11950K .......... .......... .......... .......... .......... 9% 112M 2s -2024-04-05T03:51:22Z #15 1.605 12000K .......... .......... .......... .......... .......... 9% 139M 2s -2024-04-05T03:51:22Z #15 1.607 12050K .......... .......... .......... .......... .......... 9% 5.74M 2s -2024-04-05T03:51:22Z #15 1.615 12100K .......... .......... .......... .......... .......... 9% 125M 2s -2024-04-05T03:51:22Z #15 1.615 12150K .......... .......... .......... .......... .......... 9% 105M 2s -2024-04-05T03:51:22Z #15 1.616 12200K .......... .......... .......... .......... .......... 9% 127M 2s -2024-04-05T03:51:22Z #15 1.616 12250K .......... .......... .......... .......... .......... 9% 138M 2s -2024-04-05T03:51:22Z #15 1.616 12300K .......... .......... .......... .......... .......... 9% 116M 2s -2024-04-05T03:51:22Z #15 1.616 12350K .......... .......... .......... .......... .......... 9% 127M 2s -2024-04-05T03:51:22Z #15 1.617 12400K .......... .......... .......... .......... .......... 9% 141M 2s -2024-04-05T03:51:22Z #15 1.617 12450K .......... .......... .......... .......... .......... 9% 130M 2s -2024-04-05T03:51:22Z #15 1.618 12500K .......... .......... .......... .......... .......... 9% 122M 2s -2024-04-05T03:51:22Z #15 1.618 12550K .......... .......... .......... .......... .......... 9% 131M 2s -2024-04-05T03:51:22Z #15 1.618 12600K .......... .......... .......... .......... .......... 9% 127M 2s -2024-04-05T03:51:22Z #15 1.618 12650K .......... .......... .......... .......... .......... 10% 143M 2s -2024-04-05T03:51:22Z #15 1.620 12700K .......... .......... .......... .......... .......... 10% 120M 2s -2024-04-05T03:51:22Z #15 1.620 12750K .......... .......... .......... .......... .......... 10% 149M 2s -2024-04-05T03:51:22Z #15 1.621 12800K .......... .......... .......... .......... .......... 10% 140M 2s -2024-04-05T03:51:22Z #15 1.622 12850K .......... .......... .......... .......... .......... 10% 144M 2s -2024-04-05T03:51:22Z #15 1.622 12900K .......... .......... .......... .......... .......... 10% 109M 2s -2024-04-05T03:51:22Z #15 1.622 12950K .......... .......... .......... .......... .......... 10% 136M 2s -2024-04-05T03:51:22Z #15 1.622 13000K .......... .......... .......... .......... .......... 10% 128M 2s -2024-04-05T03:51:22Z #15 1.622 13050K .......... .......... .......... .......... .......... 10% 145M 2s -2024-04-05T03:51:22Z #15 1.623 13100K .......... .......... .......... .......... .......... 10% 115M 2s -2024-04-05T03:51:22Z #15 1.623 13150K .......... .......... .......... .......... .......... 10% 136M 2s -2024-04-05T03:51:22Z #15 1.623 13200K .......... .......... .......... .......... .......... 10% 145M 2s -2024-04-05T03:51:22Z #15 1.624 13250K .......... .......... .......... .......... .......... 10% 129M 2s -2024-04-05T03:51:22Z #15 1.624 13300K .......... .......... .......... .......... .......... 10% 113M 2s -2024-04-05T03:51:22Z #15 1.624 13350K .......... .......... .......... .......... .......... 10% 155M 2s -2024-04-05T03:51:22Z #15 1.626 13400K .......... .......... .......... .......... .......... 10% 140M 2s -2024-04-05T03:51:22Z #15 1.626 13450K .......... .......... .......... .......... .......... 10% 120M 2s -2024-04-05T03:51:22Z #15 1.626 13500K .......... .......... .......... .......... .......... 10% 145M 2s -2024-04-05T03:51:22Z #15 1.627 13550K .......... .......... .......... .......... .......... 10% 121M 2s -2024-04-05T03:51:22Z #15 1.627 13600K .......... .......... .......... .......... .......... 10% 122M 2s -2024-04-05T03:51:22Z #15 1.627 13650K .......... .......... .......... .......... .......... 10% 137M 2s -2024-04-05T03:51:22Z #15 1.628 13700K .......... .......... .......... .......... .......... 10% 103M 2s -2024-04-05T03:51:22Z #15 1.628 13750K .......... .......... .......... .......... .......... 10% 140M 2s -2024-04-05T03:51:22Z #15 1.628 13800K .......... .......... .......... .......... .......... 10% 135M 2s -2024-04-05T03:51:22Z #15 1.628 13850K .......... .......... .......... .......... .......... 10% 152M 2s -2024-04-05T03:51:22Z #15 1.628 13900K .......... .......... .......... .......... .......... 11% 117M 2s -2024-04-05T03:51:22Z #15 1.628 13950K .......... .......... .......... .......... .......... 11% 150M 1s -2024-04-05T03:51:22Z #15 1.629 14000K .......... .......... .......... .......... .......... 11% 131M 1s -2024-04-05T03:51:22Z #15 1.629 14050K .......... .......... .......... .......... .......... 11% 162M 1s -2024-04-05T03:51:22Z #15 1.629 14100K .......... .......... .......... .......... .......... 11% 117M 1s -2024-04-05T03:51:22Z #15 1.630 14150K .......... .......... .......... .......... .......... 11% 10.6M 2s -2024-04-05T03:51:22Z #15 1.635 14200K .......... .......... .......... .......... .......... 11% 141M 2s -2024-04-05T03:51:22Z #15 1.635 14250K .......... .......... .......... .......... .......... 11% 134M 2s -2024-04-05T03:51:22Z #15 1.636 14300K .......... .......... .......... .......... .......... 11% 117M 2s -2024-04-05T03:51:22Z #15 1.636 14350K .......... .......... .......... .......... .......... 11% 123M 2s -2024-04-05T03:51:22Z #15 1.636 14400K .......... .......... .......... .......... .......... 11% 158M 2s -2024-04-05T03:51:22Z #15 1.636 14450K .......... .......... .......... .......... .......... 11% 136M 1s -2024-04-05T03:51:22Z #15 1.638 14500K .......... .......... .......... .......... .......... 11% 114M 1s -2024-04-05T03:51:22Z #15 1.638 14550K .......... .......... .......... .......... .......... 11% 112M 1s -2024-04-05T03:51:22Z #15 1.638 14600K .......... .......... .......... .......... .......... 11% 145M 1s -2024-04-05T03:51:22Z #15 1.642 14650K .......... .......... .......... .......... .......... 11% 112M 1s -2024-04-05T03:51:22Z #15 1.642 14700K .......... .......... .......... .......... .......... 11% 129M 1s -2024-04-05T03:51:22Z #15 1.642 14750K .......... .......... .......... .......... .......... 11% 112M 1s -2024-04-05T03:51:22Z #15 1.642 14800K .......... .......... .......... .......... .......... 11% 136M 1s -2024-04-05T03:51:22Z #15 1.642 14850K .......... .......... .......... .......... .......... 11% 121M 1s -2024-04-05T03:51:22Z #15 1.642 14900K .......... .......... .......... .......... .......... 11% 134M 1s -2024-04-05T03:51:22Z #15 1.642 14950K .......... .......... .......... .......... .......... 11% 113M 1s -2024-04-05T03:51:22Z #15 1.642 15000K .......... .......... .......... .......... .......... 11% 148M 1s -2024-04-05T03:51:22Z #15 1.642 15050K .......... .......... .......... .......... .......... 11% 118M 1s -2024-04-05T03:51:22Z #15 1.642 15100K .......... .......... .......... .......... .......... 11% 134M 1s -2024-04-05T03:51:22Z #15 1.642 15150K .......... .......... .......... .......... .......... 11% 10.8M 1s -2024-04-05T03:51:22Z #15 1.646 15200K .......... .......... .......... .......... .......... 12% 130M 1s -2024-04-05T03:51:22Z #15 1.647 15250K .......... .......... .......... .......... .......... 12% 166M 1s -2024-04-05T03:51:22Z #15 1.647 15300K .......... .......... .......... .......... .......... 12% 128M 1s -2024-04-05T03:51:22Z #15 1.648 15350K .......... .......... .......... .......... .......... 12% 142M 1s -2024-04-05T03:51:22Z #15 1.648 15400K .......... .......... .......... .......... .......... 12% 145M 1s -2024-04-05T03:51:22Z #15 1.648 15450K .......... .......... .......... .......... .......... 12% 142M 1s -2024-04-05T03:51:22Z #15 1.648 15500K .......... .......... .......... .......... .......... 12% 127M 1s -2024-04-05T03:51:22Z #15 1.649 15550K .......... .......... .......... .......... .......... 12% 117M 1s -2024-04-05T03:51:22Z #15 1.649 15600K .......... .......... .......... .......... .......... 12% 156M 1s -2024-04-05T03:51:22Z #15 1.649 15650K .......... .......... .......... .......... .......... 12% 142M 1s -2024-04-05T03:51:22Z #15 1.649 15700K .......... .......... .......... .......... .......... 12% 135M 1s -2024-04-05T03:51:22Z #15 1.650 15750K .......... .......... .......... .......... .......... 12% 133M 1s -2024-04-05T03:51:22Z #15 1.651 15800K .......... .......... .......... .......... .......... 12% 143M 1s -2024-04-05T03:51:22Z #15 1.651 15850K .......... .......... .......... .......... .......... 12% 123M 1s -2024-04-05T03:51:22Z #15 1.651 15900K .......... .......... .......... .......... .......... 12% 155M 1s -2024-04-05T03:51:22Z #15 1.651 15950K .......... .......... .......... .......... .......... 12% 112M 1s -2024-04-05T03:51:22Z #15 1.652 16000K .......... .......... .......... .......... .......... 12% 151M 1s -2024-04-05T03:51:22Z #15 1.652 16050K .......... .......... .......... .......... .......... 12% 130M 1s -2024-04-05T03:51:22Z #15 1.652 16100K .......... .......... .......... .......... .......... 12% 138M 1s -2024-04-05T03:51:22Z #15 1.653 16150K .......... .......... .......... .......... .......... 12% 138M 1s -2024-04-05T03:51:22Z #15 1.653 16200K .......... .......... .......... .......... .......... 12% 156M 1s -2024-04-05T03:51:22Z #15 1.654 16250K .......... .......... .......... .......... .......... 12% 132M 1s -2024-04-05T03:51:22Z #15 1.654 16300K .......... .......... .......... .......... .......... 12% 159M 1s -2024-04-05T03:51:22Z #15 1.654 16350K .......... .......... .......... .......... .......... 12% 114M 1s -2024-04-05T03:51:22Z #15 1.656 16400K .......... .......... .......... .......... .......... 12% 129M 1s -2024-04-05T03:51:22Z #15 1.657 16450K .......... .......... .......... .......... .......... 13% 155M 1s -2024-04-05T03:51:22Z #15 1.657 16500K .......... .......... .......... .......... .......... 13% 165M 1s -2024-04-05T03:51:22Z #15 1.657 16550K .......... .......... .......... .......... .......... 13% 126M 1s -2024-04-05T03:51:22Z #15 1.657 16600K .......... .......... .......... .......... .......... 13% 140M 1s -2024-04-05T03:51:22Z #15 1.657 16650K .......... .......... .......... .......... .......... 13% 143M 1s -2024-04-05T03:51:22Z #15 1.662 16700K .......... .......... .......... .......... .......... 13% 8.72M 1s -2024-04-05T03:51:22Z #15 1.662 16750K .......... .......... .......... .......... .......... 13% 115M 1s -2024-04-05T03:51:22Z #15 1.663 16800K .......... .......... .......... .......... .......... 13% 149M 1s -2024-04-05T03:51:22Z #15 1.663 16850K .......... .......... .......... .......... .......... 13% 136M 1s -2024-04-05T03:51:22Z #15 1.663 16900K .......... .......... .......... .......... .......... 13% 149M 1s -2024-04-05T03:51:22Z #15 1.664 16950K .......... .......... .......... .......... .......... 13% 128M 1s -2024-04-05T03:51:22Z #15 1.664 17000K .......... .......... .......... .......... .......... 13% 164M 1s -2024-04-05T03:51:22Z #15 1.664 17050K .......... .......... .......... .......... .......... 13% 120M 1s -2024-04-05T03:51:22Z #15 1.665 17100K .......... .......... .......... .......... .......... 13% 137M 1s -2024-04-05T03:51:22Z #15 1.665 17150K .......... .......... .......... .......... .......... 13% 116M 1s -2024-04-05T03:51:22Z #15 1.666 17200K .......... .......... .......... .......... .......... 13% 142M 1s -2024-04-05T03:51:22Z #15 1.666 17250K .......... .......... .......... .......... .......... 13% 153M 1s -2024-04-05T03:51:22Z #15 1.666 17300K .......... .......... .......... .......... .......... 13% 110M 1s -2024-04-05T03:51:22Z #15 1.667 17350K .......... .......... .......... .......... .......... 13% 135M 1s -2024-04-05T03:51:22Z #15 1.668 17400K .......... .......... .......... .......... .......... 13% 165M 1s -2024-04-05T03:51:22Z #15 1.668 17450K .......... .......... .......... .......... .......... 13% 119M 1s -2024-04-05T03:51:22Z #15 1.668 17500K .......... .......... .......... .......... .......... 13% 140M 1s -2024-04-05T03:51:22Z #15 1.669 17550K .......... .......... .......... .......... .......... 13% 147M 1s -2024-04-05T03:51:22Z #15 1.670 17600K .......... .......... .......... .......... .......... 13% 166M 1s -2024-04-05T03:51:22Z #15 1.670 17650K .......... .......... .......... .......... .......... 13% 108M 1s -2024-04-05T03:51:22Z #15 1.670 17700K .......... .......... .......... .......... .......... 14% 150M 1s -2024-04-05T03:51:22Z #15 1.670 17750K .......... .......... .......... .......... .......... 14% 124M 1s -2024-04-05T03:51:22Z #15 1.670 17800K .......... .......... .......... .......... .......... 14% 132M 1s -2024-04-05T03:51:22Z #15 1.670 17850K .......... .......... .......... .......... .......... 14% 120M 1s -2024-04-05T03:51:22Z #15 1.671 17900K .......... .......... .......... .......... .......... 14% 140M 1s -2024-04-05T03:51:22Z #15 1.671 17950K .......... .......... .......... .......... .......... 14% 126M 1s -2024-04-05T03:51:22Z #15 1.672 18000K .......... .......... .......... .......... .......... 14% 155M 1s -2024-04-05T03:51:22Z #15 1.672 18050K .......... .......... .......... .......... .......... 14% 128M 1s -2024-04-05T03:51:22Z #15 1.672 18100K .......... .......... .......... .......... .......... 14% 148M 1s -2024-04-05T03:51:22Z #15 1.673 18150K .......... .......... .......... .......... .......... 14% 140M 1s -2024-04-05T03:51:22Z #15 1.673 18200K .......... .......... .......... .......... .......... 14% 152M 1s -2024-04-05T03:51:22Z #15 1.673 18250K .......... .......... .......... .......... .......... 14% 127M 1s -2024-04-05T03:51:22Z #15 1.674 18300K .......... .......... .......... .......... .......... 14% 142M 1s -2024-04-05T03:51:22Z #15 1.678 18350K .......... .......... .......... .......... .......... 14% 10.8M 1s -2024-04-05T03:51:22Z #15 1.678 18400K .......... .......... .......... .......... .......... 14% 142M 1s -2024-04-05T03:51:22Z #15 1.679 18450K .......... .......... .......... .......... .......... 14% 113M 1s -2024-04-05T03:51:22Z #15 1.680 18500K .......... .......... .......... .......... .......... 14% 143M 1s -2024-04-05T03:51:22Z #15 1.680 18550K .......... .......... .......... .......... .......... 14% 136M 1s -2024-04-05T03:51:22Z #15 1.680 18600K .......... .......... .......... .......... .......... 14% 133M 1s -2024-04-05T03:51:22Z #15 1.680 18650K .......... .......... .......... .......... .......... 14% 130M 1s -2024-04-05T03:51:22Z #15 1.680 18700K .......... .......... .......... .......... .......... 14% 158M 1s -2024-04-05T03:51:22Z #15 1.681 18750K .......... .......... .......... .......... .......... 14% 139M 1s -2024-04-05T03:51:22Z #15 1.681 18800K .......... .......... .......... .......... .......... 14% 148M 1s -2024-04-05T03:51:22Z #15 1.682 18850K .......... .......... .......... .......... .......... 14% 112M 1s -2024-04-05T03:51:22Z #15 1.682 18900K .......... .......... .......... .......... .......... 14% 132M 1s -2024-04-05T03:51:22Z #15 1.683 18950K .......... .......... .......... .......... .......... 14% 132M 1s -2024-04-05T03:51:22Z #15 1.683 19000K .......... .......... .......... .......... .......... 15% 145M 1s -2024-04-05T03:51:22Z #15 1.683 19050K .......... .......... .......... .......... .......... 15% 116M 1s -2024-04-05T03:51:22Z #15 1.684 19100K .......... .......... .......... .......... .......... 15% 135M 1s -2024-04-05T03:51:22Z #15 1.684 19150K .......... .......... .......... .......... .......... 15% 151M 1s -2024-04-05T03:51:22Z #15 1.685 19200K .......... .......... .......... .......... .......... 15% 129M 1s -2024-04-05T03:51:22Z #15 1.685 19250K .......... .......... .......... .......... .......... 15% 115M 1s -2024-04-05T03:51:22Z #15 1.685 19300K .......... .......... .......... .......... .......... 15% 147M 1s -2024-04-05T03:51:22Z #15 1.686 19350K .......... .......... .......... .......... .......... 15% 147M 1s -2024-04-05T03:51:22Z #15 1.686 19400K .......... .......... .......... .......... .......... 15% 10.8M 1s -2024-04-05T03:51:22Z #15 1.690 19450K .......... .......... .......... .......... .......... 15% 119M 1s -2024-04-05T03:51:22Z #15 1.690 19500K .......... .......... .......... .......... .......... 15% 131M 1s -2024-04-05T03:51:22Z #15 1.691 19550K .......... .......... .......... .......... .......... 15% 126M 1s -2024-04-05T03:51:22Z #15 1.693 19600K .......... .......... .......... .......... .......... 15% 173M 1s -2024-04-05T03:51:22Z #15 1.693 19650K .......... .......... .......... .......... .......... 15% 124M 1s -2024-04-05T03:51:22Z #15 1.693 19700K .......... .......... .......... .......... .......... 15% 141M 1s -2024-04-05T03:51:22Z #15 1.693 19750K .......... .......... .......... .......... .......... 15% 136M 1s -2024-04-05T03:51:22Z #15 1.693 19800K .......... .......... .......... .......... .......... 15% 147M 1s -2024-04-05T03:51:22Z #15 1.693 19850K .......... .......... .......... .......... .......... 15% 123M 1s -2024-04-05T03:51:22Z #15 1.693 19900K .......... .......... .......... .......... .......... 15% 138M 1s -2024-04-05T03:51:22Z #15 1.694 19950K .......... .......... .......... .......... .......... 15% 10.9M 1s -2024-04-05T03:51:22Z #15 1.699 20000K .......... .......... .......... .......... .......... 15% 119M 1s -2024-04-05T03:51:22Z #15 1.699 20050K .......... .......... .......... .......... .......... 15% 90.9M 1s -2024-04-05T03:51:22Z #15 1.700 20100K .......... .......... .......... .......... .......... 15% 143M 1s -2024-04-05T03:51:22Z #15 1.700 20150K .......... .......... .......... .......... .......... 15% 128M 1s -2024-04-05T03:51:22Z #15 1.700 20200K .......... .......... .......... .......... .......... 15% 132M 1s -2024-04-05T03:51:22Z #15 1.700 20250K .......... .......... .......... .......... .......... 16% 114M 1s -2024-04-05T03:51:22Z #15 1.701 20300K .......... .......... .......... .......... .......... 16% 139M 1s -2024-04-05T03:51:22Z #15 1.701 20350K .......... .......... .......... .......... .......... 16% 130M 1s -2024-04-05T03:51:22Z #15 1.702 20400K .......... .......... .......... .......... .......... 16% 136M 1s -2024-04-05T03:51:22Z #15 1.702 20450K .......... .......... .......... .......... .......... 16% 103M 1s -2024-04-05T03:51:22Z #15 1.703 20500K .......... .......... .......... .......... .......... 16% 137M 1s -2024-04-05T03:51:22Z #15 1.703 20550K .......... .......... .......... .......... .......... 16% 142M 1s -2024-04-05T03:51:22Z #15 1.704 20600K .......... .......... .......... .......... .......... 16% 143M 1s -2024-04-05T03:51:22Z #15 1.704 20650K .......... .......... .......... .......... .......... 16% 129M 1s -2024-04-05T03:51:22Z #15 1.704 20700K .......... .......... .......... .......... .......... 16% 128M 1s -2024-04-05T03:51:22Z #15 1.704 20750K .......... .......... .......... .......... .......... 16% 146M 1s -2024-04-05T03:51:22Z #15 1.704 20800K .......... .......... .......... .......... .......... 16% 127M 1s -2024-04-05T03:51:22Z #15 1.705 20850K .......... .......... .......... .......... .......... 16% 131M 1s -2024-04-05T03:51:22Z #15 1.705 20900K .......... .......... .......... .......... .......... 16% 133M 1s -2024-04-05T03:51:22Z #15 1.706 20950K .......... .......... .......... .......... .......... 16% 11.0M 1s -2024-04-05T03:51:22Z #15 1.710 21000K .......... .......... .......... .......... .......... 16% 117M 1s -2024-04-05T03:51:22Z #15 1.710 21050K .......... .......... .......... .......... .......... 16% 111M 1s -2024-04-05T03:51:22Z #15 1.711 21100K .......... .......... .......... .......... .......... 16% 140M 1s -2024-04-05T03:51:22Z #15 1.713 21150K .......... .......... .......... .......... .......... 16% 145M 1s -2024-04-05T03:51:22Z #15 1.713 21200K .......... .......... .......... .......... .......... 16% 150M 1s -2024-04-05T03:51:22Z #15 1.713 21250K .......... .......... .......... .......... .......... 16% 112M 1s -2024-04-05T03:51:22Z #15 1.713 21300K .......... .......... .......... .......... .......... 16% 135M 1s -2024-04-05T03:51:22Z #15 1.713 21350K .......... .......... .......... .......... .......... 16% 134M 1s -2024-04-05T03:51:22Z #15 1.713 21400K .......... .......... .......... .......... .......... 16% 120M 1s -2024-04-05T03:51:22Z #15 1.714 21450K .......... .......... .......... .......... .......... 16% 149M 1s -2024-04-05T03:51:22Z #15 1.714 21500K .......... .......... .......... .......... .......... 16% 99.1M 1s -2024-04-05T03:51:22Z #15 1.715 21550K .......... .......... .......... .......... .......... 17% 124M 1s -2024-04-05T03:51:22Z #15 1.715 21600K .......... .......... .......... .......... .......... 17% 127M 1s -2024-04-05T03:51:22Z #15 1.715 21650K .......... .......... .......... .......... .......... 17% 141M 1s -2024-04-05T03:51:22Z #15 1.716 21700K .......... .......... .......... .......... .......... 17% 127M 1s -2024-04-05T03:51:22Z #15 1.716 21750K .......... .......... .......... .......... .......... 17% 120M 1s -2024-04-05T03:51:22Z #15 1.716 21800K .......... .......... .......... .......... .......... 17% 126M 1s -2024-04-05T03:51:22Z #15 1.717 21850K .......... .......... .......... .......... .......... 17% 138M 1s -2024-04-05T03:51:22Z #15 1.718 21900K .......... .......... .......... .......... .......... 17% 101M 1s -2024-04-05T03:51:22Z #15 1.719 21950K .......... .......... .......... .......... .......... 17% 139M 1s -2024-04-05T03:51:22Z #15 1.719 22000K .......... .......... .......... .......... .......... 17% 10.9M 1s -2024-04-05T03:51:22Z #15 1.722 22050K .......... .......... .......... .......... .......... 17% 117M 1s -2024-04-05T03:51:22Z #15 1.724 22100K .......... .......... .......... .......... .......... 17% 112M 1s -2024-04-05T03:51:22Z #15 1.724 22150K .......... .......... .......... .......... .......... 17% 132M 1s -2024-04-05T03:51:22Z #15 1.724 22200K .......... .......... .......... .......... .......... 17% 120M 1s -2024-04-05T03:51:22Z #15 1.724 22250K .......... .......... .......... .......... .......... 17% 109M 1s -2024-04-05T03:51:22Z #15 1.725 22300K .......... .......... .......... .......... .......... 17% 149M 1s -2024-04-05T03:51:22Z #15 1.725 22350K .......... .......... .......... .......... .......... 17% 156M 1s -2024-04-05T03:51:22Z #15 1.725 22400K .......... .......... .......... .......... .......... 17% 127M 1s -2024-04-05T03:51:22Z #15 1.725 22450K .......... .......... .......... .......... .......... 17% 116M 1s -2024-04-05T03:51:22Z #15 1.726 22500K .......... .......... .......... .......... .......... 17% 98.3M 1s -2024-04-05T03:51:22Z #15 1.726 22550K .......... .......... .......... .......... .......... 17% 120M 1s -2024-04-05T03:51:22Z #15 1.728 22600K .......... .......... .......... .......... .......... 17% 135M 1s -2024-04-05T03:51:22Z #15 1.728 22650K .......... .......... .......... .......... .......... 17% 155M 1s -2024-04-05T03:51:22Z #15 1.728 22700K .......... .......... .......... .......... .......... 17% 111M 1s -2024-04-05T03:51:22Z #15 1.728 22750K .......... .......... .......... .......... .......... 17% 129M 1s -2024-04-05T03:51:22Z #15 1.729 22800K .......... .......... .......... .......... .......... 18% 115M 1s -2024-04-05T03:51:22Z #15 1.729 22850K .......... .......... .......... .......... .......... 18% 112M 1s -2024-04-05T03:51:22Z #15 1.730 22900K .......... .......... .......... .......... .......... 18% 120M 1s -2024-04-05T03:51:22Z #15 1.730 22950K .......... .......... .......... .......... .......... 18% 130M 1s -2024-04-05T03:51:22Z #15 1.730 23000K .......... .......... .......... .......... .......... 18% 94.0M 1s -2024-04-05T03:51:22Z #15 1.730 23050K .......... .......... .......... .......... .......... 18% 156M 1s -2024-04-05T03:51:22Z #15 1.731 23100K .......... .......... .......... .......... .......... 18% 114M 1s -2024-04-05T03:51:22Z #15 1.732 23150K .......... .......... .......... .......... .......... 18% 138M 1s -2024-04-05T03:51:22Z #15 1.732 23200K .......... .......... .......... .......... .......... 18% 124M 1s -2024-04-05T03:51:22Z #15 1.732 23250K .......... .......... .......... .......... .......... 18% 134M 1s -2024-04-05T03:51:22Z #15 1.733 23300K .......... .......... .......... .......... .......... 18% 135M 1s -2024-04-05T03:51:22Z #15 1.733 23350K .......... .......... .......... .......... .......... 18% 156M 1s -2024-04-05T03:51:22Z #15 1.733 23400K .......... .......... .......... .......... .......... 18% 136M 1s -2024-04-05T03:51:22Z #15 1.735 23450K .......... .......... .......... .......... .......... 18% 134M 1s -2024-04-05T03:51:22Z #15 1.735 23500K .......... .......... .......... .......... .......... 18% 11.1M 1s -2024-04-05T03:51:22Z #15 1.739 23550K .......... .......... .......... .......... .......... 18% 103M 1s -2024-04-05T03:51:22Z #15 1.739 23600K .......... .......... .......... .......... .......... 18% 140M 1s -2024-04-05T03:51:22Z #15 1.739 23650K .......... .......... .......... .......... .......... 18% 129M 1s -2024-04-05T03:51:22Z #15 1.739 23700K .......... .......... .......... .......... .......... 18% 143M 1s -2024-04-05T03:51:22Z #15 1.741 23750K .......... .......... .......... .......... .......... 18% 119M 1s -2024-04-05T03:51:22Z #15 1.741 23800K .......... .......... .......... .......... .......... 18% 151M 1s -2024-04-05T03:51:22Z #15 1.741 23850K .......... .......... .......... .......... .......... 18% 144M 1s -2024-04-05T03:51:22Z #15 1.743 23900K .......... .......... .......... .......... .......... 18% 137M 1s -2024-04-05T03:51:22Z #15 1.743 23950K .......... .......... .......... .......... .......... 18% 128M 1s -2024-04-05T03:51:22Z #15 1.743 24000K .......... .......... .......... .......... .......... 18% 149M 1s -2024-04-05T03:51:22Z #15 1.745 24050K .......... .......... .......... .......... .......... 19% 11.1M 1s -2024-04-05T03:51:22Z #15 1.746 24100K .......... .......... .......... .......... .......... 19% 139M 1s -2024-04-05T03:51:22Z #15 1.747 24150K .......... .......... .......... .......... .......... 19% 129M 1s -2024-04-05T03:51:22Z #15 1.747 24200K .......... .......... .......... .......... .......... 19% 139M 1s -2024-04-05T03:51:22Z #15 1.748 24250K .......... .......... .......... .......... .......... 19% 150M 1s -2024-04-05T03:51:22Z #15 1.748 24300K .......... .......... .......... .......... .......... 19% 155M 1s -2024-04-05T03:51:22Z #15 1.748 24350K .......... .......... .......... .......... .......... 19% 105M 1s -2024-04-05T03:51:22Z #15 1.748 24400K .......... .......... .......... .......... .......... 19% 153M 1s -2024-04-05T03:51:22Z #15 1.749 24450K .......... .......... .......... .......... .......... 19% 146M 1s -2024-04-05T03:51:22Z #15 1.749 24500K .......... .......... .......... .......... .......... 19% 152M 1s -2024-04-05T03:51:22Z #15 1.749 24550K .......... .......... .......... .......... .......... 19% 128M 1s -2024-04-05T03:51:22Z #15 1.750 24600K .......... .......... .......... .......... .......... 19% 128M 1s -2024-04-05T03:51:22Z #15 1.750 24650K .......... .......... .......... .......... .......... 19% 159M 1s -2024-04-05T03:51:22Z #15 1.750 24700K .......... .......... .......... .......... .......... 19% 149M 1s -2024-04-05T03:51:22Z #15 1.751 24750K .......... .......... .......... .......... .......... 19% 113M 1s -2024-04-05T03:51:22Z #15 1.752 24800K .......... .......... .......... .......... .......... 19% 151M 1s -2024-04-05T03:51:22Z #15 1.752 24850K .......... .......... .......... .......... .......... 19% 146M 1s -2024-04-05T03:51:22Z #15 1.752 24900K .......... .......... .......... .......... .......... 19% 158M 1s -2024-04-05T03:51:22Z #15 1.752 24950K .......... .......... .......... .......... .......... 19% 126M 1s -2024-04-05T03:51:22Z #15 1.753 25000K .......... .......... .......... .......... .......... 19% 144M 1s -2024-04-05T03:51:22Z #15 1.753 25050K .......... .......... .......... .......... .......... 19% 159M 1s -2024-04-05T03:51:22Z #15 1.753 25100K .......... .......... .......... .......... .......... 19% 158M 1s -2024-04-05T03:51:22Z #15 1.753 25150K .......... .......... .......... .......... .......... 19% 115M 1s -2024-04-05T03:51:22Z #15 1.754 25200K .......... .......... .......... .......... .......... 19% 133M 1s -2024-04-05T03:51:22Z #15 1.754 25250K .......... .......... .......... .......... .......... 19% 154M 1s -2024-04-05T03:51:22Z #15 1.754 25300K .......... .......... .......... .......... .......... 19% 140M 1s -2024-04-05T03:51:22Z #15 1.756 25350K .......... .......... .......... .......... .......... 20% 122M 1s -2024-04-05T03:51:22Z #15 1.756 25400K .......... .......... .......... .......... .......... 20% 142M 1s -2024-04-05T03:51:22Z #15 1.756 25450K .......... .......... .......... .......... .......... 20% 146M 1s -2024-04-05T03:51:22Z #15 1.757 25500K .......... .......... .......... .......... .......... 20% 145M 1s -2024-04-05T03:51:22Z #15 1.757 25550K .......... .......... .......... .......... .......... 20% 128M 1s -2024-04-05T03:51:22Z #15 1.757 25600K .......... .......... .......... .......... .......... 20% 140M 1s -2024-04-05T03:51:22Z #15 1.757 25650K .......... .......... .......... .......... .......... 20% 154M 1s -2024-04-05T03:51:22Z #15 1.758 25700K .......... .......... .......... .......... .......... 20% 148M 1s -2024-04-05T03:51:22Z #15 1.758 25750K .......... .......... .......... .......... .......... 20% 10.9M 1s -2024-04-05T03:51:22Z #15 1.762 25800K .......... .......... .......... .......... .......... 20% 129M 1s -2024-04-05T03:51:22Z #15 1.764 25850K .......... .......... .......... .......... .......... 20% 150M 1s -2024-04-05T03:51:22Z #15 1.764 25900K .......... .......... .......... .......... .......... 20% 111M 1s -2024-04-05T03:51:22Z #15 1.764 25950K .......... .......... .......... .......... .......... 20% 119M 1s -2024-04-05T03:51:22Z #15 1.765 26000K .......... .......... .......... .......... .......... 20% 143M 1s -2024-04-05T03:51:22Z #15 1.765 26050K .......... .......... .......... .......... .......... 20% 129M 1s -2024-04-05T03:51:22Z #15 1.765 26100K .......... .......... .......... .......... .......... 20% 126M 1s -2024-04-05T03:51:22Z #15 1.778 26150K .......... .......... .......... .......... .......... 20% 127M 1s -2024-04-05T03:51:22Z #15 1.778 26200K .......... .......... .......... .......... .......... 20% 138M 1s -2024-04-05T03:51:22Z #15 1.778 26250K .......... .......... .......... .......... .......... 20% 106M 1s -2024-04-05T03:51:22Z #15 1.778 26300K .......... .......... .......... .......... .......... 20% 135M 1s -2024-04-05T03:51:22Z #15 1.778 26350K .......... .......... .......... .......... .......... 20% 125M 1s -2024-04-05T03:51:22Z #15 1.778 26400K .......... .......... .......... .......... .......... 20% 125M 1s -2024-04-05T03:51:22Z #15 1.778 26450K .......... .......... .......... .......... .......... 20% 107M 1s -2024-04-05T03:51:22Z #15 1.778 26500K .......... .......... .......... .......... .......... 20% 116M 1s -2024-04-05T03:51:22Z #15 1.778 26550K .......... .......... .......... .......... .......... 20% 126M 1s -2024-04-05T03:51:22Z #15 1.778 26600K .......... .......... .......... .......... .......... 21% 127M 1s -2024-04-05T03:51:22Z #15 1.778 26650K .......... .......... .......... .......... .......... 21% 103M 1s -2024-04-05T03:51:22Z #15 1.778 26700K .......... .......... .......... .......... .......... 21% 114M 1s -2024-04-05T03:51:22Z #15 1.778 26750K .......... .......... .......... .......... .......... 21% 124M 1s -2024-04-05T03:51:22Z #15 1.778 26800K .......... .......... .......... .......... .......... 21% 164M 1s -2024-04-05T03:51:22Z #15 1.778 26850K .......... .......... .......... .......... .......... 21% 135M 1s -2024-04-05T03:51:22Z #15 1.778 26900K .......... .......... .......... .......... .......... 21% 160M 1s -2024-04-05T03:51:22Z #15 1.778 26950K .......... .......... .......... .......... .......... 21% 151M 1s -2024-04-05T03:51:22Z #15 1.778 27000K .......... .......... .......... .......... .......... 21% 157M 1s -2024-04-05T03:51:22Z #15 1.778 27050K .......... .......... .......... .......... .......... 21% 120M 1s -2024-04-05T03:51:22Z #15 1.778 27100K .......... .......... .......... .......... .......... 21% 159M 1s -2024-04-05T03:51:22Z #15 1.778 27150K .......... .......... .......... .......... .......... 21% 154M 1s -2024-04-05T03:51:22Z #15 1.778 27200K .......... .......... .......... .......... .......... 21% 169M 1s -2024-04-05T03:51:22Z #15 1.778 27250K .......... .......... .......... .......... .......... 21% 134M 1s -2024-04-05T03:51:22Z #15 1.778 27300K .......... .......... .......... .......... .......... 21% 150M 1s -2024-04-05T03:51:22Z #15 1.778 27350K .......... .......... .......... .......... .......... 21% 126M 1s -2024-04-05T03:51:22Z #15 1.778 27400K .......... .......... .......... .......... .......... 21% 164M 1s -2024-04-05T03:51:22Z #15 1.778 27450K .......... .......... .......... .......... .......... 21% 141M 1s -2024-04-05T03:51:22Z #15 1.778 27500K .......... .......... .......... .......... .......... 21% 123M 1s -2024-04-05T03:51:22Z #15 1.778 27550K .......... .......... .......... .......... .......... 21% 154M 1s -2024-04-05T03:51:22Z #15 1.778 27600K .......... .......... .......... .......... .......... 21% 167M 1s -2024-04-05T03:51:22Z #15 1.778 27650K .......... .......... .......... .......... .......... 21% 145M 1s -2024-04-05T03:51:22Z #15 1.778 27700K .......... .......... .......... .......... .......... 21% 137M 1s -2024-04-05T03:51:22Z #15 1.778 27750K .......... .......... .......... .......... .......... 21% 158M 1s -2024-04-05T03:51:22Z #15 1.778 27800K .......... .......... .......... .......... .......... 21% 153M 1s -2024-04-05T03:51:22Z #15 1.778 27850K .......... .......... .......... .......... .......... 22% 159M 1s -2024-04-05T03:51:22Z #15 1.778 27900K .......... .......... .......... .......... .......... 22% 130M 1s -2024-04-05T03:51:22Z #15 1.778 27950K .......... .......... .......... .......... .......... 22% 124M 1s -2024-04-05T03:51:22Z #15 1.782 28000K .......... .......... .......... .......... .......... 22% 142M 1s -2024-04-05T03:51:22Z #15 1.782 28050K .......... .......... .......... .......... .......... 22% 161M 1s -2024-04-05T03:51:22Z #15 1.782 28100K .......... .......... .......... .......... .......... 22% 135M 1s -2024-04-05T03:51:22Z #15 1.782 28150K .......... .......... .......... .......... .......... 22% 127M 1s -2024-04-05T03:51:22Z #15 1.782 28200K .......... .......... .......... .......... .......... 22% 135M 1s -2024-04-05T03:51:22Z #15 1.782 28250K .......... .......... .......... .......... .......... 22% 135M 1s -2024-04-05T03:51:22Z #15 1.782 28300K .......... .......... .......... .......... .......... 22% 93.7M 1s -2024-04-05T03:51:22Z #15 1.782 28350K .......... .......... .......... .......... .......... 22% 134M 1s -2024-04-05T03:51:22Z #15 1.782 28400K .......... .......... .......... .......... .......... 22% 122M 1s -2024-04-05T03:51:22Z #15 1.782 28450K .......... .......... .......... .......... .......... 22% 48.1M 1s -2024-04-05T03:51:23Z #15 1.782 28500K .......... .......... .......... .......... .......... 22% 38.1M 1s -2024-04-05T03:51:23Z #15 1.786 28550K .......... .......... .......... .......... .......... 22% 114M 1s -2024-04-05T03:51:23Z #15 1.786 28600K .......... .......... .......... .......... .......... 22% 116M 1s -2024-04-05T03:51:23Z #15 1.786 28650K .......... .......... .......... .......... .......... 22% 129M 1s -2024-04-05T03:51:23Z #15 1.786 28700K .......... .......... .......... .......... .......... 22% 109M 1s -2024-04-05T03:51:23Z #15 1.786 28750K .......... .......... .......... .......... .......... 22% 39.4M 1s -2024-04-05T03:51:23Z #15 1.787 28800K .......... .......... .......... .......... .......... 22% 25.7M 1s -2024-04-05T03:51:23Z #15 1.790 28850K .......... .......... .......... .......... .......... 22% 106M 1s -2024-04-05T03:51:23Z #15 1.790 28900K .......... .......... .......... .......... .......... 22% 133M 1s -2024-04-05T03:51:23Z #15 1.790 28950K .......... .......... .......... .......... .......... 22% 24.1M 1s -2024-04-05T03:51:23Z #15 1.794 29000K .......... .......... .......... .......... .......... 22% 93.2M 1s -2024-04-05T03:51:23Z #15 1.794 29050K .......... .......... .......... .......... .......... 22% 104M 1s -2024-04-05T03:51:23Z #15 1.794 29100K .......... .......... .......... .......... .......... 22% 143M 1s -2024-04-05T03:51:23Z #15 1.794 29150K .......... .......... .......... .......... .......... 23% 117M 1s -2024-04-05T03:51:23Z #15 1.794 29200K .......... .......... .......... .......... .......... 23% 147M 1s -2024-04-05T03:51:23Z #15 1.794 29250K .......... .......... .......... .......... .......... 23% 101M 1s -2024-04-05T03:51:23Z #15 1.794 29300K .......... .......... .......... .......... .......... 23% 141M 1s -2024-04-05T03:51:23Z #15 1.794 29350K .......... .......... .......... .......... .......... 23% 97.1M 1s -2024-04-05T03:51:23Z #15 1.795 29400K .......... .......... .......... .......... .......... 23% 114M 1s -2024-04-05T03:51:23Z #15 1.795 29450K .......... .......... .......... .......... .......... 23% 30.8M 1s -2024-04-05T03:51:23Z #15 1.797 29500K .......... .......... .......... .......... .......... 23% 114M 1s -2024-04-05T03:51:23Z #15 1.797 29550K .......... .......... .......... .......... .......... 23% 40.8M 1s -2024-04-05T03:51:23Z #15 1.798 29600K .......... .......... .......... .......... .......... 23% 36.7M 1s -2024-04-05T03:51:23Z #15 1.800 29650K .......... .......... .......... .......... .......... 23% 31.3M 1s -2024-04-05T03:51:23Z #15 1.806 29700K .......... .......... .......... .......... .......... 23% 117M 1s -2024-04-05T03:51:23Z #15 1.806 29750K .......... .......... .......... .......... .......... 23% 124M 1s -2024-04-05T03:51:23Z #15 1.806 29800K .......... .......... .......... .......... .......... 23% 142M 1s -2024-04-05T03:51:23Z #15 1.806 29850K .......... .......... .......... .......... .......... 23% 85.8M 1s -2024-04-05T03:51:23Z #15 1.806 29900K .......... .......... .......... .......... .......... 23% 121M 1s -2024-04-05T03:51:23Z #15 1.806 29950K .......... .......... .......... .......... .......... 23% 145M 1s -2024-04-05T03:51:23Z #15 1.806 30000K .......... .......... .......... .......... .......... 23% 127M 1s -2024-04-05T03:51:23Z #15 1.806 30050K .......... .......... .......... .......... .......... 23% 118M 1s -2024-04-05T03:51:23Z #15 1.806 30100K .......... .......... .......... .......... .......... 23% 114M 1s -2024-04-05T03:51:23Z #15 1.806 30150K .......... .......... .......... .......... .......... 23% 124M 1s -2024-04-05T03:51:23Z #15 1.806 30200K .......... .......... .......... .......... .......... 23% 99.6M 1s -2024-04-05T03:51:23Z #15 1.807 30250K .......... .......... .......... .......... .......... 23% 97.4M 1s -2024-04-05T03:51:23Z #15 1.807 30300K .......... .......... .......... .......... .......... 23% 21.9M 1s -2024-04-05T03:51:23Z #15 1.809 30350K .......... .......... .......... .......... .......... 23% 116M 1s -2024-04-05T03:51:23Z #15 1.809 30400K .......... .......... .......... .......... .......... 24% 121M 1s -2024-04-05T03:51:23Z #15 1.809 30450K .......... .......... .......... .......... .......... 24% 14.2M 1s -2024-04-05T03:51:23Z #15 1.818 30500K .......... .......... .......... .......... .......... 24% 115M 1s -2024-04-05T03:51:23Z #15 1.818 30550K .......... .......... .......... .......... .......... 24% 119M 1s -2024-04-05T03:51:23Z #15 1.818 30600K .......... .......... .......... .......... .......... 24% 132M 1s -2024-04-05T03:51:23Z #15 1.818 30650K .......... .......... .......... .......... .......... 24% 98.7M 1s -2024-04-05T03:51:23Z #15 1.818 30700K .......... .......... .......... .......... .......... 24% 119M 1s -2024-04-05T03:51:23Z #15 1.818 30750K .......... .......... .......... .......... .......... 24% 132M 1s -2024-04-05T03:51:23Z #15 1.818 30800K .......... .......... .......... .......... .......... 24% 114M 1s -2024-04-05T03:51:23Z #15 1.818 30850K .......... .......... .......... .......... .......... 24% 112M 1s -2024-04-05T03:51:23Z #15 1.818 30900K .......... .......... .......... .......... .......... 24% 119M 1s -2024-04-05T03:51:23Z #15 1.818 30950K .......... .......... .......... .......... .......... 24% 118M 1s -2024-04-05T03:51:23Z #15 1.818 31000K .......... .......... .......... .......... .......... 24% 125M 1s -2024-04-05T03:51:23Z #15 1.818 31050K .......... .......... .......... .......... .......... 24% 17.9M 1s -2024-04-05T03:51:23Z #15 1.822 31100K .......... .......... .......... .......... .......... 24% 118M 1s -2024-04-05T03:51:23Z #15 1.822 31150K .......... .......... .......... .......... .......... 24% 122M 1s -2024-04-05T03:51:23Z #15 1.822 31200K .......... .......... .......... .......... .......... 24% 125M 1s -2024-04-05T03:51:23Z #15 1.822 31250K .......... .......... .......... .......... .......... 24% 31.1M 1s -2024-04-05T03:51:23Z #15 1.824 31300K .......... .......... .......... .......... .......... 24% 33.5M 1s -2024-04-05T03:51:23Z #15 1.826 31350K .......... .......... .......... .......... .......... 24% 126M 1s -2024-04-05T03:51:23Z #15 1.826 31400K .......... .......... .......... .......... .......... 24% 132M 1s -2024-04-05T03:51:23Z #15 1.826 31450K .......... .......... .......... .......... .......... 24% 111M 1s -2024-04-05T03:51:23Z #15 1.826 31500K .......... .......... .......... .......... .......... 24% 64.7M 1s -2024-04-05T03:51:23Z #15 1.830 31550K .......... .......... .......... .......... .......... 24% 129M 1s -2024-04-05T03:51:23Z #15 1.830 31600K .......... .......... .......... .......... .......... 24% 128M 1s -2024-04-05T03:51:23Z #15 1.830 31650K .......... .......... .......... .......... .......... 25% 135M 1s -2024-04-05T03:51:23Z #15 1.830 31700K .......... .......... .......... .......... .......... 25% 120M 1s -2024-04-05T03:51:23Z #15 1.830 31750K .......... .......... .......... .......... .......... 25% 125M 1s -2024-04-05T03:51:23Z #15 1.830 31800K .......... .......... .......... .......... .......... 25% 121M 1s -2024-04-05T03:51:23Z #15 1.830 31850K .......... .......... .......... .......... .......... 25% 95.8M 1s -2024-04-05T03:51:23Z #15 1.830 31900K .......... .......... .......... .......... .......... 25% 131M 1s -2024-04-05T03:51:23Z #15 1.830 31950K .......... .......... .......... .......... .......... 25% 120M 1s -2024-04-05T03:51:23Z #15 1.834 32000K .......... .......... .......... .......... .......... 25% 121M 1s -2024-04-05T03:51:23Z #15 1.834 32050K .......... .......... .......... .......... .......... 25% 109M 1s -2024-04-05T03:51:23Z #15 1.834 32100K .......... .......... .......... .......... .......... 25% 114M 1s -2024-04-05T03:51:23Z #15 1.834 32150K .......... .......... .......... .......... .......... 25% 139M 1s -2024-04-05T03:51:23Z #15 1.834 32200K .......... .......... .......... .......... .......... 25% 121M 1s -2024-04-05T03:51:23Z #15 1.834 32250K .......... .......... .......... .......... .......... 25% 104M 1s -2024-04-05T03:51:23Z #15 1.834 32300K .......... .......... .......... .......... .......... 25% 134M 1s -2024-04-05T03:51:23Z #15 1.834 32350K .......... .......... .......... .......... .......... 25% 123M 1s -2024-04-05T03:51:23Z #15 1.834 32400K .......... .......... .......... .......... .......... 25% 116M 1s -2024-04-05T03:51:23Z #15 1.834 32450K .......... .......... .......... .......... .......... 25% 121M 1s -2024-04-05T03:51:23Z #15 1.838 32500K .......... .......... .......... .......... .......... 25% 148M 1s -2024-04-05T03:51:23Z #15 1.838 32550K .......... .......... .......... .......... .......... 25% 138M 1s -2024-04-05T03:51:23Z #15 1.838 32600K .......... .......... .......... .......... .......... 25% 101M 1s -2024-04-05T03:51:23Z #15 1.838 32650K .......... .......... .......... .......... .......... 25% 127M 1s -2024-04-05T03:51:23Z #15 1.838 32700K .......... .......... .......... .......... .......... 25% 120M 1s -2024-04-05T03:51:23Z #15 1.838 32750K .......... .......... .......... .......... .......... 25% 111M 1s -2024-04-05T03:51:23Z #15 1.838 32800K .......... .......... .......... .......... .......... 25% 106M 1s -2024-04-05T03:51:23Z #15 1.838 32850K .......... .......... .......... .......... .......... 25% 127M 1s -2024-04-05T03:51:23Z #15 1.838 32900K .......... .......... .......... .......... .......... 25% 131M 1s -2024-04-05T03:51:23Z #15 1.838 32950K .......... .......... .......... .......... .......... 26% 26.7M 1s -2024-04-05T03:51:23Z #15 1.846 33000K .......... .......... .......... .......... .......... 26% 36.6M 1s -2024-04-05T03:51:23Z #15 1.846 33050K .......... .......... .......... .......... .......... 26% 128M 1s -2024-04-05T03:51:23Z #15 1.846 33100K .......... .......... .......... .......... .......... 26% 127M 1s -2024-04-05T03:51:23Z #15 1.846 33150K .......... .......... .......... .......... .......... 26% 119M 1s -2024-04-05T03:51:23Z #15 1.846 33200K .......... .......... .......... .......... .......... 26% 94.5M 1s -2024-04-05T03:51:23Z #15 1.846 33250K .......... .......... .......... .......... .......... 26% 141M 1s -2024-04-05T03:51:23Z #15 1.846 33300K .......... .......... .......... .......... .......... 26% 110M 1s -2024-04-05T03:51:23Z #15 1.846 33350K .......... .......... .......... .......... .......... 26% 120M 1s -2024-04-05T03:51:23Z #15 1.846 33400K .......... .......... .......... .......... .......... 26% 110M 1s -2024-04-05T03:51:23Z #15 1.846 33450K .......... .......... .......... .......... .......... 26% 114M 1s -2024-04-05T03:51:23Z #15 1.846 33500K .......... .......... .......... .......... .......... 26% 111M 1s -2024-04-05T03:51:23Z #15 1.846 33550K .......... .......... .......... .......... .......... 26% 118M 1s -2024-04-05T03:51:23Z #15 1.846 33600K .......... .......... .......... .......... .......... 26% 15.6M 1s -2024-04-05T03:51:23Z #15 1.854 33650K .......... .......... .......... .......... .......... 26% 96.4M 1s -2024-04-05T03:51:23Z #15 1.854 33700K .......... .......... .......... .......... .......... 26% 122M 1s -2024-04-05T03:51:23Z #15 1.854 33750K .......... .......... .......... .......... .......... 26% 106M 1s -2024-04-05T03:51:23Z #15 1.854 33800K .......... .......... .......... .......... .......... 26% 113M 1s -2024-04-05T03:51:23Z #15 1.854 33850K .......... .......... .......... .......... .......... 26% 126M 1s -2024-04-05T03:51:23Z #15 1.854 33900K .......... .......... .......... .......... .......... 26% 106M 1s -2024-04-05T03:51:23Z #15 1.854 33950K .......... .......... .......... .......... .......... 26% 112M 1s -2024-04-05T03:51:23Z #15 1.854 34000K .......... .......... .......... .......... .......... 26% 104M 1s -2024-04-05T03:51:23Z #15 1.854 34050K .......... .......... .......... .......... .......... 26% 126M 1s -2024-04-05T03:51:23Z #15 1.854 34100K .......... .......... .......... .......... .......... 26% 113M 1s -2024-04-05T03:51:23Z #15 1.854 34150K .......... .......... .......... .......... .......... 26% 114M 1s -2024-04-05T03:51:23Z #15 1.854 34200K .......... .......... .......... .......... .......... 27% 31.3M 1s -2024-04-05T03:51:23Z #15 1.858 34250K .......... .......... .......... .......... .......... 27% 72.9M 1s -2024-04-05T03:51:23Z #15 1.858 34300K .......... .......... .......... .......... .......... 27% 143M 1s -2024-04-05T03:51:23Z #15 1.858 34350K .......... .......... .......... .......... .......... 27% 110M 1s -2024-04-05T03:51:23Z #15 1.858 34400K .......... .......... .......... .......... .......... 27% 125M 1s -2024-04-05T03:51:23Z #15 1.858 34450K .......... .......... .......... .......... .......... 27% 129M 1s -2024-04-05T03:51:23Z #15 1.858 34500K .......... .......... .......... .......... .......... 27% 129M 1s -2024-04-05T03:51:23Z #15 1.858 34550K .......... .......... .......... .......... .......... 27% 99.5M 1s -2024-04-05T03:51:23Z #15 1.859 34600K .......... .......... .......... .......... .......... 27% 122M 1s -2024-04-05T03:51:23Z #15 1.859 34650K .......... .......... .......... .......... .......... 27% 87.7M 1s -2024-04-05T03:51:23Z #15 1.860 34700K .......... .......... .......... .......... .......... 27% 118M 1s -2024-04-05T03:51:23Z #15 1.860 34750K .......... .......... .......... .......... .......... 27% 96.8M 1s -2024-04-05T03:51:23Z #15 1.860 34800K .......... .......... .......... .......... .......... 27% 24.0M 1s -2024-04-05T03:51:23Z #15 1.863 34850K .......... .......... .......... .......... .......... 27% 16.5M 1s -2024-04-05T03:51:23Z #15 1.870 34900K .......... .......... .......... .......... .......... 27% 104M 1s -2024-04-05T03:51:23Z #15 1.870 34950K .......... .......... .......... .......... .......... 27% 128M 1s -2024-04-05T03:51:23Z #15 1.870 35000K .......... .......... .......... .......... .......... 27% 109M 1s -2024-04-05T03:51:23Z #15 1.870 35050K .......... .......... .......... .......... .......... 27% 139M 1s -2024-04-05T03:51:23Z #15 1.870 35100K .......... .......... .......... .......... .......... 27% 103M 1s -2024-04-05T03:51:23Z #15 1.870 35150K .......... .......... .......... .......... .......... 27% 141M 1s -2024-04-05T03:51:23Z #15 1.870 35200K .......... .......... .......... .......... .......... 27% 110M 1s -2024-04-05T03:51:23Z #15 1.870 35250K .......... .......... .......... .......... .......... 27% 111M 1s -2024-04-05T03:51:23Z #15 1.870 35300K .......... .......... .......... .......... .......... 27% 112M 1s -2024-04-05T03:51:23Z #15 1.870 35350K .......... .......... .......... .......... .......... 27% 111M 1s -2024-04-05T03:51:23Z #15 1.870 35400K .......... .......... .......... .......... .......... 27% 103M 1s -2024-04-05T03:51:23Z #15 1.870 35450K .......... .......... .......... .......... .......... 28% 24.8M 1s -2024-04-05T03:51:23Z #15 1.874 35500K .......... .......... .......... .......... .......... 28% 125M 1s -2024-04-05T03:51:23Z #15 1.874 35550K .......... .......... .......... .......... .......... 28% 155M 1s -2024-04-05T03:51:23Z #15 1.874 35600K .......... .......... .......... .......... .......... 28% 101M 1s -2024-04-05T03:51:23Z #15 1.874 35650K .......... .......... .......... .......... .......... 28% 133M 1s -2024-04-05T03:51:23Z #15 1.874 35700K .......... .......... .......... .......... .......... 28% 133M 1s -2024-04-05T03:51:23Z #15 1.874 35750K .......... .......... .......... .......... .......... 28% 55.6M 1s -2024-04-05T03:51:23Z #15 1.878 35800K .......... .......... .......... .......... .......... 28% 69.8M 1s -2024-04-05T03:51:23Z #15 1.878 35850K .......... .......... .......... .......... .......... 28% 161M 1s -2024-04-05T03:51:23Z #15 1.878 35900K .......... .......... .......... .......... .......... 28% 130M 1s -2024-04-05T03:51:23Z #15 1.878 35950K .......... .......... .......... .......... .......... 28% 154M 1s -2024-04-05T03:51:23Z #15 1.878 36000K .......... .......... .......... .......... .......... 28% 128M 1s -2024-04-05T03:51:23Z #15 1.878 36050K .......... .......... .......... .......... .......... 28% 132M 1s -2024-04-05T03:51:23Z #15 1.878 36100K .......... .......... .......... .......... .......... 28% 116M 1s -2024-04-05T03:51:23Z #15 1.878 36150K .......... .......... .......... .......... .......... 28% 146M 1s -2024-04-05T03:51:23Z #15 1.878 36200K .......... .......... .......... .......... .......... 28% 15.8M 1s -2024-04-05T03:51:23Z #15 1.881 36250K .......... .......... .......... .......... .......... 28% 82.1M 1s -2024-04-05T03:51:23Z #15 1.886 36300K .......... .......... .......... .......... .......... 28% 129M 1s -2024-04-05T03:51:23Z #15 1.886 36350K .......... .......... .......... .......... .......... 28% 105M 1s -2024-04-05T03:51:23Z #15 1.886 36400K .......... .......... .......... .......... .......... 28% 95.7M 1s -2024-04-05T03:51:23Z #15 1.886 36450K .......... .......... .......... .......... .......... 28% 111M 1s -2024-04-05T03:51:23Z #15 1.886 36500K .......... .......... .......... .......... .......... 28% 118M 1s -2024-04-05T03:51:23Z #15 1.886 36550K .......... .......... .......... .......... .......... 28% 108M 1s -2024-04-05T03:51:23Z #15 1.886 36600K .......... .......... .......... .......... .......... 28% 103M 1s -2024-04-05T03:51:23Z #15 1.886 36650K .......... .......... .......... .......... .......... 28% 135M 1s -2024-04-05T03:51:23Z #15 1.886 36700K .......... .......... .......... .......... .......... 28% 114M 1s -2024-04-05T03:51:23Z #15 1.886 36750K .......... .......... .......... .......... .......... 29% 100M 1s -2024-04-05T03:51:23Z #15 1.886 36800K .......... .......... .......... .......... .......... 29% 57.0M 1s -2024-04-05T03:51:23Z #15 1.890 36850K .......... .......... .......... .......... .......... 29% 111M 1s -2024-04-05T03:51:23Z #15 1.890 36900K .......... .......... .......... .......... .......... 29% 122M 1s -2024-04-05T03:51:23Z #15 1.890 36950K .......... .......... .......... .......... .......... 29% 135M 1s -2024-04-05T03:51:23Z #15 1.890 37000K .......... .......... .......... .......... .......... 29% 109M 1s -2024-04-05T03:51:23Z #15 1.890 37050K .......... .......... .......... .......... .......... 29% 131M 1s -2024-04-05T03:51:23Z #15 1.890 37100K .......... .......... .......... .......... .......... 29% 130M 1s -2024-04-05T03:51:23Z #15 1.890 37150K .......... .......... .......... .......... .......... 29% 115M 1s -2024-04-05T03:51:23Z #15 1.890 37200K .......... .......... .......... .......... .......... 29% 144M 1s -2024-04-05T03:51:23Z #15 1.894 37250K .......... .......... .......... .......... .......... 29% 65.3M 1s -2024-04-05T03:51:23Z #15 1.894 37300K .......... .......... .......... .......... .......... 29% 105M 1s -2024-04-05T03:51:23Z #15 1.894 37350K .......... .......... .......... .......... .......... 29% 129M 1s -2024-04-05T03:51:23Z #15 1.894 37400K .......... .......... .......... .......... .......... 29% 112M 1s -2024-04-05T03:51:23Z #15 1.894 37450K .......... .......... .......... .......... .......... 29% 129M 1s -2024-04-05T03:51:23Z #15 1.894 37500K .......... .......... .......... .......... .......... 29% 128M 1s -2024-04-05T03:51:23Z #15 1.894 37550K .......... .......... .......... .......... .......... 29% 142M 1s -2024-04-05T03:51:23Z #15 1.894 37600K .......... .......... .......... .......... .......... 29% 111M 1s -2024-04-05T03:51:23Z #15 1.894 37650K .......... .......... .......... .......... .......... 29% 141M 1s -2024-04-05T03:51:23Z #15 1.894 37700K .......... .......... .......... .......... .......... 29% 79.1M 1s -2024-04-05T03:51:23Z #15 1.894 37750K .......... .......... .......... .......... .......... 29% 36.9M 1s -2024-04-05T03:51:23Z #15 1.896 37800K .......... .......... .......... .......... .......... 29% 20.0M 1s -2024-04-05T03:51:23Z #15 1.898 37850K .......... .......... .......... .......... .......... 29% 26.1M 1s -2024-04-05T03:51:23Z #15 1.900 37900K .......... .......... .......... .......... .......... 29% 24.7M 1s -2024-04-05T03:51:23Z #15 1.902 37950K .......... .......... .......... .......... .......... 29% 14.9M 1s -2024-04-05T03:51:23Z #15 1.906 38000K .......... .......... .......... .......... .......... 30% 153M 1s -2024-04-05T03:51:23Z #15 1.906 38050K .......... .......... .......... .......... .......... 30% 67.1M 1s -2024-04-05T03:51:23Z #15 1.906 38100K .......... .......... .......... .......... .......... 30% 63.6M 1s -2024-04-05T03:51:23Z #15 1.908 38150K .......... .......... .......... .......... .......... 30% 119M 1s -2024-04-05T03:51:23Z #15 1.908 38200K .......... .......... .......... .......... .......... 30% 100M 1s -2024-04-05T03:51:23Z #15 1.909 38250K .......... .......... .......... .......... .......... 30% 110M 1s -2024-04-05T03:51:23Z #15 1.909 38300K .......... .......... .......... .......... .......... 30% 111M 1s -2024-04-05T03:51:23Z #15 1.909 38350K .......... .......... .......... .......... .......... 30% 104M 1s -2024-04-05T03:51:23Z #15 1.909 38400K .......... .......... .......... .......... .......... 30% 10.4M 1s -2024-04-05T03:51:23Z #15 1.918 38450K .......... .......... .......... .......... .......... 30% 127M 1s -2024-04-05T03:51:23Z #15 1.918 38500K .......... .......... .......... .......... .......... 30% 115M 1s -2024-04-05T03:51:23Z #15 1.918 38550K .......... .......... .......... .......... .......... 30% 135M 1s -2024-04-05T03:51:23Z #15 1.918 38600K .......... .......... .......... .......... .......... 30% 103M 1s -2024-04-05T03:51:23Z #15 1.918 38650K .......... .......... .......... .......... .......... 30% 121M 1s -2024-04-05T03:51:23Z #15 1.918 38700K .......... .......... .......... .......... .......... 30% 137M 1s -2024-04-05T03:51:23Z #15 1.918 38750K .......... .......... .......... .......... .......... 30% 126M 1s -2024-04-05T03:51:23Z #15 1.918 38800K .......... .......... .......... .......... .......... 30% 98.9M 1s -2024-04-05T03:51:23Z #15 1.918 38850K .......... .......... .......... .......... .......... 30% 117M 1s -2024-04-05T03:51:23Z #15 1.918 38900K .......... .......... .......... .......... .......... 30% 11.0M 1s -2024-04-05T03:51:23Z #15 1.930 38950K .......... .......... .......... .......... .......... 30% 133M 1s -2024-04-05T03:51:23Z #15 1.930 39000K .......... .......... .......... .......... .......... 30% 115M 1s -2024-04-05T03:51:23Z #15 1.930 39050K .......... .......... .......... .......... .......... 30% 112M 1s -2024-04-05T03:51:23Z #15 1.930 39100K .......... .......... .......... .......... .......... 30% 125M 1s -2024-04-05T03:51:23Z #15 1.930 39150K .......... .......... .......... .......... .......... 30% 121M 1s -2024-04-05T03:51:23Z #15 1.930 39200K .......... .......... .......... .......... .......... 30% 124M 1s -2024-04-05T03:51:23Z #15 1.930 39250K .......... .......... .......... .......... .......... 30% 107M 1s -2024-04-05T03:51:23Z #15 1.930 39300K .......... .......... .......... .......... .......... 31% 119M 1s -2024-04-05T03:51:23Z #15 1.930 39350K .......... .......... .......... .......... .......... 31% 138M 1s -2024-04-05T03:51:23Z #15 1.930 39400K .......... .......... .......... .......... .......... 31% 122M 1s -2024-04-05T03:51:23Z #15 1.930 39450K .......... .......... .......... .......... .......... 31% 126M 1s -2024-04-05T03:51:23Z #15 1.930 39500K .......... .......... .......... .......... .......... 31% 151M 1s -2024-04-05T03:51:23Z #15 1.930 39550K .......... .......... .......... .......... .......... 31% 148M 1s -2024-04-05T03:51:23Z #15 1.930 39600K .......... .......... .......... .......... .......... 31% 134M 1s -2024-04-05T03:51:23Z #15 1.930 39650K .......... .......... .......... .......... .......... 31% 163M 1s -2024-04-05T03:51:23Z #15 1.930 39700K .......... .......... .......... .......... .......... 31% 154M 1s -2024-04-05T03:51:23Z #15 1.930 39750K .......... .......... .......... .......... .......... 31% 175M 1s -2024-04-05T03:51:23Z #15 1.930 39800K .......... .......... .......... .......... .......... 31% 132M 1s -2024-04-05T03:51:23Z #15 1.930 39850K .......... .......... .......... .......... .......... 31% 152M 1s -2024-04-05T03:51:23Z #15 1.930 39900K .......... .......... .......... .......... .......... 31% 161M 1s -2024-04-05T03:51:23Z #15 1.930 39950K .......... .......... .......... .......... .......... 31% 150M 1s -2024-04-05T03:51:23Z #15 1.930 40000K .......... .......... .......... .......... .......... 31% 116M 1s -2024-04-05T03:51:23Z #15 1.930 40050K .......... .......... .......... .......... .......... 31% 141M 1s -2024-04-05T03:51:23Z #15 1.931 40100K .......... .......... .......... .......... .......... 31% 118M 1s -2024-04-05T03:51:23Z #15 1.931 40150K .......... .......... .......... .......... .......... 31% 131M 1s -2024-04-05T03:51:23Z #15 1.932 40200K .......... .......... .......... .......... .......... 31% 105M 1s -2024-04-05T03:51:23Z #15 1.932 40250K .......... .......... .......... .......... .......... 31% 134M 1s -2024-04-05T03:51:23Z #15 1.932 40300K .......... .......... .......... .......... .......... 31% 138M 1s -2024-04-05T03:51:23Z #15 1.933 40350K .......... .......... .......... .......... .......... 31% 138M 1s -2024-04-05T03:51:23Z #15 1.933 40400K .......... .......... .......... .......... .......... 31% 138M 1s -2024-04-05T03:51:23Z #15 1.933 40450K .......... .......... .......... .......... .......... 31% 142M 1s -2024-04-05T03:51:23Z #15 1.934 40500K .......... .......... .......... .......... .......... 31% 128M 1s -2024-04-05T03:51:23Z #15 1.935 40550K .......... .......... .......... .......... .......... 32% 146M 1s -2024-04-05T03:51:23Z #15 1.935 40600K .......... .......... .......... .......... .......... 32% 121M 1s -2024-04-05T03:51:23Z #15 1.935 40650K .......... .......... .......... .......... .......... 32% 143M 1s -2024-04-05T03:51:23Z #15 1.935 40700K .......... .......... .......... .......... .......... 32% 154M 1s -2024-04-05T03:51:23Z #15 1.935 40750K .......... .......... .......... .......... .......... 32% 119M 1s -2024-04-05T03:51:23Z #15 1.936 40800K .......... .......... .......... .......... .......... 32% 130M 1s -2024-04-05T03:51:23Z #15 1.936 40850K .......... .......... .......... .......... .......... 32% 150M 1s -2024-04-05T03:51:23Z #15 1.942 40900K .......... .......... .......... .......... .......... 32% 128M 1s -2024-04-05T03:51:23Z #15 1.942 40950K .......... .......... .......... .......... .......... 32% 161M 1s -2024-04-05T03:51:23Z #15 1.942 41000K .......... .......... .......... .......... .......... 32% 129M 1s -2024-04-05T03:51:23Z #15 1.942 41050K .......... .......... .......... .......... .......... 32% 154M 1s -2024-04-05T03:51:23Z #15 1.942 41100K .......... .......... .......... .......... .......... 32% 61.9M 1s -2024-04-05T03:51:23Z #15 1.942 41150K .......... .......... .......... .......... .......... 32% 173M 1s -2024-04-05T03:51:23Z #15 1.942 41200K .......... .......... .......... .......... .......... 32% 139M 1s -2024-04-05T03:51:23Z #15 1.942 41250K .......... .......... .......... .......... .......... 32% 140M 1s -2024-04-05T03:51:23Z #15 1.942 41300K .......... .......... .......... .......... .......... 32% 146M 1s -2024-04-05T03:51:23Z #15 1.942 41350K .......... .......... .......... .......... .......... 32% 155M 1s -2024-04-05T03:51:23Z #15 1.942 41400K .......... .......... .......... .......... .......... 32% 157M 1s -2024-04-05T03:51:23Z #15 1.942 41450K .......... .......... .......... .......... .......... 32% 135M 1s -2024-04-05T03:51:23Z #15 1.942 41500K .......... .......... .......... .......... .......... 32% 166M 1s -2024-04-05T03:51:23Z #15 1.942 41550K .......... .......... .......... .......... .......... 32% 140M 1s -2024-04-05T03:51:23Z #15 1.942 41600K .......... .......... .......... .......... .......... 32% 122M 1s -2024-04-05T03:51:23Z #15 1.943 41650K .......... .......... .......... .......... .......... 32% 149M 1s -2024-04-05T03:51:23Z #15 1.943 41700K .......... .......... .......... .......... .......... 32% 141M 1s -2024-04-05T03:51:23Z #15 1.943 41750K .......... .......... .......... .......... .......... 32% 118M 1s -2024-04-05T03:51:23Z #15 1.943 41800K .......... .......... .......... .......... .......... 33% 99.2M 1s -2024-04-05T03:51:23Z #15 1.944 41850K .......... .......... .......... .......... .......... 33% 113M 1s -2024-04-05T03:51:23Z #15 1.944 41900K .......... .......... .......... .......... .......... 33% 97.2M 1s -2024-04-05T03:51:23Z #15 1.945 41950K .......... .......... .......... .......... .......... 33% 101M 1s -2024-04-05T03:51:23Z #15 1.945 42000K .......... .......... .......... .......... .......... 33% 131M 1s -2024-04-05T03:51:23Z #15 1.946 42050K .......... .......... .......... .......... .......... 33% 115M 1s -2024-04-05T03:51:23Z #15 1.946 42100K .......... .......... .......... .......... .......... 33% 114M 1s -2024-04-05T03:51:23Z #15 1.947 42150K .......... .......... .......... .......... .......... 33% 81.9M 1s -2024-04-05T03:51:23Z #15 1.947 42200K .......... .......... .......... .......... .......... 33% 112M 1s -2024-04-05T03:51:23Z #15 1.950 42250K .......... .......... .......... .......... .......... 33% 109M 1s -2024-04-05T03:51:23Z #15 1.950 42300K .......... .......... .......... .......... .......... 33% 166M 1s -2024-04-05T03:51:23Z #15 1.950 42350K .......... .......... .......... .......... .......... 33% 111M 1s -2024-04-05T03:51:23Z #15 1.950 42400K .......... .......... .......... .......... .......... 33% 134M 1s -2024-04-05T03:51:23Z #15 1.950 42450K .......... .......... .......... .......... .......... 33% 123M 1s -2024-04-05T03:51:23Z #15 1.950 42500K .......... .......... .......... .......... .......... 33% 121M 1s -2024-04-05T03:51:23Z #15 1.950 42550K .......... .......... .......... .......... .......... 33% 115M 1s -2024-04-05T03:51:23Z #15 1.950 42600K .......... .......... .......... .......... .......... 33% 85.6M 1s -2024-04-05T03:51:23Z #15 1.954 42650K .......... .......... .......... .......... .......... 33% 101M 1s -2024-04-05T03:51:23Z #15 1.954 42700K .......... .......... .......... .......... .......... 33% 122M 1s -2024-04-05T03:51:23Z #15 1.954 42750K .......... .......... .......... .......... .......... 33% 124M 1s -2024-04-05T03:51:23Z #15 1.954 42800K .......... .......... .......... .......... .......... 33% 116M 1s -2024-04-05T03:51:23Z #15 1.954 42850K .......... .......... .......... .......... .......... 33% 120M 1s -2024-04-05T03:51:23Z #15 1.954 42900K .......... .......... .......... .......... .......... 33% 119M 1s -2024-04-05T03:51:23Z #15 1.954 42950K .......... .......... .......... .......... .......... 33% 130M 1s -2024-04-05T03:51:23Z #15 1.954 43000K .......... .......... .......... .......... .......... 33% 112M 1s -2024-04-05T03:51:23Z #15 1.954 43050K .......... .......... .......... .......... .......... 33% 58.6M 1s -2024-04-05T03:51:23Z #15 1.958 43100K .......... .......... .......... .......... .......... 34% 111M 1s -2024-04-05T03:51:23Z #15 1.958 43150K .......... .......... .......... .......... .......... 34% 132M 1s -2024-04-05T03:51:23Z #15 1.958 43200K .......... .......... .......... .......... .......... 34% 142M 1s -2024-04-05T03:51:23Z #15 1.958 43250K .......... .......... .......... .......... .......... 34% 103M 1s -2024-04-05T03:51:23Z #15 1.958 43300K .......... .......... .......... .......... .......... 34% 108M 1s -2024-04-05T03:51:23Z #15 1.958 43350K .......... .......... .......... .......... .......... 34% 141M 1s -2024-04-05T03:51:23Z #15 1.958 43400K .......... .......... .......... .......... .......... 34% 136M 1s -2024-04-05T03:51:23Z #15 1.958 43450K .......... .......... .......... .......... .......... 34% 76.8M 1s -2024-04-05T03:51:23Z #15 1.962 43500K .......... .......... .......... .......... .......... 34% 139M 1s -2024-04-05T03:51:23Z #15 1.962 43550K .......... .......... .......... .......... .......... 34% 105M 1s -2024-04-05T03:51:23Z #15 1.962 43600K .......... .......... .......... .......... .......... 34% 117M 1s -2024-04-05T03:51:23Z #15 1.962 43650K .......... .......... .......... .......... .......... 34% 147M 1s -2024-04-05T03:51:23Z #15 1.962 43700K .......... .......... .......... .......... .......... 34% 120M 1s -2024-04-05T03:51:23Z #15 1.962 43750K .......... .......... .......... .......... .......... 34% 107M 1s -2024-04-05T03:51:23Z #15 1.962 43800K .......... .......... .......... .......... .......... 34% 114M 1s -2024-04-05T03:51:23Z #15 1.962 43850K .......... .......... .......... .......... .......... 34% 128M 1s -2024-04-05T03:51:23Z #15 1.962 43900K .......... .......... .......... .......... .......... 34% 135M 1s -2024-04-05T03:51:23Z #15 1.962 43950K .......... .......... .......... .......... .......... 34% 29.2M 1s -2024-04-05T03:51:23Z #15 1.966 44000K .......... .......... .......... .......... .......... 34% 124M 1s -2024-04-05T03:51:23Z #15 1.966 44050K .......... .......... .......... .......... .......... 34% 122M 1s -2024-04-05T03:51:23Z #15 1.966 44100K .......... .......... .......... .......... .......... 34% 134M 1s -2024-04-05T03:51:23Z #15 1.966 44150K .......... .......... .......... .......... .......... 34% 113M 1s -2024-04-05T03:51:23Z #15 1.966 44200K .......... .......... .......... .......... .......... 34% 133M 1s -2024-04-05T03:51:23Z #15 1.966 44250K .......... .......... .......... .......... .......... 34% 119M 1s -2024-04-05T03:51:23Z #15 1.966 44300K .......... .......... .......... .......... .......... 34% 43.8M 1s -2024-04-05T03:51:23Z #15 1.968 44350K .......... .......... .......... .......... .......... 35% 28.5M 1s -2024-04-05T03:51:23Z #15 1.969 44400K .......... .......... .......... .......... .......... 35% 152M 1s -2024-04-05T03:51:23Z #15 1.969 44450K .......... .......... .......... .......... .......... 35% 114M 1s -2024-04-05T03:51:23Z #15 1.969 44500K .......... .......... .......... .......... .......... 35% 91.6M 1s -2024-04-05T03:51:23Z #15 1.974 44550K .......... .......... .......... .......... .......... 35% 105M 1s -2024-04-05T03:51:23Z #15 1.974 44600K .......... .......... .......... .......... .......... 35% 113M 1s -2024-04-05T03:51:23Z #15 1.974 44650K .......... .......... .......... .......... .......... 35% 131M 1s -2024-04-05T03:51:23Z #15 1.974 44700K .......... .......... .......... .......... .......... 35% 135M 1s -2024-04-05T03:51:23Z #15 1.974 44750K .......... .......... .......... .......... .......... 35% 136M 1s -2024-04-05T03:51:23Z #15 1.974 44800K .......... .......... .......... .......... .......... 35% 112M 1s -2024-04-05T03:51:23Z #15 1.974 44850K .......... .......... .......... .......... .......... 35% 135M 1s -2024-04-05T03:51:23Z #15 1.974 44900K .......... .......... .......... .......... .......... 35% 111M 1s -2024-04-05T03:51:23Z #15 1.974 44950K .......... .......... .......... .......... .......... 35% 113M 1s -2024-04-05T03:51:23Z #15 1.974 45000K .......... .......... .......... .......... .......... 35% 109M 1s -2024-04-05T03:51:23Z #15 1.978 45050K .......... .......... .......... .......... .......... 35% 82.4M 1s -2024-04-05T03:51:23Z #15 1.978 45100K .......... .......... .......... .......... .......... 35% 121M 1s -2024-04-05T03:51:23Z #15 1.978 45150K .......... .......... .......... .......... .......... 35% 121M 1s -2024-04-05T03:51:23Z #15 1.978 45200K .......... .......... .......... .......... .......... 35% 140M 1s -2024-04-05T03:51:23Z #15 1.978 45250K .......... .......... .......... .......... .......... 35% 124M 1s -2024-04-05T03:51:23Z #15 1.978 45300K .......... .......... .......... .......... .......... 35% 118M 1s -2024-04-05T03:51:23Z #15 1.978 45350K .......... .......... .......... .......... .......... 35% 128M 1s -2024-04-05T03:51:23Z #15 1.978 45400K .......... .......... .......... .......... .......... 35% 139M 1s -2024-04-05T03:51:23Z #15 1.978 45450K .......... .......... .......... .......... .......... 35% 124M 1s -2024-04-05T03:51:23Z #15 1.978 45500K .......... .......... .......... .......... .......... 35% 84.4M 1s -2024-04-05T03:51:23Z #15 1.982 45550K .......... .......... .......... .......... .......... 35% 77.1M 1s -2024-04-05T03:51:23Z #15 1.982 45600K .......... .......... .......... .......... .......... 36% 118M 1s -2024-04-05T03:51:23Z #15 1.982 45650K .......... .......... .......... .......... .......... 36% 144M 1s -2024-04-05T03:51:23Z #15 1.982 45700K .......... .......... .......... .......... .......... 36% 118M 1s -2024-04-05T03:51:23Z #15 1.982 45750K .......... .......... .......... .......... .......... 36% 143M 1s -2024-04-05T03:51:23Z #15 1.982 45800K .......... .......... .......... .......... .......... 36% 117M 1s -2024-04-05T03:51:23Z #15 1.982 45850K .......... .......... .......... .......... .......... 36% 116M 1s -2024-04-05T03:51:23Z #15 1.982 45900K .......... .......... .......... .......... .......... 36% 113M 1s -2024-04-05T03:51:23Z #15 1.982 45950K .......... .......... .......... .......... .......... 36% 82.3M 1s -2024-04-05T03:51:23Z #15 1.986 46000K .......... .......... .......... .......... .......... 36% 89.7M 1s -2024-04-05T03:51:23Z #15 1.986 46050K .......... .......... .......... .......... .......... 36% 106M 1s -2024-04-05T03:51:23Z #15 1.986 46100K .......... .......... .......... .......... .......... 36% 130M 1s -2024-04-05T03:51:23Z #15 1.986 46150K .......... .......... .......... .......... .......... 36% 127M 1s -2024-04-05T03:51:23Z #15 1.986 46200K .......... .......... .......... .......... .......... 36% 112M 1s -2024-04-05T03:51:23Z #15 1.986 46250K .......... .......... .......... .......... .......... 36% 125M 1s -2024-04-05T03:51:23Z #15 1.986 46300K .......... .......... .......... .......... .......... 36% 132M 1s -2024-04-05T03:51:23Z #15 1.986 46350K .......... .......... .......... .......... .......... 36% 108M 1s -2024-04-05T03:51:23Z #15 1.986 46400K .......... .......... .......... .......... .......... 36% 115M 1s -2024-04-05T03:51:23Z #15 1.990 46450K .......... .......... .......... .......... .......... 36% 62.9M 1s -2024-04-05T03:51:23Z #15 1.990 46500K .......... .......... .......... .......... .......... 36% 105M 1s -2024-04-05T03:51:23Z #15 1.990 46550K .......... .......... .......... .......... .......... 36% 151M 1s -2024-04-05T03:51:23Z #15 1.990 46600K .......... .......... .......... .......... .......... 36% 95.7M 1s -2024-04-05T03:51:23Z #15 1.990 46650K .......... .......... .......... .......... .......... 36% 130M 1s -2024-04-05T03:51:23Z #15 1.990 46700K .......... .......... .......... .......... .......... 36% 114M 1s -2024-04-05T03:51:23Z #15 1.990 46750K .......... .......... .......... .......... .......... 36% 134M 1s -2024-04-05T03:51:23Z #15 1.990 46800K .......... .......... .......... .......... .......... 36% 127M 1s -2024-04-05T03:51:23Z #15 1.990 46850K .......... .......... .......... .......... .......... 36% 73.9M 1s -2024-04-05T03:51:23Z #15 1.994 46900K .......... .......... .......... .......... .......... 37% 122M 1s -2024-04-05T03:51:23Z #15 1.994 46950K .......... .......... .......... .......... .......... 37% 136M 1s -2024-04-05T03:51:23Z #15 1.994 47000K .......... .......... .......... .......... .......... 37% 104M 1s -2024-04-05T03:51:23Z #15 1.994 47050K .......... .......... .......... .......... .......... 37% 131M 1s -2024-04-05T03:51:23Z #15 1.994 47100K .......... .......... .......... .......... .......... 37% 113M 1s -2024-04-05T03:51:23Z #15 1.994 47150K .......... .......... .......... .......... .......... 37% 150M 1s -2024-04-05T03:51:23Z #15 1.994 47200K .......... .......... .......... .......... .......... 37% 120M 1s -2024-04-05T03:51:23Z #15 1.994 47250K .......... .......... .......... .......... .......... 37% 129M 1s -2024-04-05T03:51:23Z #15 1.994 47300K .......... .......... .......... .......... .......... 37% 107M 1s -2024-04-05T03:51:23Z #15 1.994 47350K .......... .......... .......... .......... .......... 37% 64.5M 1s -2024-04-05T03:51:23Z #15 1.998 47400K .......... .......... .......... .......... .......... 37% 94.1M 1s -2024-04-05T03:51:23Z #15 1.998 47450K .......... .......... .......... .......... .......... 37% 129M 1s -2024-04-05T03:51:23Z #15 1.998 47500K .......... .......... .......... .......... .......... 37% 124M 1s -2024-04-05T03:51:23Z #15 1.998 47550K .......... .......... .......... .......... .......... 37% 124M 1s -2024-04-05T03:51:23Z #15 1.998 47600K .......... .......... .......... .......... .......... 37% 133M 1s -2024-04-05T03:51:23Z #15 1.998 47650K .......... .......... .......... .......... .......... 37% 116M 1s -2024-04-05T03:51:23Z #15 1.998 47700K .......... .......... .......... .......... .......... 37% 133M 1s -2024-04-05T03:51:23Z #15 1.998 47750K .......... .......... .......... .......... .......... 37% 127M 1s -2024-04-05T03:51:23Z #15 1.998 47800K .......... .......... .......... .......... .......... 37% 50.9M 1s -2024-04-05T03:51:23Z #15 2.002 47850K .......... .......... .......... .......... .......... 37% 132M 1s -2024-04-05T03:51:23Z #15 2.002 47900K .......... .......... .......... .......... .......... 37% 113M 1s -2024-04-05T03:51:23Z #15 2.002 47950K .......... .......... .......... .......... .......... 37% 128M 1s -2024-04-05T03:51:23Z #15 2.002 48000K .......... .......... .......... .......... .......... 37% 149M 1s -2024-04-05T03:51:23Z #15 2.002 48050K .......... .......... .......... .......... .......... 37% 128M 1s -2024-04-05T03:51:23Z #15 2.002 48100K .......... .......... .......... .......... .......... 37% 123M 1s -2024-04-05T03:51:23Z #15 2.002 48150K .......... .......... .......... .......... .......... 38% 119M 1s -2024-04-05T03:51:23Z #15 2.002 48200K .......... .......... .......... .......... .......... 38% 104M 1s -2024-04-05T03:51:23Z #15 2.006 48250K .......... .......... .......... .......... .......... 38% 88.4M 1s -2024-04-05T03:51:23Z #15 2.006 48300K .......... .......... .......... .......... .......... 38% 142M 1s -2024-04-05T03:51:23Z #15 2.006 48350K .......... .......... .......... .......... .......... 38% 113M 1s -2024-04-05T03:51:23Z #15 2.006 48400K .......... .......... .......... .......... .......... 38% 156M 1s -2024-04-05T03:51:23Z #15 2.006 48450K .......... .......... .......... .......... .......... 38% 134M 1s -2024-04-05T03:51:23Z #15 2.006 48500K .......... .......... .......... .......... .......... 38% 142M 1s -2024-04-05T03:51:23Z #15 2.006 48550K .......... .......... .......... .......... .......... 38% 135M 1s -2024-04-05T03:51:23Z #15 2.006 48600K .......... .......... .......... .......... .......... 38% 121M 1s -2024-04-05T03:51:23Z #15 2.006 48650K .......... .......... .......... .......... .......... 38% 121M 1s -2024-04-05T03:51:23Z #15 2.006 48700K .......... .......... .......... .......... .......... 38% 120M 1s -2024-04-05T03:51:23Z #15 2.010 48750K .......... .......... .......... .......... .......... 38% 107M 1s -2024-04-05T03:51:23Z #15 2.010 48800K .......... .......... .......... .......... .......... 38% 130M 1s -2024-04-05T03:51:23Z #15 2.010 48850K .......... .......... .......... .......... .......... 38% 123M 1s -2024-04-05T03:51:23Z #15 2.010 48900K .......... .......... .......... .......... .......... 38% 148M 1s -2024-04-05T03:51:23Z #15 2.010 48950K .......... .......... .......... .......... .......... 38% 130M 1s -2024-04-05T03:51:23Z #15 2.010 49000K .......... .......... .......... .......... .......... 38% 127M 1s -2024-04-05T03:51:23Z #15 2.010 49050K .......... .......... .......... .......... .......... 38% 159M 1s -2024-04-05T03:51:23Z #15 2.010 49100K .......... .......... .......... .......... .......... 38% 134M 1s -2024-04-05T03:51:23Z #15 2.010 49150K .......... .......... .......... .......... .......... 38% 92.1M 1s -2024-04-05T03:51:23Z #15 2.010 49200K .......... .......... .......... .......... .......... 38% 119M 1s -2024-04-05T03:51:23Z #15 2.014 49250K .......... .......... .......... .......... .......... 38% 113M 1s -2024-04-05T03:51:23Z #15 2.014 49300K .......... .......... .......... .......... .......... 38% 154M 1s -2024-04-05T03:51:23Z #15 2.014 49350K .......... .......... .......... .......... .......... 38% 145M 1s -2024-04-05T03:51:23Z #15 2.014 49400K .......... .......... .......... .......... .......... 39% 148M 1s -2024-04-05T03:51:23Z #15 2.014 49450K .......... .......... .......... .......... .......... 39% 150M 1s -2024-04-05T03:51:23Z #15 2.014 49500K .......... .......... .......... .......... .......... 39% 119M 1s -2024-04-05T03:51:23Z #15 2.014 49550K .......... .......... .......... .......... .......... 39% 118M 1s -2024-04-05T03:51:23Z #15 2.014 49600K .......... .......... .......... .......... .......... 39% 123M 1s -2024-04-05T03:51:23Z #15 2.014 49650K .......... .......... .......... .......... .......... 39% 114M 1s -2024-04-05T03:51:23Z #15 2.014 49700K .......... .......... .......... .......... .......... 39% 122M 1s -2024-04-05T03:51:23Z #15 2.014 49750K .......... .......... .......... .......... .......... 39% 108M 1s -2024-04-05T03:51:23Z #15 2.015 49800K .......... .......... .......... .......... .......... 39% 116M 1s -2024-04-05T03:51:23Z #15 2.015 49850K .......... .......... .......... .......... .......... 39% 101M 1s -2024-04-05T03:51:23Z #15 2.016 49900K .......... .......... .......... .......... .......... 39% 108M 1s -2024-04-05T03:51:23Z #15 2.016 49950K .......... .......... .......... .......... .......... 39% 91.4M 1s -2024-04-05T03:51:23Z #15 2.017 50000K .......... .......... .......... .......... .......... 39% 107M 1s -2024-04-05T03:51:23Z #15 2.017 50050K .......... .......... .......... .......... .......... 39% 109M 1s -2024-04-05T03:51:23Z #15 2.018 50100K .......... .......... .......... .......... .......... 39% 107M 1s -2024-04-05T03:51:23Z #15 2.018 50150K .......... .......... .......... .......... .......... 39% 99.6M 1s -2024-04-05T03:51:23Z #15 2.019 50200K .......... .......... .......... .......... .......... 39% 129M 1s -2024-04-05T03:51:23Z #15 2.019 50250K .......... .......... .......... .......... .......... 39% 127M 1s -2024-04-05T03:51:23Z #15 2.019 50300K .......... .......... .......... .......... .......... 39% 76.8M 1s -2024-04-05T03:51:23Z #15 2.019 50350K .......... .......... .......... .......... .......... 39% 95.9M 1s -2024-04-05T03:51:23Z #15 2.021 50400K .......... .......... .......... .......... .......... 39% 109M 1s -2024-04-05T03:51:23Z #15 2.021 50450K .......... .......... .......... .......... .......... 39% 128M 1s -2024-04-05T03:51:23Z #15 2.021 50500K .......... .......... .......... .......... .......... 39% 86.4M 1s -2024-04-05T03:51:23Z #15 2.022 50550K .......... .......... .......... .......... .......... 39% 100M 1s -2024-04-05T03:51:23Z #15 2.022 50600K .......... .......... .......... .......... .......... 39% 81.6M 1s -2024-04-05T03:51:23Z #15 2.023 50650K .......... .......... .......... .......... .......... 39% 133M 1s -2024-04-05T03:51:23Z #15 2.023 50700K .......... .......... .......... .......... .......... 40% 118M 1s -2024-04-05T03:51:23Z #15 2.023 50750K .......... .......... .......... .......... .......... 40% 90.4M 1s -2024-04-05T03:51:23Z #15 2.024 50800K .......... .......... .......... .......... .......... 40% 96.0M 1s -2024-04-05T03:51:23Z #15 2.025 50850K .......... .......... .......... .......... .......... 40% 63.3M 1s -2024-04-05T03:51:23Z #15 2.025 50900K .......... .......... .......... .......... .......... 40% 81.4M 1s -2024-04-05T03:51:23Z #15 2.025 50950K .......... .......... .......... .......... .......... 40% 121M 1s -2024-04-05T03:51:23Z #15 2.026 51000K .......... .......... .......... .......... .......... 40% 119M 1s -2024-04-05T03:51:23Z #15 2.026 51050K .......... .......... .......... .......... .......... 40% 142M 1s -2024-04-05T03:51:23Z #15 2.027 51100K .......... .......... .......... .......... .......... 40% 92.4M 1s -2024-04-05T03:51:23Z #15 2.027 51150K .......... .......... .......... .......... .......... 40% 117M 1s -2024-04-05T03:51:23Z #15 2.028 51200K .......... .......... .......... .......... .......... 40% 117M 1s -2024-04-05T03:51:23Z #15 2.028 51250K .......... .......... .......... .......... .......... 40% 135M 1s -2024-04-05T03:51:23Z #15 2.028 51300K .......... .......... .......... .......... .......... 40% 109M 1s -2024-04-05T03:51:23Z #15 2.034 51350K .......... .......... .......... .......... .......... 40% 135M 1s -2024-04-05T03:51:23Z #15 2.034 51400K .......... .......... .......... .......... .......... 40% 158M 1s -2024-04-05T03:51:23Z #15 2.034 51450K .......... .......... .......... .......... .......... 40% 93.4M 1s -2024-04-05T03:51:23Z #15 2.034 51500K .......... .......... .......... .......... .......... 40% 78.6M 1s -2024-04-05T03:51:23Z #15 2.034 51550K .......... .......... .......... .......... .......... 40% 153M 1s -2024-04-05T03:51:23Z #15 2.034 51600K .......... .......... .......... .......... .......... 40% 162M 1s -2024-04-05T03:51:23Z #15 2.034 51650K .......... .......... .......... .......... .......... 40% 166M 1s -2024-04-05T03:51:23Z #15 2.034 51700K .......... .......... .......... .......... .......... 40% 153M 1s -2024-04-05T03:51:23Z #15 2.034 51750K .......... .......... .......... .......... .......... 40% 157M 1s -2024-04-05T03:51:23Z #15 2.034 51800K .......... .......... .......... .......... .......... 40% 166M 1s -2024-04-05T03:51:23Z #15 2.034 51850K .......... .......... .......... .......... .......... 40% 174M 1s -2024-04-05T03:51:23Z #15 2.034 51900K .......... .......... .......... .......... .......... 40% 156M 1s -2024-04-05T03:51:23Z #15 2.034 51950K .......... .......... .......... .......... .......... 41% 157M 1s -2024-04-05T03:51:23Z #15 2.034 52000K .......... .......... .......... .......... .......... 41% 165M 1s -2024-04-05T03:51:23Z #15 2.034 52050K .......... .......... .......... .......... .......... 41% 109M 1s -2024-04-05T03:51:23Z #15 2.034 52100K .......... .......... .......... .......... .......... 41% 728K 1s -2024-04-05T03:51:23Z #15 2.110 52150K .......... .......... .......... .......... .......... 41% 119M 1s -2024-04-05T03:51:23Z #15 2.110 52200K .......... .......... .......... .......... .......... 41% 145M 1s -2024-04-05T03:51:23Z #15 2.110 52250K .......... .......... .......... .......... .......... 41% 137M 1s -2024-04-05T03:51:23Z #15 2.110 52300K .......... .......... .......... .......... .......... 41% 142M 1s -2024-04-05T03:51:23Z #15 2.110 52350K .......... .......... .......... .......... .......... 41% 129M 1s -2024-04-05T03:51:23Z #15 2.110 52400K .......... .......... .......... .......... .......... 41% 169M 1s -2024-04-05T03:51:23Z #15 2.110 52450K .......... .......... .......... .......... .......... 41% 140M 1s -2024-04-05T03:51:23Z #15 2.110 52500K .......... .......... .......... .......... .......... 41% 153M 1s -2024-04-05T03:51:23Z #15 2.110 52550K .......... .......... .......... .......... .......... 41% 97.7M 1s -2024-04-05T03:51:23Z #15 2.110 52600K .......... .......... .......... .......... .......... 41% 145M 1s -2024-04-05T03:51:23Z #15 2.110 52650K .......... .......... .......... .......... .......... 41% 144M 1s -2024-04-05T03:51:23Z #15 2.110 52700K .......... .......... .......... .......... .......... 41% 132M 1s -2024-04-05T03:51:23Z #15 2.110 52750K .......... .......... .......... .......... .......... 41% 148M 1s -2024-04-05T03:51:23Z #15 2.110 52800K .......... .......... .......... .......... .......... 41% 122M 1s -2024-04-05T03:51:23Z #15 2.110 52850K .......... .......... .......... .......... .......... 41% 110M 1s -2024-04-05T03:51:23Z #15 2.110 52900K .......... .......... .......... .......... .......... 41% 162M 1s -2024-04-05T03:51:23Z #15 2.110 52950K .......... .......... .......... .......... .......... 41% 145M 1s -2024-04-05T03:51:23Z #15 2.110 53000K .......... .......... .......... .......... .......... 41% 144M 1s -2024-04-05T03:51:23Z #15 2.110 53050K .......... .......... .......... .......... .......... 41% 137M 1s -2024-04-05T03:51:23Z #15 2.110 53100K .......... .......... .......... .......... .......... 41% 6.85M 1s -2024-04-05T03:51:23Z #15 2.118 53150K .......... .......... .......... .......... .......... 41% 140M 1s -2024-04-05T03:51:23Z #15 2.118 53200K .......... .......... .......... .......... .......... 42% 175M 1s -2024-04-05T03:51:23Z #15 2.118 53250K .......... .......... .......... .......... .......... 42% 164M 1s -2024-04-05T03:51:23Z #15 2.118 53300K .......... .......... .......... .......... .......... 42% 15.6M 1s -2024-04-05T03:51:23Z #15 2.122 53350K .......... .......... .......... .......... .......... 42% 172M 1s -2024-04-05T03:51:23Z #15 2.122 53400K .......... .......... .......... .......... .......... 42% 132M 1s -2024-04-05T03:51:23Z #15 2.122 53450K .......... .......... .......... .......... .......... 42% 179M 1s -2024-04-05T03:51:23Z #15 2.122 53500K .......... .......... .......... .......... .......... 42% 59.3M 1s -2024-04-05T03:51:23Z #15 2.123 53550K .......... .......... .......... .......... .......... 42% 33.9M 1s -2024-04-05T03:51:23Z #15 2.125 53600K .......... .......... .......... .......... .......... 42% 61.9M 1s -2024-04-05T03:51:23Z #15 2.125 53650K .......... .......... .......... .......... .......... 42% 37.5M 1s -2024-04-05T03:51:23Z #15 2.126 53700K .......... .......... .......... .......... .......... 42% 37.4M 1s -2024-04-05T03:51:23Z #15 2.128 53750K .......... .......... .......... .......... .......... 42% 60.7M 1s -2024-04-05T03:51:23Z #15 2.129 53800K .......... .......... .......... .......... .......... 42% 44.2M 1s -2024-04-05T03:51:23Z #15 2.129 53850K .......... .......... .......... .......... .......... 42% 50.8M 1s -2024-04-05T03:51:23Z #15 2.130 53900K .......... .......... .......... .......... .......... 42% 29.5M 1s -2024-04-05T03:51:23Z #15 2.132 53950K .......... .......... .......... .......... .......... 42% 118M 1s -2024-04-05T03:51:23Z #15 2.132 54000K .......... .......... .......... .......... .......... 42% 30.8M 1s -2024-04-05T03:51:23Z #15 2.134 54050K .......... .......... .......... .......... .......... 42% 42.7M 1s -2024-04-05T03:51:23Z #15 2.135 54100K .......... .......... .......... .......... .......... 42% 33.1M 1s -2024-04-05T03:51:23Z #15 2.137 54150K .......... .......... .......... .......... .......... 42% 32.9M 1s -2024-04-05T03:51:23Z #15 2.138 54200K .......... .......... .......... .......... .......... 42% 26.1M 1s -2024-04-05T03:51:23Z #15 2.140 54250K .......... .......... .......... .......... .......... 42% 34.9M 1s -2024-04-05T03:51:23Z #15 2.141 54300K .......... .......... .......... .......... .......... 42% 35.4M 1s -2024-04-05T03:51:23Z #15 2.143 54350K .......... .......... .......... .......... .......... 42% 28.6M 1s -2024-04-05T03:51:23Z #15 2.145 54400K .......... .......... .......... .......... .......... 42% 24.9M 1s -2024-04-05T03:51:23Z #15 2.147 54450K .......... .......... .......... .......... .......... 42% 70.2M 1s -2024-04-05T03:51:23Z #15 2.156 54500K .......... .......... .......... .......... .......... 43% 5.40M 1s -2024-04-05T03:51:23Z #15 2.156 54550K .......... .......... .......... .......... .......... 43% 77.5M 1s -2024-04-05T03:51:23Z #15 2.157 54600K .......... .......... .......... .......... .......... 43% 136M 1s -2024-04-05T03:51:23Z #15 2.157 54650K .......... .......... .......... .......... .......... 43% 116M 1s -2024-04-05T03:51:23Z #15 2.158 54700K .......... .......... .......... .......... .......... 43% 102M 1s -2024-04-05T03:51:23Z #15 2.158 54750K .......... .......... .......... .......... .......... 43% 131M 1s -2024-04-05T03:51:23Z #15 2.158 54800K .......... .......... .......... .......... .......... 43% 116M 1s -2024-04-05T03:51:23Z #15 2.161 54850K .......... .......... .......... .......... .......... 43% 131M 1s -2024-04-05T03:51:23Z #15 2.161 54900K .......... .......... .......... .......... .......... 43% 91.0M 1s -2024-04-05T03:51:23Z #15 2.161 54950K .......... .......... .......... .......... .......... 43% 127M 1s -2024-04-05T03:51:23Z #15 2.161 55000K .......... .......... .......... .......... .......... 43% 105M 1s -2024-04-05T03:51:23Z #15 2.161 55050K .......... .......... .......... .......... .......... 43% 99.7M 1s -2024-04-05T03:51:23Z #15 2.161 55100K .......... .......... .......... .......... .......... 43% 112M 1s -2024-04-05T03:51:23Z #15 2.161 55150K .......... .......... .......... .......... .......... 43% 112M 1s -2024-04-05T03:51:23Z #15 2.162 55200K .......... .......... .......... .......... .......... 43% 127M 1s -2024-04-05T03:51:23Z #15 2.162 55250K .......... .......... .......... .......... .......... 43% 106M 1s -2024-04-05T03:51:23Z #15 2.163 55300K .......... .......... .......... .......... .......... 43% 109M 1s -2024-04-05T03:51:23Z #15 2.163 55350K .......... .......... .......... .......... .......... 43% 134M 1s -2024-04-05T03:51:23Z #15 2.163 55400K .......... .......... .......... .......... .......... 43% 96.0M 1s -2024-04-05T03:51:23Z #15 2.164 55450K .......... .......... .......... .......... .......... 43% 99.8M 1s -2024-04-05T03:51:23Z #15 2.164 55500K .......... .......... .......... .......... .......... 43% 91.4M 1s -2024-04-05T03:51:23Z #15 2.166 55550K .......... .......... .......... .......... .......... 43% 67.6M 1s -2024-04-05T03:51:23Z #15 2.166 55600K .......... .......... .......... .......... .......... 43% 35.1M 1s -2024-04-05T03:51:23Z #15 2.167 55650K .......... .......... .......... .......... .......... 43% 30.0M 1s -2024-04-05T03:51:23Z #15 2.169 55700K .......... .......... .......... .......... .......... 43% 116M 1s -2024-04-05T03:51:23Z #15 2.169 55750K .......... .......... .......... .......... .......... 44% 124M 1s -2024-04-05T03:51:23Z #15 2.170 55800K .......... .......... .......... .......... .......... 44% 127M 1s -2024-04-05T03:51:23Z #15 2.170 55850K .......... .......... .......... .......... .......... 44% 142M 1s -2024-04-05T03:51:23Z #15 2.170 55900K .......... .......... .......... .......... .......... 44% 129M 1s -2024-04-05T03:51:23Z #15 2.171 55950K .......... .......... .......... .......... .......... 44% 108M 1s -2024-04-05T03:51:23Z #15 2.171 56000K .......... .......... .......... .......... .......... 44% 122M 1s -2024-04-05T03:51:23Z #15 2.172 56050K .......... .......... .......... .......... .......... 44% 130M 1s -2024-04-05T03:51:23Z #15 2.172 56100K .......... .......... .......... .......... .......... 44% 139M 1s -2024-04-05T03:51:23Z #15 2.173 56150K .......... .......... .......... .......... .......... 44% 107M 1s -2024-04-05T03:51:23Z #15 2.173 56200K .......... .......... .......... .......... .......... 44% 124M 1s -2024-04-05T03:51:23Z #15 2.173 56250K .......... .......... .......... .......... .......... 44% 135M 1s -2024-04-05T03:51:23Z #15 2.174 56300K .......... .......... .......... .......... .......... 44% 95.5M 1s -2024-04-05T03:51:23Z #15 2.174 56350K .......... .......... .......... .......... .......... 44% 112M 1s -2024-04-05T03:51:23Z #15 2.175 56400K .......... .......... .......... .......... .......... 44% 124M 1s -2024-04-05T03:51:23Z #15 2.175 56450K .......... .......... .......... .......... .......... 44% 122M 1s -2024-04-05T03:51:23Z #15 2.175 56500K .......... .......... .......... .......... .......... 44% 120M 1s -2024-04-05T03:51:23Z #15 2.176 56550K .......... .......... .......... .......... .......... 44% 126M 1s -2024-04-05T03:51:23Z #15 2.176 56600K .......... .......... .......... .......... .......... 44% 124M 1s -2024-04-05T03:51:23Z #15 2.177 56650K .......... .......... .......... .......... .......... 44% 117M 1s -2024-04-05T03:51:23Z #15 2.177 56700K .......... .......... .......... .......... .......... 44% 119M 1s -2024-04-05T03:51:23Z #15 2.178 56750K .......... .......... .......... .......... .......... 44% 141M 1s -2024-04-05T03:51:23Z #15 2.178 56800K .......... .......... .......... .......... .......... 44% 18.8M 1s -2024-04-05T03:51:23Z #15 2.181 56850K .......... .......... .......... .......... .......... 44% 18.5M 1s -2024-04-05T03:51:23Z #15 2.183 56900K .......... .......... .......... .......... .......... 44% 110M 1s -2024-04-05T03:51:23Z #15 2.183 56950K .......... .......... .......... .......... .......... 44% 105M 1s -2024-04-05T03:51:23Z #15 2.184 57000K .......... .......... .......... .......... .......... 44% 142M 1s -2024-04-05T03:51:23Z #15 2.184 57050K .......... .......... .......... .......... .......... 45% 135M 1s -2024-04-05T03:51:23Z #15 2.184 57100K .......... .......... .......... .......... .......... 45% 5.19M 1s -2024-04-05T03:51:23Z #15 2.196 57150K .......... .......... .......... .......... .......... 45% 43.0M 1s -2024-04-05T03:51:23Z #15 2.196 57200K .......... .......... .......... .......... .......... 45% 50.7M 1s -2024-04-05T03:51:23Z #15 2.196 57250K .......... .......... .......... .......... .......... 45% 77.1M 1s -2024-04-05T03:51:23Z #15 2.198 57300K .......... .......... .......... .......... .......... 45% 112M 1s -2024-04-05T03:51:23Z #15 2.198 57350K .......... .......... .......... .......... .......... 45% 113M 1s -2024-04-05T03:51:23Z #15 2.198 57400K .......... .......... .......... .......... .......... 45% 75.3M 1s -2024-04-05T03:51:23Z #15 2.202 57450K .......... .......... .......... .......... .......... 45% 109M 1s -2024-04-05T03:51:23Z #15 2.202 57500K .......... .......... .......... .......... .......... 45% 30.5M 1s -2024-04-05T03:51:23Z #15 2.202 57550K .......... .......... .......... .......... .......... 45% 120M 1s -2024-04-05T03:51:23Z #15 2.202 57600K .......... .......... .......... .......... .......... 45% 86.3M 1s -2024-04-05T03:51:23Z #15 2.202 57650K .......... .......... .......... .......... .......... 45% 168M 1s -2024-04-05T03:51:23Z #15 2.202 57700K .......... .......... .......... .......... .......... 45% 103M 1s -2024-04-05T03:51:23Z #15 2.202 57750K .......... .......... .......... .......... .......... 45% 117M 1s -2024-04-05T03:51:23Z #15 2.202 57800K .......... .......... .......... .......... .......... 45% 68.6M 1s -2024-04-05T03:51:23Z #15 2.203 57850K .......... .......... .......... .......... .......... 45% 56.2M 1s -2024-04-05T03:51:23Z #15 2.205 57900K .......... .......... .......... .......... .......... 45% 123M 1s -2024-04-05T03:51:23Z #15 2.205 57950K .......... .......... .......... .......... .......... 45% 119M 1s -2024-04-05T03:51:23Z #15 2.205 58000K .......... .......... .......... .......... .......... 45% 77.4M 1s -2024-04-05T03:51:23Z #15 2.205 58050K .......... .......... .......... .......... .......... 45% 81.0M 1s -2024-04-05T03:51:23Z #15 2.208 58100K .......... .......... .......... .......... .......... 45% 27.6M 1s -2024-04-05T03:51:23Z #15 2.208 58150K .......... .......... .......... .......... .......... 45% 97.8M 1s -2024-04-05T03:51:23Z #15 2.209 58200K .......... .......... .......... .......... .......... 45% 148M 1s -2024-04-05T03:51:23Z #15 2.209 58250K .......... .......... .......... .......... .......... 45% 82.0M 1s -2024-04-05T03:51:23Z #15 2.209 58300K .......... .......... .......... .......... .......... 46% 26.5M 1s -2024-04-05T03:51:23Z #15 2.211 58350K .......... .......... .......... .......... .......... 46% 115M 1s -2024-04-05T03:51:23Z #15 2.219 58400K .......... .......... .......... .......... .......... 46% 154M 1s -2024-04-05T03:51:23Z #15 2.219 58450K .......... .......... .......... .......... .......... 46% 166M 1s -2024-04-05T03:51:23Z #15 2.219 58500K .......... .......... .......... .......... .......... 46% 143M 1s -2024-04-05T03:51:23Z #15 2.219 58550K .......... .......... .......... .......... .......... 46% 136M 1s -2024-04-05T03:51:23Z #15 2.219 58600K .......... .......... .......... .......... .......... 46% 125M 1s -2024-04-05T03:51:23Z #15 2.219 58650K .......... .......... .......... .......... .......... 46% 126M 1s -2024-04-05T03:51:23Z #15 2.219 58700K .......... .......... .......... .......... .......... 46% 146M 1s -2024-04-05T03:51:23Z #15 2.219 58750K .......... .......... .......... .......... .......... 46% 123M 1s -2024-04-05T03:51:23Z #15 2.219 58800K .......... .......... .......... .......... .......... 46% 144M 1s -2024-04-05T03:51:23Z #15 2.219 58850K .......... .......... .......... .......... .......... 46% 113M 1s -2024-04-05T03:51:23Z #15 2.219 58900K .......... .......... .......... .......... .......... 46% 136M 1s -2024-04-05T03:51:23Z #15 2.219 58950K .......... .......... .......... .......... .......... 46% 136M 1s -2024-04-05T03:51:23Z #15 2.219 59000K .......... .......... .......... .......... .......... 46% 130M 1s -2024-04-05T03:51:23Z #15 2.219 59050K .......... .......... .......... .......... .......... 46% 158M 1s -2024-04-05T03:51:23Z #15 2.219 59100K .......... .......... .......... .......... .......... 46% 137M 1s -2024-04-05T03:51:23Z #15 2.219 59150K .......... .......... .......... .......... .......... 46% 117M 1s -2024-04-05T03:51:23Z #15 2.219 59200K .......... .......... .......... .......... .......... 46% 124M 1s -2024-04-05T03:51:23Z #15 2.219 59250K .......... .......... .......... .......... .......... 46% 117M 1s -2024-04-05T03:51:23Z #15 2.219 59300K .......... .......... .......... .......... .......... 46% 138M 1s -2024-04-05T03:51:23Z #15 2.219 59350K .......... .......... .......... .......... .......... 46% 122M 1s -2024-04-05T03:51:23Z #15 2.219 59400K .......... .......... .......... .......... .......... 46% 134M 1s -2024-04-05T03:51:23Z #15 2.219 59450K .......... .......... .......... .......... .......... 46% 125M 1s -2024-04-05T03:51:23Z #15 2.219 59500K .......... .......... .......... .......... .......... 46% 119M 1s -2024-04-05T03:51:23Z #15 2.220 59550K .......... .......... .......... .......... .......... 47% 131M 1s -2024-04-05T03:51:23Z #15 2.220 59600K .......... .......... .......... .......... .......... 47% 110M 1s -2024-04-05T03:51:23Z #15 2.221 59650K .......... .......... .......... .......... .......... 47% 147M 1s -2024-04-05T03:51:23Z #15 2.221 59700K .......... .......... .......... .......... .......... 47% 116M 1s -2024-04-05T03:51:23Z #15 2.222 59750K .......... .......... .......... .......... .......... 47% 111M 1s -2024-04-05T03:51:23Z #15 2.222 59800K .......... .......... .......... .......... .......... 47% 122M 1s -2024-04-05T03:51:23Z #15 2.222 59850K .......... .......... .......... .......... .......... 47% 146M 1s -2024-04-05T03:51:23Z #15 2.223 59900K .......... .......... .......... .......... .......... 47% 134M 1s -2024-04-05T03:51:23Z #15 2.223 59950K .......... .......... .......... .......... .......... 47% 119M 1s -2024-04-05T03:51:23Z #15 2.223 60000K .......... .......... .......... .......... .......... 47% 131M 1s -2024-04-05T03:51:23Z #15 2.224 60050K .......... .......... .......... .......... .......... 47% 129M 1s -2024-04-05T03:51:23Z #15 2.224 60100K .......... .......... .......... .......... .......... 47% 141M 1s -2024-04-05T03:51:23Z #15 2.225 60150K .......... .......... .......... .......... .......... 47% 128M 1s -2024-04-05T03:51:23Z #15 2.230 60200K .......... .......... .......... .......... .......... 47% 191M 1s -2024-04-05T03:51:23Z #15 2.230 60250K .......... .......... .......... .......... .......... 47% 149M 1s -2024-04-05T03:51:23Z #15 2.230 60300K .......... .......... .......... .......... .......... 47% 117M 1s -2024-04-05T03:51:23Z #15 2.230 60350K .......... .......... .......... .......... .......... 47% 137M 1s -2024-04-05T03:51:23Z #15 2.230 60400K .......... .......... .......... .......... .......... 47% 30.2M 1s -2024-04-05T03:51:23Z #15 2.230 60450K .......... .......... .......... .......... .......... 47% 175M 1s -2024-04-05T03:51:23Z #15 2.230 60500K .......... .......... .......... .......... .......... 47% 176M 1s -2024-04-05T03:51:23Z #15 2.230 60550K .......... .......... .......... .......... .......... 47% 140M 1s -2024-04-05T03:51:23Z #15 2.230 60600K .......... .......... .......... .......... .......... 47% 147M 1s -2024-04-05T03:51:23Z #15 2.230 60650K .......... .......... .......... .......... .......... 47% 150M 1s -2024-04-05T03:51:23Z #15 2.230 60700K .......... .......... .......... .......... .......... 47% 22.2M 1s -2024-04-05T03:51:23Z #15 2.232 60750K .......... .......... .......... .......... .......... 47% 121M 1s -2024-04-05T03:51:23Z #15 2.232 60800K .......... .......... .......... .......... .......... 47% 132M 1s -2024-04-05T03:51:23Z #15 2.232 60850K .......... .......... .......... .......... .......... 48% 138M 1s -2024-04-05T03:51:23Z #15 2.233 60900K .......... .......... .......... .......... .......... 48% 118M 1s -2024-04-05T03:51:23Z #15 2.233 60950K .......... .......... .......... .......... .......... 48% 121M 1s -2024-04-05T03:51:23Z #15 2.234 61000K .......... .......... .......... .......... .......... 48% 118M 1s -2024-04-05T03:51:23Z #15 2.236 61050K .......... .......... .......... .......... .......... 48% 159M 1s -2024-04-05T03:51:23Z #15 2.236 61100K .......... .......... .......... .......... .......... 48% 155M 1s -2024-04-05T03:51:23Z #15 2.236 61150K .......... .......... .......... .......... .......... 48% 28.1M 1s -2024-04-05T03:51:23Z #15 2.236 61200K .......... .......... .......... .......... .......... 48% 131M 1s -2024-04-05T03:51:23Z #15 2.237 61250K .......... .......... .......... .......... .......... 48% 133M 1s -2024-04-05T03:51:23Z #15 2.237 61300K .......... .......... .......... .......... .......... 48% 158M 1s -2024-04-05T03:51:23Z #15 2.237 61350K .......... .......... .......... .......... .......... 48% 21.2M 1s -2024-04-05T03:51:23Z #15 2.240 61400K .......... .......... .......... .......... .......... 48% 132M 1s -2024-04-05T03:51:23Z #15 2.240 61450K .......... .......... .......... .......... .......... 48% 132M 1s -2024-04-05T03:51:23Z #15 2.241 61500K .......... .......... .......... .......... .......... 48% 125M 1s -2024-04-05T03:51:23Z #15 2.241 61550K .......... .......... .......... .......... .......... 48% 115M 1s -2024-04-05T03:51:23Z #15 2.241 61600K .......... .......... .......... .......... .......... 48% 127M 1s -2024-04-05T03:51:23Z #15 2.242 61650K .......... .......... .......... .......... .......... 48% 24.7M 1s -2024-04-05T03:51:23Z #15 2.246 61700K .......... .......... .......... .......... .......... 48% 9.31M 1s -2024-04-05T03:51:23Z #15 2.256 61750K .......... .......... .......... .......... .......... 48% 126M 1s -2024-04-05T03:51:23Z #15 2.256 61800K .......... .......... .......... .......... .......... 48% 176M 1s -2024-04-05T03:51:23Z #15 2.256 61850K .......... .......... .......... .......... .......... 48% 95.9M 1s -2024-04-05T03:51:23Z #15 2.256 61900K .......... .......... .......... .......... .......... 48% 177M 1s -2024-04-05T03:51:23Z #15 2.256 61950K .......... .......... .......... .......... .......... 48% 84.6M 1s -2024-04-05T03:51:23Z #15 2.256 62000K .......... .......... .......... .......... .......... 48% 171M 1s -2024-04-05T03:51:23Z #15 2.256 62050K .......... .......... .......... .......... .......... 48% 180M 1s -2024-04-05T03:51:23Z #15 2.256 62100K .......... .......... .......... .......... .......... 49% 181M 1s -2024-04-05T03:51:23Z #15 2.256 62150K .......... .......... .......... .......... .......... 49% 156M 1s -2024-04-05T03:51:23Z #15 2.256 62200K .......... .......... .......... .......... .......... 49% 177M 1s -2024-04-05T03:51:23Z #15 2.256 62250K .......... .......... .......... .......... .......... 49% 161M 1s -2024-04-05T03:51:23Z #15 2.256 62300K .......... .......... .......... .......... .......... 49% 182M 1s -2024-04-05T03:51:23Z #15 2.256 62350K .......... .......... .......... .......... .......... 49% 122M 1s -2024-04-05T03:51:23Z #15 2.256 62400K .......... .......... .......... .......... .......... 49% 8.30M 1s -2024-04-05T03:51:23Z #15 2.259 62450K .......... .......... .......... .......... .......... 49% 130M 1s -2024-04-05T03:51:23Z #15 2.260 62500K .......... .......... .......... .......... .......... 49% 136M 1s -2024-04-05T03:51:23Z #15 2.260 62550K .......... .......... .......... .......... .......... 49% 134M 1s -2024-04-05T03:51:23Z #15 2.260 62600K .......... .......... .......... .......... .......... 49% 112M 1s -2024-04-05T03:51:23Z #15 2.261 62650K .......... .......... .......... .......... .......... 49% 158M 1s -2024-04-05T03:51:23Z #15 2.261 62700K .......... .......... .......... .......... .......... 49% 125M 1s -2024-04-05T03:51:23Z #15 2.262 62750K .......... .......... .......... .......... .......... 49% 107M 1s -2024-04-05T03:51:23Z #15 2.262 62800K .......... .......... .......... .......... .......... 49% 118M 1s -2024-04-05T03:51:23Z #15 2.262 62850K .......... .......... .......... .......... .......... 49% 131M 1s -2024-04-05T03:51:23Z #15 2.263 62900K .......... .......... .......... .......... .......... 49% 129M 1s -2024-04-05T03:51:23Z #15 2.263 62950K .......... .......... .......... .......... .......... 49% 131M 1s -2024-04-05T03:51:23Z #15 2.263 63000K .......... .......... .......... .......... .......... 49% 113M 1s -2024-04-05T03:51:23Z #15 2.264 63050K .......... .......... .......... .......... .......... 49% 131M 1s -2024-04-05T03:51:23Z #15 2.264 63100K .......... .......... .......... .......... .......... 49% 147M 1s -2024-04-05T03:51:23Z #15 2.264 63150K .......... .......... .......... .......... .......... 49% 129M 1s -2024-04-05T03:51:23Z #15 2.265 63200K .......... .......... .......... .......... .......... 49% 105M 1s -2024-04-05T03:51:23Z #15 2.265 63250K .......... .......... .......... .......... .......... 49% 137M 1s -2024-04-05T03:51:23Z #15 2.266 63300K .......... .......... .......... .......... .......... 49% 49.2M 1s -2024-04-05T03:51:23Z #15 2.267 63350K .......... .......... .......... .......... .......... 50% 128M 1s -2024-04-05T03:51:23Z #15 2.267 63400K .......... .......... .......... .......... .......... 50% 112M 1s -2024-04-05T03:51:23Z #15 2.268 63450K .......... .......... .......... .......... .......... 50% 132M 1s -2024-04-05T03:51:23Z #15 2.268 63500K .......... .......... .......... .......... .......... 50% 139M 1s -2024-04-05T03:51:23Z #15 2.268 63550K .......... .......... .......... .......... .......... 50% 145M 1s -2024-04-05T03:51:23Z #15 2.269 63600K .......... .......... .......... .......... .......... 50% 110M 1s -2024-04-05T03:51:23Z #15 2.269 63650K .......... .......... .......... .......... .......... 50% 132M 1s -2024-04-05T03:51:23Z #15 2.269 63700K .......... .......... .......... .......... .......... 50% 60.2M 1s -2024-04-05T03:51:23Z #15 2.271 63750K .......... .......... .......... .......... .......... 50% 125M 1s -2024-04-05T03:51:23Z #15 2.271 63800K .......... .......... .......... .......... .......... 50% 110M 1s -2024-04-05T03:51:23Z #15 2.271 63850K .......... .......... .......... .......... .......... 50% 144M 1s -2024-04-05T03:51:23Z #15 2.272 63900K .......... .......... .......... .......... .......... 50% 128M 1s -2024-04-05T03:51:23Z #15 2.272 63950K .......... .......... .......... .......... .......... 50% 113M 1s -2024-04-05T03:51:23Z #15 2.272 64000K .......... .......... .......... .......... .......... 50% 131M 1s -2024-04-05T03:51:23Z #15 2.273 64050K .......... .......... .......... .......... .......... 50% 130M 1s -2024-04-05T03:51:23Z #15 2.273 64100K .......... .......... .......... .......... .......... 50% 144M 1s -2024-04-05T03:51:23Z #15 2.273 64150K .......... .......... .......... .......... .......... 50% 115M 1s -2024-04-05T03:51:23Z #15 2.274 64200K .......... .......... .......... .......... .......... 50% 86.0M 1s -2024-04-05T03:51:23Z #15 2.274 64250K .......... .......... .......... .......... .......... 50% 119M 1s -2024-04-05T03:51:23Z #15 2.275 64300K .......... .......... .......... .......... .......... 50% 133M 1s -2024-04-05T03:51:23Z #15 2.275 64350K .......... .......... .......... .......... .......... 50% 120M 1s -2024-04-05T03:51:23Z #15 2.275 64400K .......... .......... .......... .......... .......... 50% 132M 1s -2024-04-05T03:51:23Z #15 2.276 64450K .......... .......... .......... .......... .......... 50% 136M 1s -2024-04-05T03:51:23Z #15 2.276 64500K .......... .......... .......... .......... .......... 50% 123M 1s -2024-04-05T03:51:23Z #15 2.277 64550K .......... .......... .......... .......... .......... 50% 68.4M 1s -2024-04-05T03:51:23Z #15 2.277 64600K .......... .......... .......... .......... .......... 50% 120M 1s -2024-04-05T03:51:23Z #15 2.278 64650K .......... .......... .......... .......... .......... 51% 137M 1s -2024-04-05T03:51:23Z #15 2.278 64700K .......... .......... .......... .......... .......... 51% 126M 1s -2024-04-05T03:51:23Z #15 2.278 64750K .......... .......... .......... .......... .......... 51% 106M 1s -2024-04-05T03:51:23Z #15 2.279 64800K .......... .......... .......... .......... .......... 51% 108M 1s -2024-04-05T03:51:23Z #15 2.279 64850K .......... .......... .......... .......... .......... 51% 127M 1s -2024-04-05T03:51:23Z #15 2.280 64900K .......... .......... .......... .......... .......... 51% 128M 1s -2024-04-05T03:51:23Z #15 2.280 64950K .......... .......... .......... .......... .......... 51% 115M 1s -2024-04-05T03:51:23Z #15 2.281 65000K .......... .......... .......... .......... .......... 51% 136M 1s -2024-04-05T03:51:23Z #15 2.281 65050K .......... .......... .......... .......... .......... 51% 102M 1s -2024-04-05T03:51:23Z #15 2.281 65100K .......... .......... .......... .......... .......... 51% 92.1M 1s -2024-04-05T03:51:23Z #15 2.282 65150K .......... .......... .......... .......... .......... 51% 131M 1s -2024-04-05T03:51:23Z #15 2.282 65200K .......... .......... .......... .......... .......... 51% 140M 1s -2024-04-05T03:51:23Z #15 2.283 65250K .......... .......... .......... .......... .......... 51% 101M 1s -2024-04-05T03:51:23Z #15 2.283 65300K .......... .......... .......... .......... .......... 51% 109M 1s -2024-04-05T03:51:23Z #15 2.284 65350K .......... .......... .......... .......... .......... 51% 131M 1s -2024-04-05T03:51:23Z #15 2.284 65400K .......... .......... .......... .......... .......... 51% 137M 1s -2024-04-05T03:51:23Z #15 2.284 65450K .......... .......... .......... .......... .......... 51% 129M 1s -2024-04-05T03:51:23Z #15 2.285 65500K .......... .......... .......... .......... .......... 51% 117M 1s -2024-04-05T03:51:23Z #15 2.286 65550K .......... .......... .......... .......... .......... 51% 121M 1s -2024-04-05T03:51:23Z #15 2.286 65600K .......... .......... .......... .......... .......... 51% 103M 1s -2024-04-05T03:51:23Z #15 2.286 65650K .......... .......... .......... .......... .......... 51% 134M 1s -2024-04-05T03:51:23Z #15 2.286 65700K .......... .......... .......... .......... .......... 51% 120M 1s -2024-04-05T03:51:23Z #15 2.287 65750K .......... .......... .......... .......... .......... 51% 101M 1s -2024-04-05T03:51:23Z #15 2.287 65800K .......... .......... .......... .......... .......... 51% 144M 1s -2024-04-05T03:51:23Z #15 2.288 65850K .......... .......... .......... .......... .......... 51% 124M 1s -2024-04-05T03:51:23Z #15 2.288 65900K .......... .......... .......... .......... .......... 52% 109M 1s -2024-04-05T03:51:23Z #15 2.288 65950K .......... .......... .......... .......... .......... 52% 125M 1s -2024-04-05T03:51:23Z #15 2.289 66000K .......... .......... .......... .......... .......... 52% 110M 1s -2024-04-05T03:51:23Z #15 2.290 66050K .......... .......... .......... .......... .......... 52% 149M 1s -2024-04-05T03:51:23Z #15 2.290 66100K .......... .......... .......... .......... .......... 52% 86.8M 1s -2024-04-05T03:51:23Z #15 2.290 66150K .......... .......... .......... .......... .......... 52% 130M 1s -2024-04-05T03:51:23Z #15 2.290 66200K .......... .......... .......... .......... .......... 52% 116M 1s -2024-04-05T03:51:23Z #15 2.291 66250K .......... .......... .......... .......... .......... 52% 119M 1s -2024-04-05T03:51:23Z #15 2.291 66300K .......... .......... .......... .......... .......... 52% 102M 1s -2024-04-05T03:51:23Z #15 2.292 66350K .......... .......... .......... .......... .......... 52% 141M 1s -2024-04-05T03:51:23Z #15 2.292 66400K .......... .......... .......... .......... .......... 52% 129M 1s -2024-04-05T03:51:23Z #15 2.293 66450K .......... .......... .......... .......... .......... 52% 120M 1s -2024-04-05T03:51:23Z #15 2.293 66500K .......... .......... .......... .......... .......... 52% 99.9M 1s -2024-04-05T03:51:23Z #15 2.293 66550K .......... .......... .......... .......... .......... 52% 124M 1s -2024-04-05T03:51:23Z #15 2.294 66600K .......... .......... .......... .......... .......... 52% 130M 1s -2024-04-05T03:51:23Z #15 2.294 66650K .......... .......... .......... .......... .......... 52% 125M 1s -2024-04-05T03:51:23Z #15 2.295 66700K .......... .......... .......... .......... .......... 52% 104M 1s -2024-04-05T03:51:23Z #15 2.295 66750K .......... .......... .......... .......... .......... 52% 122M 1s -2024-04-05T03:51:23Z #15 2.296 66800K .......... .......... .......... .......... .......... 52% 117M 1s -2024-04-05T03:51:23Z #15 2.296 66850K .......... .......... .......... .......... .......... 52% 116M 1s -2024-04-05T03:51:23Z #15 2.296 66900K .......... .......... .......... .......... .......... 52% 105M 1s -2024-04-05T03:51:23Z #15 2.297 66950K .......... .......... .......... .......... .......... 52% 122M 1s -2024-04-05T03:51:23Z #15 2.297 67000K .......... .......... .......... .......... .......... 52% 107M 1s -2024-04-05T03:51:23Z #15 2.298 67050K .......... .......... .......... .......... .......... 52% 102M 1s -2024-04-05T03:51:23Z #15 2.298 67100K .......... .......... .......... .......... .......... 52% 86.1M 1s -2024-04-05T03:51:23Z #15 2.299 67150K .......... .......... .......... .......... .......... 53% 106M 1s -2024-04-05T03:51:23Z #15 2.299 67200K .......... .......... .......... .......... .......... 53% 131M 1s -2024-04-05T03:51:23Z #15 2.300 67250K .......... .......... .......... .......... .......... 53% 106M 1s -2024-04-05T03:51:23Z #15 2.300 67300K .......... .......... .......... .......... .......... 53% 104M 1s -2024-04-05T03:51:23Z #15 2.301 67350K .......... .......... .......... .......... .......... 53% 99.7M 1s -2024-04-05T03:51:23Z #15 2.301 67400K .......... .......... .......... .......... .......... 53% 88.0M 1s -2024-04-05T03:51:23Z #15 2.301 67450K .......... .......... .......... .......... .......... 53% 96.6M 1s -2024-04-05T03:51:23Z #15 2.302 67500K .......... .......... .......... .......... .......... 53% 106M 1s -2024-04-05T03:51:23Z #15 2.302 67550K .......... .......... .......... .......... .......... 53% 96.1M 1s -2024-04-05T03:51:23Z #15 2.303 67600K .......... .......... .......... .......... .......... 53% 111M 1s -2024-04-05T03:51:23Z #15 2.304 67650K .......... .......... .......... .......... .......... 53% 85.9M 1s -2024-04-05T03:51:23Z #15 2.304 67700K .......... .......... .......... .......... .......... 53% 114M 1s -2024-04-05T03:51:23Z #15 2.304 67750K .......... .......... .......... .......... .......... 53% 105M 1s -2024-04-05T03:51:23Z #15 2.305 67800K .......... .......... .......... .......... .......... 53% 51.1M 1s -2024-04-05T03:51:23Z #15 2.306 67850K .......... .......... .......... .......... .......... 53% 90.9M 1s -2024-04-05T03:51:23Z #15 2.306 67900K .......... .......... .......... .......... .......... 53% 114M 1s -2024-04-05T03:51:23Z #15 2.307 67950K .......... .......... .......... .......... .......... 53% 84.2M 1s -2024-04-05T03:51:23Z #15 2.307 68000K .......... .......... .......... .......... .......... 53% 76.7M 1s -2024-04-05T03:51:23Z #15 2.308 68050K .......... .......... .......... .......... .......... 53% 67.8M 1s -2024-04-05T03:51:23Z #15 2.309 68100K .......... .......... .......... .......... .......... 53% 104M 1s -2024-04-05T03:51:23Z #15 2.309 68150K .......... .......... .......... .......... .......... 53% 117M 1s -2024-04-05T03:51:23Z #15 2.310 68200K .......... .......... .......... .......... .......... 53% 92.1M 1s -2024-04-05T03:51:23Z #15 2.310 68250K .......... .......... .......... .......... .......... 53% 77.7M 1s -2024-04-05T03:51:23Z #15 2.311 68300K .......... .......... .......... .......... .......... 53% 95.8M 1s -2024-04-05T03:51:23Z #15 2.312 68350K .......... .......... .......... .......... .......... 53% 118M 1s -2024-04-05T03:51:23Z #15 2.312 68400K .......... .......... .......... .......... .......... 53% 25.6M 1s -2024-04-05T03:51:23Z #15 2.319 68450K .......... .......... .......... .......... .......... 54% 147M 1s -2024-04-05T03:51:23Z #15 2.319 68500K .......... .......... .......... .......... .......... 54% 174M 1s -2024-04-05T03:51:23Z #15 2.319 68550K .......... .......... .......... .......... .......... 54% 173M 1s -2024-04-05T03:51:23Z #15 2.319 68600K .......... .......... .......... .......... .......... 54% 147M 1s -2024-04-05T03:51:23Z #15 2.319 68650K .......... .......... .......... .......... .......... 54% 170M 1s -2024-04-05T03:51:23Z #15 2.319 68700K .......... .......... .......... .......... .......... 54% 179M 1s -2024-04-05T03:51:23Z #15 2.319 68750K .......... .......... .......... .......... .......... 54% 169M 1s -2024-04-05T03:51:23Z #15 2.319 68800K .......... .......... .......... .......... .......... 54% 155M 1s -2024-04-05T03:51:23Z #15 2.319 68850K .......... .......... .......... .......... .......... 54% 176M 1s -2024-04-05T03:51:23Z #15 2.319 68900K .......... .......... .......... .......... .......... 54% 168M 1s -2024-04-05T03:51:23Z #15 2.319 68950K .......... .......... .......... .......... .......... 54% 170M 1s -2024-04-05T03:51:23Z #15 2.319 69000K .......... .......... .......... .......... .......... 54% 144M 1s -2024-04-05T03:51:23Z #15 2.319 69050K .......... .......... .......... .......... .......... 54% 172M 1s -2024-04-05T03:51:23Z #15 2.319 69100K .......... .......... .......... .......... .......... 54% 162M 1s -2024-04-05T03:51:23Z #15 2.319 69150K .......... .......... .......... .......... .......... 54% 171M 1s -2024-04-05T03:51:23Z #15 2.319 69200K .......... .......... .......... .......... .......... 54% 150M 1s -2024-04-05T03:51:23Z #15 2.319 69250K .......... .......... .......... .......... .......... 54% 176M 1s -2024-04-05T03:51:23Z #15 2.319 69300K .......... .......... .......... .......... .......... 54% 146M 1s -2024-04-05T03:51:23Z #15 2.319 69350K .......... .......... .......... .......... .......... 54% 86.0M 1s -2024-04-05T03:51:23Z #15 2.320 69400K .......... .......... .......... .......... .......... 54% 27.5M 1s -2024-04-05T03:51:23Z #15 2.322 69450K .......... .......... .......... .......... .......... 54% 147M 1s -2024-04-05T03:51:23Z #15 2.322 69500K .......... .......... .......... .......... .......... 54% 205K 1s -2024-04-05T03:51:23Z #15 2.566 69550K .......... .......... .......... .......... .......... 54% 24.1M 1s -2024-04-05T03:51:23Z #15 2.568 69600K .......... .......... .......... .......... .......... 54% 17.3M 1s -2024-04-05T03:51:23Z #15 2.571 69650K .......... .......... .......... .......... .......... 54% 18.6M 1s -2024-04-05T03:51:23Z #15 2.574 69700K .......... .......... .......... .......... .......... 55% 24.5M 1s -2024-04-05T03:51:23Z #15 2.577 69750K .......... .......... .......... .......... .......... 55% 18.0M 1s -2024-04-05T03:51:23Z #15 2.578 69800K .......... .......... .......... .......... .......... 55% 16.3M 1s -2024-04-05T03:51:23Z #15 2.581 69850K .......... .......... .......... .......... .......... 55% 17.5M 1s -2024-04-05T03:51:23Z #15 2.584 69900K .......... .......... .......... .......... .......... 55% 66.9M 1s -2024-04-05T03:51:23Z #15 2.584 69950K .......... .......... .......... .......... .......... 55% 84.2M 1s -2024-04-05T03:51:23Z #15 2.585 70000K .......... .......... .......... .......... .......... 55% 26.1M 1s -2024-04-05T03:51:23Z #15 2.587 70050K .......... .......... .......... .......... .......... 55% 82.7M 1s -2024-04-05T03:51:23Z #15 2.587 70100K .......... .......... .......... .......... .......... 55% 81.1M 1s -2024-04-05T03:51:23Z #15 2.588 70150K .......... .......... .......... .......... .......... 55% 68.7M 1s -2024-04-05T03:51:23Z #15 2.589 70200K .......... .......... .......... .......... .......... 55% 120M 1s -2024-04-05T03:51:23Z #15 2.589 70250K .......... .......... .......... .......... .......... 55% 147M 1s -2024-04-05T03:51:23Z #15 2.589 70300K .......... .......... .......... .......... .......... 55% 151M 1s -2024-04-05T03:51:23Z #15 2.590 70350K .......... .......... .......... .......... .......... 55% 114M 1s -2024-04-05T03:51:23Z #15 2.590 70400K .......... .......... .......... .......... .......... 55% 136M 1s -2024-04-05T03:51:23Z #15 2.591 70450K .......... .......... .......... .......... .......... 55% 147M 1s -2024-04-05T03:51:23Z #15 2.591 70500K .......... .......... .......... .......... .......... 55% 117M 1s -2024-04-05T03:51:23Z #15 2.591 70550K .......... .......... .......... .......... .......... 55% 145M 1s -2024-04-05T03:51:23Z #15 2.592 70600K .......... .......... .......... .......... .......... 55% 131M 1s -2024-04-05T03:51:23Z #15 2.592 70650K .......... .......... .......... .......... .......... 55% 145M 1s -2024-04-05T03:51:23Z #15 2.593 70700K .......... .......... .......... .......... .......... 55% 58.7M 1s -2024-04-05T03:51:23Z #15 2.593 70750K .......... .......... .......... .......... .......... 55% 107M 1s -2024-04-05T03:51:23Z #15 2.594 70800K .......... .......... .......... .......... .......... 55% 136M 1s -2024-04-05T03:51:23Z #15 2.594 70850K .......... .......... .......... .......... .......... 55% 136M 1s -2024-04-05T03:51:23Z #15 2.595 70900K .......... .......... .......... .......... .......... 55% 115M 1s -2024-04-05T03:51:23Z #15 2.595 70950K .......... .......... .......... .......... .......... 56% 136M 1s -2024-04-05T03:51:23Z #15 2.595 71000K .......... .......... .......... .......... .......... 56% 139M 1s -2024-04-05T03:51:23Z #15 2.596 71050K .......... .......... .......... .......... .......... 56% 143M 1s -2024-04-05T03:51:23Z #15 2.596 71100K .......... .......... .......... .......... .......... 56% 139M 1s -2024-04-05T03:51:23Z #15 2.596 71150K .......... .......... .......... .......... .......... 56% 150M 1s -2024-04-05T03:51:23Z #15 2.597 71200K .......... .......... .......... .......... .......... 56% 123M 1s -2024-04-05T03:51:23Z #15 2.597 71250K .......... .......... .......... .......... .......... 56% 67.8M 1s -2024-04-05T03:51:23Z #15 2.598 71300K .......... .......... .......... .......... .......... 56% 118M 1s -2024-04-05T03:51:23Z #15 2.598 71350K .......... .......... .......... .......... .......... 56% 111M 1s -2024-04-05T03:51:23Z #15 2.598 71400K .......... .......... .......... .......... .......... 56% 127M 1s -2024-04-05T03:51:23Z #15 2.599 71450K .......... .......... .......... .......... .......... 56% 137M 1s -2024-04-05T03:51:23Z #15 2.599 71500K .......... .......... .......... .......... .......... 56% 131M 1s -2024-04-05T03:51:23Z #15 2.600 71550K .......... .......... .......... .......... .......... 56% 144M 1s -2024-04-05T03:51:23Z #15 2.600 71600K .......... .......... .......... .......... .......... 56% 116M 1s -2024-04-05T03:51:23Z #15 2.601 71650K .......... .......... .......... .......... .......... 56% 142M 1s -2024-04-05T03:51:23Z #15 2.601 71700K .......... .......... .......... .......... .......... 56% 135M 1s -2024-04-05T03:51:23Z #15 2.601 71750K .......... .......... .......... .......... .......... 56% 103M 1s -2024-04-05T03:51:23Z #15 2.602 71800K .......... .......... .......... .......... .......... 56% 131M 1s -2024-04-05T03:51:23Z #15 2.602 71850K .......... .......... .......... .......... .......... 56% 73.7M 1s -2024-04-05T03:51:23Z #15 2.603 71900K .......... .......... .......... .......... .......... 56% 147M 1s -2024-04-05T03:51:23Z #15 2.603 71950K .......... .......... .......... .......... .......... 56% 122M 1s -2024-04-05T03:51:23Z #15 2.604 72000K .......... .......... .......... .......... .......... 56% 136M 1s -2024-04-05T03:51:23Z #15 2.604 72050K .......... .......... .......... .......... .......... 56% 148M 1s -2024-04-05T03:51:23Z #15 2.604 72100K .......... .......... .......... .......... .......... 56% 154M 1s -2024-04-05T03:51:23Z #15 2.604 72150K .......... .......... .......... .......... .......... 56% 122M 1s -2024-04-05T03:51:23Z #15 2.605 72200K .......... .......... .......... .......... .......... 56% 150M 1s -2024-04-05T03:51:23Z #15 2.605 72250K .......... .......... .......... .......... .......... 57% 125M 1s -2024-04-05T03:51:23Z #15 2.606 72300K .......... .......... .......... .......... .......... 57% 118M 1s -2024-04-05T03:51:23Z #15 2.606 72350K .......... .......... .......... .......... .......... 57% 63.9M 1s -2024-04-05T03:51:23Z #15 2.608 72400K .......... .......... .......... .......... .......... 57% 25.8M 1s -2024-04-05T03:51:23Z #15 2.609 72450K .......... .......... .......... .......... .......... 57% 72.9M 1s -2024-04-05T03:51:23Z #15 2.609 72500K .......... .......... .......... .......... .......... 57% 64.9M 1s -2024-04-05T03:51:23Z #15 2.610 72550K .......... .......... .......... .......... .......... 57% 51.3M 1s -2024-04-05T03:51:23Z #15 2.611 72600K .......... .......... .......... .......... .......... 57% 50.6M 1s -2024-04-05T03:51:23Z #15 2.612 72650K .......... .......... .......... .......... .......... 57% 21.6M 1s -2024-04-05T03:51:23Z #15 2.614 72700K .......... .......... .......... .......... .......... 57% 39.5M 1s -2024-04-05T03:51:23Z #15 2.615 72750K .......... .......... .......... .......... .......... 57% 25.2M 1s -2024-04-05T03:51:23Z #15 2.617 72800K .......... .......... .......... .......... .......... 57% 72.0M 1s -2024-04-05T03:51:23Z #15 2.618 72850K .......... .......... .......... .......... .......... 57% 21.3M 1s -2024-04-05T03:51:23Z #15 2.621 72900K .......... .......... .......... .......... .......... 57% 131M 1s -2024-04-05T03:51:23Z #15 2.621 72950K .......... .......... .......... .......... .......... 57% 117M 1s -2024-04-05T03:51:23Z #15 2.621 73000K .......... .......... .......... .......... .......... 57% 118M 1s -2024-04-05T03:51:23Z #15 2.621 73050K .......... .......... .......... .......... .......... 57% 82.3M 1s -2024-04-05T03:51:23Z #15 2.622 73100K .......... .......... .......... .......... .......... 57% 129M 1s -2024-04-05T03:51:23Z #15 2.622 73150K .......... .......... .......... .......... .......... 57% 95.9M 1s -2024-04-05T03:51:23Z #15 2.623 73200K .......... .......... .......... .......... .......... 57% 19.4M 1s -2024-04-05T03:51:23Z #15 2.625 73250K .......... .......... .......... .......... .......... 57% 68.8M 1s -2024-04-05T03:51:23Z #15 2.626 73300K .......... .......... .......... .......... .......... 57% 21.3M 1s -2024-04-05T03:51:23Z #15 2.628 73350K .......... .......... .......... .......... .......... 57% 145M 1s -2024-04-05T03:51:23Z #15 2.629 73400K .......... .......... .......... .......... .......... 57% 109M 1s -2024-04-05T03:51:23Z #15 2.629 73450K .......... .......... .......... .......... .......... 57% 92.2M 1s -2024-04-05T03:51:23Z #15 2.630 73500K .......... .......... .......... .......... .......... 58% 31.5M 1s -2024-04-05T03:51:23Z #15 2.631 73550K .......... .......... .......... .......... .......... 58% 33.2M 1s -2024-04-05T03:51:23Z #15 2.634 73600K .......... .......... .......... .......... .......... 58% 39.1M 1s -2024-04-05T03:51:23Z #15 2.634 73650K .......... .......... .......... .......... .......... 58% 36.3M 1s -2024-04-05T03:51:23Z #15 2.635 73700K .......... .......... .......... .......... .......... 58% 48.1M 1s -2024-04-05T03:51:23Z #15 2.636 73750K .......... .......... .......... .......... .......... 58% 42.5M 1s -2024-04-05T03:51:23Z #15 2.640 73800K .......... .......... .......... .......... .......... 58% 27.5M 1s -2024-04-05T03:51:23Z #15 2.640 73850K .......... .......... .......... .......... .......... 58% 44.1M 1s -2024-04-05T03:51:23Z #15 2.642 73900K .......... .......... .......... .......... .......... 58% 101M 1s -2024-04-05T03:51:23Z #15 2.642 73950K .......... .......... .......... .......... .......... 58% 155M 1s -2024-04-05T03:51:23Z #15 2.642 74000K .......... .......... .......... .......... .......... 58% 130M 1s -2024-04-05T03:51:23Z #15 2.642 74050K .......... .......... .......... .......... .......... 58% 139M 1s -2024-04-05T03:51:23Z #15 2.642 74100K .......... .......... .......... .......... .......... 58% 135M 1s -2024-04-05T03:51:23Z #15 2.643 74150K .......... .......... .......... .......... .......... 58% 162M 1s -2024-04-05T03:51:23Z #15 2.643 74200K .......... .......... .......... .......... .......... 58% 133M 1s -2024-04-05T03:51:23Z #15 2.643 74250K .......... .......... .......... .......... .......... 58% 136M 1s -2024-04-05T03:51:23Z #15 2.643 74300K .......... .......... .......... .......... .......... 58% 70.5M 1s -2024-04-05T03:51:23Z #15 2.644 74350K .......... .......... .......... .......... .......... 58% 109M 1s -2024-04-05T03:51:23Z #15 2.645 74400K .......... .......... .......... .......... .......... 58% 150M 1s -2024-04-05T03:51:23Z #15 2.645 74450K .......... .......... .......... .......... .......... 58% 152M 1s -2024-04-05T03:51:23Z #15 2.645 74500K .......... .......... .......... .......... .......... 58% 129M 1s -2024-04-05T03:51:23Z #15 2.645 74550K .......... .......... .......... .......... .......... 58% 131M 1s -2024-04-05T03:51:23Z #15 2.646 74600K .......... .......... .......... .......... .......... 58% 128M 1s -2024-04-05T03:51:23Z #15 2.646 74650K .......... .......... .......... .......... .......... 58% 139M 1s -2024-04-05T03:51:23Z #15 2.647 74700K .......... .......... .......... .......... .......... 58% 139M 1s -2024-04-05T03:51:23Z #15 2.647 74750K .......... .......... .......... .......... .......... 58% 63.7M 1s -2024-04-05T03:51:23Z #15 2.648 74800K .......... .......... .......... .......... .......... 59% 144M 1s -2024-04-05T03:51:23Z #15 2.648 74850K .......... .......... .......... .......... .......... 59% 103M 1s -2024-04-05T03:51:23Z #15 2.649 74900K .......... .......... .......... .......... .......... 59% 151M 1s -2024-04-05T03:51:23Z #15 2.649 74950K .......... .......... .......... .......... .......... 59% 132M 1s -2024-04-05T03:51:23Z #15 2.649 75000K .......... .......... .......... .......... .......... 59% 153M 1s -2024-04-05T03:51:23Z #15 2.650 75050K .......... .......... .......... .......... .......... 59% 137M 1s -2024-04-05T03:51:23Z #15 2.650 75100K .......... .......... .......... .......... .......... 59% 124M 1s -2024-04-05T03:51:23Z #15 2.650 75150K .......... .......... .......... .......... .......... 59% 117M 1s -2024-04-05T03:51:23Z #15 2.651 75200K .......... .......... .......... .......... .......... 59% 131M 1s -2024-04-05T03:51:23Z #15 2.651 75250K .......... .......... .......... .......... .......... 59% 130M 1s -2024-04-05T03:51:23Z #15 2.651 75300K .......... .......... .......... .......... .......... 59% 126M 1s -2024-04-05T03:51:23Z #15 2.652 75350K .......... .......... .......... .......... .......... 59% 55.9M 1s -2024-04-05T03:51:23Z #15 2.653 75400K .......... .......... .......... .......... .......... 59% 24.3M 1s -2024-04-05T03:51:23Z #15 2.655 75450K .......... .......... .......... .......... .......... 59% 89.6M 1s -2024-04-05T03:51:23Z #15 2.655 75500K .......... .......... .......... .......... .......... 59% 143M 1s -2024-04-05T03:51:23Z #15 2.656 75550K .......... .......... .......... .......... .......... 59% 49.4M 1s -2024-04-05T03:51:23Z #15 2.657 75600K .......... .......... .......... .......... .......... 59% 66.1M 1s -2024-04-05T03:51:23Z #15 2.657 75650K .......... .......... .......... .......... .......... 59% 64.6M 1s -2024-04-05T03:51:23Z #15 2.658 75700K .......... .......... .......... .......... .......... 59% 22.1M 1s -2024-04-05T03:51:23Z #15 2.660 75750K .......... .......... .......... .......... .......... 59% 88.3M 1s -2024-04-05T03:51:23Z #15 2.661 75800K .......... .......... .......... .......... .......... 59% 73.4M 1s -2024-04-05T03:51:23Z #15 2.662 75850K .......... .......... .......... .......... .......... 59% 58.4M 1s -2024-04-05T03:51:23Z #15 2.663 75900K .......... .......... .......... .......... .......... 59% 26.4M 1s -2024-04-05T03:51:23Z #15 2.664 75950K .......... .......... .......... .......... .......... 59% 132M 1s -2024-04-05T03:51:23Z #15 2.664 76000K .......... .......... .......... .......... .......... 59% 80.6M 1s -2024-04-05T03:51:23Z #15 2.665 76050K .......... .......... .......... .......... .......... 60% 20.4M 1s -2024-04-05T03:51:23Z #15 2.670 76100K .......... .......... .......... .......... .......... 60% 148M 1s -2024-04-05T03:51:23Z #15 2.670 76150K .......... .......... .......... .......... .......... 60% 92.9M 1s -2024-04-05T03:51:23Z #15 2.670 76200K .......... .......... .......... .......... .......... 60% 85.6M 1s -2024-04-05T03:51:23Z #15 2.670 76250K .......... .......... .......... .......... .......... 60% 177M 1s -2024-04-05T03:51:23Z #15 2.670 76300K .......... .......... .......... .......... .......... 60% 165M 1s -2024-04-05T03:51:23Z #15 2.670 76350K .......... .......... .......... .......... .......... 60% 155M 1s -2024-04-05T03:51:23Z #15 2.670 76400K .......... .......... .......... .......... .......... 60% 146M 1s -2024-04-05T03:51:23Z #15 2.670 76450K .......... .......... .......... .......... .......... 60% 133M 1s -2024-04-05T03:51:23Z #15 2.671 76500K .......... .......... .......... .......... .......... 60% 129M 1s -2024-04-05T03:51:23Z #15 2.671 76550K .......... .......... .......... .......... .......... 60% 144M 1s -2024-04-05T03:51:23Z #15 2.671 76600K .......... .......... .......... .......... .......... 60% 132M 1s -2024-04-05T03:51:23Z #15 2.672 76650K .......... .......... .......... .......... .......... 60% 114M 1s -2024-04-05T03:51:23Z #15 2.674 76700K .......... .......... .......... .......... .......... 60% 65.1M 1s -2024-04-05T03:51:23Z #15 2.674 76750K .......... .......... .......... .......... .......... 60% 143M 1s -2024-04-05T03:51:23Z #15 2.674 76800K .......... .......... .......... .......... .......... 60% 124M 1s -2024-04-05T03:51:23Z #15 2.674 76850K .......... .......... .......... .......... .......... 60% 162M 1s -2024-04-05T03:51:23Z #15 2.674 76900K .......... .......... .......... .......... .......... 60% 140M 1s -2024-04-05T03:51:23Z #15 2.674 76950K .......... .......... .......... .......... .......... 60% 151M 1s -2024-04-05T03:51:23Z #15 2.675 77000K .......... .......... .......... .......... .......... 60% 175M 1s -2024-04-05T03:51:23Z #15 2.675 77050K .......... .......... .......... .......... .......... 60% 115M 1s -2024-04-05T03:51:23Z #15 2.675 77100K .......... .......... .......... .......... .......... 60% 133M 1s -2024-04-05T03:51:23Z #15 2.676 77150K .......... .......... .......... .......... .......... 60% 146M 1s -2024-04-05T03:51:23Z #15 2.676 77200K .......... .......... .......... .......... .......... 60% 122M 1s -2024-04-05T03:51:23Z #15 2.676 77250K .......... .......... .......... .......... .......... 60% 98.7M 1s -2024-04-05T03:51:23Z #15 2.677 77300K .......... .......... .......... .......... .......... 61% 76.9M 1s -2024-04-05T03:51:23Z #15 2.682 77350K .......... .......... .......... .......... .......... 61% 157M 1s -2024-04-05T03:51:23Z #15 2.682 77400K .......... .......... .......... .......... .......... 61% 111M 1s -2024-04-05T03:51:23Z #15 2.682 77450K .......... .......... .......... .......... .......... 61% 188M 1s -2024-04-05T03:51:23Z #15 2.682 77500K .......... .......... .......... .......... .......... 61% 167M 1s -2024-04-05T03:51:23Z #15 2.682 77550K .......... .......... .......... .......... .......... 61% 174M 1s -2024-04-05T03:51:23Z #15 2.682 77600K .......... .......... .......... .......... .......... 61% 156M 1s -2024-04-05T03:51:23Z #15 2.682 77650K .......... .......... .......... .......... .......... 61% 185M 1s -2024-04-05T03:51:23Z #15 2.682 77700K .......... .......... .......... .......... .......... 61% 186M 1s -2024-04-05T03:51:23Z #15 2.682 77750K .......... .......... .......... .......... .......... 61% 188M 1s -2024-04-05T03:51:23Z #15 2.682 77800K .......... .......... .......... .......... .......... 61% 145M 1s -2024-04-05T03:51:23Z #15 2.682 77850K .......... .......... .......... .......... .......... 61% 183M 1s -2024-04-05T03:51:23Z #15 2.682 77900K .......... .......... .......... .......... .......... 61% 71.6M 1s -2024-04-05T03:51:23Z #15 2.682 77950K .......... .......... .......... .......... .......... 61% 184M 1s -2024-04-05T03:51:23Z #15 2.682 78000K .......... .......... .......... .......... .......... 61% 90.0M 1s -2024-04-05T03:51:23Z #15 2.682 78050K .......... .......... .......... .......... .......... 61% 132M 1s -2024-04-05T03:51:23Z #15 2.684 78100K .......... .......... .......... .......... .......... 61% 131M 1s -2024-04-05T03:51:23Z #15 2.684 78150K .......... .......... .......... .......... .......... 61% 126M 1s -2024-04-05T03:51:23Z #15 2.684 78200K .......... .......... .......... .......... .......... 61% 122M 1s -2024-04-05T03:51:23Z #15 2.684 78250K .......... .......... .......... .......... .......... 61% 143M 1s -2024-04-05T03:51:23Z #15 2.684 78300K .......... .......... .......... .......... .......... 61% 134M 1s -2024-04-05T03:51:23Z #15 2.684 78350K .......... .......... .......... .......... .......... 61% 107M 1s -2024-04-05T03:51:23Z #15 2.685 78400K .......... .......... .......... .......... .......... 61% 127M 1s -2024-04-05T03:51:23Z #15 2.685 78450K .......... .......... .......... .......... .......... 61% 19.4M 1s -2024-04-05T03:51:23Z #15 2.688 78500K .......... .......... .......... .......... .......... 61% 81.9M 1s -2024-04-05T03:51:23Z #15 2.688 78550K .......... .......... .......... .......... .......... 61% 128M 1s -2024-04-05T03:51:23Z #15 2.689 78600K .......... .......... .......... .......... .......... 62% 32.7M 1s -2024-04-05T03:51:23Z #15 2.690 78650K .......... .......... .......... .......... .......... 62% 19.0M 1s -2024-04-05T03:51:23Z #15 2.693 78700K .......... .......... .......... .......... .......... 62% 61.1M 1s -2024-04-05T03:51:23Z #15 2.694 78750K .......... .......... .......... .......... .......... 62% 19.2M 1s -2024-04-05T03:51:23Z #15 2.696 78800K .......... .......... .......... .......... .......... 62% 61.1M 1s -2024-04-05T03:51:23Z #15 2.697 78850K .......... .......... .......... .......... .......... 62% 17.8M 1s -2024-04-05T03:51:23Z #15 2.700 78900K .......... .......... .......... .......... .......... 62% 130M 1s -2024-04-05T03:51:23Z #15 2.700 78950K .......... .......... .......... .......... .......... 62% 81.1M 1s -2024-04-05T03:51:23Z #15 2.703 79000K .......... .......... .......... .......... .......... 62% 18.6M 1s -2024-04-05T03:51:23Z #15 2.703 79050K .......... .......... .......... .......... .......... 62% 96.0M 1s -2024-04-05T03:51:23Z #15 2.704 79100K .......... .......... .......... .......... .......... 62% 73.1M 1s -2024-04-05T03:51:23Z #15 2.704 79150K .......... .......... .......... .......... .......... 62% 96.4M 1s -2024-04-05T03:51:23Z #15 2.705 79200K .......... .......... .......... .......... .......... 62% 146M 1s -2024-04-05T03:51:23Z #15 2.705 79250K .......... .......... .......... .......... .......... 62% 98.7M 1s -2024-04-05T03:51:23Z #15 2.706 79300K .......... .......... .......... .......... .......... 62% 139M 1s -2024-04-05T03:51:23Z #15 2.706 79350K .......... .......... .......... .......... .......... 62% 136M 1s -2024-04-05T03:51:23Z #15 2.707 79400K .......... .......... .......... .......... .......... 62% 116M 1s -2024-04-05T03:51:23Z #15 2.707 79450K .......... .......... .......... .......... .......... 62% 96.1M 1s -2024-04-05T03:51:23Z #15 2.708 79500K .......... .......... .......... .......... .......... 62% 71.4M 1s -2024-04-05T03:51:23Z #15 2.708 79550K .......... .......... .......... .......... .......... 62% 102M 1s -2024-04-05T03:51:23Z #15 2.709 79600K .......... .......... .......... .......... .......... 62% 135M 1s -2024-04-05T03:51:23Z #15 2.709 79650K .......... .......... .......... .......... .......... 62% 146M 1s -2024-04-05T03:51:23Z #15 2.709 79700K .......... .......... .......... .......... .......... 62% 108M 1s -2024-04-05T03:51:23Z #15 2.710 79750K .......... .......... .......... .......... .......... 62% 142M 1s -2024-04-05T03:51:23Z #15 2.710 79800K .......... .......... .......... .......... .......... 62% 113M 1s -2024-04-05T03:51:23Z #15 2.711 79850K .......... .......... .......... .......... .......... 63% 114M 1s -2024-04-05T03:51:23Z #15 2.714 79900K .......... .......... .......... .......... .......... 63% 149M 1s -2024-04-05T03:51:23Z #15 2.714 79950K .......... .......... .......... .......... .......... 63% 76.2M 1s -2024-04-05T03:51:23Z #15 2.714 80000K .......... .......... .......... .......... .......... 63% 120M 1s -2024-04-05T03:51:23Z #15 2.714 80050K .......... .......... .......... .......... .......... 63% 121M 1s -2024-04-05T03:51:23Z #15 2.714 80100K .......... .......... .......... .......... .......... 63% 188M 1s -2024-04-05T03:51:23Z #15 2.714 80150K .......... .......... .......... .......... .......... 63% 201M 1s -2024-04-05T03:51:23Z #15 2.714 80200K .......... .......... .......... .......... .......... 63% 168M 1s -2024-04-05T03:51:23Z #15 2.714 80250K .......... .......... .......... .......... .......... 63% 139M 1s -2024-04-05T03:51:23Z #15 2.714 80300K .......... .......... .......... .......... .......... 63% 112M 1s -2024-04-05T03:51:23Z #15 2.714 80350K .......... .......... .......... .......... .......... 63% 111M 1s -2024-04-05T03:51:23Z #15 2.715 80400K .......... .......... .......... .......... .......... 63% 129M 1s -2024-04-05T03:51:23Z #15 2.715 80450K .......... .......... .......... .......... .......... 63% 169M 1s -2024-04-05T03:51:23Z #15 2.718 80500K .......... .......... .......... .......... .......... 63% 64.0M 1s -2024-04-05T03:51:23Z #15 2.718 80550K .......... .......... .......... .......... .......... 63% 118M 1s -2024-04-05T03:51:23Z #15 2.718 80600K .......... .......... .......... .......... .......... 63% 214M 1s -2024-04-05T03:51:23Z #15 2.718 80650K .......... .......... .......... .......... .......... 63% 223M 1s -2024-04-05T03:51:23Z #15 2.718 80700K .......... .......... .......... .......... .......... 63% 226M 1s -2024-04-05T03:51:23Z #15 2.718 80750K .......... .......... .......... .......... .......... 63% 204M 1s -2024-04-05T03:51:23Z #15 2.718 80800K .......... .......... .......... .......... .......... 63% 173M 1s -2024-04-05T03:51:23Z #15 2.718 80850K .......... .......... .......... .......... .......... 63% 135M 1s -2024-04-05T03:51:23Z #15 2.718 80900K .......... .......... .......... .......... .......... 63% 127M 1s -2024-04-05T03:51:23Z #15 2.719 80950K .......... .......... .......... .......... .......... 63% 103M 1s -2024-04-05T03:51:23Z #15 2.719 81000K .......... .......... .......... .......... .......... 63% 135M 1s -2024-04-05T03:51:23Z #15 2.719 81050K .......... .......... .......... .......... .......... 63% 75.4M 1s -2024-04-05T03:51:23Z #15 2.720 81100K .......... .......... .......... .......... .......... 64% 153M 1s -2024-04-05T03:51:23Z #15 2.720 81150K .......... .......... .......... .......... .......... 64% 103M 1s -2024-04-05T03:51:23Z #15 2.721 81200K .......... .......... .......... .......... .......... 64% 136M 1s -2024-04-05T03:51:23Z #15 2.721 81250K .......... .......... .......... .......... .......... 64% 152M 1s -2024-04-05T03:51:23Z #15 2.721 81300K .......... .......... .......... .......... .......... 64% 132M 1s -2024-04-05T03:51:23Z #15 2.722 81350K .......... .......... .......... .......... .......... 64% 156M 1s -2024-04-05T03:51:23Z #15 2.722 81400K .......... .......... .......... .......... .......... 64% 114M 1s -2024-04-05T03:51:23Z #15 2.723 81450K .......... .......... .......... .......... .......... 64% 131M 1s -2024-04-05T03:51:23Z #15 2.723 81500K .......... .......... .......... .......... .......... 64% 133M 1s -2024-04-05T03:51:23Z #15 2.723 81550K .......... .......... .......... .......... .......... 64% 108M 1s -2024-04-05T03:51:23Z #15 2.724 81600K .......... .......... .......... .......... .......... 64% 136M 1s -2024-04-05T03:51:23Z #15 2.724 81650K .......... .......... .......... .......... .......... 64% 68.8M 1s -2024-04-05T03:51:23Z #15 2.726 81700K .......... .......... .......... .......... .......... 64% 173M 1s -2024-04-05T03:51:23Z #15 2.726 81750K .......... .......... .......... .......... .......... 64% 97.2M 1s -2024-04-05T03:51:23Z #15 2.726 81800K .......... .......... .......... .......... .......... 64% 142M 1s -2024-04-05T03:51:23Z #15 2.726 81850K .......... .......... .......... .......... .......... 64% 118M 1s -2024-04-05T03:51:23Z #15 2.726 81900K .......... .......... .......... .......... .......... 64% 145M 1s -2024-04-05T03:51:23Z #15 2.727 81950K .......... .......... .......... .......... .......... 64% 124M 1s -2024-04-05T03:51:23Z #15 2.727 82000K .......... .......... .......... .......... .......... 64% 113M 1s -2024-04-05T03:51:23Z #15 2.728 82050K .......... .......... .......... .......... .......... 64% 145M 1s -2024-04-05T03:51:23Z #15 2.728 82100K .......... .......... .......... .......... .......... 64% 129M 1s -2024-04-05T03:51:23Z #15 2.728 82150K .......... .......... .......... .......... .......... 64% 114M 1s -2024-04-05T03:51:23Z #15 2.729 82200K .......... .......... .......... .......... .......... 64% 59.3M 1s -2024-04-05T03:51:23Z #15 2.734 82250K .......... .......... .......... .......... .......... 64% 120M 1s -2024-04-05T03:51:23Z #15 2.734 82300K .......... .......... .......... .......... .......... 64% 139M 1s -2024-04-05T03:51:23Z #15 2.734 82350K .......... .......... .......... .......... .......... 64% 166M 1s -2024-04-05T03:51:23Z #15 2.734 82400K .......... .......... .......... .......... .......... 65% 155M 1s -2024-04-05T03:51:23Z #15 2.734 82450K .......... .......... .......... .......... .......... 65% 183M 1s -2024-04-05T03:51:23Z #15 2.734 82500K .......... .......... .......... .......... .......... 65% 186M 1s -2024-04-05T03:51:23Z #15 2.734 82550K .......... .......... .......... .......... .......... 65% 172M 1s -2024-04-05T03:51:23Z #15 2.734 82600K .......... .......... .......... .......... .......... 65% 151M 1s -2024-04-05T03:51:23Z #15 2.734 82650K .......... .......... .......... .......... .......... 65% 184M 1s -2024-04-05T03:51:23Z #15 2.734 82700K .......... .......... .......... .......... .......... 65% 159M 1s -2024-04-05T03:51:23Z #15 2.734 82750K .......... .......... .......... .......... .......... 65% 184M 1s -2024-04-05T03:51:23Z #15 2.734 82800K .......... .......... .......... .......... .......... 65% 67.7M 1s -2024-04-05T03:51:23Z #15 2.735 82850K .......... .......... .......... .......... .......... 65% 23.3M 1s -2024-04-05T03:51:23Z #15 2.736 82900K .......... .......... .......... .......... .......... 65% 110M 1s -2024-04-05T03:51:23Z #15 2.736 82950K .......... .......... .......... .......... .......... 65% 132M 1s -2024-04-05T03:51:23Z #15 2.737 83000K .......... .......... .......... .......... .......... 65% 52.8M 1s -2024-04-05T03:51:23Z #15 2.738 83050K .......... .......... .......... .......... .......... 65% 31.5M 1s -2024-04-05T03:51:23Z #15 2.739 83100K .......... .......... .......... .......... .......... 65% 17.5M 1s -2024-04-05T03:51:23Z #15 2.742 83150K .......... .......... .......... .......... .......... 65% 128M 1s -2024-04-05T03:51:23Z #15 2.742 83200K .......... .......... .......... .......... .......... 65% 118M 1s -2024-04-05T03:51:23Z #15 2.743 83250K .......... .......... .......... .......... .......... 65% 133M 1s -2024-04-05T03:51:23Z #15 2.743 83300K .......... .......... .......... .......... .......... 65% 165M 1s -2024-04-05T03:51:23Z #15 2.743 83350K .......... .......... .......... .......... .......... 65% 128M 1s -2024-04-05T03:51:23Z #15 2.744 83400K .......... .......... .......... .......... .......... 65% 113M 1s -2024-04-05T03:51:23Z #15 2.744 83450K .......... .......... .......... .......... .......... 65% 148M 1s -2024-04-05T03:51:23Z #15 2.744 83500K .......... .......... .......... .......... .......... 65% 155M 1s -2024-04-05T03:51:23Z #15 2.745 83550K .......... .......... .......... .......... .......... 65% 147M 1s -2024-04-05T03:51:23Z #15 2.745 83600K .......... .......... .......... .......... .......... 65% 141M 1s -2024-04-05T03:51:23Z #15 2.745 83650K .......... .......... .......... .......... .......... 66% 165M 1s -2024-04-05T03:51:23Z #15 2.746 83700K .......... .......... .......... .......... .......... 66% 142M 1s -2024-04-05T03:51:23Z #15 2.746 83750K .......... .......... .......... .......... .......... 66% 162M 1s -2024-04-05T03:51:23Z #15 2.746 83800K .......... .......... .......... .......... .......... 66% 139M 1s -2024-04-05T03:51:23Z #15 2.747 83850K .......... .......... .......... .......... .......... 66% 151M 1s -2024-04-05T03:51:23Z #15 2.747 83900K .......... .......... .......... .......... .......... 66% 153M 1s -2024-04-05T03:51:23Z #15 2.754 83950K .......... .......... .......... .......... .......... 66% 164M 1s -2024-04-05T03:51:23Z #15 2.754 84000K .......... .......... .......... .......... .......... 66% 159M 1s -2024-04-05T03:51:23Z #15 2.754 84050K .......... .......... .......... .......... .......... 66% 181M 1s -2024-04-05T03:51:23Z #15 2.754 84100K .......... .......... .......... .......... .......... 66% 184M 1s -2024-04-05T03:51:23Z #15 2.754 84150K .......... .......... .......... .......... .......... 66% 185M 1s -2024-04-05T03:51:23Z #15 2.754 84200K .......... .......... .......... .......... .......... 66% 152M 1s -2024-04-05T03:51:23Z #15 2.754 84250K .......... .......... .......... .......... .......... 66% 186M 1s -2024-04-05T03:51:23Z #15 2.754 84300K .......... .......... .......... .......... .......... 66% 184M 1s -2024-04-05T03:51:23Z #15 2.754 84350K .......... .......... .......... .......... .......... 66% 149M 1s -2024-04-05T03:51:23Z #15 2.754 84400K .......... .......... .......... .......... .......... 66% 165M 1s -2024-04-05T03:51:23Z #15 2.754 84450K .......... .......... .......... .......... .......... 66% 179M 1s -2024-04-05T03:51:23Z #15 2.754 84500K .......... .......... .......... .......... .......... 66% 187M 1s -2024-04-05T03:51:23Z #15 2.754 84550K .......... .......... .......... .......... .......... 66% 168M 1s -2024-04-05T03:51:23Z #15 2.754 84600K .......... .......... .......... .......... .......... 66% 154M 1s -2024-04-05T03:51:23Z #15 2.754 84650K .......... .......... .......... .......... .......... 66% 189M 1s -2024-04-05T03:51:23Z #15 2.754 84700K .......... .......... .......... .......... .......... 66% 176M 1s -2024-04-05T03:51:23Z #15 2.754 84750K .......... .......... .......... .......... .......... 66% 191M 1s -2024-04-05T03:51:23Z #15 2.754 84800K .......... .......... .......... .......... .......... 66% 162M 1s -2024-04-05T03:51:23Z #15 2.754 84850K .......... .......... .......... .......... .......... 66% 173M 1s -2024-04-05T03:51:23Z #15 2.754 84900K .......... .......... .......... .......... .......... 67% 189M 1s -2024-04-05T03:51:23Z #15 2.754 84950K .......... .......... .......... .......... .......... 67% 185M 1s -2024-04-05T03:51:23Z #15 2.754 85000K .......... .......... .......... .......... .......... 67% 155M 1s -2024-04-05T03:51:23Z #15 2.754 85050K .......... .......... .......... .......... .......... 67% 155M 1s -2024-04-05T03:51:23Z #15 2.754 85100K .......... .......... .......... .......... .......... 67% 175M 1s -2024-04-05T03:51:23Z #15 2.754 85150K .......... .......... .......... .......... .......... 67% 157M 1s -2024-04-05T03:51:23Z #15 2.755 85200K .......... .......... .......... .......... .......... 67% 146M 1s -2024-04-05T03:51:23Z #15 2.755 85250K .......... .......... .......... .......... .......... 67% 154M 1s -2024-04-05T03:51:23Z #15 2.755 85300K .......... .......... .......... .......... .......... 67% 143M 1s -2024-04-05T03:51:23Z #15 2.756 85350K .......... .......... .......... .......... .......... 67% 139M 1s -2024-04-05T03:51:23Z #15 2.756 85400K .......... .......... .......... .......... .......... 67% 124M 1s -2024-04-05T03:51:23Z #15 2.756 85450K .......... .......... .......... .......... .......... 67% 127M 1s -2024-04-05T03:51:23Z #15 2.757 85500K .......... .......... .......... .......... .......... 67% 165M 1s -2024-04-05T03:51:23Z #15 2.757 85550K .......... .......... .......... .......... .......... 67% 136M 1s -2024-04-05T03:51:23Z #15 2.757 85600K .......... .......... .......... .......... .......... 67% 162M 1s -2024-04-05T03:51:23Z #15 2.758 85650K .......... .......... .......... .......... .......... 67% 127M 1s -2024-04-05T03:51:23Z #15 2.758 85700K .......... .......... .......... .......... .......... 67% 162M 1s -2024-04-05T03:51:23Z #15 2.758 85750K .......... .......... .......... .......... .......... 67% 153M 1s -2024-04-05T03:51:23Z #15 2.759 85800K .......... .......... .......... .......... .......... 67% 125M 1s -2024-04-05T03:51:23Z #15 2.759 85850K .......... .......... .......... .......... .......... 67% 170M 1s -2024-04-05T03:51:23Z #15 2.759 85900K .......... .......... .......... .......... .......... 67% 152M 1s -2024-04-05T03:51:23Z #15 2.760 85950K .......... .......... .......... .......... .......... 67% 156M 1s -2024-04-05T03:51:23Z #15 2.760 86000K .......... .......... .......... .......... .......... 67% 118M 1s -2024-04-05T03:51:23Z #15 2.760 86050K .......... .......... .......... .......... .......... 67% 148M 1s -2024-04-05T03:51:23Z #15 2.761 86100K .......... .......... .......... .......... .......... 67% 132M 1s -2024-04-05T03:51:23Z #15 2.761 86150K .......... .......... .......... .......... .......... 67% 149M 1s -2024-04-05T03:51:23Z #15 2.761 86200K .......... .......... .......... .......... .......... 68% 124M 1s -2024-04-05T03:51:23Z #15 2.762 86250K .......... .......... .......... .......... .......... 68% 149M 1s -2024-04-05T03:51:23Z #15 2.762 86300K .......... .......... .......... .......... .......... 68% 167M 1s -2024-04-05T03:51:23Z #15 2.762 86350K .......... .......... .......... .......... .......... 68% 149M 1s -2024-04-05T03:51:23Z #15 2.763 86400K .......... .......... .......... .......... .......... 68% 158M 1s -2024-04-05T03:51:23Z #15 2.763 86450K .......... .......... .......... .......... .......... 68% 164M 1s -2024-04-05T03:51:23Z #15 2.763 86500K .......... .......... .......... .......... .......... 68% 168M 1s -2024-04-05T03:51:23Z #15 2.764 86550K .......... .......... .......... .......... .......... 68% 141M 1s -2024-04-05T03:51:23Z #15 2.765 86600K .......... .......... .......... .......... .......... 68% 179M 1s -2024-04-05T03:51:23Z #15 2.766 86650K .......... .......... .......... .......... .......... 68% 184M 1s -2024-04-05T03:51:23Z #15 2.766 86700K .......... .......... .......... .......... .......... 68% 148M 1s -2024-04-05T03:51:23Z #15 2.766 86750K .......... .......... .......... .......... .......... 68% 159M 1s -2024-04-05T03:51:23Z #15 2.766 86800K .......... .......... .......... .......... .......... 68% 179M 1s -2024-04-05T03:51:23Z #15 2.766 86850K .......... .......... .......... .......... .......... 68% 660K 1s -2024-04-05T03:51:23Z #15 2.846 86900K .......... .......... .......... .......... .......... 68% 143M 1s -2024-04-05T03:51:23Z #15 2.846 86950K .......... .......... .......... .......... .......... 68% 137M 1s -2024-04-05T03:51:23Z #15 2.846 87000K .......... .......... .......... .......... .......... 68% 160M 1s -2024-04-05T03:51:23Z #15 2.846 87050K .......... .......... .......... .......... .......... 68% 118M 1s -2024-04-05T03:51:23Z #15 2.846 87100K .......... .......... .......... .......... .......... 68% 126M 1s -2024-04-05T03:51:23Z #15 2.846 87150K .......... .......... .......... .......... .......... 68% 140M 1s -2024-04-05T03:51:23Z #15 2.846 87200K .......... .......... .......... .......... .......... 68% 147M 1s -2024-04-05T03:51:23Z #15 2.846 87250K .......... .......... .......... .......... .......... 68% 150M 1s -2024-04-05T03:51:23Z #15 2.846 87300K .......... .......... .......... .......... .......... 68% 124M 1s -2024-04-05T03:51:23Z #15 2.846 87350K .......... .......... .......... .......... .......... 68% 112M 1s -2024-04-05T03:51:23Z #15 2.846 87400K .......... .......... .......... .......... .......... 68% 154M 1s -2024-04-05T03:51:23Z #15 2.846 87450K .......... .......... .......... .......... .......... 69% 155M 1s -2024-04-05T03:51:23Z #15 2.846 87500K .......... .......... .......... .......... .......... 69% 58.0M 1s -2024-04-05T03:51:23Z #15 2.847 87550K .......... .......... .......... .......... .......... 69% 25.0M 1s -2024-04-05T03:51:23Z #15 2.850 87600K .......... .......... .......... .......... .......... 69% 21.9M 1s -2024-04-05T03:51:23Z #15 2.853 87650K .......... .......... .......... .......... .......... 69% 24.2M 1s -2024-04-05T03:51:23Z #15 2.853 87700K .......... .......... .......... .......... .......... 69% 50.1M 1s -2024-04-05T03:51:23Z #15 2.858 87750K .......... .......... .......... .......... .......... 69% 23.7M 1s -2024-04-05T03:51:23Z #15 2.858 87800K .......... .......... .......... .......... .......... 69% 17.0M 1s -2024-04-05T03:51:23Z #15 2.858 87850K .......... .......... .......... .......... .......... 69% 4.24M 1s -2024-04-05T03:51:23Z #15 2.870 87900K .......... .......... .......... .......... .......... 69% 114M 1s -2024-04-05T03:51:23Z #15 2.871 87950K .......... .......... .......... .......... .......... 69% 126M 1s -2024-04-05T03:51:23Z #15 2.871 88000K .......... .......... .......... .......... .......... 69% 126M 1s -2024-04-05T03:51:23Z #15 2.871 88050K .......... .......... .......... .......... .......... 69% 106M 1s -2024-04-05T03:51:23Z #15 2.872 88100K .......... .......... .......... .......... .......... 69% 121M 1s -2024-04-05T03:51:23Z #15 2.872 88150K .......... .......... .......... .......... .......... 69% 127M 1s -2024-04-05T03:51:23Z #15 2.873 88200K .......... .......... .......... .......... .......... 69% 112M 1s -2024-04-05T03:51:23Z #15 2.873 88250K .......... .......... .......... .......... .......... 69% 144M 1s -2024-04-05T03:51:23Z #15 2.873 88300K .......... .......... .......... .......... .......... 69% 112M 1s -2024-04-05T03:51:23Z #15 2.874 88350K .......... .......... .......... .......... .......... 69% 10.2M 1s -2024-04-05T03:51:23Z #15 2.878 88400K .......... .......... .......... .......... .......... 69% 113M 1s -2024-04-05T03:51:23Z #15 2.879 88450K .......... .......... .......... .......... .......... 69% 16.1M 1s -2024-04-05T03:51:23Z #15 2.882 88500K .......... .......... .......... .......... .......... 69% 115M 1s -2024-04-05T03:51:23Z #15 2.882 88550K .......... .......... .......... .......... .......... 69% 124M 1s -2024-04-05T03:51:23Z #15 2.883 88600K .......... .......... .......... .......... .......... 69% 109M 1s -2024-04-05T03:51:23Z #15 2.883 88650K .......... .......... .......... .......... .......... 69% 25.4M 1s -2024-04-05T03:51:23Z #15 2.885 88700K .......... .......... .......... .......... .......... 70% 116M 1s -2024-04-05T03:51:23Z #15 2.885 88750K .......... .......... .......... .......... .......... 70% 5.73M 1s -2024-04-05T03:51:23Z #15 2.894 88800K .......... .......... .......... .......... .......... 70% 113M 1s -2024-04-05T03:51:23Z #15 2.895 88850K .......... .......... .......... .......... .......... 70% 145M 1s -2024-04-05T03:51:23Z #15 2.895 88900K .......... .......... .......... .......... .......... 70% 130M 1s -2024-04-05T03:51:23Z #15 2.895 88950K .......... .......... .......... .......... .......... 70% 120M 1s -2024-04-05T03:51:23Z #15 2.895 89000K .......... .......... .......... .......... .......... 70% 134M 1s -2024-04-05T03:51:23Z #15 2.896 89050K .......... .......... .......... .......... .......... 70% 132M 1s -2024-04-05T03:51:23Z #15 2.896 89100K .......... .......... .......... .......... .......... 70% 119M 1s -2024-04-05T03:51:23Z #15 2.897 89150K .......... .......... .......... .......... .......... 70% 136M 1s -2024-04-05T03:51:23Z #15 2.897 89200K .......... .......... .......... .......... .......... 70% 131M 1s -2024-04-05T03:51:23Z #15 2.897 89250K .......... .......... .......... .......... .......... 70% 110M 1s -2024-04-05T03:51:23Z #15 2.898 89300K .......... .......... .......... .......... .......... 70% 127M 1s -2024-04-05T03:51:23Z #15 2.898 89350K .......... .......... .......... .......... .......... 70% 111M 1s -2024-04-05T03:51:23Z #15 2.899 89400K .......... .......... .......... .......... .......... 70% 127M 1s -2024-04-05T03:51:23Z #15 2.899 89450K .......... .......... .......... .......... .......... 70% 124M 1s -2024-04-05T03:51:23Z #15 2.900 89500K .......... .......... .......... .......... .......... 70% 119M 1s -2024-04-05T03:51:23Z #15 2.900 89550K .......... .......... .......... .......... .......... 70% 110M 1s -2024-04-05T03:51:23Z #15 2.900 89600K .......... .......... .......... .......... .......... 70% 108M 1s -2024-04-05T03:51:23Z #15 2.901 89650K .......... .......... .......... .......... .......... 70% 117M 1s -2024-04-05T03:51:23Z #15 2.901 89700K .......... .......... .......... .......... .......... 70% 116M 1s -2024-04-05T03:51:23Z #15 2.902 89750K .......... .......... .......... .......... .......... 70% 5.81M 1s -2024-04-05T03:51:23Z #15 2.911 89800K .......... .......... .......... .......... .......... 70% 174M 1s -2024-04-05T03:51:23Z #15 2.911 89850K .......... .......... .......... .......... .......... 70% 169M 1s -2024-04-05T03:51:23Z #15 2.911 89900K .......... .......... .......... .......... .......... 70% 161M 1s -2024-04-05T03:51:23Z #15 2.911 89950K .......... .......... .......... .......... .......... 70% 144M 1s -2024-04-05T03:51:23Z #15 2.912 90000K .......... .......... .......... .......... .......... 71% 104M 1s -2024-04-05T03:51:23Z #15 2.912 90050K .......... .......... .......... .......... .......... 71% 119M 1s -2024-04-05T03:51:23Z #15 2.912 90100K .......... .......... .......... .......... .......... 71% 126M 1s -2024-04-05T03:51:23Z #15 2.912 90150K .......... .......... .......... .......... .......... 71% 131M 1s -2024-04-05T03:51:23Z #15 2.913 90200K .......... .......... .......... .......... .......... 71% 110M 1s -2024-04-05T03:51:23Z #15 2.913 90250K .......... .......... .......... .......... .......... 71% 130M 1s -2024-04-05T03:51:23Z #15 2.914 90300K .......... .......... .......... .......... .......... 71% 120M 1s -2024-04-05T03:51:23Z #15 2.914 90350K .......... .......... .......... .......... .......... 71% 111M 1s -2024-04-05T03:51:24Z #15 2.914 90400K .......... .......... .......... .......... .......... 71% 120M 1s -2024-04-05T03:51:24Z #15 2.915 90450K .......... .......... .......... .......... .......... 71% 128M 1s -2024-04-05T03:51:24Z #15 2.915 90500K .......... .......... .......... .......... .......... 71% 131M 1s -2024-04-05T03:51:24Z #15 2.916 90550K .......... .......... .......... .......... .......... 71% 127M 1s -2024-04-05T03:51:24Z #15 2.916 90600K .......... .......... .......... .......... .......... 71% 111M 1s -2024-04-05T03:51:24Z #15 2.916 90650K .......... .......... .......... .......... .......... 71% 128M 1s -2024-04-05T03:51:24Z #15 2.917 90700K .......... .......... .......... .......... .......... 71% 137M 1s -2024-04-05T03:51:24Z #15 2.917 90750K .......... .......... .......... .......... .......... 71% 115M 1s -2024-04-05T03:51:24Z #15 2.918 90800K .......... .......... .......... .......... .......... 71% 40.9M 1s -2024-04-05T03:51:24Z #15 2.919 90850K .......... .......... .......... .......... .......... 71% 133M 1s -2024-04-05T03:51:24Z #15 2.919 90900K .......... .......... .......... .......... .......... 71% 133M 1s -2024-04-05T03:51:24Z #15 2.920 90950K .......... .......... .......... .......... .......... 71% 119M 1s -2024-04-05T03:51:24Z #15 2.920 91000K .......... .......... .......... .......... .......... 71% 123M 1s -2024-04-05T03:51:24Z #15 2.920 91050K .......... .......... .......... .......... .......... 71% 143M 1s -2024-04-05T03:51:24Z #15 2.921 91100K .......... .......... .......... .......... .......... 71% 135M 1s -2024-04-05T03:51:24Z #15 2.921 91150K .......... .......... .......... .......... .......... 71% 101M 1s -2024-04-05T03:51:24Z #15 2.922 91200K .......... .......... .......... .......... .......... 71% 62.5M 1s -2024-04-05T03:51:24Z #15 2.922 91250K .......... .......... .......... .......... .......... 72% 131M 1s -2024-04-05T03:51:24Z #15 2.923 91300K .......... .......... .......... .......... .......... 72% 110M 1s -2024-04-05T03:51:24Z #15 2.923 91350K .......... .......... .......... .......... .......... 72% 139M 1s -2024-04-05T03:51:24Z #15 2.924 91400K .......... .......... .......... .......... .......... 72% 116M 1s -2024-04-05T03:51:24Z #15 2.924 91450K .......... .......... .......... .......... .......... 72% 140M 1s -2024-04-05T03:51:24Z #15 2.924 91500K .......... .......... .......... .......... .......... 72% 128M 1s -2024-04-05T03:51:24Z #15 2.925 91550K .......... .......... .......... .......... .......... 72% 110M 1s -2024-04-05T03:51:24Z #15 2.925 91600K .......... .......... .......... .......... .......... 72% 119M 1s -2024-04-05T03:51:24Z #15 2.926 91650K .......... .......... .......... .......... .......... 72% 55.7M 1s -2024-04-05T03:51:24Z #15 2.926 91700K .......... .......... .......... .......... .......... 72% 68.7M 1s -2024-04-05T03:51:24Z #15 2.927 91750K .......... .......... .......... .......... .......... 72% 101M 1s -2024-04-05T03:51:24Z #15 2.928 91800K .......... .......... .......... .......... .......... 72% 133M 1s -2024-04-05T03:51:24Z #15 2.928 91850K .......... .......... .......... .......... .......... 72% 77.9M 1s -2024-04-05T03:51:24Z #15 2.929 91900K .......... .......... .......... .......... .......... 72% 65.5M 1s -2024-04-05T03:51:24Z #15 2.934 91950K .......... .......... .......... .......... .......... 72% 178M 1s -2024-04-05T03:51:24Z #15 2.934 92000K .......... .......... .......... .......... .......... 72% 165M 1s -2024-04-05T03:51:24Z #15 2.934 92050K .......... .......... .......... .......... .......... 72% 171M 1s -2024-04-05T03:51:24Z #15 2.934 92100K .......... .......... .......... .......... .......... 72% 164M 1s -2024-04-05T03:51:24Z #15 2.934 92150K .......... .......... .......... .......... .......... 72% 189M 1s -2024-04-05T03:51:24Z #15 2.934 92200K .......... .......... .......... .......... .......... 72% 173M 1s -2024-04-05T03:51:24Z #15 2.934 92250K .......... .......... .......... .......... .......... 72% 144M 1s -2024-04-05T03:51:24Z #15 2.934 92300K .......... .......... .......... .......... .......... 72% 176M 1s -2024-04-05T03:51:24Z #15 2.934 92350K .......... .......... .......... .......... .......... 72% 142M 1s -2024-04-05T03:51:24Z #15 2.934 92400K .......... .......... .......... .......... .......... 72% 182M 1s -2024-04-05T03:51:24Z #15 2.934 92450K .......... .......... .......... .......... .......... 72% 164M 1s -2024-04-05T03:51:24Z #15 2.934 92500K .......... .......... .......... .......... .......... 72% 183M 1s -2024-04-05T03:51:24Z #15 2.934 92550K .......... .......... .......... .......... .......... 73% 167M 1s -2024-04-05T03:51:24Z #15 2.934 92600K .......... .......... .......... .......... .......... 73% 187M 1s -2024-04-05T03:51:24Z #15 2.934 92650K .......... .......... .......... .......... .......... 73% 167M 1s -2024-04-05T03:51:24Z #15 2.934 92700K .......... .......... .......... .......... .......... 73% 125M 1s -2024-04-05T03:51:24Z #15 2.936 92750K .......... .......... .......... .......... .......... 73% 130M 1s -2024-04-05T03:51:24Z #15 2.936 92800K .......... .......... .......... .......... .......... 73% 120M 1s -2024-04-05T03:51:24Z #15 2.936 92850K .......... .......... .......... .......... .......... 73% 137M 1s -2024-04-05T03:51:24Z #15 2.936 92900K .......... .......... .......... .......... .......... 73% 98.9M 1s -2024-04-05T03:51:24Z #15 2.936 92950K .......... .......... .......... .......... .......... 73% 121M 1s -2024-04-05T03:51:24Z #15 2.936 93000K .......... .......... .......... .......... .......... 73% 58.9M 1s -2024-04-05T03:51:24Z #15 2.937 93050K .......... .......... .......... .......... .......... 73% 127M 1s -2024-04-05T03:51:24Z #15 2.937 93100K .......... .......... .......... .......... .......... 73% 123M 1s -2024-04-05T03:51:24Z #15 2.938 93150K .......... .......... .......... .......... .......... 73% 130M 1s -2024-04-05T03:51:24Z #15 2.938 93200K .......... .......... .......... .......... .......... 73% 122M 1s -2024-04-05T03:51:24Z #15 2.938 93250K .......... .......... .......... .......... .......... 73% 135M 1s -2024-04-05T03:51:24Z #15 2.939 93300K .......... .......... .......... .......... .......... 73% 108M 1s -2024-04-05T03:51:24Z #15 2.939 93350K .......... .......... .......... .......... .......... 73% 112M 1s -2024-04-05T03:51:24Z #15 2.940 93400K .......... .......... .......... .......... .......... 73% 120M 1s -2024-04-05T03:51:24Z #15 2.940 93450K .......... .......... .......... .......... .......... 73% 124M 1s -2024-04-05T03:51:24Z #15 2.941 93500K .......... .......... .......... .......... .......... 73% 119M 1s -2024-04-05T03:51:24Z #15 2.941 93550K .......... .......... .......... .......... .......... 73% 114M 1s -2024-04-05T03:51:24Z #15 2.941 93600K .......... .......... .......... .......... .......... 73% 94.7M 1s -2024-04-05T03:51:24Z #15 2.942 93650K .......... .......... .......... .......... .......... 73% 100M 1s -2024-04-05T03:51:24Z #15 2.954 93700K .......... .......... .......... .......... .......... 73% 149M 1s -2024-04-05T03:51:24Z #15 2.954 93750K .......... .......... .......... .......... .......... 73% 107M 1s -2024-04-05T03:51:24Z #15 2.954 93800K .......... .......... .......... .......... .......... 74% 120M 1s -2024-04-05T03:51:24Z #15 2.954 93850K .......... .......... .......... .......... .......... 74% 76.5M 1s -2024-04-05T03:51:24Z #15 2.954 93900K .......... .......... .......... .......... .......... 74% 108M 1s -2024-04-05T03:51:24Z #15 2.954 93950K .......... .......... .......... .......... .......... 74% 144M 1s -2024-04-05T03:51:24Z #15 2.954 94000K .......... .......... .......... .......... .......... 74% 151M 1s -2024-04-05T03:51:24Z #15 2.954 94050K .......... .......... .......... .......... .......... 74% 138M 1s -2024-04-05T03:51:24Z #15 2.954 94100K .......... .......... .......... .......... .......... 74% 128M 1s -2024-04-05T03:51:24Z #15 2.954 94150K .......... .......... .......... .......... .......... 74% 145M 1s -2024-04-05T03:51:24Z #15 2.954 94200K .......... .......... .......... .......... .......... 74% 138M 1s -2024-04-05T03:51:24Z #15 2.954 94250K .......... .......... .......... .......... .......... 74% 157M 1s -2024-04-05T03:51:24Z #15 2.954 94300K .......... .......... .......... .......... .......... 74% 162M 1s -2024-04-05T03:51:24Z #15 2.954 94350K .......... .......... .......... .......... .......... 74% 160M 1s -2024-04-05T03:51:24Z #15 2.954 94400K .......... .......... .......... .......... .......... 74% 145M 1s -2024-04-05T03:51:24Z #15 2.954 94450K .......... .......... .......... .......... .......... 74% 130M 1s -2024-04-05T03:51:24Z #15 2.954 94500K .......... .......... .......... .......... .......... 74% 156M 1s -2024-04-05T03:51:24Z #15 2.954 94550K .......... .......... .......... .......... .......... 74% 155M 1s -2024-04-05T03:51:24Z #15 2.954 94600K .......... .......... .......... .......... .......... 74% 156M 1s -2024-04-05T03:51:24Z #15 2.954 94650K .......... .......... .......... .......... .......... 74% 156M 1s -2024-04-05T03:51:24Z #15 2.954 94700K .......... .......... .......... .......... .......... 74% 104M 1s -2024-04-05T03:51:24Z #15 2.954 94750K .......... .......... .......... .......... .......... 74% 139M 1s -2024-04-05T03:51:24Z #15 2.954 94800K .......... .......... .......... .......... .......... 74% 110M 1s -2024-04-05T03:51:24Z #15 2.954 94850K .......... .......... .......... .......... .......... 74% 109M 1s -2024-04-05T03:51:24Z #15 2.954 94900K .......... .......... .......... .......... .......... 74% 103M 1s -2024-04-05T03:51:24Z #15 2.954 94950K .......... .......... .......... .......... .......... 74% 103M 1s -2024-04-05T03:51:24Z #15 2.954 95000K .......... .......... .......... .......... .......... 74% 129M 1s -2024-04-05T03:51:24Z #15 2.954 95050K .......... .......... .......... .......... .......... 75% 117M 1s -2024-04-05T03:51:24Z #15 2.954 95100K .......... .......... .......... .......... .......... 75% 102M 1s -2024-04-05T03:51:24Z #15 2.954 95150K .......... .......... .......... .......... .......... 75% 104M 1s -2024-04-05T03:51:24Z #15 2.954 95200K .......... .......... .......... .......... .......... 75% 115M 1s -2024-04-05T03:51:24Z #15 2.960 95250K .......... .......... .......... .......... .......... 75% 110M 0s -2024-04-05T03:51:24Z #15 2.960 95300K .......... .......... .......... .......... .......... 75% 117M 0s -2024-04-05T03:51:24Z #15 2.960 95350K .......... .......... .......... .......... .......... 75% 114M 0s -2024-04-05T03:51:24Z #15 2.960 95400K .......... .......... .......... .......... .......... 75% 103M 0s -2024-04-05T03:51:24Z #15 2.960 95450K .......... .......... .......... .......... .......... 75% 122M 0s -2024-04-05T03:51:24Z #15 2.960 95500K .......... .......... .......... .......... .......... 75% 139M 0s -2024-04-05T03:51:24Z #15 2.960 95550K .......... .......... .......... .......... .......... 75% 97.1M 0s -2024-04-05T03:51:24Z #15 2.960 95600K .......... .......... .......... .......... .......... 75% 114M 0s -2024-04-05T03:51:24Z #15 2.960 95650K .......... .......... .......... .......... .......... 75% 108M 0s -2024-04-05T03:51:24Z #15 2.960 95700K .......... .......... .......... .......... .......... 75% 128M 0s -2024-04-05T03:51:24Z #15 2.960 95750K .......... .......... .......... .......... .......... 75% 111M 0s -2024-04-05T03:51:24Z #15 2.960 95800K .......... .......... .......... .......... .......... 75% 111M 0s -2024-04-05T03:51:24Z #15 2.960 95850K .......... .......... .......... .......... .......... 75% 51.8M 0s -2024-04-05T03:51:24Z #15 2.984 95900K .......... .......... .......... .......... .......... 75% 28.3M 0s -2024-04-05T03:51:24Z #15 2.984 95950K .......... .......... .......... .......... .......... 75% 183M 0s -2024-04-05T03:51:24Z #15 2.984 96000K .......... .......... .......... .......... .......... 75% 152M 0s -2024-04-05T03:51:24Z #15 2.984 96050K .......... .......... .......... .......... .......... 75% 150M 0s -2024-04-05T03:51:24Z #15 2.984 96100K .......... .......... .......... .......... .......... 75% 198M 0s -2024-04-05T03:51:24Z #15 2.984 96150K .......... .......... .......... .......... .......... 75% 147M 0s -2024-04-05T03:51:24Z #15 2.984 96200K .......... .......... .......... .......... .......... 75% 179M 0s -2024-04-05T03:51:24Z #15 2.984 96250K .......... .......... .......... .......... .......... 75% 144M 0s -2024-04-05T03:51:24Z #15 2.984 96300K .......... .......... .......... .......... .......... 75% 158M 0s -2024-04-05T03:51:24Z #15 2.984 96350K .......... .......... .......... .......... .......... 76% 142M 0s -2024-04-05T03:51:24Z #15 2.984 96400K .......... .......... .......... .......... .......... 76% 144M 0s -2024-04-05T03:51:24Z #15 2.984 96450K .......... .......... .......... .......... .......... 76% 137M 0s -2024-04-05T03:51:24Z #15 2.984 96500K .......... .......... .......... .......... .......... 76% 89.0M 0s -2024-04-05T03:51:24Z #15 2.984 96550K .......... .......... .......... .......... .......... 76% 129M 0s -2024-04-05T03:51:24Z #15 2.984 96600K .......... .......... .......... .......... .......... 76% 24.8M 0s -2024-04-05T03:51:24Z #15 2.984 96650K .......... .......... .......... .......... .......... 76% 133M 0s -2024-04-05T03:51:24Z #15 2.984 96700K .......... .......... .......... .......... .......... 76% 134M 0s -2024-04-05T03:51:24Z #15 2.984 96750K .......... .......... .......... .......... .......... 76% 123M 0s -2024-04-05T03:51:24Z #15 2.984 96800K .......... .......... .......... .......... .......... 76% 108M 0s -2024-04-05T03:51:24Z #15 2.984 96850K .......... .......... .......... .......... .......... 76% 144M 0s -2024-04-05T03:51:24Z #15 2.984 96900K .......... .......... .......... .......... .......... 76% 28.3M 0s -2024-04-05T03:51:24Z #15 2.984 96950K .......... .......... .......... .......... .......... 76% 138M 0s -2024-04-05T03:51:24Z #15 2.984 97000K .......... .......... .......... .......... .......... 76% 122M 0s -2024-04-05T03:51:24Z #15 2.984 97050K .......... .......... .......... .......... .......... 76% 146M 0s -2024-04-05T03:51:24Z #15 2.984 97100K .......... .......... .......... .......... .......... 76% 102M 0s -2024-04-05T03:51:24Z #15 2.984 97150K .......... .......... .......... .......... .......... 76% 27.4M 0s -2024-04-05T03:51:24Z #15 2.984 97200K .......... .......... .......... .......... .......... 76% 122M 0s -2024-04-05T03:51:24Z #15 2.984 97250K .......... .......... .......... .......... .......... 76% 159M 0s -2024-04-05T03:51:24Z #15 2.984 97300K .......... .......... .......... .......... .......... 76% 128M 0s -2024-04-05T03:51:24Z #15 2.984 97350K .......... .......... .......... .......... .......... 76% 131M 0s -2024-04-05T03:51:24Z #15 2.984 97400K .......... .......... .......... .......... .......... 76% 26.8M 0s -2024-04-05T03:51:24Z #15 2.984 97450K .......... .......... .......... .......... .......... 76% 165M 0s -2024-04-05T03:51:24Z #15 2.984 97500K .......... .......... .......... .......... .......... 76% 172M 0s -2024-04-05T03:51:24Z #15 2.984 97550K .......... .......... .......... .......... .......... 76% 178M 0s -2024-04-05T03:51:24Z #15 2.984 97600K .......... .......... .......... .......... .......... 77% 164M 0s -2024-04-05T03:51:24Z #15 2.984 97650K .......... .......... .......... .......... .......... 77% 152M 0s -2024-04-05T03:51:24Z #15 2.984 97700K .......... .......... .......... .......... .......... 77% 165M 0s -2024-04-05T03:51:24Z #15 2.984 97750K .......... .......... .......... .......... .......... 77% 28.5M 0s -2024-04-05T03:51:24Z #15 2.984 97800K .......... .......... .......... .......... .......... 77% 121M 0s -2024-04-05T03:51:24Z #15 2.984 97850K .......... .......... .......... .......... .......... 77% 136M 0s -2024-04-05T03:51:24Z #15 2.984 97900K .......... .......... .......... .......... .......... 77% 93.3M 0s -2024-04-05T03:51:24Z #15 2.984 97950K .......... .......... .......... .......... .......... 77% 128M 0s -2024-04-05T03:51:24Z #15 2.985 98000K .......... .......... .......... .......... .......... 77% 124M 0s -2024-04-05T03:51:24Z #15 2.985 98050K .......... .......... .......... .......... .......... 77% 68.7M 0s -2024-04-05T03:51:24Z #15 2.985 98100K .......... .......... .......... .......... .......... 77% 140M 0s -2024-04-05T03:51:24Z #15 2.985 98150K .......... .......... .......... .......... .......... 77% 121M 0s -2024-04-05T03:51:24Z #15 2.986 98200K .......... .......... .......... .......... .......... 77% 66.1M 0s -2024-04-05T03:51:24Z #15 2.987 98250K .......... .......... .......... .......... .......... 77% 135M 0s -2024-04-05T03:51:24Z #15 2.987 98300K .......... .......... .......... .......... .......... 77% 115M 0s -2024-04-05T03:51:24Z #15 2.988 98350K .......... .......... .......... .......... .......... 77% 85.2M 0s -2024-04-05T03:51:24Z #15 2.988 98400K .......... .......... .......... .......... .......... 77% 84.1M 0s -2024-04-05T03:51:24Z #15 2.989 98450K .......... .......... .......... .......... .......... 77% 92.5M 0s -2024-04-05T03:51:24Z #15 2.989 98500K .......... .......... .......... .......... .......... 77% 112M 0s -2024-04-05T03:51:24Z #15 2.990 98550K .......... .......... .......... .......... .......... 77% 96.6M 0s -2024-04-05T03:51:24Z #15 2.990 98600K .......... .......... .......... .......... .......... 77% 113M 0s -2024-04-05T03:51:24Z #15 2.995 98650K .......... .......... .......... .......... .......... 77% 177M 0s -2024-04-05T03:51:24Z #15 2.995 98700K .......... .......... .......... .......... .......... 77% 177M 0s -2024-04-05T03:51:24Z #15 2.995 98750K .......... .......... .......... .......... .......... 77% 165M 0s -2024-04-05T03:51:24Z #15 2.995 98800K .......... .......... .......... .......... .......... 77% 186M 0s -2024-04-05T03:51:24Z #15 2.995 98850K .......... .......... .......... .......... .......... 78% 184M 0s -2024-04-05T03:51:24Z #15 2.995 98900K .......... .......... .......... .......... .......... 78% 191M 0s -2024-04-05T03:51:24Z #15 2.995 98950K .......... .......... .......... .......... .......... 78% 149M 0s -2024-04-05T03:51:24Z #15 2.995 99000K .......... .......... .......... .......... .......... 78% 180M 0s -2024-04-05T03:51:24Z #15 2.995 99050K .......... .......... .......... .......... .......... 78% 190M 0s -2024-04-05T03:51:24Z #15 2.995 99100K .......... .......... .......... .......... .......... 78% 164M 0s -2024-04-05T03:51:24Z #15 2.995 99150K .......... .......... .......... .......... .......... 78% 140M 0s -2024-04-05T03:51:24Z #15 2.995 99200K .......... .......... .......... .......... .......... 78% 112M 0s -2024-04-05T03:51:24Z #15 2.995 99250K .......... .......... .......... .......... .......... 78% 131M 0s -2024-04-05T03:51:24Z #15 2.995 99300K .......... .......... .......... .......... .......... 78% 129M 0s -2024-04-05T03:51:24Z #15 2.995 99350K .......... .......... .......... .......... .......... 78% 114M 0s -2024-04-05T03:51:24Z #15 2.995 99400K .......... .......... .......... .......... .......... 78% 139M 0s -2024-04-05T03:51:24Z #15 2.996 99450K .......... .......... .......... .......... .......... 78% 133M 0s -2024-04-05T03:51:24Z #15 2.998 99500K .......... .......... .......... .......... .......... 78% 135M 0s -2024-04-05T03:51:24Z #15 2.998 99550K .......... .......... .......... .......... .......... 78% 123M 0s -2024-04-05T03:51:24Z #15 2.998 99600K .......... .......... .......... .......... .......... 78% 131M 0s -2024-04-05T03:51:24Z #15 2.998 99650K .......... .......... .......... .......... .......... 78% 143M 0s -2024-04-05T03:51:24Z #15 2.998 99700K .......... .......... .......... .......... .......... 78% 124M 0s -2024-04-05T03:51:24Z #15 2.998 99750K .......... .......... .......... .......... .......... 78% 120M 0s -2024-04-05T03:51:24Z #15 2.998 99800K .......... .......... .......... .......... .......... 78% 56.3M 0s -2024-04-05T03:51:24Z #15 2.999 99850K .......... .......... .......... .......... .......... 78% 62.9M 0s -2024-04-05T03:51:24Z #15 3.000 99900K .......... .......... .......... .......... .......... 78% 61.8M 0s -2024-04-05T03:51:24Z #15 3.001 99950K .......... .......... .......... .......... .......... 78% 141M 0s -2024-04-05T03:51:24Z #15 3.001 100000K .......... .......... .......... .......... .......... 78% 70.7M 0s -2024-04-05T03:51:24Z #15 3.002 100050K .......... .......... .......... .......... .......... 78% 107M 0s -2024-04-05T03:51:24Z #15 3.006 100100K .......... .......... .......... .......... .......... 78% 147M 0s -2024-04-05T03:51:24Z #15 3.006 100150K .......... .......... .......... .......... .......... 79% 186M 0s -2024-04-05T03:51:24Z #15 3.006 100200K .......... .......... .......... .......... .......... 79% 168M 0s -2024-04-05T03:51:24Z #15 3.006 100250K .......... .......... .......... .......... .......... 79% 168M 0s -2024-04-05T03:51:24Z #15 3.006 100300K .......... .......... .......... .......... .......... 79% 130M 0s -2024-04-05T03:51:24Z #15 3.006 100350K .......... .......... .......... .......... .......... 79% 188M 0s -2024-04-05T03:51:24Z #15 3.006 100400K .......... .......... .......... .......... .......... 79% 162M 0s -2024-04-05T03:51:24Z #15 3.006 100450K .......... .......... .......... .......... .......... 79% 180M 0s -2024-04-05T03:51:24Z #15 3.006 100500K .......... .......... .......... .......... .......... 79% 167M 0s -2024-04-05T03:51:24Z #15 3.006 100550K .......... .......... .......... .......... .......... 79% 180M 0s -2024-04-05T03:51:24Z #15 3.006 100600K .......... .......... .......... .......... .......... 79% 191M 0s -2024-04-05T03:51:24Z #15 3.006 100650K .......... .......... .......... .......... .......... 79% 185M 0s -2024-04-05T03:51:24Z #15 3.006 100700K .......... .......... .......... .......... .......... 79% 111M 0s -2024-04-05T03:51:24Z #15 3.008 100750K .......... .......... .......... .......... .......... 79% 137M 0s -2024-04-05T03:51:24Z #15 3.008 100800K .......... .......... .......... .......... .......... 79% 141M 0s -2024-04-05T03:51:24Z #15 3.008 100850K .......... .......... .......... .......... .......... 79% 132M 0s -2024-04-05T03:51:24Z #15 3.008 100900K .......... .......... .......... .......... .......... 79% 125M 0s -2024-04-05T03:51:24Z #15 3.008 100950K .......... .......... .......... .......... .......... 79% 134M 0s -2024-04-05T03:51:24Z #15 3.008 101000K .......... .......... .......... .......... .......... 79% 136M 0s -2024-04-05T03:51:24Z #15 3.008 101050K .......... .......... .......... .......... .......... 79% 108M 0s -2024-04-05T03:51:24Z #15 3.009 101100K .......... .......... .......... .......... .......... 79% 109M 0s -2024-04-05T03:51:24Z #15 3.011 101150K .......... .......... .......... .......... .......... 79% 69.1M 0s -2024-04-05T03:51:24Z #15 3.011 101200K .......... .......... .......... .......... .......... 79% 143M 0s -2024-04-05T03:51:24Z #15 3.011 101250K .......... .......... .......... .......... .......... 79% 140M 0s -2024-04-05T03:51:24Z #15 3.011 101300K .......... .......... .......... .......... .......... 79% 123M 0s -2024-04-05T03:51:24Z #15 3.011 101350K .......... .......... .......... .......... .......... 79% 96.1M 0s -2024-04-05T03:51:24Z #15 3.012 101400K .......... .......... .......... .......... .......... 80% 109M 0s -2024-04-05T03:51:24Z #15 3.012 101450K .......... .......... .......... .......... .......... 80% 133M 0s -2024-04-05T03:51:24Z #15 3.012 101500K .......... .......... .......... .......... .......... 80% 98.7M 0s -2024-04-05T03:51:24Z #15 3.013 101550K .......... .......... .......... .......... .......... 80% 105M 0s -2024-04-05T03:51:24Z #15 3.016 101600K .......... .......... .......... .......... .......... 80% 180M 0s -2024-04-05T03:51:24Z #15 3.016 101650K .......... .......... .......... .......... .......... 80% 157M 0s -2024-04-05T03:51:24Z #15 3.016 101700K .......... .......... .......... .......... .......... 80% 158M 0s -2024-04-05T03:51:24Z #15 3.016 101750K .......... .......... .......... .......... .......... 80% 191M 0s -2024-04-05T03:51:24Z #15 3.016 101800K .......... .......... .......... .......... .......... 80% 176M 0s -2024-04-05T03:51:24Z #15 3.016 101850K .......... .......... .......... .......... .......... 80% 183M 0s -2024-04-05T03:51:24Z #15 3.016 101900K .......... .......... .......... .......... .......... 80% 95.4M 0s -2024-04-05T03:51:24Z #15 3.016 101950K .......... .......... .......... .......... .......... 80% 136M 0s -2024-04-05T03:51:24Z #15 3.016 102000K .......... .......... .......... .......... .......... 80% 146M 0s -2024-04-05T03:51:24Z #15 3.016 102050K .......... .......... .......... .......... .......... 80% 108M 0s -2024-04-05T03:51:24Z #15 3.017 102100K .......... .......... .......... .......... .......... 80% 68.6M 0s -2024-04-05T03:51:24Z #15 3.017 102150K .......... .......... .......... .......... .......... 80% 134M 0s -2024-04-05T03:51:24Z #15 3.018 102200K .......... .......... .......... .......... .......... 80% 91.3M 0s -2024-04-05T03:51:24Z #15 3.018 102250K .......... .......... .......... .......... .......... 80% 116M 0s -2024-04-05T03:51:24Z #15 3.019 102300K .......... .......... .......... .......... .......... 80% 128M 0s -2024-04-05T03:51:24Z #15 3.019 102350K .......... .......... .......... .......... .......... 80% 133M 0s -2024-04-05T03:51:24Z #15 3.020 102400K .......... .......... .......... .......... .......... 80% 134M 0s -2024-04-05T03:51:24Z #15 3.020 102450K .......... .......... .......... .......... .......... 80% 120M 0s -2024-04-05T03:51:24Z #15 3.020 102500K .......... .......... .......... .......... .......... 80% 127M 0s -2024-04-05T03:51:24Z #15 3.021 102550K .......... .......... .......... .......... .......... 80% 131M 0s -2024-04-05T03:51:24Z #15 3.021 102600K .......... .......... .......... .......... .......... 80% 132M 0s -2024-04-05T03:51:24Z #15 3.023 102650K .......... .......... .......... .......... .......... 81% 52.4M 0s -2024-04-05T03:51:24Z #15 3.023 102700K .......... .......... .......... .......... .......... 81% 54.5M 0s -2024-04-05T03:51:24Z #15 3.023 102750K .......... .......... .......... .......... .......... 81% 77.6M 0s -2024-04-05T03:51:24Z #15 3.024 102800K .......... .......... .......... .......... .......... 81% 64.5M 0s -2024-04-05T03:51:24Z #15 3.024 102850K .......... .......... .......... .......... .......... 81% 67.4M 0s -2024-04-05T03:51:24Z #15 3.026 102900K .......... .......... .......... .......... .......... 81% 134M 0s -2024-04-05T03:51:24Z #15 3.026 102950K .......... .......... .......... .......... .......... 81% 69.5M 0s -2024-04-05T03:51:24Z #15 3.027 103000K .......... .......... .......... .......... .......... 81% 123M 0s -2024-04-05T03:51:24Z #15 3.027 103050K .......... .......... .......... .......... .......... 81% 107M 0s -2024-04-05T03:51:24Z #15 3.027 103100K .......... .......... .......... .......... .......... 81% 98.4M 0s -2024-04-05T03:51:24Z #15 3.028 103150K .......... .......... .......... .......... .......... 81% 88.6M 0s -2024-04-05T03:51:24Z #15 3.028 103200K .......... .......... .......... .......... .......... 81% 98.7M 0s -2024-04-05T03:51:24Z #15 3.034 103250K .......... .......... .......... .......... .......... 81% 43.6M 0s -2024-04-05T03:51:24Z #15 3.034 103300K .......... .......... .......... .......... .......... 81% 168M 0s -2024-04-05T03:51:24Z #15 3.034 103350K .......... .......... .......... .......... .......... 81% 167M 0s -2024-04-05T03:51:24Z #15 3.034 103400K .......... .......... .......... .......... .......... 81% 160M 0s -2024-04-05T03:51:24Z #15 3.034 103450K .......... .......... .......... .......... .......... 81% 129M 0s -2024-04-05T03:51:24Z #15 3.034 103500K .......... .......... .......... .......... .......... 81% 163M 0s -2024-04-05T03:51:24Z #15 3.034 103550K .......... .......... .......... .......... .......... 81% 171M 0s -2024-04-05T03:51:24Z #15 3.034 103600K .......... .......... .......... .......... .......... 81% 165M 0s -2024-04-05T03:51:24Z #15 3.034 103650K .......... .......... .......... .......... .......... 81% 144M 0s -2024-04-05T03:51:24Z #15 3.034 103700K .......... .......... .......... .......... .......... 81% 175M 0s -2024-04-05T03:51:24Z #15 3.034 103750K .......... .......... .......... .......... .......... 81% 170M 0s -2024-04-05T03:51:24Z #15 3.034 103800K .......... .......... .......... .......... .......... 81% 168M 0s -2024-04-05T03:51:24Z #15 3.034 103850K .......... .......... .......... .......... .......... 81% 148M 0s -2024-04-05T03:51:24Z #15 3.034 103900K .......... .......... .......... .......... .......... 81% 172M 0s -2024-04-05T03:51:24Z #15 3.034 103950K .......... .......... .......... .......... .......... 82% 121M 0s -2024-04-05T03:51:24Z #15 3.036 104000K .......... .......... .......... .......... .......... 82% 128M 0s -2024-04-05T03:51:24Z #15 3.036 104050K .......... .......... .......... .......... .......... 82% 74.7M 0s -2024-04-05T03:51:24Z #15 3.036 104100K .......... .......... .......... .......... .......... 82% 122M 0s -2024-04-05T03:51:24Z #15 3.036 104150K .......... .......... .......... .......... .......... 82% 127M 0s -2024-04-05T03:51:24Z #15 3.036 104200K .......... .......... .......... .......... .......... 82% 104M 0s -2024-04-05T03:51:24Z #15 3.045 104250K .......... .......... .......... .......... .......... 82% 78.5M 0s -2024-04-05T03:51:24Z #15 3.045 104300K .......... .......... .......... .......... .......... 82% 885K 0s -2024-04-05T03:51:24Z #15 3.094 104350K .......... .......... .......... .......... .......... 82% 70.4M 0s -2024-04-05T03:51:24Z #15 3.095 104400K .......... .......... .......... .......... .......... 82% 146M 0s -2024-04-05T03:51:24Z #15 3.096 104450K .......... .......... .......... .......... .......... 82% 87.0M 0s -2024-04-05T03:51:24Z #15 3.096 104500K .......... .......... .......... .......... .......... 82% 140M 0s -2024-04-05T03:51:24Z #15 3.096 104550K .......... .......... .......... .......... .......... 82% 171M 0s -2024-04-05T03:51:24Z #15 3.096 104600K .......... .......... .......... .......... .......... 82% 136M 0s -2024-04-05T03:51:24Z #15 3.104 104650K .......... .......... .......... .......... .......... 82% 130M 0s -2024-04-05T03:51:24Z #15 3.104 104700K .......... .......... .......... .......... .......... 82% 146M 0s -2024-04-05T03:51:24Z #15 3.104 104750K .......... .......... .......... .......... .......... 82% 159M 0s -2024-04-05T03:51:24Z #15 3.104 104800K .......... .......... .......... .......... .......... 82% 147M 0s -2024-04-05T03:51:24Z #15 3.104 104850K .......... .......... .......... .......... .......... 82% 117M 0s -2024-04-05T03:51:24Z #15 3.104 104900K .......... .......... .......... .......... .......... 82% 130M 0s -2024-04-05T03:51:24Z #15 3.104 104950K .......... .......... .......... .......... .......... 82% 165M 0s -2024-04-05T03:51:24Z #15 3.104 105000K .......... .......... .......... .......... .......... 82% 145M 0s -2024-04-05T03:51:24Z #15 3.104 105050K .......... .......... .......... .......... .......... 82% 133M 0s -2024-04-05T03:51:24Z #15 3.104 105100K .......... .......... .......... .......... .......... 82% 157M 0s -2024-04-05T03:51:24Z #15 3.104 105150K .......... .......... .......... .......... .......... 82% 168M 0s -2024-04-05T03:51:24Z #15 3.104 105200K .......... .......... .......... .......... .......... 83% 124M 0s -2024-04-05T03:51:24Z #15 3.104 105250K .......... .......... .......... .......... .......... 83% 148M 0s -2024-04-05T03:51:24Z #15 3.104 105300K .......... .......... .......... .......... .......... 83% 138M 0s -2024-04-05T03:51:24Z #15 3.104 105350K .......... .......... .......... .......... .......... 83% 140M 0s -2024-04-05T03:51:24Z #15 3.104 105400K .......... .......... .......... .......... .......... 83% 118M 0s -2024-04-05T03:51:24Z #15 3.104 105450K .......... .......... .......... .......... .......... 83% 124M 0s -2024-04-05T03:51:24Z #15 3.104 105500K .......... .......... .......... .......... .......... 83% 130M 0s -2024-04-05T03:51:24Z #15 3.104 105550K .......... .......... .......... .......... .......... 83% 124M 0s -2024-04-05T03:51:24Z #15 3.104 105600K .......... .......... .......... .......... .......... 83% 25.3M 0s -2024-04-05T03:51:24Z #15 3.111 105650K .......... .......... .......... .......... .......... 83% 172M 0s -2024-04-05T03:51:24Z #15 3.111 105700K .......... .......... .......... .......... .......... 83% 173M 0s -2024-04-05T03:51:24Z #15 3.111 105750K .......... .......... .......... .......... .......... 83% 146M 0s -2024-04-05T03:51:24Z #15 3.111 105800K .......... .......... .......... .......... .......... 83% 138M 0s -2024-04-05T03:51:24Z #15 3.111 105850K .......... .......... .......... .......... .......... 83% 151M 0s -2024-04-05T03:51:24Z #15 3.111 105900K .......... .......... .......... .......... .......... 83% 163M 0s -2024-04-05T03:51:24Z #15 3.111 105950K .......... .......... .......... .......... .......... 83% 157M 0s -2024-04-05T03:51:24Z #15 3.111 106000K .......... .......... .......... .......... .......... 83% 130M 0s -2024-04-05T03:51:24Z #15 3.111 106050K .......... .......... .......... .......... .......... 83% 140M 0s -2024-04-05T03:51:24Z #15 3.111 106100K .......... .......... .......... .......... .......... 83% 29.5M 0s -2024-04-05T03:51:24Z #15 3.111 106150K .......... .......... .......... .......... .......... 83% 166M 0s -2024-04-05T03:51:24Z #15 3.111 106200K .......... .......... .......... .......... .......... 83% 137M 0s -2024-04-05T03:51:24Z #15 3.113 106250K .......... .......... .......... .......... .......... 83% 169M 0s -2024-04-05T03:51:24Z #15 3.113 106300K .......... .......... .......... .......... .......... 83% 159M 0s -2024-04-05T03:51:24Z #15 3.113 106350K .......... .......... .......... .......... .......... 83% 70.6M 0s -2024-04-05T03:51:24Z #15 3.113 106400K .......... .......... .......... .......... .......... 83% 24.8M 0s -2024-04-05T03:51:24Z #15 3.114 106450K .......... .......... .......... .......... .......... 84% 130M 0s -2024-04-05T03:51:24Z #15 3.114 106500K .......... .......... .......... .......... .......... 84% 99.9M 0s -2024-04-05T03:51:24Z #15 3.116 106550K .......... .......... .......... .......... .......... 84% 27.7M 0s -2024-04-05T03:51:24Z #15 3.116 106600K .......... .......... .......... .......... .......... 84% 176M 0s -2024-04-05T03:51:24Z #15 3.116 106650K .......... .......... .......... .......... .......... 84% 153M 0s -2024-04-05T03:51:24Z #15 3.117 106700K .......... .......... .......... .......... .......... 84% 144M 0s -2024-04-05T03:51:24Z #15 3.119 106750K .......... .......... .......... .......... .......... 84% 127M 0s -2024-04-05T03:51:24Z #15 3.119 106800K .......... .......... .......... .......... .......... 84% 27.8M 0s -2024-04-05T03:51:24Z #15 3.120 106850K .......... .......... .......... .......... .......... 84% 168M 0s -2024-04-05T03:51:24Z #15 3.120 106900K .......... .......... .......... .......... .......... 84% 177M 0s -2024-04-05T03:51:24Z #15 3.120 106950K .......... .......... .......... .......... .......... 84% 108M 0s -2024-04-05T03:51:24Z #15 3.121 107000K .......... .......... .......... .......... .......... 84% 148M 0s -2024-04-05T03:51:24Z #15 3.121 107050K .......... .......... .......... .......... .......... 84% 151M 0s -2024-04-05T03:51:24Z #15 3.122 107100K .......... .......... .......... .......... .......... 84% 180M 0s -2024-04-05T03:51:24Z #15 3.122 107150K .......... .......... .......... .......... .......... 84% 139M 0s -2024-04-05T03:51:24Z #15 3.123 107200K .......... .......... .......... .......... .......... 84% 148M 0s -2024-04-05T03:51:24Z #15 3.123 107250K .......... .......... .......... .......... .......... 84% 140M 0s -2024-04-05T03:51:24Z #15 3.123 107300K .......... .......... .......... .......... .......... 84% 160M 0s -2024-04-05T03:51:24Z #15 3.123 107350K .......... .......... .......... .......... .......... 84% 140M 0s -2024-04-05T03:51:24Z #15 3.123 107400K .......... .......... .......... .......... .......... 84% 110M 0s -2024-04-05T03:51:24Z #15 3.123 107450K .......... .......... .......... .......... .......... 84% 137M 0s -2024-04-05T03:51:24Z #15 3.124 107500K .......... .......... .......... .......... .......... 84% 128M 0s -2024-04-05T03:51:24Z #15 3.124 107550K .......... .......... .......... .......... .......... 84% 153M 0s -2024-04-05T03:51:24Z #15 3.124 107600K .......... .......... .......... .......... .......... 84% 119M 0s -2024-04-05T03:51:24Z #15 3.125 107650K .......... .......... .......... .......... .......... 84% 114M 0s -2024-04-05T03:51:24Z #15 3.125 107700K .......... .......... .......... .......... .......... 84% 128M 0s -2024-04-05T03:51:24Z #15 3.125 107750K .......... .......... .......... .......... .......... 85% 138M 0s -2024-04-05T03:51:24Z #15 3.126 107800K .......... .......... .......... .......... .......... 85% 131M 0s -2024-04-05T03:51:24Z #15 3.126 107850K .......... .......... .......... .......... .......... 85% 129M 0s -2024-04-05T03:51:24Z #15 3.126 107900K .......... .......... .......... .......... .......... 85% 151M 0s -2024-04-05T03:51:24Z #15 3.130 107950K .......... .......... .......... .......... .......... 85% 122M 0s -2024-04-05T03:51:24Z #15 3.130 108000K .......... .......... .......... .......... .......... 85% 150M 0s -2024-04-05T03:51:24Z #15 3.130 108050K .......... .......... .......... .......... .......... 85% 146M 0s -2024-04-05T03:51:24Z #15 3.130 108100K .......... .......... .......... .......... .......... 85% 160M 0s -2024-04-05T03:51:24Z #15 3.130 108150K .......... .......... .......... .......... .......... 85% 144M 0s -2024-04-05T03:51:24Z #15 3.130 108200K .......... .......... .......... .......... .......... 85% 137M 0s -2024-04-05T03:51:24Z #15 3.130 108250K .......... .......... .......... .......... .......... 85% 5.29M 0s -2024-04-05T03:51:24Z #15 3.138 108300K .......... .......... .......... .......... .......... 85% 121M 0s -2024-04-05T03:51:24Z #15 3.139 108350K .......... .......... .......... .......... .......... 85% 132M 0s -2024-04-05T03:51:24Z #15 3.139 108400K .......... .......... .......... .......... .......... 85% 151M 0s -2024-04-05T03:51:24Z #15 3.139 108450K .......... .......... .......... .......... .......... 85% 162M 0s -2024-04-05T03:51:24Z #15 3.140 108500K .......... .......... .......... .......... .......... 85% 123M 0s -2024-04-05T03:51:24Z #15 3.140 108550K .......... .......... .......... .......... .......... 85% 134M 0s -2024-04-05T03:51:24Z #15 3.140 108600K .......... .......... .......... .......... .......... 85% 164M 0s -2024-04-05T03:51:24Z #15 3.141 108650K .......... .......... .......... .......... .......... 85% 162M 0s -2024-04-05T03:51:24Z #15 3.141 108700K .......... .......... .......... .......... .......... 85% 116M 0s -2024-04-05T03:51:24Z #15 3.141 108750K .......... .......... .......... .......... .......... 85% 129M 0s -2024-04-05T03:51:24Z #15 3.142 108800K .......... .......... .......... .......... .......... 85% 130M 0s -2024-04-05T03:51:24Z #15 3.142 108850K .......... .......... .......... .......... .......... 85% 144M 0s -2024-04-05T03:51:24Z #15 3.142 108900K .......... .......... .......... .......... .......... 85% 121M 0s -2024-04-05T03:51:24Z #15 3.144 108950K .......... .......... .......... .......... .......... 85% 142M 0s -2024-04-05T03:51:24Z #15 3.144 109000K .......... .......... .......... .......... .......... 86% 133M 0s -2024-04-05T03:51:24Z #15 3.144 109050K .......... .......... .......... .......... .......... 86% 144M 0s -2024-04-05T03:51:24Z #15 3.144 109100K .......... .......... .......... .......... .......... 86% 119M 0s -2024-04-05T03:51:24Z #15 3.144 109150K .......... .......... .......... .......... .......... 86% 134M 0s -2024-04-05T03:51:24Z #15 3.145 109200K .......... .......... .......... .......... .......... 86% 144M 0s -2024-04-05T03:51:24Z #15 3.145 109250K .......... .......... .......... .......... .......... 86% 158M 0s -2024-04-05T03:51:24Z #15 3.145 109300K .......... .......... .......... .......... .......... 86% 116M 0s -2024-04-05T03:51:24Z #15 3.146 109350K .......... .......... .......... .......... .......... 86% 5.82M 0s -2024-04-05T03:51:24Z #15 3.154 109400K .......... .......... .......... .......... .......... 86% 172M 0s -2024-04-05T03:51:24Z #15 3.154 109450K .......... .......... .......... .......... .......... 86% 159M 0s -2024-04-05T03:51:24Z #15 3.155 109500K .......... .......... .......... .......... .......... 86% 139M 0s -2024-04-05T03:51:24Z #15 3.155 109550K .......... .......... .......... .......... .......... 86% 172M 0s -2024-04-05T03:51:24Z #15 3.155 109600K .......... .......... .......... .......... .......... 86% 174M 0s -2024-04-05T03:51:24Z #15 3.156 109650K .......... .......... .......... .......... .......... 86% 175M 0s -2024-04-05T03:51:24Z #15 3.156 109700K .......... .......... .......... .......... .......... 86% 160M 0s -2024-04-05T03:51:24Z #15 3.156 109750K .......... .......... .......... .......... .......... 86% 159M 0s -2024-04-05T03:51:24Z #15 3.157 109800K .......... .......... .......... .......... .......... 86% 171M 0s -2024-04-05T03:51:24Z #15 3.157 109850K .......... .......... .......... .......... .......... 86% 153M 0s -2024-04-05T03:51:24Z #15 3.157 109900K .......... .......... .......... .......... .......... 86% 157M 0s -2024-04-05T03:51:24Z #15 3.158 109950K .......... .......... .......... .......... .......... 86% 175M 0s -2024-04-05T03:51:24Z #15 3.158 110000K .......... .......... .......... .......... .......... 86% 151M 0s -2024-04-05T03:51:24Z #15 3.158 110050K .......... .......... .......... .......... .......... 86% 152M 0s -2024-04-05T03:51:24Z #15 3.158 110100K .......... .......... .......... .......... .......... 86% 176M 0s -2024-04-05T03:51:24Z #15 3.159 110150K .......... .......... .......... .......... .......... 86% 176M 0s -2024-04-05T03:51:24Z #15 3.159 110200K .......... .......... .......... .......... .......... 86% 136M 0s -2024-04-05T03:51:24Z #15 3.159 110250K .......... .......... .......... .......... .......... 86% 164M 0s -2024-04-05T03:51:24Z #15 3.159 110300K .......... .......... .......... .......... .......... 87% 174M 0s -2024-04-05T03:51:24Z #15 3.160 110350K .......... .......... .......... .......... .......... 87% 166M 0s -2024-04-05T03:51:24Z #15 3.160 110400K .......... .......... .......... .......... .......... 87% 133M 0s -2024-04-05T03:51:24Z #15 3.161 110450K .......... .......... .......... .......... .......... 87% 170M 0s -2024-04-05T03:51:24Z #15 3.161 110500K .......... .......... .......... .......... .......... 87% 181M 0s -2024-04-05T03:51:24Z #15 3.161 110550K .......... .......... .......... .......... .......... 87% 134M 0s -2024-04-05T03:51:24Z #15 3.161 110600K .......... .......... .......... .......... .......... 87% 159M 0s -2024-04-05T03:51:24Z #15 3.162 110650K .......... .......... .......... .......... .......... 87% 144M 0s -2024-04-05T03:51:24Z #15 3.162 110700K .......... .......... .......... .......... .......... 87% 164M 0s -2024-04-05T03:51:24Z #15 3.162 110750K .......... .......... .......... .......... .......... 87% 146M 0s -2024-04-05T03:51:24Z #15 3.163 110800K .......... .......... .......... .......... .......... 87% 176M 0s -2024-04-05T03:51:24Z #15 3.163 110850K .......... .......... .......... .......... .......... 87% 148M 0s -2024-04-05T03:51:24Z #15 3.163 110900K .......... .......... .......... .......... .......... 87% 162M 0s -2024-04-05T03:51:24Z #15 3.164 110950K .......... .......... .......... .......... .......... 87% 127M 0s -2024-04-05T03:51:24Z #15 3.164 111000K .......... .......... .......... .......... .......... 87% 136M 0s -2024-04-05T03:51:24Z #15 3.164 111050K .......... .......... .......... .......... .......... 87% 174M 0s -2024-04-05T03:51:24Z #15 3.164 111100K .......... .......... .......... .......... .......... 87% 142M 0s -2024-04-05T03:51:24Z #15 3.165 111150K .......... .......... .......... .......... .......... 87% 162M 0s -2024-04-05T03:51:24Z #15 3.165 111200K .......... .......... .......... .......... .......... 87% 170M 0s -2024-04-05T03:51:24Z #15 3.165 111250K .......... .......... .......... .......... .......... 87% 22.0M 0s -2024-04-05T03:51:24Z #15 3.168 111300K .......... .......... .......... .......... .......... 87% 142M 0s -2024-04-05T03:51:24Z #15 3.168 111350K .......... .......... .......... .......... .......... 87% 146M 0s -2024-04-05T03:51:24Z #15 3.168 111400K .......... .......... .......... .......... .......... 87% 142M 0s -2024-04-05T03:51:24Z #15 3.169 111450K .......... .......... .......... .......... .......... 87% 146M 0s -2024-04-05T03:51:24Z #15 3.169 111500K .......... .......... .......... .......... .......... 87% 127M 0s -2024-04-05T03:51:24Z #15 3.170 111550K .......... .......... .......... .......... .......... 88% 122M 0s -2024-04-05T03:51:24Z #15 3.170 111600K .......... .......... .......... .......... .......... 88% 141M 0s -2024-04-05T03:51:24Z #15 3.170 111650K .......... .......... .......... .......... .......... 88% 120M 0s -2024-04-05T03:51:24Z #15 3.171 111700K .......... .......... .......... .......... .......... 88% 160M 0s -2024-04-05T03:51:24Z #15 3.171 111750K .......... .......... .......... .......... .......... 88% 133M 0s -2024-04-05T03:51:24Z #15 3.171 111800K .......... .......... .......... .......... .......... 88% 153M 0s -2024-04-05T03:51:24Z #15 3.172 111850K .......... .......... .......... .......... .......... 88% 120M 0s -2024-04-05T03:51:24Z #15 3.172 111900K .......... .......... .......... .......... .......... 88% 155M 0s -2024-04-05T03:51:24Z #15 3.172 111950K .......... .......... .......... .......... .......... 88% 112M 0s -2024-04-05T03:51:24Z #15 3.173 112000K .......... .......... .......... .......... .......... 88% 129M 0s -2024-04-05T03:51:24Z #15 3.173 112050K .......... .......... .......... .......... .......... 88% 96.3M 0s -2024-04-05T03:51:24Z #15 3.174 112100K .......... .......... .......... .......... .......... 88% 121M 0s -2024-04-05T03:51:24Z #15 3.175 112150K .......... .......... .......... .......... .......... 88% 138M 0s -2024-04-05T03:51:24Z #15 3.175 112200K .......... .......... .......... .......... .......... 88% 123M 0s -2024-04-05T03:51:24Z #15 3.175 112250K .......... .......... .......... .......... .......... 88% 104M 0s -2024-04-05T03:51:24Z #15 3.175 112300K .......... .......... .......... .......... .......... 88% 135M 0s -2024-04-05T03:51:24Z #15 3.176 112350K .......... .......... .......... .......... .......... 88% 104M 0s -2024-04-05T03:51:24Z #15 3.176 112400K .......... .......... .......... .......... .......... 88% 123M 0s -2024-04-05T03:51:24Z #15 3.176 112450K .......... .......... .......... .......... .......... 88% 127M 0s -2024-04-05T03:51:24Z #15 3.177 112500K .......... .......... .......... .......... .......... 88% 127M 0s -2024-04-05T03:51:24Z #15 3.177 112550K .......... .......... .......... .......... .......... 88% 85.8M 0s -2024-04-05T03:51:24Z #15 3.178 112600K .......... .......... .......... .......... .......... 88% 123M 0s -2024-04-05T03:51:24Z #15 3.178 112650K .......... .......... .......... .......... .......... 88% 109M 0s -2024-04-05T03:51:24Z #15 3.179 112700K .......... .......... .......... .......... .......... 88% 116M 0s -2024-04-05T03:51:24Z #15 3.180 112750K .......... .......... .......... .......... .......... 88% 141M 0s -2024-04-05T03:51:24Z #15 3.180 112800K .......... .......... .......... .......... .......... 89% 106M 0s -2024-04-05T03:51:24Z #15 3.180 112850K .......... .......... .......... .......... .......... 89% 122M 0s -2024-04-05T03:51:24Z #15 3.180 112900K .......... .......... .......... .......... .......... 89% 91.4M 0s -2024-04-05T03:51:24Z #15 3.181 112950K .......... .......... .......... .......... .......... 89% 120M 0s -2024-04-05T03:51:24Z #15 3.182 113000K .......... .......... .......... .......... .......... 89% 146M 0s -2024-04-05T03:51:24Z #15 3.182 113050K .......... .......... .......... .......... .......... 89% 102M 0s -2024-04-05T03:51:24Z #15 3.182 113100K .......... .......... .......... .......... .......... 89% 141M 0s -2024-04-05T03:51:24Z #15 3.182 113150K .......... .......... .......... .......... .......... 89% 125M 0s -2024-04-05T03:51:24Z #15 3.183 113200K .......... .......... .......... .......... .......... 89% 98.6M 0s -2024-04-05T03:51:24Z #15 3.183 113250K .......... .......... .......... .......... .......... 89% 101M 0s -2024-04-05T03:51:24Z #15 3.184 113300K .......... .......... .......... .......... .......... 89% 135M 0s -2024-04-05T03:51:24Z #15 3.184 113350K .......... .......... .......... .......... .......... 89% 103M 0s -2024-04-05T03:51:24Z #15 3.185 113400K .......... .......... .......... .......... .......... 89% 119M 0s -2024-04-05T03:51:24Z #15 3.185 113450K .......... .......... .......... .......... .......... 89% 136M 0s -2024-04-05T03:51:24Z #15 3.185 113500K .......... .......... .......... .......... .......... 89% 120M 0s -2024-04-05T03:51:24Z #15 3.186 113550K .......... .......... .......... .......... .......... 89% 139M 0s -2024-04-05T03:51:24Z #15 3.186 113600K .......... .......... .......... .......... .......... 89% 118M 0s -2024-04-05T03:51:24Z #15 3.187 113650K .......... .......... .......... .......... .......... 89% 136M 0s -2024-04-05T03:51:24Z #15 3.188 113700K .......... .......... .......... .......... .......... 89% 141M 0s -2024-04-05T03:51:24Z #15 3.188 113750K .......... .......... .......... .......... .......... 89% 119M 0s -2024-04-05T03:51:24Z #15 3.188 113800K .......... .......... .......... .......... .......... 89% 128M 0s -2024-04-05T03:51:24Z #15 3.188 113850K .......... .......... .......... .......... .......... 89% 136M 0s -2024-04-05T03:51:24Z #15 3.188 113900K .......... .......... .......... .......... .......... 89% 116M 0s -2024-04-05T03:51:24Z #15 3.189 113950K .......... .......... .......... .......... .......... 89% 119M 0s -2024-04-05T03:51:24Z #15 3.190 114000K .......... .......... .......... .......... .......... 89% 151M 0s -2024-04-05T03:51:24Z #15 3.190 114050K .......... .......... .......... .......... .......... 89% 123M 0s -2024-04-05T03:51:24Z #15 3.190 114100K .......... .......... .......... .......... .......... 90% 127M 0s -2024-04-05T03:51:24Z #15 3.190 114150K .......... .......... .......... .......... .......... 90% 111M 0s -2024-04-05T03:51:24Z #15 3.191 114200K .......... .......... .......... .......... .......... 90% 130M 0s -2024-04-05T03:51:24Z #15 3.191 114250K .......... .......... .......... .......... .......... 90% 123M 0s -2024-04-05T03:51:24Z #15 3.192 114300K .......... .......... .......... .......... .......... 90% 102M 0s -2024-04-05T03:51:24Z #15 3.192 114350K .......... .......... .......... .......... .......... 90% 131M 0s -2024-04-05T03:51:24Z #15 3.193 114400K .......... .......... .......... .......... .......... 90% 114M 0s -2024-04-05T03:51:24Z #15 3.193 114450K .......... .......... .......... .......... .......... 90% 161M 0s -2024-04-05T03:51:24Z #15 3.193 114500K .......... .......... .......... .......... .......... 90% 132M 0s -2024-04-05T03:51:24Z #15 3.193 114550K .......... .......... .......... .......... .......... 90% 109M 0s -2024-04-05T03:51:24Z #15 3.194 114600K .......... .......... .......... .......... .......... 90% 126M 0s -2024-04-05T03:51:24Z #15 3.195 114650K .......... .......... .......... .......... .......... 90% 147M 0s -2024-04-05T03:51:24Z #15 3.195 114700K .......... .......... .......... .......... .......... 90% 98.9M 0s -2024-04-05T03:51:24Z #15 3.196 114750K .......... .......... .......... .......... .......... 90% 132M 0s -2024-04-05T03:51:24Z #15 3.196 114800K .......... .......... .......... .......... .......... 90% 135M 0s -2024-04-05T03:51:24Z #15 3.196 114850K .......... .......... .......... .......... .......... 90% 115M 0s -2024-04-05T03:51:24Z #15 3.197 114900K .......... .......... .......... .......... .......... 90% 143M 0s -2024-04-05T03:51:24Z #15 3.197 114950K .......... .......... .......... .......... .......... 90% 142M 0s -2024-04-05T03:51:24Z #15 3.197 115000K .......... .......... .......... .......... .......... 90% 133M 0s -2024-04-05T03:51:24Z #15 3.198 115050K .......... .......... .......... .......... .......... 90% 117M 0s -2024-04-05T03:51:24Z #15 3.198 115100K .......... .......... .......... .......... .......... 90% 126M 0s -2024-04-05T03:51:24Z #15 3.198 115150K .......... .......... .......... .......... .......... 90% 132M 0s -2024-04-05T03:51:24Z #15 3.199 115200K .......... .......... .......... .......... .......... 90% 115M 0s -2024-04-05T03:51:24Z #15 3.199 115250K .......... .......... .......... .......... .......... 90% 144M 0s -2024-04-05T03:51:24Z #15 3.199 115300K .......... .......... .......... .......... .......... 90% 150M 0s -2024-04-05T03:51:24Z #15 3.200 115350K .......... .......... .......... .......... .......... 91% 138M 0s -2024-04-05T03:51:24Z #15 3.200 115400K .......... .......... .......... .......... .......... 91% 126M 0s -2024-04-05T03:51:24Z #15 3.200 115450K .......... .......... .......... .......... .......... 91% 118M 0s -2024-04-05T03:51:24Z #15 3.201 115500K .......... .......... .......... .......... .......... 91% 136M 0s -2024-04-05T03:51:24Z #15 3.202 115550K .......... .......... .......... .......... .......... 91% 145M 0s -2024-04-05T03:51:24Z #15 3.202 115600K .......... .......... .......... .......... .......... 91% 112M 0s -2024-04-05T03:51:24Z #15 3.202 115650K .......... .......... .......... .......... .......... 91% 130M 0s -2024-04-05T03:51:24Z #15 3.202 115700K .......... .......... .......... .......... .......... 91% 147M 0s -2024-04-05T03:51:24Z #15 3.203 115750K .......... .......... .......... .......... .......... 91% 114M 0s -2024-04-05T03:51:24Z #15 3.204 115800K .......... .......... .......... .......... .......... 91% 122M 0s -2024-04-05T03:51:24Z #15 3.204 115850K .......... .......... .......... .......... .......... 91% 114M 0s -2024-04-05T03:51:24Z #15 3.204 115900K .......... .......... .......... .......... .......... 91% 115M 0s -2024-04-05T03:51:24Z #15 3.205 115950K .......... .......... .......... .......... .......... 91% 118M 0s -2024-04-05T03:51:24Z #15 3.205 116000K .......... .......... .......... .......... .......... 91% 124M 0s -2024-04-05T03:51:24Z #15 3.205 116050K .......... .......... .......... .......... .......... 91% 115M 0s -2024-04-05T03:51:24Z #15 3.206 116100K .......... .......... .......... .......... .......... 91% 123M 0s -2024-04-05T03:51:24Z #15 3.206 116150K .......... .......... .......... .......... .......... 91% 119M 0s -2024-04-05T03:51:24Z #15 3.207 116200K .......... .......... .......... .......... .......... 91% 137M 0s -2024-04-05T03:51:24Z #15 3.207 116250K .......... .......... .......... .......... .......... 91% 110M 0s -2024-04-05T03:51:24Z #15 3.207 116300K .......... .......... .......... .......... .......... 91% 127M 0s -2024-04-05T03:51:24Z #15 3.208 116350K .......... .......... .......... .......... .......... 91% 136M 0s -2024-04-05T03:51:24Z #15 3.208 116400K .......... .......... .......... .......... .......... 91% 141M 0s -2024-04-05T03:51:24Z #15 3.209 116450K .......... .......... .......... .......... .......... 91% 114M 0s -2024-04-05T03:51:24Z #15 3.209 116500K .......... .......... .......... .......... .......... 91% 131M 0s -2024-04-05T03:51:24Z #15 3.209 116550K .......... .......... .......... .......... .......... 91% 134M 0s -2024-04-05T03:51:24Z #15 3.210 116600K .......... .......... .......... .......... .......... 92% 102M 0s -2024-04-05T03:51:24Z #15 3.210 116650K .......... .......... .......... .......... .......... 92% 130M 0s -2024-04-05T03:51:24Z #15 3.210 116700K .......... .......... .......... .......... .......... 92% 104M 0s -2024-04-05T03:51:24Z #15 3.211 116750K .......... .......... .......... .......... .......... 92% 113M 0s -2024-04-05T03:51:24Z #15 3.212 116800K .......... .......... .......... .......... .......... 92% 129M 0s -2024-04-05T03:51:24Z #15 3.212 116850K .......... .......... .......... .......... .......... 92% 95.2M 0s -2024-04-05T03:51:24Z #15 3.212 116900K .......... .......... .......... .......... .......... 92% 132M 0s -2024-04-05T03:51:24Z #15 3.213 116950K .......... .......... .......... .......... .......... 92% 131M 0s -2024-04-05T03:51:24Z #15 3.213 117000K .......... .......... .......... .......... .......... 92% 126M 0s -2024-04-05T03:51:24Z #15 3.214 117050K .......... .......... .......... .......... .......... 92% 128M 0s -2024-04-05T03:51:24Z #15 3.214 117100K .......... .......... .......... .......... .......... 92% 134M 0s -2024-04-05T03:51:24Z #15 3.214 117150K .......... .......... .......... .......... .......... 92% 118M 0s -2024-04-05T03:51:24Z #15 3.214 117200K .......... .......... .......... .......... .......... 92% 126M 0s -2024-04-05T03:51:24Z #15 3.215 117250K .......... .......... .......... .......... .......... 92% 97.6M 0s -2024-04-05T03:51:24Z #15 3.215 117300K .......... .......... .......... .......... .......... 92% 122M 0s -2024-04-05T03:51:24Z #15 3.216 117350K .......... .......... .......... .......... .......... 92% 120M 0s -2024-04-05T03:51:24Z #15 3.216 117400K .......... .......... .......... .......... .......... 92% 151M 0s -2024-04-05T03:51:24Z #15 3.216 117450K .......... .......... .......... .......... .......... 92% 116M 0s -2024-04-05T03:51:24Z #15 3.217 117500K .......... .......... .......... .......... .......... 92% 127M 0s -2024-04-05T03:51:24Z #15 3.217 117550K .......... .......... .......... .......... .......... 92% 128M 0s -2024-04-05T03:51:24Z #15 3.218 117600K .......... .......... .......... .......... .......... 92% 94.8M 0s -2024-04-05T03:51:24Z #15 3.222 117650K .......... .......... .......... .......... .......... 92% 110M 0s -2024-04-05T03:51:24Z #15 3.222 117700K .......... .......... .......... .......... .......... 92% 137M 0s -2024-04-05T03:51:24Z #15 3.222 117750K .......... .......... .......... .......... .......... 92% 132M 0s -2024-04-05T03:51:24Z #15 3.222 117800K .......... .......... .......... .......... .......... 92% 135M 0s -2024-04-05T03:51:24Z #15 3.222 117850K .......... .......... .......... .......... .......... 92% 117M 0s -2024-04-05T03:51:24Z #15 3.222 117900K .......... .......... .......... .......... .......... 93% 134M 0s -2024-04-05T03:51:24Z #15 3.222 117950K .......... .......... .......... .......... .......... 93% 145M 0s -2024-04-05T03:51:24Z #15 3.222 118000K .......... .......... .......... .......... .......... 93% 124M 0s -2024-04-05T03:51:24Z #15 3.222 118050K .......... .......... .......... .......... .......... 93% 112M 0s -2024-04-05T03:51:24Z #15 3.222 118100K .......... .......... .......... .......... .......... 93% 95.2M 0s -2024-04-05T03:51:24Z #15 3.226 118150K .......... .......... .......... .......... .......... 93% 143M 0s -2024-04-05T03:51:24Z #15 3.226 118200K .......... .......... .......... .......... .......... 93% 122M 0s -2024-04-05T03:51:24Z #15 3.226 118250K .......... .......... .......... .......... .......... 93% 115M 0s -2024-04-05T03:51:24Z #15 3.226 118300K .......... .......... .......... .......... .......... 93% 138M 0s -2024-04-05T03:51:24Z #15 3.226 118350K .......... .......... .......... .......... .......... 93% 111M 0s -2024-04-05T03:51:24Z #15 3.226 118400K .......... .......... .......... .......... .......... 93% 160M 0s -2024-04-05T03:51:24Z #15 3.226 118450K .......... .......... .......... .......... .......... 93% 137M 0s -2024-04-05T03:51:24Z #15 3.226 118500K .......... .......... .......... .......... .......... 93% 133M 0s -2024-04-05T03:51:24Z #15 3.226 118550K .......... .......... .......... .......... .......... 93% 116M 0s -2024-04-05T03:51:24Z #15 3.226 118600K .......... .......... .......... .......... .......... 93% 124M 0s -2024-04-05T03:51:24Z #15 3.226 118650K .......... .......... .......... .......... .......... 93% 126M 0s -2024-04-05T03:51:24Z #15 3.227 118700K .......... .......... .......... .......... .......... 93% 136M 0s -2024-04-05T03:51:24Z #15 3.227 118750K .......... .......... .......... .......... .......... 93% 134M 0s -2024-04-05T03:51:24Z #15 3.227 118800K .......... .......... .......... .......... .......... 93% 126M 0s -2024-04-05T03:51:24Z #15 3.227 118850K .......... .......... .......... .......... .......... 93% 114M 0s -2024-04-05T03:51:24Z #15 3.228 118900K .......... .......... .......... .......... .......... 93% 119M 0s -2024-04-05T03:51:24Z #15 3.229 118950K .......... .......... .......... .......... .......... 93% 152M 0s -2024-04-05T03:51:24Z #15 3.229 119000K .......... .......... .......... .......... .......... 93% 132M 0s -2024-04-05T03:51:24Z #15 3.229 119050K .......... .......... .......... .......... .......... 93% 144M 0s -2024-04-05T03:51:24Z #15 3.229 119100K .......... .......... .......... .......... .......... 93% 119M 0s -2024-04-05T03:51:24Z #15 3.230 119150K .......... .......... .......... .......... .......... 94% 123M 0s -2024-04-05T03:51:24Z #15 3.230 119200K .......... .......... .......... .......... .......... 94% 133M 0s -2024-04-05T03:51:24Z #15 3.232 119250K .......... .......... .......... .......... .......... 94% 6.60M 0s -2024-04-05T03:51:24Z #15 3.238 119300K .......... .......... .......... .......... .......... 94% 130M 0s -2024-04-05T03:51:24Z #15 3.238 119350K .......... .......... .......... .......... .......... 94% 124M 0s -2024-04-05T03:51:24Z #15 3.239 119400K .......... .......... .......... .......... .......... 94% 132M 0s -2024-04-05T03:51:24Z #15 3.239 119450K .......... .......... .......... .......... .......... 94% 121M 0s -2024-04-05T03:51:24Z #15 3.240 119500K .......... .......... .......... .......... .......... 94% 132M 0s -2024-04-05T03:51:24Z #15 3.240 119550K .......... .......... .......... .......... .......... 94% 120M 0s -2024-04-05T03:51:24Z #15 3.240 119600K .......... .......... .......... .......... .......... 94% 124M 0s -2024-04-05T03:51:24Z #15 3.240 119650K .......... .......... .......... .......... .......... 94% 103M 0s -2024-04-05T03:51:24Z #15 3.242 119700K .......... .......... .......... .......... .......... 94% 124M 0s -2024-04-05T03:51:24Z #15 3.242 119750K .......... .......... .......... .......... .......... 94% 128M 0s -2024-04-05T03:51:24Z #15 3.242 119800K .......... .......... .......... .......... .......... 94% 126M 0s -2024-04-05T03:51:24Z #15 3.245 119850K .......... .......... .......... .......... .......... 94% 140M 0s -2024-04-05T03:51:24Z #15 3.245 119900K .......... .......... .......... .......... .......... 94% 143M 0s -2024-04-05T03:51:24Z #15 3.245 119950K .......... .......... .......... .......... .......... 94% 137M 0s -2024-04-05T03:51:24Z #15 3.245 120000K .......... .......... .......... .......... .......... 94% 150M 0s -2024-04-05T03:51:24Z #15 3.245 120050K .......... .......... .......... .......... .......... 94% 108M 0s -2024-04-05T03:51:24Z #15 3.245 120100K .......... .......... .......... .......... .......... 94% 131M 0s -2024-04-05T03:51:24Z #15 3.245 120150K .......... .......... .......... .......... .......... 94% 148M 0s -2024-04-05T03:51:24Z #15 3.245 120200K .......... .......... .......... .......... .......... 94% 141M 0s -2024-04-05T03:51:24Z #15 3.245 120250K .......... .......... .......... .......... .......... 94% 121M 0s -2024-04-05T03:51:24Z #15 3.245 120300K .......... .......... .......... .......... .......... 94% 11.1M 0s -2024-04-05T03:51:24Z #15 3.250 120350K .......... .......... .......... .......... .......... 94% 123M 0s -2024-04-05T03:51:24Z #15 3.251 120400K .......... .......... .......... .......... .......... 95% 131M 0s -2024-04-05T03:51:24Z #15 3.251 120450K .......... .......... .......... .......... .......... 95% 109M 0s -2024-04-05T03:51:24Z #15 3.251 120500K .......... .......... .......... .......... .......... 95% 124M 0s -2024-04-05T03:51:24Z #15 3.251 120550K .......... .......... .......... .......... .......... 95% 121M 0s -2024-04-05T03:51:24Z #15 3.252 120600K .......... .......... .......... .......... .......... 95% 121M 0s -2024-04-05T03:51:24Z #15 3.252 120650K .......... .......... .......... .......... .......... 95% 118M 0s -2024-04-05T03:51:24Z #15 3.253 120700K .......... .......... .......... .......... .......... 95% 103M 0s -2024-04-05T03:51:24Z #15 3.253 120750K .......... .......... .......... .......... .......... 95% 127M 0s -2024-04-05T03:51:24Z #15 3.254 120800K .......... .......... .......... .......... .......... 95% 118M 0s -2024-04-05T03:51:24Z #15 3.254 120850K .......... .......... .......... .......... .......... 95% 125M 0s -2024-04-05T03:51:24Z #15 3.255 120900K .......... .......... .......... .......... .......... 95% 114M 0s -2024-04-05T03:51:24Z #15 3.255 120950K .......... .......... .......... .......... .......... 95% 132M 0s -2024-04-05T03:51:24Z #15 3.255 121000K .......... .......... .......... .......... .......... 95% 124M 0s -2024-04-05T03:51:24Z #15 3.256 121050K .......... .......... .......... .......... .......... 95% 122M 0s -2024-04-05T03:51:24Z #15 3.256 121100K .......... .......... .......... .......... .......... 95% 104M 0s -2024-04-05T03:51:24Z #15 3.256 121150K .......... .......... .......... .......... .......... 95% 124M 0s -2024-04-05T03:51:24Z #15 3.257 121200K .......... .......... .......... .......... .......... 95% 130M 0s -2024-04-05T03:51:24Z #15 3.257 121250K .......... .......... .......... .......... .......... 95% 130M 0s -2024-04-05T03:51:24Z #15 3.258 121300K .......... .......... .......... .......... .......... 95% 10.9M 0s -2024-04-05T03:51:24Z #15 3.262 121350K .......... .......... .......... .......... .......... 95% 158M 0s -2024-04-05T03:51:24Z #15 3.262 121400K .......... .......... .......... .......... .......... 95% 157M 0s -2024-04-05T03:51:24Z #15 3.263 121450K .......... .......... .......... .......... .......... 95% 141M 0s -2024-04-05T03:51:24Z #15 3.263 121500K .......... .......... .......... .......... .......... 95% 130M 0s -2024-04-05T03:51:24Z #15 3.263 121550K .......... .......... .......... .......... .......... 95% 158M 0s -2024-04-05T03:51:24Z #15 3.264 121600K .......... .......... .......... .......... .......... 95% 147M 0s -2024-04-05T03:51:24Z #15 3.264 121650K .......... .......... .......... .......... .......... 95% 691K 0s -2024-04-05T03:51:24Z #15 3.340 121700K .......... .......... .......... .......... .......... 96% 145M 0s -2024-04-05T03:51:24Z #15 3.340 121750K .......... .......... .......... .......... .......... 96% 147M 0s -2024-04-05T03:51:24Z #15 3.340 121800K .......... .......... .......... .......... .......... 96% 148M 0s -2024-04-05T03:51:24Z #15 3.340 121850K .......... .......... .......... .......... .......... 96% 185M 0s -2024-04-05T03:51:24Z #15 3.340 121900K .......... .......... .......... .......... .......... 96% 123M 0s -2024-04-05T03:51:24Z #15 3.340 121950K .......... .......... .......... .......... .......... 96% 168M 0s -2024-04-05T03:51:24Z #15 3.340 122000K .......... .......... .......... .......... .......... 96% 179M 0s -2024-04-05T03:51:24Z #15 3.340 122050K .......... .......... .......... .......... .......... 96% 152M 0s -2024-04-05T03:51:24Z #15 3.340 122100K .......... .......... .......... .......... .......... 96% 120M 0s -2024-04-05T03:51:24Z #15 3.340 122150K .......... .......... .......... .......... .......... 96% 124M 0s -2024-04-05T03:51:24Z #15 3.340 122200K .......... .......... .......... .......... .......... 96% 135M 0s -2024-04-05T03:51:24Z #15 3.340 122250K .......... .......... .......... .......... .......... 96% 128M 0s -2024-04-05T03:51:24Z #15 3.340 122300K .......... .......... .......... .......... .......... 96% 111M 0s -2024-04-05T03:51:24Z #15 3.342 122350K .......... .......... .......... .......... .......... 96% 149M 0s -2024-04-05T03:51:24Z #15 3.342 122400K .......... .......... .......... .......... .......... 96% 148M 0s -2024-04-05T03:51:24Z #15 3.342 122450K .......... .......... .......... .......... .......... 96% 125M 0s -2024-04-05T03:51:24Z #15 3.342 122500K .......... .......... .......... .......... .......... 96% 149M 0s -2024-04-05T03:51:24Z #15 3.342 122550K .......... .......... .......... .......... .......... 96% 134M 0s -2024-04-05T03:51:24Z #15 3.344 122600K .......... .......... .......... .......... .......... 96% 134M 0s -2024-04-05T03:51:24Z #15 3.344 122650K .......... .......... .......... .......... .......... 96% 31.4M 0s -2024-04-05T03:51:24Z #15 3.344 122700K .......... .......... .......... .......... .......... 96% 159M 0s -2024-04-05T03:51:24Z #15 3.345 122750K .......... .......... .......... .......... .......... 96% 156M 0s -2024-04-05T03:51:24Z #15 3.345 122800K .......... .......... .......... .......... .......... 96% 138M 0s -2024-04-05T03:51:24Z #15 3.345 122850K .......... .......... .......... .......... .......... 96% 11.8M 0s -2024-04-05T03:51:24Z #15 3.350 122900K .......... .......... .......... .......... .......... 96% 125M 0s -2024-04-05T03:51:24Z #15 3.350 122950K .......... .......... .......... .......... .......... 97% 165M 0s -2024-04-05T03:51:24Z #15 3.350 123000K .......... .......... .......... .......... .......... 97% 144M 0s -2024-04-05T03:51:24Z #15 3.351 123050K .......... .......... .......... .......... .......... 97% 162M 0s -2024-04-05T03:51:24Z #15 3.351 123100K .......... .......... .......... .......... .......... 97% 151M 0s -2024-04-05T03:51:24Z #15 3.351 123150K .......... .......... .......... .......... .......... 97% 135M 0s -2024-04-05T03:51:24Z #15 3.352 123200K .......... .......... .......... .......... .......... 97% 163M 0s -2024-04-05T03:51:24Z #15 3.352 123250K .......... .......... .......... .......... .......... 97% 171M 0s -2024-04-05T03:51:24Z #15 3.352 123300K .......... .......... .......... .......... .......... 97% 150M 0s -2024-04-05T03:51:24Z #15 3.353 123350K .......... .......... .......... .......... .......... 97% 162M 0s -2024-04-05T03:51:24Z #15 3.353 123400K .......... .......... .......... .......... .......... 97% 155M 0s -2024-04-05T03:51:24Z #15 3.353 123450K .......... .......... .......... .......... .......... 97% 157M 0s -2024-04-05T03:51:24Z #15 3.354 123500K .......... .......... .......... .......... .......... 97% 148M 0s -2024-04-05T03:51:24Z #15 3.354 123550K .......... .......... .......... .......... .......... 97% 167M 0s -2024-04-05T03:51:24Z #15 3.354 123600K .......... .......... .......... .......... .......... 97% 141M 0s -2024-04-05T03:51:24Z #15 3.354 123650K .......... .......... .......... .......... .......... 97% 160M 0s -2024-04-05T03:51:24Z #15 3.355 123700K .......... .......... .......... .......... .......... 97% 163M 0s -2024-04-05T03:51:24Z #15 3.355 123750K .......... .......... .......... .......... .......... 97% 149M 0s -2024-04-05T03:51:24Z #15 3.355 123800K .......... .......... .......... .......... .......... 97% 154M 0s -2024-04-05T03:51:24Z #15 3.356 123850K .......... .......... .......... .......... .......... 97% 163M 0s -2024-04-05T03:51:24Z #15 3.356 123900K .......... .......... .......... .......... .......... 97% 171M 0s -2024-04-05T03:51:24Z #15 3.356 123950K .......... .......... .......... .......... .......... 97% 157M 0s -2024-04-05T03:51:24Z #15 3.357 124000K .......... .......... .......... .......... .......... 97% 136M 0s -2024-04-05T03:51:24Z #15 3.357 124050K .......... .......... .......... .......... .......... 97% 168M 0s -2024-04-05T03:51:24Z #15 3.358 124100K .......... .......... .......... .......... .......... 97% 154M 0s -2024-04-05T03:51:24Z #15 3.358 124150K .......... .......... .......... .......... .......... 97% 47.4M 0s -2024-04-05T03:51:24Z #15 3.366 124200K .......... .......... .......... .......... .......... 98% 136M 0s -2024-04-05T03:51:24Z #15 3.366 124250K .......... .......... .......... .......... .......... 98% 162M 0s -2024-04-05T03:51:24Z #15 3.366 124300K .......... .......... .......... .......... .......... 98% 183M 0s -2024-04-05T03:51:24Z #15 3.366 124350K .......... .......... .......... .......... .......... 98% 178M 0s -2024-04-05T03:51:24Z #15 3.366 124400K .......... .......... .......... .......... .......... 98% 152M 0s -2024-04-05T03:51:24Z #15 3.366 124450K .......... .......... .......... .......... .......... 98% 187M 0s -2024-04-05T03:51:24Z #15 3.366 124500K .......... .......... .......... .......... .......... 98% 187M 0s -2024-04-05T03:51:24Z #15 3.366 124550K .......... .......... .......... .......... .......... 98% 187M 0s -2024-04-05T03:51:24Z #15 3.366 124600K .......... .......... .......... .......... .......... 98% 153M 0s -2024-04-05T03:51:24Z #15 3.366 124650K .......... .......... .......... .......... .......... 98% 190M 0s -2024-04-05T03:51:24Z #15 3.366 124700K .......... .......... .......... .......... .......... 98% 183M 0s -2024-04-05T03:51:24Z #15 3.366 124750K .......... .......... .......... .......... .......... 98% 141M 0s -2024-04-05T03:51:24Z #15 3.366 124800K .......... .......... .......... .......... .......... 98% 181M 0s -2024-04-05T03:51:24Z #15 3.366 124850K .......... .......... .......... .......... .......... 98% 153M 0s -2024-04-05T03:51:24Z #15 3.366 124900K .......... .......... .......... .......... .......... 98% 178M 0s -2024-04-05T03:51:24Z #15 3.366 124950K .......... .......... .......... .......... .......... 98% 172M 0s -2024-04-05T03:51:24Z #15 3.366 125000K .......... .......... .......... .......... .......... 98% 158M 0s -2024-04-05T03:51:24Z #15 3.366 125050K .......... .......... .......... .......... .......... 98% 153M 0s -2024-04-05T03:51:24Z #15 3.366 125100K .......... .......... .......... .......... .......... 98% 180M 0s -2024-04-05T03:51:24Z #15 3.366 125150K .......... .......... .......... .......... .......... 98% 180M 0s -2024-04-05T03:51:24Z #15 3.366 125200K .......... .......... .......... .......... .......... 98% 172M 0s -2024-04-05T03:51:24Z #15 3.366 125250K .......... .......... .......... .......... .......... 98% 150M 0s -2024-04-05T03:51:24Z #15 3.366 125300K .......... .......... .......... .......... .......... 98% 145M 0s -2024-04-05T03:51:24Z #15 3.366 125350K .......... .......... .......... .......... .......... 98% 182M 0s -2024-04-05T03:51:24Z #15 3.366 125400K .......... .......... .......... .......... .......... 98% 11.0M 0s -2024-04-05T03:51:24Z #15 3.370 125450K .......... .......... .......... .......... .......... 98% 18.7M 0s -2024-04-05T03:51:24Z #15 3.373 125500K .......... .......... .......... .......... .......... 99% 18.3M 0s -2024-04-05T03:51:24Z #15 3.376 125550K .......... .......... .......... .......... .......... 99% 27.3M 0s -2024-04-05T03:51:24Z #15 3.377 125600K .......... .......... .......... .......... .......... 99% 33.0M 0s -2024-04-05T03:51:24Z #15 3.381 125650K .......... .......... .......... .......... .......... 99% 142M 0s -2024-04-05T03:51:24Z #15 3.381 125700K .......... .......... .......... .......... .......... 99% 127M 0s -2024-04-05T03:51:24Z #15 3.381 125750K .......... .......... .......... .......... .......... 99% 119M 0s -2024-04-05T03:51:24Z #15 3.381 125800K .......... .......... .......... .......... .......... 99% 148M 0s -2024-04-05T03:51:24Z #15 3.381 125850K .......... .......... .......... .......... .......... 99% 156M 0s -2024-04-05T03:51:24Z #15 3.381 125900K .......... .......... .......... .......... .......... 99% 142M 0s -2024-04-05T03:51:24Z #15 3.381 125950K .......... .......... .......... .......... .......... 99% 113M 0s -2024-04-05T03:51:24Z #15 3.381 126000K .......... .......... .......... .......... .......... 99% 2.56M 0s -2024-04-05T03:51:24Z #15 3.400 126050K .......... .......... .......... .......... .......... 99% 10.0M 0s -2024-04-05T03:51:24Z #15 3.405 126100K .......... .......... .......... .......... .......... 99% 23.8M 0s -2024-04-05T03:51:24Z #15 3.407 126150K .......... .......... .......... .......... .......... 99% 104M 0s -2024-04-05T03:51:24Z #15 3.407 126200K .......... .......... .......... .......... .......... 99% 116M 0s -2024-04-05T03:51:24Z #15 3.408 126250K .......... .......... .......... .......... .......... 99% 134M 0s -2024-04-05T03:51:24Z #15 3.408 126300K .......... .......... .......... .......... .......... 99% 147M 0s -2024-04-05T03:51:24Z #15 3.409 126350K .......... .......... .......... .......... .......... 99% 138M 0s -2024-04-05T03:51:24Z #15 3.409 126400K .......... .......... .......... .......... .......... 99% 135M 0s -2024-04-05T03:51:24Z #15 3.409 126450K .......... .......... .......... .......... .......... 99% 121M 0s -2024-04-05T03:51:24Z #15 3.410 126500K .......... .......... .......... .......... .......... 99% 124M 0s -2024-04-05T03:51:24Z #15 3.410 126550K .......... .......... .......... .......... .......... 99% 132M 0s -2024-04-05T03:51:24Z #15 3.411 126600K .......... .......... .......... .......... .......... 99% 123M 0s -2024-04-05T03:51:24Z #15 3.411 126650K .......... .......... .......... .......... .......... 99% 133M 0s -2024-04-05T03:51:24Z #15 3.411 126700K .......... .......... .......... .......... .......... 99% 138M 0s -2024-04-05T03:51:24Z #15 3.412 126750K .......... .......... .......... .. 100% 144M=2.0s -2024-04-05T03:51:24Z #15 3.412 -2024-04-05T03:51:24Z #15 3.412 2024-04-05 03:51:24 (62.9 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] -2024-04-05T03:51:24Z #15 3.412 -2024-04-05T03:51:25Z #15 4.862 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' -2024-04-05T03:51:25Z #15 4.885 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-04-05T03:51:26Z #15 DONE 5.4s -2024-04-05T03:51:26Z -2024-04-05T03:51:26Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-05T03:51:26Z #6 ... -2024-04-05T03:51:26Z -2024-04-05T03:51:26Z #16 exporting to image -2024-04-05T03:51:26Z #16 exporting layers -2024-04-05T03:54:42Z #16 exporting layers 196.3s done -2024-04-05T03:54:42Z #16 writing image sha256:e1e6b3fb3c2f945d9200a24c8f9b5124d8442e45170078f4267811286137c599 done -2024-04-05T03:54:42Z #16 naming to docker.io/pavics/workflow-tests:py310-240404 -2024-04-05T03:54:42Z #16 naming to docker.io/pavics/workflow-tests:py310-240404 done -2024-04-05T03:54:42Z #16 DONE 196.3s -2024-04-05T03:54:42Z -2024-04-05T03:54:42Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-05T03:54:42Z Pushing index.docker.io/pavics/workflow-tests:py310-240404... -2024-04-05T04:02:43Z Done! -2024-04-05T04:02:43Z Build finished +2024-04-11T17:38:05Z Building in Docker Cloud's infrastructure... +2024-04-11T17:38:06Z Cloning into '.'... +2024-04-11T17:38:06Z Warning: Permanently added the RSA host key for IP address '140.82.112.3' to the list of known hosts. +2024-04-11T17:38:08Z Switched to a new branch 'docker-py310-240411' +2024-04-11T17:38:08Z KernelVersion: 5.4.0-1068-aws +2024-04-11T17:38:08Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-04-11T17:38:08Z Arch: amd64 +2024-04-11T17:38:08Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-04-11T17:38:08Z ApiVersion: 1.41 +2024-04-11T17:38:08Z Platform: {u'Name': u'Docker Engine - Community'} +2024-04-11T17:38:08Z Version: 20.10.15 +2024-04-11T17:38:08Z MinAPIVersion: 1.12 +2024-04-11T17:38:08Z GitCommit: 4433bf6 +2024-04-11T17:38:08Z Os: linux +2024-04-11T17:38:08Z GoVersion: go1.17.9 +2024-04-11T17:38:08Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240411... +2024-04-11T17:38:13Z #1 [internal] load build definition from Dockerfile +2024-04-11T17:38:13Z #1 transferring dockerfile: 6.99kB done +2024-04-11T17:38:13Z #1 DONE 0.1s +2024-04-11T17:38:13Z +2024-04-11T17:38:13Z #2 [internal] load .dockerignore +2024-04-11T17:38:13Z #2 transferring context: 2B done +2024-04-11T17:38:13Z #2 DONE 0.0s +2024-04-11T17:38:13Z +2024-04-11T17:38:13Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-04-11T17:38:14Z #3 ... +2024-04-11T17:38:14Z +2024-04-11T17:38:14Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-04-11T17:38:14Z #4 DONE 0.0s +2024-04-11T17:38:14Z +2024-04-11T17:38:14Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-04-11T17:38:14Z #3 DONE 0.6s +2024-04-11T17:38:14Z +2024-04-11T17:38:14Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-11T17:38:14Z #5 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done +2024-04-11T17:38:14Z #5 ... +2024-04-11T17:38:14Z +2024-04-11T17:38:14Z #6 [internal] load build context +2024-04-11T17:38:14Z #6 transferring context: 9.58kB done +2024-04-11T17:38:14Z #6 DONE 0.0s +2024-04-11T17:38:14Z +2024-04-11T17:38:14Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-11T17:38:14Z #5 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done +2024-04-11T17:38:14Z #5 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done +2024-04-11T17:38:14Z #5 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done +2024-04-11T17:38:14Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 0B / 31.42MB 0.1s +2024-04-11T17:38:14Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s +2024-04-11T17:38:14Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.1s +2024-04-11T17:38:14Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 7.34MB / 31.42MB 0.2s +2024-04-11T17:38:14Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 16.78MB / 31.42MB 0.3s +2024-04-11T17:38:14Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 24.12MB / 31.42MB 0.5s +2024-04-11T17:38:14Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 7.34MB / 50.08MB 0.5s +2024-04-11T17:38:15Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 26.52MB / 31.42MB 0.6s +2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 10.60MB / 50.08MB 0.6s +2024-04-11T17:38:15Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 0.8s +2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 18.71MB / 50.08MB 0.8s +2024-04-11T17:38:15Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.49MB / 147.31MB 0.8s +2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 22.02MB / 50.08MB 0.9s +2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 27.26MB / 50.08MB 1.0s +2024-04-11T17:38:15Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 19.05MB / 147.31MB 1.0s +2024-04-11T17:38:15Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.1s done +2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 35.65MB / 50.08MB 1.2s +2024-04-11T17:38:15Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 31.46MB / 147.31MB 1.3s +2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 39.85MB / 50.08MB 1.4s +2024-04-11T17:38:16Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 45.09MB / 50.08MB 1.6s +2024-04-11T17:38:16Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 40.01MB / 147.31MB 1.7s +2024-04-11T17:38:16Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 +2024-04-11T17:38:16Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.9s +2024-04-11T17:38:16Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 2.1s done +2024-04-11T17:38:16Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 50.33MB / 147.31MB 2.4s +2024-04-11T17:38:17Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 59.77MB / 147.31MB 2.6s +2024-04-11T17:38:17Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 73.40MB / 147.31MB 2.9s +2024-04-11T17:38:17Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 82.62MB / 147.31MB 3.4s +2024-04-11T17:38:18Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 91.23MB / 147.31MB 3.7s +2024-04-11T17:38:18Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 99.61MB / 147.31MB 4.3s +2024-04-11T17:38:19Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 114.29MB / 147.31MB 4.8s +2024-04-11T17:38:19Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 127.93MB / 147.31MB 5.4s +2024-04-11T17:38:20Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 141.56MB / 147.31MB 6.0s +2024-04-11T17:38:21Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.0s +2024-04-11T17:38:21Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 7.3s done +2024-04-11T17:38:22Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 6.1s done +2024-04-11T17:38:22Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 +2024-04-11T17:38:27Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.1s +2024-04-11T17:38:28Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.1s done +2024-04-11T17:38:29Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c +2024-04-11T17:38:33Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.0s +2024-04-11T17:38:39Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.1s +2024-04-11T17:38:43Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.3s done +2024-04-11T17:38:53Z #5 ... +2024-04-11T17:38:53Z +2024-04-11T17:38:53Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-04-11T17:38:53Z #0 1.527 Channels: +2024-04-11T17:38:53Z #0 1.527 - defaults +2024-04-11T17:38:53Z #0 1.527 Platform: linux-64 +2024-04-11T17:38:53Z #0 1.527 Collecting package metadata (repodata.json): ...working... done +2024-04-11T17:38:53Z #0 5.823 Solving environment: ...working... done +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 ## Package Plan ## +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 environment location: /opt/conda +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 added / updated specs: +2024-04-11T17:38:53Z #0 6.147 - conda +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 The following packages will be downloaded: +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 package | build +2024-04-11T17:38:53Z #0 6.147 ---------------------------|----------------- +2024-04-11T17:38:53Z #0 6.147 archspec-0.2.3 | pyhd3eb1b0_0 47 KB +2024-04-11T17:38:53Z #0 6.147 ca-certificates-2024.3.11 | h06a4308_0 127 KB +2024-04-11T17:38:53Z #0 6.147 conda-24.3.0 | py311h06a4308_0 1.2 MB +2024-04-11T17:38:53Z #0 6.147 ------------------------------------------------------------ +2024-04-11T17:38:53Z #0 6.147 Total: 1.4 MB +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 The following packages will be UPDATED: +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 archspec 0.2.1-pyhd3eb1b0_0 --> 0.2.3-pyhd3eb1b0_0 +2024-04-11T17:38:53Z #0 6.147 ca-certificates 2023.12.12-h06a4308_0 --> 2024.3.11-h06a4308_0 +2024-04-11T17:38:53Z #0 6.147 conda 24.1.2-py311h06a4308_0 --> 24.3.0-py311h06a4308_0 +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 +2024-04-11T17:38:53Z #0 6.147 Proceed ([y]/n)? +2024-04-11T17:38:53Z #0 6.648 +2024-04-11T17:38:53Z #0 6.648 Downloading and Extracting Packages: ...working... done +2024-04-11T17:38:53Z #0 6.648 Preparing transaction: ...working... done +2024-04-11T17:38:53Z #0 6.704 Verifying transaction: ...working... done +2024-04-11T17:38:57Z #0 6.829 Executing transaction: ...working... done +2024-04-11T17:38:58Z #7 14.75 Channels: +2024-04-11T17:38:58Z #7 14.75 - conda-forge +2024-04-11T17:38:58Z #7 14.75 - defaults +2024-04-11T17:38:58Z #7 14.75 Platform: linux-64 +2024-04-11T17:39:24Z #7 14.75 Collecting package metadata (repodata.json): ...working... done +2024-04-11T17:39:26Z #7 40.80 Solving environment: ...working... done +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 ## Package Plan ## +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 environment location: /opt/conda +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 added / updated specs: +2024-04-11T17:39:26Z #7 42.93 - conda-pack +2024-04-11T17:39:26Z #7 42.93 - mamba +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 The following packages will be downloaded: +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 package | build +2024-04-11T17:39:26Z #7 42.93 ---------------------------|----------------- +2024-04-11T17:39:26Z #7 42.93 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 c-ares-1.28.1 | hd590300_0 165 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 conda-24.3.0 | py311h38be061_0 1.2 MB conda-forge +2024-04-11T17:39:26Z #7 42.93 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-04-11T17:39:26Z #7 42.93 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge +2024-04-11T17:39:26Z #7 42.93 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 libcurl-8.7.1 | hca28451_0 389 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge +2024-04-11T17:39:26Z #7 42.93 libmambapy-1.5.8 | py311hf2555c7_0 304 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 libssh2-1.11.0 | h0841786_0 265 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge +2024-04-11T17:39:26Z #7 42.93 libxml2-2.12.6 | h232c23b_1 689 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 lzo-2.10 | h516909a_1000 314 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 mamba-1.5.8 | py311h3072747_0 65 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge +2024-04-11T17:39:26Z #7 42.93 python_abi-3.11 | 2_cp311 5 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-04-11T17:39:26Z #7 42.93 ------------------------------------------------------------ +2024-04-11T17:39:26Z #7 42.93 Total: 28.0 MB +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 The following NEW packages will be INSTALLED: +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 +2024-04-11T17:39:26Z #7 42.93 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 +2024-04-11T17:39:26Z #7 42.93 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-04-11T17:39:26Z #7 42.93 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-04-11T17:39:26Z #7 42.93 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 +2024-04-11T17:39:26Z #7 42.93 mamba conda-forge/linux-64::mamba-1.5.8-py311h3072747_0 +2024-04-11T17:39:26Z #7 42.93 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 The following packages will be UPDATED: +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 +2024-04-11T17:39:26Z #7 42.93 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-04-11T17:39:26Z #7 42.93 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-04-11T17:39:26Z #7 42.93 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 +2024-04-11T17:39:26Z #7 42.93 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-04-11T17:39:26Z #7 42.93 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 +2024-04-11T17:39:26Z #7 42.93 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 +2024-04-11T17:39:26Z #7 42.93 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 +2024-04-11T17:39:26Z #7 42.93 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.8-had39da4_0 +2024-04-11T17:39:26Z #7 42.93 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.8-py311hf2555c7_0 +2024-04-11T17:39:26Z #7 42.93 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 +2024-04-11T17:39:26Z #7 42.93 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 +2024-04-11T17:39:26Z #7 42.93 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 +2024-04-11T17:39:26Z #7 42.93 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_1 +2024-04-11T17:39:26Z #7 42.93 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 +2024-04-11T17:39:26Z #7 42.93 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 The following packages will be SUPERSEDED by a higher-priority channel: +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-04-11T17:39:26Z #7 42.93 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-04-11T17:39:26Z #7 42.93 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-04-11T17:39:26Z #7 42.93 conda pkgs/main::conda-24.3.0-py311h06a4308~ --> conda-forge::conda-24.3.0-py311h38be061_0 +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 +2024-04-11T17:39:26Z #7 42.93 Proceed ([y]/n)? +2024-04-11T17:39:29Z #7 45.53 +2024-04-11T17:39:29Z #7 45.53 Downloading and Extracting Packages: ...working... done +2024-04-11T17:39:29Z #7 45.53 Preparing transaction: ...working... done +2024-04-11T17:39:29Z #7 45.66 Verifying transaction: ...working... done +2024-04-11T17:39:41Z #7 46.20 Executing transaction: ...working... done +2024-04-11T17:39:43Z #7 59.44 Will remove 30 (29.4 MB) tarball(s). +2024-04-11T17:39:43Z #7 59.44 Will remove 1 index cache(s). +2024-04-11T17:39:43Z #7 59.44 Will remove 4 (5.0 MB) package(s). +2024-04-11T17:39:43Z #7 59.44 There are no tempfile(s) to remove. +2024-04-11T17:39:43Z #7 59.44 There are no logfile(s) to remove. +2024-04-11T17:39:44Z #7 60.97 bin/micromamba +2024-04-11T17:39:47Z #7 DONE 63.6s +2024-04-11T17:39:47Z +2024-04-11T17:39:47Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-04-11T17:39:47Z #8 0.509 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-04-11T17:39:47Z #8 0.526 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-04-11T17:39:47Z #8 0.526 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-04-11T17:39:48Z #8 0.663 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-04-11T17:39:48Z #8 1.035 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] +2024-04-11T17:39:48Z #8 1.672 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-04-11T17:39:49Z #8 2.680 Fetched 8565 kB in 2s (3922 kB/s) +2024-04-11T17:39:50Z #8 2.680 Reading package lists... +2024-04-11T17:39:51Z #8 3.612 Reading package lists... +2024-04-11T17:39:51Z #8 4.521 Building dependency tree... +2024-04-11T17:39:52Z #8 4.739 Reading state information... +2024-04-11T17:39:52Z #8 5.039 git is already the newest version (1:2.30.2-1+deb11u2). +2024-04-11T17:39:52Z #8 5.039 mercurial is already the newest version (5.6.1-4). +2024-04-11T17:39:52Z #8 5.039 The following additional packages will be installed: +2024-04-11T17:39:52Z #8 5.041 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-11T17:39:52Z #8 5.041 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-11T17:39:52Z #8 5.041 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-04-11T17:39:52Z #8 5.042 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-04-11T17:39:52Z #8 5.042 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-04-11T17:39:52Z #8 5.043 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-04-11T17:39:52Z #8 5.043 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-04-11T17:39:52Z #8 5.052 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-11T17:39:52Z #8 5.052 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-11T17:39:52Z #8 5.052 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-04-11T17:39:52Z #8 5.052 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-04-11T17:39:52Z #8 5.052 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-04-11T17:39:52Z #8 5.052 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-04-11T17:39:52Z #8 5.052 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-04-11T17:39:52Z #8 5.052 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-04-11T17:39:52Z #8 5.052 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-04-11T17:39:52Z #8 5.052 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-04-11T17:39:52Z #8 5.052 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-04-11T17:39:52Z #8 5.052 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-04-11T17:39:52Z #8 5.052 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-04-11T17:39:52Z #8 5.052 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-04-11T17:39:52Z #8 5.052 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-04-11T17:39:52Z #8 5.052 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-04-11T17:39:52Z #8 5.052 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-04-11T17:39:52Z #8 5.052 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-04-11T17:39:52Z #8 5.052 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-04-11T17:39:52Z #8 5.052 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-04-11T17:39:52Z #8 5.052 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-04-11T17:39:52Z #8 5.052 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-04-11T17:39:52Z #8 5.052 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-04-11T17:39:52Z #8 5.052 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-04-11T17:39:52Z #8 5.052 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-04-11T17:39:52Z #8 5.052 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-04-11T17:39:52Z #8 5.052 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-04-11T17:39:52Z #8 5.052 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-04-11T17:39:52Z #8 5.052 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-04-11T17:39:52Z #8 5.052 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-04-11T17:39:52Z #8 5.052 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv +2024-04-11T17:39:52Z #8 5.052 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data +2024-04-11T17:39:52Z #8 5.052 Suggested packages: +2024-04-11T17:39:52Z #8 5.052 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-04-11T17:39:52Z #8 5.052 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-04-11T17:39:52Z #8 5.052 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-04-11T17:39:52Z #8 5.052 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs +2024-04-11T17:39:52Z #8 5.052 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser +2024-04-11T17:39:52Z #8 5.052 opencl-icd ed diffutils-doc systemd-container policykit-1 zip +2024-04-11T17:39:52Z #8 5.052 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-04-11T17:39:52Z #8 5.052 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-04-11T17:39:52Z #8 5.052 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-04-11T17:39:53Z #8 6.692 The following NEW packages will be installed: +2024-04-11T17:39:54Z #8 6.693 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-11T17:39:54Z #8 6.693 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-11T17:39:54Z #8 6.694 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-04-11T17:39:54Z #8 6.694 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-04-11T17:39:54Z #8 6.695 glib-networking glib-networking-common glib-networking-services +2024-04-11T17:39:54Z #8 6.695 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-04-11T17:39:54Z #8 6.704 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-04-11T17:39:54Z #8 6.704 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-04-11T17:39:54Z #8 6.704 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-11T17:39:54Z #8 6.704 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-11T17:39:54Z #8 6.704 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-04-11T17:39:54Z #8 6.704 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-04-11T17:39:54Z #8 6.704 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-04-11T17:39:54Z #8 6.704 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-04-11T17:39:54Z #8 6.704 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-04-11T17:39:54Z #8 6.704 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-04-11T17:39:54Z #8 6.704 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-04-11T17:39:54Z #8 6.704 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-04-11T17:39:54Z #8 6.704 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-04-11T17:39:54Z #8 6.704 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-04-11T17:39:54Z #8 6.704 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-04-11T17:39:54Z #8 6.704 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-04-11T17:39:54Z #8 6.704 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-04-11T17:39:54Z #8 6.704 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-04-11T17:39:54Z #8 6.704 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-04-11T17:39:54Z #8 6.704 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-04-11T17:39:54Z #8 6.704 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-04-11T17:39:54Z #8 6.704 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-04-11T17:39:54Z #8 6.704 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-04-11T17:39:54Z #8 6.704 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-04-11T17:39:54Z #8 6.704 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-04-11T17:39:54Z #8 6.704 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-04-11T17:39:54Z #8 6.704 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-04-11T17:39:54Z #8 6.704 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-04-11T17:39:54Z #8 6.704 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-04-11T17:39:54Z #8 6.704 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-04-11T17:39:54Z #8 6.704 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-04-11T17:39:54Z #8 6.704 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-04-11T17:39:54Z #8 6.704 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-04-11T17:39:54Z #8 6.704 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-04-11T17:39:54Z #8 6.704 x11-utils xkb-data +2024-04-11T17:39:54Z #8 6.738 0 upgraded, 221 newly installed, 0 to remove and 7 not upgraded. +2024-04-11T17:39:54Z #8 6.738 Need to get 236 MB of archives. +2024-04-11T17:39:54Z #8 6.738 After this operation, 891 MB of additional disk space will be used. +2024-04-11T17:39:54Z #8 6.738 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-04-11T17:39:54Z #8 6.745 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-04-11T17:39:54Z #8 6.746 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-04-11T17:39:54Z #8 6.748 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-04-11T17:39:54Z #8 6.750 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-04-11T17:39:54Z #8 6.753 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-04-11T17:39:54Z #8 6.755 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-04-11T17:39:54Z #8 6.759 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-04-11T17:39:54Z #8 6.760 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-04-11T17:39:54Z #8 6.762 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-04-11T17:39:54Z #8 6.853 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-04-11T17:39:54Z #8 6.881 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-04-11T17:39:54Z #8 6.885 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-04-11T17:39:54Z #8 6.890 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-04-11T17:39:54Z #8 6.895 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-04-11T17:39:54Z #8 6.901 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-04-11T17:39:54Z #8 6.923 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-04-11T17:39:54Z #8 6.927 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-04-11T17:39:54Z #8 6.929 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-04-11T17:39:54Z #8 6.935 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-04-11T17:39:54Z #8 7.130 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-04-11T17:39:54Z #8 7.140 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-04-11T17:39:54Z #8 7.150 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-04-11T17:39:54Z #8 7.154 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-04-11T17:39:54Z #8 7.159 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-04-11T17:39:54Z #8 7.161 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-04-11T17:39:54Z #8 7.162 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-04-11T17:39:54Z #8 7.166 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-04-11T17:39:54Z #8 7.171 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-04-11T17:39:54Z #8 7.174 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-04-11T17:39:54Z #8 7.176 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-04-11T17:39:54Z #8 7.422 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-04-11T17:39:54Z #8 7.426 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-04-11T17:39:54Z #8 7.428 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-04-11T17:39:54Z #8 7.436 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-04-11T17:39:54Z #8 7.438 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-04-11T17:39:54Z #8 7.441 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-04-11T17:39:54Z #8 7.443 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-04-11T17:39:54Z #8 7.444 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-04-11T17:39:54Z #8 7.447 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-04-11T17:39:54Z #8 7.478 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-04-11T17:39:54Z #8 7.508 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-04-11T17:39:54Z #8 7.511 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-04-11T17:39:54Z #8 7.513 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-04-11T17:39:54Z #8 7.537 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-04-11T17:39:54Z #8 7.559 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-04-11T17:39:54Z #8 7.570 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-04-11T17:39:54Z #8 7.603 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-04-11T17:39:54Z #8 7.605 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-04-11T17:39:55Z #8 7.810 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-04-11T17:39:55Z #8 7.813 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-04-11T17:39:55Z #8 7.817 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-04-11T17:39:55Z #8 7.819 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-04-11T17:39:55Z #8 7.822 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-04-11T17:39:55Z #8 7.824 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-04-11T17:39:55Z #8 7.828 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-04-11T17:39:55Z #8 7.831 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-04-11T17:39:55Z #8 7.840 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-04-11T17:39:55Z #8 7.857 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-04-11T17:39:55Z #8 7.861 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-04-11T17:39:55Z #8 7.867 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-04-11T17:39:55Z #8 7.874 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-04-11T17:39:55Z #8 7.888 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-04-11T17:39:55Z #8 7.891 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-04-11T17:39:55Z #8 7.901 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-04-11T17:39:55Z #8 7.904 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-04-11T17:39:55Z #8 7.906 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-04-11T17:39:55Z #8 7.910 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-04-11T17:39:55Z #8 7.912 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-04-11T17:39:55Z #8 7.923 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-04-11T17:39:55Z #8 7.926 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-04-11T17:39:55Z #8 7.929 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-04-11T17:39:55Z #8 7.931 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-04-11T17:39:55Z #8 7.933 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-04-11T17:39:55Z #8 7.938 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-04-11T17:39:55Z #8 7.942 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-04-11T17:39:55Z #8 7.944 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-04-11T17:39:55Z #8 7.946 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-04-11T17:39:55Z #8 7.964 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-04-11T17:39:55Z #8 7.966 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-04-11T17:39:55Z #8 7.968 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-04-11T17:39:55Z #8 7.974 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-04-11T17:39:55Z #8 7.978 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-04-11T17:39:55Z #8 7.980 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-04-11T17:39:55Z #8 7.982 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-04-11T17:39:55Z #8 7.985 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-04-11T17:39:55Z #8 7.987 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-04-11T17:39:55Z #8 7.989 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-04-11T17:39:55Z #8 7.991 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-04-11T17:39:55Z #8 7.993 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-04-11T17:39:55Z #8 7.994 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-04-11T17:39:55Z #8 8.003 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-04-11T17:39:55Z #8 8.005 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-04-11T17:39:55Z #8 8.009 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-04-11T17:39:55Z #8 8.011 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-04-11T17:39:55Z #8 8.012 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-04-11T17:39:55Z #8 8.024 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-04-11T17:39:55Z #8 8.027 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-04-11T17:39:55Z #8 8.029 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-04-11T17:39:55Z #8 8.030 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-04-11T17:39:55Z #8 8.032 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-04-11T17:39:55Z #8 8.033 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-04-11T17:39:55Z #8 8.035 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-04-11T17:39:55Z #8 8.037 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-04-11T17:39:55Z #8 8.047 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-04-11T17:39:55Z #8 8.050 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-04-11T17:39:55Z #8 8.052 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-04-11T17:39:55Z #8 8.120 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-04-11T17:39:55Z #8 8.163 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-04-11T17:39:55Z #8 8.167 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.9.1esr-1~deb11u1 [63.7 MB] +2024-04-11T17:39:56Z #8 9.490 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-04-11T17:39:56Z #8 9.493 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-04-11T17:39:56Z #8 9.495 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-04-11T17:39:56Z #8 9.499 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-04-11T17:39:56Z #8 9.512 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-04-11T17:39:56Z #8 9.514 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-04-11T17:39:56Z #8 9.543 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-04-11T17:39:56Z #8 9.559 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-04-11T17:39:56Z #8 9.588 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-04-11T17:39:56Z #8 9.604 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-04-11T17:39:56Z #8 9.607 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-04-11T17:39:56Z #8 9.637 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-04-11T17:39:57Z #8 10.04 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-04-11T17:39:57Z #8 10.04 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-04-11T17:39:57Z #8 10.04 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-04-11T17:39:57Z #8 10.04 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-04-11T17:39:57Z #8 10.04 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-04-11T17:39:57Z #8 10.05 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-04-11T17:39:57Z #8 10.05 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-04-11T17:39:57Z #8 10.05 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-04-11T17:39:57Z #8 10.06 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-04-11T17:39:57Z #8 10.10 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-04-11T17:39:57Z #8 10.13 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-04-11T17:39:57Z #8 10.20 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-04-11T17:39:57Z #8 10.20 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-04-11T17:39:57Z #8 10.20 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-04-11T17:39:57Z #8 10.20 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-04-11T17:39:57Z #8 10.21 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-04-11T17:39:57Z #8 10.21 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-04-11T17:39:57Z #8 10.41 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-04-11T17:39:57Z #8 10.41 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-04-11T17:39:57Z #8 10.42 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-04-11T17:39:57Z #8 10.42 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-04-11T17:39:57Z #8 10.42 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-04-11T17:39:57Z #8 10.43 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-04-11T17:39:57Z #8 10.46 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-04-11T17:39:57Z #8 10.46 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-04-11T17:39:57Z #8 10.47 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-04-11T17:39:57Z #8 10.47 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-04-11T17:39:57Z #8 10.47 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-04-11T17:39:57Z #8 10.47 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-04-11T17:39:57Z #8 10.47 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-04-11T17:39:57Z #8 10.48 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-04-11T17:39:57Z #8 10.48 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-04-11T17:39:57Z #8 10.48 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-04-11T17:39:57Z #8 10.49 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-04-11T17:39:57Z #8 10.50 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-04-11T17:39:57Z #8 10.50 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-04-11T17:39:57Z #8 10.51 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-04-11T17:39:57Z #8 10.51 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-04-11T17:39:57Z #8 10.52 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-04-11T17:39:57Z #8 10.53 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-04-11T17:39:57Z #8 10.54 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-04-11T17:39:57Z #8 10.55 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-04-11T17:39:57Z #8 10.55 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-04-11T17:39:57Z #8 10.67 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] +2024-04-11T17:39:57Z #8 10.68 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-04-11T17:39:57Z #8 10.68 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-04-11T17:39:57Z #8 10.68 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] +2024-04-11T17:39:57Z #8 10.69 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-04-11T17:39:57Z #8 10.70 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-04-11T17:39:57Z #8 10.71 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-04-11T17:39:57Z #8 10.71 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-04-11T17:39:58Z #8 10.72 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] +2024-04-11T17:39:58Z #8 10.75 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-04-11T17:39:58Z #8 10.75 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-04-11T17:39:58Z #8 10.75 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-04-11T17:39:58Z #8 10.78 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-04-11T17:39:58Z #8 10.79 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-04-11T17:39:58Z #8 10.79 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-04-11T17:39:58Z #8 10.79 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-04-11T17:39:58Z #8 10.79 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-04-11T17:39:58Z #8 10.96 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-04-11T17:39:58Z #8 11.36 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-04-11T17:39:58Z #8 11.36 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-04-11T17:39:58Z #8 11.36 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-04-11T17:39:58Z #8 11.36 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-04-11T17:39:58Z #8 11.57 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-04-11T17:39:58Z #8 11.57 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-04-11T17:39:58Z #8 11.57 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-04-11T17:39:58Z #8 11.57 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-04-11T17:39:58Z #8 11.58 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-04-11T17:39:58Z #8 11.58 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-04-11T17:39:58Z #8 11.59 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-04-11T17:39:58Z #8 11.59 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-04-11T17:39:58Z #8 11.59 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-04-11T17:39:58Z #8 11.59 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-04-11T17:39:58Z #8 11.60 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-04-11T17:39:58Z #8 11.60 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-04-11T17:39:58Z #8 11.60 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-04-11T17:39:58Z #8 11.61 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-04-11T17:39:58Z #8 11.61 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-04-11T17:39:58Z #8 11.61 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-04-11T17:39:58Z #8 11.62 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-04-11T17:39:58Z #8 11.62 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-04-11T17:39:58Z #8 11.62 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-04-11T17:39:58Z #8 11.63 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-04-11T17:39:58Z #8 11.63 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-04-11T17:39:58Z #8 11.63 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-04-11T17:39:58Z #8 11.63 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-04-11T17:39:58Z #8 11.64 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-04-11T17:39:58Z #8 11.64 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-04-11T17:39:58Z #8 11.64 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-04-11T17:39:58Z #8 11.67 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-04-11T17:39:59Z #8 11.73 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-04-11T17:39:59Z #8 11.77 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-04-11T17:39:59Z #8 11.86 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-04-11T17:39:59Z #8 11.86 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-04-11T17:39:59Z #8 11.87 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-04-11T17:39:59Z #8 11.87 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-04-11T17:39:59Z #8 11.87 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-04-11T17:39:59Z #8 12.22 debconf: delaying package configuration, since apt-utils is not installed +2024-04-11T17:39:59Z #8 12.27 Fetched 236 MB in 5s (45.7 MB/s) +2024-04-11T17:39:59Z #8 12.31 Selecting previously unselected package libapparmor1:amd64. +2024-04-11T17:39:59Z #8 12.31 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-04-11T17:39:59Z #8 12.33 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-04-11T17:39:59Z #8 12.34 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-04-11T17:39:59Z #8 12.40 Selecting previously unselected package libcap2:amd64. +2024-04-11T17:39:59Z #8 12.40 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-04-11T17:39:59Z #8 12.41 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-04-11T17:39:59Z #8 12.46 Selecting previously unselected package libargon2-1:amd64. +2024-04-11T17:39:59Z #8 12.46 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-04-11T17:39:59Z #8 12.46 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-11T17:39:59Z #8 12.50 Selecting previously unselected package dmsetup. +2024-04-11T17:39:59Z #8 12.51 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-04-11T17:39:59Z #8 12.51 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-04-11T17:39:59Z #8 12.57 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-04-11T17:39:59Z #8 12.58 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-04-11T17:39:59Z #8 12.58 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-11T17:40:00Z #8 12.64 Selecting previously unselected package libjson-c5:amd64. +2024-04-11T17:40:00Z #8 12.65 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-04-11T17:40:00Z #8 12.65 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-11T17:40:00Z #8 12.69 Selecting previously unselected package libcryptsetup12:amd64. +2024-04-11T17:40:00Z #8 12.70 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-04-11T17:40:00Z #8 12.71 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-11T17:40:00Z #8 12.81 Selecting previously unselected package libip4tc2:amd64. +2024-04-11T17:40:00Z #8 12.81 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-04-11T17:40:00Z #8 12.82 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-04-11T17:40:00Z #8 12.86 Selecting previously unselected package libkmod2:amd64. +2024-04-11T17:40:00Z #8 12.86 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-04-11T17:40:00Z #8 12.87 Unpacking libkmod2:amd64 (28-1) ... +2024-04-11T17:40:00Z #8 12.92 Selecting previously unselected package systemd. +2024-04-11T17:40:00Z #8 12.93 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-11T17:40:00Z #8 12.99 Unpacking systemd (247.3-7+deb11u4) ... +2024-04-11T17:40:01Z #8 14.01 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-04-11T17:40:01Z #8 14.02 Setting up libcap2:amd64 (1:2.44-1) ... +2024-04-11T17:40:01Z #8 14.03 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-11T17:40:01Z #8 14.04 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-11T17:40:01Z #8 14.05 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-04-11T17:40:01Z #8 14.07 Setting up libkmod2:amd64 (28-1) ... +2024-04-11T17:40:01Z #8 14.08 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-11T17:40:01Z #8 14.10 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-11T17:40:01Z #8 14.11 Setting up systemd (247.3-7+deb11u4) ... +2024-04-11T17:40:01Z #8 14.16 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-04-11T17:40:01Z #8 14.16 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-04-11T17:40:01Z #8 14.16 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-04-11T17:40:01Z #8 14.19 Initializing machine ID from KVM UUID. +2024-04-11T17:40:01Z #8 14.66 Setting up dmsetup (2:1.02.175-2.1) ... +2024-04-11T17:40:01Z #8 14.73 Selecting previously unselected package systemd-sysv. +2024-04-11T17:40:02Z #8 14.73 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-04-11T17:40:02Z #8 14.75 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-04-11T17:40:02Z #8 14.76 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-04-11T17:40:02Z #8 14.83 Selecting previously unselected package libdbus-1-3:amd64. +2024-04-11T17:40:02Z #8 14.83 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-04-11T17:40:02Z #8 14.84 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-11T17:40:02Z #8 14.92 Selecting previously unselected package dbus. +2024-04-11T17:40:02Z #8 14.92 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-04-11T17:40:02Z #8 14.94 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-04-11T17:40:02Z #8 15.04 Selecting previously unselected package libnss-systemd:amd64. +2024-04-11T17:40:02Z #8 15.05 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-11T17:40:02Z #8 15.05 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-11T17:40:02Z #8 15.12 Selecting previously unselected package libpam-systemd:amd64. +2024-04-11T17:40:02Z #8 15.13 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-11T17:40:02Z #8 15.13 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-11T17:40:02Z #8 15.21 Selecting previously unselected package manpages. +2024-04-11T17:40:02Z #8 15.22 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-04-11T17:40:02Z #8 15.22 Unpacking manpages (5.10-1) ... +2024-04-11T17:40:02Z #8 15.45 Selecting previously unselected package systemd-timesyncd. +2024-04-11T17:40:02Z #8 15.45 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-04-11T17:40:02Z #8 15.46 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-11T17:40:02Z #8 15.52 Selecting previously unselected package hicolor-icon-theme. +2024-04-11T17:40:02Z #8 15.53 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-04-11T17:40:02Z #8 15.53 Unpacking hicolor-icon-theme (0.17-2) ... +2024-04-11T17:40:02Z #8 15.64 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-04-11T17:40:02Z #8 15.64 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-04-11T17:40:02Z #8 15.65 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-11T17:40:03Z #8 15.76 Selecting previously unselected package libicu67:amd64. +2024-04-11T17:40:03Z #8 15.76 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-04-11T17:40:03Z #8 15.77 Unpacking libicu67:amd64 (67.1-7) ... +2024-04-11T17:40:04Z #8 17.44 Selecting previously unselected package libxml2:amd64. +2024-04-11T17:40:04Z #8 17.44 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-04-11T17:40:04Z #8 17.45 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-11T17:40:04Z #8 17.59 Selecting previously unselected package shared-mime-info. +2024-04-11T17:40:04Z #8 17.59 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-04-11T17:40:04Z #8 17.60 Unpacking shared-mime-info (2.0-1) ... +2024-04-11T17:40:05Z #8 17.80 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-04-11T17:40:05Z #8 17.81 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-04-11T17:40:05Z #8 17.81 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-11T17:40:05Z #8 17.88 Selecting previously unselected package libpng16-16:amd64. +2024-04-11T17:40:05Z #8 17.88 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-04-11T17:40:05Z #8 17.89 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-04-11T17:40:05Z #8 17.97 Selecting previously unselected package libdeflate0:amd64. +2024-04-11T17:40:05Z #8 17.98 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-04-11T17:40:05Z #8 17.98 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-04-11T17:40:05Z #8 18.03 Selecting previously unselected package libjbig0:amd64. +2024-04-11T17:40:05Z #8 18.04 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-04-11T17:40:05Z #8 18.04 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-11T17:40:05Z #8 18.10 Selecting previously unselected package libwebp6:amd64. +2024-04-11T17:40:05Z #8 18.10 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-11T17:40:05Z #8 18.11 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-11T17:40:05Z #8 18.19 Selecting previously unselected package libtiff5:amd64. +2024-04-11T17:40:05Z #8 18.19 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-04-11T17:40:05Z #8 18.20 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-11T17:40:05Z #8 18.29 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-04-11T17:40:05Z #8 18.29 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-11T17:40:05Z #8 18.30 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-11T17:40:05Z #8 18.37 Selecting previously unselected package gtk-update-icon-cache. +2024-04-11T17:40:05Z #8 18.37 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-04-11T17:40:05Z #8 18.38 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-11T17:40:05Z #8 18.50 Selecting previously unselected package adwaita-icon-theme. +2024-04-11T17:40:05Z #8 18.51 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-04-11T17:40:05Z #8 18.51 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-04-11T17:40:08Z #8 21.36 Selecting previously unselected package alsa-topology-conf. +2024-04-11T17:40:08Z #8 21.37 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-04-11T17:40:08Z #8 21.37 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-04-11T17:40:08Z #8 21.42 Selecting previously unselected package libasound2-data. +2024-04-11T17:40:08Z #8 21.42 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-04-11T17:40:08Z #8 21.43 Unpacking libasound2-data (1.2.4-1.1) ... +2024-04-11T17:40:08Z #8 21.49 Selecting previously unselected package libasound2:amd64. +2024-04-11T17:40:08Z #8 21.50 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-04-11T17:40:08Z #8 21.50 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-04-11T17:40:08Z #8 21.61 Selecting previously unselected package alsa-ucm-conf. +2024-04-11T17:40:08Z #8 21.62 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-04-11T17:40:08Z #8 21.62 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-04-11T17:40:09Z #8 21.72 Selecting previously unselected package libatspi2.0-0:amd64. +2024-04-11T17:40:09Z #8 21.73 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-04-11T17:40:09Z #8 21.73 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-11T17:40:09Z #8 21.79 Selecting previously unselected package libxi6:amd64. +2024-04-11T17:40:09Z #8 21.79 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-04-11T17:40:09Z #8 21.80 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-04-11T17:40:09Z #8 21.85 Selecting previously unselected package libxtst6:amd64. +2024-04-11T17:40:09Z #8 21.86 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-04-11T17:40:09Z #8 21.87 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-04-11T17:40:09Z #8 21.90 Selecting previously unselected package at-spi2-core. +2024-04-11T17:40:09Z #8 21.91 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-04-11T17:40:09Z #8 21.91 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-11T17:40:09Z #8 22.00 Selecting previously unselected package binutils-common:amd64. +2024-04-11T17:40:09Z #8 22.00 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-04-11T17:40:09Z #8 22.01 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-04-11T17:40:09Z #8 22.45 Selecting previously unselected package libbinutils:amd64. +2024-04-11T17:40:09Z #8 22.46 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-04-11T17:40:09Z #8 22.47 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-04-11T17:40:09Z #8 22.63 Selecting previously unselected package libctf-nobfd0:amd64. +2024-04-11T17:40:09Z #8 22.63 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-04-11T17:40:09Z #8 22.64 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-11T17:40:09Z #8 22.69 Selecting previously unselected package libctf0:amd64. +2024-04-11T17:40:09Z #8 22.69 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-04-11T17:40:09Z #8 22.70 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-04-11T17:40:10Z #8 22.74 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-04-11T17:40:10Z #8 22.75 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-04-11T17:40:10Z #8 22.75 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-11T17:40:10Z #8 23.19 Selecting previously unselected package binutils. +2024-04-11T17:40:10Z #8 23.19 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-04-11T17:40:10Z #8 23.20 Unpacking binutils (2.35.2-2) ... +2024-04-11T17:40:10Z #8 23.26 Selecting previously unselected package libisl23:amd64. +2024-04-11T17:40:10Z #8 23.26 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-04-11T17:40:10Z #8 23.27 Unpacking libisl23:amd64 (0.23-1) ... +2024-04-11T17:40:10Z #8 23.44 Selecting previously unselected package libmpfr6:amd64. +2024-04-11T17:40:10Z #8 23.44 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-04-11T17:40:10Z #8 23.45 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-04-11T17:40:10Z #8 23.69 Selecting previously unselected package libmpc3:amd64. +2024-04-11T17:40:11Z #8 23.69 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-04-11T17:40:11Z #8 23.70 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-04-11T17:40:11Z #8 23.75 Selecting previously unselected package cpp-10. +2024-04-11T17:40:11Z #8 23.75 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-04-11T17:40:11Z #8 23.76 Unpacking cpp-10 (10.2.1-6) ... +2024-04-11T17:40:12Z #8 25.27 Selecting previously unselected package cpp. +2024-04-11T17:40:12Z #8 25.27 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-04-11T17:40:12Z #8 25.28 Unpacking cpp (4:10.2.1-1) ... +2024-04-11T17:40:12Z #8 25.32 Selecting previously unselected package dbus-user-session. +2024-04-11T17:40:12Z #8 25.32 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-04-11T17:40:12Z #8 25.33 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-11T17:40:12Z #8 25.38 Selecting previously unselected package libdconf1:amd64. +2024-04-11T17:40:12Z #8 25.39 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-04-11T17:40:12Z #8 25.39 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-04-11T17:40:12Z #8 25.43 Selecting previously unselected package dconf-service. +2024-04-11T17:40:12Z #8 25.44 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-04-11T17:40:12Z #8 25.44 Unpacking dconf-service (0.38.0-2) ... +2024-04-11T17:40:12Z #8 25.48 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-04-11T17:40:12Z #8 25.48 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-04-11T17:40:12Z #8 25.49 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-11T17:40:12Z #8 25.53 Selecting previously unselected package libatk1.0-data. +2024-04-11T17:40:12Z #8 25.53 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-04-11T17:40:12Z #8 25.54 Unpacking libatk1.0-data (2.36.0-2) ... +2024-04-11T17:40:12Z #8 25.63 Selecting previously unselected package libatk1.0-0:amd64. +2024-04-11T17:40:13Z #8 25.64 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-04-11T17:40:13Z #8 25.64 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-11T17:40:13Z #8 25.70 Selecting previously unselected package libfreetype6:amd64. +2024-04-11T17:40:13Z #8 25.70 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-04-11T17:40:13Z #8 25.71 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-11T17:40:13Z #8 25.82 Selecting previously unselected package fonts-dejavu-core. +2024-04-11T17:40:13Z #8 25.82 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-04-11T17:40:13Z #8 25.83 Unpacking fonts-dejavu-core (2.37-2) ... +2024-04-11T17:40:13Z #8 26.08 Selecting previously unselected package fontconfig-config. +2024-04-11T17:40:13Z #8 26.09 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-04-11T17:40:13Z #8 26.26 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-04-11T17:40:13Z #8 26.33 Selecting previously unselected package libfontconfig1:amd64. +2024-04-11T17:40:13Z #8 26.33 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-04-11T17:40:13Z #8 26.34 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-11T17:40:13Z #8 26.40 Selecting previously unselected package libpixman-1-0:amd64. +2024-04-11T17:40:13Z #8 26.40 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-04-11T17:40:13Z #8 26.41 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-11T17:40:13Z #8 26.51 Selecting previously unselected package libxcb-render0:amd64. +2024-04-11T17:40:13Z #8 26.51 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-04-11T17:40:13Z #8 26.52 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-04-11T17:40:13Z #8 26.58 Selecting previously unselected package libxcb-shm0:amd64. +2024-04-11T17:40:13Z #8 26.58 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-04-11T17:40:13Z #8 26.59 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-04-11T17:40:13Z #8 26.65 Selecting previously unselected package libcairo2:amd64. +2024-04-11T17:40:13Z #8 26.65 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-04-11T17:40:13Z #8 26.66 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-04-11T17:40:14Z #8 26.79 Selecting previously unselected package libcairo-gobject2:amd64. +2024-04-11T17:40:14Z #8 26.80 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-04-11T17:40:14Z #8 26.80 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-11T17:40:14Z #8 26.86 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-04-11T17:40:14Z #8 26.87 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-04-11T17:40:14Z #8 26.87 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-11T17:40:14Z #8 26.93 Selecting previously unselected package libevent-2.1-7:amd64. +2024-04-11T17:40:14Z #8 26.94 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-04-11T17:40:14Z #8 26.94 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-11T17:40:14Z #8 27.01 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-04-11T17:40:14Z #8 27.02 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-04-11T17:40:14Z #8 27.02 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-11T17:40:14Z #8 27.07 Selecting previously unselected package liblcms2-2:amd64. +2024-04-11T17:40:14Z #8 27.08 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-04-11T17:40:14Z #8 27.08 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-11T17:40:14Z #8 27.15 Selecting previously unselected package libcolord2:amd64. +2024-04-11T17:40:14Z #8 27.15 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-04-11T17:40:14Z #8 27.16 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-04-11T17:40:14Z #8 27.23 Selecting previously unselected package libavahi-common-data:amd64. +2024-04-11T17:40:14Z #8 27.23 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-04-11T17:40:14Z #8 27.24 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-11T17:40:14Z #8 27.32 Selecting previously unselected package libavahi-common3:amd64. +2024-04-11T17:40:14Z #8 27.32 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-04-11T17:40:14Z #8 27.33 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-11T17:40:14Z #8 27.38 Selecting previously unselected package libavahi-client3:amd64. +2024-04-11T17:40:14Z #8 27.38 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-04-11T17:40:14Z #8 27.39 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-11T17:40:14Z #8 27.45 Selecting previously unselected package libcups2:amd64. +2024-04-11T17:40:14Z #8 27.46 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-04-11T17:40:14Z #8 27.46 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-11T17:40:14Z #8 27.59 Selecting previously unselected package libepoxy0:amd64. +2024-04-11T17:40:14Z #8 27.59 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-04-11T17:40:14Z #8 27.60 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-04-11T17:40:15Z #8 27.69 Selecting previously unselected package libfribidi0:amd64. +2024-04-11T17:40:15Z #8 27.70 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-04-11T17:40:15Z #8 27.70 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-11T17:40:15Z #8 27.76 Selecting previously unselected package libgraphite2-3:amd64. +2024-04-11T17:40:15Z #8 27.76 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-04-11T17:40:15Z #8 27.77 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-11T17:40:15Z #8 27.82 Selecting previously unselected package libharfbuzz0b:amd64. +2024-04-11T17:40:15Z #8 27.83 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-04-11T17:40:15Z #8 27.84 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-11T17:40:15Z #8 27.94 Selecting previously unselected package libjson-glib-1.0-common. +2024-04-11T17:40:15Z #8 27.95 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-04-11T17:40:15Z #8 27.96 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-04-11T17:40:15Z #8 28.02 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-04-11T17:40:15Z #8 28.03 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-04-11T17:40:15Z #8 28.03 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-11T17:40:15Z #8 28.09 Selecting previously unselected package fontconfig. +2024-04-11T17:40:15Z #8 28.10 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-04-11T17:40:15Z #8 28.10 Unpacking fontconfig (2.13.1-4.2) ... +2024-04-11T17:40:15Z #8 28.17 Selecting previously unselected package libthai-data. +2024-04-11T17:40:15Z #8 28.18 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-04-11T17:40:15Z #8 28.18 Unpacking libthai-data (0.1.28-3) ... +2024-04-11T17:40:15Z #8 28.27 Selecting previously unselected package libdatrie1:amd64. +2024-04-11T17:40:15Z #8 28.27 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-04-11T17:40:15Z #8 28.28 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-04-11T17:40:15Z #8 28.32 Selecting previously unselected package libthai0:amd64. +2024-04-11T17:40:15Z #8 28.33 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-04-11T17:40:15Z #8 28.33 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-04-11T17:40:15Z #8 28.40 Selecting previously unselected package libpango-1.0-0:amd64. +2024-04-11T17:40:15Z #8 28.40 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-04-11T17:40:15Z #8 28.41 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-11T17:40:15Z #8 28.49 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-04-11T17:40:15Z #8 28.49 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-04-11T17:40:15Z #8 28.50 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-11T17:40:15Z #8 28.55 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-04-11T17:40:15Z #8 28.55 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-04-11T17:40:15Z #8 28.56 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-11T17:40:15Z #8 28.60 Selecting previously unselected package libproxy1v5:amd64. +2024-04-11T17:40:15Z #8 28.61 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-04-11T17:40:15Z #8 28.62 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-04-11T17:40:15Z #8 28.66 Selecting previously unselected package glib-networking-common. +2024-04-11T17:40:15Z #8 28.67 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-04-11T17:40:15Z #8 28.67 Unpacking glib-networking-common (2.66.0-2) ... +2024-04-11T17:40:16Z #8 28.74 Selecting previously unselected package glib-networking-services. +2024-04-11T17:40:16Z #8 28.75 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-04-11T17:40:16Z #8 28.75 Unpacking glib-networking-services (2.66.0-2) ... +2024-04-11T17:40:16Z #8 28.79 Selecting previously unselected package gsettings-desktop-schemas. +2024-04-11T17:40:16Z #8 28.80 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-04-11T17:40:16Z #8 28.81 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-04-11T17:40:16Z #8 28.98 Selecting previously unselected package glib-networking:amd64. +2024-04-11T17:40:16Z #8 28.99 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-04-11T17:40:16Z #8 28.99 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-04-11T17:40:16Z #8 29.05 Selecting previously unselected package libsoup2.4-1:amd64. +2024-04-11T17:40:16Z #8 29.06 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-04-11T17:40:16Z #8 29.06 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-11T17:40:16Z #8 29.18 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-04-11T17:40:16Z #8 29.19 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-04-11T17:40:16Z #8 29.19 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-11T17:40:16Z #8 29.24 Selecting previously unselected package librest-0.7-0:amd64. +2024-04-11T17:40:16Z #8 29.25 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-04-11T17:40:16Z #8 29.25 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-11T17:40:16Z #8 29.30 Selecting previously unselected package libwayland-client0:amd64. +2024-04-11T17:40:16Z #8 29.31 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-11T17:40:16Z #8 29.32 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-11T17:40:16Z #8 29.36 Selecting previously unselected package libwayland-cursor0:amd64. +2024-04-11T17:40:16Z #8 29.37 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-11T17:40:16Z #8 29.38 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-11T17:40:16Z #8 29.42 Selecting previously unselected package libwayland-egl1:amd64. +2024-04-11T17:40:16Z #8 29.43 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-04-11T17:40:16Z #8 29.43 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-11T17:40:16Z #8 29.47 Selecting previously unselected package libxcomposite1:amd64. +2024-04-11T17:40:16Z #8 29.48 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-04-11T17:40:16Z #8 29.49 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-11T17:40:16Z #8 29.53 Selecting previously unselected package libxfixes3:amd64. +2024-04-11T17:40:16Z #8 29.54 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-04-11T17:40:16Z #8 29.55 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-11T17:40:16Z #8 29.59 Selecting previously unselected package libxcursor1:amd64. +2024-04-11T17:40:16Z #8 29.60 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-04-11T17:40:16Z #8 29.60 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-11T17:40:16Z #8 29.65 Selecting previously unselected package libxdamage1:amd64. +2024-04-11T17:40:16Z #8 29.66 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-04-11T17:40:16Z #8 29.66 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-11T17:40:17Z #8 29.70 Selecting previously unselected package libxinerama1:amd64. +2024-04-11T17:40:17Z #8 29.71 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-04-11T17:40:17Z #8 29.72 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-11T17:40:17Z #8 29.75 Selecting previously unselected package xkb-data. +2024-04-11T17:40:17Z #8 29.76 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-04-11T17:40:17Z #8 29.77 Unpacking xkb-data (2.29-2) ... +2024-04-11T17:40:17Z #8 30.02 Selecting previously unselected package libxkbcommon0:amd64. +2024-04-11T17:40:17Z #8 30.02 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-04-11T17:40:17Z #8 30.03 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-11T17:40:17Z #8 30.08 Selecting previously unselected package libxrandr2:amd64. +2024-04-11T17:40:17Z #8 30.09 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-04-11T17:40:17Z #8 30.09 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-11T17:40:17Z #8 30.13 Selecting previously unselected package libgtk-3-common. +2024-04-11T17:40:17Z #8 30.14 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-04-11T17:40:17Z #8 30.14 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-11T17:40:18Z #8 30.99 Selecting previously unselected package libgtk-3-0:amd64. +2024-04-11T17:40:18Z #8 30.99 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-04-11T17:40:18Z #8 31.00 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-11T17:40:18Z #8 31.53 Selecting previously unselected package libx11-xcb1:amd64. +2024-04-11T17:40:18Z #8 31.53 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-04-11T17:40:18Z #8 31.54 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-11T17:40:18Z #8 31.62 Selecting previously unselected package firefox-esr. +2024-04-11T17:40:18Z #8 31.62 Preparing to unpack .../099-firefox-esr_115.9.1esr-1~deb11u1_amd64.deb ... +2024-04-11T17:40:18Z #8 31.63 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-04-11T17:40:19Z #8 31.64 Unpacking firefox-esr (115.9.1esr-1~deb11u1) ... +2024-04-11T17:40:30Z #8 42.73 Selecting previously unselected package fonts-humor-sans. +2024-04-11T17:40:30Z #8 42.73 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-04-11T17:40:30Z #8 42.74 Unpacking fonts-humor-sans (1.0-4) ... +2024-04-11T17:40:30Z #8 42.78 Selecting previously unselected package libcc1-0:amd64. +2024-04-11T17:40:30Z #8 42.79 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-04-11T17:40:30Z #8 42.79 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-04-11T17:40:30Z #8 42.84 Selecting previously unselected package libgomp1:amd64. +2024-04-11T17:40:30Z #8 42.85 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-04-11T17:40:30Z #8 42.85 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-04-11T17:40:30Z #8 42.90 Selecting previously unselected package libitm1:amd64. +2024-04-11T17:40:30Z #8 42.91 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-04-11T17:40:30Z #8 42.91 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-04-11T17:40:30Z #8 42.95 Selecting previously unselected package libatomic1:amd64. +2024-04-11T17:40:30Z #8 42.96 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-04-11T17:40:30Z #8 42.96 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-04-11T17:40:30Z #8 43.00 Selecting previously unselected package libasan6:amd64. +2024-04-11T17:40:30Z #8 43.01 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-04-11T17:40:30Z #8 43.01 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-04-11T17:40:30Z #8 43.49 Selecting previously unselected package liblsan0:amd64. +2024-04-11T17:40:30Z #8 43.49 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-04-11T17:40:30Z #8 43.50 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-04-11T17:40:31Z #8 43.71 Selecting previously unselected package libtsan0:amd64. +2024-04-11T17:40:31Z #8 43.71 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-04-11T17:40:31Z #8 43.72 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-04-11T17:40:31Z #8 44.16 Selecting previously unselected package libubsan1:amd64. +2024-04-11T17:40:31Z #8 44.17 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-04-11T17:40:31Z #8 44.17 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-04-11T17:40:31Z #8 44.36 Selecting previously unselected package libquadmath0:amd64. +2024-04-11T17:40:31Z #8 44.36 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-04-11T17:40:31Z #8 44.37 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-04-11T17:40:31Z #8 44.42 Selecting previously unselected package libgcc-10-dev:amd64. +2024-04-11T17:40:31Z #8 44.43 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-04-11T17:40:31Z #8 44.43 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-11T17:40:32Z #8 44.93 Selecting previously unselected package gcc-10. +2024-04-11T17:40:32Z #8 44.93 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-04-11T17:40:32Z #8 44.94 Unpacking gcc-10 (10.2.1-6) ... +2024-04-11T17:40:34Z #8 47.72 Selecting previously unselected package gcc. +2024-04-11T17:40:35Z #8 47.72 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-04-11T17:40:35Z #8 47.72 Unpacking gcc (4:10.2.1-1) ... +2024-04-11T17:40:35Z #8 47.77 Selecting previously unselected package libva2:amd64. +2024-04-11T17:40:35Z #8 47.77 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-04-11T17:40:35Z #8 47.77 Unpacking libva2:amd64 (2.10.0-1) ... +2024-04-11T17:40:35Z #8 47.82 Selecting previously unselected package libdrm-common. +2024-04-11T17:40:35Z #8 47.82 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-04-11T17:40:35Z #8 47.83 Unpacking libdrm-common (2.4.104-1) ... +2024-04-11T17:40:35Z #8 47.87 Selecting previously unselected package libdrm2:amd64. +2024-04-11T17:40:35Z #8 47.87 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-04-11T17:40:35Z #8 47.88 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-04-11T17:40:35Z #8 47.93 Selecting previously unselected package libpciaccess0:amd64. +2024-04-11T17:40:35Z #8 47.93 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-04-11T17:40:35Z #8 47.94 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-04-11T17:40:35Z #8 47.99 Selecting previously unselected package libdrm-intel1:amd64. +2024-04-11T17:40:35Z #8 47.99 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-04-11T17:40:35Z #8 48.00 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-11T17:40:35Z #8 48.05 Selecting previously unselected package i965-va-driver:amd64. +2024-04-11T17:40:35Z #8 48.05 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-04-11T17:40:35Z #8 48.06 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-11T17:40:35Z #8 48.16 Selecting previously unselected package libigdgmm11:amd64. +2024-04-11T17:40:35Z #8 48.17 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-04-11T17:40:35Z #8 48.17 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-11T17:40:35Z #8 48.24 Selecting previously unselected package intel-media-va-driver:amd64. +2024-04-11T17:40:35Z #8 48.24 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-04-11T17:40:35Z #8 48.24 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-11T17:40:35Z #8 48.64 Selecting previously unselected package libaom0:amd64. +2024-04-11T17:40:35Z #8 48.64 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-04-11T17:40:35Z #8 48.64 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-11T17:40:36Z #8 48.90 Selecting previously unselected package libmfx1:amd64. +2024-04-11T17:40:36Z #8 48.90 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-04-11T17:40:36Z #8 48.91 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-04-11T17:40:36Z #8 49.65 Selecting previously unselected package libva-drm2:amd64. +2024-04-11T17:40:36Z #8 49.65 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-04-11T17:40:36Z #8 49.65 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-04-11T17:40:36Z #8 49.70 Selecting previously unselected package libva-x11-2:amd64. +2024-04-11T17:40:36Z #8 49.70 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-04-11T17:40:36Z #8 49.71 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-04-11T17:40:36Z #8 49.76 Selecting previously unselected package libvdpau1:amd64. +2024-04-11T17:40:37Z #8 49.76 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-04-11T17:40:37Z #8 49.77 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-04-11T17:40:37Z #8 49.82 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-04-11T17:40:37Z #8 49.83 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-04-11T17:40:37Z #8 49.83 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-11T17:40:37Z #8 49.88 Selecting previously unselected package libavutil56:amd64. +2024-04-11T17:40:37Z #8 49.89 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-11T17:40:37Z #8 49.89 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-11T17:40:37Z #8 49.97 Selecting previously unselected package libcodec2-0.9:amd64. +2024-04-11T17:40:37Z #8 49.98 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-04-11T17:40:37Z #8 49.98 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-11T17:40:38Z #8 51.18 Selecting previously unselected package libdav1d4:amd64. +2024-04-11T17:40:38Z #8 51.18 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-04-11T17:40:38Z #8 51.18 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-04-11T17:40:38Z #8 51.28 Selecting previously unselected package libgsm1:amd64. +2024-04-11T17:40:38Z #8 51.28 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-04-11T17:40:38Z #8 51.29 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-04-11T17:40:38Z #8 51.33 Selecting previously unselected package libmp3lame0:amd64. +2024-04-11T17:40:38Z #8 51.33 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-04-11T17:40:38Z #8 51.34 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-04-11T17:40:38Z #8 51.41 Selecting previously unselected package libopenjp2-7:amd64. +2024-04-11T17:40:38Z #8 51.41 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-04-11T17:40:38Z #8 51.41 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-11T17:40:38Z #8 51.47 Selecting previously unselected package libopus0:amd64. +2024-04-11T17:40:38Z #8 51.48 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-04-11T17:40:38Z #8 51.48 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-04-11T17:40:38Z #8 51.55 Selecting previously unselected package librsvg2-2:amd64. +2024-04-11T17:40:38Z #8 51.55 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-11T17:40:38Z #8 51.56 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-11T17:40:39Z #8 52.09 Selecting previously unselected package libshine3:amd64. +2024-04-11T17:40:39Z #8 52.09 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-04-11T17:40:39Z #8 52.12 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-04-11T17:40:39Z #8 52.19 Selecting previously unselected package libsnappy1v5:amd64. +2024-04-11T17:40:39Z #8 52.19 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-04-11T17:40:39Z #8 52.20 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-11T17:40:39Z #8 52.23 Selecting previously unselected package libspeex1:amd64. +2024-04-11T17:40:39Z #8 52.24 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-04-11T17:40:39Z #8 52.24 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-11T17:40:39Z #8 52.29 Selecting previously unselected package libsoxr0:amd64. +2024-04-11T17:40:39Z #8 52.29 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-04-11T17:40:39Z #8 52.30 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-04-11T17:40:39Z #8 52.35 Selecting previously unselected package libswresample3:amd64. +2024-04-11T17:40:39Z #8 52.35 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-11T17:40:39Z #8 52.36 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-11T17:40:39Z #8 52.42 Selecting previously unselected package libogg0:amd64. +2024-04-11T17:40:39Z #8 52.42 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-04-11T17:40:39Z #8 52.42 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-04-11T17:40:39Z #8 52.48 Selecting previously unselected package libtheora0:amd64. +2024-04-11T17:40:39Z #8 52.48 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-04-11T17:40:39Z #8 52.49 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-11T17:40:39Z #8 52.55 Selecting previously unselected package libtwolame0:amd64. +2024-04-11T17:40:39Z #8 52.55 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-04-11T17:40:39Z #8 52.56 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-04-11T17:40:39Z #8 52.61 Selecting previously unselected package libvorbis0a:amd64. +2024-04-11T17:40:39Z #8 52.61 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-04-11T17:40:39Z #8 52.62 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-04-11T17:40:39Z #8 52.67 Selecting previously unselected package libvorbisenc2:amd64. +2024-04-11T17:40:39Z #8 52.67 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-04-11T17:40:39Z #8 52.68 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-11T17:40:40Z #8 52.74 Selecting previously unselected package libvpx6:amd64. +2024-04-11T17:40:40Z #8 52.75 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-04-11T17:40:40Z #8 52.75 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-11T17:40:40Z #8 52.91 Selecting previously unselected package libwavpack1:amd64. +2024-04-11T17:40:40Z #8 52.91 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-04-11T17:40:40Z #8 52.91 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-04-11T17:40:40Z #8 52.97 Selecting previously unselected package libwebpmux3:amd64. +2024-04-11T17:40:40Z #8 52.97 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-11T17:40:40Z #8 52.97 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-11T17:40:40Z #8 53.02 Selecting previously unselected package libx264-160:amd64. +2024-04-11T17:40:40Z #8 53.03 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-04-11T17:40:40Z #8 53.04 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-11T17:40:40Z #8 53.16 Selecting previously unselected package libnuma1:amd64. +2024-04-11T17:40:40Z #8 53.17 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-04-11T17:40:40Z #8 53.17 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-11T17:40:40Z #8 53.25 Selecting previously unselected package libx265-192:amd64. +2024-04-11T17:40:40Z #8 53.26 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-04-11T17:40:40Z #8 53.26 Unpacking libx265-192:amd64 (3.4-2) ... +2024-04-11T17:40:40Z #8 53.57 Selecting previously unselected package libxvidcore4:amd64. +2024-04-11T17:40:40Z #8 53.57 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-04-11T17:40:40Z #8 53.58 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-11T17:40:40Z #8 53.66 Selecting previously unselected package libzvbi-common. +2024-04-11T17:40:40Z #8 53.66 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-04-11T17:40:41Z #8 53.67 Unpacking libzvbi-common (0.2.35-18) ... +2024-04-11T17:40:41Z #8 53.72 Selecting previously unselected package libzvbi0:amd64. +2024-04-11T17:40:41Z #8 53.72 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-04-11T17:40:41Z #8 53.73 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-04-11T17:40:41Z #8 53.81 Selecting previously unselected package libavcodec58:amd64. +2024-04-11T17:40:41Z #8 53.81 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-11T17:40:41Z #8 53.82 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-11T17:40:41Z #8 54.59 Selecting previously unselected package libc-dev-bin. +2024-04-11T17:40:41Z #8 54.60 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... +2024-04-11T17:40:41Z #8 54.60 Unpacking libc-dev-bin (2.31-13+deb11u8) ... +2024-04-11T17:40:41Z #8 54.65 Selecting previously unselected package libxpm4:amd64. +2024-04-11T17:40:41Z #8 54.66 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-04-11T17:40:41Z #8 54.66 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-11T17:40:41Z #8 54.71 Selecting previously unselected package libgd3:amd64. +2024-04-11T17:40:41Z #8 54.71 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-04-11T17:40:41Z #8 54.72 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-04-11T17:40:42Z #8 54.77 Selecting previously unselected package libc-devtools. +2024-04-11T17:40:42Z #8 54.78 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... +2024-04-11T17:40:42Z #8 54.78 Unpacking libc-devtools (2.31-13+deb11u8) ... +2024-04-11T17:40:42Z #8 54.84 Selecting previously unselected package linux-libc-dev:amd64. +2024-04-11T17:40:42Z #8 54.84 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-04-11T17:40:42Z #8 54.85 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-11T17:40:42Z #8 55.20 Selecting previously unselected package libcrypt-dev:amd64. +2024-04-11T17:40:42Z #8 55.20 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-04-11T17:40:42Z #8 55.21 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-11T17:40:42Z #8 55.26 Selecting previously unselected package libtirpc-dev:amd64. +2024-04-11T17:40:42Z #8 55.26 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-04-11T17:40:42Z #8 55.27 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-11T17:40:42Z #8 55.33 Selecting previously unselected package libnsl-dev:amd64. +2024-04-11T17:40:42Z #8 55.34 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-04-11T17:40:42Z #8 55.35 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-04-11T17:40:42Z #8 55.39 Selecting previously unselected package libc6-dev:amd64. +2024-04-11T17:40:42Z #8 55.40 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... +2024-04-11T17:40:42Z #8 55.40 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-04-11T17:40:43Z #8 55.92 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-04-11T17:40:43Z #8 55.93 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-04-11T17:40:43Z #8 55.93 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-11T17:40:43Z #8 55.98 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-04-11T17:40:43Z #8 55.98 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-04-11T17:40:43Z #8 55.99 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-11T17:40:43Z #8 56.08 Selecting previously unselected package libdrm-radeon1:amd64. +2024-04-11T17:40:43Z #8 56.08 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-04-11T17:40:43Z #8 56.09 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-11T17:40:43Z #8 56.14 Selecting previously unselected package libelf1:amd64. +2024-04-11T17:40:43Z #8 56.14 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-04-11T17:40:43Z #8 56.15 Unpacking libelf1:amd64 (0.183-1) ... +2024-04-11T17:40:43Z #8 56.21 Selecting previously unselected package libfontenc1:amd64. +2024-04-11T17:40:43Z #8 56.22 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-04-11T17:40:43Z #8 56.22 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-11T17:40:43Z #8 56.26 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-04-11T17:40:43Z #8 56.26 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-11T17:40:43Z #8 56.27 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-11T17:40:43Z #8 56.31 Selecting previously unselected package libglapi-mesa:amd64. +2024-04-11T17:40:43Z #8 56.31 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-04-11T17:40:43Z #8 56.32 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-11T17:40:43Z #8 56.37 Selecting previously unselected package libz3-4:amd64. +2024-04-11T17:40:43Z #8 56.37 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-04-11T17:40:43Z #8 56.38 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-04-11T17:40:45Z #8 57.81 Selecting previously unselected package libllvm11:amd64. +2024-04-11T17:40:45Z #8 57.81 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-04-11T17:40:45Z #8 57.81 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-04-11T17:40:48Z #8 60.79 Selecting previously unselected package libsensors-config. +2024-04-11T17:40:48Z #8 60.79 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-04-11T17:40:48Z #8 60.79 Unpacking libsensors-config (1:3.6.0-7) ... +2024-04-11T17:40:48Z #8 60.84 Selecting previously unselected package libsensors5:amd64. +2024-04-11T17:40:48Z #8 60.84 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-04-11T17:40:48Z #8 60.88 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-04-11T17:40:48Z #8 60.93 Selecting previously unselected package libvulkan1:amd64. +2024-04-11T17:40:48Z #8 60.94 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-04-11T17:40:48Z #8 60.94 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-11T17:40:48Z #8 61.00 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-04-11T17:40:48Z #8 61.01 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-04-11T17:40:48Z #8 61.02 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-11T17:40:49Z #8 62.56 Selecting previously unselected package libglvnd0:amd64. +2024-04-11T17:40:49Z #8 62.56 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-04-11T17:40:49Z #8 62.57 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-04-11T17:40:49Z #8 62.62 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-04-11T17:40:49Z #8 62.63 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-04-11T17:40:49Z #8 62.63 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-11T17:40:50Z #8 62.68 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-04-11T17:40:50Z #8 62.69 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-04-11T17:40:50Z #8 62.70 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-11T17:40:50Z #8 62.75 Selecting previously unselected package libxcb-glx0:amd64. +2024-04-11T17:40:50Z #8 62.75 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-04-11T17:40:50Z #8 62.76 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-04-11T17:40:50Z #8 62.82 Selecting previously unselected package libxcb-present0:amd64. +2024-04-11T17:40:50Z #8 62.83 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-04-11T17:40:50Z #8 62.83 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-04-11T17:40:50Z #8 62.88 Selecting previously unselected package libxcb-sync1:amd64. +2024-04-11T17:40:50Z #8 62.89 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-04-11T17:40:50Z #8 62.89 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-04-11T17:40:50Z #8 62.95 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-04-11T17:40:50Z #8 62.96 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-04-11T17:40:50Z #8 62.97 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-11T17:40:52Z #8 64.79 Selecting previously unselected package libxshmfence1:amd64. +2024-04-11T17:40:52Z #8 64.79 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-04-11T17:40:52Z #8 65.10 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-04-11T17:40:53Z #8 66.08 Selecting previously unselected package libxxf86vm1:amd64. +2024-04-11T17:40:53Z #8 66.08 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-04-11T17:40:53Z #8 66.09 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-11T17:40:53Z #8 66.13 Selecting previously unselected package libglx-mesa0:amd64. +2024-04-11T17:40:53Z #8 66.13 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-04-11T17:40:53Z #8 66.13 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-11T17:40:53Z #8 66.19 Selecting previously unselected package libgtk-3-bin. +2024-04-11T17:40:53Z #8 66.20 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-04-11T17:40:53Z #8 66.21 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-11T17:40:53Z #8 66.26 Selecting previously unselected package librsvg2-common:amd64. +2024-04-11T17:40:53Z #8 66.27 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-11T17:40:53Z #8 66.27 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-11T17:40:53Z #8 66.31 Selecting previously unselected package libglx0:amd64. +2024-04-11T17:40:53Z #8 66.32 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-04-11T17:40:53Z #8 66.33 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-04-11T17:40:53Z #8 66.37 Selecting previously unselected package libgl1:amd64. +2024-04-11T17:40:53Z #8 66.38 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-04-11T17:40:53Z #8 66.38 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-04-11T17:40:53Z #8 66.44 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-04-11T17:40:53Z #8 66.44 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-04-11T17:40:53Z #8 66.45 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-11T17:40:53Z #8 66.49 Selecting previously unselected package libxt6:amd64. +2024-04-11T17:40:53Z #8 66.50 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-04-11T17:40:53Z #8 66.50 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-04-11T17:40:53Z #8 66.56 Selecting previously unselected package libxmu6:amd64. +2024-04-11T17:40:53Z #8 66.57 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-11T17:40:53Z #8 66.57 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-11T17:40:53Z #8 66.62 Selecting previously unselected package libxaw7:amd64. +2024-04-11T17:40:53Z #8 66.63 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-04-11T17:40:53Z #8 66.63 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-11T17:40:54Z #8 66.70 Selecting previously unselected package libxcb-randr0:amd64. +2024-04-11T17:40:54Z #8 66.70 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-04-11T17:40:54Z #8 66.71 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-04-11T17:40:54Z #8 66.77 Selecting previously unselected package libxcb-shape0:amd64. +2024-04-11T17:40:54Z #8 66.77 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-04-11T17:40:54Z #8 66.78 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-04-11T17:40:54Z #8 66.83 Selecting previously unselected package libxft2:amd64. +2024-04-11T17:40:54Z #8 66.83 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-04-11T17:40:54Z #8 66.84 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-04-11T17:40:54Z #8 66.88 Selecting previously unselected package libxkbfile1:amd64. +2024-04-11T17:40:54Z #8 66.89 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-04-11T17:40:54Z #8 66.89 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-11T17:40:54Z #8 66.94 Selecting previously unselected package libxmuu1:amd64. +2024-04-11T17:40:54Z #8 66.94 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-11T17:40:54Z #8 66.95 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-11T17:40:54Z #8 66.99 Selecting previously unselected package libxv1:amd64. +2024-04-11T17:40:54Z #8 66.99 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-04-11T17:40:54Z #8 66.99 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-04-11T17:40:54Z #8 67.05 Selecting previously unselected package libxxf86dga1:amd64. +2024-04-11T17:40:54Z #8 67.05 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-04-11T17:40:54Z #8 67.06 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-11T17:40:54Z #8 67.10 Selecting previously unselected package manpages-dev. +2024-04-11T17:40:54Z #8 67.10 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-04-11T17:40:54Z #8 67.11 Unpacking manpages-dev (5.10-1) ... +2024-04-11T17:40:54Z #8 67.55 Selecting previously unselected package mesa-va-drivers:amd64. +2024-04-11T17:40:54Z #8 67.56 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-04-11T17:40:54Z #8 67.57 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-11T17:40:55Z #8 68.01 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-04-11T17:40:55Z #8 68.01 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-04-11T17:40:55Z #8 68.01 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-11T17:40:55Z #8 68.48 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-04-11T17:40:55Z #8 68.48 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-04-11T17:40:55Z #8 68.48 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-11T17:40:56Z #8 69.21 Selecting previously unselected package patch. +2024-04-11T17:40:56Z #8 69.22 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-04-11T17:40:56Z #8 69.22 Unpacking patch (2.7.6-7) ... +2024-04-11T17:40:56Z #8 69.28 Selecting previously unselected package unzip. +2024-04-11T17:40:56Z #8 69.29 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-04-11T17:40:56Z #8 69.30 Unpacking unzip (6.0-26+deb11u1) ... +2024-04-11T17:40:56Z #8 69.36 Selecting previously unselected package va-driver-all:amd64. +2024-04-11T17:40:56Z #8 69.37 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-04-11T17:40:56Z #8 69.37 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-04-11T17:40:56Z #8 69.41 Selecting previously unselected package vdpau-driver-all:amd64. +2024-04-11T17:40:56Z #8 69.42 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-04-11T17:40:56Z #8 69.42 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-04-11T17:40:56Z #8 69.48 Selecting previously unselected package x11-utils. +2024-04-11T17:40:56Z #8 69.48 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-04-11T17:40:56Z #8 69.49 Unpacking x11-utils (7.7+5) ... +2024-04-11T17:40:56Z #8 69.63 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-11T17:40:56Z #8 69.65 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-11T17:40:56Z #8 69.66 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-11T17:40:56Z #8 69.68 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-11T17:40:56Z #8 69.70 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-11T17:40:56Z #8 69.71 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-04-11T17:40:56Z #8 69.73 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-04-11T17:40:56Z #8 69.75 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-04-11T17:40:56Z #8 69.77 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-11T17:40:57Z #8 69.78 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-11T17:40:57Z #8 69.80 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-04-11T17:40:57Z #8 69.81 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-11T17:40:57Z #8 69.83 Setting up libshine3:amd64 (3.1.1-2) ... +2024-04-11T17:40:57Z #8 69.85 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-11T17:40:57Z #8 69.86 Setting up hicolor-icon-theme (0.17-2) ... +2024-04-11T17:40:57Z #8 69.90 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-04-11T17:40:57Z #8 69.91 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-04-11T17:40:57Z #8 69.93 Setting up libicu67:amd64 (67.1-7) ... +2024-04-11T17:40:57Z #8 69.95 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-04-11T17:40:57Z #8 69.97 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-04-11T17:40:57Z #8 69.98 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-04-11T17:40:57Z #8 70.00 Setting up manpages (5.10-1) ... +2024-04-11T17:40:57Z #8 70.02 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-04-11T17:40:57Z #8 70.03 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-04-11T17:40:57Z #8 70.05 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-04-11T17:40:57Z #8 70.06 Setting up unzip (6.0-26+deb11u1) ... +2024-04-11T17:40:57Z #8 70.08 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-11T17:40:57Z #8 70.10 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-11T17:40:57Z #8 70.11 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-04-11T17:40:57Z #8 70.13 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-04-11T17:40:57Z #8 70.14 Setting up libsensors-config (1:3.6.0-7) ... +2024-04-11T17:40:57Z #8 70.16 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-11T17:40:57Z #8 70.17 Setting up libdeflate0:amd64 (1.7-1) ... +2024-04-11T17:40:57Z #8 70.19 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-11T17:40:57Z #8 70.20 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-11T17:40:57Z #8 70.21 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-11T17:40:57Z #8 70.23 First installation detected... +2024-04-11T17:40:57Z #8 70.23 Checking NSS setup... +2024-04-11T17:40:57Z #8 70.23 Setting up xkb-data (2.29-2) ... +2024-04-11T17:40:57Z #8 70.24 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-04-11T17:40:57Z #8 70.26 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-04-11T17:40:57Z #8 70.27 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-11T17:40:57Z #8 70.28 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-11T17:40:57Z #8 70.29 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-11T17:40:57Z #8 70.31 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-04-11T17:40:57Z #8 70.32 Setting up libasan6:amd64 (10.2.1-6) ... +2024-04-11T17:40:57Z #8 70.34 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-11T17:40:57Z #8 70.35 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-11T17:40:57Z #8 70.37 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-04-11T17:40:57Z #8 70.39 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-04-11T17:40:57Z #8 70.40 Setting up libasound2-data (1.2.4-1.1) ... +2024-04-11T17:40:57Z #8 70.42 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-11T17:40:57Z #8 70.43 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-04-11T17:40:57Z #8 70.44 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-11T17:40:57Z #8 70.46 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-04-11T17:40:57Z #8 70.48 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-11T17:40:57Z #8 70.49 Setting up libva2:amd64 (2.10.0-1) ... +2024-04-11T17:40:57Z #8 70.51 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-11T17:40:57Z #8 70.52 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-04-11T17:40:57Z #8 70.54 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-04-11T17:40:57Z #8 70.56 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-11T17:40:57Z #8 70.57 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-04-11T17:40:57Z #8 70.59 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-11T17:40:57Z #8 70.60 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-11T17:40:57Z #8 70.61 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-11T17:40:57Z #8 70.63 Setting up dbus (1.12.28-0+deb11u1) ... +2024-04-11T17:40:58Z #8 70.79 invoke-rc.d: could not determine current runlevel +2024-04-11T17:40:58Z #8 70.80 invoke-rc.d: policy-rc.d denied execution of start. +2024-04-11T17:40:58Z #8 70.80 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-11T17:40:58Z #8 70.82 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-04-11T17:40:58Z #8 70.83 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-04-11T17:40:58Z #8 70.84 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-11T17:40:58Z #8 70.85 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-11T17:40:58Z #8 70.87 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-04-11T17:40:58Z #8 70.88 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-04-11T17:40:58Z #8 70.89 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-04-11T17:40:58Z #8 70.91 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-11T17:40:58Z #8 71.27 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-11T17:40:58Z #8 71.27 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-11T17:40:58Z #8 71.27 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-04-11T17:40:58Z #8 71.29 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-04-11T17:40:58Z #8 71.30 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-11T17:40:58Z #8 71.32 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-11T17:40:58Z #8 71.33 Setting up patch (2.7.6-7) ... +2024-04-11T17:40:58Z #8 71.35 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-11T17:40:58Z #8 71.36 Setting up fonts-dejavu-core (2.37-2) ... +2024-04-11T17:40:58Z #8 71.49 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-04-11T17:40:58Z #8 71.51 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-04-11T17:40:58Z #8 71.52 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-11T17:40:58Z #8 71.53 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-11T17:40:58Z #8 71.55 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-04-11T17:40:58Z #8 71.56 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-11T17:40:58Z #8 71.57 Setting up libatk1.0-data (2.36.0-2) ... +2024-04-11T17:40:58Z #8 71.59 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-11T17:40:58Z #8 71.60 Setting up alsa-topology-conf (1.2.4-1) ... +2024-04-11T17:40:58Z #8 71.61 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-04-11T17:40:58Z #8 71.63 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-11T17:40:58Z #8 71.64 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-04-11T17:40:58Z #8 71.65 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-11T17:40:58Z #8 71.66 Setting up libvdpau1:amd64 (1.4-3) ... +2024-04-11T17:40:59Z #8 71.68 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-11T17:40:59Z #8 71.70 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-04-11T17:40:59Z #8 71.71 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-04-11T17:40:59Z #8 71.72 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-04-11T17:40:59Z #8 71.73 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-11T17:40:59Z #8 72.01 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-04-11T17:40:59Z #8 72.02 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-11T17:40:59Z #8 72.03 Setting up libthai-data (0.1.28-3) ... +2024-04-11T17:40:59Z #8 72.07 Setting up fonts-humor-sans (1.0-4) ... +2024-04-11T17:40:59Z #8 72.08 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-04-11T17:40:59Z #8 72.09 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-11T17:40:59Z #8 72.11 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-11T17:40:59Z #8 72.12 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-11T17:40:59Z #8 72.14 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-11T17:40:59Z #8 72.15 Setting up glib-networking-common (2.66.0-2) ... +2024-04-11T17:40:59Z #8 72.16 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-04-11T17:40:59Z #8 72.17 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-04-11T17:40:59Z #8 72.19 Setting up libisl23:amd64 (0.23-1) ... +2024-04-11T17:40:59Z #8 72.20 Setting up libc-dev-bin (2.31-13+deb11u8) ... +2024-04-11T17:40:59Z #8 72.21 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-11T17:40:59Z #8 72.23 Setting up libdrm-common (2.4.104-1) ... +2024-04-11T17:40:59Z #8 72.24 Setting up libelf1:amd64 (0.183-1) ... +2024-04-11T17:40:59Z #8 72.25 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-11T17:40:59Z #8 72.27 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-11T17:40:59Z #8 72.28 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-04-11T17:40:59Z #8 72.29 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-11T17:40:59Z #8 72.30 Setting up libzvbi-common (0.2.35-18) ... +2024-04-11T17:40:59Z #8 72.32 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-04-11T17:40:59Z #8 72.33 Setting up cpp-10 (10.2.1-6) ... +2024-04-11T17:40:59Z #8 72.34 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-04-11T17:40:59Z #8 72.35 Setting up libitm1:amd64 (10.2.1-6) ... +2024-04-11T17:40:59Z #8 72.37 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-11T17:40:59Z #8 72.38 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-04-11T17:40:59Z #8 72.39 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-11T17:40:59Z #8 72.40 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-11T17:40:59Z #8 72.42 Setting up libctf0:amd64 (2.35.2-2) ... +2024-04-11T17:40:59Z #8 72.43 Setting up glib-networking-services (2.66.0-2) ... +2024-04-11T17:40:59Z #8 72.45 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-04-11T17:40:59Z #8 72.46 Setting up manpages-dev (5.10-1) ... +2024-04-11T17:40:59Z #8 72.47 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-11T17:40:59Z #8 72.48 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-04-11T17:40:59Z #8 72.50 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-04-11T17:40:59Z #8 72.51 Setting up fontconfig-config (2.13.1-4.2) ... +2024-04-11T17:41:00Z #8 72.85 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-11T17:41:00Z #8 72.86 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-11T17:41:00Z #8 72.88 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-11T17:41:00Z #8 72.89 Setting up libx265-192:amd64 (3.4-2) ... +2024-04-11T17:41:00Z #8 72.90 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-11T17:41:00Z #8 72.92 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-11T17:41:00Z #8 72.93 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-11T17:41:00Z #8 72.95 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-11T17:41:00Z #8 72.96 Setting up libthai0:amd64 (0.1.28-3) ... +2024-04-11T17:41:00Z #8 72.98 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-11T17:41:00Z #8 73.00 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-11T17:41:00Z #8 73.02 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-11T17:41:00Z #8 73.03 Setting up shared-mime-info (2.0-1) ... +2024-04-11T17:41:02Z #8 75.49 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-04-11T17:41:02Z #8 75.51 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-04-11T17:41:02Z #8 75.52 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-11T17:41:02Z #8 75.55 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-11T17:41:02Z #8 75.56 Setting up cpp (4:10.2.1-1) ... +2024-04-11T17:41:02Z #8 75.58 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-04-11T17:41:02Z #8 75.59 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-11T17:41:02Z #8 75.61 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-11T17:41:02Z #8 75.65 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-11T17:41:03Z #8 75.71 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-04-11T17:41:03Z #8 75.72 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-11T17:41:03Z #8 75.73 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-11T17:41:03Z #8 75.75 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-11T17:41:03Z #8 75.76 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-11T17:41:03Z #8 75.77 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-11T17:41:03Z #8 75.79 Setting up fontconfig (2.13.1-4.2) ... +2024-04-11T17:41:05Z #8 75.80 Regenerating fonts cache... done. +2024-04-11T17:41:05Z #8 77.83 Setting up libxft2:amd64 (2.3.2-2) ... +2024-04-11T17:41:05Z #8 77.84 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-11T17:41:05Z #8 77.85 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-11T17:41:05Z #8 77.86 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-11T17:41:05Z #8 77.87 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-11T17:41:05Z #8 77.88 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-11T17:41:05Z #8 77.90 Setting up dconf-service (0.38.0-2) ... +2024-04-11T17:41:05Z #8 77.91 Setting up binutils (2.35.2-2) ... +2024-04-11T17:41:05Z #8 77.92 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-04-11T17:41:05Z #8 77.94 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-11T17:41:05Z #8 77.95 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-04-11T17:41:05Z #8 78.04 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-04-11T17:41:05Z #8 78.05 Setting up libgd3:amd64 (2.3.0-2) ... +2024-04-11T17:41:05Z #8 78.06 Setting up gcc-10 (10.2.1-6) ... +2024-04-11T17:41:05Z #8 78.07 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-11T17:41:05Z #8 78.08 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-11T17:41:05Z #8 78.09 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-11T17:41:05Z #8 78.11 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-11T17:41:05Z #8 78.12 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-11T17:41:05Z #8 78.13 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-11T17:41:05Z #8 78.14 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-11T17:41:05Z #8 78.16 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-11T17:41:05Z #8 78.17 Setting up libc-devtools (2.31-13+deb11u8) ... +2024-04-11T17:41:05Z #8 78.18 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-11T17:41:05Z #8 78.19 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-11T17:41:05Z #8 78.21 Setting up libglx0:amd64 (1.3.2-1) ... +2024-04-11T17:41:05Z #8 78.22 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-11T17:41:05Z #8 78.23 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-11T17:41:05Z #8 78.25 Setting up gcc (4:10.2.1-1) ... +2024-04-11T17:41:05Z #8 78.28 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-11T17:41:05Z #8 78.29 Setting up libgl1:amd64 (1.3.2-1) ... +2024-04-11T17:41:05Z #8 78.30 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-04-11T17:41:05Z #8 78.31 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-11T17:41:05Z #8 78.33 Setting up x11-utils (7.7+5) ... +2024-04-11T17:41:05Z #8 78.38 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-11T17:41:05Z #8 78.39 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-11T17:41:05Z #8 78.41 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-11T17:41:05Z #8 78.42 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-04-11T17:41:05Z #8 78.44 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-04-11T17:41:05Z #8 78.46 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-04-11T17:41:05Z #8 78.49 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-11T17:41:05Z #8 78.53 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-04-11T17:41:05Z #8 78.55 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-11T17:41:05Z #8 78.57 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-11T17:41:05Z #8 78.58 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-11T17:41:05Z #8 78.59 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-11T17:41:05Z #8 78.63 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-11T17:41:05Z #8 78.64 Setting up firefox-esr (115.9.1esr-1~deb11u1) ... +2024-04-11T17:41:05Z #8 78.66 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-04-11T17:41:05Z #8 78.66 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-04-11T17:41:05Z #8 78.67 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-04-11T17:41:05Z #8 78.67 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-04-11T17:41:05Z #8 78.68 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-11T17:41:05Z #8 78.71 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-11T17:41:09Z #8 DONE 82.1s +2024-04-11T17:41:09Z +2024-04-11T17:41:09Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-04-11T17:41:56Z #9 DONE 47.3s +2024-04-11T17:41:56Z +2024-04-11T17:41:56Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-11T17:41:56Z #5 ... +2024-04-11T17:41:56Z +2024-04-11T17:41:56Z #10 [ 5/10] COPY environment.yml /environment.yml +2024-04-11T17:41:56Z #10 DONE 0.0s +2024-04-11T17:41:56Z +2024-04-11T17:41:56Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-04-11T17:44:29Z #11 152.6 Transaction +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 Prefix: /opt/conda/envs/birdy +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 Updating specs: +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 - xclim +2024-04-11T17:44:29Z #11 152.6 - ravenpy +2024-04-11T17:44:29Z #11 152.6 - python=3.10 +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 Package Version Build Channel Size +2024-04-11T17:44:29Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-11T17:44:29Z #11 152.6 Install: +2024-04-11T17:44:29Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-04-11T17:44:29Z #11 152.6 + python_abi 3.10 4_cp310 conda-forge 6kB +2024-04-11T17:44:29Z #11 152.6 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB +2024-04-11T17:44:29Z #11 152.6 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB +2024-04-11T17:44:29Z #11 152.6 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB +2024-04-11T17:44:29Z #11 152.6 + mpi 1.0 openmpi conda-forge 4kB +2024-04-11T17:44:29Z #11 152.6 + libgomp 13.2.0 h807b86a_5 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-04-11T17:44:29Z #11 152.6 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-04-11T17:44:29Z #11 152.6 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-04-11T17:44:29Z #11 152.6 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-04-11T17:44:29Z #11 152.6 + lzo 2.10 h516909a_1000 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-04-11T17:44:29Z #11 152.6 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-04-11T17:44:29Z #11 152.6 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-04-11T17:44:29Z #11 152.6 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-04-11T17:44:29Z #11 152.6 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-04-11T17:44:29Z #11 152.6 + aws-c-common 0.9.15 hd590300_0 conda-forge 227kB +2024-04-11T17:44:29Z #11 152.6 + c-ares 1.28.1 hd590300_0 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + libev 4.33 hd590300_2 conda-forge 113kB +2024-04-11T17:44:29Z #11 152.6 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-04-11T17:44:29Z #11 152.6 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-04-11T17:44:29Z #11 152.6 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-04-11T17:44:29Z #11 152.6 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-04-11T17:44:29Z #11 152.6 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-04-11T17:44:29Z #11 152.6 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-04-11T17:44:29Z #11 152.6 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-04-11T17:44:29Z #11 152.6 + giflib 5.2.2 hd590300_0 conda-forge 77kB +2024-04-11T17:44:29Z #11 152.6 + snappy 1.2.0 hdb0a2a9_1 conda-forge 42kB +2024-04-11T17:44:29Z #11 152.6 + libwebp-base 1.3.2 hd590300_1 conda-forge 435kB +2024-04-11T17:44:29Z #11 152.6 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-04-11T17:44:29Z #11 152.6 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-04-11T17:44:29Z #11 152.6 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + openssl 3.2.1 hd590300_1 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB +2024-04-11T17:44:29Z #11 152.6 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-04-11T17:44:29Z #11 152.6 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-04-11T17:44:29Z #11 152.6 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-04-11T17:44:29Z #11 152.6 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-04-11T17:44:29Z #11 152.6 + icu 73.2 h59595ed_0 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-04-11T17:44:29Z #11 152.6 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB +2024-04-11T17:44:29Z #11 152.6 + libdeflate 1.20 hd590300_0 conda-forge 72kB +2024-04-11T17:44:29Z #11 152.6 + libaec 1.1.3 h59595ed_0 conda-forge 35kB +2024-04-11T17:44:29Z #11 152.6 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-04-11T17:44:29Z #11 152.6 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-04-11T17:44:29Z #11 152.6 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-04-11T17:44:29Z #11 152.6 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-04-11T17:44:29Z #11 152.6 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB +2024-04-11T17:44:29Z #11 152.6 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB +2024-04-11T17:44:29Z #11 152.6 + libnsl 2.0.1 hd590300_0 conda-forge 33kB +2024-04-11T17:44:29Z #11 152.6 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-04-11T17:44:29Z #11 152.6 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB +2024-04-11T17:44:29Z #11 152.6 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB +2024-04-11T17:44:29Z #11 152.6 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-04-11T17:44:29Z #11 152.6 + aws-c-compression 0.2.18 hce8ee76_3 conda-forge 19kB +2024-04-11T17:44:29Z #11 152.6 + aws-checksums 0.1.18 hce8ee76_3 conda-forge 50kB +2024-04-11T17:44:29Z #11 152.6 + aws-c-sdkutils 0.1.15 hce8ee76_3 conda-forge 55kB +2024-04-11T17:44:29Z #11 152.6 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-04-11T17:44:29Z #11 152.6 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-04-11T17:44:29Z #11 152.6 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-04-11T17:44:29Z #11 152.6 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-04-11T17:44:29Z #11 152.6 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-04-11T17:44:29Z #11 152.6 + s2n 1.4.9 h06160fa_0 conda-forge 341kB +2024-04-11T17:44:29Z #11 152.6 + aws-c-cal 0.6.11 heb1d5e4_0 conda-forge 46kB +2024-04-11T17:44:29Z #11 152.6 + expat 2.6.2 h59595ed_0 conda-forge 138kB +2024-04-11T17:44:29Z #11 152.6 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB +2024-04-11T17:44:29Z #11 152.6 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-04-11T17:44:29Z #11 152.6 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-04-11T17:44:29Z #11 152.6 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-04-11T17:44:29Z #11 152.6 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-04-11T17:44:29Z #11 152.6 + libssh2 1.11.0 h0841786_0 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB +2024-04-11T17:44:29Z #11 152.6 + pcre2 10.43 hcad00b1_0 conda-forge 951kB +2024-04-11T17:44:29Z #11 152.6 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-04-11T17:44:29Z #11 152.6 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2024-04-11T17:44:29Z #11 152.6 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB +2024-04-11T17:44:29Z #11 152.6 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB +2024-04-11T17:44:29Z #11 152.6 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-04-11T17:44:29Z #11 152.6 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-04-11T17:44:29Z #11 152.6 + readline 8.2 h8228510_1 conda-forge 281kB +2024-04-11T17:44:29Z #11 152.6 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-04-11T17:44:29Z #11 152.6 + libxml2 2.12.6 h232c23b_1 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + ucx 1.15.0 ha691c75_8 conda-forge 7MB +2024-04-11T17:44:29Z #11 152.6 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-04-11T17:44:29Z #11 152.6 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-04-11T17:44:29Z #11 152.6 + xorg-libx11 1.8.9 h8ee46fc_0 conda-forge 828kB +2024-04-11T17:44:29Z #11 152.6 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-04-11T17:44:29Z #11 152.6 + aws-c-io 0.14.7 h76a7424_3 conda-forge 158kB +2024-04-11T17:44:29Z #11 152.6 + libglib 2.80.0 hf2295e7_4 conda-forge 3MB +2024-04-11T17:44:29Z #11 152.6 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-04-11T17:44:29Z #11 152.6 + orc 2.0.0 h17fec99_1 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-04-11T17:44:29Z #11 152.6 + blosc 1.21.5 hc2324a3_1 conda-forge 49kB +2024-04-11T17:44:29Z #11 152.6 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB +2024-04-11T17:44:29Z #11 152.6 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-04-11T17:44:29Z #11 152.6 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB +2024-04-11T17:44:29Z #11 152.6 + libopenblas 0.3.27 pthreads_h413a1c8_0 conda-forge 6MB +2024-04-11T17:44:29Z #11 152.6 + krb5 1.21.2 h659d440_0 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB +2024-04-11T17:44:29Z #11 152.6 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-04-11T17:44:29Z #11 152.6 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-04-11T17:44:29Z #11 152.6 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB +2024-04-11T17:44:29Z #11 152.6 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-04-11T17:44:29Z #11 152.6 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-04-11T17:44:29Z #11 152.6 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-04-11T17:44:29Z #11 152.6 + aws-c-event-stream 0.4.2 h01f5eca_8 conda-forge 54kB +2024-04-11T17:44:29Z #11 152.6 + aws-c-http 0.8.1 hdb68c23_10 conda-forge 195kB +2024-04-11T17:44:29Z #11 152.6 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-04-11T17:44:29Z #11 152.6 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-04-11T17:44:29Z #11 152.6 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-04-11T17:44:29Z #11 152.6 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-04-11T17:44:29Z #11 152.6 + libblas 3.9.0 22_linux64_openblas conda-forge 15kB +2024-04-11T17:44:29Z #11 152.6 + libpq 16.2 h33b98f1_1 conda-forge 3MB +2024-04-11T17:44:29Z #11 152.6 + libcurl 8.7.1 hca28451_0 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + aws-c-mqtt 0.10.3 h50844eb_4 conda-forge 164kB +2024-04-11T17:44:29Z #11 152.6 + aws-c-auth 0.7.17 he0b1f16_2 conda-forge 104kB +2024-04-11T17:44:29Z #11 152.6 + libcblas 3.9.0 22_linux64_openblas conda-forge 14kB +2024-04-11T17:44:29Z #11 152.6 + liblapack 3.9.0 22_linux64_openblas conda-forge 14kB +2024-04-11T17:44:29Z #11 152.6 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB +2024-04-11T17:44:29Z #11 152.6 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB +2024-04-11T17:44:29Z #11 152.6 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-04-11T17:44:29Z #11 152.6 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB +2024-04-11T17:44:29Z #11 152.6 + proj 9.3.1 h1d62c97_0 conda-forge 3MB +2024-04-11T17:44:29Z #11 152.6 + aws-c-s3 0.5.7 hb7bd14b_1 conda-forge 108kB +2024-04-11T17:44:29Z #11 152.6 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB +2024-04-11T17:44:29Z #11 152.6 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB +2024-04-11T17:44:29Z #11 152.6 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-04-11T17:44:29Z #11 152.6 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-04-11T17:44:29Z #11 152.6 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB +2024-04-11T17:44:29Z #11 152.6 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB +2024-04-11T17:44:29Z #11 152.6 + aws-crt-cpp 0.26.6 hf567797_4 conda-forge 335kB +2024-04-11T17:44:29Z #11 152.6 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB +2024-04-11T17:44:29Z #11 152.6 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-04-11T17:44:29Z #11 152.6 + aws-sdk-cpp 1.11.267 hbf3e495_6 conda-forge 4MB +2024-04-11T17:44:29Z #11 152.6 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB +2024-04-11T17:44:29Z #11 152.6 + tiledb 2.21.2 h8a5282e_1 conda-forge 4MB +2024-04-11T17:44:29Z #11 152.6 + libarrow 15.0.2 he70291f_3_cpu conda-forge 8MB +2024-04-11T17:44:29Z #11 152.6 + libparquet 15.0.2 h6a7eafb_3_cpu conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + libarrow-gandiva 15.0.2 hd4ab825_3_cpu conda-forge 896kB +2024-04-11T17:44:29Z #11 152.6 + libarrow-flight 15.0.2 hd42f311_3_cpu conda-forge 506kB +2024-04-11T17:44:29Z #11 152.6 + libarrow-acero 15.0.2 hac33072_3_cpu conda-forge 598kB +2024-04-11T17:44:29Z #11 152.6 + libarrow-flight-sql 15.0.2 h9241762_3_cpu conda-forge 195kB +2024-04-11T17:44:29Z #11 152.6 + libarrow-dataset 15.0.2 hac33072_3_cpu conda-forge 586kB +2024-04-11T17:44:29Z #11 152.6 + libarrow-substrait 15.0.2 h9241762_3_cpu conda-forge 519kB +2024-04-11T17:44:29Z #11 152.6 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-04-11T17:44:29Z #11 152.6 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-04-11T17:44:29Z #11 152.6 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-04-11T17:44:29Z #11 152.6 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-04-11T17:44:29Z #11 152.6 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-04-11T17:44:29Z #11 152.6 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB +2024-04-11T17:44:29Z #11 152.6 + fonts-conda-forge 1 0 conda-forge 4kB +2024-04-11T17:44:29Z #11 152.6 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-04-11T17:44:29Z #11 152.6 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB +2024-04-11T17:44:29Z #11 152.6 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB +2024-04-11T17:44:29Z #11 152.6 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-04-11T17:44:29Z #11 152.6 + poppler 24.03.0 h590f24d_0 conda-forge 2MB +2024-04-11T17:44:29Z #11 152.6 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB +2024-04-11T17:44:29Z #11 152.6 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB +2024-04-11T17:44:29Z #11 152.6 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB +2024-04-11T17:44:29Z #11 152.6 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-04-11T17:44:29Z #11 152.6 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB +2024-04-11T17:44:29Z #11 152.6 + joblib 1.4.0 pyhd8ed1ab_0 conda-forge 220kB +2024-04-11T17:44:29Z #11 152.6 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB +2024-04-11T17:44:29Z #11 152.6 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB +2024-04-11T17:44:29Z #11 152.6 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-11T17:44:29Z #11 152.6 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-04-11T17:44:29Z #11 152.6 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-04-11T17:44:29Z #11 152.6 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-11T17:44:29Z #11 152.6 + networkx 3.3 pyhd8ed1ab_1 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-04-11T17:44:29Z #11 152.6 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB +2024-04-11T17:44:29Z #11 152.6 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-04-11T17:44:29Z #11 152.6 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-04-11T17:44:29Z #11 152.6 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-04-11T17:44:29Z #11 152.6 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB +2024-04-11T17:44:29Z #11 152.6 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-04-11T17:44:29Z #11 152.6 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-04-11T17:44:29Z #11 152.6 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-04-11T17:44:29Z #11 152.6 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-04-11T17:44:29Z #11 152.6 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-04-11T17:44:29Z #11 152.6 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-04-11T17:44:29Z #11 152.6 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-04-11T17:44:29Z #11 152.6 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-04-11T17:44:29Z #11 152.6 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-04-11T17:44:29Z #11 152.6 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-11T17:44:29Z #11 152.6 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-04-11T17:44:29Z #11 152.6 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-04-11T17:44:29Z #11 152.6 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-04-11T17:44:29Z #11 152.6 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB +2024-04-11T17:44:29Z #11 152.6 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB +2024-04-11T17:44:29Z #11 152.6 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-04-11T17:44:29Z #11 152.6 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-04-11T17:44:29Z #11 152.6 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB +2024-04-11T17:44:29Z #11 152.6 + typing_extensions 4.11.0 pyha770c72_0 conda-forge 38kB +2024-04-11T17:44:29Z #11 152.6 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-04-11T17:44:29Z #11 152.6 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB +2024-04-11T17:44:29Z #11 152.6 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB +2024-04-11T17:44:29Z #11 152.6 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-04-11T17:44:29Z #11 152.6 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-04-11T17:44:29Z #11 152.6 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-04-11T17:44:29Z #11 152.6 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-04-11T17:44:29Z #11 152.6 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-04-11T17:44:29Z #11 152.6 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB +2024-04-11T17:44:29Z #11 152.6 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-04-11T17:44:29Z #11 152.6 + typing-extensions 4.11.0 hd8ed1ab_0 conda-forge 10kB +2024-04-11T17:44:29Z #11 152.6 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB +2024-04-11T17:44:29Z #11 152.6 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-11T17:44:29Z #11 152.6 + jsonpickle 3.0.4 pyhd8ed1ab_0 conda-forge 39kB +2024-04-11T17:44:29Z #11 152.6 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB +2024-04-11T17:44:29Z #11 152.6 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB +2024-04-11T17:44:29Z #11 152.6 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB +2024-04-11T17:44:29Z #11 152.6 + tornado 6.4 py310h2372a71_0 conda-forge 651kB +2024-04-11T17:44:29Z #11 152.6 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB +2024-04-11T17:44:29Z #11 152.6 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB +2024-04-11T17:44:29Z #11 152.6 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB +2024-04-11T17:44:29Z #11 152.6 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB +2024-04-11T17:44:29Z #11 152.6 + pillow 10.3.0 py310hf73ecf8_0 conda-forge 42MB +2024-04-11T17:44:29Z #11 152.6 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB +2024-04-11T17:44:29Z #11 152.6 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB +2024-04-11T17:44:29Z #11 152.6 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB +2024-04-11T17:44:29Z #11 152.6 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB +2024-04-11T17:44:29Z #11 152.6 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB +2024-04-11T17:44:29Z #11 152.6 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB +2024-04-11T17:44:29Z #11 152.6 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB +2024-04-11T17:44:29Z #11 152.6 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB +2024-04-11T17:44:29Z #11 152.6 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB +2024-04-11T17:44:29Z #11 152.6 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB +2024-04-11T17:44:29Z #11 152.6 + fonttools 4.51.0 py310h2372a71_0 conda-forge 2MB +2024-04-11T17:44:29Z #11 152.6 + pyarrow 15.0.2 py310hc7d9cee_3_cpu conda-forge 5MB +2024-04-11T17:44:29Z #11 152.6 + contourpy 1.2.1 py310hd41b1e2_0 conda-forge 242kB +2024-04-11T17:44:29Z #11 152.6 + gdal 3.8.4 py310he073c5f_5 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB +2024-04-11T17:44:29Z #11 152.6 + numba 0.59.1 py310h7dc5dd1_0 conda-forge 4MB +2024-04-11T17:44:29Z #11 152.6 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB +2024-04-11T17:44:29Z #11 152.6 + h5py 3.11.0 nompi_py310h65828d5_100 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + pandas 2.2.2 py310hcc13569_0 conda-forge 13MB +2024-04-11T17:44:29Z #11 152.6 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB +2024-04-11T17:44:29Z #11 152.6 + scipy 1.13.0 py310hb13e2d6_0 conda-forge 16MB +2024-04-11T17:44:29Z #11 152.6 + matplotlib-base 3.8.4 py310h62c0568_0 conda-forge 7MB +2024-04-11T17:44:29Z #11 152.6 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB +2024-04-11T17:44:29Z #11 152.6 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB +2024-04-11T17:44:29Z #11 152.6 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB +2024-04-11T17:44:29Z #11 152.6 + scikit-learn 1.4.2 py310h1fdf081_0 conda-forge 9MB +2024-04-11T17:44:29Z #11 152.6 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-04-11T17:44:29Z #11 152.6 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-04-11T17:44:29Z #11 152.6 + yamale 5.0.0 pyhca7485f_0 conda-forge 45kB +2024-04-11T17:44:29Z #11 152.6 + dask-core 2024.4.1 pyhd8ed1ab_0 conda-forge 881kB +2024-04-11T17:44:29Z #11 152.6 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB +2024-04-11T17:44:29Z #11 152.6 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-04-11T17:44:29Z #11 152.6 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-04-11T17:44:29Z #11 152.6 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-04-11T17:44:29Z #11 152.6 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-04-11T17:44:29Z #11 152.6 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-04-11T17:44:29Z #11 152.6 + pydantic 2.6.4 pyhd8ed1ab_0 conda-forge 272kB +2024-04-11T17:44:29Z #11 152.6 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-04-11T17:44:29Z #11 152.6 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB +2024-04-11T17:44:29Z #11 152.6 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB +2024-04-11T17:44:29Z #11 152.6 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB +2024-04-11T17:44:29Z #11 152.6 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-04-11T17:44:29Z #11 152.6 + properscoring 0.1 py_0 conda-forge 22kB +2024-04-11T17:44:29Z #11 152.6 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-04-11T17:44:29Z #11 152.6 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-04-11T17:44:29Z #11 152.6 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-04-11T17:44:29Z #11 152.6 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB +2024-04-11T17:44:29Z #11 152.6 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB +2024-04-11T17:44:29Z #11 152.6 + dask-expr 1.0.11 pyhd8ed1ab_0 conda-forge 143kB +2024-04-11T17:44:29Z #11 152.6 + distributed 2024.4.1 pyhd8ed1ab_0 conda-forge 794kB +2024-04-11T17:44:29Z #11 152.6 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-04-11T17:44:29Z #11 152.6 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-04-11T17:44:29Z #11 152.6 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-04-11T17:44:29Z #11 152.6 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-04-11T17:44:29Z #11 152.6 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-04-11T17:44:29Z #11 152.6 + dask 2024.4.1 pyhd8ed1ab_0 conda-forge 7kB +2024-04-11T17:44:29Z #11 152.6 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB +2024-04-11T17:44:29Z #11 152.6 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB +2024-04-11T17:44:29Z #11 152.6 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-04-11T17:44:29Z #11 152.6 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-04-11T17:44:29Z #11 152.6 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB +2024-04-11T17:44:29Z #11 152.6 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB +2024-04-11T17:44:29Z #11 152.6 + rioxarray 0.15.3 pyhd8ed1ab_0 conda-forge 51kB +2024-04-11T17:44:29Z #11 152.6 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB +2024-04-11T17:44:29Z #11 152.6 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-04-11T17:44:29Z #11 152.6 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB +2024-04-11T17:44:29Z #11 152.6 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-04-11T17:44:29Z #11 152.6 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 Summary: +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 Install: 299 packages +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 Total download: 438MB +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:44:29Z #11 152.6 +2024-04-11T17:46:03Z #11 247.0 +2024-04-11T17:46:03Z #11 247.0 Looking for: ['xclim', 'ravenpy', 'python=3.10'] +2024-04-11T17:46:03Z #11 247.0 +2024-04-11T17:46:03Z #11 247.0 +2024-04-11T17:46:03Z #11 247.0 Downloading and Extracting Packages: ...working... done +2024-04-11T17:46:07Z #11 247.0 Preparing transaction: ...working... done +2024-04-11T17:46:21Z #11 251.2 Verifying transaction: ...working... done +2024-04-11T17:46:58Z #11 264.7 Executing transaction: ...working... +2024-04-11T17:46:58Z #11 302.0 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-04-11T17:46:58Z #11 302.0 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-04-11T17:46:58Z #11 302.0 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-04-11T17:46:58Z #11 302.0 mpiexec --mca opal_cuda_support 1 ... +2024-04-11T17:46:58Z #11 302.0 +2024-04-11T17:46:58Z #11 302.0 In addition, the UCX support is also built but disabled by default. +2024-04-11T17:46:58Z #11 302.0 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-04-11T17:46:58Z #11 302.0 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-04-11T17:46:58Z #11 302.0 Equivalently, you can set the MCA parameters in the command line: +2024-04-11T17:46:58Z #11 302.0 mpiexec --mca pml ucx --mca osc ucx ... +2024-04-11T17:46:58Z #11 302.0 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-04-11T17:46:58Z #11 302.0 Please consult UCX's documentation for detail. +2024-04-11T17:46:58Z #11 302.0 +2024-04-11T17:46:58Z #11 302.0 +2024-04-11T17:46:58Z #11 302.0 done +2024-04-11T17:46:58Z #11 302.2 +2024-04-11T17:46:58Z #11 302.2 To activate this environment, use +2024-04-11T17:46:58Z #11 302.2 +2024-04-11T17:46:58Z #11 302.2 $ mamba activate birdy +2024-04-11T17:46:58Z #11 302.2 +2024-04-11T17:46:58Z #11 302.2 To deactivate an active environment, use +2024-04-11T17:46:58Z #11 302.2 +2024-04-11T17:46:58Z #11 302.2 $ mamba deactivate +2024-04-11T17:46:58Z #11 302.2 +2024-04-11T17:47:02Z #11 305.7 Channels: +2024-04-11T17:47:02Z #11 305.7 - conda-forge +2024-04-11T17:47:02Z #11 305.7 - cdat +2024-04-11T17:47:02Z #11 305.7 - bokeh +2024-04-11T17:47:02Z #11 305.7 - pyviz/label/dev +2024-04-11T17:47:02Z #11 305.7 - defaults +2024-04-11T17:47:02Z #11 305.7 Platform: linux-64 +2024-04-11T17:47:36Z #11 305.7 Collecting package metadata (repodata.json): ...working... done +2024-04-11T17:48:38Z #11 339.8 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.1 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-11T17:52:02Z #11 605.9 done +2024-04-11T17:53:55Z #11 718.7 +2024-04-11T17:53:55Z #11 718.7 Downloading and Extracting Packages: ...working... done +2024-04-11T17:54:02Z #11 718.7 Preparing transaction: ...working... done +2024-04-11T17:54:25Z #11 725.8 Verifying transaction: ...working... done +2024-04-11T17:55:19Z #11 749.1 Executing transaction: ...working... +2024-04-11T17:55:19Z #11 802.8 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. +2024-04-11T17:55:19Z #11 802.8 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before +2024-04-11T17:55:19Z #11 802.8 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: +2024-04-11T17:55:19Z #11 802.8 mpiexec --mca opal_cuda_support 1 ... +2024-04-11T17:55:19Z #11 802.8 +2024-04-11T17:55:19Z #11 802.8 In addition, the UCX support is also built but disabled by default. +2024-04-11T17:55:19Z #11 802.8 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment +2024-04-11T17:55:19Z #11 802.8 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. +2024-04-11T17:55:19Z #11 802.8 Equivalently, you can set the MCA parameters in the command line: +2024-04-11T17:55:19Z #11 802.8 mpiexec --mca pml ucx --mca osc ucx ... +2024-04-11T17:55:19Z #11 802.8 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. +2024-04-11T17:55:19Z #11 802.8 Please consult UCX's documentation for detail. +2024-04-11T17:55:19Z #11 802.8 +2024-04-11T17:55:19Z #11 802.8 +2024-04-11T17:55:19Z #11 802.8 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-04-11T17:55:19Z #11 802.8 given by the platformdirs library. To remove this warning and +2024-04-11T17:55:19Z #11 802.8 see the appropriate new directories, set the environment variable +2024-04-11T17:55:19Z #11 802.8 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-04-11T17:55:19Z #11 802.8 The use of platformdirs will be the default in `jupyter_core` v6 +2024-04-11T17:55:19Z #11 802.8 from . import paths +2024-04-11T17:55:19Z #11 802.8 Enabling: jupyterlab_git +2024-04-11T17:55:19Z #11 802.8 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-11T17:55:19Z #11 802.8 - Validating... +2024-04-11T17:55:19Z #11 802.8 jupyterlab_git OK +2024-04-11T17:55:19Z #11 802.8 +2024-04-11T17:55:19Z #11 802.8 done +2024-04-11T17:56:03Z #11 810.4 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-04-11T17:56:03Z #11 846.7 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.o1gaikjh.requirements.txt', '--exists-action=b'] +2024-04-11T17:56:03Z #11 846.7 Pip subprocess output: +2024-04-11T17:56:03Z #11 846.7 Collecting xncml (from -r /condaenv.o1gaikjh.requirements.txt (line 1)) +2024-04-11T17:56:03Z #11 846.7 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting hsclient (from -r /condaenv.o1gaikjh.requirements.txt (line 2)) +2024-04-11T17:56:03Z #11 846.7 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting fstd2nc (from -r /condaenv.o1gaikjh.requirements.txt (line 3)) +2024-04-11T17:56:03Z #11 846.7 Downloading fstd2nc-0.20240401.0.tar.gz (166 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.9/166.9 kB 8.9 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Installing build dependencies: started +2024-04-11T17:56:03Z #11 846.7 Installing build dependencies: finished with status 'done' +2024-04-11T17:56:03Z #11 846.7 Getting requirements to build wheel: started +2024-04-11T17:56:03Z #11 846.7 Getting requirements to build wheel: finished with status 'done' +2024-04-11T17:56:03Z #11 846.7 Installing backend dependencies: started +2024-04-11T17:56:03Z #11 846.7 Installing backend dependencies: finished with status 'done' +2024-04-11T17:56:03Z #11 846.7 Preparing metadata (pyproject.toml): started +2024-04-11T17:56:03Z #11 846.7 Preparing metadata (pyproject.toml): finished with status 'done' +2024-04-11T17:56:03Z #11 846.7 Collecting figanos (from -r /condaenv.o1gaikjh.requirements.txt (line 4)) +2024-04-11T17:56:03Z #11 846.7 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting pixiedust (from -r /condaenv.o1gaikjh.requirements.txt (line 5)) +2024-04-11T17:56:03Z #11 846.7 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 15.9 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Preparing metadata (setup.py): started +2024-04-11T17:56:03Z #11 846.7 Preparing metadata (setup.py): finished with status 'done' +2024-04-11T17:56:03Z #11 846.7 Collecting ipython_blocking (from -r /condaenv.o1gaikjh.requirements.txt (line 6)) +2024-04-11T17:56:03Z #11 846.7 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting jupyternotify (from -r /condaenv.o1gaikjh.requirements.txt (line 7)) +2024-04-11T17:56:03Z #11 846.7 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-04-11T17:56:03Z #11 846.7 Preparing metadata (setup.py): started +2024-04-11T17:56:03Z #11 846.7 Preparing metadata (setup.py): finished with status 'done' +2024-04-11T17:56:03Z #11 846.7 Collecting jupyterlab-logout (from -r /condaenv.o1gaikjh.requirements.txt (line 8)) +2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.o1gaikjh.requirements.txt (line 9)) +2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting pytest-tornasync (from -r /condaenv.o1gaikjh.requirements.txt (line 10)) +2024-04-11T17:56:03Z #11 846.7 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting xmltodict (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) +2024-04-11T17:56:03Z #11 846.7 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting xsdata (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) +2024-04-11T17:56:03Z #11 846.7 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (2023.8.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (1.6.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (1.6.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (2024.4.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (5.9.8) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (69.2.0) +2024-04-11T17:56:03Z #11 846.7 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) +2024-04-11T17:56:03Z #11 846.7 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.31.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.0.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.o1gaikjh.requirements.txt (line 3)) (1.24.4) +2024-04-11T17:56:03Z #11 846.7 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.o1gaikjh.requirements.txt (line 3)) +2024-04-11T17:56:03Z #11 846.7 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.23.0) +2024-04-11T17:56:03Z #11 846.7 Collecting cairosvg (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) +2024-04-11T17:56:03Z #11 846.7 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.14.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.8.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.1.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (4.2.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (6.0.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.13.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.22.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.47.0) +2024-04-11T17:56:03Z #11 846.7 Collecting geojson (from pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) +2024-04-11T17:56:03Z #11 846.7 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting astunparse (from pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) +2024-04-11T17:56:03Z #11 846.7 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) (3.6) +2024-04-11T17:56:03Z #11 846.7 Collecting colour (from pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) +2024-04-11T17:56:03Z #11 846.7 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (8.22.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (8.1.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.7.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (1.0.0) +2024-04-11T17:56:03Z #11 846.7 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) +2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab-4.1.6-py3-none-any.whl.metadata (16 kB) +2024-04-11T17:56:03Z #11 846.7 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-04-11T17:56:03Z #11 846.7 Collecting jupyterlab-logout (from -r /condaenv.o1gaikjh.requirements.txt (line 8)) +2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.6.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (3.6.7) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (24.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (6.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (5.7.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.26.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.13.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.2.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.8.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.0.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (6.5.6) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (3.1.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.0.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.o1gaikjh.requirements.txt (line 10)) (8.1.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.o1gaikjh.requirements.txt (line 3)) (2024.1) +2024-04-11T17:56:03Z #11 846.7 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) +2024-04-11T17:56:03Z #11 846.7 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.6.4) +2024-04-11T17:56:03Z #11 846.7 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) +2024-04-11T17:56:03Z #11 846.7 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (0.6.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.16.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (4.11.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.o1gaikjh.requirements.txt (line 10)) (2.0.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.o1gaikjh.requirements.txt (line 10)) (1.4.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.o1gaikjh.requirements.txt (line 10)) (1.2.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (24.0.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.3.8) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.9.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (8.1.7) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.0.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.0.6) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.59.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.23) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.4.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.13.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.14.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (3.0.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (2024.3.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (1.4.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (0.12.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (7.1.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.9.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2024.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) (0.43.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) (1.16.0) +2024-04-11T17:56:03Z #11 846.7 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) +2024-04-11T17:56:03Z #11 846.7 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) +2024-04-11T17:56:03Z #11 846.7 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) +2024-04-11T17:56:03Z #11 846.7 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.7.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (9.4.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.2.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.0.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyshp>=2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.3.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyproj>=3.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.5.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.2.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.12.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (4.51.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.4.5) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.1.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.9.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (5.1.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.19.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.1.6) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (3.0.42) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (2.17.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.6.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (5.14.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (4.9.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.2.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (4.0.10) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (3.0.10) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (5.5.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (6.6.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (7.16.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (6.29.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (7.4.9) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (5.10.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (3.3.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (3.6) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.0.7) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2024.2.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (3.2.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.34.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2023.8.12) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (23.2.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.1.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.7.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (4.0.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (3.17.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.8.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.1.5) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (1.6.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (24.0.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (4.3.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (23.1.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.10.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.5.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (7.7.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.20.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.8.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.18.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.7.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.9.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.8.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.5.9) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.14.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.9.24) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (4.21.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (4.12.3) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (6.1.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (0.3.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (3.0.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (1.5.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (2.19.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.2.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.2.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (1.0.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.7.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.2.13) +2024-04-11T17:56:03Z #11 846.7 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) +2024-04-11T17:56:03Z #11 846.7 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.4.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.4.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.16.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.5.1) +2024-04-11T17:56:03Z #11 846.7 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) +2024-04-11T17:56:03Z #11 846.7 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (1.8.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.42.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (2.4.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (2.0.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (2.4.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.2.2) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.5.6) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.3.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.22) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2023.12.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.34.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.18.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.0.7) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.1.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.1.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (22.1.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.19.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (21.2.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (2.5) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.5.1) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (20.11.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.4) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.3.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.13) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.3.0) +2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.9.0.20240316) +2024-04-11T17:56:03Z #11 846.7 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 44.4 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.0 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 30.9 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 58.8 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 4.4 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading xsdata-24.4-py3-none-any.whl (229 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 24.8 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 21.8 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 10.6 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-04-11T17:56:03Z #11 846.7 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 29.6 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.1 MB/s eta 0:00:00 +2024-04-11T17:56:03Z #11 846.7 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify +2024-04-11T17:56:03Z #11 846.7 Building wheel for fstd2nc (pyproject.toml): started +2024-04-11T17:56:03Z #11 846.7 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-04-11T17:56:03Z #11 846.7 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.0-py3-none-any.whl size=169076 sha256=77909565d2f5936ddd841983637cef6bbc79c9d33d30cfdbd3ed3561e1f12bf2 +2024-04-11T17:56:03Z #11 846.7 Stored in directory: /root/.cache/pip/wheels/b7/e5/e2/65589bc6ca947390d3d694cdc195ca6662e0448bb58d970eb6 +2024-04-11T17:56:03Z #11 846.7 Building wheel for pixiedust (setup.py): started +2024-04-11T17:56:03Z #11 846.7 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-04-11T17:56:03Z #11 846.7 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=847656121c6372ac6ca570e571074d62dbc4f30eaed0ea65afce36638d0118b1 +2024-04-11T17:56:03Z #11 846.7 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 +2024-04-11T17:56:03Z #11 846.7 Building wheel for jupyternotify (setup.py): started +2024-04-11T17:56:03Z #11 846.7 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-04-11T17:56:03Z #11 846.7 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=d338894c70641a5a5a026e7459edd1d670289acdce31087956638a04e8a852d7 +2024-04-11T17:56:03Z #11 846.7 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 +2024-04-11T17:56:03Z #11 846.7 Successfully built fstd2nc pixiedust jupyternotify +2024-04-11T17:56:03Z #11 846.7 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-04-11T17:56:03Z #11 846.7 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.0 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 +2024-04-11T17:56:03Z #11 846.7 +2024-04-11T17:56:03Z #11 846.7 done +2024-04-11T17:56:03Z #11 846.7 # +2024-04-11T17:56:03Z #11 846.7 # To activate this environment, use +2024-04-11T17:56:03Z #11 846.7 # +2024-04-11T17:56:03Z #11 846.7 # $ conda activate birdy +2024-04-11T17:56:03Z #11 846.7 # +2024-04-11T17:56:03Z #11 846.7 # To deactivate an active environment, use +2024-04-11T17:56:03Z #11 846.7 # +2024-04-11T17:56:03Z #11 846.7 # $ conda deactivate +2024-04-11T17:56:03Z #11 846.7 +2024-04-11T17:56:19Z #11 862.9 Will remove 788 (1.19 GB) tarball(s). +2024-04-11T17:56:19Z #11 862.9 Will remove 1 index cache(s). +2024-04-11T17:56:19Z #11 862.9 Will remove 148 (1.19 GB) package(s). +2024-04-11T17:56:19Z #11 862.9 There are no tempfile(s) to remove. +2024-04-11T17:56:19Z #11 862.9 There are no logfile(s) to remove. +2024-04-11T17:56:20Z #11 DONE 863.7s +2024-04-11T17:56:20Z +2024-04-11T17:56:20Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2024-04-11T17:56:21Z #12 1.295 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-04-11T17:56:21Z #12 DONE 1.5s +2024-04-11T17:56:21Z +2024-04-11T17:56:21Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-11T17:56:22Z #5 ... +2024-04-11T17:56:22Z +2024-04-11T17:56:22Z #13 [ 8/10] RUN jupyter lab build +2024-04-11T17:56:24Z #13 2.122 [LabBuildApp] JupyterLab 3.6.7 +2024-04-11T17:56:24Z #13 2.123 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2024-04-11T17:56:24Z #13 2.766 [LabBuildApp] Building jupyterlab assets (production, minimized) +2024-04-11T17:56:24Z #13 2.785 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. +2024-04-11T17:56:24Z #13 2.785 +2024-04-11T17:58:41Z #13 2.792 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ +2024-04-11T17:58:41Z #13 DONE 139.4s +2024-04-11T17:58:41Z +2024-04-11T17:58:41Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-04-11T17:58:41Z #14 0.708 Enabling: voila +2024-04-11T17:58:41Z #14 0.708 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-11T17:58:42Z #14 0.711 - Validating... +2024-04-11T17:58:42Z #14 1.409 voila 0.5.6 OK +2024-04-11T17:58:43Z #14 1.788 Enabling: panel.io.jupyter_server_extension +2024-04-11T17:58:43Z #14 1.788 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-11T17:58:43Z #14 1.790 - Validating... +2024-04-11T17:58:44Z #14 3.662 panel.io.jupyter_server_extension OK +2024-04-11T17:58:45Z #14 4.166 - Validating... +2024-04-11T17:58:46Z #14 5.055 dask_labextension 6.2.0 OK +2024-04-11T17:58:46Z #14 5.055 - Validating... +2024-04-11T17:58:46Z #14 5.055 jupyter_server_proxy 4.1.1-0.dev OK +2024-04-11T17:58:46Z #14 5.055 - Validating... +2024-04-11T17:58:46Z #14 5.227 jupyter_resource_usage 0.7.1 OK +2024-04-11T17:58:46Z #14 5.227 - Validating... +2024-04-11T17:58:46Z #14 5.286  X is jupyter_server_ydoc importable? +2024-04-11T17:58:46Z #14 5.286 - Validating... +2024-04-11T17:58:46Z #14 5.359 jupyterlab 3.6.7 OK +2024-04-11T17:58:46Z #14 5.360 - Validating... +2024-04-11T17:58:46Z #14 5.548 jupyterlab_jupytext OK +2024-04-11T17:58:46Z #14 5.549 - Validating... +2024-04-11T17:58:46Z #14 5.553 mamba_gator 5.2.1 OK +2024-04-11T17:58:46Z #14 5.553 - Validating... +2024-04-11T17:58:46Z #14 5.571 nbdime 4.0.1 OK +2024-04-11T17:58:46Z #14 5.571 - Validating... +2024-04-11T17:58:47Z #14 6.685 panel.io.jupyter_server_extension OK +2024-04-11T17:58:47Z #14 6.685 - Validating... +2024-04-11T17:58:48Z #14 6.753 nbresuse OK +2024-04-11T17:58:48Z #14 6.753 - Validating... +2024-04-11T17:58:48Z #14 7.010 voila.server_extension OK +2024-04-11T17:58:48Z #14 7.010 - Validating... +2024-04-11T17:58:48Z #14 7.012 jupyterlab_git OK +2024-04-11T17:58:48Z #14 7.012 - Validating... +2024-04-11T17:58:48Z #14 7.012 voila 0.5.6 OK +2024-04-11T17:58:48Z #14 7.013 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-04-11T17:58:48Z #14 7.013 dask_labextension  enabled  +2024-04-11T17:58:48Z #14 7.013 jupyter_server_proxy  enabled  +2024-04-11T17:58:48Z #14 7.013 jupyter_resource_usage  enabled  +2024-04-11T17:58:48Z #14 7.013 jupyter_server_ydoc  enabled  +2024-04-11T17:58:48Z #14 7.013 jupyterlab  enabled  +2024-04-11T17:58:48Z #14 7.013 jupyterlab_jupytext  enabled  +2024-04-11T17:58:48Z #14 7.013 mamba_gator  enabled  +2024-04-11T17:58:48Z #14 7.013 nbdime  enabled  +2024-04-11T17:58:48Z #14 7.013 panel.io.jupyter_server_extension  enabled  +2024-04-11T17:58:48Z #14 7.013 nbresuse  enabled  +2024-04-11T17:58:48Z #14 7.013 voila.server_extension  enabled  +2024-04-11T17:58:48Z #14 7.013 jupyterlab_git  enabled  +2024-04-11T17:58:48Z #14 7.013 voila  enabled  +2024-04-11T17:58:48Z #14 DONE 7.4s +2024-04-11T17:58:48Z +2024-04-11T17:58:48Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-04-11T17:58:49Z #15 0.454 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-04-11T17:58:49Z #15 0.474 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.110.133, 185.199.111.133, ... +2024-04-11T17:58:49Z #15 0.477 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-04-11T17:58:49Z #15 0.482 HTTP request sent, awaiting response... 200 OK +2024-04-11T17:58:49Z #15 0.562 Length: 9769 (9.5K) [text/plain] +2024-04-11T17:58:49Z #15 0.562 Saving to: ‘/usr/local/bin/start.sh’ +2024-04-11T17:58:49Z #15 0.562 +2024-04-11T17:58:49Z #15 0.562 0K ......... 100% 8.93M=0.001s +2024-04-11T17:58:49Z #15 0.566 +2024-04-11T17:58:49Z #15 0.566 2024-04-11 17:58:49 (8.93 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-04-11T17:58:49Z #15 0.566 +2024-04-11T17:58:49Z #15 0.567 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-04-11T17:58:49Z #15 0.591 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2024-04-11T17:58:49Z #15 0.592 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-04-11T17:58:49Z #15 0.600 HTTP request sent, awaiting response... 200 OK +2024-04-11T17:58:49Z #15 0.684 Length: 359 [text/plain] +2024-04-11T17:58:49Z #15 0.684 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-04-11T17:58:49Z #15 0.684 +2024-04-11T17:58:49Z #15 0.684 0K 100% 15.0M=0s +2024-04-11T17:58:49Z #15 0.686 +2024-04-11T17:58:49Z #15 0.686 2024-04-11 17:58:49 (15.0 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-04-11T17:58:49Z #15 0.686 +2024-04-11T17:58:49Z #15 0.690 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-04-11T17:58:49Z #15 0.715 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2024-04-11T17:58:49Z #15 0.716 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-04-11T17:58:49Z #15 0.736 HTTP request sent, awaiting response... 200 OK +2024-04-11T17:58:49Z #15 0.814 Length: 852 [text/plain] +2024-04-11T17:58:49Z #15 0.814 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-04-11T17:58:49Z #15 0.814 +2024-04-11T17:58:49Z #15 0.814 0K 100% 17.1M=0s +2024-04-11T17:58:49Z #15 0.815 +2024-04-11T17:58:49Z #15 0.815 2024-04-11 17:58:49 (17.1 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-04-11T17:58:49Z #15 0.815 +2024-04-11T17:58:49Z #15 0.819 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-04-11T17:58:49Z #15 0.844 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2024-04-11T17:58:49Z #15 0.845 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-04-11T17:58:49Z #15 0.850 HTTP request sent, awaiting response... 200 OK +2024-04-11T17:58:49Z #15 0.963 Length: 1034 (1.0K) [text/plain] +2024-04-11T17:58:49Z #15 0.963 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-04-11T17:58:49Z #15 0.963 +2024-04-11T17:58:49Z #15 0.963 0K . 100% 46.4M=0s +2024-04-11T17:58:49Z #15 0.965 +2024-04-11T17:58:49Z #15 0.965 2024-04-11 17:58:49 (46.4 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-04-11T17:58:49Z #15 0.965 +2024-04-11T17:58:49Z #15 0.971 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-04-11T17:58:49Z #15 0.995 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2024-04-11T17:58:49Z #15 0.996 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-04-11T17:58:49Z #15 1.001 HTTP request sent, awaiting response... 200 OK +2024-04-11T17:58:49Z #15 1.089 Length: 1836 (1.8K) [text/plain] +2024-04-11T17:58:49Z #15 1.090 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-04-11T17:58:49Z #15 1.090 +2024-04-11T17:58:49Z #15 1.090 0K . 100% 6.27M=0s +2024-04-11T17:58:49Z #15 1.091 +2024-04-11T17:58:49Z #15 1.091 2024-04-11 17:58:49 (6.27 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-04-11T17:58:49Z #15 1.091 +2024-04-11T17:58:50Z #15 1.304 --2024-04-11 17:58:50-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-04-11T17:58:50Z #15 1.328 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.84, 3.162.103.63, 3.162.103.35, ... +2024-04-11T17:58:50Z #15 1.334 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.84|:443... connected. +2024-04-11T17:58:50Z #15 1.340 HTTP request sent, awaiting response... 200 OK +2024-04-11T17:58:50Z #15 1.371 Length: 129825343 (124M) [application/x-tar] +2024-04-11T17:58:50Z #15 1.371 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-04-11T17:58:50Z #15 1.372 +2024-04-11T17:58:50Z #15 1.372 0K .......... .......... .......... .......... .......... 0% 10.6M 12s +2024-04-11T17:58:50Z #15 1.375 50K .......... .......... .......... .......... .......... 0% 41.7M 7s +2024-04-11T17:58:50Z #15 1.377 100K .......... .......... .......... .......... .......... 0% 26.3M 6s +2024-04-11T17:58:50Z #15 1.379 150K .......... .......... .......... .......... .......... 0% 31.0M 6s +2024-04-11T17:58:50Z #15 1.380 200K .......... .......... .......... .......... .......... 0% 32.1M 5s +2024-04-11T17:58:50Z #15 1.382 250K .......... .......... .......... .......... .......... 0% 33.6M 5s +2024-04-11T17:58:50Z #15 1.383 300K .......... .......... .......... .......... .......... 0% 36.9M 5s +2024-04-11T17:58:50Z #15 1.384 350K .......... .......... .......... .......... .......... 0% 37.3M 5s +2024-04-11T17:58:50Z #15 1.386 400K .......... .......... .......... .......... .......... 0% 31.5M 5s +2024-04-11T17:58:50Z #15 1.387 450K .......... .......... .......... .......... .......... 0% 40.2M 4s +2024-04-11T17:58:50Z #15 1.389 500K .......... .......... .......... .......... .......... 0% 27.0M 4s +2024-04-11T17:58:50Z #15 1.390 550K .......... .......... .......... .......... .......... 0% 35.9M 4s +2024-04-11T17:58:50Z #15 1.398 600K .......... .......... .......... .......... .......... 0% 95.2M 4s +2024-04-11T17:58:50Z #15 1.398 650K .......... .......... .......... .......... .......... 0% 129M 4s +2024-04-11T17:58:50Z #15 1.398 700K .......... .......... .......... .......... .......... 0% 91.7M 4s +2024-04-11T17:58:50Z #15 1.398 750K .......... .......... .......... .......... .......... 0% 82.3M 4s +2024-04-11T17:58:50Z #15 1.398 800K .......... .......... .......... .......... .......... 0% 76.5M 3s +2024-04-11T17:58:50Z #15 1.398 850K .......... .......... .......... .......... .......... 0% 100M 3s +2024-04-11T17:58:50Z #15 1.398 900K .......... .......... .......... .......... .......... 0% 77.4M 3s +2024-04-11T17:58:50Z #15 1.398 950K .......... .......... .......... .......... .......... 0% 68.1M 3s +2024-04-11T17:58:50Z #15 1.398 1000K .......... .......... .......... .......... .......... 0% 93.5M 3s +2024-04-11T17:58:50Z #15 1.398 1050K .......... .......... .......... .......... .......... 0% 128M 3s +2024-04-11T17:58:50Z #15 1.398 1100K .......... .......... .......... .......... .......... 0% 103M 3s +2024-04-11T17:58:50Z #15 1.398 1150K .......... .......... .......... .......... .......... 0% 40.2M 3s +2024-04-11T17:58:50Z #15 1.399 1200K .......... .......... .......... .......... .......... 0% 42.2M 3s +2024-04-11T17:58:50Z #15 1.400 1250K .......... .......... .......... .......... .......... 1% 45.8M 3s +2024-04-11T17:58:50Z #15 1.401 1300K .......... .......... .......... .......... .......... 1% 38.3M 3s +2024-04-11T17:58:50Z #15 1.402 1350K .......... .......... .......... .......... .......... 1% 28.3M 3s +2024-04-11T17:58:50Z #15 1.404 1400K .......... .......... .......... .......... .......... 1% 31.1M 3s +2024-04-11T17:58:50Z #15 1.406 1450K .......... .......... .......... .......... .......... 1% 22.9M 3s +2024-04-11T17:58:50Z #15 1.408 1500K .......... .......... .......... .......... .......... 1% 29.6M 3s +2024-04-11T17:58:50Z #15 1.409 1550K .......... .......... .......... .......... .......... 1% 57.8M 3s +2024-04-11T17:58:50Z #15 1.411 1600K .......... .......... .......... .......... .......... 1% 27.4M 3s +2024-04-11T17:58:50Z #15 1.412 1650K .......... .......... .......... .......... .......... 1% 45.2M 3s +2024-04-11T17:58:50Z #15 1.413 1700K .......... .......... .......... .......... .......... 1% 36.5M 3s +2024-04-11T17:58:50Z #15 1.415 1750K .......... .......... .......... .......... .......... 1% 42.9M 3s +2024-04-11T17:58:50Z #15 1.415 1800K .......... .......... .......... .......... .......... 1% 33.5M 3s +2024-04-11T17:58:50Z #15 1.417 1850K .......... .......... .......... .......... .......... 1% 31.3M 3s +2024-04-11T17:58:50Z #15 1.418 1900K .......... .......... .......... .......... .......... 1% 39.0M 3s +2024-04-11T17:58:50Z #15 1.420 1950K .......... .......... .......... .......... .......... 1% 33.9M 3s +2024-04-11T17:58:50Z #15 1.421 2000K .......... .......... .......... .......... .......... 1% 22.6M 3s +2024-04-11T17:58:50Z #15 1.423 2050K .......... .......... .......... .......... .......... 1% 58.1M 3s +2024-04-11T17:58:50Z #15 1.424 2100K .......... .......... .......... .......... .......... 1% 54.9M 3s +2024-04-11T17:58:50Z #15 1.426 2150K .......... .......... .......... .......... .......... 1% 112M 3s +2024-04-11T17:58:50Z #15 1.426 2200K .......... .......... .......... .......... .......... 1% 52.2M 3s +2024-04-11T17:58:50Z #15 1.426 2250K .......... .......... .......... .......... .......... 1% 27.6M 3s +2024-04-11T17:58:50Z #15 1.428 2300K .......... .......... .......... .......... .......... 1% 45.8M 3s +2024-04-11T17:58:50Z #15 1.429 2350K .......... .......... .......... .......... .......... 1% 39.8M 3s +2024-04-11T17:58:50Z #15 1.434 2400K .......... .......... .......... .......... .......... 1% 74.9M 3s +2024-04-11T17:58:50Z #15 1.434 2450K .......... .......... .......... .......... .......... 1% 108M 3s +2024-04-11T17:58:50Z #15 1.434 2500K .......... .......... .......... .......... .......... 2% 128M 3s +2024-04-11T17:58:50Z #15 1.434 2550K .......... .......... .......... .......... .......... 2% 79.1M 3s +2024-04-11T17:58:50Z #15 1.434 2600K .......... .......... .......... .......... .......... 2% 90.2M 3s +2024-04-11T17:58:50Z #15 1.434 2650K .......... .......... .......... .......... .......... 2% 117M 3s +2024-04-11T17:58:50Z #15 1.434 2700K .......... .......... .......... .......... .......... 2% 42.8M 3s +2024-04-11T17:58:50Z #15 1.435 2750K .......... .......... .......... .......... .......... 2% 104M 3s +2024-04-11T17:58:50Z #15 1.435 2800K .......... .......... .......... .......... .......... 2% 45.9M 3s +2024-04-11T17:58:50Z #15 1.436 2850K .......... .......... .......... .......... .......... 2% 74.6M 3s +2024-04-11T17:58:50Z #15 1.437 2900K .......... .......... .......... .......... .......... 2% 75.0M 3s +2024-04-11T17:58:50Z #15 1.438 2950K .......... .......... .......... .......... .......... 2% 83.7M 3s +2024-04-11T17:58:50Z #15 1.438 3000K .......... .......... .......... .......... .......... 2% 150M 3s +2024-04-11T17:58:50Z #15 1.439 3050K .......... .......... .......... .......... .......... 2% 150M 3s +2024-04-11T17:58:50Z #15 1.439 3100K .......... .......... .......... .......... .......... 2% 106M 3s +2024-04-11T17:58:50Z #15 1.439 3150K .......... .......... .......... .......... .......... 2% 99.9M 3s +2024-04-11T17:58:50Z #15 1.440 3200K .......... .......... .......... .......... .......... 2% 81.9M 3s +2024-04-11T17:58:50Z #15 1.440 3250K .......... .......... .......... .......... .......... 2% 114M 3s +2024-04-11T17:58:50Z #15 1.441 3300K .......... .......... .......... .......... .......... 2% 119M 3s +2024-04-11T17:58:50Z #15 1.441 3350K .......... .......... .......... .......... .......... 2% 79.9M 3s +2024-04-11T17:58:50Z #15 1.442 3400K .......... .......... .......... .......... .......... 2% 91.4M 3s +2024-04-11T17:58:50Z #15 1.442 3450K .......... .......... .......... .......... .......... 2% 130M 3s +2024-04-11T17:58:50Z #15 1.443 3500K .......... .......... .......... .......... .......... 2% 84.2M 3s +2024-04-11T17:58:50Z #15 1.444 3550K .......... .......... .......... .......... .......... 2% 83.8M 2s +2024-04-11T17:58:50Z #15 1.444 3600K .......... .......... .......... .......... .......... 2% 85.9M 2s +2024-04-11T17:58:50Z #15 1.445 3650K .......... .......... .......... .......... .......... 2% 93.2M 2s +2024-04-11T17:58:50Z #15 1.445 3700K .......... .......... .......... .......... .......... 2% 76.3M 2s +2024-04-11T17:58:50Z #15 1.445 3750K .......... .......... .......... .......... .......... 2% 50.9M 2s +2024-04-11T17:58:50Z #15 1.446 3800K .......... .......... .......... .......... .......... 3% 133M 2s +2024-04-11T17:58:50Z #15 1.447 3850K .......... .......... .......... .......... .......... 3% 152M 2s +2024-04-11T17:58:50Z #15 1.447 3900K .......... .......... .......... .......... .......... 3% 73.5M 2s +2024-04-11T17:58:50Z #15 1.448 3950K .......... .......... .......... .......... .......... 3% 61.6M 2s +2024-04-11T17:58:50Z #15 1.449 4000K .......... .......... .......... .......... .......... 3% 150M 2s +2024-04-11T17:58:50Z #15 1.449 4050K .......... .......... .......... .......... .......... 3% 73.3M 2s +2024-04-11T17:58:50Z #15 1.450 4100K .......... .......... .......... .......... .......... 3% 52.2M 2s +2024-04-11T17:58:50Z #15 1.451 4150K .......... .......... .......... .......... .......... 3% 51.2M 2s +2024-04-11T17:58:50Z #15 1.454 4200K .......... .......... .......... .......... .......... 3% 81.9M 2s +2024-04-11T17:58:50Z #15 1.454 4250K .......... .......... .......... .......... .......... 3% 118M 2s +2024-04-11T17:58:50Z #15 1.454 4300K .......... .......... .......... .......... .......... 3% 81.0M 2s +2024-04-11T17:58:50Z #15 1.454 4350K .......... .......... .......... .......... .......... 3% 94.8M 2s +2024-04-11T17:58:50Z #15 1.454 4400K .......... .......... .......... .......... .......... 3% 69.8M 2s +2024-04-11T17:58:50Z #15 1.454 4450K .......... .......... .......... .......... .......... 3% 84.4M 2s +2024-04-11T17:58:50Z #15 1.455 4500K .......... .......... .......... .......... .......... 3% 150M 2s +2024-04-11T17:58:50Z #15 1.455 4550K .......... .......... .......... .......... .......... 3% 90.8M 2s +2024-04-11T17:58:50Z #15 1.456 4600K .......... .......... .......... .......... .......... 3% 88.1M 2s +2024-04-11T17:58:50Z #15 1.456 4650K .......... .......... .......... .......... .......... 3% 79.6M 2s +2024-04-11T17:58:50Z #15 1.457 4700K .......... .......... .......... .......... .......... 3% 135M 2s +2024-04-11T17:58:50Z #15 1.457 4750K .......... .......... .......... .......... .......... 3% 109M 2s +2024-04-11T17:58:50Z #15 1.458 4800K .......... .......... .......... .......... .......... 3% 60.4M 2s +2024-04-11T17:58:50Z #15 1.459 4850K .......... .......... .......... .......... .......... 3% 83.0M 2s +2024-04-11T17:58:50Z #15 1.459 4900K .......... .......... .......... .......... .......... 3% 127M 2s +2024-04-11T17:58:50Z #15 1.460 4950K .......... .......... .......... .......... .......... 3% 124M 2s +2024-04-11T17:58:50Z #15 1.460 5000K .......... .......... .......... .......... .......... 3% 106M 2s +2024-04-11T17:58:50Z #15 1.461 5050K .......... .......... .......... .......... .......... 4% 58.8M 2s +2024-04-11T17:58:50Z #15 1.461 5100K .......... .......... .......... .......... .......... 4% 117M 2s +2024-04-11T17:58:50Z #15 1.462 5150K .......... .......... .......... .......... .......... 4% 51.2M 2s +2024-04-11T17:58:50Z #15 1.463 5200K .......... .......... .......... .......... .......... 4% 107M 2s +2024-04-11T17:58:50Z #15 1.463 5250K .......... .......... .......... .......... .......... 4% 82.5M 2s +2024-04-11T17:58:50Z #15 1.464 5300K .......... .......... .......... .......... .......... 4% 128M 2s +2024-04-11T17:58:50Z #15 1.464 5350K .......... .......... .......... .......... .......... 4% 134M 2s +2024-04-11T17:58:50Z #15 1.465 5400K .......... .......... .......... .......... .......... 4% 65.1M 2s +2024-04-11T17:58:50Z #15 1.465 5450K .......... .......... .......... .......... .......... 4% 91.3M 2s +2024-04-11T17:58:50Z #15 1.466 5500K .......... .......... .......... .......... .......... 4% 87.0M 2s +2024-04-11T17:58:50Z #15 1.466 5550K .......... .......... .......... .......... .......... 4% 125M 2s +2024-04-11T17:58:50Z #15 1.467 5600K .......... .......... .......... .......... .......... 4% 140M 2s +2024-04-11T17:58:50Z #15 1.467 5650K .......... .......... .......... .......... .......... 4% 72.8M 2s +2024-04-11T17:58:50Z #15 1.468 5700K .......... .......... .......... .......... .......... 4% 122M 2s +2024-04-11T17:58:50Z #15 1.469 5750K .......... .......... .......... .......... .......... 4% 61.6M 2s +2024-04-11T17:58:50Z #15 1.469 5800K .......... .......... .......... .......... .......... 4% 55.0M 2s +2024-04-11T17:58:50Z #15 1.474 5850K .......... .......... .......... .......... .......... 4% 88.9M 2s +2024-04-11T17:58:50Z #15 1.474 5900K .......... .......... .......... .......... .......... 4% 120M 2s +2024-04-11T17:58:50Z #15 1.474 5950K .......... .......... .......... .......... .......... 4% 139M 2s +2024-04-11T17:58:50Z #15 1.474 6000K .......... .......... .......... .......... .......... 4% 81.0M 2s +2024-04-11T17:58:50Z #15 1.474 6050K .......... .......... .......... .......... .......... 4% 80.2M 2s +2024-04-11T17:58:50Z #15 1.474 6100K .......... .......... .......... .......... .......... 4% 65.0M 2s +2024-04-11T17:58:50Z #15 1.474 6150K .......... .......... .......... .......... .......... 4% 114M 2s +2024-04-11T17:58:50Z #15 1.474 6200K .......... .......... .......... .......... .......... 4% 85.6M 2s +2024-04-11T17:58:50Z #15 1.480 6250K .......... .......... .......... .......... .......... 4% 105M 2s +2024-04-11T17:58:50Z #15 1.480 6300K .......... .......... .......... .......... .......... 5% 142M 2s +2024-04-11T17:58:50Z #15 1.480 6350K .......... .......... .......... .......... .......... 5% 92.8M 2s +2024-04-11T17:58:50Z #15 1.480 6400K .......... .......... .......... .......... .......... 5% 99.8M 2s +2024-04-11T17:58:50Z #15 1.480 6450K .......... .......... .......... .......... .......... 5% 134M 2s +2024-04-11T17:58:50Z #15 1.480 6500K .......... .......... .......... .......... .......... 5% 152M 2s +2024-04-11T17:58:50Z #15 1.480 6550K .......... .......... .......... .......... .......... 5% 84.7M 2s +2024-04-11T17:58:50Z #15 1.480 6600K .......... .......... .......... .......... .......... 5% 106M 2s +2024-04-11T17:58:50Z #15 1.480 6650K .......... .......... .......... .......... .......... 5% 82.6M 2s +2024-04-11T17:58:50Z #15 1.480 6700K .......... .......... .......... .......... .......... 5% 124M 2s +2024-04-11T17:58:50Z #15 1.480 6750K .......... .......... .......... .......... .......... 5% 91.3M 2s +2024-04-11T17:58:50Z #15 1.480 6800K .......... .......... .......... .......... .......... 5% 155M 2s +2024-04-11T17:58:50Z #15 1.480 6850K .......... .......... .......... .......... .......... 5% 68.1M 2s +2024-04-11T17:58:50Z #15 1.480 6900K .......... .......... .......... .......... .......... 5% 87.6M 2s +2024-04-11T17:58:50Z #15 1.481 6950K .......... .......... .......... .......... .......... 5% 113M 2s +2024-04-11T17:58:50Z #15 1.481 7000K .......... .......... .......... .......... .......... 5% 88.5M 2s +2024-04-11T17:58:50Z #15 1.482 7050K .......... .......... .......... .......... .......... 5% 91.7M 2s +2024-04-11T17:58:50Z #15 1.482 7100K .......... .......... .......... .......... .......... 5% 104M 2s +2024-04-11T17:58:50Z #15 1.483 7150K .......... .......... .......... .......... .......... 5% 89.1M 2s +2024-04-11T17:58:50Z #15 1.483 7200K .......... .......... .......... .......... .......... 5% 80.9M 2s +2024-04-11T17:58:50Z #15 1.484 7250K .......... .......... .......... .......... .......... 5% 92.7M 2s +2024-04-11T17:58:50Z #15 1.485 7300K .......... .......... .......... .......... .......... 5% 174M 2s +2024-04-11T17:58:50Z #15 1.485 7350K .......... .......... .......... .......... .......... 5% 65.1M 2s +2024-04-11T17:58:50Z #15 1.485 7400K .......... .......... .......... .......... .......... 5% 84.4M 2s +2024-04-11T17:58:50Z #15 1.486 7450K .......... .......... .......... .......... .......... 5% 105M 2s +2024-04-11T17:58:50Z #15 1.487 7500K .......... .......... .......... .......... .......... 5% 71.3M 2s +2024-04-11T17:58:50Z #15 1.488 7550K .......... .......... .......... .......... .......... 5% 99.9M 2s +2024-04-11T17:58:50Z #15 1.488 7600K .......... .......... .......... .......... .......... 6% 94.5M 2s +2024-04-11T17:58:50Z #15 1.488 7650K .......... .......... .......... .......... .......... 6% 86.1M 2s +2024-04-11T17:58:50Z #15 1.489 7700K .......... .......... .......... .......... .......... 6% 83.8M 2s +2024-04-11T17:58:50Z #15 1.490 7750K .......... .......... .......... .......... .......... 6% 125M 2s +2024-04-11T17:58:50Z #15 1.490 7800K .......... .......... .......... .......... .......... 6% 69.7M 2s +2024-04-11T17:58:50Z #15 1.491 7850K .......... .......... .......... .......... .......... 6% 146M 2s +2024-04-11T17:58:50Z #15 1.491 7900K .......... .......... .......... .......... .......... 6% 84.9M 2s +2024-04-11T17:58:50Z #15 1.492 7950K .......... .......... .......... .......... .......... 6% 151M 2s +2024-04-11T17:58:50Z #15 1.492 8000K .......... .......... .......... .......... .......... 6% 88.7M 2s +2024-04-11T17:58:50Z #15 1.493 8050K .......... .......... .......... .......... .......... 6% 116M 2s +2024-04-11T17:58:50Z #15 1.493 8100K .......... .......... .......... .......... .......... 6% 84.7M 2s +2024-04-11T17:58:50Z #15 1.494 8150K .......... .......... .......... .......... .......... 6% 100M 2s +2024-04-11T17:58:50Z #15 1.494 8200K .......... .......... .......... .......... .......... 6% 91.3M 2s +2024-04-11T17:58:50Z #15 1.495 8250K .......... .......... .......... .......... .......... 6% 78.5M 2s +2024-04-11T17:58:50Z #15 1.495 8300K .......... .......... .......... .......... .......... 6% 97.3M 2s +2024-04-11T17:58:50Z #15 1.495 8350K .......... .......... .......... .......... .......... 6% 112M 2s +2024-04-11T17:58:50Z #15 1.496 8400K .......... .......... .......... .......... .......... 6% 159M 2s +2024-04-11T17:58:50Z #15 1.496 8450K .......... .......... .......... .......... .......... 6% 78.4M 2s +2024-04-11T17:58:50Z #15 1.497 8500K .......... .......... .......... .......... .......... 6% 123M 2s +2024-04-11T17:58:50Z #15 1.497 8550K .......... .......... .......... .......... .......... 6% 75.3M 2s +2024-04-11T17:58:50Z #15 1.498 8600K .......... .......... .......... .......... .......... 6% 63.3M 2s +2024-04-11T17:58:50Z #15 1.499 8650K .......... .......... .......... .......... .......... 6% 102M 2s +2024-04-11T17:58:50Z #15 1.499 8700K .......... .......... .......... .......... .......... 6% 73.3M 2s +2024-04-11T17:58:50Z #15 1.500 8750K .......... .......... .......... .......... .......... 6% 88.1M 2s +2024-04-11T17:58:50Z #15 1.500 8800K .......... .......... .......... .......... .......... 6% 62.8M 2s +2024-04-11T17:58:50Z #15 1.501 8850K .......... .......... .......... .......... .......... 7% 101M 2s +2024-04-11T17:58:50Z #15 1.501 8900K .......... .......... .......... .......... .......... 7% 85.7M 2s +2024-04-11T17:58:50Z #15 1.502 8950K .......... .......... .......... .......... .......... 7% 68.9M 2s +2024-04-11T17:58:50Z #15 1.504 9000K .......... .......... .......... .......... .......... 7% 146M 2s +2024-04-11T17:58:50Z #15 1.504 9050K .......... .......... .......... .......... .......... 7% 93.4M 2s +2024-04-11T17:58:50Z #15 1.504 9100K .......... .......... .......... .......... .......... 7% 85.3M 2s +2024-04-11T17:58:50Z #15 1.504 9150K .......... .......... .......... .......... .......... 7% 88.4M 2s +2024-04-11T17:58:50Z #15 1.505 9200K .......... .......... .......... .......... .......... 7% 68.1M 2s +2024-04-11T17:58:50Z #15 1.506 9250K .......... .......... .......... .......... .......... 7% 144M 2s +2024-04-11T17:58:50Z #15 1.506 9300K .......... .......... .......... .......... .......... 7% 107M 2s +2024-04-11T17:58:50Z #15 1.506 9350K .......... .......... .......... .......... .......... 7% 88.8M 2s +2024-04-11T17:58:50Z #15 1.507 9400K .......... .......... .......... .......... .......... 7% 80.5M 2s +2024-04-11T17:58:50Z #15 1.508 9450K .......... .......... .......... .......... .......... 7% 71.5M 2s +2024-04-11T17:58:50Z #15 1.508 9500K .......... .......... .......... .......... .......... 7% 125M 2s +2024-04-11T17:58:50Z #15 1.508 9550K .......... .......... .......... .......... .......... 7% 72.8M 2s +2024-04-11T17:58:50Z #15 1.515 9600K .......... .......... .......... .......... .......... 7% 144M 2s +2024-04-11T17:58:50Z #15 1.515 9650K .......... .......... .......... .......... .......... 7% 95.5M 2s +2024-04-11T17:58:50Z #15 1.515 9700K .......... .......... .......... .......... .......... 7% 117M 2s +2024-04-11T17:58:50Z #15 1.515 9750K .......... .......... .......... .......... .......... 7% 92.9M 2s +2024-04-11T17:58:50Z #15 1.515 9800K .......... .......... .......... .......... .......... 7% 112M 2s +2024-04-11T17:58:50Z #15 1.515 9850K .......... .......... .......... .......... .......... 7% 95.7M 2s +2024-04-11T17:58:50Z #15 1.515 9900K .......... .......... .......... .......... .......... 7% 136M 2s +2024-04-11T17:58:50Z #15 1.515 9950K .......... .......... .......... .......... .......... 7% 126M 2s +2024-04-11T17:58:50Z #15 1.515 10000K .......... .......... .......... .......... .......... 7% 99.7M 2s +2024-04-11T17:58:50Z #15 1.515 10050K .......... .......... .......... .......... .......... 7% 125M 2s +2024-04-11T17:58:50Z #15 1.515 10100K .......... .......... .......... .......... .......... 8% 70.5M 2s +2024-04-11T17:58:50Z #15 1.515 10150K .......... .......... .......... .......... .......... 8% 105M 2s +2024-04-11T17:58:50Z #15 1.515 10200K .......... .......... .......... .......... .......... 8% 59.4M 2s +2024-04-11T17:58:50Z #15 1.517 10250K .......... .......... .......... .......... .......... 8% 90.3M 2s +2024-04-11T17:58:50Z #15 1.517 10300K .......... .......... .......... .......... .......... 8% 111M 2s +2024-04-11T17:58:50Z #15 1.517 10350K .......... .......... .......... .......... .......... 8% 62.7M 2s +2024-04-11T17:58:50Z #15 1.518 10400K .......... .......... .......... .......... .......... 8% 88.5M 2s +2024-04-11T17:58:50Z #15 1.518 10450K .......... .......... .......... .......... .......... 8% 45.3M 2s +2024-04-11T17:58:50Z #15 1.519 10500K .......... .......... .......... .......... .......... 8% 114M 2s +2024-04-11T17:58:50Z #15 1.519 10550K .......... .......... .......... .......... .......... 8% 127M 2s +2024-04-11T17:58:50Z #15 1.520 10600K .......... .......... .......... .......... .......... 8% 61.7M 2s +2024-04-11T17:58:50Z #15 1.520 10650K .......... .......... .......... .......... .......... 8% 132M 2s +2024-04-11T17:58:50Z #15 1.521 10700K .......... .......... .......... .......... .......... 8% 74.2M 2s +2024-04-11T17:58:50Z #15 1.521 10750K .......... .......... .......... .......... .......... 8% 92.6M 2s +2024-04-11T17:58:50Z #15 1.522 10800K .......... .......... .......... .......... .......... 8% 120M 2s +2024-04-11T17:58:50Z #15 1.522 10850K .......... .......... .......... .......... .......... 8% 127M 2s +2024-04-11T17:58:50Z #15 1.523 10900K .......... .......... .......... .......... .......... 8% 72.9M 2s +2024-04-11T17:58:50Z #15 1.524 10950K .......... .......... .......... .......... .......... 8% 90.5M 2s +2024-04-11T17:58:50Z #15 1.525 11000K .......... .......... .......... .......... .......... 8% 140M 2s +2024-04-11T17:58:50Z #15 1.525 11050K .......... .......... .......... .......... .......... 8% 56.8M 2s +2024-04-11T17:58:50Z #15 1.526 11100K .......... .......... .......... .......... .......... 8% 127M 2s +2024-04-11T17:58:50Z #15 1.526 11150K .......... .......... .......... .......... .......... 8% 74.2M 2s +2024-04-11T17:58:50Z #15 1.526 11200K .......... .......... .......... .......... .......... 8% 45.6M 2s +2024-04-11T17:58:50Z #15 1.530 11250K .......... .......... .......... .......... .......... 8% 104M 2s +2024-04-11T17:58:50Z #15 1.530 11300K .......... .......... .......... .......... .......... 8% 180M 2s +2024-04-11T17:58:50Z #15 1.530 11350K .......... .......... .......... .......... .......... 8% 152M 2s +2024-04-11T17:58:50Z #15 1.530 11400K .......... .......... .......... .......... .......... 9% 102M 2s +2024-04-11T17:58:50Z #15 1.530 11450K .......... .......... .......... .......... .......... 9% 79.7M 2s +2024-04-11T17:58:50Z #15 1.530 11500K .......... .......... .......... .......... .......... 9% 76.9M 2s +2024-04-11T17:58:50Z #15 1.531 11550K .......... .......... .......... .......... .......... 9% 116M 2s +2024-04-11T17:58:50Z #15 1.531 11600K .......... .......... .......... .......... .......... 9% 72.7M 2s +2024-04-11T17:58:50Z #15 1.531 11650K .......... .......... .......... .......... .......... 9% 85.7M 2s +2024-04-11T17:58:50Z #15 1.532 11700K .......... .......... .......... .......... .......... 9% 87.2M 2s +2024-04-11T17:58:50Z #15 1.532 11750K .......... .......... .......... .......... .......... 9% 89.9M 2s +2024-04-11T17:58:50Z #15 1.533 11800K .......... .......... .......... .......... .......... 9% 113M 2s +2024-04-11T17:58:50Z #15 1.534 11850K .......... .......... .......... .......... .......... 9% 75.5M 2s +2024-04-11T17:58:50Z #15 1.534 11900K .......... .......... .......... .......... .......... 9% 123M 2s +2024-04-11T17:58:50Z #15 1.534 11950K .......... .......... .......... .......... .......... 9% 103M 2s +2024-04-11T17:58:50Z #15 1.535 12000K .......... .......... .......... .......... .......... 9% 67.0M 2s +2024-04-11T17:58:50Z #15 1.536 12050K .......... .......... .......... .......... .......... 9% 87.7M 2s +2024-04-11T17:58:50Z #15 1.536 12100K .......... .......... .......... .......... .......... 9% 74.6M 2s +2024-04-11T17:58:50Z #15 1.537 12150K .......... .......... .......... .......... .......... 9% 96.6M 2s +2024-04-11T17:58:50Z #15 1.537 12200K .......... .......... .......... .......... .......... 9% 72.6M 2s +2024-04-11T17:58:50Z #15 1.538 12250K .......... .......... .......... .......... .......... 9% 84.4M 2s +2024-04-11T17:58:50Z #15 1.539 12300K .......... .......... .......... .......... .......... 9% 66.6M 2s +2024-04-11T17:58:50Z #15 1.539 12350K .......... .......... .......... .......... .......... 9% 59.9M 2s +2024-04-11T17:58:50Z #15 1.540 12400K .......... .......... .......... .......... .......... 9% 93.6M 2s +2024-04-11T17:58:50Z #15 1.540 12450K .......... .......... .......... .......... .......... 9% 104M 2s +2024-04-11T17:58:50Z #15 1.541 12500K .......... .......... .......... .......... .......... 9% 129M 2s +2024-04-11T17:58:50Z #15 1.541 12550K .......... .......... .......... .......... .......... 9% 69.7M 2s +2024-04-11T17:58:50Z #15 1.542 12600K .......... .......... .......... .......... .......... 9% 79.7M 2s +2024-04-11T17:58:50Z #15 1.543 12650K .......... .......... .......... .......... .......... 10% 104M 2s +2024-04-11T17:58:50Z #15 1.543 12700K .......... .......... .......... .......... .......... 10% 98.6M 2s +2024-04-11T17:58:50Z #15 1.544 12750K .......... .......... .......... .......... .......... 10% 114M 2s +2024-04-11T17:58:50Z #15 1.544 12800K .......... .......... .......... .......... .......... 10% 85.8M 2s +2024-04-11T17:58:50Z #15 1.545 12850K .......... .......... .......... .......... .......... 10% 69.3M 2s +2024-04-11T17:58:50Z #15 1.545 12900K .......... .......... .......... .......... .......... 10% 123M 2s +2024-04-11T17:58:50Z #15 1.547 12950K .......... .......... .......... .......... .......... 10% 72.2M 2s +2024-04-11T17:58:50Z #15 1.547 13000K .......... .......... .......... .......... .......... 10% 74.5M 2s +2024-04-11T17:58:50Z #15 1.547 13050K .......... .......... .......... .......... .......... 10% 110M 2s +2024-04-11T17:58:50Z #15 1.548 13100K .......... .......... .......... .......... .......... 10% 86.1M 2s +2024-04-11T17:58:50Z #15 1.548 13150K .......... .......... .......... .......... .......... 10% 87.4M 2s +2024-04-11T17:58:50Z #15 1.550 13200K .......... .......... .......... .......... .......... 10% 152M 2s +2024-04-11T17:58:50Z #15 1.550 13250K .......... .......... .......... .......... .......... 10% 157M 2s +2024-04-11T17:58:50Z #15 1.550 13300K .......... .......... .......... .......... .......... 10% 106M 2s +2024-04-11T17:58:50Z #15 1.550 13350K .......... .......... .......... .......... .......... 10% 69.5M 2s +2024-04-11T17:58:50Z #15 1.550 13400K .......... .......... .......... .......... .......... 10% 99.6M 2s +2024-04-11T17:58:50Z #15 1.551 13450K .......... .......... .......... .......... .......... 10% 65.4M 2s +2024-04-11T17:58:50Z #15 1.552 13500K .......... .......... .......... .......... .......... 10% 151M 2s +2024-04-11T17:58:50Z #15 1.552 13550K .......... .......... .......... .......... .......... 10% 80.5M 2s +2024-04-11T17:58:50Z #15 1.553 13600K .......... .......... .......... .......... .......... 10% 128M 2s +2024-04-11T17:58:50Z #15 1.553 13650K .......... .......... .......... .......... .......... 10% 71.0M 2s +2024-04-11T17:58:50Z #15 1.558 13700K .......... .......... .......... .......... .......... 10% 129M 2s +2024-04-11T17:58:50Z #15 1.558 13750K .......... .......... .......... .......... .......... 10% 118M 2s +2024-04-11T17:58:50Z #15 1.558 13800K .......... .......... .......... .......... .......... 10% 109M 2s +2024-04-11T17:58:50Z #15 1.558 13850K .......... .......... .......... .......... .......... 10% 92.9M 1s +2024-04-11T17:58:50Z #15 1.558 13900K .......... .......... .......... .......... .......... 11% 104M 1s +2024-04-11T17:58:50Z #15 1.558 13950K .......... .......... .......... .......... .......... 11% 152M 1s +2024-04-11T17:58:50Z #15 1.558 14000K .......... .......... .......... .......... .......... 11% 115M 1s +2024-04-11T17:58:50Z #15 1.558 14050K .......... .......... .......... .......... .......... 11% 172M 1s +2024-04-11T17:58:50Z #15 1.558 14100K .......... .......... .......... .......... .......... 11% 119M 1s +2024-04-11T17:58:50Z #15 1.558 14150K .......... .......... .......... .......... .......... 11% 70.5M 1s +2024-04-11T17:58:50Z #15 1.559 14200K .......... .......... .......... .......... .......... 11% 68.7M 1s +2024-04-11T17:58:50Z #15 1.559 14250K .......... .......... .......... .......... .......... 11% 93.7M 1s +2024-04-11T17:58:50Z #15 1.559 14300K .......... .......... .......... .......... .......... 11% 118M 1s +2024-04-11T17:58:50Z #15 1.560 14350K .......... .......... .......... .......... .......... 11% 90.9M 1s +2024-04-11T17:58:50Z #15 1.560 14400K .......... .......... .......... .......... .......... 11% 59.5M 1s +2024-04-11T17:58:50Z #15 1.561 14450K .......... .......... .......... .......... .......... 11% 132M 1s +2024-04-11T17:58:50Z #15 1.561 14500K .......... .......... .......... .......... .......... 11% 88.9M 1s +2024-04-11T17:58:50Z #15 1.562 14550K .......... .......... .......... .......... .......... 11% 110M 1s +2024-04-11T17:58:50Z #15 1.562 14600K .......... .......... .......... .......... .......... 11% 64.5M 1s +2024-04-11T17:58:50Z #15 1.563 14650K .......... .......... .......... .......... .......... 11% 84.5M 1s +2024-04-11T17:58:50Z #15 1.564 14700K .......... .......... .......... .......... .......... 11% 90.9M 1s +2024-04-11T17:58:50Z #15 1.564 14750K .......... .......... .......... .......... .......... 11% 108M 1s +2024-04-11T17:58:50Z #15 1.565 14800K .......... .......... .......... .......... .......... 11% 75.3M 1s +2024-04-11T17:58:50Z #15 1.566 14850K .......... .......... .......... .......... .......... 11% 103M 1s +2024-04-11T17:58:50Z #15 1.566 14900K .......... .......... .......... .......... .......... 11% 88.7M 1s +2024-04-11T17:58:50Z #15 1.566 14950K .......... .......... .......... .......... .......... 11% 109M 1s +2024-04-11T17:58:50Z #15 1.567 15000K .......... .......... .......... .......... .......... 11% 82.1M 1s +2024-04-11T17:58:50Z #15 1.568 15050K .......... .......... .......... .......... .......... 11% 88.8M 1s +2024-04-11T17:58:50Z #15 1.568 15100K .......... .......... .......... .......... .......... 11% 69.2M 1s +2024-04-11T17:58:50Z #15 1.569 15150K .......... .......... .......... .......... .......... 11% 77.6M 1s +2024-04-11T17:58:50Z #15 1.570 15200K .......... .......... .......... .......... .......... 12% 95.9M 1s +2024-04-11T17:58:50Z #15 1.570 15250K .......... .......... .......... .......... .......... 12% 158M 1s +2024-04-11T17:58:50Z #15 1.570 15300K .......... .......... .......... .......... .......... 12% 84.3M 1s +2024-04-11T17:58:50Z #15 1.571 15350K .......... .......... .......... .......... .......... 12% 88.7M 1s +2024-04-11T17:58:50Z #15 1.572 15400K .......... .......... .......... .......... .......... 12% 51.7M 1s +2024-04-11T17:58:50Z #15 1.572 15450K .......... .......... .......... .......... .......... 12% 64.2M 1s +2024-04-11T17:58:50Z #15 1.574 15500K .......... .......... .......... .......... .......... 12% 123M 1s +2024-04-11T17:58:50Z #15 1.574 15550K .......... .......... .......... .......... .......... 12% 82.4M 1s +2024-04-11T17:58:50Z #15 1.575 15600K .......... .......... .......... .......... .......... 12% 65.4M 1s +2024-04-11T17:58:50Z #15 1.575 15650K .......... .......... .......... .......... .......... 12% 92.8M 1s +2024-04-11T17:58:50Z #15 1.575 15700K .......... .......... .......... .......... .......... 12% 76.7M 1s +2024-04-11T17:58:50Z #15 1.576 15750K .......... .......... .......... .......... .......... 12% 77.4M 1s +2024-04-11T17:58:50Z #15 1.577 15800K .......... .......... .......... .......... .......... 12% 133M 1s +2024-04-11T17:58:50Z #15 1.577 15850K .......... .......... .......... .......... .......... 12% 94.7M 1s +2024-04-11T17:58:50Z #15 1.578 15900K .......... .......... .......... .......... .......... 12% 121M 1s +2024-04-11T17:58:50Z #15 1.578 15950K .......... .......... .......... .......... .......... 12% 57.5M 1s +2024-04-11T17:58:50Z #15 1.579 16000K .......... .......... .......... .......... .......... 12% 133M 1s +2024-04-11T17:58:50Z #15 1.579 16050K .......... .......... .......... .......... .......... 12% 76.7M 1s +2024-04-11T17:58:50Z #15 1.580 16100K .......... .......... .......... .......... .......... 12% 96.3M 1s +2024-04-11T17:58:50Z #15 1.580 16150K .......... .......... .......... .......... .......... 12% 77.2M 1s +2024-04-11T17:58:50Z #15 1.581 16200K .......... .......... .......... .......... .......... 12% 93.3M 1s +2024-04-11T17:58:50Z #15 1.581 16250K .......... .......... .......... .......... .......... 12% 84.6M 1s +2024-04-11T17:58:50Z #15 1.586 16300K .......... .......... .......... .......... .......... 12% 84.1M 1s +2024-04-11T17:58:50Z #15 1.586 16350K .......... .......... .......... .......... .......... 12% 100M 1s +2024-04-11T17:58:50Z #15 1.586 16400K .......... .......... .......... .......... .......... 12% 157M 1s +2024-04-11T17:58:50Z #15 1.586 16450K .......... .......... .......... .......... .......... 13% 97.2M 1s +2024-04-11T17:58:50Z #15 1.586 16500K .......... .......... .......... .......... .......... 13% 121M 1s +2024-04-11T17:58:50Z #15 1.586 16550K .......... .......... .......... .......... .......... 13% 86.5M 1s +2024-04-11T17:58:50Z #15 1.586 16600K .......... .......... .......... .......... .......... 13% 122M 1s +2024-04-11T17:58:50Z #15 1.586 16650K .......... .......... .......... .......... .......... 13% 115M 1s +2024-04-11T17:58:50Z #15 1.586 16700K .......... .......... .......... .......... .......... 13% 47.4M 1s +2024-04-11T17:58:50Z #15 1.587 16750K .......... .......... .......... .......... .......... 13% 100M 1s +2024-04-11T17:58:50Z #15 1.587 16800K .......... .......... .......... .......... .......... 13% 121M 1s +2024-04-11T17:58:50Z #15 1.587 16850K .......... .......... .......... .......... .......... 13% 73.7M 1s +2024-04-11T17:58:50Z #15 1.588 16900K .......... .......... .......... .......... .......... 13% 82.1M 1s +2024-04-11T17:58:50Z #15 1.589 16950K .......... .......... .......... .......... .......... 13% 103M 1s +2024-04-11T17:58:50Z #15 1.589 17000K .......... .......... .......... .......... .......... 13% 105M 1s +2024-04-11T17:58:50Z #15 1.590 17050K .......... .......... .......... .......... .......... 13% 10.8M 1s +2024-04-11T17:58:50Z #15 1.596 17100K .......... .......... .......... .......... .......... 13% 111M 1s +2024-04-11T17:58:50Z #15 1.596 17150K .......... .......... .......... .......... .......... 13% 106M 1s +2024-04-11T17:58:50Z #15 1.596 17200K .......... .......... .......... .......... .......... 13% 119M 1s +2024-04-11T17:58:50Z #15 1.596 17250K .......... .......... .......... .......... .......... 13% 141M 1s +2024-04-11T17:58:50Z #15 1.596 17300K .......... .......... .......... .......... .......... 13% 125M 1s +2024-04-11T17:58:50Z #15 1.596 17350K .......... .......... .......... .......... .......... 13% 23.1M 1s +2024-04-11T17:58:50Z #15 1.598 17400K .......... .......... .......... .......... .......... 13% 55.1M 1s +2024-04-11T17:58:50Z #15 1.602 17450K .......... .......... .......... .......... .......... 13% 73.0M 1s +2024-04-11T17:58:50Z #15 1.602 17500K .......... .......... .......... .......... .......... 13% 154M 1s +2024-04-11T17:58:50Z #15 1.602 17550K .......... .......... .......... .......... .......... 13% 148M 1s +2024-04-11T17:58:50Z #15 1.602 17600K .......... .......... .......... .......... .......... 13% 155M 1s +2024-04-11T17:58:50Z #15 1.602 17650K .......... .......... .......... .......... .......... 13% 150M 1s +2024-04-11T17:58:50Z #15 1.602 17700K .......... .......... .......... .......... .......... 14% 134M 1s +2024-04-11T17:58:50Z #15 1.602 17750K .......... .......... .......... .......... .......... 14% 21.0M 1s +2024-04-11T17:58:50Z #15 1.604 17800K .......... .......... .......... .......... .......... 14% 30.0M 1s +2024-04-11T17:58:50Z #15 1.606 17850K .......... .......... .......... .......... .......... 14% 24.5M 1s +2024-04-11T17:58:50Z #15 1.610 17900K .......... .......... .......... .......... .......... 14% 141M 1s +2024-04-11T17:58:50Z #15 1.610 17950K .......... .......... .......... .......... .......... 14% 134M 1s +2024-04-11T17:58:50Z #15 1.610 18000K .......... .......... .......... .......... .......... 14% 160M 1s +2024-04-11T17:58:50Z #15 1.610 18050K .......... .......... .......... .......... .......... 14% 166M 1s +2024-04-11T17:58:50Z #15 1.610 18100K .......... .......... .......... .......... .......... 14% 144M 1s +2024-04-11T17:58:50Z #15 1.610 18150K .......... .......... .......... .......... .......... 14% 140M 1s +2024-04-11T17:58:50Z #15 1.610 18200K .......... .......... .......... .......... .......... 14% 130M 1s +2024-04-11T17:58:50Z #15 1.610 18250K .......... .......... .......... .......... .......... 14% 12.0M 1s +2024-04-11T17:58:50Z #15 1.614 18300K .......... .......... .......... .......... .......... 14% 67.6M 1s +2024-04-11T17:58:50Z #15 1.615 18350K .......... .......... .......... .......... .......... 14% 65.1M 1s +2024-04-11T17:58:50Z #15 1.616 18400K .......... .......... .......... .......... .......... 14% 26.5M 1s +2024-04-11T17:58:50Z #15 1.617 18450K .......... .......... .......... .......... .......... 14% 40.6M 1s +2024-04-11T17:58:50Z #15 1.618 18500K .......... .......... .......... .......... .......... 14% 25.1M 1s +2024-04-11T17:58:50Z #15 1.626 18550K .......... .......... .......... .......... .......... 14% 127M 1s +2024-04-11T17:58:50Z #15 1.626 18600K .......... .......... .......... .......... .......... 14% 133M 1s +2024-04-11T17:58:50Z #15 1.626 18650K .......... .......... .......... .......... .......... 14% 160M 1s +2024-04-11T17:58:50Z #15 1.626 18700K .......... .......... .......... .......... .......... 14% 148M 1s +2024-04-11T17:58:50Z #15 1.626 18750K .......... .......... .......... .......... .......... 14% 157M 1s +2024-04-11T17:58:50Z #15 1.626 18800K .......... .......... .......... .......... .......... 14% 141M 1s +2024-04-11T17:58:50Z #15 1.626 18850K .......... .......... .......... .......... .......... 14% 152M 1s +2024-04-11T17:58:50Z #15 1.626 18900K .......... .......... .......... .......... .......... 14% 167M 1s +2024-04-11T17:58:50Z #15 1.626 18950K .......... .......... .......... .......... .......... 14% 119M 1s +2024-04-11T17:58:50Z #15 1.626 19000K .......... .......... .......... .......... .......... 15% 137M 1s +2024-04-11T17:58:50Z #15 1.626 19050K .......... .......... .......... .......... .......... 15% 164M 1s +2024-04-11T17:58:50Z #15 1.626 19100K .......... .......... .......... .......... .......... 15% 135M 1s +2024-04-11T17:58:50Z #15 1.626 19150K .......... .......... .......... .......... .......... 15% 170M 1s +2024-04-11T17:58:50Z #15 1.626 19200K .......... .......... .......... .......... .......... 15% 146M 1s +2024-04-11T17:58:50Z #15 1.626 19250K .......... .......... .......... .......... .......... 15% 124M 1s +2024-04-11T17:58:50Z #15 1.626 19300K .......... .......... .......... .......... .......... 15% 8.51M 1s +2024-04-11T17:58:50Z #15 1.631 19350K .......... .......... .......... .......... .......... 15% 30.9M 1s +2024-04-11T17:58:50Z #15 1.633 19400K .......... .......... .......... .......... .......... 15% 27.7M 1s +2024-04-11T17:58:50Z #15 1.635 19450K .......... .......... .......... .......... .......... 15% 27.6M 1s +2024-04-11T17:58:50Z #15 1.636 19500K .......... .......... .......... .......... .......... 15% 25.9M 1s +2024-04-11T17:58:50Z #15 1.639 19550K .......... .......... .......... .......... .......... 15% 43.9M 1s +2024-04-11T17:58:50Z #15 1.642 19600K .......... .......... .......... .......... .......... 15% 150M 1s +2024-04-11T17:58:50Z #15 1.642 19650K .......... .......... .......... .......... .......... 15% 163M 1s +2024-04-11T17:58:50Z #15 1.642 19700K .......... .......... .......... .......... .......... 15% 153M 1s +2024-04-11T17:58:50Z #15 1.642 19750K .......... .......... .......... .......... .......... 15% 124M 1s +2024-04-11T17:58:50Z #15 1.642 19800K .......... .......... .......... .......... .......... 15% 168M 1s +2024-04-11T17:58:50Z #15 1.642 19850K .......... .......... .......... .......... .......... 15% 155M 1s +2024-04-11T17:58:50Z #15 1.642 19900K .......... .......... .......... .......... .......... 15% 131M 1s +2024-04-11T17:58:50Z #15 1.642 19950K .......... .......... .......... .......... .......... 15% 8.93M 1s +2024-04-11T17:58:50Z #15 1.647 20000K .......... .......... .......... .......... .......... 15% 41.3M 1s +2024-04-11T17:58:50Z #15 1.649 20050K .......... .......... .......... .......... .......... 15% 129M 1s +2024-04-11T17:58:50Z #15 1.649 20100K .......... .......... .......... .......... .......... 15% 164M 1s +2024-04-11T17:58:50Z #15 1.649 20150K .......... .......... .......... .......... .......... 15% 125M 1s +2024-04-11T17:58:50Z #15 1.649 20200K .......... .......... .......... .......... .......... 15% 157M 1s +2024-04-11T17:58:50Z #15 1.650 20250K .......... .......... .......... .......... .......... 16% 135M 1s +2024-04-11T17:58:50Z #15 1.650 20300K .......... .......... .......... .......... .......... 16% 165M 1s +2024-04-11T17:58:50Z #15 1.650 20350K .......... .......... .......... .......... .......... 16% 143M 1s +2024-04-11T17:58:50Z #15 1.651 20400K .......... .......... .......... .......... .......... 16% 128M 1s +2024-04-11T17:58:50Z #15 1.651 20450K .......... .......... .......... .......... .......... 16% 162M 1s +2024-04-11T17:58:50Z #15 1.651 20500K .......... .......... .......... .......... .......... 16% 98.2M 1s +2024-04-11T17:58:50Z #15 1.652 20550K .......... .......... .......... .......... .......... 16% 130M 1s +2024-04-11T17:58:50Z #15 1.652 20600K .......... .......... .......... .......... .......... 16% 159M 1s +2024-04-11T17:58:50Z #15 1.653 20650K .......... .......... .......... .......... .......... 16% 168M 1s +2024-04-11T17:58:50Z #15 1.653 20700K .......... .......... .......... .......... .......... 16% 132M 1s +2024-04-11T17:58:50Z #15 1.653 20750K .......... .......... .......... .......... .......... 16% 153M 1s +2024-04-11T17:58:50Z #15 1.654 20800K .......... .......... .......... .......... .......... 16% 122M 1s +2024-04-11T17:58:50Z #15 1.654 20850K .......... .......... .......... .......... .......... 16% 170M 1s +2024-04-11T17:58:50Z #15 1.654 20900K .......... .......... .......... .......... .......... 16% 156M 1s +2024-04-11T17:58:50Z #15 1.654 20950K .......... .......... .......... .......... .......... 16% 123M 1s +2024-04-11T17:58:50Z #15 1.655 21000K .......... .......... .......... .......... .......... 16% 150M 1s +2024-04-11T17:58:50Z #15 1.655 21050K .......... .......... .......... .......... .......... 16% 159M 1s +2024-04-11T17:58:50Z #15 1.656 21100K .......... .......... .......... .......... .......... 16% 140M 1s +2024-04-11T17:58:50Z #15 1.656 21150K .......... .......... .......... .......... .......... 16% 154M 1s +2024-04-11T17:58:50Z #15 1.656 21200K .......... .......... .......... .......... .......... 16% 155M 1s +2024-04-11T17:58:50Z #15 1.657 21250K .......... .......... .......... .......... .......... 16% 156M 1s +2024-04-11T17:58:50Z #15 1.657 21300K .......... .......... .......... .......... .......... 16% 35.8M 1s +2024-04-11T17:58:50Z #15 1.658 21350K .......... .......... .......... .......... .......... 16% 124M 1s +2024-04-11T17:58:50Z #15 1.659 21400K .......... .......... .......... .......... .......... 16% 117M 1s +2024-04-11T17:58:50Z #15 1.659 21450K .......... .......... .......... .......... .......... 16% 124M 1s +2024-04-11T17:58:50Z #15 1.659 21500K .......... .......... .......... .......... .......... 16% 106M 1s +2024-04-11T17:58:50Z #15 1.660 21550K .......... .......... .......... .......... .......... 17% 133M 1s +2024-04-11T17:58:50Z #15 1.660 21600K .......... .......... .......... .......... .......... 17% 135M 1s +2024-04-11T17:58:50Z #15 1.661 21650K .......... .......... .......... .......... .......... 17% 146M 1s +2024-04-11T17:58:50Z #15 1.661 21700K .......... .......... .......... .......... .......... 17% 124M 1s +2024-04-11T17:58:50Z #15 1.661 21750K .......... .......... .......... .......... .......... 17% 164M 1s +2024-04-11T17:58:50Z #15 1.662 21800K .......... .......... .......... .......... .......... 17% 59.0M 1s +2024-04-11T17:58:50Z #15 1.662 21850K .......... .......... .......... .......... .......... 17% 134M 1s +2024-04-11T17:58:50Z #15 1.663 21900K .......... .......... .......... .......... .......... 17% 129M 1s +2024-04-11T17:58:50Z #15 1.663 21950K .......... .......... .......... .......... .......... 17% 115M 1s +2024-04-11T17:58:50Z #15 1.664 22000K .......... .......... .......... .......... .......... 17% 142M 1s +2024-04-11T17:58:50Z #15 1.664 22050K .......... .......... .......... .......... .......... 17% 121M 1s +2024-04-11T17:58:50Z #15 1.664 22100K .......... .......... .......... .......... .......... 17% 109M 1s +2024-04-11T17:58:50Z #15 1.665 22150K .......... .......... .......... .......... .......... 17% 129M 1s +2024-04-11T17:58:50Z #15 1.666 22200K .......... .......... .......... .......... .......... 17% 151M 1s +2024-04-11T17:58:50Z #15 1.666 22250K .......... .......... .......... .......... .......... 17% 93.3M 1s +2024-04-11T17:58:50Z #15 1.666 22300K .......... .......... .......... .......... .......... 17% 99.1M 1s +2024-04-11T17:58:50Z #15 1.667 22350K .......... .......... .......... .......... .......... 17% 115M 1s +2024-04-11T17:58:50Z #15 1.667 22400K .......... .......... .......... .......... .......... 17% 170M 1s +2024-04-11T17:58:50Z #15 1.667 22450K .......... .......... .......... .......... .......... 17% 108M 1s +2024-04-11T17:58:50Z #15 1.668 22500K .......... .......... .......... .......... .......... 17% 155M 1s +2024-04-11T17:58:50Z #15 1.668 22550K .......... .......... .......... .......... .......... 17% 159M 1s +2024-04-11T17:58:50Z #15 1.668 22600K .......... .......... .......... .......... .......... 17% 162M 1s +2024-04-11T17:58:50Z #15 1.669 22650K .......... .......... .......... .......... .......... 17% 140M 1s +2024-04-11T17:58:50Z #15 1.669 22700K .......... .......... .......... .......... .......... 17% 134M 1s +2024-04-11T17:58:50Z #15 1.669 22750K .......... .......... .......... .......... .......... 17% 154M 1s +2024-04-11T17:58:50Z #15 1.670 22800K .......... .......... .......... .......... .......... 18% 143M 1s +2024-04-11T17:58:50Z #15 1.670 22850K .......... .......... .......... .......... .......... 18% 163M 1s +2024-04-11T17:58:50Z #15 1.670 22900K .......... .......... .......... .......... .......... 18% 125M 1s +2024-04-11T17:58:50Z #15 1.671 22950K .......... .......... .......... .......... .......... 18% 142M 1s +2024-04-11T17:58:50Z #15 1.671 23000K .......... .......... .......... .......... .......... 18% 135M 1s +2024-04-11T17:58:50Z #15 1.671 23050K .......... .......... .......... .......... .......... 18% 128M 1s +2024-04-11T17:58:50Z #15 1.672 23100K .......... .......... .......... .......... .......... 18% 103M 1s +2024-04-11T17:58:50Z #15 1.672 23150K .......... .......... .......... .......... .......... 18% 167M 1s +2024-04-11T17:58:50Z #15 1.672 23200K .......... .......... .......... .......... .......... 18% 140M 1s +2024-04-11T17:58:50Z #15 1.673 23250K .......... .......... .......... .......... .......... 18% 156M 1s +2024-04-11T17:58:50Z #15 1.673 23300K .......... .......... .......... .......... .......... 18% 171M 1s +2024-04-11T17:58:50Z #15 1.673 23350K .......... .......... .......... .......... .......... 18% 105M 1s +2024-04-11T17:58:50Z #15 1.674 23400K .......... .......... .......... .......... .......... 18% 130M 1s +2024-04-11T17:58:50Z #15 1.675 23450K .......... .......... .......... .......... .......... 18% 112M 1s +2024-04-11T17:58:50Z #15 1.675 23500K .......... .......... .......... .......... .......... 18% 161M 1s +2024-04-11T17:58:50Z #15 1.675 23550K .......... .......... .......... .......... .......... 18% 150M 1s +2024-04-11T17:58:50Z #15 1.675 23600K .......... .......... .......... .......... .......... 18% 67.6M 1s +2024-04-11T17:58:50Z #15 1.678 23650K .......... .......... .......... .......... .......... 18% 134M 1s +2024-04-11T17:58:50Z #15 1.678 23700K .......... .......... .......... .......... .......... 18% 137M 1s +2024-04-11T17:58:50Z #15 1.678 23750K .......... .......... .......... .......... .......... 18% 126M 1s +2024-04-11T17:58:50Z #15 1.678 23800K .......... .......... .......... .......... .......... 18% 129M 1s +2024-04-11T17:58:50Z #15 1.678 23850K .......... .......... .......... .......... .......... 18% 121M 1s +2024-04-11T17:58:50Z #15 1.678 23900K .......... .......... .......... .......... .......... 18% 133M 1s +2024-04-11T17:58:50Z #15 1.678 23950K .......... .......... .......... .......... .......... 18% 101M 1s +2024-04-11T17:58:50Z #15 1.682 24000K .......... .......... .......... .......... .......... 18% 165M 1s +2024-04-11T17:58:50Z #15 1.682 24050K .......... .......... .......... .......... .......... 19% 151M 1s +2024-04-11T17:58:50Z #15 1.682 24100K .......... .......... .......... .......... .......... 19% 146M 1s +2024-04-11T17:58:50Z #15 1.682 24150K .......... .......... .......... .......... .......... 19% 158M 1s +2024-04-11T17:58:50Z #15 1.682 24200K .......... .......... .......... .......... .......... 19% 170M 1s +2024-04-11T17:58:50Z #15 1.682 24250K .......... .......... .......... .......... .......... 19% 133M 1s +2024-04-11T17:58:50Z #15 1.682 24300K .......... .......... .......... .......... .......... 19% 158M 1s +2024-04-11T17:58:50Z #15 1.682 24350K .......... .......... .......... .......... .......... 19% 153M 1s +2024-04-11T17:58:50Z #15 1.682 24400K .......... .......... .......... .......... .......... 19% 156M 1s +2024-04-11T17:58:50Z #15 1.686 24450K .......... .......... .......... .......... .......... 19% 59.2M 1s +2024-04-11T17:58:50Z #15 1.686 24500K .......... .......... .......... .......... .......... 19% 112M 1s +2024-04-11T17:58:50Z #15 1.686 24550K .......... .......... .......... .......... .......... 19% 133M 1s +2024-04-11T17:58:50Z #15 1.686 24600K .......... .......... .......... .......... .......... 19% 126M 1s +2024-04-11T17:58:50Z #15 1.686 24650K .......... .......... .......... .......... .......... 19% 134M 1s +2024-04-11T17:58:50Z #15 1.686 24700K .......... .......... .......... .......... .......... 19% 116M 1s +2024-04-11T17:58:50Z #15 1.686 24750K .......... .......... .......... .......... .......... 19% 122M 1s +2024-04-11T17:58:50Z #15 1.686 24800K .......... .......... .......... .......... .......... 19% 105M 1s +2024-04-11T17:58:50Z #15 1.686 24850K .......... .......... .......... .......... .......... 19% 161M 1s +2024-04-11T17:58:50Z #15 1.690 24900K .......... .......... .......... .......... .......... 19% 73.0M 1s +2024-04-11T17:58:50Z #15 1.690 24950K .......... .......... .......... .......... .......... 19% 132M 1s +2024-04-11T17:58:50Z #15 1.690 25000K .......... .......... .......... .......... .......... 19% 115M 1s +2024-04-11T17:58:50Z #15 1.690 25050K .......... .......... .......... .......... .......... 19% 118M 1s +2024-04-11T17:58:50Z #15 1.690 25100K .......... .......... .......... .......... .......... 19% 105M 1s +2024-04-11T17:58:50Z #15 1.690 25150K .......... .......... .......... .......... .......... 19% 114M 1s +2024-04-11T17:58:50Z #15 1.690 25200K .......... .......... .......... .......... .......... 19% 116M 1s +2024-04-11T17:58:50Z #15 1.690 25250K .......... .......... .......... .......... .......... 19% 128M 1s +2024-04-11T17:58:50Z #15 1.690 25300K .......... .......... .......... .......... .......... 19% 104M 1s +2024-04-11T17:58:50Z #15 1.690 25350K .......... .......... .......... .......... .......... 20% 87.3M 1s +2024-04-11T17:58:50Z #15 1.694 25400K .......... .......... .......... .......... .......... 20% 125M 1s +2024-04-11T17:58:50Z #15 1.694 25450K .......... .......... .......... .......... .......... 20% 133M 1s +2024-04-11T17:58:50Z #15 1.694 25500K .......... .......... .......... .......... .......... 20% 110M 1s +2024-04-11T17:58:50Z #15 1.694 25550K .......... .......... .......... .......... .......... 20% 128M 1s +2024-04-11T17:58:50Z #15 1.694 25600K .......... .......... .......... .......... .......... 20% 145M 1s +2024-04-11T17:58:50Z #15 1.694 25650K .......... .......... .......... .......... .......... 20% 97.4M 1s +2024-04-11T17:58:50Z #15 1.694 25700K .......... .......... .......... .......... .......... 20% 119M 1s +2024-04-11T17:58:50Z #15 1.694 25750K .......... .......... .......... .......... .......... 20% 113M 1s +2024-04-11T17:58:50Z #15 1.694 25800K .......... .......... .......... .......... .......... 20% 88.2M 1s +2024-04-11T17:58:50Z #15 1.695 25850K .......... .......... .......... .......... .......... 20% 117M 1s +2024-04-11T17:58:50Z #15 1.695 25900K .......... .......... .......... .......... .......... 20% 116M 1s +2024-04-11T17:58:50Z #15 1.695 25950K .......... .......... .......... .......... .......... 20% 83.2M 1s +2024-04-11T17:58:50Z #15 1.698 26000K .......... .......... .......... .......... .......... 20% 129M 1s +2024-04-11T17:58:50Z #15 1.698 26050K .......... .......... .......... .......... .......... 20% 96.6M 1s +2024-04-11T17:58:50Z #15 1.698 26100K .......... .......... .......... .......... .......... 20% 133M 1s +2024-04-11T17:58:50Z #15 1.698 26150K .......... .......... .......... .......... .......... 20% 128M 1s +2024-04-11T17:58:50Z #15 1.698 26200K .......... .......... .......... .......... .......... 20% 139M 1s +2024-04-11T17:58:50Z #15 1.698 26250K .......... .......... .......... .......... .......... 20% 62.1M 1s +2024-04-11T17:58:50Z #15 1.702 26300K .......... .......... .......... .......... .......... 20% 125M 1s +2024-04-11T17:58:50Z #15 1.702 26350K .......... .......... .......... .......... .......... 20% 123M 1s +2024-04-11T17:58:50Z #15 1.702 26400K .......... .......... .......... .......... .......... 20% 134M 1s +2024-04-11T17:58:50Z #15 1.702 26450K .......... .......... .......... .......... .......... 20% 95.9M 1s +2024-04-11T17:58:50Z #15 1.702 26500K .......... .......... .......... .......... .......... 20% 118M 1s +2024-04-11T17:58:50Z #15 1.702 26550K .......... .......... .......... .......... .......... 20% 148M 1s +2024-04-11T17:58:50Z #15 1.702 26600K .......... .......... .......... .......... .......... 21% 103M 1s +2024-04-11T17:58:50Z #15 1.702 26650K .......... .......... .......... .......... .......... 21% 103M 1s +2024-04-11T17:58:50Z #15 1.702 26700K .......... .......... .......... .......... .......... 21% 64.6M 1s +2024-04-11T17:58:50Z #15 1.706 26750K .......... .......... .......... .......... .......... 21% 113M 1s +2024-04-11T17:58:50Z #15 1.706 26800K .......... .......... .......... .......... .......... 21% 122M 1s +2024-04-11T17:58:50Z #15 1.706 26850K .......... .......... .......... .......... .......... 21% 92.0M 1s +2024-04-11T17:58:50Z #15 1.706 26900K .......... .......... .......... .......... .......... 21% 121M 1s +2024-04-11T17:58:50Z #15 1.706 26950K .......... .......... .......... .......... .......... 21% 126M 1s +2024-04-11T17:58:50Z #15 1.706 27000K .......... .......... .......... .......... .......... 21% 117M 1s +2024-04-11T17:58:50Z #15 1.706 27050K .......... .......... .......... .......... .......... 21% 115M 1s +2024-04-11T17:58:50Z #15 1.706 27100K .......... .......... .......... .......... .......... 21% 62.4M 1s +2024-04-11T17:58:50Z #15 1.710 27150K .......... .......... .......... .......... .......... 21% 97.8M 1s +2024-04-11T17:58:50Z #15 1.710 27200K .......... .......... .......... .......... .......... 21% 118M 1s +2024-04-11T17:58:50Z #15 1.710 27250K .......... .......... .......... .......... .......... 21% 114M 1s +2024-04-11T17:58:50Z #15 1.710 27300K .......... .......... .......... .......... .......... 21% 118M 1s +2024-04-11T17:58:50Z #15 1.710 27350K .......... .......... .......... .......... .......... 21% 147M 1s +2024-04-11T17:58:50Z #15 1.710 27400K .......... .......... .......... .......... .......... 21% 108M 1s +2024-04-11T17:58:50Z #15 1.710 27450K .......... .......... .......... .......... .......... 21% 113M 1s +2024-04-11T17:58:50Z #15 1.710 27500K .......... .......... .......... .......... .......... 21% 143M 1s +2024-04-11T17:58:50Z #15 1.710 27550K .......... .......... .......... .......... .......... 21% 54.6M 1s +2024-04-11T17:58:50Z #15 1.714 27600K .......... .......... .......... .......... .......... 21% 116M 1s +2024-04-11T17:58:50Z #15 1.714 27650K .......... .......... .......... .......... .......... 21% 136M 1s +2024-04-11T17:58:50Z #15 1.714 27700K .......... .......... .......... .......... .......... 21% 111M 1s +2024-04-11T17:58:50Z #15 1.714 27750K .......... .......... .......... .......... .......... 21% 101M 1s +2024-04-11T17:58:50Z #15 1.714 27800K .......... .......... .......... .......... .......... 21% 132M 1s +2024-04-11T17:58:50Z #15 1.714 27850K .......... .......... .......... .......... .......... 22% 127M 1s +2024-04-11T17:58:50Z #15 1.714 27900K .......... .......... .......... .......... .......... 22% 142M 1s +2024-04-11T17:58:50Z #15 1.714 27950K .......... .......... .......... .......... .......... 22% 103M 1s +2024-04-11T17:58:50Z #15 1.714 28000K .......... .......... .......... .......... .......... 22% 59.0M 1s +2024-04-11T17:58:50Z #15 1.718 28050K .......... .......... .......... .......... .......... 22% 124M 1s +2024-04-11T17:58:50Z #15 1.718 28100K .......... .......... .......... .......... .......... 22% 130M 1s +2024-04-11T17:58:50Z #15 1.718 28150K .......... .......... .......... .......... .......... 22% 98.3M 1s +2024-04-11T17:58:50Z #15 1.718 28200K .......... .......... .......... .......... .......... 22% 107M 1s +2024-04-11T17:58:50Z #15 1.718 28250K .......... .......... .......... .......... .......... 22% 131M 1s +2024-04-11T17:58:50Z #15 1.718 28300K .......... .......... .......... .......... .......... 22% 130M 1s +2024-04-11T17:58:50Z #15 1.718 28350K .......... .......... .......... .......... .......... 22% 113M 1s +2024-04-11T17:58:50Z #15 1.718 28400K .......... .......... .......... .......... .......... 22% 57.1M 1s +2024-04-11T17:58:50Z #15 1.722 28450K .......... .......... .......... .......... .......... 22% 106M 1s +2024-04-11T17:58:50Z #15 1.722 28500K .......... .......... .......... .......... .......... 22% 114M 1s +2024-04-11T17:58:50Z #15 1.722 28550K .......... .......... .......... .......... .......... 22% 117M 1s +2024-04-11T17:58:50Z #15 1.722 28600K .......... .......... .......... .......... .......... 22% 116M 1s +2024-04-11T17:58:50Z #15 1.722 28650K .......... .......... .......... .......... .......... 22% 120M 1s +2024-04-11T17:58:50Z #15 1.722 28700K .......... .......... .......... .......... .......... 22% 113M 1s +2024-04-11T17:58:50Z #15 1.722 28750K .......... .......... .......... .......... .......... 22% 100M 1s +2024-04-11T17:58:50Z #15 1.722 28800K .......... .......... .......... .......... .......... 22% 138M 1s +2024-04-11T17:58:50Z #15 1.722 28850K .......... .......... .......... .......... .......... 22% 59.2M 1s +2024-04-11T17:58:50Z #15 1.726 28900K .......... .......... .......... .......... .......... 22% 108M 1s +2024-04-11T17:58:50Z #15 1.726 28950K .......... .......... .......... .......... .......... 22% 129M 1s +2024-04-11T17:58:50Z #15 1.726 29000K .......... .......... .......... .......... .......... 22% 105M 1s +2024-04-11T17:58:50Z #15 1.726 29050K .......... .......... .......... .......... .......... 22% 159M 1s +2024-04-11T17:58:50Z #15 1.726 29100K .......... .......... .......... .......... .......... 22% 145M 1s +2024-04-11T17:58:50Z #15 1.726 29150K .......... .......... .......... .......... .......... 23% 110M 1s +2024-04-11T17:58:50Z #15 1.726 29200K .......... .......... .......... .......... .......... 23% 162M 1s +2024-04-11T17:58:50Z #15 1.726 29250K .......... .......... .......... .......... .......... 23% 139M 1s +2024-04-11T17:58:50Z #15 1.726 29300K .......... .......... .......... .......... .......... 23% 55.4M 1s +2024-04-11T17:58:50Z #15 1.730 29350K .......... .......... .......... .......... .......... 23% 112M 1s +2024-04-11T17:58:50Z #15 1.730 29400K .......... .......... .......... .......... .......... 23% 98.4M 1s +2024-04-11T17:58:50Z #15 1.730 29450K .......... .......... .......... .......... .......... 23% 117M 1s +2024-04-11T17:58:50Z #15 1.730 29500K .......... .......... .......... .......... .......... 23% 121M 1s +2024-04-11T17:58:50Z #15 1.730 29550K .......... .......... .......... .......... .......... 23% 131M 1s +2024-04-11T17:58:50Z #15 1.730 29600K .......... .......... .......... .......... .......... 23% 108M 1s +2024-04-11T17:58:50Z #15 1.730 29650K .......... .......... .......... .......... .......... 23% 122M 1s +2024-04-11T17:58:50Z #15 1.730 29700K .......... .......... .......... .......... .......... 23% 65.1M 1s +2024-04-11T17:58:50Z #15 1.734 29750K .......... .......... .......... .......... .......... 23% 114M 1s +2024-04-11T17:58:50Z #15 1.734 29800K .......... .......... .......... .......... .......... 23% 118M 1s +2024-04-11T17:58:50Z #15 1.734 29850K .......... .......... .......... .......... .......... 23% 135M 1s +2024-04-11T17:58:50Z #15 1.734 29900K .......... .......... .......... .......... .......... 23% 123M 1s +2024-04-11T17:58:50Z #15 1.734 29950K .......... .......... .......... .......... .......... 23% 136M 1s +2024-04-11T17:58:50Z #15 1.734 30000K .......... .......... .......... .......... .......... 23% 119M 1s +2024-04-11T17:58:50Z #15 1.734 30050K .......... .......... .......... .......... .......... 23% 134M 1s +2024-04-11T17:58:50Z #15 1.734 30100K .......... .......... .......... .......... .......... 23% 140M 1s +2024-04-11T17:58:50Z #15 1.734 30150K .......... .......... .......... .......... .......... 23% 154M 1s +2024-04-11T17:58:50Z #15 1.734 30200K .......... .......... .......... .......... .......... 23% 49.2M 1s +2024-04-11T17:58:50Z #15 1.738 30250K .......... .......... .......... .......... .......... 23% 126M 1s +2024-04-11T17:58:50Z #15 1.738 30300K .......... .......... .......... .......... .......... 23% 124M 1s +2024-04-11T17:58:50Z #15 1.738 30350K .......... .......... .......... .......... .......... 23% 118M 1s +2024-04-11T17:58:50Z #15 1.738 30400K .......... .......... .......... .......... .......... 24% 123M 1s +2024-04-11T17:58:50Z #15 1.738 30450K .......... .......... .......... .......... .......... 24% 126M 1s +2024-04-11T17:58:50Z #15 1.738 30500K .......... .......... .......... .......... .......... 24% 139M 1s +2024-04-11T17:58:50Z #15 1.738 30550K .......... .......... .......... .......... .......... 24% 117M 1s +2024-04-11T17:58:50Z #15 1.738 30600K .......... .......... .......... .......... .......... 24% 126M 1s +2024-04-11T17:58:50Z #15 1.738 30650K .......... .......... .......... .......... .......... 24% 42.7M 1s +2024-04-11T17:58:50Z #15 1.742 30700K .......... .......... .......... .......... .......... 24% 119M 1s +2024-04-11T17:58:50Z #15 1.742 30750K .......... .......... .......... .......... .......... 24% 115M 1s +2024-04-11T17:58:50Z #15 1.742 30800K .......... .......... .......... .......... .......... 24% 96.1M 1s +2024-04-11T17:58:50Z #15 1.742 30850K .......... .......... .......... .......... .......... 24% 104M 1s +2024-04-11T17:58:50Z #15 1.742 30900K .......... .......... .......... .......... .......... 24% 133M 1s +2024-04-11T17:58:50Z #15 1.742 30950K .......... .......... .......... .......... .......... 24% 121M 1s +2024-04-11T17:58:50Z #15 1.742 31000K .......... .......... .......... .......... .......... 24% 41.0M 1s +2024-04-11T17:58:50Z #15 1.743 31050K .......... .......... .......... .......... .......... 24% 42.6M 1s +2024-04-11T17:58:50Z #15 1.746 31100K .......... .......... .......... .......... .......... 24% 109M 1s +2024-04-11T17:58:50Z #15 1.746 31150K .......... .......... .......... .......... .......... 24% 123M 1s +2024-04-11T17:58:50Z #15 1.746 31200K .......... .......... .......... .......... .......... 24% 104M 1s +2024-04-11T17:58:50Z #15 1.746 31250K .......... .......... .......... .......... .......... 24% 107M 1s +2024-04-11T17:58:50Z #15 1.746 31300K .......... .......... .......... .......... .......... 24% 33.1M 1s +2024-04-11T17:58:50Z #15 1.747 31350K .......... .......... .......... .......... .......... 24% 36.9M 1s +2024-04-11T17:58:50Z #15 1.750 31400K .......... .......... .......... .......... .......... 24% 102M 1s +2024-04-11T17:58:50Z #15 1.750 31450K .......... .......... .......... .......... .......... 24% 121M 1s +2024-04-11T17:58:50Z #15 1.750 31500K .......... .......... .......... .......... .......... 24% 108M 1s +2024-04-11T17:58:50Z #15 1.750 31550K .......... .......... .......... .......... .......... 24% 42.1M 1s +2024-04-11T17:58:50Z #15 1.751 31600K .......... .......... .......... .......... .......... 24% 24.5M 1s +2024-04-11T17:58:50Z #15 1.753 31650K .......... .......... .......... .......... .......... 25% 19.6M 1s +2024-04-11T17:58:50Z #15 1.755 31700K .......... .......... .......... .......... .......... 25% 40.6M 1s +2024-04-11T17:58:50Z #15 1.757 31750K .......... .......... .......... .......... .......... 25% 51.4M 1s +2024-04-11T17:58:50Z #15 1.757 31800K .......... .......... .......... .......... .......... 25% 120M 1s +2024-04-11T17:58:50Z #15 1.758 31850K .......... .......... .......... .......... .......... 25% 153M 1s +2024-04-11T17:58:50Z #15 1.758 31900K .......... .......... .......... .......... .......... 25% 140M 1s +2024-04-11T17:58:50Z #15 1.759 31950K .......... .......... .......... .......... .......... 25% 154M 1s +2024-04-11T17:58:50Z #15 1.759 32000K .......... .......... .......... .......... .......... 25% 133M 1s +2024-04-11T17:58:50Z #15 1.759 32050K .......... .......... .......... .......... .......... 25% 157M 1s +2024-04-11T17:58:50Z #15 1.760 32100K .......... .......... .......... .......... .......... 25% 145M 1s +2024-04-11T17:58:50Z #15 1.760 32150K .......... .......... .......... .......... .......... 25% 134M 1s +2024-04-11T17:58:50Z #15 1.761 32200K .......... .......... .......... .......... .......... 25% 138M 1s +2024-04-11T17:58:50Z #15 1.761 32250K .......... .......... .......... .......... .......... 25% 137M 1s +2024-04-11T17:58:50Z #15 1.761 32300K .......... .......... .......... .......... .......... 25% 135M 1s +2024-04-11T17:58:50Z #15 1.762 32350K .......... .......... .......... .......... .......... 25% 110M 1s +2024-04-11T17:58:50Z #15 1.762 32400K .......... .......... .......... .......... .......... 25% 99.5M 1s +2024-04-11T17:58:50Z #15 1.762 32450K .......... .......... .......... .......... .......... 25% 126M 1s +2024-04-11T17:58:50Z #15 1.763 32500K .......... .......... .......... .......... .......... 25% 122M 1s +2024-04-11T17:58:50Z #15 1.763 32550K .......... .......... .......... .......... .......... 25% 108M 1s +2024-04-11T17:58:50Z #15 1.764 32600K .......... .......... .......... .......... .......... 25% 120M 1s +2024-04-11T17:58:50Z #15 1.764 32650K .......... .......... .......... .......... .......... 25% 153M 1s +2024-04-11T17:58:50Z #15 1.764 32700K .......... .......... .......... .......... .......... 25% 106M 1s +2024-04-11T17:58:50Z #15 1.765 32750K .......... .......... .......... .......... .......... 25% 148M 1s +2024-04-11T17:58:50Z #15 1.765 32800K .......... .......... .......... .......... .......... 25% 119M 1s +2024-04-11T17:58:50Z #15 1.766 32850K .......... .......... .......... .......... .......... 25% 99.6M 1s +2024-04-11T17:58:50Z #15 1.766 32900K .......... .......... .......... .......... .......... 25% 123M 1s +2024-04-11T17:58:50Z #15 1.766 32950K .......... .......... .......... .......... .......... 26% 117M 1s +2024-04-11T17:58:50Z #15 1.767 33000K .......... .......... .......... .......... .......... 26% 99.7M 1s +2024-04-11T17:58:50Z #15 1.767 33050K .......... .......... .......... .......... .......... 26% 128M 1s +2024-04-11T17:58:50Z #15 1.767 33100K .......... .......... .......... .......... .......... 26% 118M 1s +2024-04-11T17:58:50Z #15 1.778 33150K .......... .......... .......... .......... .......... 26% 140M 1s +2024-04-11T17:58:50Z #15 1.778 33200K .......... .......... .......... .......... .......... 26% 160M 1s +2024-04-11T17:58:50Z #15 1.778 33250K .......... .......... .......... .......... .......... 26% 169M 1s +2024-04-11T17:58:50Z #15 1.778 33300K .......... .......... .......... .......... .......... 26% 104M 1s +2024-04-11T17:58:50Z #15 1.778 33350K .......... .......... .......... .......... .......... 26% 141M 1s +2024-04-11T17:58:50Z #15 1.778 33400K .......... .......... .......... .......... .......... 26% 120M 1s +2024-04-11T17:58:50Z #15 1.778 33450K .......... .......... .......... .......... .......... 26% 121M 1s +2024-04-11T17:58:50Z #15 1.778 33500K .......... .......... .......... .......... .......... 26% 140M 1s +2024-04-11T17:58:50Z #15 1.778 33550K .......... .......... .......... .......... .......... 26% 143M 1s +2024-04-11T17:58:50Z #15 1.778 33600K .......... .......... .......... .......... .......... 26% 96.0M 1s +2024-04-11T17:58:50Z #15 1.778 33650K .......... .......... .......... .......... .......... 26% 142M 1s +2024-04-11T17:58:50Z #15 1.778 33700K .......... .......... .......... .......... .......... 26% 151M 1s +2024-04-11T17:58:50Z #15 1.778 33750K .......... .......... .......... .......... .......... 26% 119M 1s +2024-04-11T17:58:50Z #15 1.778 33800K .......... .......... .......... .......... .......... 26% 122M 1s +2024-04-11T17:58:50Z #15 1.778 33850K .......... .......... .......... .......... .......... 26% 141M 1s +2024-04-11T17:58:50Z #15 1.778 33900K .......... .......... .......... .......... .......... 26% 125M 1s +2024-04-11T17:58:50Z #15 1.778 33950K .......... .......... .......... .......... .......... 26% 99.8M 1s +2024-04-11T17:58:50Z #15 1.778 34000K .......... .......... .......... .......... .......... 26% 105M 1s +2024-04-11T17:58:50Z #15 1.778 34050K .......... .......... .......... .......... .......... 26% 141M 1s +2024-04-11T17:58:50Z #15 1.778 34100K .......... .......... .......... .......... .......... 26% 117M 1s +2024-04-11T17:58:50Z #15 1.778 34150K .......... .......... .......... .......... .......... 26% 126M 1s +2024-04-11T17:58:50Z #15 1.778 34200K .......... .......... .......... .......... .......... 27% 115M 1s +2024-04-11T17:58:50Z #15 1.778 34250K .......... .......... .......... .......... .......... 27% 129M 1s +2024-04-11T17:58:50Z #15 1.778 34300K .......... .......... .......... .......... .......... 27% 134M 1s +2024-04-11T17:58:50Z #15 1.778 34350K .......... .......... .......... .......... .......... 27% 122M 1s +2024-04-11T17:58:50Z #15 1.782 34400K .......... .......... .......... .......... .......... 27% 82.8M 1s +2024-04-11T17:58:50Z #15 1.782 34450K .......... .......... .......... .......... .......... 27% 152M 1s +2024-04-11T17:58:50Z #15 1.782 34500K .......... .......... .......... .......... .......... 27% 127M 1s +2024-04-11T17:58:50Z #15 1.782 34550K .......... .......... .......... .......... .......... 27% 105M 1s +2024-04-11T17:58:50Z #15 1.782 34600K .......... .......... .......... .......... .......... 27% 130M 1s +2024-04-11T17:58:50Z #15 1.782 34650K .......... .......... .......... .......... .......... 27% 107M 1s +2024-04-11T17:58:50Z #15 1.782 34700K .......... .......... .......... .......... .......... 27% 78.3M 1s +2024-04-11T17:58:50Z #15 1.782 34750K .......... .......... .......... .......... .......... 27% 98.8M 1s +2024-04-11T17:58:50Z #15 1.782 34800K .......... .......... .......... .......... .......... 27% 64.2M 1s +2024-04-11T17:58:50Z #15 1.786 34850K .......... .......... .......... .......... .......... 27% 108M 1s +2024-04-11T17:58:50Z #15 1.786 34900K .......... .......... .......... .......... .......... 27% 136M 1s +2024-04-11T17:58:50Z #15 1.786 34950K .......... .......... .......... .......... .......... 27% 125M 1s +2024-04-11T17:58:50Z #15 1.786 35000K .......... .......... .......... .......... .......... 27% 124M 1s +2024-04-11T17:58:50Z #15 1.786 35050K .......... .......... .......... .......... .......... 27% 142M 1s +2024-04-11T17:58:50Z #15 1.786 35100K .......... .......... .......... .......... .......... 27% 122M 1s +2024-04-11T17:58:50Z #15 1.786 35150K .......... .......... .......... .......... .......... 27% 130M 1s +2024-04-11T17:58:50Z #15 1.786 35200K .......... .......... .......... .......... .......... 27% 137M 1s +2024-04-11T17:58:50Z #15 1.786 35250K .......... .......... .......... .......... .......... 27% 114M 1s +2024-04-11T17:58:50Z #15 1.786 35300K .......... .......... .......... .......... .......... 27% 107M 1s +2024-04-11T17:58:50Z #15 1.786 35350K .......... .......... .......... .......... .......... 27% 143M 1s +2024-04-11T17:58:50Z #15 1.786 35400K .......... .......... .......... .......... .......... 27% 163M 1s +2024-04-11T17:58:50Z #15 1.787 35450K .......... .......... .......... .......... .......... 28% 148M 1s +2024-04-11T17:58:50Z #15 1.787 35500K .......... .......... .......... .......... .......... 28% 153M 1s +2024-04-11T17:58:50Z #15 1.787 35550K .......... .......... .......... .......... .......... 28% 131M 1s +2024-04-11T17:58:50Z #15 1.788 35600K .......... .......... .......... .......... .......... 28% 148M 1s +2024-04-11T17:58:50Z #15 1.788 35650K .......... .......... .......... .......... .......... 28% 120M 1s +2024-04-11T17:58:50Z #15 1.788 35700K .......... .......... .......... .......... .......... 28% 152M 1s +2024-04-11T17:58:50Z #15 1.789 35750K .......... .......... .......... .......... .......... 28% 153M 1s +2024-04-11T17:58:50Z #15 1.789 35800K .......... .......... .......... .......... .......... 28% 129M 1s +2024-04-11T17:58:50Z #15 1.789 35850K .......... .......... .......... .......... .......... 28% 136M 1s +2024-04-11T17:58:50Z #15 1.790 35900K .......... .......... .......... .......... .......... 28% 137M 1s +2024-04-11T17:58:50Z #15 1.790 35950K .......... .......... .......... .......... .......... 28% 131M 1s +2024-04-11T17:58:50Z #15 1.790 36000K .......... .......... .......... .......... .......... 28% 130M 1s +2024-04-11T17:58:50Z #15 1.791 36050K .......... .......... .......... .......... .......... 28% 129M 1s +2024-04-11T17:58:50Z #15 1.791 36100K .......... .......... .......... .......... .......... 28% 138M 1s +2024-04-11T17:58:50Z #15 1.792 36150K .......... .......... .......... .......... .......... 28% 111M 1s +2024-04-11T17:58:50Z #15 1.792 36200K .......... .......... .......... .......... .......... 28% 160M 1s +2024-04-11T17:58:50Z #15 1.793 36250K .......... .......... .......... .......... .......... 28% 119M 1s +2024-04-11T17:58:50Z #15 1.793 36300K .......... .......... .......... .......... .......... 28% 121M 1s +2024-04-11T17:58:50Z #15 1.793 36350K .......... .......... .......... .......... .......... 28% 114M 1s +2024-04-11T17:58:50Z #15 1.794 36400K .......... .......... .......... .......... .......... 28% 129M 1s +2024-04-11T17:58:50Z #15 1.794 36450K .......... .......... .......... .......... .......... 28% 105M 1s +2024-04-11T17:58:50Z #15 1.798 36500K .......... .......... .......... .......... .......... 28% 165M 1s +2024-04-11T17:58:50Z #15 1.798 36550K .......... .......... .......... .......... .......... 28% 158M 1s +2024-04-11T17:58:50Z #15 1.798 36600K .......... .......... .......... .......... .......... 28% 156M 1s +2024-04-11T17:58:50Z #15 1.798 36650K .......... .......... .......... .......... .......... 28% 140M 1s +2024-04-11T17:58:50Z #15 1.798 36700K .......... .......... .......... .......... .......... 28% 138M 1s +2024-04-11T17:58:50Z #15 1.798 36750K .......... .......... .......... .......... .......... 29% 121M 1s +2024-04-11T17:58:50Z #15 1.798 36800K .......... .......... .......... .......... .......... 29% 146M 1s +2024-04-11T17:58:50Z #15 1.798 36850K .......... .......... .......... .......... .......... 29% 136M 1s +2024-04-11T17:58:50Z #15 1.798 36900K .......... .......... .......... .......... .......... 29% 125M 1s +2024-04-11T17:58:50Z #15 1.798 36950K .......... .......... .......... .......... .......... 29% 118M 1s +2024-04-11T17:58:50Z #15 1.798 37000K .......... .......... .......... .......... .......... 29% 106M 1s +2024-04-11T17:58:50Z #15 1.799 37050K .......... .......... .......... .......... .......... 29% 94.4M 1s +2024-04-11T17:58:50Z #15 1.799 37100K .......... .......... .......... .......... .......... 29% 111M 1s +2024-04-11T17:58:50Z #15 1.799 37150K .......... .......... .......... .......... .......... 29% 112M 1s +2024-04-11T17:58:50Z #15 1.800 37200K .......... .......... .......... .......... .......... 29% 140M 1s +2024-04-11T17:58:50Z #15 1.800 37250K .......... .......... .......... .......... .......... 29% 107M 1s +2024-04-11T17:58:50Z #15 1.801 37300K .......... .......... .......... .......... .......... 29% 132M 1s +2024-04-11T17:58:50Z #15 1.801 37350K .......... .......... .......... .......... .......... 29% 118M 1s +2024-04-11T17:58:50Z #15 1.801 37400K .......... .......... .......... .......... .......... 29% 112M 1s +2024-04-11T17:58:50Z #15 1.802 37450K .......... .......... .......... .......... .......... 29% 113M 1s +2024-04-11T17:58:50Z #15 1.802 37500K .......... .......... .......... .......... .......... 29% 115M 1s +2024-04-11T17:58:50Z #15 1.803 37550K .......... .......... .......... .......... .......... 29% 130M 1s +2024-04-11T17:58:50Z #15 1.806 37600K .......... .......... .......... .......... .......... 29% 140M 1s +2024-04-11T17:58:50Z #15 1.806 37650K .......... .......... .......... .......... .......... 29% 133M 1s +2024-04-11T17:58:50Z #15 1.806 37700K .......... .......... .......... .......... .......... 29% 159M 1s +2024-04-11T17:58:50Z #15 1.806 37750K .......... .......... .......... .......... .......... 29% 154M 1s +2024-04-11T17:58:50Z #15 1.806 37800K .......... .......... .......... .......... .......... 29% 112M 1s +2024-04-11T17:58:50Z #15 1.806 37850K .......... .......... .......... .......... .......... 29% 125M 1s +2024-04-11T17:58:50Z #15 1.806 37900K .......... .......... .......... .......... .......... 29% 140M 1s +2024-04-11T17:58:50Z #15 1.806 37950K .......... .......... .......... .......... .......... 29% 128M 1s +2024-04-11T17:58:50Z #15 1.806 38000K .......... .......... .......... .......... .......... 30% 105M 1s +2024-04-11T17:58:50Z #15 1.807 38050K .......... .......... .......... .......... .......... 30% 165M 1s +2024-04-11T17:58:50Z #15 1.807 38100K .......... .......... .......... .......... .......... 30% 122M 1s +2024-04-11T17:58:50Z #15 1.807 38150K .......... .......... .......... .......... .......... 30% 116M 1s +2024-04-11T17:58:50Z #15 1.808 38200K .......... .......... .......... .......... .......... 30% 161M 1s +2024-04-11T17:58:50Z #15 1.808 38250K .......... .......... .......... .......... .......... 30% 146M 1s +2024-04-11T17:58:50Z #15 1.808 38300K .......... .......... .......... .......... .......... 30% 146M 1s +2024-04-11T17:58:50Z #15 1.809 38350K .......... .......... .......... .......... .......... 30% 128M 1s +2024-04-11T17:58:50Z #15 1.809 38400K .......... .......... .......... .......... .......... 30% 132M 1s +2024-04-11T17:58:50Z #15 1.809 38450K .......... .......... .......... .......... .......... 30% 131M 1s +2024-04-11T17:58:50Z #15 1.810 38500K .......... .......... .......... .......... .......... 30% 140M 1s +2024-04-11T17:58:50Z #15 1.810 38550K .......... .......... .......... .......... .......... 30% 139M 1s +2024-04-11T17:58:50Z #15 1.811 38600K .......... .......... .......... .......... .......... 30% 122M 1s +2024-04-11T17:58:50Z #15 1.811 38650K .......... .......... .......... .......... .......... 30% 145M 1s +2024-04-11T17:58:50Z #15 1.812 38700K .......... .......... .......... .......... .......... 30% 139M 1s +2024-04-11T17:58:50Z #15 1.812 38750K .......... .......... .......... .......... .......... 30% 132M 1s +2024-04-11T17:58:50Z #15 1.812 38800K .......... .......... .......... .......... .......... 30% 139M 1s +2024-04-11T17:58:50Z #15 1.812 38850K .......... .......... .......... .......... .......... 30% 127M 1s +2024-04-11T17:58:50Z #15 1.813 38900K .......... .......... .......... .......... .......... 30% 122M 1s +2024-04-11T17:58:50Z #15 1.813 38950K .......... .......... .......... .......... .......... 30% 128M 1s +2024-04-11T17:58:50Z #15 1.813 39000K .......... .......... .......... .......... .......... 30% 141M 1s +2024-04-11T17:58:50Z #15 1.814 39050K .......... .......... .......... .......... .......... 30% 103M 1s +2024-04-11T17:58:50Z #15 1.814 39100K .......... .......... .......... .......... .......... 30% 128M 1s +2024-04-11T17:58:50Z #15 1.815 39150K .......... .......... .......... .......... .......... 30% 129M 1s +2024-04-11T17:58:50Z #15 1.815 39200K .......... .......... .......... .......... .......... 30% 132M 1s +2024-04-11T17:58:50Z #15 1.816 39250K .......... .......... .......... .......... .......... 30% 118M 1s +2024-04-11T17:58:50Z #15 1.816 39300K .......... .......... .......... .......... .......... 31% 140M 1s +2024-04-11T17:58:50Z #15 1.816 39350K .......... .......... .......... .......... .......... 31% 140M 1s +2024-04-11T17:58:50Z #15 1.818 39400K .......... .......... .......... .......... .......... 31% 160M 1s +2024-04-11T17:58:50Z #15 1.818 39450K .......... .......... .......... .......... .......... 31% 131M 1s +2024-04-11T17:58:50Z #15 1.818 39500K .......... .......... .......... .......... .......... 31% 101M 1s +2024-04-11T17:58:50Z #15 1.818 39550K .......... .......... .......... .......... .......... 31% 120M 1s +2024-04-11T17:58:50Z #15 1.818 39600K .......... .......... .......... .......... .......... 31% 133M 1s +2024-04-11T17:58:50Z #15 1.819 39650K .......... .......... .......... .......... .......... 31% 109M 1s +2024-04-11T17:58:50Z #15 1.819 39700K .......... .......... .......... .......... .......... 31% 122M 1s +2024-04-11T17:58:50Z #15 1.819 39750K .......... .......... .......... .......... .......... 31% 120M 1s +2024-04-11T17:58:50Z #15 1.820 39800K .......... .......... .......... .......... .......... 31% 132M 1s +2024-04-11T17:58:50Z #15 1.820 39850K .......... .......... .......... .......... .......... 31% 112M 1s +2024-04-11T17:58:50Z #15 1.821 39900K .......... .......... .......... .......... .......... 31% 129M 1s +2024-04-11T17:58:50Z #15 1.821 39950K .......... .......... .......... .......... .......... 31% 124M 1s +2024-04-11T17:58:50Z #15 1.821 40000K .......... .......... .......... .......... .......... 31% 117M 1s +2024-04-11T17:58:50Z #15 1.822 40050K .......... .......... .......... .......... .......... 31% 86.5M 1s +2024-04-11T17:58:50Z #15 1.822 40100K .......... .......... .......... .......... .......... 31% 117M 1s +2024-04-11T17:58:50Z #15 1.823 40150K .......... .......... .......... .......... .......... 31% 133M 1s +2024-04-11T17:58:50Z #15 1.823 40200K .......... .......... .......... .......... .......... 31% 103M 1s +2024-04-11T17:58:50Z #15 1.826 40250K .......... .......... .......... .......... .......... 31% 105M 1s +2024-04-11T17:58:50Z #15 1.826 40300K .......... .......... .......... .......... .......... 31% 155M 1s +2024-04-11T17:58:50Z #15 1.826 40350K .......... .......... .......... .......... .......... 31% 135M 1s +2024-04-11T17:58:50Z #15 1.826 40400K .......... .......... .......... .......... .......... 31% 119M 1s +2024-04-11T17:58:50Z #15 1.826 40450K .......... .......... .......... .......... .......... 31% 152M 1s +2024-04-11T17:58:50Z #15 1.826 40500K .......... .......... .......... .......... .......... 31% 80.6M 1s +2024-04-11T17:58:50Z #15 1.826 40550K .......... .......... .......... .......... .......... 32% 122M 1s +2024-04-11T17:58:50Z #15 1.830 40600K .......... .......... .......... .......... .......... 32% 119M 1s +2024-04-11T17:58:50Z #15 1.830 40650K .......... .......... .......... .......... .......... 32% 143M 1s +2024-04-11T17:58:50Z #15 1.830 40700K .......... .......... .......... .......... .......... 32% 136M 1s +2024-04-11T17:58:50Z #15 1.830 40750K .......... .......... .......... .......... .......... 32% 125M 1s +2024-04-11T17:58:50Z #15 1.830 40800K .......... .......... .......... .......... .......... 32% 108M 1s +2024-04-11T17:58:50Z #15 1.830 40850K .......... .......... .......... .......... .......... 32% 124M 1s +2024-04-11T17:58:50Z #15 1.830 40900K .......... .......... .......... .......... .......... 32% 106M 1s +2024-04-11T17:58:50Z #15 1.830 40950K .......... .......... .......... .......... .......... 32% 132M 1s +2024-04-11T17:58:50Z #15 1.830 41000K .......... .......... .......... .......... .......... 32% 95.8M 1s +2024-04-11T17:58:50Z #15 1.831 41050K .......... .......... .......... .......... .......... 32% 113M 1s +2024-04-11T17:58:50Z #15 1.834 41100K .......... .......... .......... .......... .......... 32% 134M 1s +2024-04-11T17:58:50Z #15 1.834 41150K .......... .......... .......... .......... .......... 32% 128M 1s +2024-04-11T17:58:50Z #15 1.834 41200K .......... .......... .......... .......... .......... 32% 104M 1s +2024-04-11T17:58:50Z #15 1.834 41250K .......... .......... .......... .......... .......... 32% 126M 1s +2024-04-11T17:58:50Z #15 1.834 41300K .......... .......... .......... .......... .......... 32% 138M 1s +2024-04-11T17:58:50Z #15 1.834 41350K .......... .......... .......... .......... .......... 32% 111M 1s +2024-04-11T17:58:50Z #15 1.834 41400K .......... .......... .......... .......... .......... 32% 109M 1s +2024-04-11T17:58:50Z #15 1.834 41450K .......... .......... .......... .......... .......... 32% 135M 1s +2024-04-11T17:58:50Z #15 1.834 41500K .......... .......... .......... .......... .......... 32% 95.9M 1s +2024-04-11T17:58:50Z #15 1.838 41550K .......... .......... .......... .......... .......... 32% 121M 1s +2024-04-11T17:58:50Z #15 1.838 41600K .......... .......... .......... .......... .......... 32% 129M 1s +2024-04-11T17:58:50Z #15 1.838 41650K .......... .......... .......... .......... .......... 32% 134M 1s +2024-04-11T17:58:50Z #15 1.838 41700K .......... .......... .......... .......... .......... 32% 104M 1s +2024-04-11T17:58:50Z #15 1.838 41750K .......... .......... .......... .......... .......... 32% 125M 1s +2024-04-11T17:58:50Z #15 1.838 41800K .......... .......... .......... .......... .......... 33% 111M 1s +2024-04-11T17:58:50Z #15 1.838 41850K .......... .......... .......... .......... .......... 33% 126M 1s +2024-04-11T17:58:50Z #15 1.838 41900K .......... .......... .......... .......... .......... 33% 125M 1s +2024-04-11T17:58:50Z #15 1.838 41950K .......... .......... .......... .......... .......... 33% 96.9M 1s +2024-04-11T17:58:50Z #15 1.842 42000K .......... .......... .......... .......... .......... 33% 124M 1s +2024-04-11T17:58:50Z #15 1.842 42050K .......... .......... .......... .......... .......... 33% 138M 1s +2024-04-11T17:58:50Z #15 1.842 42100K .......... .......... .......... .......... .......... 33% 116M 1s +2024-04-11T17:58:51Z #15 1.842 42150K .......... .......... .......... .......... .......... 33% 130M 1s +2024-04-11T17:58:51Z #15 1.842 42200K .......... .......... .......... .......... .......... 33% 113M 1s +2024-04-11T17:58:51Z #15 1.842 42250K .......... .......... .......... .......... .......... 33% 131M 1s +2024-04-11T17:58:51Z #15 1.842 42300K .......... .......... .......... .......... .......... 33% 138M 1s +2024-04-11T17:58:51Z #15 1.842 42350K .......... .......... .......... .......... .......... 33% 107M 1s +2024-04-11T17:58:51Z #15 1.842 42400K .......... .......... .......... .......... .......... 33% 148M 1s +2024-04-11T17:58:51Z #15 1.842 42450K .......... .......... .......... .......... .......... 33% 139M 1s +2024-04-11T17:58:51Z #15 1.846 42500K .......... .......... .......... .......... .......... 33% 109M 1s +2024-04-11T17:58:51Z #15 1.846 42550K .......... .......... .......... .......... .......... 33% 146M 1s +2024-04-11T17:58:51Z #15 1.846 42600K .......... .......... .......... .......... .......... 33% 127M 1s +2024-04-11T17:58:51Z #15 1.846 42650K .......... .......... .......... .......... .......... 33% 128M 1s +2024-04-11T17:58:51Z #15 1.846 42700K .......... .......... .......... .......... .......... 33% 103M 1s +2024-04-11T17:58:51Z #15 1.846 42750K .......... .......... .......... .......... .......... 33% 131M 1s +2024-04-11T17:58:51Z #15 1.846 42800K .......... .......... .......... .......... .......... 33% 161M 1s +2024-04-11T17:58:51Z #15 1.846 42850K .......... .......... .......... .......... .......... 33% 117M 1s +2024-04-11T17:58:51Z #15 1.846 42900K .......... .......... .......... .......... .......... 33% 142M 1s +2024-04-11T17:58:51Z #15 1.846 42950K .......... .......... .......... .......... .......... 33% 111M 1s +2024-04-11T17:58:51Z #15 1.846 43000K .......... .......... .......... .......... .......... 33% 97.0M 1s +2024-04-11T17:58:51Z #15 1.850 43050K .......... .......... .......... .......... .......... 33% 140M 1s +2024-04-11T17:58:51Z #15 1.850 43100K .......... .......... .......... .......... .......... 34% 154M 1s +2024-04-11T17:58:51Z #15 1.850 43150K .......... .......... .......... .......... .......... 34% 138M 1s +2024-04-11T17:58:51Z #15 1.850 43200K .......... .......... .......... .......... .......... 34% 128M 1s +2024-04-11T17:58:51Z #15 1.850 43250K .......... .......... .......... .......... .......... 34% 128M 1s +2024-04-11T17:58:51Z #15 1.850 43300K .......... .......... .......... .......... .......... 34% 166M 1s +2024-04-11T17:58:51Z #15 1.850 43350K .......... .......... .......... .......... .......... 34% 133M 1s +2024-04-11T17:58:51Z #15 1.850 43400K .......... .......... .......... .......... .......... 34% 165M 1s +2024-04-11T17:58:51Z #15 1.850 43450K .......... .......... .......... .......... .......... 34% 149M 1s +2024-04-11T17:58:51Z #15 1.850 43500K .......... .......... .......... .......... .......... 34% 105M 1s +2024-04-11T17:58:51Z #15 1.850 43550K .......... .......... .......... .......... .......... 34% 117M 1s +2024-04-11T17:58:51Z #15 1.854 43600K .......... .......... .......... .......... .......... 34% 131M 1s +2024-04-11T17:58:51Z #15 1.854 43650K .......... .......... .......... .......... .......... 34% 122M 1s +2024-04-11T17:58:51Z #15 1.854 43700K .......... .......... .......... .......... .......... 34% 97.4M 1s +2024-04-11T17:58:51Z #15 1.854 43750K .......... .......... .......... .......... .......... 34% 126M 1s +2024-04-11T17:58:51Z #15 1.854 43800K .......... .......... .......... .......... .......... 34% 132M 1s +2024-04-11T17:58:51Z #15 1.854 43850K .......... .......... .......... .......... .......... 34% 125M 1s +2024-04-11T17:58:51Z #15 1.854 43900K .......... .......... .......... .......... .......... 34% 104M 1s +2024-04-11T17:58:51Z #15 1.854 43950K .......... .......... .......... .......... .......... 34% 131M 1s +2024-04-11T17:58:51Z #15 1.854 44000K .......... .......... .......... .......... .......... 34% 110M 1s +2024-04-11T17:58:51Z #15 1.858 44050K .......... .......... .......... .......... .......... 34% 124M 1s +2024-04-11T17:58:51Z #15 1.858 44100K .......... .......... .......... .......... .......... 34% 118M 1s +2024-04-11T17:58:51Z #15 1.858 44150K .......... .......... .......... .......... .......... 34% 130M 1s +2024-04-11T17:58:51Z #15 1.858 44200K .......... .......... .......... .......... .......... 34% 128M 1s +2024-04-11T17:58:51Z #15 1.858 44250K .......... .......... .......... .......... .......... 34% 120M 1s +2024-04-11T17:58:51Z #15 1.858 44300K .......... .......... .......... .......... .......... 34% 99.8M 1s +2024-04-11T17:58:51Z #15 1.858 44350K .......... .......... .......... .......... .......... 35% 125M 1s +2024-04-11T17:58:51Z #15 1.858 44400K .......... .......... .......... .......... .......... 35% 112M 1s +2024-04-11T17:58:51Z #15 1.858 44450K .......... .......... .......... .......... .......... 35% 142M 1s +2024-04-11T17:58:51Z #15 1.858 44500K .......... .......... .......... .......... .......... 35% 85.5M 1s +2024-04-11T17:58:51Z #15 1.862 44550K .......... .......... .......... .......... .......... 35% 120M 1s +2024-04-11T17:58:51Z #15 1.862 44600K .......... .......... .......... .......... .......... 35% 142M 1s +2024-04-11T17:58:51Z #15 1.862 44650K .......... .......... .......... .......... .......... 35% 136M 1s +2024-04-11T17:58:51Z #15 1.862 44700K .......... .......... .......... .......... .......... 35% 71.2M 1s +2024-04-11T17:58:51Z #15 1.862 44750K .......... .......... .......... .......... .......... 35% 145M 1s +2024-04-11T17:58:51Z #15 1.862 44800K .......... .......... .......... .......... .......... 35% 134M 1s +2024-04-11T17:58:51Z #15 1.862 44850K .......... .......... .......... .......... .......... 35% 133M 1s +2024-04-11T17:58:51Z #15 1.862 44900K .......... .......... .......... .......... .......... 35% 154M 1s +2024-04-11T17:58:51Z #15 1.862 44950K .......... .......... .......... .......... .......... 35% 118M 1s +2024-04-11T17:58:51Z #15 1.862 45000K .......... .......... .......... .......... .......... 35% 108M 1s +2024-04-11T17:58:51Z #15 1.866 45050K .......... .......... .......... .......... .......... 35% 103M 1s +2024-04-11T17:58:51Z #15 1.866 45100K .......... .......... .......... .......... .......... 35% 124M 1s +2024-04-11T17:58:51Z #15 1.866 45150K .......... .......... .......... .......... .......... 35% 164M 1s +2024-04-11T17:58:51Z #15 1.866 45200K .......... .......... .......... .......... .......... 35% 136M 1s +2024-04-11T17:58:51Z #15 1.866 45250K .......... .......... .......... .......... .......... 35% 138M 1s +2024-04-11T17:58:51Z #15 1.866 45300K .......... .......... .......... .......... .......... 35% 142M 1s +2024-04-11T17:58:51Z #15 1.866 45350K .......... .......... .......... .......... .......... 35% 109M 1s +2024-04-11T17:58:51Z #15 1.866 45400K .......... .......... .......... .......... .......... 35% 162M 1s +2024-04-11T17:58:51Z #15 1.866 45450K .......... .......... .......... .......... .......... 35% 120M 1s +2024-04-11T17:58:51Z #15 1.866 45500K .......... .......... .......... .......... .......... 35% 111M 1s +2024-04-11T17:58:51Z #15 1.870 45550K .......... .......... .......... .......... .......... 35% 118M 1s +2024-04-11T17:58:51Z #15 1.870 45600K .......... .......... .......... .......... .......... 36% 146M 1s +2024-04-11T17:58:51Z #15 1.870 45650K .......... .......... .......... .......... .......... 36% 127M 1s +2024-04-11T17:58:51Z #15 1.870 45700K .......... .......... .......... .......... .......... 36% 148M 1s +2024-04-11T17:58:51Z #15 1.870 45750K .......... .......... .......... .......... .......... 36% 120M 1s +2024-04-11T17:58:51Z #15 1.870 45800K .......... .......... .......... .......... .......... 36% 151M 1s +2024-04-11T17:58:51Z #15 1.870 45850K .......... .......... .......... .......... .......... 36% 137M 1s +2024-04-11T17:58:51Z #15 1.870 45900K .......... .......... .......... .......... .......... 36% 128M 1s +2024-04-11T17:58:51Z #15 1.870 45950K .......... .......... .......... .......... .......... 36% 109M 1s +2024-04-11T17:58:51Z #15 1.870 46000K .......... .......... .......... .......... .......... 36% 153M 1s +2024-04-11T17:58:51Z #15 1.870 46050K .......... .......... .......... .......... .......... 36% 137M 1s +2024-04-11T17:58:51Z #15 1.874 46100K .......... .......... .......... .......... .......... 36% 110M 1s +2024-04-11T17:58:51Z #15 1.874 46150K .......... .......... .......... .......... .......... 36% 123M 1s +2024-04-11T17:58:51Z #15 1.874 46200K .......... .......... .......... .......... .......... 36% 161M 1s +2024-04-11T17:58:51Z #15 1.874 46250K .......... .......... .......... .......... .......... 36% 135M 1s +2024-04-11T17:58:51Z #15 1.874 46300K .......... .......... .......... .......... .......... 36% 112M 1s +2024-04-11T17:58:51Z #15 1.874 46350K .......... .......... .......... .......... .......... 36% 127M 1s +2024-04-11T17:58:51Z #15 1.874 46400K .......... .......... .......... .......... .......... 36% 126M 1s +2024-04-11T17:58:51Z #15 1.874 46450K .......... .......... .......... .......... .......... 36% 143M 1s +2024-04-11T17:58:51Z #15 1.874 46500K .......... .......... .......... .......... .......... 36% 148M 1s +2024-04-11T17:58:51Z #15 1.874 46550K .......... .......... .......... .......... .......... 36% 131M 1s +2024-04-11T17:58:51Z #15 1.874 46600K .......... .......... .......... .......... .......... 36% 118M 1s +2024-04-11T17:58:51Z #15 1.878 46650K .......... .......... .......... .......... .......... 36% 130M 1s +2024-04-11T17:58:51Z #15 1.878 46700K .......... .......... .......... .......... .......... 36% 125M 1s +2024-04-11T17:58:51Z #15 1.878 46750K .......... .......... .......... .......... .......... 36% 124M 1s +2024-04-11T17:58:51Z #15 1.878 46800K .......... .......... .......... .......... .......... 36% 151M 1s +2024-04-11T17:58:51Z #15 1.878 46850K .......... .......... .......... .......... .......... 36% 121M 1s +2024-04-11T17:58:51Z #15 1.878 46900K .......... .......... .......... .......... .......... 37% 136M 1s +2024-04-11T17:58:51Z #15 1.878 46950K .......... .......... .......... .......... .......... 37% 154M 1s +2024-04-11T17:58:51Z #15 1.878 47000K .......... .......... .......... .......... .......... 37% 141M 1s +2024-04-11T17:58:51Z #15 1.878 47050K .......... .......... .......... .......... .......... 37% 113M 1s +2024-04-11T17:58:51Z #15 1.878 47100K .......... .......... .......... .......... .......... 37% 109M 1s +2024-04-11T17:58:51Z #15 1.882 47150K .......... .......... .......... .......... .......... 37% 115M 1s +2024-04-11T17:58:51Z #15 1.882 47200K .......... .......... .......... .......... .......... 37% 93.0M 1s +2024-04-11T17:58:51Z #15 1.882 47250K .......... .......... .......... .......... .......... 37% 130M 1s +2024-04-11T17:58:51Z #15 1.882 47300K .......... .......... .......... .......... .......... 37% 130M 1s +2024-04-11T17:58:51Z #15 1.882 47350K .......... .......... .......... .......... .......... 37% 133M 1s +2024-04-11T17:58:51Z #15 1.882 47400K .......... .......... .......... .......... .......... 37% 97.8M 1s +2024-04-11T17:58:51Z #15 1.882 47450K .......... .......... .......... .......... .......... 37% 128M 1s +2024-04-11T17:58:51Z #15 1.882 47500K .......... .......... .......... .......... .......... 37% 123M 1s +2024-04-11T17:58:51Z #15 1.882 47550K .......... .......... .......... .......... .......... 37% 124M 1s +2024-04-11T17:58:51Z #15 1.882 47600K .......... .......... .......... .......... .......... 37% 91.5M 1s +2024-04-11T17:58:51Z #15 1.886 47650K .......... .......... .......... .......... .......... 37% 137M 1s +2024-04-11T17:58:51Z #15 1.886 47700K .......... .......... .......... .......... .......... 37% 171M 1s +2024-04-11T17:58:51Z #15 1.886 47750K .......... .......... .......... .......... .......... 37% 168M 1s +2024-04-11T17:58:51Z #15 1.886 47800K .......... .......... .......... .......... .......... 37% 173M 1s +2024-04-11T17:58:51Z #15 1.886 47850K .......... .......... .......... .......... .......... 37% 112M 1s +2024-04-11T17:58:51Z #15 1.886 47900K .......... .......... .......... .......... .......... 37% 141M 1s +2024-04-11T17:58:51Z #15 1.886 47950K .......... .......... .......... .......... .......... 37% 102M 1s +2024-04-11T17:58:51Z #15 1.886 48000K .......... .......... .......... .......... .......... 37% 98.8M 1s +2024-04-11T17:58:51Z #15 1.886 48050K .......... .......... .......... .......... .......... 37% 128M 1s +2024-04-11T17:58:51Z #15 1.886 48100K .......... .......... .......... .......... .......... 37% 130M 1s +2024-04-11T17:58:51Z #15 1.890 48150K .......... .......... .......... .......... .......... 38% 128M 1s +2024-04-11T17:58:51Z #15 1.890 48200K .......... .......... .......... .......... .......... 38% 142M 1s +2024-04-11T17:58:51Z #15 1.890 48250K .......... .......... .......... .......... .......... 38% 137M 1s +2024-04-11T17:58:51Z #15 1.890 48300K .......... .......... .......... .......... .......... 38% 132M 1s +2024-04-11T17:58:51Z #15 1.890 48350K .......... .......... .......... .......... .......... 38% 125M 1s +2024-04-11T17:58:51Z #15 1.890 48400K .......... .......... .......... .......... .......... 38% 148M 1s +2024-04-11T17:58:51Z #15 1.890 48450K .......... .......... .......... .......... .......... 38% 141M 1s +2024-04-11T17:58:51Z #15 1.890 48500K .......... .......... .......... .......... .......... 38% 135M 1s +2024-04-11T17:58:51Z #15 1.890 48550K .......... .......... .......... .......... .......... 38% 132M 1s +2024-04-11T17:58:51Z #15 1.890 48600K .......... .......... .......... .......... .......... 38% 146M 1s +2024-04-11T17:58:51Z #15 1.890 48650K .......... .......... .......... .......... .......... 38% 105M 1s +2024-04-11T17:58:51Z #15 1.894 48700K .......... .......... .......... .......... .......... 38% 112M 1s +2024-04-11T17:58:51Z #15 1.894 48750K .......... .......... .......... .......... .......... 38% 149M 1s +2024-04-11T17:58:51Z #15 1.894 48800K .......... .......... .......... .......... .......... 38% 146M 1s +2024-04-11T17:58:51Z #15 1.894 48850K .......... .......... .......... .......... .......... 38% 118M 1s +2024-04-11T17:58:51Z #15 1.894 48900K .......... .......... .......... .......... .......... 38% 127M 1s +2024-04-11T17:58:51Z #15 1.894 48950K .......... .......... .......... .......... .......... 38% 144M 1s +2024-04-11T17:58:51Z #15 1.894 49000K .......... .......... .......... .......... .......... 38% 154M 1s +2024-04-11T17:58:51Z #15 1.894 49050K .......... .......... .......... .......... .......... 38% 133M 1s +2024-04-11T17:58:51Z #15 1.894 49100K .......... .......... .......... .......... .......... 38% 136M 1s +2024-04-11T17:58:51Z #15 1.894 49150K .......... .......... .......... .......... .......... 38% 125M 1s +2024-04-11T17:58:51Z #15 1.894 49200K .......... .......... .......... .......... .......... 38% 102M 1s +2024-04-11T17:58:51Z #15 1.898 49250K .......... .......... .......... .......... .......... 38% 122M 1s +2024-04-11T17:58:51Z #15 1.898 49300K .......... .......... .......... .......... .......... 38% 137M 1s +2024-04-11T17:58:51Z #15 1.898 49350K .......... .......... .......... .......... .......... 38% 133M 1s +2024-04-11T17:58:51Z #15 1.898 49400K .......... .......... .......... .......... .......... 39% 115M 1s +2024-04-11T17:58:51Z #15 1.898 49450K .......... .......... .......... .......... .......... 39% 152M 1s +2024-04-11T17:58:51Z #15 1.898 49500K .......... .......... .......... .......... .......... 39% 155M 1s +2024-04-11T17:58:51Z #15 1.898 49550K .......... .......... .......... .......... .......... 39% 134M 1s +2024-04-11T17:58:51Z #15 1.898 49600K .......... .......... .......... .......... .......... 39% 125M 1s +2024-04-11T17:58:51Z #15 1.898 49650K .......... .......... .......... .......... .......... 39% 125M 1s +2024-04-11T17:58:51Z #15 1.898 49700K .......... .......... .......... .......... .......... 39% 153M 1s +2024-04-11T17:58:51Z #15 1.899 49750K .......... .......... .......... .......... .......... 39% 13.9M 1s +2024-04-11T17:58:51Z #15 1.906 49800K .......... .......... .......... .......... .......... 39% 118M 1s +2024-04-11T17:58:51Z #15 1.906 49850K .......... .......... .......... .......... .......... 39% 112M 1s +2024-04-11T17:58:51Z #15 1.906 49900K .......... .......... .......... .......... .......... 39% 113M 1s +2024-04-11T17:58:51Z #15 1.906 49950K .......... .......... .......... .......... .......... 39% 130M 1s +2024-04-11T17:58:51Z #15 1.906 50000K .......... .......... .......... .......... .......... 39% 112M 1s +2024-04-11T17:58:51Z #15 1.906 50050K .......... .......... .......... .......... .......... 39% 115M 1s +2024-04-11T17:58:51Z #15 1.906 50100K .......... .......... .......... .......... .......... 39% 122M 1s +2024-04-11T17:58:51Z #15 1.906 50150K .......... .......... .......... .......... .......... 39% 97.8M 1s +2024-04-11T17:58:51Z #15 1.906 50200K .......... .......... .......... .......... .......... 39% 116M 1s +2024-04-11T17:58:51Z #15 1.906 50250K .......... .......... .......... .......... .......... 39% 127M 1s +2024-04-11T17:58:51Z #15 1.906 50300K .......... .......... .......... .......... .......... 39% 15.1M 1s +2024-04-11T17:58:51Z #15 1.914 50350K .......... .......... .......... .......... .......... 39% 108M 1s +2024-04-11T17:58:51Z #15 1.914 50400K .......... .......... .......... .......... .......... 39% 106M 1s +2024-04-11T17:58:51Z #15 1.914 50450K .......... .......... .......... .......... .......... 39% 114M 1s +2024-04-11T17:58:51Z #15 1.914 50500K .......... .......... .......... .......... .......... 39% 139M 1s +2024-04-11T17:58:51Z #15 1.914 50550K .......... .......... .......... .......... .......... 39% 136M 1s +2024-04-11T17:58:51Z #15 1.914 50600K .......... .......... .......... .......... .......... 39% 107M 1s +2024-04-11T17:58:51Z #15 1.914 50650K .......... .......... .......... .......... .......... 39% 130M 1s +2024-04-11T17:58:51Z #15 1.914 50700K .......... .......... .......... .......... .......... 40% 107M 1s +2024-04-11T17:58:51Z #15 1.914 50750K .......... .......... .......... .......... .......... 40% 135M 1s +2024-04-11T17:58:51Z #15 1.914 50800K .......... .......... .......... .......... .......... 40% 140M 1s +2024-04-11T17:58:51Z #15 1.914 50850K .......... .......... .......... .......... .......... 40% 121M 1s +2024-04-11T17:58:51Z #15 1.914 50900K .......... .......... .......... .......... .......... 40% 101M 1s +2024-04-11T17:58:51Z #15 1.914 50950K .......... .......... .......... .......... .......... 40% 9.75M 1s +2024-04-11T17:58:51Z #15 1.922 51000K .......... .......... .......... .......... .......... 40% 126M 1s +2024-04-11T17:58:51Z #15 1.922 51050K .......... .......... .......... .......... .......... 40% 126M 1s +2024-04-11T17:58:51Z #15 1.922 51100K .......... .......... .......... .......... .......... 40% 128M 1s +2024-04-11T17:58:51Z #15 1.922 51150K .......... .......... .......... .......... .......... 40% 99.7M 1s +2024-04-11T17:58:51Z #15 1.922 51200K .......... .......... .......... .......... .......... 40% 132M 1s +2024-04-11T17:58:51Z #15 1.922 51250K .......... .......... .......... .......... .......... 40% 129M 1s +2024-04-11T17:58:51Z #15 1.922 51300K .......... .......... .......... .......... .......... 40% 126M 1s +2024-04-11T17:58:51Z #15 1.922 51350K .......... .......... .......... .......... .......... 40% 33.6M 1s +2024-04-11T17:58:51Z #15 1.923 51400K .......... .......... .......... .......... .......... 40% 61.4M 1s +2024-04-11T17:58:51Z #15 1.926 51450K .......... .......... .......... .......... .......... 40% 112M 1s +2024-04-11T17:58:51Z #15 1.926 51500K .......... .......... .......... .......... .......... 40% 125M 1s +2024-04-11T17:58:51Z #15 1.926 51550K .......... .......... .......... .......... .......... 40% 111M 1s +2024-04-11T17:58:51Z #15 1.926 51600K .......... .......... .......... .......... .......... 40% 129M 1s +2024-04-11T17:58:51Z #15 1.926 51650K .......... .......... .......... .......... .......... 40% 117M 1s +2024-04-11T17:58:51Z #15 1.926 51700K .......... .......... .......... .......... .......... 40% 39.0M 1s +2024-04-11T17:58:51Z #15 1.930 51750K .......... .......... .......... .......... .......... 40% 111M 1s +2024-04-11T17:58:51Z #15 1.930 51800K .......... .......... .......... .......... .......... 40% 126M 1s +2024-04-11T17:58:51Z #15 1.930 51850K .......... .......... .......... .......... .......... 40% 119M 1s +2024-04-11T17:58:51Z #15 1.930 51900K .......... .......... .......... .......... .......... 40% 116M 1s +2024-04-11T17:58:51Z #15 1.930 51950K .......... .......... .......... .......... .......... 41% 120M 1s +2024-04-11T17:58:51Z #15 1.930 52000K .......... .......... .......... .......... .......... 41% 113M 1s +2024-04-11T17:58:51Z #15 1.930 52050K .......... .......... .......... .......... .......... 41% 67.2M 1s +2024-04-11T17:58:51Z #15 1.930 52100K .......... .......... .......... .......... .......... 41% 67.4M 1s +2024-04-11T17:58:51Z #15 1.934 52150K .......... .......... .......... .......... .......... 41% 126M 1s +2024-04-11T17:58:51Z #15 1.934 52200K .......... .......... .......... .......... .......... 41% 99.2M 1s +2024-04-11T17:58:51Z #15 1.934 52250K .......... .......... .......... .......... .......... 41% 127M 1s +2024-04-11T17:58:51Z #15 1.934 52300K .......... .......... .......... .......... .......... 41% 120M 1s +2024-04-11T17:58:51Z #15 1.934 52350K .......... .......... .......... .......... .......... 41% 132M 1s +2024-04-11T17:58:51Z #15 1.934 52400K .......... .......... .......... .......... .......... 41% 135M 1s +2024-04-11T17:58:51Z #15 1.934 52450K .......... .......... .......... .......... .......... 41% 138M 1s +2024-04-11T17:58:51Z #15 1.934 52500K .......... .......... .......... .......... .......... 41% 64.9M 1s +2024-04-11T17:58:51Z #15 1.938 52550K .......... .......... .......... .......... .......... 41% 124M 1s +2024-04-11T17:58:51Z #15 1.938 52600K .......... .......... .......... .......... .......... 41% 153M 1s +2024-04-11T17:58:51Z #15 1.938 52650K .......... .......... .......... .......... .......... 41% 123M 1s +2024-04-11T17:58:51Z #15 1.938 52700K .......... .......... .......... .......... .......... 41% 148M 1s +2024-04-11T17:58:51Z #15 1.938 52750K .......... .......... .......... .......... .......... 41% 132M 1s +2024-04-11T17:58:51Z #15 1.938 52800K .......... .......... .......... .......... .......... 41% 151M 1s +2024-04-11T17:58:51Z #15 1.938 52850K .......... .......... .......... .......... .......... 41% 128M 1s +2024-04-11T17:58:51Z #15 1.938 52900K .......... .......... .......... .......... .......... 41% 105M 1s +2024-04-11T17:58:51Z #15 1.938 52950K .......... .......... .......... .......... .......... 41% 86.7M 1s +2024-04-11T17:58:51Z #15 1.938 53000K .......... .......... .......... .......... .......... 41% 44.1M 1s +2024-04-11T17:58:51Z #15 1.942 53050K .......... .......... .......... .......... .......... 41% 159M 1s +2024-04-11T17:58:51Z #15 1.942 53100K .......... .......... .......... .......... .......... 41% 116M 1s +2024-04-11T17:58:51Z #15 1.942 53150K .......... .......... .......... .......... .......... 41% 160M 1s +2024-04-11T17:58:51Z #15 1.942 53200K .......... .......... .......... .......... .......... 42% 129M 1s +2024-04-11T17:58:51Z #15 1.942 53250K .......... .......... .......... .......... .......... 42% 145M 1s +2024-04-11T17:58:51Z #15 1.942 53300K .......... .......... .......... .......... .......... 42% 117M 1s +2024-04-11T17:58:51Z #15 1.942 53350K .......... .......... .......... .......... .......... 42% 163M 1s +2024-04-11T17:58:51Z #15 1.942 53400K .......... .......... .......... .......... .......... 42% 53.0M 1s +2024-04-11T17:58:51Z #15 1.946 53450K .......... .......... .......... .......... .......... 42% 108M 1s +2024-04-11T17:58:51Z #15 1.946 53500K .......... .......... .......... .......... .......... 42% 131M 1s +2024-04-11T17:58:51Z #15 1.946 53550K .......... .......... .......... .......... .......... 42% 142M 1s +2024-04-11T17:58:51Z #15 1.946 53600K .......... .......... .......... .......... .......... 42% 117M 1s +2024-04-11T17:58:51Z #15 1.946 53650K .......... .......... .......... .......... .......... 42% 136M 1s +2024-04-11T17:58:51Z #15 1.946 53700K .......... .......... .......... .......... .......... 42% 116M 1s +2024-04-11T17:58:51Z #15 1.946 53750K .......... .......... .......... .......... .......... 42% 124M 1s +2024-04-11T17:58:51Z #15 1.946 53800K .......... .......... .......... .......... .......... 42% 118M 1s +2024-04-11T17:58:51Z #15 1.946 53850K .......... .......... .......... .......... .......... 42% 46.6M 1s +2024-04-11T17:58:51Z #15 1.950 53900K .......... .......... .......... .......... .......... 42% 146M 1s +2024-04-11T17:58:51Z #15 1.950 53950K .......... .......... .......... .......... .......... 42% 147M 1s +2024-04-11T17:58:51Z #15 1.950 54000K .......... .......... .......... .......... .......... 42% 135M 1s +2024-04-11T17:58:51Z #15 1.950 54050K .......... .......... .......... .......... .......... 42% 143M 1s +2024-04-11T17:58:51Z #15 1.950 54100K .......... .......... .......... .......... .......... 42% 132M 1s +2024-04-11T17:58:51Z #15 1.950 54150K .......... .......... .......... .......... .......... 42% 158M 1s +2024-04-11T17:58:51Z #15 1.950 54200K .......... .......... .......... .......... .......... 42% 108M 1s +2024-04-11T17:58:51Z #15 1.950 54250K .......... .......... .......... .......... .......... 42% 133M 1s +2024-04-11T17:58:51Z #15 1.950 54300K .......... .......... .......... .......... .......... 42% 112M 1s +2024-04-11T17:58:51Z #15 1.954 54350K .......... .......... .......... .......... .......... 42% 117M 1s +2024-04-11T17:58:51Z #15 1.954 54400K .......... .......... .......... .......... .......... 42% 141M 1s +2024-04-11T17:58:51Z #15 1.954 54450K .......... .......... .......... .......... .......... 42% 119M 1s +2024-04-11T17:58:51Z #15 1.954 54500K .......... .......... .......... .......... .......... 43% 113M 1s +2024-04-11T17:58:51Z #15 1.954 54550K .......... .......... .......... .......... .......... 43% 109M 1s +2024-04-11T17:58:51Z #15 1.954 54600K .......... .......... .......... .......... .......... 43% 133M 1s +2024-04-11T17:58:51Z #15 1.954 54650K .......... .......... .......... .......... .......... 43% 119M 1s +2024-04-11T17:58:51Z #15 1.954 54700K .......... .......... .......... .......... .......... 43% 138M 1s +2024-04-11T17:58:51Z #15 1.954 54750K .......... .......... .......... .......... .......... 43% 119M 1s +2024-04-11T17:58:51Z #15 1.954 54800K .......... .......... .......... .......... .......... 43% 75.6M 1s +2024-04-11T17:58:51Z #15 1.958 54850K .......... .......... .......... .......... .......... 43% 126M 1s +2024-04-11T17:58:51Z #15 1.958 54900K .......... .......... .......... .......... .......... 43% 120M 1s +2024-04-11T17:58:51Z #15 1.958 54950K .......... .......... .......... .......... .......... 43% 102M 1s +2024-04-11T17:58:51Z #15 1.958 55000K .......... .......... .......... .......... .......... 43% 154M 1s +2024-04-11T17:58:51Z #15 1.958 55050K .......... .......... .......... .......... .......... 43% 115M 1s +2024-04-11T17:58:51Z #15 1.958 55100K .......... .......... .......... .......... .......... 43% 128M 1s +2024-04-11T17:58:51Z #15 1.958 55150K .......... .......... .......... .......... .......... 43% 102M 1s +2024-04-11T17:58:51Z #15 1.958 55200K .......... .......... .......... .......... .......... 43% 136M 1s +2024-04-11T17:58:51Z #15 1.958 55250K .......... .......... .......... .......... .......... 43% 57.2M 1s +2024-04-11T17:58:51Z #15 1.962 55300K .......... .......... .......... .......... .......... 43% 127M 1s +2024-04-11T17:58:51Z #15 1.962 55350K .......... .......... .......... .......... .......... 43% 111M 1s +2024-04-11T17:58:51Z #15 1.962 55400K .......... .......... .......... .......... .......... 43% 120M 1s +2024-04-11T17:58:51Z #15 1.962 55450K .......... .......... .......... .......... .......... 43% 104M 1s +2024-04-11T17:58:51Z #15 1.962 55500K .......... .......... .......... .......... .......... 43% 135M 1s +2024-04-11T17:58:51Z #15 1.962 55550K .......... .......... .......... .......... .......... 43% 105M 1s +2024-04-11T17:58:51Z #15 1.962 55600K .......... .......... .......... .......... .......... 43% 114M 1s +2024-04-11T17:58:51Z #15 1.962 55650K .......... .......... .......... .......... .......... 43% 130M 1s +2024-04-11T17:58:51Z #15 1.962 55700K .......... .......... .......... .......... .......... 43% 90.0M 1s +2024-04-11T17:58:51Z #15 1.966 55750K .......... .......... .......... .......... .......... 44% 143M 1s +2024-04-11T17:58:51Z #15 1.966 55800K .......... .......... .......... .......... .......... 44% 103M 1s +2024-04-11T17:58:51Z #15 1.966 55850K .......... .......... .......... .......... .......... 44% 136M 1s +2024-04-11T17:58:51Z #15 1.966 55900K .......... .......... .......... .......... .......... 44% 118M 1s +2024-04-11T17:58:51Z #15 1.966 55950K .......... .......... .......... .......... .......... 44% 155M 1s +2024-04-11T17:58:51Z #15 1.966 56000K .......... .......... .......... .......... .......... 44% 113M 1s +2024-04-11T17:58:51Z #15 1.966 56050K .......... .......... .......... .......... .......... 44% 123M 1s +2024-04-11T17:58:51Z #15 1.966 56100K .......... .......... .......... .......... .......... 44% 129M 1s +2024-04-11T17:58:51Z #15 1.966 56150K .......... .......... .......... .......... .......... 44% 146M 1s +2024-04-11T17:58:51Z #15 1.966 56200K .......... .......... .......... .......... .......... 44% 39.1M 1s +2024-04-11T17:58:51Z #15 1.970 56250K .......... .......... .......... .......... .......... 44% 152M 1s +2024-04-11T17:58:51Z #15 1.970 56300K .......... .......... .......... .......... .......... 44% 155M 1s +2024-04-11T17:58:51Z #15 1.970 56350K .......... .......... .......... .......... .......... 44% 99.6M 1s +2024-04-11T17:58:51Z #15 1.970 56400K .......... .......... .......... .......... .......... 44% 130M 1s +2024-04-11T17:58:51Z #15 1.970 56450K .......... .......... .......... .......... .......... 44% 149M 1s +2024-04-11T17:58:51Z #15 1.970 56500K .......... .......... .......... .......... .......... 44% 169M 1s +2024-04-11T17:58:51Z #15 1.970 56550K .......... .......... .......... .......... .......... 44% 141M 1s +2024-04-11T17:58:51Z #15 1.970 56600K .......... .......... .......... .......... .......... 44% 164M 1s +2024-04-11T17:58:51Z #15 1.970 56650K .......... .......... .......... .......... .......... 44% 131M 1s +2024-04-11T17:58:51Z #15 1.974 56700K .......... .......... .......... .......... .......... 44% 157M 1s +2024-04-11T17:58:51Z #15 1.974 56750K .......... .......... .......... .......... .......... 44% 134M 1s +2024-04-11T17:58:51Z #15 1.974 56800K .......... .......... .......... .......... .......... 44% 114M 1s +2024-04-11T17:58:51Z #15 1.974 56850K .......... .......... .......... .......... .......... 44% 123M 1s +2024-04-11T17:58:51Z #15 1.974 56900K .......... .......... .......... .......... .......... 44% 124M 1s +2024-04-11T17:58:51Z #15 1.974 56950K .......... .......... .......... .......... .......... 44% 131M 1s +2024-04-11T17:58:51Z #15 1.974 57000K .......... .......... .......... .......... .......... 44% 126M 1s +2024-04-11T17:58:51Z #15 1.974 57050K .......... .......... .......... .......... .......... 45% 142M 1s +2024-04-11T17:58:51Z #15 1.974 57100K .......... .......... .......... .......... .......... 45% 134M 1s +2024-04-11T17:58:51Z #15 1.974 57150K .......... .......... .......... .......... .......... 45% 60.9M 1s +2024-04-11T17:58:51Z #15 1.978 57200K .......... .......... .......... .......... .......... 45% 58.3M 1s +2024-04-11T17:58:51Z #15 1.978 57250K .......... .......... .......... .......... .......... 45% 126M 1s +2024-04-11T17:58:51Z #15 1.978 57300K .......... .......... .......... .......... .......... 45% 121M 1s +2024-04-11T17:58:51Z #15 1.978 57350K .......... .......... .......... .......... .......... 45% 116M 1s +2024-04-11T17:58:51Z #15 1.978 57400K .......... .......... .......... .......... .......... 45% 116M 1s +2024-04-11T17:58:51Z #15 1.978 57450K .......... .......... .......... .......... .......... 45% 142M 1s +2024-04-11T17:58:51Z #15 1.978 57500K .......... .......... .......... .......... .......... 45% 112M 1s +2024-04-11T17:58:51Z #15 1.978 57550K .......... .......... .......... .......... .......... 45% 71.3M 1s +2024-04-11T17:58:51Z #15 1.982 57600K .......... .......... .......... .......... .......... 45% 146M 1s +2024-04-11T17:58:51Z #15 1.982 57650K .......... .......... .......... .......... .......... 45% 129M 1s +2024-04-11T17:58:51Z #15 1.982 57700K .......... .......... .......... .......... .......... 45% 112M 1s +2024-04-11T17:58:51Z #15 1.982 57750K .......... .......... .......... .......... .......... 45% 113M 1s +2024-04-11T17:58:51Z #15 1.982 57800K .......... .......... .......... .......... .......... 45% 150M 1s +2024-04-11T17:58:51Z #15 1.982 57850K .......... .......... .......... .......... .......... 45% 126M 1s +2024-04-11T17:58:51Z #15 1.982 57900K .......... .......... .......... .......... .......... 45% 125M 1s +2024-04-11T17:58:51Z #15 1.982 57950K .......... .......... .......... .......... .......... 45% 138M 1s +2024-04-11T17:58:51Z #15 1.982 58000K .......... .......... .......... .......... .......... 45% 139M 1s +2024-04-11T17:58:51Z #15 1.982 58050K .......... .......... .......... .......... .......... 45% 110M 1s +2024-04-11T17:58:51Z #15 1.986 58100K .......... .......... .......... .......... .......... 45% 116M 1s +2024-04-11T17:58:51Z #15 1.986 58150K .......... .......... .......... .......... .......... 45% 133M 1s +2024-04-11T17:58:51Z #15 1.986 58200K .......... .......... .......... .......... .......... 45% 148M 1s +2024-04-11T17:58:51Z #15 1.986 58250K .......... .......... .......... .......... .......... 45% 128M 1s +2024-04-11T17:58:51Z #15 1.986 58300K .......... .......... .......... .......... .......... 46% 99.7M 1s +2024-04-11T17:58:51Z #15 1.986 58350K .......... .......... .......... .......... .......... 46% 128M 1s +2024-04-11T17:58:51Z #15 1.986 58400K .......... .......... .......... .......... .......... 46% 97.3M 1s +2024-04-11T17:58:51Z #15 1.986 58450K .......... .......... .......... .......... .......... 46% 135M 1s +2024-04-11T17:58:51Z #15 1.986 58500K .......... .......... .......... .......... .......... 46% 131M 1s +2024-04-11T17:58:51Z #15 1.986 58550K .......... .......... .......... .......... .......... 46% 110M 1s +2024-04-11T17:58:51Z #15 1.990 58600K .......... .......... .......... .......... .......... 46% 128M 1s +2024-04-11T17:58:51Z #15 1.990 58650K .......... .......... .......... .......... .......... 46% 109M 1s +2024-04-11T17:58:51Z #15 1.990 58700K .......... .......... .......... .......... .......... 46% 138M 1s +2024-04-11T17:58:51Z #15 1.990 58750K .......... .......... .......... .......... .......... 46% 113M 1s +2024-04-11T17:58:51Z #15 1.990 58800K .......... .......... .......... .......... .......... 46% 127M 1s +2024-04-11T17:58:51Z #15 1.990 58850K .......... .......... .......... .......... .......... 46% 113M 1s +2024-04-11T17:58:51Z #15 1.990 58900K .......... .......... .......... .......... .......... 46% 118M 1s +2024-04-11T17:58:51Z #15 1.990 58950K .......... .......... .......... .......... .......... 46% 131M 1s +2024-04-11T17:58:51Z #15 1.990 59000K .......... .......... .......... .......... .......... 46% 118M 1s +2024-04-11T17:58:51Z #15 1.990 59050K .......... .......... .......... .......... .......... 46% 21.3M 1s +2024-04-11T17:58:51Z #15 1.994 59100K .......... .......... .......... .......... .......... 46% 129M 1s +2024-04-11T17:58:51Z #15 1.994 59150K .......... .......... .......... .......... .......... 46% 101M 1s +2024-04-11T17:58:51Z #15 1.994 59200K .......... .......... .......... .......... .......... 46% 145M 1s +2024-04-11T17:58:51Z #15 1.994 59250K .......... .......... .......... .......... .......... 46% 135M 1s +2024-04-11T17:58:51Z #15 1.994 59300K .......... .......... .......... .......... .......... 46% 87.5M 1s +2024-04-11T17:58:51Z #15 1.998 59350K .......... .......... .......... .......... .......... 46% 132M 1s +2024-04-11T17:58:51Z #15 1.998 59400K .......... .......... .......... .......... .......... 46% 115M 1s +2024-04-11T17:58:51Z #15 1.998 59450K .......... .......... .......... .......... .......... 46% 129M 1s +2024-04-11T17:58:51Z #15 1.998 59500K .......... .......... .......... .......... .......... 46% 145M 1s +2024-04-11T17:58:51Z #15 1.998 59550K .......... .......... .......... .......... .......... 47% 115M 1s +2024-04-11T17:58:51Z #15 1.998 59600K .......... .......... .......... .......... .......... 47% 129M 1s +2024-04-11T17:58:51Z #15 1.998 59650K .......... .......... .......... .......... .......... 47% 118M 1s +2024-04-11T17:58:51Z #15 1.998 59700K .......... .......... .......... .......... .......... 47% 129M 1s +2024-04-11T17:58:51Z #15 1.998 59750K .......... .......... .......... .......... .......... 47% 139M 1s +2024-04-11T17:58:51Z #15 1.998 59800K .......... .......... .......... .......... .......... 47% 67.6M 1s +2024-04-11T17:58:51Z #15 2.002 59850K .......... .......... .......... .......... .......... 47% 136M 1s +2024-04-11T17:58:51Z #15 2.002 59900K .......... .......... .......... .......... .......... 47% 165M 1s +2024-04-11T17:58:51Z #15 2.002 59950K .......... .......... .......... .......... .......... 47% 133M 1s +2024-04-11T17:58:51Z #15 2.002 60000K .......... .......... .......... .......... .......... 47% 106M 1s +2024-04-11T17:58:51Z #15 2.002 60050K .......... .......... .......... .......... .......... 47% 141M 1s +2024-04-11T17:58:51Z #15 2.002 60100K .......... .......... .......... .......... .......... 47% 120M 1s +2024-04-11T17:58:51Z #15 2.002 60150K .......... .......... .......... .......... .......... 47% 151M 1s +2024-04-11T17:58:51Z #15 2.002 60200K .......... .......... .......... .......... .......... 47% 139M 1s +2024-04-11T17:58:51Z #15 2.002 60250K .......... .......... .......... .......... .......... 47% 125M 1s +2024-04-11T17:58:51Z #15 2.002 60300K .......... .......... .......... .......... .......... 47% 65.6M 1s +2024-04-11T17:58:51Z #15 2.002 60350K .......... .......... .......... .......... .......... 47% 38.2M 1s +2024-04-11T17:58:51Z #15 2.006 60400K .......... .......... .......... .......... .......... 47% 54.4M 1s +2024-04-11T17:58:51Z #15 2.006 60450K .......... .......... .......... .......... .......... 47% 56.9M 1s +2024-04-11T17:58:51Z #15 2.006 60500K .......... .......... .......... .......... .......... 47% 50.5M 1s +2024-04-11T17:58:51Z #15 2.006 60550K .......... .......... .......... .......... .......... 47% 54.2M 1s +2024-04-11T17:58:51Z #15 2.007 60600K .......... .......... .......... .......... .......... 47% 43.1M 1s +2024-04-11T17:58:51Z #15 2.008 60650K .......... .......... .......... .......... .......... 47% 51.6M 1s +2024-04-11T17:58:51Z #15 2.009 60700K .......... .......... .......... .......... .......... 47% 36.0M 1s +2024-04-11T17:58:51Z #15 2.013 60750K .......... .......... .......... .......... .......... 47% 193M 1s +2024-04-11T17:58:51Z #15 2.013 60800K .......... .......... .......... .......... .......... 47% 157M 1s +2024-04-11T17:58:51Z #15 2.013 60850K .......... .......... .......... .......... .......... 48% 148M 1s +2024-04-11T17:58:51Z #15 2.013 60900K .......... .......... .......... .......... .......... 48% 118M 1s +2024-04-11T17:58:51Z #15 2.013 60950K .......... .......... .......... .......... .......... 48% 124M 1s +2024-04-11T17:58:51Z #15 2.013 61000K .......... .......... .......... .......... .......... 48% 129M 1s +2024-04-11T17:58:51Z #15 2.013 61050K .......... .......... .......... .......... .......... 48% 110M 1s +2024-04-11T17:58:51Z #15 2.013 61100K .......... .......... .......... .......... .......... 48% 25.6M 1s +2024-04-11T17:58:51Z #15 2.017 61150K .......... .......... .......... .......... .......... 48% 122M 1s +2024-04-11T17:58:51Z #15 2.017 61200K .......... .......... .......... .......... .......... 48% 88.8M 1s +2024-04-11T17:58:51Z #15 2.017 61250K .......... .......... .......... .......... .......... 48% 117M 1s +2024-04-11T17:58:51Z #15 2.017 61300K .......... .......... .......... .......... .......... 48% 123M 1s +2024-04-11T17:58:51Z #15 2.017 61350K .......... .......... .......... .......... .......... 48% 26.1M 1s +2024-04-11T17:58:51Z #15 2.022 61400K .......... .......... .......... .......... .......... 48% 70.4M 1s +2024-04-11T17:58:51Z #15 2.022 61450K .......... .......... .......... .......... .......... 48% 115M 1s +2024-04-11T17:58:51Z #15 2.022 61500K .......... .......... .......... .......... .......... 48% 127M 1s +2024-04-11T17:58:51Z #15 2.022 61550K .......... .......... .......... .......... .......... 48% 124M 1s +2024-04-11T17:58:51Z #15 2.022 61600K .......... .......... .......... .......... .......... 48% 105M 1s +2024-04-11T17:58:51Z #15 2.022 61650K .......... .......... .......... .......... .......... 48% 137M 1s +2024-04-11T17:58:51Z #15 2.022 61700K .......... .......... .......... .......... .......... 48% 35.7M 1s +2024-04-11T17:58:51Z #15 2.024 61750K .......... .......... .......... .......... .......... 48% 31.3M 1s +2024-04-11T17:58:51Z #15 2.026 61800K .......... .......... .......... .......... .......... 48% 98.4M 1s +2024-04-11T17:58:51Z #15 2.026 61850K .......... .......... .......... .......... .......... 48% 105M 1s +2024-04-11T17:58:51Z #15 2.026 61900K .......... .......... .......... .......... .......... 48% 119M 1s +2024-04-11T17:58:51Z #15 2.026 61950K .......... .......... .......... .......... .......... 48% 19.0M 1s +2024-04-11T17:58:51Z #15 2.034 62000K .......... .......... .......... .......... .......... 48% 121M 1s +2024-04-11T17:58:51Z #15 2.034 62050K .......... .......... .......... .......... .......... 48% 113M 1s +2024-04-11T17:58:51Z #15 2.034 62100K .......... .......... .......... .......... .......... 49% 136M 1s +2024-04-11T17:58:51Z #15 2.034 62150K .......... .......... .......... .......... .......... 49% 117M 1s +2024-04-11T17:58:51Z #15 2.034 62200K .......... .......... .......... .......... .......... 49% 138M 1s +2024-04-11T17:58:51Z #15 2.034 62250K .......... .......... .......... .......... .......... 49% 153M 1s +2024-04-11T17:58:51Z #15 2.034 62300K .......... .......... .......... .......... .......... 49% 133M 1s +2024-04-11T17:58:51Z #15 2.034 62350K .......... .......... .......... .......... .......... 49% 125M 1s +2024-04-11T17:58:51Z #15 2.034 62400K .......... .......... .......... .......... .......... 49% 123M 1s +2024-04-11T17:58:51Z #15 2.034 62450K .......... .......... .......... .......... .......... 49% 113M 1s +2024-04-11T17:58:51Z #15 2.034 62500K .......... .......... .......... .......... .......... 49% 128M 1s +2024-04-11T17:58:51Z #15 2.034 62550K .......... .......... .......... .......... .......... 49% 125M 1s +2024-04-11T17:58:51Z #15 2.034 62600K .......... .......... .......... .......... .......... 49% 135M 1s +2024-04-11T17:58:51Z #15 2.034 62650K .......... .......... .......... .......... .......... 49% 116M 1s +2024-04-11T17:58:51Z #15 2.034 62700K .......... .......... .......... .......... .......... 49% 55.2M 1s +2024-04-11T17:58:51Z #15 2.038 62750K .......... .......... .......... .......... .......... 49% 118M 1s +2024-04-11T17:58:51Z #15 2.038 62800K .......... .......... .......... .......... .......... 49% 99.5M 1s +2024-04-11T17:58:51Z #15 2.038 62850K .......... .......... .......... .......... .......... 49% 131M 1s +2024-04-11T17:58:51Z #15 2.038 62900K .......... .......... .......... .......... .......... 49% 134M 1s +2024-04-11T17:58:51Z #15 2.038 62950K .......... .......... .......... .......... .......... 49% 113M 1s +2024-04-11T17:58:51Z #15 2.038 63000K .......... .......... .......... .......... .......... 49% 139M 1s +2024-04-11T17:58:51Z #15 2.038 63050K .......... .......... .......... .......... .......... 49% 135M 1s +2024-04-11T17:58:51Z #15 2.038 63100K .......... .......... .......... .......... .......... 49% 126M 1s +2024-04-11T17:58:51Z #15 2.042 63150K .......... .......... .......... .......... .......... 49% 112M 1s +2024-04-11T17:58:51Z #15 2.042 63200K .......... .......... .......... .......... .......... 49% 126M 1s +2024-04-11T17:58:51Z #15 2.042 63250K .......... .......... .......... .......... .......... 49% 105M 1s +2024-04-11T17:58:51Z #15 2.042 63300K .......... .......... .......... .......... .......... 49% 124M 1s +2024-04-11T17:58:51Z #15 2.042 63350K .......... .......... .......... .......... .......... 50% 158M 1s +2024-04-11T17:58:51Z #15 2.042 63400K .......... .......... .......... .......... .......... 50% 99.7M 1s +2024-04-11T17:58:51Z #15 2.042 63450K .......... .......... .......... .......... .......... 50% 142M 1s +2024-04-11T17:58:51Z #15 2.042 63500K .......... .......... .......... .......... .......... 50% 126M 1s +2024-04-11T17:58:51Z #15 2.042 63550K .......... .......... .......... .......... .......... 50% 132M 1s +2024-04-11T17:58:51Z #15 2.042 63600K .......... .......... .......... .......... .......... 50% 84.4M 1s +2024-04-11T17:58:51Z #15 2.042 63650K .......... .......... .......... .......... .......... 50% 92.0M 1s +2024-04-11T17:58:51Z #15 2.046 63700K .......... .......... .......... .......... .......... 50% 148M 1s +2024-04-11T17:58:51Z #15 2.046 63750K .......... .......... .......... .......... .......... 50% 112M 1s +2024-04-11T17:58:51Z #15 2.046 63800K .......... .......... .......... .......... .......... 50% 140M 1s +2024-04-11T17:58:51Z #15 2.046 63850K .......... .......... .......... .......... .......... 50% 110M 1s +2024-04-11T17:58:51Z #15 2.046 63900K .......... .......... .......... .......... .......... 50% 148M 1s +2024-04-11T17:58:51Z #15 2.046 63950K .......... .......... .......... .......... .......... 50% 145M 1s +2024-04-11T17:58:51Z #15 2.046 64000K .......... .......... .......... .......... .......... 50% 102M 1s +2024-04-11T17:58:51Z #15 2.046 64050K .......... .......... .......... .......... .......... 50% 146M 1s +2024-04-11T17:58:51Z #15 2.046 64100K .......... .......... .......... .......... .......... 50% 105M 1s +2024-04-11T17:58:51Z #15 2.050 64150K .......... .......... .......... .......... .......... 50% 137M 1s +2024-04-11T17:58:51Z #15 2.050 64200K .......... .......... .......... .......... .......... 50% 138M 1s +2024-04-11T17:58:51Z #15 2.050 64250K .......... .......... .......... .......... .......... 50% 109M 1s +2024-04-11T17:58:51Z #15 2.050 64300K .......... .......... .......... .......... .......... 50% 142M 1s +2024-04-11T17:58:51Z #15 2.050 64350K .......... .......... .......... .......... .......... 50% 149M 1s +2024-04-11T17:58:51Z #15 2.050 64400K .......... .......... .......... .......... .......... 50% 111M 1s +2024-04-11T17:58:51Z #15 2.050 64450K .......... .......... .......... .......... .......... 50% 130M 1s +2024-04-11T17:58:51Z #15 2.050 64500K .......... .......... .......... .......... .......... 50% 125M 1s +2024-04-11T17:58:51Z #15 2.050 64550K .......... .......... .......... .......... .......... 50% 140M 1s +2024-04-11T17:58:51Z #15 2.050 64600K .......... .......... .......... .......... .......... 50% 113M 1s +2024-04-11T17:58:51Z #15 2.050 64650K .......... .......... .......... .......... .......... 51% 54.3M 1s +2024-04-11T17:58:51Z #15 2.054 64700K .......... .......... .......... .......... .......... 51% 138M 1s +2024-04-11T17:58:51Z #15 2.054 64750K .......... .......... .......... .......... .......... 51% 125M 1s +2024-04-11T17:58:51Z #15 2.054 64800K .......... .......... .......... .......... .......... 51% 127M 1s +2024-04-11T17:58:51Z #15 2.054 64850K .......... .......... .......... .......... .......... 51% 98.2M 1s +2024-04-11T17:58:51Z #15 2.054 64900K .......... .......... .......... .......... .......... 51% 151M 1s +2024-04-11T17:58:51Z #15 2.054 64950K .......... .......... .......... .......... .......... 51% 141M 1s +2024-04-11T17:58:51Z #15 2.054 65000K .......... .......... .......... .......... .......... 51% 102M 1s +2024-04-11T17:58:51Z #15 2.054 65050K .......... .......... .......... .......... .......... 51% 83.2M 1s +2024-04-11T17:58:51Z #15 2.054 65100K .......... .......... .......... .......... .......... 51% 23.9M 1s +2024-04-11T17:58:51Z #15 2.056 65150K .......... .......... .......... .......... .......... 51% 55.7M 1s +2024-04-11T17:58:51Z #15 2.062 65200K .......... .......... .......... .......... .......... 51% 122M 1s +2024-04-11T17:58:51Z #15 2.062 65250K .......... .......... .......... .......... .......... 51% 98.9M 1s +2024-04-11T17:58:51Z #15 2.062 65300K .......... .......... .......... .......... .......... 51% 119M 1s +2024-04-11T17:58:51Z #15 2.062 65350K .......... .......... .......... .......... .......... 51% 137M 1s +2024-04-11T17:58:51Z #15 2.062 65400K .......... .......... .......... .......... .......... 51% 137M 1s +2024-04-11T17:58:51Z #15 2.062 65450K .......... .......... .......... .......... .......... 51% 108M 1s +2024-04-11T17:58:51Z #15 2.062 65500K .......... .......... .......... .......... .......... 51% 131M 1s +2024-04-11T17:58:51Z #15 2.062 65550K .......... .......... .......... .......... .......... 51% 126M 1s +2024-04-11T17:58:51Z #15 2.062 65600K .......... .......... .......... .......... .......... 51% 123M 1s +2024-04-11T17:58:51Z #15 2.062 65650K .......... .......... .......... .......... .......... 51% 149M 1s +2024-04-11T17:58:51Z #15 2.062 65700K .......... .......... .......... .......... .......... 51% 119M 1s +2024-04-11T17:58:51Z #15 2.062 65750K .......... .......... .......... .......... .......... 51% 113M 1s +2024-04-11T17:58:51Z #15 2.062 65800K .......... .......... .......... .......... .......... 51% 21.6M 1s +2024-04-11T17:58:51Z #15 2.066 65850K .......... .......... .......... .......... .......... 51% 122M 1s +2024-04-11T17:58:51Z #15 2.066 65900K .......... .......... .......... .......... .......... 52% 99.2M 1s +2024-04-11T17:58:51Z #15 2.066 65950K .......... .......... .......... .......... .......... 52% 131M 1s +2024-04-11T17:58:51Z #15 2.066 66000K .......... .......... .......... .......... .......... 52% 126M 1s +2024-04-11T17:58:51Z #15 2.066 66050K .......... .......... .......... .......... .......... 52% 28.5M 1s +2024-04-11T17:58:51Z #15 2.070 66100K .......... .......... .......... .......... .......... 52% 135M 1s +2024-04-11T17:58:51Z #15 2.070 66150K .......... .......... .......... .......... .......... 52% 98.5M 1s +2024-04-11T17:58:51Z #15 2.070 66200K .......... .......... .......... .......... .......... 52% 115M 1s +2024-04-11T17:58:51Z #15 2.070 66250K .......... .......... .......... .......... .......... 52% 148M 1s +2024-04-11T17:58:51Z #15 2.070 66300K .......... .......... .......... .......... .......... 52% 108M 1s +2024-04-11T17:58:51Z #15 2.070 66350K .......... .......... .......... .......... .......... 52% 93.5M 1s +2024-04-11T17:58:51Z #15 2.070 66400K .......... .......... .......... .......... .......... 52% 37.2M 1s +2024-04-11T17:58:51Z #15 2.072 66450K .......... .......... .......... .......... .......... 52% 25.0M 1s +2024-04-11T17:58:51Z #15 2.073 66500K .......... .......... .......... .......... .......... 52% 41.0M 1s +2024-04-11T17:58:51Z #15 2.075 66550K .......... .......... .......... .......... .......... 52% 44.0M 1s +2024-04-11T17:58:51Z #15 2.078 66600K .......... .......... .......... .......... .......... 52% 138M 1s +2024-04-11T17:58:51Z #15 2.078 66650K .......... .......... .......... .......... .......... 52% 133M 1s +2024-04-11T17:58:51Z #15 2.078 66700K .......... .......... .......... .......... .......... 52% 146M 1s +2024-04-11T17:58:51Z #15 2.078 66750K .......... .......... .......... .......... .......... 52% 120M 1s +2024-04-11T17:58:51Z #15 2.078 66800K .......... .......... .......... .......... .......... 52% 138M 1s +2024-04-11T17:58:51Z #15 2.078 66850K .......... .......... .......... .......... .......... 52% 130M 1s +2024-04-11T17:58:51Z #15 2.078 66900K .......... .......... .......... .......... .......... 52% 19.4M 1s +2024-04-11T17:58:51Z #15 2.081 66950K .......... .......... .......... .......... .......... 52% 28.9M 1s +2024-04-11T17:58:51Z #15 2.086 67000K .......... .......... .......... .......... .......... 52% 108M 1s +2024-04-11T17:58:51Z #15 2.086 67050K .......... .......... .......... .......... .......... 52% 119M 1s +2024-04-11T17:58:51Z #15 2.086 67100K .......... .......... .......... .......... .......... 52% 119M 1s +2024-04-11T17:58:51Z #15 2.086 67150K .......... .......... .......... .......... .......... 53% 96.7M 1s +2024-04-11T17:58:51Z #15 2.086 67200K .......... .......... .......... .......... .......... 53% 123M 1s +2024-04-11T17:58:51Z #15 2.086 67250K .......... .......... .......... .......... .......... 53% 123M 1s +2024-04-11T17:58:51Z #15 2.086 67300K .......... .......... .......... .......... .......... 53% 110M 1s +2024-04-11T17:58:51Z #15 2.086 67350K .......... .......... .......... .......... .......... 53% 122M 1s +2024-04-11T17:58:51Z #15 2.086 67400K .......... .......... .......... .......... .......... 53% 23.5M 1s +2024-04-11T17:58:51Z #15 2.088 67450K .......... .......... .......... .......... .......... 53% 30.9M 1s +2024-04-11T17:58:51Z #15 2.089 67500K .......... .......... .......... .......... .......... 53% 19.0M 1s +2024-04-11T17:58:51Z #15 2.094 67550K .......... .......... .......... .......... .......... 53% 122M 1s +2024-04-11T17:58:51Z #15 2.094 67600K .......... .......... .......... .......... .......... 53% 116M 1s +2024-04-11T17:58:51Z #15 2.094 67650K .......... .......... .......... .......... .......... 53% 104M 1s +2024-04-11T17:58:51Z #15 2.094 67700K .......... .......... .......... .......... .......... 53% 126M 1s +2024-04-11T17:58:51Z #15 2.094 67750K .......... .......... .......... .......... .......... 53% 125M 1s +2024-04-11T17:58:51Z #15 2.094 67800K .......... .......... .......... .......... .......... 53% 19.7M 1s +2024-04-11T17:58:51Z #15 2.098 67850K .......... .......... .......... .......... .......... 53% 101M 1s +2024-04-11T17:58:51Z #15 2.098 67900K .......... .......... .......... .......... .......... 53% 98.8M 1s +2024-04-11T17:58:51Z #15 2.098 67950K .......... .......... .......... .......... .......... 53% 111M 1s +2024-04-11T17:58:51Z #15 2.098 68000K .......... .......... .......... .......... .......... 53% 25.3M 1s +2024-04-11T17:58:51Z #15 2.102 68050K .......... .......... .......... .......... .......... 53% 153M 1s +2024-04-11T17:58:51Z #15 2.102 68100K .......... .......... .......... .......... .......... 53% 92.1M 1s +2024-04-11T17:58:51Z #15 2.102 68150K .......... .......... .......... .......... .......... 53% 115M 1s +2024-04-11T17:58:51Z #15 2.102 68200K .......... .......... .......... .......... .......... 53% 116M 1s +2024-04-11T17:58:51Z #15 2.102 68250K .......... .......... .......... .......... .......... 53% 111M 1s +2024-04-11T17:58:51Z #15 2.102 68300K .......... .......... .......... .......... .......... 53% 36.2M 1s +2024-04-11T17:58:51Z #15 2.103 68350K .......... .......... .......... .......... .......... 53% 34.5M 1s +2024-04-11T17:58:51Z #15 2.105 68400K .......... .......... .......... .......... .......... 53% 32.4M 1s +2024-04-11T17:58:51Z #15 2.106 68450K .......... .......... .......... .......... .......... 54% 68.1M 1s +2024-04-11T17:58:51Z #15 2.110 68500K .......... .......... .......... .......... .......... 54% 115M 1s +2024-04-11T17:58:51Z #15 2.110 68550K .......... .......... .......... .......... .......... 54% 118M 1s +2024-04-11T17:58:51Z #15 2.110 68600K .......... .......... .......... .......... .......... 54% 99.8M 1s +2024-04-11T17:58:51Z #15 2.110 68650K .......... .......... .......... .......... .......... 54% 110M 1s +2024-04-11T17:58:51Z #15 2.110 68700K .......... .......... .......... .......... .......... 54% 126M 1s +2024-04-11T17:58:51Z #15 2.110 68750K .......... .......... .......... .......... .......... 54% 129M 1s +2024-04-11T17:58:51Z #15 2.110 68800K .......... .......... .......... .......... .......... 54% 98.8M 1s +2024-04-11T17:58:51Z #15 2.110 68850K .......... .......... .......... .......... .......... 54% 16.5M 1s +2024-04-11T17:58:51Z #15 2.118 68900K .......... .......... .......... .......... .......... 54% 116M 1s +2024-04-11T17:58:51Z #15 2.118 68950K .......... .......... .......... .......... .......... 54% 122M 1s +2024-04-11T17:58:51Z #15 2.118 69000K .......... .......... .......... .......... .......... 54% 102M 1s +2024-04-11T17:58:51Z #15 2.118 69050K .......... .......... .......... .......... .......... 54% 113M 1s +2024-04-11T17:58:51Z #15 2.118 69100K .......... .......... .......... .......... .......... 54% 122M 1s +2024-04-11T17:58:51Z #15 2.118 69150K .......... .......... .......... .......... .......... 54% 123M 1s +2024-04-11T17:58:51Z #15 2.118 69200K .......... .......... .......... .......... .......... 54% 106M 1s +2024-04-11T17:58:51Z #15 2.118 69250K .......... .......... .......... .......... .......... 54% 141M 1s +2024-04-11T17:58:51Z #15 2.118 69300K .......... .......... .......... .......... .......... 54% 123M 1s +2024-04-11T17:58:51Z #15 2.118 69350K .......... .......... .......... .......... .......... 54% 107M 1s +2024-04-11T17:58:51Z #15 2.118 69400K .......... .......... .......... .......... .......... 54% 132M 1s +2024-04-11T17:58:51Z #15 2.118 69450K .......... .......... .......... .......... .......... 54% 128M 1s +2024-04-11T17:58:51Z #15 2.118 69500K .......... .......... .......... .......... .......... 54% 17.9M 1s +2024-04-11T17:58:51Z #15 2.122 69550K .......... .......... .......... .......... .......... 54% 98.8M 1s +2024-04-11T17:58:51Z #15 2.122 69600K .......... .......... .......... .......... .......... 54% 132M 1s +2024-04-11T17:58:51Z #15 2.122 69650K .......... .......... .......... .......... .......... 54% 110M 1s +2024-04-11T17:58:51Z #15 2.122 69700K .......... .......... .......... .......... .......... 55% 119M 1s +2024-04-11T17:58:51Z #15 2.126 69750K .......... .......... .......... .......... .......... 55% 131M 1s +2024-04-11T17:58:51Z #15 2.126 69800K .......... .......... .......... .......... .......... 55% 131M 1s +2024-04-11T17:58:51Z #15 2.126 69850K .......... .......... .......... .......... .......... 55% 129M 1s +2024-04-11T17:58:51Z #15 2.126 69900K .......... .......... .......... .......... .......... 55% 102M 1s +2024-04-11T17:58:51Z #15 2.126 69950K .......... .......... .......... .......... .......... 55% 111M 1s +2024-04-11T17:58:51Z #15 2.126 70000K .......... .......... .......... .......... .......... 55% 166M 1s +2024-04-11T17:58:51Z #15 2.126 70050K .......... .......... .......... .......... .......... 55% 122M 1s +2024-04-11T17:58:51Z #15 2.126 70100K .......... .......... .......... .......... .......... 55% 111M 1s +2024-04-11T17:58:51Z #15 2.126 70150K .......... .......... .......... .......... .......... 55% 124M 1s +2024-04-11T17:58:51Z #15 2.126 70200K .......... .......... .......... .......... .......... 55% 89.2M 1s +2024-04-11T17:58:51Z #15 2.130 70250K .......... .......... .......... .......... .......... 55% 135M 1s +2024-04-11T17:58:51Z #15 2.130 70300K .......... .......... .......... .......... .......... 55% 109M 1s +2024-04-11T17:58:51Z #15 2.130 70350K .......... .......... .......... .......... .......... 55% 126M 1s +2024-04-11T17:58:51Z #15 2.130 70400K .......... .......... .......... .......... .......... 55% 135M 1s +2024-04-11T17:58:51Z #15 2.130 70450K .......... .......... .......... .......... .......... 55% 105M 1s +2024-04-11T17:58:51Z #15 2.130 70500K .......... .......... .......... .......... .......... 55% 116M 1s +2024-04-11T17:58:51Z #15 2.130 70550K .......... .......... .......... .......... .......... 55% 132M 1s +2024-04-11T17:58:51Z #15 2.130 70600K .......... .......... .......... .......... .......... 55% 121M 1s +2024-04-11T17:58:51Z #15 2.130 70650K .......... .......... .......... .......... .......... 55% 111M 1s +2024-04-11T17:58:51Z #15 2.130 70700K .......... .......... .......... .......... .......... 55% 66.0M 1s +2024-04-11T17:58:51Z #15 2.134 70750K .......... .......... .......... .......... .......... 55% 135M 1s +2024-04-11T17:58:51Z #15 2.134 70800K .......... .......... .......... .......... .......... 55% 133M 1s +2024-04-11T17:58:51Z #15 2.134 70850K .......... .......... .......... .......... .......... 55% 90.8M 1s +2024-04-11T17:58:51Z #15 2.134 70900K .......... .......... .......... .......... .......... 55% 132M 1s +2024-04-11T17:58:51Z #15 2.134 70950K .......... .......... .......... .......... .......... 56% 112M 1s +2024-04-11T17:58:51Z #15 2.134 71000K .......... .......... .......... .......... .......... 56% 146M 1s +2024-04-11T17:58:51Z #15 2.134 71050K .......... .......... .......... .......... .......... 56% 125M 1s +2024-04-11T17:58:51Z #15 2.134 71100K .......... .......... .......... .......... .......... 56% 129M 1s +2024-04-11T17:58:51Z #15 2.134 71150K .......... .......... .......... .......... .......... 56% 64.0M 1s +2024-04-11T17:58:51Z #15 2.134 71200K .......... .......... .......... .......... .......... 56% 18.1M 1s +2024-04-11T17:58:51Z #15 2.137 71250K .......... .......... .......... .......... .......... 56% 35.8M 1s +2024-04-11T17:58:51Z #15 2.139 71300K .......... .......... .......... .......... .......... 56% 21.0M 1s +2024-04-11T17:58:51Z #15 2.146 71350K .......... .......... .......... .......... .......... 56% 149M 1s +2024-04-11T17:58:51Z #15 2.146 71400K .......... .......... .......... .......... .......... 56% 111M 1s +2024-04-11T17:58:51Z #15 2.146 71450K .......... .......... .......... .......... .......... 56% 118M 1s +2024-04-11T17:58:51Z #15 2.146 71500K .......... .......... .......... .......... .......... 56% 129M 1s +2024-04-11T17:58:51Z #15 2.146 71550K .......... .......... .......... .......... .......... 56% 124M 1s +2024-04-11T17:58:51Z #15 2.146 71600K .......... .......... .......... .......... .......... 56% 137M 1s +2024-04-11T17:58:51Z #15 2.146 71650K .......... .......... .......... .......... .......... 56% 134M 1s +2024-04-11T17:58:51Z #15 2.146 71700K .......... .......... .......... .......... .......... 56% 129M 1s +2024-04-11T17:58:51Z #15 2.146 71750K .......... .......... .......... .......... .......... 56% 107M 1s +2024-04-11T17:58:51Z #15 2.146 71800K .......... .......... .......... .......... .......... 56% 122M 1s +2024-04-11T17:58:51Z #15 2.146 71850K .......... .......... .......... .......... .......... 56% 138M 1s +2024-04-11T17:58:51Z #15 2.146 71900K .......... .......... .......... .......... .......... 56% 125M 1s +2024-04-11T17:58:51Z #15 2.146 71950K .......... .......... .......... .......... .......... 56% 12.2M 1s +2024-04-11T17:58:51Z #15 2.151 72000K .......... .......... .......... .......... .......... 56% 43.8M 1s +2024-04-11T17:58:51Z #15 2.151 72050K .......... .......... .......... .......... .......... 56% 41.1M 1s +2024-04-11T17:58:51Z #15 2.154 72100K .......... .......... .......... .......... .......... 56% 73.9M 1s +2024-04-11T17:58:51Z #15 2.154 72150K .......... .......... .......... .......... .......... 56% 102M 1s +2024-04-11T17:58:51Z #15 2.154 72200K .......... .......... .......... .......... .......... 56% 153M 1s +2024-04-11T17:58:51Z #15 2.154 72250K .......... .......... .......... .......... .......... 57% 122M 1s +2024-04-11T17:58:51Z #15 2.154 72300K .......... .......... .......... .......... .......... 57% 19.0M 1s +2024-04-11T17:58:51Z #15 2.157 72350K .......... .......... .......... .......... .......... 57% 105M 1s +2024-04-11T17:58:51Z #15 2.157 72400K .......... .......... .......... .......... .......... 57% 58.4M 1s +2024-04-11T17:58:51Z #15 2.158 72450K .......... .......... .......... .......... .......... 57% 62.1M 1s +2024-04-11T17:58:51Z #15 2.162 72500K .......... .......... .......... .......... .......... 57% 102M 1s +2024-04-11T17:58:51Z #15 2.162 72550K .......... .......... .......... .......... .......... 57% 106M 1s +2024-04-11T17:58:51Z #15 2.162 72600K .......... .......... .......... .......... .......... 57% 137M 1s +2024-04-11T17:58:51Z #15 2.162 72650K .......... .......... .......... .......... .......... 57% 119M 1s +2024-04-11T17:58:51Z #15 2.162 72700K .......... .......... .......... .......... .......... 57% 130M 1s +2024-04-11T17:58:51Z #15 2.162 72750K .......... .......... .......... .......... .......... 57% 128M 1s +2024-04-11T17:58:51Z #15 2.162 72800K .......... .......... .......... .......... .......... 57% 111M 1s +2024-04-11T17:58:51Z #15 2.162 72850K .......... .......... .......... .......... .......... 57% 144M 1s +2024-04-11T17:58:51Z #15 2.162 72900K .......... .......... .......... .......... .......... 57% 28.1M 1s +2024-04-11T17:58:51Z #15 2.163 72950K .......... .......... .......... .......... .......... 57% 24.4M 1s +2024-04-11T17:58:51Z #15 2.167 73000K .......... .......... .......... .......... .......... 57% 106M 1s +2024-04-11T17:58:51Z #15 2.167 73050K .......... .......... .......... .......... .......... 57% 134M 1s +2024-04-11T17:58:51Z #15 2.167 73100K .......... .......... .......... .......... .......... 57% 113M 1s +2024-04-11T17:58:51Z #15 2.167 73150K .......... .......... .......... .......... .......... 57% 138M 1s +2024-04-11T17:58:51Z #15 2.167 73200K .......... .......... .......... .......... .......... 57% 46.3M 1s +2024-04-11T17:58:51Z #15 2.168 73250K .......... .......... .......... .......... .......... 57% 31.4M 1s +2024-04-11T17:58:51Z #15 2.170 73300K .......... .......... .......... .......... .......... 57% 17.8M 1s +2024-04-11T17:58:51Z #15 2.178 73350K .......... .......... .......... .......... .......... 57% 70.0M 1s +2024-04-11T17:58:51Z #15 2.178 73400K .......... .......... .......... .......... .......... 57% 117M 1s +2024-04-11T17:58:51Z #15 2.178 73450K .......... .......... .......... .......... .......... 57% 124M 1s +2024-04-11T17:58:51Z #15 2.178 73500K .......... .......... .......... .......... .......... 58% 112M 1s +2024-04-11T17:58:51Z #15 2.178 73550K .......... .......... .......... .......... .......... 58% 120M 1s +2024-04-11T17:58:51Z #15 2.178 73600K .......... .......... .......... .......... .......... 58% 122M 1s +2024-04-11T17:58:51Z #15 2.178 73650K .......... .......... .......... .......... .......... 58% 124M 1s +2024-04-11T17:58:51Z #15 2.178 73700K .......... .......... .......... .......... .......... 58% 79.6M 1s +2024-04-11T17:58:51Z #15 2.178 73750K .......... .......... .......... .......... .......... 58% 121M 1s +2024-04-11T17:58:51Z #15 2.178 73800K .......... .......... .......... .......... .......... 58% 115M 1s +2024-04-11T17:58:51Z #15 2.178 73850K .......... .......... .......... .......... .......... 58% 116M 1s +2024-04-11T17:58:51Z #15 2.178 73900K .......... .......... .......... .......... .......... 58% 110M 1s +2024-04-11T17:58:51Z #15 2.178 73950K .......... .......... .......... .......... .......... 58% 18.6M 1s +2024-04-11T17:58:51Z #15 2.181 74000K .......... .......... .......... .......... .......... 58% 125M 1s +2024-04-11T17:58:51Z #15 2.181 74050K .......... .......... .......... .......... .......... 58% 50.1M 1s +2024-04-11T17:58:51Z #15 2.186 74100K .......... .......... .......... .......... .......... 58% 140M 1s +2024-04-11T17:58:51Z #15 2.186 74150K .......... .......... .......... .......... .......... 58% 128M 1s +2024-04-11T17:58:51Z #15 2.186 74200K .......... .......... .......... .......... .......... 58% 140M 1s +2024-04-11T17:58:51Z #15 2.186 74250K .......... .......... .......... .......... .......... 58% 101M 1s +2024-04-11T17:58:51Z #15 2.186 74300K .......... .......... .......... .......... .......... 58% 132M 1s +2024-04-11T17:58:51Z #15 2.186 74350K .......... .......... .......... .......... .......... 58% 123M 1s +2024-04-11T17:58:51Z #15 2.186 74400K .......... .......... .......... .......... .......... 58% 127M 1s +2024-04-11T17:58:51Z #15 2.186 74450K .......... .......... .......... .......... .......... 58% 157M 1s +2024-04-11T17:58:51Z #15 2.186 74500K .......... .......... .......... .......... .......... 58% 115M 1s +2024-04-11T17:58:51Z #15 2.186 74550K .......... .......... .......... .......... .......... 58% 125M 1s +2024-04-11T17:58:51Z #15 2.186 74600K .......... .......... .......... .......... .......... 58% 76.9M 1s +2024-04-11T17:58:51Z #15 2.186 74650K .......... .......... .......... .......... .......... 58% 34.6M 1s +2024-04-11T17:58:51Z #15 2.188 74700K .......... .......... .......... .......... .......... 58% 41.7M 1s +2024-04-11T17:58:51Z #15 2.189 74750K .......... .......... .......... .......... .......... 58% 45.9M 1s +2024-04-11T17:58:51Z #15 2.190 74800K .......... .......... .......... .......... .......... 59% 75.3M 1s +2024-04-11T17:58:51Z #15 2.190 74850K .......... .......... .......... .......... .......... 59% 107M 1s +2024-04-11T17:58:51Z #15 2.191 74900K .......... .......... .......... .......... .......... 59% 128M 1s +2024-04-11T17:58:51Z #15 2.191 74950K .......... .......... .......... .......... .......... 59% 53.5M 1s +2024-04-11T17:58:51Z #15 2.195 75000K .......... .......... .......... .......... .......... 59% 55.3M 1s +2024-04-11T17:58:51Z #15 2.195 75050K .......... .......... .......... .......... .......... 59% 45.5M 1s +2024-04-11T17:58:51Z #15 2.195 75100K .......... .......... .......... .......... .......... 59% 33.4M 1s +2024-04-11T17:58:51Z #15 2.196 75150K .......... .......... .......... .......... .......... 59% 34.3M 1s +2024-04-11T17:58:51Z #15 2.198 75200K .......... .......... .......... .......... .......... 59% 65.2M 1s +2024-04-11T17:58:51Z #15 2.198 75250K .......... .......... .......... .......... .......... 59% 105M 1s +2024-04-11T17:58:51Z #15 2.198 75300K .......... .......... .......... .......... .......... 59% 128M 1s +2024-04-11T17:58:51Z #15 2.199 75350K .......... .......... .......... .......... .......... 59% 131M 1s +2024-04-11T17:58:51Z #15 2.199 75400K .......... .......... .......... .......... .......... 59% 101M 1s +2024-04-11T17:58:51Z #15 2.199 75450K .......... .......... .......... .......... .......... 59% 114M 1s +2024-04-11T17:58:51Z #15 2.200 75500K .......... .......... .......... .......... .......... 59% 137M 1s +2024-04-11T17:58:51Z #15 2.200 75550K .......... .......... .......... .......... .......... 59% 131M 1s +2024-04-11T17:58:51Z #15 2.201 75600K .......... .......... .......... .......... .......... 59% 109M 1s +2024-04-11T17:58:51Z #15 2.201 75650K .......... .......... .......... .......... .......... 59% 113M 1s +2024-04-11T17:58:51Z #15 2.201 75700K .......... .......... .......... .......... .......... 59% 123M 1s +2024-04-11T17:58:51Z #15 2.202 75750K .......... .......... .......... .......... .......... 59% 121M 1s +2024-04-11T17:58:51Z #15 2.202 75800K .......... .......... .......... .......... .......... 59% 102M 1s +2024-04-11T17:58:51Z #15 2.203 75850K .......... .......... .......... .......... .......... 59% 135M 1s +2024-04-11T17:58:51Z #15 2.210 75900K .......... .......... .......... .......... .......... 59% 160M 1s +2024-04-11T17:58:51Z #15 2.210 75950K .......... .......... .......... .......... .......... 59% 130M 1s +2024-04-11T17:58:51Z #15 2.210 76000K .......... .......... .......... .......... .......... 59% 153M 1s +2024-04-11T17:58:51Z #15 2.210 76050K .......... .......... .......... .......... .......... 60% 168M 1s +2024-04-11T17:58:51Z #15 2.210 76100K .......... .......... .......... .......... .......... 60% 141M 1s +2024-04-11T17:58:51Z #15 2.210 76150K .......... .......... .......... .......... .......... 60% 166M 1s +2024-04-11T17:58:51Z #15 2.210 76200K .......... .......... .......... .......... .......... 60% 132M 1s +2024-04-11T17:58:51Z #15 2.210 76250K .......... .......... .......... .......... .......... 60% 132M 1s +2024-04-11T17:58:51Z #15 2.210 76300K .......... .......... .......... .......... .......... 60% 166M 1s +2024-04-11T17:58:51Z #15 2.210 76350K .......... .......... .......... .......... .......... 60% 136M 1s +2024-04-11T17:58:51Z #15 2.210 76400K .......... .......... .......... .......... .......... 60% 136M 1s +2024-04-11T17:58:51Z #15 2.210 76450K .......... .......... .......... .......... .......... 60% 182M 1s +2024-04-11T17:58:51Z #15 2.210 76500K .......... .......... .......... .......... .......... 60% 155M 1s +2024-04-11T17:58:51Z #15 2.210 76550K .......... .......... .......... .......... .......... 60% 127M 1s +2024-04-11T17:58:51Z #15 2.210 76600K .......... .......... .......... .......... .......... 60% 172M 1s +2024-04-11T17:58:51Z #15 2.210 76650K .......... .......... .......... .......... .......... 60% 138M 1s +2024-04-11T17:58:51Z #15 2.210 76700K .......... .......... .......... .......... .......... 60% 167M 1s +2024-04-11T17:58:51Z #15 2.210 76750K .......... .......... .......... .......... .......... 60% 154M 1s +2024-04-11T17:58:51Z #15 2.210 76800K .......... .......... .......... .......... .......... 60% 141M 1s +2024-04-11T17:58:51Z #15 2.210 76850K .......... .......... .......... .......... .......... 60% 160M 1s +2024-04-11T17:58:51Z #15 2.210 76900K .......... .......... .......... .......... .......... 60% 114M 1s +2024-04-11T17:58:51Z #15 2.210 76950K .......... .......... .......... .......... .......... 60% 145M 1s +2024-04-11T17:58:51Z #15 2.211 77000K .......... .......... .......... .......... .......... 60% 115M 1s +2024-04-11T17:58:51Z #15 2.211 77050K .......... .......... .......... .......... .......... 60% 138M 1s +2024-04-11T17:58:51Z #15 2.211 77100K .......... .......... .......... .......... .......... 60% 141M 1s +2024-04-11T17:58:51Z #15 2.212 77150K .......... .......... .......... .......... .......... 60% 139M 1s +2024-04-11T17:58:51Z #15 2.212 77200K .......... .......... .......... .......... .......... 60% 146M 1s +2024-04-11T17:58:51Z #15 2.213 77250K .......... .......... .......... .......... .......... 60% 127M 1s +2024-04-11T17:58:51Z #15 2.213 77300K .......... .......... .......... .......... .......... 61% 118M 1s +2024-04-11T17:58:51Z #15 2.214 77350K .......... .......... .......... .......... .......... 61% 130M 1s +2024-04-11T17:58:51Z #15 2.214 77400K .......... .......... .......... .......... .......... 61% 99.3M 1s +2024-04-11T17:58:51Z #15 2.214 77450K .......... .......... .......... .......... .......... 61% 129M 1s +2024-04-11T17:58:51Z #15 2.215 77500K .......... .......... .......... .......... .......... 61% 120M 1s +2024-04-11T17:58:51Z #15 2.215 77550K .......... .......... .......... .......... .......... 61% 126M 1s +2024-04-11T17:58:51Z #15 2.215 77600K .......... .......... .......... .......... .......... 61% 144M 1s +2024-04-11T17:58:51Z #15 2.216 77650K .......... .......... .......... .......... .......... 61% 104M 1s +2024-04-11T17:58:51Z #15 2.216 77700K .......... .......... .......... .......... .......... 61% 132M 1s +2024-04-11T17:58:51Z #15 2.216 77750K .......... .......... .......... .......... .......... 61% 136M 1s +2024-04-11T17:58:51Z #15 2.217 77800K .......... .......... .......... .......... .......... 61% 132M 1s +2024-04-11T17:58:51Z #15 2.217 77850K .......... .......... .......... .......... .......... 61% 126M 1s +2024-04-11T17:58:51Z #15 2.217 77900K .......... .......... .......... .......... .......... 61% 12.0M 1s +2024-04-11T17:58:51Z #15 2.222 77950K .......... .......... .......... .......... .......... 61% 87.1M 1s +2024-04-11T17:58:51Z #15 2.222 78000K .......... .......... .......... .......... .......... 61% 115M 1s +2024-04-11T17:58:51Z #15 2.223 78050K .......... .......... .......... .......... .......... 61% 126M 1s +2024-04-11T17:58:51Z #15 2.223 78100K .......... .......... .......... .......... .......... 61% 129M 1s +2024-04-11T17:58:51Z #15 2.223 78150K .......... .......... .......... .......... .......... 61% 115M 1s +2024-04-11T17:58:51Z #15 2.224 78200K .......... .......... .......... .......... .......... 61% 109M 1s +2024-04-11T17:58:51Z #15 2.224 78250K .......... .......... .......... .......... .......... 61% 138M 1s +2024-04-11T17:58:51Z #15 2.224 78300K .......... .......... .......... .......... .......... 61% 119M 1s +2024-04-11T17:58:51Z #15 2.225 78350K .......... .......... .......... .......... .......... 61% 144M 1s +2024-04-11T17:58:51Z #15 2.225 78400K .......... .......... .......... .......... .......... 61% 109M 1s +2024-04-11T17:58:51Z #15 2.226 78450K .......... .......... .......... .......... .......... 61% 11.0M 1s +2024-04-11T17:58:51Z #15 2.230 78500K .......... .......... .......... .......... .......... 61% 128M 1s +2024-04-11T17:58:51Z #15 2.230 78550K .......... .......... .......... .......... .......... 61% 94.2M 1s +2024-04-11T17:58:51Z #15 2.231 78600K .......... .......... .......... .......... .......... 62% 122M 1s +2024-04-11T17:58:51Z #15 2.232 78650K .......... .......... .......... .......... .......... 62% 119M 1s +2024-04-11T17:58:51Z #15 2.232 78700K .......... .......... .......... .......... .......... 62% 128M 1s +2024-04-11T17:58:51Z #15 2.233 78750K .......... .......... .......... .......... .......... 62% 147M 1s +2024-04-11T17:58:51Z #15 2.233 78800K .......... .......... .......... .......... .......... 62% 116M 1s +2024-04-11T17:58:51Z #15 2.233 78850K .......... .......... .......... .......... .......... 62% 126M 1s +2024-04-11T17:58:51Z #15 2.233 78900K .......... .......... .......... .......... .......... 62% 105M 1s +2024-04-11T17:58:51Z #15 2.234 78950K .......... .......... .......... .......... .......... 62% 108M 1s +2024-04-11T17:58:51Z #15 2.234 79000K .......... .......... .......... .......... .......... 62% 149M 1s +2024-04-11T17:58:51Z #15 2.235 79050K .......... .......... .......... .......... .......... 62% 141M 1s +2024-04-11T17:58:51Z #15 2.235 79100K .......... .......... .......... .......... .......... 62% 108M 1s +2024-04-11T17:58:51Z #15 2.236 79150K .......... .......... .......... .......... .......... 62% 125M 1s +2024-04-11T17:58:51Z #15 2.236 79200K .......... .......... .......... .......... .......... 62% 129M 1s +2024-04-11T17:58:51Z #15 2.236 79250K .......... .......... .......... .......... .......... 62% 130M 1s +2024-04-11T17:58:51Z #15 2.237 79300K .......... .......... .......... .......... .......... 62% 147M 1s +2024-04-11T17:58:51Z #15 2.237 79350K .......... .......... .......... .......... .......... 62% 130M 1s +2024-04-11T17:58:51Z #15 2.237 79400K .......... .......... .......... .......... .......... 62% 114M 1s +2024-04-11T17:58:51Z #15 2.238 79450K .......... .......... .......... .......... .......... 62% 11.1M 1s +2024-04-11T17:58:51Z #15 2.245 79500K .......... .......... .......... .......... .......... 62% 152M 1s +2024-04-11T17:58:51Z #15 2.245 79550K .......... .......... .......... .......... .......... 62% 135M 1s +2024-04-11T17:58:51Z #15 2.245 79600K .......... .......... .......... .......... .......... 62% 148M 1s +2024-04-11T17:58:51Z #15 2.245 79650K .......... .......... .......... .......... .......... 62% 150M 1s +2024-04-11T17:58:51Z #15 2.245 79700K .......... .......... .......... .......... .......... 62% 117M 1s +2024-04-11T17:58:51Z #15 2.245 79750K .......... .......... .......... .......... .......... 62% 151M 1s +2024-04-11T17:58:51Z #15 2.245 79800K .......... .......... .......... .......... .......... 62% 149M 1s +2024-04-11T17:58:51Z #15 2.245 79850K .......... .......... .......... .......... .......... 63% 126M 1s +2024-04-11T17:58:51Z #15 2.245 79900K .......... .......... .......... .......... .......... 63% 112M 1s +2024-04-11T17:58:51Z #15 2.245 79950K .......... .......... .......... .......... .......... 63% 131M 1s +2024-04-11T17:58:51Z #15 2.246 80000K .......... .......... .......... .......... .......... 63% 115M 1s +2024-04-11T17:58:51Z #15 2.246 80050K .......... .......... .......... .......... .......... 63% 119M 1s +2024-04-11T17:58:51Z #15 2.247 80100K .......... .......... .......... .......... .......... 63% 119M 1s +2024-04-11T17:58:51Z #15 2.247 80150K .......... .......... .......... .......... .......... 63% 123M 1s +2024-04-11T17:58:51Z #15 2.247 80200K .......... .......... .......... .......... .......... 63% 122M 1s +2024-04-11T17:58:51Z #15 2.248 80250K .......... .......... .......... .......... .......... 63% 108M 1s +2024-04-11T17:58:51Z #15 2.248 80300K .......... .......... .......... .......... .......... 63% 125M 1s +2024-04-11T17:58:51Z #15 2.249 80350K .......... .......... .......... .......... .......... 63% 91.9M 1s +2024-04-11T17:58:51Z #15 2.249 80400K .......... .......... .......... .......... .......... 63% 124M 1s +2024-04-11T17:58:51Z #15 2.249 80450K .......... .......... .......... .......... .......... 63% 10.9M 1s +2024-04-11T17:58:51Z #15 2.254 80500K .......... .......... .......... .......... .......... 63% 114M 1s +2024-04-11T17:58:51Z #15 2.254 80550K .......... .......... .......... .......... .......... 63% 118M 1s +2024-04-11T17:58:51Z #15 2.255 80600K .......... .......... .......... .......... .......... 63% 100M 1s +2024-04-11T17:58:51Z #15 2.256 80650K .......... .......... .......... .......... .......... 63% 136M 1s +2024-04-11T17:58:51Z #15 2.257 80700K .......... .......... .......... .......... .......... 63% 142M 1s +2024-04-11T17:58:51Z #15 2.257 80750K .......... .......... .......... .......... .......... 63% 118M 1s +2024-04-11T17:58:51Z #15 2.257 80800K .......... .......... .......... .......... .......... 63% 151M 1s +2024-04-11T17:58:51Z #15 2.257 80850K .......... .......... .......... .......... .......... 63% 109M 1s +2024-04-11T17:58:51Z #15 2.257 80900K .......... .......... .......... .......... .......... 63% 126M 1s +2024-04-11T17:58:51Z #15 2.258 80950K .......... .......... .......... .......... .......... 63% 105M 1s +2024-04-11T17:58:51Z #15 2.258 81000K .......... .......... .......... .......... .......... 63% 162M 1s +2024-04-11T17:58:51Z #15 2.258 81050K .......... .......... .......... .......... .......... 63% 128M 1s +2024-04-11T17:58:51Z #15 2.259 81100K .......... .......... .......... .......... .......... 64% 124M 0s +2024-04-11T17:58:51Z #15 2.259 81150K .......... .......... .......... .......... .......... 64% 112M 0s +2024-04-11T17:58:51Z #15 2.260 81200K .......... .......... .......... .......... .......... 64% 156M 0s +2024-04-11T17:58:51Z #15 2.260 81250K .......... .......... .......... .......... .......... 64% 132M 0s +2024-04-11T17:58:51Z #15 2.260 81300K .......... .......... .......... .......... .......... 64% 135M 0s +2024-04-11T17:58:51Z #15 2.261 81350K .......... .......... .......... .......... .......... 64% 121M 0s +2024-04-11T17:58:51Z #15 2.261 81400K .......... .......... .......... .......... .......... 64% 128M 0s +2024-04-11T17:58:51Z #15 2.266 81450K .......... .......... .......... .......... .......... 64% 164M 0s +2024-04-11T17:58:51Z #15 2.266 81500K .......... .......... .......... .......... .......... 64% 10.8M 0s +2024-04-11T17:58:51Z #15 2.266 81550K .......... .......... .......... .......... .......... 64% 161M 0s +2024-04-11T17:58:51Z #15 2.266 81600K .......... .......... .......... .......... .......... 64% 154M 0s +2024-04-11T17:58:51Z #15 2.267 81650K .......... .......... .......... .......... .......... 64% 134M 0s +2024-04-11T17:58:51Z #15 2.267 81700K .......... .......... .......... .......... .......... 64% 169M 0s +2024-04-11T17:58:51Z #15 2.267 81750K .......... .......... .......... .......... .......... 64% 149M 0s +2024-04-11T17:58:51Z #15 2.268 81800K .......... .......... .......... .......... .......... 64% 125M 0s +2024-04-11T17:58:51Z #15 2.268 81850K .......... .......... .......... .......... .......... 64% 150M 0s +2024-04-11T17:58:51Z #15 2.268 81900K .......... .......... .......... .......... .......... 64% 146M 0s +2024-04-11T17:58:51Z #15 2.269 81950K .......... .......... .......... .......... .......... 64% 147M 0s +2024-04-11T17:58:51Z #15 2.269 82000K .......... .......... .......... .......... .......... 64% 132M 0s +2024-04-11T17:58:51Z #15 2.270 82050K .......... .......... .......... .......... .......... 64% 97.3M 0s +2024-04-11T17:58:51Z #15 2.270 82100K .......... .......... .......... .......... .......... 64% 151M 0s +2024-04-11T17:58:51Z #15 2.270 82150K .......... .......... .......... .......... .......... 64% 149M 0s +2024-04-11T17:58:51Z #15 2.271 82200K .......... .......... .......... .......... .......... 64% 133M 0s +2024-04-11T17:58:51Z #15 2.271 82250K .......... .......... .......... .......... .......... 64% 173M 0s +2024-04-11T17:58:51Z #15 2.272 82300K .......... .......... .......... .......... .......... 64% 133M 0s +2024-04-11T17:58:51Z #15 2.272 82350K .......... .......... .......... .......... .......... 64% 135M 0s +2024-04-11T17:58:51Z #15 2.272 82400K .......... .......... .......... .......... .......... 65% 168M 0s +2024-04-11T17:58:51Z #15 2.273 82450K .......... .......... .......... .......... .......... 65% 147M 0s +2024-04-11T17:58:51Z #15 2.273 82500K .......... .......... .......... .......... .......... 65% 159M 0s +2024-04-11T17:58:51Z #15 2.273 82550K .......... .......... .......... .......... .......... 65% 142M 0s +2024-04-11T17:58:51Z #15 2.274 82600K .......... .......... .......... .......... .......... 65% 144M 0s +2024-04-11T17:58:51Z #15 2.274 82650K .......... .......... .......... .......... .......... 65% 11.2M 0s +2024-04-11T17:58:51Z #15 2.278 82700K .......... .......... .......... .......... .......... 65% 123M 0s +2024-04-11T17:58:51Z #15 2.278 82750K .......... .......... .......... .......... .......... 65% 164M 0s +2024-04-11T17:58:51Z #15 2.279 82800K .......... .......... .......... .......... .......... 65% 148M 0s +2024-04-11T17:58:51Z #15 2.280 82850K .......... .......... .......... .......... .......... 65% 162M 0s +2024-04-11T17:58:51Z #15 2.280 82900K .......... .......... .......... .......... .......... 65% 91.7M 0s +2024-04-11T17:58:51Z #15 2.280 82950K .......... .......... .......... .......... .......... 65% 87.5M 0s +2024-04-11T17:58:51Z #15 2.281 83000K .......... .......... .......... .......... .......... 65% 91.6M 0s +2024-04-11T17:58:51Z #15 2.281 83050K .......... .......... .......... .......... .......... 65% 92.2M 0s +2024-04-11T17:58:51Z #15 2.282 83100K .......... .......... .......... .......... .......... 65% 114M 0s +2024-04-11T17:58:51Z #15 2.282 83150K .......... .......... .......... .......... .......... 65% 157M 0s +2024-04-11T17:58:51Z #15 2.283 83200K .......... .......... .......... .......... .......... 65% 133M 0s +2024-04-11T17:58:51Z #15 2.283 83250K .......... .......... .......... .......... .......... 65% 161M 0s +2024-04-11T17:58:51Z #15 2.283 83300K .......... .......... .......... .......... .......... 65% 140M 0s +2024-04-11T17:58:51Z #15 2.284 83350K .......... .......... .......... .......... .......... 65% 142M 0s +2024-04-11T17:58:51Z #15 2.284 83400K .......... .......... .......... .......... .......... 65% 151M 0s +2024-04-11T17:58:51Z #15 2.284 83450K .......... .......... .......... .......... .......... 65% 126M 0s +2024-04-11T17:58:51Z #15 2.284 83500K .......... .......... .......... .......... .......... 65% 151M 0s +2024-04-11T17:58:51Z #15 2.285 83550K .......... .......... .......... .......... .......... 65% 146M 0s +2024-04-11T17:58:51Z #15 2.285 83600K .......... .......... .......... .......... .......... 65% 157M 0s +2024-04-11T17:58:51Z #15 2.287 83650K .......... .......... .......... .......... .......... 66% 152M 0s +2024-04-11T17:58:51Z #15 2.287 83700K .......... .......... .......... .......... .......... 66% 10.9M 0s +2024-04-11T17:58:51Z #15 2.290 83750K .......... .......... .......... .......... .......... 66% 164M 0s +2024-04-11T17:58:51Z #15 2.290 83800K .......... .......... .......... .......... .......... 66% 134M 0s +2024-04-11T17:58:51Z #15 2.291 83850K .......... .......... .......... .......... .......... 66% 152M 0s +2024-04-11T17:58:51Z #15 2.292 83900K .......... .......... .......... .......... .......... 66% 158M 0s +2024-04-11T17:58:51Z #15 2.292 83950K .......... .......... .......... .......... .......... 66% 127M 0s +2024-04-11T17:58:51Z #15 2.292 84000K .......... .......... .......... .......... .......... 66% 144M 0s +2024-04-11T17:58:51Z #15 2.292 84050K .......... .......... .......... .......... .......... 66% 157M 0s +2024-04-11T17:58:51Z #15 2.292 84100K .......... .......... .......... .......... .......... 66% 164M 0s +2024-04-11T17:58:51Z #15 2.293 84150K .......... .......... .......... .......... .......... 66% 140M 0s +2024-04-11T17:58:51Z #15 2.293 84200K .......... .......... .......... .......... .......... 66% 162M 0s +2024-04-11T17:58:51Z #15 2.293 84250K .......... .......... .......... .......... .......... 66% 158M 0s +2024-04-11T17:58:51Z #15 2.294 84300K .......... .......... .......... .......... .......... 66% 111M 0s +2024-04-11T17:58:51Z #15 2.294 84350K .......... .......... .......... .......... .......... 66% 156M 0s +2024-04-11T17:58:51Z #15 2.294 84400K .......... .......... .......... .......... .......... 66% 153M 0s +2024-04-11T17:58:51Z #15 2.295 84450K .......... .......... .......... .......... .......... 66% 154M 0s +2024-04-11T17:58:51Z #15 2.295 84500K .......... .......... .......... .......... .......... 66% 131M 0s +2024-04-11T17:58:51Z #15 2.296 84550K .......... .......... .......... .......... .......... 66% 149M 0s +2024-04-11T17:58:51Z #15 2.296 84600K .......... .......... .......... .......... .......... 66% 158M 0s +2024-04-11T17:58:51Z #15 2.296 84650K .......... .......... .......... .......... .......... 66% 168M 0s +2024-04-11T17:58:51Z #15 2.297 84700K .......... .......... .......... .......... .......... 66% 122M 0s +2024-04-11T17:58:51Z #15 2.297 84750K .......... .......... .......... .......... .......... 66% 167M 0s +2024-04-11T17:58:51Z #15 2.297 84800K .......... .......... .......... .......... .......... 66% 151M 0s +2024-04-11T17:58:51Z #15 2.298 84850K .......... .......... .......... .......... .......... 66% 152M 0s +2024-04-11T17:58:51Z #15 2.311 84900K .......... .......... .......... .......... .......... 67% 11.0M 0s +2024-04-11T17:58:51Z #15 2.311 84950K .......... .......... .......... .......... .......... 67% 154M 0s +2024-04-11T17:58:51Z #15 2.311 85000K .......... .......... .......... .......... .......... 67% 170M 0s +2024-04-11T17:58:51Z #15 2.311 85050K .......... .......... .......... .......... .......... 67% 155M 0s +2024-04-11T17:58:51Z #15 2.311 85100K .......... .......... .......... .......... .......... 67% 82.3M 0s +2024-04-11T17:58:51Z #15 2.311 85150K .......... .......... .......... .......... .......... 67% 97.6M 0s +2024-04-11T17:58:51Z #15 2.311 85200K .......... .......... .......... .......... .......... 67% 89.8M 0s +2024-04-11T17:58:51Z #15 2.311 85250K .......... .......... .......... .......... .......... 67% 157M 0s +2024-04-11T17:58:51Z #15 2.311 85300K .......... .......... .......... .......... .......... 67% 107M 0s +2024-04-11T17:58:51Z #15 2.311 85350K .......... .......... .......... .......... .......... 67% 92.4M 0s +2024-04-11T17:58:51Z #15 2.311 85400K .......... .......... .......... .......... .......... 67% 101M 0s +2024-04-11T17:58:51Z #15 2.311 85450K .......... .......... .......... .......... .......... 67% 175M 0s +2024-04-11T17:58:51Z #15 2.311 85500K .......... .......... .......... .......... .......... 67% 84.1M 0s +2024-04-11T17:58:51Z #15 2.311 85550K .......... .......... .......... .......... .......... 67% 116M 0s +2024-04-11T17:58:51Z #15 2.311 85600K .......... .......... .......... .......... .......... 67% 107M 0s +2024-04-11T17:58:51Z #15 2.311 85650K .......... .......... .......... .......... .......... 67% 170M 0s +2024-04-11T17:58:51Z #15 2.311 85700K .......... .......... .......... .......... .......... 67% 142M 0s +2024-04-11T17:58:51Z #15 2.311 85750K .......... .......... .......... .......... .......... 67% 90.9M 0s +2024-04-11T17:58:51Z #15 2.311 85800K .......... .......... .......... .......... .......... 67% 14.2M 0s +2024-04-11T17:58:51Z #15 2.319 85850K .......... .......... .......... .......... .......... 67% 126M 0s +2024-04-11T17:58:51Z #15 2.319 85900K .......... .......... .......... .......... .......... 67% 174M 0s +2024-04-11T17:58:51Z #15 2.319 85950K .......... .......... .......... .......... .......... 67% 158M 0s +2024-04-11T17:58:51Z #15 2.319 86000K .......... .......... .......... .......... .......... 67% 115M 0s +2024-04-11T17:58:51Z #15 2.319 86050K .......... .......... .......... .......... .......... 67% 120M 0s +2024-04-11T17:58:51Z #15 2.319 86100K .......... .......... .......... .......... .......... 67% 82.9M 0s +2024-04-11T17:58:51Z #15 2.319 86150K .......... .......... .......... .......... .......... 67% 90.8M 0s +2024-04-11T17:58:51Z #15 2.319 86200K .......... .......... .......... .......... .......... 68% 152M 0s +2024-04-11T17:58:51Z #15 2.319 86250K .......... .......... .......... .......... .......... 68% 77.4M 0s +2024-04-11T17:58:51Z #15 2.319 86300K .......... .......... .......... .......... .......... 68% 122M 0s +2024-04-11T17:58:51Z #15 2.319 86350K .......... .......... .......... .......... .......... 68% 107M 0s +2024-04-11T17:58:51Z #15 2.319 86400K .......... .......... .......... .......... .......... 68% 9.56M 0s +2024-04-11T17:58:51Z #15 2.326 86450K .......... .......... .......... .......... .......... 68% 21.8M 0s +2024-04-11T17:58:51Z #15 2.326 86500K .......... .......... .......... .......... .......... 68% 16.9M 0s +2024-04-11T17:58:51Z #15 2.330 86550K .......... .......... .......... .......... .......... 68% 77.9M 0s +2024-04-11T17:58:51Z #15 2.330 86600K .......... .......... .......... .......... .......... 68% 42.9M 0s +2024-04-11T17:58:51Z #15 2.334 86650K .......... .......... .......... .......... .......... 68% 24.9M 0s +2024-04-11T17:58:51Z #15 2.334 86700K .......... .......... .......... .......... .......... 68% 25.5M 0s +2024-04-11T17:58:51Z #15 2.334 86750K .......... .......... .......... .......... .......... 68% 46.0M 0s +2024-04-11T17:58:51Z #15 2.335 86800K .......... .......... .......... .......... .......... 68% 52.6M 0s +2024-04-11T17:58:51Z #15 2.338 86850K .......... .......... .......... .......... .......... 68% 32.7M 0s +2024-04-11T17:58:51Z #15 2.338 86900K .......... .......... .......... .......... .......... 68% 49.4M 0s +2024-04-11T17:58:51Z #15 2.338 86950K .......... .......... .......... .......... .......... 68% 29.3M 0s +2024-04-11T17:58:51Z #15 2.340 87000K .......... .......... .......... .......... .......... 68% 34.5M 0s +2024-04-11T17:58:51Z #15 2.342 87050K .......... .......... .......... .......... .......... 68% 25.5M 0s +2024-04-11T17:58:51Z #15 2.343 87100K .......... .......... .......... .......... .......... 68% 26.4M 0s +2024-04-11T17:58:51Z #15 2.346 87150K .......... .......... .......... .......... .......... 68% 18.1M 0s +2024-04-11T17:58:51Z #15 2.350 87200K .......... .......... .......... .......... .......... 68% 42.7M 0s +2024-04-11T17:58:51Z #15 2.350 87250K .......... .......... .......... .......... .......... 68% 48.1M 0s +2024-04-11T17:58:51Z #15 2.350 87300K .......... .......... .......... .......... .......... 68% 20.9M 0s +2024-04-11T17:58:51Z #15 2.354 87350K .......... .......... .......... .......... .......... 68% 43.0M 0s +2024-04-11T17:58:51Z #15 2.354 87400K .......... .......... .......... .......... .......... 68% 34.5M 0s +2024-04-11T17:58:51Z #15 2.355 87450K .......... .......... .......... .......... .......... 69% 26.8M 0s +2024-04-11T17:58:51Z #15 2.358 87500K .......... .......... .......... .......... .......... 69% 27.9M 0s +2024-04-11T17:58:51Z #15 2.358 87550K .......... .......... .......... .......... .......... 69% 29.9M 0s +2024-04-11T17:58:51Z #15 2.362 87600K .......... .......... .......... .......... .......... 69% 31.9M 0s +2024-04-11T17:58:51Z #15 2.362 87650K .......... .......... .......... .......... .......... 69% 37.7M 0s +2024-04-11T17:58:51Z #15 2.363 87700K .......... .......... .......... .......... .......... 69% 19.7M 0s +2024-04-11T17:58:51Z #15 2.366 87750K .......... .......... .......... .......... .......... 69% 38.7M 0s +2024-04-11T17:58:51Z #15 2.366 87800K .......... .......... .......... .......... .......... 69% 39.5M 0s +2024-04-11T17:58:51Z #15 2.370 87850K .......... .......... .......... .......... .......... 69% 34.5M 0s +2024-04-11T17:58:51Z #15 2.370 87900K .......... .......... .......... .......... .......... 69% 67.7M 0s +2024-04-11T17:58:51Z #15 2.370 87950K .......... .......... .......... .......... .......... 69% 25.7M 0s +2024-04-11T17:58:51Z #15 2.372 88000K .......... .......... .......... .......... .......... 69% 23.7M 0s +2024-04-11T17:58:51Z #15 2.378 88050K .......... .......... .......... .......... .......... 69% 31.1M 0s +2024-04-11T17:58:51Z #15 2.378 88100K .......... .......... .......... .......... .......... 69% 33.2M 0s +2024-04-11T17:58:51Z #15 2.378 88150K .......... .......... .......... .......... .......... 69% 36.4M 0s +2024-04-11T17:58:51Z #15 2.378 88200K .......... .......... .......... .......... .......... 69% 45.8M 0s +2024-04-11T17:58:51Z #15 2.379 88250K .......... .......... .......... .......... .......... 69% 23.6M 0s +2024-04-11T17:58:51Z #15 2.386 88300K .......... .......... .......... .......... .......... 69% 25.7M 0s +2024-04-11T17:58:51Z #15 2.386 88350K .......... .......... .......... .......... .......... 69% 72.4M 0s +2024-04-11T17:58:51Z #15 2.386 88400K .......... .......... .......... .......... .......... 69% 27.6M 0s +2024-04-11T17:58:51Z #15 2.386 88450K .......... .......... .......... .......... .......... 69% 38.4M 0s +2024-04-11T17:58:51Z #15 2.387 88500K .......... .......... .......... .......... .......... 69% 22.6M 0s +2024-04-11T17:58:51Z #15 2.390 88550K .......... .......... .......... .......... .......... 69% 33.5M 0s +2024-04-11T17:58:51Z #15 2.390 88600K .......... .......... .......... .......... .......... 69% 25.4M 0s +2024-04-11T17:58:51Z #15 2.392 88650K .......... .......... .......... .......... .......... 69% 24.4M 0s +2024-04-11T17:58:51Z #15 2.395 88700K .......... .......... .......... .......... .......... 70% 30.8M 0s +2024-04-11T17:58:51Z #15 2.400 88750K .......... .......... .......... .......... .......... 70% 35.4M 0s +2024-04-11T17:58:51Z #15 2.400 88800K .......... .......... .......... .......... .......... 70% 17.4M 0s +2024-04-11T17:58:51Z #15 2.400 88850K .......... .......... .......... .......... .......... 70% 81.3M 0s +2024-04-11T17:58:51Z #15 2.401 88900K .......... .......... .......... .......... .......... 70% 62.2M 0s +2024-04-11T17:58:51Z #15 2.406 88950K .......... .......... .......... .......... .......... 70% 27.7M 0s +2024-04-11T17:58:51Z #15 2.406 89000K .......... .......... .......... .......... .......... 70% 38.3M 0s +2024-04-11T17:58:51Z #15 2.406 89050K .......... .......... .......... .......... .......... 70% 34.2M 0s +2024-04-11T17:58:51Z #15 2.406 89100K .......... .......... .......... .......... .......... 70% 20.0M 0s +2024-04-11T17:58:51Z #15 2.410 89150K .......... .......... .......... .......... .......... 70% 34.1M 0s +2024-04-11T17:58:51Z #15 2.410 89200K .......... .......... .......... .......... .......... 70% 52.0M 0s +2024-04-11T17:58:51Z #15 2.411 89250K .......... .......... .......... .......... .......... 70% 18.5M 0s +2024-04-11T17:58:51Z #15 2.414 89300K .......... .......... .......... .......... .......... 70% 21.4M 0s +2024-04-11T17:58:51Z #15 2.416 89350K .......... .......... .......... .......... .......... 70% 18.9M 0s +2024-04-11T17:58:51Z #15 2.422 89400K .......... .......... .......... .......... .......... 70% 37.7M 0s +2024-04-11T17:58:51Z #15 2.422 89450K .......... .......... .......... .......... .......... 70% 40.7M 0s +2024-04-11T17:58:51Z #15 2.422 89500K .......... .......... .......... .......... .......... 70% 25.5M 0s +2024-04-11T17:58:51Z #15 2.423 89550K .......... .......... .......... .......... .......... 70% 19.1M 0s +2024-04-11T17:58:51Z #15 2.426 89600K .......... .......... .......... .......... .......... 70% 27.7M 0s +2024-04-11T17:58:51Z #15 2.430 89650K .......... .......... .......... .......... .......... 70% 26.3M 0s +2024-04-11T17:58:51Z #15 2.430 89700K .......... .......... .......... .......... .......... 70% 21.5M 0s +2024-04-11T17:58:51Z #15 2.431 89750K .......... .......... .......... .......... .......... 70% 62.7M 0s +2024-04-11T17:58:51Z #15 2.432 89800K .......... .......... .......... .......... .......... 70% 30.8M 0s +2024-04-11T17:58:51Z #15 2.434 89850K .......... .......... .......... .......... .......... 70% 21.9M 0s +2024-04-11T17:58:51Z #15 2.436 89900K .......... .......... .......... .......... .......... 70% 24.8M 0s +2024-04-11T17:58:51Z #15 2.438 89950K .......... .......... .......... .......... .......... 70% 27.2M 0s +2024-04-11T17:58:51Z #15 2.440 90000K .......... .......... .......... .......... .......... 71% 22.1M 0s +2024-04-11T17:58:51Z #15 2.442 90050K .......... .......... .......... .......... .......... 71% 33.6M 0s +2024-04-11T17:58:51Z #15 2.443 90100K .......... .......... .......... .......... .......... 71% 18.3M 0s +2024-04-11T17:58:51Z #15 2.446 90150K .......... .......... .......... .......... .......... 71% 44.0M 0s +2024-04-11T17:58:51Z #15 2.447 90200K .......... .......... .......... .......... .......... 71% 24.2M 0s +2024-04-11T17:58:51Z #15 2.449 90250K .......... .......... .......... .......... .......... 71% 26.8M 0s +2024-04-11T17:58:51Z #15 2.451 90300K .......... .......... .......... .......... .......... 71% 20.8M 0s +2024-04-11T17:58:51Z #15 2.453 90350K .......... .......... .......... .......... .......... 71% 24.3M 0s +2024-04-11T17:58:51Z #15 2.455 90400K .......... .......... .......... .......... .......... 71% 20.9M 0s +2024-04-11T17:58:51Z #15 2.458 90450K .......... .......... .......... .......... .......... 71% 48.9M 0s +2024-04-11T17:58:51Z #15 2.459 90500K .......... .......... .......... .......... .......... 71% 23.1M 0s +2024-04-11T17:58:51Z #15 2.461 90550K .......... .......... .......... .......... .......... 71% 28.6M 0s +2024-04-11T17:58:51Z #15 2.463 90600K .......... .......... .......... .......... .......... 71% 20.9M 0s +2024-04-11T17:58:51Z #15 2.465 90650K .......... .......... .......... .......... .......... 71% 22.8M 0s +2024-04-11T17:58:51Z #15 2.467 90700K .......... .......... .......... .......... .......... 71% 23.6M 0s +2024-04-11T17:58:51Z #15 2.469 90750K .......... .......... .......... .......... .......... 71% 25.0M 0s +2024-04-11T17:58:51Z #15 2.471 90800K .......... .......... .......... .......... .......... 71% 33.0M 0s +2024-04-11T17:58:51Z #15 2.472 90850K .......... .......... .......... .......... .......... 71% 27.4M 0s +2024-04-11T17:58:51Z #15 2.474 90900K .......... .......... .......... .......... .......... 71% 19.4M 0s +2024-04-11T17:58:51Z #15 2.477 90950K .......... .......... .......... .......... .......... 71% 36.3M 0s +2024-04-11T17:58:51Z #15 2.478 91000K .......... .......... .......... .......... .......... 71% 23.5M 0s +2024-04-11T17:58:51Z #15 2.480 91050K .......... .......... .......... .......... .......... 71% 31.8M 0s +2024-04-11T17:58:51Z #15 2.482 91100K .......... .......... .......... .......... .......... 71% 24.9M 0s +2024-04-11T17:58:51Z #15 2.484 91150K .......... .......... .......... .......... .......... 71% 20.0M 0s +2024-04-11T17:58:51Z #15 2.486 91200K .......... .......... .......... .......... .......... 71% 26.4M 0s +2024-04-11T17:58:51Z #15 2.488 91250K .......... .......... .......... .......... .......... 72% 21.0M 0s +2024-04-11T17:58:51Z #15 2.490 91300K .......... .......... .......... .......... .......... 72% 23.2M 0s +2024-04-11T17:58:51Z #15 2.493 91350K .......... .......... .......... .......... .......... 72% 48.3M 0s +2024-04-11T17:58:51Z #15 2.494 91400K .......... .......... .......... .......... .......... 72% 26.2M 0s +2024-04-11T17:58:51Z #15 2.495 91450K .......... .......... .......... .......... .......... 72% 47.5M 0s +2024-04-11T17:58:51Z #15 2.496 91500K .......... .......... .......... .......... .......... 72% 37.6M 0s +2024-04-11T17:58:51Z #15 2.498 91550K .......... .......... .......... .......... .......... 72% 27.9M 0s +2024-04-11T17:58:51Z #15 2.500 91600K .......... .......... .......... .......... .......... 72% 34.4M 0s +2024-04-11T17:58:51Z #15 2.501 91650K .......... .......... .......... .......... .......... 72% 29.3M 0s +2024-04-11T17:58:51Z #15 2.502 91700K .......... .......... .......... .......... .......... 72% 41.2M 0s +2024-04-11T17:58:51Z #15 2.504 91750K .......... .......... .......... .......... .......... 72% 38.0M 0s +2024-04-11T17:58:51Z #15 2.505 91800K .......... .......... .......... .......... .......... 72% 31.4M 0s +2024-04-11T17:58:51Z #15 2.506 91850K .......... .......... .......... .......... .......... 72% 42.5M 0s +2024-04-11T17:58:51Z #15 2.508 91900K .......... .......... .......... .......... .......... 72% 39.6M 0s +2024-04-11T17:58:51Z #15 2.509 91950K .......... .......... .......... .......... .......... 72% 20.3M 0s +2024-04-11T17:58:51Z #15 2.512 92000K .......... .......... .......... .......... .......... 72% 45.3M 0s +2024-04-11T17:58:51Z #15 2.512 92050K .......... .......... .......... .......... .......... 72% 90.0M 0s +2024-04-11T17:58:51Z #15 2.513 92100K .......... .......... .......... .......... .......... 72% 37.7M 0s +2024-04-11T17:58:51Z #15 2.514 92150K .......... .......... .......... .......... .......... 72% 33.3M 0s +2024-04-11T17:58:51Z #15 2.516 92200K .......... .......... .......... .......... .......... 72% 59.7M 0s +2024-04-11T17:58:51Z #15 2.516 92250K .......... .......... .......... .......... .......... 72% 31.1M 0s +2024-04-11T17:58:51Z #15 2.519 92300K .......... .......... .......... .......... .......... 72% 52.0M 0s +2024-04-11T17:58:51Z #15 2.519 92350K .......... .......... .......... .......... .......... 72% 24.0M 0s +2024-04-11T17:58:51Z #15 2.521 92400K .......... .......... .......... .......... .......... 72% 43.6M 0s +2024-04-11T17:58:51Z #15 2.522 92450K .......... .......... .......... .......... .......... 72% 22.0M 0s +2024-04-11T17:58:51Z #15 2.524 92500K .......... .......... .......... .......... .......... 72% 75.8M 0s +2024-04-11T17:58:51Z #15 2.525 92550K .......... .......... .......... .......... .......... 73% 23.7M 0s +2024-04-11T17:58:51Z #15 2.527 92600K .......... .......... .......... .......... .......... 73% 56.7M 0s +2024-04-11T17:58:51Z #15 2.528 92650K .......... .......... .......... .......... .......... 73% 45.9M 0s +2024-04-11T17:58:51Z #15 2.529 92700K .......... .......... .......... .......... .......... 73% 28.6M 0s +2024-04-11T17:58:51Z #15 2.531 92750K .......... .......... .......... .......... .......... 73% 51.2M 0s +2024-04-11T17:58:51Z #15 2.531 92800K .......... .......... .......... .......... .......... 73% 31.8M 0s +2024-04-11T17:58:51Z #15 2.533 92850K .......... .......... .......... .......... .......... 73% 40.5M 0s +2024-04-11T17:58:51Z #15 2.535 92900K .......... .......... .......... .......... .......... 73% 27.9M 0s +2024-04-11T17:58:51Z #15 2.536 92950K .......... .......... .......... .......... .......... 73% 78.0M 0s +2024-04-11T17:58:51Z #15 2.537 93000K .......... .......... .......... .......... .......... 73% 15.1M 0s +2024-04-11T17:58:51Z #15 2.541 93050K .......... .......... .......... .......... .......... 73% 82.6M 0s +2024-04-11T17:58:51Z #15 2.541 93100K .......... .......... .......... .......... .......... 73% 71.7M 0s +2024-04-11T17:58:51Z #15 2.541 93150K .......... .......... .......... .......... .......... 73% 22.0M 0s +2024-04-11T17:58:51Z #15 2.543 93200K .......... .......... .......... .......... .......... 73% 36.6M 0s +2024-04-11T17:58:51Z #15 2.545 93250K .......... .......... .......... .......... .......... 73% 21.5M 0s +2024-04-11T17:58:51Z #15 2.547 93300K .......... .......... .......... .......... .......... 73% 25.0M 0s +2024-04-11T17:58:51Z #15 2.549 93350K .......... .......... .......... .......... .......... 73% 33.5M 0s +2024-04-11T17:58:51Z #15 2.554 93400K .......... .......... .......... .......... .......... 73% 21.0M 0s +2024-04-11T17:58:51Z #15 2.554 93450K .......... .......... .......... .......... .......... 73% 26.0M 0s +2024-04-11T17:58:51Z #15 2.555 93500K .......... .......... .......... .......... .......... 73% 26.7M 0s +2024-04-11T17:58:51Z #15 2.557 93550K .......... .......... .......... .......... .......... 73% 24.9M 0s +2024-04-11T17:58:51Z #15 2.558 93600K .......... .......... .......... .......... .......... 73% 50.9M 0s +2024-04-11T17:58:51Z #15 2.562 93650K .......... .......... .......... .......... .......... 73% 122M 0s +2024-04-11T17:58:51Z #15 2.562 93700K .......... .......... .......... .......... .......... 73% 170M 0s +2024-04-11T17:58:51Z #15 2.562 93750K .......... .......... .......... .......... .......... 73% 101M 0s +2024-04-11T17:58:51Z #15 2.562 93800K .......... .......... .......... .......... .......... 74% 187M 0s +2024-04-11T17:58:51Z #15 2.562 93850K .......... .......... .......... .......... .......... 74% 109M 0s +2024-04-11T17:58:51Z #15 2.562 93900K .......... .......... .......... .......... .......... 74% 204M 0s +2024-04-11T17:58:51Z #15 2.562 93950K .......... .......... .......... .......... .......... 74% 147M 0s +2024-04-11T17:58:51Z #15 2.562 94000K .......... .......... .......... .......... .......... 74% 15.0M 0s +2024-04-11T17:58:51Z #15 2.565 94050K .......... .......... .......... .......... .......... 74% 20.1M 0s +2024-04-11T17:58:51Z #15 2.568 94100K .......... .......... .......... .......... .......... 74% 27.8M 0s +2024-04-11T17:58:51Z #15 2.569 94150K .......... .......... .......... .......... .......... 74% 48.6M 0s +2024-04-11T17:58:51Z #15 2.574 94200K .......... .......... .......... .......... .......... 74% 49.7M 0s +2024-04-11T17:58:51Z #15 2.574 94250K .......... .......... .......... .......... .......... 74% 30.9M 0s +2024-04-11T17:58:51Z #15 2.574 94300K .......... .......... .......... .......... .......... 74% 35.2M 0s +2024-04-11T17:58:51Z #15 2.590 94350K .......... .......... .......... .......... .......... 74% 34.3M 0s +2024-04-11T17:58:51Z #15 2.590 94400K .......... .......... .......... .......... .......... 74% 30.4M 0s +2024-04-11T17:58:51Z #15 2.590 94450K .......... .......... .......... .......... .......... 74% 58.6M 0s +2024-04-11T17:58:51Z #15 2.590 94500K .......... .......... .......... .......... .......... 74% 22.6M 0s +2024-04-11T17:58:51Z #15 2.590 94550K .......... .......... .......... .......... .......... 74% 43.4M 0s +2024-04-11T17:58:51Z #15 2.590 94600K .......... .......... .......... .......... .......... 74% 49.3M 0s +2024-04-11T17:58:51Z #15 2.590 94650K .......... .......... .......... .......... .......... 74% 79.1M 0s +2024-04-11T17:58:51Z #15 2.590 94700K .......... .......... .......... .......... .......... 74% 61.6M 0s +2024-04-11T17:58:51Z #15 2.590 94750K .......... .......... .......... .......... .......... 74% 196M 0s +2024-04-11T17:58:51Z #15 2.590 94800K .......... .......... .......... .......... .......... 74% 106M 0s +2024-04-11T17:58:51Z #15 2.590 94850K .......... .......... .......... .......... .......... 74% 172M 0s +2024-04-11T17:58:51Z #15 2.590 94900K .......... .......... .......... .......... .......... 74% 21.7M 0s +2024-04-11T17:58:51Z #15 2.590 94950K .......... .......... .......... .......... .......... 74% 30.7M 0s +2024-04-11T17:58:51Z #15 2.590 95000K .......... .......... .......... .......... .......... 74% 25.0M 0s +2024-04-11T17:58:51Z #15 2.591 95050K .......... .......... .......... .......... .......... 75% 29.4M 0s +2024-04-11T17:58:51Z #15 2.592 95100K .......... .......... .......... .......... .......... 75% 71.9M 0s +2024-04-11T17:58:51Z #15 2.594 95150K .......... .......... .......... .......... .......... 75% 174M 0s +2024-04-11T17:58:51Z #15 2.594 95200K .......... .......... .......... .......... .......... 75% 145M 0s +2024-04-11T17:58:51Z #15 2.594 95250K .......... .......... .......... .......... .......... 75% 194M 0s +2024-04-11T17:58:51Z #15 2.594 95300K .......... .......... .......... .......... .......... 75% 21.4M 0s +2024-04-11T17:58:51Z #15 2.596 95350K .......... .......... .......... .......... .......... 75% 28.4M 0s +2024-04-11T17:58:51Z #15 2.606 95400K .......... .......... .......... .......... .......... 75% 25.2M 0s +2024-04-11T17:58:51Z #15 2.606 95450K .......... .......... .......... .......... .......... 75% 70.0M 0s +2024-04-11T17:58:51Z #15 2.606 95500K .......... .......... .......... .......... .......... 75% 30.5M 0s +2024-04-11T17:58:51Z #15 2.606 95550K .......... .......... .......... .......... .......... 75% 136M 0s +2024-04-11T17:58:51Z #15 2.606 95600K .......... .......... .......... .......... .......... 75% 33.8M 0s +2024-04-11T17:58:51Z #15 2.606 95650K .......... .......... .......... .......... .......... 75% 29.9M 0s +2024-04-11T17:58:51Z #15 2.606 95700K .......... .......... .......... .......... .......... 75% 61.1M 0s +2024-04-11T17:58:51Z #15 2.610 95750K .......... .......... .......... .......... .......... 75% 168M 0s +2024-04-11T17:58:51Z #15 2.610 95800K .......... .......... .......... .......... .......... 75% 172M 0s +2024-04-11T17:58:51Z #15 2.610 95850K .......... .......... .......... .......... .......... 75% 105M 0s +2024-04-11T17:58:51Z #15 2.610 95900K .......... .......... .......... .......... .......... 75% 128M 0s +2024-04-11T17:58:51Z #15 2.610 95950K .......... .......... .......... .......... .......... 75% 124M 0s +2024-04-11T17:58:51Z #15 2.610 96000K .......... .......... .......... .......... .......... 75% 116M 0s +2024-04-11T17:58:51Z #15 2.610 96050K .......... .......... .......... .......... .......... 75% 140M 0s +2024-04-11T17:58:51Z #15 2.610 96100K .......... .......... .......... .......... .......... 75% 143M 0s +2024-04-11T17:58:51Z #15 2.610 96150K .......... .......... .......... .......... .......... 75% 187M 0s +2024-04-11T17:58:51Z #15 2.610 96200K .......... .......... .......... .......... .......... 75% 112M 0s +2024-04-11T17:58:51Z #15 2.610 96250K .......... .......... .......... .......... .......... 75% 24.1M 0s +2024-04-11T17:58:51Z #15 2.612 96300K .......... .......... .......... .......... .......... 75% 57.2M 0s +2024-04-11T17:58:51Z #15 2.613 96350K .......... .......... .......... .......... .......... 76% 67.1M 0s +2024-04-11T17:58:51Z #15 2.614 96400K .......... .......... .......... .......... .......... 76% 191M 0s +2024-04-11T17:58:51Z #15 2.614 96450K .......... .......... .......... .......... .......... 76% 35.9M 0s +2024-04-11T17:58:51Z #15 2.615 96500K .......... .......... .......... .......... .......... 76% 86.3M 0s +2024-04-11T17:58:51Z #15 2.622 96550K .......... .......... .......... .......... .......... 76% 189M 0s +2024-04-11T17:58:51Z #15 2.622 96600K .......... .......... .......... .......... .......... 76% 169M 0s +2024-04-11T17:58:51Z #15 2.622 96650K .......... .......... .......... .......... .......... 76% 135M 0s +2024-04-11T17:58:51Z #15 2.622 96700K .......... .......... .......... .......... .......... 76% 195M 0s +2024-04-11T17:58:51Z #15 2.622 96750K .......... .......... .......... .......... .......... 76% 95.8M 0s +2024-04-11T17:58:51Z #15 2.622 96800K .......... .......... .......... .......... .......... 76% 99.4M 0s +2024-04-11T17:58:51Z #15 2.622 96850K .......... .......... .......... .......... .......... 76% 29.5M 0s +2024-04-11T17:58:51Z #15 2.622 96900K .......... .......... .......... .......... .......... 76% 117M 0s +2024-04-11T17:58:51Z #15 2.622 96950K .......... .......... .......... .......... .......... 76% 166M 0s +2024-04-11T17:58:51Z #15 2.622 97000K .......... .......... .......... .......... .......... 76% 31.7M 0s +2024-04-11T17:58:51Z #15 2.622 97050K .......... .......... .......... .......... .......... 76% 33.4M 0s +2024-04-11T17:58:51Z #15 2.640 97100K .......... .......... .......... .......... .......... 76% 103M 0s +2024-04-11T17:58:51Z #15 2.640 97150K .......... .......... .......... .......... .......... 76% 154M 0s +2024-04-11T17:58:51Z #15 2.640 97200K .......... .......... .......... .......... .......... 76% 213M 0s +2024-04-11T17:58:51Z #15 2.640 97250K .......... .......... .......... .......... .......... 76% 189M 0s +2024-04-11T17:58:51Z #15 2.640 97300K .......... .......... .......... .......... .......... 76% 193M 0s +2024-04-11T17:58:51Z #15 2.640 97350K .......... .......... .......... .......... .......... 76% 87.9M 0s +2024-04-11T17:58:51Z #15 2.640 97400K .......... .......... .......... .......... .......... 76% 110M 0s +2024-04-11T17:58:51Z #15 2.640 97450K .......... .......... .......... .......... .......... 76% 49.0M 0s +2024-04-11T17:58:51Z #15 2.640 97500K .......... .......... .......... .......... .......... 76% 72.2M 0s +2024-04-11T17:58:51Z #15 2.640 97550K .......... .......... .......... .......... .......... 76% 195M 0s +2024-04-11T17:58:51Z #15 2.640 97600K .......... .......... .......... .......... .......... 77% 160M 0s +2024-04-11T17:58:51Z #15 2.640 97650K .......... .......... .......... .......... .......... 77% 209M 0s +2024-04-11T17:58:51Z #15 2.640 97700K .......... .......... .......... .......... .......... 77% 195M 0s +2024-04-11T17:58:51Z #15 2.640 97750K .......... .......... .......... .......... .......... 77% 99.4M 0s +2024-04-11T17:58:51Z #15 2.640 97800K .......... .......... .......... .......... .......... 77% 164M 0s +2024-04-11T17:58:51Z #15 2.640 97850K .......... .......... .......... .......... .......... 77% 129M 0s +2024-04-11T17:58:51Z #15 2.640 97900K .......... .......... .......... .......... .......... 77% 31.6M 0s +2024-04-11T17:58:51Z #15 2.640 97950K .......... .......... .......... .......... .......... 77% 75.0M 0s +2024-04-11T17:58:51Z #15 2.640 98000K .......... .......... .......... .......... .......... 77% 130M 0s +2024-04-11T17:58:51Z #15 2.640 98050K .......... .......... .......... .......... .......... 77% 173M 0s +2024-04-11T17:58:51Z #15 2.640 98100K .......... .......... .......... .......... .......... 77% 148M 0s +2024-04-11T17:58:51Z #15 2.640 98150K .......... .......... .......... .......... .......... 77% 171M 0s +2024-04-11T17:58:51Z #15 2.640 98200K .......... .......... .......... .......... .......... 77% 22.0M 0s +2024-04-11T17:58:51Z #15 2.640 98250K .......... .......... .......... .......... .......... 77% 44.2M 0s +2024-04-11T17:58:51Z #15 2.640 98300K .......... .......... .......... .......... .......... 77% 51.8M 0s +2024-04-11T17:58:51Z #15 2.640 98350K .......... .......... .......... .......... .......... 77% 43.1M 0s +2024-04-11T17:58:51Z #15 2.640 98400K .......... .......... .......... .......... .......... 77% 68.3M 0s +2024-04-11T17:58:51Z #15 2.640 98450K .......... .......... .......... .......... .......... 77% 106M 0s +2024-04-11T17:58:51Z #15 2.640 98500K .......... .......... .......... .......... .......... 77% 47.5M 0s +2024-04-11T17:58:51Z #15 2.661 98550K .......... .......... .......... .......... .......... 77% 42.0M 0s +2024-04-11T17:58:51Z #15 2.661 98600K .......... .......... .......... .......... .......... 77% 55.1M 0s +2024-04-11T17:58:51Z #15 2.661 98650K .......... .......... .......... .......... .......... 77% 101M 0s +2024-04-11T17:58:51Z #15 2.661 98700K .......... .......... .......... .......... .......... 77% 185M 0s +2024-04-11T17:58:51Z #15 2.661 98750K .......... .......... .......... .......... .......... 77% 193M 0s +2024-04-11T17:58:51Z #15 2.661 98800K .......... .......... .......... .......... .......... 77% 172M 0s +2024-04-11T17:58:51Z #15 2.661 98850K .......... .......... .......... .......... .......... 78% 211M 0s +2024-04-11T17:58:51Z #15 2.661 98900K .......... .......... .......... .......... .......... 78% 50.3M 0s +2024-04-11T17:58:51Z #15 2.661 98950K .......... .......... .......... .......... .......... 78% 159M 0s +2024-04-11T17:58:51Z #15 2.661 99000K .......... .......... .......... .......... .......... 78% 159M 0s +2024-04-11T17:58:51Z #15 2.661 99050K .......... .......... .......... .......... .......... 78% 26.3M 0s +2024-04-11T17:58:51Z #15 2.661 99100K .......... .......... .......... .......... .......... 78% 142M 0s +2024-04-11T17:58:51Z #15 2.661 99150K .......... .......... .......... .......... .......... 78% 156M 0s +2024-04-11T17:58:51Z #15 2.661 99200K .......... .......... .......... .......... .......... 78% 168M 0s +2024-04-11T17:58:51Z #15 2.661 99250K .......... .......... .......... .......... .......... 78% 89.9M 0s +2024-04-11T17:58:51Z #15 2.661 99300K .......... .......... .......... .......... .......... 78% 75.7M 0s +2024-04-11T17:58:51Z #15 2.661 99350K .......... .......... .......... .......... .......... 78% 51.2M 0s +2024-04-11T17:58:51Z #15 2.661 99400K .......... .......... .......... .......... .......... 78% 161M 0s +2024-04-11T17:58:51Z #15 2.661 99450K .......... .......... .......... .......... .......... 78% 199M 0s +2024-04-11T17:58:51Z #15 2.661 99500K .......... .......... .......... .......... .......... 78% 201M 0s +2024-04-11T17:58:51Z #15 2.661 99550K .......... .......... .......... .......... .......... 78% 197M 0s +2024-04-11T17:58:51Z #15 2.661 99600K .......... .......... .......... .......... .......... 78% 84.4M 0s +2024-04-11T17:58:51Z #15 2.661 99650K .......... .......... .......... .......... .......... 78% 140M 0s +2024-04-11T17:58:51Z #15 2.661 99700K .......... .......... .......... .......... .......... 78% 110M 0s +2024-04-11T17:58:51Z #15 2.661 99750K .......... .......... .......... .......... .......... 78% 208M 0s +2024-04-11T17:58:51Z #15 2.661 99800K .......... .......... .......... .......... .......... 78% 194M 0s +2024-04-11T17:58:51Z #15 2.661 99850K .......... .......... .......... .......... .......... 78% 73.7M 0s +2024-04-11T17:58:51Z #15 2.661 99900K .......... .......... .......... .......... .......... 78% 43.3M 0s +2024-04-11T17:58:51Z #15 2.661 99950K .......... .......... .......... .......... .......... 78% 155M 0s +2024-04-11T17:58:51Z #15 2.661 100000K .......... .......... .......... .......... .......... 78% 126M 0s +2024-04-11T17:58:51Z #15 2.661 100050K .......... .......... .......... .......... .......... 78% 93.9M 0s +2024-04-11T17:58:51Z #15 2.661 100100K .......... .......... .......... .......... .......... 78% 72.8M 0s +2024-04-11T17:58:51Z #15 2.661 100150K .......... .......... .......... .......... .......... 79% 169M 0s +2024-04-11T17:58:51Z #15 2.661 100200K .......... .......... .......... .......... .......... 79% 49.4M 0s +2024-04-11T17:58:51Z #15 2.661 100250K .......... .......... .......... .......... .......... 79% 137M 0s +2024-04-11T17:58:51Z #15 2.661 100300K .......... .......... .......... .......... .......... 79% 190M 0s +2024-04-11T17:58:51Z #15 2.661 100350K .......... .......... .......... .......... .......... 79% 218M 0s +2024-04-11T17:58:51Z #15 2.661 100400K .......... .......... .......... .......... .......... 79% 128M 0s +2024-04-11T17:58:51Z #15 2.661 100450K .......... .......... .......... .......... .......... 79% 40.5M 0s +2024-04-11T17:58:51Z #15 2.670 100500K .......... .......... .......... .......... .......... 79% 77.4M 0s +2024-04-11T17:58:51Z #15 2.670 100550K .......... .......... .......... .......... .......... 79% 64.2M 0s +2024-04-11T17:58:51Z #15 2.670 100600K .......... .......... .......... .......... .......... 79% 82.1M 0s +2024-04-11T17:58:51Z #15 2.670 100650K .......... .......... .......... .......... .......... 79% 45.9M 0s +2024-04-11T17:58:51Z #15 2.670 100700K .......... .......... .......... .......... .......... 79% 42.4M 0s +2024-04-11T17:58:51Z #15 2.670 100750K .......... .......... .......... .......... .......... 79% 61.8M 0s +2024-04-11T17:58:51Z #15 2.670 100800K .......... .......... .......... .......... .......... 79% 42.4M 0s +2024-04-11T17:58:51Z #15 2.670 100850K .......... .......... .......... .......... .......... 79% 41.1M 0s +2024-04-11T17:58:51Z #15 2.670 100900K .......... .......... .......... .......... .......... 79% 68.9M 0s +2024-04-11T17:58:51Z #15 2.670 100950K .......... .......... .......... .......... .......... 79% 77.0M 0s +2024-04-11T17:58:51Z #15 2.670 101000K .......... .......... .......... .......... .......... 79% 16.1M 0s +2024-04-11T17:58:51Z #15 2.673 101050K .......... .......... .......... .......... .......... 79% 27.3M 0s +2024-04-11T17:58:51Z #15 2.675 101100K .......... .......... .......... .......... .......... 79% 32.5M 0s +2024-04-11T17:58:51Z #15 2.676 101150K .......... .......... .......... .......... .......... 79% 39.6M 0s +2024-04-11T17:58:51Z #15 2.677 101200K .......... .......... .......... .......... .......... 79% 59.3M 0s +2024-04-11T17:58:51Z #15 2.678 101250K .......... .......... .......... .......... .......... 79% 64.7M 0s +2024-04-11T17:58:51Z #15 2.679 101300K .......... .......... .......... .......... .......... 79% 27.2M 0s +2024-04-11T17:58:51Z #15 2.681 101350K .......... .......... .......... .......... .......... 79% 48.4M 0s +2024-04-11T17:58:51Z #15 2.682 101400K .......... .......... .......... .......... .......... 80% 27.9M 0s +2024-04-11T17:58:51Z #15 2.683 101450K .......... .......... .......... .......... .......... 80% 39.5M 0s +2024-04-11T17:58:51Z #15 2.685 101500K .......... .......... .......... .......... .......... 80% 26.5M 0s +2024-04-11T17:58:51Z #15 2.687 101550K .......... .......... .......... .......... .......... 80% 38.5M 0s +2024-04-11T17:58:51Z #15 2.688 101600K .......... .......... .......... .......... .......... 80% 40.1M 0s +2024-04-11T17:58:51Z #15 2.689 101650K .......... .......... .......... .......... .......... 80% 26.7M 0s +2024-04-11T17:58:51Z #15 2.691 101700K .......... .......... .......... .......... .......... 80% 40.3M 0s +2024-04-11T17:58:51Z #15 2.692 101750K .......... .......... .......... .......... .......... 80% 25.7M 0s +2024-04-11T17:58:51Z #15 2.694 101800K .......... .......... .......... .......... .......... 80% 35.8M 0s +2024-04-11T17:58:51Z #15 2.695 101850K .......... .......... .......... .......... .......... 80% 30.7M 0s +2024-04-11T17:58:51Z #15 2.697 101900K .......... .......... .......... .......... .......... 80% 31.9M 0s +2024-04-11T17:58:51Z #15 2.699 101950K .......... .......... .......... .......... .......... 80% 42.0M 0s +2024-04-11T17:58:51Z #15 2.700 102000K .......... .......... .......... .......... .......... 80% 34.7M 0s +2024-04-11T17:58:51Z #15 2.701 102050K .......... .......... .......... .......... .......... 80% 41.4M 0s +2024-04-11T17:58:51Z #15 2.702 102100K .......... .......... .......... .......... .......... 80% 33.5M 0s +2024-04-11T17:58:51Z #15 2.704 102150K .......... .......... .......... .......... .......... 80% 26.8M 0s +2024-04-11T17:58:51Z #15 2.705 102200K .......... .......... .......... .......... .......... 80% 38.6M 0s +2024-04-11T17:58:51Z #15 2.707 102250K .......... .......... .......... .......... .......... 80% 43.9M 0s +2024-04-11T17:58:51Z #15 2.708 102300K .......... .......... .......... .......... .......... 80% 35.4M 0s +2024-04-11T17:58:51Z #15 2.709 102350K .......... .......... .......... .......... .......... 80% 32.0M 0s +2024-04-11T17:58:51Z #15 2.711 102400K .......... .......... .......... .......... .......... 80% 44.8M 0s +2024-04-11T17:58:51Z #15 2.712 102450K .......... .......... .......... .......... .......... 80% 30.4M 0s +2024-04-11T17:58:51Z #15 2.713 102500K .......... .......... .......... .......... .......... 80% 47.9M 0s +2024-04-11T17:58:51Z #15 2.714 102550K .......... .......... .......... .......... .......... 80% 22.1M 0s +2024-04-11T17:58:51Z #15 2.717 102600K .......... .......... .......... .......... .......... 80% 55.5M 0s +2024-04-11T17:58:51Z #15 2.718 102650K .......... .......... .......... .......... .......... 81% 35.5M 0s +2024-04-11T17:58:51Z #15 2.719 102700K .......... .......... .......... .......... .......... 81% 29.6M 0s +2024-04-11T17:58:51Z #15 2.721 102750K .......... .......... .......... .......... .......... 81% 32.7M 0s +2024-04-11T17:58:51Z #15 2.722 102800K .......... .......... .......... .......... .......... 81% 25.7M 0s +2024-04-11T17:58:51Z #15 2.724 102850K .......... .......... .......... .......... .......... 81% 40.5M 0s +2024-04-11T17:58:51Z #15 2.725 102900K .......... .......... .......... .......... .......... 81% 35.9M 0s +2024-04-11T17:58:51Z #15 2.726 102950K .......... .......... .......... .......... .......... 81% 31.9M 0s +2024-04-11T17:58:51Z #15 2.728 103000K .......... .......... .......... .......... .......... 81% 28.3M 0s +2024-04-11T17:58:51Z #15 2.730 103050K .......... .......... .......... .......... .......... 81% 28.3M 0s +2024-04-11T17:58:51Z #15 2.731 103100K .......... .......... .......... .......... .......... 81% 44.2M 0s +2024-04-11T17:58:51Z #15 2.733 103150K .......... .......... .......... .......... .......... 81% 43.2M 0s +2024-04-11T17:58:51Z #15 2.734 103200K .......... .......... .......... .......... .......... 81% 27.4M 0s +2024-04-11T17:58:51Z #15 2.735 103250K .......... .......... .......... .......... .......... 81% 33.8M 0s +2024-04-11T17:58:51Z #15 2.737 103300K .......... .......... .......... .......... .......... 81% 35.5M 0s +2024-04-11T17:58:51Z #15 2.738 103350K .......... .......... .......... .......... .......... 81% 37.6M 0s +2024-04-11T17:58:51Z #15 2.740 103400K .......... .......... .......... .......... .......... 81% 45.8M 0s +2024-04-11T17:58:51Z #15 2.741 103450K .......... .......... .......... .......... .......... 81% 35.6M 0s +2024-04-11T17:58:51Z #15 2.742 103500K .......... .......... .......... .......... .......... 81% 32.1M 0s +2024-04-11T17:58:51Z #15 2.744 103550K .......... .......... .......... .......... .......... 81% 33.1M 0s +2024-04-11T17:58:51Z #15 2.745 103600K .......... .......... .......... .......... .......... 81% 25.4M 0s +2024-04-11T17:58:51Z #15 2.747 103650K .......... .......... .......... .......... .......... 81% 37.2M 0s +2024-04-11T17:58:51Z #15 2.749 103700K .......... .......... .......... .......... .......... 81% 40.2M 0s +2024-04-11T17:58:51Z #15 2.750 103750K .......... .......... .......... .......... .......... 81% 33.1M 0s +2024-04-11T17:58:51Z #15 2.751 103800K .......... .......... .......... .......... .......... 81% 28.4M 0s +2024-04-11T17:58:51Z #15 2.753 103850K .......... .......... .......... .......... .......... 81% 28.5M 0s +2024-04-11T17:58:51Z #15 2.755 103900K .......... .......... .......... .......... .......... 81% 40.9M 0s +2024-04-11T17:58:51Z #15 2.756 103950K .......... .......... .......... .......... .......... 82% 29.3M 0s +2024-04-11T17:58:51Z #15 2.758 104000K .......... .......... .......... .......... .......... 82% 32.7M 0s +2024-04-11T17:58:51Z #15 2.759 104050K .......... .......... .......... .......... .......... 82% 41.7M 0s +2024-04-11T17:58:51Z #15 2.760 104100K .......... .......... .......... .......... .......... 82% 32.7M 0s +2024-04-11T17:58:51Z #15 2.761 104150K .......... .......... .......... .......... .......... 82% 41.4M 0s +2024-04-11T17:58:51Z #15 2.763 104200K .......... .......... .......... .......... .......... 82% 43.3M 0s +2024-04-11T17:58:51Z #15 2.764 104250K .......... .......... .......... .......... .......... 82% 27.8M 0s +2024-04-11T17:58:51Z #15 2.766 104300K .......... .......... .......... .......... .......... 82% 37.3M 0s +2024-04-11T17:58:51Z #15 2.767 104350K .......... .......... .......... .......... .......... 82% 24.6M 0s +2024-04-11T17:58:51Z #15 2.769 104400K .......... .......... .......... .......... .......... 82% 32.0M 0s +2024-04-11T17:58:51Z #15 2.770 104450K .......... .......... .......... .......... .......... 82% 30.7M 0s +2024-04-11T17:58:51Z #15 2.772 104500K .......... .......... .......... .......... .......... 82% 41.1M 0s +2024-04-11T17:58:51Z #15 2.773 104550K .......... .......... .......... .......... .......... 82% 34.0M 0s +2024-04-11T17:58:51Z #15 2.775 104600K .......... .......... .......... .......... .......... 82% 36.6M 0s +2024-04-11T17:58:51Z #15 2.776 104650K .......... .......... .......... .......... .......... 82% 24.1M 0s +2024-04-11T17:58:51Z #15 2.778 104700K .......... .......... .......... .......... .......... 82% 29.1M 0s +2024-04-11T17:58:51Z #15 2.780 104750K .......... .......... .......... .......... .......... 82% 47.8M 0s +2024-04-11T17:58:51Z #15 2.780 104800K .......... .......... .......... .......... .......... 82% 41.3M 0s +2024-04-11T17:58:51Z #15 2.782 104850K .......... .......... .......... .......... .......... 82% 139M 0s +2024-04-11T17:58:51Z #15 2.782 104900K .......... .......... .......... .......... .......... 82% 28.6M 0s +2024-04-11T17:58:51Z #15 2.784 104950K .......... .......... .......... .......... .......... 82% 31.4M 0s +2024-04-11T17:58:51Z #15 2.786 105000K .......... .......... .......... .......... .......... 82% 22.6M 0s +2024-04-11T17:58:51Z #15 2.788 105050K .......... .......... .......... .......... .......... 82% 49.5M 0s +2024-04-11T17:58:51Z #15 2.789 105100K .......... .......... .......... .......... .......... 82% 34.6M 0s +2024-04-11T17:58:51Z #15 2.790 105150K .......... .......... .......... .......... .......... 82% 35.8M 0s +2024-04-11T17:58:51Z #15 2.791 105200K .......... .......... .......... .......... .......... 83% 33.1M 0s +2024-04-11T17:58:51Z #15 2.793 105250K .......... .......... .......... .......... .......... 83% 35.7M 0s +2024-04-11T17:58:51Z #15 2.794 105300K .......... .......... .......... .......... .......... 83% 40.5M 0s +2024-04-11T17:58:51Z #15 2.795 105350K .......... .......... .......... .......... .......... 83% 24.7M 0s +2024-04-11T17:58:51Z #15 2.797 105400K .......... .......... .......... .......... .......... 83% 42.0M 0s +2024-04-11T17:58:51Z #15 2.799 105450K .......... .......... .......... .......... .......... 83% 38.8M 0s +2024-04-11T17:58:51Z #15 2.800 105500K .......... .......... .......... .......... .......... 83% 49.9M 0s +2024-04-11T17:58:51Z #15 2.801 105550K .......... .......... .......... .......... .......... 83% 27.5M 0s +2024-04-11T17:58:51Z #15 2.803 105600K .......... .......... .......... .......... .......... 83% 27.7M 0s +2024-04-11T17:58:52Z #15 2.805 105650K .......... .......... .......... .......... .......... 83% 48.5M 0s +2024-04-11T17:58:52Z #15 2.805 105700K .......... .......... .......... .......... .......... 83% 25.0M 0s +2024-04-11T17:58:52Z #15 2.807 105750K .......... .......... .......... .......... .......... 83% 63.4M 0s +2024-04-11T17:58:52Z #15 2.808 105800K .......... .......... .......... .......... .......... 83% 19.5M 0s +2024-04-11T17:58:52Z #15 2.810 105850K .......... .......... .......... .......... .......... 83% 35.6M 0s +2024-04-11T17:58:52Z #15 2.812 105900K .......... .......... .......... .......... .......... 83% 34.4M 0s +2024-04-11T17:58:52Z #15 2.813 105950K .......... .......... .......... .......... .......... 83% 27.9M 0s +2024-04-11T17:58:52Z #15 2.815 106000K .......... .......... .......... .......... .......... 83% 46.1M 0s +2024-04-11T17:58:52Z #15 2.816 106050K .......... .......... .......... .......... .......... 83% 25.0M 0s +2024-04-11T17:58:52Z #15 2.818 106100K .......... .......... .......... .......... .......... 83% 54.4M 0s +2024-04-11T17:58:52Z #15 2.819 106150K .......... .......... .......... .......... .......... 83% 78.1M 0s +2024-04-11T17:58:52Z #15 2.820 106200K .......... .......... .......... .......... .......... 83% 26.9M 0s +2024-04-11T17:58:52Z #15 2.822 106250K .......... .......... .......... .......... .......... 83% 30.9M 0s +2024-04-11T17:58:52Z #15 2.823 106300K .......... .......... .......... .......... .......... 83% 40.0M 0s +2024-04-11T17:58:52Z #15 2.824 106350K .......... .......... .......... .......... .......... 83% 27.6M 0s +2024-04-11T17:58:52Z #15 2.826 106400K .......... .......... .......... .......... .......... 83% 31.1M 0s +2024-04-11T17:58:52Z #15 2.828 106450K .......... .......... .......... .......... .......... 84% 34.6M 0s +2024-04-11T17:58:52Z #15 2.829 106500K .......... .......... .......... .......... .......... 84% 30.0M 0s +2024-04-11T17:58:52Z #15 2.831 106550K .......... .......... .......... .......... .......... 84% 46.1M 0s +2024-04-11T17:58:52Z #15 2.832 106600K .......... .......... .......... .......... .......... 84% 28.7M 0s +2024-04-11T17:58:52Z #15 2.833 106650K .......... .......... .......... .......... .......... 84% 23.0M 0s +2024-04-11T17:58:52Z #15 2.835 106700K .......... .......... .......... .......... .......... 84% 32.5M 0s +2024-04-11T17:58:52Z #15 2.837 106750K .......... .......... .......... .......... .......... 84% 26.7M 0s +2024-04-11T17:58:52Z #15 2.839 106800K .......... .......... .......... .......... .......... 84% 31.2M 0s +2024-04-11T17:58:52Z #15 2.840 106850K .......... .......... .......... .......... .......... 84% 32.7M 0s +2024-04-11T17:58:52Z #15 2.842 106900K .......... .......... .......... .......... .......... 84% 28.2M 0s +2024-04-11T17:58:52Z #15 2.844 106950K .......... .......... .......... .......... .......... 84% 159M 0s +2024-04-11T17:58:52Z #15 2.844 107000K .......... .......... .......... .......... .......... 84% 21.8M 0s +2024-04-11T17:58:52Z #15 2.846 107050K .......... .......... .......... .......... .......... 84% 49.2M 0s +2024-04-11T17:58:52Z #15 2.848 107100K .......... .......... .......... .......... .......... 84% 29.9M 0s +2024-04-11T17:58:52Z #15 2.849 107150K .......... .......... .......... .......... .......... 84% 27.2M 0s +2024-04-11T17:58:52Z #15 2.850 107200K .......... .......... .......... .......... .......... 84% 39.4M 0s +2024-04-11T17:58:52Z #15 2.852 107250K .......... .......... .......... .......... .......... 84% 81.1M 0s +2024-04-11T17:58:52Z #15 2.852 107300K .......... .......... .......... .......... .......... 84% 19.2M 0s +2024-04-11T17:58:52Z #15 2.855 107350K .......... .......... .......... .......... .......... 84% 46.8M 0s +2024-04-11T17:58:52Z #15 2.856 107400K .......... .......... .......... .......... .......... 84% 31.2M 0s +2024-04-11T17:58:52Z #15 2.857 107450K .......... .......... .......... .......... .......... 84% 45.6M 0s +2024-04-11T17:58:52Z #15 2.859 107500K .......... .......... .......... .......... .......... 84% 42.2M 0s +2024-04-11T17:58:52Z #15 2.860 107550K .......... .......... .......... .......... .......... 84% 29.2M 0s +2024-04-11T17:58:52Z #15 2.861 107600K .......... .......... .......... .......... .......... 84% 43.2M 0s +2024-04-11T17:58:52Z #15 2.863 107650K .......... .......... .......... .......... .......... 84% 28.3M 0s +2024-04-11T17:58:52Z #15 2.864 107700K .......... .......... .......... .......... .......... 84% 31.2M 0s +2024-04-11T17:58:52Z #15 2.866 107750K .......... .......... .......... .......... .......... 85% 20.6M 0s +2024-04-11T17:58:52Z #15 2.868 107800K .......... .......... .......... .......... .......... 85% 33.4M 0s +2024-04-11T17:58:52Z #15 2.870 107850K .......... .......... .......... .......... .......... 85% 143M 0s +2024-04-11T17:58:52Z #15 2.870 107900K .......... .......... .......... .......... .......... 85% 31.6M 0s +2024-04-11T17:58:52Z #15 2.871 107950K .......... .......... .......... .......... .......... 85% 30.1M 0s +2024-04-11T17:58:52Z #15 2.873 108000K .......... .......... .......... .......... .......... 85% 37.9M 0s +2024-04-11T17:58:52Z #15 2.875 108050K .......... .......... .......... .......... .......... 85% 21.7M 0s +2024-04-11T17:58:52Z #15 2.877 108100K .......... .......... .......... .......... .......... 85% 49.8M 0s +2024-04-11T17:58:52Z #15 2.878 108150K .......... .......... .......... .......... .......... 85% 39.0M 0s +2024-04-11T17:58:52Z #15 2.879 108200K .......... .......... .......... .......... .......... 85% 21.5M 0s +2024-04-11T17:58:52Z #15 2.881 108250K .......... .......... .......... .......... .......... 85% 45.0M 0s +2024-04-11T17:58:52Z #15 2.882 108300K .......... .......... .......... .......... .......... 85% 34.0M 0s +2024-04-11T17:58:52Z #15 2.884 108350K .......... .......... .......... .......... .......... 85% 29.0M 0s +2024-04-11T17:58:52Z #15 2.885 108400K .......... .......... .......... .......... .......... 85% 44.3M 0s +2024-04-11T17:58:52Z #15 2.887 108450K .......... .......... .......... .......... .......... 85% 41.2M 0s +2024-04-11T17:58:52Z #15 2.888 108500K .......... .......... .......... .......... .......... 85% 22.4M 0s +2024-04-11T17:58:52Z #15 2.890 108550K .......... .......... .......... .......... .......... 85% 57.1M 0s +2024-04-11T17:58:52Z #15 2.891 108600K .......... .......... .......... .......... .......... 85% 21.7M 0s +2024-04-11T17:58:52Z #15 2.893 108650K .......... .......... .......... .......... .......... 85% 32.7M 0s +2024-04-11T17:58:52Z #15 2.894 108700K .......... .......... .......... .......... .......... 85% 45.6M 0s +2024-04-11T17:58:52Z #15 2.896 108750K .......... .......... .......... .......... .......... 85% 21.8M 0s +2024-04-11T17:58:52Z #15 2.898 108800K .......... .......... .......... .......... .......... 85% 46.2M 0s +2024-04-11T17:58:52Z #15 2.899 108850K .......... .......... .......... .......... .......... 85% 23.3M 0s +2024-04-11T17:58:52Z #15 2.901 108900K .......... .......... .......... .......... .......... 85% 36.5M 0s +2024-04-11T17:58:52Z #15 2.902 108950K .......... .......... .......... .......... .......... 85% 67.0M 0s +2024-04-11T17:58:52Z #15 2.904 109000K .......... .......... .......... .......... .......... 86% 33.4M 0s +2024-04-11T17:58:52Z #15 2.904 109050K .......... .......... .......... .......... .......... 86% 24.0M 0s +2024-04-11T17:58:52Z #15 2.907 109100K .......... .......... .......... .......... .......... 86% 29.8M 0s +2024-04-11T17:58:52Z #15 2.908 109150K .......... .......... .......... .......... .......... 86% 49.8M 0s +2024-04-11T17:58:52Z #15 2.909 109200K .......... .......... .......... .......... .......... 86% 23.2M 0s +2024-04-11T17:58:52Z #15 2.911 109250K .......... .......... .......... .......... .......... 86% 25.9M 0s +2024-04-11T17:58:52Z #15 2.913 109300K .......... .......... .......... .......... .......... 86% 40.7M 0s +2024-04-11T17:58:52Z #15 2.915 109350K .......... .......... .......... .......... .......... 86% 65.7M 0s +2024-04-11T17:58:52Z #15 2.915 109400K .......... .......... .......... .......... .......... 86% 26.4M 0s +2024-04-11T17:58:52Z #15 2.917 109450K .......... .......... .......... .......... .......... 86% 29.2M 0s +2024-04-11T17:58:52Z #15 2.918 109500K .......... .......... .......... .......... .......... 86% 60.9M 0s +2024-04-11T17:58:52Z #15 2.919 109550K .......... .......... .......... .......... .......... 86% 38.2M 0s +2024-04-11T17:58:52Z #15 2.921 109600K .......... .......... .......... .......... .......... 86% 32.1M 0s +2024-04-11T17:58:52Z #15 2.922 109650K .......... .......... .......... .......... .......... 86% 60.9M 0s +2024-04-11T17:58:52Z #15 2.923 109700K .......... .......... .......... .......... .......... 86% 21.7M 0s +2024-04-11T17:58:52Z #15 2.925 109750K .......... .......... .......... .......... .......... 86% 30.0M 0s +2024-04-11T17:58:52Z #15 2.928 109800K .......... .......... .......... .......... .......... 86% 19.1M 0s +2024-04-11T17:58:52Z #15 2.929 109850K .......... .......... .......... .......... .......... 86% 35.4M 0s +2024-04-11T17:58:52Z #15 2.931 109900K .......... .......... .......... .......... .......... 86% 46.7M 0s +2024-04-11T17:58:52Z #15 2.932 109950K .......... .......... .......... .......... .......... 86% 26.5M 0s +2024-04-11T17:58:52Z #15 2.934 110000K .......... .......... .......... .......... .......... 86% 27.8M 0s +2024-04-11T17:58:52Z #15 2.936 110050K .......... .......... .......... .......... .......... 86% 37.7M 0s +2024-04-11T17:58:52Z #15 2.937 110100K .......... .......... .......... .......... .......... 86% 33.7M 0s +2024-04-11T17:58:52Z #15 2.938 110150K .......... .......... .......... .......... .......... 86% 44.6M 0s +2024-04-11T17:58:52Z #15 2.939 110200K .......... .......... .......... .......... .......... 86% 36.6M 0s +2024-04-11T17:58:52Z #15 2.941 110250K .......... .......... .......... .......... .......... 86% 26.8M 0s +2024-04-11T17:58:52Z #15 2.943 110300K .......... .......... .......... .......... .......... 87% 63.7M 0s +2024-04-11T17:58:52Z #15 2.943 110350K .......... .......... .......... .......... .......... 87% 29.4M 0s +2024-04-11T17:58:52Z #15 2.945 110400K .......... .......... .......... .......... .......... 87% 40.2M 0s +2024-04-11T17:58:52Z #15 2.947 110450K .......... .......... .......... .......... .......... 87% 29.1M 0s +2024-04-11T17:58:52Z #15 2.948 110500K .......... .......... .......... .......... .......... 87% 53.2M 0s +2024-04-11T17:58:52Z #15 2.949 110550K .......... .......... .......... .......... .......... 87% 30.1M 0s +2024-04-11T17:58:52Z #15 2.950 110600K .......... .......... .......... .......... .......... 87% 25.7M 0s +2024-04-11T17:58:52Z #15 2.952 110650K .......... .......... .......... .......... .......... 87% 43.9M 0s +2024-04-11T17:58:52Z #15 2.953 110700K .......... .......... .......... .......... .......... 87% 33.9M 0s +2024-04-11T17:58:52Z #15 2.955 110750K .......... .......... .......... .......... .......... 87% 39.8M 0s +2024-04-11T17:58:52Z #15 2.956 110800K .......... .......... .......... .......... .......... 87% 57.0M 0s +2024-04-11T17:58:52Z #15 2.957 110850K .......... .......... .......... .......... .......... 87% 29.0M 0s +2024-04-11T17:58:52Z #15 2.959 110900K .......... .......... .......... .......... .......... 87% 36.2M 0s +2024-04-11T17:58:52Z #15 2.960 110950K .......... .......... .......... .......... .......... 87% 38.2M 0s +2024-04-11T17:58:52Z #15 2.962 111000K .......... .......... .......... .......... .......... 87% 29.5M 0s +2024-04-11T17:58:52Z #15 2.963 111050K .......... .......... .......... .......... .......... 87% 28.5M 0s +2024-04-11T17:58:52Z #15 2.965 111100K .......... .......... .......... .......... .......... 87% 38.5M 0s +2024-04-11T17:58:52Z #15 2.966 111150K .......... .......... .......... .......... .......... 87% 31.7M 0s +2024-04-11T17:58:52Z #15 2.967 111200K .......... .......... .......... .......... .......... 87% 34.3M 0s +2024-04-11T17:58:52Z #15 2.969 111250K .......... .......... .......... .......... .......... 87% 20.5M 0s +2024-04-11T17:58:52Z #15 2.971 111300K .......... .......... .......... .......... .......... 87% 33.4M 0s +2024-04-11T17:58:52Z #15 2.973 111350K .......... .......... .......... .......... .......... 87% 40.4M 0s +2024-04-11T17:58:52Z #15 2.974 111400K .......... .......... .......... .......... .......... 87% 24.0M 0s +2024-04-11T17:58:52Z #15 2.976 111450K .......... .......... .......... .......... .......... 87% 30.8M 0s +2024-04-11T17:58:52Z #15 2.977 111500K .......... .......... .......... .......... .......... 87% 44.6M 0s +2024-04-11T17:58:52Z #15 2.979 111550K .......... .......... .......... .......... .......... 88% 28.3M 0s +2024-04-11T17:58:52Z #15 2.981 111600K .......... .......... .......... .......... .......... 88% 31.4M 0s +2024-04-11T17:58:52Z #15 2.982 111650K .......... .......... .......... .......... .......... 88% 23.7M 0s +2024-04-11T17:58:52Z #15 2.984 111700K .......... .......... .......... .......... .......... 88% 31.2M 0s +2024-04-11T17:58:52Z #15 2.986 111750K .......... .......... .......... .......... .......... 88% 24.0M 0s +2024-04-11T17:58:52Z #15 2.988 111800K .......... .......... .......... .......... .......... 88% 56.8M 0s +2024-04-11T17:58:52Z #15 2.988 111850K .......... .......... .......... .......... .......... 88% 32.9M 0s +2024-04-11T17:58:52Z #15 2.993 111900K .......... .......... .......... .......... .......... 88% 24.6M 0s +2024-04-11T17:58:52Z #15 2.993 111950K .......... .......... .......... .......... .......... 88% 95.8M 0s +2024-04-11T17:58:52Z #15 2.993 112000K .......... .......... .......... .......... .......... 88% 201M 0s +2024-04-11T17:58:52Z #15 2.993 112050K .......... .......... .......... .......... .......... 88% 176M 0s +2024-04-11T17:58:52Z #15 2.993 112100K .......... .......... .......... .......... .......... 88% 144M 0s +2024-04-11T17:58:52Z #15 2.994 112150K .......... .......... .......... .......... .......... 88% 11.5M 0s +2024-04-11T17:58:52Z #15 2.997 112200K .......... .......... .......... .......... .......... 88% 38.6M 0s +2024-04-11T17:58:52Z #15 2.999 112250K .......... .......... .......... .......... .......... 88% 24.5M 0s +2024-04-11T17:58:52Z #15 3.002 112300K .......... .......... .......... .......... .......... 88% 23.1M 0s +2024-04-11T17:58:52Z #15 3.003 112350K .......... .......... .......... .......... .......... 88% 44.4M 0s +2024-04-11T17:58:52Z #15 3.004 112400K .......... .......... .......... .......... .......... 88% 26.6M 0s +2024-04-11T17:58:52Z #15 3.006 112450K .......... .......... .......... .......... .......... 88% 29.9M 0s +2024-04-11T17:58:52Z #15 3.007 112500K .......... .......... .......... .......... .......... 88% 38.4M 0s +2024-04-11T17:58:52Z #15 3.009 112550K .......... .......... .......... .......... .......... 88% 30.9M 0s +2024-04-11T17:58:52Z #15 3.010 112600K .......... .......... .......... .......... .......... 88% 49.5M 0s +2024-04-11T17:58:52Z #15 3.011 112650K .......... .......... .......... .......... .......... 88% 35.2M 0s +2024-04-11T17:58:52Z #15 3.013 112700K .......... .......... .......... .......... .......... 88% 25.8M 0s +2024-04-11T17:58:52Z #15 3.015 112750K .......... .......... .......... .......... .......... 88% 36.3M 0s +2024-04-11T17:58:52Z #15 3.016 112800K .......... .......... .......... .......... .......... 89% 36.4M 0s +2024-04-11T17:58:52Z #15 3.017 112850K .......... .......... .......... .......... .......... 89% 28.6M 0s +2024-04-11T17:58:52Z #15 3.019 112900K .......... .......... .......... .......... .......... 89% 31.1M 0s +2024-04-11T17:58:52Z #15 3.020 112950K .......... .......... .......... .......... .......... 89% 36.7M 0s +2024-04-11T17:58:52Z #15 3.022 113000K .......... .......... .......... .......... .......... 89% 59.4M 0s +2024-04-11T17:58:52Z #15 3.023 113050K .......... .......... .......... .......... .......... 89% 25.8M 0s +2024-04-11T17:58:52Z #15 3.025 113100K .......... .......... .......... .......... .......... 89% 45.3M 0s +2024-04-11T17:58:52Z #15 3.026 113150K .......... .......... .......... .......... .......... 89% 39.7M 0s +2024-04-11T17:58:52Z #15 3.027 113200K .......... .......... .......... .......... .......... 89% 22.3M 0s +2024-04-11T17:58:52Z #15 3.029 113250K .......... .......... .......... .......... .......... 89% 40.8M 0s +2024-04-11T17:58:52Z #15 3.030 113300K .......... .......... .......... .......... .......... 89% 147M 0s +2024-04-11T17:58:52Z #15 3.030 113350K .......... .......... .......... .......... .......... 89% 26.7M 0s +2024-04-11T17:58:52Z #15 3.032 113400K .......... .......... .......... .......... .......... 89% 34.2M 0s +2024-04-11T17:58:52Z #15 3.034 113450K .......... .......... .......... .......... .......... 89% 30.4M 0s +2024-04-11T17:58:52Z #15 3.036 113500K .......... .......... .......... .......... .......... 89% 46.8M 0s +2024-04-11T17:58:52Z #15 3.037 113550K .......... .......... .......... .......... .......... 89% 15.8M 0s +2024-04-11T17:58:52Z #15 3.039 113600K .......... .......... .......... .......... .......... 89% 84.7M 0s +2024-04-11T17:58:52Z #15 3.041 113650K .......... .......... .......... .......... .......... 89% 21.1M 0s +2024-04-11T17:58:52Z #15 3.043 113700K .......... .......... .......... .......... .......... 89% 38.3M 0s +2024-04-11T17:58:52Z #15 3.044 113750K .......... .......... .......... .......... .......... 89% 121M 0s +2024-04-11T17:58:52Z #15 3.044 113800K .......... .......... .......... .......... .......... 89% 25.3M 0s +2024-04-11T17:58:52Z #15 3.046 113850K .......... .......... .......... .......... .......... 89% 27.4M 0s +2024-04-11T17:58:52Z #15 3.048 113900K .......... .......... .......... .......... .......... 89% 115M 0s +2024-04-11T17:58:52Z #15 3.048 113950K .......... .......... .......... .......... .......... 89% 20.1M 0s +2024-04-11T17:58:52Z #15 3.051 114000K .......... .......... .......... .......... .......... 89% 37.0M 0s +2024-04-11T17:58:52Z #15 3.052 114050K .......... .......... .......... .......... .......... 89% 27.3M 0s +2024-04-11T17:58:52Z #15 3.054 114100K .......... .......... .......... .......... .......... 90% 25.2M 0s +2024-04-11T17:58:52Z #15 3.056 114150K .......... .......... .......... .......... .......... 90% 53.0M 0s +2024-04-11T17:58:52Z #15 3.057 114200K .......... .......... .......... .......... .......... 90% 33.7M 0s +2024-04-11T17:58:52Z #15 3.058 114250K .......... .......... .......... .......... .......... 90% 22.4M 0s +2024-04-11T17:58:52Z #15 3.060 114300K .......... .......... .......... .......... .......... 90% 32.9M 0s +2024-04-11T17:58:52Z #15 3.062 114350K .......... .......... .......... .......... .......... 90% 23.3M 0s +2024-04-11T17:58:52Z #15 3.064 114400K .......... .......... .......... .......... .......... 90% 63.2M 0s +2024-04-11T17:58:52Z #15 3.065 114450K .......... .......... .......... .......... .......... 90% 31.1M 0s +2024-04-11T17:58:52Z #15 3.066 114500K .......... .......... .......... .......... .......... 90% 26.2M 0s +2024-04-11T17:58:52Z #15 3.068 114550K .......... .......... .......... .......... .......... 90% 34.1M 0s +2024-04-11T17:58:52Z #15 3.070 114600K .......... .......... .......... .......... .......... 90% 29.4M 0s +2024-04-11T17:58:52Z #15 3.071 114650K .......... .......... .......... .......... .......... 90% 44.6M 0s +2024-04-11T17:58:52Z #15 3.072 114700K .......... .......... .......... .......... .......... 90% 28.0M 0s +2024-04-11T17:58:52Z #15 3.074 114750K .......... .......... .......... .......... .......... 90% 55.1M 0s +2024-04-11T17:58:52Z #15 3.075 114800K .......... .......... .......... .......... .......... 90% 53.1M 0s +2024-04-11T17:58:52Z #15 3.076 114850K .......... .......... .......... .......... .......... 90% 55.7M 0s +2024-04-11T17:58:52Z #15 3.077 114900K .......... .......... .......... .......... .......... 90% 24.4M 0s +2024-04-11T17:58:52Z #15 3.079 114950K .......... .......... .......... .......... .......... 90% 48.7M 0s +2024-04-11T17:58:52Z #15 3.080 115000K .......... .......... .......... .......... .......... 90% 48.7M 0s +2024-04-11T17:58:52Z #15 3.081 115050K .......... .......... .......... .......... .......... 90% 66.3M 0s +2024-04-11T17:58:52Z #15 3.082 115100K .......... .......... .......... .......... .......... 90% 19.6M 0s +2024-04-11T17:58:52Z #15 3.084 115150K .......... .......... .......... .......... .......... 90% 60.4M 0s +2024-04-11T17:58:52Z #15 3.085 115200K .......... .......... .......... .......... .......... 90% 65.8M 0s +2024-04-11T17:58:52Z #15 3.085 115250K .......... .......... .......... .......... .......... 90% 21.3M 0s +2024-04-11T17:58:52Z #15 3.088 115300K .......... .......... .......... .......... .......... 90% 48.3M 0s +2024-04-11T17:58:52Z #15 3.089 115350K .......... .......... .......... .......... .......... 91% 24.3M 0s +2024-04-11T17:58:52Z #15 3.091 115400K .......... .......... .......... .......... .......... 91% 149M 0s +2024-04-11T17:58:52Z #15 3.091 115450K .......... .......... .......... .......... .......... 91% 30.4M 0s +2024-04-11T17:58:52Z #15 3.093 115500K .......... .......... .......... .......... .......... 91% 41.4M 0s +2024-04-11T17:58:52Z #15 3.094 115550K .......... .......... .......... .......... .......... 91% 41.7M 0s +2024-04-11T17:58:52Z #15 3.095 115600K .......... .......... .......... .......... .......... 91% 26.8M 0s +2024-04-11T17:58:52Z #15 3.097 115650K .......... .......... .......... .......... .......... 91% 34.0M 0s +2024-04-11T17:58:52Z #15 3.098 115700K .......... .......... .......... .......... .......... 91% 62.5M 0s +2024-04-11T17:58:52Z #15 3.099 115750K .......... .......... .......... .......... .......... 91% 34.9M 0s +2024-04-11T17:58:52Z #15 3.100 115800K .......... .......... .......... .......... .......... 91% 33.2M 0s +2024-04-11T17:58:52Z #15 3.102 115850K .......... .......... .......... .......... .......... 91% 73.8M 0s +2024-04-11T17:58:52Z #15 3.103 115900K .......... .......... .......... .......... .......... 91% 26.2M 0s +2024-04-11T17:58:52Z #15 3.105 115950K .......... .......... .......... .......... .......... 91% 40.7M 0s +2024-04-11T17:58:52Z #15 3.106 116000K .......... .......... .......... .......... .......... 91% 46.8M 0s +2024-04-11T17:58:52Z #15 3.107 116050K .......... .......... .......... .......... .......... 91% 169M 0s +2024-04-11T17:58:52Z #15 3.107 116100K .......... .......... .......... .......... .......... 91% 32.8M 0s +2024-04-11T17:58:52Z #15 3.109 116150K .......... .......... .......... .......... .......... 91% 31.6M 0s +2024-04-11T17:58:52Z #15 3.110 116200K .......... .......... .......... .......... .......... 91% 52.6M 0s +2024-04-11T17:58:52Z #15 3.111 116250K .......... .......... .......... .......... .......... 91% 31.0M 0s +2024-04-11T17:58:52Z #15 3.113 116300K .......... .......... .......... .......... .......... 91% 28.9M 0s +2024-04-11T17:58:52Z #15 3.114 116350K .......... .......... .......... .......... .......... 91% 34.2M 0s +2024-04-11T17:58:52Z #15 3.116 116400K .......... .......... .......... .......... .......... 91% 30.0M 0s +2024-04-11T17:58:52Z #15 3.118 116450K .......... .......... .......... .......... .......... 91% 23.1M 0s +2024-04-11T17:58:52Z #15 3.120 116500K .......... .......... .......... .......... .......... 91% 38.4M 0s +2024-04-11T17:58:52Z #15 3.121 116550K .......... .......... .......... .......... .......... 91% 38.1M 0s +2024-04-11T17:58:52Z #15 3.122 116600K .......... .......... .......... .......... .......... 92% 26.3M 0s +2024-04-11T17:58:52Z #15 3.124 116650K .......... .......... .......... .......... .......... 92% 38.9M 0s +2024-04-11T17:58:52Z #15 3.125 116700K .......... .......... .......... .......... .......... 92% 36.3M 0s +2024-04-11T17:58:52Z #15 3.126 116750K .......... .......... .......... .......... .......... 92% 40.7M 0s +2024-04-11T17:58:52Z #15 3.128 116800K .......... .......... .......... .......... .......... 92% 143M 0s +2024-04-11T17:58:52Z #15 3.128 116850K .......... .......... .......... .......... .......... 92% 17.8M 0s +2024-04-11T17:58:52Z #15 3.131 116900K .......... .......... .......... .......... .......... 92% 51.4M 0s +2024-04-11T17:58:52Z #15 3.132 116950K .......... .......... .......... .......... .......... 92% 49.7M 0s +2024-04-11T17:58:52Z #15 3.133 117000K .......... .......... .......... .......... .......... 92% 26.5M 0s +2024-04-11T17:58:52Z #15 3.135 117050K .......... .......... .......... .......... .......... 92% 37.1M 0s +2024-04-11T17:58:52Z #15 3.136 117100K .......... .......... .......... .......... .......... 92% 48.3M 0s +2024-04-11T17:58:52Z #15 3.137 117150K .......... .......... .......... .......... .......... 92% 36.8M 0s +2024-04-11T17:58:52Z #15 3.138 117200K .......... .......... .......... .......... .......... 92% 41.5M 0s +2024-04-11T17:58:52Z #15 3.140 117250K .......... .......... .......... .......... .......... 92% 28.5M 0s +2024-04-11T17:58:52Z #15 3.141 117300K .......... .......... .......... .......... .......... 92% 95.9M 0s +2024-04-11T17:58:52Z #15 3.142 117350K .......... .......... .......... .......... .......... 92% 17.8M 0s +2024-04-11T17:58:52Z #15 3.144 117400K .......... .......... .......... .......... .......... 92% 37.3M 0s +2024-04-11T17:58:52Z #15 3.146 117450K .......... .......... .......... .......... .......... 92% 65.6M 0s +2024-04-11T17:58:52Z #15 3.147 117500K .......... .......... .......... .......... .......... 92% 27.1M 0s +2024-04-11T17:58:52Z #15 3.148 117550K .......... .......... .......... .......... .......... 92% 31.7M 0s +2024-04-11T17:58:52Z #15 3.150 117600K .......... .......... .......... .......... .......... 92% 36.4M 0s +2024-04-11T17:58:52Z #15 3.151 117650K .......... .......... .......... .......... .......... 92% 25.9M 0s +2024-04-11T17:58:52Z #15 3.153 117700K .......... .......... .......... .......... .......... 92% 49.0M 0s +2024-04-11T17:58:52Z #15 3.154 117750K .......... .......... .......... .......... .......... 92% 33.4M 0s +2024-04-11T17:58:52Z #15 3.155 117800K .......... .......... .......... .......... .......... 92% 29.2M 0s +2024-04-11T17:58:52Z #15 3.157 117850K .......... .......... .......... .......... .......... 92% 44.0M 0s +2024-04-11T17:58:52Z #15 3.158 117900K .......... .......... .......... .......... .......... 93% 32.7M 0s +2024-04-11T17:58:52Z #15 3.160 117950K .......... .......... .......... .......... .......... 93% 32.8M 0s +2024-04-11T17:58:52Z #15 3.161 118000K .......... .......... .......... .......... .......... 93% 53.8M 0s +2024-04-11T17:58:52Z #15 3.162 118050K .......... .......... .......... .......... .......... 93% 21.9M 0s +2024-04-11T17:58:52Z #15 3.164 118100K .......... .......... .......... .......... .......... 93% 56.1M 0s +2024-04-11T17:58:52Z #15 3.165 118150K .......... .......... .......... .......... .......... 93% 32.8M 0s +2024-04-11T17:58:52Z #15 3.167 118200K .......... .......... .......... .......... .......... 93% 28.1M 0s +2024-04-11T17:58:52Z #15 3.169 118250K .......... .......... .......... .......... .......... 93% 37.1M 0s +2024-04-11T17:58:52Z #15 3.170 118300K .......... .......... .......... .......... .......... 93% 32.4M 0s +2024-04-11T17:58:52Z #15 3.172 118350K .......... .......... .......... .......... .......... 93% 28.6M 0s +2024-04-11T17:58:52Z #15 3.173 118400K .......... .......... .......... .......... .......... 93% 48.5M 0s +2024-04-11T17:58:52Z #15 3.174 118450K .......... .......... .......... .......... .......... 93% 37.0M 0s +2024-04-11T17:58:52Z #15 3.175 118500K .......... .......... .......... .......... .......... 93% 34.5M 0s +2024-04-11T17:58:52Z #15 3.177 118550K .......... .......... .......... .......... .......... 93% 57.2M 0s +2024-04-11T17:58:52Z #15 3.177 118600K .......... .......... .......... .......... .......... 93% 24.7M 0s +2024-04-11T17:58:52Z #15 3.180 118650K .......... .......... .......... .......... .......... 93% 46.9M 0s +2024-04-11T17:58:52Z #15 3.181 118700K .......... .......... .......... .......... .......... 93% 73.2M 0s +2024-04-11T17:58:52Z #15 3.181 118750K .......... .......... .......... .......... .......... 93% 39.9M 0s +2024-04-11T17:58:52Z #15 3.182 118800K .......... .......... .......... .......... .......... 93% 35.3M 0s +2024-04-11T17:58:52Z #15 3.184 118850K .......... .......... .......... .......... .......... 93% 35.5M 0s +2024-04-11T17:58:52Z #15 3.185 118900K .......... .......... .......... .......... .......... 93% 27.6M 0s +2024-04-11T17:58:52Z #15 3.187 118950K .......... .......... .......... .......... .......... 93% 53.0M 0s +2024-04-11T17:58:52Z #15 3.188 119000K .......... .......... .......... .......... .......... 93% 36.8M 0s +2024-04-11T17:58:52Z #15 3.189 119050K .......... .......... .......... .......... .......... 93% 42.2M 0s +2024-04-11T17:58:52Z #15 3.191 119100K .......... .......... .......... .......... .......... 93% 34.9M 0s +2024-04-11T17:58:52Z #15 3.192 119150K .......... .......... .......... .......... .......... 94% 45.2M 0s +2024-04-11T17:58:52Z #15 3.193 119200K .......... .......... .......... .......... .......... 94% 35.4M 0s +2024-04-11T17:58:52Z #15 3.194 119250K .......... .......... .......... .......... .......... 94% 39.1M 0s +2024-04-11T17:58:52Z #15 3.195 119300K .......... .......... .......... .......... .......... 94% 32.5M 0s +2024-04-11T17:58:52Z #15 3.197 119350K .......... .......... .......... .......... .......... 94% 31.0M 0s +2024-04-11T17:58:52Z #15 3.198 119400K .......... .......... .......... .......... .......... 94% 81.7M 0s +2024-04-11T17:58:52Z #15 3.199 119450K .......... .......... .......... .......... .......... 94% 28.4M 0s +2024-04-11T17:58:52Z #15 3.201 119500K .......... .......... .......... .......... .......... 94% 22.5M 0s +2024-04-11T17:58:52Z #15 3.203 119550K .......... .......... .......... .......... .......... 94% 43.5M 0s +2024-04-11T17:58:52Z #15 3.204 119600K .......... .......... .......... .......... .......... 94% 38.4M 0s +2024-04-11T17:58:52Z #15 3.206 119650K .......... .......... .......... .......... .......... 94% 73.5M 0s +2024-04-11T17:58:52Z #15 3.206 119700K .......... .......... .......... .......... .......... 94% 22.5M 0s +2024-04-11T17:58:52Z #15 3.209 119750K .......... .......... .......... .......... .......... 94% 22.4M 0s +2024-04-11T17:58:52Z #15 3.210 119800K .......... .......... .......... .......... .......... 94% 89.0M 0s +2024-04-11T17:58:52Z #15 3.211 119850K .......... .......... .......... .......... .......... 94% 25.8M 0s +2024-04-11T17:58:52Z #15 3.213 119900K .......... .......... .......... .......... .......... 94% 32.6M 0s +2024-04-11T17:58:52Z #15 3.214 119950K .......... .......... .......... .......... .......... 94% 27.6M 0s +2024-04-11T17:58:52Z #15 3.216 120000K .......... .......... .......... .......... .......... 94% 49.1M 0s +2024-04-11T17:58:52Z #15 3.217 120050K .......... .......... .......... .......... .......... 94% 35.5M 0s +2024-04-11T17:58:52Z #15 3.219 120100K .......... .......... .......... .......... .......... 94% 35.1M 0s +2024-04-11T17:58:52Z #15 3.220 120150K .......... .......... .......... .......... .......... 94% 38.4M 0s +2024-04-11T17:58:52Z #15 3.221 120200K .......... .......... .......... .......... .......... 94% 34.8M 0s +2024-04-11T17:58:52Z #15 3.223 120250K .......... .......... .......... .......... .......... 94% 32.1M 0s +2024-04-11T17:58:52Z #15 3.224 120300K .......... .......... .......... .......... .......... 94% 40.4M 0s +2024-04-11T17:58:52Z #15 3.225 120350K .......... .......... .......... .......... .......... 94% 33.9M 0s +2024-04-11T17:58:52Z #15 3.227 120400K .......... .......... .......... .......... .......... 95% 137M 0s +2024-04-11T17:58:52Z #15 3.227 120450K .......... .......... .......... .......... .......... 95% 33.7M 0s +2024-04-11T17:58:52Z #15 3.228 120500K .......... .......... .......... .......... .......... 95% 44.6M 0s +2024-04-11T17:58:52Z #15 3.229 120550K .......... .......... .......... .......... .......... 95% 31.3M 0s +2024-04-11T17:58:52Z #15 3.231 120600K .......... .......... .......... .......... .......... 95% 32.8M 0s +2024-04-11T17:58:52Z #15 3.233 120650K .......... .......... .......... .......... .......... 95% 29.2M 0s +2024-04-11T17:58:52Z #15 3.234 120700K .......... .......... .......... .......... .......... 95% 31.6M 0s +2024-04-11T17:58:52Z #15 3.236 120750K .......... .......... .......... .......... .......... 95% 36.9M 0s +2024-04-11T17:58:52Z #15 3.237 120800K .......... .......... .......... .......... .......... 95% 26.6M 0s +2024-04-11T17:58:52Z #15 3.239 120850K .......... .......... .......... .......... .......... 95% 39.7M 0s +2024-04-11T17:58:52Z #15 3.241 120900K .......... .......... .......... .......... .......... 95% 79.0M 0s +2024-04-11T17:58:52Z #15 3.241 120950K .......... .......... .......... .......... .......... 95% 18.3M 0s +2024-04-11T17:58:52Z #15 3.244 121000K .......... .......... .......... .......... .......... 95% 31.6M 0s +2024-04-11T17:58:52Z #15 3.245 121050K .......... .......... .......... .......... .......... 95% 165M 0s +2024-04-11T17:58:52Z #15 3.245 121100K .......... .......... .......... .......... .......... 95% 33.3M 0s +2024-04-11T17:58:52Z #15 3.247 121150K .......... .......... .......... .......... .......... 95% 28.9M 0s +2024-04-11T17:58:52Z #15 3.249 121200K .......... .......... .......... .......... .......... 95% 60.5M 0s +2024-04-11T17:58:52Z #15 3.250 121250K .......... .......... .......... .......... .......... 95% 38.2M 0s +2024-04-11T17:58:52Z #15 3.251 121300K .......... .......... .......... .......... .......... 95% 24.0M 0s +2024-04-11T17:58:52Z #15 3.253 121350K .......... .......... .......... .......... .......... 95% 45.5M 0s +2024-04-11T17:58:52Z #15 3.254 121400K .......... .......... .......... .......... .......... 95% 79.9M 0s +2024-04-11T17:58:52Z #15 3.254 121450K .......... .......... .......... .......... .......... 95% 22.6M 0s +2024-04-11T17:58:52Z #15 3.257 121500K .......... .......... .......... .......... .......... 95% 148M 0s +2024-04-11T17:58:52Z #15 3.257 121550K .......... .......... .......... .......... .......... 95% 22.6M 0s +2024-04-11T17:58:52Z #15 3.259 121600K .......... .......... .......... .......... .......... 95% 32.1M 0s +2024-04-11T17:58:52Z #15 3.261 121650K .......... .......... .......... .......... .......... 95% 38.4M 0s +2024-04-11T17:58:52Z #15 3.262 121700K .......... .......... .......... .......... .......... 96% 23.4M 0s +2024-04-11T17:58:52Z #15 3.264 121750K .......... .......... .......... .......... .......... 96% 74.5M 0s +2024-04-11T17:58:52Z #15 3.265 121800K .......... .......... .......... .......... .......... 96% 30.2M 0s +2024-04-11T17:58:52Z #15 3.266 121850K .......... .......... .......... .......... .......... 96% 44.6M 0s +2024-04-11T17:58:52Z #15 3.268 121900K .......... .......... .......... .......... .......... 96% 31.9M 0s +2024-04-11T17:58:52Z #15 3.269 121950K .......... .......... .......... .......... .......... 96% 23.3M 0s +2024-04-11T17:58:52Z #15 3.271 122000K .......... .......... .......... .......... .......... 96% 27.3M 0s +2024-04-11T17:58:52Z #15 3.273 122050K .......... .......... .......... .......... .......... 96% 22.5M 0s +2024-04-11T17:58:52Z #15 3.275 122100K .......... .......... .......... .......... .......... 96% 36.3M 0s +2024-04-11T17:58:52Z #15 3.276 122150K .......... .......... .......... .......... .......... 96% 78.6M 0s +2024-04-11T17:58:52Z #15 3.277 122200K .......... .......... .......... .......... .......... 96% 33.5M 0s +2024-04-11T17:58:52Z #15 3.278 122250K .......... .......... .......... .......... .......... 96% 40.3M 0s +2024-04-11T17:58:52Z #15 3.280 122300K .......... .......... .......... .......... .......... 96% 45.7M 0s +2024-04-11T17:58:52Z #15 3.281 122350K .......... .......... .......... .......... .......... 96% 39.4M 0s +2024-04-11T17:58:52Z #15 3.282 122400K .......... .......... .......... .......... .......... 96% 32.6M 0s +2024-04-11T17:58:52Z #15 3.283 122450K .......... .......... .......... .......... .......... 96% 37.0M 0s +2024-04-11T17:58:52Z #15 3.285 122500K .......... .......... .......... .......... .......... 96% 77.0M 0s +2024-04-11T17:58:52Z #15 3.285 122550K .......... .......... .......... .......... .......... 96% 39.8M 0s +2024-04-11T17:58:52Z #15 3.287 122600K .......... .......... .......... .......... .......... 96% 44.9M 0s +2024-04-11T17:58:52Z #15 3.288 122650K .......... .......... .......... .......... .......... 96% 52.3M 0s +2024-04-11T17:58:52Z #15 3.288 122700K .......... .......... .......... .......... .......... 96% 26.6M 0s +2024-04-11T17:58:52Z #15 3.290 122750K .......... .......... .......... .......... .......... 96% 32.1M 0s +2024-04-11T17:58:52Z #15 3.292 122800K .......... .......... .......... .......... .......... 96% 41.3M 0s +2024-04-11T17:58:52Z #15 3.293 122850K .......... .......... .......... .......... .......... 96% 32.6M 0s +2024-04-11T17:58:52Z #15 3.295 122900K .......... .......... .......... .......... .......... 96% 30.1M 0s +2024-04-11T17:58:52Z #15 3.296 122950K .......... .......... .......... .......... .......... 97% 30.2M 0s +2024-04-11T17:58:52Z #15 3.298 123000K .......... .......... .......... .......... .......... 97% 48.7M 0s +2024-04-11T17:58:52Z #15 3.299 123050K .......... .......... .......... .......... .......... 97% 34.6M 0s +2024-04-11T17:58:52Z #15 3.300 123100K .......... .......... .......... .......... .......... 97% 22.9M 0s +2024-04-11T17:58:52Z #15 3.302 123150K .......... .......... .......... .......... .......... 97% 32.9M 0s +2024-04-11T17:58:52Z #15 3.304 123200K .......... .......... .......... .......... .......... 97% 44.5M 0s +2024-04-11T17:58:52Z #15 3.305 123250K .......... .......... .......... .......... .......... 97% 39.6M 0s +2024-04-11T17:58:52Z #15 3.306 123300K .......... .......... .......... .......... .......... 97% 29.4M 0s +2024-04-11T17:58:52Z #15 3.308 123350K .......... .......... .......... .......... .......... 97% 40.5M 0s +2024-04-11T17:58:52Z #15 3.309 123400K .......... .......... .......... .......... .......... 97% 46.1M 0s +2024-04-11T17:58:52Z #15 3.310 123450K .......... .......... .......... .......... .......... 97% 32.4M 0s +2024-04-11T17:58:52Z #15 3.312 123500K .......... .......... .......... .......... .......... 97% 47.3M 0s +2024-04-11T17:58:52Z #15 3.313 123550K .......... .......... .......... .......... .......... 97% 34.9M 0s +2024-04-11T17:58:52Z #15 3.314 123600K .......... .......... .......... .......... .......... 97% 36.5M 0s +2024-04-11T17:58:52Z #15 3.315 123650K .......... .......... .......... .......... .......... 97% 33.5M 0s +2024-04-11T17:58:52Z #15 3.317 123700K .......... .......... .......... .......... .......... 97% 31.7M 0s +2024-04-11T17:58:52Z #15 3.318 123750K .......... .......... .......... .......... .......... 97% 46.7M 0s +2024-04-11T17:58:52Z #15 3.319 123800K .......... .......... .......... .......... .......... 97% 24.8M 0s +2024-04-11T17:58:52Z #15 3.321 123850K .......... .......... .......... .......... .......... 97% 31.9M 0s +2024-04-11T17:58:52Z #15 3.324 123900K .......... .......... .......... .......... .......... 97% 31.2M 0s +2024-04-11T17:58:52Z #15 3.325 123950K .......... .......... .......... .......... .......... 97% 36.2M 0s +2024-04-11T17:58:52Z #15 3.326 124000K .......... .......... .......... .......... .......... 97% 128M 0s +2024-04-11T17:58:52Z #15 3.326 124050K .......... .......... .......... .......... .......... 97% 46.8M 0s +2024-04-11T17:58:52Z #15 3.327 124100K .......... .......... .......... .......... .......... 97% 24.8M 0s +2024-04-11T17:58:52Z #15 3.329 124150K .......... .......... .......... .......... .......... 97% 29.9M 0s +2024-04-11T17:58:52Z #15 3.331 124200K .......... .......... .......... .......... .......... 98% 29.6M 0s +2024-04-11T17:58:52Z #15 3.332 124250K .......... .......... .......... .......... .......... 98% 28.8M 0s +2024-04-11T17:58:52Z #15 3.334 124300K .......... .......... .......... .......... .......... 98% 30.1M 0s +2024-04-11T17:58:52Z #15 3.336 124350K .......... .......... .......... .......... .......... 98% 40.7M 0s +2024-04-11T17:58:52Z #15 3.337 124400K .......... .......... .......... .......... .......... 98% 46.5M 0s +2024-04-11T17:58:52Z #15 3.338 124450K .......... .......... .......... .......... .......... 98% 27.3M 0s +2024-04-11T17:58:52Z #15 3.340 124500K .......... .......... .......... .......... .......... 98% 34.8M 0s +2024-04-11T17:58:52Z #15 3.341 124550K .......... .......... .......... .......... .......... 98% 28.4M 0s +2024-04-11T17:58:52Z #15 3.343 124600K .......... .......... .......... .......... .......... 98% 36.0M 0s +2024-04-11T17:58:52Z #15 3.344 124650K .......... .......... .......... .......... .......... 98% 31.4M 0s +2024-04-11T17:58:52Z #15 3.346 124700K .......... .......... .......... .......... .......... 98% 31.1M 0s +2024-04-11T17:58:52Z #15 3.347 124750K .......... .......... .......... .......... .......... 98% 59.5M 0s +2024-04-11T17:58:52Z #15 3.348 124800K .......... .......... .......... .......... .......... 98% 41.1M 0s +2024-04-11T17:58:52Z #15 3.349 124850K .......... .......... .......... .......... .......... 98% 27.1M 0s +2024-04-11T17:58:52Z #15 3.351 124900K .......... .......... .......... .......... .......... 98% 50.9M 0s +2024-04-11T17:58:52Z #15 3.353 124950K .......... .......... .......... .......... .......... 98% 26.6M 0s +2024-04-11T17:58:52Z #15 3.354 125000K .......... .......... .......... .......... .......... 98% 42.4M 0s +2024-04-11T17:58:52Z #15 3.355 125050K .......... .......... .......... .......... .......... 98% 31.1M 0s +2024-04-11T17:58:52Z #15 3.357 125100K .......... .......... .......... .......... .......... 98% 30.8M 0s +2024-04-11T17:58:52Z #15 3.359 125150K .......... .......... .......... .......... .......... 98% 28.5M 0s +2024-04-11T17:58:52Z #15 3.360 125200K .......... .......... .......... .......... .......... 98% 48.4M 0s +2024-04-11T17:58:52Z #15 3.361 125250K .......... .......... .......... .......... .......... 98% 26.0M 0s +2024-04-11T17:58:52Z #15 3.363 125300K .......... .......... .......... .......... .......... 98% 28.6M 0s +2024-04-11T17:58:52Z #15 3.365 125350K .......... .......... .......... .......... .......... 98% 107M 0s +2024-04-11T17:58:52Z #15 3.365 125400K .......... .......... .......... .......... .......... 98% 28.6M 0s +2024-04-11T17:58:52Z #15 3.367 125450K .......... .......... .......... .......... .......... 98% 65.3M 0s +2024-04-11T17:58:52Z #15 3.368 125500K .......... .......... .......... .......... .......... 99% 22.8M 0s +2024-04-11T17:58:52Z #15 3.370 125550K .......... .......... .......... .......... .......... 99% 29.6M 0s +2024-04-11T17:58:52Z #15 3.372 125600K .......... .......... .......... .......... .......... 99% 39.6M 0s +2024-04-11T17:58:52Z #15 3.373 125650K .......... .......... .......... .......... .......... 99% 41.2M 0s +2024-04-11T17:58:52Z #15 3.374 125700K .......... .......... .......... .......... .......... 99% 29.3M 0s +2024-04-11T17:58:52Z #15 3.376 125750K .......... .......... .......... .......... .......... 99% 26.7M 0s +2024-04-11T17:58:52Z #15 3.380 125800K .......... .......... .......... .......... .......... 99% 101M 0s +2024-04-11T17:58:52Z #15 3.380 125850K .......... .......... .......... .......... .......... 99% 82.4M 0s +2024-04-11T17:58:52Z #15 3.380 125900K .......... .......... .......... .......... .......... 99% 35.4M 0s +2024-04-11T17:58:52Z #15 3.380 125950K .......... .......... .......... .......... .......... 99% 28.2M 0s +2024-04-11T17:58:52Z #15 3.381 126000K .......... .......... .......... .......... .......... 99% 46.7M 0s +2024-04-11T17:58:52Z #15 3.383 126050K .......... .......... .......... .......... .......... 99% 111M 0s +2024-04-11T17:58:52Z #15 3.383 126100K .......... .......... .......... .......... .......... 99% 28.6M 0s +2024-04-11T17:58:52Z #15 3.385 126150K .......... .......... .......... .......... .......... 99% 29.3M 0s +2024-04-11T17:58:52Z #15 3.386 126200K .......... .......... .......... .......... .......... 99% 61.3M 0s +2024-04-11T17:58:52Z #15 3.390 126250K .......... .......... .......... .......... .......... 99% 179M 0s +2024-04-11T17:58:52Z #15 3.390 126300K .......... .......... .......... .......... .......... 99% 207M 0s +2024-04-11T17:58:52Z #15 3.390 126350K .......... .......... .......... .......... .......... 99% 177M 0s +2024-04-11T17:58:52Z #15 3.390 126400K .......... .......... .......... .......... .......... 99% 189M 0s +2024-04-11T17:58:52Z #15 3.390 126450K .......... .......... .......... .......... .......... 99% 205M 0s +2024-04-11T17:58:52Z #15 3.390 126500K .......... .......... .......... .......... .......... 99% 198M 0s +2024-04-11T17:58:52Z #15 3.390 126550K .......... .......... .......... .......... .......... 99% 210M 0s +2024-04-11T17:58:52Z #15 3.390 126600K .......... .......... .......... .......... .......... 99% 169M 0s +2024-04-11T17:58:52Z #15 3.390 126650K .......... .......... .......... .......... .......... 99% 199M 0s +2024-04-11T17:58:52Z #15 3.390 126700K .......... .......... .......... .......... .......... 99% 209M 0s +2024-04-11T17:58:52Z #15 3.390 126750K .......... .......... .......... .. 100% 205M=2.0s +2024-04-11T17:58:52Z #15 3.390 +2024-04-11T17:58:52Z #15 3.390 2024-04-11 17:58:52 (61.3 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] +2024-04-11T17:58:52Z #15 3.390 +2024-04-11T17:58:53Z #15 4.871 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' +2024-04-11T17:58:53Z #15 4.893 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-04-11T17:58:54Z #15 DONE 5.3s +2024-04-11T17:58:54Z +2024-04-11T17:58:54Z #16 exporting to image +2024-04-11T17:58:54Z #16 exporting layers +2024-04-11T18:01:31Z #16 exporting layers 157.3s done +2024-04-11T18:01:31Z #16 writing image sha256:11b53ec046891c1d140c682a33cc890957c577e1bc1a95e396715c5b0314ceef done +2024-04-11T18:01:31Z #16 naming to docker.io/pavics/workflow-tests:py310-240411 done +2024-04-11T18:01:31Z #16 DONE 157.3s +2024-04-11T18:01:31Z +2024-04-11T18:01:31Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 +2024-04-11T18:01:31Z Pushing index.docker.io/pavics/workflow-tests:py310-240411... +2024-04-11T18:09:09Z Done! +2024-04-11T18:09:09Z Build finished From 9765cc8d98bef9ded245654406ac56d5e6bd0f97 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 11 Apr 2024 23:50:39 -0400 Subject: [PATCH 066/104] docker: py310-240411: conda env export --- docker/saved_buildout/conda-env-export.yml | 107 +++++++++++---------- 1 file changed, 56 insertions(+), 51 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index d2dc246..ded7cdb 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -52,7 +52,7 @@ dependencies: - bleach=6.1.0=pyhd8ed1ab_0 - blinker=1.7.0=pyhd8ed1ab_0 - blosc=1.21.5=h0f2a231_0 - - bokeh=3.3.4=pyhd8ed1ab_0 + - bokeh=3.4.0=pyhd8ed1ab_0 - boltons=24.0.0=pyhd8ed1ab_0 - boost-cpp=1.78.0=h5adbc97_2 - botocore=1.34.51=pyge310_1234567_0 @@ -64,13 +64,13 @@ dependencies: - brunsli=0.1=h9c3ff4c_0 - bzip2=1.0.8=hd590300_5 - c-ares=1.28.1=hd590300_0 - - c-blosc2=2.14.1=hb4ffafa_0 + - c-blosc2=2.14.4=hb4ffafa_1 - ca-certificates=2024.2.2=hbcca054_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 - cachetools=5.3.3=pyhd8ed1ab_0 - cairo=1.16.0=ha61ee94_1014 - - cartopy=0.22.0=py310hcc13569_1 + - cartopy=0.23.0=py310hcc13569_0 - cattrs=23.2.3=pyhd8ed1ab_0 - cdat_info=8.2.1=pyhd8ed1ab_2 - cdms2=3.1.5=py310h5f4584e_15 @@ -79,7 +79,7 @@ dependencies: - certipy=0.1.3=py_0 - cf_xarray=0.9.0=pyhd8ed1ab_0 - cffi=1.16.0=py310h2fee648_0 - - cfgrib=0.9.10.4=pyhd8ed1ab_0 + - cfgrib=0.9.11.0=pyhd8ed1ab_0 - cfgv=3.3.1=pyhd8ed1ab_0 - cfitsio=4.2.0=hd9d235c_0 - cftime=1.6.3=py310h1f7b6fc_0 @@ -95,16 +95,16 @@ dependencies: - colorcet=3.1.0=pyhd8ed1ab_0 - comm=0.2.2=pyhd8ed1ab_0 - configurable-http-proxy=4.5.4=he2f69ee_2 - - contourpy=1.2.0=py310hd41b1e2_0 + - contourpy=1.2.1=py310hd41b1e2_0 - coverage=7.4.4=py310h2372a71_0 - cryptography=42.0.2=py310hb8475ec_0 - curl=7.88.1=hdc1c0ab_1 - cycler=0.12.1=pyhd8ed1ab_0 - cytoolz=0.12.3=py310h2372a71_0 - dash=2.16.1=pyhd8ed1ab_0 - - dask=2024.4.0=pyhd8ed1ab_0 - - dask-core=2024.4.0=pyhd8ed1ab_0 - - dask-expr=1.0.9=pyhd8ed1ab_0 + - dask=2024.4.1=pyhd8ed1ab_0 + - dask-core=2024.4.1=pyhd8ed1ab_0 + - dask-expr=1.0.11=pyhd8ed1ab_0 - dask-labextension=6.2.0=pyhd8ed1ab_0 - dataclasses=0.8=pyhc8e2a94_3 - datashader=0.16.0=pyhd8ed1ab_0 @@ -117,7 +117,7 @@ dependencies: - dill=0.3.8=pyhd8ed1ab_0 - distarray=2.12.2=pyh050c7b8_4 - distlib=0.3.8=pyhd8ed1ab_0 - - distributed=2024.4.0=pyhd8ed1ab_0 + - distributed=2024.4.1=pyhd8ed1ab_0 - docopt=0.6.2=py_1 - docrep=0.3.2=pyh44b312d_0 - eccodes=2.28.0=h7513371_1 @@ -129,16 +129,16 @@ dependencies: - esmf=8.4.0=nompi_hdb2cfa9_4 - esmpy=8.4.0=nompi_py310h4c636dd_2 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - - execnet=2.0.2=pyhd8ed1ab_0 + - execnet=2.1.1=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 - expat=2.6.2=h59595ed_0 - fasteners=0.17.3=pyhd8ed1ab_0 - fastprogress=1.0.3=pyhd8ed1ab_0 - fftw=3.3.10=nompi_hc118613_108 - - filelock=3.13.3=pyhd8ed1ab_0 + - filelock=3.13.4=pyhd8ed1ab_0 - findlibs=0.0.5=pyhd8ed1ab_0 - fiona=1.9.1=py310ha325b7b_0 - - flask=3.0.2=pyhd8ed1ab_0 + - flask=3.0.3=pyhd8ed1ab_0 - flox=0.9.6=pyhd8ed1ab_0 - fmt=10.2.1=h00ab1b0_0 - folium=0.16.0=pyhd8ed1ab_0 @@ -149,7 +149,7 @@ dependencies: - fontconfig=2.14.2=h14ed4e7_0 - fonts-conda-ecosystem=1=0 - fonts-conda-forge=1=0 - - fonttools=4.50.0=py310h2372a71_0 + - fonttools=4.51.0=py310h2372a71_0 - fqdn=1.5.1=pyhd8ed1ab_0 - freeglut=3.2.2=h9c3ff4c_1 - freetype=2.12.1=h267a509_2 @@ -168,11 +168,12 @@ dependencies: - geopy=2.4.1=pyhd8ed1ab_1 - geos=3.11.1=h27087fc_0 - geotiff=1.7.1=h7a142b4_6 - - geoviews=1.11.1=pyhd8ed1ab_0 - - geoviews-core=1.11.1=pyha770c72_0 - - gettext=0.21.1=h27087fc_0 + - geoviews=1.12.0=pyhd8ed1ab_0 + - geoviews-core=1.12.0=pyha770c72_0 + - gettext=0.22.5=h59595ed_2 + - gettext-tools=0.22.5=h59595ed_2 - gflags=2.2.2=he1b5a44_1004 - - giflib=5.2.1=h0b41bf4_3 + - giflib=5.2.2=hd590300_0 - gitdb=4.0.11=pyhd8ed1ab_0 - gitpython=3.1.43=pyhd8ed1ab_0 - glib=2.78.1=hfc55251_0 @@ -228,11 +229,11 @@ dependencies: - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jmespath=1.0.1=pyhd8ed1ab_0 - - joblib=1.3.2=pyhd8ed1ab_0 + - joblib=1.4.0=pyhd8ed1ab_0 - jpeg=9e=h166bdaf_2 - json-c=0.16=hc379101_0 - json5=0.9.24=pyhd8ed1ab_0 - - jsonpickle=3.0.2=pyhd8ed1ab_1 + - jsonpickle=3.0.4=pyhd8ed1ab_0 - jsonpointer=2.4=py310hff52083_3 - jsonschema=4.21.1=pyhd8ed1ab_0 - jsonschema-specifications=2023.12.1=pyhd8ed1ab_0 @@ -253,14 +254,14 @@ dependencies: - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 - jupyter_telemetry=0.1.0=pyhd8ed1ab_1 - jupyter_ydoc=0.2.4=pyhd8ed1ab_0 - - jupyterhub=4.1.4=pyh31011fe_0 - - jupyterhub-base=4.1.4=pyh31011fe_0 + - jupyterhub=4.1.5=pyh31011fe_0 + - jupyterhub-base=4.1.5=pyh31011fe_0 - jupyterlab=3.6.7=pyhd8ed1ab_0 - jupyterlab-git=0.8.2=py_0 - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 - jupyterlab-topbar=0.6.1=pyhd8ed1ab_2 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - jupyterlab_server=2.25.4=pyhd8ed1ab_0 + - jupyterlab_server=2.26.0=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - jupytext=1.16.1=pyhd8ed1ab_0 - jxrlib=1.1=hd590300_3 @@ -270,7 +271,7 @@ dependencies: - krb5=1.20.1=h81ceb04_0 - lame=3.100=h166bdaf_1003 - lazy-object-proxy=1.10.0=py310h2372a71_0 - - lazy_loader=0.3=pyhd8ed1ab_0 + - lazy_loader=0.4=pyhd8ed1ab_0 - lcms2=2.15=hfd0df8a_0 - ld_impl_linux-64=2.40=h41732ed_0 - lerc=4.0.0=h27087fc_0 @@ -278,13 +279,15 @@ dependencies: - libaec=1.1.3=h59595ed_0 - libarchive=3.6.2=h3d51595_0 - libarrow=11.0.0=h93537a5_14_cpu + - libasprintf=0.22.5=h661eb56_2 + - libasprintf-devel=0.22.5=h661eb56_2 - libavif=0.11.1=h8182462_2 - - libblas=3.9.0=21_linux64_openblas + - libblas=3.9.0=22_linux64_openblas - libbrotlicommon=1.0.9=h166bdaf_9 - libbrotlidec=1.0.9=h166bdaf_9 - libbrotlienc=1.0.9=h166bdaf_9 - libcap=2.67=he9d0100_0 - - libcblas=3.9.0=21_linux64_openblas + - libcblas=3.9.0=22_linux64_openblas - libcdms=3.1.2=hf94f14b_119 - libcf=1.0.3=py310hbc577d2_115 - libclang=15.0.7=default_h127d8a8_5 @@ -306,6 +309,8 @@ dependencies: - libgcc-ng=13.2.0=h807b86a_5 - libgcrypt=1.10.3=hd590300_0 - libgdal=3.6.2=h8c90c07_6 + - libgettextpo=0.22.5=h59595ed_2 + - libgettextpo-devel=0.22.5=h59595ed_2 - libgfortran-ng=13.2.0=h69a702a_5 - libgfortran5=13.2.0=ha4646dd_5 - libglib=2.78.1=hebfc3b9_0 @@ -318,7 +323,7 @@ dependencies: - libidn2=2.3.7=hd590300_0 - libjpeg-turbo=2.1.4=h166bdaf_0 - libkml=1.3.0=h01aab08_1016 - - liblapack=3.9.0=21_linux64_openblas + - liblapack=3.9.0=22_linux64_openblas - libllvm14=14.0.6=hcd5def8_4 - libllvm15=15.0.7=hadd5161_1 - libllvm16=16.0.1=hadd5161_0 @@ -329,7 +334,7 @@ dependencies: - libnsl=2.0.1=hd590300_0 - libnuma=2.0.18=hd590300_0 - libogg=1.3.4=h7f98852_1 - - libopenblas=0.3.26=pthreads_h413a1c8_0 + - libopenblas=0.3.27=pthreads_h413a1c8_0 - libopus=1.3.1=h7f98852_1 - libpciaccess=0.18=hd590300_0 - libpng=1.6.43=h2797004_0 @@ -354,7 +359,7 @@ dependencies: - libuuid=2.38.1=h0b41bf4_0 - libuv=1.44.2=hd590300_1 - libvorbis=1.3.7=h9c3ff4c_0 - - libwebp-base=1.3.2=hd590300_0 + - libwebp-base=1.3.2=hd590300_1 - libxcb=1.13=h7f98852_1004 - libxcrypt=4.4.36=hd590300_1 - libxkbcommon=1.5.0=h79f4944_1 @@ -372,14 +377,14 @@ dependencies: - lz4=4.3.3=py310h350c4a5_0 - lz4-c=1.9.4=hcb278e6_0 - lzo=2.10=h516909a_1000 - - mako=1.3.2=pyhd8ed1ab_0 + - mako=1.3.3=pyhd8ed1ab_0 - mamba_gator=5.2.1=pyhd8ed1ab_0 - mapclassify=2.6.1=pyhd8ed1ab_0 - markdown=3.6=pyhd8ed1ab_0 - markdown-it-py=3.0.0=pyhd8ed1ab_0 - markupsafe=2.1.5=py310h2372a71_0 - - matplotlib=3.8.3=py310hff52083_0 - - matplotlib-base=3.8.3=py310h62c0568_0 + - matplotlib=3.8.4=py310hff52083_0 + - matplotlib-base=3.8.4=py310h62c0568_0 - matplotlib-inline=0.1.6=pyhd8ed1ab_0 - mdit-py-plugins=0.4.0=pyhd8ed1ab_0 - mdurl=0.1.2=pyhd8ed1ab_0 @@ -387,7 +392,7 @@ dependencies: - mesalib=23.0.2=h3855f93_0 - minizip=4.0.3=h0ab5242_0 - mistune=3.0.2=pyhd8ed1ab_0 - - mpg123=1.32.4=h59595ed_0 + - mpg123=1.32.6=h59595ed_0 - mpi=1.0=openmpi - mpi4py=3.1.5=py310h2a790f2_1 - msgpack-python=1.0.7=py310hd41b1e2_0 @@ -402,9 +407,9 @@ dependencies: - mysql-libs=8.0.33=hca2cd23_6 - nbclassic=1.0.0=pyhb4ecaf3_1 - nbclient=0.7.4=pyhd8ed1ab_0 - - nbconvert=7.16.3=hd8ed1ab_0 - - nbconvert-core=7.16.3=pyhd8ed1ab_0 - - nbconvert-pandoc=7.16.3=hd8ed1ab_0 + - nbconvert=7.16.3=hd8ed1ab_1 + - nbconvert-core=7.16.3=pyhd8ed1ab_1 + - nbconvert-pandoc=7.16.3=hd8ed1ab_1 - nbdime=4.0.1=pyhd8ed1ab_0 - nbformat=5.10.4=pyhd8ed1ab_0 - nbresuse=0.4.0=pyhd8ed1ab_0 @@ -417,7 +422,7 @@ dependencies: - netcdf-fortran=4.6.0=nompi_he1eeb6f_102 - netcdf4=1.6.2=nompi_py310h55e1e36_100 - nettle=3.9.1=h7ab15ed_0 - - networkx=3.2.1=pyhd8ed1ab_0 + - networkx=3.3=pyhd8ed1ab_1 - nodeenv=1.8.0=pyhd8ed1ab_0 - nodejs=18.15.0=h8d033a5_0 - notebook=6.5.6=pyha770c72_0 @@ -429,7 +434,7 @@ dependencies: - numpy=1.24.4=py310ha4c1d20_0 - numpy_groupies=0.10.2=pyhd8ed1ab_0 - oauthlib=3.2.2=pyhd8ed1ab_0 - - openblas=0.3.26=pthreads_h7a3da1a_0 + - openblas=0.3.27=pthreads_h7a3da1a_0 - openjpeg=2.5.0=hfec8fc6_2 - openmpi=4.1.6=h336e698_100 - openssl=3.1.5=hd590300_0 @@ -438,17 +443,17 @@ dependencies: - overrides=7.7.0=pyhd8ed1ab_0 - owslib=0.28.1=pyhd8ed1ab_0 - p11-kit=0.24.1=hc5aa10d_0 - - packaging=23.2=pyhd8ed1ab_0 + - packaging=24.0=pyhd8ed1ab_0 - pamela=1.1.0=pyh1a96a4e_0 - pandas=2.1.4=py310hcc13569_0 - - pandoc=3.1.12.3=ha770c72_0 + - pandoc=3.1.13=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - panel=1.3.8=pyhd8ed1ab_0 + - panel=1.4.1=pyhd8ed1ab_0 - param=2.1.0=pyhca7485f_0 - paramiko=3.4.0=pyhd8ed1ab_0 - parquet-cpp=1.5.1=2 - parse=1.20.1=pyhd8ed1ab_0 - - parso=0.8.3=pyhd8ed1ab_0 + - parso=0.8.4=pyhd8ed1ab_0 - partd=1.4.1=pyhd8ed1ab_0 - pathos=0.3.2=pyhd8ed1ab_1 - patsy=0.5.6=pyhd8ed1ab_0 @@ -463,7 +468,7 @@ dependencies: - platformdirs=4.2.0=pyhd8ed1ab_0 - plotly=5.19.0=pyhd8ed1ab_0 - pluggy=1.4.0=pyhd8ed1ab_0 - - ply=3.11=py_1 + - ply=3.11=pyhd8ed1ab_2 - pooch=1.8.1=pyhd8ed1ab_0 - poppler=23.01.0=h091648b_0 - poppler-data=0.4.12=hd8ed1ab_0 @@ -560,14 +565,14 @@ dependencies: - s3fs=2024.3.1=pyhd8ed1ab_0 - salib=1.4.8=pyhd8ed1ab_0 - scikit-image=0.22.0=py310hcc13569_2 - - scikit-learn=1.4.1.post1=py310h1fdf081_0 - - scipy=1.12.0=py310hb13e2d6_2 + - scikit-learn=1.4.2=py310h1fdf081_0 + - scipy=1.13.0=py310hb13e2d6_0 - scp=0.14.5=pyhd8ed1ab_0 - seaborn=0.13.2=hd8ed1ab_0 - seaborn-base=0.13.2=pyhd8ed1ab_0 - selenium=4.19.0=pyhd8ed1ab_0 - selenium-manager=4.19.0=he8a937b_0 - - send2trash=1.8.2=pyh41d4057_0 + - send2trash=1.8.3=pyh0d859eb_0 - setuptools=69.2.0=pyhd8ed1ab_0 - shapely=2.0.1=py310h8b84c32_0 - simpervisor=1.0.0=pyhd8ed1ab_0 @@ -575,7 +580,7 @@ dependencies: - siphon=0.9=pyhd8ed1ab_2 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 - - snappy=1.1.10=h9fff704_0 + - snappy=1.1.10=hdb0a2a9_1 - sniffio=1.3.1=pyhd8ed1ab_0 - snuggs=1.4.7=py_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 @@ -587,7 +592,7 @@ dependencies: - sqlite=3.45.2=h2c6b66d_0 - stack_data=0.6.2=pyhd8ed1ab_0 - statsmodels=0.14.1=py310h1f7b6fc_0 - - streamlit=1.32.2=pyhd8ed1ab_0 + - streamlit=1.33.0=pyhd8ed1ab_1 - tblib=3.0.0=pyhd8ed1ab_0 - tenacity=8.2.3=pyhd8ed1ab_0 - terminado=0.18.1=pyh0d859eb_0 @@ -607,8 +612,8 @@ dependencies: - trio=0.25.0=py310hff52083_0 - trio-websocket=0.11.1=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20240316=pyhd8ed1ab_0 - - typing-extensions=4.10.0=hd8ed1ab_0 - - typing_extensions=4.10.0=pyha770c72_0 + - typing-extensions=4.11.0=hd8ed1ab_0 + - typing_extensions=4.11.0=pyha770c72_0 - typing_utils=0.1.0=pyhd8ed1ab_0 - tzcode=2024a=h3f72095_0 - tzdata=2024a=h0c530f3_0 @@ -685,11 +690,11 @@ dependencies: - xyzservices=2024.4.0=pyhd8ed1ab_0 - xz=5.2.6=h166bdaf_0 - y-py=0.5.9=py310h4426083_0 - - yamale=4.0.4=pyh6c4a22f_0 + - yamale=5.0.0=pyhca7485f_0 - yaml=0.2.5=h7f98852_2 - yarl=1.9.4=py310h2372a71_0 - ypy-websocket=0.8.2=pyhd8ed1ab_0 - - zarr=2.17.1=pyhd8ed1ab_0 + - zarr=2.17.2=pyhd8ed1ab_0 - zeromq=4.3.5=h59595ed_1 - zfp=1.0.1=h59595ed_0 - zict=3.0.0=pyhd8ed1ab_0 From 69c7b343c46b4f4946a290c163867b1416f69d8e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Fri, 12 Apr 2024 00:22:24 -0400 Subject: [PATCH 067/104] docker: py310-240411: initial jenkins, raven nb --- .../jenkins-buildlogs-raven.txt | 3959 +++++++++-------- 1 file changed, 1980 insertions(+), 1979 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index f312440..e90a4b3 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -7,6 +7,7 @@ Fetching upstream changes from origin > git --version # timeout=10 > git config --get remote.origin.url # timeout=10 > git fetch --tags --progress -- origin +refs/heads/*:refs/remotes/origin/* # timeout=10 +Seen branch in repository origin/allow-full-custom-config-override Seen branch in repository origin/current-production-version Seen branch in repository origin/devel-new-extensions Seen branch in repository origin/extended_tests @@ -16,12 +17,12 @@ Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 9 remote branches -Obtained Jenkinsfile from 216b16e9329a254e7e2e14ebf72437f7abcf3e06 +Seen 10 remote branches +Obtained Jenkinsfile from 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -34,1981 +35,1981 @@ Fetching without tags Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision 216b16e9329a254e7e2e14ebf72437f7abcf3e06 (new-docker-build) -Commit message: "release: update to use image pavics/workflow-tests:py310-240404" +Checking out Revision 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 (new-docker-build) +Commit message: "release: update to use image pavics/workflow-tests:py310-240411" > git config core.sparsecheckout # timeout=10 - > git checkout -f 216b16e9329a254e7e2e14ebf72437f7abcf3e06 # timeout=10 - > git rev-list --no-walk 216b16e9329a254e7e2e14ebf72437f7abcf3e06 # timeout=10 + > git checkout -f 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 # timeout=10 + > git rev-list --no-walk 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240404 ++ docker inspect -f . pavics/workflow-tests:py310-240411 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240404 cat -$ docker top 08458e3617288787ce7ba47a580b094b7d640d230fb137d8a2e0d08df3b2c1d1 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240411 cat +$ docker top 0072fbfdf1a60e09332893a5d910d7b3e2f85c34919ab4197a68e6b650710bef -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-11T15:55:50.419Z] Timeout set to expire in 2 hr 0 min +[2024-04-12T03:45:40.019Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-11T15:55:52.414Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-12T03:45:41.978Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-11T15:55:52.848Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-11T15:55:52.848Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-11T15:55:52.848Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-11T15:55:52.848Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-11T15:55:52.848Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-11T15:55:52.848Z] FINCH_BRANCH has been set to 'master' -[2024-04-11T15:55:52.848Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-11T15:55:52.848Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-11T15:55:52.848Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-11T15:55:52.848Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-11T15:55:52.848Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-11T15:55:52.848Z] RAVEN_BRANCH has been set to 'main' -[2024-04-11T15:55:52.848Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-11T15:55:52.848Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-11T15:55:52.848Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-11T15:55:52.848Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-11T15:55:52.848Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-11T15:55:52.848Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-11T15:55:52.848Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-11T15:55:52.848Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-11T15:55:52.848Z] + git clean -fdx -[2024-04-11T15:55:53.826Z] Removing .pytest_cache/ -[2024-04-11T15:55:53.826Z] Removing PAVICS-landing-master/ -[2024-04-11T15:55:53.826Z] Removing RavenPy-master/ -[2024-04-11T15:55:53.826Z] Removing __pycache__/ -[2024-04-11T15:55:53.826Z] Removing buildout/ -[2024-04-11T15:55:53.826Z] Removing esgf-compute-api-devel/ -[2024-04-11T15:55:53.826Z] Removing finch-master/ -[2024-04-11T15:55:53.826Z] Removing pavics-sdi-master/ -[2024-04-11T15:55:53.826Z] Removing raven-main/ -[2024-04-11T15:55:53.826Z] + ./downloadrepos -[2024-04-11T15:55:53.826Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-11T15:55:53.826Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-11T15:55:53.826Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-11T15:55:53.826Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-11T15:55:53.826Z] FINCH_BRANCH has been set to 'master' -[2024-04-11T15:55:53.826Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-11T15:55:53.826Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-11T15:55:53.826Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-11T15:55:53.826Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-11T15:55:53.826Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-11T15:55:53.826Z] RAVEN_BRANCH has been set to 'main' -[2024-04-11T15:55:53.826Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-11T15:55:53.826Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-11T15:55:53.827Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-11T15:55:53.827Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-11T15:55:53.827Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-11T15:55:53.827Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-11T15:55:53.827Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-11T15:55:53.827Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-11T15:55:53.827Z] + rm -rf pavics-sdi-* -[2024-04-11T15:55:53.827Z] + ls -[2024-04-11T15:55:53.827Z] + grep pavics-sdi -[2024-04-11T15:55:53.827Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-04-11T15:55:53.827Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-11T15:55:53.827Z] + shift -[2024-04-11T15:55:53.827Z] + branch=master -[2024-04-11T15:55:53.827Z] + shift -[2024-04-11T15:55:53.827Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-04-11T15:55:53.827Z] + tar xz -[2024-04-11T15:55:58.054Z] + ls -[2024-04-11T15:55:58.054Z] + grep pavics-sdi -[2024-04-11T15:55:58.054Z] pavics-sdi-master -[2024-04-11T15:55:58.054Z] + set +x -[2024-04-11T15:55:58.054Z] + rm -rf finch-* -[2024-04-11T15:55:58.054Z] + ls -[2024-04-11T15:55:58.054Z] + grep finch -[2024-04-11T15:55:58.054Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-11T15:55:58.054Z] + github_repo=https://github.com/bird-house/finch -[2024-04-11T15:55:58.054Z] + shift -[2024-04-11T15:55:58.054Z] + branch=master -[2024-04-11T15:55:58.054Z] + shift -[2024-04-11T15:55:58.054Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-11T15:55:58.054Z] + tar xz -[2024-04-11T15:55:59.465Z] + grep finch -[2024-04-11T15:55:59.465Z] + ls -[2024-04-11T15:55:59.465Z] finch-master -[2024-04-11T15:55:59.465Z] + set +x -[2024-04-11T15:55:59.465Z] + rm -rf PAVICS-landing-* -[2024-04-11T15:55:59.465Z] + ls -[2024-04-11T15:55:59.465Z] + grep PAVICS-landing -[2024-04-11T15:55:59.465Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-04-11T15:55:59.465Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-11T15:55:59.465Z] + shift -[2024-04-11T15:55:59.465Z] + branch=master -[2024-04-11T15:55:59.465Z] + shift -[2024-04-11T15:55:59.465Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-04-11T15:55:59.465Z] + tar xz -[2024-04-11T15:56:14.494Z] + ls -[2024-04-11T15:56:14.494Z] + grep PAVICS-landing -[2024-04-11T15:56:14.494Z] PAVICS-landing-master -[2024-04-11T15:56:14.494Z] + set +x -[2024-04-11T15:56:14.494Z] + rm -rf raven-* -[2024-04-11T15:56:14.494Z] + ls -[2024-04-11T15:56:14.494Z] + grep raven -[2024-04-11T15:56:14.494Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-11T15:56:14.494Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-11T15:56:14.494Z] + shift -[2024-04-11T15:56:14.494Z] + branch=main -[2024-04-11T15:56:14.494Z] + shift -[2024-04-11T15:56:14.494Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-11T15:56:14.494Z] + tar xz -[2024-04-11T15:56:14.768Z] + ls -[2024-04-11T15:56:14.768Z] + grep raven -[2024-04-11T15:56:14.768Z] raven-main -[2024-04-11T15:56:14.768Z] + set +x -[2024-04-11T15:56:14.768Z] + rm -rf RavenPy-* -[2024-04-11T15:56:14.768Z] + grep RavenPy -[2024-04-11T15:56:14.768Z] + ls -[2024-04-11T15:56:14.768Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-11T15:56:14.768Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-11T15:56:14.768Z] + shift -[2024-04-11T15:56:14.768Z] + branch=master -[2024-04-11T15:56:14.768Z] + shift -[2024-04-11T15:56:14.768Z] + tar xz -[2024-04-11T15:56:14.768Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-11T15:56:17.337Z] + + ls -[2024-04-11T15:56:17.337Z] grep RavenPy -[2024-04-11T15:56:17.337Z] RavenPy-master -[2024-04-11T15:56:17.337Z] + set +x -[2024-04-11T15:56:17.337Z] + rm -rf esgf-compute-api-* -[2024-04-11T15:56:17.337Z] + ls -[2024-04-11T15:56:17.337Z] + grep esgf-compute-api -[2024-04-11T15:56:17.337Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-11T15:56:17.337Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-11T15:56:17.337Z] + shift -[2024-04-11T15:56:17.337Z] + branch=devel -[2024-04-11T15:56:17.337Z] + shift -[2024-04-11T15:56:17.337Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-11T15:56:17.337Z] + tar xz -[2024-04-11T15:56:18.279Z] + ls -[2024-04-11T15:56:18.279Z] + grep esgf-compute-api -[2024-04-11T15:56:18.279Z] esgf-compute-api-devel -[2024-04-11T15:56:18.279Z] + set +x -[2024-04-11T15:56:18.279Z] + echo master -[2024-04-11T15:56:18.279Z] + sed s@/@-@g -[2024-04-11T15:56:18.279Z] + PAVICS_SDI_BRANCH=master -[2024-04-11T15:56:18.279Z] + echo Ouranosinc/pavics-sdi -[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g -[2024-04-11T15:56:18.279Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-11T15:56:18.279Z] + echo master -[2024-04-11T15:56:18.279Z] + sed s@/@-@g -[2024-04-11T15:56:18.279Z] + FINCH_BRANCH=master -[2024-04-11T15:56:18.279Z] + echo bird-house/finch -[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g -[2024-04-11T15:56:18.279Z] + FINCH_REPO_NAME=finch -[2024-04-11T15:56:18.279Z] + echo master -[2024-04-11T15:56:18.279Z] + sed s@/@-@g -[2024-04-11T15:56:18.279Z] + PAVICS_LANDING_BRANCH=master -[2024-04-11T15:56:18.279Z] + echo Ouranosinc/PAVICS-landing -[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g -[2024-04-11T15:56:18.279Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-11T15:56:18.279Z] + echo main -[2024-04-11T15:56:18.279Z] + sed s@/@-@g -[2024-04-11T15:56:18.279Z] + RAVEN_BRANCH=main -[2024-04-11T15:56:18.279Z] + echo Ouranosinc/raven -[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g -[2024-04-11T15:56:18.279Z] + RAVEN_REPO_NAME=raven -[2024-04-11T15:56:18.279Z] + echo master -[2024-04-11T15:56:18.279Z] + sed s@/@-@g -[2024-04-11T15:56:18.279Z] + RAVENPY_BRANCH=master -[2024-04-11T15:56:18.279Z] + echo CSHS-CWRA/RavenPy -[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g -[2024-04-11T15:56:18.279Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-11T15:56:18.279Z] + echo devel -[2024-04-11T15:56:18.279Z] + sed s@/@-@g -[2024-04-11T15:56:18.279Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-11T15:56:18.279Z] + echo ESGF/esgf-compute-api -[2024-04-11T15:56:18.279Z] + sed s@^.*/@@g -[2024-04-11T15:56:18.279Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-11T15:56:18.279Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:56:18.279Z] + echo pavics-sdi-master -[2024-04-11T15:56:18.279Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-04-11T15:56:18.279Z] + echo finch-master -[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:56:18.280Z] + FINCH_DIR=finch-master -[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:56:18.280Z] + echo PAVICS-landing-master -[2024-04-11T15:56:18.280Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-04-11T15:56:18.280Z] + echo raven-main -[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:56:18.280Z] + RAVEN_DIR=raven-main -[2024-04-11T15:56:18.280Z] + echo RavenPy-master -[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:56:18.280Z] + RAVENPY_DIR=RavenPy-master -[2024-04-11T15:56:18.280Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:56:18.280Z] + echo esgf-compute-api-devel -[2024-04-11T15:56:18.280Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-11T15:56:18.280Z] + echo true -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + VERIFY_SSL=true -[2024-04-11T15:56:18.280Z] + [ xtrue = xfalse ] -[2024-04-11T15:56:18.280Z] + rm -v finch-master/setup.cfg -[2024-04-11T15:56:18.280Z] removed 'finch-master/setup.cfg' -[2024-04-11T15:56:18.280Z] + rm -v raven-main/setup.cfg -[2024-04-11T15:56:18.280Z] removed 'raven-main/setup.cfg' -[2024-04-11T15:56:18.280Z] + rm -v raven-main/pyproject.toml -[2024-04-11T15:56:18.280Z] removed 'raven-main/pyproject.toml' -[2024-04-11T15:56:18.280Z] + rm -v RavenPy-master/setup.cfg -[2024-04-11T15:56:18.280Z] removed 'RavenPy-master/setup.cfg' -[2024-04-11T15:56:18.280Z] + rm -v RavenPy-master/tox.ini -[2024-04-11T15:56:18.280Z] removed 'RavenPy-master/tox.ini' -[2024-04-11T15:56:18.280Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-11T15:56:18.280Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-11T15:56:18.280Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-11T15:56:18.280Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-11T15:56:18.280Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-11T15:56:18.280Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-11T15:56:18.280Z] + echo false -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + TEST_MAGPIE_AUTH=false -[2024-04-11T15:56:18.280Z] + echo false -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + TEST_PAVICS_SDI_REPO=false -[2024-04-11T15:56:18.280Z] + echo false -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-11T15:56:18.280Z] + echo false -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + TEST_FINCH_REPO=false -[2024-04-11T15:56:18.280Z] + echo false -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + TEST_PAVICS_LANDING_REPO=false -[2024-04-11T15:56:18.280Z] + echo true -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + TEST_RAVEN_REPO=true -[2024-04-11T15:56:18.280Z] + echo true -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + TEST_RAVENPY_REPO=true -[2024-04-11T15:56:18.280Z] + echo false -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-11T15:56:18.280Z] + echo false -[2024-04-11T15:56:18.280Z] + tr [:upper:] [:lower:] -[2024-04-11T15:56:18.280Z] + TEST_LOCAL_NOTEBOOKS=false -[2024-04-11T15:56:18.280Z] + NOTEBOOKS_TO_TEST= -[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] -[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] -[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] -[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] -[2024-04-11T15:56:18.280Z] + [ xtrue = xtrue ] -[2024-04-11T15:56:18.280Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-04-11T15:56:18.280Z] + [ xtrue = xtrue ] -[2024-04-11T15:56:18.280Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-04-11T15:56:18.280Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] -[2024-04-11T15:56:18.280Z] + [ xfalse = xtrue ] -[2024-04-11T15:56:18.280Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-11T15:56:18.280Z] + [ -n ] -[2024-04-11T15:56:18.280Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-11T15:56:18.280Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-11T15:56:18.280Z] Will run notebooks against pavics.ouranos.ca -[2024-04-11T15:56:18.280Z] + [ -z ] -[2024-04-11T15:56:18.280Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-11T15:56:18.280Z] + git diff -[2024-04-11T15:56:18.280Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-11T15:56:18.280Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-04-11T15:56:22.476Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-11T15:56:22.476Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-11T15:56:22.476Z] ============================= test session starts ============================== -[2024-04-11T15:56:22.476Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-04-11T15:56:22.476Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-04-11T15:56:22.476Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-11T15:56:22.476Z] collected 242 items -[2024-04-11T15:56:22.476Z] -[2024-04-11T15:56:34.625Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-04-11T15:56:35.557Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] -[2024-04-11T15:56:52.907Z] ...... [ 6%] -[2024-04-11T15:56:54.815Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] -[2024-04-11T15:56:54.815Z] [ 9%] -[2024-04-11T15:56:57.009Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-04-11T15:57:05.124Z] .... [ 12%] -[2024-04-11T15:57:11.682Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] -[2024-04-11T15:57:19.209Z] ....F.FF..F.. [ 18%] -[2024-04-11T15:57:48.781Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] -[2024-04-11T15:59:02.011Z] .. [ 22%] -[2024-04-11T15:59:02.956Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] -[2024-04-11T15:59:11.968Z] ..FFFFFFFF....... [ 30%] -[2024-04-11T15:59:18.689Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] -[2024-04-11T15:59:29.932Z] ........... [ 36%] -[2024-04-11T15:59:39.718Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] -[2024-04-11T15:59:44.989Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] -[2024-04-11T15:59:50.235Z] ..... [ 41%] -[2024-04-11T15:59:52.132Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] -[2024-04-11T16:04:07.100Z] ................. [ 48%] -[2024-04-11T16:04:12.366Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] -[2024-04-11T16:04:20.171Z] .... [ 50%] -[2024-04-11T16:05:24.871Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] -[2024-04-11T16:05:34.868Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] -[2024-04-11T16:06:06.794Z] ...... [ 57%] -[2024-04-11T16:06:14.900Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] -[2024-04-11T16:06:25.045Z] ....... [ 60%] -[2024-04-11T16:06:33.023Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] -[2024-04-11T16:06:55.233Z] .... [ 64%] -[2024-04-11T16:07:05.288Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] -[2024-04-11T16:07:30.384Z] ....... [ 67%] -[2024-04-11T16:07:34.671Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] -[2024-04-11T16:08:04.757Z] ....... [ 70%] -[2024-04-11T16:08:06.389Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] -[2024-04-11T16:08:18.734Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] -[2024-04-11T16:08:27.375Z] .... [ 74%] -[2024-04-11T16:09:15.069Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] -[2024-04-11T16:09:40.465Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] -[2024-04-11T16:09:40.465Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] -[2024-04-11T16:09:54.379Z] ............. [ 84%] -[2024-04-11T16:10:11.900Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] -[2024-04-11T16:10:20.670Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] -[2024-04-11T16:10:30.646Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] -[2024-04-11T16:11:48.040Z] .........FFFFFFFFFFF [100%] -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] =================================== FAILURES =================================== -[2024-04-11T16:11:48.040Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ -[2024-04-11T16:11:48.040Z] Notebook cell execution failed -[2024-04-11T16:11:48.040Z] Cell 5: Cell execution caused an exception -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] Input: -[2024-04-11T16:11:48.040Z] features, statistics, raster = stats_resp.get(asobj=True) -[2024-04-11T16:11:48.040Z] grid = raster[0] -[2024-04-11T16:11:48.040Z] grid.plot() -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] Traceback: -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.040Z] ValueError Traceback (most recent call last) -[2024-04-11T16:11:48.040Z] Cell In[1], line 3 -[2024-04-11T16:11:48.040Z]  1 features, statistics, raster = stats_resp.get(asobj=True) -[2024-04-11T16:11:48.040Z]  2 grid = raster[0] -[2024-04-11T16:11:48.040Z] ----> 3 grid.plot() -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) -[2024-04-11T16:11:48.040Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: -[2024-04-11T16:11:48.040Z] --> 942 raise ValueError( -[2024-04-11T16:11:48.040Z]  943 "Dataset.plot cannot be called directly. Use " -[2024-04-11T16:11:48.040Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" -[2024-04-11T16:11:48.040Z]  945 ) -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ -[2024-04-11T16:11:48.040Z] Notebook cell execution failed -[2024-04-11T16:11:48.040Z] Cell 7: Cell execution caused an exception -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] Input: -[2024-04-11T16:11:48.040Z] unique, counts = np.unique(grid, return_counts=True) -[2024-04-11T16:11:48.040Z] print("The land-use categories available are: " + str(unique)) -[2024-04-11T16:11:48.040Z] print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] # Pixels values at '127' are NaN and can be ignored. -[2024-04-11T16:11:48.040Z] from matplotlib.colors import Normalize -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] norm = Normalize() -[2024-04-11T16:11:48.040Z] norm.autoscale(unique[:-1]) -[2024-04-11T16:11:48.040Z] cm = mpl.colormaps["tab20"] -[2024-04-11T16:11:48.040Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] # plt.bar(unique[:-1], counts[:-1]) -[2024-04-11T16:11:48.040Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) -[2024-04-11T16:11:48.040Z] plt.xlabel("Land-use categories") -[2024-04-11T16:11:48.040Z] plt.ylabel("Number of pixels") -[2024-04-11T16:11:48.040Z] plt.show() -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") -[2024-04-11T16:11:48.040Z] grid.name = "Land-use categories" -[2024-04-11T16:11:48.040Z] plt.show() -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] Traceback: -[2024-04-11T16:11:48.040Z] -[2024-04-11T16:11:48.040Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.040Z] TypeError Traceback (most recent call last) -[2024-04-11T16:11:48.040Z] /tmp/ipykernel_355/750628277.py in ?() -[2024-04-11T16:11:48.041Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) -[2024-04-11T16:11:48.041Z]  2 print("The land-use categories available are: " + str(unique)) -[2024-04-11T16:11:48.041Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-04-11T16:11:48.041Z]  4  -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] <__array_function__ internals> in ?(*args, **kwargs) -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) -[2024-04-11T16:11:48.041Z]  268 >>> np.repeat(values, counts) -[2024-04-11T16:11:48.041Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved -[2024-04-11T16:11:48.041Z]  270  -[2024-04-11T16:11:48.041Z]  271 """ -[2024-04-11T16:11:48.041Z] --> 272 ar = np.asanyarray(ar) -[2024-04-11T16:11:48.041Z]  273 if axis is None: -[2024-04-11T16:11:48.041Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, -[2024-04-11T16:11:48.041Z]  275 equal_nan=equal_nan) -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) -[2024-04-11T16:11:48.041Z]  1472 def __array__(self, dtype=None): -[2024-04-11T16:11:48.041Z] -> 1473 raise TypeError( -[2024-04-11T16:11:48.041Z]  1474 "cannot directly convert an xarray.Dataset into a " -[2024-04-11T16:11:48.041Z]  1475 "numpy array. Instead, create an xarray.DataArray " -[2024-04-11T16:11:48.041Z]  1476 "first, either with indexing on the Dataset or by " -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ -[2024-04-11T16:11:48.041Z] Notebook cell execution failed -[2024-04-11T16:11:48.041Z] Cell 8: Cell execution caused an exception -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] Input: -[2024-04-11T16:11:48.041Z] import cartopy.crs as ccrs -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] # Set a CRS transformation: -[2024-04-11T16:11:48.041Z] crs = ccrs.LambertConformal( -[2024-04-11T16:11:48.041Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-11T16:11:48.041Z] ) -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] ax = plt.subplot(projection=crs) -[2024-04-11T16:11:48.041Z] grid.name = "Land-use categories" -[2024-04-11T16:11:48.041Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-04-11T16:11:48.041Z] plt.show() -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] Traceback: -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.041Z] AttributeError Traceback (most recent call last) -[2024-04-11T16:11:48.041Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-11T16:11:48.041Z]  304 try: -[2024-04-11T16:11:48.041Z] --> 305 object.__setattr__(self, name, value) -[2024-04-11T16:11:48.041Z]  306 except AttributeError as e: -[2024-04-11T16:11:48.041Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-04-11T16:11:48.041Z]  308 # DataArray.dims.setter -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] The above exception was the direct cause of the following exception: -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.041Z] AttributeError Traceback (most recent call last) -[2024-04-11T16:11:48.041Z] Cell In[1], line 9 -[2024-04-11T16:11:48.041Z]  4 crs = ccrs.LambertConformal( -[2024-04-11T16:11:48.041Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-11T16:11:48.041Z]  6 ) -[2024-04-11T16:11:48.041Z]  8 ax = plt.subplot(projection=crs) -[2024-04-11T16:11:48.041Z] ----> 9 grid.name = "Land-use categories" -[2024-04-11T16:11:48.041Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-04-11T16:11:48.041Z]  11 plt.show() -[2024-04-11T16:11:48.041Z] -[2024-04-11T16:11:48.042Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-11T16:11:48.042Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-04-11T16:11:48.042Z]  310 raise -[2024-04-11T16:11:48.042Z] --> 311 raise AttributeError( -[2024-04-11T16:11:48.042Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-04-11T16:11:48.042Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-04-11T16:11:48.042Z]  314 ) from e -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ -[2024-04-11T16:11:48.042Z] Notebook cell execution failed -[2024-04-11T16:11:48.042Z] Cell 11: Cell execution caused an exception -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] Input: -[2024-04-11T16:11:48.042Z] crs = ccrs.LambertConformal( -[2024-04-11T16:11:48.042Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-11T16:11:48.042Z] ) -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] dem.name = "Elevation" -[2024-04-11T16:11:48.042Z] dem.attrs["units"] = "m" -[2024-04-11T16:11:48.042Z] ax = plt.subplot(projection=crs) -[2024-04-11T16:11:48.042Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") -[2024-04-11T16:11:48.042Z] plt.show() -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] Traceback: -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.042Z] AttributeError Traceback (most recent call last) -[2024-04-11T16:11:48.042Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-11T16:11:48.042Z]  304 try: -[2024-04-11T16:11:48.042Z] --> 305 object.__setattr__(self, name, value) -[2024-04-11T16:11:48.042Z]  306 except AttributeError as e: -[2024-04-11T16:11:48.042Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-04-11T16:11:48.042Z]  308 # DataArray.dims.setter -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] The above exception was the direct cause of the following exception: -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] AttributeError Traceback (most recent call last) -[2024-04-11T16:11:48.042Z] Cell In[1], line 5 -[2024-04-11T16:11:48.042Z]  1 crs = ccrs.LambertConformal( -[2024-04-11T16:11:48.042Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-11T16:11:48.042Z]  3 ) -[2024-04-11T16:11:48.042Z] ----> 5 dem.name = "Elevation" -[2024-04-11T16:11:48.042Z]  6 dem.attrs["units"] = "m" -[2024-04-11T16:11:48.042Z]  7 ax = plt.subplot(projection=crs) -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-11T16:11:48.042Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-04-11T16:11:48.042Z]  310 raise -[2024-04-11T16:11:48.042Z] --> 311 raise AttributeError( -[2024-04-11T16:11:48.042Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-04-11T16:11:48.042Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-04-11T16:11:48.042Z]  314 ) from e -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-04-11T16:11:48.042Z] Notebook cell execution failed -[2024-04-11T16:11:48.042Z] Cell 5: Cell execution caused an exception -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] Input: -[2024-04-11T16:11:48.042Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-04-11T16:11:48.042Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-04-11T16:11:48.042Z] from ravenpy import OutputReader -[2024-04-11T16:11:48.042Z] from ravenpy.ravenpy import run -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-04-11T16:11:48.042Z] run_name = run_name -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-04-11T16:11:48.042Z] # subfolder called "outputs" -[2024-04-11T16:11:48.042Z] configdir = workdir -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-04-11T16:11:48.042Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] # Get the outputs using the Output Reader object. -[2024-04-11T16:11:48.042Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] Traceback: -[2024-04-11T16:11:48.042Z] -[2024-04-11T16:11:48.042Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.043Z] RavenError Traceback (most recent call last) -[2024-04-11T16:11:48.043Z] Cell In[1], line 14 -[2024-04-11T16:11:48.043Z]  11 configdir = workdir -[2024-04-11T16:11:48.043Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-04-11T16:11:48.043Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-04-11T16:11:48.043Z]  16 # Get the outputs using the Output Reader object. -[2024-04-11T16:11:48.043Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-04-11T16:11:48.043Z]  320 warn(msg, category=RavenWarning) -[2024-04-11T16:11:48.043Z]  322 if messages["ERROR"]: -[2024-04-11T16:11:48.043Z] --> 323 raise RavenError( -[2024-04-11T16:11:48.043Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-04-11T16:11:48.043Z]  325 ) -[2024-04-11T16:11:48.043Z]  327 if returncode != 0: -[2024-04-11T16:11:48.043Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] RavenError: Config directory: /tmp/NB40ug08fft -[2024-04-11T16:11:48.043Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-04-11T16:11:48.043Z] Notebook cell execution failed -[2024-04-11T16:11:48.043Z] Cell 6: Cell execution caused an exception -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] Input: -[2024-04-11T16:11:48.043Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-04-11T16:11:48.043Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-04-11T16:11:48.043Z] from ravenpy import Emulator -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] # Prepare the emulator by writing files on disk -[2024-04-11T16:11:48.043Z] e = Emulator(config=m) -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] # Run the model and get the outputs. -[2024-04-11T16:11:48.043Z] outputs = e.run() -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] Traceback: -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.043Z] RavenError Traceback (most recent call last) -[2024-04-11T16:11:48.043Z] Cell In[1], line 9 -[2024-04-11T16:11:48.043Z]  6 e = Emulator(config=m) -[2024-04-11T16:11:48.043Z]  8 # Run the model and get the outputs. -[2024-04-11T16:11:48.043Z] ----> 9 outputs = e.run() -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-04-11T16:11:48.043Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-04-11T16:11:48.043Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-04-11T16:11:48.043Z]  66 self.write_rv(overwrite=overwrite) -[2024-04-11T16:11:48.043Z] ---> 68 self._output_path = run( -[2024-04-11T16:11:48.043Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-04-11T16:11:48.043Z]  70 ) -[2024-04-11T16:11:48.043Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-04-11T16:11:48.043Z]  72 return self._output -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-04-11T16:11:48.043Z]  320 warn(msg, category=RavenWarning) -[2024-04-11T16:11:48.043Z]  322 if messages["ERROR"]: -[2024-04-11T16:11:48.043Z] --> 323 raise RavenError( -[2024-04-11T16:11:48.043Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-04-11T16:11:48.043Z]  325 ) -[2024-04-11T16:11:48.043Z]  327 if returncode != 0: -[2024-04-11T16:11:48.043Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] RavenError: Config directory: /tmp/tmpee53ov9_ -[2024-04-11T16:11:48.043Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-04-11T16:11:48.043Z] Notebook cell execution failed -[2024-04-11T16:11:48.043Z] Cell 7: Cell execution caused an exception -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] Input: -[2024-04-11T16:11:48.043Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-04-11T16:11:48.043Z] outputs.files -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] Traceback: -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.043Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.043Z] Cell In[1], line 2 -[2024-04-11T16:11:48.043Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-04-11T16:11:48.043Z] ----> 2 outputs.files -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] NameError: name 'outputs' is not defined -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-04-11T16:11:48.043Z] Notebook cell execution failed -[2024-04-11T16:11:48.043Z] Cell 8: Cell execution caused an exception -[2024-04-11T16:11:48.043Z] -[2024-04-11T16:11:48.043Z] Input: -[2024-04-11T16:11:48.043Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-04-11T16:11:48.043Z] print("----------------HYDROGRAPH----------------") -[2024-04-11T16:11:48.043Z] display(outputs.hydrograph) -[2024-04-11T16:11:48.043Z] print("") -[2024-04-11T16:11:48.043Z] print("-----------------STORAGE------------------") -[2024-04-11T16:11:48.044Z] display(outputs.storage) -[2024-04-11T16:11:48.044Z] print("") -[2024-04-11T16:11:48.044Z] print("-----------------SOLUTION-----------------") -[2024-04-11T16:11:48.044Z] display(outputs.solution) -[2024-04-11T16:11:48.044Z] print("") -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Traceback: -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.044Z] Cell In[1], line 3 -[2024-04-11T16:11:48.044Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-04-11T16:11:48.044Z]  2 print("----------------HYDROGRAPH----------------") -[2024-04-11T16:11:48.044Z] ----> 3 display(outputs.hydrograph) -[2024-04-11T16:11:48.044Z]  4 print("") -[2024-04-11T16:11:48.044Z]  5 print("-----------------STORAGE------------------") -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-04-11T16:11:48.044Z] Notebook cell execution failed -[2024-04-11T16:11:48.044Z] Cell 9: Cell execution caused an exception -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Input: -[2024-04-11T16:11:48.044Z] # Import the graphing utility built to handle Raven model outputs -[2024-04-11T16:11:48.044Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] hydrograph_objects = outputs.hydrograph -[2024-04-11T16:11:48.044Z] hydrographs(hydrograph_objects) -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Traceback: -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.044Z] Cell In[1], line 4 -[2024-04-11T16:11:48.044Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-04-11T16:11:48.044Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-04-11T16:11:48.044Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-04-11T16:11:48.044Z]  5 hydrographs(hydrograph_objects) -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-04-11T16:11:48.044Z] Notebook cell execution failed -[2024-04-11T16:11:48.044Z] Cell 10: Cell execution caused an exception -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Input: -[2024-04-11T16:11:48.044Z] outputs.hydrograph.q_sim.plot() -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Traceback: -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.044Z] Cell In[1], line 1 -[2024-04-11T16:11:48.044Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-04-11T16:11:48.044Z] Notebook cell execution failed -[2024-04-11T16:11:48.044Z] Cell 11: Cell execution caused an exception -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Input: -[2024-04-11T16:11:48.044Z] print(list(outputs.storage.keys())) -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Traceback: -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.044Z] Cell In[1], line 1 -[2024-04-11T16:11:48.044Z] ----> 1 print(list(outputs.storage.keys())) -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-04-11T16:11:48.044Z] Notebook cell execution failed -[2024-04-11T16:11:48.044Z] Cell 12: Cell execution caused an exception -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Input: -[2024-04-11T16:11:48.044Z] # Plot the "Snow" variable -[2024-04-11T16:11:48.044Z] outputs.storage["Snow"].plot() -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Traceback: -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.044Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.044Z] Cell In[1], line 2 -[2024-04-11T16:11:48.044Z]  1 # Plot the "Snow" variable -[2024-04-11T16:11:48.044Z] ----> 2 outputs.storage["Snow"].plot() -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] NameError: name 'outputs' is not defined -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ -[2024-04-11T16:11:48.044Z] Notebook cell execution failed -[2024-04-11T16:11:48.044Z] Cell 0: Cell execution caused an exception -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Input: -[2024-04-11T16:11:48.044Z] import os -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] from hsclient import HydroShare, Token -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] # Authentication method using username and password -[2024-04-11T16:11:48.044Z] """ -[2024-04-11T16:11:48.044Z] username = 'XXXXX' -[2024-04-11T16:11:48.044Z] password = 'XXXXX' -[2024-04-11T16:11:48.044Z] hs = HydroShare(username=username, password=password) -[2024-04-11T16:11:48.044Z] """ -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-04-11T16:11:48.044Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] token = Token(access_token=access_token, token_type="bearer") -[2024-04-11T16:11:48.044Z] hs = HydroShare(client_id=client_id, token=token) -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] Traceback: -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.044Z] ValidationError Traceback (most recent call last) -[2024-04-11T16:11:48.044Z] Cell In[1], line 15 -[2024-04-11T16:11:48.044Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-04-11T16:11:48.044Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-04-11T16:11:48.044Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") -[2024-04-11T16:11:48.044Z]  16 hs = HydroShare(client_id=client_id, token=token) -[2024-04-11T16:11:48.044Z] -[2024-04-11T16:11:48.044Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) -[2024-04-11T16:11:48.044Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks -[2024-04-11T16:11:48.044Z]  170 __tracebackhide__ = True -[2024-04-11T16:11:48.045Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] ValidationError: 4 validation errors for Token -[2024-04-11T16:11:48.045Z] scope -[2024-04-11T16:11:48.045Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) -[2024-04-11T16:11:48.045Z]  2 for r in results: -[2024-04-11T16:11:48.045Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] NameError: name 'hs' is not defined -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ -[2024-04-11T16:11:48.045Z] Notebook cell execution failed -[2024-04-11T16:11:48.045Z] Cell 2: Cell execution caused an exception -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] Input: -[2024-04-11T16:11:48.045Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-04-11T16:11:48.045Z] res.files() -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] Traceback: -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.045Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.045Z] Cell In[1], line 1 -[2024-04-11T16:11:48.045Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-04-11T16:11:48.045Z]  2 res.files() -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] NameError: name 'hs' is not defined -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ -[2024-04-11T16:11:48.045Z] Notebook cell execution failed -[2024-04-11T16:11:48.045Z] Cell 3: Cell execution caused an exception -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] Input: -[2024-04-11T16:11:48.045Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] Traceback: -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.045Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.045Z] Cell In[1], line 1 -[2024-04-11T16:11:48.045Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] NameError: name 'res' is not defined -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ -[2024-04-11T16:11:48.045Z] Notebook cell execution failed -[2024-04-11T16:11:48.045Z] Cell 10: Cell execution caused an exception -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] Input: -[2024-04-11T16:11:48.045Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. -[2024-04-11T16:11:48.045Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" -[2024-04-11T16:11:48.045Z] cat = intake.open_catalog(catalog_name) -[2024-04-11T16:11:48.045Z] ds = cat.era5_reanalysis_single_levels.to_dask() -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] """ -[2024-04-11T16:11:48.045Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, -[2024-04-11T16:11:48.045Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total -[2024-04-11T16:11:48.045Z] precipitation. -[2024-04-11T16:11:48.045Z] """ -[2024-04-11T16:11:48.045Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, -[2024-04-11T16:11:48.045Z] # such as units and variable names. -[2024-04-11T16:11:48.045Z] with xr.set_options(keep_attrs=True): -[2024-04-11T16:11:48.045Z] ERA5_reference = subset.subset_shape( -[2024-04-11T16:11:48.045Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour -[2024-04-11T16:11:48.045Z] ) -[2024-04-11T16:11:48.045Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) -[2024-04-11T16:11:48.045Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) -[2024-04-11T16:11:48.045Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] # Change the units -[2024-04-11T16:11:48.045Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C -[2024-04-11T16:11:48.045Z] ERA5_tmin.attrs["units"] = "degC" -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C -[2024-04-11T16:11:48.045Z] ERA5_tmax.attrs["units"] = "degC" -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] ERA5_pr = ERA5_pr * 1000 # m to mm -[2024-04-11T16:11:48.045Z] ERA5_pr.attrs["units"] = "mm" -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] # Average the variables spatially -[2024-04-11T16:11:48.045Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-04-11T16:11:48.045Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-04-11T16:11:48.045Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-04-11T16:11:48.045Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-04-11T16:11:48.045Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-04-11T16:11:48.045Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-04-11T16:11:48.045Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the -[2024-04-11T16:11:48.045Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. -[2024-04-11T16:11:48.045Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) -[2024-04-11T16:11:48.045Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] Traceback: -[2024-04-11T16:11:48.045Z] -[2024-04-11T16:11:48.045Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.045Z] KeyError Traceback (most recent call last) -[2024-04-11T16:11:48.045Z] Cell In[1], line 37 -[2024-04-11T16:11:48.045Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-04-11T16:11:48.046Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-04-11T16:11:48.046Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 -[2024-04-11T16:11:48.046Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-04-11T16:11:48.046Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-04-11T16:11:48.046Z] -[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-04-11T16:11:48.046Z]  851 self.coords[key] = value -[2024-04-11T16:11:48.046Z]  852 else: -[2024-04-11T16:11:48.046Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-04-11T16:11:48.046Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-04-11T16:11:48.046Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-04-11T16:11:48.046Z] --> 856 obj = self[key] -[2024-04-11T16:11:48.046Z]  857 if isinstance(value, DataArray): -[2024-04-11T16:11:48.046Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-04-11T16:11:48.046Z] -[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-04-11T16:11:48.046Z]  844 return self._getitem_coord(key) -[2024-04-11T16:11:48.046Z]  845 else: -[2024-04-11T16:11:48.046Z]  846 # xarray-style array indexing -[2024-04-11T16:11:48.046Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-04-11T16:11:48.046Z] -[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-04-11T16:11:48.046Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-04-11T16:11:48.046Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-04-11T16:11:48.046Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-04-11T16:11:48.046Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-04-11T16:11:48.046Z]  1447  ) -[2024-04-11T16:11:48.046Z]  1448 return self._from_temp_dataset(ds) -[2024-04-11T16:11:48.046Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-04-11T16:11:48.046Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-04-11T16:11:48.046Z] -[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-04-11T16:11:48.046Z]  2926 var_indexers = { -[2024-04-11T16:11:48.046Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-04-11T16:11:48.046Z]  2928 } -[2024-04-11T16:11:48.046Z]  2929 if var_indexers: -[2024-04-11T16:11:48.046Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-04-11T16:11:48.046Z]  2931 # drop scalar coordinates -[2024-04-11T16:11:48.046Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-04-11T16:11:48.046Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-04-11T16:11:48.046Z] -[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-04-11T16:11:48.046Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-04-11T16:11:48.046Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-04-11T16:11:48.046Z] -> 1368 return self[key] -[2024-04-11T16:11:48.046Z] -[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-04-11T16:11:48.046Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-04-11T16:11:48.046Z]  879  """Return a new Variable object whose contents are consistent with -[2024-04-11T16:11:48.046Z]  880  getting the provided key from the underlying data. -[2024-04-11T16:11:48.046Z]  881 -[2024-04-11T16:11:48.046Z]  (...) -[2024-04-11T16:11:48.046Z]  889  array `x.values` directly. -[2024-04-11T16:11:48.046Z]  890  """ -[2024-04-11T16:11:48.046Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-04-11T16:11:48.046Z]  892 data = as_indexable(self._data)[indexer] -[2024-04-11T16:11:48.046Z]  893 if new_order: -[2024-04-11T16:11:48.046Z] -[2024-04-11T16:11:48.046Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-04-11T16:11:48.046Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-04-11T16:11:48.046Z]  722 return self._broadcast_indexes_basic(key) -[2024-04-11T16:11:48.046Z] --> 724 self._validate_indexers(key) -[2024-04-11T16:11:48.046Z]  725 # Detect it can be mapped as an outer indexer -[2024-04-11T16:11:48.046Z]  726 # If all key is unlabeled, or -[2024-04-11T16:11:48.046Z]  727 # key can be mapped as an OuterIndexer. -[2024-04-11T16:11:48.047Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-04-11T16:11:48.047Z]  771 raise IndexError( -[2024-04-11T16:11:48.047Z]  772 "{}-dimensional boolean indexing is " -[2024-04-11T16:11:48.047Z]  773 "not supported. ".format(k.ndim) -[2024-04-11T16:11:48.047Z]  774 ) -[2024-04-11T16:11:48.047Z]  775 if is_duck_dask_array(k.data): -[2024-04-11T16:11:48.047Z] --> 776 raise KeyError( -[2024-04-11T16:11:48.047Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-04-11T16:11:48.047Z]  778 "This will result in a dask array of unknown shape. " -[2024-04-11T16:11:48.047Z]  779 "Such arrays are unsupported by Xarray." -[2024-04-11T16:11:48.047Z]  780 "Please compute the indexer first using .compute()" -[2024-04-11T16:11:48.047Z]  781 ) -[2024-04-11T16:11:48.047Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-04-11T16:11:48.047Z]  783 raise IndexError( -[2024-04-11T16:11:48.047Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-04-11T16:11:48.047Z]  785 "same dimension to the indexed array. Indexer is " -[2024-04-11T16:11:48.047Z]  (...) -[2024-04-11T16:11:48.047Z]  788 ) -[2024-04-11T16:11:48.047Z]  789 ) -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ -[2024-04-11T16:11:48.047Z] Notebook cell execution failed -[2024-04-11T16:11:48.047Z] Cell 11: Cell execution caused an exception -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] Input: -[2024-04-11T16:11:48.047Z] # Climate model to use -[2024-04-11T16:11:48.047Z] climate_model = "MIROC6" -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. -[2024-04-11T16:11:48.047Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") -[2024-04-11T16:11:48.047Z] col = intake.open_esm_datastore( -[2024-04-11T16:11:48.047Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" -[2024-04-11T16:11:48.047Z] ) -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. -[2024-04-11T16:11:48.047Z] with xr.set_options(keep_attrs=True): -[2024-04-11T16:11:48.047Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. -[2024-04-11T16:11:48.047Z] out = {} -[2024-04-11T16:11:48.047Z] for exp in ["historical", "ssp585"]: -[2024-04-11T16:11:48.047Z] if exp == "historical": -[2024-04-11T16:11:48.047Z] period_start = reference_start_day -[2024-04-11T16:11:48.047Z] period_end = reference_end_day -[2024-04-11T16:11:48.047Z] else: -[2024-04-11T16:11:48.047Z] period_start = future_start_day -[2024-04-11T16:11:48.047Z] period_end = future_end_day -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] out[exp] = {} -[2024-04-11T16:11:48.047Z] for variable in ["tasmin", "tasmax", "pr"]: -[2024-04-11T16:11:48.047Z] print(exp, variable) -[2024-04-11T16:11:48.047Z] query = dict( -[2024-04-11T16:11:48.047Z] experiment_id=exp, -[2024-04-11T16:11:48.047Z] table_id="day", -[2024-04-11T16:11:48.047Z] variable_id=variable, -[2024-04-11T16:11:48.047Z] member_id="r1i1p1f1", -[2024-04-11T16:11:48.047Z] source_id=climate_model, -[2024-04-11T16:11:48.047Z] ) -[2024-04-11T16:11:48.047Z] col_subset = col.search(require_all_on=["source_id"], **query) -[2024-04-11T16:11:48.047Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. -[2024-04-11T16:11:48.047Z] if variable == "pr": -[2024-04-11T16:11:48.047Z] out[exp][variable] = average.average_shape( -[2024-04-11T16:11:48.047Z] xr.open_zarr(mapper, consolidated=True).sel( -[2024-04-11T16:11:48.047Z] time=slice(period_start, period_end) -[2024-04-11T16:11:48.047Z] )[variable], -[2024-04-11T16:11:48.047Z] basin_contour, -[2024-04-11T16:11:48.047Z] ).chunk(-1) -[2024-04-11T16:11:48.047Z] else: -[2024-04-11T16:11:48.047Z] out[exp][variable] = average.average_shape( -[2024-04-11T16:11:48.047Z] xr.open_zarr(mapper, consolidated=True) -[2024-04-11T16:11:48.047Z] .sel(time=slice(period_start, period_end)) -[2024-04-11T16:11:48.047Z] .reset_coords("height", drop=True)[variable], -[2024-04-11T16:11:48.047Z] basin_contour, -[2024-04-11T16:11:48.047Z] ).chunk(-1) -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] # We can now extract the variables that we will need later: -[2024-04-11T16:11:48.047Z] historical_tasmax = out["historical"]["tasmax"] -[2024-04-11T16:11:48.047Z] historical_tasmin = out["historical"]["tasmin"] -[2024-04-11T16:11:48.047Z] historical_pr = out["historical"]["pr"] -[2024-04-11T16:11:48.047Z] future_tasmax = out["ssp585"]["tasmax"] -[2024-04-11T16:11:48.047Z] future_tasmin = out["ssp585"]["tasmin"] -[2024-04-11T16:11:48.047Z] future_pr = out["ssp585"]["pr"] -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] Traceback: -[2024-04-11T16:11:48.047Z] -[2024-04-11T16:11:48.047Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.047Z] KeyError Traceback (most recent call last) -[2024-04-11T16:11:48.047Z] Cell In[1], line 44 -[2024-04-11T16:11:48.047Z]  37 out[exp][variable] = average.average_shape( -[2024-04-11T16:11:48.047Z]  38 xr.open_zarr(mapper, consolidated=True).sel( -[2024-04-11T16:11:48.047Z]  39 time=slice(period_start, period_end) -[2024-04-11T16:11:48.047Z]  40 )[variable], -[2024-04-11T16:11:48.047Z]  41 basin_contour, -[2024-04-11T16:11:48.047Z]  42 ).chunk(-1) -[2024-04-11T16:11:48.047Z]  43 else: -[2024-04-11T16:11:48.047Z] ---> 44 out[exp][variable] = average.average_shape( -[2024-04-11T16:11:48.047Z]  45  xr.open_zarr(mapper, consolidated=True) -[2024-04-11T16:11:48.048Z]  46  .sel(time=slice(period_start, period_end)) -[2024-04-11T16:11:48.048Z]  47  .reset_coords("height", drop=True)[variable], -[2024-04-11T16:11:48.048Z]  48  basin_contour, -[2024-04-11T16:11:48.048Z]  49  ).chunk(-1) -[2024-04-11T16:11:48.048Z]  51 # We can now extract the variables that we will need later: -[2024-04-11T16:11:48.048Z]  52 historical_tasmax = out["historical"]["tasmax"] -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) -[2024-04-11T16:11:48.048Z]  105 ds_sub = ds_copy.isel(indexer) -[2024-04-11T16:11:48.048Z]  107 # Compute the weights -[2024-04-11T16:11:48.048Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) -[2024-04-11T16:11:48.048Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. -[2024-04-11T16:11:48.048Z]  111 nonnull = ( -[2024-04-11T16:11:48.048Z]  112 savger.weights.data.nnz -[2024-04-11T16:11:48.048Z]  113 if isinstance(savger.weights, xr.DataArray) -[2024-04-11T16:11:48.048Z]  114 else savger.weights.nnz -[2024-04-11T16:11:48.048Z]  115 ) -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) -[2024-04-11T16:11:48.048Z]  1182 if isinstance(ds_in, xr.DataArray): -[2024-04-11T16:11:48.048Z]  1183 ds_in = ds_in._to_temp_dataset() -[2024-04-11T16:11:48.048Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) -[2024-04-11T16:11:48.048Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. -[2024-04-11T16:11:48.048Z]  1188 # Latitude and longitude coordinates are the polygon centroid. -[2024-04-11T16:11:48.048Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) -[2024-04-11T16:11:48.048Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) -[2024-04-11T16:11:48.048Z]  166 if need_bounds: -[2024-04-11T16:11:48.048Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) -[2024-04-11T16:11:48.048Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) -[2024-04-11T16:11:48.048Z]  169 add_corner(grid, lon_b.T, lat_b.T) -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) -[2024-04-11T16:11:48.048Z]  105 lat_bnds = ds.cf.get_bounds('latitude') -[2024-04-11T16:11:48.048Z]  107 # Convert from CF bounds to xESMF bounds. -[2024-04-11T16:11:48.048Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. -[2024-04-11T16:11:48.048Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) -[2024-04-11T16:11:48.048Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) -[2024-04-11T16:11:48.048Z]  111 return lon_b, lat_b -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) -[2024-04-11T16:11:48.048Z]  2400 filtered = [ -[2024-04-11T16:11:48.048Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs -[2024-04-11T16:11:48.048Z]  2402 ] -[2024-04-11T16:11:48.048Z]  2403 if len(filtered) > 1: -[2024-04-11T16:11:48.048Z] -> 2404 raise KeyError( -[2024-04-11T16:11:48.048Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " -[2024-04-11T16:11:48.048Z]  2406 ) -[2024-04-11T16:11:48.048Z]  2408 (crd_name,) = filtered -[2024-04-11T16:11:48.048Z]  2409 crd = variables[crd_name] -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ -[2024-04-11T16:11:48.048Z] Notebook cell execution failed -[2024-04-11T16:11:48.048Z] Cell 12: Cell execution caused an exception -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] Input: -[2024-04-11T16:11:48.048Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-04-11T16:11:48.048Z] # and make sure everything is consistent. -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] # Let's start with precipitation: -[2024-04-11T16:11:48.048Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-04-11T16:11:48.048Z] historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-04-11T16:11:48.048Z] future_pr = xclim.core.units.rate2amount(future_pr) -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] # Now we can actually convert units in absolute terms. -[2024-04-11T16:11:48.048Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") -[2024-04-11T16:11:48.048Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") -[2024-04-11T16:11:48.048Z] -[2024-04-11T16:11:48.048Z] # Now let's do temperature: -[2024-04-11T16:11:48.048Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") -[2024-04-11T16:11:48.049Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") -[2024-04-11T16:11:48.049Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") -[2024-04-11T16:11:48.049Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] Traceback: -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.049Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.049Z] Cell In[1], line 6 -[2024-04-11T16:11:48.049Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-04-11T16:11:48.049Z]  2 # and make sure everything is consistent. -[2024-04-11T16:11:48.049Z]  3 -[2024-04-11T16:11:48.049Z]  4 # Let's start with precipitation: -[2024-04-11T16:11:48.049Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-04-11T16:11:48.049Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-04-11T16:11:48.049Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) -[2024-04-11T16:11:48.049Z]  9 # Now we can actually convert units in absolute terms. -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] NameError: name 'historical_pr' is not defined -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ -[2024-04-11T16:11:48.049Z] Notebook cell execution failed -[2024-04-11T16:11:48.049Z] Cell 13: Cell execution caused an exception -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] Input: -[2024-04-11T16:11:48.049Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. -[2024-04-11T16:11:48.049Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-04-11T16:11:48.049Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-11T16:11:48.049Z] ref=ERA5_weather.pr, -[2024-04-11T16:11:48.049Z] hist=historical_pr, -[2024-04-11T16:11:48.049Z] nquantiles=50, -[2024-04-11T16:11:48.049Z] kind="+", -[2024-04-11T16:11:48.049Z] group=group_month_window, -[2024-04-11T16:11:48.049Z] ) -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Apply the correction factors on the reference period -[2024-04-11T16:11:48.049Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Apply the correction factors on the future period -[2024-04-11T16:11:48.049Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Ensure that the precipitation is non-negative, which can happen with some climate models -[2024-04-11T16:11:48.049Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) -[2024-04-11T16:11:48.049Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data -[2024-04-11T16:11:48.049Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-11T16:11:48.049Z] ref=ERA5_weather.tmax, -[2024-04-11T16:11:48.049Z] hist=historical_tasmax, -[2024-04-11T16:11:48.049Z] nquantiles=50, -[2024-04-11T16:11:48.049Z] kind="+", -[2024-04-11T16:11:48.049Z] group=group_month_window, -[2024-04-11T16:11:48.049Z] ) -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Apply the correction factors on the reference period -[2024-04-11T16:11:48.049Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Apply the correction factors on the future period -[2024-04-11T16:11:48.049Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data -[2024-04-11T16:11:48.049Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-11T16:11:48.049Z] ref=ERA5_weather.tmin, -[2024-04-11T16:11:48.049Z] hist=historical_tasmin, -[2024-04-11T16:11:48.049Z] nquantiles=50, -[2024-04-11T16:11:48.049Z] kind="+", -[2024-04-11T16:11:48.049Z] group=group_month_window, -[2024-04-11T16:11:48.049Z] ) -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Apply the correction factors on the reference period -[2024-04-11T16:11:48.049Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Apply the correction factors on the future period -[2024-04-11T16:11:48.049Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] Traceback: -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.049Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.049Z] Cell In[1], line 6 -[2024-04-11T16:11:48.049Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-04-11T16:11:48.049Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-04-11T16:11:48.049Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-11T16:11:48.049Z] ----> 6 ref=ERA5_weather.pr, -[2024-04-11T16:11:48.049Z]  7 hist=historical_pr, -[2024-04-11T16:11:48.049Z]  8 nquantiles=50, -[2024-04-11T16:11:48.049Z]  9 kind="+", -[2024-04-11T16:11:48.049Z]  10 group=group_month_window, -[2024-04-11T16:11:48.049Z]  11 ) -[2024-04-11T16:11:48.049Z]  13 # Apply the correction factors on the reference period -[2024-04-11T16:11:48.049Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] NameError: name 'ERA5_weather' is not defined -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ -[2024-04-11T16:11:48.049Z] Notebook cell execution failed -[2024-04-11T16:11:48.049Z] Cell 14: Cell execution caused an exception -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] Input: -[2024-04-11T16:11:48.049Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-04-11T16:11:48.049Z] ref_dataset = xr.merge( -[2024-04-11T16:11:48.049Z] [ -[2024-04-11T16:11:48.049Z] corrected_ref_precip.to_dataset(name="pr"), -[2024-04-11T16:11:48.049Z] corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-04-11T16:11:48.049Z] corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-04-11T16:11:48.049Z] ] -[2024-04-11T16:11:48.049Z] ) -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Write to temporary folder -[2024-04-11T16:11:48.049Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-04-11T16:11:48.049Z] ref_dataset.to_netcdf(fn_tmp_ref) -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Convert the future corrected data into netCDF file -[2024-04-11T16:11:48.049Z] fut_dataset = xr.merge( -[2024-04-11T16:11:48.049Z] [ -[2024-04-11T16:11:48.049Z] corrected_fut_precip.to_dataset(name="pr"), -[2024-04-11T16:11:48.049Z] corrected_fut_tasmax.to_dataset(name="tasmax"), -[2024-04-11T16:11:48.049Z] corrected_fut_tasmin.to_dataset(name="tasmin"), -[2024-04-11T16:11:48.049Z] ] -[2024-04-11T16:11:48.049Z] ) -[2024-04-11T16:11:48.049Z] # Write to temporary folder -[2024-04-11T16:11:48.049Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" -[2024-04-11T16:11:48.049Z] fut_dataset.to_netcdf(fn_tmp_fut) -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] # Write the data to disk to a temporary location for future use. -[2024-04-11T16:11:48.049Z] ref_dataset = xr.open_dataset(fn_tmp_ref) -[2024-04-11T16:11:48.049Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] fut_dataset = xr.open_dataset(fn_tmp_fut) -[2024-04-11T16:11:48.049Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] Traceback: -[2024-04-11T16:11:48.049Z] -[2024-04-11T16:11:48.049Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.049Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.049Z] Cell In[1], line 4 -[2024-04-11T16:11:48.049Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-04-11T16:11:48.049Z]  2 ref_dataset = xr.merge( -[2024-04-11T16:11:48.050Z]  3 [ -[2024-04-11T16:11:48.050Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), -[2024-04-11T16:11:48.050Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-04-11T16:11:48.050Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-04-11T16:11:48.050Z]  7 ] -[2024-04-11T16:11:48.050Z]  8 ) -[2024-04-11T16:11:48.050Z]  10 # Write to temporary folder -[2024-04-11T16:11:48.050Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] NameError: name 'corrected_ref_precip' is not defined -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ -[2024-04-11T16:11:48.050Z] Notebook cell execution failed -[2024-04-11T16:11:48.050Z] Cell 15: Cell execution caused an exception -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] Input: -[2024-04-11T16:11:48.050Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-04-11T16:11:48.050Z] # populate the fields for the HRU. -[2024-04-11T16:11:48.050Z] hru = {} -[2024-04-11T16:11:48.050Z] hru = dict( -[2024-04-11T16:11:48.050Z] area=all_properties["area"], -[2024-04-11T16:11:48.050Z] elevation=all_properties["elevation"], -[2024-04-11T16:11:48.050Z] latitude=all_properties["latitude"], -[2024-04-11T16:11:48.050Z] longitude=all_properties["longitude"], -[2024-04-11T16:11:48.050Z] hru_type="land", -[2024-04-11T16:11:48.050Z] ) -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-04-11T16:11:48.050Z] # will simply execute the model which has been pre-configured to run on this period. -[2024-04-11T16:11:48.050Z] start_date = dt.datetime(1981, 1, 1) -[2024-04-11T16:11:48.050Z] end_date = dt.datetime(1985, 12, 31) -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. -[2024-04-11T16:11:48.050Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] # Alternative variable names as described in the tutorial. -[2024-04-11T16:11:48.050Z] alt_names = { -[2024-04-11T16:11:48.050Z] "TEMP_MIN": "tmin", -[2024-04-11T16:11:48.050Z] "TEMP_MAX": "tmax", -[2024-04-11T16:11:48.050Z] "PRECIP": "pr", -[2024-04-11T16:11:48.050Z] } -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here -[2024-04-11T16:11:48.050Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. -[2024-04-11T16:11:48.050Z] data_kwds = { -[2024-04-11T16:11:48.050Z] "ALL": { -[2024-04-11T16:11:48.050Z] "elevation": hru["elevation"], -[2024-04-11T16:11:48.050Z] "latitude": hru["latitude"], -[2024-04-11T16:11:48.050Z] "longitude": hru["longitude"], -[2024-04-11T16:11:48.050Z] } -[2024-04-11T16:11:48.050Z] } -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] # Give a name to the simulation -[2024-04-11T16:11:48.050Z] run_name = "Paper_example_simulation" -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] # Setup the gauge object that includes meteorological data from ERA5 -[2024-04-11T16:11:48.050Z] gauge = [ -[2024-04-11T16:11:48.050Z] rc.Gauge.from_nc( -[2024-04-11T16:11:48.050Z] tmp -[2024-04-11T16:11:48.050Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-04-11T16:11:48.050Z] data_type=data_type, # Note that this is the list of all the variables -[2024-04-11T16:11:48.050Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-04-11T16:11:48.050Z] data_kwds=data_kwds, -[2024-04-11T16:11:48.050Z] ) -[2024-04-11T16:11:48.050Z] ] -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] # Read the streamflow from the HYSETS catchment data for this basin -[2024-04-11T16:11:48.050Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, -[2024-04-11T16:11:48.050Z] # and the optimizer will read it directly to calibrate. -[2024-04-11T16:11:48.050Z] eval_metrics = ("NASH_SUTCLIFFE",) -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] # Build the model configuration according to user preferences and inputs -[2024-04-11T16:11:48.050Z] model_config = GR4JCN( -[2024-04-11T16:11:48.050Z] ObservationData=discharge_data, -[2024-04-11T16:11:48.050Z] Gauge=gauge, -[2024-04-11T16:11:48.050Z] HRUs=[hru], -[2024-04-11T16:11:48.050Z] StartDate=start_date, -[2024-04-11T16:11:48.050Z] EndDate=end_date, -[2024-04-11T16:11:48.050Z] RunName=run_name, -[2024-04-11T16:11:48.050Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. -[2024-04-11T16:11:48.050Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. -[2024-04-11T16:11:48.050Z] ) -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] Traceback: -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.050Z] ValueError Traceback (most recent call last) -[2024-04-11T16:11:48.050Z] Cell In[1], line 42 -[2024-04-11T16:11:48.050Z]  38 run_name = "Paper_example_simulation" -[2024-04-11T16:11:48.050Z]  40 # Setup the gauge object that includes meteorological data from ERA5 -[2024-04-11T16:11:48.050Z]  41 gauge = [ -[2024-04-11T16:11:48.050Z] ---> 42 rc.Gauge.from_nc( -[2024-04-11T16:11:48.050Z]  43  tmp -[2024-04-11T16:11:48.050Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-04-11T16:11:48.050Z]  45  data_type=data_type, # Note that this is the list of all the variables -[2024-04-11T16:11:48.050Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-04-11T16:11:48.050Z]  47  data_kwds=data_kwds, -[2024-04-11T16:11:48.050Z]  48  ) -[2024-04-11T16:11:48.050Z]  49 ] -[2024-04-11T16:11:48.050Z]  51 # Read the streamflow from the HYSETS catchment data for this basin -[2024-04-11T16:11:48.050Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-04-11T16:11:48.050Z] -[2024-04-11T16:11:48.050Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-11T16:11:48.050Z]  751 forcings.difference_update(data) -[2024-04-11T16:11:48.050Z]  753 if len(data) == 0: -[2024-04-11T16:11:48.050Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-11T16:11:48.050Z]  756 # Default Gauge name -[2024-04-11T16:11:48.051Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] ValueError: No data found in netCDF files. -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ -[2024-04-11T16:11:48.051Z] Notebook cell execution failed -[2024-04-11T16:11:48.051Z] Cell 16: Cell execution caused an exception -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] Input: -[2024-04-11T16:11:48.051Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, -[2024-04-11T16:11:48.051Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. -[2024-04-11T16:11:48.051Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) -[2024-04-11T16:11:48.051Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. -[2024-04-11T16:11:48.051Z] random_seed = 42 -[2024-04-11T16:11:48.051Z] np.random.seed(random_seed) -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Build the optimizer object -[2024-04-11T16:11:48.051Z] spot_setup = SpotSetup( -[2024-04-11T16:11:48.051Z] config=model_config, -[2024-04-11T16:11:48.051Z] low=low, -[2024-04-11T16:11:48.051Z] high=high, -[2024-04-11T16:11:48.051Z] ) -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-04-11T16:11:48.051Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-04-11T16:11:48.051Z] max_iterations = 200 -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer -[2024-04-11T16:11:48.051Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most -[2024-04-11T16:11:48.051Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation -[2024-04-11T16:11:48.051Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small -[2024-04-11T16:11:48.051Z] # evaluation budgets. For more details on DDS, see: -[2024-04-11T16:11:48.051Z] # -[2024-04-11T16:11:48.051Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water -[2024-04-11T16:11:48.051Z] # Resources Research, 43(1) -[2024-04-11T16:11:48.051Z] sampler = spotpy.algorithms.dds( -[2024-04-11T16:11:48.051Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False -[2024-04-11T16:11:48.051Z] ) -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and -[2024-04-11T16:11:48.051Z] # the best overall value from all trials is returned. -[2024-04-11T16:11:48.051Z] sampler.sample(max_iterations, trials=1) -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Get the model diagnostics -[2024-04-11T16:11:48.051Z] diag = spot_setup.diagnostics -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Get all the values of each iteration -[2024-04-11T16:11:48.051Z] results = sampler.getdata() -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Get the raw resutlts directly in an array -[2024-04-11T16:11:48.051Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( -[2024-04-11T16:11:48.051Z] results -[2024-04-11T16:11:48.051Z] ) # Want to get the MAX NSE (change for min for RMSE) -[2024-04-11T16:11:48.051Z] best_model_run = list( -[2024-04-11T16:11:48.051Z] results[bestindex][0] -[2024-04-11T16:11:48.051Z] ) # Get the parameter set returning the best NSE -[2024-04-11T16:11:48.051Z] optimized_parameters = best_model_run[ -[2024-04-11T16:11:48.051Z] 1:-1 -[2024-04-11T16:11:48.051Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Display the parameter set ready to use in a future run: -[2024-04-11T16:11:48.051Z] print(optimized_parameters) -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] Traceback: -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.051Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.051Z] Cell In[1], line 12 -[2024-04-11T16:11:48.051Z]  8 np.random.seed(random_seed) -[2024-04-11T16:11:48.051Z]  10 # Build the optimizer object -[2024-04-11T16:11:48.051Z]  11 spot_setup = SpotSetup( -[2024-04-11T16:11:48.051Z] ---> 12 config=model_config, -[2024-04-11T16:11:48.051Z]  13 low=low, -[2024-04-11T16:11:48.051Z]  14 high=high, -[2024-04-11T16:11:48.051Z]  15 ) -[2024-04-11T16:11:48.051Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-04-11T16:11:48.051Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-04-11T16:11:48.051Z]  19 max_iterations = 200 -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] NameError: name 'model_config' is not defined -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ -[2024-04-11T16:11:48.051Z] Notebook cell execution failed -[2024-04-11T16:11:48.051Z] Cell 17: Cell execution caused an exception -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] Input: -[2024-04-11T16:11:48.051Z] # Copy the configuration of the previous model that we will modify for our validation: -[2024-04-11T16:11:48.051Z] model_validation = model_config.duplicate( -[2024-04-11T16:11:48.051Z] params=optimized_parameters, -[2024-04-11T16:11:48.051Z] StartDate=dt.datetime(1986, 1, 1), -[2024-04-11T16:11:48.051Z] EndDate=dt.datetime(1990, 12, 31), -[2024-04-11T16:11:48.051Z] SuppressOutput=False, -[2024-04-11T16:11:48.051Z] ) -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] sim_output = Emulator(config=model_validation).run() -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Get validation NSE (note we are counting the first year without warm-up) -[2024-04-11T16:11:48.051Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Plot the model output -[2024-04-11T16:11:48.051Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") -[2024-04-11T16:11:48.051Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-04-11T16:11:48.051Z] plt.legend() -[2024-04-11T16:11:48.051Z] plt.title("Validation period - NSE=" + str(NSE[0])) -[2024-04-11T16:11:48.051Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-11T16:11:48.051Z] plt.grid() -[2024-04-11T16:11:48.051Z] plt.show() -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] Traceback: -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.051Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.051Z] Cell In[1], line 2 -[2024-04-11T16:11:48.051Z]  1 # Copy the configuration of the previous model that we will modify for our validation: -[2024-04-11T16:11:48.051Z] ----> 2 model_validation = model_config.duplicate( -[2024-04-11T16:11:48.051Z]  3 params=optimized_parameters, -[2024-04-11T16:11:48.051Z]  4 StartDate=dt.datetime(1986, 1, 1), -[2024-04-11T16:11:48.051Z]  5 EndDate=dt.datetime(1990, 12, 31), -[2024-04-11T16:11:48.051Z]  6 SuppressOutput=False, -[2024-04-11T16:11:48.051Z]  7 ) -[2024-04-11T16:11:48.051Z]  9 sim_output = Emulator(config=model_validation).run() -[2024-04-11T16:11:48.051Z]  11 # Get validation NSE (note we are counting the first year without warm-up) -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] NameError: name 'model_config' is not defined -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ -[2024-04-11T16:11:48.051Z] Notebook cell execution failed -[2024-04-11T16:11:48.051Z] Cell 18: Cell execution caused an exception -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] Input: -[2024-04-11T16:11:48.051Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-04-11T16:11:48.051Z] gauge_ref = [ -[2024-04-11T16:11:48.051Z] rc.Gauge.from_nc( -[2024-04-11T16:11:48.051Z] tmp -[2024-04-11T16:11:48.051Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-11T16:11:48.051Z] data_type=data_type, -[2024-04-11T16:11:48.051Z] alt_names=alt_names, -[2024-04-11T16:11:48.051Z] data_kwds=data_kwds, -[2024-04-11T16:11:48.051Z] ) -[2024-04-11T16:11:48.051Z] ] -[2024-04-11T16:11:48.051Z] -[2024-04-11T16:11:48.051Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-11T16:11:48.051Z] model_config_reference = model_validation.duplicate( -[2024-04-11T16:11:48.051Z] Gauge=gauge_ref, -[2024-04-11T16:11:48.051Z] StartDate=reference_start_day -[2024-04-11T16:11:48.052Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-04-11T16:11:48.052Z] EndDate=reference_end_day, -[2024-04-11T16:11:48.052Z] ) -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] # Run the model from the configuration and get the outputs. -[2024-04-11T16:11:48.052Z] ref_output = Emulator(config=model_config_reference).run() -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] # Plot the model output. Note that both simulations should have similar hydrological -[2024-04-11T16:11:48.052Z] # regime but day-to-day variability is not expected to match. -[2024-04-11T16:11:48.052Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") -[2024-04-11T16:11:48.052Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-04-11T16:11:48.052Z] plt.legend() -[2024-04-11T16:11:48.052Z] plt.title("Reference period") -[2024-04-11T16:11:48.052Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-11T16:11:48.052Z] plt.grid() -[2024-04-11T16:11:48.052Z] plt.show() -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] Traceback: -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.052Z] ValueError Traceback (most recent call last) -[2024-04-11T16:11:48.052Z] Cell In[1], line 3 -[2024-04-11T16:11:48.052Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-04-11T16:11:48.052Z]  2 gauge_ref = [ -[2024-04-11T16:11:48.052Z] ----> 3 rc.Gauge.from_nc( -[2024-04-11T16:11:48.052Z]  4  tmp -[2024-04-11T16:11:48.052Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-11T16:11:48.052Z]  6  data_type=data_type, -[2024-04-11T16:11:48.052Z]  7  alt_names=alt_names, -[2024-04-11T16:11:48.052Z]  8  data_kwds=data_kwds, -[2024-04-11T16:11:48.052Z]  9  ) -[2024-04-11T16:11:48.052Z]  10 ] -[2024-04-11T16:11:48.052Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-11T16:11:48.052Z]  13 model_config_reference = model_validation.duplicate( -[2024-04-11T16:11:48.052Z]  14 Gauge=gauge_ref, -[2024-04-11T16:11:48.052Z]  15 StartDate=reference_start_day -[2024-04-11T16:11:48.052Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-04-11T16:11:48.052Z]  17 EndDate=reference_end_day, -[2024-04-11T16:11:48.052Z]  18 ) -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-11T16:11:48.052Z]  751 forcings.difference_update(data) -[2024-04-11T16:11:48.052Z]  753 if len(data) == 0: -[2024-04-11T16:11:48.052Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-11T16:11:48.052Z]  756 # Default Gauge name -[2024-04-11T16:11:48.052Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] ValueError: No data found in netCDF files. -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ -[2024-04-11T16:11:48.052Z] Notebook cell execution failed -[2024-04-11T16:11:48.052Z] Cell 19: Cell execution caused an exception -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] Input: -[2024-04-11T16:11:48.052Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-04-11T16:11:48.052Z] gauge_fut = [ -[2024-04-11T16:11:48.052Z] rc.Gauge.from_nc( -[2024-04-11T16:11:48.052Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-11T16:11:48.052Z] data_type=data_type, -[2024-04-11T16:11:48.052Z] alt_names=alt_names, -[2024-04-11T16:11:48.052Z] data_kwds=data_kwds, -[2024-04-11T16:11:48.052Z] ) -[2024-04-11T16:11:48.052Z] ] -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-11T16:11:48.052Z] model_config_future = model_validation.duplicate( -[2024-04-11T16:11:48.052Z] Gauge=gauge_fut, -[2024-04-11T16:11:48.052Z] StartDate=future_start_day + dt.timedelta(days=1), -[2024-04-11T16:11:48.052Z] EndDate=future_end_day, -[2024-04-11T16:11:48.052Z] ObservationData=None, # There are no observations for the future period. -[2024-04-11T16:11:48.052Z] ) -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] # Run the model and get the outputs and hydrographs. -[2024-04-11T16:11:48.052Z] fut_output = Emulator(config=model_config_future).run() -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] # Plot the model output -[2024-04-11T16:11:48.052Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") -[2024-04-11T16:11:48.052Z] plt.legend() -[2024-04-11T16:11:48.052Z] plt.title("Future period") -[2024-04-11T16:11:48.052Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-11T16:11:48.052Z] plt.grid() -[2024-04-11T16:11:48.052Z] plt.show() -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] Traceback: -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.052Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.052Z] ValueError Traceback (most recent call last) -[2024-04-11T16:11:48.052Z] Cell In[1], line 3 -[2024-04-11T16:11:48.052Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-04-11T16:11:48.052Z]  2 gauge_fut = [ -[2024-04-11T16:11:48.052Z] ----> 3 rc.Gauge.from_nc( -[2024-04-11T16:11:48.052Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-11T16:11:48.052Z]  5  data_type=data_type, -[2024-04-11T16:11:48.052Z]  6  alt_names=alt_names, -[2024-04-11T16:11:48.052Z]  7  data_kwds=data_kwds, -[2024-04-11T16:11:48.052Z]  8  ) -[2024-04-11T16:11:48.052Z]  9 ] -[2024-04-11T16:11:48.052Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-11T16:11:48.052Z]  12 model_config_future = model_validation.duplicate( -[2024-04-11T16:11:48.052Z]  13 Gauge=gauge_fut, -[2024-04-11T16:11:48.052Z]  14 StartDate=future_start_day + dt.timedelta(days=1), -[2024-04-11T16:11:48.052Z]  15 EndDate=future_end_day, -[2024-04-11T16:11:48.052Z]  16 ObservationData=None, # There are no observations for the future period. -[2024-04-11T16:11:48.052Z]  17 ) -[2024-04-11T16:11:48.052Z] -[2024-04-11T16:11:48.053Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-11T16:11:48.053Z]  751 forcings.difference_update(data) -[2024-04-11T16:11:48.053Z]  753 if len(data) == 0: -[2024-04-11T16:11:48.053Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-11T16:11:48.053Z]  756 # Default Gauge name -[2024-04-11T16:11:48.053Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-11T16:11:48.053Z] -[2024-04-11T16:11:48.053Z] ValueError: No data found in netCDF files. -[2024-04-11T16:11:48.053Z] -[2024-04-11T16:11:48.053Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ -[2024-04-11T16:11:48.053Z] Notebook cell execution failed -[2024-04-11T16:11:48.053Z] Cell 20: Cell execution caused an exception -[2024-04-11T16:11:48.053Z] -[2024-04-11T16:11:48.053Z] Input: -[2024-04-11T16:11:48.053Z] # Extract the mean annual hydrograph for each simulation. -[2024-04-11T16:11:48.053Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-11T16:11:48.053Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-11T16:11:48.053Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-11T16:11:48.053Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-11T16:11:48.053Z] -[2024-04-11T16:11:48.054Z] # Plot the model output -[2024-04-11T16:11:48.054Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") -[2024-04-11T16:11:48.054Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") -[2024-04-11T16:11:48.054Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") -[2024-04-11T16:11:48.054Z] future_flows.plot(color="red", label="Future", x="dayofyear") -[2024-04-11T16:11:48.054Z] plt.legend() -[2024-04-11T16:11:48.054Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-11T16:11:48.054Z] plt.xlabel("Day of year") -[2024-04-11T16:11:48.054Z] plt.xlim([0, 365]) -[2024-04-11T16:11:48.054Z] plt.title("Comparison of mean annual hydrographs") -[2024-04-11T16:11:48.054Z] plt.grid() -[2024-04-11T16:11:48.054Z] plt.show() -[2024-04-11T16:11:48.054Z] -[2024-04-11T16:11:48.054Z] Traceback: -[2024-04-11T16:11:48.054Z] -[2024-04-11T16:11:48.054Z] --------------------------------------------------------------------------- -[2024-04-11T16:11:48.054Z] NameError Traceback (most recent call last) -[2024-04-11T16:11:48.054Z] Cell In[1], line 2 -[2024-04-11T16:11:48.054Z]  1 # Extract the mean annual hydrograph for each simulation. -[2024-04-11T16:11:48.054Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-11T16:11:48.054Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-11T16:11:48.054Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-11T16:11:48.054Z] -[2024-04-11T16:11:48.054Z] NameError: name 'ref_output' is not defined -[2024-04-11T16:11:48.054Z] -[2024-04-11T16:11:48.054Z] =========================== short test summary info ============================ -[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 -[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 -[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 -[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 -[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-04-11T16:11:48.054Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 -[2024-04-11T16:11:48.055Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 -[2024-04-11T16:11:48.055Z] ================== 27 failed, 215 passed in 922.59s (0:15:22) ================== -[2024-04-11T16:11:48.055Z] + EXIT_CODE=1 -[2024-04-11T16:11:48.055Z] + echo true -[2024-04-11T16:11:48.055Z] + tr [:upper:] [:lower:] -[2024-04-11T16:11:48.056Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-04-11T16:11:48.056Z] + [ xtrue = xtrue ] -[2024-04-11T16:11:48.056Z] + mkdir -p buildout -[2024-04-11T16:11:48.056Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-04-11T16:11:48.056Z] + filename=Region_selection.ipynb -[2024-04-11T16:11:48.056Z] + echo Region_selection.ipynb -[2024-04-11T16:11:48.056Z] + sed s/.ipynb$// -[2024-04-11T16:11:48.056Z] + filename=Region_selection -[2024-04-11T16:11:48.056Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-04-11T16:11:48.056Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-04-11T16:11:48.056Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-04-11T16:12:00.270Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb -[2024-04-11T16:12:00.270Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-04-11T16:12:00.270Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-04-11T16:12:00.270Z] + echo Subset_climate_data_over_watershed.ipynb -[2024-04-11T16:12:00.270Z] + sed s/.ipynb$// -[2024-04-11T16:12:00.270Z] + filename=Subset_climate_data_over_watershed -[2024-04-11T16:12:00.270Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-04-11T16:12:00.270Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-04-11T16:12:00.270Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-04-11T16:12:18.394Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-04-11T16:12:18.394Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-04-11T16:12:18.394Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-04-11T16:12:18.394Z] + echo 00_Introduction_to_JupyterLab.ipynb -[2024-04-11T16:12:18.394Z] + sed s/.ipynb$// -[2024-04-11T16:12:18.394Z] + filename=00_Introduction_to_JupyterLab -[2024-04-11T16:12:18.394Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-04-11T16:12:18.394Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-04-11T16:12:19.327Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-04-11T16:12:21.861Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-04-11T16:12:21.861Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-04-11T16:12:21.861Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-04-11T16:12:21.861Z] + sed s/.ipynb$// -[2024-04-11T16:12:21.861Z] + echo 01_Getting_watershed_boundaries.ipynb -[2024-04-11T16:12:21.861Z] + filename=01_Getting_watershed_boundaries -[2024-04-11T16:12:21.861Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-04-11T16:12:21.861Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-04-11T16:12:23.771Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-04-11T16:12:36.051Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-04-11T16:12:36.051Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-04-11T16:12:36.051Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-04-11T16:12:36.051Z] + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-04-11T16:12:36.051Z] + sed s/.ipynb$// -[2024-04-11T16:12:36.051Z] + filename=02_Extract_geographical_watershed_properties -[2024-04-11T16:12:36.051Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-04-11T16:12:36.051Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-04-11T16:12:36.051Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-04-11T16:12:50.968Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-04-11T16:12:50.968Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-04-11T16:12:50.968Z] + filename=03_Extracting_forcing_data.ipynb -[2024-04-11T16:12:50.968Z] + echo 03_Extracting_forcing_data.ipynb -[2024-04-11T16:12:50.968Z] + sed s/.ipynb$// -[2024-04-11T16:12:50.968Z] + filename=03_Extracting_forcing_data -[2024-04-11T16:12:50.968Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-04-11T16:12:50.968Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-04-11T16:12:52.367Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-04-11T16:14:43.960Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-04-11T16:14:43.960Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-04-11T16:14:43.960Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-04-11T16:14:43.960Z] + echo 04_Emulating_hydrological_models.ipynb -[2024-04-11T16:14:43.960Z] + sed s/.ipynb$// -[2024-04-11T16:14:43.960Z] + filename=04_Emulating_hydrological_models -[2024-04-11T16:14:43.960Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-04-11T16:14:43.960Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-04-11T16:14:43.961Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-04-11T16:14:58.899Z] [NbConvertApp] Writing 158077 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-04-11T16:14:58.899Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-04-11T16:14:58.899Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-04-11T16:14:58.899Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-04-11T16:14:58.899Z] + sed s/.ipynb$// -[2024-04-11T16:14:58.899Z] + filename=05_Advanced_RavenPy_configuration -[2024-04-11T16:14:58.899Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-04-11T16:14:58.899Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-04-11T16:15:00.330Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-04-11T16:15:22.428Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-04-11T16:15:22.428Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-04-11T16:15:22.428Z] + filename=06_Raven_calibration.ipynb -[2024-04-11T16:15:22.428Z] + echo 06_Raven_calibration.ipynb -[2024-04-11T16:15:22.428Z] + sed s/.ipynb$// -[2024-04-11T16:15:22.428Z] + filename=06_Raven_calibration -[2024-04-11T16:15:22.428Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-04-11T16:15:22.428Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-04-11T16:15:22.428Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-04-11T16:15:34.694Z] [NbConvertApp] Writing 24172 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-04-11T16:15:34.694Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-04-11T16:15:34.694Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-04-11T16:15:34.694Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-04-11T16:15:34.694Z] + sed s/.ipynb$// -[2024-04-11T16:15:34.694Z] + filename=07_Making_and_using_hotstart_files -[2024-04-11T16:15:34.694Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-04-11T16:15:34.694Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-04-11T16:15:34.954Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-04-11T16:15:50.005Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-04-11T16:15:50.005Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-11T16:15:50.005Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-11T16:15:50.005Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-11T16:15:50.005Z] + sed s/.ipynb$// -[2024-04-11T16:15:50.005Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-04-11T16:15:50.005Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-04-11T16:15:50.005Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-11T16:15:50.276Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-04-11T16:20:26.970Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb -[2024-04-11T16:20:26.970Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-11T16:20:26.970Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-11T16:20:26.970Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-11T16:20:26.970Z] + sed s/.ipynb$// -[2024-04-11T16:20:26.970Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-04-11T16:20:26.970Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-04-11T16:20:26.970Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-11T16:20:26.970Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-04-11T16:20:39.280Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-04-11T16:20:39.280Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-04-11T16:20:39.280Z] + filename=10_Data_assimilation.ipynb -[2024-04-11T16:20:39.280Z] + sed s/.ipynb$// -[2024-04-11T16:20:39.280Z] + echo 10_Data_assimilation.ipynb -[2024-04-11T16:20:39.280Z] + filename=10_Data_assimilation -[2024-04-11T16:20:39.280Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-04-11T16:20:39.280Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-04-11T16:20:40.663Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-04-11T16:22:02.313Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-04-11T16:22:02.313Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-04-11T16:22:02.313Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-04-11T16:22:02.313Z] + sed s/.ipynb$// -[2024-04-11T16:22:02.313Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-04-11T16:22:02.313Z] + filename=11_Climatological_ESP_forecasting -[2024-04-11T16:22:02.313Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-04-11T16:22:02.313Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-04-11T16:22:02.313Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-04-11T16:22:49.239Z] [NbConvertApp] Writing 556869 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-04-11T16:22:49.239Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-04-11T16:22:49.239Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-04-11T16:22:49.239Z] + sed s/.ipynb$// -[2024-04-11T16:22:49.239Z] + echo 12_Performing_hindcasting_experiments.ipynb -[2024-04-11T16:22:49.239Z] + filename=12_Performing_hindcasting_experiments -[2024-04-11T16:22:49.239Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-04-11T16:22:49.239Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-04-11T16:22:49.239Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-04-11T16:23:07.408Z] [NbConvertApp] Writing 298315 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-04-11T16:23:07.408Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-04-11T16:23:07.408Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-04-11T16:23:07.408Z] + echo Assess_probabilistic_flood_risk.ipynb -[2024-04-11T16:23:07.408Z] + sed s/.ipynb$// -[2024-04-11T16:23:07.408Z] + filename=Assess_probabilistic_flood_risk -[2024-04-11T16:23:07.408Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-04-11T16:23:07.408Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-04-11T16:23:08.368Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-04-11T16:23:40.562Z] [NbConvertApp] Writing 549251 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-04-11T16:23:40.562Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-11T16:23:40.562Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-11T16:23:40.562Z] + sed s/.ipynb$// -[2024-04-11T16:23:40.562Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-11T16:23:40.562Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-04-11T16:23:40.562Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-04-11T16:23:40.562Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-11T16:23:40.562Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-04-11T16:24:12.709Z] [NbConvertApp] Writing 748453 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-04-11T16:24:12.709Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-04-11T16:24:12.709Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-04-11T16:24:12.709Z] + echo Distributed_hydrological_modelling.ipynb -[2024-04-11T16:24:12.709Z] + sed s/.ipynb$// -[2024-04-11T16:24:12.709Z] + filename=Distributed_hydrological_modelling -[2024-04-11T16:24:12.709Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-04-11T16:24:12.709Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-04-11T16:24:13.279Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-04-11T16:24:45.392Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-04-11T16:24:45.392Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-04-11T16:24:45.393Z] + filename=HydroShare_integration.ipynb -[2024-04-11T16:24:45.393Z] + sed s/.ipynb$// -[2024-04-11T16:24:45.393Z] + echo HydroShare_integration.ipynb -[2024-04-11T16:24:45.393Z] + filename=HydroShare_integration -[2024-04-11T16:24:45.393Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-04-11T16:24:45.393Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-04-11T16:24:47.305Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-04-11T16:24:52.593Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb -[2024-04-11T16:24:52.593Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-04-11T16:24:52.593Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-04-11T16:24:52.593Z] + echo Hydrological_realtime_forecasting.ipynb -[2024-04-11T16:24:52.593Z] + sed s/.ipynb$// -[2024-04-11T16:24:52.593Z] + filename=Hydrological_realtime_forecasting -[2024-04-11T16:24:52.593Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-04-11T16:24:52.593Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-04-11T16:24:53.547Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-04-11T16:25:15.498Z] [NbConvertApp] Writing 306660 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-04-11T16:25:15.498Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-04-11T16:25:15.498Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-04-11T16:25:15.498Z] + echo Managing_Jupyter_Environments.ipynb -[2024-04-11T16:25:15.498Z] + sed s/.ipynb$// -[2024-04-11T16:25:15.498Z] + filename=Managing_Jupyter_Environments -[2024-04-11T16:25:15.498Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-04-11T16:25:15.498Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-04-11T16:25:16.961Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-04-11T16:25:26.931Z] [NbConvertApp] Writing 7997 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-04-11T16:25:26.931Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-04-11T16:25:26.931Z] + filename=Perform_Regionalization.ipynb -[2024-04-11T16:25:26.931Z] + echo Perform_Regionalization.ipynb -[2024-04-11T16:25:26.931Z] + sed s/.ipynb$// -[2024-04-11T16:25:26.931Z] + filename=Perform_Regionalization -[2024-04-11T16:25:26.931Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-04-11T16:25:26.931Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-04-11T16:25:28.308Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-04-11T16:26:00.368Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-04-11T16:26:00.368Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-11T16:26:00.368Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-11T16:26:00.368Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-11T16:26:00.368Z] + sed s/.ipynb$// -[2024-04-11T16:26:00.368Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-04-11T16:26:00.368Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-04-11T16:26:00.368Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-11T16:26:00.368Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-04-11T16:26:15.262Z] [NbConvertApp] Writing 117971 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-04-11T16:26:15.262Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-04-11T16:26:15.262Z] + filename=Sensitivity_analysis.ipynb -[2024-04-11T16:26:15.262Z] + echo Sensitivity_analysis.ipynb -[2024-04-11T16:26:15.262Z] + sed s/.ipynb$// -[2024-04-11T16:26:15.262Z] + filename=Sensitivity_analysis -[2024-04-11T16:26:15.262Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-04-11T16:26:15.262Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-04-11T16:26:15.530Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-04-11T16:26:33.615Z] [NbConvertApp] Writing 35133 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-04-11T16:26:33.615Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-04-11T16:26:33.615Z] + filename=time_series_analysis.ipynb -[2024-04-11T16:26:33.615Z] + + sed s/.ipynb$// -[2024-04-11T16:26:33.615Z] echo time_series_analysis.ipynb -[2024-04-11T16:26:33.615Z] + filename=time_series_analysis -[2024-04-11T16:26:33.615Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-04-11T16:26:33.615Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-04-11T16:26:35.517Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-04-11T16:26:50.407Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb -[2024-04-11T16:26:50.407Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-11T16:26:50.407Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-11T16:26:50.407Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-11T16:26:50.407Z] + sed s/.ipynb$// -[2024-04-11T16:26:50.407Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-04-11T16:26:50.407Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-04-11T16:26:50.407Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-11T16:26:50.407Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-04-11T16:28:26.832Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-04-11T16:28:26.832Z] + exit 1 -[2024-04-11T16:28:26.832Z] + EXIT_CODE=1 -[2024-04-11T16:28:26.832Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-04-11T16:28:26.832Z] + mkdir -p buildout/env-dump -[2024-04-11T16:28:26.832Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-04-11T16:28:26.832Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-04-11T16:28:26.832Z] + conda env export -n birdy -[2024-04-11T16:28:33.395Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-11T16:28:33.395Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-11T16:28:33.395Z] + conda list -n birdy --explicit -[2024-04-11T16:28:43.448Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-11T16:28:43.448Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-11T16:28:43.448Z] + pip freeze -[2024-04-11T16:28:43.448Z] + exit 1 +[2024-04-12T03:45:42.723Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-12T03:45:42.723Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-12T03:45:42.723Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-12T03:45:42.723Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-12T03:45:42.723Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-12T03:45:42.723Z] FINCH_BRANCH has been set to 'master' +[2024-04-12T03:45:42.723Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-12T03:45:42.723Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-12T03:45:42.723Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-12T03:45:42.723Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-12T03:45:42.723Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-12T03:45:42.723Z] RAVEN_BRANCH has been set to 'main' +[2024-04-12T03:45:42.723Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-12T03:45:42.723Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-12T03:45:42.723Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-12T03:45:42.723Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-12T03:45:42.723Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-12T03:45:42.723Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-12T03:45:42.723Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-12T03:45:42.723Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-12T03:45:42.723Z] + git clean -fdx +[2024-04-12T03:45:42.987Z] Removing .pytest_cache/ +[2024-04-12T03:45:42.987Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/ +[2024-04-12T03:45:42.987Z] Removing RavenPy-master/ +[2024-04-12T03:45:42.987Z] Removing __pycache__/ +[2024-04-12T03:45:42.987Z] Removing buildout/ +[2024-04-12T03:45:42.987Z] Removing esgf-compute-api-devel/ +[2024-04-12T03:45:42.987Z] Removing finch-master/ +[2024-04-12T03:45:42.987Z] Removing pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/ +[2024-04-12T03:45:42.987Z] Removing raven-main/ +[2024-04-12T03:45:42.987Z] + ./downloadrepos +[2024-04-12T03:45:42.987Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-12T03:45:42.987Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-12T03:45:42.987Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-12T03:45:42.987Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-12T03:45:42.987Z] FINCH_BRANCH has been set to 'master' +[2024-04-12T03:45:42.987Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-12T03:45:42.987Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-12T03:45:42.987Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-12T03:45:42.987Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-12T03:45:42.987Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-12T03:45:42.987Z] RAVEN_BRANCH has been set to 'main' +[2024-04-12T03:45:42.987Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-12T03:45:42.987Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-12T03:45:42.987Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-12T03:45:42.987Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-12T03:45:42.987Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-12T03:45:42.987Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-12T03:45:42.987Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-12T03:45:42.987Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-12T03:45:42.987Z] + rm -rf pavics-sdi-* +[2024-04-12T03:45:42.987Z] + ls +[2024-04-12T03:45:42.987Z] + grep pavics-sdi +[2024-04-12T03:45:42.987Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-04-12T03:45:42.987Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-12T03:45:42.987Z] + shift +[2024-04-12T03:45:42.987Z] + branch=master +[2024-04-12T03:45:42.987Z] + shift +[2024-04-12T03:45:42.987Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-04-12T03:45:42.987Z] + tar xz +[2024-04-12T03:45:47.175Z] + ls +[2024-04-12T03:45:47.175Z] + grep pavics-sdi +[2024-04-12T03:45:47.175Z] pavics-sdi-master +[2024-04-12T03:45:47.175Z] + set +x +[2024-04-12T03:45:47.175Z] + rm -rf finch-* +[2024-04-12T03:45:47.175Z] + ls +[2024-04-12T03:45:47.175Z] + grep finch +[2024-04-12T03:45:47.175Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-12T03:45:47.175Z] + github_repo=https://github.com/bird-house/finch +[2024-04-12T03:45:47.175Z] + shift +[2024-04-12T03:45:47.175Z] + branch=master +[2024-04-12T03:45:47.175Z] + shift +[2024-04-12T03:45:47.175Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-12T03:45:47.175Z] + tar xz +[2024-04-12T03:45:48.116Z] + ls +[2024-04-12T03:45:48.116Z] + grep finch +[2024-04-12T03:45:48.116Z] finch-master +[2024-04-12T03:45:48.116Z] + set +x +[2024-04-12T03:45:48.116Z] + rm -rf PAVICS-landing-* +[2024-04-12T03:45:48.116Z] + ls +[2024-04-12T03:45:48.116Z] + grep PAVICS-landing +[2024-04-12T03:45:48.116Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-04-12T03:45:48.116Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-12T03:45:48.116Z] + shift +[2024-04-12T03:45:48.116Z] + branch=master +[2024-04-12T03:45:48.116Z] + shift +[2024-04-12T03:45:48.116Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-04-12T03:45:48.116Z] + tar xz +[2024-04-12T03:46:44.292Z] + ls +[2024-04-12T03:46:44.292Z] + grep PAVICS-landing +[2024-04-12T03:46:44.292Z] PAVICS-landing-master +[2024-04-12T03:46:44.292Z] + set +x +[2024-04-12T03:46:44.292Z] + rm -rf raven-* +[2024-04-12T03:46:44.292Z] + ls +[2024-04-12T03:46:44.292Z] + grep raven +[2024-04-12T03:46:44.292Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-12T03:46:44.292Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-12T03:46:44.292Z] + shift +[2024-04-12T03:46:44.292Z] + branch=main +[2024-04-12T03:46:44.292Z] + shift +[2024-04-12T03:46:44.292Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-12T03:46:44.292Z] + tar xz +[2024-04-12T03:46:44.292Z] + grep raven +[2024-04-12T03:46:44.292Z] + ls +[2024-04-12T03:46:44.292Z] raven-main +[2024-04-12T03:46:44.292Z] + set +x +[2024-04-12T03:46:44.292Z] + rm -rf RavenPy-* +[2024-04-12T03:46:44.292Z] + grep RavenPy +[2024-04-12T03:46:44.292Z] + ls +[2024-04-12T03:46:44.292Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-12T03:46:44.292Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-12T03:46:44.292Z] + shift +[2024-04-12T03:46:44.292Z] + branch=master +[2024-04-12T03:46:44.292Z] + shift +[2024-04-12T03:46:44.292Z] + tar xz +[2024-04-12T03:46:44.292Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-12T03:46:44.292Z] + ls +[2024-04-12T03:46:44.292Z] + grep RavenPy +[2024-04-12T03:46:44.292Z] RavenPy-master +[2024-04-12T03:46:44.292Z] + set +x +[2024-04-12T03:46:44.292Z] + rm -rf esgf-compute-api-* +[2024-04-12T03:46:44.292Z] + ls +[2024-04-12T03:46:44.292Z] + grep esgf-compute-api +[2024-04-12T03:46:44.292Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-12T03:46:44.292Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-12T03:46:44.292Z] + shift +[2024-04-12T03:46:44.292Z] + branch=devel +[2024-04-12T03:46:44.292Z] + shift +[2024-04-12T03:46:44.292Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-12T03:46:44.292Z] + tar xz +[2024-04-12T03:46:45.273Z] + + grep esgf-compute-api +[2024-04-12T03:46:45.273Z] ls +[2024-04-12T03:46:45.273Z] esgf-compute-api-devel +[2024-04-12T03:46:45.273Z] + set +x +[2024-04-12T03:46:45.273Z] + echo master +[2024-04-12T03:46:45.273Z] + sed s@/@-@g +[2024-04-12T03:46:45.273Z] + PAVICS_SDI_BRANCH=master +[2024-04-12T03:46:45.273Z] + echo Ouranosinc/pavics-sdi +[2024-04-12T03:46:45.273Z] + sed s@^.*/@@g +[2024-04-12T03:46:45.273Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-12T03:46:45.273Z] + echo master +[2024-04-12T03:46:45.273Z] + sed s@/@-@g +[2024-04-12T03:46:45.273Z] + FINCH_BRANCH=master +[2024-04-12T03:46:45.273Z] + echo bird-house/finch +[2024-04-12T03:46:45.273Z] + sed s@^.*/@@g +[2024-04-12T03:46:45.273Z] + FINCH_REPO_NAME=finch +[2024-04-12T03:46:45.273Z] + sed s@/@-@g +[2024-04-12T03:46:45.273Z] + echo master +[2024-04-12T03:46:45.273Z] + PAVICS_LANDING_BRANCH=master +[2024-04-12T03:46:45.273Z] + echo Ouranosinc/PAVICS-landing +[2024-04-12T03:46:45.273Z] + sed s@^.*/@@g +[2024-04-12T03:46:45.536Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-12T03:46:45.536Z] + echo main +[2024-04-12T03:46:45.536Z] + sed s@/@-@g +[2024-04-12T03:46:45.536Z] + RAVEN_BRANCH=main +[2024-04-12T03:46:45.536Z] + sed s@^.*/@@g +[2024-04-12T03:46:45.536Z] + echo Ouranosinc/raven +[2024-04-12T03:46:45.536Z] + RAVEN_REPO_NAME=raven +[2024-04-12T03:46:45.536Z] + echo master +[2024-04-12T03:46:45.536Z] + sed s@/@-@g +[2024-04-12T03:46:45.536Z] + RAVENPY_BRANCH=master +[2024-04-12T03:46:45.536Z] + echo CSHS-CWRA/RavenPy +[2024-04-12T03:46:45.536Z] + sed s@^.*/@@g +[2024-04-12T03:46:45.536Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-12T03:46:45.536Z] + echo devel +[2024-04-12T03:46:45.536Z] + sed s@/@-@g +[2024-04-12T03:46:45.536Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-12T03:46:45.536Z] + echo ESGF/esgf-compute-api +[2024-04-12T03:46:45.536Z] + sed s@^.*/@@g +[2024-04-12T03:46:45.536Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:46:45.536Z] + echo pavics-sdi-master +[2024-04-12T03:46:45.536Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:46:45.536Z] + echo finch-master +[2024-04-12T03:46:45.536Z] + FINCH_DIR=finch-master +[2024-04-12T03:46:45.536Z] + echo PAVICS-landing-master +[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:46:45.536Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-04-12T03:46:45.536Z] + echo raven-main +[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:46:45.536Z] + RAVEN_DIR=raven-main +[2024-04-12T03:46:45.536Z] + echo RavenPy-master +[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:46:45.536Z] + RAVENPY_DIR=RavenPy-master +[2024-04-12T03:46:45.536Z] + echo esgf-compute-api-devel +[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:46:45.536Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-12T03:46:45.536Z] + echo true +[2024-04-12T03:46:45.536Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.536Z] + VERIFY_SSL=true +[2024-04-12T03:46:45.536Z] + [ xtrue = xfalse ] +[2024-04-12T03:46:45.536Z] + rm -v finch-master/setup.cfg +[2024-04-12T03:46:45.536Z] removed 'finch-master/setup.cfg' +[2024-04-12T03:46:45.536Z] + rm -v raven-main/setup.cfg +[2024-04-12T03:46:45.536Z] removed 'raven-main/setup.cfg' +[2024-04-12T03:46:45.536Z] + rm -v raven-main/pyproject.toml +[2024-04-12T03:46:45.536Z] removed 'raven-main/pyproject.toml' +[2024-04-12T03:46:45.536Z] + rm -v RavenPy-master/setup.cfg +[2024-04-12T03:46:45.537Z] removed 'RavenPy-master/setup.cfg' +[2024-04-12T03:46:45.537Z] + rm -v RavenPy-master/tox.ini +[2024-04-12T03:46:45.537Z] removed 'RavenPy-master/tox.ini' +[2024-04-12T03:46:45.537Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-12T03:46:45.537Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-12T03:46:45.537Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-12T03:46:45.537Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-12T03:46:45.537Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-12T03:46:45.537Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-12T03:46:45.537Z] + echo false +[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.537Z] + TEST_MAGPIE_AUTH=false +[2024-04-12T03:46:45.537Z] + echo false +[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.537Z] + TEST_PAVICS_SDI_REPO=false +[2024-04-12T03:46:45.537Z] + echo false +[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.537Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-12T03:46:45.537Z] + echo false +[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.537Z] + TEST_FINCH_REPO=false +[2024-04-12T03:46:45.537Z] + echo false +[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.537Z] + TEST_PAVICS_LANDING_REPO=false +[2024-04-12T03:46:45.537Z] + echo true +[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.537Z] + TEST_RAVEN_REPO=true +[2024-04-12T03:46:45.537Z] + echo true +[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.537Z] + TEST_RAVENPY_REPO=true +[2024-04-12T03:46:45.537Z] + echo false +[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.537Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-12T03:46:45.537Z] + echo false +[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] +[2024-04-12T03:46:45.537Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-04-12T03:46:45.537Z] + NOTEBOOKS_TO_TEST= +[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] +[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] +[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] +[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] +[2024-04-12T03:46:45.537Z] + [ xtrue = xtrue ] +[2024-04-12T03:46:45.537Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-04-12T03:46:45.537Z] + [ xtrue = xtrue ] +[2024-04-12T03:46:45.537Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-04-12T03:46:45.537Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] +[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] +[2024-04-12T03:46:45.537Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-12T03:46:45.537Z] + [ -n ] +[2024-04-12T03:46:45.537Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-12T03:46:45.537Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-12T03:46:45.537Z] Will run notebooks against pavics.ouranos.ca +[2024-04-12T03:46:45.537Z] + [ -z ] +[2024-04-12T03:46:45.538Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-12T03:46:45.538Z] + git diff +[2024-04-12T03:46:45.538Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-12T03:46:45.538Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-04-12T03:46:48.075Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-12T03:46:48.075Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-12T03:46:48.075Z] ============================= test session starts ============================== +[2024-04-12T03:46:48.075Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-04-12T03:46:48.075Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-04-12T03:46:48.075Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-12T03:46:48.075Z] collected 242 items +[2024-04-12T03:46:48.075Z] +[2024-04-12T03:46:58.371Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-04-12T03:47:00.917Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-04-12T03:47:12.508Z] ...... [ 6%] +[2024-04-12T03:47:14.408Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] +[2024-04-12T03:47:14.408Z] [ 9%] +[2024-04-12T03:47:16.823Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-04-12T03:47:24.904Z] .... [ 12%] +[2024-04-12T03:47:31.450Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-04-12T03:47:39.192Z] ....F.FF..F.. [ 18%] +[2024-04-12T03:48:09.294Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] +[2024-04-12T03:49:22.532Z] .. [ 22%] +[2024-04-12T03:49:24.054Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] +[2024-04-12T03:49:32.966Z] ..FFFFFFFF....... [ 30%] +[2024-04-12T03:49:40.972Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] +[2024-04-12T03:49:49.987Z] ........... [ 36%] +[2024-04-12T03:49:59.478Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] +[2024-04-12T03:50:04.752Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-04-12T03:50:09.818Z] ..... [ 41%] +[2024-04-12T03:50:11.197Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-04-12T03:54:21.244Z] ................. [ 48%] +[2024-04-12T03:54:27.820Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-04-12T03:54:36.205Z] .... [ 50%] +[2024-04-12T03:56:00.571Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] +[2024-04-12T03:56:06.093Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] +[2024-04-12T03:56:41.329Z] ...... [ 57%] +[2024-04-12T03:56:51.385Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] +[2024-04-12T03:57:02.009Z] ....... [ 60%] +[2024-04-12T03:57:11.470Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] +[2024-04-12T03:57:32.907Z] .... [ 64%] +[2024-04-12T03:57:43.124Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-04-12T03:58:08.822Z] ....... [ 67%] +[2024-04-12T03:58:12.282Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-04-12T03:58:39.050Z] ....... [ 70%] +[2024-04-12T03:58:42.614Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] +[2024-04-12T03:58:54.522Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] +[2024-04-12T03:59:02.081Z] .... [ 74%] +[2024-04-12T03:59:49.828Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] +[2024-04-12T04:00:13.981Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] +[2024-04-12T04:00:14.913Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-04-12T04:00:29.741Z] ............. [ 84%] +[2024-04-12T04:00:48.546Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] +[2024-04-12T04:00:56.803Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] +[2024-04-12T04:01:09.072Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-04-12T04:02:16.206Z] .........FFFFFFFFFFF [100%] +[2024-04-12T04:02:16.206Z] +[2024-04-12T04:02:16.206Z] =================================== FAILURES =================================== +[2024-04-12T04:02:16.206Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ +[2024-04-12T04:02:16.206Z] Notebook cell execution failed +[2024-04-12T04:02:16.206Z] Cell 5: Cell execution caused an exception +[2024-04-12T04:02:16.206Z] +[2024-04-12T04:02:16.206Z] Input: +[2024-04-12T04:02:16.206Z] features, statistics, raster = stats_resp.get(asobj=True) +[2024-04-12T04:02:16.206Z] grid = raster[0] +[2024-04-12T04:02:16.206Z] grid.plot() +[2024-04-12T04:02:16.206Z] +[2024-04-12T04:02:16.206Z] Traceback: +[2024-04-12T04:02:16.206Z] +[2024-04-12T04:02:16.206Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.206Z] ValueError Traceback (most recent call last) +[2024-04-12T04:02:16.206Z] Cell In[1], line 3 +[2024-04-12T04:02:16.206Z]  1 features, statistics, raster = stats_resp.get(asobj=True) +[2024-04-12T04:02:16.206Z]  2 grid = raster[0] +[2024-04-12T04:02:16.206Z] ----> 3 grid.plot() +[2024-04-12T04:02:16.206Z] +[2024-04-12T04:02:16.207Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) +[2024-04-12T04:02:16.207Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: +[2024-04-12T04:02:16.207Z] --> 942 raise ValueError( +[2024-04-12T04:02:16.207Z]  943 "Dataset.plot cannot be called directly. Use " +[2024-04-12T04:02:16.207Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" +[2024-04-12T04:02:16.207Z]  945 ) +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ +[2024-04-12T04:02:16.207Z] Notebook cell execution failed +[2024-04-12T04:02:16.207Z] Cell 7: Cell execution caused an exception +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] Input: +[2024-04-12T04:02:16.207Z] unique, counts = np.unique(grid, return_counts=True) +[2024-04-12T04:02:16.207Z] print("The land-use categories available are: " + str(unique)) +[2024-04-12T04:02:16.207Z] print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] # Pixels values at '127' are NaN and can be ignored. +[2024-04-12T04:02:16.207Z] from matplotlib.colors import Normalize +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] norm = Normalize() +[2024-04-12T04:02:16.207Z] norm.autoscale(unique[:-1]) +[2024-04-12T04:02:16.207Z] cm = mpl.colormaps["tab20"] +[2024-04-12T04:02:16.207Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] # plt.bar(unique[:-1], counts[:-1]) +[2024-04-12T04:02:16.207Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) +[2024-04-12T04:02:16.207Z] plt.xlabel("Land-use categories") +[2024-04-12T04:02:16.207Z] plt.ylabel("Number of pixels") +[2024-04-12T04:02:16.207Z] plt.show() +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") +[2024-04-12T04:02:16.207Z] grid.name = "Land-use categories" +[2024-04-12T04:02:16.207Z] plt.show() +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] Traceback: +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.207Z] TypeError Traceback (most recent call last) +[2024-04-12T04:02:16.207Z] /tmp/ipykernel_379/750628277.py in ?() +[2024-04-12T04:02:16.207Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) +[2024-04-12T04:02:16.207Z]  2 print("The land-use categories available are: " + str(unique)) +[2024-04-12T04:02:16.207Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-04-12T04:02:16.207Z]  4  +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] <__array_function__ internals> in ?(*args, **kwargs) +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) +[2024-04-12T04:02:16.207Z]  268 >>> np.repeat(values, counts) +[2024-04-12T04:02:16.207Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved +[2024-04-12T04:02:16.207Z]  270  +[2024-04-12T04:02:16.207Z]  271 """ +[2024-04-12T04:02:16.207Z] --> 272 ar = np.asanyarray(ar) +[2024-04-12T04:02:16.207Z]  273 if axis is None: +[2024-04-12T04:02:16.207Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, +[2024-04-12T04:02:16.207Z]  275 equal_nan=equal_nan) +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) +[2024-04-12T04:02:16.207Z]  1472 def __array__(self, dtype=None): +[2024-04-12T04:02:16.207Z] -> 1473 raise TypeError( +[2024-04-12T04:02:16.207Z]  1474 "cannot directly convert an xarray.Dataset into a " +[2024-04-12T04:02:16.207Z]  1475 "numpy array. Instead, create an xarray.DataArray " +[2024-04-12T04:02:16.207Z]  1476 "first, either with indexing on the Dataset or by " +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ +[2024-04-12T04:02:16.207Z] Notebook cell execution failed +[2024-04-12T04:02:16.207Z] Cell 8: Cell execution caused an exception +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] Input: +[2024-04-12T04:02:16.207Z] import cartopy.crs as ccrs +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] # Set a CRS transformation: +[2024-04-12T04:02:16.207Z] crs = ccrs.LambertConformal( +[2024-04-12T04:02:16.207Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-12T04:02:16.207Z] ) +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] ax = plt.subplot(projection=crs) +[2024-04-12T04:02:16.207Z] grid.name = "Land-use categories" +[2024-04-12T04:02:16.207Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-04-12T04:02:16.207Z] plt.show() +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] Traceback: +[2024-04-12T04:02:16.207Z] +[2024-04-12T04:02:16.207Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.207Z] AttributeError Traceback (most recent call last) +[2024-04-12T04:02:16.207Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-12T04:02:16.208Z]  304 try: +[2024-04-12T04:02:16.208Z] --> 305 object.__setattr__(self, name, value) +[2024-04-12T04:02:16.208Z]  306 except AttributeError as e: +[2024-04-12T04:02:16.208Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-04-12T04:02:16.208Z]  308 # DataArray.dims.setter +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] The above exception was the direct cause of the following exception: +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] AttributeError Traceback (most recent call last) +[2024-04-12T04:02:16.208Z] Cell In[1], line 9 +[2024-04-12T04:02:16.208Z]  4 crs = ccrs.LambertConformal( +[2024-04-12T04:02:16.208Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-12T04:02:16.208Z]  6 ) +[2024-04-12T04:02:16.208Z]  8 ax = plt.subplot(projection=crs) +[2024-04-12T04:02:16.208Z] ----> 9 grid.name = "Land-use categories" +[2024-04-12T04:02:16.208Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-04-12T04:02:16.208Z]  11 plt.show() +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-12T04:02:16.208Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-04-12T04:02:16.208Z]  310 raise +[2024-04-12T04:02:16.208Z] --> 311 raise AttributeError( +[2024-04-12T04:02:16.208Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-04-12T04:02:16.208Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-04-12T04:02:16.208Z]  314 ) from e +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ +[2024-04-12T04:02:16.208Z] Notebook cell execution failed +[2024-04-12T04:02:16.208Z] Cell 11: Cell execution caused an exception +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] Input: +[2024-04-12T04:02:16.208Z] crs = ccrs.LambertConformal( +[2024-04-12T04:02:16.208Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-12T04:02:16.208Z] ) +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] dem.name = "Elevation" +[2024-04-12T04:02:16.208Z] dem.attrs["units"] = "m" +[2024-04-12T04:02:16.208Z] ax = plt.subplot(projection=crs) +[2024-04-12T04:02:16.208Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") +[2024-04-12T04:02:16.208Z] plt.show() +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] Traceback: +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.208Z] AttributeError Traceback (most recent call last) +[2024-04-12T04:02:16.208Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-12T04:02:16.208Z]  304 try: +[2024-04-12T04:02:16.208Z] --> 305 object.__setattr__(self, name, value) +[2024-04-12T04:02:16.208Z]  306 except AttributeError as e: +[2024-04-12T04:02:16.208Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-04-12T04:02:16.208Z]  308 # DataArray.dims.setter +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] The above exception was the direct cause of the following exception: +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.208Z] AttributeError Traceback (most recent call last) +[2024-04-12T04:02:16.208Z] Cell In[1], line 5 +[2024-04-12T04:02:16.208Z]  1 crs = ccrs.LambertConformal( +[2024-04-12T04:02:16.208Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-12T04:02:16.208Z]  3 ) +[2024-04-12T04:02:16.208Z] ----> 5 dem.name = "Elevation" +[2024-04-12T04:02:16.208Z]  6 dem.attrs["units"] = "m" +[2024-04-12T04:02:16.208Z]  7 ax = plt.subplot(projection=crs) +[2024-04-12T04:02:16.208Z] +[2024-04-12T04:02:16.209Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-12T04:02:16.209Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-04-12T04:02:16.209Z]  310 raise +[2024-04-12T04:02:16.209Z] --> 311 raise AttributeError( +[2024-04-12T04:02:16.209Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-04-12T04:02:16.209Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-04-12T04:02:16.209Z]  314 ) from e +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-04-12T04:02:16.209Z] Notebook cell execution failed +[2024-04-12T04:02:16.209Z] Cell 5: Cell execution caused an exception +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] Input: +[2024-04-12T04:02:16.209Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-04-12T04:02:16.209Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-04-12T04:02:16.209Z] from ravenpy import OutputReader +[2024-04-12T04:02:16.209Z] from ravenpy.ravenpy import run +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-04-12T04:02:16.209Z] run_name = run_name +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-04-12T04:02:16.209Z] # subfolder called "outputs" +[2024-04-12T04:02:16.209Z] configdir = workdir +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-04-12T04:02:16.209Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] # Get the outputs using the Output Reader object. +[2024-04-12T04:02:16.209Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] Traceback: +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.209Z] RavenError Traceback (most recent call last) +[2024-04-12T04:02:16.209Z] Cell In[1], line 14 +[2024-04-12T04:02:16.209Z]  11 configdir = workdir +[2024-04-12T04:02:16.209Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-04-12T04:02:16.209Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-04-12T04:02:16.209Z]  16 # Get the outputs using the Output Reader object. +[2024-04-12T04:02:16.209Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-04-12T04:02:16.209Z]  320 warn(msg, category=RavenWarning) +[2024-04-12T04:02:16.209Z]  322 if messages["ERROR"]: +[2024-04-12T04:02:16.209Z] --> 323 raise RavenError( +[2024-04-12T04:02:16.209Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-04-12T04:02:16.209Z]  325 ) +[2024-04-12T04:02:16.209Z]  327 if returncode != 0: +[2024-04-12T04:02:16.209Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] RavenError: Config directory: /tmp/NB4hhwhs6ze +[2024-04-12T04:02:16.209Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-04-12T04:02:16.209Z] Notebook cell execution failed +[2024-04-12T04:02:16.209Z] Cell 6: Cell execution caused an exception +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] Input: +[2024-04-12T04:02:16.209Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-04-12T04:02:16.209Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-04-12T04:02:16.209Z] from ravenpy import Emulator +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] # Prepare the emulator by writing files on disk +[2024-04-12T04:02:16.209Z] e = Emulator(config=m) +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] # Run the model and get the outputs. +[2024-04-12T04:02:16.209Z] outputs = e.run() +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.209Z] Traceback: +[2024-04-12T04:02:16.209Z] +[2024-04-12T04:02:16.210Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.210Z] RavenError Traceback (most recent call last) +[2024-04-12T04:02:16.210Z] Cell In[1], line 9 +[2024-04-12T04:02:16.210Z]  6 e = Emulator(config=m) +[2024-04-12T04:02:16.210Z]  8 # Run the model and get the outputs. +[2024-04-12T04:02:16.210Z] ----> 9 outputs = e.run() +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-04-12T04:02:16.210Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-04-12T04:02:16.210Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-04-12T04:02:16.210Z]  66 self.write_rv(overwrite=overwrite) +[2024-04-12T04:02:16.210Z] ---> 68 self._output_path = run( +[2024-04-12T04:02:16.210Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-04-12T04:02:16.210Z]  70 ) +[2024-04-12T04:02:16.210Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-04-12T04:02:16.210Z]  72 return self._output +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-04-12T04:02:16.210Z]  320 warn(msg, category=RavenWarning) +[2024-04-12T04:02:16.210Z]  322 if messages["ERROR"]: +[2024-04-12T04:02:16.210Z] --> 323 raise RavenError( +[2024-04-12T04:02:16.210Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-04-12T04:02:16.210Z]  325 ) +[2024-04-12T04:02:16.210Z]  327 if returncode != 0: +[2024-04-12T04:02:16.210Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] RavenError: Config directory: /tmp/tmpq2_lbhyl +[2024-04-12T04:02:16.210Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-04-12T04:02:16.210Z] Notebook cell execution failed +[2024-04-12T04:02:16.210Z] Cell 7: Cell execution caused an exception +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] Input: +[2024-04-12T04:02:16.210Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-04-12T04:02:16.210Z] outputs.files +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] Traceback: +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.210Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.210Z] Cell In[1], line 2 +[2024-04-12T04:02:16.210Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-04-12T04:02:16.210Z] ----> 2 outputs.files +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] NameError: name 'outputs' is not defined +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-04-12T04:02:16.210Z] Notebook cell execution failed +[2024-04-12T04:02:16.210Z] Cell 8: Cell execution caused an exception +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] Input: +[2024-04-12T04:02:16.210Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-04-12T04:02:16.210Z] print("----------------HYDROGRAPH----------------") +[2024-04-12T04:02:16.210Z] display(outputs.hydrograph) +[2024-04-12T04:02:16.210Z] print("") +[2024-04-12T04:02:16.210Z] print("-----------------STORAGE------------------") +[2024-04-12T04:02:16.210Z] display(outputs.storage) +[2024-04-12T04:02:16.210Z] print("") +[2024-04-12T04:02:16.210Z] print("-----------------SOLUTION-----------------") +[2024-04-12T04:02:16.210Z] display(outputs.solution) +[2024-04-12T04:02:16.210Z] print("") +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] Traceback: +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.210Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.210Z] Cell In[1], line 3 +[2024-04-12T04:02:16.210Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-04-12T04:02:16.210Z]  2 print("----------------HYDROGRAPH----------------") +[2024-04-12T04:02:16.210Z] ----> 3 display(outputs.hydrograph) +[2024-04-12T04:02:16.210Z]  4 print("") +[2024-04-12T04:02:16.210Z]  5 print("-----------------STORAGE------------------") +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] NameError: name 'outputs' is not defined +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-04-12T04:02:16.210Z] Notebook cell execution failed +[2024-04-12T04:02:16.210Z] Cell 9: Cell execution caused an exception +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] Input: +[2024-04-12T04:02:16.210Z] # Import the graphing utility built to handle Raven model outputs +[2024-04-12T04:02:16.210Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-04-12T04:02:16.210Z] +[2024-04-12T04:02:16.210Z] hydrograph_objects = outputs.hydrograph +[2024-04-12T04:02:16.211Z] hydrographs(hydrograph_objects) +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] Traceback: +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.211Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.211Z] Cell In[1], line 4 +[2024-04-12T04:02:16.211Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-04-12T04:02:16.211Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-04-12T04:02:16.211Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-04-12T04:02:16.211Z]  5 hydrographs(hydrograph_objects) +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] NameError: name 'outputs' is not defined +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-04-12T04:02:16.211Z] Notebook cell execution failed +[2024-04-12T04:02:16.211Z] Cell 10: Cell execution caused an exception +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] Input: +[2024-04-12T04:02:16.211Z] outputs.hydrograph.q_sim.plot() +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] Traceback: +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.211Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.211Z] Cell In[1], line 1 +[2024-04-12T04:02:16.211Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] NameError: name 'outputs' is not defined +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-04-12T04:02:16.211Z] Notebook cell execution failed +[2024-04-12T04:02:16.211Z] Cell 11: Cell execution caused an exception +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] Input: +[2024-04-12T04:02:16.211Z] print(list(outputs.storage.keys())) +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] Traceback: +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.211Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.211Z] Cell In[1], line 1 +[2024-04-12T04:02:16.211Z] ----> 1 print(list(outputs.storage.keys())) +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] NameError: name 'outputs' is not defined +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-04-12T04:02:16.211Z] Notebook cell execution failed +[2024-04-12T04:02:16.211Z] Cell 12: Cell execution caused an exception +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] Input: +[2024-04-12T04:02:16.211Z] # Plot the "Snow" variable +[2024-04-12T04:02:16.211Z] outputs.storage["Snow"].plot() +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] Traceback: +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.211Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.211Z] Cell In[1], line 2 +[2024-04-12T04:02:16.211Z]  1 # Plot the "Snow" variable +[2024-04-12T04:02:16.211Z] ----> 2 outputs.storage["Snow"].plot() +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] NameError: name 'outputs' is not defined +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ +[2024-04-12T04:02:16.211Z] Notebook cell execution failed +[2024-04-12T04:02:16.211Z] Cell 0: Cell execution caused an exception +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] Input: +[2024-04-12T04:02:16.211Z] import os +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] from hsclient import HydroShare, Token +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] # Authentication method using username and password +[2024-04-12T04:02:16.211Z] """ +[2024-04-12T04:02:16.211Z] username = 'XXXXX' +[2024-04-12T04:02:16.211Z] password = 'XXXXX' +[2024-04-12T04:02:16.211Z] hs = HydroShare(username=username, password=password) +[2024-04-12T04:02:16.211Z] """ +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-04-12T04:02:16.211Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] token = Token(access_token=access_token, token_type="bearer") +[2024-04-12T04:02:16.211Z] hs = HydroShare(client_id=client_id, token=token) +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] Traceback: +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.211Z] ValidationError Traceback (most recent call last) +[2024-04-12T04:02:16.211Z] Cell In[1], line 15 +[2024-04-12T04:02:16.211Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-04-12T04:02:16.211Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-04-12T04:02:16.211Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-04-12T04:02:16.211Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-04-12T04:02:16.211Z] +[2024-04-12T04:02:16.211Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) +[2024-04-12T04:02:16.211Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-04-12T04:02:16.211Z]  170 __tracebackhide__ = True +[2024-04-12T04:02:16.212Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] ValidationError: 4 validation errors for Token +[2024-04-12T04:02:16.212Z] scope +[2024-04-12T04:02:16.212Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-04-12T04:02:16.212Z]  2 for r in results: +[2024-04-12T04:02:16.212Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] NameError: name 'hs' is not defined +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ +[2024-04-12T04:02:16.212Z] Notebook cell execution failed +[2024-04-12T04:02:16.212Z] Cell 2: Cell execution caused an exception +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] Input: +[2024-04-12T04:02:16.212Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-04-12T04:02:16.212Z] res.files() +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] Traceback: +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.212Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.212Z] Cell In[1], line 1 +[2024-04-12T04:02:16.212Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-04-12T04:02:16.212Z]  2 res.files() +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] NameError: name 'hs' is not defined +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ +[2024-04-12T04:02:16.212Z] Notebook cell execution failed +[2024-04-12T04:02:16.212Z] Cell 3: Cell execution caused an exception +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] Input: +[2024-04-12T04:02:16.212Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] Traceback: +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.212Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.212Z] Cell In[1], line 1 +[2024-04-12T04:02:16.212Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] NameError: name 'res' is not defined +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ +[2024-04-12T04:02:16.212Z] Notebook cell execution failed +[2024-04-12T04:02:16.212Z] Cell 10: Cell execution caused an exception +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] Input: +[2024-04-12T04:02:16.212Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. +[2024-04-12T04:02:16.212Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" +[2024-04-12T04:02:16.212Z] cat = intake.open_catalog(catalog_name) +[2024-04-12T04:02:16.212Z] ds = cat.era5_reanalysis_single_levels.to_dask() +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] """ +[2024-04-12T04:02:16.212Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, +[2024-04-12T04:02:16.212Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total +[2024-04-12T04:02:16.212Z] precipitation. +[2024-04-12T04:02:16.212Z] """ +[2024-04-12T04:02:16.212Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, +[2024-04-12T04:02:16.212Z] # such as units and variable names. +[2024-04-12T04:02:16.212Z] with xr.set_options(keep_attrs=True): +[2024-04-12T04:02:16.212Z] ERA5_reference = subset.subset_shape( +[2024-04-12T04:02:16.212Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour +[2024-04-12T04:02:16.212Z] ) +[2024-04-12T04:02:16.212Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) +[2024-04-12T04:02:16.212Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) +[2024-04-12T04:02:16.212Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] # Change the units +[2024-04-12T04:02:16.212Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C +[2024-04-12T04:02:16.212Z] ERA5_tmin.attrs["units"] = "degC" +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C +[2024-04-12T04:02:16.212Z] ERA5_tmax.attrs["units"] = "degC" +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] ERA5_pr = ERA5_pr * 1000 # m to mm +[2024-04-12T04:02:16.212Z] ERA5_pr.attrs["units"] = "mm" +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] # Average the variables spatially +[2024-04-12T04:02:16.212Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-04-12T04:02:16.212Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-04-12T04:02:16.212Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.212Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-04-12T04:02:16.212Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-04-12T04:02:16.212Z] +[2024-04-12T04:02:16.213Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-04-12T04:02:16.213Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-04-12T04:02:16.213Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-04-12T04:02:16.213Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-04-12T04:02:16.213Z] +[2024-04-12T04:02:16.213Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the +[2024-04-12T04:02:16.213Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. +[2024-04-12T04:02:16.213Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) +[2024-04-12T04:02:16.213Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") +[2024-04-12T04:02:16.213Z] +[2024-04-12T04:02:16.213Z] Traceback: +[2024-04-12T04:02:16.213Z] +[2024-04-12T04:02:16.213Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.213Z] KeyError Traceback (most recent call last) +[2024-04-12T04:02:16.213Z] Cell In[1], line 37 +[2024-04-12T04:02:16.213Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-04-12T04:02:16.213Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-04-12T04:02:16.213Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 +[2024-04-12T04:02:16.213Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-04-12T04:02:16.213Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-04-12T04:02:16.213Z] +[2024-04-12T04:02:16.213Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-04-12T04:02:16.213Z]  851 self.coords[key] = value +[2024-04-12T04:02:16.213Z]  852 else: +[2024-04-12T04:02:16.213Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-04-12T04:02:16.213Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-04-12T04:02:16.213Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-04-12T04:02:16.213Z] --> 856 obj = self[key] +[2024-04-12T04:02:16.213Z]  857 if isinstance(value, DataArray): +[2024-04-12T04:02:16.213Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-04-12T04:02:16.213Z] +[2024-04-12T04:02:16.213Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-04-12T04:02:16.213Z]  844 return self._getitem_coord(key) +[2024-04-12T04:02:16.213Z]  845 else: +[2024-04-12T04:02:16.213Z]  846 # xarray-style array indexing +[2024-04-12T04:02:16.213Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-04-12T04:02:16.213Z] +[2024-04-12T04:02:16.213Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-04-12T04:02:16.213Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-04-12T04:02:16.213Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-04-12T04:02:16.213Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-04-12T04:02:16.213Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-04-12T04:02:16.213Z]  1447  ) +[2024-04-12T04:02:16.213Z]  1448 return self._from_temp_dataset(ds) +[2024-04-12T04:02:16.213Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-04-12T04:02:16.213Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-04-12T04:02:16.213Z] +[2024-04-12T04:02:16.213Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-04-12T04:02:16.213Z]  2926 var_indexers = { +[2024-04-12T04:02:16.213Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-04-12T04:02:16.213Z]  2928 } +[2024-04-12T04:02:16.213Z]  2929 if var_indexers: +[2024-04-12T04:02:16.213Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-04-12T04:02:16.213Z]  2931 # drop scalar coordinates +[2024-04-12T04:02:16.213Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-04-12T04:02:16.213Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-04-12T04:02:16.213Z] +[2024-04-12T04:02:16.214Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-04-12T04:02:16.214Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-04-12T04:02:16.214Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-04-12T04:02:16.214Z] -> 1368 return self[key] +[2024-04-12T04:02:16.214Z] +[2024-04-12T04:02:16.214Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-04-12T04:02:16.214Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-04-12T04:02:16.214Z]  879  """Return a new Variable object whose contents are consistent with +[2024-04-12T04:02:16.214Z]  880  getting the provided key from the underlying data. +[2024-04-12T04:02:16.214Z]  881 +[2024-04-12T04:02:16.214Z]  (...) +[2024-04-12T04:02:16.214Z]  889  array `x.values` directly. +[2024-04-12T04:02:16.214Z]  890  """ +[2024-04-12T04:02:16.214Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-04-12T04:02:16.214Z]  892 data = as_indexable(self._data)[indexer] +[2024-04-12T04:02:16.214Z]  893 if new_order: +[2024-04-12T04:02:16.214Z] +[2024-04-12T04:02:16.214Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-04-12T04:02:16.214Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-04-12T04:02:16.214Z]  722 return self._broadcast_indexes_basic(key) +[2024-04-12T04:02:16.214Z] --> 724 self._validate_indexers(key) +[2024-04-12T04:02:16.214Z]  725 # Detect it can be mapped as an outer indexer +[2024-04-12T04:02:16.214Z]  726 # If all key is unlabeled, or +[2024-04-12T04:02:16.214Z]  727 # key can be mapped as an OuterIndexer. +[2024-04-12T04:02:16.214Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-04-12T04:02:16.214Z] +[2024-04-12T04:02:16.214Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-04-12T04:02:16.214Z]  771 raise IndexError( +[2024-04-12T04:02:16.214Z]  772 "{}-dimensional boolean indexing is " +[2024-04-12T04:02:16.214Z]  773 "not supported. ".format(k.ndim) +[2024-04-12T04:02:16.214Z]  774 ) +[2024-04-12T04:02:16.214Z]  775 if is_duck_dask_array(k.data): +[2024-04-12T04:02:16.214Z] --> 776 raise KeyError( +[2024-04-12T04:02:16.214Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-04-12T04:02:16.214Z]  778 "This will result in a dask array of unknown shape. " +[2024-04-12T04:02:16.214Z]  779 "Such arrays are unsupported by Xarray." +[2024-04-12T04:02:16.214Z]  780 "Please compute the indexer first using .compute()" +[2024-04-12T04:02:16.214Z]  781 ) +[2024-04-12T04:02:16.214Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-04-12T04:02:16.214Z]  783 raise IndexError( +[2024-04-12T04:02:16.214Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-04-12T04:02:16.214Z]  785 "same dimension to the indexed array. Indexer is " +[2024-04-12T04:02:16.214Z]  (...) +[2024-04-12T04:02:16.214Z]  788 ) +[2024-04-12T04:02:16.214Z]  789 ) +[2024-04-12T04:02:16.214Z] +[2024-04-12T04:02:16.214Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-04-12T04:02:16.214Z] +[2024-04-12T04:02:16.214Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ +[2024-04-12T04:02:16.214Z] Notebook cell execution failed +[2024-04-12T04:02:16.214Z] Cell 11: Cell execution caused an exception +[2024-04-12T04:02:16.214Z] +[2024-04-12T04:02:16.214Z] Input: +[2024-04-12T04:02:16.214Z] # Climate model to use +[2024-04-12T04:02:16.214Z] climate_model = "MIROC6" +[2024-04-12T04:02:16.214Z] +[2024-04-12T04:02:16.214Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. +[2024-04-12T04:02:16.214Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") +[2024-04-12T04:02:16.214Z] col = intake.open_esm_datastore( +[2024-04-12T04:02:16.214Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" +[2024-04-12T04:02:16.214Z] ) +[2024-04-12T04:02:16.214Z] +[2024-04-12T04:02:16.214Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. +[2024-04-12T04:02:16.214Z] with xr.set_options(keep_attrs=True): +[2024-04-12T04:02:16.214Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. +[2024-04-12T04:02:16.214Z] out = {} +[2024-04-12T04:02:16.214Z] for exp in ["historical", "ssp585"]: +[2024-04-12T04:02:16.214Z] if exp == "historical": +[2024-04-12T04:02:16.214Z] period_start = reference_start_day +[2024-04-12T04:02:16.214Z] period_end = reference_end_day +[2024-04-12T04:02:16.214Z] else: +[2024-04-12T04:02:16.214Z] period_start = future_start_day +[2024-04-12T04:02:16.214Z] period_end = future_end_day +[2024-04-12T04:02:16.214Z] +[2024-04-12T04:02:16.214Z] out[exp] = {} +[2024-04-12T04:02:16.214Z] for variable in ["tasmin", "tasmax", "pr"]: +[2024-04-12T04:02:16.215Z] print(exp, variable) +[2024-04-12T04:02:16.215Z] query = dict( +[2024-04-12T04:02:16.215Z] experiment_id=exp, +[2024-04-12T04:02:16.215Z] table_id="day", +[2024-04-12T04:02:16.215Z] variable_id=variable, +[2024-04-12T04:02:16.215Z] member_id="r1i1p1f1", +[2024-04-12T04:02:16.215Z] source_id=climate_model, +[2024-04-12T04:02:16.215Z] ) +[2024-04-12T04:02:16.215Z] col_subset = col.search(require_all_on=["source_id"], **query) +[2024-04-12T04:02:16.215Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) +[2024-04-12T04:02:16.215Z] +[2024-04-12T04:02:16.215Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. +[2024-04-12T04:02:16.215Z] if variable == "pr": +[2024-04-12T04:02:16.215Z] out[exp][variable] = average.average_shape( +[2024-04-12T04:02:16.215Z] xr.open_zarr(mapper, consolidated=True).sel( +[2024-04-12T04:02:16.215Z] time=slice(period_start, period_end) +[2024-04-12T04:02:16.215Z] )[variable], +[2024-04-12T04:02:16.215Z] basin_contour, +[2024-04-12T04:02:16.215Z] ).chunk(-1) +[2024-04-12T04:02:16.215Z] else: +[2024-04-12T04:02:16.215Z] out[exp][variable] = average.average_shape( +[2024-04-12T04:02:16.215Z] xr.open_zarr(mapper, consolidated=True) +[2024-04-12T04:02:16.215Z] .sel(time=slice(period_start, period_end)) +[2024-04-12T04:02:16.215Z] .reset_coords("height", drop=True)[variable], +[2024-04-12T04:02:16.215Z] basin_contour, +[2024-04-12T04:02:16.215Z] ).chunk(-1) +[2024-04-12T04:02:16.215Z] +[2024-04-12T04:02:16.215Z] # We can now extract the variables that we will need later: +[2024-04-12T04:02:16.215Z] historical_tasmax = out["historical"]["tasmax"] +[2024-04-12T04:02:16.215Z] historical_tasmin = out["historical"]["tasmin"] +[2024-04-12T04:02:16.215Z] historical_pr = out["historical"]["pr"] +[2024-04-12T04:02:16.215Z] future_tasmax = out["ssp585"]["tasmax"] +[2024-04-12T04:02:16.215Z] future_tasmin = out["ssp585"]["tasmin"] +[2024-04-12T04:02:16.215Z] future_pr = out["ssp585"]["pr"] +[2024-04-12T04:02:16.215Z] +[2024-04-12T04:02:16.215Z] Traceback: +[2024-04-12T04:02:16.215Z] +[2024-04-12T04:02:16.215Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.215Z] KeyError Traceback (most recent call last) +[2024-04-12T04:02:16.215Z] Cell In[1], line 44 +[2024-04-12T04:02:16.215Z]  37 out[exp][variable] = average.average_shape( +[2024-04-12T04:02:16.215Z]  38 xr.open_zarr(mapper, consolidated=True).sel( +[2024-04-12T04:02:16.215Z]  39 time=slice(period_start, period_end) +[2024-04-12T04:02:16.215Z]  40 )[variable], +[2024-04-12T04:02:16.215Z]  41 basin_contour, +[2024-04-12T04:02:16.215Z]  42 ).chunk(-1) +[2024-04-12T04:02:16.215Z]  43 else: +[2024-04-12T04:02:16.215Z] ---> 44 out[exp][variable] = average.average_shape( +[2024-04-12T04:02:16.215Z]  45  xr.open_zarr(mapper, consolidated=True) +[2024-04-12T04:02:16.215Z]  46  .sel(time=slice(period_start, period_end)) +[2024-04-12T04:02:16.215Z]  47  .reset_coords("height", drop=True)[variable], +[2024-04-12T04:02:16.215Z]  48  basin_contour, +[2024-04-12T04:02:16.215Z]  49  ).chunk(-1) +[2024-04-12T04:02:16.215Z]  51 # We can now extract the variables that we will need later: +[2024-04-12T04:02:16.215Z]  52 historical_tasmax = out["historical"]["tasmax"] +[2024-04-12T04:02:16.215Z] +[2024-04-12T04:02:16.215Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) +[2024-04-12T04:02:16.215Z]  105 ds_sub = ds_copy.isel(indexer) +[2024-04-12T04:02:16.215Z]  107 # Compute the weights +[2024-04-12T04:02:16.215Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) +[2024-04-12T04:02:16.215Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. +[2024-04-12T04:02:16.215Z]  111 nonnull = ( +[2024-04-12T04:02:16.215Z]  112 savger.weights.data.nnz +[2024-04-12T04:02:16.215Z]  113 if isinstance(savger.weights, xr.DataArray) +[2024-04-12T04:02:16.215Z]  114 else savger.weights.nnz +[2024-04-12T04:02:16.215Z]  115 ) +[2024-04-12T04:02:16.215Z] +[2024-04-12T04:02:16.215Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) +[2024-04-12T04:02:16.215Z]  1182 if isinstance(ds_in, xr.DataArray): +[2024-04-12T04:02:16.215Z]  1183 ds_in = ds_in._to_temp_dataset() +[2024-04-12T04:02:16.216Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) +[2024-04-12T04:02:16.216Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. +[2024-04-12T04:02:16.216Z]  1188 # Latitude and longitude coordinates are the polygon centroid. +[2024-04-12T04:02:16.216Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) +[2024-04-12T04:02:16.216Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) +[2024-04-12T04:02:16.216Z]  166 if need_bounds: +[2024-04-12T04:02:16.216Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) +[2024-04-12T04:02:16.216Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) +[2024-04-12T04:02:16.216Z]  169 add_corner(grid, lon_b.T, lat_b.T) +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) +[2024-04-12T04:02:16.216Z]  105 lat_bnds = ds.cf.get_bounds('latitude') +[2024-04-12T04:02:16.216Z]  107 # Convert from CF bounds to xESMF bounds. +[2024-04-12T04:02:16.216Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. +[2024-04-12T04:02:16.216Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) +[2024-04-12T04:02:16.216Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) +[2024-04-12T04:02:16.216Z]  111 return lon_b, lat_b +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) +[2024-04-12T04:02:16.216Z]  2400 filtered = [ +[2024-04-12T04:02:16.216Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs +[2024-04-12T04:02:16.216Z]  2402 ] +[2024-04-12T04:02:16.216Z]  2403 if len(filtered) > 1: +[2024-04-12T04:02:16.216Z] -> 2404 raise KeyError( +[2024-04-12T04:02:16.216Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " +[2024-04-12T04:02:16.216Z]  2406 ) +[2024-04-12T04:02:16.216Z]  2408 (crd_name,) = filtered +[2024-04-12T04:02:16.216Z]  2409 crd = variables[crd_name] +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon', 'lon_bounds'] " +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ +[2024-04-12T04:02:16.216Z] Notebook cell execution failed +[2024-04-12T04:02:16.216Z] Cell 12: Cell execution caused an exception +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] Input: +[2024-04-12T04:02:16.216Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-04-12T04:02:16.216Z] # and make sure everything is consistent. +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] # Let's start with precipitation: +[2024-04-12T04:02:16.216Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-04-12T04:02:16.216Z] historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-04-12T04:02:16.216Z] future_pr = xclim.core.units.rate2amount(future_pr) +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] # Now we can actually convert units in absolute terms. +[2024-04-12T04:02:16.216Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") +[2024-04-12T04:02:16.216Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] # Now let's do temperature: +[2024-04-12T04:02:16.216Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") +[2024-04-12T04:02:16.216Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") +[2024-04-12T04:02:16.216Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") +[2024-04-12T04:02:16.216Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] Traceback: +[2024-04-12T04:02:16.216Z] +[2024-04-12T04:02:16.216Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.216Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.216Z] Cell In[1], line 6 +[2024-04-12T04:02:16.216Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-04-12T04:02:16.216Z]  2 # and make sure everything is consistent. +[2024-04-12T04:02:16.216Z]  3 +[2024-04-12T04:02:16.216Z]  4 # Let's start with precipitation: +[2024-04-12T04:02:16.216Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-04-12T04:02:16.216Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-04-12T04:02:16.217Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) +[2024-04-12T04:02:16.217Z]  9 # Now we can actually convert units in absolute terms. +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] NameError: name 'historical_pr' is not defined +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ +[2024-04-12T04:02:16.217Z] Notebook cell execution failed +[2024-04-12T04:02:16.217Z] Cell 13: Cell execution caused an exception +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] Input: +[2024-04-12T04:02:16.217Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. +[2024-04-12T04:02:16.217Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-04-12T04:02:16.217Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-12T04:02:16.217Z] ref=ERA5_weather.pr, +[2024-04-12T04:02:16.217Z] hist=historical_pr, +[2024-04-12T04:02:16.217Z] nquantiles=50, +[2024-04-12T04:02:16.217Z] kind="+", +[2024-04-12T04:02:16.217Z] group=group_month_window, +[2024-04-12T04:02:16.217Z] ) +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Apply the correction factors on the reference period +[2024-04-12T04:02:16.217Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Apply the correction factors on the future period +[2024-04-12T04:02:16.217Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Ensure that the precipitation is non-negative, which can happen with some climate models +[2024-04-12T04:02:16.217Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) +[2024-04-12T04:02:16.217Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data +[2024-04-12T04:02:16.217Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-12T04:02:16.217Z] ref=ERA5_weather.tmax, +[2024-04-12T04:02:16.217Z] hist=historical_tasmax, +[2024-04-12T04:02:16.217Z] nquantiles=50, +[2024-04-12T04:02:16.217Z] kind="+", +[2024-04-12T04:02:16.217Z] group=group_month_window, +[2024-04-12T04:02:16.217Z] ) +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Apply the correction factors on the reference period +[2024-04-12T04:02:16.217Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Apply the correction factors on the future period +[2024-04-12T04:02:16.217Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data +[2024-04-12T04:02:16.217Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-12T04:02:16.217Z] ref=ERA5_weather.tmin, +[2024-04-12T04:02:16.217Z] hist=historical_tasmin, +[2024-04-12T04:02:16.217Z] nquantiles=50, +[2024-04-12T04:02:16.217Z] kind="+", +[2024-04-12T04:02:16.217Z] group=group_month_window, +[2024-04-12T04:02:16.217Z] ) +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Apply the correction factors on the reference period +[2024-04-12T04:02:16.217Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Apply the correction factors on the future period +[2024-04-12T04:02:16.217Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] Traceback: +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.217Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.217Z] Cell In[1], line 6 +[2024-04-12T04:02:16.217Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-04-12T04:02:16.217Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-04-12T04:02:16.217Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-12T04:02:16.217Z] ----> 6 ref=ERA5_weather.pr, +[2024-04-12T04:02:16.217Z]  7 hist=historical_pr, +[2024-04-12T04:02:16.217Z]  8 nquantiles=50, +[2024-04-12T04:02:16.217Z]  9 kind="+", +[2024-04-12T04:02:16.217Z]  10 group=group_month_window, +[2024-04-12T04:02:16.217Z]  11 ) +[2024-04-12T04:02:16.217Z]  13 # Apply the correction factors on the reference period +[2024-04-12T04:02:16.217Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] NameError: name 'ERA5_weather' is not defined +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ +[2024-04-12T04:02:16.217Z] Notebook cell execution failed +[2024-04-12T04:02:16.217Z] Cell 14: Cell execution caused an exception +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] Input: +[2024-04-12T04:02:16.217Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-04-12T04:02:16.217Z] ref_dataset = xr.merge( +[2024-04-12T04:02:16.217Z] [ +[2024-04-12T04:02:16.217Z] corrected_ref_precip.to_dataset(name="pr"), +[2024-04-12T04:02:16.217Z] corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-04-12T04:02:16.217Z] corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-04-12T04:02:16.217Z] ] +[2024-04-12T04:02:16.217Z] ) +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Write to temporary folder +[2024-04-12T04:02:16.217Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-04-12T04:02:16.217Z] ref_dataset.to_netcdf(fn_tmp_ref) +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Convert the future corrected data into netCDF file +[2024-04-12T04:02:16.217Z] fut_dataset = xr.merge( +[2024-04-12T04:02:16.217Z] [ +[2024-04-12T04:02:16.217Z] corrected_fut_precip.to_dataset(name="pr"), +[2024-04-12T04:02:16.217Z] corrected_fut_tasmax.to_dataset(name="tasmax"), +[2024-04-12T04:02:16.217Z] corrected_fut_tasmin.to_dataset(name="tasmin"), +[2024-04-12T04:02:16.217Z] ] +[2024-04-12T04:02:16.217Z] ) +[2024-04-12T04:02:16.217Z] # Write to temporary folder +[2024-04-12T04:02:16.217Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" +[2024-04-12T04:02:16.217Z] fut_dataset.to_netcdf(fn_tmp_fut) +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] # Write the data to disk to a temporary location for future use. +[2024-04-12T04:02:16.217Z] ref_dataset = xr.open_dataset(fn_tmp_ref) +[2024-04-12T04:02:16.217Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") +[2024-04-12T04:02:16.217Z] +[2024-04-12T04:02:16.217Z] fut_dataset = xr.open_dataset(fn_tmp_fut) +[2024-04-12T04:02:16.218Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] Traceback: +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.218Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.218Z] Cell In[1], line 4 +[2024-04-12T04:02:16.218Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-04-12T04:02:16.218Z]  2 ref_dataset = xr.merge( +[2024-04-12T04:02:16.218Z]  3 [ +[2024-04-12T04:02:16.218Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), +[2024-04-12T04:02:16.218Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-04-12T04:02:16.218Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-04-12T04:02:16.218Z]  7 ] +[2024-04-12T04:02:16.218Z]  8 ) +[2024-04-12T04:02:16.218Z]  10 # Write to temporary folder +[2024-04-12T04:02:16.218Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] NameError: name 'corrected_ref_precip' is not defined +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ +[2024-04-12T04:02:16.218Z] Notebook cell execution failed +[2024-04-12T04:02:16.218Z] Cell 15: Cell execution caused an exception +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] Input: +[2024-04-12T04:02:16.218Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-04-12T04:02:16.218Z] # populate the fields for the HRU. +[2024-04-12T04:02:16.218Z] hru = {} +[2024-04-12T04:02:16.218Z] hru = dict( +[2024-04-12T04:02:16.218Z] area=all_properties["area"], +[2024-04-12T04:02:16.218Z] elevation=all_properties["elevation"], +[2024-04-12T04:02:16.218Z] latitude=all_properties["latitude"], +[2024-04-12T04:02:16.218Z] longitude=all_properties["longitude"], +[2024-04-12T04:02:16.218Z] hru_type="land", +[2024-04-12T04:02:16.218Z] ) +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-04-12T04:02:16.218Z] # will simply execute the model which has been pre-configured to run on this period. +[2024-04-12T04:02:16.218Z] start_date = dt.datetime(1981, 1, 1) +[2024-04-12T04:02:16.218Z] end_date = dt.datetime(1985, 12, 31) +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. +[2024-04-12T04:02:16.218Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] # Alternative variable names as described in the tutorial. +[2024-04-12T04:02:16.218Z] alt_names = { +[2024-04-12T04:02:16.218Z] "TEMP_MIN": "tmin", +[2024-04-12T04:02:16.218Z] "TEMP_MAX": "tmax", +[2024-04-12T04:02:16.218Z] "PRECIP": "pr", +[2024-04-12T04:02:16.218Z] } +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here +[2024-04-12T04:02:16.218Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. +[2024-04-12T04:02:16.218Z] data_kwds = { +[2024-04-12T04:02:16.218Z] "ALL": { +[2024-04-12T04:02:16.218Z] "elevation": hru["elevation"], +[2024-04-12T04:02:16.218Z] "latitude": hru["latitude"], +[2024-04-12T04:02:16.218Z] "longitude": hru["longitude"], +[2024-04-12T04:02:16.218Z] } +[2024-04-12T04:02:16.218Z] } +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] # Give a name to the simulation +[2024-04-12T04:02:16.218Z] run_name = "Paper_example_simulation" +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] # Setup the gauge object that includes meteorological data from ERA5 +[2024-04-12T04:02:16.218Z] gauge = [ +[2024-04-12T04:02:16.218Z] rc.Gauge.from_nc( +[2024-04-12T04:02:16.218Z] tmp +[2024-04-12T04:02:16.218Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-04-12T04:02:16.218Z] data_type=data_type, # Note that this is the list of all the variables +[2024-04-12T04:02:16.218Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-04-12T04:02:16.218Z] data_kwds=data_kwds, +[2024-04-12T04:02:16.218Z] ) +[2024-04-12T04:02:16.218Z] ] +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] # Read the streamflow from the HYSETS catchment data for this basin +[2024-04-12T04:02:16.218Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, +[2024-04-12T04:02:16.218Z] # and the optimizer will read it directly to calibrate. +[2024-04-12T04:02:16.218Z] eval_metrics = ("NASH_SUTCLIFFE",) +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] # Build the model configuration according to user preferences and inputs +[2024-04-12T04:02:16.218Z] model_config = GR4JCN( +[2024-04-12T04:02:16.218Z] ObservationData=discharge_data, +[2024-04-12T04:02:16.218Z] Gauge=gauge, +[2024-04-12T04:02:16.218Z] HRUs=[hru], +[2024-04-12T04:02:16.218Z] StartDate=start_date, +[2024-04-12T04:02:16.218Z] EndDate=end_date, +[2024-04-12T04:02:16.218Z] RunName=run_name, +[2024-04-12T04:02:16.218Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. +[2024-04-12T04:02:16.218Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. +[2024-04-12T04:02:16.218Z] ) +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] Traceback: +[2024-04-12T04:02:16.218Z] +[2024-04-12T04:02:16.218Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.218Z] ValueError Traceback (most recent call last) +[2024-04-12T04:02:16.218Z] Cell In[1], line 42 +[2024-04-12T04:02:16.218Z]  38 run_name = "Paper_example_simulation" +[2024-04-12T04:02:16.218Z]  40 # Setup the gauge object that includes meteorological data from ERA5 +[2024-04-12T04:02:16.218Z]  41 gauge = [ +[2024-04-12T04:02:16.218Z] ---> 42 rc.Gauge.from_nc( +[2024-04-12T04:02:16.218Z]  43  tmp +[2024-04-12T04:02:16.218Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-04-12T04:02:16.218Z]  45  data_type=data_type, # Note that this is the list of all the variables +[2024-04-12T04:02:16.219Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-04-12T04:02:16.219Z]  47  data_kwds=data_kwds, +[2024-04-12T04:02:16.219Z]  48  ) +[2024-04-12T04:02:16.219Z]  49 ] +[2024-04-12T04:02:16.219Z]  51 # Read the streamflow from the HYSETS catchment data for this basin +[2024-04-12T04:02:16.219Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-12T04:02:16.219Z]  751 forcings.difference_update(data) +[2024-04-12T04:02:16.219Z]  753 if len(data) == 0: +[2024-04-12T04:02:16.219Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-12T04:02:16.219Z]  756 # Default Gauge name +[2024-04-12T04:02:16.219Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] ValueError: No data found in netCDF files. +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ +[2024-04-12T04:02:16.219Z] Notebook cell execution failed +[2024-04-12T04:02:16.219Z] Cell 16: Cell execution caused an exception +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] Input: +[2024-04-12T04:02:16.219Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, +[2024-04-12T04:02:16.219Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. +[2024-04-12T04:02:16.219Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) +[2024-04-12T04:02:16.219Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. +[2024-04-12T04:02:16.219Z] random_seed = 42 +[2024-04-12T04:02:16.219Z] np.random.seed(random_seed) +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] # Build the optimizer object +[2024-04-12T04:02:16.219Z] spot_setup = SpotSetup( +[2024-04-12T04:02:16.219Z] config=model_config, +[2024-04-12T04:02:16.219Z] low=low, +[2024-04-12T04:02:16.219Z] high=high, +[2024-04-12T04:02:16.219Z] ) +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-04-12T04:02:16.219Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-04-12T04:02:16.219Z] max_iterations = 200 +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer +[2024-04-12T04:02:16.219Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most +[2024-04-12T04:02:16.219Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation +[2024-04-12T04:02:16.219Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small +[2024-04-12T04:02:16.219Z] # evaluation budgets. For more details on DDS, see: +[2024-04-12T04:02:16.219Z] # +[2024-04-12T04:02:16.219Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water +[2024-04-12T04:02:16.219Z] # Resources Research, 43(1) +[2024-04-12T04:02:16.219Z] sampler = spotpy.algorithms.dds( +[2024-04-12T04:02:16.219Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False +[2024-04-12T04:02:16.219Z] ) +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and +[2024-04-12T04:02:16.219Z] # the best overall value from all trials is returned. +[2024-04-12T04:02:16.219Z] sampler.sample(max_iterations, trials=1) +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] # Get the model diagnostics +[2024-04-12T04:02:16.219Z] diag = spot_setup.diagnostics +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] # Get all the values of each iteration +[2024-04-12T04:02:16.219Z] results = sampler.getdata() +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] # Get the raw resutlts directly in an array +[2024-04-12T04:02:16.219Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( +[2024-04-12T04:02:16.219Z] results +[2024-04-12T04:02:16.219Z] ) # Want to get the MAX NSE (change for min for RMSE) +[2024-04-12T04:02:16.219Z] best_model_run = list( +[2024-04-12T04:02:16.219Z] results[bestindex][0] +[2024-04-12T04:02:16.219Z] ) # Get the parameter set returning the best NSE +[2024-04-12T04:02:16.219Z] optimized_parameters = best_model_run[ +[2024-04-12T04:02:16.219Z] 1:-1 +[2024-04-12T04:02:16.219Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] # Display the parameter set ready to use in a future run: +[2024-04-12T04:02:16.219Z] print(optimized_parameters) +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] Traceback: +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.219Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.219Z] Cell In[1], line 12 +[2024-04-12T04:02:16.219Z]  8 np.random.seed(random_seed) +[2024-04-12T04:02:16.219Z]  10 # Build the optimizer object +[2024-04-12T04:02:16.219Z]  11 spot_setup = SpotSetup( +[2024-04-12T04:02:16.219Z] ---> 12 config=model_config, +[2024-04-12T04:02:16.219Z]  13 low=low, +[2024-04-12T04:02:16.219Z]  14 high=high, +[2024-04-12T04:02:16.219Z]  15 ) +[2024-04-12T04:02:16.219Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-04-12T04:02:16.219Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-04-12T04:02:16.219Z]  19 max_iterations = 200 +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] NameError: name 'model_config' is not defined +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ +[2024-04-12T04:02:16.219Z] Notebook cell execution failed +[2024-04-12T04:02:16.219Z] Cell 17: Cell execution caused an exception +[2024-04-12T04:02:16.219Z] +[2024-04-12T04:02:16.219Z] Input: +[2024-04-12T04:02:16.220Z] # Copy the configuration of the previous model that we will modify for our validation: +[2024-04-12T04:02:16.220Z] model_validation = model_config.duplicate( +[2024-04-12T04:02:16.220Z] params=optimized_parameters, +[2024-04-12T04:02:16.220Z] StartDate=dt.datetime(1986, 1, 1), +[2024-04-12T04:02:16.220Z] EndDate=dt.datetime(1990, 12, 31), +[2024-04-12T04:02:16.220Z] SuppressOutput=False, +[2024-04-12T04:02:16.220Z] ) +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] sim_output = Emulator(config=model_validation).run() +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] # Get validation NSE (note we are counting the first year without warm-up) +[2024-04-12T04:02:16.220Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] # Plot the model output +[2024-04-12T04:02:16.220Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") +[2024-04-12T04:02:16.220Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-04-12T04:02:16.220Z] plt.legend() +[2024-04-12T04:02:16.220Z] plt.title("Validation period - NSE=" + str(NSE[0])) +[2024-04-12T04:02:16.220Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-12T04:02:16.220Z] plt.grid() +[2024-04-12T04:02:16.220Z] plt.show() +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] Traceback: +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.220Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.220Z] Cell In[1], line 2 +[2024-04-12T04:02:16.220Z]  1 # Copy the configuration of the previous model that we will modify for our validation: +[2024-04-12T04:02:16.220Z] ----> 2 model_validation = model_config.duplicate( +[2024-04-12T04:02:16.220Z]  3 params=optimized_parameters, +[2024-04-12T04:02:16.220Z]  4 StartDate=dt.datetime(1986, 1, 1), +[2024-04-12T04:02:16.220Z]  5 EndDate=dt.datetime(1990, 12, 31), +[2024-04-12T04:02:16.220Z]  6 SuppressOutput=False, +[2024-04-12T04:02:16.220Z]  7 ) +[2024-04-12T04:02:16.220Z]  9 sim_output = Emulator(config=model_validation).run() +[2024-04-12T04:02:16.220Z]  11 # Get validation NSE (note we are counting the first year without warm-up) +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] NameError: name 'model_config' is not defined +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ +[2024-04-12T04:02:16.220Z] Notebook cell execution failed +[2024-04-12T04:02:16.220Z] Cell 18: Cell execution caused an exception +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] Input: +[2024-04-12T04:02:16.220Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-04-12T04:02:16.220Z] gauge_ref = [ +[2024-04-12T04:02:16.220Z] rc.Gauge.from_nc( +[2024-04-12T04:02:16.220Z] tmp +[2024-04-12T04:02:16.220Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-12T04:02:16.220Z] data_type=data_type, +[2024-04-12T04:02:16.220Z] alt_names=alt_names, +[2024-04-12T04:02:16.220Z] data_kwds=data_kwds, +[2024-04-12T04:02:16.220Z] ) +[2024-04-12T04:02:16.220Z] ] +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-12T04:02:16.220Z] model_config_reference = model_validation.duplicate( +[2024-04-12T04:02:16.220Z] Gauge=gauge_ref, +[2024-04-12T04:02:16.220Z] StartDate=reference_start_day +[2024-04-12T04:02:16.220Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-04-12T04:02:16.220Z] EndDate=reference_end_day, +[2024-04-12T04:02:16.220Z] ) +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] # Run the model from the configuration and get the outputs. +[2024-04-12T04:02:16.220Z] ref_output = Emulator(config=model_config_reference).run() +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] # Plot the model output. Note that both simulations should have similar hydrological +[2024-04-12T04:02:16.220Z] # regime but day-to-day variability is not expected to match. +[2024-04-12T04:02:16.220Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") +[2024-04-12T04:02:16.220Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-04-12T04:02:16.220Z] plt.legend() +[2024-04-12T04:02:16.220Z] plt.title("Reference period") +[2024-04-12T04:02:16.220Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-12T04:02:16.220Z] plt.grid() +[2024-04-12T04:02:16.220Z] plt.show() +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] Traceback: +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.220Z] ValueError Traceback (most recent call last) +[2024-04-12T04:02:16.220Z] Cell In[1], line 3 +[2024-04-12T04:02:16.220Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-04-12T04:02:16.220Z]  2 gauge_ref = [ +[2024-04-12T04:02:16.220Z] ----> 3 rc.Gauge.from_nc( +[2024-04-12T04:02:16.220Z]  4  tmp +[2024-04-12T04:02:16.220Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-12T04:02:16.220Z]  6  data_type=data_type, +[2024-04-12T04:02:16.220Z]  7  alt_names=alt_names, +[2024-04-12T04:02:16.220Z]  8  data_kwds=data_kwds, +[2024-04-12T04:02:16.220Z]  9  ) +[2024-04-12T04:02:16.220Z]  10 ] +[2024-04-12T04:02:16.220Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-12T04:02:16.220Z]  13 model_config_reference = model_validation.duplicate( +[2024-04-12T04:02:16.220Z]  14 Gauge=gauge_ref, +[2024-04-12T04:02:16.220Z]  15 StartDate=reference_start_day +[2024-04-12T04:02:16.220Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-04-12T04:02:16.220Z]  17 EndDate=reference_end_day, +[2024-04-12T04:02:16.220Z]  18 ) +[2024-04-12T04:02:16.220Z] +[2024-04-12T04:02:16.220Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-12T04:02:16.221Z]  751 forcings.difference_update(data) +[2024-04-12T04:02:16.221Z]  753 if len(data) == 0: +[2024-04-12T04:02:16.221Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-12T04:02:16.221Z]  756 # Default Gauge name +[2024-04-12T04:02:16.221Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-12T04:02:16.221Z] +[2024-04-12T04:02:16.221Z] ValueError: No data found in netCDF files. +[2024-04-12T04:02:16.221Z] +[2024-04-12T04:02:16.221Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ +[2024-04-12T04:02:16.221Z] Notebook cell execution failed +[2024-04-12T04:02:16.221Z] Cell 19: Cell execution caused an exception +[2024-04-12T04:02:16.221Z] +[2024-04-12T04:02:16.221Z] Input: +[2024-04-12T04:02:16.221Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-04-12T04:02:16.221Z] gauge_fut = [ +[2024-04-12T04:02:16.221Z] rc.Gauge.from_nc( +[2024-04-12T04:02:16.221Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-12T04:02:16.221Z] data_type=data_type, +[2024-04-12T04:02:16.221Z] alt_names=alt_names, +[2024-04-12T04:02:16.221Z] data_kwds=data_kwds, +[2024-04-12T04:02:16.221Z] ) +[2024-04-12T04:02:16.221Z] ] +[2024-04-12T04:02:16.221Z] +[2024-04-12T04:02:16.221Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-12T04:02:16.221Z] model_config_future = model_validation.duplicate( +[2024-04-12T04:02:16.221Z] Gauge=gauge_fut, +[2024-04-12T04:02:16.221Z] StartDate=future_start_day + dt.timedelta(days=1), +[2024-04-12T04:02:16.221Z] EndDate=future_end_day, +[2024-04-12T04:02:16.221Z] ObservationData=None, # There are no observations for the future period. +[2024-04-12T04:02:16.221Z] ) +[2024-04-12T04:02:16.221Z] +[2024-04-12T04:02:16.221Z] # Run the model and get the outputs and hydrographs. +[2024-04-12T04:02:16.221Z] fut_output = Emulator(config=model_config_future).run() +[2024-04-12T04:02:16.221Z] +[2024-04-12T04:02:16.221Z] # Plot the model output +[2024-04-12T04:02:16.221Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") +[2024-04-12T04:02:16.221Z] plt.legend() +[2024-04-12T04:02:16.221Z] plt.title("Future period") +[2024-04-12T04:02:16.221Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-12T04:02:16.221Z] plt.grid() +[2024-04-12T04:02:16.221Z] plt.show() +[2024-04-12T04:02:16.221Z] +[2024-04-12T04:02:16.221Z] Traceback: +[2024-04-12T04:02:16.221Z] +[2024-04-12T04:02:16.221Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.221Z] ValueError Traceback (most recent call last) +[2024-04-12T04:02:16.221Z] Cell In[1], line 3 +[2024-04-12T04:02:16.221Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-04-12T04:02:16.221Z]  2 gauge_fut = [ +[2024-04-12T04:02:16.221Z] ----> 3 rc.Gauge.from_nc( +[2024-04-12T04:02:16.221Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-12T04:02:16.221Z]  5  data_type=data_type, +[2024-04-12T04:02:16.221Z]  6  alt_names=alt_names, +[2024-04-12T04:02:16.221Z]  7  data_kwds=data_kwds, +[2024-04-12T04:02:16.221Z]  8  ) +[2024-04-12T04:02:16.221Z]  9 ] +[2024-04-12T04:02:16.221Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-12T04:02:16.221Z]  12 model_config_future = model_validation.duplicate( +[2024-04-12T04:02:16.221Z]  13 Gauge=gauge_fut, +[2024-04-12T04:02:16.221Z]  14 StartDate=future_start_day + dt.timedelta(days=1), +[2024-04-12T04:02:16.221Z]  15 EndDate=future_end_day, +[2024-04-12T04:02:16.221Z]  16 ObservationData=None, # There are no observations for the future period. +[2024-04-12T04:02:16.221Z]  17 ) +[2024-04-12T04:02:16.221Z] +[2024-04-12T04:02:16.222Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-12T04:02:16.222Z]  751 forcings.difference_update(data) +[2024-04-12T04:02:16.222Z]  753 if len(data) == 0: +[2024-04-12T04:02:16.222Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-12T04:02:16.222Z]  756 # Default Gauge name +[2024-04-12T04:02:16.222Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-12T04:02:16.222Z] +[2024-04-12T04:02:16.222Z] ValueError: No data found in netCDF files. +[2024-04-12T04:02:16.222Z] +[2024-04-12T04:02:16.222Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ +[2024-04-12T04:02:16.222Z] Notebook cell execution failed +[2024-04-12T04:02:16.222Z] Cell 20: Cell execution caused an exception +[2024-04-12T04:02:16.222Z] +[2024-04-12T04:02:16.222Z] Input: +[2024-04-12T04:02:16.222Z] # Extract the mean annual hydrograph for each simulation. +[2024-04-12T04:02:16.222Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-12T04:02:16.222Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-12T04:02:16.222Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-12T04:02:16.222Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-12T04:02:16.222Z] +[2024-04-12T04:02:16.222Z] # Plot the model output +[2024-04-12T04:02:16.222Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") +[2024-04-12T04:02:16.222Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") +[2024-04-12T04:02:16.222Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") +[2024-04-12T04:02:16.222Z] future_flows.plot(color="red", label="Future", x="dayofyear") +[2024-04-12T04:02:16.222Z] plt.legend() +[2024-04-12T04:02:16.222Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-12T04:02:16.222Z] plt.xlabel("Day of year") +[2024-04-12T04:02:16.222Z] plt.xlim([0, 365]) +[2024-04-12T04:02:16.222Z] plt.title("Comparison of mean annual hydrographs") +[2024-04-12T04:02:16.222Z] plt.grid() +[2024-04-12T04:02:16.222Z] plt.show() +[2024-04-12T04:02:16.222Z] +[2024-04-12T04:02:16.222Z] Traceback: +[2024-04-12T04:02:16.222Z] +[2024-04-12T04:02:16.222Z] --------------------------------------------------------------------------- +[2024-04-12T04:02:16.222Z] NameError Traceback (most recent call last) +[2024-04-12T04:02:16.222Z] Cell In[1], line 2 +[2024-04-12T04:02:16.222Z]  1 # Extract the mean annual hydrograph for each simulation. +[2024-04-12T04:02:16.222Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-12T04:02:16.222Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-12T04:02:16.222Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-12T04:02:16.222Z] +[2024-04-12T04:02:16.222Z] NameError: name 'ref_output' is not defined +[2024-04-12T04:02:16.222Z] +[2024-04-12T04:02:16.222Z] =========================== short test summary info ============================ +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 +[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 +[2024-04-12T04:02:16.222Z] ================== 27 failed, 215 passed in 928.59s (0:15:28) ================== +[2024-04-12T04:02:16.479Z] + EXIT_CODE=1 +[2024-04-12T04:02:16.479Z] + tr [:upper:] [:lower:] +[2024-04-12T04:02:16.479Z] + echo true +[2024-04-12T04:02:16.479Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-04-12T04:02:16.479Z] + [ xtrue = xtrue ] +[2024-04-12T04:02:16.479Z] + mkdir -p buildout +[2024-04-12T04:02:16.479Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-04-12T04:02:16.479Z] + filename=Region_selection.ipynb +[2024-04-12T04:02:16.479Z] + echo Region_selection.ipynb +[2024-04-12T04:02:16.479Z] + sed s/.ipynb$// +[2024-04-12T04:02:16.479Z] + filename=Region_selection +[2024-04-12T04:02:16.479Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-04-12T04:02:16.479Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-04-12T04:02:18.396Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-04-12T04:02:30.639Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb +[2024-04-12T04:02:30.639Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-04-12T04:02:30.639Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-04-12T04:02:30.639Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-04-12T04:02:30.639Z] + sed s/.ipynb$// +[2024-04-12T04:02:30.639Z] + filename=Subset_climate_data_over_watershed +[2024-04-12T04:02:30.639Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-04-12T04:02:30.639Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-04-12T04:02:30.898Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-04-12T04:02:49.001Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-04-12T04:02:49.001Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-04-12T04:02:49.001Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-04-12T04:02:49.001Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-04-12T04:02:49.001Z] + sed s/.ipynb$// +[2024-04-12T04:02:49.001Z] + filename=00_Introduction_to_JupyterLab +[2024-04-12T04:02:49.001Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-04-12T04:02:49.001Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-04-12T04:02:49.001Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-04-12T04:02:50.907Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-04-12T04:02:51.164Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-04-12T04:02:51.164Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-04-12T04:02:51.164Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-04-12T04:02:51.164Z] + sed s/.ipynb$// +[2024-04-12T04:02:51.164Z] + filename=01_Getting_watershed_boundaries +[2024-04-12T04:02:51.164Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-04-12T04:02:51.164Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-04-12T04:02:53.061Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-04-12T04:03:05.262Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-04-12T04:03:05.262Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-04-12T04:03:05.262Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-04-12T04:03:05.262Z] + sed s/.ipynb$// +[2024-04-12T04:03:05.262Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-04-12T04:03:05.262Z] + filename=02_Extract_geographical_watershed_properties +[2024-04-12T04:03:05.262Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-04-12T04:03:05.262Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-04-12T04:03:05.263Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-04-12T04:03:20.155Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-04-12T04:03:20.155Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-04-12T04:03:20.155Z] + filename=03_Extracting_forcing_data.ipynb +[2024-04-12T04:03:20.155Z] + echo 03_Extracting_forcing_data.ipynb +[2024-04-12T04:03:20.155Z] + sed s/.ipynb$// +[2024-04-12T04:03:20.155Z] + filename=03_Extracting_forcing_data +[2024-04-12T04:03:20.155Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-04-12T04:03:20.155Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-04-12T04:03:21.539Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-04-12T04:05:13.031Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-04-12T04:05:13.031Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-04-12T04:05:13.031Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-04-12T04:05:13.031Z] + sed s/.ipynb$// +[2024-04-12T04:05:13.031Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-04-12T04:05:13.031Z] + filename=04_Emulating_hydrological_models +[2024-04-12T04:05:13.031Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-04-12T04:05:13.031Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-04-12T04:05:13.031Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-04-12T04:05:18.279Z] [NbConvertApp] Writing 144059 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-04-12T04:05:18.279Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-04-12T04:05:18.279Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-04-12T04:05:18.279Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-04-12T04:05:18.279Z] + sed s/.ipynb$// +[2024-04-12T04:05:18.279Z] + filename=05_Advanced_RavenPy_configuration +[2024-04-12T04:05:18.279Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-04-12T04:05:18.279Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-04-12T04:05:19.647Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-04-12T04:05:41.612Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-04-12T04:05:41.612Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-04-12T04:05:41.612Z] + filename=06_Raven_calibration.ipynb +[2024-04-12T04:05:41.612Z] + echo 06_Raven_calibration.ipynb +[2024-04-12T04:05:41.612Z] + sed s/.ipynb$// +[2024-04-12T04:05:41.612Z] + filename=06_Raven_calibration +[2024-04-12T04:05:41.612Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-04-12T04:05:41.612Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-04-12T04:05:41.612Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-04-12T04:05:51.598Z] [NbConvertApp] Writing 24094 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-04-12T04:05:51.598Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-04-12T04:05:51.598Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-04-12T04:05:51.598Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-04-12T04:05:51.598Z] + sed s/.ipynb$// +[2024-04-12T04:05:51.598Z] + filename=07_Making_and_using_hotstart_files +[2024-04-12T04:05:51.598Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-04-12T04:05:51.598Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-04-12T04:05:52.998Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-04-12T04:06:07.931Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-04-12T04:06:07.931Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-12T04:06:07.931Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-12T04:06:07.931Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-12T04:06:07.931Z] + sed s/.ipynb$// +[2024-04-12T04:06:07.931Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-04-12T04:06:07.931Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-04-12T04:06:07.931Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-12T04:06:07.931Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-04-12T04:12:14.569Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-04-12T04:12:14.569Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-12T04:12:14.569Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-12T04:12:14.569Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-12T04:12:14.569Z] + sed s/.ipynb$// +[2024-04-12T04:12:14.569Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-04-12T04:12:14.569Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-04-12T04:12:14.569Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-12T04:12:14.569Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-04-12T04:12:21.158Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-04-12T04:12:21.158Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-04-12T04:12:21.158Z] + filename=10_Data_assimilation.ipynb +[2024-04-12T04:12:21.158Z] + echo 10_Data_assimilation.ipynb +[2024-04-12T04:12:21.158Z] + sed s/.ipynb$// +[2024-04-12T04:12:21.158Z] + filename=10_Data_assimilation +[2024-04-12T04:12:21.158Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-04-12T04:12:21.158Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-04-12T04:12:22.527Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-04-12T04:13:44.026Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-04-12T04:13:44.026Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-04-12T04:13:44.026Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-04-12T04:13:44.026Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-04-12T04:13:44.026Z] + sed s/.ipynb$// +[2024-04-12T04:13:44.026Z] + filename=11_Climatological_ESP_forecasting +[2024-04-12T04:13:44.026Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-04-12T04:13:44.026Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-04-12T04:13:44.026Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-04-12T04:14:30.702Z] [NbConvertApp] Writing 556869 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-04-12T04:14:30.702Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-04-12T04:14:30.702Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-04-12T04:14:30.702Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-04-12T04:14:30.702Z] + sed s/.ipynb$// +[2024-04-12T04:14:30.702Z] + filename=12_Performing_hindcasting_experiments +[2024-04-12T04:14:30.702Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-04-12T04:14:30.702Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-04-12T04:14:30.702Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-04-12T04:14:52.649Z] [NbConvertApp] Writing 298489 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-04-12T04:14:52.649Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-04-12T04:14:52.649Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-04-12T04:14:52.649Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-04-12T04:14:52.649Z] + sed s/.ipynb$// +[2024-04-12T04:14:52.649Z] + filename=Assess_probabilistic_flood_risk +[2024-04-12T04:14:52.649Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-04-12T04:14:52.649Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-04-12T04:14:52.649Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-04-12T04:15:24.743Z] [NbConvertApp] Writing 550034 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-04-12T04:15:24.743Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-12T04:15:24.743Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-12T04:15:24.743Z] + sed s/.ipynb$// +[2024-04-12T04:15:24.743Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-12T04:15:24.743Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-04-12T04:15:24.743Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-04-12T04:15:24.743Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-12T04:15:24.743Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-04-12T04:16:03.517Z] [NbConvertApp] Writing 748540 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-04-12T04:16:03.517Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-04-12T04:16:03.517Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-04-12T04:16:03.517Z] + sed s/.ipynb$// +[2024-04-12T04:16:03.517Z] + echo Distributed_hydrological_modelling.ipynb +[2024-04-12T04:16:03.517Z] + filename=Distributed_hydrological_modelling +[2024-04-12T04:16:03.517Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-04-12T04:16:03.517Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-04-12T04:16:03.517Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-04-12T04:16:35.628Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-04-12T04:16:35.628Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-04-12T04:16:35.628Z] + filename=HydroShare_integration.ipynb +[2024-04-12T04:16:35.628Z] + echo HydroShare_integration.ipynb +[2024-04-12T04:16:35.628Z] + sed s/.ipynb$// +[2024-04-12T04:16:35.628Z] + filename=HydroShare_integration +[2024-04-12T04:16:35.628Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-04-12T04:16:35.628Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-04-12T04:16:35.628Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-04-12T04:16:39.827Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb +[2024-04-12T04:16:39.827Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-04-12T04:16:39.827Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-04-12T04:16:39.827Z] + + sed s/.ipynb$// +[2024-04-12T04:16:39.827Z] echo Hydrological_realtime_forecasting.ipynb +[2024-04-12T04:16:39.827Z] + filename=Hydrological_realtime_forecasting +[2024-04-12T04:16:39.827Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-04-12T04:16:39.827Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-04-12T04:16:41.213Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-04-12T04:17:03.226Z] [NbConvertApp] Writing 305229 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-04-12T04:17:03.485Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-04-12T04:17:03.485Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-04-12T04:17:03.485Z] + echo Managing_Jupyter_Environments.ipynb +[2024-04-12T04:17:03.485Z] + sed s/.ipynb$// +[2024-04-12T04:17:03.485Z] + filename=Managing_Jupyter_Environments +[2024-04-12T04:17:03.485Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-04-12T04:17:03.485Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-04-12T04:17:05.395Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-04-12T04:17:17.614Z] [NbConvertApp] Writing 8035 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-04-12T04:17:17.614Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-04-12T04:17:17.614Z] + filename=Perform_Regionalization.ipynb +[2024-04-12T04:17:17.614Z] + sed s/.ipynb$// +[2024-04-12T04:17:17.614Z] + echo Perform_Regionalization.ipynb +[2024-04-12T04:17:17.614Z] + filename=Perform_Regionalization +[2024-04-12T04:17:17.614Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-04-12T04:17:17.614Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-04-12T04:17:17.615Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-04-12T04:17:49.779Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-04-12T04:17:49.779Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-12T04:17:49.779Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-12T04:17:49.780Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-12T04:17:49.780Z] + sed s/.ipynb$// +[2024-04-12T04:17:49.780Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-04-12T04:17:49.780Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-04-12T04:17:49.780Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-12T04:17:49.780Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-04-12T04:18:04.658Z] [NbConvertApp] Writing 111378 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-04-12T04:18:04.658Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-04-12T04:18:04.658Z] + filename=Sensitivity_analysis.ipynb +[2024-04-12T04:18:04.658Z] + echo Sensitivity_analysis.ipynb +[2024-04-12T04:18:04.658Z] + sed s/.ipynb$// +[2024-04-12T04:18:04.658Z] + filename=Sensitivity_analysis +[2024-04-12T04:18:04.658Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-04-12T04:18:04.658Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-04-12T04:18:06.039Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-04-12T04:18:24.186Z] [NbConvertApp] Writing 35307 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-04-12T04:18:24.186Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-04-12T04:18:24.186Z] + filename=time_series_analysis.ipynb +[2024-04-12T04:18:24.186Z] + sed s/.ipynb$// +[2024-04-12T04:18:24.186Z] + echo time_series_analysis.ipynb +[2024-04-12T04:18:24.186Z] + filename=time_series_analysis +[2024-04-12T04:18:24.186Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-04-12T04:18:24.186Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-04-12T04:18:25.563Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-04-12T04:18:37.797Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb +[2024-04-12T04:18:37.797Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-12T04:18:37.797Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-12T04:18:37.797Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-12T04:18:37.797Z] + sed s/.ipynb$// +[2024-04-12T04:18:37.797Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-04-12T04:18:37.797Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-04-12T04:18:37.797Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-12T04:18:37.798Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-04-12T04:20:14.273Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-04-12T04:20:14.273Z] + exit 1 +[2024-04-12T04:20:14.273Z] + EXIT_CODE=1 +[2024-04-12T04:20:14.273Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-04-12T04:20:14.273Z] + mkdir -p buildout/env-dump +[2024-04-12T04:20:14.273Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-04-12T04:20:14.273Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-04-12T04:20:14.273Z] + conda env export -n birdy +[2024-04-12T04:20:29.166Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-12T04:20:29.166Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-12T04:20:29.166Z] + conda list -n birdy --explicit +[2024-04-12T04:20:39.142Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-12T04:20:39.142Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-12T04:20:39.142Z] + pip freeze +[2024-04-12T04:20:40.084Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -2018,41 +2019,41 @@ $ docker top 08458e3617288787ce7ba47a580b094b7d640d230fb137d8a2e0d08df3b2c1d1 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-11T16:28:45.480Z] Archiving artifacts -[2024-04-11T16:28:45.655Z] Recording fingerprints +[2024-04-12T04:20:40.225Z] Archiving artifacts +[2024-04-12T04:20:40.250Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:45.785Z] Archiving artifacts -[2024-04-11T16:28:48.028Z] Recording fingerprints +[2024-04-12T04:20:40.282Z] Archiving artifacts +[2024-04-12T04:20:42.502Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:49.030Z] Archiving artifacts -[2024-04-11T16:28:49.091Z] Recording fingerprints +[2024-04-12T04:20:43.141Z] Archiving artifacts +[2024-04-12T04:20:43.157Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:49.238Z] Archiving artifacts -[2024-04-11T16:28:49.392Z] Recording fingerprints +[2024-04-12T04:20:43.512Z] Archiving artifacts +[2024-04-12T04:20:43.535Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:49.840Z] Archiving artifacts -[2024-04-11T16:28:49.869Z] Recording fingerprints +[2024-04-12T04:20:43.564Z] Archiving artifacts +[2024-04-12T04:20:43.725Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:49.959Z] Archiving artifacts -[2024-04-11T16:28:49.999Z] Recording fingerprints +[2024-04-12T04:20:43.809Z] Archiving artifacts +[2024-04-12T04:20:43.843Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:50.440Z] Archiving artifacts -[2024-04-11T16:28:50.458Z] Recording fingerprints +[2024-04-12T04:20:45.044Z] Archiving artifacts +[2024-04-12T04:20:45.056Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:50.717Z] Archiving artifacts -[2024-04-11T16:28:50.761Z] Recording fingerprints +[2024-04-12T04:20:45.075Z] Archiving artifacts +[2024-04-12T04:20:45.110Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:50.872Z] Archiving artifacts -[2024-04-11T16:28:51.331Z] Recording fingerprints +[2024-04-12T04:20:45.706Z] Archiving artifacts +[2024-04-12T04:20:46.087Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:51.414Z] Archiving artifacts -[2024-04-11T16:28:51.879Z] Recording fingerprints +[2024-04-12T04:20:46.905Z] Archiving artifacts +[2024-04-12T04:20:47.262Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:28:54.121Z] Archiving artifacts -[2024-04-11T16:28:54.147Z] Recording fingerprints +[2024-04-12T04:20:49.104Z] Archiving artifacts +[2024-04-12T04:20:49.118Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-04-11T16:28:54.409Z] Sending e-mails to: vu.long@ouranos.ca +[2024-04-12T04:20:49.199Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -2062,8 +2063,8 @@ $ docker top 08458e3617288787ce7ba47a580b094b7d640d230fb137d8a2e0d08df3b2c1d1 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 08458e3617288787ce7ba47a580b094b7d640d230fb137d8a2e0d08df3b2c1d1 -$ docker rm -f 08458e3617288787ce7ba47a580b094b7d640d230fb137d8a2e0d08df3b2c1d1 +$ docker stop --time=1 0072fbfdf1a60e09332893a5d910d7b3e2f85c34919ab4197a68e6b650710bef +$ docker rm -f 0072fbfdf1a60e09332893a5d910d7b3e2f85c34919ab4197a68e6b650710bef [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 43f5f56c65088031e8732dd0b24fbe52f81c5940 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Fri, 12 Apr 2024 00:35:58 -0400 Subject: [PATCH 068/104] docker: py310-240411: initial jenkins, default nb, only homepage nb 4 failing --- .../jenkins-buildlogs-default.txt | 1663 +++++++++-------- 1 file changed, 839 insertions(+), 824 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index 4c5f266..a5df39b 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -1,4 +1,5 @@ Started by user Long Vu +Replayed #288 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -7,6 +8,7 @@ Fetching upstream changes from origin > git --version # timeout=10 > git config --get remote.origin.url # timeout=10 > git fetch --tags --progress -- origin +refs/heads/*:refs/remotes/origin/* # timeout=10 +Seen branch in repository origin/allow-full-custom-config-override Seen branch in repository origin/current-production-version Seen branch in repository origin/devel-new-extensions Seen branch in repository origin/extended_tests @@ -16,12 +18,12 @@ Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 9 remote branches -Obtained Jenkinsfile from 216b16e9329a254e7e2e14ebf72437f7abcf3e06 +Seen 10 remote branches +Obtained Jenkinsfile from 9765cc8d98bef9ded245654406ac56d5e6bd0f97 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -29,831 +31,844 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision 216b16e9329a254e7e2e14ebf72437f7abcf3e06 (new-docker-build) -Commit message: "release: update to use image pavics/workflow-tests:py310-240404" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 (new-docker-build) +Commit message: "release: update to use image pavics/workflow-tests:py310-240411" > git config core.sparsecheckout # timeout=10 - > git checkout -f 216b16e9329a254e7e2e14ebf72437f7abcf3e06 # timeout=10 - > git rev-list --no-walk 216b16e9329a254e7e2e14ebf72437f7abcf3e06 # timeout=10 + > git checkout -f 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 # timeout=10 + > git rev-list --no-walk 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240404 ++ docker inspect -f . pavics/workflow-tests:py310-240411 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240404 cat -$ docker top 2abf83cdd74e10acfe44bf0aad443e5cd0fcd7e0b43b4378bbf1731f7c2bb24e -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240411 cat +$ docker top 31a69ca4dbfc4c2d71081aac6f92e6dd5b8cf9aea4aaa92c9f1ea209873e7f05 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-11T15:53:33.593Z] Timeout set to expire in 2 hr 0 min +[2024-04-12T03:53:20.733Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-11T15:53:35.393Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-12T03:53:22.264Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-11T15:53:35.888Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-11T15:53:35.888Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-11T15:53:35.888Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-11T15:53:35.888Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-11T15:53:35.888Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-11T15:53:35.888Z] FINCH_BRANCH has been set to 'master' -[2024-04-11T15:53:35.888Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-11T15:53:35.888Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-11T15:53:35.888Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-11T15:53:35.888Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-11T15:53:35.888Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-11T15:53:35.888Z] RAVEN_BRANCH has been set to 'main' -[2024-04-11T15:53:35.888Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-11T15:53:35.888Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-11T15:53:35.888Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-11T15:53:35.888Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-11T15:53:35.888Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-11T15:53:35.888Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-11T15:53:35.888Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-11T15:53:35.888Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-11T15:53:35.888Z] + git clean -fdx -[2024-04-11T15:53:36.453Z] Removing .pytest_cache/ -[2024-04-11T15:53:36.453Z] Removing PAVICS-landing-master/ -[2024-04-11T15:53:36.453Z] Removing RavenPy-master/ -[2024-04-11T15:53:36.453Z] Removing __pycache__/ -[2024-04-11T15:53:36.453Z] Removing buildout/ -[2024-04-11T15:53:36.453Z] Removing esgf-compute-api-devel/ -[2024-04-11T15:53:36.453Z] Removing finch-master/ -[2024-04-11T15:53:36.453Z] Removing pavics-sdi-master/ -[2024-04-11T15:53:36.453Z] Removing raven-main/ -[2024-04-11T15:53:36.453Z] + ./downloadrepos -[2024-04-11T15:53:36.453Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-11T15:53:36.453Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-11T15:53:36.453Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-11T15:53:36.453Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-11T15:53:36.453Z] FINCH_BRANCH has been set to 'master' -[2024-04-11T15:53:36.453Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-11T15:53:36.453Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-11T15:53:36.453Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-11T15:53:36.453Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-11T15:53:36.453Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-11T15:53:36.453Z] RAVEN_BRANCH has been set to 'main' -[2024-04-11T15:53:36.453Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-11T15:53:36.453Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-11T15:53:36.453Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-11T15:53:36.453Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-11T15:53:36.453Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-11T15:53:36.453Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-11T15:53:36.453Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-11T15:53:36.453Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-11T15:53:36.453Z] + rm -rf pavics-sdi-* -[2024-04-11T15:53:36.453Z] + ls -[2024-04-11T15:53:36.453Z] + grep pavics-sdi -[2024-04-11T15:53:36.453Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:36.453Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-11T15:53:36.453Z] + shift -[2024-04-11T15:53:36.453Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:36.453Z] + shift -[2024-04-11T15:53:36.453Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-11T15:53:36.453Z] + tar xz -[2024-04-11T15:53:38.984Z] + grep pavics-sdi -[2024-04-11T15:53:38.984Z] + ls -[2024-04-11T15:53:38.984Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:38.984Z] + set +x -[2024-04-11T15:53:39.245Z] + rm -rf finch-* -[2024-04-11T15:53:39.245Z] + ls -[2024-04-11T15:53:39.245Z] + grep finch -[2024-04-11T15:53:39.245Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-11T15:53:39.246Z] + github_repo=https://github.com/bird-house/finch -[2024-04-11T15:53:39.246Z] + shift -[2024-04-11T15:53:39.246Z] + branch=master -[2024-04-11T15:53:39.246Z] + shift -[2024-04-11T15:53:39.246Z] + tar xz -[2024-04-11T15:53:39.246Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-11T15:53:40.618Z] + ls -[2024-04-11T15:53:40.618Z] + grep finch -[2024-04-11T15:53:40.618Z] finch-master -[2024-04-11T15:53:40.618Z] + set +x -[2024-04-11T15:53:40.618Z] + rm -rf PAVICS-landing-* -[2024-04-11T15:53:40.618Z] + ls -[2024-04-11T15:53:40.618Z] + grep PAVICS-landing -[2024-04-11T15:53:40.618Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:40.618Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-11T15:53:40.618Z] + shift -[2024-04-11T15:53:40.618Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:40.618Z] + shift -[2024-04-11T15:53:40.618Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-11T15:53:40.618Z] + tar xz -[2024-04-11T15:53:52.844Z] + grep PAVICS-landing -[2024-04-11T15:53:52.844Z] + ls -[2024-04-11T15:53:52.844Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:52.844Z] + set +x -[2024-04-11T15:53:52.844Z] + rm -rf raven-* -[2024-04-11T15:53:52.844Z] + + grep raven -[2024-04-11T15:53:52.844Z] ls -[2024-04-11T15:53:52.845Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-11T15:53:52.845Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-11T15:53:52.845Z] + shift -[2024-04-11T15:53:52.845Z] + branch=main -[2024-04-11T15:53:52.845Z] + shift -[2024-04-11T15:53:52.845Z] + + tar xz -[2024-04-11T15:53:52.845Z] wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-11T15:53:53.773Z] + ls -[2024-04-11T15:53:53.773Z] + grep raven -[2024-04-11T15:53:53.773Z] raven-main -[2024-04-11T15:53:53.773Z] + set +x -[2024-04-11T15:53:53.773Z] + rm -rf RavenPy-* -[2024-04-11T15:53:53.773Z] + ls -[2024-04-11T15:53:53.773Z] + grep RavenPy -[2024-04-11T15:53:53.773Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-11T15:53:53.773Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-11T15:53:53.773Z] + shift -[2024-04-11T15:53:53.773Z] + branch=master -[2024-04-11T15:53:53.773Z] + shift -[2024-04-11T15:53:53.773Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-11T15:53:53.773Z] + tar xz -[2024-04-11T15:53:55.146Z] + grep RavenPy -[2024-04-11T15:53:55.146Z] + ls -[2024-04-11T15:53:55.146Z] RavenPy-master -[2024-04-11T15:53:55.146Z] + set +x -[2024-04-11T15:53:55.146Z] + rm -rf esgf-compute-api-* -[2024-04-11T15:53:55.146Z] + grep esgf-compute-api -[2024-04-11T15:53:55.146Z] + ls -[2024-04-11T15:53:55.146Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-11T15:53:55.146Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-11T15:53:55.146Z] + shift -[2024-04-11T15:53:55.146Z] + branch=devel -[2024-04-11T15:53:55.146Z] + shift -[2024-04-11T15:53:55.146Z] + tar xz -[2024-04-11T15:53:55.146Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-11T15:53:56.516Z] + ls -[2024-04-11T15:53:56.516Z] + grep esgf-compute-api -[2024-04-11T15:53:56.516Z] esgf-compute-api-devel -[2024-04-11T15:53:56.516Z] + set +x -[2024-04-11T15:53:56.516Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:56.516Z] + sed s@/@-@g -[2024-04-11T15:53:56.516Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:56.516Z] + echo Ouranosinc/pavics-sdi -[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g -[2024-04-11T15:53:56.516Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-11T15:53:56.516Z] + echo master -[2024-04-11T15:53:56.516Z] + sed s@/@-@g -[2024-04-11T15:53:56.516Z] + FINCH_BRANCH=master -[2024-04-11T15:53:56.516Z] + echo bird-house/finch -[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g -[2024-04-11T15:53:56.516Z] + FINCH_REPO_NAME=finch -[2024-04-11T15:53:56.516Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:56.516Z] + sed s@/@-@g -[2024-04-11T15:53:56.516Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:56.516Z] + echo Ouranosinc/PAVICS-landing -[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g -[2024-04-11T15:53:56.516Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-11T15:53:56.516Z] + echo main -[2024-04-11T15:53:56.516Z] + sed s@/@-@g -[2024-04-11T15:53:56.516Z] + RAVEN_BRANCH=main -[2024-04-11T15:53:56.516Z] + echo Ouranosinc/raven -[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g -[2024-04-11T15:53:56.516Z] + RAVEN_REPO_NAME=raven -[2024-04-11T15:53:56.516Z] + echo master -[2024-04-11T15:53:56.516Z] + sed s@/@-@g -[2024-04-11T15:53:56.516Z] + RAVENPY_BRANCH=master -[2024-04-11T15:53:56.516Z] + echo CSHS-CWRA/RavenPy -[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g -[2024-04-11T15:53:56.516Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-11T15:53:56.516Z] + echo devel -[2024-04-11T15:53:56.516Z] + sed s@/@-@g -[2024-04-11T15:53:56.516Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-11T15:53:56.516Z] + echo ESGF/esgf-compute-api -[2024-04-11T15:53:56.516Z] + sed s@^.*/@@g -[2024-04-11T15:53:56.516Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-11T15:53:56.516Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:53:56.516Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:56.516Z] + echo finch-master -[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:53:56.516Z] + FINCH_DIR=finch-master -[2024-04-11T15:53:56.516Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:53:56.516Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-11T15:53:56.516Z] + echo raven-main -[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:53:56.516Z] + RAVEN_DIR=raven-main -[2024-04-11T15:53:56.516Z] + echo RavenPy-master -[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:53:56.516Z] + RAVENPY_DIR=RavenPy-master -[2024-04-11T15:53:56.516Z] + echo esgf-compute-api-devel -[2024-04-11T15:53:56.516Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-11T15:53:56.516Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-11T15:53:56.516Z] + echo true -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + VERIFY_SSL=true -[2024-04-11T15:53:56.516Z] + [ xtrue = xfalse ] -[2024-04-11T15:53:56.516Z] + rm -v finch-master/setup.cfg -[2024-04-11T15:53:56.516Z] removed 'finch-master/setup.cfg' -[2024-04-11T15:53:56.516Z] + rm -v raven-main/setup.cfg -[2024-04-11T15:53:56.516Z] removed 'raven-main/setup.cfg' -[2024-04-11T15:53:56.516Z] + rm -v raven-main/pyproject.toml -[2024-04-11T15:53:56.516Z] removed 'raven-main/pyproject.toml' -[2024-04-11T15:53:56.516Z] + rm -v RavenPy-master/setup.cfg -[2024-04-11T15:53:56.516Z] removed 'RavenPy-master/setup.cfg' -[2024-04-11T15:53:56.516Z] + rm -v RavenPy-master/tox.ini -[2024-04-11T15:53:56.516Z] removed 'RavenPy-master/tox.ini' -[2024-04-11T15:53:56.516Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-11T15:53:56.516Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-11T15:53:56.516Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-11T15:53:56.516Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-11T15:53:56.516Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-11T15:53:56.516Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-11T15:53:56.516Z] + echo false -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + TEST_MAGPIE_AUTH=false -[2024-04-11T15:53:56.516Z] + echo true -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + TEST_PAVICS_SDI_REPO=true -[2024-04-11T15:53:56.516Z] + echo false -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-11T15:53:56.516Z] + echo true -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + TEST_FINCH_REPO=true -[2024-04-11T15:53:56.516Z] + echo true -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + TEST_PAVICS_LANDING_REPO=true -[2024-04-11T15:53:56.516Z] + echo false -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + TEST_RAVEN_REPO=false -[2024-04-11T15:53:56.516Z] + echo false -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + TEST_RAVENPY_REPO=false -[2024-04-11T15:53:56.516Z] + echo false -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-11T15:53:56.516Z] + echo true -[2024-04-11T15:53:56.516Z] + tr [:upper:] [:lower:] -[2024-04-11T15:53:56.516Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-04-11T15:53:56.516Z] + NOTEBOOKS_TO_TEST= -[2024-04-11T15:53:56.516Z] + [ xfalse = xtrue ] -[2024-04-11T15:53:56.516Z] + [ xtrue = xtrue ] -[2024-04-11T15:53:56.516Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb -[2024-04-11T15:53:56.516Z] + [ xfalse = xtrue ] -[2024-04-11T15:53:56.516Z] + [ xtrue = xtrue ] -[2024-04-11T15:53:56.516Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-04-11T15:53:56.516Z] + [ xtrue = xtrue ] -[2024-04-11T15:53:56.516Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb -[2024-04-11T15:53:56.516Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-11T15:53:56.516Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-04-11T15:53:56.516Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-11T15:53:56.517Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-11T15:53:56.517Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-11T15:53:56.517Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-11T15:53:56.517Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators -[2024-04-11T15:53:56.517Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-11T15:53:56.517Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-11T15:53:56.517Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-04-11T15:53:56.517Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.517Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:56.773Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.029Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.030Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.288Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.289Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.289Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.289Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-11T15:53:57.289Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-04-11T15:53:57.289Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-04-11T15:53:57.289Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-04-11T15:53:57.289Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' -[2024-04-11T15:53:57.289Z] + [ xfalse = xtrue ] -[2024-04-11T15:53:57.289Z] + [ xfalse = xtrue ] -[2024-04-11T15:53:57.289Z] + [ xfalse = xtrue ] -[2024-04-11T15:53:57.289Z] + [ xtrue = xtrue ] -[2024-04-11T15:53:57.289Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-11T15:53:57.289Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-11T15:53:57.289Z] + [ -n ] -[2024-04-11T15:53:57.289Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-11T15:53:57.289Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-11T15:53:57.289Z] Will run notebooks against pavics.ouranos.ca -[2024-04-11T15:53:57.289Z] + [ -z ] -[2024-04-11T15:53:57.289Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-04-11T15:53:57.289Z] + git diff -[2024-04-11T15:53:57.289Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-11T15:53:57.290Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-04-11T15:53:59.807Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-11T15:53:59.807Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-11T15:54:00.064Z] ============================= test session starts ============================== -[2024-04-11T15:54:00.064Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-04-11T15:54:00.064Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-04-11T15:54:00.064Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-11T15:54:00.064Z] collected 220 items -[2024-04-11T15:54:00.064Z] -[2024-04-11T15:54:04.239Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] -[2024-04-11T15:54:28.397Z] ..... [ 2%] -[2024-04-11T15:54:31.679Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] -[2024-04-11T15:54:38.393Z] ...... [ 5%] -[2024-04-11T15:54:40.288Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] -[2024-04-11T15:54:46.497Z] ..... [ 8%] -[2024-04-11T15:54:47.065Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] -[2024-04-11T15:54:51.762Z] ....... [ 12%] -[2024-04-11T15:54:59.872Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] -[2024-04-11T15:57:24.740Z] ........... [ 17%] -[2024-04-11T15:57:24.740Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] -[2024-04-11T15:57:31.874Z] ............... [ 25%] -[2024-04-11T15:57:34.415Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] -[2024-04-11T15:57:39.717Z] .... [ 27%] -[2024-04-11T15:57:41.616Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] -[2024-04-11T15:57:46.959Z] ..... [ 30%] -[2024-04-11T15:57:55.095Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] -[2024-04-11T15:58:01.827Z] ..... [ 32%] -[2024-04-11T15:58:03.736Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] -[2024-04-11T15:58:06.208Z] ...... [ 35%] -[2024-04-11T15:58:07.587Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] -[2024-04-11T15:58:10.591Z] .... [ 38%] -[2024-04-11T15:58:28.689Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] -[2024-04-11T15:59:59.048Z] ........................... [ 50%] -[2024-04-11T15:59:59.048Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] -[2024-04-11T15:59:59.882Z] ... [ 52%] -[2024-04-11T16:00:00.820Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] -[2024-04-11T16:00:20.540Z] ........................ [ 64%] -[2024-04-11T16:00:24.082Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] -[2024-04-11T16:00:28.493Z] ..... [ 66%] -[2024-04-11T16:00:37.182Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] -[2024-04-11T16:00:44.980Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] -[2024-04-11T16:00:46.365Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] -[2024-04-11T16:00:49.465Z] ...... [ 77%] -[2024-04-11T16:00:57.590Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] -[2024-04-11T16:01:09.789Z] ............. [ 84%] -[2024-04-11T16:01:17.920Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-04-11T16:01:35.003Z] ....s [ 86%] -[2024-04-11T16:01:41.582Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] -[2024-04-11T16:01:53.280Z] .F. [ 88%] -[2024-04-11T16:02:05.472Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] -[2024-04-11T16:02:55.487Z] ...... [ 91%] -[2024-04-11T16:02:56.002Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-04-11T16:04:51.693Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] =================================== FAILURES =================================== -[2024-04-11T16:04:51.693Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ -[2024-04-11T16:04:51.693Z] Notebook cell execution failed -[2024-04-11T16:04:51.693Z] Cell 2: Cell execution caused an exception -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] Input: -[2024-04-11T16:04:51.693Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) -[2024-04-11T16:04:51.693Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] chng_f, pos_f = xens.change_significance( -[2024-04-11T16:04:51.693Z] fut.sel(time=fut["time.season"] == "JJA"), -[2024-04-11T16:04:51.693Z] ref.sel(time=ref["time.season"] == "JJA"), -[2024-04-11T16:04:51.693Z] test="ttest", -[2024-04-11T16:04:51.693Z] ) -[2024-04-11T16:04:51.693Z] plt.figure( -[2024-04-11T16:04:51.693Z] figsize=(15, 6), -[2024-04-11T16:04:51.693Z] ) -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] plt.subplot(1, 2, 1) -[2024-04-11T16:04:51.693Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] plt.title(chng_f.description.split(".")[0]) -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] plt.subplot(1, 2, 2) -[2024-04-11T16:04:51.693Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-11T16:04:51.693Z] plt.title(pos_f.description.split(".")[0]) -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] display() -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] Traceback: -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] --------------------------------------------------------------------------- -[2024-04-11T16:04:51.693Z] AttributeError Traceback (most recent call last) -[2024-04-11T16:04:51.693Z] Cell In[1], line 20 -[2024-04-11T16:04:51.693Z]  18 plt.subplot(1, 2, 2) -[2024-04-11T16:04:51.693Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-11T16:04:51.693Z] ---> 20 plt.title(pos_f.description.split(".")[0]) -[2024-04-11T16:04:51.693Z]  22 display() -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-04-11T16:04:51.693Z]  275 with suppress(KeyError): -[2024-04-11T16:04:51.693Z]  276 return source[name] -[2024-04-11T16:04:51.693Z] --> 277 raise AttributeError( -[2024-04-11T16:04:51.693Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-04-11T16:04:51.693Z]  279 ) -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-04-11T16:04:51.693Z] -[2024-04-11T16:04:51.693Z] =========================== short test summary info ============================ -[2024-04-11T16:04:51.693Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-04-11T16:04:51.693Z] ============= 1 failed, 218 passed, 1 skipped in 648.22s (0:10:48) ============= -[2024-04-11T16:04:51.693Z] + EXIT_CODE=1 -[2024-04-11T16:04:51.693Z] + echo true -[2024-04-11T16:04:51.693Z] + tr [:upper:] [:lower:] -[2024-04-11T16:04:51.694Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-04-11T16:04:51.694Z] + [ xtrue = xtrue ] -[2024-04-11T16:04:51.694Z] + mkdir -p buildout -[2024-04-11T16:04:51.694Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-11T16:04:51.694Z] + filename=CaSR_basic.ipynb -[2024-04-11T16:04:51.694Z] + echo+ CaSR_basic.ipynb -[2024-04-11T16:04:51.694Z] sed s/.ipynb$// -[2024-04-11T16:04:51.694Z] + filename=CaSR_basic -[2024-04-11T16:04:51.694Z] + [ -e buildout/CaSR_basic.output.ipynb ] -[2024-04-11T16:04:51.694Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-11T16:04:51.694Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook -[2024-04-11T16:05:09.839Z] 2024-04-11 16:05:08,176 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. -[2024-04-11T16:05:09.839Z] Traceback (most recent call last): -[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read -[2024-04-11T16:05:09.839Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) -[2024-04-11T16:05:09.839Z] tornado.iostream.StreamClosedError: Stream is closed -[2024-04-11T16:05:09.839Z] -[2024-04-11T16:05:09.839Z] The above exception was the direct cause of the following exception: -[2024-04-11T16:05:09.839Z] -[2024-04-11T16:05:09.839Z] Traceback (most recent call last): -[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat -[2024-04-11T16:05:09.839Z] response = await retry_operation( -[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation -[2024-04-11T16:05:09.839Z] return await retry( -[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry -[2024-04-11T16:05:09.839Z] return await coro() -[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc -[2024-04-11T16:05:09.839Z] return await send_recv(comm=comm, op=key, **kwargs) -[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv -[2024-04-11T16:05:09.839Z] response = await comm.read(deserializers=deserializers) -[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read -[2024-04-11T16:05:09.839Z] convert_stream_closed_error(self, e) -[2024-04-11T16:05:09.839Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error -[2024-04-11T16:05:09.839Z] raise CommClosedError(f"in {obj}: {exc}") from exc -[2024-04-11T16:05:09.839Z] distributed.comm.core.CommClosedError: in : Stream is closed -[2024-04-11T16:05:22.060Z] [NbConvertApp] Writing 694582 bytes to buildout/CaSR_basic.output.ipynb -[2024-04-11T16:05:22.319Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-11T16:05:22.319Z] + filename=WCS_example.ipynb -[2024-04-11T16:05:22.319Z] + sed s/.ipynb$// -[2024-04-11T16:05:22.319Z] + echo WCS_example.ipynb -[2024-04-11T16:05:22.319Z] + filename=WCS_example -[2024-04-11T16:05:22.319Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-04-11T16:05:22.319Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-11T16:05:24.215Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-04-11T16:05:34.185Z] [NbConvertApp] Writing 144330 bytes to buildout/WCS_example.output.ipynb -[2024-04-11T16:05:34.185Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-11T16:05:34.185Z] + filename=WFS_example.ipynb -[2024-04-11T16:05:34.185Z] + echo WFS_example.ipynb -[2024-04-11T16:05:34.185Z] + sed s/.ipynb$// -[2024-04-11T16:05:34.185Z] + filename=WFS_example -[2024-04-11T16:05:34.185Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-04-11T16:05:34.185Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-11T16:05:35.567Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-04-11T16:05:45.550Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb -[2024-04-11T16:05:45.550Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-11T16:05:45.550Z] + filename=WMS_example.ipynb -[2024-04-11T16:05:45.550Z] + sed s/.ipynb$// -[2024-04-11T16:05:45.550Z] + echo WMS_example.ipynb -[2024-04-11T16:05:45.550Z] + filename=WMS_example -[2024-04-11T16:05:45.550Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-04-11T16:05:45.550Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-11T16:05:46.492Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-04-11T16:06:08.414Z] [NbConvertApp] Writing 2048327 bytes to buildout/WMS_example.output.ipynb -[2024-04-11T16:06:08.415Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-11T16:06:08.415Z] + filename=climex.ipynb -[2024-04-11T16:06:08.415Z] + echo climex.ipynb -[2024-04-11T16:06:08.415Z] + sed s/.ipynb$// -[2024-04-11T16:06:08.415Z] + filename=climex -[2024-04-11T16:06:08.415Z] + [ -e buildout/climex.output.ipynb ] -[2024-04-11T16:06:08.415Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-11T16:06:08.415Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook -[2024-04-11T16:08:00.054Z] 2024-04-11 16:07:47,054 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. -[2024-04-11T16:08:00.054Z] Traceback (most recent call last): -[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read -[2024-04-11T16:08:00.054Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) -[2024-04-11T16:08:00.054Z] tornado.iostream.StreamClosedError: Stream is closed -[2024-04-11T16:08:00.054Z] -[2024-04-11T16:08:00.054Z] The above exception was the direct cause of the following exception: -[2024-04-11T16:08:00.054Z] -[2024-04-11T16:08:00.054Z] Traceback (most recent call last): -[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat -[2024-04-11T16:08:00.054Z] response = await retry_operation( -[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation -[2024-04-11T16:08:00.054Z] return await retry( -[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry -[2024-04-11T16:08:00.054Z] return await coro() -[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc -[2024-04-11T16:08:00.054Z] return await send_recv(comm=comm, op=key, **kwargs) -[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv -[2024-04-11T16:08:00.054Z] response = await comm.read(deserializers=deserializers) -[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read -[2024-04-11T16:08:00.054Z] convert_stream_closed_error(self, e) -[2024-04-11T16:08:00.054Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error -[2024-04-11T16:08:00.054Z] raise CommClosedError(f"in {obj}: {exc}") from exc -[2024-04-11T16:08:00.055Z] distributed.comm.core.CommClosedError: in : Stream is closed -[2024-04-11T16:08:56.341Z] 2024-04-11 16:08:52,812 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. -[2024-04-11T16:08:56.341Z] Traceback (most recent call last): -[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read -[2024-04-11T16:08:56.341Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) -[2024-04-11T16:08:56.341Z] tornado.iostream.StreamClosedError: Stream is closed -[2024-04-11T16:08:56.341Z] -[2024-04-11T16:08:56.341Z] The above exception was the direct cause of the following exception: -[2024-04-11T16:08:56.341Z] -[2024-04-11T16:08:56.341Z] Traceback (most recent call last): -[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat -[2024-04-11T16:08:56.341Z] response = await retry_operation( -[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation -[2024-04-11T16:08:56.341Z] return await retry( -[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry -[2024-04-11T16:08:56.341Z] return await coro() -[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc -[2024-04-11T16:08:56.341Z] return await send_recv(comm=comm, op=key, **kwargs) -[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv -[2024-04-11T16:08:56.341Z] response = await comm.read(deserializers=deserializers) -[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read -[2024-04-11T16:08:56.341Z] convert_stream_closed_error(self, e) -[2024-04-11T16:08:56.341Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error -[2024-04-11T16:08:56.341Z] raise CommClosedError(f"in {obj}: {exc}") from exc -[2024-04-11T16:08:56.341Z] distributed.comm.core.CommClosedError: in : Stream is closed -[2024-04-11T16:08:57.904Z] [NbConvertApp] Writing 1789572 bytes to buildout/climex.output.ipynb -[2024-04-11T16:08:57.904Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-11T16:08:57.904Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-04-11T16:08:57.904Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-04-11T16:08:57.904Z] + sed s/.ipynb$// -[2024-04-11T16:08:57.904Z] + filename=eccc-geoapi-climate-stations -[2024-04-11T16:08:57.904Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-04-11T16:08:57.904Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-11T16:08:59.856Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-04-11T16:09:12.062Z] [NbConvertApp] Writing 279067 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-04-11T16:09:12.062Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-11T16:09:12.062Z] + filename=eccc-geoapi-xclim.ipynb -[2024-04-11T16:09:12.062Z] + echo eccc-geoapi-xclim.ipynb -[2024-04-11T16:09:12.062Z] + sed s/.ipynb$// -[2024-04-11T16:09:12.062Z] + filename=eccc-geoapi-xclim -[2024-04-11T16:09:12.062Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-04-11T16:09:12.062Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-11T16:09:12.328Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-04-11T16:09:22.355Z] [NbConvertApp] Writing 108011 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-04-11T16:09:22.355Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-11T16:09:22.355Z] + filename=esgf-dap.ipynb -[2024-04-11T16:09:22.355Z] + echo esgf-dap.ipynb -[2024-04-11T16:09:22.355Z] + sed s/.ipynb$// -[2024-04-11T16:09:22.355Z] + filename=esgf-dap -[2024-04-11T16:09:22.355Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-04-11T16:09:22.355Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-11T16:09:23.295Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-04-11T16:09:33.280Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb -[2024-04-11T16:09:33.280Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-11T16:09:33.280Z] + filename=forecasts.ipynb -[2024-04-11T16:09:33.280Z] + echo forecasts.ipynb -[2024-04-11T16:09:33.280Z] + sed s/.ipynb$// -[2024-04-11T16:09:33.280Z] + filename=forecasts -[2024-04-11T16:09:33.280Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-04-11T16:09:33.280Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-11T16:09:33.543Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook -[2024-04-11T16:09:51.634Z] [NbConvertApp] Writing 181135 bytes to buildout/forecasts.output.ipynb -[2024-04-11T16:09:51.634Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-11T16:09:51.634Z] + filename=jupyter_extensions.ipynb -[2024-04-11T16:09:51.634Z] + echo jupyter_extensions.ipynb -[2024-04-11T16:09:51.634Z] + sed s/.ipynb$// -[2024-04-11T16:09:51.634Z] + filename=jupyter_extensions -[2024-04-11T16:09:51.634Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-04-11T16:09:51.634Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-11T16:09:53.008Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-04-11T16:09:54.915Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb -[2024-04-11T16:09:54.915Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-11T16:09:54.915Z] + filename=opendap.ipynb -[2024-04-11T16:09:54.915Z] + echo opendap.ipynb -[2024-04-11T16:09:54.915Z] + sed s/.ipynb$// -[2024-04-11T16:09:54.915Z] + filename=opendap -[2024-04-11T16:09:54.915Z] + [ -e buildout/opendap.output.ipynb ] -[2024-04-11T16:09:54.915Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-11T16:09:56.852Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook -[2024-04-11T16:10:02.170Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb -[2024-04-11T16:10:02.170Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-11T16:10:02.170Z] + filename=pavics_thredds.ipynb -[2024-04-11T16:10:02.170Z] + echo pavics_thredds.ipynb -[2024-04-11T16:10:02.170Z] + sed s/.ipynb$// -[2024-04-11T16:10:02.170Z] + filename=pavics_thredds -[2024-04-11T16:10:02.170Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-04-11T16:10:02.170Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-11T16:10:04.062Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-04-11T16:10:07.342Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-11T16:10:07.343Z] context: Access to service is forbidden. -[2024-04-11T16:10:07.343Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-11T16:10:07.343Z] context: Access to service is forbidden. -[2024-04-11T16:10:09.236Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb -[2024-04-11T16:10:09.236Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-11T16:10:09.236Z] + filename=regridding.ipynb -[2024-04-11T16:10:09.236Z] + echo regridding.ipynb -[2024-04-11T16:10:09.236Z] + sed s/.ipynb$// -[2024-04-11T16:10:09.236Z] + filename=regridding -[2024-04-11T16:10:09.236Z] + [ -e buildout/regridding.output.ipynb ] -[2024-04-11T16:10:09.236Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-11T16:10:11.132Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook -[2024-04-11T16:11:47.576Z] [NbConvertApp] Writing 1239953 bytes to buildout/regridding.output.ipynb -[2024-04-11T16:11:47.577Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-11T16:11:47.577Z] + filename=rendering.ipynb -[2024-04-11T16:11:47.577Z] + echo rendering.ipynb -[2024-04-11T16:11:47.577Z] + sed s/.ipynb$// -[2024-04-11T16:11:47.577Z] + filename=rendering -[2024-04-11T16:11:47.577Z] + [ -e buildout/rendering.output.ipynb ] -[2024-04-11T16:11:47.577Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-11T16:11:47.577Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook -[2024-04-11T16:11:51.775Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb -[2024-04-11T16:11:52.038Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-11T16:11:52.038Z] + filename=subset-user-input.ipynb -[2024-04-11T16:11:52.038Z] + sed s/.ipynb$// -[2024-04-11T16:11:52.038Z] + echo subset-user-input.ipynb -[2024-04-11T16:11:52.038Z] + filename=subset-user-input -[2024-04-11T16:11:52.038Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-04-11T16:11:52.038Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-11T16:11:53.949Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-04-11T16:12:15.945Z] [NbConvertApp] Writing 265259 bytes to buildout/subset-user-input.output.ipynb -[2024-04-11T16:12:15.945Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-11T16:12:15.945Z] + filename=subsetting.ipynb -[2024-04-11T16:12:15.945Z] + echo subsetting.ipynb -[2024-04-11T16:12:15.945Z] + sed s/.ipynb$// -[2024-04-11T16:12:15.945Z] + filename=subsetting -[2024-04-11T16:12:15.945Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-04-11T16:12:15.945Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-11T16:12:15.945Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook -[2024-04-11T16:12:25.953Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb -[2024-04-11T16:12:25.953Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-11T16:12:25.953Z] + filename=dap_subset.ipynb -[2024-04-11T16:12:25.953Z] + + sed s/.ipynb$//echo -[2024-04-11T16:12:25.953Z] dap_subset.ipynb -[2024-04-11T16:12:25.953Z] + filename=dap_subset -[2024-04-11T16:12:25.953Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-04-11T16:12:25.953Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-11T16:12:26.906Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-04-11T16:12:36.889Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb -[2024-04-11T16:12:36.889Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-11T16:12:36.889Z] + filename=finch-usage.ipynb -[2024-04-11T16:12:36.889Z] + echo finch-usage.ipynb -[2024-04-11T16:12:36.889Z] + sed s/.ipynb$// -[2024-04-11T16:12:36.889Z] + filename=finch-usage -[2024-04-11T16:12:36.889Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-04-11T16:12:36.889Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-11T16:12:38.313Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-04-11T16:12:50.561Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb -[2024-04-11T16:12:50.561Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-11T16:12:50.561Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-11T16:12:50.561Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-11T16:12:50.561Z] + sed s/.ipynb$// -[2024-04-11T16:12:50.561Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-04-11T16:12:50.561Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-04-11T16:12:50.561Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-11T16:12:51.993Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-04-11T16:12:57.291Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-04-11T16:12:57.556Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-11T16:12:57.556Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-11T16:12:57.556Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-11T16:12:57.556Z] + sed s/.ipynb$// -[2024-04-11T16:12:57.556Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-04-11T16:12:57.556Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-04-11T16:12:57.556Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-11T16:12:59.471Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-04-11T16:13:21.521Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-04-11T16:13:21.522Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-11T16:13:21.522Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-11T16:13:21.522Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-11T16:13:21.522Z] + sed s/.ipynb$// -[2024-04-11T16:13:21.522Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-04-11T16:13:21.522Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-04-11T16:13:21.522Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-11T16:13:21.522Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-04-11T16:23:28.754Z] [NbConvertApp] Writing 578104 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb -[2024-04-11T16:23:28.754Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-11T16:23:28.754Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-11T16:23:28.754Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-11T16:23:28.754Z] + sed s/.ipynb$// -[2024-04-11T16:23:28.754Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-04-11T16:23:28.754Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-04-11T16:23:28.754Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-11T16:23:28.755Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-04-11T16:23:38.738Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-04-11T16:23:39.000Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-11T16:23:39.000Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-11T16:23:39.000Z] + sed s/.ipynb$// -[2024-04-11T16:23:39.000Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-11T16:23:39.000Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-04-11T16:23:39.000Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-04-11T16:23:39.000Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-11T16:23:40.904Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-04-11T16:24:48.723Z] [NbConvertApp] Writing 1092477 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-04-11T16:24:48.723Z] + basename notebooks/hummingbird.ipynb -[2024-04-11T16:24:48.723Z] + filename=hummingbird.ipynb -[2024-04-11T16:24:48.723Z] + echo hummingbird.ipynb -[2024-04-11T16:24:48.723Z] + sed s/.ipynb$// -[2024-04-11T16:24:48.723Z] + filename=hummingbird -[2024-04-11T16:24:48.723Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-04-11T16:24:48.723Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-04-11T16:24:48.723Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-04-11T16:24:50.684Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb -[2024-04-11T16:24:50.684Z] + basename notebooks/stress-tests.ipynb -[2024-04-11T16:24:50.684Z] + filename=stress-tests.ipynb -[2024-04-11T16:24:50.684Z] + sed s/.ipynb$// -[2024-04-11T16:24:50.684Z] + echo stress-tests.ipynb -[2024-04-11T16:24:50.684Z] + filename=stress-tests -[2024-04-11T16:24:50.684Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-04-11T16:24:50.684Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-04-11T16:24:52.603Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-04-11T16:26:59.082Z] [NbConvertApp] Writing 428650 bytes to buildout/stress-tests.output.ipynb -[2024-04-11T16:26:59.082Z] + exit 1 -[2024-04-11T16:26:59.082Z] + EXIT_CODE=1 -[2024-04-11T16:26:59.082Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-04-11T16:26:59.082Z] + mkdir -p buildout/env-dump -[2024-04-11T16:26:59.082Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-04-11T16:26:59.082Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-04-11T16:26:59.082Z] + conda env export -n birdy -[2024-04-11T16:27:04.365Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-11T16:27:04.365Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-11T16:27:04.365Z] + conda list -n birdy --explicit -[2024-04-11T16:27:14.399Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-11T16:27:14.399Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-11T16:27:14.399Z] + pip freeze -[2024-04-11T16:27:14.967Z] + exit 1 +[2024-04-12T03:53:22.647Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-12T03:53:22.647Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-12T03:53:22.647Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-12T03:53:22.647Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-12T03:53:22.647Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-12T03:53:22.647Z] FINCH_BRANCH has been set to 'master' +[2024-04-12T03:53:22.647Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-12T03:53:22.647Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-12T03:53:22.647Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-12T03:53:22.647Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-12T03:53:22.647Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-12T03:53:22.647Z] RAVEN_BRANCH has been set to 'main' +[2024-04-12T03:53:22.647Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-12T03:53:22.647Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-12T03:53:22.647Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-12T03:53:22.647Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-12T03:53:22.647Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-12T03:53:22.647Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-12T03:53:22.647Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-12T03:53:22.647Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-12T03:53:22.647Z] + git clean -fdx +[2024-04-12T03:53:22.910Z] Removing .pytest_cache/ +[2024-04-12T03:53:22.910Z] Removing PAVICS-landing-master/ +[2024-04-12T03:53:22.910Z] Removing RavenPy-master/ +[2024-04-12T03:53:22.910Z] Removing __pycache__/ +[2024-04-12T03:53:22.910Z] Removing buildout/ +[2024-04-12T03:53:22.910Z] Removing esgf-compute-api-devel/ +[2024-04-12T03:53:22.910Z] Removing finch-master/ +[2024-04-12T03:53:22.910Z] Removing pavics-sdi-master/ +[2024-04-12T03:53:22.910Z] Removing raven-main/ +[2024-04-12T03:53:22.910Z] + ./downloadrepos +[2024-04-12T03:53:22.910Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-12T03:53:22.910Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-12T03:53:22.910Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-12T03:53:22.910Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-12T03:53:22.910Z] FINCH_BRANCH has been set to 'master' +[2024-04-12T03:53:22.910Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-12T03:53:22.910Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-12T03:53:22.910Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-12T03:53:22.910Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-12T03:53:22.910Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-12T03:53:22.910Z] RAVEN_BRANCH has been set to 'main' +[2024-04-12T03:53:22.910Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-12T03:53:22.911Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-12T03:53:22.911Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-12T03:53:22.911Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-12T03:53:22.911Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-12T03:53:22.911Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-12T03:53:22.911Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-12T03:53:22.911Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-12T03:53:22.911Z] + rm -rf pavics-sdi-* +[2024-04-12T03:53:22.911Z] + ls +[2024-04-12T03:53:22.911Z] + grep pavics-sdi +[2024-04-12T03:53:22.911Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:53:22.911Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-12T03:53:22.911Z] + shift +[2024-04-12T03:53:22.911Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:53:22.911Z] + shift +[2024-04-12T03:53:22.911Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-12T03:53:22.911Z] + tar xz +[2024-04-12T03:53:40.961Z] + ls +[2024-04-12T03:53:40.961Z] + grep pavics-sdi +[2024-04-12T03:53:40.961Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:53:40.961Z] + set +x +[2024-04-12T03:53:40.961Z] + rm -rf finch-* +[2024-04-12T03:53:40.961Z] + ls +[2024-04-12T03:53:40.961Z] + grep finch +[2024-04-12T03:53:40.961Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-12T03:53:40.961Z] + github_repo=https://github.com/bird-house/finch +[2024-04-12T03:53:40.961Z] + shift +[2024-04-12T03:53:40.961Z] + branch=master +[2024-04-12T03:53:40.961Z] + shift +[2024-04-12T03:53:40.961Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-12T03:53:40.961Z] + tar xz +[2024-04-12T03:53:42.913Z] + ls +[2024-04-12T03:53:42.913Z] + grep finch +[2024-04-12T03:53:42.913Z] finch-master +[2024-04-12T03:53:42.913Z] + set +x +[2024-04-12T03:53:42.913Z] + rm -rf PAVICS-landing-* +[2024-04-12T03:53:42.913Z] + ls +[2024-04-12T03:53:42.913Z] + grep PAVICS-landing +[2024-04-12T03:53:42.913Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:53:42.913Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-12T03:53:42.913Z] + shift +[2024-04-12T03:53:42.913Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:53:42.913Z] + shift +[2024-04-12T03:53:42.913Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-12T03:53:42.913Z] + tar xz +[2024-04-12T03:54:14.961Z] + ls +[2024-04-12T03:54:14.961Z] + grep PAVICS-landing +[2024-04-12T03:54:14.961Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:54:14.961Z] + set +x +[2024-04-12T03:54:14.961Z] + rm -rf raven-* +[2024-04-12T03:54:14.961Z] + ls +[2024-04-12T03:54:14.961Z] + grep raven +[2024-04-12T03:54:14.961Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-12T03:54:14.961Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-12T03:54:14.961Z] + shift +[2024-04-12T03:54:14.961Z] + branch=main +[2024-04-12T03:54:14.961Z] + shift +[2024-04-12T03:54:14.961Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-12T03:54:14.961Z] + tar xz +[2024-04-12T03:54:14.961Z] + ls +[2024-04-12T03:54:14.961Z] + grep raven +[2024-04-12T03:54:14.961Z] raven-main +[2024-04-12T03:54:14.961Z] + set +x +[2024-04-12T03:54:14.961Z] + rm -rf RavenPy-* +[2024-04-12T03:54:14.961Z] + ls +[2024-04-12T03:54:14.961Z] + grep RavenPy +[2024-04-12T03:54:14.961Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-12T03:54:14.961Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-12T03:54:14.961Z] + shift +[2024-04-12T03:54:14.961Z] + branch=master +[2024-04-12T03:54:14.961Z] + shift +[2024-04-12T03:54:14.961Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-12T03:54:14.961Z] + tar xz +[2024-04-12T03:54:36.869Z] + ls +[2024-04-12T03:54:36.869Z] + grep RavenPy +[2024-04-12T03:54:36.869Z] RavenPy-master +[2024-04-12T03:54:36.869Z] + set +x +[2024-04-12T03:54:36.869Z] + rm -rf esgf-compute-api-* +[2024-04-12T03:54:36.869Z] + ls +[2024-04-12T03:54:36.869Z] + grep esgf-compute-api +[2024-04-12T03:54:36.869Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-12T03:54:36.869Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-12T03:54:36.869Z] + shift +[2024-04-12T03:54:36.869Z] + branch=devel +[2024-04-12T03:54:36.869Z] + shift +[2024-04-12T03:54:36.869Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-12T03:54:36.869Z] + tar xz +[2024-04-12T03:54:36.869Z] + ls +[2024-04-12T03:54:36.869Z] + grep esgf-compute-api +[2024-04-12T03:54:36.869Z] esgf-compute-api-devel +[2024-04-12T03:54:36.869Z] + set +x +[2024-04-12T03:54:36.869Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:54:36.869Z] + sed s@/@-@g +[2024-04-12T03:54:36.869Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:54:36.869Z] + echo Ouranosinc/pavics-sdi +[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g +[2024-04-12T03:54:36.869Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-12T03:54:36.869Z] + echo master +[2024-04-12T03:54:36.869Z] + sed s@/@-@g +[2024-04-12T03:54:36.869Z] + FINCH_BRANCH=master +[2024-04-12T03:54:36.869Z] + echo bird-house/finch +[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g +[2024-04-12T03:54:36.869Z] + FINCH_REPO_NAME=finch +[2024-04-12T03:54:36.869Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:54:36.869Z] + sed s@/@-@g +[2024-04-12T03:54:36.869Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:54:36.869Z] + echo Ouranosinc/PAVICS-landing +[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g +[2024-04-12T03:54:36.869Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-12T03:54:36.869Z] + echo main +[2024-04-12T03:54:36.869Z] + sed s@/@-@g +[2024-04-12T03:54:36.869Z] + RAVEN_BRANCH=main +[2024-04-12T03:54:36.869Z] + echo Ouranosinc/raven +[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g +[2024-04-12T03:54:36.869Z] + RAVEN_REPO_NAME=raven +[2024-04-12T03:54:36.869Z] + echo master +[2024-04-12T03:54:36.869Z] + sed s@/@-@g +[2024-04-12T03:54:36.869Z] + RAVENPY_BRANCH=master +[2024-04-12T03:54:36.869Z] + echo CSHS-CWRA/RavenPy +[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g +[2024-04-12T03:54:36.869Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-12T03:54:36.869Z] + echo devel +[2024-04-12T03:54:36.869Z] + sed s@/@-@g +[2024-04-12T03:54:36.869Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-12T03:54:36.869Z] + echo ESGF/esgf-compute-api +[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g +[2024-04-12T03:54:36.869Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-12T03:54:36.869Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:54:36.869Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:54:36.869Z] + echo finch-master +[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:54:36.869Z] + FINCH_DIR=finch-master +[2024-04-12T03:54:36.869Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:54:36.869Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-12T03:54:36.869Z] + echo raven-main +[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:54:36.869Z] + RAVEN_DIR=raven-main +[2024-04-12T03:54:36.869Z] + echo RavenPy-master +[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:54:36.869Z] + RAVENPY_DIR=RavenPy-master +[2024-04-12T03:54:36.869Z] + echo esgf-compute-api-devel +[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-12T03:54:36.869Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-12T03:54:36.869Z] + echo true +[2024-04-12T03:54:36.869Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.869Z] + VERIFY_SSL=true +[2024-04-12T03:54:36.869Z] + [ xtrue = xfalse ] +[2024-04-12T03:54:36.869Z] + rm -v finch-master/setup.cfg +[2024-04-12T03:54:36.869Z] removed 'finch-master/setup.cfg' +[2024-04-12T03:54:36.869Z] + rm -v raven-main/setup.cfg +[2024-04-12T03:54:36.869Z] removed 'raven-main/setup.cfg' +[2024-04-12T03:54:36.869Z] + rm -v raven-main/pyproject.toml +[2024-04-12T03:54:36.870Z] removed 'raven-main/pyproject.toml' +[2024-04-12T03:54:36.870Z] + rm -v RavenPy-master/setup.cfg +[2024-04-12T03:54:36.870Z] removed 'RavenPy-master/setup.cfg' +[2024-04-12T03:54:36.870Z] + rm -v RavenPy-master/tox.ini +[2024-04-12T03:54:36.870Z] removed 'RavenPy-master/tox.ini' +[2024-04-12T03:54:36.870Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-12T03:54:36.870Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-12T03:54:36.870Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-12T03:54:36.870Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-12T03:54:36.870Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-12T03:54:36.870Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-12T03:54:36.870Z] + echo false +[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.870Z] + TEST_MAGPIE_AUTH=false +[2024-04-12T03:54:36.870Z] + echo true +[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.870Z] + TEST_PAVICS_SDI_REPO=true +[2024-04-12T03:54:36.870Z] + echo false +[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.870Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-12T03:54:36.870Z] + echo true +[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.870Z] + TEST_FINCH_REPO=true +[2024-04-12T03:54:36.870Z] + echo true +[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.870Z] + TEST_PAVICS_LANDING_REPO=true +[2024-04-12T03:54:36.870Z] + echo false +[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.870Z] + TEST_RAVEN_REPO=false +[2024-04-12T03:54:36.870Z] + echo false +[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.870Z] + TEST_RAVENPY_REPO=false +[2024-04-12T03:54:36.870Z] + echo false +[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.870Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-12T03:54:36.870Z] + echo true +[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] +[2024-04-12T03:54:36.870Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-04-12T03:54:36.870Z] + NOTEBOOKS_TO_TEST= +[2024-04-12T03:54:36.870Z] + [ xfalse = xtrue ] +[2024-04-12T03:54:36.870Z] + [ xtrue = xtrue ] +[2024-04-12T03:54:36.870Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb +[2024-04-12T03:54:36.870Z] + [ xfalse = xtrue ] +[2024-04-12T03:54:36.870Z] + [ xtrue = xtrue ] +[2024-04-12T03:54:36.870Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-04-12T03:54:36.870Z] + [ xtrue = xtrue ] +[2024-04-12T03:54:36.870Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb +[2024-04-12T03:54:36.870Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-12T03:54:36.870Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-04-12T03:54:36.870Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-12T03:54:36.870Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-12T03:54:36.870Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-12T03:54:36.870Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-12T03:54:36.870Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators +[2024-04-12T03:54:36.870Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-12T03:54:36.870Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-12T03:54:36.870Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-04-12T03:54:36.870Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.873Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-12T03:54:36.873Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-04-12T03:54:36.873Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-04-12T03:54:36.873Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-04-12T03:54:36.873Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' +[2024-04-12T03:54:36.873Z] + [ xfalse = xtrue ] +[2024-04-12T03:54:36.873Z] + [ xfalse = xtrue ] +[2024-04-12T03:54:36.873Z] + [ xfalse = xtrue ] +[2024-04-12T03:54:36.873Z] + [ xtrue = xtrue ] +[2024-04-12T03:54:36.873Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-12T03:54:36.873Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-12T03:54:36.873Z] + [ -n ] +[2024-04-12T03:54:36.873Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-12T03:54:36.873Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-12T03:54:36.873Z] Will run notebooks against pavics.ouranos.ca +[2024-04-12T03:54:36.873Z] + [ -z ] +[2024-04-12T03:54:36.873Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-04-12T03:54:36.873Z] + git diff +[2024-04-12T03:54:36.873Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-12T03:54:36.875Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-04-12T03:54:37.539Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-12T03:54:37.539Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-12T03:54:37.804Z] ============================= test session starts ============================== +[2024-04-12T03:54:37.804Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-04-12T03:54:37.804Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-04-12T03:54:37.804Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-12T03:54:37.804Z] collected 220 items +[2024-04-12T03:54:37.804Z] +[2024-04-12T03:54:41.095Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-04-12T03:55:14.533Z] ..... [ 2%] +[2024-04-12T03:55:17.102Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-04-12T03:55:23.218Z] ...... [ 5%] +[2024-04-12T03:55:25.145Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-04-12T03:55:30.999Z] ..... [ 8%] +[2024-04-12T03:55:31.938Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-04-12T03:55:51.000Z] ....... [ 12%] +[2024-04-12T03:55:59.144Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] +[2024-04-12T03:59:10.150Z] ........... [ 17%] +[2024-04-12T03:59:10.729Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-04-12T03:59:19.021Z] ............... [ 25%] +[2024-04-12T03:59:21.579Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-04-12T03:59:27.083Z] .... [ 27%] +[2024-04-12T03:59:29.023Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] +[2024-04-12T04:00:38.668Z] ..... [ 30%] +[2024-04-12T04:00:42.948Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-04-12T04:00:50.555Z] ..... [ 32%] +[2024-04-12T04:00:52.493Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] +[2024-04-12T04:00:56.124Z] ...... [ 35%] +[2024-04-12T04:00:57.076Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-04-12T04:01:00.187Z] .... [ 38%] +[2024-04-12T04:01:18.286Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-04-12T04:02:50.567Z] ........................... [ 50%] +[2024-04-12T04:02:50.567Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-04-12T04:02:51.088Z] ... [ 52%] +[2024-04-12T04:02:52.024Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-04-12T04:03:09.735Z] ........................ [ 64%] +[2024-04-12T04:03:13.048Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-04-12T04:03:17.843Z] ..... [ 66%] +[2024-04-12T04:03:26.446Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] +[2024-04-12T04:03:34.441Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-04-12T04:03:35.821Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-04-12T04:03:38.886Z] ...... [ 77%] +[2024-04-12T04:03:47.008Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] +[2024-04-12T04:04:00.323Z] ............. [ 84%] +[2024-04-12T04:04:10.312Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-04-12T04:04:31.702Z] ....s [ 86%] +[2024-04-12T04:04:38.258Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-04-12T04:04:58.904Z] .F. [ 88%] +[2024-04-12T04:05:11.097Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-04-12T04:05:59.348Z] ...... [ 91%] +[2024-04-12T04:05:59.870Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-04-12T04:08:02.287Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] =================================== FAILURES =================================== +[2024-04-12T04:08:02.287Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ +[2024-04-12T04:08:02.287Z] Notebook cell execution failed +[2024-04-12T04:08:02.287Z] Cell 2: Cell execution caused an exception +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] Input: +[2024-04-12T04:08:02.287Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) +[2024-04-12T04:08:02.287Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] chng_f, pos_f = xens.change_significance( +[2024-04-12T04:08:02.287Z] fut.sel(time=fut["time.season"] == "JJA"), +[2024-04-12T04:08:02.287Z] ref.sel(time=ref["time.season"] == "JJA"), +[2024-04-12T04:08:02.287Z] test="ttest", +[2024-04-12T04:08:02.287Z] ) +[2024-04-12T04:08:02.287Z] plt.figure( +[2024-04-12T04:08:02.287Z] figsize=(15, 6), +[2024-04-12T04:08:02.287Z] ) +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] plt.subplot(1, 2, 1) +[2024-04-12T04:08:02.287Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] plt.title(chng_f.description.split(".")[0]) +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] plt.subplot(1, 2, 2) +[2024-04-12T04:08:02.287Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-12T04:08:02.287Z] plt.title(pos_f.description.split(".")[0]) +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] display() +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] Traceback: +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] --------------------------------------------------------------------------- +[2024-04-12T04:08:02.287Z] AttributeError Traceback (most recent call last) +[2024-04-12T04:08:02.287Z] Cell In[1], line 20 +[2024-04-12T04:08:02.287Z]  18 plt.subplot(1, 2, 2) +[2024-04-12T04:08:02.287Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-12T04:08:02.287Z] ---> 20 plt.title(pos_f.description.split(".")[0]) +[2024-04-12T04:08:02.287Z]  22 display() +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-04-12T04:08:02.287Z]  275 with suppress(KeyError): +[2024-04-12T04:08:02.287Z]  276 return source[name] +[2024-04-12T04:08:02.287Z] --> 277 raise AttributeError( +[2024-04-12T04:08:02.287Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-04-12T04:08:02.287Z]  279 ) +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-04-12T04:08:02.287Z] +[2024-04-12T04:08:02.287Z] =========================== short test summary info ============================ +[2024-04-12T04:08:02.287Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-04-12T04:08:02.287Z] ============= 1 failed, 218 passed, 1 skipped in 802.78s (0:13:22) ============= +[2024-04-12T04:08:02.287Z] + EXIT_CODE=1 +[2024-04-12T04:08:02.287Z] + echo true +[2024-04-12T04:08:02.287Z] + tr [:upper:] [:lower:] +[2024-04-12T04:08:02.287Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-04-12T04:08:02.287Z] + [ xtrue = xtrue ] +[2024-04-12T04:08:02.287Z] + mkdir -p buildout +[2024-04-12T04:08:02.287Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-12T04:08:02.287Z] + filename=CaSR_basic.ipynb +[2024-04-12T04:08:02.287Z] + echo CaSR_basic.ipynb +[2024-04-12T04:08:02.287Z] + sed s/.ipynb$// +[2024-04-12T04:08:02.287Z] + filename=CaSR_basic +[2024-04-12T04:08:02.287Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-04-12T04:08:02.287Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-12T04:08:02.287Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-04-12T04:08:28.959Z] 2024-04-12 04:08:26,426 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. +[2024-04-12T04:08:28.959Z] Traceback (most recent call last): +[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read +[2024-04-12T04:08:28.959Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) +[2024-04-12T04:08:28.959Z] tornado.iostream.StreamClosedError: Stream is closed +[2024-04-12T04:08:28.959Z] +[2024-04-12T04:08:28.959Z] The above exception was the direct cause of the following exception: +[2024-04-12T04:08:28.959Z] +[2024-04-12T04:08:28.959Z] Traceback (most recent call last): +[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat +[2024-04-12T04:08:28.959Z] response = await retry_operation( +[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation +[2024-04-12T04:08:28.959Z] return await retry( +[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry +[2024-04-12T04:08:28.959Z] return await coro() +[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc +[2024-04-12T04:08:28.959Z] return await send_recv(comm=comm, op=key, **kwargs) +[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv +[2024-04-12T04:08:28.959Z] response = await comm.read(deserializers=deserializers) +[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read +[2024-04-12T04:08:28.959Z] convert_stream_closed_error(self, e) +[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error +[2024-04-12T04:08:28.959Z] raise CommClosedError(f"in {obj}: {exc}") from exc +[2024-04-12T04:08:28.959Z] distributed.comm.core.CommClosedError: in : Stream is closed +[2024-04-12T04:08:50.918Z] [NbConvertApp] Writing 694582 bytes to buildout/CaSR_basic.output.ipynb +[2024-04-12T04:08:50.918Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-12T04:08:50.918Z] + filename=WCS_example.ipynb +[2024-04-12T04:08:50.918Z] + echo WCS_example.ipynb +[2024-04-12T04:08:50.918Z] + sed s/.ipynb$// +[2024-04-12T04:08:50.918Z] + filename=WCS_example +[2024-04-12T04:08:50.918Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-04-12T04:08:50.918Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-12T04:08:50.918Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-04-12T04:09:00.892Z] [NbConvertApp] Writing 144062 bytes to buildout/WCS_example.output.ipynb +[2024-04-12T04:09:00.892Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-12T04:09:00.892Z] + filename=WFS_example.ipynb +[2024-04-12T04:09:00.892Z] + echo WFS_example.ipynb +[2024-04-12T04:09:00.892Z] + sed s/.ipynb$// +[2024-04-12T04:09:00.892Z] + filename=WFS_example +[2024-04-12T04:09:00.892Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-04-12T04:09:00.892Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-12T04:09:02.841Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-04-12T04:09:12.806Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb +[2024-04-12T04:09:12.806Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-12T04:09:12.806Z] + filename=WMS_example.ipynb +[2024-04-12T04:09:12.806Z] + echo WMS_example.ipynb +[2024-04-12T04:09:12.806Z] + sed s/.ipynb$// +[2024-04-12T04:09:12.806Z] + filename=WMS_example +[2024-04-12T04:09:12.806Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-04-12T04:09:12.806Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-12T04:09:13.754Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-04-12T04:09:19.044Z] [NbConvertApp] Writing 46204 bytes to buildout/WMS_example.output.ipynb +[2024-04-12T04:09:19.044Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-12T04:09:19.044Z] + filename=climex.ipynb +[2024-04-12T04:09:19.044Z] + + echo climex.ipynb +[2024-04-12T04:09:19.044Z] sed s/.ipynb$// +[2024-04-12T04:09:19.044Z] + filename=climex +[2024-04-12T04:09:19.044Z] + [ -e buildout/climex.output.ipynb ] +[2024-04-12T04:09:19.044Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-12T04:09:19.991Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook +[2024-04-12T04:12:56.533Z] [NbConvertApp] Writing 1790264 bytes to buildout/climex.output.ipynb +[2024-04-12T04:12:56.533Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-12T04:12:56.533Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-04-12T04:12:56.533Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-04-12T04:12:56.533Z] + sed s/.ipynb$// +[2024-04-12T04:12:56.533Z] + filename=eccc-geoapi-climate-stations +[2024-04-12T04:12:56.533Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-04-12T04:12:56.533Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-12T04:12:57.915Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-04-12T04:13:10.093Z] [NbConvertApp] Writing 279646 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-04-12T04:13:10.093Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-12T04:13:10.093Z] + filename=eccc-geoapi-xclim.ipynb +[2024-04-12T04:13:10.093Z] + echo eccc-geoapi-xclim.ipynb +[2024-04-12T04:13:10.093Z] + sed s/.ipynb$// +[2024-04-12T04:13:10.093Z] + filename=eccc-geoapi-xclim +[2024-04-12T04:13:10.093Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-04-12T04:13:10.093Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-12T04:13:11.992Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-04-12T04:13:22.004Z] [NbConvertApp] Writing 108151 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-04-12T04:13:22.004Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-12T04:13:22.004Z] + filename=esgf-dap.ipynb +[2024-04-12T04:13:22.004Z] + + echo esgf-dap.ipynb +[2024-04-12T04:13:22.004Z] sed s/.ipynb$// +[2024-04-12T04:13:22.004Z] + filename=esgf-dap +[2024-04-12T04:13:22.004Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-04-12T04:13:22.004Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-12T04:13:22.934Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-04-12T04:15:44.470Z] [NbConvertApp] Writing 39049 bytes to buildout/esgf-dap.output.ipynb +[2024-04-12T04:15:44.470Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-12T04:15:44.470Z] + filename=forecasts.ipynb +[2024-04-12T04:15:44.470Z] + echo forecasts.ipynb +[2024-04-12T04:15:44.470Z] + sed s/.ipynb$// +[2024-04-12T04:15:44.470Z] + filename=forecasts +[2024-04-12T04:15:44.470Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-04-12T04:15:44.470Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-12T04:15:44.470Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook +[2024-04-12T04:15:52.686Z] [NbConvertApp] Writing 165341 bytes to buildout/forecasts.output.ipynb +[2024-04-12T04:15:52.686Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-12T04:15:52.686Z] + filename=jupyter_extensions.ipynb +[2024-04-12T04:15:52.686Z] + echo jupyter_extensions.ipynb +[2024-04-12T04:15:52.686Z] + sed s/.ipynb$// +[2024-04-12T04:15:52.686Z] + filename=jupyter_extensions +[2024-04-12T04:15:52.686Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-04-12T04:15:52.686Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-12T04:15:54.080Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-04-12T04:15:55.997Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb +[2024-04-12T04:15:56.269Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-12T04:15:56.269Z] + filename=opendap.ipynb +[2024-04-12T04:15:56.269Z] + echo opendap.ipynb +[2024-04-12T04:15:56.269Z] + sed s/.ipynb$// +[2024-04-12T04:15:56.269Z] + filename=opendap +[2024-04-12T04:15:56.269Z] + [ -e buildout/opendap.output.ipynb ] +[2024-04-12T04:15:56.269Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-12T04:15:58.175Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook +[2024-04-12T04:16:08.233Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb +[2024-04-12T04:16:08.233Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-12T04:16:08.233Z] + filename=pavics_thredds.ipynb +[2024-04-12T04:16:08.233Z] + + echo pavics_thredds.ipynb +[2024-04-12T04:16:08.233Z] sed s/.ipynb$// +[2024-04-12T04:16:08.233Z] + filename=pavics_thredds +[2024-04-12T04:16:08.233Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-04-12T04:16:08.233Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-12T04:16:10.150Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-04-12T04:16:13.447Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-12T04:16:13.447Z] context: Access to service is forbidden. +[2024-04-12T04:16:13.447Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-12T04:16:13.447Z] context: Access to service is forbidden. +[2024-04-12T04:16:17.648Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb +[2024-04-12T04:16:17.908Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-12T04:16:17.908Z] + filename=regridding.ipynb +[2024-04-12T04:16:17.908Z] + echo regridding.ipynb +[2024-04-12T04:16:17.909Z] + sed s/.ipynb$// +[2024-04-12T04:16:17.909Z] + filename=regridding +[2024-04-12T04:16:17.909Z] + [ -e buildout/regridding.output.ipynb ] +[2024-04-12T04:16:17.909Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-12T04:16:19.358Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook +[2024-04-12T04:18:10.854Z] [NbConvertApp] Writing 1239953 bytes to buildout/regridding.output.ipynb +[2024-04-12T04:18:10.854Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-12T04:18:10.854Z] + filename=rendering.ipynb +[2024-04-12T04:18:10.854Z] + + echo rendering.ipynb +[2024-04-12T04:18:10.854Z] sed s/.ipynb$// +[2024-04-12T04:18:10.854Z] + filename=rendering +[2024-04-12T04:18:10.854Z] + [ -e buildout/rendering.output.ipynb ] +[2024-04-12T04:18:10.854Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-12T04:18:10.854Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook +[2024-04-12T04:18:10.854Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb +[2024-04-12T04:18:10.854Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-12T04:18:10.854Z] + filename=subset-user-input.ipynb +[2024-04-12T04:18:10.854Z] + + sed s/.ipynb$// +[2024-04-12T04:18:10.854Z] echo subset-user-input.ipynb +[2024-04-12T04:18:10.854Z] + filename=subset-user-input +[2024-04-12T04:18:10.854Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-04-12T04:18:10.854Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-12T04:18:10.854Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-04-12T04:18:28.961Z] [NbConvertApp] Writing 255279 bytes to buildout/subset-user-input.output.ipynb +[2024-04-12T04:18:28.962Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-12T04:18:28.962Z] + filename=subsetting.ipynb +[2024-04-12T04:18:28.962Z] + sed s/.ipynb$// +[2024-04-12T04:18:28.962Z] + echo subsetting.ipynb +[2024-04-12T04:18:28.962Z] + filename=subsetting +[2024-04-12T04:18:28.962Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-04-12T04:18:28.962Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-12T04:18:29.530Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook +[2024-04-12T04:18:39.528Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb +[2024-04-12T04:18:39.528Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-12T04:18:39.528Z] + filename=dap_subset.ipynb +[2024-04-12T04:18:39.528Z] + echo dap_subset.ipynb +[2024-04-12T04:18:39.528Z] + sed s/.ipynb$// +[2024-04-12T04:18:39.528Z] + filename=dap_subset +[2024-04-12T04:18:39.528Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-04-12T04:18:39.528Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-12T04:18:40.469Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-04-12T04:18:50.542Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb +[2024-04-12T04:18:50.542Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-12T04:18:50.542Z] + filename=finch-usage.ipynb +[2024-04-12T04:18:50.542Z] + echo finch-usage.ipynb +[2024-04-12T04:18:50.542Z] + sed s/.ipynb$// +[2024-04-12T04:18:50.542Z] + filename=finch-usage +[2024-04-12T04:18:50.542Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-04-12T04:18:50.542Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-12T04:18:51.917Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-04-12T04:19:04.135Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb +[2024-04-12T04:19:04.135Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-12T04:19:04.135Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-12T04:19:04.135Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-12T04:19:04.135Z] + sed s/.ipynb$// +[2024-04-12T04:19:04.135Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-04-12T04:19:04.135Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-04-12T04:19:04.135Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-12T04:19:04.135Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-04-12T04:19:10.696Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-04-12T04:19:10.696Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-12T04:19:10.696Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-12T04:19:10.696Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-12T04:19:10.696Z] + sed s/.ipynb$// +[2024-04-12T04:19:10.696Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-04-12T04:19:10.696Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-04-12T04:19:10.696Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-12T04:19:11.633Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-04-12T04:19:33.648Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-04-12T04:19:33.648Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-12T04:19:33.648Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-12T04:19:33.648Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-12T04:19:33.648Z] + sed s/.ipynb$// +[2024-04-12T04:19:33.648Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-04-12T04:19:33.648Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-04-12T04:19:33.649Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-12T04:19:35.027Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-04-12T04:30:11.780Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (600s). +[2024-04-12T04:30:11.780Z] Traceback (most recent call last): +[2024-04-12T04:30:11.780Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply +[2024-04-12T04:30:11.780Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async +[2024-04-12T04:30:11.781Z] result = await obj +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg +[2024-04-12T04:30:11.781Z] raise Empty +[2024-04-12T04:30:11.781Z] _queue.Empty +[2024-04-12T04:30:11.781Z] +[2024-04-12T04:30:11.781Z] During handling of the above exception, another exception occurred: +[2024-04-12T04:30:11.781Z] +[2024-04-12T04:30:11.781Z] Traceback (most recent call last): +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in +[2024-04-12T04:30:11.781Z] sys.exit(main()) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance +[2024-04-12T04:30:11.781Z] super().launch_instance(argv=argv, **kwargs) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance +[2024-04-12T04:30:11.781Z] app.start() +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start +[2024-04-12T04:30:11.781Z] self.convert_notebooks() +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks +[2024-04-12T04:30:11.781Z] self.convert_single_notebook(notebook_filename) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook +[2024-04-12T04:30:11.781Z] output, resources = self.export_single_notebook( +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook +[2024-04-12T04:30:11.781Z] output, resources = self.exporter.from_filename( +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename +[2024-04-12T04:30:11.781Z] return self.from_file(f, resources=resources, **kw) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file +[2024-04-12T04:30:11.781Z] return self.from_notebook_node( +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node +[2024-04-12T04:30:11.781Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node +[2024-04-12T04:30:11.781Z] nb_copy, resources = self._preprocess(nb_copy, resources) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess +[2024-04-12T04:30:11.781Z] nbc, resc = preprocessor(nbc, resc) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ +[2024-04-12T04:30:11.781Z] return self.preprocess(nb, resources) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess +[2024-04-12T04:30:11.781Z] self.preprocess_cell(cell, resources, index) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell +[2024-04-12T04:30:11.781Z] cell = self.execute_cell(cell, index, store_history=True) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped +[2024-04-12T04:30:11.781Z] return loop.run_until_complete(inner) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete +[2024-04-12T04:30:11.781Z] return future.result() +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell +[2024-04-12T04:30:11.781Z] exec_reply = await self.task_poll_for_reply +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply +[2024-04-12T04:30:11.781Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) +[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout +[2024-04-12T04:30:11.781Z] raise CellTimeoutError.error_from_timeout_and_cell( +[2024-04-12T04:30:11.781Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 600 seconds. +[2024-04-12T04:30:11.781Z] The message was: Cell execution timed out. +[2024-04-12T04:30:11.781Z] Here is a preview of the cell contents: +[2024-04-12T04:30:11.781Z] ------------------- +[2024-04-12T04:30:11.781Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] +[2024-04-12T04:30:11.781Z] ... +[2024-04-12T04:30:11.781Z] [' print("finished")', '', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] +[2024-04-12T04:30:11.781Z] ------------------- +[2024-04-12T04:30:11.781Z] +[2024-04-12T04:30:11.781Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-12T04:30:11.781Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-12T04:30:11.781Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-12T04:30:11.781Z] + sed s/.ipynb$// +[2024-04-12T04:30:11.781Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-04-12T04:30:11.781Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-04-12T04:30:11.781Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-12T04:30:11.781Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-04-12T04:30:43.863Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-04-12T04:30:43.864Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-12T04:30:43.864Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-12T04:30:43.864Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-12T04:30:43.864Z] + sed s/.ipynb$// +[2024-04-12T04:30:43.864Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-04-12T04:30:43.864Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-04-12T04:30:43.864Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-12T04:30:43.864Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-04-12T04:31:51.624Z] [NbConvertApp] Writing 1051937 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-04-12T04:31:51.624Z] + basename notebooks/hummingbird.ipynb +[2024-04-12T04:31:51.624Z] + filename=hummingbird.ipynb +[2024-04-12T04:31:51.624Z] + + sed s/.ipynb$// +[2024-04-12T04:31:51.625Z] echo hummingbird.ipynb +[2024-04-12T04:31:51.625Z] + filename=hummingbird +[2024-04-12T04:31:51.625Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-04-12T04:31:51.625Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-04-12T04:31:51.625Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-04-12T04:31:51.625Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb +[2024-04-12T04:31:51.625Z] + basename notebooks/stress-tests.ipynb +[2024-04-12T04:31:51.625Z] + filename=stress-tests.ipynb +[2024-04-12T04:31:51.625Z] + sed s/.ipynb$// +[2024-04-12T04:31:51.625Z] + echo stress-tests.ipynb +[2024-04-12T04:31:51.625Z] + filename=stress-tests +[2024-04-12T04:31:51.625Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-04-12T04:31:51.625Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-04-12T04:31:51.625Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-04-12T04:33:58.115Z] [NbConvertApp] Writing 428563 bytes to buildout/stress-tests.output.ipynb +[2024-04-12T04:33:58.115Z] + exit 1 +[2024-04-12T04:33:58.115Z] + EXIT_CODE=1 +[2024-04-12T04:33:58.116Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-04-12T04:33:58.116Z] + mkdir -p buildout/env-dump +[2024-04-12T04:33:58.116Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-04-12T04:33:58.116Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-04-12T04:33:58.116Z] + conda env export -n birdy +[2024-04-12T04:34:10.309Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-12T04:34:10.309Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-12T04:34:10.309Z] + conda list -n birdy --explicit +[2024-04-12T04:34:20.251Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-12T04:34:20.251Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-12T04:34:20.252Z] + pip freeze +[2024-04-12T04:34:20.252Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -863,41 +878,41 @@ $ docker top 2abf83cdd74e10acfe44bf0aad443e5cd0fcd7e0b43b4378bbf1731f7c2bb24e -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-11T16:27:16.106Z] Archiving artifacts -[2024-04-11T16:27:16.138Z] Recording fingerprints +[2024-04-12T04:34:22.033Z] Archiving artifacts +[2024-04-12T04:34:22.055Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:16.168Z] Archiving artifacts -[2024-04-11T16:27:16.903Z] Recording fingerprints +[2024-04-12T04:34:22.115Z] Archiving artifacts +[2024-04-12T04:34:22.962Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:17.490Z] Archiving artifacts -[2024-04-11T16:27:17.631Z] Recording fingerprints +[2024-04-12T04:34:24.439Z] Archiving artifacts +[2024-04-12T04:34:25.831Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:17.679Z] Archiving artifacts -[2024-04-11T16:27:17.700Z] Recording fingerprints +[2024-04-12T04:34:26.051Z] Archiving artifacts +[2024-04-12T04:34:26.071Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:17.724Z] Archiving artifacts -[2024-04-11T16:27:17.747Z] Recording fingerprints +[2024-04-12T04:34:26.090Z] Archiving artifacts +[2024-04-12T04:34:26.113Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:17.819Z] Archiving artifacts -[2024-04-11T16:27:17.884Z] Recording fingerprints +[2024-04-12T04:34:26.240Z] Archiving artifacts +[2024-04-12T04:34:26.286Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:18.078Z] Archiving artifacts -[2024-04-11T16:27:18.098Z] Recording fingerprints +[2024-04-12T04:34:27.076Z] Archiving artifacts +[2024-04-12T04:34:27.089Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:18.131Z] Archiving artifacts -[2024-04-11T16:27:18.173Z] Recording fingerprints +[2024-04-12T04:34:27.106Z] Archiving artifacts +[2024-04-12T04:34:27.146Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:18.244Z] Archiving artifacts -[2024-04-11T16:27:18.648Z] Recording fingerprints +[2024-04-12T04:34:27.505Z] Archiving artifacts +[2024-04-12T04:34:27.877Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:19.016Z] Archiving artifacts -[2024-04-11T16:27:20.143Z] Recording fingerprints +[2024-04-12T04:34:28.112Z] Archiving artifacts +[2024-04-12T04:34:29.006Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-11T16:27:20.345Z] Archiving artifacts -[2024-04-11T16:27:20.369Z] Recording fingerprints +[2024-04-12T04:34:32.088Z] Archiving artifacts +[2024-04-12T04:34:32.103Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-04-11T16:27:20.687Z] Sending e-mails to: vu.long@ouranos.ca +[2024-04-12T04:34:32.461Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -907,8 +922,8 @@ $ docker top 2abf83cdd74e10acfe44bf0aad443e5cd0fcd7e0b43b4378bbf1731f7c2bb24e -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 2abf83cdd74e10acfe44bf0aad443e5cd0fcd7e0b43b4378bbf1731f7c2bb24e -$ docker rm -f 2abf83cdd74e10acfe44bf0aad443e5cd0fcd7e0b43b4378bbf1731f7c2bb24e +$ docker stop --time=1 31a69ca4dbfc4c2d71081aac6f92e6dd5b8cf9aea4aaa92c9f1ea209873e7f05 +$ docker rm -f 31a69ca4dbfc4c2d71081aac6f92e6dd5b8cf9aea4aaa92c9f1ea209873e7f05 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 6f6a2ffb32a9b7c6ad7a286d99f28db1f147e137 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Fri, 19 Apr 2024 11:59:10 -0400 Subject: [PATCH 069/104] docker: pin jupyter-archive to older ver for the "Extract Archive" option See https://github.com/jupyterlab-contrib/jupyter-archive/issues/132 --- docker/environment.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/environment.yml b/docker/environment.yml index 15c527b..c6ac089 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -174,7 +174,9 @@ dependencies: - jupyterlab-git # Voilà turns Jupyter notebooks into standalone web applications - voila - - jupyter-archive + # PIN jupyter-archive due to + # https://github.com/jupyterlab-contrib/jupyter-archive/issues/132 + - jupyter-archive <= 3.3.4 # https://github.com/jtpio/jupyterlab-topbar - jupyterlab-topbar # https://github.com/jtpio/jupyterlab-system-monitor (was from jupyterlab-topbar) From 51c0ba837b2b69c0e047df4e1a960e98ef126657 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Fri, 19 Apr 2024 12:04:00 -0400 Subject: [PATCH 070/104] docker: add openpyxl for CCCS Panel (Eva request) --- docker/environment.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/environment.yml b/docker/environment.yml index c6ac089..aae421f 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -96,6 +96,9 @@ dependencies: # https://python-pptx.readthedocs.io/en/latest/ # https://anaconda.org/conda-forge/python-pptx - python-pptx + # openpyxl: library to read/write Excel 2010 xlsx/xlsm files + # https://anaconda.org/conda-forge/openpyxl + - openpyxl - nc-time-axis # - cftime # from xclim and ravenpy # - statsmodels # for ravenpy From f3491fe3ba264ff563a77ceaa4042b03994effff Mon Sep 17 00:00:00 2001 From: Long Vu Date: Fri, 19 Apr 2024 16:51:33 -0400 Subject: [PATCH 071/104] release: update to use image pavics/workflow-tests:py310-240419 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 62046ae..e61c357 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-240411" + image "pavics/workflow-tests:py310-240419" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 6edf09c..ef1e02c 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-240411 +FROM pavics/workflow-tests:py310-240419 USER root diff --git a/launchcontainer b/launchcontainer index 4dd7f83..c3e68b3 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240411" + DOCKER_IMAGE="pavics/workflow-tests:py310-240419" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index cc81048..53b87f1 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240411" + DOCKER_IMAGE="pavics/workflow-tests:py310-240419" fi if [ -z "$CONTAINER_NAME" ]; then From 9e628429a7752c9267f21a4dddbf305a1940e62d Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 20 Apr 2024 10:48:36 -0400 Subject: [PATCH 072/104] docker: py310-240419: docker hub build log --- docker/saved_buildout/docker-buildlogs.txt | 12030 +++++++++---------- 1 file changed, 5991 insertions(+), 6039 deletions(-) diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index 4c16705..17404ab 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,6039 +1,5991 @@ -2024-04-11T17:38:05Z Building in Docker Cloud's infrastructure... -2024-04-11T17:38:06Z Cloning into '.'... -2024-04-11T17:38:06Z Warning: Permanently added the RSA host key for IP address '140.82.112.3' to the list of known hosts. -2024-04-11T17:38:08Z Switched to a new branch 'docker-py310-240411' -2024-04-11T17:38:08Z KernelVersion: 5.4.0-1068-aws -2024-04-11T17:38:08Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-04-11T17:38:08Z Arch: amd64 -2024-04-11T17:38:08Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-04-11T17:38:08Z ApiVersion: 1.41 -2024-04-11T17:38:08Z Platform: {u'Name': u'Docker Engine - Community'} -2024-04-11T17:38:08Z Version: 20.10.15 -2024-04-11T17:38:08Z MinAPIVersion: 1.12 -2024-04-11T17:38:08Z GitCommit: 4433bf6 -2024-04-11T17:38:08Z Os: linux -2024-04-11T17:38:08Z GoVersion: go1.17.9 -2024-04-11T17:38:08Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240411... -2024-04-11T17:38:13Z #1 [internal] load build definition from Dockerfile -2024-04-11T17:38:13Z #1 transferring dockerfile: 6.99kB done -2024-04-11T17:38:13Z #1 DONE 0.1s -2024-04-11T17:38:13Z -2024-04-11T17:38:13Z #2 [internal] load .dockerignore -2024-04-11T17:38:13Z #2 transferring context: 2B done -2024-04-11T17:38:13Z #2 DONE 0.0s -2024-04-11T17:38:13Z -2024-04-11T17:38:13Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-04-11T17:38:14Z #3 ... -2024-04-11T17:38:14Z -2024-04-11T17:38:14Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-04-11T17:38:14Z #4 DONE 0.0s -2024-04-11T17:38:14Z -2024-04-11T17:38:14Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-04-11T17:38:14Z #3 DONE 0.6s -2024-04-11T17:38:14Z -2024-04-11T17:38:14Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-11T17:38:14Z #5 resolve docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 done -2024-04-11T17:38:14Z #5 ... -2024-04-11T17:38:14Z -2024-04-11T17:38:14Z #6 [internal] load build context -2024-04-11T17:38:14Z #6 transferring context: 9.58kB done -2024-04-11T17:38:14Z #6 DONE 0.0s -2024-04-11T17:38:14Z -2024-04-11T17:38:14Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-11T17:38:14Z #5 sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 2.36kB / 2.36kB done -2024-04-11T17:38:14Z #5 sha256:c1eb4341b867d2e7521cb60c732f48bd704dac16f3b94156bc8f023540269a2d 869B / 869B done -2024-04-11T17:38:14Z #5 sha256:65e23f85a59547217d7fd319a086831a39e40e86fa7148433c3ef446255a9446 4.36kB / 4.36kB done -2024-04-11T17:38:14Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 0B / 31.42MB 0.1s -2024-04-11T17:38:14Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 0B / 50.08MB 0.1s -2024-04-11T17:38:14Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 0B / 147.31MB 0.1s -2024-04-11T17:38:14Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 7.34MB / 31.42MB 0.2s -2024-04-11T17:38:14Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 16.78MB / 31.42MB 0.3s -2024-04-11T17:38:14Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 24.12MB / 31.42MB 0.5s -2024-04-11T17:38:14Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 7.34MB / 50.08MB 0.5s -2024-04-11T17:38:15Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 26.52MB / 31.42MB 0.6s -2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 10.60MB / 50.08MB 0.6s -2024-04-11T17:38:15Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 0.8s -2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 18.71MB / 50.08MB 0.8s -2024-04-11T17:38:15Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.49MB / 147.31MB 0.8s -2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 22.02MB / 50.08MB 0.9s -2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 27.26MB / 50.08MB 1.0s -2024-04-11T17:38:15Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 19.05MB / 147.31MB 1.0s -2024-04-11T17:38:15Z #5 sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 31.42MB / 31.42MB 1.1s done -2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 35.65MB / 50.08MB 1.2s -2024-04-11T17:38:15Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 31.46MB / 147.31MB 1.3s -2024-04-11T17:38:15Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 39.85MB / 50.08MB 1.4s -2024-04-11T17:38:16Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 45.09MB / 50.08MB 1.6s -2024-04-11T17:38:16Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 40.01MB / 147.31MB 1.7s -2024-04-11T17:38:16Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 -2024-04-11T17:38:16Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 1.9s -2024-04-11T17:38:16Z #5 sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 50.08MB / 50.08MB 2.1s done -2024-04-11T17:38:16Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 50.33MB / 147.31MB 2.4s -2024-04-11T17:38:17Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 59.77MB / 147.31MB 2.6s -2024-04-11T17:38:17Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 73.40MB / 147.31MB 2.9s -2024-04-11T17:38:17Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 82.62MB / 147.31MB 3.4s -2024-04-11T17:38:18Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 91.23MB / 147.31MB 3.7s -2024-04-11T17:38:18Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 99.61MB / 147.31MB 4.3s -2024-04-11T17:38:19Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 114.29MB / 147.31MB 4.8s -2024-04-11T17:38:19Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 127.93MB / 147.31MB 5.4s -2024-04-11T17:38:20Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 141.56MB / 147.31MB 6.0s -2024-04-11T17:38:21Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 5.0s -2024-04-11T17:38:21Z #5 sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 147.31MB / 147.31MB 7.3s done -2024-04-11T17:38:22Z #5 extracting sha256:5d0aeceef7eeb53c3f853fb229ea7fd13a5a56f4ba371ca48f0477493046b702 6.1s done -2024-04-11T17:38:22Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 -2024-04-11T17:38:27Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 5.1s -2024-04-11T17:38:28Z #5 extracting sha256:c3d69dcd5caab14c835f952bd6b87853bf777af9afedc9d564e9978a854208c1 6.1s done -2024-04-11T17:38:29Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c -2024-04-11T17:38:33Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 5.0s -2024-04-11T17:38:39Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 10.1s -2024-04-11T17:38:43Z #5 extracting sha256:0bacf10028c50a3a1bb08a2cd8c47d6246f2966a6c29c0bf845b38c9a76d514c 14.3s done -2024-04-11T17:38:53Z #5 ... -2024-04-11T17:38:53Z -2024-04-11T17:38:53Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-04-11T17:38:53Z #0 1.527 Channels: -2024-04-11T17:38:53Z #0 1.527 - defaults -2024-04-11T17:38:53Z #0 1.527 Platform: linux-64 -2024-04-11T17:38:53Z #0 1.527 Collecting package metadata (repodata.json): ...working... done -2024-04-11T17:38:53Z #0 5.823 Solving environment: ...working... done -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 ## Package Plan ## -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 environment location: /opt/conda -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 added / updated specs: -2024-04-11T17:38:53Z #0 6.147 - conda -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 The following packages will be downloaded: -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 package | build -2024-04-11T17:38:53Z #0 6.147 ---------------------------|----------------- -2024-04-11T17:38:53Z #0 6.147 archspec-0.2.3 | pyhd3eb1b0_0 47 KB -2024-04-11T17:38:53Z #0 6.147 ca-certificates-2024.3.11 | h06a4308_0 127 KB -2024-04-11T17:38:53Z #0 6.147 conda-24.3.0 | py311h06a4308_0 1.2 MB -2024-04-11T17:38:53Z #0 6.147 ------------------------------------------------------------ -2024-04-11T17:38:53Z #0 6.147 Total: 1.4 MB -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 The following packages will be UPDATED: -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 archspec 0.2.1-pyhd3eb1b0_0 --> 0.2.3-pyhd3eb1b0_0 -2024-04-11T17:38:53Z #0 6.147 ca-certificates 2023.12.12-h06a4308_0 --> 2024.3.11-h06a4308_0 -2024-04-11T17:38:53Z #0 6.147 conda 24.1.2-py311h06a4308_0 --> 24.3.0-py311h06a4308_0 -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 -2024-04-11T17:38:53Z #0 6.147 Proceed ([y]/n)? -2024-04-11T17:38:53Z #0 6.648 -2024-04-11T17:38:53Z #0 6.648 Downloading and Extracting Packages: ...working... done -2024-04-11T17:38:53Z #0 6.648 Preparing transaction: ...working... done -2024-04-11T17:38:53Z #0 6.704 Verifying transaction: ...working... done -2024-04-11T17:38:57Z #0 6.829 Executing transaction: ...working... done -2024-04-11T17:38:58Z #7 14.75 Channels: -2024-04-11T17:38:58Z #7 14.75 - conda-forge -2024-04-11T17:38:58Z #7 14.75 - defaults -2024-04-11T17:38:58Z #7 14.75 Platform: linux-64 -2024-04-11T17:39:24Z #7 14.75 Collecting package metadata (repodata.json): ...working... done -2024-04-11T17:39:26Z #7 40.80 Solving environment: ...working... done -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 ## Package Plan ## -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 environment location: /opt/conda -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 added / updated specs: -2024-04-11T17:39:26Z #7 42.93 - conda-pack -2024-04-11T17:39:26Z #7 42.93 - mamba -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 The following packages will be downloaded: -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 package | build -2024-04-11T17:39:26Z #7 42.93 ---------------------------|----------------- -2024-04-11T17:39:26Z #7 42.93 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 c-ares-1.28.1 | hd590300_0 165 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 conda-24.3.0 | py311h38be061_0 1.2 MB conda-forge -2024-04-11T17:39:26Z #7 42.93 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-04-11T17:39:26Z #7 42.93 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge -2024-04-11T17:39:26Z #7 42.93 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 libcurl-8.7.1 | hca28451_0 389 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge -2024-04-11T17:39:26Z #7 42.93 libmambapy-1.5.8 | py311hf2555c7_0 304 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 libssh2-1.11.0 | h0841786_0 265 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge -2024-04-11T17:39:26Z #7 42.93 libxml2-2.12.6 | h232c23b_1 689 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 lzo-2.10 | h516909a_1000 314 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 mamba-1.5.8 | py311h3072747_0 65 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge -2024-04-11T17:39:26Z #7 42.93 python_abi-3.11 | 2_cp311 5 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-04-11T17:39:26Z #7 42.93 ------------------------------------------------------------ -2024-04-11T17:39:26Z #7 42.93 Total: 28.0 MB -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 The following NEW packages will be INSTALLED: -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 -2024-04-11T17:39:26Z #7 42.93 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 -2024-04-11T17:39:26Z #7 42.93 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-04-11T17:39:26Z #7 42.93 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-04-11T17:39:26Z #7 42.93 lzo conda-forge/linux-64::lzo-2.10-h516909a_1000 -2024-04-11T17:39:26Z #7 42.93 mamba conda-forge/linux-64::mamba-1.5.8-py311h3072747_0 -2024-04-11T17:39:26Z #7 42.93 python_abi conda-forge/linux-64::python_abi-3.11-2_cp311 -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 The following packages will be UPDATED: -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 -2024-04-11T17:39:26Z #7 42.93 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-04-11T17:39:26Z #7 42.93 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-04-11T17:39:26Z #7 42.93 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 -2024-04-11T17:39:26Z #7 42.93 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-04-11T17:39:26Z #7 42.93 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 -2024-04-11T17:39:26Z #7 42.93 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 -2024-04-11T17:39:26Z #7 42.93 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 -2024-04-11T17:39:26Z #7 42.93 libmamba pkgs/main::libmamba-1.5.6-haf1ee3a_0 --> conda-forge::libmamba-1.5.8-had39da4_0 -2024-04-11T17:39:26Z #7 42.93 libmambapy pkgs/main::libmambapy-1.5.6-py311h2da~ --> conda-forge::libmambapy-1.5.8-py311hf2555c7_0 -2024-04-11T17:39:26Z #7 42.93 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 -2024-04-11T17:39:26Z #7 42.93 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 -2024-04-11T17:39:26Z #7 42.93 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 -2024-04-11T17:39:26Z #7 42.93 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_1 -2024-04-11T17:39:26Z #7 42.93 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 -2024-04-11T17:39:26Z #7 42.93 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 The following packages will be SUPERSEDED by a higher-priority channel: -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-04-11T17:39:26Z #7 42.93 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-04-11T17:39:26Z #7 42.93 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-04-11T17:39:26Z #7 42.93 conda pkgs/main::conda-24.3.0-py311h06a4308~ --> conda-forge::conda-24.3.0-py311h38be061_0 -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 -2024-04-11T17:39:26Z #7 42.93 Proceed ([y]/n)? -2024-04-11T17:39:29Z #7 45.53 -2024-04-11T17:39:29Z #7 45.53 Downloading and Extracting Packages: ...working... done -2024-04-11T17:39:29Z #7 45.53 Preparing transaction: ...working... done -2024-04-11T17:39:29Z #7 45.66 Verifying transaction: ...working... done -2024-04-11T17:39:41Z #7 46.20 Executing transaction: ...working... done -2024-04-11T17:39:43Z #7 59.44 Will remove 30 (29.4 MB) tarball(s). -2024-04-11T17:39:43Z #7 59.44 Will remove 1 index cache(s). -2024-04-11T17:39:43Z #7 59.44 Will remove 4 (5.0 MB) package(s). -2024-04-11T17:39:43Z #7 59.44 There are no tempfile(s) to remove. -2024-04-11T17:39:43Z #7 59.44 There are no logfile(s) to remove. -2024-04-11T17:39:44Z #7 60.97 bin/micromamba -2024-04-11T17:39:47Z #7 DONE 63.6s -2024-04-11T17:39:47Z -2024-04-11T17:39:47Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-04-11T17:39:47Z #8 0.509 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-04-11T17:39:47Z #8 0.526 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-04-11T17:39:47Z #8 0.526 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-04-11T17:39:48Z #8 0.663 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-04-11T17:39:48Z #8 1.035 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] -2024-04-11T17:39:48Z #8 1.672 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-04-11T17:39:49Z #8 2.680 Fetched 8565 kB in 2s (3922 kB/s) -2024-04-11T17:39:50Z #8 2.680 Reading package lists... -2024-04-11T17:39:51Z #8 3.612 Reading package lists... -2024-04-11T17:39:51Z #8 4.521 Building dependency tree... -2024-04-11T17:39:52Z #8 4.739 Reading state information... -2024-04-11T17:39:52Z #8 5.039 git is already the newest version (1:2.30.2-1+deb11u2). -2024-04-11T17:39:52Z #8 5.039 mercurial is already the newest version (5.6.1-4). -2024-04-11T17:39:52Z #8 5.039 The following additional packages will be installed: -2024-04-11T17:39:52Z #8 5.041 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-11T17:39:52Z #8 5.041 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-11T17:39:52Z #8 5.041 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-04-11T17:39:52Z #8 5.042 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-04-11T17:39:52Z #8 5.042 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-04-11T17:39:52Z #8 5.043 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-04-11T17:39:52Z #8 5.043 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-04-11T17:39:52Z #8 5.052 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-11T17:39:52Z #8 5.052 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-11T17:39:52Z #8 5.052 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-04-11T17:39:52Z #8 5.052 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-04-11T17:39:52Z #8 5.052 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-04-11T17:39:52Z #8 5.052 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-04-11T17:39:52Z #8 5.052 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-04-11T17:39:52Z #8 5.052 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-04-11T17:39:52Z #8 5.052 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-04-11T17:39:52Z #8 5.052 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-04-11T17:39:52Z #8 5.052 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-04-11T17:39:52Z #8 5.052 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-04-11T17:39:52Z #8 5.052 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-04-11T17:39:52Z #8 5.052 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-04-11T17:39:52Z #8 5.052 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-04-11T17:39:52Z #8 5.052 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-04-11T17:39:52Z #8 5.052 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-04-11T17:39:52Z #8 5.052 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-04-11T17:39:52Z #8 5.052 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-04-11T17:39:52Z #8 5.052 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-04-11T17:39:52Z #8 5.052 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-04-11T17:39:52Z #8 5.052 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-04-11T17:39:52Z #8 5.052 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-04-11T17:39:52Z #8 5.052 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-04-11T17:39:52Z #8 5.052 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-04-11T17:39:52Z #8 5.052 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-04-11T17:39:52Z #8 5.052 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-04-11T17:39:52Z #8 5.052 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-04-11T17:39:52Z #8 5.052 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-04-11T17:39:52Z #8 5.052 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-04-11T17:39:52Z #8 5.052 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv -2024-04-11T17:39:52Z #8 5.052 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data -2024-04-11T17:39:52Z #8 5.052 Suggested packages: -2024-04-11T17:39:52Z #8 5.052 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-04-11T17:39:52Z #8 5.052 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-04-11T17:39:52Z #8 5.052 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-04-11T17:39:52Z #8 5.052 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs -2024-04-11T17:39:52Z #8 5.052 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser -2024-04-11T17:39:52Z #8 5.052 opencl-icd ed diffutils-doc systemd-container policykit-1 zip -2024-04-11T17:39:52Z #8 5.052 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-04-11T17:39:52Z #8 5.052 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-04-11T17:39:52Z #8 5.052 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-04-11T17:39:53Z #8 6.692 The following NEW packages will be installed: -2024-04-11T17:39:54Z #8 6.693 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-11T17:39:54Z #8 6.693 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-11T17:39:54Z #8 6.694 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-04-11T17:39:54Z #8 6.694 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-04-11T17:39:54Z #8 6.695 glib-networking glib-networking-common glib-networking-services -2024-04-11T17:39:54Z #8 6.695 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-04-11T17:39:54Z #8 6.704 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-04-11T17:39:54Z #8 6.704 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-04-11T17:39:54Z #8 6.704 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-11T17:39:54Z #8 6.704 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-11T17:39:54Z #8 6.704 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-04-11T17:39:54Z #8 6.704 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-04-11T17:39:54Z #8 6.704 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-04-11T17:39:54Z #8 6.704 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-04-11T17:39:54Z #8 6.704 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-04-11T17:39:54Z #8 6.704 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-04-11T17:39:54Z #8 6.704 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-04-11T17:39:54Z #8 6.704 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-04-11T17:39:54Z #8 6.704 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-04-11T17:39:54Z #8 6.704 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-04-11T17:39:54Z #8 6.704 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-04-11T17:39:54Z #8 6.704 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-04-11T17:39:54Z #8 6.704 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-04-11T17:39:54Z #8 6.704 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-04-11T17:39:54Z #8 6.704 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-04-11T17:39:54Z #8 6.704 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-04-11T17:39:54Z #8 6.704 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-04-11T17:39:54Z #8 6.704 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-04-11T17:39:54Z #8 6.704 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-04-11T17:39:54Z #8 6.704 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-04-11T17:39:54Z #8 6.704 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-04-11T17:39:54Z #8 6.704 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-04-11T17:39:54Z #8 6.704 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-04-11T17:39:54Z #8 6.704 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-04-11T17:39:54Z #8 6.704 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-04-11T17:39:54Z #8 6.704 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-04-11T17:39:54Z #8 6.704 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-04-11T17:39:54Z #8 6.704 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-04-11T17:39:54Z #8 6.704 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-04-11T17:39:54Z #8 6.704 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-04-11T17:39:54Z #8 6.704 x11-utils xkb-data -2024-04-11T17:39:54Z #8 6.738 0 upgraded, 221 newly installed, 0 to remove and 7 not upgraded. -2024-04-11T17:39:54Z #8 6.738 Need to get 236 MB of archives. -2024-04-11T17:39:54Z #8 6.738 After this operation, 891 MB of additional disk space will be used. -2024-04-11T17:39:54Z #8 6.738 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-04-11T17:39:54Z #8 6.745 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-04-11T17:39:54Z #8 6.746 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-04-11T17:39:54Z #8 6.748 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-04-11T17:39:54Z #8 6.750 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-04-11T17:39:54Z #8 6.753 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-04-11T17:39:54Z #8 6.755 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-04-11T17:39:54Z #8 6.759 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-04-11T17:39:54Z #8 6.760 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-04-11T17:39:54Z #8 6.762 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-04-11T17:39:54Z #8 6.853 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-04-11T17:39:54Z #8 6.881 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-04-11T17:39:54Z #8 6.885 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-04-11T17:39:54Z #8 6.890 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-04-11T17:39:54Z #8 6.895 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-04-11T17:39:54Z #8 6.901 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-04-11T17:39:54Z #8 6.923 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-04-11T17:39:54Z #8 6.927 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-04-11T17:39:54Z #8 6.929 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-04-11T17:39:54Z #8 6.935 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-04-11T17:39:54Z #8 7.130 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-04-11T17:39:54Z #8 7.140 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-04-11T17:39:54Z #8 7.150 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-04-11T17:39:54Z #8 7.154 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-04-11T17:39:54Z #8 7.159 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-04-11T17:39:54Z #8 7.161 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-04-11T17:39:54Z #8 7.162 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-04-11T17:39:54Z #8 7.166 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-04-11T17:39:54Z #8 7.171 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-04-11T17:39:54Z #8 7.174 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-04-11T17:39:54Z #8 7.176 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-04-11T17:39:54Z #8 7.422 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-04-11T17:39:54Z #8 7.426 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-04-11T17:39:54Z #8 7.428 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-04-11T17:39:54Z #8 7.436 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-04-11T17:39:54Z #8 7.438 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-04-11T17:39:54Z #8 7.441 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-04-11T17:39:54Z #8 7.443 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-04-11T17:39:54Z #8 7.444 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-04-11T17:39:54Z #8 7.447 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-04-11T17:39:54Z #8 7.478 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-04-11T17:39:54Z #8 7.508 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-04-11T17:39:54Z #8 7.511 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-04-11T17:39:54Z #8 7.513 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-04-11T17:39:54Z #8 7.537 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-04-11T17:39:54Z #8 7.559 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-04-11T17:39:54Z #8 7.570 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-04-11T17:39:54Z #8 7.603 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-04-11T17:39:54Z #8 7.605 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-04-11T17:39:55Z #8 7.810 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-04-11T17:39:55Z #8 7.813 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-04-11T17:39:55Z #8 7.817 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-04-11T17:39:55Z #8 7.819 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-04-11T17:39:55Z #8 7.822 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-04-11T17:39:55Z #8 7.824 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-04-11T17:39:55Z #8 7.828 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-04-11T17:39:55Z #8 7.831 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-04-11T17:39:55Z #8 7.840 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-04-11T17:39:55Z #8 7.857 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-04-11T17:39:55Z #8 7.861 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-04-11T17:39:55Z #8 7.867 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-04-11T17:39:55Z #8 7.874 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-04-11T17:39:55Z #8 7.888 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-04-11T17:39:55Z #8 7.891 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-04-11T17:39:55Z #8 7.901 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-04-11T17:39:55Z #8 7.904 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-04-11T17:39:55Z #8 7.906 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-04-11T17:39:55Z #8 7.910 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-04-11T17:39:55Z #8 7.912 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-04-11T17:39:55Z #8 7.923 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-04-11T17:39:55Z #8 7.926 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-04-11T17:39:55Z #8 7.929 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-04-11T17:39:55Z #8 7.931 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-04-11T17:39:55Z #8 7.933 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-04-11T17:39:55Z #8 7.938 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-04-11T17:39:55Z #8 7.942 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-04-11T17:39:55Z #8 7.944 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-04-11T17:39:55Z #8 7.946 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-04-11T17:39:55Z #8 7.964 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-04-11T17:39:55Z #8 7.966 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-04-11T17:39:55Z #8 7.968 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-04-11T17:39:55Z #8 7.974 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-04-11T17:39:55Z #8 7.978 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-04-11T17:39:55Z #8 7.980 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-04-11T17:39:55Z #8 7.982 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-04-11T17:39:55Z #8 7.985 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-04-11T17:39:55Z #8 7.987 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-04-11T17:39:55Z #8 7.989 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-04-11T17:39:55Z #8 7.991 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-04-11T17:39:55Z #8 7.993 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-04-11T17:39:55Z #8 7.994 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-04-11T17:39:55Z #8 8.003 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-04-11T17:39:55Z #8 8.005 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-04-11T17:39:55Z #8 8.009 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-04-11T17:39:55Z #8 8.011 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-04-11T17:39:55Z #8 8.012 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-04-11T17:39:55Z #8 8.024 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-04-11T17:39:55Z #8 8.027 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-04-11T17:39:55Z #8 8.029 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-04-11T17:39:55Z #8 8.030 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-04-11T17:39:55Z #8 8.032 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-04-11T17:39:55Z #8 8.033 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-04-11T17:39:55Z #8 8.035 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-04-11T17:39:55Z #8 8.037 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-04-11T17:39:55Z #8 8.047 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-04-11T17:39:55Z #8 8.050 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-04-11T17:39:55Z #8 8.052 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-04-11T17:39:55Z #8 8.120 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-04-11T17:39:55Z #8 8.163 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-04-11T17:39:55Z #8 8.167 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.9.1esr-1~deb11u1 [63.7 MB] -2024-04-11T17:39:56Z #8 9.490 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-04-11T17:39:56Z #8 9.493 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-04-11T17:39:56Z #8 9.495 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-04-11T17:39:56Z #8 9.499 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-04-11T17:39:56Z #8 9.512 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-04-11T17:39:56Z #8 9.514 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-04-11T17:39:56Z #8 9.543 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-04-11T17:39:56Z #8 9.559 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-04-11T17:39:56Z #8 9.588 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-04-11T17:39:56Z #8 9.604 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-04-11T17:39:56Z #8 9.607 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-04-11T17:39:56Z #8 9.637 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-04-11T17:39:57Z #8 10.04 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-04-11T17:39:57Z #8 10.04 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-04-11T17:39:57Z #8 10.04 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-04-11T17:39:57Z #8 10.04 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-04-11T17:39:57Z #8 10.04 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-04-11T17:39:57Z #8 10.05 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-04-11T17:39:57Z #8 10.05 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-04-11T17:39:57Z #8 10.05 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-04-11T17:39:57Z #8 10.06 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-04-11T17:39:57Z #8 10.10 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-04-11T17:39:57Z #8 10.13 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-04-11T17:39:57Z #8 10.20 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-04-11T17:39:57Z #8 10.20 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-04-11T17:39:57Z #8 10.20 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-04-11T17:39:57Z #8 10.20 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-04-11T17:39:57Z #8 10.21 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-04-11T17:39:57Z #8 10.21 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-04-11T17:39:57Z #8 10.41 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-04-11T17:39:57Z #8 10.41 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-04-11T17:39:57Z #8 10.42 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-04-11T17:39:57Z #8 10.42 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-04-11T17:39:57Z #8 10.42 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-04-11T17:39:57Z #8 10.43 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-04-11T17:39:57Z #8 10.46 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-04-11T17:39:57Z #8 10.46 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-04-11T17:39:57Z #8 10.47 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-04-11T17:39:57Z #8 10.47 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-04-11T17:39:57Z #8 10.47 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-04-11T17:39:57Z #8 10.47 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-04-11T17:39:57Z #8 10.47 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-04-11T17:39:57Z #8 10.48 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-04-11T17:39:57Z #8 10.48 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-04-11T17:39:57Z #8 10.48 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-04-11T17:39:57Z #8 10.49 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-04-11T17:39:57Z #8 10.50 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-04-11T17:39:57Z #8 10.50 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-04-11T17:39:57Z #8 10.51 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-04-11T17:39:57Z #8 10.51 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-04-11T17:39:57Z #8 10.52 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-04-11T17:39:57Z #8 10.53 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-04-11T17:39:57Z #8 10.54 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-04-11T17:39:57Z #8 10.55 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-04-11T17:39:57Z #8 10.55 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-04-11T17:39:57Z #8 10.67 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] -2024-04-11T17:39:57Z #8 10.68 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-04-11T17:39:57Z #8 10.68 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-04-11T17:39:57Z #8 10.68 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] -2024-04-11T17:39:57Z #8 10.69 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-04-11T17:39:57Z #8 10.70 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-04-11T17:39:57Z #8 10.71 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-04-11T17:39:57Z #8 10.71 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-04-11T17:39:58Z #8 10.72 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] -2024-04-11T17:39:58Z #8 10.75 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-04-11T17:39:58Z #8 10.75 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-04-11T17:39:58Z #8 10.75 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-04-11T17:39:58Z #8 10.78 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-04-11T17:39:58Z #8 10.79 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-04-11T17:39:58Z #8 10.79 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-04-11T17:39:58Z #8 10.79 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-04-11T17:39:58Z #8 10.79 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-04-11T17:39:58Z #8 10.96 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-04-11T17:39:58Z #8 11.36 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-04-11T17:39:58Z #8 11.36 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-04-11T17:39:58Z #8 11.36 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-04-11T17:39:58Z #8 11.36 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-04-11T17:39:58Z #8 11.57 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-04-11T17:39:58Z #8 11.57 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-04-11T17:39:58Z #8 11.57 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-04-11T17:39:58Z #8 11.57 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-04-11T17:39:58Z #8 11.58 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-04-11T17:39:58Z #8 11.58 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-04-11T17:39:58Z #8 11.59 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-04-11T17:39:58Z #8 11.59 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-04-11T17:39:58Z #8 11.59 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-04-11T17:39:58Z #8 11.59 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-04-11T17:39:58Z #8 11.60 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-04-11T17:39:58Z #8 11.60 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-04-11T17:39:58Z #8 11.60 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-04-11T17:39:58Z #8 11.61 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-04-11T17:39:58Z #8 11.61 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-04-11T17:39:58Z #8 11.61 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-04-11T17:39:58Z #8 11.62 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-04-11T17:39:58Z #8 11.62 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-04-11T17:39:58Z #8 11.62 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-04-11T17:39:58Z #8 11.63 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-04-11T17:39:58Z #8 11.63 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-04-11T17:39:58Z #8 11.63 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-04-11T17:39:58Z #8 11.63 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-04-11T17:39:58Z #8 11.64 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-04-11T17:39:58Z #8 11.64 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-04-11T17:39:58Z #8 11.64 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-04-11T17:39:58Z #8 11.67 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-04-11T17:39:59Z #8 11.73 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-04-11T17:39:59Z #8 11.77 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-04-11T17:39:59Z #8 11.86 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-04-11T17:39:59Z #8 11.86 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-04-11T17:39:59Z #8 11.87 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-04-11T17:39:59Z #8 11.87 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-04-11T17:39:59Z #8 11.87 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-04-11T17:39:59Z #8 12.22 debconf: delaying package configuration, since apt-utils is not installed -2024-04-11T17:39:59Z #8 12.27 Fetched 236 MB in 5s (45.7 MB/s) -2024-04-11T17:39:59Z #8 12.31 Selecting previously unselected package libapparmor1:amd64. -2024-04-11T17:39:59Z #8 12.31 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-04-11T17:39:59Z #8 12.33 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-04-11T17:39:59Z #8 12.34 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-04-11T17:39:59Z #8 12.40 Selecting previously unselected package libcap2:amd64. -2024-04-11T17:39:59Z #8 12.40 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-04-11T17:39:59Z #8 12.41 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-04-11T17:39:59Z #8 12.46 Selecting previously unselected package libargon2-1:amd64. -2024-04-11T17:39:59Z #8 12.46 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-04-11T17:39:59Z #8 12.46 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-11T17:39:59Z #8 12.50 Selecting previously unselected package dmsetup. -2024-04-11T17:39:59Z #8 12.51 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-04-11T17:39:59Z #8 12.51 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-04-11T17:39:59Z #8 12.57 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-04-11T17:39:59Z #8 12.58 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-04-11T17:39:59Z #8 12.58 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-11T17:40:00Z #8 12.64 Selecting previously unselected package libjson-c5:amd64. -2024-04-11T17:40:00Z #8 12.65 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-04-11T17:40:00Z #8 12.65 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-11T17:40:00Z #8 12.69 Selecting previously unselected package libcryptsetup12:amd64. -2024-04-11T17:40:00Z #8 12.70 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-04-11T17:40:00Z #8 12.71 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-11T17:40:00Z #8 12.81 Selecting previously unselected package libip4tc2:amd64. -2024-04-11T17:40:00Z #8 12.81 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-04-11T17:40:00Z #8 12.82 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-04-11T17:40:00Z #8 12.86 Selecting previously unselected package libkmod2:amd64. -2024-04-11T17:40:00Z #8 12.86 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-04-11T17:40:00Z #8 12.87 Unpacking libkmod2:amd64 (28-1) ... -2024-04-11T17:40:00Z #8 12.92 Selecting previously unselected package systemd. -2024-04-11T17:40:00Z #8 12.93 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-11T17:40:00Z #8 12.99 Unpacking systemd (247.3-7+deb11u4) ... -2024-04-11T17:40:01Z #8 14.01 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-04-11T17:40:01Z #8 14.02 Setting up libcap2:amd64 (1:2.44-1) ... -2024-04-11T17:40:01Z #8 14.03 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-11T17:40:01Z #8 14.04 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-11T17:40:01Z #8 14.05 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-04-11T17:40:01Z #8 14.07 Setting up libkmod2:amd64 (28-1) ... -2024-04-11T17:40:01Z #8 14.08 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-11T17:40:01Z #8 14.10 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-11T17:40:01Z #8 14.11 Setting up systemd (247.3-7+deb11u4) ... -2024-04-11T17:40:01Z #8 14.16 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-04-11T17:40:01Z #8 14.16 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-04-11T17:40:01Z #8 14.16 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-04-11T17:40:01Z #8 14.19 Initializing machine ID from KVM UUID. -2024-04-11T17:40:01Z #8 14.66 Setting up dmsetup (2:1.02.175-2.1) ... -2024-04-11T17:40:01Z #8 14.73 Selecting previously unselected package systemd-sysv. -2024-04-11T17:40:02Z #8 14.73 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-04-11T17:40:02Z #8 14.75 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-04-11T17:40:02Z #8 14.76 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-04-11T17:40:02Z #8 14.83 Selecting previously unselected package libdbus-1-3:amd64. -2024-04-11T17:40:02Z #8 14.83 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-04-11T17:40:02Z #8 14.84 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-11T17:40:02Z #8 14.92 Selecting previously unselected package dbus. -2024-04-11T17:40:02Z #8 14.92 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-04-11T17:40:02Z #8 14.94 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-04-11T17:40:02Z #8 15.04 Selecting previously unselected package libnss-systemd:amd64. -2024-04-11T17:40:02Z #8 15.05 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-11T17:40:02Z #8 15.05 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-11T17:40:02Z #8 15.12 Selecting previously unselected package libpam-systemd:amd64. -2024-04-11T17:40:02Z #8 15.13 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-11T17:40:02Z #8 15.13 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-11T17:40:02Z #8 15.21 Selecting previously unselected package manpages. -2024-04-11T17:40:02Z #8 15.22 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-04-11T17:40:02Z #8 15.22 Unpacking manpages (5.10-1) ... -2024-04-11T17:40:02Z #8 15.45 Selecting previously unselected package systemd-timesyncd. -2024-04-11T17:40:02Z #8 15.45 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-04-11T17:40:02Z #8 15.46 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-11T17:40:02Z #8 15.52 Selecting previously unselected package hicolor-icon-theme. -2024-04-11T17:40:02Z #8 15.53 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-04-11T17:40:02Z #8 15.53 Unpacking hicolor-icon-theme (0.17-2) ... -2024-04-11T17:40:02Z #8 15.64 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-04-11T17:40:02Z #8 15.64 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-04-11T17:40:02Z #8 15.65 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-11T17:40:03Z #8 15.76 Selecting previously unselected package libicu67:amd64. -2024-04-11T17:40:03Z #8 15.76 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-04-11T17:40:03Z #8 15.77 Unpacking libicu67:amd64 (67.1-7) ... -2024-04-11T17:40:04Z #8 17.44 Selecting previously unselected package libxml2:amd64. -2024-04-11T17:40:04Z #8 17.44 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-04-11T17:40:04Z #8 17.45 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-11T17:40:04Z #8 17.59 Selecting previously unselected package shared-mime-info. -2024-04-11T17:40:04Z #8 17.59 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-04-11T17:40:04Z #8 17.60 Unpacking shared-mime-info (2.0-1) ... -2024-04-11T17:40:05Z #8 17.80 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-04-11T17:40:05Z #8 17.81 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-04-11T17:40:05Z #8 17.81 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-11T17:40:05Z #8 17.88 Selecting previously unselected package libpng16-16:amd64. -2024-04-11T17:40:05Z #8 17.88 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-04-11T17:40:05Z #8 17.89 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-04-11T17:40:05Z #8 17.97 Selecting previously unselected package libdeflate0:amd64. -2024-04-11T17:40:05Z #8 17.98 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-04-11T17:40:05Z #8 17.98 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-04-11T17:40:05Z #8 18.03 Selecting previously unselected package libjbig0:amd64. -2024-04-11T17:40:05Z #8 18.04 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-04-11T17:40:05Z #8 18.04 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-11T17:40:05Z #8 18.10 Selecting previously unselected package libwebp6:amd64. -2024-04-11T17:40:05Z #8 18.10 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-11T17:40:05Z #8 18.11 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-11T17:40:05Z #8 18.19 Selecting previously unselected package libtiff5:amd64. -2024-04-11T17:40:05Z #8 18.19 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-04-11T17:40:05Z #8 18.20 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-11T17:40:05Z #8 18.29 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-04-11T17:40:05Z #8 18.29 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-11T17:40:05Z #8 18.30 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-11T17:40:05Z #8 18.37 Selecting previously unselected package gtk-update-icon-cache. -2024-04-11T17:40:05Z #8 18.37 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-04-11T17:40:05Z #8 18.38 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-11T17:40:05Z #8 18.50 Selecting previously unselected package adwaita-icon-theme. -2024-04-11T17:40:05Z #8 18.51 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-04-11T17:40:05Z #8 18.51 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-04-11T17:40:08Z #8 21.36 Selecting previously unselected package alsa-topology-conf. -2024-04-11T17:40:08Z #8 21.37 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-04-11T17:40:08Z #8 21.37 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-04-11T17:40:08Z #8 21.42 Selecting previously unselected package libasound2-data. -2024-04-11T17:40:08Z #8 21.42 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-04-11T17:40:08Z #8 21.43 Unpacking libasound2-data (1.2.4-1.1) ... -2024-04-11T17:40:08Z #8 21.49 Selecting previously unselected package libasound2:amd64. -2024-04-11T17:40:08Z #8 21.50 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-04-11T17:40:08Z #8 21.50 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-04-11T17:40:08Z #8 21.61 Selecting previously unselected package alsa-ucm-conf. -2024-04-11T17:40:08Z #8 21.62 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-04-11T17:40:08Z #8 21.62 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-04-11T17:40:09Z #8 21.72 Selecting previously unselected package libatspi2.0-0:amd64. -2024-04-11T17:40:09Z #8 21.73 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-04-11T17:40:09Z #8 21.73 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-11T17:40:09Z #8 21.79 Selecting previously unselected package libxi6:amd64. -2024-04-11T17:40:09Z #8 21.79 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-04-11T17:40:09Z #8 21.80 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-04-11T17:40:09Z #8 21.85 Selecting previously unselected package libxtst6:amd64. -2024-04-11T17:40:09Z #8 21.86 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-04-11T17:40:09Z #8 21.87 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-04-11T17:40:09Z #8 21.90 Selecting previously unselected package at-spi2-core. -2024-04-11T17:40:09Z #8 21.91 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-04-11T17:40:09Z #8 21.91 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-11T17:40:09Z #8 22.00 Selecting previously unselected package binutils-common:amd64. -2024-04-11T17:40:09Z #8 22.00 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-04-11T17:40:09Z #8 22.01 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-04-11T17:40:09Z #8 22.45 Selecting previously unselected package libbinutils:amd64. -2024-04-11T17:40:09Z #8 22.46 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-04-11T17:40:09Z #8 22.47 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-04-11T17:40:09Z #8 22.63 Selecting previously unselected package libctf-nobfd0:amd64. -2024-04-11T17:40:09Z #8 22.63 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-04-11T17:40:09Z #8 22.64 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-11T17:40:09Z #8 22.69 Selecting previously unselected package libctf0:amd64. -2024-04-11T17:40:09Z #8 22.69 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-04-11T17:40:09Z #8 22.70 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-04-11T17:40:10Z #8 22.74 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-04-11T17:40:10Z #8 22.75 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-04-11T17:40:10Z #8 22.75 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-11T17:40:10Z #8 23.19 Selecting previously unselected package binutils. -2024-04-11T17:40:10Z #8 23.19 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-04-11T17:40:10Z #8 23.20 Unpacking binutils (2.35.2-2) ... -2024-04-11T17:40:10Z #8 23.26 Selecting previously unselected package libisl23:amd64. -2024-04-11T17:40:10Z #8 23.26 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-04-11T17:40:10Z #8 23.27 Unpacking libisl23:amd64 (0.23-1) ... -2024-04-11T17:40:10Z #8 23.44 Selecting previously unselected package libmpfr6:amd64. -2024-04-11T17:40:10Z #8 23.44 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-04-11T17:40:10Z #8 23.45 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-04-11T17:40:10Z #8 23.69 Selecting previously unselected package libmpc3:amd64. -2024-04-11T17:40:11Z #8 23.69 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-04-11T17:40:11Z #8 23.70 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-04-11T17:40:11Z #8 23.75 Selecting previously unselected package cpp-10. -2024-04-11T17:40:11Z #8 23.75 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-04-11T17:40:11Z #8 23.76 Unpacking cpp-10 (10.2.1-6) ... -2024-04-11T17:40:12Z #8 25.27 Selecting previously unselected package cpp. -2024-04-11T17:40:12Z #8 25.27 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-04-11T17:40:12Z #8 25.28 Unpacking cpp (4:10.2.1-1) ... -2024-04-11T17:40:12Z #8 25.32 Selecting previously unselected package dbus-user-session. -2024-04-11T17:40:12Z #8 25.32 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-04-11T17:40:12Z #8 25.33 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-11T17:40:12Z #8 25.38 Selecting previously unselected package libdconf1:amd64. -2024-04-11T17:40:12Z #8 25.39 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-04-11T17:40:12Z #8 25.39 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-04-11T17:40:12Z #8 25.43 Selecting previously unselected package dconf-service. -2024-04-11T17:40:12Z #8 25.44 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-04-11T17:40:12Z #8 25.44 Unpacking dconf-service (0.38.0-2) ... -2024-04-11T17:40:12Z #8 25.48 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-04-11T17:40:12Z #8 25.48 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-04-11T17:40:12Z #8 25.49 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-11T17:40:12Z #8 25.53 Selecting previously unselected package libatk1.0-data. -2024-04-11T17:40:12Z #8 25.53 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-04-11T17:40:12Z #8 25.54 Unpacking libatk1.0-data (2.36.0-2) ... -2024-04-11T17:40:12Z #8 25.63 Selecting previously unselected package libatk1.0-0:amd64. -2024-04-11T17:40:13Z #8 25.64 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-04-11T17:40:13Z #8 25.64 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-11T17:40:13Z #8 25.70 Selecting previously unselected package libfreetype6:amd64. -2024-04-11T17:40:13Z #8 25.70 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-04-11T17:40:13Z #8 25.71 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-11T17:40:13Z #8 25.82 Selecting previously unselected package fonts-dejavu-core. -2024-04-11T17:40:13Z #8 25.82 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-04-11T17:40:13Z #8 25.83 Unpacking fonts-dejavu-core (2.37-2) ... -2024-04-11T17:40:13Z #8 26.08 Selecting previously unselected package fontconfig-config. -2024-04-11T17:40:13Z #8 26.09 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-04-11T17:40:13Z #8 26.26 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-04-11T17:40:13Z #8 26.33 Selecting previously unselected package libfontconfig1:amd64. -2024-04-11T17:40:13Z #8 26.33 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-04-11T17:40:13Z #8 26.34 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-11T17:40:13Z #8 26.40 Selecting previously unselected package libpixman-1-0:amd64. -2024-04-11T17:40:13Z #8 26.40 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-04-11T17:40:13Z #8 26.41 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-11T17:40:13Z #8 26.51 Selecting previously unselected package libxcb-render0:amd64. -2024-04-11T17:40:13Z #8 26.51 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-04-11T17:40:13Z #8 26.52 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-04-11T17:40:13Z #8 26.58 Selecting previously unselected package libxcb-shm0:amd64. -2024-04-11T17:40:13Z #8 26.58 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-04-11T17:40:13Z #8 26.59 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-04-11T17:40:13Z #8 26.65 Selecting previously unselected package libcairo2:amd64. -2024-04-11T17:40:13Z #8 26.65 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-04-11T17:40:13Z #8 26.66 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-04-11T17:40:14Z #8 26.79 Selecting previously unselected package libcairo-gobject2:amd64. -2024-04-11T17:40:14Z #8 26.80 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-04-11T17:40:14Z #8 26.80 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-11T17:40:14Z #8 26.86 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-04-11T17:40:14Z #8 26.87 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-04-11T17:40:14Z #8 26.87 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-11T17:40:14Z #8 26.93 Selecting previously unselected package libevent-2.1-7:amd64. -2024-04-11T17:40:14Z #8 26.94 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-04-11T17:40:14Z #8 26.94 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-11T17:40:14Z #8 27.01 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-04-11T17:40:14Z #8 27.02 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-04-11T17:40:14Z #8 27.02 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-11T17:40:14Z #8 27.07 Selecting previously unselected package liblcms2-2:amd64. -2024-04-11T17:40:14Z #8 27.08 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-04-11T17:40:14Z #8 27.08 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-11T17:40:14Z #8 27.15 Selecting previously unselected package libcolord2:amd64. -2024-04-11T17:40:14Z #8 27.15 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-04-11T17:40:14Z #8 27.16 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-04-11T17:40:14Z #8 27.23 Selecting previously unselected package libavahi-common-data:amd64. -2024-04-11T17:40:14Z #8 27.23 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-04-11T17:40:14Z #8 27.24 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-11T17:40:14Z #8 27.32 Selecting previously unselected package libavahi-common3:amd64. -2024-04-11T17:40:14Z #8 27.32 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-04-11T17:40:14Z #8 27.33 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-11T17:40:14Z #8 27.38 Selecting previously unselected package libavahi-client3:amd64. -2024-04-11T17:40:14Z #8 27.38 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-04-11T17:40:14Z #8 27.39 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-11T17:40:14Z #8 27.45 Selecting previously unselected package libcups2:amd64. -2024-04-11T17:40:14Z #8 27.46 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-04-11T17:40:14Z #8 27.46 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-11T17:40:14Z #8 27.59 Selecting previously unselected package libepoxy0:amd64. -2024-04-11T17:40:14Z #8 27.59 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-04-11T17:40:14Z #8 27.60 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-04-11T17:40:15Z #8 27.69 Selecting previously unselected package libfribidi0:amd64. -2024-04-11T17:40:15Z #8 27.70 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-04-11T17:40:15Z #8 27.70 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-11T17:40:15Z #8 27.76 Selecting previously unselected package libgraphite2-3:amd64. -2024-04-11T17:40:15Z #8 27.76 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-04-11T17:40:15Z #8 27.77 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-11T17:40:15Z #8 27.82 Selecting previously unselected package libharfbuzz0b:amd64. -2024-04-11T17:40:15Z #8 27.83 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-04-11T17:40:15Z #8 27.84 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-11T17:40:15Z #8 27.94 Selecting previously unselected package libjson-glib-1.0-common. -2024-04-11T17:40:15Z #8 27.95 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-04-11T17:40:15Z #8 27.96 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-04-11T17:40:15Z #8 28.02 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-04-11T17:40:15Z #8 28.03 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-04-11T17:40:15Z #8 28.03 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-11T17:40:15Z #8 28.09 Selecting previously unselected package fontconfig. -2024-04-11T17:40:15Z #8 28.10 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-04-11T17:40:15Z #8 28.10 Unpacking fontconfig (2.13.1-4.2) ... -2024-04-11T17:40:15Z #8 28.17 Selecting previously unselected package libthai-data. -2024-04-11T17:40:15Z #8 28.18 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-04-11T17:40:15Z #8 28.18 Unpacking libthai-data (0.1.28-3) ... -2024-04-11T17:40:15Z #8 28.27 Selecting previously unselected package libdatrie1:amd64. -2024-04-11T17:40:15Z #8 28.27 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-04-11T17:40:15Z #8 28.28 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-04-11T17:40:15Z #8 28.32 Selecting previously unselected package libthai0:amd64. -2024-04-11T17:40:15Z #8 28.33 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-04-11T17:40:15Z #8 28.33 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-04-11T17:40:15Z #8 28.40 Selecting previously unselected package libpango-1.0-0:amd64. -2024-04-11T17:40:15Z #8 28.40 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-04-11T17:40:15Z #8 28.41 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-11T17:40:15Z #8 28.49 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-04-11T17:40:15Z #8 28.49 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-04-11T17:40:15Z #8 28.50 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-11T17:40:15Z #8 28.55 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-04-11T17:40:15Z #8 28.55 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-04-11T17:40:15Z #8 28.56 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-11T17:40:15Z #8 28.60 Selecting previously unselected package libproxy1v5:amd64. -2024-04-11T17:40:15Z #8 28.61 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-04-11T17:40:15Z #8 28.62 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-04-11T17:40:15Z #8 28.66 Selecting previously unselected package glib-networking-common. -2024-04-11T17:40:15Z #8 28.67 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-04-11T17:40:15Z #8 28.67 Unpacking glib-networking-common (2.66.0-2) ... -2024-04-11T17:40:16Z #8 28.74 Selecting previously unselected package glib-networking-services. -2024-04-11T17:40:16Z #8 28.75 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-04-11T17:40:16Z #8 28.75 Unpacking glib-networking-services (2.66.0-2) ... -2024-04-11T17:40:16Z #8 28.79 Selecting previously unselected package gsettings-desktop-schemas. -2024-04-11T17:40:16Z #8 28.80 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-04-11T17:40:16Z #8 28.81 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-04-11T17:40:16Z #8 28.98 Selecting previously unselected package glib-networking:amd64. -2024-04-11T17:40:16Z #8 28.99 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-04-11T17:40:16Z #8 28.99 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-04-11T17:40:16Z #8 29.05 Selecting previously unselected package libsoup2.4-1:amd64. -2024-04-11T17:40:16Z #8 29.06 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-04-11T17:40:16Z #8 29.06 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-11T17:40:16Z #8 29.18 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-04-11T17:40:16Z #8 29.19 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-04-11T17:40:16Z #8 29.19 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-11T17:40:16Z #8 29.24 Selecting previously unselected package librest-0.7-0:amd64. -2024-04-11T17:40:16Z #8 29.25 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-04-11T17:40:16Z #8 29.25 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-11T17:40:16Z #8 29.30 Selecting previously unselected package libwayland-client0:amd64. -2024-04-11T17:40:16Z #8 29.31 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-11T17:40:16Z #8 29.32 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-11T17:40:16Z #8 29.36 Selecting previously unselected package libwayland-cursor0:amd64. -2024-04-11T17:40:16Z #8 29.37 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-11T17:40:16Z #8 29.38 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-11T17:40:16Z #8 29.42 Selecting previously unselected package libwayland-egl1:amd64. -2024-04-11T17:40:16Z #8 29.43 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-04-11T17:40:16Z #8 29.43 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-11T17:40:16Z #8 29.47 Selecting previously unselected package libxcomposite1:amd64. -2024-04-11T17:40:16Z #8 29.48 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-04-11T17:40:16Z #8 29.49 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-11T17:40:16Z #8 29.53 Selecting previously unselected package libxfixes3:amd64. -2024-04-11T17:40:16Z #8 29.54 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-04-11T17:40:16Z #8 29.55 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-11T17:40:16Z #8 29.59 Selecting previously unselected package libxcursor1:amd64. -2024-04-11T17:40:16Z #8 29.60 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-04-11T17:40:16Z #8 29.60 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-11T17:40:16Z #8 29.65 Selecting previously unselected package libxdamage1:amd64. -2024-04-11T17:40:16Z #8 29.66 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-04-11T17:40:16Z #8 29.66 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-11T17:40:17Z #8 29.70 Selecting previously unselected package libxinerama1:amd64. -2024-04-11T17:40:17Z #8 29.71 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-04-11T17:40:17Z #8 29.72 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-11T17:40:17Z #8 29.75 Selecting previously unselected package xkb-data. -2024-04-11T17:40:17Z #8 29.76 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-04-11T17:40:17Z #8 29.77 Unpacking xkb-data (2.29-2) ... -2024-04-11T17:40:17Z #8 30.02 Selecting previously unselected package libxkbcommon0:amd64. -2024-04-11T17:40:17Z #8 30.02 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-04-11T17:40:17Z #8 30.03 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-11T17:40:17Z #8 30.08 Selecting previously unselected package libxrandr2:amd64. -2024-04-11T17:40:17Z #8 30.09 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-04-11T17:40:17Z #8 30.09 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-11T17:40:17Z #8 30.13 Selecting previously unselected package libgtk-3-common. -2024-04-11T17:40:17Z #8 30.14 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-04-11T17:40:17Z #8 30.14 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-11T17:40:18Z #8 30.99 Selecting previously unselected package libgtk-3-0:amd64. -2024-04-11T17:40:18Z #8 30.99 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-04-11T17:40:18Z #8 31.00 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-11T17:40:18Z #8 31.53 Selecting previously unselected package libx11-xcb1:amd64. -2024-04-11T17:40:18Z #8 31.53 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-04-11T17:40:18Z #8 31.54 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-11T17:40:18Z #8 31.62 Selecting previously unselected package firefox-esr. -2024-04-11T17:40:18Z #8 31.62 Preparing to unpack .../099-firefox-esr_115.9.1esr-1~deb11u1_amd64.deb ... -2024-04-11T17:40:18Z #8 31.63 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-04-11T17:40:19Z #8 31.64 Unpacking firefox-esr (115.9.1esr-1~deb11u1) ... -2024-04-11T17:40:30Z #8 42.73 Selecting previously unselected package fonts-humor-sans. -2024-04-11T17:40:30Z #8 42.73 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-04-11T17:40:30Z #8 42.74 Unpacking fonts-humor-sans (1.0-4) ... -2024-04-11T17:40:30Z #8 42.78 Selecting previously unselected package libcc1-0:amd64. -2024-04-11T17:40:30Z #8 42.79 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-04-11T17:40:30Z #8 42.79 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-04-11T17:40:30Z #8 42.84 Selecting previously unselected package libgomp1:amd64. -2024-04-11T17:40:30Z #8 42.85 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-04-11T17:40:30Z #8 42.85 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-04-11T17:40:30Z #8 42.90 Selecting previously unselected package libitm1:amd64. -2024-04-11T17:40:30Z #8 42.91 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-04-11T17:40:30Z #8 42.91 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-04-11T17:40:30Z #8 42.95 Selecting previously unselected package libatomic1:amd64. -2024-04-11T17:40:30Z #8 42.96 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-04-11T17:40:30Z #8 42.96 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-04-11T17:40:30Z #8 43.00 Selecting previously unselected package libasan6:amd64. -2024-04-11T17:40:30Z #8 43.01 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-04-11T17:40:30Z #8 43.01 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-04-11T17:40:30Z #8 43.49 Selecting previously unselected package liblsan0:amd64. -2024-04-11T17:40:30Z #8 43.49 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-04-11T17:40:30Z #8 43.50 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-04-11T17:40:31Z #8 43.71 Selecting previously unselected package libtsan0:amd64. -2024-04-11T17:40:31Z #8 43.71 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-04-11T17:40:31Z #8 43.72 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-04-11T17:40:31Z #8 44.16 Selecting previously unselected package libubsan1:amd64. -2024-04-11T17:40:31Z #8 44.17 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-04-11T17:40:31Z #8 44.17 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-04-11T17:40:31Z #8 44.36 Selecting previously unselected package libquadmath0:amd64. -2024-04-11T17:40:31Z #8 44.36 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-04-11T17:40:31Z #8 44.37 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-04-11T17:40:31Z #8 44.42 Selecting previously unselected package libgcc-10-dev:amd64. -2024-04-11T17:40:31Z #8 44.43 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-04-11T17:40:31Z #8 44.43 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-11T17:40:32Z #8 44.93 Selecting previously unselected package gcc-10. -2024-04-11T17:40:32Z #8 44.93 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-04-11T17:40:32Z #8 44.94 Unpacking gcc-10 (10.2.1-6) ... -2024-04-11T17:40:34Z #8 47.72 Selecting previously unselected package gcc. -2024-04-11T17:40:35Z #8 47.72 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-04-11T17:40:35Z #8 47.72 Unpacking gcc (4:10.2.1-1) ... -2024-04-11T17:40:35Z #8 47.77 Selecting previously unselected package libva2:amd64. -2024-04-11T17:40:35Z #8 47.77 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-04-11T17:40:35Z #8 47.77 Unpacking libva2:amd64 (2.10.0-1) ... -2024-04-11T17:40:35Z #8 47.82 Selecting previously unselected package libdrm-common. -2024-04-11T17:40:35Z #8 47.82 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-04-11T17:40:35Z #8 47.83 Unpacking libdrm-common (2.4.104-1) ... -2024-04-11T17:40:35Z #8 47.87 Selecting previously unselected package libdrm2:amd64. -2024-04-11T17:40:35Z #8 47.87 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-04-11T17:40:35Z #8 47.88 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-04-11T17:40:35Z #8 47.93 Selecting previously unselected package libpciaccess0:amd64. -2024-04-11T17:40:35Z #8 47.93 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-04-11T17:40:35Z #8 47.94 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-04-11T17:40:35Z #8 47.99 Selecting previously unselected package libdrm-intel1:amd64. -2024-04-11T17:40:35Z #8 47.99 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-04-11T17:40:35Z #8 48.00 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-11T17:40:35Z #8 48.05 Selecting previously unselected package i965-va-driver:amd64. -2024-04-11T17:40:35Z #8 48.05 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-04-11T17:40:35Z #8 48.06 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-11T17:40:35Z #8 48.16 Selecting previously unselected package libigdgmm11:amd64. -2024-04-11T17:40:35Z #8 48.17 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-04-11T17:40:35Z #8 48.17 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-11T17:40:35Z #8 48.24 Selecting previously unselected package intel-media-va-driver:amd64. -2024-04-11T17:40:35Z #8 48.24 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-04-11T17:40:35Z #8 48.24 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-11T17:40:35Z #8 48.64 Selecting previously unselected package libaom0:amd64. -2024-04-11T17:40:35Z #8 48.64 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-04-11T17:40:35Z #8 48.64 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-11T17:40:36Z #8 48.90 Selecting previously unselected package libmfx1:amd64. -2024-04-11T17:40:36Z #8 48.90 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-04-11T17:40:36Z #8 48.91 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-04-11T17:40:36Z #8 49.65 Selecting previously unselected package libva-drm2:amd64. -2024-04-11T17:40:36Z #8 49.65 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-04-11T17:40:36Z #8 49.65 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-04-11T17:40:36Z #8 49.70 Selecting previously unselected package libva-x11-2:amd64. -2024-04-11T17:40:36Z #8 49.70 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-04-11T17:40:36Z #8 49.71 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-04-11T17:40:36Z #8 49.76 Selecting previously unselected package libvdpau1:amd64. -2024-04-11T17:40:37Z #8 49.76 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-04-11T17:40:37Z #8 49.77 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-04-11T17:40:37Z #8 49.82 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-04-11T17:40:37Z #8 49.83 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-04-11T17:40:37Z #8 49.83 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-11T17:40:37Z #8 49.88 Selecting previously unselected package libavutil56:amd64. -2024-04-11T17:40:37Z #8 49.89 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-11T17:40:37Z #8 49.89 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-11T17:40:37Z #8 49.97 Selecting previously unselected package libcodec2-0.9:amd64. -2024-04-11T17:40:37Z #8 49.98 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-04-11T17:40:37Z #8 49.98 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-11T17:40:38Z #8 51.18 Selecting previously unselected package libdav1d4:amd64. -2024-04-11T17:40:38Z #8 51.18 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-04-11T17:40:38Z #8 51.18 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-04-11T17:40:38Z #8 51.28 Selecting previously unselected package libgsm1:amd64. -2024-04-11T17:40:38Z #8 51.28 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-04-11T17:40:38Z #8 51.29 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-04-11T17:40:38Z #8 51.33 Selecting previously unselected package libmp3lame0:amd64. -2024-04-11T17:40:38Z #8 51.33 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-04-11T17:40:38Z #8 51.34 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-04-11T17:40:38Z #8 51.41 Selecting previously unselected package libopenjp2-7:amd64. -2024-04-11T17:40:38Z #8 51.41 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-04-11T17:40:38Z #8 51.41 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-11T17:40:38Z #8 51.47 Selecting previously unselected package libopus0:amd64. -2024-04-11T17:40:38Z #8 51.48 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-04-11T17:40:38Z #8 51.48 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-04-11T17:40:38Z #8 51.55 Selecting previously unselected package librsvg2-2:amd64. -2024-04-11T17:40:38Z #8 51.55 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-11T17:40:38Z #8 51.56 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-11T17:40:39Z #8 52.09 Selecting previously unselected package libshine3:amd64. -2024-04-11T17:40:39Z #8 52.09 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-04-11T17:40:39Z #8 52.12 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-04-11T17:40:39Z #8 52.19 Selecting previously unselected package libsnappy1v5:amd64. -2024-04-11T17:40:39Z #8 52.19 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-04-11T17:40:39Z #8 52.20 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-11T17:40:39Z #8 52.23 Selecting previously unselected package libspeex1:amd64. -2024-04-11T17:40:39Z #8 52.24 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-04-11T17:40:39Z #8 52.24 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-11T17:40:39Z #8 52.29 Selecting previously unselected package libsoxr0:amd64. -2024-04-11T17:40:39Z #8 52.29 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-04-11T17:40:39Z #8 52.30 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-04-11T17:40:39Z #8 52.35 Selecting previously unselected package libswresample3:amd64. -2024-04-11T17:40:39Z #8 52.35 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-11T17:40:39Z #8 52.36 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-11T17:40:39Z #8 52.42 Selecting previously unselected package libogg0:amd64. -2024-04-11T17:40:39Z #8 52.42 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-04-11T17:40:39Z #8 52.42 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-04-11T17:40:39Z #8 52.48 Selecting previously unselected package libtheora0:amd64. -2024-04-11T17:40:39Z #8 52.48 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-04-11T17:40:39Z #8 52.49 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-11T17:40:39Z #8 52.55 Selecting previously unselected package libtwolame0:amd64. -2024-04-11T17:40:39Z #8 52.55 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-04-11T17:40:39Z #8 52.56 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-04-11T17:40:39Z #8 52.61 Selecting previously unselected package libvorbis0a:amd64. -2024-04-11T17:40:39Z #8 52.61 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-04-11T17:40:39Z #8 52.62 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-04-11T17:40:39Z #8 52.67 Selecting previously unselected package libvorbisenc2:amd64. -2024-04-11T17:40:39Z #8 52.67 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-04-11T17:40:39Z #8 52.68 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-11T17:40:40Z #8 52.74 Selecting previously unselected package libvpx6:amd64. -2024-04-11T17:40:40Z #8 52.75 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-04-11T17:40:40Z #8 52.75 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-11T17:40:40Z #8 52.91 Selecting previously unselected package libwavpack1:amd64. -2024-04-11T17:40:40Z #8 52.91 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-04-11T17:40:40Z #8 52.91 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-04-11T17:40:40Z #8 52.97 Selecting previously unselected package libwebpmux3:amd64. -2024-04-11T17:40:40Z #8 52.97 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-11T17:40:40Z #8 52.97 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-11T17:40:40Z #8 53.02 Selecting previously unselected package libx264-160:amd64. -2024-04-11T17:40:40Z #8 53.03 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-04-11T17:40:40Z #8 53.04 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-11T17:40:40Z #8 53.16 Selecting previously unselected package libnuma1:amd64. -2024-04-11T17:40:40Z #8 53.17 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-04-11T17:40:40Z #8 53.17 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-11T17:40:40Z #8 53.25 Selecting previously unselected package libx265-192:amd64. -2024-04-11T17:40:40Z #8 53.26 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-04-11T17:40:40Z #8 53.26 Unpacking libx265-192:amd64 (3.4-2) ... -2024-04-11T17:40:40Z #8 53.57 Selecting previously unselected package libxvidcore4:amd64. -2024-04-11T17:40:40Z #8 53.57 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-04-11T17:40:40Z #8 53.58 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-11T17:40:40Z #8 53.66 Selecting previously unselected package libzvbi-common. -2024-04-11T17:40:40Z #8 53.66 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-04-11T17:40:41Z #8 53.67 Unpacking libzvbi-common (0.2.35-18) ... -2024-04-11T17:40:41Z #8 53.72 Selecting previously unselected package libzvbi0:amd64. -2024-04-11T17:40:41Z #8 53.72 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-04-11T17:40:41Z #8 53.73 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-04-11T17:40:41Z #8 53.81 Selecting previously unselected package libavcodec58:amd64. -2024-04-11T17:40:41Z #8 53.81 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-11T17:40:41Z #8 53.82 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-11T17:40:41Z #8 54.59 Selecting previously unselected package libc-dev-bin. -2024-04-11T17:40:41Z #8 54.60 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... -2024-04-11T17:40:41Z #8 54.60 Unpacking libc-dev-bin (2.31-13+deb11u8) ... -2024-04-11T17:40:41Z #8 54.65 Selecting previously unselected package libxpm4:amd64. -2024-04-11T17:40:41Z #8 54.66 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-04-11T17:40:41Z #8 54.66 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-11T17:40:41Z #8 54.71 Selecting previously unselected package libgd3:amd64. -2024-04-11T17:40:41Z #8 54.71 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-04-11T17:40:41Z #8 54.72 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-04-11T17:40:42Z #8 54.77 Selecting previously unselected package libc-devtools. -2024-04-11T17:40:42Z #8 54.78 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... -2024-04-11T17:40:42Z #8 54.78 Unpacking libc-devtools (2.31-13+deb11u8) ... -2024-04-11T17:40:42Z #8 54.84 Selecting previously unselected package linux-libc-dev:amd64. -2024-04-11T17:40:42Z #8 54.84 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-04-11T17:40:42Z #8 54.85 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-11T17:40:42Z #8 55.20 Selecting previously unselected package libcrypt-dev:amd64. -2024-04-11T17:40:42Z #8 55.20 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-04-11T17:40:42Z #8 55.21 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-11T17:40:42Z #8 55.26 Selecting previously unselected package libtirpc-dev:amd64. -2024-04-11T17:40:42Z #8 55.26 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-04-11T17:40:42Z #8 55.27 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-11T17:40:42Z #8 55.33 Selecting previously unselected package libnsl-dev:amd64. -2024-04-11T17:40:42Z #8 55.34 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-04-11T17:40:42Z #8 55.35 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-04-11T17:40:42Z #8 55.39 Selecting previously unselected package libc6-dev:amd64. -2024-04-11T17:40:42Z #8 55.40 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... -2024-04-11T17:40:42Z #8 55.40 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-04-11T17:40:43Z #8 55.92 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-04-11T17:40:43Z #8 55.93 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-04-11T17:40:43Z #8 55.93 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-11T17:40:43Z #8 55.98 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-04-11T17:40:43Z #8 55.98 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-04-11T17:40:43Z #8 55.99 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-11T17:40:43Z #8 56.08 Selecting previously unselected package libdrm-radeon1:amd64. -2024-04-11T17:40:43Z #8 56.08 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-04-11T17:40:43Z #8 56.09 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-11T17:40:43Z #8 56.14 Selecting previously unselected package libelf1:amd64. -2024-04-11T17:40:43Z #8 56.14 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-04-11T17:40:43Z #8 56.15 Unpacking libelf1:amd64 (0.183-1) ... -2024-04-11T17:40:43Z #8 56.21 Selecting previously unselected package libfontenc1:amd64. -2024-04-11T17:40:43Z #8 56.22 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-04-11T17:40:43Z #8 56.22 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-11T17:40:43Z #8 56.26 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-04-11T17:40:43Z #8 56.26 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-11T17:40:43Z #8 56.27 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-11T17:40:43Z #8 56.31 Selecting previously unselected package libglapi-mesa:amd64. -2024-04-11T17:40:43Z #8 56.31 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-04-11T17:40:43Z #8 56.32 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-11T17:40:43Z #8 56.37 Selecting previously unselected package libz3-4:amd64. -2024-04-11T17:40:43Z #8 56.37 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-04-11T17:40:43Z #8 56.38 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-04-11T17:40:45Z #8 57.81 Selecting previously unselected package libllvm11:amd64. -2024-04-11T17:40:45Z #8 57.81 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-04-11T17:40:45Z #8 57.81 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-04-11T17:40:48Z #8 60.79 Selecting previously unselected package libsensors-config. -2024-04-11T17:40:48Z #8 60.79 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-04-11T17:40:48Z #8 60.79 Unpacking libsensors-config (1:3.6.0-7) ... -2024-04-11T17:40:48Z #8 60.84 Selecting previously unselected package libsensors5:amd64. -2024-04-11T17:40:48Z #8 60.84 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-04-11T17:40:48Z #8 60.88 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-04-11T17:40:48Z #8 60.93 Selecting previously unselected package libvulkan1:amd64. -2024-04-11T17:40:48Z #8 60.94 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-04-11T17:40:48Z #8 60.94 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-11T17:40:48Z #8 61.00 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-04-11T17:40:48Z #8 61.01 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-04-11T17:40:48Z #8 61.02 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-11T17:40:49Z #8 62.56 Selecting previously unselected package libglvnd0:amd64. -2024-04-11T17:40:49Z #8 62.56 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-04-11T17:40:49Z #8 62.57 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-04-11T17:40:49Z #8 62.62 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-04-11T17:40:49Z #8 62.63 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-04-11T17:40:49Z #8 62.63 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-11T17:40:50Z #8 62.68 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-04-11T17:40:50Z #8 62.69 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-04-11T17:40:50Z #8 62.70 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-11T17:40:50Z #8 62.75 Selecting previously unselected package libxcb-glx0:amd64. -2024-04-11T17:40:50Z #8 62.75 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-04-11T17:40:50Z #8 62.76 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-04-11T17:40:50Z #8 62.82 Selecting previously unselected package libxcb-present0:amd64. -2024-04-11T17:40:50Z #8 62.83 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-04-11T17:40:50Z #8 62.83 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-04-11T17:40:50Z #8 62.88 Selecting previously unselected package libxcb-sync1:amd64. -2024-04-11T17:40:50Z #8 62.89 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-04-11T17:40:50Z #8 62.89 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-04-11T17:40:50Z #8 62.95 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-04-11T17:40:50Z #8 62.96 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-04-11T17:40:50Z #8 62.97 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-11T17:40:52Z #8 64.79 Selecting previously unselected package libxshmfence1:amd64. -2024-04-11T17:40:52Z #8 64.79 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-04-11T17:40:52Z #8 65.10 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-04-11T17:40:53Z #8 66.08 Selecting previously unselected package libxxf86vm1:amd64. -2024-04-11T17:40:53Z #8 66.08 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-04-11T17:40:53Z #8 66.09 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-11T17:40:53Z #8 66.13 Selecting previously unselected package libglx-mesa0:amd64. -2024-04-11T17:40:53Z #8 66.13 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-04-11T17:40:53Z #8 66.13 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-11T17:40:53Z #8 66.19 Selecting previously unselected package libgtk-3-bin. -2024-04-11T17:40:53Z #8 66.20 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-04-11T17:40:53Z #8 66.21 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-11T17:40:53Z #8 66.26 Selecting previously unselected package librsvg2-common:amd64. -2024-04-11T17:40:53Z #8 66.27 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-11T17:40:53Z #8 66.27 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-11T17:40:53Z #8 66.31 Selecting previously unselected package libglx0:amd64. -2024-04-11T17:40:53Z #8 66.32 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-04-11T17:40:53Z #8 66.33 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-04-11T17:40:53Z #8 66.37 Selecting previously unselected package libgl1:amd64. -2024-04-11T17:40:53Z #8 66.38 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-04-11T17:40:53Z #8 66.38 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-04-11T17:40:53Z #8 66.44 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-04-11T17:40:53Z #8 66.44 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-04-11T17:40:53Z #8 66.45 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-11T17:40:53Z #8 66.49 Selecting previously unselected package libxt6:amd64. -2024-04-11T17:40:53Z #8 66.50 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-04-11T17:40:53Z #8 66.50 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-04-11T17:40:53Z #8 66.56 Selecting previously unselected package libxmu6:amd64. -2024-04-11T17:40:53Z #8 66.57 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-11T17:40:53Z #8 66.57 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-11T17:40:53Z #8 66.62 Selecting previously unselected package libxaw7:amd64. -2024-04-11T17:40:53Z #8 66.63 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-04-11T17:40:53Z #8 66.63 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-11T17:40:54Z #8 66.70 Selecting previously unselected package libxcb-randr0:amd64. -2024-04-11T17:40:54Z #8 66.70 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-04-11T17:40:54Z #8 66.71 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-04-11T17:40:54Z #8 66.77 Selecting previously unselected package libxcb-shape0:amd64. -2024-04-11T17:40:54Z #8 66.77 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-04-11T17:40:54Z #8 66.78 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-04-11T17:40:54Z #8 66.83 Selecting previously unselected package libxft2:amd64. -2024-04-11T17:40:54Z #8 66.83 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-04-11T17:40:54Z #8 66.84 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-04-11T17:40:54Z #8 66.88 Selecting previously unselected package libxkbfile1:amd64. -2024-04-11T17:40:54Z #8 66.89 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-04-11T17:40:54Z #8 66.89 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-11T17:40:54Z #8 66.94 Selecting previously unselected package libxmuu1:amd64. -2024-04-11T17:40:54Z #8 66.94 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-11T17:40:54Z #8 66.95 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-11T17:40:54Z #8 66.99 Selecting previously unselected package libxv1:amd64. -2024-04-11T17:40:54Z #8 66.99 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-04-11T17:40:54Z #8 66.99 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-04-11T17:40:54Z #8 67.05 Selecting previously unselected package libxxf86dga1:amd64. -2024-04-11T17:40:54Z #8 67.05 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-04-11T17:40:54Z #8 67.06 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-11T17:40:54Z #8 67.10 Selecting previously unselected package manpages-dev. -2024-04-11T17:40:54Z #8 67.10 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-04-11T17:40:54Z #8 67.11 Unpacking manpages-dev (5.10-1) ... -2024-04-11T17:40:54Z #8 67.55 Selecting previously unselected package mesa-va-drivers:amd64. -2024-04-11T17:40:54Z #8 67.56 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-04-11T17:40:54Z #8 67.57 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-11T17:40:55Z #8 68.01 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-04-11T17:40:55Z #8 68.01 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-04-11T17:40:55Z #8 68.01 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-11T17:40:55Z #8 68.48 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-04-11T17:40:55Z #8 68.48 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-04-11T17:40:55Z #8 68.48 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-11T17:40:56Z #8 69.21 Selecting previously unselected package patch. -2024-04-11T17:40:56Z #8 69.22 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-04-11T17:40:56Z #8 69.22 Unpacking patch (2.7.6-7) ... -2024-04-11T17:40:56Z #8 69.28 Selecting previously unselected package unzip. -2024-04-11T17:40:56Z #8 69.29 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-04-11T17:40:56Z #8 69.30 Unpacking unzip (6.0-26+deb11u1) ... -2024-04-11T17:40:56Z #8 69.36 Selecting previously unselected package va-driver-all:amd64. -2024-04-11T17:40:56Z #8 69.37 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-04-11T17:40:56Z #8 69.37 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-04-11T17:40:56Z #8 69.41 Selecting previously unselected package vdpau-driver-all:amd64. -2024-04-11T17:40:56Z #8 69.42 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-04-11T17:40:56Z #8 69.42 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-04-11T17:40:56Z #8 69.48 Selecting previously unselected package x11-utils. -2024-04-11T17:40:56Z #8 69.48 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-04-11T17:40:56Z #8 69.49 Unpacking x11-utils (7.7+5) ... -2024-04-11T17:40:56Z #8 69.63 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-11T17:40:56Z #8 69.65 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-11T17:40:56Z #8 69.66 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-11T17:40:56Z #8 69.68 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-11T17:40:56Z #8 69.70 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-11T17:40:56Z #8 69.71 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-04-11T17:40:56Z #8 69.73 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-04-11T17:40:56Z #8 69.75 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-04-11T17:40:56Z #8 69.77 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-11T17:40:57Z #8 69.78 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-11T17:40:57Z #8 69.80 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-04-11T17:40:57Z #8 69.81 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-11T17:40:57Z #8 69.83 Setting up libshine3:amd64 (3.1.1-2) ... -2024-04-11T17:40:57Z #8 69.85 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-11T17:40:57Z #8 69.86 Setting up hicolor-icon-theme (0.17-2) ... -2024-04-11T17:40:57Z #8 69.90 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-04-11T17:40:57Z #8 69.91 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-04-11T17:40:57Z #8 69.93 Setting up libicu67:amd64 (67.1-7) ... -2024-04-11T17:40:57Z #8 69.95 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-04-11T17:40:57Z #8 69.97 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-04-11T17:40:57Z #8 69.98 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-04-11T17:40:57Z #8 70.00 Setting up manpages (5.10-1) ... -2024-04-11T17:40:57Z #8 70.02 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-04-11T17:40:57Z #8 70.03 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-04-11T17:40:57Z #8 70.05 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-04-11T17:40:57Z #8 70.06 Setting up unzip (6.0-26+deb11u1) ... -2024-04-11T17:40:57Z #8 70.08 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-11T17:40:57Z #8 70.10 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-11T17:40:57Z #8 70.11 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-04-11T17:40:57Z #8 70.13 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-04-11T17:40:57Z #8 70.14 Setting up libsensors-config (1:3.6.0-7) ... -2024-04-11T17:40:57Z #8 70.16 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-11T17:40:57Z #8 70.17 Setting up libdeflate0:amd64 (1.7-1) ... -2024-04-11T17:40:57Z #8 70.19 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-11T17:40:57Z #8 70.20 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-11T17:40:57Z #8 70.21 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-11T17:40:57Z #8 70.23 First installation detected... -2024-04-11T17:40:57Z #8 70.23 Checking NSS setup... -2024-04-11T17:40:57Z #8 70.23 Setting up xkb-data (2.29-2) ... -2024-04-11T17:40:57Z #8 70.24 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-04-11T17:40:57Z #8 70.26 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-04-11T17:40:57Z #8 70.27 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-11T17:40:57Z #8 70.28 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-11T17:40:57Z #8 70.29 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-11T17:40:57Z #8 70.31 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-04-11T17:40:57Z #8 70.32 Setting up libasan6:amd64 (10.2.1-6) ... -2024-04-11T17:40:57Z #8 70.34 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-11T17:40:57Z #8 70.35 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-11T17:40:57Z #8 70.37 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-04-11T17:40:57Z #8 70.39 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-04-11T17:40:57Z #8 70.40 Setting up libasound2-data (1.2.4-1.1) ... -2024-04-11T17:40:57Z #8 70.42 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-11T17:40:57Z #8 70.43 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-04-11T17:40:57Z #8 70.44 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-11T17:40:57Z #8 70.46 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-04-11T17:40:57Z #8 70.48 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-11T17:40:57Z #8 70.49 Setting up libva2:amd64 (2.10.0-1) ... -2024-04-11T17:40:57Z #8 70.51 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-11T17:40:57Z #8 70.52 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-04-11T17:40:57Z #8 70.54 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-04-11T17:40:57Z #8 70.56 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-11T17:40:57Z #8 70.57 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-04-11T17:40:57Z #8 70.59 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-11T17:40:57Z #8 70.60 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-11T17:40:57Z #8 70.61 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-11T17:40:57Z #8 70.63 Setting up dbus (1.12.28-0+deb11u1) ... -2024-04-11T17:40:58Z #8 70.79 invoke-rc.d: could not determine current runlevel -2024-04-11T17:40:58Z #8 70.80 invoke-rc.d: policy-rc.d denied execution of start. -2024-04-11T17:40:58Z #8 70.80 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-11T17:40:58Z #8 70.82 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-04-11T17:40:58Z #8 70.83 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-04-11T17:40:58Z #8 70.84 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-11T17:40:58Z #8 70.85 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-11T17:40:58Z #8 70.87 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-04-11T17:40:58Z #8 70.88 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-04-11T17:40:58Z #8 70.89 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-04-11T17:40:58Z #8 70.91 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-11T17:40:58Z #8 71.27 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-11T17:40:58Z #8 71.27 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-11T17:40:58Z #8 71.27 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-04-11T17:40:58Z #8 71.29 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-04-11T17:40:58Z #8 71.30 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-11T17:40:58Z #8 71.32 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-11T17:40:58Z #8 71.33 Setting up patch (2.7.6-7) ... -2024-04-11T17:40:58Z #8 71.35 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-11T17:40:58Z #8 71.36 Setting up fonts-dejavu-core (2.37-2) ... -2024-04-11T17:40:58Z #8 71.49 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-04-11T17:40:58Z #8 71.51 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-04-11T17:40:58Z #8 71.52 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-11T17:40:58Z #8 71.53 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-11T17:40:58Z #8 71.55 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-04-11T17:40:58Z #8 71.56 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-11T17:40:58Z #8 71.57 Setting up libatk1.0-data (2.36.0-2) ... -2024-04-11T17:40:58Z #8 71.59 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-11T17:40:58Z #8 71.60 Setting up alsa-topology-conf (1.2.4-1) ... -2024-04-11T17:40:58Z #8 71.61 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-04-11T17:40:58Z #8 71.63 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-11T17:40:58Z #8 71.64 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-04-11T17:40:58Z #8 71.65 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-11T17:40:58Z #8 71.66 Setting up libvdpau1:amd64 (1.4-3) ... -2024-04-11T17:40:59Z #8 71.68 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-11T17:40:59Z #8 71.70 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-04-11T17:40:59Z #8 71.71 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-04-11T17:40:59Z #8 71.72 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-04-11T17:40:59Z #8 71.73 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-11T17:40:59Z #8 72.01 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-04-11T17:40:59Z #8 72.02 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-11T17:40:59Z #8 72.03 Setting up libthai-data (0.1.28-3) ... -2024-04-11T17:40:59Z #8 72.07 Setting up fonts-humor-sans (1.0-4) ... -2024-04-11T17:40:59Z #8 72.08 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-04-11T17:40:59Z #8 72.09 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-11T17:40:59Z #8 72.11 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-11T17:40:59Z #8 72.12 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-11T17:40:59Z #8 72.14 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-11T17:40:59Z #8 72.15 Setting up glib-networking-common (2.66.0-2) ... -2024-04-11T17:40:59Z #8 72.16 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-04-11T17:40:59Z #8 72.17 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-04-11T17:40:59Z #8 72.19 Setting up libisl23:amd64 (0.23-1) ... -2024-04-11T17:40:59Z #8 72.20 Setting up libc-dev-bin (2.31-13+deb11u8) ... -2024-04-11T17:40:59Z #8 72.21 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-11T17:40:59Z #8 72.23 Setting up libdrm-common (2.4.104-1) ... -2024-04-11T17:40:59Z #8 72.24 Setting up libelf1:amd64 (0.183-1) ... -2024-04-11T17:40:59Z #8 72.25 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-11T17:40:59Z #8 72.27 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-11T17:40:59Z #8 72.28 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-04-11T17:40:59Z #8 72.29 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-11T17:40:59Z #8 72.30 Setting up libzvbi-common (0.2.35-18) ... -2024-04-11T17:40:59Z #8 72.32 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-04-11T17:40:59Z #8 72.33 Setting up cpp-10 (10.2.1-6) ... -2024-04-11T17:40:59Z #8 72.34 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-04-11T17:40:59Z #8 72.35 Setting up libitm1:amd64 (10.2.1-6) ... -2024-04-11T17:40:59Z #8 72.37 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-11T17:40:59Z #8 72.38 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-04-11T17:40:59Z #8 72.39 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-11T17:40:59Z #8 72.40 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-11T17:40:59Z #8 72.42 Setting up libctf0:amd64 (2.35.2-2) ... -2024-04-11T17:40:59Z #8 72.43 Setting up glib-networking-services (2.66.0-2) ... -2024-04-11T17:40:59Z #8 72.45 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-04-11T17:40:59Z #8 72.46 Setting up manpages-dev (5.10-1) ... -2024-04-11T17:40:59Z #8 72.47 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-11T17:40:59Z #8 72.48 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-04-11T17:40:59Z #8 72.50 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-04-11T17:40:59Z #8 72.51 Setting up fontconfig-config (2.13.1-4.2) ... -2024-04-11T17:41:00Z #8 72.85 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-11T17:41:00Z #8 72.86 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-11T17:41:00Z #8 72.88 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-11T17:41:00Z #8 72.89 Setting up libx265-192:amd64 (3.4-2) ... -2024-04-11T17:41:00Z #8 72.90 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-11T17:41:00Z #8 72.92 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-11T17:41:00Z #8 72.93 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-11T17:41:00Z #8 72.95 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-11T17:41:00Z #8 72.96 Setting up libthai0:amd64 (0.1.28-3) ... -2024-04-11T17:41:00Z #8 72.98 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-11T17:41:00Z #8 73.00 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-11T17:41:00Z #8 73.02 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-11T17:41:00Z #8 73.03 Setting up shared-mime-info (2.0-1) ... -2024-04-11T17:41:02Z #8 75.49 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-04-11T17:41:02Z #8 75.51 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-04-11T17:41:02Z #8 75.52 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-11T17:41:02Z #8 75.55 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-11T17:41:02Z #8 75.56 Setting up cpp (4:10.2.1-1) ... -2024-04-11T17:41:02Z #8 75.58 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-04-11T17:41:02Z #8 75.59 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-11T17:41:02Z #8 75.61 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-11T17:41:02Z #8 75.65 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-11T17:41:03Z #8 75.71 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-04-11T17:41:03Z #8 75.72 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-11T17:41:03Z #8 75.73 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-11T17:41:03Z #8 75.75 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-11T17:41:03Z #8 75.76 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-11T17:41:03Z #8 75.77 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-11T17:41:03Z #8 75.79 Setting up fontconfig (2.13.1-4.2) ... -2024-04-11T17:41:05Z #8 75.80 Regenerating fonts cache... done. -2024-04-11T17:41:05Z #8 77.83 Setting up libxft2:amd64 (2.3.2-2) ... -2024-04-11T17:41:05Z #8 77.84 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-11T17:41:05Z #8 77.85 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-11T17:41:05Z #8 77.86 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-11T17:41:05Z #8 77.87 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-11T17:41:05Z #8 77.88 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-11T17:41:05Z #8 77.90 Setting up dconf-service (0.38.0-2) ... -2024-04-11T17:41:05Z #8 77.91 Setting up binutils (2.35.2-2) ... -2024-04-11T17:41:05Z #8 77.92 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-04-11T17:41:05Z #8 77.94 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-11T17:41:05Z #8 77.95 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-04-11T17:41:05Z #8 78.04 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-04-11T17:41:05Z #8 78.05 Setting up libgd3:amd64 (2.3.0-2) ... -2024-04-11T17:41:05Z #8 78.06 Setting up gcc-10 (10.2.1-6) ... -2024-04-11T17:41:05Z #8 78.07 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-11T17:41:05Z #8 78.08 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-11T17:41:05Z #8 78.09 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-11T17:41:05Z #8 78.11 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-11T17:41:05Z #8 78.12 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-11T17:41:05Z #8 78.13 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-11T17:41:05Z #8 78.14 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-11T17:41:05Z #8 78.16 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-11T17:41:05Z #8 78.17 Setting up libc-devtools (2.31-13+deb11u8) ... -2024-04-11T17:41:05Z #8 78.18 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-11T17:41:05Z #8 78.19 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-11T17:41:05Z #8 78.21 Setting up libglx0:amd64 (1.3.2-1) ... -2024-04-11T17:41:05Z #8 78.22 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-11T17:41:05Z #8 78.23 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-11T17:41:05Z #8 78.25 Setting up gcc (4:10.2.1-1) ... -2024-04-11T17:41:05Z #8 78.28 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-11T17:41:05Z #8 78.29 Setting up libgl1:amd64 (1.3.2-1) ... -2024-04-11T17:41:05Z #8 78.30 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-04-11T17:41:05Z #8 78.31 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-11T17:41:05Z #8 78.33 Setting up x11-utils (7.7+5) ... -2024-04-11T17:41:05Z #8 78.38 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-11T17:41:05Z #8 78.39 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-11T17:41:05Z #8 78.41 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-11T17:41:05Z #8 78.42 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-04-11T17:41:05Z #8 78.44 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-04-11T17:41:05Z #8 78.46 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-04-11T17:41:05Z #8 78.49 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-11T17:41:05Z #8 78.53 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-04-11T17:41:05Z #8 78.55 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-11T17:41:05Z #8 78.57 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-11T17:41:05Z #8 78.58 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-11T17:41:05Z #8 78.59 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-11T17:41:05Z #8 78.63 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-11T17:41:05Z #8 78.64 Setting up firefox-esr (115.9.1esr-1~deb11u1) ... -2024-04-11T17:41:05Z #8 78.66 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-04-11T17:41:05Z #8 78.66 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-04-11T17:41:05Z #8 78.67 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-04-11T17:41:05Z #8 78.67 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-04-11T17:41:05Z #8 78.68 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-11T17:41:05Z #8 78.71 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-11T17:41:09Z #8 DONE 82.1s -2024-04-11T17:41:09Z -2024-04-11T17:41:09Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-04-11T17:41:56Z #9 DONE 47.3s -2024-04-11T17:41:56Z -2024-04-11T17:41:56Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-11T17:41:56Z #5 ... -2024-04-11T17:41:56Z -2024-04-11T17:41:56Z #10 [ 5/10] COPY environment.yml /environment.yml -2024-04-11T17:41:56Z #10 DONE 0.0s -2024-04-11T17:41:56Z -2024-04-11T17:41:56Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-04-11T17:44:29Z #11 152.6 Transaction -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 Prefix: /opt/conda/envs/birdy -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 Updating specs: -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 - xclim -2024-04-11T17:44:29Z #11 152.6 - ravenpy -2024-04-11T17:44:29Z #11 152.6 - python=3.10 -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 Package Version Build Channel Size -2024-04-11T17:44:29Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-11T17:44:29Z #11 152.6 Install: -2024-04-11T17:44:29Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-04-11T17:44:29Z #11 152.6 + python_abi 3.10 4_cp310 conda-forge 6kB -2024-04-11T17:44:29Z #11 152.6 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB -2024-04-11T17:44:29Z #11 152.6 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB -2024-04-11T17:44:29Z #11 152.6 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB -2024-04-11T17:44:29Z #11 152.6 + mpi 1.0 openmpi conda-forge 4kB -2024-04-11T17:44:29Z #11 152.6 + libgomp 13.2.0 h807b86a_5 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-04-11T17:44:29Z #11 152.6 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-04-11T17:44:29Z #11 152.6 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-04-11T17:44:29Z #11 152.6 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-04-11T17:44:29Z #11 152.6 + lzo 2.10 h516909a_1000 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-04-11T17:44:29Z #11 152.6 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-04-11T17:44:29Z #11 152.6 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-04-11T17:44:29Z #11 152.6 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-04-11T17:44:29Z #11 152.6 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-04-11T17:44:29Z #11 152.6 + aws-c-common 0.9.15 hd590300_0 conda-forge 227kB -2024-04-11T17:44:29Z #11 152.6 + c-ares 1.28.1 hd590300_0 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + libev 4.33 hd590300_2 conda-forge 113kB -2024-04-11T17:44:29Z #11 152.6 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-04-11T17:44:29Z #11 152.6 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-04-11T17:44:29Z #11 152.6 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-04-11T17:44:29Z #11 152.6 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-04-11T17:44:29Z #11 152.6 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-04-11T17:44:29Z #11 152.6 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-04-11T17:44:29Z #11 152.6 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-04-11T17:44:29Z #11 152.6 + giflib 5.2.2 hd590300_0 conda-forge 77kB -2024-04-11T17:44:29Z #11 152.6 + snappy 1.2.0 hdb0a2a9_1 conda-forge 42kB -2024-04-11T17:44:29Z #11 152.6 + libwebp-base 1.3.2 hd590300_1 conda-forge 435kB -2024-04-11T17:44:29Z #11 152.6 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-04-11T17:44:29Z #11 152.6 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-04-11T17:44:29Z #11 152.6 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + openssl 3.2.1 hd590300_1 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + libxcrypt 4.4.36 hd590300_1 conda-forge 100kB -2024-04-11T17:44:29Z #11 152.6 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-04-11T17:44:29Z #11 152.6 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-04-11T17:44:29Z #11 152.6 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-04-11T17:44:29Z #11 152.6 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-04-11T17:44:29Z #11 152.6 + icu 73.2 h59595ed_0 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-04-11T17:44:29Z #11 152.6 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB -2024-04-11T17:44:29Z #11 152.6 + libdeflate 1.20 hd590300_0 conda-forge 72kB -2024-04-11T17:44:29Z #11 152.6 + libaec 1.1.3 h59595ed_0 conda-forge 35kB -2024-04-11T17:44:29Z #11 152.6 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-04-11T17:44:29Z #11 152.6 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-04-11T17:44:29Z #11 152.6 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-04-11T17:44:29Z #11 152.6 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-04-11T17:44:29Z #11 152.6 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB -2024-04-11T17:44:29Z #11 152.6 + libuuid 2.38.1 h0b41bf4_0 conda-forge 34kB -2024-04-11T17:44:29Z #11 152.6 + libnsl 2.0.1 hd590300_0 conda-forge 33kB -2024-04-11T17:44:29Z #11 152.6 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-04-11T17:44:29Z #11 152.6 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB -2024-04-11T17:44:29Z #11 152.6 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB -2024-04-11T17:44:29Z #11 152.6 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-04-11T17:44:29Z #11 152.6 + aws-c-compression 0.2.18 hce8ee76_3 conda-forge 19kB -2024-04-11T17:44:29Z #11 152.6 + aws-checksums 0.1.18 hce8ee76_3 conda-forge 50kB -2024-04-11T17:44:29Z #11 152.6 + aws-c-sdkutils 0.1.15 hce8ee76_3 conda-forge 55kB -2024-04-11T17:44:29Z #11 152.6 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-04-11T17:44:29Z #11 152.6 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-04-11T17:44:29Z #11 152.6 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-04-11T17:44:29Z #11 152.6 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-04-11T17:44:29Z #11 152.6 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-04-11T17:44:29Z #11 152.6 + s2n 1.4.9 h06160fa_0 conda-forge 341kB -2024-04-11T17:44:29Z #11 152.6 + aws-c-cal 0.6.11 heb1d5e4_0 conda-forge 46kB -2024-04-11T17:44:29Z #11 152.6 + expat 2.6.2 h59595ed_0 conda-forge 138kB -2024-04-11T17:44:29Z #11 152.6 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB -2024-04-11T17:44:29Z #11 152.6 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-04-11T17:44:29Z #11 152.6 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-04-11T17:44:29Z #11 152.6 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-04-11T17:44:29Z #11 152.6 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-04-11T17:44:29Z #11 152.6 + libssh2 1.11.0 h0841786_0 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + tk 8.6.13 noxft_h4845f30_101 conda-forge 3MB -2024-04-11T17:44:29Z #11 152.6 + pcre2 10.43 hcad00b1_0 conda-forge 951kB -2024-04-11T17:44:29Z #11 152.6 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-04-11T17:44:29Z #11 152.6 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2024-04-11T17:44:29Z #11 152.6 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + libsqlite 3.45.2 h2797004_0 conda-forge 857kB -2024-04-11T17:44:29Z #11 152.6 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB -2024-04-11T17:44:29Z #11 152.6 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-04-11T17:44:29Z #11 152.6 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-04-11T17:44:29Z #11 152.6 + readline 8.2 h8228510_1 conda-forge 281kB -2024-04-11T17:44:29Z #11 152.6 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-04-11T17:44:29Z #11 152.6 + libxml2 2.12.6 h232c23b_1 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + ucx 1.15.0 ha691c75_8 conda-forge 7MB -2024-04-11T17:44:29Z #11 152.6 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-04-11T17:44:29Z #11 152.6 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-04-11T17:44:29Z #11 152.6 + xorg-libx11 1.8.9 h8ee46fc_0 conda-forge 828kB -2024-04-11T17:44:29Z #11 152.6 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-04-11T17:44:29Z #11 152.6 + aws-c-io 0.14.7 h76a7424_3 conda-forge 158kB -2024-04-11T17:44:29Z #11 152.6 + libglib 2.80.0 hf2295e7_4 conda-forge 3MB -2024-04-11T17:44:29Z #11 152.6 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-04-11T17:44:29Z #11 152.6 + orc 2.0.0 h17fec99_1 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-04-11T17:44:29Z #11 152.6 + blosc 1.21.5 hc2324a3_1 conda-forge 49kB -2024-04-11T17:44:29Z #11 152.6 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB -2024-04-11T17:44:29Z #11 152.6 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-04-11T17:44:29Z #11 152.6 + openmpi 4.1.6 hc5af2df_101 conda-forge 4MB -2024-04-11T17:44:29Z #11 152.6 + libopenblas 0.3.27 pthreads_h413a1c8_0 conda-forge 6MB -2024-04-11T17:44:29Z #11 152.6 + krb5 1.21.2 h659d440_0 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + sqlite 3.45.2 h2c6b66d_0 conda-forge 848kB -2024-04-11T17:44:29Z #11 152.6 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-04-11T17:44:29Z #11 152.6 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-04-11T17:44:29Z #11 152.6 + libgrpc 1.62.1 h15f2491_0 conda-forge 8MB -2024-04-11T17:44:29Z #11 152.6 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-04-11T17:44:29Z #11 152.6 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-04-11T17:44:29Z #11 152.6 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-04-11T17:44:29Z #11 152.6 + aws-c-event-stream 0.4.2 h01f5eca_8 conda-forge 54kB -2024-04-11T17:44:29Z #11 152.6 + aws-c-http 0.8.1 hdb68c23_10 conda-forge 195kB -2024-04-11T17:44:29Z #11 152.6 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-04-11T17:44:29Z #11 152.6 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-04-11T17:44:29Z #11 152.6 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-04-11T17:44:29Z #11 152.6 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-04-11T17:44:29Z #11 152.6 + libblas 3.9.0 22_linux64_openblas conda-forge 15kB -2024-04-11T17:44:29Z #11 152.6 + libpq 16.2 h33b98f1_1 conda-forge 3MB -2024-04-11T17:44:29Z #11 152.6 + libcurl 8.7.1 hca28451_0 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + aws-c-mqtt 0.10.3 h50844eb_4 conda-forge 164kB -2024-04-11T17:44:29Z #11 152.6 + aws-c-auth 0.7.17 he0b1f16_2 conda-forge 104kB -2024-04-11T17:44:29Z #11 152.6 + libcblas 3.9.0 22_linux64_openblas conda-forge 14kB -2024-04-11T17:44:29Z #11 152.6 + liblapack 3.9.0 22_linux64_openblas conda-forge 14kB -2024-04-11T17:44:29Z #11 152.6 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB -2024-04-11T17:44:29Z #11 152.6 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB -2024-04-11T17:44:29Z #11 152.6 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-04-11T17:44:29Z #11 152.6 + cfitsio 4.4.0 hbdc6101_0 conda-forge 913kB -2024-04-11T17:44:29Z #11 152.6 + proj 9.3.1 h1d62c97_0 conda-forge 3MB -2024-04-11T17:44:29Z #11 152.6 + aws-c-s3 0.5.7 hb7bd14b_1 conda-forge 108kB -2024-04-11T17:44:29Z #11 152.6 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB -2024-04-11T17:44:29Z #11 152.6 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB -2024-04-11T17:44:29Z #11 152.6 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-04-11T17:44:29Z #11 152.6 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-04-11T17:44:29Z #11 152.6 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB -2024-04-11T17:44:29Z #11 152.6 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB -2024-04-11T17:44:29Z #11 152.6 + aws-crt-cpp 0.26.6 hf567797_4 conda-forge 335kB -2024-04-11T17:44:29Z #11 152.6 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB -2024-04-11T17:44:29Z #11 152.6 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-04-11T17:44:29Z #11 152.6 + aws-sdk-cpp 1.11.267 hbf3e495_6 conda-forge 4MB -2024-04-11T17:44:29Z #11 152.6 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB -2024-04-11T17:44:29Z #11 152.6 + tiledb 2.21.2 h8a5282e_1 conda-forge 4MB -2024-04-11T17:44:29Z #11 152.6 + libarrow 15.0.2 he70291f_3_cpu conda-forge 8MB -2024-04-11T17:44:29Z #11 152.6 + libparquet 15.0.2 h6a7eafb_3_cpu conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + libarrow-gandiva 15.0.2 hd4ab825_3_cpu conda-forge 896kB -2024-04-11T17:44:29Z #11 152.6 + libarrow-flight 15.0.2 hd42f311_3_cpu conda-forge 506kB -2024-04-11T17:44:29Z #11 152.6 + libarrow-acero 15.0.2 hac33072_3_cpu conda-forge 598kB -2024-04-11T17:44:29Z #11 152.6 + libarrow-flight-sql 15.0.2 h9241762_3_cpu conda-forge 195kB -2024-04-11T17:44:29Z #11 152.6 + libarrow-dataset 15.0.2 hac33072_3_cpu conda-forge 586kB -2024-04-11T17:44:29Z #11 152.6 + libarrow-substrait 15.0.2 h9241762_3_cpu conda-forge 519kB -2024-04-11T17:44:29Z #11 152.6 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-04-11T17:44:29Z #11 152.6 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-04-11T17:44:29Z #11 152.6 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-04-11T17:44:29Z #11 152.6 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-04-11T17:44:29Z #11 152.6 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-04-11T17:44:29Z #11 152.6 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB -2024-04-11T17:44:29Z #11 152.6 + fonts-conda-forge 1 0 conda-forge 4kB -2024-04-11T17:44:29Z #11 152.6 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-04-11T17:44:29Z #11 152.6 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB -2024-04-11T17:44:29Z #11 152.6 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB -2024-04-11T17:44:29Z #11 152.6 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-04-11T17:44:29Z #11 152.6 + poppler 24.03.0 h590f24d_0 conda-forge 2MB -2024-04-11T17:44:29Z #11 152.6 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB -2024-04-11T17:44:29Z #11 152.6 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB -2024-04-11T17:44:29Z #11 152.6 + setuptools 69.2.0 pyhd8ed1ab_0 conda-forge 471kB -2024-04-11T17:44:29Z #11 152.6 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-04-11T17:44:29Z #11 152.6 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB -2024-04-11T17:44:29Z #11 152.6 + joblib 1.4.0 pyhd8ed1ab_0 conda-forge 220kB -2024-04-11T17:44:29Z #11 152.6 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB -2024-04-11T17:44:29Z #11 152.6 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB -2024-04-11T17:44:29Z #11 152.6 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-11T17:44:29Z #11 152.6 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-04-11T17:44:29Z #11 152.6 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-04-11T17:44:29Z #11 152.6 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-11T17:44:29Z #11 152.6 + networkx 3.3 pyhd8ed1ab_1 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-04-11T17:44:29Z #11 152.6 + idna 3.6 pyhd8ed1ab_0 conda-forge 50kB -2024-04-11T17:44:29Z #11 152.6 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-04-11T17:44:29Z #11 152.6 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-04-11T17:44:29Z #11 152.6 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-04-11T17:44:29Z #11 152.6 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB -2024-04-11T17:44:29Z #11 152.6 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-04-11T17:44:29Z #11 152.6 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-04-11T17:44:29Z #11 152.6 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-04-11T17:44:29Z #11 152.6 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-04-11T17:44:29Z #11 152.6 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-04-11T17:44:29Z #11 152.6 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-04-11T17:44:29Z #11 152.6 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-04-11T17:44:29Z #11 152.6 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-04-11T17:44:29Z #11 152.6 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-04-11T17:44:29Z #11 152.6 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-11T17:44:29Z #11 152.6 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-04-11T17:44:29Z #11 152.6 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-04-11T17:44:29Z #11 152.6 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-04-11T17:44:29Z #11 152.6 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB -2024-04-11T17:44:29Z #11 152.6 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB -2024-04-11T17:44:29Z #11 152.6 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-04-11T17:44:29Z #11 152.6 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-04-11T17:44:29Z #11 152.6 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB -2024-04-11T17:44:29Z #11 152.6 + typing_extensions 4.11.0 pyha770c72_0 conda-forge 38kB -2024-04-11T17:44:29Z #11 152.6 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-04-11T17:44:29Z #11 152.6 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB -2024-04-11T17:44:29Z #11 152.6 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB -2024-04-11T17:44:29Z #11 152.6 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-04-11T17:44:29Z #11 152.6 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-04-11T17:44:29Z #11 152.6 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-04-11T17:44:29Z #11 152.6 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-04-11T17:44:29Z #11 152.6 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-04-11T17:44:29Z #11 152.6 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB -2024-04-11T17:44:29Z #11 152.6 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-04-11T17:44:29Z #11 152.6 + typing-extensions 4.11.0 hd8ed1ab_0 conda-forge 10kB -2024-04-11T17:44:29Z #11 152.6 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB -2024-04-11T17:44:29Z #11 152.6 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-11T17:44:29Z #11 152.6 + jsonpickle 3.0.4 pyhd8ed1ab_0 conda-forge 39kB -2024-04-11T17:44:29Z #11 152.6 + mpi4py 3.1.5 py310h2a790f2_1 conda-forge 544kB -2024-04-11T17:44:29Z #11 152.6 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB -2024-04-11T17:44:29Z #11 152.6 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB -2024-04-11T17:44:29Z #11 152.6 + tornado 6.4 py310h2372a71_0 conda-forge 651kB -2024-04-11T17:44:29Z #11 152.6 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB -2024-04-11T17:44:29Z #11 152.6 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB -2024-04-11T17:44:29Z #11 152.6 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB -2024-04-11T17:44:29Z #11 152.6 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB -2024-04-11T17:44:29Z #11 152.6 + pillow 10.3.0 py310hf73ecf8_0 conda-forge 42MB -2024-04-11T17:44:29Z #11 152.6 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB -2024-04-11T17:44:29Z #11 152.6 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB -2024-04-11T17:44:29Z #11 152.6 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB -2024-04-11T17:44:29Z #11 152.6 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB -2024-04-11T17:44:29Z #11 152.6 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB -2024-04-11T17:44:29Z #11 152.6 + numpy 1.24.4 py310ha4c1d20_0 conda-forge 7MB -2024-04-11T17:44:29Z #11 152.6 + lxml 5.1.0 py310hcfd0673_0 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB -2024-04-11T17:44:29Z #11 152.6 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB -2024-04-11T17:44:29Z #11 152.6 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB -2024-04-11T17:44:29Z #11 152.6 + pydantic-core 2.16.3 py310hcb5633a_0 conda-forge 2MB -2024-04-11T17:44:29Z #11 152.6 + fonttools 4.51.0 py310h2372a71_0 conda-forge 2MB -2024-04-11T17:44:29Z #11 152.6 + pyarrow 15.0.2 py310hc7d9cee_3_cpu conda-forge 5MB -2024-04-11T17:44:29Z #11 152.6 + contourpy 1.2.1 py310hd41b1e2_0 conda-forge 242kB -2024-04-11T17:44:29Z #11 152.6 + gdal 3.8.4 py310he073c5f_5 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB -2024-04-11T17:44:29Z #11 152.6 + numba 0.59.1 py310h7dc5dd1_0 conda-forge 4MB -2024-04-11T17:44:29Z #11 152.6 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB -2024-04-11T17:44:29Z #11 152.6 + h5py 3.11.0 nompi_py310h65828d5_100 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + pandas 2.2.2 py310hcc13569_0 conda-forge 13MB -2024-04-11T17:44:29Z #11 152.6 + shapely 2.0.3 py310hc3e127f_0 conda-forge 484kB -2024-04-11T17:44:29Z #11 152.6 + scipy 1.13.0 py310hb13e2d6_0 conda-forge 16MB -2024-04-11T17:44:29Z #11 152.6 + matplotlib-base 3.8.4 py310h62c0568_0 conda-forge 7MB -2024-04-11T17:44:29Z #11 152.6 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB -2024-04-11T17:44:29Z #11 152.6 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB -2024-04-11T17:44:29Z #11 152.6 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB -2024-04-11T17:44:29Z #11 152.6 + scikit-learn 1.4.2 py310h1fdf081_0 conda-forge 9MB -2024-04-11T17:44:29Z #11 152.6 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-04-11T17:44:29Z #11 152.6 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-04-11T17:44:29Z #11 152.6 + yamale 5.0.0 pyhca7485f_0 conda-forge 45kB -2024-04-11T17:44:29Z #11 152.6 + dask-core 2024.4.1 pyhd8ed1ab_0 conda-forge 881kB -2024-04-11T17:44:29Z #11 152.6 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB -2024-04-11T17:44:29Z #11 152.6 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-04-11T17:44:29Z #11 152.6 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-04-11T17:44:29Z #11 152.6 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-04-11T17:44:29Z #11 152.6 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-04-11T17:44:29Z #11 152.6 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-04-11T17:44:29Z #11 152.6 + pydantic 2.6.4 pyhd8ed1ab_0 conda-forge 272kB -2024-04-11T17:44:29Z #11 152.6 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-04-11T17:44:29Z #11 152.6 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB -2024-04-11T17:44:29Z #11 152.6 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB -2024-04-11T17:44:29Z #11 152.6 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB -2024-04-11T17:44:29Z #11 152.6 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-04-11T17:44:29Z #11 152.6 + properscoring 0.1 py_0 conda-forge 22kB -2024-04-11T17:44:29Z #11 152.6 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-04-11T17:44:29Z #11 152.6 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-04-11T17:44:29Z #11 152.6 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-04-11T17:44:29Z #11 152.6 + bokeh 3.4.0 pyhd8ed1ab_0 conda-forge 5MB -2024-04-11T17:44:29Z #11 152.6 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB -2024-04-11T17:44:29Z #11 152.6 + dask-expr 1.0.11 pyhd8ed1ab_0 conda-forge 143kB -2024-04-11T17:44:29Z #11 152.6 + distributed 2024.4.1 pyhd8ed1ab_0 conda-forge 794kB -2024-04-11T17:44:29Z #11 152.6 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-04-11T17:44:29Z #11 152.6 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-04-11T17:44:29Z #11 152.6 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-04-11T17:44:29Z #11 152.6 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-04-11T17:44:29Z #11 152.6 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-04-11T17:44:29Z #11 152.6 + dask 2024.4.1 pyhd8ed1ab_0 conda-forge 7kB -2024-04-11T17:44:29Z #11 152.6 + xesmf 0.8.4 pyhd8ed1ab_1 conda-forge 44kB -2024-04-11T17:44:29Z #11 152.6 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB -2024-04-11T17:44:29Z #11 152.6 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-04-11T17:44:29Z #11 152.6 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-04-11T17:44:29Z #11 152.6 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB -2024-04-11T17:44:29Z #11 152.6 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB -2024-04-11T17:44:29Z #11 152.6 + rioxarray 0.15.3 pyhd8ed1ab_0 conda-forge 51kB -2024-04-11T17:44:29Z #11 152.6 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB -2024-04-11T17:44:29Z #11 152.6 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-04-11T17:44:29Z #11 152.6 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB -2024-04-11T17:44:29Z #11 152.6 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-04-11T17:44:29Z #11 152.6 + ravenpy 0.14.0 pyhd8ed1ab_0 conda-forge 6MB -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 Summary: -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 Install: 299 packages -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 Total download: 438MB -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:44:29Z #11 152.6 -2024-04-11T17:46:03Z #11 247.0 -2024-04-11T17:46:03Z #11 247.0 Looking for: ['xclim', 'ravenpy', 'python=3.10'] -2024-04-11T17:46:03Z #11 247.0 -2024-04-11T17:46:03Z #11 247.0 -2024-04-11T17:46:03Z #11 247.0 Downloading and Extracting Packages: ...working... done -2024-04-11T17:46:07Z #11 247.0 Preparing transaction: ...working... done -2024-04-11T17:46:21Z #11 251.2 Verifying transaction: ...working... done -2024-04-11T17:46:58Z #11 264.7 Executing transaction: ...working... -2024-04-11T17:46:58Z #11 302.0 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-04-11T17:46:58Z #11 302.0 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-04-11T17:46:58Z #11 302.0 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-04-11T17:46:58Z #11 302.0 mpiexec --mca opal_cuda_support 1 ... -2024-04-11T17:46:58Z #11 302.0 -2024-04-11T17:46:58Z #11 302.0 In addition, the UCX support is also built but disabled by default. -2024-04-11T17:46:58Z #11 302.0 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-04-11T17:46:58Z #11 302.0 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-04-11T17:46:58Z #11 302.0 Equivalently, you can set the MCA parameters in the command line: -2024-04-11T17:46:58Z #11 302.0 mpiexec --mca pml ucx --mca osc ucx ... -2024-04-11T17:46:58Z #11 302.0 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-04-11T17:46:58Z #11 302.0 Please consult UCX's documentation for detail. -2024-04-11T17:46:58Z #11 302.0 -2024-04-11T17:46:58Z #11 302.0 -2024-04-11T17:46:58Z #11 302.0 done -2024-04-11T17:46:58Z #11 302.2 -2024-04-11T17:46:58Z #11 302.2 To activate this environment, use -2024-04-11T17:46:58Z #11 302.2 -2024-04-11T17:46:58Z #11 302.2 $ mamba activate birdy -2024-04-11T17:46:58Z #11 302.2 -2024-04-11T17:46:58Z #11 302.2 To deactivate an active environment, use -2024-04-11T17:46:58Z #11 302.2 -2024-04-11T17:46:58Z #11 302.2 $ mamba deactivate -2024-04-11T17:46:58Z #11 302.2 -2024-04-11T17:47:02Z #11 305.7 Channels: -2024-04-11T17:47:02Z #11 305.7 - conda-forge -2024-04-11T17:47:02Z #11 305.7 - cdat -2024-04-11T17:47:02Z #11 305.7 - bokeh -2024-04-11T17:47:02Z #11 305.7 - pyviz/label/dev -2024-04-11T17:47:02Z #11 305.7 - defaults -2024-04-11T17:47:02Z #11 305.7 Platform: linux-64 -2024-04-11T17:47:36Z #11 305.7 Collecting package metadata (repodata.json): ...working... done -2024-04-11T17:48:38Z #11 339.8 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.1 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:38Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:48:39Z #11 402.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 461.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:38Z #11 462.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 463.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:49:40Z #11 464.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-11T17:52:02Z #11 605.9 done -2024-04-11T17:53:55Z #11 718.7 -2024-04-11T17:53:55Z #11 718.7 Downloading and Extracting Packages: ...working... done -2024-04-11T17:54:02Z #11 718.7 Preparing transaction: ...working... done -2024-04-11T17:54:25Z #11 725.8 Verifying transaction: ...working... done -2024-04-11T17:55:19Z #11 749.1 Executing transaction: ...working... -2024-04-11T17:55:19Z #11 802.8 For Linux 64, Open MPI is built with CUDA awareness but this support is disabled by default. -2024-04-11T17:55:19Z #11 802.8 To enable it, please set the environment variable OMPI_MCA_opal_cuda_support=true before -2024-04-11T17:55:19Z #11 802.8 launching your MPI processes. Equivalently, you can set the MCA parameter in the command line: -2024-04-11T17:55:19Z #11 802.8 mpiexec --mca opal_cuda_support 1 ... -2024-04-11T17:55:19Z #11 802.8 -2024-04-11T17:55:19Z #11 802.8 In addition, the UCX support is also built but disabled by default. -2024-04-11T17:55:19Z #11 802.8 To enable it, first install UCX (conda install -c conda-forge ucx). Then, set the environment -2024-04-11T17:55:19Z #11 802.8 variables OMPI_MCA_pml="ucx" OMPI_MCA_osc="ucx" before launching your MPI processes. -2024-04-11T17:55:19Z #11 802.8 Equivalently, you can set the MCA parameters in the command line: -2024-04-11T17:55:19Z #11 802.8 mpiexec --mca pml ucx --mca osc ucx ... -2024-04-11T17:55:19Z #11 802.8 Note that you might also need to set UCX_MEMTYPE_CACHE=n for CUDA awareness via UCX. -2024-04-11T17:55:19Z #11 802.8 Please consult UCX's documentation for detail. -2024-04-11T17:55:19Z #11 802.8 -2024-04-11T17:55:19Z #11 802.8 -2024-04-11T17:55:19Z #11 802.8 /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-04-11T17:55:19Z #11 802.8 given by the platformdirs library. To remove this warning and -2024-04-11T17:55:19Z #11 802.8 see the appropriate new directories, set the environment variable -2024-04-11T17:55:19Z #11 802.8 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-04-11T17:55:19Z #11 802.8 The use of platformdirs will be the default in `jupyter_core` v6 -2024-04-11T17:55:19Z #11 802.8 from . import paths -2024-04-11T17:55:19Z #11 802.8 Enabling: jupyterlab_git -2024-04-11T17:55:19Z #11 802.8 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-11T17:55:19Z #11 802.8 - Validating... -2024-04-11T17:55:19Z #11 802.8 jupyterlab_git OK -2024-04-11T17:55:19Z #11 802.8 -2024-04-11T17:55:19Z #11 802.8 done -2024-04-11T17:56:03Z #11 810.4 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-04-11T17:56:03Z #11 846.7 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.o1gaikjh.requirements.txt', '--exists-action=b'] -2024-04-11T17:56:03Z #11 846.7 Pip subprocess output: -2024-04-11T17:56:03Z #11 846.7 Collecting xncml (from -r /condaenv.o1gaikjh.requirements.txt (line 1)) -2024-04-11T17:56:03Z #11 846.7 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting hsclient (from -r /condaenv.o1gaikjh.requirements.txt (line 2)) -2024-04-11T17:56:03Z #11 846.7 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting fstd2nc (from -r /condaenv.o1gaikjh.requirements.txt (line 3)) -2024-04-11T17:56:03Z #11 846.7 Downloading fstd2nc-0.20240401.0.tar.gz (166 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.9/166.9 kB 8.9 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Installing build dependencies: started -2024-04-11T17:56:03Z #11 846.7 Installing build dependencies: finished with status 'done' -2024-04-11T17:56:03Z #11 846.7 Getting requirements to build wheel: started -2024-04-11T17:56:03Z #11 846.7 Getting requirements to build wheel: finished with status 'done' -2024-04-11T17:56:03Z #11 846.7 Installing backend dependencies: started -2024-04-11T17:56:03Z #11 846.7 Installing backend dependencies: finished with status 'done' -2024-04-11T17:56:03Z #11 846.7 Preparing metadata (pyproject.toml): started -2024-04-11T17:56:03Z #11 846.7 Preparing metadata (pyproject.toml): finished with status 'done' -2024-04-11T17:56:03Z #11 846.7 Collecting figanos (from -r /condaenv.o1gaikjh.requirements.txt (line 4)) -2024-04-11T17:56:03Z #11 846.7 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting pixiedust (from -r /condaenv.o1gaikjh.requirements.txt (line 5)) -2024-04-11T17:56:03Z #11 846.7 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 15.9 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Preparing metadata (setup.py): started -2024-04-11T17:56:03Z #11 846.7 Preparing metadata (setup.py): finished with status 'done' -2024-04-11T17:56:03Z #11 846.7 Collecting ipython_blocking (from -r /condaenv.o1gaikjh.requirements.txt (line 6)) -2024-04-11T17:56:03Z #11 846.7 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting jupyternotify (from -r /condaenv.o1gaikjh.requirements.txt (line 7)) -2024-04-11T17:56:03Z #11 846.7 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-04-11T17:56:03Z #11 846.7 Preparing metadata (setup.py): started -2024-04-11T17:56:03Z #11 846.7 Preparing metadata (setup.py): finished with status 'done' -2024-04-11T17:56:03Z #11 846.7 Collecting jupyterlab-logout (from -r /condaenv.o1gaikjh.requirements.txt (line 8)) -2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.o1gaikjh.requirements.txt (line 9)) -2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting pytest-tornasync (from -r /condaenv.o1gaikjh.requirements.txt (line 10)) -2024-04-11T17:56:03Z #11 846.7 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting xmltodict (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) -2024-04-11T17:56:03Z #11 846.7 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting xsdata (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) -2024-04-11T17:56:03Z #11 846.7 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (2023.8.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (1.6.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (1.6.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (2024.4.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (5.9.8) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (69.2.0) -2024-04-11T17:56:03Z #11 846.7 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) -2024-04-11T17:56:03Z #11 846.7 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.31.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.0.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.o1gaikjh.requirements.txt (line 3)) (1.24.4) -2024-04-11T17:56:03Z #11 846.7 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.o1gaikjh.requirements.txt (line 3)) -2024-04-11T17:56:03Z #11 846.7 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.23.0) -2024-04-11T17:56:03Z #11 846.7 Collecting cairosvg (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) -2024-04-11T17:56:03Z #11 846.7 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.14.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.8.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.1.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (4.2.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (6.0.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.13.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.22.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.47.0) -2024-04-11T17:56:03Z #11 846.7 Collecting geojson (from pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) -2024-04-11T17:56:03Z #11 846.7 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting astunparse (from pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) -2024-04-11T17:56:03Z #11 846.7 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) (3.6) -2024-04-11T17:56:03Z #11 846.7 Collecting colour (from pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) -2024-04-11T17:56:03Z #11 846.7 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (8.22.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (8.1.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.7.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (1.0.0) -2024-04-11T17:56:03Z #11 846.7 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) -2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab-4.1.6-py3-none-any.whl.metadata (16 kB) -2024-04-11T17:56:03Z #11 846.7 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-04-11T17:56:03Z #11 846.7 Collecting jupyterlab-logout (from -r /condaenv.o1gaikjh.requirements.txt (line 8)) -2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.6.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (3.6.7) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (24.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (6.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (5.7.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.26.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.13.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.2.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.8.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.0.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (6.5.6) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (3.1.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.0.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.o1gaikjh.requirements.txt (line 10)) (8.1.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.o1gaikjh.requirements.txt (line 3)) (2024.1) -2024-04-11T17:56:03Z #11 846.7 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) -2024-04-11T17:56:03Z #11 846.7 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.6.4) -2024-04-11T17:56:03Z #11 846.7 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) -2024-04-11T17:56:03Z #11 846.7 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (0.6.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pydantic-core==2.16.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.16.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (4.11.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.o1gaikjh.requirements.txt (line 10)) (2.0.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.o1gaikjh.requirements.txt (line 10)) (1.4.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.o1gaikjh.requirements.txt (line 10)) (1.2.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (24.0.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.3.8) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.9.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (8.1.7) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.0.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.0.6) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.59.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.23) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.4.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.13.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.14.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (3.0.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (2024.3.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (1.4.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (0.12.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (7.1.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.9.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2024.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) (0.43.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.o1gaikjh.requirements.txt (line 5)) (1.16.0) -2024-04-11T17:56:03Z #11 846.7 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) -2024-04-11T17:56:03Z #11 846.7 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) -2024-04-11T17:56:03Z #11 846.7 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) -2024-04-11T17:56:03Z #11 846.7 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.7.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (9.4.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.2.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.0.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyshp>=2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.3.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyproj>=3.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.5.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.2.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.12.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (4.51.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.4.5) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.1.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.9.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (5.1.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.19.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.1.6) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (3.0.42) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (2.17.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.6.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (5.14.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (4.9.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.2.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (4.0.10) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (3.0.10) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (5.5.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (6.6.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (7.16.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (6.29.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (7.4.9) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (5.10.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (3.3.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (3.6) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2.0.7) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (2024.2.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) (3.2.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.34.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2023.8.12) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (23.2.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.1.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.7.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (4.0.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (3.17.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.8.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.1.5) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (1.6.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (24.0.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (4.3.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: argon2-cffi in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (23.1.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.10.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-server-terminals in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.5.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: overrides in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (7.7.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: prometheus-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.20.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.8.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.18.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: websocket-client in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.7.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.9.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.8.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.5.9) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.14.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.9.24) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (4.21.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (4.12.3) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (6.1.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (0.3.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (3.0.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (1.5.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (2.19.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.2.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.2.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.o1gaikjh.requirements.txt (line 1)) (1.0.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.7.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.2.13) -2024-04-11T17:56:03Z #11 846.7 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) -2024-04-11T17:56:03Z #11 846.7 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.4.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (3.4.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (1.16.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.5.1) -2024-04-11T17:56:03Z #11 846.7 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.o1gaikjh.requirements.txt (line 2)) -2024-04-11T17:56:03Z #11 846.7 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (1.8.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.42.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (2.4.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (2.0.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (2.4.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.o1gaikjh.requirements.txt (line 6)) (0.2.2) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (0.5.6) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.3.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.o1gaikjh.requirements.txt (line 4)) (2.22) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2023.12.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.34.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.18.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.0.7) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.1.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.1.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (22.1.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (0.19.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (21.2.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.o1gaikjh.requirements.txt (line 7)) (2.5) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.5.1) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (20.11.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.4) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.3.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.13) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (1.3.0) -2024-04-11T17:56:03Z #11 846.7 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.o1gaikjh.requirements.txt (line 8)) (2.9.0.20240316) -2024-04-11T17:56:03Z #11 846.7 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 44.4 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.0 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 30.9 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 58.8 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 4.4 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading xsdata-24.4-py3-none-any.whl (229 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 24.8 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 21.8 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 10.6 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-04-11T17:56:03Z #11 846.7 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 29.6 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-04-11T17:56:03Z #11 846.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.1 MB/s eta 0:00:00 -2024-04-11T17:56:03Z #11 846.7 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify -2024-04-11T17:56:03Z #11 846.7 Building wheel for fstd2nc (pyproject.toml): started -2024-04-11T17:56:03Z #11 846.7 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-04-11T17:56:03Z #11 846.7 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.0-py3-none-any.whl size=169076 sha256=77909565d2f5936ddd841983637cef6bbc79c9d33d30cfdbd3ed3561e1f12bf2 -2024-04-11T17:56:03Z #11 846.7 Stored in directory: /root/.cache/pip/wheels/b7/e5/e2/65589bc6ca947390d3d694cdc195ca6662e0448bb58d970eb6 -2024-04-11T17:56:03Z #11 846.7 Building wheel for pixiedust (setup.py): started -2024-04-11T17:56:03Z #11 846.7 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-04-11T17:56:03Z #11 846.7 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=847656121c6372ac6ca570e571074d62dbc4f30eaed0ea65afce36638d0118b1 -2024-04-11T17:56:03Z #11 846.7 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 -2024-04-11T17:56:03Z #11 846.7 Building wheel for jupyternotify (setup.py): started -2024-04-11T17:56:03Z #11 846.7 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-04-11T17:56:03Z #11 846.7 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=d338894c70641a5a5a026e7459edd1d670289acdce31087956638a04e8a852d7 -2024-04-11T17:56:03Z #11 846.7 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 -2024-04-11T17:56:03Z #11 846.7 Successfully built fstd2nc pixiedust jupyternotify -2024-04-11T17:56:03Z #11 846.7 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-04-11T17:56:03Z #11 846.7 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.0 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 -2024-04-11T17:56:03Z #11 846.7 -2024-04-11T17:56:03Z #11 846.7 done -2024-04-11T17:56:03Z #11 846.7 # -2024-04-11T17:56:03Z #11 846.7 # To activate this environment, use -2024-04-11T17:56:03Z #11 846.7 # -2024-04-11T17:56:03Z #11 846.7 # $ conda activate birdy -2024-04-11T17:56:03Z #11 846.7 # -2024-04-11T17:56:03Z #11 846.7 # To deactivate an active environment, use -2024-04-11T17:56:03Z #11 846.7 # -2024-04-11T17:56:03Z #11 846.7 # $ conda deactivate -2024-04-11T17:56:03Z #11 846.7 -2024-04-11T17:56:19Z #11 862.9 Will remove 788 (1.19 GB) tarball(s). -2024-04-11T17:56:19Z #11 862.9 Will remove 1 index cache(s). -2024-04-11T17:56:19Z #11 862.9 Will remove 148 (1.19 GB) package(s). -2024-04-11T17:56:19Z #11 862.9 There are no tempfile(s) to remove. -2024-04-11T17:56:19Z #11 862.9 There are no logfile(s) to remove. -2024-04-11T17:56:20Z #11 DONE 863.7s -2024-04-11T17:56:20Z -2024-04-11T17:56:20Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2024-04-11T17:56:21Z #12 1.295 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-04-11T17:56:21Z #12 DONE 1.5s -2024-04-11T17:56:21Z -2024-04-11T17:56:21Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-11T17:56:22Z #5 ... -2024-04-11T17:56:22Z -2024-04-11T17:56:22Z #13 [ 8/10] RUN jupyter lab build -2024-04-11T17:56:24Z #13 2.122 [LabBuildApp] JupyterLab 3.6.7 -2024-04-11T17:56:24Z #13 2.123 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2024-04-11T17:56:24Z #13 2.766 [LabBuildApp] Building jupyterlab assets (production, minimized) -2024-04-11T17:56:24Z #13 2.785 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. -2024-04-11T17:56:24Z #13 2.785 -2024-04-11T17:58:41Z #13 2.792 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ -2024-04-11T17:58:41Z #13 DONE 139.4s -2024-04-11T17:58:41Z -2024-04-11T17:58:41Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-04-11T17:58:41Z #14 0.708 Enabling: voila -2024-04-11T17:58:41Z #14 0.708 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-11T17:58:42Z #14 0.711 - Validating... -2024-04-11T17:58:42Z #14 1.409 voila 0.5.6 OK -2024-04-11T17:58:43Z #14 1.788 Enabling: panel.io.jupyter_server_extension -2024-04-11T17:58:43Z #14 1.788 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-11T17:58:43Z #14 1.790 - Validating... -2024-04-11T17:58:44Z #14 3.662 panel.io.jupyter_server_extension OK -2024-04-11T17:58:45Z #14 4.166 - Validating... -2024-04-11T17:58:46Z #14 5.055 dask_labextension 6.2.0 OK -2024-04-11T17:58:46Z #14 5.055 - Validating... -2024-04-11T17:58:46Z #14 5.055 jupyter_server_proxy 4.1.1-0.dev OK -2024-04-11T17:58:46Z #14 5.055 - Validating... -2024-04-11T17:58:46Z #14 5.227 jupyter_resource_usage 0.7.1 OK -2024-04-11T17:58:46Z #14 5.227 - Validating... -2024-04-11T17:58:46Z #14 5.286  X is jupyter_server_ydoc importable? -2024-04-11T17:58:46Z #14 5.286 - Validating... -2024-04-11T17:58:46Z #14 5.359 jupyterlab 3.6.7 OK -2024-04-11T17:58:46Z #14 5.360 - Validating... -2024-04-11T17:58:46Z #14 5.548 jupyterlab_jupytext OK -2024-04-11T17:58:46Z #14 5.549 - Validating... -2024-04-11T17:58:46Z #14 5.553 mamba_gator 5.2.1 OK -2024-04-11T17:58:46Z #14 5.553 - Validating... -2024-04-11T17:58:46Z #14 5.571 nbdime 4.0.1 OK -2024-04-11T17:58:46Z #14 5.571 - Validating... -2024-04-11T17:58:47Z #14 6.685 panel.io.jupyter_server_extension OK -2024-04-11T17:58:47Z #14 6.685 - Validating... -2024-04-11T17:58:48Z #14 6.753 nbresuse OK -2024-04-11T17:58:48Z #14 6.753 - Validating... -2024-04-11T17:58:48Z #14 7.010 voila.server_extension OK -2024-04-11T17:58:48Z #14 7.010 - Validating... -2024-04-11T17:58:48Z #14 7.012 jupyterlab_git OK -2024-04-11T17:58:48Z #14 7.012 - Validating... -2024-04-11T17:58:48Z #14 7.012 voila 0.5.6 OK -2024-04-11T17:58:48Z #14 7.013 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-04-11T17:58:48Z #14 7.013 dask_labextension  enabled  -2024-04-11T17:58:48Z #14 7.013 jupyter_server_proxy  enabled  -2024-04-11T17:58:48Z #14 7.013 jupyter_resource_usage  enabled  -2024-04-11T17:58:48Z #14 7.013 jupyter_server_ydoc  enabled  -2024-04-11T17:58:48Z #14 7.013 jupyterlab  enabled  -2024-04-11T17:58:48Z #14 7.013 jupyterlab_jupytext  enabled  -2024-04-11T17:58:48Z #14 7.013 mamba_gator  enabled  -2024-04-11T17:58:48Z #14 7.013 nbdime  enabled  -2024-04-11T17:58:48Z #14 7.013 panel.io.jupyter_server_extension  enabled  -2024-04-11T17:58:48Z #14 7.013 nbresuse  enabled  -2024-04-11T17:58:48Z #14 7.013 voila.server_extension  enabled  -2024-04-11T17:58:48Z #14 7.013 jupyterlab_git  enabled  -2024-04-11T17:58:48Z #14 7.013 voila  enabled  -2024-04-11T17:58:48Z #14 DONE 7.4s -2024-04-11T17:58:48Z -2024-04-11T17:58:48Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-04-11T17:58:49Z #15 0.454 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-04-11T17:58:49Z #15 0.474 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.110.133, 185.199.111.133, ... -2024-04-11T17:58:49Z #15 0.477 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-04-11T17:58:49Z #15 0.482 HTTP request sent, awaiting response... 200 OK -2024-04-11T17:58:49Z #15 0.562 Length: 9769 (9.5K) [text/plain] -2024-04-11T17:58:49Z #15 0.562 Saving to: ‘/usr/local/bin/start.sh’ -2024-04-11T17:58:49Z #15 0.562 -2024-04-11T17:58:49Z #15 0.562 0K ......... 100% 8.93M=0.001s -2024-04-11T17:58:49Z #15 0.566 -2024-04-11T17:58:49Z #15 0.566 2024-04-11 17:58:49 (8.93 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-04-11T17:58:49Z #15 0.566 -2024-04-11T17:58:49Z #15 0.567 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-04-11T17:58:49Z #15 0.591 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2024-04-11T17:58:49Z #15 0.592 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-04-11T17:58:49Z #15 0.600 HTTP request sent, awaiting response... 200 OK -2024-04-11T17:58:49Z #15 0.684 Length: 359 [text/plain] -2024-04-11T17:58:49Z #15 0.684 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-04-11T17:58:49Z #15 0.684 -2024-04-11T17:58:49Z #15 0.684 0K 100% 15.0M=0s -2024-04-11T17:58:49Z #15 0.686 -2024-04-11T17:58:49Z #15 0.686 2024-04-11 17:58:49 (15.0 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-04-11T17:58:49Z #15 0.686 -2024-04-11T17:58:49Z #15 0.690 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-04-11T17:58:49Z #15 0.715 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2024-04-11T17:58:49Z #15 0.716 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-04-11T17:58:49Z #15 0.736 HTTP request sent, awaiting response... 200 OK -2024-04-11T17:58:49Z #15 0.814 Length: 852 [text/plain] -2024-04-11T17:58:49Z #15 0.814 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-04-11T17:58:49Z #15 0.814 -2024-04-11T17:58:49Z #15 0.814 0K 100% 17.1M=0s -2024-04-11T17:58:49Z #15 0.815 -2024-04-11T17:58:49Z #15 0.815 2024-04-11 17:58:49 (17.1 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-04-11T17:58:49Z #15 0.815 -2024-04-11T17:58:49Z #15 0.819 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-04-11T17:58:49Z #15 0.844 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2024-04-11T17:58:49Z #15 0.845 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-04-11T17:58:49Z #15 0.850 HTTP request sent, awaiting response... 200 OK -2024-04-11T17:58:49Z #15 0.963 Length: 1034 (1.0K) [text/plain] -2024-04-11T17:58:49Z #15 0.963 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-04-11T17:58:49Z #15 0.963 -2024-04-11T17:58:49Z #15 0.963 0K . 100% 46.4M=0s -2024-04-11T17:58:49Z #15 0.965 -2024-04-11T17:58:49Z #15 0.965 2024-04-11 17:58:49 (46.4 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-04-11T17:58:49Z #15 0.965 -2024-04-11T17:58:49Z #15 0.971 --2024-04-11 17:58:49-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-04-11T17:58:49Z #15 0.995 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2024-04-11T17:58:49Z #15 0.996 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-04-11T17:58:49Z #15 1.001 HTTP request sent, awaiting response... 200 OK -2024-04-11T17:58:49Z #15 1.089 Length: 1836 (1.8K) [text/plain] -2024-04-11T17:58:49Z #15 1.090 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-04-11T17:58:49Z #15 1.090 -2024-04-11T17:58:49Z #15 1.090 0K . 100% 6.27M=0s -2024-04-11T17:58:49Z #15 1.091 -2024-04-11T17:58:49Z #15 1.091 2024-04-11 17:58:49 (6.27 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-04-11T17:58:49Z #15 1.091 -2024-04-11T17:58:50Z #15 1.304 --2024-04-11 17:58:50-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-04-11T17:58:50Z #15 1.328 Resolving downloads.globus.org (downloads.globus.org)... 3.162.103.84, 3.162.103.63, 3.162.103.35, ... -2024-04-11T17:58:50Z #15 1.334 Connecting to downloads.globus.org (downloads.globus.org)|3.162.103.84|:443... connected. -2024-04-11T17:58:50Z #15 1.340 HTTP request sent, awaiting response... 200 OK -2024-04-11T17:58:50Z #15 1.371 Length: 129825343 (124M) [application/x-tar] -2024-04-11T17:58:50Z #15 1.371 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-04-11T17:58:50Z #15 1.372 -2024-04-11T17:58:50Z #15 1.372 0K .......... .......... .......... .......... .......... 0% 10.6M 12s -2024-04-11T17:58:50Z #15 1.375 50K .......... .......... .......... .......... .......... 0% 41.7M 7s -2024-04-11T17:58:50Z #15 1.377 100K .......... .......... .......... .......... .......... 0% 26.3M 6s -2024-04-11T17:58:50Z #15 1.379 150K .......... .......... .......... .......... .......... 0% 31.0M 6s -2024-04-11T17:58:50Z #15 1.380 200K .......... .......... .......... .......... .......... 0% 32.1M 5s -2024-04-11T17:58:50Z #15 1.382 250K .......... .......... .......... .......... .......... 0% 33.6M 5s -2024-04-11T17:58:50Z #15 1.383 300K .......... .......... .......... .......... .......... 0% 36.9M 5s -2024-04-11T17:58:50Z #15 1.384 350K .......... .......... .......... .......... .......... 0% 37.3M 5s -2024-04-11T17:58:50Z #15 1.386 400K .......... .......... .......... .......... .......... 0% 31.5M 5s -2024-04-11T17:58:50Z #15 1.387 450K .......... .......... .......... .......... .......... 0% 40.2M 4s -2024-04-11T17:58:50Z #15 1.389 500K .......... .......... .......... .......... .......... 0% 27.0M 4s -2024-04-11T17:58:50Z #15 1.390 550K .......... .......... .......... .......... .......... 0% 35.9M 4s -2024-04-11T17:58:50Z #15 1.398 600K .......... .......... .......... .......... .......... 0% 95.2M 4s -2024-04-11T17:58:50Z #15 1.398 650K .......... .......... .......... .......... .......... 0% 129M 4s -2024-04-11T17:58:50Z #15 1.398 700K .......... .......... .......... .......... .......... 0% 91.7M 4s -2024-04-11T17:58:50Z #15 1.398 750K .......... .......... .......... .......... .......... 0% 82.3M 4s -2024-04-11T17:58:50Z #15 1.398 800K .......... .......... .......... .......... .......... 0% 76.5M 3s -2024-04-11T17:58:50Z #15 1.398 850K .......... .......... .......... .......... .......... 0% 100M 3s -2024-04-11T17:58:50Z #15 1.398 900K .......... .......... .......... .......... .......... 0% 77.4M 3s -2024-04-11T17:58:50Z #15 1.398 950K .......... .......... .......... .......... .......... 0% 68.1M 3s -2024-04-11T17:58:50Z #15 1.398 1000K .......... .......... .......... .......... .......... 0% 93.5M 3s -2024-04-11T17:58:50Z #15 1.398 1050K .......... .......... .......... .......... .......... 0% 128M 3s -2024-04-11T17:58:50Z #15 1.398 1100K .......... .......... .......... .......... .......... 0% 103M 3s -2024-04-11T17:58:50Z #15 1.398 1150K .......... .......... .......... .......... .......... 0% 40.2M 3s -2024-04-11T17:58:50Z #15 1.399 1200K .......... .......... .......... .......... .......... 0% 42.2M 3s -2024-04-11T17:58:50Z #15 1.400 1250K .......... .......... .......... .......... .......... 1% 45.8M 3s -2024-04-11T17:58:50Z #15 1.401 1300K .......... .......... .......... .......... .......... 1% 38.3M 3s -2024-04-11T17:58:50Z #15 1.402 1350K .......... .......... .......... .......... .......... 1% 28.3M 3s -2024-04-11T17:58:50Z #15 1.404 1400K .......... .......... .......... .......... .......... 1% 31.1M 3s -2024-04-11T17:58:50Z #15 1.406 1450K .......... .......... .......... .......... .......... 1% 22.9M 3s -2024-04-11T17:58:50Z #15 1.408 1500K .......... .......... .......... .......... .......... 1% 29.6M 3s -2024-04-11T17:58:50Z #15 1.409 1550K .......... .......... .......... .......... .......... 1% 57.8M 3s -2024-04-11T17:58:50Z #15 1.411 1600K .......... .......... .......... .......... .......... 1% 27.4M 3s -2024-04-11T17:58:50Z #15 1.412 1650K .......... .......... .......... .......... .......... 1% 45.2M 3s -2024-04-11T17:58:50Z #15 1.413 1700K .......... .......... .......... .......... .......... 1% 36.5M 3s -2024-04-11T17:58:50Z #15 1.415 1750K .......... .......... .......... .......... .......... 1% 42.9M 3s -2024-04-11T17:58:50Z #15 1.415 1800K .......... .......... .......... .......... .......... 1% 33.5M 3s -2024-04-11T17:58:50Z #15 1.417 1850K .......... .......... .......... .......... .......... 1% 31.3M 3s -2024-04-11T17:58:50Z #15 1.418 1900K .......... .......... .......... .......... .......... 1% 39.0M 3s -2024-04-11T17:58:50Z #15 1.420 1950K .......... .......... .......... .......... .......... 1% 33.9M 3s -2024-04-11T17:58:50Z #15 1.421 2000K .......... .......... .......... .......... .......... 1% 22.6M 3s -2024-04-11T17:58:50Z #15 1.423 2050K .......... .......... .......... .......... .......... 1% 58.1M 3s -2024-04-11T17:58:50Z #15 1.424 2100K .......... .......... .......... .......... .......... 1% 54.9M 3s -2024-04-11T17:58:50Z #15 1.426 2150K .......... .......... .......... .......... .......... 1% 112M 3s -2024-04-11T17:58:50Z #15 1.426 2200K .......... .......... .......... .......... .......... 1% 52.2M 3s -2024-04-11T17:58:50Z #15 1.426 2250K .......... .......... .......... .......... .......... 1% 27.6M 3s -2024-04-11T17:58:50Z #15 1.428 2300K .......... .......... .......... .......... .......... 1% 45.8M 3s -2024-04-11T17:58:50Z #15 1.429 2350K .......... .......... .......... .......... .......... 1% 39.8M 3s -2024-04-11T17:58:50Z #15 1.434 2400K .......... .......... .......... .......... .......... 1% 74.9M 3s -2024-04-11T17:58:50Z #15 1.434 2450K .......... .......... .......... .......... .......... 1% 108M 3s -2024-04-11T17:58:50Z #15 1.434 2500K .......... .......... .......... .......... .......... 2% 128M 3s -2024-04-11T17:58:50Z #15 1.434 2550K .......... .......... .......... .......... .......... 2% 79.1M 3s -2024-04-11T17:58:50Z #15 1.434 2600K .......... .......... .......... .......... .......... 2% 90.2M 3s -2024-04-11T17:58:50Z #15 1.434 2650K .......... .......... .......... .......... .......... 2% 117M 3s -2024-04-11T17:58:50Z #15 1.434 2700K .......... .......... .......... .......... .......... 2% 42.8M 3s -2024-04-11T17:58:50Z #15 1.435 2750K .......... .......... .......... .......... .......... 2% 104M 3s -2024-04-11T17:58:50Z #15 1.435 2800K .......... .......... .......... .......... .......... 2% 45.9M 3s -2024-04-11T17:58:50Z #15 1.436 2850K .......... .......... .......... .......... .......... 2% 74.6M 3s -2024-04-11T17:58:50Z #15 1.437 2900K .......... .......... .......... .......... .......... 2% 75.0M 3s -2024-04-11T17:58:50Z #15 1.438 2950K .......... .......... .......... .......... .......... 2% 83.7M 3s -2024-04-11T17:58:50Z #15 1.438 3000K .......... .......... .......... .......... .......... 2% 150M 3s -2024-04-11T17:58:50Z #15 1.439 3050K .......... .......... .......... .......... .......... 2% 150M 3s -2024-04-11T17:58:50Z #15 1.439 3100K .......... .......... .......... .......... .......... 2% 106M 3s -2024-04-11T17:58:50Z #15 1.439 3150K .......... .......... .......... .......... .......... 2% 99.9M 3s -2024-04-11T17:58:50Z #15 1.440 3200K .......... .......... .......... .......... .......... 2% 81.9M 3s -2024-04-11T17:58:50Z #15 1.440 3250K .......... .......... .......... .......... .......... 2% 114M 3s -2024-04-11T17:58:50Z #15 1.441 3300K .......... .......... .......... .......... .......... 2% 119M 3s -2024-04-11T17:58:50Z #15 1.441 3350K .......... .......... .......... .......... .......... 2% 79.9M 3s -2024-04-11T17:58:50Z #15 1.442 3400K .......... .......... .......... .......... .......... 2% 91.4M 3s -2024-04-11T17:58:50Z #15 1.442 3450K .......... .......... .......... .......... .......... 2% 130M 3s -2024-04-11T17:58:50Z #15 1.443 3500K .......... .......... .......... .......... .......... 2% 84.2M 3s -2024-04-11T17:58:50Z #15 1.444 3550K .......... .......... .......... .......... .......... 2% 83.8M 2s -2024-04-11T17:58:50Z #15 1.444 3600K .......... .......... .......... .......... .......... 2% 85.9M 2s -2024-04-11T17:58:50Z #15 1.445 3650K .......... .......... .......... .......... .......... 2% 93.2M 2s -2024-04-11T17:58:50Z #15 1.445 3700K .......... .......... .......... .......... .......... 2% 76.3M 2s -2024-04-11T17:58:50Z #15 1.445 3750K .......... .......... .......... .......... .......... 2% 50.9M 2s -2024-04-11T17:58:50Z #15 1.446 3800K .......... .......... .......... .......... .......... 3% 133M 2s -2024-04-11T17:58:50Z #15 1.447 3850K .......... .......... .......... .......... .......... 3% 152M 2s -2024-04-11T17:58:50Z #15 1.447 3900K .......... .......... .......... .......... .......... 3% 73.5M 2s -2024-04-11T17:58:50Z #15 1.448 3950K .......... .......... .......... .......... .......... 3% 61.6M 2s -2024-04-11T17:58:50Z #15 1.449 4000K .......... .......... .......... .......... .......... 3% 150M 2s -2024-04-11T17:58:50Z #15 1.449 4050K .......... .......... .......... .......... .......... 3% 73.3M 2s -2024-04-11T17:58:50Z #15 1.450 4100K .......... .......... .......... .......... .......... 3% 52.2M 2s -2024-04-11T17:58:50Z #15 1.451 4150K .......... .......... .......... .......... .......... 3% 51.2M 2s -2024-04-11T17:58:50Z #15 1.454 4200K .......... .......... .......... .......... .......... 3% 81.9M 2s -2024-04-11T17:58:50Z #15 1.454 4250K .......... .......... .......... .......... .......... 3% 118M 2s -2024-04-11T17:58:50Z #15 1.454 4300K .......... .......... .......... .......... .......... 3% 81.0M 2s -2024-04-11T17:58:50Z #15 1.454 4350K .......... .......... .......... .......... .......... 3% 94.8M 2s -2024-04-11T17:58:50Z #15 1.454 4400K .......... .......... .......... .......... .......... 3% 69.8M 2s -2024-04-11T17:58:50Z #15 1.454 4450K .......... .......... .......... .......... .......... 3% 84.4M 2s -2024-04-11T17:58:50Z #15 1.455 4500K .......... .......... .......... .......... .......... 3% 150M 2s -2024-04-11T17:58:50Z #15 1.455 4550K .......... .......... .......... .......... .......... 3% 90.8M 2s -2024-04-11T17:58:50Z #15 1.456 4600K .......... .......... .......... .......... .......... 3% 88.1M 2s -2024-04-11T17:58:50Z #15 1.456 4650K .......... .......... .......... .......... .......... 3% 79.6M 2s -2024-04-11T17:58:50Z #15 1.457 4700K .......... .......... .......... .......... .......... 3% 135M 2s -2024-04-11T17:58:50Z #15 1.457 4750K .......... .......... .......... .......... .......... 3% 109M 2s -2024-04-11T17:58:50Z #15 1.458 4800K .......... .......... .......... .......... .......... 3% 60.4M 2s -2024-04-11T17:58:50Z #15 1.459 4850K .......... .......... .......... .......... .......... 3% 83.0M 2s -2024-04-11T17:58:50Z #15 1.459 4900K .......... .......... .......... .......... .......... 3% 127M 2s -2024-04-11T17:58:50Z #15 1.460 4950K .......... .......... .......... .......... .......... 3% 124M 2s -2024-04-11T17:58:50Z #15 1.460 5000K .......... .......... .......... .......... .......... 3% 106M 2s -2024-04-11T17:58:50Z #15 1.461 5050K .......... .......... .......... .......... .......... 4% 58.8M 2s -2024-04-11T17:58:50Z #15 1.461 5100K .......... .......... .......... .......... .......... 4% 117M 2s -2024-04-11T17:58:50Z #15 1.462 5150K .......... .......... .......... .......... .......... 4% 51.2M 2s -2024-04-11T17:58:50Z #15 1.463 5200K .......... .......... .......... .......... .......... 4% 107M 2s -2024-04-11T17:58:50Z #15 1.463 5250K .......... .......... .......... .......... .......... 4% 82.5M 2s -2024-04-11T17:58:50Z #15 1.464 5300K .......... .......... .......... .......... .......... 4% 128M 2s -2024-04-11T17:58:50Z #15 1.464 5350K .......... .......... .......... .......... .......... 4% 134M 2s -2024-04-11T17:58:50Z #15 1.465 5400K .......... .......... .......... .......... .......... 4% 65.1M 2s -2024-04-11T17:58:50Z #15 1.465 5450K .......... .......... .......... .......... .......... 4% 91.3M 2s -2024-04-11T17:58:50Z #15 1.466 5500K .......... .......... .......... .......... .......... 4% 87.0M 2s -2024-04-11T17:58:50Z #15 1.466 5550K .......... .......... .......... .......... .......... 4% 125M 2s -2024-04-11T17:58:50Z #15 1.467 5600K .......... .......... .......... .......... .......... 4% 140M 2s -2024-04-11T17:58:50Z #15 1.467 5650K .......... .......... .......... .......... .......... 4% 72.8M 2s -2024-04-11T17:58:50Z #15 1.468 5700K .......... .......... .......... .......... .......... 4% 122M 2s -2024-04-11T17:58:50Z #15 1.469 5750K .......... .......... .......... .......... .......... 4% 61.6M 2s -2024-04-11T17:58:50Z #15 1.469 5800K .......... .......... .......... .......... .......... 4% 55.0M 2s -2024-04-11T17:58:50Z #15 1.474 5850K .......... .......... .......... .......... .......... 4% 88.9M 2s -2024-04-11T17:58:50Z #15 1.474 5900K .......... .......... .......... .......... .......... 4% 120M 2s -2024-04-11T17:58:50Z #15 1.474 5950K .......... .......... .......... .......... .......... 4% 139M 2s -2024-04-11T17:58:50Z #15 1.474 6000K .......... .......... .......... .......... .......... 4% 81.0M 2s -2024-04-11T17:58:50Z #15 1.474 6050K .......... .......... .......... .......... .......... 4% 80.2M 2s -2024-04-11T17:58:50Z #15 1.474 6100K .......... .......... .......... .......... .......... 4% 65.0M 2s -2024-04-11T17:58:50Z #15 1.474 6150K .......... .......... .......... .......... .......... 4% 114M 2s -2024-04-11T17:58:50Z #15 1.474 6200K .......... .......... .......... .......... .......... 4% 85.6M 2s -2024-04-11T17:58:50Z #15 1.480 6250K .......... .......... .......... .......... .......... 4% 105M 2s -2024-04-11T17:58:50Z #15 1.480 6300K .......... .......... .......... .......... .......... 5% 142M 2s -2024-04-11T17:58:50Z #15 1.480 6350K .......... .......... .......... .......... .......... 5% 92.8M 2s -2024-04-11T17:58:50Z #15 1.480 6400K .......... .......... .......... .......... .......... 5% 99.8M 2s -2024-04-11T17:58:50Z #15 1.480 6450K .......... .......... .......... .......... .......... 5% 134M 2s -2024-04-11T17:58:50Z #15 1.480 6500K .......... .......... .......... .......... .......... 5% 152M 2s -2024-04-11T17:58:50Z #15 1.480 6550K .......... .......... .......... .......... .......... 5% 84.7M 2s -2024-04-11T17:58:50Z #15 1.480 6600K .......... .......... .......... .......... .......... 5% 106M 2s -2024-04-11T17:58:50Z #15 1.480 6650K .......... .......... .......... .......... .......... 5% 82.6M 2s -2024-04-11T17:58:50Z #15 1.480 6700K .......... .......... .......... .......... .......... 5% 124M 2s -2024-04-11T17:58:50Z #15 1.480 6750K .......... .......... .......... .......... .......... 5% 91.3M 2s -2024-04-11T17:58:50Z #15 1.480 6800K .......... .......... .......... .......... .......... 5% 155M 2s -2024-04-11T17:58:50Z #15 1.480 6850K .......... .......... .......... .......... .......... 5% 68.1M 2s -2024-04-11T17:58:50Z #15 1.480 6900K .......... .......... .......... .......... .......... 5% 87.6M 2s -2024-04-11T17:58:50Z #15 1.481 6950K .......... .......... .......... .......... .......... 5% 113M 2s -2024-04-11T17:58:50Z #15 1.481 7000K .......... .......... .......... .......... .......... 5% 88.5M 2s -2024-04-11T17:58:50Z #15 1.482 7050K .......... .......... .......... .......... .......... 5% 91.7M 2s -2024-04-11T17:58:50Z #15 1.482 7100K .......... .......... .......... .......... .......... 5% 104M 2s -2024-04-11T17:58:50Z #15 1.483 7150K .......... .......... .......... .......... .......... 5% 89.1M 2s -2024-04-11T17:58:50Z #15 1.483 7200K .......... .......... .......... .......... .......... 5% 80.9M 2s -2024-04-11T17:58:50Z #15 1.484 7250K .......... .......... .......... .......... .......... 5% 92.7M 2s -2024-04-11T17:58:50Z #15 1.485 7300K .......... .......... .......... .......... .......... 5% 174M 2s -2024-04-11T17:58:50Z #15 1.485 7350K .......... .......... .......... .......... .......... 5% 65.1M 2s -2024-04-11T17:58:50Z #15 1.485 7400K .......... .......... .......... .......... .......... 5% 84.4M 2s -2024-04-11T17:58:50Z #15 1.486 7450K .......... .......... .......... .......... .......... 5% 105M 2s -2024-04-11T17:58:50Z #15 1.487 7500K .......... .......... .......... .......... .......... 5% 71.3M 2s -2024-04-11T17:58:50Z #15 1.488 7550K .......... .......... .......... .......... .......... 5% 99.9M 2s -2024-04-11T17:58:50Z #15 1.488 7600K .......... .......... .......... .......... .......... 6% 94.5M 2s -2024-04-11T17:58:50Z #15 1.488 7650K .......... .......... .......... .......... .......... 6% 86.1M 2s -2024-04-11T17:58:50Z #15 1.489 7700K .......... .......... .......... .......... .......... 6% 83.8M 2s -2024-04-11T17:58:50Z #15 1.490 7750K .......... .......... .......... .......... .......... 6% 125M 2s -2024-04-11T17:58:50Z #15 1.490 7800K .......... .......... .......... .......... .......... 6% 69.7M 2s -2024-04-11T17:58:50Z #15 1.491 7850K .......... .......... .......... .......... .......... 6% 146M 2s -2024-04-11T17:58:50Z #15 1.491 7900K .......... .......... .......... .......... .......... 6% 84.9M 2s -2024-04-11T17:58:50Z #15 1.492 7950K .......... .......... .......... .......... .......... 6% 151M 2s -2024-04-11T17:58:50Z #15 1.492 8000K .......... .......... .......... .......... .......... 6% 88.7M 2s -2024-04-11T17:58:50Z #15 1.493 8050K .......... .......... .......... .......... .......... 6% 116M 2s -2024-04-11T17:58:50Z #15 1.493 8100K .......... .......... .......... .......... .......... 6% 84.7M 2s -2024-04-11T17:58:50Z #15 1.494 8150K .......... .......... .......... .......... .......... 6% 100M 2s -2024-04-11T17:58:50Z #15 1.494 8200K .......... .......... .......... .......... .......... 6% 91.3M 2s -2024-04-11T17:58:50Z #15 1.495 8250K .......... .......... .......... .......... .......... 6% 78.5M 2s -2024-04-11T17:58:50Z #15 1.495 8300K .......... .......... .......... .......... .......... 6% 97.3M 2s -2024-04-11T17:58:50Z #15 1.495 8350K .......... .......... .......... .......... .......... 6% 112M 2s -2024-04-11T17:58:50Z #15 1.496 8400K .......... .......... .......... .......... .......... 6% 159M 2s -2024-04-11T17:58:50Z #15 1.496 8450K .......... .......... .......... .......... .......... 6% 78.4M 2s -2024-04-11T17:58:50Z #15 1.497 8500K .......... .......... .......... .......... .......... 6% 123M 2s -2024-04-11T17:58:50Z #15 1.497 8550K .......... .......... .......... .......... .......... 6% 75.3M 2s -2024-04-11T17:58:50Z #15 1.498 8600K .......... .......... .......... .......... .......... 6% 63.3M 2s -2024-04-11T17:58:50Z #15 1.499 8650K .......... .......... .......... .......... .......... 6% 102M 2s -2024-04-11T17:58:50Z #15 1.499 8700K .......... .......... .......... .......... .......... 6% 73.3M 2s -2024-04-11T17:58:50Z #15 1.500 8750K .......... .......... .......... .......... .......... 6% 88.1M 2s -2024-04-11T17:58:50Z #15 1.500 8800K .......... .......... .......... .......... .......... 6% 62.8M 2s -2024-04-11T17:58:50Z #15 1.501 8850K .......... .......... .......... .......... .......... 7% 101M 2s -2024-04-11T17:58:50Z #15 1.501 8900K .......... .......... .......... .......... .......... 7% 85.7M 2s -2024-04-11T17:58:50Z #15 1.502 8950K .......... .......... .......... .......... .......... 7% 68.9M 2s -2024-04-11T17:58:50Z #15 1.504 9000K .......... .......... .......... .......... .......... 7% 146M 2s -2024-04-11T17:58:50Z #15 1.504 9050K .......... .......... .......... .......... .......... 7% 93.4M 2s -2024-04-11T17:58:50Z #15 1.504 9100K .......... .......... .......... .......... .......... 7% 85.3M 2s -2024-04-11T17:58:50Z #15 1.504 9150K .......... .......... .......... .......... .......... 7% 88.4M 2s -2024-04-11T17:58:50Z #15 1.505 9200K .......... .......... .......... .......... .......... 7% 68.1M 2s -2024-04-11T17:58:50Z #15 1.506 9250K .......... .......... .......... .......... .......... 7% 144M 2s -2024-04-11T17:58:50Z #15 1.506 9300K .......... .......... .......... .......... .......... 7% 107M 2s -2024-04-11T17:58:50Z #15 1.506 9350K .......... .......... .......... .......... .......... 7% 88.8M 2s -2024-04-11T17:58:50Z #15 1.507 9400K .......... .......... .......... .......... .......... 7% 80.5M 2s -2024-04-11T17:58:50Z #15 1.508 9450K .......... .......... .......... .......... .......... 7% 71.5M 2s -2024-04-11T17:58:50Z #15 1.508 9500K .......... .......... .......... .......... .......... 7% 125M 2s -2024-04-11T17:58:50Z #15 1.508 9550K .......... .......... .......... .......... .......... 7% 72.8M 2s -2024-04-11T17:58:50Z #15 1.515 9600K .......... .......... .......... .......... .......... 7% 144M 2s -2024-04-11T17:58:50Z #15 1.515 9650K .......... .......... .......... .......... .......... 7% 95.5M 2s -2024-04-11T17:58:50Z #15 1.515 9700K .......... .......... .......... .......... .......... 7% 117M 2s -2024-04-11T17:58:50Z #15 1.515 9750K .......... .......... .......... .......... .......... 7% 92.9M 2s -2024-04-11T17:58:50Z #15 1.515 9800K .......... .......... .......... .......... .......... 7% 112M 2s -2024-04-11T17:58:50Z #15 1.515 9850K .......... .......... .......... .......... .......... 7% 95.7M 2s -2024-04-11T17:58:50Z #15 1.515 9900K .......... .......... .......... .......... .......... 7% 136M 2s -2024-04-11T17:58:50Z #15 1.515 9950K .......... .......... .......... .......... .......... 7% 126M 2s -2024-04-11T17:58:50Z #15 1.515 10000K .......... .......... .......... .......... .......... 7% 99.7M 2s -2024-04-11T17:58:50Z #15 1.515 10050K .......... .......... .......... .......... .......... 7% 125M 2s -2024-04-11T17:58:50Z #15 1.515 10100K .......... .......... .......... .......... .......... 8% 70.5M 2s -2024-04-11T17:58:50Z #15 1.515 10150K .......... .......... .......... .......... .......... 8% 105M 2s -2024-04-11T17:58:50Z #15 1.515 10200K .......... .......... .......... .......... .......... 8% 59.4M 2s -2024-04-11T17:58:50Z #15 1.517 10250K .......... .......... .......... .......... .......... 8% 90.3M 2s -2024-04-11T17:58:50Z #15 1.517 10300K .......... .......... .......... .......... .......... 8% 111M 2s -2024-04-11T17:58:50Z #15 1.517 10350K .......... .......... .......... .......... .......... 8% 62.7M 2s -2024-04-11T17:58:50Z #15 1.518 10400K .......... .......... .......... .......... .......... 8% 88.5M 2s -2024-04-11T17:58:50Z #15 1.518 10450K .......... .......... .......... .......... .......... 8% 45.3M 2s -2024-04-11T17:58:50Z #15 1.519 10500K .......... .......... .......... .......... .......... 8% 114M 2s -2024-04-11T17:58:50Z #15 1.519 10550K .......... .......... .......... .......... .......... 8% 127M 2s -2024-04-11T17:58:50Z #15 1.520 10600K .......... .......... .......... .......... .......... 8% 61.7M 2s -2024-04-11T17:58:50Z #15 1.520 10650K .......... .......... .......... .......... .......... 8% 132M 2s -2024-04-11T17:58:50Z #15 1.521 10700K .......... .......... .......... .......... .......... 8% 74.2M 2s -2024-04-11T17:58:50Z #15 1.521 10750K .......... .......... .......... .......... .......... 8% 92.6M 2s -2024-04-11T17:58:50Z #15 1.522 10800K .......... .......... .......... .......... .......... 8% 120M 2s -2024-04-11T17:58:50Z #15 1.522 10850K .......... .......... .......... .......... .......... 8% 127M 2s -2024-04-11T17:58:50Z #15 1.523 10900K .......... .......... .......... .......... .......... 8% 72.9M 2s -2024-04-11T17:58:50Z #15 1.524 10950K .......... .......... .......... .......... .......... 8% 90.5M 2s -2024-04-11T17:58:50Z #15 1.525 11000K .......... .......... .......... .......... .......... 8% 140M 2s -2024-04-11T17:58:50Z #15 1.525 11050K .......... .......... .......... .......... .......... 8% 56.8M 2s -2024-04-11T17:58:50Z #15 1.526 11100K .......... .......... .......... .......... .......... 8% 127M 2s -2024-04-11T17:58:50Z #15 1.526 11150K .......... .......... .......... .......... .......... 8% 74.2M 2s -2024-04-11T17:58:50Z #15 1.526 11200K .......... .......... .......... .......... .......... 8% 45.6M 2s -2024-04-11T17:58:50Z #15 1.530 11250K .......... .......... .......... .......... .......... 8% 104M 2s -2024-04-11T17:58:50Z #15 1.530 11300K .......... .......... .......... .......... .......... 8% 180M 2s -2024-04-11T17:58:50Z #15 1.530 11350K .......... .......... .......... .......... .......... 8% 152M 2s -2024-04-11T17:58:50Z #15 1.530 11400K .......... .......... .......... .......... .......... 9% 102M 2s -2024-04-11T17:58:50Z #15 1.530 11450K .......... .......... .......... .......... .......... 9% 79.7M 2s -2024-04-11T17:58:50Z #15 1.530 11500K .......... .......... .......... .......... .......... 9% 76.9M 2s -2024-04-11T17:58:50Z #15 1.531 11550K .......... .......... .......... .......... .......... 9% 116M 2s -2024-04-11T17:58:50Z #15 1.531 11600K .......... .......... .......... .......... .......... 9% 72.7M 2s -2024-04-11T17:58:50Z #15 1.531 11650K .......... .......... .......... .......... .......... 9% 85.7M 2s -2024-04-11T17:58:50Z #15 1.532 11700K .......... .......... .......... .......... .......... 9% 87.2M 2s -2024-04-11T17:58:50Z #15 1.532 11750K .......... .......... .......... .......... .......... 9% 89.9M 2s -2024-04-11T17:58:50Z #15 1.533 11800K .......... .......... .......... .......... .......... 9% 113M 2s -2024-04-11T17:58:50Z #15 1.534 11850K .......... .......... .......... .......... .......... 9% 75.5M 2s -2024-04-11T17:58:50Z #15 1.534 11900K .......... .......... .......... .......... .......... 9% 123M 2s -2024-04-11T17:58:50Z #15 1.534 11950K .......... .......... .......... .......... .......... 9% 103M 2s -2024-04-11T17:58:50Z #15 1.535 12000K .......... .......... .......... .......... .......... 9% 67.0M 2s -2024-04-11T17:58:50Z #15 1.536 12050K .......... .......... .......... .......... .......... 9% 87.7M 2s -2024-04-11T17:58:50Z #15 1.536 12100K .......... .......... .......... .......... .......... 9% 74.6M 2s -2024-04-11T17:58:50Z #15 1.537 12150K .......... .......... .......... .......... .......... 9% 96.6M 2s -2024-04-11T17:58:50Z #15 1.537 12200K .......... .......... .......... .......... .......... 9% 72.6M 2s -2024-04-11T17:58:50Z #15 1.538 12250K .......... .......... .......... .......... .......... 9% 84.4M 2s -2024-04-11T17:58:50Z #15 1.539 12300K .......... .......... .......... .......... .......... 9% 66.6M 2s -2024-04-11T17:58:50Z #15 1.539 12350K .......... .......... .......... .......... .......... 9% 59.9M 2s -2024-04-11T17:58:50Z #15 1.540 12400K .......... .......... .......... .......... .......... 9% 93.6M 2s -2024-04-11T17:58:50Z #15 1.540 12450K .......... .......... .......... .......... .......... 9% 104M 2s -2024-04-11T17:58:50Z #15 1.541 12500K .......... .......... .......... .......... .......... 9% 129M 2s -2024-04-11T17:58:50Z #15 1.541 12550K .......... .......... .......... .......... .......... 9% 69.7M 2s -2024-04-11T17:58:50Z #15 1.542 12600K .......... .......... .......... .......... .......... 9% 79.7M 2s -2024-04-11T17:58:50Z #15 1.543 12650K .......... .......... .......... .......... .......... 10% 104M 2s -2024-04-11T17:58:50Z #15 1.543 12700K .......... .......... .......... .......... .......... 10% 98.6M 2s -2024-04-11T17:58:50Z #15 1.544 12750K .......... .......... .......... .......... .......... 10% 114M 2s -2024-04-11T17:58:50Z #15 1.544 12800K .......... .......... .......... .......... .......... 10% 85.8M 2s -2024-04-11T17:58:50Z #15 1.545 12850K .......... .......... .......... .......... .......... 10% 69.3M 2s -2024-04-11T17:58:50Z #15 1.545 12900K .......... .......... .......... .......... .......... 10% 123M 2s -2024-04-11T17:58:50Z #15 1.547 12950K .......... .......... .......... .......... .......... 10% 72.2M 2s -2024-04-11T17:58:50Z #15 1.547 13000K .......... .......... .......... .......... .......... 10% 74.5M 2s -2024-04-11T17:58:50Z #15 1.547 13050K .......... .......... .......... .......... .......... 10% 110M 2s -2024-04-11T17:58:50Z #15 1.548 13100K .......... .......... .......... .......... .......... 10% 86.1M 2s -2024-04-11T17:58:50Z #15 1.548 13150K .......... .......... .......... .......... .......... 10% 87.4M 2s -2024-04-11T17:58:50Z #15 1.550 13200K .......... .......... .......... .......... .......... 10% 152M 2s -2024-04-11T17:58:50Z #15 1.550 13250K .......... .......... .......... .......... .......... 10% 157M 2s -2024-04-11T17:58:50Z #15 1.550 13300K .......... .......... .......... .......... .......... 10% 106M 2s -2024-04-11T17:58:50Z #15 1.550 13350K .......... .......... .......... .......... .......... 10% 69.5M 2s -2024-04-11T17:58:50Z #15 1.550 13400K .......... .......... .......... .......... .......... 10% 99.6M 2s -2024-04-11T17:58:50Z #15 1.551 13450K .......... .......... .......... .......... .......... 10% 65.4M 2s -2024-04-11T17:58:50Z #15 1.552 13500K .......... .......... .......... .......... .......... 10% 151M 2s -2024-04-11T17:58:50Z #15 1.552 13550K .......... .......... .......... .......... .......... 10% 80.5M 2s -2024-04-11T17:58:50Z #15 1.553 13600K .......... .......... .......... .......... .......... 10% 128M 2s -2024-04-11T17:58:50Z #15 1.553 13650K .......... .......... .......... .......... .......... 10% 71.0M 2s -2024-04-11T17:58:50Z #15 1.558 13700K .......... .......... .......... .......... .......... 10% 129M 2s -2024-04-11T17:58:50Z #15 1.558 13750K .......... .......... .......... .......... .......... 10% 118M 2s -2024-04-11T17:58:50Z #15 1.558 13800K .......... .......... .......... .......... .......... 10% 109M 2s -2024-04-11T17:58:50Z #15 1.558 13850K .......... .......... .......... .......... .......... 10% 92.9M 1s -2024-04-11T17:58:50Z #15 1.558 13900K .......... .......... .......... .......... .......... 11% 104M 1s -2024-04-11T17:58:50Z #15 1.558 13950K .......... .......... .......... .......... .......... 11% 152M 1s -2024-04-11T17:58:50Z #15 1.558 14000K .......... .......... .......... .......... .......... 11% 115M 1s -2024-04-11T17:58:50Z #15 1.558 14050K .......... .......... .......... .......... .......... 11% 172M 1s -2024-04-11T17:58:50Z #15 1.558 14100K .......... .......... .......... .......... .......... 11% 119M 1s -2024-04-11T17:58:50Z #15 1.558 14150K .......... .......... .......... .......... .......... 11% 70.5M 1s -2024-04-11T17:58:50Z #15 1.559 14200K .......... .......... .......... .......... .......... 11% 68.7M 1s -2024-04-11T17:58:50Z #15 1.559 14250K .......... .......... .......... .......... .......... 11% 93.7M 1s -2024-04-11T17:58:50Z #15 1.559 14300K .......... .......... .......... .......... .......... 11% 118M 1s -2024-04-11T17:58:50Z #15 1.560 14350K .......... .......... .......... .......... .......... 11% 90.9M 1s -2024-04-11T17:58:50Z #15 1.560 14400K .......... .......... .......... .......... .......... 11% 59.5M 1s -2024-04-11T17:58:50Z #15 1.561 14450K .......... .......... .......... .......... .......... 11% 132M 1s -2024-04-11T17:58:50Z #15 1.561 14500K .......... .......... .......... .......... .......... 11% 88.9M 1s -2024-04-11T17:58:50Z #15 1.562 14550K .......... .......... .......... .......... .......... 11% 110M 1s -2024-04-11T17:58:50Z #15 1.562 14600K .......... .......... .......... .......... .......... 11% 64.5M 1s -2024-04-11T17:58:50Z #15 1.563 14650K .......... .......... .......... .......... .......... 11% 84.5M 1s -2024-04-11T17:58:50Z #15 1.564 14700K .......... .......... .......... .......... .......... 11% 90.9M 1s -2024-04-11T17:58:50Z #15 1.564 14750K .......... .......... .......... .......... .......... 11% 108M 1s -2024-04-11T17:58:50Z #15 1.565 14800K .......... .......... .......... .......... .......... 11% 75.3M 1s -2024-04-11T17:58:50Z #15 1.566 14850K .......... .......... .......... .......... .......... 11% 103M 1s -2024-04-11T17:58:50Z #15 1.566 14900K .......... .......... .......... .......... .......... 11% 88.7M 1s -2024-04-11T17:58:50Z #15 1.566 14950K .......... .......... .......... .......... .......... 11% 109M 1s -2024-04-11T17:58:50Z #15 1.567 15000K .......... .......... .......... .......... .......... 11% 82.1M 1s -2024-04-11T17:58:50Z #15 1.568 15050K .......... .......... .......... .......... .......... 11% 88.8M 1s -2024-04-11T17:58:50Z #15 1.568 15100K .......... .......... .......... .......... .......... 11% 69.2M 1s -2024-04-11T17:58:50Z #15 1.569 15150K .......... .......... .......... .......... .......... 11% 77.6M 1s -2024-04-11T17:58:50Z #15 1.570 15200K .......... .......... .......... .......... .......... 12% 95.9M 1s -2024-04-11T17:58:50Z #15 1.570 15250K .......... .......... .......... .......... .......... 12% 158M 1s -2024-04-11T17:58:50Z #15 1.570 15300K .......... .......... .......... .......... .......... 12% 84.3M 1s -2024-04-11T17:58:50Z #15 1.571 15350K .......... .......... .......... .......... .......... 12% 88.7M 1s -2024-04-11T17:58:50Z #15 1.572 15400K .......... .......... .......... .......... .......... 12% 51.7M 1s -2024-04-11T17:58:50Z #15 1.572 15450K .......... .......... .......... .......... .......... 12% 64.2M 1s -2024-04-11T17:58:50Z #15 1.574 15500K .......... .......... .......... .......... .......... 12% 123M 1s -2024-04-11T17:58:50Z #15 1.574 15550K .......... .......... .......... .......... .......... 12% 82.4M 1s -2024-04-11T17:58:50Z #15 1.575 15600K .......... .......... .......... .......... .......... 12% 65.4M 1s -2024-04-11T17:58:50Z #15 1.575 15650K .......... .......... .......... .......... .......... 12% 92.8M 1s -2024-04-11T17:58:50Z #15 1.575 15700K .......... .......... .......... .......... .......... 12% 76.7M 1s -2024-04-11T17:58:50Z #15 1.576 15750K .......... .......... .......... .......... .......... 12% 77.4M 1s -2024-04-11T17:58:50Z #15 1.577 15800K .......... .......... .......... .......... .......... 12% 133M 1s -2024-04-11T17:58:50Z #15 1.577 15850K .......... .......... .......... .......... .......... 12% 94.7M 1s -2024-04-11T17:58:50Z #15 1.578 15900K .......... .......... .......... .......... .......... 12% 121M 1s -2024-04-11T17:58:50Z #15 1.578 15950K .......... .......... .......... .......... .......... 12% 57.5M 1s -2024-04-11T17:58:50Z #15 1.579 16000K .......... .......... .......... .......... .......... 12% 133M 1s -2024-04-11T17:58:50Z #15 1.579 16050K .......... .......... .......... .......... .......... 12% 76.7M 1s -2024-04-11T17:58:50Z #15 1.580 16100K .......... .......... .......... .......... .......... 12% 96.3M 1s -2024-04-11T17:58:50Z #15 1.580 16150K .......... .......... .......... .......... .......... 12% 77.2M 1s -2024-04-11T17:58:50Z #15 1.581 16200K .......... .......... .......... .......... .......... 12% 93.3M 1s -2024-04-11T17:58:50Z #15 1.581 16250K .......... .......... .......... .......... .......... 12% 84.6M 1s -2024-04-11T17:58:50Z #15 1.586 16300K .......... .......... .......... .......... .......... 12% 84.1M 1s -2024-04-11T17:58:50Z #15 1.586 16350K .......... .......... .......... .......... .......... 12% 100M 1s -2024-04-11T17:58:50Z #15 1.586 16400K .......... .......... .......... .......... .......... 12% 157M 1s -2024-04-11T17:58:50Z #15 1.586 16450K .......... .......... .......... .......... .......... 13% 97.2M 1s -2024-04-11T17:58:50Z #15 1.586 16500K .......... .......... .......... .......... .......... 13% 121M 1s -2024-04-11T17:58:50Z #15 1.586 16550K .......... .......... .......... .......... .......... 13% 86.5M 1s -2024-04-11T17:58:50Z #15 1.586 16600K .......... .......... .......... .......... .......... 13% 122M 1s -2024-04-11T17:58:50Z #15 1.586 16650K .......... .......... .......... .......... .......... 13% 115M 1s -2024-04-11T17:58:50Z #15 1.586 16700K .......... .......... .......... .......... .......... 13% 47.4M 1s -2024-04-11T17:58:50Z #15 1.587 16750K .......... .......... .......... .......... .......... 13% 100M 1s -2024-04-11T17:58:50Z #15 1.587 16800K .......... .......... .......... .......... .......... 13% 121M 1s -2024-04-11T17:58:50Z #15 1.587 16850K .......... .......... .......... .......... .......... 13% 73.7M 1s -2024-04-11T17:58:50Z #15 1.588 16900K .......... .......... .......... .......... .......... 13% 82.1M 1s -2024-04-11T17:58:50Z #15 1.589 16950K .......... .......... .......... .......... .......... 13% 103M 1s -2024-04-11T17:58:50Z #15 1.589 17000K .......... .......... .......... .......... .......... 13% 105M 1s -2024-04-11T17:58:50Z #15 1.590 17050K .......... .......... .......... .......... .......... 13% 10.8M 1s -2024-04-11T17:58:50Z #15 1.596 17100K .......... .......... .......... .......... .......... 13% 111M 1s -2024-04-11T17:58:50Z #15 1.596 17150K .......... .......... .......... .......... .......... 13% 106M 1s -2024-04-11T17:58:50Z #15 1.596 17200K .......... .......... .......... .......... .......... 13% 119M 1s -2024-04-11T17:58:50Z #15 1.596 17250K .......... .......... .......... .......... .......... 13% 141M 1s -2024-04-11T17:58:50Z #15 1.596 17300K .......... .......... .......... .......... .......... 13% 125M 1s -2024-04-11T17:58:50Z #15 1.596 17350K .......... .......... .......... .......... .......... 13% 23.1M 1s -2024-04-11T17:58:50Z #15 1.598 17400K .......... .......... .......... .......... .......... 13% 55.1M 1s -2024-04-11T17:58:50Z #15 1.602 17450K .......... .......... .......... .......... .......... 13% 73.0M 1s -2024-04-11T17:58:50Z #15 1.602 17500K .......... .......... .......... .......... .......... 13% 154M 1s -2024-04-11T17:58:50Z #15 1.602 17550K .......... .......... .......... .......... .......... 13% 148M 1s -2024-04-11T17:58:50Z #15 1.602 17600K .......... .......... .......... .......... .......... 13% 155M 1s -2024-04-11T17:58:50Z #15 1.602 17650K .......... .......... .......... .......... .......... 13% 150M 1s -2024-04-11T17:58:50Z #15 1.602 17700K .......... .......... .......... .......... .......... 14% 134M 1s -2024-04-11T17:58:50Z #15 1.602 17750K .......... .......... .......... .......... .......... 14% 21.0M 1s -2024-04-11T17:58:50Z #15 1.604 17800K .......... .......... .......... .......... .......... 14% 30.0M 1s -2024-04-11T17:58:50Z #15 1.606 17850K .......... .......... .......... .......... .......... 14% 24.5M 1s -2024-04-11T17:58:50Z #15 1.610 17900K .......... .......... .......... .......... .......... 14% 141M 1s -2024-04-11T17:58:50Z #15 1.610 17950K .......... .......... .......... .......... .......... 14% 134M 1s -2024-04-11T17:58:50Z #15 1.610 18000K .......... .......... .......... .......... .......... 14% 160M 1s -2024-04-11T17:58:50Z #15 1.610 18050K .......... .......... .......... .......... .......... 14% 166M 1s -2024-04-11T17:58:50Z #15 1.610 18100K .......... .......... .......... .......... .......... 14% 144M 1s -2024-04-11T17:58:50Z #15 1.610 18150K .......... .......... .......... .......... .......... 14% 140M 1s -2024-04-11T17:58:50Z #15 1.610 18200K .......... .......... .......... .......... .......... 14% 130M 1s -2024-04-11T17:58:50Z #15 1.610 18250K .......... .......... .......... .......... .......... 14% 12.0M 1s -2024-04-11T17:58:50Z #15 1.614 18300K .......... .......... .......... .......... .......... 14% 67.6M 1s -2024-04-11T17:58:50Z #15 1.615 18350K .......... .......... .......... .......... .......... 14% 65.1M 1s -2024-04-11T17:58:50Z #15 1.616 18400K .......... .......... .......... .......... .......... 14% 26.5M 1s -2024-04-11T17:58:50Z #15 1.617 18450K .......... .......... .......... .......... .......... 14% 40.6M 1s -2024-04-11T17:58:50Z #15 1.618 18500K .......... .......... .......... .......... .......... 14% 25.1M 1s -2024-04-11T17:58:50Z #15 1.626 18550K .......... .......... .......... .......... .......... 14% 127M 1s -2024-04-11T17:58:50Z #15 1.626 18600K .......... .......... .......... .......... .......... 14% 133M 1s -2024-04-11T17:58:50Z #15 1.626 18650K .......... .......... .......... .......... .......... 14% 160M 1s -2024-04-11T17:58:50Z #15 1.626 18700K .......... .......... .......... .......... .......... 14% 148M 1s -2024-04-11T17:58:50Z #15 1.626 18750K .......... .......... .......... .......... .......... 14% 157M 1s -2024-04-11T17:58:50Z #15 1.626 18800K .......... .......... .......... .......... .......... 14% 141M 1s -2024-04-11T17:58:50Z #15 1.626 18850K .......... .......... .......... .......... .......... 14% 152M 1s -2024-04-11T17:58:50Z #15 1.626 18900K .......... .......... .......... .......... .......... 14% 167M 1s -2024-04-11T17:58:50Z #15 1.626 18950K .......... .......... .......... .......... .......... 14% 119M 1s -2024-04-11T17:58:50Z #15 1.626 19000K .......... .......... .......... .......... .......... 15% 137M 1s -2024-04-11T17:58:50Z #15 1.626 19050K .......... .......... .......... .......... .......... 15% 164M 1s -2024-04-11T17:58:50Z #15 1.626 19100K .......... .......... .......... .......... .......... 15% 135M 1s -2024-04-11T17:58:50Z #15 1.626 19150K .......... .......... .......... .......... .......... 15% 170M 1s -2024-04-11T17:58:50Z #15 1.626 19200K .......... .......... .......... .......... .......... 15% 146M 1s -2024-04-11T17:58:50Z #15 1.626 19250K .......... .......... .......... .......... .......... 15% 124M 1s -2024-04-11T17:58:50Z #15 1.626 19300K .......... .......... .......... .......... .......... 15% 8.51M 1s -2024-04-11T17:58:50Z #15 1.631 19350K .......... .......... .......... .......... .......... 15% 30.9M 1s -2024-04-11T17:58:50Z #15 1.633 19400K .......... .......... .......... .......... .......... 15% 27.7M 1s -2024-04-11T17:58:50Z #15 1.635 19450K .......... .......... .......... .......... .......... 15% 27.6M 1s -2024-04-11T17:58:50Z #15 1.636 19500K .......... .......... .......... .......... .......... 15% 25.9M 1s -2024-04-11T17:58:50Z #15 1.639 19550K .......... .......... .......... .......... .......... 15% 43.9M 1s -2024-04-11T17:58:50Z #15 1.642 19600K .......... .......... .......... .......... .......... 15% 150M 1s -2024-04-11T17:58:50Z #15 1.642 19650K .......... .......... .......... .......... .......... 15% 163M 1s -2024-04-11T17:58:50Z #15 1.642 19700K .......... .......... .......... .......... .......... 15% 153M 1s -2024-04-11T17:58:50Z #15 1.642 19750K .......... .......... .......... .......... .......... 15% 124M 1s -2024-04-11T17:58:50Z #15 1.642 19800K .......... .......... .......... .......... .......... 15% 168M 1s -2024-04-11T17:58:50Z #15 1.642 19850K .......... .......... .......... .......... .......... 15% 155M 1s -2024-04-11T17:58:50Z #15 1.642 19900K .......... .......... .......... .......... .......... 15% 131M 1s -2024-04-11T17:58:50Z #15 1.642 19950K .......... .......... .......... .......... .......... 15% 8.93M 1s -2024-04-11T17:58:50Z #15 1.647 20000K .......... .......... .......... .......... .......... 15% 41.3M 1s -2024-04-11T17:58:50Z #15 1.649 20050K .......... .......... .......... .......... .......... 15% 129M 1s -2024-04-11T17:58:50Z #15 1.649 20100K .......... .......... .......... .......... .......... 15% 164M 1s -2024-04-11T17:58:50Z #15 1.649 20150K .......... .......... .......... .......... .......... 15% 125M 1s -2024-04-11T17:58:50Z #15 1.649 20200K .......... .......... .......... .......... .......... 15% 157M 1s -2024-04-11T17:58:50Z #15 1.650 20250K .......... .......... .......... .......... .......... 16% 135M 1s -2024-04-11T17:58:50Z #15 1.650 20300K .......... .......... .......... .......... .......... 16% 165M 1s -2024-04-11T17:58:50Z #15 1.650 20350K .......... .......... .......... .......... .......... 16% 143M 1s -2024-04-11T17:58:50Z #15 1.651 20400K .......... .......... .......... .......... .......... 16% 128M 1s -2024-04-11T17:58:50Z #15 1.651 20450K .......... .......... .......... .......... .......... 16% 162M 1s -2024-04-11T17:58:50Z #15 1.651 20500K .......... .......... .......... .......... .......... 16% 98.2M 1s -2024-04-11T17:58:50Z #15 1.652 20550K .......... .......... .......... .......... .......... 16% 130M 1s -2024-04-11T17:58:50Z #15 1.652 20600K .......... .......... .......... .......... .......... 16% 159M 1s -2024-04-11T17:58:50Z #15 1.653 20650K .......... .......... .......... .......... .......... 16% 168M 1s -2024-04-11T17:58:50Z #15 1.653 20700K .......... .......... .......... .......... .......... 16% 132M 1s -2024-04-11T17:58:50Z #15 1.653 20750K .......... .......... .......... .......... .......... 16% 153M 1s -2024-04-11T17:58:50Z #15 1.654 20800K .......... .......... .......... .......... .......... 16% 122M 1s -2024-04-11T17:58:50Z #15 1.654 20850K .......... .......... .......... .......... .......... 16% 170M 1s -2024-04-11T17:58:50Z #15 1.654 20900K .......... .......... .......... .......... .......... 16% 156M 1s -2024-04-11T17:58:50Z #15 1.654 20950K .......... .......... .......... .......... .......... 16% 123M 1s -2024-04-11T17:58:50Z #15 1.655 21000K .......... .......... .......... .......... .......... 16% 150M 1s -2024-04-11T17:58:50Z #15 1.655 21050K .......... .......... .......... .......... .......... 16% 159M 1s -2024-04-11T17:58:50Z #15 1.656 21100K .......... .......... .......... .......... .......... 16% 140M 1s -2024-04-11T17:58:50Z #15 1.656 21150K .......... .......... .......... .......... .......... 16% 154M 1s -2024-04-11T17:58:50Z #15 1.656 21200K .......... .......... .......... .......... .......... 16% 155M 1s -2024-04-11T17:58:50Z #15 1.657 21250K .......... .......... .......... .......... .......... 16% 156M 1s -2024-04-11T17:58:50Z #15 1.657 21300K .......... .......... .......... .......... .......... 16% 35.8M 1s -2024-04-11T17:58:50Z #15 1.658 21350K .......... .......... .......... .......... .......... 16% 124M 1s -2024-04-11T17:58:50Z #15 1.659 21400K .......... .......... .......... .......... .......... 16% 117M 1s -2024-04-11T17:58:50Z #15 1.659 21450K .......... .......... .......... .......... .......... 16% 124M 1s -2024-04-11T17:58:50Z #15 1.659 21500K .......... .......... .......... .......... .......... 16% 106M 1s -2024-04-11T17:58:50Z #15 1.660 21550K .......... .......... .......... .......... .......... 17% 133M 1s -2024-04-11T17:58:50Z #15 1.660 21600K .......... .......... .......... .......... .......... 17% 135M 1s -2024-04-11T17:58:50Z #15 1.661 21650K .......... .......... .......... .......... .......... 17% 146M 1s -2024-04-11T17:58:50Z #15 1.661 21700K .......... .......... .......... .......... .......... 17% 124M 1s -2024-04-11T17:58:50Z #15 1.661 21750K .......... .......... .......... .......... .......... 17% 164M 1s -2024-04-11T17:58:50Z #15 1.662 21800K .......... .......... .......... .......... .......... 17% 59.0M 1s -2024-04-11T17:58:50Z #15 1.662 21850K .......... .......... .......... .......... .......... 17% 134M 1s -2024-04-11T17:58:50Z #15 1.663 21900K .......... .......... .......... .......... .......... 17% 129M 1s -2024-04-11T17:58:50Z #15 1.663 21950K .......... .......... .......... .......... .......... 17% 115M 1s -2024-04-11T17:58:50Z #15 1.664 22000K .......... .......... .......... .......... .......... 17% 142M 1s -2024-04-11T17:58:50Z #15 1.664 22050K .......... .......... .......... .......... .......... 17% 121M 1s -2024-04-11T17:58:50Z #15 1.664 22100K .......... .......... .......... .......... .......... 17% 109M 1s -2024-04-11T17:58:50Z #15 1.665 22150K .......... .......... .......... .......... .......... 17% 129M 1s -2024-04-11T17:58:50Z #15 1.666 22200K .......... .......... .......... .......... .......... 17% 151M 1s -2024-04-11T17:58:50Z #15 1.666 22250K .......... .......... .......... .......... .......... 17% 93.3M 1s -2024-04-11T17:58:50Z #15 1.666 22300K .......... .......... .......... .......... .......... 17% 99.1M 1s -2024-04-11T17:58:50Z #15 1.667 22350K .......... .......... .......... .......... .......... 17% 115M 1s -2024-04-11T17:58:50Z #15 1.667 22400K .......... .......... .......... .......... .......... 17% 170M 1s -2024-04-11T17:58:50Z #15 1.667 22450K .......... .......... .......... .......... .......... 17% 108M 1s -2024-04-11T17:58:50Z #15 1.668 22500K .......... .......... .......... .......... .......... 17% 155M 1s -2024-04-11T17:58:50Z #15 1.668 22550K .......... .......... .......... .......... .......... 17% 159M 1s -2024-04-11T17:58:50Z #15 1.668 22600K .......... .......... .......... .......... .......... 17% 162M 1s -2024-04-11T17:58:50Z #15 1.669 22650K .......... .......... .......... .......... .......... 17% 140M 1s -2024-04-11T17:58:50Z #15 1.669 22700K .......... .......... .......... .......... .......... 17% 134M 1s -2024-04-11T17:58:50Z #15 1.669 22750K .......... .......... .......... .......... .......... 17% 154M 1s -2024-04-11T17:58:50Z #15 1.670 22800K .......... .......... .......... .......... .......... 18% 143M 1s -2024-04-11T17:58:50Z #15 1.670 22850K .......... .......... .......... .......... .......... 18% 163M 1s -2024-04-11T17:58:50Z #15 1.670 22900K .......... .......... .......... .......... .......... 18% 125M 1s -2024-04-11T17:58:50Z #15 1.671 22950K .......... .......... .......... .......... .......... 18% 142M 1s -2024-04-11T17:58:50Z #15 1.671 23000K .......... .......... .......... .......... .......... 18% 135M 1s -2024-04-11T17:58:50Z #15 1.671 23050K .......... .......... .......... .......... .......... 18% 128M 1s -2024-04-11T17:58:50Z #15 1.672 23100K .......... .......... .......... .......... .......... 18% 103M 1s -2024-04-11T17:58:50Z #15 1.672 23150K .......... .......... .......... .......... .......... 18% 167M 1s -2024-04-11T17:58:50Z #15 1.672 23200K .......... .......... .......... .......... .......... 18% 140M 1s -2024-04-11T17:58:50Z #15 1.673 23250K .......... .......... .......... .......... .......... 18% 156M 1s -2024-04-11T17:58:50Z #15 1.673 23300K .......... .......... .......... .......... .......... 18% 171M 1s -2024-04-11T17:58:50Z #15 1.673 23350K .......... .......... .......... .......... .......... 18% 105M 1s -2024-04-11T17:58:50Z #15 1.674 23400K .......... .......... .......... .......... .......... 18% 130M 1s -2024-04-11T17:58:50Z #15 1.675 23450K .......... .......... .......... .......... .......... 18% 112M 1s -2024-04-11T17:58:50Z #15 1.675 23500K .......... .......... .......... .......... .......... 18% 161M 1s -2024-04-11T17:58:50Z #15 1.675 23550K .......... .......... .......... .......... .......... 18% 150M 1s -2024-04-11T17:58:50Z #15 1.675 23600K .......... .......... .......... .......... .......... 18% 67.6M 1s -2024-04-11T17:58:50Z #15 1.678 23650K .......... .......... .......... .......... .......... 18% 134M 1s -2024-04-11T17:58:50Z #15 1.678 23700K .......... .......... .......... .......... .......... 18% 137M 1s -2024-04-11T17:58:50Z #15 1.678 23750K .......... .......... .......... .......... .......... 18% 126M 1s -2024-04-11T17:58:50Z #15 1.678 23800K .......... .......... .......... .......... .......... 18% 129M 1s -2024-04-11T17:58:50Z #15 1.678 23850K .......... .......... .......... .......... .......... 18% 121M 1s -2024-04-11T17:58:50Z #15 1.678 23900K .......... .......... .......... .......... .......... 18% 133M 1s -2024-04-11T17:58:50Z #15 1.678 23950K .......... .......... .......... .......... .......... 18% 101M 1s -2024-04-11T17:58:50Z #15 1.682 24000K .......... .......... .......... .......... .......... 18% 165M 1s -2024-04-11T17:58:50Z #15 1.682 24050K .......... .......... .......... .......... .......... 19% 151M 1s -2024-04-11T17:58:50Z #15 1.682 24100K .......... .......... .......... .......... .......... 19% 146M 1s -2024-04-11T17:58:50Z #15 1.682 24150K .......... .......... .......... .......... .......... 19% 158M 1s -2024-04-11T17:58:50Z #15 1.682 24200K .......... .......... .......... .......... .......... 19% 170M 1s -2024-04-11T17:58:50Z #15 1.682 24250K .......... .......... .......... .......... .......... 19% 133M 1s -2024-04-11T17:58:50Z #15 1.682 24300K .......... .......... .......... .......... .......... 19% 158M 1s -2024-04-11T17:58:50Z #15 1.682 24350K .......... .......... .......... .......... .......... 19% 153M 1s -2024-04-11T17:58:50Z #15 1.682 24400K .......... .......... .......... .......... .......... 19% 156M 1s -2024-04-11T17:58:50Z #15 1.686 24450K .......... .......... .......... .......... .......... 19% 59.2M 1s -2024-04-11T17:58:50Z #15 1.686 24500K .......... .......... .......... .......... .......... 19% 112M 1s -2024-04-11T17:58:50Z #15 1.686 24550K .......... .......... .......... .......... .......... 19% 133M 1s -2024-04-11T17:58:50Z #15 1.686 24600K .......... .......... .......... .......... .......... 19% 126M 1s -2024-04-11T17:58:50Z #15 1.686 24650K .......... .......... .......... .......... .......... 19% 134M 1s -2024-04-11T17:58:50Z #15 1.686 24700K .......... .......... .......... .......... .......... 19% 116M 1s -2024-04-11T17:58:50Z #15 1.686 24750K .......... .......... .......... .......... .......... 19% 122M 1s -2024-04-11T17:58:50Z #15 1.686 24800K .......... .......... .......... .......... .......... 19% 105M 1s -2024-04-11T17:58:50Z #15 1.686 24850K .......... .......... .......... .......... .......... 19% 161M 1s -2024-04-11T17:58:50Z #15 1.690 24900K .......... .......... .......... .......... .......... 19% 73.0M 1s -2024-04-11T17:58:50Z #15 1.690 24950K .......... .......... .......... .......... .......... 19% 132M 1s -2024-04-11T17:58:50Z #15 1.690 25000K .......... .......... .......... .......... .......... 19% 115M 1s -2024-04-11T17:58:50Z #15 1.690 25050K .......... .......... .......... .......... .......... 19% 118M 1s -2024-04-11T17:58:50Z #15 1.690 25100K .......... .......... .......... .......... .......... 19% 105M 1s -2024-04-11T17:58:50Z #15 1.690 25150K .......... .......... .......... .......... .......... 19% 114M 1s -2024-04-11T17:58:50Z #15 1.690 25200K .......... .......... .......... .......... .......... 19% 116M 1s -2024-04-11T17:58:50Z #15 1.690 25250K .......... .......... .......... .......... .......... 19% 128M 1s -2024-04-11T17:58:50Z #15 1.690 25300K .......... .......... .......... .......... .......... 19% 104M 1s -2024-04-11T17:58:50Z #15 1.690 25350K .......... .......... .......... .......... .......... 20% 87.3M 1s -2024-04-11T17:58:50Z #15 1.694 25400K .......... .......... .......... .......... .......... 20% 125M 1s -2024-04-11T17:58:50Z #15 1.694 25450K .......... .......... .......... .......... .......... 20% 133M 1s -2024-04-11T17:58:50Z #15 1.694 25500K .......... .......... .......... .......... .......... 20% 110M 1s -2024-04-11T17:58:50Z #15 1.694 25550K .......... .......... .......... .......... .......... 20% 128M 1s -2024-04-11T17:58:50Z #15 1.694 25600K .......... .......... .......... .......... .......... 20% 145M 1s -2024-04-11T17:58:50Z #15 1.694 25650K .......... .......... .......... .......... .......... 20% 97.4M 1s -2024-04-11T17:58:50Z #15 1.694 25700K .......... .......... .......... .......... .......... 20% 119M 1s -2024-04-11T17:58:50Z #15 1.694 25750K .......... .......... .......... .......... .......... 20% 113M 1s -2024-04-11T17:58:50Z #15 1.694 25800K .......... .......... .......... .......... .......... 20% 88.2M 1s -2024-04-11T17:58:50Z #15 1.695 25850K .......... .......... .......... .......... .......... 20% 117M 1s -2024-04-11T17:58:50Z #15 1.695 25900K .......... .......... .......... .......... .......... 20% 116M 1s -2024-04-11T17:58:50Z #15 1.695 25950K .......... .......... .......... .......... .......... 20% 83.2M 1s -2024-04-11T17:58:50Z #15 1.698 26000K .......... .......... .......... .......... .......... 20% 129M 1s -2024-04-11T17:58:50Z #15 1.698 26050K .......... .......... .......... .......... .......... 20% 96.6M 1s -2024-04-11T17:58:50Z #15 1.698 26100K .......... .......... .......... .......... .......... 20% 133M 1s -2024-04-11T17:58:50Z #15 1.698 26150K .......... .......... .......... .......... .......... 20% 128M 1s -2024-04-11T17:58:50Z #15 1.698 26200K .......... .......... .......... .......... .......... 20% 139M 1s -2024-04-11T17:58:50Z #15 1.698 26250K .......... .......... .......... .......... .......... 20% 62.1M 1s -2024-04-11T17:58:50Z #15 1.702 26300K .......... .......... .......... .......... .......... 20% 125M 1s -2024-04-11T17:58:50Z #15 1.702 26350K .......... .......... .......... .......... .......... 20% 123M 1s -2024-04-11T17:58:50Z #15 1.702 26400K .......... .......... .......... .......... .......... 20% 134M 1s -2024-04-11T17:58:50Z #15 1.702 26450K .......... .......... .......... .......... .......... 20% 95.9M 1s -2024-04-11T17:58:50Z #15 1.702 26500K .......... .......... .......... .......... .......... 20% 118M 1s -2024-04-11T17:58:50Z #15 1.702 26550K .......... .......... .......... .......... .......... 20% 148M 1s -2024-04-11T17:58:50Z #15 1.702 26600K .......... .......... .......... .......... .......... 21% 103M 1s -2024-04-11T17:58:50Z #15 1.702 26650K .......... .......... .......... .......... .......... 21% 103M 1s -2024-04-11T17:58:50Z #15 1.702 26700K .......... .......... .......... .......... .......... 21% 64.6M 1s -2024-04-11T17:58:50Z #15 1.706 26750K .......... .......... .......... .......... .......... 21% 113M 1s -2024-04-11T17:58:50Z #15 1.706 26800K .......... .......... .......... .......... .......... 21% 122M 1s -2024-04-11T17:58:50Z #15 1.706 26850K .......... .......... .......... .......... .......... 21% 92.0M 1s -2024-04-11T17:58:50Z #15 1.706 26900K .......... .......... .......... .......... .......... 21% 121M 1s -2024-04-11T17:58:50Z #15 1.706 26950K .......... .......... .......... .......... .......... 21% 126M 1s -2024-04-11T17:58:50Z #15 1.706 27000K .......... .......... .......... .......... .......... 21% 117M 1s -2024-04-11T17:58:50Z #15 1.706 27050K .......... .......... .......... .......... .......... 21% 115M 1s -2024-04-11T17:58:50Z #15 1.706 27100K .......... .......... .......... .......... .......... 21% 62.4M 1s -2024-04-11T17:58:50Z #15 1.710 27150K .......... .......... .......... .......... .......... 21% 97.8M 1s -2024-04-11T17:58:50Z #15 1.710 27200K .......... .......... .......... .......... .......... 21% 118M 1s -2024-04-11T17:58:50Z #15 1.710 27250K .......... .......... .......... .......... .......... 21% 114M 1s -2024-04-11T17:58:50Z #15 1.710 27300K .......... .......... .......... .......... .......... 21% 118M 1s -2024-04-11T17:58:50Z #15 1.710 27350K .......... .......... .......... .......... .......... 21% 147M 1s -2024-04-11T17:58:50Z #15 1.710 27400K .......... .......... .......... .......... .......... 21% 108M 1s -2024-04-11T17:58:50Z #15 1.710 27450K .......... .......... .......... .......... .......... 21% 113M 1s -2024-04-11T17:58:50Z #15 1.710 27500K .......... .......... .......... .......... .......... 21% 143M 1s -2024-04-11T17:58:50Z #15 1.710 27550K .......... .......... .......... .......... .......... 21% 54.6M 1s -2024-04-11T17:58:50Z #15 1.714 27600K .......... .......... .......... .......... .......... 21% 116M 1s -2024-04-11T17:58:50Z #15 1.714 27650K .......... .......... .......... .......... .......... 21% 136M 1s -2024-04-11T17:58:50Z #15 1.714 27700K .......... .......... .......... .......... .......... 21% 111M 1s -2024-04-11T17:58:50Z #15 1.714 27750K .......... .......... .......... .......... .......... 21% 101M 1s -2024-04-11T17:58:50Z #15 1.714 27800K .......... .......... .......... .......... .......... 21% 132M 1s -2024-04-11T17:58:50Z #15 1.714 27850K .......... .......... .......... .......... .......... 22% 127M 1s -2024-04-11T17:58:50Z #15 1.714 27900K .......... .......... .......... .......... .......... 22% 142M 1s -2024-04-11T17:58:50Z #15 1.714 27950K .......... .......... .......... .......... .......... 22% 103M 1s -2024-04-11T17:58:50Z #15 1.714 28000K .......... .......... .......... .......... .......... 22% 59.0M 1s -2024-04-11T17:58:50Z #15 1.718 28050K .......... .......... .......... .......... .......... 22% 124M 1s -2024-04-11T17:58:50Z #15 1.718 28100K .......... .......... .......... .......... .......... 22% 130M 1s -2024-04-11T17:58:50Z #15 1.718 28150K .......... .......... .......... .......... .......... 22% 98.3M 1s -2024-04-11T17:58:50Z #15 1.718 28200K .......... .......... .......... .......... .......... 22% 107M 1s -2024-04-11T17:58:50Z #15 1.718 28250K .......... .......... .......... .......... .......... 22% 131M 1s -2024-04-11T17:58:50Z #15 1.718 28300K .......... .......... .......... .......... .......... 22% 130M 1s -2024-04-11T17:58:50Z #15 1.718 28350K .......... .......... .......... .......... .......... 22% 113M 1s -2024-04-11T17:58:50Z #15 1.718 28400K .......... .......... .......... .......... .......... 22% 57.1M 1s -2024-04-11T17:58:50Z #15 1.722 28450K .......... .......... .......... .......... .......... 22% 106M 1s -2024-04-11T17:58:50Z #15 1.722 28500K .......... .......... .......... .......... .......... 22% 114M 1s -2024-04-11T17:58:50Z #15 1.722 28550K .......... .......... .......... .......... .......... 22% 117M 1s -2024-04-11T17:58:50Z #15 1.722 28600K .......... .......... .......... .......... .......... 22% 116M 1s -2024-04-11T17:58:50Z #15 1.722 28650K .......... .......... .......... .......... .......... 22% 120M 1s -2024-04-11T17:58:50Z #15 1.722 28700K .......... .......... .......... .......... .......... 22% 113M 1s -2024-04-11T17:58:50Z #15 1.722 28750K .......... .......... .......... .......... .......... 22% 100M 1s -2024-04-11T17:58:50Z #15 1.722 28800K .......... .......... .......... .......... .......... 22% 138M 1s -2024-04-11T17:58:50Z #15 1.722 28850K .......... .......... .......... .......... .......... 22% 59.2M 1s -2024-04-11T17:58:50Z #15 1.726 28900K .......... .......... .......... .......... .......... 22% 108M 1s -2024-04-11T17:58:50Z #15 1.726 28950K .......... .......... .......... .......... .......... 22% 129M 1s -2024-04-11T17:58:50Z #15 1.726 29000K .......... .......... .......... .......... .......... 22% 105M 1s -2024-04-11T17:58:50Z #15 1.726 29050K .......... .......... .......... .......... .......... 22% 159M 1s -2024-04-11T17:58:50Z #15 1.726 29100K .......... .......... .......... .......... .......... 22% 145M 1s -2024-04-11T17:58:50Z #15 1.726 29150K .......... .......... .......... .......... .......... 23% 110M 1s -2024-04-11T17:58:50Z #15 1.726 29200K .......... .......... .......... .......... .......... 23% 162M 1s -2024-04-11T17:58:50Z #15 1.726 29250K .......... .......... .......... .......... .......... 23% 139M 1s -2024-04-11T17:58:50Z #15 1.726 29300K .......... .......... .......... .......... .......... 23% 55.4M 1s -2024-04-11T17:58:50Z #15 1.730 29350K .......... .......... .......... .......... .......... 23% 112M 1s -2024-04-11T17:58:50Z #15 1.730 29400K .......... .......... .......... .......... .......... 23% 98.4M 1s -2024-04-11T17:58:50Z #15 1.730 29450K .......... .......... .......... .......... .......... 23% 117M 1s -2024-04-11T17:58:50Z #15 1.730 29500K .......... .......... .......... .......... .......... 23% 121M 1s -2024-04-11T17:58:50Z #15 1.730 29550K .......... .......... .......... .......... .......... 23% 131M 1s -2024-04-11T17:58:50Z #15 1.730 29600K .......... .......... .......... .......... .......... 23% 108M 1s -2024-04-11T17:58:50Z #15 1.730 29650K .......... .......... .......... .......... .......... 23% 122M 1s -2024-04-11T17:58:50Z #15 1.730 29700K .......... .......... .......... .......... .......... 23% 65.1M 1s -2024-04-11T17:58:50Z #15 1.734 29750K .......... .......... .......... .......... .......... 23% 114M 1s -2024-04-11T17:58:50Z #15 1.734 29800K .......... .......... .......... .......... .......... 23% 118M 1s -2024-04-11T17:58:50Z #15 1.734 29850K .......... .......... .......... .......... .......... 23% 135M 1s -2024-04-11T17:58:50Z #15 1.734 29900K .......... .......... .......... .......... .......... 23% 123M 1s -2024-04-11T17:58:50Z #15 1.734 29950K .......... .......... .......... .......... .......... 23% 136M 1s -2024-04-11T17:58:50Z #15 1.734 30000K .......... .......... .......... .......... .......... 23% 119M 1s -2024-04-11T17:58:50Z #15 1.734 30050K .......... .......... .......... .......... .......... 23% 134M 1s -2024-04-11T17:58:50Z #15 1.734 30100K .......... .......... .......... .......... .......... 23% 140M 1s -2024-04-11T17:58:50Z #15 1.734 30150K .......... .......... .......... .......... .......... 23% 154M 1s -2024-04-11T17:58:50Z #15 1.734 30200K .......... .......... .......... .......... .......... 23% 49.2M 1s -2024-04-11T17:58:50Z #15 1.738 30250K .......... .......... .......... .......... .......... 23% 126M 1s -2024-04-11T17:58:50Z #15 1.738 30300K .......... .......... .......... .......... .......... 23% 124M 1s -2024-04-11T17:58:50Z #15 1.738 30350K .......... .......... .......... .......... .......... 23% 118M 1s -2024-04-11T17:58:50Z #15 1.738 30400K .......... .......... .......... .......... .......... 24% 123M 1s -2024-04-11T17:58:50Z #15 1.738 30450K .......... .......... .......... .......... .......... 24% 126M 1s -2024-04-11T17:58:50Z #15 1.738 30500K .......... .......... .......... .......... .......... 24% 139M 1s -2024-04-11T17:58:50Z #15 1.738 30550K .......... .......... .......... .......... .......... 24% 117M 1s -2024-04-11T17:58:50Z #15 1.738 30600K .......... .......... .......... .......... .......... 24% 126M 1s -2024-04-11T17:58:50Z #15 1.738 30650K .......... .......... .......... .......... .......... 24% 42.7M 1s -2024-04-11T17:58:50Z #15 1.742 30700K .......... .......... .......... .......... .......... 24% 119M 1s -2024-04-11T17:58:50Z #15 1.742 30750K .......... .......... .......... .......... .......... 24% 115M 1s -2024-04-11T17:58:50Z #15 1.742 30800K .......... .......... .......... .......... .......... 24% 96.1M 1s -2024-04-11T17:58:50Z #15 1.742 30850K .......... .......... .......... .......... .......... 24% 104M 1s -2024-04-11T17:58:50Z #15 1.742 30900K .......... .......... .......... .......... .......... 24% 133M 1s -2024-04-11T17:58:50Z #15 1.742 30950K .......... .......... .......... .......... .......... 24% 121M 1s -2024-04-11T17:58:50Z #15 1.742 31000K .......... .......... .......... .......... .......... 24% 41.0M 1s -2024-04-11T17:58:50Z #15 1.743 31050K .......... .......... .......... .......... .......... 24% 42.6M 1s -2024-04-11T17:58:50Z #15 1.746 31100K .......... .......... .......... .......... .......... 24% 109M 1s -2024-04-11T17:58:50Z #15 1.746 31150K .......... .......... .......... .......... .......... 24% 123M 1s -2024-04-11T17:58:50Z #15 1.746 31200K .......... .......... .......... .......... .......... 24% 104M 1s -2024-04-11T17:58:50Z #15 1.746 31250K .......... .......... .......... .......... .......... 24% 107M 1s -2024-04-11T17:58:50Z #15 1.746 31300K .......... .......... .......... .......... .......... 24% 33.1M 1s -2024-04-11T17:58:50Z #15 1.747 31350K .......... .......... .......... .......... .......... 24% 36.9M 1s -2024-04-11T17:58:50Z #15 1.750 31400K .......... .......... .......... .......... .......... 24% 102M 1s -2024-04-11T17:58:50Z #15 1.750 31450K .......... .......... .......... .......... .......... 24% 121M 1s -2024-04-11T17:58:50Z #15 1.750 31500K .......... .......... .......... .......... .......... 24% 108M 1s -2024-04-11T17:58:50Z #15 1.750 31550K .......... .......... .......... .......... .......... 24% 42.1M 1s -2024-04-11T17:58:50Z #15 1.751 31600K .......... .......... .......... .......... .......... 24% 24.5M 1s -2024-04-11T17:58:50Z #15 1.753 31650K .......... .......... .......... .......... .......... 25% 19.6M 1s -2024-04-11T17:58:50Z #15 1.755 31700K .......... .......... .......... .......... .......... 25% 40.6M 1s -2024-04-11T17:58:50Z #15 1.757 31750K .......... .......... .......... .......... .......... 25% 51.4M 1s -2024-04-11T17:58:50Z #15 1.757 31800K .......... .......... .......... .......... .......... 25% 120M 1s -2024-04-11T17:58:50Z #15 1.758 31850K .......... .......... .......... .......... .......... 25% 153M 1s -2024-04-11T17:58:50Z #15 1.758 31900K .......... .......... .......... .......... .......... 25% 140M 1s -2024-04-11T17:58:50Z #15 1.759 31950K .......... .......... .......... .......... .......... 25% 154M 1s -2024-04-11T17:58:50Z #15 1.759 32000K .......... .......... .......... .......... .......... 25% 133M 1s -2024-04-11T17:58:50Z #15 1.759 32050K .......... .......... .......... .......... .......... 25% 157M 1s -2024-04-11T17:58:50Z #15 1.760 32100K .......... .......... .......... .......... .......... 25% 145M 1s -2024-04-11T17:58:50Z #15 1.760 32150K .......... .......... .......... .......... .......... 25% 134M 1s -2024-04-11T17:58:50Z #15 1.761 32200K .......... .......... .......... .......... .......... 25% 138M 1s -2024-04-11T17:58:50Z #15 1.761 32250K .......... .......... .......... .......... .......... 25% 137M 1s -2024-04-11T17:58:50Z #15 1.761 32300K .......... .......... .......... .......... .......... 25% 135M 1s -2024-04-11T17:58:50Z #15 1.762 32350K .......... .......... .......... .......... .......... 25% 110M 1s -2024-04-11T17:58:50Z #15 1.762 32400K .......... .......... .......... .......... .......... 25% 99.5M 1s -2024-04-11T17:58:50Z #15 1.762 32450K .......... .......... .......... .......... .......... 25% 126M 1s -2024-04-11T17:58:50Z #15 1.763 32500K .......... .......... .......... .......... .......... 25% 122M 1s -2024-04-11T17:58:50Z #15 1.763 32550K .......... .......... .......... .......... .......... 25% 108M 1s -2024-04-11T17:58:50Z #15 1.764 32600K .......... .......... .......... .......... .......... 25% 120M 1s -2024-04-11T17:58:50Z #15 1.764 32650K .......... .......... .......... .......... .......... 25% 153M 1s -2024-04-11T17:58:50Z #15 1.764 32700K .......... .......... .......... .......... .......... 25% 106M 1s -2024-04-11T17:58:50Z #15 1.765 32750K .......... .......... .......... .......... .......... 25% 148M 1s -2024-04-11T17:58:50Z #15 1.765 32800K .......... .......... .......... .......... .......... 25% 119M 1s -2024-04-11T17:58:50Z #15 1.766 32850K .......... .......... .......... .......... .......... 25% 99.6M 1s -2024-04-11T17:58:50Z #15 1.766 32900K .......... .......... .......... .......... .......... 25% 123M 1s -2024-04-11T17:58:50Z #15 1.766 32950K .......... .......... .......... .......... .......... 26% 117M 1s -2024-04-11T17:58:50Z #15 1.767 33000K .......... .......... .......... .......... .......... 26% 99.7M 1s -2024-04-11T17:58:50Z #15 1.767 33050K .......... .......... .......... .......... .......... 26% 128M 1s -2024-04-11T17:58:50Z #15 1.767 33100K .......... .......... .......... .......... .......... 26% 118M 1s -2024-04-11T17:58:50Z #15 1.778 33150K .......... .......... .......... .......... .......... 26% 140M 1s -2024-04-11T17:58:50Z #15 1.778 33200K .......... .......... .......... .......... .......... 26% 160M 1s -2024-04-11T17:58:50Z #15 1.778 33250K .......... .......... .......... .......... .......... 26% 169M 1s -2024-04-11T17:58:50Z #15 1.778 33300K .......... .......... .......... .......... .......... 26% 104M 1s -2024-04-11T17:58:50Z #15 1.778 33350K .......... .......... .......... .......... .......... 26% 141M 1s -2024-04-11T17:58:50Z #15 1.778 33400K .......... .......... .......... .......... .......... 26% 120M 1s -2024-04-11T17:58:50Z #15 1.778 33450K .......... .......... .......... .......... .......... 26% 121M 1s -2024-04-11T17:58:50Z #15 1.778 33500K .......... .......... .......... .......... .......... 26% 140M 1s -2024-04-11T17:58:50Z #15 1.778 33550K .......... .......... .......... .......... .......... 26% 143M 1s -2024-04-11T17:58:50Z #15 1.778 33600K .......... .......... .......... .......... .......... 26% 96.0M 1s -2024-04-11T17:58:50Z #15 1.778 33650K .......... .......... .......... .......... .......... 26% 142M 1s -2024-04-11T17:58:50Z #15 1.778 33700K .......... .......... .......... .......... .......... 26% 151M 1s -2024-04-11T17:58:50Z #15 1.778 33750K .......... .......... .......... .......... .......... 26% 119M 1s -2024-04-11T17:58:50Z #15 1.778 33800K .......... .......... .......... .......... .......... 26% 122M 1s -2024-04-11T17:58:50Z #15 1.778 33850K .......... .......... .......... .......... .......... 26% 141M 1s -2024-04-11T17:58:50Z #15 1.778 33900K .......... .......... .......... .......... .......... 26% 125M 1s -2024-04-11T17:58:50Z #15 1.778 33950K .......... .......... .......... .......... .......... 26% 99.8M 1s -2024-04-11T17:58:50Z #15 1.778 34000K .......... .......... .......... .......... .......... 26% 105M 1s -2024-04-11T17:58:50Z #15 1.778 34050K .......... .......... .......... .......... .......... 26% 141M 1s -2024-04-11T17:58:50Z #15 1.778 34100K .......... .......... .......... .......... .......... 26% 117M 1s -2024-04-11T17:58:50Z #15 1.778 34150K .......... .......... .......... .......... .......... 26% 126M 1s -2024-04-11T17:58:50Z #15 1.778 34200K .......... .......... .......... .......... .......... 27% 115M 1s -2024-04-11T17:58:50Z #15 1.778 34250K .......... .......... .......... .......... .......... 27% 129M 1s -2024-04-11T17:58:50Z #15 1.778 34300K .......... .......... .......... .......... .......... 27% 134M 1s -2024-04-11T17:58:50Z #15 1.778 34350K .......... .......... .......... .......... .......... 27% 122M 1s -2024-04-11T17:58:50Z #15 1.782 34400K .......... .......... .......... .......... .......... 27% 82.8M 1s -2024-04-11T17:58:50Z #15 1.782 34450K .......... .......... .......... .......... .......... 27% 152M 1s -2024-04-11T17:58:50Z #15 1.782 34500K .......... .......... .......... .......... .......... 27% 127M 1s -2024-04-11T17:58:50Z #15 1.782 34550K .......... .......... .......... .......... .......... 27% 105M 1s -2024-04-11T17:58:50Z #15 1.782 34600K .......... .......... .......... .......... .......... 27% 130M 1s -2024-04-11T17:58:50Z #15 1.782 34650K .......... .......... .......... .......... .......... 27% 107M 1s -2024-04-11T17:58:50Z #15 1.782 34700K .......... .......... .......... .......... .......... 27% 78.3M 1s -2024-04-11T17:58:50Z #15 1.782 34750K .......... .......... .......... .......... .......... 27% 98.8M 1s -2024-04-11T17:58:50Z #15 1.782 34800K .......... .......... .......... .......... .......... 27% 64.2M 1s -2024-04-11T17:58:50Z #15 1.786 34850K .......... .......... .......... .......... .......... 27% 108M 1s -2024-04-11T17:58:50Z #15 1.786 34900K .......... .......... .......... .......... .......... 27% 136M 1s -2024-04-11T17:58:50Z #15 1.786 34950K .......... .......... .......... .......... .......... 27% 125M 1s -2024-04-11T17:58:50Z #15 1.786 35000K .......... .......... .......... .......... .......... 27% 124M 1s -2024-04-11T17:58:50Z #15 1.786 35050K .......... .......... .......... .......... .......... 27% 142M 1s -2024-04-11T17:58:50Z #15 1.786 35100K .......... .......... .......... .......... .......... 27% 122M 1s -2024-04-11T17:58:50Z #15 1.786 35150K .......... .......... .......... .......... .......... 27% 130M 1s -2024-04-11T17:58:50Z #15 1.786 35200K .......... .......... .......... .......... .......... 27% 137M 1s -2024-04-11T17:58:50Z #15 1.786 35250K .......... .......... .......... .......... .......... 27% 114M 1s -2024-04-11T17:58:50Z #15 1.786 35300K .......... .......... .......... .......... .......... 27% 107M 1s -2024-04-11T17:58:50Z #15 1.786 35350K .......... .......... .......... .......... .......... 27% 143M 1s -2024-04-11T17:58:50Z #15 1.786 35400K .......... .......... .......... .......... .......... 27% 163M 1s -2024-04-11T17:58:50Z #15 1.787 35450K .......... .......... .......... .......... .......... 28% 148M 1s -2024-04-11T17:58:50Z #15 1.787 35500K .......... .......... .......... .......... .......... 28% 153M 1s -2024-04-11T17:58:50Z #15 1.787 35550K .......... .......... .......... .......... .......... 28% 131M 1s -2024-04-11T17:58:50Z #15 1.788 35600K .......... .......... .......... .......... .......... 28% 148M 1s -2024-04-11T17:58:50Z #15 1.788 35650K .......... .......... .......... .......... .......... 28% 120M 1s -2024-04-11T17:58:50Z #15 1.788 35700K .......... .......... .......... .......... .......... 28% 152M 1s -2024-04-11T17:58:50Z #15 1.789 35750K .......... .......... .......... .......... .......... 28% 153M 1s -2024-04-11T17:58:50Z #15 1.789 35800K .......... .......... .......... .......... .......... 28% 129M 1s -2024-04-11T17:58:50Z #15 1.789 35850K .......... .......... .......... .......... .......... 28% 136M 1s -2024-04-11T17:58:50Z #15 1.790 35900K .......... .......... .......... .......... .......... 28% 137M 1s -2024-04-11T17:58:50Z #15 1.790 35950K .......... .......... .......... .......... .......... 28% 131M 1s -2024-04-11T17:58:50Z #15 1.790 36000K .......... .......... .......... .......... .......... 28% 130M 1s -2024-04-11T17:58:50Z #15 1.791 36050K .......... .......... .......... .......... .......... 28% 129M 1s -2024-04-11T17:58:50Z #15 1.791 36100K .......... .......... .......... .......... .......... 28% 138M 1s -2024-04-11T17:58:50Z #15 1.792 36150K .......... .......... .......... .......... .......... 28% 111M 1s -2024-04-11T17:58:50Z #15 1.792 36200K .......... .......... .......... .......... .......... 28% 160M 1s -2024-04-11T17:58:50Z #15 1.793 36250K .......... .......... .......... .......... .......... 28% 119M 1s -2024-04-11T17:58:50Z #15 1.793 36300K .......... .......... .......... .......... .......... 28% 121M 1s -2024-04-11T17:58:50Z #15 1.793 36350K .......... .......... .......... .......... .......... 28% 114M 1s -2024-04-11T17:58:50Z #15 1.794 36400K .......... .......... .......... .......... .......... 28% 129M 1s -2024-04-11T17:58:50Z #15 1.794 36450K .......... .......... .......... .......... .......... 28% 105M 1s -2024-04-11T17:58:50Z #15 1.798 36500K .......... .......... .......... .......... .......... 28% 165M 1s -2024-04-11T17:58:50Z #15 1.798 36550K .......... .......... .......... .......... .......... 28% 158M 1s -2024-04-11T17:58:50Z #15 1.798 36600K .......... .......... .......... .......... .......... 28% 156M 1s -2024-04-11T17:58:50Z #15 1.798 36650K .......... .......... .......... .......... .......... 28% 140M 1s -2024-04-11T17:58:50Z #15 1.798 36700K .......... .......... .......... .......... .......... 28% 138M 1s -2024-04-11T17:58:50Z #15 1.798 36750K .......... .......... .......... .......... .......... 29% 121M 1s -2024-04-11T17:58:50Z #15 1.798 36800K .......... .......... .......... .......... .......... 29% 146M 1s -2024-04-11T17:58:50Z #15 1.798 36850K .......... .......... .......... .......... .......... 29% 136M 1s -2024-04-11T17:58:50Z #15 1.798 36900K .......... .......... .......... .......... .......... 29% 125M 1s -2024-04-11T17:58:50Z #15 1.798 36950K .......... .......... .......... .......... .......... 29% 118M 1s -2024-04-11T17:58:50Z #15 1.798 37000K .......... .......... .......... .......... .......... 29% 106M 1s -2024-04-11T17:58:50Z #15 1.799 37050K .......... .......... .......... .......... .......... 29% 94.4M 1s -2024-04-11T17:58:50Z #15 1.799 37100K .......... .......... .......... .......... .......... 29% 111M 1s -2024-04-11T17:58:50Z #15 1.799 37150K .......... .......... .......... .......... .......... 29% 112M 1s -2024-04-11T17:58:50Z #15 1.800 37200K .......... .......... .......... .......... .......... 29% 140M 1s -2024-04-11T17:58:50Z #15 1.800 37250K .......... .......... .......... .......... .......... 29% 107M 1s -2024-04-11T17:58:50Z #15 1.801 37300K .......... .......... .......... .......... .......... 29% 132M 1s -2024-04-11T17:58:50Z #15 1.801 37350K .......... .......... .......... .......... .......... 29% 118M 1s -2024-04-11T17:58:50Z #15 1.801 37400K .......... .......... .......... .......... .......... 29% 112M 1s -2024-04-11T17:58:50Z #15 1.802 37450K .......... .......... .......... .......... .......... 29% 113M 1s -2024-04-11T17:58:50Z #15 1.802 37500K .......... .......... .......... .......... .......... 29% 115M 1s -2024-04-11T17:58:50Z #15 1.803 37550K .......... .......... .......... .......... .......... 29% 130M 1s -2024-04-11T17:58:50Z #15 1.806 37600K .......... .......... .......... .......... .......... 29% 140M 1s -2024-04-11T17:58:50Z #15 1.806 37650K .......... .......... .......... .......... .......... 29% 133M 1s -2024-04-11T17:58:50Z #15 1.806 37700K .......... .......... .......... .......... .......... 29% 159M 1s -2024-04-11T17:58:50Z #15 1.806 37750K .......... .......... .......... .......... .......... 29% 154M 1s -2024-04-11T17:58:50Z #15 1.806 37800K .......... .......... .......... .......... .......... 29% 112M 1s -2024-04-11T17:58:50Z #15 1.806 37850K .......... .......... .......... .......... .......... 29% 125M 1s -2024-04-11T17:58:50Z #15 1.806 37900K .......... .......... .......... .......... .......... 29% 140M 1s -2024-04-11T17:58:50Z #15 1.806 37950K .......... .......... .......... .......... .......... 29% 128M 1s -2024-04-11T17:58:50Z #15 1.806 38000K .......... .......... .......... .......... .......... 30% 105M 1s -2024-04-11T17:58:50Z #15 1.807 38050K .......... .......... .......... .......... .......... 30% 165M 1s -2024-04-11T17:58:50Z #15 1.807 38100K .......... .......... .......... .......... .......... 30% 122M 1s -2024-04-11T17:58:50Z #15 1.807 38150K .......... .......... .......... .......... .......... 30% 116M 1s -2024-04-11T17:58:50Z #15 1.808 38200K .......... .......... .......... .......... .......... 30% 161M 1s -2024-04-11T17:58:50Z #15 1.808 38250K .......... .......... .......... .......... .......... 30% 146M 1s -2024-04-11T17:58:50Z #15 1.808 38300K .......... .......... .......... .......... .......... 30% 146M 1s -2024-04-11T17:58:50Z #15 1.809 38350K .......... .......... .......... .......... .......... 30% 128M 1s -2024-04-11T17:58:50Z #15 1.809 38400K .......... .......... .......... .......... .......... 30% 132M 1s -2024-04-11T17:58:50Z #15 1.809 38450K .......... .......... .......... .......... .......... 30% 131M 1s -2024-04-11T17:58:50Z #15 1.810 38500K .......... .......... .......... .......... .......... 30% 140M 1s -2024-04-11T17:58:50Z #15 1.810 38550K .......... .......... .......... .......... .......... 30% 139M 1s -2024-04-11T17:58:50Z #15 1.811 38600K .......... .......... .......... .......... .......... 30% 122M 1s -2024-04-11T17:58:50Z #15 1.811 38650K .......... .......... .......... .......... .......... 30% 145M 1s -2024-04-11T17:58:50Z #15 1.812 38700K .......... .......... .......... .......... .......... 30% 139M 1s -2024-04-11T17:58:50Z #15 1.812 38750K .......... .......... .......... .......... .......... 30% 132M 1s -2024-04-11T17:58:50Z #15 1.812 38800K .......... .......... .......... .......... .......... 30% 139M 1s -2024-04-11T17:58:50Z #15 1.812 38850K .......... .......... .......... .......... .......... 30% 127M 1s -2024-04-11T17:58:50Z #15 1.813 38900K .......... .......... .......... .......... .......... 30% 122M 1s -2024-04-11T17:58:50Z #15 1.813 38950K .......... .......... .......... .......... .......... 30% 128M 1s -2024-04-11T17:58:50Z #15 1.813 39000K .......... .......... .......... .......... .......... 30% 141M 1s -2024-04-11T17:58:50Z #15 1.814 39050K .......... .......... .......... .......... .......... 30% 103M 1s -2024-04-11T17:58:50Z #15 1.814 39100K .......... .......... .......... .......... .......... 30% 128M 1s -2024-04-11T17:58:50Z #15 1.815 39150K .......... .......... .......... .......... .......... 30% 129M 1s -2024-04-11T17:58:50Z #15 1.815 39200K .......... .......... .......... .......... .......... 30% 132M 1s -2024-04-11T17:58:50Z #15 1.816 39250K .......... .......... .......... .......... .......... 30% 118M 1s -2024-04-11T17:58:50Z #15 1.816 39300K .......... .......... .......... .......... .......... 31% 140M 1s -2024-04-11T17:58:50Z #15 1.816 39350K .......... .......... .......... .......... .......... 31% 140M 1s -2024-04-11T17:58:50Z #15 1.818 39400K .......... .......... .......... .......... .......... 31% 160M 1s -2024-04-11T17:58:50Z #15 1.818 39450K .......... .......... .......... .......... .......... 31% 131M 1s -2024-04-11T17:58:50Z #15 1.818 39500K .......... .......... .......... .......... .......... 31% 101M 1s -2024-04-11T17:58:50Z #15 1.818 39550K .......... .......... .......... .......... .......... 31% 120M 1s -2024-04-11T17:58:50Z #15 1.818 39600K .......... .......... .......... .......... .......... 31% 133M 1s -2024-04-11T17:58:50Z #15 1.819 39650K .......... .......... .......... .......... .......... 31% 109M 1s -2024-04-11T17:58:50Z #15 1.819 39700K .......... .......... .......... .......... .......... 31% 122M 1s -2024-04-11T17:58:50Z #15 1.819 39750K .......... .......... .......... .......... .......... 31% 120M 1s -2024-04-11T17:58:50Z #15 1.820 39800K .......... .......... .......... .......... .......... 31% 132M 1s -2024-04-11T17:58:50Z #15 1.820 39850K .......... .......... .......... .......... .......... 31% 112M 1s -2024-04-11T17:58:50Z #15 1.821 39900K .......... .......... .......... .......... .......... 31% 129M 1s -2024-04-11T17:58:50Z #15 1.821 39950K .......... .......... .......... .......... .......... 31% 124M 1s -2024-04-11T17:58:50Z #15 1.821 40000K .......... .......... .......... .......... .......... 31% 117M 1s -2024-04-11T17:58:50Z #15 1.822 40050K .......... .......... .......... .......... .......... 31% 86.5M 1s -2024-04-11T17:58:50Z #15 1.822 40100K .......... .......... .......... .......... .......... 31% 117M 1s -2024-04-11T17:58:50Z #15 1.823 40150K .......... .......... .......... .......... .......... 31% 133M 1s -2024-04-11T17:58:50Z #15 1.823 40200K .......... .......... .......... .......... .......... 31% 103M 1s -2024-04-11T17:58:50Z #15 1.826 40250K .......... .......... .......... .......... .......... 31% 105M 1s -2024-04-11T17:58:50Z #15 1.826 40300K .......... .......... .......... .......... .......... 31% 155M 1s -2024-04-11T17:58:50Z #15 1.826 40350K .......... .......... .......... .......... .......... 31% 135M 1s -2024-04-11T17:58:50Z #15 1.826 40400K .......... .......... .......... .......... .......... 31% 119M 1s -2024-04-11T17:58:50Z #15 1.826 40450K .......... .......... .......... .......... .......... 31% 152M 1s -2024-04-11T17:58:50Z #15 1.826 40500K .......... .......... .......... .......... .......... 31% 80.6M 1s -2024-04-11T17:58:50Z #15 1.826 40550K .......... .......... .......... .......... .......... 32% 122M 1s -2024-04-11T17:58:50Z #15 1.830 40600K .......... .......... .......... .......... .......... 32% 119M 1s -2024-04-11T17:58:50Z #15 1.830 40650K .......... .......... .......... .......... .......... 32% 143M 1s -2024-04-11T17:58:50Z #15 1.830 40700K .......... .......... .......... .......... .......... 32% 136M 1s -2024-04-11T17:58:50Z #15 1.830 40750K .......... .......... .......... .......... .......... 32% 125M 1s -2024-04-11T17:58:50Z #15 1.830 40800K .......... .......... .......... .......... .......... 32% 108M 1s -2024-04-11T17:58:50Z #15 1.830 40850K .......... .......... .......... .......... .......... 32% 124M 1s -2024-04-11T17:58:50Z #15 1.830 40900K .......... .......... .......... .......... .......... 32% 106M 1s -2024-04-11T17:58:50Z #15 1.830 40950K .......... .......... .......... .......... .......... 32% 132M 1s -2024-04-11T17:58:50Z #15 1.830 41000K .......... .......... .......... .......... .......... 32% 95.8M 1s -2024-04-11T17:58:50Z #15 1.831 41050K .......... .......... .......... .......... .......... 32% 113M 1s -2024-04-11T17:58:50Z #15 1.834 41100K .......... .......... .......... .......... .......... 32% 134M 1s -2024-04-11T17:58:50Z #15 1.834 41150K .......... .......... .......... .......... .......... 32% 128M 1s -2024-04-11T17:58:50Z #15 1.834 41200K .......... .......... .......... .......... .......... 32% 104M 1s -2024-04-11T17:58:50Z #15 1.834 41250K .......... .......... .......... .......... .......... 32% 126M 1s -2024-04-11T17:58:50Z #15 1.834 41300K .......... .......... .......... .......... .......... 32% 138M 1s -2024-04-11T17:58:50Z #15 1.834 41350K .......... .......... .......... .......... .......... 32% 111M 1s -2024-04-11T17:58:50Z #15 1.834 41400K .......... .......... .......... .......... .......... 32% 109M 1s -2024-04-11T17:58:50Z #15 1.834 41450K .......... .......... .......... .......... .......... 32% 135M 1s -2024-04-11T17:58:50Z #15 1.834 41500K .......... .......... .......... .......... .......... 32% 95.9M 1s -2024-04-11T17:58:50Z #15 1.838 41550K .......... .......... .......... .......... .......... 32% 121M 1s -2024-04-11T17:58:50Z #15 1.838 41600K .......... .......... .......... .......... .......... 32% 129M 1s -2024-04-11T17:58:50Z #15 1.838 41650K .......... .......... .......... .......... .......... 32% 134M 1s -2024-04-11T17:58:50Z #15 1.838 41700K .......... .......... .......... .......... .......... 32% 104M 1s -2024-04-11T17:58:50Z #15 1.838 41750K .......... .......... .......... .......... .......... 32% 125M 1s -2024-04-11T17:58:50Z #15 1.838 41800K .......... .......... .......... .......... .......... 33% 111M 1s -2024-04-11T17:58:50Z #15 1.838 41850K .......... .......... .......... .......... .......... 33% 126M 1s -2024-04-11T17:58:50Z #15 1.838 41900K .......... .......... .......... .......... .......... 33% 125M 1s -2024-04-11T17:58:50Z #15 1.838 41950K .......... .......... .......... .......... .......... 33% 96.9M 1s -2024-04-11T17:58:50Z #15 1.842 42000K .......... .......... .......... .......... .......... 33% 124M 1s -2024-04-11T17:58:50Z #15 1.842 42050K .......... .......... .......... .......... .......... 33% 138M 1s -2024-04-11T17:58:50Z #15 1.842 42100K .......... .......... .......... .......... .......... 33% 116M 1s -2024-04-11T17:58:51Z #15 1.842 42150K .......... .......... .......... .......... .......... 33% 130M 1s -2024-04-11T17:58:51Z #15 1.842 42200K .......... .......... .......... .......... .......... 33% 113M 1s -2024-04-11T17:58:51Z #15 1.842 42250K .......... .......... .......... .......... .......... 33% 131M 1s -2024-04-11T17:58:51Z #15 1.842 42300K .......... .......... .......... .......... .......... 33% 138M 1s -2024-04-11T17:58:51Z #15 1.842 42350K .......... .......... .......... .......... .......... 33% 107M 1s -2024-04-11T17:58:51Z #15 1.842 42400K .......... .......... .......... .......... .......... 33% 148M 1s -2024-04-11T17:58:51Z #15 1.842 42450K .......... .......... .......... .......... .......... 33% 139M 1s -2024-04-11T17:58:51Z #15 1.846 42500K .......... .......... .......... .......... .......... 33% 109M 1s -2024-04-11T17:58:51Z #15 1.846 42550K .......... .......... .......... .......... .......... 33% 146M 1s -2024-04-11T17:58:51Z #15 1.846 42600K .......... .......... .......... .......... .......... 33% 127M 1s -2024-04-11T17:58:51Z #15 1.846 42650K .......... .......... .......... .......... .......... 33% 128M 1s -2024-04-11T17:58:51Z #15 1.846 42700K .......... .......... .......... .......... .......... 33% 103M 1s -2024-04-11T17:58:51Z #15 1.846 42750K .......... .......... .......... .......... .......... 33% 131M 1s -2024-04-11T17:58:51Z #15 1.846 42800K .......... .......... .......... .......... .......... 33% 161M 1s -2024-04-11T17:58:51Z #15 1.846 42850K .......... .......... .......... .......... .......... 33% 117M 1s -2024-04-11T17:58:51Z #15 1.846 42900K .......... .......... .......... .......... .......... 33% 142M 1s -2024-04-11T17:58:51Z #15 1.846 42950K .......... .......... .......... .......... .......... 33% 111M 1s -2024-04-11T17:58:51Z #15 1.846 43000K .......... .......... .......... .......... .......... 33% 97.0M 1s -2024-04-11T17:58:51Z #15 1.850 43050K .......... .......... .......... .......... .......... 33% 140M 1s -2024-04-11T17:58:51Z #15 1.850 43100K .......... .......... .......... .......... .......... 34% 154M 1s -2024-04-11T17:58:51Z #15 1.850 43150K .......... .......... .......... .......... .......... 34% 138M 1s -2024-04-11T17:58:51Z #15 1.850 43200K .......... .......... .......... .......... .......... 34% 128M 1s -2024-04-11T17:58:51Z #15 1.850 43250K .......... .......... .......... .......... .......... 34% 128M 1s -2024-04-11T17:58:51Z #15 1.850 43300K .......... .......... .......... .......... .......... 34% 166M 1s -2024-04-11T17:58:51Z #15 1.850 43350K .......... .......... .......... .......... .......... 34% 133M 1s -2024-04-11T17:58:51Z #15 1.850 43400K .......... .......... .......... .......... .......... 34% 165M 1s -2024-04-11T17:58:51Z #15 1.850 43450K .......... .......... .......... .......... .......... 34% 149M 1s -2024-04-11T17:58:51Z #15 1.850 43500K .......... .......... .......... .......... .......... 34% 105M 1s -2024-04-11T17:58:51Z #15 1.850 43550K .......... .......... .......... .......... .......... 34% 117M 1s -2024-04-11T17:58:51Z #15 1.854 43600K .......... .......... .......... .......... .......... 34% 131M 1s -2024-04-11T17:58:51Z #15 1.854 43650K .......... .......... .......... .......... .......... 34% 122M 1s -2024-04-11T17:58:51Z #15 1.854 43700K .......... .......... .......... .......... .......... 34% 97.4M 1s -2024-04-11T17:58:51Z #15 1.854 43750K .......... .......... .......... .......... .......... 34% 126M 1s -2024-04-11T17:58:51Z #15 1.854 43800K .......... .......... .......... .......... .......... 34% 132M 1s -2024-04-11T17:58:51Z #15 1.854 43850K .......... .......... .......... .......... .......... 34% 125M 1s -2024-04-11T17:58:51Z #15 1.854 43900K .......... .......... .......... .......... .......... 34% 104M 1s -2024-04-11T17:58:51Z #15 1.854 43950K .......... .......... .......... .......... .......... 34% 131M 1s -2024-04-11T17:58:51Z #15 1.854 44000K .......... .......... .......... .......... .......... 34% 110M 1s -2024-04-11T17:58:51Z #15 1.858 44050K .......... .......... .......... .......... .......... 34% 124M 1s -2024-04-11T17:58:51Z #15 1.858 44100K .......... .......... .......... .......... .......... 34% 118M 1s -2024-04-11T17:58:51Z #15 1.858 44150K .......... .......... .......... .......... .......... 34% 130M 1s -2024-04-11T17:58:51Z #15 1.858 44200K .......... .......... .......... .......... .......... 34% 128M 1s -2024-04-11T17:58:51Z #15 1.858 44250K .......... .......... .......... .......... .......... 34% 120M 1s -2024-04-11T17:58:51Z #15 1.858 44300K .......... .......... .......... .......... .......... 34% 99.8M 1s -2024-04-11T17:58:51Z #15 1.858 44350K .......... .......... .......... .......... .......... 35% 125M 1s -2024-04-11T17:58:51Z #15 1.858 44400K .......... .......... .......... .......... .......... 35% 112M 1s -2024-04-11T17:58:51Z #15 1.858 44450K .......... .......... .......... .......... .......... 35% 142M 1s -2024-04-11T17:58:51Z #15 1.858 44500K .......... .......... .......... .......... .......... 35% 85.5M 1s -2024-04-11T17:58:51Z #15 1.862 44550K .......... .......... .......... .......... .......... 35% 120M 1s -2024-04-11T17:58:51Z #15 1.862 44600K .......... .......... .......... .......... .......... 35% 142M 1s -2024-04-11T17:58:51Z #15 1.862 44650K .......... .......... .......... .......... .......... 35% 136M 1s -2024-04-11T17:58:51Z #15 1.862 44700K .......... .......... .......... .......... .......... 35% 71.2M 1s -2024-04-11T17:58:51Z #15 1.862 44750K .......... .......... .......... .......... .......... 35% 145M 1s -2024-04-11T17:58:51Z #15 1.862 44800K .......... .......... .......... .......... .......... 35% 134M 1s -2024-04-11T17:58:51Z #15 1.862 44850K .......... .......... .......... .......... .......... 35% 133M 1s -2024-04-11T17:58:51Z #15 1.862 44900K .......... .......... .......... .......... .......... 35% 154M 1s -2024-04-11T17:58:51Z #15 1.862 44950K .......... .......... .......... .......... .......... 35% 118M 1s -2024-04-11T17:58:51Z #15 1.862 45000K .......... .......... .......... .......... .......... 35% 108M 1s -2024-04-11T17:58:51Z #15 1.866 45050K .......... .......... .......... .......... .......... 35% 103M 1s -2024-04-11T17:58:51Z #15 1.866 45100K .......... .......... .......... .......... .......... 35% 124M 1s -2024-04-11T17:58:51Z #15 1.866 45150K .......... .......... .......... .......... .......... 35% 164M 1s -2024-04-11T17:58:51Z #15 1.866 45200K .......... .......... .......... .......... .......... 35% 136M 1s -2024-04-11T17:58:51Z #15 1.866 45250K .......... .......... .......... .......... .......... 35% 138M 1s -2024-04-11T17:58:51Z #15 1.866 45300K .......... .......... .......... .......... .......... 35% 142M 1s -2024-04-11T17:58:51Z #15 1.866 45350K .......... .......... .......... .......... .......... 35% 109M 1s -2024-04-11T17:58:51Z #15 1.866 45400K .......... .......... .......... .......... .......... 35% 162M 1s -2024-04-11T17:58:51Z #15 1.866 45450K .......... .......... .......... .......... .......... 35% 120M 1s -2024-04-11T17:58:51Z #15 1.866 45500K .......... .......... .......... .......... .......... 35% 111M 1s -2024-04-11T17:58:51Z #15 1.870 45550K .......... .......... .......... .......... .......... 35% 118M 1s -2024-04-11T17:58:51Z #15 1.870 45600K .......... .......... .......... .......... .......... 36% 146M 1s -2024-04-11T17:58:51Z #15 1.870 45650K .......... .......... .......... .......... .......... 36% 127M 1s -2024-04-11T17:58:51Z #15 1.870 45700K .......... .......... .......... .......... .......... 36% 148M 1s -2024-04-11T17:58:51Z #15 1.870 45750K .......... .......... .......... .......... .......... 36% 120M 1s -2024-04-11T17:58:51Z #15 1.870 45800K .......... .......... .......... .......... .......... 36% 151M 1s -2024-04-11T17:58:51Z #15 1.870 45850K .......... .......... .......... .......... .......... 36% 137M 1s -2024-04-11T17:58:51Z #15 1.870 45900K .......... .......... .......... .......... .......... 36% 128M 1s -2024-04-11T17:58:51Z #15 1.870 45950K .......... .......... .......... .......... .......... 36% 109M 1s -2024-04-11T17:58:51Z #15 1.870 46000K .......... .......... .......... .......... .......... 36% 153M 1s -2024-04-11T17:58:51Z #15 1.870 46050K .......... .......... .......... .......... .......... 36% 137M 1s -2024-04-11T17:58:51Z #15 1.874 46100K .......... .......... .......... .......... .......... 36% 110M 1s -2024-04-11T17:58:51Z #15 1.874 46150K .......... .......... .......... .......... .......... 36% 123M 1s -2024-04-11T17:58:51Z #15 1.874 46200K .......... .......... .......... .......... .......... 36% 161M 1s -2024-04-11T17:58:51Z #15 1.874 46250K .......... .......... .......... .......... .......... 36% 135M 1s -2024-04-11T17:58:51Z #15 1.874 46300K .......... .......... .......... .......... .......... 36% 112M 1s -2024-04-11T17:58:51Z #15 1.874 46350K .......... .......... .......... .......... .......... 36% 127M 1s -2024-04-11T17:58:51Z #15 1.874 46400K .......... .......... .......... .......... .......... 36% 126M 1s -2024-04-11T17:58:51Z #15 1.874 46450K .......... .......... .......... .......... .......... 36% 143M 1s -2024-04-11T17:58:51Z #15 1.874 46500K .......... .......... .......... .......... .......... 36% 148M 1s -2024-04-11T17:58:51Z #15 1.874 46550K .......... .......... .......... .......... .......... 36% 131M 1s -2024-04-11T17:58:51Z #15 1.874 46600K .......... .......... .......... .......... .......... 36% 118M 1s -2024-04-11T17:58:51Z #15 1.878 46650K .......... .......... .......... .......... .......... 36% 130M 1s -2024-04-11T17:58:51Z #15 1.878 46700K .......... .......... .......... .......... .......... 36% 125M 1s -2024-04-11T17:58:51Z #15 1.878 46750K .......... .......... .......... .......... .......... 36% 124M 1s -2024-04-11T17:58:51Z #15 1.878 46800K .......... .......... .......... .......... .......... 36% 151M 1s -2024-04-11T17:58:51Z #15 1.878 46850K .......... .......... .......... .......... .......... 36% 121M 1s -2024-04-11T17:58:51Z #15 1.878 46900K .......... .......... .......... .......... .......... 37% 136M 1s -2024-04-11T17:58:51Z #15 1.878 46950K .......... .......... .......... .......... .......... 37% 154M 1s -2024-04-11T17:58:51Z #15 1.878 47000K .......... .......... .......... .......... .......... 37% 141M 1s -2024-04-11T17:58:51Z #15 1.878 47050K .......... .......... .......... .......... .......... 37% 113M 1s -2024-04-11T17:58:51Z #15 1.878 47100K .......... .......... .......... .......... .......... 37% 109M 1s -2024-04-11T17:58:51Z #15 1.882 47150K .......... .......... .......... .......... .......... 37% 115M 1s -2024-04-11T17:58:51Z #15 1.882 47200K .......... .......... .......... .......... .......... 37% 93.0M 1s -2024-04-11T17:58:51Z #15 1.882 47250K .......... .......... .......... .......... .......... 37% 130M 1s -2024-04-11T17:58:51Z #15 1.882 47300K .......... .......... .......... .......... .......... 37% 130M 1s -2024-04-11T17:58:51Z #15 1.882 47350K .......... .......... .......... .......... .......... 37% 133M 1s -2024-04-11T17:58:51Z #15 1.882 47400K .......... .......... .......... .......... .......... 37% 97.8M 1s -2024-04-11T17:58:51Z #15 1.882 47450K .......... .......... .......... .......... .......... 37% 128M 1s -2024-04-11T17:58:51Z #15 1.882 47500K .......... .......... .......... .......... .......... 37% 123M 1s -2024-04-11T17:58:51Z #15 1.882 47550K .......... .......... .......... .......... .......... 37% 124M 1s -2024-04-11T17:58:51Z #15 1.882 47600K .......... .......... .......... .......... .......... 37% 91.5M 1s -2024-04-11T17:58:51Z #15 1.886 47650K .......... .......... .......... .......... .......... 37% 137M 1s -2024-04-11T17:58:51Z #15 1.886 47700K .......... .......... .......... .......... .......... 37% 171M 1s -2024-04-11T17:58:51Z #15 1.886 47750K .......... .......... .......... .......... .......... 37% 168M 1s -2024-04-11T17:58:51Z #15 1.886 47800K .......... .......... .......... .......... .......... 37% 173M 1s -2024-04-11T17:58:51Z #15 1.886 47850K .......... .......... .......... .......... .......... 37% 112M 1s -2024-04-11T17:58:51Z #15 1.886 47900K .......... .......... .......... .......... .......... 37% 141M 1s -2024-04-11T17:58:51Z #15 1.886 47950K .......... .......... .......... .......... .......... 37% 102M 1s -2024-04-11T17:58:51Z #15 1.886 48000K .......... .......... .......... .......... .......... 37% 98.8M 1s -2024-04-11T17:58:51Z #15 1.886 48050K .......... .......... .......... .......... .......... 37% 128M 1s -2024-04-11T17:58:51Z #15 1.886 48100K .......... .......... .......... .......... .......... 37% 130M 1s -2024-04-11T17:58:51Z #15 1.890 48150K .......... .......... .......... .......... .......... 38% 128M 1s -2024-04-11T17:58:51Z #15 1.890 48200K .......... .......... .......... .......... .......... 38% 142M 1s -2024-04-11T17:58:51Z #15 1.890 48250K .......... .......... .......... .......... .......... 38% 137M 1s -2024-04-11T17:58:51Z #15 1.890 48300K .......... .......... .......... .......... .......... 38% 132M 1s -2024-04-11T17:58:51Z #15 1.890 48350K .......... .......... .......... .......... .......... 38% 125M 1s -2024-04-11T17:58:51Z #15 1.890 48400K .......... .......... .......... .......... .......... 38% 148M 1s -2024-04-11T17:58:51Z #15 1.890 48450K .......... .......... .......... .......... .......... 38% 141M 1s -2024-04-11T17:58:51Z #15 1.890 48500K .......... .......... .......... .......... .......... 38% 135M 1s -2024-04-11T17:58:51Z #15 1.890 48550K .......... .......... .......... .......... .......... 38% 132M 1s -2024-04-11T17:58:51Z #15 1.890 48600K .......... .......... .......... .......... .......... 38% 146M 1s -2024-04-11T17:58:51Z #15 1.890 48650K .......... .......... .......... .......... .......... 38% 105M 1s -2024-04-11T17:58:51Z #15 1.894 48700K .......... .......... .......... .......... .......... 38% 112M 1s -2024-04-11T17:58:51Z #15 1.894 48750K .......... .......... .......... .......... .......... 38% 149M 1s -2024-04-11T17:58:51Z #15 1.894 48800K .......... .......... .......... .......... .......... 38% 146M 1s -2024-04-11T17:58:51Z #15 1.894 48850K .......... .......... .......... .......... .......... 38% 118M 1s -2024-04-11T17:58:51Z #15 1.894 48900K .......... .......... .......... .......... .......... 38% 127M 1s -2024-04-11T17:58:51Z #15 1.894 48950K .......... .......... .......... .......... .......... 38% 144M 1s -2024-04-11T17:58:51Z #15 1.894 49000K .......... .......... .......... .......... .......... 38% 154M 1s -2024-04-11T17:58:51Z #15 1.894 49050K .......... .......... .......... .......... .......... 38% 133M 1s -2024-04-11T17:58:51Z #15 1.894 49100K .......... .......... .......... .......... .......... 38% 136M 1s -2024-04-11T17:58:51Z #15 1.894 49150K .......... .......... .......... .......... .......... 38% 125M 1s -2024-04-11T17:58:51Z #15 1.894 49200K .......... .......... .......... .......... .......... 38% 102M 1s -2024-04-11T17:58:51Z #15 1.898 49250K .......... .......... .......... .......... .......... 38% 122M 1s -2024-04-11T17:58:51Z #15 1.898 49300K .......... .......... .......... .......... .......... 38% 137M 1s -2024-04-11T17:58:51Z #15 1.898 49350K .......... .......... .......... .......... .......... 38% 133M 1s -2024-04-11T17:58:51Z #15 1.898 49400K .......... .......... .......... .......... .......... 39% 115M 1s -2024-04-11T17:58:51Z #15 1.898 49450K .......... .......... .......... .......... .......... 39% 152M 1s -2024-04-11T17:58:51Z #15 1.898 49500K .......... .......... .......... .......... .......... 39% 155M 1s -2024-04-11T17:58:51Z #15 1.898 49550K .......... .......... .......... .......... .......... 39% 134M 1s -2024-04-11T17:58:51Z #15 1.898 49600K .......... .......... .......... .......... .......... 39% 125M 1s -2024-04-11T17:58:51Z #15 1.898 49650K .......... .......... .......... .......... .......... 39% 125M 1s -2024-04-11T17:58:51Z #15 1.898 49700K .......... .......... .......... .......... .......... 39% 153M 1s -2024-04-11T17:58:51Z #15 1.899 49750K .......... .......... .......... .......... .......... 39% 13.9M 1s -2024-04-11T17:58:51Z #15 1.906 49800K .......... .......... .......... .......... .......... 39% 118M 1s -2024-04-11T17:58:51Z #15 1.906 49850K .......... .......... .......... .......... .......... 39% 112M 1s -2024-04-11T17:58:51Z #15 1.906 49900K .......... .......... .......... .......... .......... 39% 113M 1s -2024-04-11T17:58:51Z #15 1.906 49950K .......... .......... .......... .......... .......... 39% 130M 1s -2024-04-11T17:58:51Z #15 1.906 50000K .......... .......... .......... .......... .......... 39% 112M 1s -2024-04-11T17:58:51Z #15 1.906 50050K .......... .......... .......... .......... .......... 39% 115M 1s -2024-04-11T17:58:51Z #15 1.906 50100K .......... .......... .......... .......... .......... 39% 122M 1s -2024-04-11T17:58:51Z #15 1.906 50150K .......... .......... .......... .......... .......... 39% 97.8M 1s -2024-04-11T17:58:51Z #15 1.906 50200K .......... .......... .......... .......... .......... 39% 116M 1s -2024-04-11T17:58:51Z #15 1.906 50250K .......... .......... .......... .......... .......... 39% 127M 1s -2024-04-11T17:58:51Z #15 1.906 50300K .......... .......... .......... .......... .......... 39% 15.1M 1s -2024-04-11T17:58:51Z #15 1.914 50350K .......... .......... .......... .......... .......... 39% 108M 1s -2024-04-11T17:58:51Z #15 1.914 50400K .......... .......... .......... .......... .......... 39% 106M 1s -2024-04-11T17:58:51Z #15 1.914 50450K .......... .......... .......... .......... .......... 39% 114M 1s -2024-04-11T17:58:51Z #15 1.914 50500K .......... .......... .......... .......... .......... 39% 139M 1s -2024-04-11T17:58:51Z #15 1.914 50550K .......... .......... .......... .......... .......... 39% 136M 1s -2024-04-11T17:58:51Z #15 1.914 50600K .......... .......... .......... .......... .......... 39% 107M 1s -2024-04-11T17:58:51Z #15 1.914 50650K .......... .......... .......... .......... .......... 39% 130M 1s -2024-04-11T17:58:51Z #15 1.914 50700K .......... .......... .......... .......... .......... 40% 107M 1s -2024-04-11T17:58:51Z #15 1.914 50750K .......... .......... .......... .......... .......... 40% 135M 1s -2024-04-11T17:58:51Z #15 1.914 50800K .......... .......... .......... .......... .......... 40% 140M 1s -2024-04-11T17:58:51Z #15 1.914 50850K .......... .......... .......... .......... .......... 40% 121M 1s -2024-04-11T17:58:51Z #15 1.914 50900K .......... .......... .......... .......... .......... 40% 101M 1s -2024-04-11T17:58:51Z #15 1.914 50950K .......... .......... .......... .......... .......... 40% 9.75M 1s -2024-04-11T17:58:51Z #15 1.922 51000K .......... .......... .......... .......... .......... 40% 126M 1s -2024-04-11T17:58:51Z #15 1.922 51050K .......... .......... .......... .......... .......... 40% 126M 1s -2024-04-11T17:58:51Z #15 1.922 51100K .......... .......... .......... .......... .......... 40% 128M 1s -2024-04-11T17:58:51Z #15 1.922 51150K .......... .......... .......... .......... .......... 40% 99.7M 1s -2024-04-11T17:58:51Z #15 1.922 51200K .......... .......... .......... .......... .......... 40% 132M 1s -2024-04-11T17:58:51Z #15 1.922 51250K .......... .......... .......... .......... .......... 40% 129M 1s -2024-04-11T17:58:51Z #15 1.922 51300K .......... .......... .......... .......... .......... 40% 126M 1s -2024-04-11T17:58:51Z #15 1.922 51350K .......... .......... .......... .......... .......... 40% 33.6M 1s -2024-04-11T17:58:51Z #15 1.923 51400K .......... .......... .......... .......... .......... 40% 61.4M 1s -2024-04-11T17:58:51Z #15 1.926 51450K .......... .......... .......... .......... .......... 40% 112M 1s -2024-04-11T17:58:51Z #15 1.926 51500K .......... .......... .......... .......... .......... 40% 125M 1s -2024-04-11T17:58:51Z #15 1.926 51550K .......... .......... .......... .......... .......... 40% 111M 1s -2024-04-11T17:58:51Z #15 1.926 51600K .......... .......... .......... .......... .......... 40% 129M 1s -2024-04-11T17:58:51Z #15 1.926 51650K .......... .......... .......... .......... .......... 40% 117M 1s -2024-04-11T17:58:51Z #15 1.926 51700K .......... .......... .......... .......... .......... 40% 39.0M 1s -2024-04-11T17:58:51Z #15 1.930 51750K .......... .......... .......... .......... .......... 40% 111M 1s -2024-04-11T17:58:51Z #15 1.930 51800K .......... .......... .......... .......... .......... 40% 126M 1s -2024-04-11T17:58:51Z #15 1.930 51850K .......... .......... .......... .......... .......... 40% 119M 1s -2024-04-11T17:58:51Z #15 1.930 51900K .......... .......... .......... .......... .......... 40% 116M 1s -2024-04-11T17:58:51Z #15 1.930 51950K .......... .......... .......... .......... .......... 41% 120M 1s -2024-04-11T17:58:51Z #15 1.930 52000K .......... .......... .......... .......... .......... 41% 113M 1s -2024-04-11T17:58:51Z #15 1.930 52050K .......... .......... .......... .......... .......... 41% 67.2M 1s -2024-04-11T17:58:51Z #15 1.930 52100K .......... .......... .......... .......... .......... 41% 67.4M 1s -2024-04-11T17:58:51Z #15 1.934 52150K .......... .......... .......... .......... .......... 41% 126M 1s -2024-04-11T17:58:51Z #15 1.934 52200K .......... .......... .......... .......... .......... 41% 99.2M 1s -2024-04-11T17:58:51Z #15 1.934 52250K .......... .......... .......... .......... .......... 41% 127M 1s -2024-04-11T17:58:51Z #15 1.934 52300K .......... .......... .......... .......... .......... 41% 120M 1s -2024-04-11T17:58:51Z #15 1.934 52350K .......... .......... .......... .......... .......... 41% 132M 1s -2024-04-11T17:58:51Z #15 1.934 52400K .......... .......... .......... .......... .......... 41% 135M 1s -2024-04-11T17:58:51Z #15 1.934 52450K .......... .......... .......... .......... .......... 41% 138M 1s -2024-04-11T17:58:51Z #15 1.934 52500K .......... .......... .......... .......... .......... 41% 64.9M 1s -2024-04-11T17:58:51Z #15 1.938 52550K .......... .......... .......... .......... .......... 41% 124M 1s -2024-04-11T17:58:51Z #15 1.938 52600K .......... .......... .......... .......... .......... 41% 153M 1s -2024-04-11T17:58:51Z #15 1.938 52650K .......... .......... .......... .......... .......... 41% 123M 1s -2024-04-11T17:58:51Z #15 1.938 52700K .......... .......... .......... .......... .......... 41% 148M 1s -2024-04-11T17:58:51Z #15 1.938 52750K .......... .......... .......... .......... .......... 41% 132M 1s -2024-04-11T17:58:51Z #15 1.938 52800K .......... .......... .......... .......... .......... 41% 151M 1s -2024-04-11T17:58:51Z #15 1.938 52850K .......... .......... .......... .......... .......... 41% 128M 1s -2024-04-11T17:58:51Z #15 1.938 52900K .......... .......... .......... .......... .......... 41% 105M 1s -2024-04-11T17:58:51Z #15 1.938 52950K .......... .......... .......... .......... .......... 41% 86.7M 1s -2024-04-11T17:58:51Z #15 1.938 53000K .......... .......... .......... .......... .......... 41% 44.1M 1s -2024-04-11T17:58:51Z #15 1.942 53050K .......... .......... .......... .......... .......... 41% 159M 1s -2024-04-11T17:58:51Z #15 1.942 53100K .......... .......... .......... .......... .......... 41% 116M 1s -2024-04-11T17:58:51Z #15 1.942 53150K .......... .......... .......... .......... .......... 41% 160M 1s -2024-04-11T17:58:51Z #15 1.942 53200K .......... .......... .......... .......... .......... 42% 129M 1s -2024-04-11T17:58:51Z #15 1.942 53250K .......... .......... .......... .......... .......... 42% 145M 1s -2024-04-11T17:58:51Z #15 1.942 53300K .......... .......... .......... .......... .......... 42% 117M 1s -2024-04-11T17:58:51Z #15 1.942 53350K .......... .......... .......... .......... .......... 42% 163M 1s -2024-04-11T17:58:51Z #15 1.942 53400K .......... .......... .......... .......... .......... 42% 53.0M 1s -2024-04-11T17:58:51Z #15 1.946 53450K .......... .......... .......... .......... .......... 42% 108M 1s -2024-04-11T17:58:51Z #15 1.946 53500K .......... .......... .......... .......... .......... 42% 131M 1s -2024-04-11T17:58:51Z #15 1.946 53550K .......... .......... .......... .......... .......... 42% 142M 1s -2024-04-11T17:58:51Z #15 1.946 53600K .......... .......... .......... .......... .......... 42% 117M 1s -2024-04-11T17:58:51Z #15 1.946 53650K .......... .......... .......... .......... .......... 42% 136M 1s -2024-04-11T17:58:51Z #15 1.946 53700K .......... .......... .......... .......... .......... 42% 116M 1s -2024-04-11T17:58:51Z #15 1.946 53750K .......... .......... .......... .......... .......... 42% 124M 1s -2024-04-11T17:58:51Z #15 1.946 53800K .......... .......... .......... .......... .......... 42% 118M 1s -2024-04-11T17:58:51Z #15 1.946 53850K .......... .......... .......... .......... .......... 42% 46.6M 1s -2024-04-11T17:58:51Z #15 1.950 53900K .......... .......... .......... .......... .......... 42% 146M 1s -2024-04-11T17:58:51Z #15 1.950 53950K .......... .......... .......... .......... .......... 42% 147M 1s -2024-04-11T17:58:51Z #15 1.950 54000K .......... .......... .......... .......... .......... 42% 135M 1s -2024-04-11T17:58:51Z #15 1.950 54050K .......... .......... .......... .......... .......... 42% 143M 1s -2024-04-11T17:58:51Z #15 1.950 54100K .......... .......... .......... .......... .......... 42% 132M 1s -2024-04-11T17:58:51Z #15 1.950 54150K .......... .......... .......... .......... .......... 42% 158M 1s -2024-04-11T17:58:51Z #15 1.950 54200K .......... .......... .......... .......... .......... 42% 108M 1s -2024-04-11T17:58:51Z #15 1.950 54250K .......... .......... .......... .......... .......... 42% 133M 1s -2024-04-11T17:58:51Z #15 1.950 54300K .......... .......... .......... .......... .......... 42% 112M 1s -2024-04-11T17:58:51Z #15 1.954 54350K .......... .......... .......... .......... .......... 42% 117M 1s -2024-04-11T17:58:51Z #15 1.954 54400K .......... .......... .......... .......... .......... 42% 141M 1s -2024-04-11T17:58:51Z #15 1.954 54450K .......... .......... .......... .......... .......... 42% 119M 1s -2024-04-11T17:58:51Z #15 1.954 54500K .......... .......... .......... .......... .......... 43% 113M 1s -2024-04-11T17:58:51Z #15 1.954 54550K .......... .......... .......... .......... .......... 43% 109M 1s -2024-04-11T17:58:51Z #15 1.954 54600K .......... .......... .......... .......... .......... 43% 133M 1s -2024-04-11T17:58:51Z #15 1.954 54650K .......... .......... .......... .......... .......... 43% 119M 1s -2024-04-11T17:58:51Z #15 1.954 54700K .......... .......... .......... .......... .......... 43% 138M 1s -2024-04-11T17:58:51Z #15 1.954 54750K .......... .......... .......... .......... .......... 43% 119M 1s -2024-04-11T17:58:51Z #15 1.954 54800K .......... .......... .......... .......... .......... 43% 75.6M 1s -2024-04-11T17:58:51Z #15 1.958 54850K .......... .......... .......... .......... .......... 43% 126M 1s -2024-04-11T17:58:51Z #15 1.958 54900K .......... .......... .......... .......... .......... 43% 120M 1s -2024-04-11T17:58:51Z #15 1.958 54950K .......... .......... .......... .......... .......... 43% 102M 1s -2024-04-11T17:58:51Z #15 1.958 55000K .......... .......... .......... .......... .......... 43% 154M 1s -2024-04-11T17:58:51Z #15 1.958 55050K .......... .......... .......... .......... .......... 43% 115M 1s -2024-04-11T17:58:51Z #15 1.958 55100K .......... .......... .......... .......... .......... 43% 128M 1s -2024-04-11T17:58:51Z #15 1.958 55150K .......... .......... .......... .......... .......... 43% 102M 1s -2024-04-11T17:58:51Z #15 1.958 55200K .......... .......... .......... .......... .......... 43% 136M 1s -2024-04-11T17:58:51Z #15 1.958 55250K .......... .......... .......... .......... .......... 43% 57.2M 1s -2024-04-11T17:58:51Z #15 1.962 55300K .......... .......... .......... .......... .......... 43% 127M 1s -2024-04-11T17:58:51Z #15 1.962 55350K .......... .......... .......... .......... .......... 43% 111M 1s -2024-04-11T17:58:51Z #15 1.962 55400K .......... .......... .......... .......... .......... 43% 120M 1s -2024-04-11T17:58:51Z #15 1.962 55450K .......... .......... .......... .......... .......... 43% 104M 1s -2024-04-11T17:58:51Z #15 1.962 55500K .......... .......... .......... .......... .......... 43% 135M 1s -2024-04-11T17:58:51Z #15 1.962 55550K .......... .......... .......... .......... .......... 43% 105M 1s -2024-04-11T17:58:51Z #15 1.962 55600K .......... .......... .......... .......... .......... 43% 114M 1s -2024-04-11T17:58:51Z #15 1.962 55650K .......... .......... .......... .......... .......... 43% 130M 1s -2024-04-11T17:58:51Z #15 1.962 55700K .......... .......... .......... .......... .......... 43% 90.0M 1s -2024-04-11T17:58:51Z #15 1.966 55750K .......... .......... .......... .......... .......... 44% 143M 1s -2024-04-11T17:58:51Z #15 1.966 55800K .......... .......... .......... .......... .......... 44% 103M 1s -2024-04-11T17:58:51Z #15 1.966 55850K .......... .......... .......... .......... .......... 44% 136M 1s -2024-04-11T17:58:51Z #15 1.966 55900K .......... .......... .......... .......... .......... 44% 118M 1s -2024-04-11T17:58:51Z #15 1.966 55950K .......... .......... .......... .......... .......... 44% 155M 1s -2024-04-11T17:58:51Z #15 1.966 56000K .......... .......... .......... .......... .......... 44% 113M 1s -2024-04-11T17:58:51Z #15 1.966 56050K .......... .......... .......... .......... .......... 44% 123M 1s -2024-04-11T17:58:51Z #15 1.966 56100K .......... .......... .......... .......... .......... 44% 129M 1s -2024-04-11T17:58:51Z #15 1.966 56150K .......... .......... .......... .......... .......... 44% 146M 1s -2024-04-11T17:58:51Z #15 1.966 56200K .......... .......... .......... .......... .......... 44% 39.1M 1s -2024-04-11T17:58:51Z #15 1.970 56250K .......... .......... .......... .......... .......... 44% 152M 1s -2024-04-11T17:58:51Z #15 1.970 56300K .......... .......... .......... .......... .......... 44% 155M 1s -2024-04-11T17:58:51Z #15 1.970 56350K .......... .......... .......... .......... .......... 44% 99.6M 1s -2024-04-11T17:58:51Z #15 1.970 56400K .......... .......... .......... .......... .......... 44% 130M 1s -2024-04-11T17:58:51Z #15 1.970 56450K .......... .......... .......... .......... .......... 44% 149M 1s -2024-04-11T17:58:51Z #15 1.970 56500K .......... .......... .......... .......... .......... 44% 169M 1s -2024-04-11T17:58:51Z #15 1.970 56550K .......... .......... .......... .......... .......... 44% 141M 1s -2024-04-11T17:58:51Z #15 1.970 56600K .......... .......... .......... .......... .......... 44% 164M 1s -2024-04-11T17:58:51Z #15 1.970 56650K .......... .......... .......... .......... .......... 44% 131M 1s -2024-04-11T17:58:51Z #15 1.974 56700K .......... .......... .......... .......... .......... 44% 157M 1s -2024-04-11T17:58:51Z #15 1.974 56750K .......... .......... .......... .......... .......... 44% 134M 1s -2024-04-11T17:58:51Z #15 1.974 56800K .......... .......... .......... .......... .......... 44% 114M 1s -2024-04-11T17:58:51Z #15 1.974 56850K .......... .......... .......... .......... .......... 44% 123M 1s -2024-04-11T17:58:51Z #15 1.974 56900K .......... .......... .......... .......... .......... 44% 124M 1s -2024-04-11T17:58:51Z #15 1.974 56950K .......... .......... .......... .......... .......... 44% 131M 1s -2024-04-11T17:58:51Z #15 1.974 57000K .......... .......... .......... .......... .......... 44% 126M 1s -2024-04-11T17:58:51Z #15 1.974 57050K .......... .......... .......... .......... .......... 45% 142M 1s -2024-04-11T17:58:51Z #15 1.974 57100K .......... .......... .......... .......... .......... 45% 134M 1s -2024-04-11T17:58:51Z #15 1.974 57150K .......... .......... .......... .......... .......... 45% 60.9M 1s -2024-04-11T17:58:51Z #15 1.978 57200K .......... .......... .......... .......... .......... 45% 58.3M 1s -2024-04-11T17:58:51Z #15 1.978 57250K .......... .......... .......... .......... .......... 45% 126M 1s -2024-04-11T17:58:51Z #15 1.978 57300K .......... .......... .......... .......... .......... 45% 121M 1s -2024-04-11T17:58:51Z #15 1.978 57350K .......... .......... .......... .......... .......... 45% 116M 1s -2024-04-11T17:58:51Z #15 1.978 57400K .......... .......... .......... .......... .......... 45% 116M 1s -2024-04-11T17:58:51Z #15 1.978 57450K .......... .......... .......... .......... .......... 45% 142M 1s -2024-04-11T17:58:51Z #15 1.978 57500K .......... .......... .......... .......... .......... 45% 112M 1s -2024-04-11T17:58:51Z #15 1.978 57550K .......... .......... .......... .......... .......... 45% 71.3M 1s -2024-04-11T17:58:51Z #15 1.982 57600K .......... .......... .......... .......... .......... 45% 146M 1s -2024-04-11T17:58:51Z #15 1.982 57650K .......... .......... .......... .......... .......... 45% 129M 1s -2024-04-11T17:58:51Z #15 1.982 57700K .......... .......... .......... .......... .......... 45% 112M 1s -2024-04-11T17:58:51Z #15 1.982 57750K .......... .......... .......... .......... .......... 45% 113M 1s -2024-04-11T17:58:51Z #15 1.982 57800K .......... .......... .......... .......... .......... 45% 150M 1s -2024-04-11T17:58:51Z #15 1.982 57850K .......... .......... .......... .......... .......... 45% 126M 1s -2024-04-11T17:58:51Z #15 1.982 57900K .......... .......... .......... .......... .......... 45% 125M 1s -2024-04-11T17:58:51Z #15 1.982 57950K .......... .......... .......... .......... .......... 45% 138M 1s -2024-04-11T17:58:51Z #15 1.982 58000K .......... .......... .......... .......... .......... 45% 139M 1s -2024-04-11T17:58:51Z #15 1.982 58050K .......... .......... .......... .......... .......... 45% 110M 1s -2024-04-11T17:58:51Z #15 1.986 58100K .......... .......... .......... .......... .......... 45% 116M 1s -2024-04-11T17:58:51Z #15 1.986 58150K .......... .......... .......... .......... .......... 45% 133M 1s -2024-04-11T17:58:51Z #15 1.986 58200K .......... .......... .......... .......... .......... 45% 148M 1s -2024-04-11T17:58:51Z #15 1.986 58250K .......... .......... .......... .......... .......... 45% 128M 1s -2024-04-11T17:58:51Z #15 1.986 58300K .......... .......... .......... .......... .......... 46% 99.7M 1s -2024-04-11T17:58:51Z #15 1.986 58350K .......... .......... .......... .......... .......... 46% 128M 1s -2024-04-11T17:58:51Z #15 1.986 58400K .......... .......... .......... .......... .......... 46% 97.3M 1s -2024-04-11T17:58:51Z #15 1.986 58450K .......... .......... .......... .......... .......... 46% 135M 1s -2024-04-11T17:58:51Z #15 1.986 58500K .......... .......... .......... .......... .......... 46% 131M 1s -2024-04-11T17:58:51Z #15 1.986 58550K .......... .......... .......... .......... .......... 46% 110M 1s -2024-04-11T17:58:51Z #15 1.990 58600K .......... .......... .......... .......... .......... 46% 128M 1s -2024-04-11T17:58:51Z #15 1.990 58650K .......... .......... .......... .......... .......... 46% 109M 1s -2024-04-11T17:58:51Z #15 1.990 58700K .......... .......... .......... .......... .......... 46% 138M 1s -2024-04-11T17:58:51Z #15 1.990 58750K .......... .......... .......... .......... .......... 46% 113M 1s -2024-04-11T17:58:51Z #15 1.990 58800K .......... .......... .......... .......... .......... 46% 127M 1s -2024-04-11T17:58:51Z #15 1.990 58850K .......... .......... .......... .......... .......... 46% 113M 1s -2024-04-11T17:58:51Z #15 1.990 58900K .......... .......... .......... .......... .......... 46% 118M 1s -2024-04-11T17:58:51Z #15 1.990 58950K .......... .......... .......... .......... .......... 46% 131M 1s -2024-04-11T17:58:51Z #15 1.990 59000K .......... .......... .......... .......... .......... 46% 118M 1s -2024-04-11T17:58:51Z #15 1.990 59050K .......... .......... .......... .......... .......... 46% 21.3M 1s -2024-04-11T17:58:51Z #15 1.994 59100K .......... .......... .......... .......... .......... 46% 129M 1s -2024-04-11T17:58:51Z #15 1.994 59150K .......... .......... .......... .......... .......... 46% 101M 1s -2024-04-11T17:58:51Z #15 1.994 59200K .......... .......... .......... .......... .......... 46% 145M 1s -2024-04-11T17:58:51Z #15 1.994 59250K .......... .......... .......... .......... .......... 46% 135M 1s -2024-04-11T17:58:51Z #15 1.994 59300K .......... .......... .......... .......... .......... 46% 87.5M 1s -2024-04-11T17:58:51Z #15 1.998 59350K .......... .......... .......... .......... .......... 46% 132M 1s -2024-04-11T17:58:51Z #15 1.998 59400K .......... .......... .......... .......... .......... 46% 115M 1s -2024-04-11T17:58:51Z #15 1.998 59450K .......... .......... .......... .......... .......... 46% 129M 1s -2024-04-11T17:58:51Z #15 1.998 59500K .......... .......... .......... .......... .......... 46% 145M 1s -2024-04-11T17:58:51Z #15 1.998 59550K .......... .......... .......... .......... .......... 47% 115M 1s -2024-04-11T17:58:51Z #15 1.998 59600K .......... .......... .......... .......... .......... 47% 129M 1s -2024-04-11T17:58:51Z #15 1.998 59650K .......... .......... .......... .......... .......... 47% 118M 1s -2024-04-11T17:58:51Z #15 1.998 59700K .......... .......... .......... .......... .......... 47% 129M 1s -2024-04-11T17:58:51Z #15 1.998 59750K .......... .......... .......... .......... .......... 47% 139M 1s -2024-04-11T17:58:51Z #15 1.998 59800K .......... .......... .......... .......... .......... 47% 67.6M 1s -2024-04-11T17:58:51Z #15 2.002 59850K .......... .......... .......... .......... .......... 47% 136M 1s -2024-04-11T17:58:51Z #15 2.002 59900K .......... .......... .......... .......... .......... 47% 165M 1s -2024-04-11T17:58:51Z #15 2.002 59950K .......... .......... .......... .......... .......... 47% 133M 1s -2024-04-11T17:58:51Z #15 2.002 60000K .......... .......... .......... .......... .......... 47% 106M 1s -2024-04-11T17:58:51Z #15 2.002 60050K .......... .......... .......... .......... .......... 47% 141M 1s -2024-04-11T17:58:51Z #15 2.002 60100K .......... .......... .......... .......... .......... 47% 120M 1s -2024-04-11T17:58:51Z #15 2.002 60150K .......... .......... .......... .......... .......... 47% 151M 1s -2024-04-11T17:58:51Z #15 2.002 60200K .......... .......... .......... .......... .......... 47% 139M 1s -2024-04-11T17:58:51Z #15 2.002 60250K .......... .......... .......... .......... .......... 47% 125M 1s -2024-04-11T17:58:51Z #15 2.002 60300K .......... .......... .......... .......... .......... 47% 65.6M 1s -2024-04-11T17:58:51Z #15 2.002 60350K .......... .......... .......... .......... .......... 47% 38.2M 1s -2024-04-11T17:58:51Z #15 2.006 60400K .......... .......... .......... .......... .......... 47% 54.4M 1s -2024-04-11T17:58:51Z #15 2.006 60450K .......... .......... .......... .......... .......... 47% 56.9M 1s -2024-04-11T17:58:51Z #15 2.006 60500K .......... .......... .......... .......... .......... 47% 50.5M 1s -2024-04-11T17:58:51Z #15 2.006 60550K .......... .......... .......... .......... .......... 47% 54.2M 1s -2024-04-11T17:58:51Z #15 2.007 60600K .......... .......... .......... .......... .......... 47% 43.1M 1s -2024-04-11T17:58:51Z #15 2.008 60650K .......... .......... .......... .......... .......... 47% 51.6M 1s -2024-04-11T17:58:51Z #15 2.009 60700K .......... .......... .......... .......... .......... 47% 36.0M 1s -2024-04-11T17:58:51Z #15 2.013 60750K .......... .......... .......... .......... .......... 47% 193M 1s -2024-04-11T17:58:51Z #15 2.013 60800K .......... .......... .......... .......... .......... 47% 157M 1s -2024-04-11T17:58:51Z #15 2.013 60850K .......... .......... .......... .......... .......... 48% 148M 1s -2024-04-11T17:58:51Z #15 2.013 60900K .......... .......... .......... .......... .......... 48% 118M 1s -2024-04-11T17:58:51Z #15 2.013 60950K .......... .......... .......... .......... .......... 48% 124M 1s -2024-04-11T17:58:51Z #15 2.013 61000K .......... .......... .......... .......... .......... 48% 129M 1s -2024-04-11T17:58:51Z #15 2.013 61050K .......... .......... .......... .......... .......... 48% 110M 1s -2024-04-11T17:58:51Z #15 2.013 61100K .......... .......... .......... .......... .......... 48% 25.6M 1s -2024-04-11T17:58:51Z #15 2.017 61150K .......... .......... .......... .......... .......... 48% 122M 1s -2024-04-11T17:58:51Z #15 2.017 61200K .......... .......... .......... .......... .......... 48% 88.8M 1s -2024-04-11T17:58:51Z #15 2.017 61250K .......... .......... .......... .......... .......... 48% 117M 1s -2024-04-11T17:58:51Z #15 2.017 61300K .......... .......... .......... .......... .......... 48% 123M 1s -2024-04-11T17:58:51Z #15 2.017 61350K .......... .......... .......... .......... .......... 48% 26.1M 1s -2024-04-11T17:58:51Z #15 2.022 61400K .......... .......... .......... .......... .......... 48% 70.4M 1s -2024-04-11T17:58:51Z #15 2.022 61450K .......... .......... .......... .......... .......... 48% 115M 1s -2024-04-11T17:58:51Z #15 2.022 61500K .......... .......... .......... .......... .......... 48% 127M 1s -2024-04-11T17:58:51Z #15 2.022 61550K .......... .......... .......... .......... .......... 48% 124M 1s -2024-04-11T17:58:51Z #15 2.022 61600K .......... .......... .......... .......... .......... 48% 105M 1s -2024-04-11T17:58:51Z #15 2.022 61650K .......... .......... .......... .......... .......... 48% 137M 1s -2024-04-11T17:58:51Z #15 2.022 61700K .......... .......... .......... .......... .......... 48% 35.7M 1s -2024-04-11T17:58:51Z #15 2.024 61750K .......... .......... .......... .......... .......... 48% 31.3M 1s -2024-04-11T17:58:51Z #15 2.026 61800K .......... .......... .......... .......... .......... 48% 98.4M 1s -2024-04-11T17:58:51Z #15 2.026 61850K .......... .......... .......... .......... .......... 48% 105M 1s -2024-04-11T17:58:51Z #15 2.026 61900K .......... .......... .......... .......... .......... 48% 119M 1s -2024-04-11T17:58:51Z #15 2.026 61950K .......... .......... .......... .......... .......... 48% 19.0M 1s -2024-04-11T17:58:51Z #15 2.034 62000K .......... .......... .......... .......... .......... 48% 121M 1s -2024-04-11T17:58:51Z #15 2.034 62050K .......... .......... .......... .......... .......... 48% 113M 1s -2024-04-11T17:58:51Z #15 2.034 62100K .......... .......... .......... .......... .......... 49% 136M 1s -2024-04-11T17:58:51Z #15 2.034 62150K .......... .......... .......... .......... .......... 49% 117M 1s -2024-04-11T17:58:51Z #15 2.034 62200K .......... .......... .......... .......... .......... 49% 138M 1s -2024-04-11T17:58:51Z #15 2.034 62250K .......... .......... .......... .......... .......... 49% 153M 1s -2024-04-11T17:58:51Z #15 2.034 62300K .......... .......... .......... .......... .......... 49% 133M 1s -2024-04-11T17:58:51Z #15 2.034 62350K .......... .......... .......... .......... .......... 49% 125M 1s -2024-04-11T17:58:51Z #15 2.034 62400K .......... .......... .......... .......... .......... 49% 123M 1s -2024-04-11T17:58:51Z #15 2.034 62450K .......... .......... .......... .......... .......... 49% 113M 1s -2024-04-11T17:58:51Z #15 2.034 62500K .......... .......... .......... .......... .......... 49% 128M 1s -2024-04-11T17:58:51Z #15 2.034 62550K .......... .......... .......... .......... .......... 49% 125M 1s -2024-04-11T17:58:51Z #15 2.034 62600K .......... .......... .......... .......... .......... 49% 135M 1s -2024-04-11T17:58:51Z #15 2.034 62650K .......... .......... .......... .......... .......... 49% 116M 1s -2024-04-11T17:58:51Z #15 2.034 62700K .......... .......... .......... .......... .......... 49% 55.2M 1s -2024-04-11T17:58:51Z #15 2.038 62750K .......... .......... .......... .......... .......... 49% 118M 1s -2024-04-11T17:58:51Z #15 2.038 62800K .......... .......... .......... .......... .......... 49% 99.5M 1s -2024-04-11T17:58:51Z #15 2.038 62850K .......... .......... .......... .......... .......... 49% 131M 1s -2024-04-11T17:58:51Z #15 2.038 62900K .......... .......... .......... .......... .......... 49% 134M 1s -2024-04-11T17:58:51Z #15 2.038 62950K .......... .......... .......... .......... .......... 49% 113M 1s -2024-04-11T17:58:51Z #15 2.038 63000K .......... .......... .......... .......... .......... 49% 139M 1s -2024-04-11T17:58:51Z #15 2.038 63050K .......... .......... .......... .......... .......... 49% 135M 1s -2024-04-11T17:58:51Z #15 2.038 63100K .......... .......... .......... .......... .......... 49% 126M 1s -2024-04-11T17:58:51Z #15 2.042 63150K .......... .......... .......... .......... .......... 49% 112M 1s -2024-04-11T17:58:51Z #15 2.042 63200K .......... .......... .......... .......... .......... 49% 126M 1s -2024-04-11T17:58:51Z #15 2.042 63250K .......... .......... .......... .......... .......... 49% 105M 1s -2024-04-11T17:58:51Z #15 2.042 63300K .......... .......... .......... .......... .......... 49% 124M 1s -2024-04-11T17:58:51Z #15 2.042 63350K .......... .......... .......... .......... .......... 50% 158M 1s -2024-04-11T17:58:51Z #15 2.042 63400K .......... .......... .......... .......... .......... 50% 99.7M 1s -2024-04-11T17:58:51Z #15 2.042 63450K .......... .......... .......... .......... .......... 50% 142M 1s -2024-04-11T17:58:51Z #15 2.042 63500K .......... .......... .......... .......... .......... 50% 126M 1s -2024-04-11T17:58:51Z #15 2.042 63550K .......... .......... .......... .......... .......... 50% 132M 1s -2024-04-11T17:58:51Z #15 2.042 63600K .......... .......... .......... .......... .......... 50% 84.4M 1s -2024-04-11T17:58:51Z #15 2.042 63650K .......... .......... .......... .......... .......... 50% 92.0M 1s -2024-04-11T17:58:51Z #15 2.046 63700K .......... .......... .......... .......... .......... 50% 148M 1s -2024-04-11T17:58:51Z #15 2.046 63750K .......... .......... .......... .......... .......... 50% 112M 1s -2024-04-11T17:58:51Z #15 2.046 63800K .......... .......... .......... .......... .......... 50% 140M 1s -2024-04-11T17:58:51Z #15 2.046 63850K .......... .......... .......... .......... .......... 50% 110M 1s -2024-04-11T17:58:51Z #15 2.046 63900K .......... .......... .......... .......... .......... 50% 148M 1s -2024-04-11T17:58:51Z #15 2.046 63950K .......... .......... .......... .......... .......... 50% 145M 1s -2024-04-11T17:58:51Z #15 2.046 64000K .......... .......... .......... .......... .......... 50% 102M 1s -2024-04-11T17:58:51Z #15 2.046 64050K .......... .......... .......... .......... .......... 50% 146M 1s -2024-04-11T17:58:51Z #15 2.046 64100K .......... .......... .......... .......... .......... 50% 105M 1s -2024-04-11T17:58:51Z #15 2.050 64150K .......... .......... .......... .......... .......... 50% 137M 1s -2024-04-11T17:58:51Z #15 2.050 64200K .......... .......... .......... .......... .......... 50% 138M 1s -2024-04-11T17:58:51Z #15 2.050 64250K .......... .......... .......... .......... .......... 50% 109M 1s -2024-04-11T17:58:51Z #15 2.050 64300K .......... .......... .......... .......... .......... 50% 142M 1s -2024-04-11T17:58:51Z #15 2.050 64350K .......... .......... .......... .......... .......... 50% 149M 1s -2024-04-11T17:58:51Z #15 2.050 64400K .......... .......... .......... .......... .......... 50% 111M 1s -2024-04-11T17:58:51Z #15 2.050 64450K .......... .......... .......... .......... .......... 50% 130M 1s -2024-04-11T17:58:51Z #15 2.050 64500K .......... .......... .......... .......... .......... 50% 125M 1s -2024-04-11T17:58:51Z #15 2.050 64550K .......... .......... .......... .......... .......... 50% 140M 1s -2024-04-11T17:58:51Z #15 2.050 64600K .......... .......... .......... .......... .......... 50% 113M 1s -2024-04-11T17:58:51Z #15 2.050 64650K .......... .......... .......... .......... .......... 51% 54.3M 1s -2024-04-11T17:58:51Z #15 2.054 64700K .......... .......... .......... .......... .......... 51% 138M 1s -2024-04-11T17:58:51Z #15 2.054 64750K .......... .......... .......... .......... .......... 51% 125M 1s -2024-04-11T17:58:51Z #15 2.054 64800K .......... .......... .......... .......... .......... 51% 127M 1s -2024-04-11T17:58:51Z #15 2.054 64850K .......... .......... .......... .......... .......... 51% 98.2M 1s -2024-04-11T17:58:51Z #15 2.054 64900K .......... .......... .......... .......... .......... 51% 151M 1s -2024-04-11T17:58:51Z #15 2.054 64950K .......... .......... .......... .......... .......... 51% 141M 1s -2024-04-11T17:58:51Z #15 2.054 65000K .......... .......... .......... .......... .......... 51% 102M 1s -2024-04-11T17:58:51Z #15 2.054 65050K .......... .......... .......... .......... .......... 51% 83.2M 1s -2024-04-11T17:58:51Z #15 2.054 65100K .......... .......... .......... .......... .......... 51% 23.9M 1s -2024-04-11T17:58:51Z #15 2.056 65150K .......... .......... .......... .......... .......... 51% 55.7M 1s -2024-04-11T17:58:51Z #15 2.062 65200K .......... .......... .......... .......... .......... 51% 122M 1s -2024-04-11T17:58:51Z #15 2.062 65250K .......... .......... .......... .......... .......... 51% 98.9M 1s -2024-04-11T17:58:51Z #15 2.062 65300K .......... .......... .......... .......... .......... 51% 119M 1s -2024-04-11T17:58:51Z #15 2.062 65350K .......... .......... .......... .......... .......... 51% 137M 1s -2024-04-11T17:58:51Z #15 2.062 65400K .......... .......... .......... .......... .......... 51% 137M 1s -2024-04-11T17:58:51Z #15 2.062 65450K .......... .......... .......... .......... .......... 51% 108M 1s -2024-04-11T17:58:51Z #15 2.062 65500K .......... .......... .......... .......... .......... 51% 131M 1s -2024-04-11T17:58:51Z #15 2.062 65550K .......... .......... .......... .......... .......... 51% 126M 1s -2024-04-11T17:58:51Z #15 2.062 65600K .......... .......... .......... .......... .......... 51% 123M 1s -2024-04-11T17:58:51Z #15 2.062 65650K .......... .......... .......... .......... .......... 51% 149M 1s -2024-04-11T17:58:51Z #15 2.062 65700K .......... .......... .......... .......... .......... 51% 119M 1s -2024-04-11T17:58:51Z #15 2.062 65750K .......... .......... .......... .......... .......... 51% 113M 1s -2024-04-11T17:58:51Z #15 2.062 65800K .......... .......... .......... .......... .......... 51% 21.6M 1s -2024-04-11T17:58:51Z #15 2.066 65850K .......... .......... .......... .......... .......... 51% 122M 1s -2024-04-11T17:58:51Z #15 2.066 65900K .......... .......... .......... .......... .......... 52% 99.2M 1s -2024-04-11T17:58:51Z #15 2.066 65950K .......... .......... .......... .......... .......... 52% 131M 1s -2024-04-11T17:58:51Z #15 2.066 66000K .......... .......... .......... .......... .......... 52% 126M 1s -2024-04-11T17:58:51Z #15 2.066 66050K .......... .......... .......... .......... .......... 52% 28.5M 1s -2024-04-11T17:58:51Z #15 2.070 66100K .......... .......... .......... .......... .......... 52% 135M 1s -2024-04-11T17:58:51Z #15 2.070 66150K .......... .......... .......... .......... .......... 52% 98.5M 1s -2024-04-11T17:58:51Z #15 2.070 66200K .......... .......... .......... .......... .......... 52% 115M 1s -2024-04-11T17:58:51Z #15 2.070 66250K .......... .......... .......... .......... .......... 52% 148M 1s -2024-04-11T17:58:51Z #15 2.070 66300K .......... .......... .......... .......... .......... 52% 108M 1s -2024-04-11T17:58:51Z #15 2.070 66350K .......... .......... .......... .......... .......... 52% 93.5M 1s -2024-04-11T17:58:51Z #15 2.070 66400K .......... .......... .......... .......... .......... 52% 37.2M 1s -2024-04-11T17:58:51Z #15 2.072 66450K .......... .......... .......... .......... .......... 52% 25.0M 1s -2024-04-11T17:58:51Z #15 2.073 66500K .......... .......... .......... .......... .......... 52% 41.0M 1s -2024-04-11T17:58:51Z #15 2.075 66550K .......... .......... .......... .......... .......... 52% 44.0M 1s -2024-04-11T17:58:51Z #15 2.078 66600K .......... .......... .......... .......... .......... 52% 138M 1s -2024-04-11T17:58:51Z #15 2.078 66650K .......... .......... .......... .......... .......... 52% 133M 1s -2024-04-11T17:58:51Z #15 2.078 66700K .......... .......... .......... .......... .......... 52% 146M 1s -2024-04-11T17:58:51Z #15 2.078 66750K .......... .......... .......... .......... .......... 52% 120M 1s -2024-04-11T17:58:51Z #15 2.078 66800K .......... .......... .......... .......... .......... 52% 138M 1s -2024-04-11T17:58:51Z #15 2.078 66850K .......... .......... .......... .......... .......... 52% 130M 1s -2024-04-11T17:58:51Z #15 2.078 66900K .......... .......... .......... .......... .......... 52% 19.4M 1s -2024-04-11T17:58:51Z #15 2.081 66950K .......... .......... .......... .......... .......... 52% 28.9M 1s -2024-04-11T17:58:51Z #15 2.086 67000K .......... .......... .......... .......... .......... 52% 108M 1s -2024-04-11T17:58:51Z #15 2.086 67050K .......... .......... .......... .......... .......... 52% 119M 1s -2024-04-11T17:58:51Z #15 2.086 67100K .......... .......... .......... .......... .......... 52% 119M 1s -2024-04-11T17:58:51Z #15 2.086 67150K .......... .......... .......... .......... .......... 53% 96.7M 1s -2024-04-11T17:58:51Z #15 2.086 67200K .......... .......... .......... .......... .......... 53% 123M 1s -2024-04-11T17:58:51Z #15 2.086 67250K .......... .......... .......... .......... .......... 53% 123M 1s -2024-04-11T17:58:51Z #15 2.086 67300K .......... .......... .......... .......... .......... 53% 110M 1s -2024-04-11T17:58:51Z #15 2.086 67350K .......... .......... .......... .......... .......... 53% 122M 1s -2024-04-11T17:58:51Z #15 2.086 67400K .......... .......... .......... .......... .......... 53% 23.5M 1s -2024-04-11T17:58:51Z #15 2.088 67450K .......... .......... .......... .......... .......... 53% 30.9M 1s -2024-04-11T17:58:51Z #15 2.089 67500K .......... .......... .......... .......... .......... 53% 19.0M 1s -2024-04-11T17:58:51Z #15 2.094 67550K .......... .......... .......... .......... .......... 53% 122M 1s -2024-04-11T17:58:51Z #15 2.094 67600K .......... .......... .......... .......... .......... 53% 116M 1s -2024-04-11T17:58:51Z #15 2.094 67650K .......... .......... .......... .......... .......... 53% 104M 1s -2024-04-11T17:58:51Z #15 2.094 67700K .......... .......... .......... .......... .......... 53% 126M 1s -2024-04-11T17:58:51Z #15 2.094 67750K .......... .......... .......... .......... .......... 53% 125M 1s -2024-04-11T17:58:51Z #15 2.094 67800K .......... .......... .......... .......... .......... 53% 19.7M 1s -2024-04-11T17:58:51Z #15 2.098 67850K .......... .......... .......... .......... .......... 53% 101M 1s -2024-04-11T17:58:51Z #15 2.098 67900K .......... .......... .......... .......... .......... 53% 98.8M 1s -2024-04-11T17:58:51Z #15 2.098 67950K .......... .......... .......... .......... .......... 53% 111M 1s -2024-04-11T17:58:51Z #15 2.098 68000K .......... .......... .......... .......... .......... 53% 25.3M 1s -2024-04-11T17:58:51Z #15 2.102 68050K .......... .......... .......... .......... .......... 53% 153M 1s -2024-04-11T17:58:51Z #15 2.102 68100K .......... .......... .......... .......... .......... 53% 92.1M 1s -2024-04-11T17:58:51Z #15 2.102 68150K .......... .......... .......... .......... .......... 53% 115M 1s -2024-04-11T17:58:51Z #15 2.102 68200K .......... .......... .......... .......... .......... 53% 116M 1s -2024-04-11T17:58:51Z #15 2.102 68250K .......... .......... .......... .......... .......... 53% 111M 1s -2024-04-11T17:58:51Z #15 2.102 68300K .......... .......... .......... .......... .......... 53% 36.2M 1s -2024-04-11T17:58:51Z #15 2.103 68350K .......... .......... .......... .......... .......... 53% 34.5M 1s -2024-04-11T17:58:51Z #15 2.105 68400K .......... .......... .......... .......... .......... 53% 32.4M 1s -2024-04-11T17:58:51Z #15 2.106 68450K .......... .......... .......... .......... .......... 54% 68.1M 1s -2024-04-11T17:58:51Z #15 2.110 68500K .......... .......... .......... .......... .......... 54% 115M 1s -2024-04-11T17:58:51Z #15 2.110 68550K .......... .......... .......... .......... .......... 54% 118M 1s -2024-04-11T17:58:51Z #15 2.110 68600K .......... .......... .......... .......... .......... 54% 99.8M 1s -2024-04-11T17:58:51Z #15 2.110 68650K .......... .......... .......... .......... .......... 54% 110M 1s -2024-04-11T17:58:51Z #15 2.110 68700K .......... .......... .......... .......... .......... 54% 126M 1s -2024-04-11T17:58:51Z #15 2.110 68750K .......... .......... .......... .......... .......... 54% 129M 1s -2024-04-11T17:58:51Z #15 2.110 68800K .......... .......... .......... .......... .......... 54% 98.8M 1s -2024-04-11T17:58:51Z #15 2.110 68850K .......... .......... .......... .......... .......... 54% 16.5M 1s -2024-04-11T17:58:51Z #15 2.118 68900K .......... .......... .......... .......... .......... 54% 116M 1s -2024-04-11T17:58:51Z #15 2.118 68950K .......... .......... .......... .......... .......... 54% 122M 1s -2024-04-11T17:58:51Z #15 2.118 69000K .......... .......... .......... .......... .......... 54% 102M 1s -2024-04-11T17:58:51Z #15 2.118 69050K .......... .......... .......... .......... .......... 54% 113M 1s -2024-04-11T17:58:51Z #15 2.118 69100K .......... .......... .......... .......... .......... 54% 122M 1s -2024-04-11T17:58:51Z #15 2.118 69150K .......... .......... .......... .......... .......... 54% 123M 1s -2024-04-11T17:58:51Z #15 2.118 69200K .......... .......... .......... .......... .......... 54% 106M 1s -2024-04-11T17:58:51Z #15 2.118 69250K .......... .......... .......... .......... .......... 54% 141M 1s -2024-04-11T17:58:51Z #15 2.118 69300K .......... .......... .......... .......... .......... 54% 123M 1s -2024-04-11T17:58:51Z #15 2.118 69350K .......... .......... .......... .......... .......... 54% 107M 1s -2024-04-11T17:58:51Z #15 2.118 69400K .......... .......... .......... .......... .......... 54% 132M 1s -2024-04-11T17:58:51Z #15 2.118 69450K .......... .......... .......... .......... .......... 54% 128M 1s -2024-04-11T17:58:51Z #15 2.118 69500K .......... .......... .......... .......... .......... 54% 17.9M 1s -2024-04-11T17:58:51Z #15 2.122 69550K .......... .......... .......... .......... .......... 54% 98.8M 1s -2024-04-11T17:58:51Z #15 2.122 69600K .......... .......... .......... .......... .......... 54% 132M 1s -2024-04-11T17:58:51Z #15 2.122 69650K .......... .......... .......... .......... .......... 54% 110M 1s -2024-04-11T17:58:51Z #15 2.122 69700K .......... .......... .......... .......... .......... 55% 119M 1s -2024-04-11T17:58:51Z #15 2.126 69750K .......... .......... .......... .......... .......... 55% 131M 1s -2024-04-11T17:58:51Z #15 2.126 69800K .......... .......... .......... .......... .......... 55% 131M 1s -2024-04-11T17:58:51Z #15 2.126 69850K .......... .......... .......... .......... .......... 55% 129M 1s -2024-04-11T17:58:51Z #15 2.126 69900K .......... .......... .......... .......... .......... 55% 102M 1s -2024-04-11T17:58:51Z #15 2.126 69950K .......... .......... .......... .......... .......... 55% 111M 1s -2024-04-11T17:58:51Z #15 2.126 70000K .......... .......... .......... .......... .......... 55% 166M 1s -2024-04-11T17:58:51Z #15 2.126 70050K .......... .......... .......... .......... .......... 55% 122M 1s -2024-04-11T17:58:51Z #15 2.126 70100K .......... .......... .......... .......... .......... 55% 111M 1s -2024-04-11T17:58:51Z #15 2.126 70150K .......... .......... .......... .......... .......... 55% 124M 1s -2024-04-11T17:58:51Z #15 2.126 70200K .......... .......... .......... .......... .......... 55% 89.2M 1s -2024-04-11T17:58:51Z #15 2.130 70250K .......... .......... .......... .......... .......... 55% 135M 1s -2024-04-11T17:58:51Z #15 2.130 70300K .......... .......... .......... .......... .......... 55% 109M 1s -2024-04-11T17:58:51Z #15 2.130 70350K .......... .......... .......... .......... .......... 55% 126M 1s -2024-04-11T17:58:51Z #15 2.130 70400K .......... .......... .......... .......... .......... 55% 135M 1s -2024-04-11T17:58:51Z #15 2.130 70450K .......... .......... .......... .......... .......... 55% 105M 1s -2024-04-11T17:58:51Z #15 2.130 70500K .......... .......... .......... .......... .......... 55% 116M 1s -2024-04-11T17:58:51Z #15 2.130 70550K .......... .......... .......... .......... .......... 55% 132M 1s -2024-04-11T17:58:51Z #15 2.130 70600K .......... .......... .......... .......... .......... 55% 121M 1s -2024-04-11T17:58:51Z #15 2.130 70650K .......... .......... .......... .......... .......... 55% 111M 1s -2024-04-11T17:58:51Z #15 2.130 70700K .......... .......... .......... .......... .......... 55% 66.0M 1s -2024-04-11T17:58:51Z #15 2.134 70750K .......... .......... .......... .......... .......... 55% 135M 1s -2024-04-11T17:58:51Z #15 2.134 70800K .......... .......... .......... .......... .......... 55% 133M 1s -2024-04-11T17:58:51Z #15 2.134 70850K .......... .......... .......... .......... .......... 55% 90.8M 1s -2024-04-11T17:58:51Z #15 2.134 70900K .......... .......... .......... .......... .......... 55% 132M 1s -2024-04-11T17:58:51Z #15 2.134 70950K .......... .......... .......... .......... .......... 56% 112M 1s -2024-04-11T17:58:51Z #15 2.134 71000K .......... .......... .......... .......... .......... 56% 146M 1s -2024-04-11T17:58:51Z #15 2.134 71050K .......... .......... .......... .......... .......... 56% 125M 1s -2024-04-11T17:58:51Z #15 2.134 71100K .......... .......... .......... .......... .......... 56% 129M 1s -2024-04-11T17:58:51Z #15 2.134 71150K .......... .......... .......... .......... .......... 56% 64.0M 1s -2024-04-11T17:58:51Z #15 2.134 71200K .......... .......... .......... .......... .......... 56% 18.1M 1s -2024-04-11T17:58:51Z #15 2.137 71250K .......... .......... .......... .......... .......... 56% 35.8M 1s -2024-04-11T17:58:51Z #15 2.139 71300K .......... .......... .......... .......... .......... 56% 21.0M 1s -2024-04-11T17:58:51Z #15 2.146 71350K .......... .......... .......... .......... .......... 56% 149M 1s -2024-04-11T17:58:51Z #15 2.146 71400K .......... .......... .......... .......... .......... 56% 111M 1s -2024-04-11T17:58:51Z #15 2.146 71450K .......... .......... .......... .......... .......... 56% 118M 1s -2024-04-11T17:58:51Z #15 2.146 71500K .......... .......... .......... .......... .......... 56% 129M 1s -2024-04-11T17:58:51Z #15 2.146 71550K .......... .......... .......... .......... .......... 56% 124M 1s -2024-04-11T17:58:51Z #15 2.146 71600K .......... .......... .......... .......... .......... 56% 137M 1s -2024-04-11T17:58:51Z #15 2.146 71650K .......... .......... .......... .......... .......... 56% 134M 1s -2024-04-11T17:58:51Z #15 2.146 71700K .......... .......... .......... .......... .......... 56% 129M 1s -2024-04-11T17:58:51Z #15 2.146 71750K .......... .......... .......... .......... .......... 56% 107M 1s -2024-04-11T17:58:51Z #15 2.146 71800K .......... .......... .......... .......... .......... 56% 122M 1s -2024-04-11T17:58:51Z #15 2.146 71850K .......... .......... .......... .......... .......... 56% 138M 1s -2024-04-11T17:58:51Z #15 2.146 71900K .......... .......... .......... .......... .......... 56% 125M 1s -2024-04-11T17:58:51Z #15 2.146 71950K .......... .......... .......... .......... .......... 56% 12.2M 1s -2024-04-11T17:58:51Z #15 2.151 72000K .......... .......... .......... .......... .......... 56% 43.8M 1s -2024-04-11T17:58:51Z #15 2.151 72050K .......... .......... .......... .......... .......... 56% 41.1M 1s -2024-04-11T17:58:51Z #15 2.154 72100K .......... .......... .......... .......... .......... 56% 73.9M 1s -2024-04-11T17:58:51Z #15 2.154 72150K .......... .......... .......... .......... .......... 56% 102M 1s -2024-04-11T17:58:51Z #15 2.154 72200K .......... .......... .......... .......... .......... 56% 153M 1s -2024-04-11T17:58:51Z #15 2.154 72250K .......... .......... .......... .......... .......... 57% 122M 1s -2024-04-11T17:58:51Z #15 2.154 72300K .......... .......... .......... .......... .......... 57% 19.0M 1s -2024-04-11T17:58:51Z #15 2.157 72350K .......... .......... .......... .......... .......... 57% 105M 1s -2024-04-11T17:58:51Z #15 2.157 72400K .......... .......... .......... .......... .......... 57% 58.4M 1s -2024-04-11T17:58:51Z #15 2.158 72450K .......... .......... .......... .......... .......... 57% 62.1M 1s -2024-04-11T17:58:51Z #15 2.162 72500K .......... .......... .......... .......... .......... 57% 102M 1s -2024-04-11T17:58:51Z #15 2.162 72550K .......... .......... .......... .......... .......... 57% 106M 1s -2024-04-11T17:58:51Z #15 2.162 72600K .......... .......... .......... .......... .......... 57% 137M 1s -2024-04-11T17:58:51Z #15 2.162 72650K .......... .......... .......... .......... .......... 57% 119M 1s -2024-04-11T17:58:51Z #15 2.162 72700K .......... .......... .......... .......... .......... 57% 130M 1s -2024-04-11T17:58:51Z #15 2.162 72750K .......... .......... .......... .......... .......... 57% 128M 1s -2024-04-11T17:58:51Z #15 2.162 72800K .......... .......... .......... .......... .......... 57% 111M 1s -2024-04-11T17:58:51Z #15 2.162 72850K .......... .......... .......... .......... .......... 57% 144M 1s -2024-04-11T17:58:51Z #15 2.162 72900K .......... .......... .......... .......... .......... 57% 28.1M 1s -2024-04-11T17:58:51Z #15 2.163 72950K .......... .......... .......... .......... .......... 57% 24.4M 1s -2024-04-11T17:58:51Z #15 2.167 73000K .......... .......... .......... .......... .......... 57% 106M 1s -2024-04-11T17:58:51Z #15 2.167 73050K .......... .......... .......... .......... .......... 57% 134M 1s -2024-04-11T17:58:51Z #15 2.167 73100K .......... .......... .......... .......... .......... 57% 113M 1s -2024-04-11T17:58:51Z #15 2.167 73150K .......... .......... .......... .......... .......... 57% 138M 1s -2024-04-11T17:58:51Z #15 2.167 73200K .......... .......... .......... .......... .......... 57% 46.3M 1s -2024-04-11T17:58:51Z #15 2.168 73250K .......... .......... .......... .......... .......... 57% 31.4M 1s -2024-04-11T17:58:51Z #15 2.170 73300K .......... .......... .......... .......... .......... 57% 17.8M 1s -2024-04-11T17:58:51Z #15 2.178 73350K .......... .......... .......... .......... .......... 57% 70.0M 1s -2024-04-11T17:58:51Z #15 2.178 73400K .......... .......... .......... .......... .......... 57% 117M 1s -2024-04-11T17:58:51Z #15 2.178 73450K .......... .......... .......... .......... .......... 57% 124M 1s -2024-04-11T17:58:51Z #15 2.178 73500K .......... .......... .......... .......... .......... 58% 112M 1s -2024-04-11T17:58:51Z #15 2.178 73550K .......... .......... .......... .......... .......... 58% 120M 1s -2024-04-11T17:58:51Z #15 2.178 73600K .......... .......... .......... .......... .......... 58% 122M 1s -2024-04-11T17:58:51Z #15 2.178 73650K .......... .......... .......... .......... .......... 58% 124M 1s -2024-04-11T17:58:51Z #15 2.178 73700K .......... .......... .......... .......... .......... 58% 79.6M 1s -2024-04-11T17:58:51Z #15 2.178 73750K .......... .......... .......... .......... .......... 58% 121M 1s -2024-04-11T17:58:51Z #15 2.178 73800K .......... .......... .......... .......... .......... 58% 115M 1s -2024-04-11T17:58:51Z #15 2.178 73850K .......... .......... .......... .......... .......... 58% 116M 1s -2024-04-11T17:58:51Z #15 2.178 73900K .......... .......... .......... .......... .......... 58% 110M 1s -2024-04-11T17:58:51Z #15 2.178 73950K .......... .......... .......... .......... .......... 58% 18.6M 1s -2024-04-11T17:58:51Z #15 2.181 74000K .......... .......... .......... .......... .......... 58% 125M 1s -2024-04-11T17:58:51Z #15 2.181 74050K .......... .......... .......... .......... .......... 58% 50.1M 1s -2024-04-11T17:58:51Z #15 2.186 74100K .......... .......... .......... .......... .......... 58% 140M 1s -2024-04-11T17:58:51Z #15 2.186 74150K .......... .......... .......... .......... .......... 58% 128M 1s -2024-04-11T17:58:51Z #15 2.186 74200K .......... .......... .......... .......... .......... 58% 140M 1s -2024-04-11T17:58:51Z #15 2.186 74250K .......... .......... .......... .......... .......... 58% 101M 1s -2024-04-11T17:58:51Z #15 2.186 74300K .......... .......... .......... .......... .......... 58% 132M 1s -2024-04-11T17:58:51Z #15 2.186 74350K .......... .......... .......... .......... .......... 58% 123M 1s -2024-04-11T17:58:51Z #15 2.186 74400K .......... .......... .......... .......... .......... 58% 127M 1s -2024-04-11T17:58:51Z #15 2.186 74450K .......... .......... .......... .......... .......... 58% 157M 1s -2024-04-11T17:58:51Z #15 2.186 74500K .......... .......... .......... .......... .......... 58% 115M 1s -2024-04-11T17:58:51Z #15 2.186 74550K .......... .......... .......... .......... .......... 58% 125M 1s -2024-04-11T17:58:51Z #15 2.186 74600K .......... .......... .......... .......... .......... 58% 76.9M 1s -2024-04-11T17:58:51Z #15 2.186 74650K .......... .......... .......... .......... .......... 58% 34.6M 1s -2024-04-11T17:58:51Z #15 2.188 74700K .......... .......... .......... .......... .......... 58% 41.7M 1s -2024-04-11T17:58:51Z #15 2.189 74750K .......... .......... .......... .......... .......... 58% 45.9M 1s -2024-04-11T17:58:51Z #15 2.190 74800K .......... .......... .......... .......... .......... 59% 75.3M 1s -2024-04-11T17:58:51Z #15 2.190 74850K .......... .......... .......... .......... .......... 59% 107M 1s -2024-04-11T17:58:51Z #15 2.191 74900K .......... .......... .......... .......... .......... 59% 128M 1s -2024-04-11T17:58:51Z #15 2.191 74950K .......... .......... .......... .......... .......... 59% 53.5M 1s -2024-04-11T17:58:51Z #15 2.195 75000K .......... .......... .......... .......... .......... 59% 55.3M 1s -2024-04-11T17:58:51Z #15 2.195 75050K .......... .......... .......... .......... .......... 59% 45.5M 1s -2024-04-11T17:58:51Z #15 2.195 75100K .......... .......... .......... .......... .......... 59% 33.4M 1s -2024-04-11T17:58:51Z #15 2.196 75150K .......... .......... .......... .......... .......... 59% 34.3M 1s -2024-04-11T17:58:51Z #15 2.198 75200K .......... .......... .......... .......... .......... 59% 65.2M 1s -2024-04-11T17:58:51Z #15 2.198 75250K .......... .......... .......... .......... .......... 59% 105M 1s -2024-04-11T17:58:51Z #15 2.198 75300K .......... .......... .......... .......... .......... 59% 128M 1s -2024-04-11T17:58:51Z #15 2.199 75350K .......... .......... .......... .......... .......... 59% 131M 1s -2024-04-11T17:58:51Z #15 2.199 75400K .......... .......... .......... .......... .......... 59% 101M 1s -2024-04-11T17:58:51Z #15 2.199 75450K .......... .......... .......... .......... .......... 59% 114M 1s -2024-04-11T17:58:51Z #15 2.200 75500K .......... .......... .......... .......... .......... 59% 137M 1s -2024-04-11T17:58:51Z #15 2.200 75550K .......... .......... .......... .......... .......... 59% 131M 1s -2024-04-11T17:58:51Z #15 2.201 75600K .......... .......... .......... .......... .......... 59% 109M 1s -2024-04-11T17:58:51Z #15 2.201 75650K .......... .......... .......... .......... .......... 59% 113M 1s -2024-04-11T17:58:51Z #15 2.201 75700K .......... .......... .......... .......... .......... 59% 123M 1s -2024-04-11T17:58:51Z #15 2.202 75750K .......... .......... .......... .......... .......... 59% 121M 1s -2024-04-11T17:58:51Z #15 2.202 75800K .......... .......... .......... .......... .......... 59% 102M 1s -2024-04-11T17:58:51Z #15 2.203 75850K .......... .......... .......... .......... .......... 59% 135M 1s -2024-04-11T17:58:51Z #15 2.210 75900K .......... .......... .......... .......... .......... 59% 160M 1s -2024-04-11T17:58:51Z #15 2.210 75950K .......... .......... .......... .......... .......... 59% 130M 1s -2024-04-11T17:58:51Z #15 2.210 76000K .......... .......... .......... .......... .......... 59% 153M 1s -2024-04-11T17:58:51Z #15 2.210 76050K .......... .......... .......... .......... .......... 60% 168M 1s -2024-04-11T17:58:51Z #15 2.210 76100K .......... .......... .......... .......... .......... 60% 141M 1s -2024-04-11T17:58:51Z #15 2.210 76150K .......... .......... .......... .......... .......... 60% 166M 1s -2024-04-11T17:58:51Z #15 2.210 76200K .......... .......... .......... .......... .......... 60% 132M 1s -2024-04-11T17:58:51Z #15 2.210 76250K .......... .......... .......... .......... .......... 60% 132M 1s -2024-04-11T17:58:51Z #15 2.210 76300K .......... .......... .......... .......... .......... 60% 166M 1s -2024-04-11T17:58:51Z #15 2.210 76350K .......... .......... .......... .......... .......... 60% 136M 1s -2024-04-11T17:58:51Z #15 2.210 76400K .......... .......... .......... .......... .......... 60% 136M 1s -2024-04-11T17:58:51Z #15 2.210 76450K .......... .......... .......... .......... .......... 60% 182M 1s -2024-04-11T17:58:51Z #15 2.210 76500K .......... .......... .......... .......... .......... 60% 155M 1s -2024-04-11T17:58:51Z #15 2.210 76550K .......... .......... .......... .......... .......... 60% 127M 1s -2024-04-11T17:58:51Z #15 2.210 76600K .......... .......... .......... .......... .......... 60% 172M 1s -2024-04-11T17:58:51Z #15 2.210 76650K .......... .......... .......... .......... .......... 60% 138M 1s -2024-04-11T17:58:51Z #15 2.210 76700K .......... .......... .......... .......... .......... 60% 167M 1s -2024-04-11T17:58:51Z #15 2.210 76750K .......... .......... .......... .......... .......... 60% 154M 1s -2024-04-11T17:58:51Z #15 2.210 76800K .......... .......... .......... .......... .......... 60% 141M 1s -2024-04-11T17:58:51Z #15 2.210 76850K .......... .......... .......... .......... .......... 60% 160M 1s -2024-04-11T17:58:51Z #15 2.210 76900K .......... .......... .......... .......... .......... 60% 114M 1s -2024-04-11T17:58:51Z #15 2.210 76950K .......... .......... .......... .......... .......... 60% 145M 1s -2024-04-11T17:58:51Z #15 2.211 77000K .......... .......... .......... .......... .......... 60% 115M 1s -2024-04-11T17:58:51Z #15 2.211 77050K .......... .......... .......... .......... .......... 60% 138M 1s -2024-04-11T17:58:51Z #15 2.211 77100K .......... .......... .......... .......... .......... 60% 141M 1s -2024-04-11T17:58:51Z #15 2.212 77150K .......... .......... .......... .......... .......... 60% 139M 1s -2024-04-11T17:58:51Z #15 2.212 77200K .......... .......... .......... .......... .......... 60% 146M 1s -2024-04-11T17:58:51Z #15 2.213 77250K .......... .......... .......... .......... .......... 60% 127M 1s -2024-04-11T17:58:51Z #15 2.213 77300K .......... .......... .......... .......... .......... 61% 118M 1s -2024-04-11T17:58:51Z #15 2.214 77350K .......... .......... .......... .......... .......... 61% 130M 1s -2024-04-11T17:58:51Z #15 2.214 77400K .......... .......... .......... .......... .......... 61% 99.3M 1s -2024-04-11T17:58:51Z #15 2.214 77450K .......... .......... .......... .......... .......... 61% 129M 1s -2024-04-11T17:58:51Z #15 2.215 77500K .......... .......... .......... .......... .......... 61% 120M 1s -2024-04-11T17:58:51Z #15 2.215 77550K .......... .......... .......... .......... .......... 61% 126M 1s -2024-04-11T17:58:51Z #15 2.215 77600K .......... .......... .......... .......... .......... 61% 144M 1s -2024-04-11T17:58:51Z #15 2.216 77650K .......... .......... .......... .......... .......... 61% 104M 1s -2024-04-11T17:58:51Z #15 2.216 77700K .......... .......... .......... .......... .......... 61% 132M 1s -2024-04-11T17:58:51Z #15 2.216 77750K .......... .......... .......... .......... .......... 61% 136M 1s -2024-04-11T17:58:51Z #15 2.217 77800K .......... .......... .......... .......... .......... 61% 132M 1s -2024-04-11T17:58:51Z #15 2.217 77850K .......... .......... .......... .......... .......... 61% 126M 1s -2024-04-11T17:58:51Z #15 2.217 77900K .......... .......... .......... .......... .......... 61% 12.0M 1s -2024-04-11T17:58:51Z #15 2.222 77950K .......... .......... .......... .......... .......... 61% 87.1M 1s -2024-04-11T17:58:51Z #15 2.222 78000K .......... .......... .......... .......... .......... 61% 115M 1s -2024-04-11T17:58:51Z #15 2.223 78050K .......... .......... .......... .......... .......... 61% 126M 1s -2024-04-11T17:58:51Z #15 2.223 78100K .......... .......... .......... .......... .......... 61% 129M 1s -2024-04-11T17:58:51Z #15 2.223 78150K .......... .......... .......... .......... .......... 61% 115M 1s -2024-04-11T17:58:51Z #15 2.224 78200K .......... .......... .......... .......... .......... 61% 109M 1s -2024-04-11T17:58:51Z #15 2.224 78250K .......... .......... .......... .......... .......... 61% 138M 1s -2024-04-11T17:58:51Z #15 2.224 78300K .......... .......... .......... .......... .......... 61% 119M 1s -2024-04-11T17:58:51Z #15 2.225 78350K .......... .......... .......... .......... .......... 61% 144M 1s -2024-04-11T17:58:51Z #15 2.225 78400K .......... .......... .......... .......... .......... 61% 109M 1s -2024-04-11T17:58:51Z #15 2.226 78450K .......... .......... .......... .......... .......... 61% 11.0M 1s -2024-04-11T17:58:51Z #15 2.230 78500K .......... .......... .......... .......... .......... 61% 128M 1s -2024-04-11T17:58:51Z #15 2.230 78550K .......... .......... .......... .......... .......... 61% 94.2M 1s -2024-04-11T17:58:51Z #15 2.231 78600K .......... .......... .......... .......... .......... 62% 122M 1s -2024-04-11T17:58:51Z #15 2.232 78650K .......... .......... .......... .......... .......... 62% 119M 1s -2024-04-11T17:58:51Z #15 2.232 78700K .......... .......... .......... .......... .......... 62% 128M 1s -2024-04-11T17:58:51Z #15 2.233 78750K .......... .......... .......... .......... .......... 62% 147M 1s -2024-04-11T17:58:51Z #15 2.233 78800K .......... .......... .......... .......... .......... 62% 116M 1s -2024-04-11T17:58:51Z #15 2.233 78850K .......... .......... .......... .......... .......... 62% 126M 1s -2024-04-11T17:58:51Z #15 2.233 78900K .......... .......... .......... .......... .......... 62% 105M 1s -2024-04-11T17:58:51Z #15 2.234 78950K .......... .......... .......... .......... .......... 62% 108M 1s -2024-04-11T17:58:51Z #15 2.234 79000K .......... .......... .......... .......... .......... 62% 149M 1s -2024-04-11T17:58:51Z #15 2.235 79050K .......... .......... .......... .......... .......... 62% 141M 1s -2024-04-11T17:58:51Z #15 2.235 79100K .......... .......... .......... .......... .......... 62% 108M 1s -2024-04-11T17:58:51Z #15 2.236 79150K .......... .......... .......... .......... .......... 62% 125M 1s -2024-04-11T17:58:51Z #15 2.236 79200K .......... .......... .......... .......... .......... 62% 129M 1s -2024-04-11T17:58:51Z #15 2.236 79250K .......... .......... .......... .......... .......... 62% 130M 1s -2024-04-11T17:58:51Z #15 2.237 79300K .......... .......... .......... .......... .......... 62% 147M 1s -2024-04-11T17:58:51Z #15 2.237 79350K .......... .......... .......... .......... .......... 62% 130M 1s -2024-04-11T17:58:51Z #15 2.237 79400K .......... .......... .......... .......... .......... 62% 114M 1s -2024-04-11T17:58:51Z #15 2.238 79450K .......... .......... .......... .......... .......... 62% 11.1M 1s -2024-04-11T17:58:51Z #15 2.245 79500K .......... .......... .......... .......... .......... 62% 152M 1s -2024-04-11T17:58:51Z #15 2.245 79550K .......... .......... .......... .......... .......... 62% 135M 1s -2024-04-11T17:58:51Z #15 2.245 79600K .......... .......... .......... .......... .......... 62% 148M 1s -2024-04-11T17:58:51Z #15 2.245 79650K .......... .......... .......... .......... .......... 62% 150M 1s -2024-04-11T17:58:51Z #15 2.245 79700K .......... .......... .......... .......... .......... 62% 117M 1s -2024-04-11T17:58:51Z #15 2.245 79750K .......... .......... .......... .......... .......... 62% 151M 1s -2024-04-11T17:58:51Z #15 2.245 79800K .......... .......... .......... .......... .......... 62% 149M 1s -2024-04-11T17:58:51Z #15 2.245 79850K .......... .......... .......... .......... .......... 63% 126M 1s -2024-04-11T17:58:51Z #15 2.245 79900K .......... .......... .......... .......... .......... 63% 112M 1s -2024-04-11T17:58:51Z #15 2.245 79950K .......... .......... .......... .......... .......... 63% 131M 1s -2024-04-11T17:58:51Z #15 2.246 80000K .......... .......... .......... .......... .......... 63% 115M 1s -2024-04-11T17:58:51Z #15 2.246 80050K .......... .......... .......... .......... .......... 63% 119M 1s -2024-04-11T17:58:51Z #15 2.247 80100K .......... .......... .......... .......... .......... 63% 119M 1s -2024-04-11T17:58:51Z #15 2.247 80150K .......... .......... .......... .......... .......... 63% 123M 1s -2024-04-11T17:58:51Z #15 2.247 80200K .......... .......... .......... .......... .......... 63% 122M 1s -2024-04-11T17:58:51Z #15 2.248 80250K .......... .......... .......... .......... .......... 63% 108M 1s -2024-04-11T17:58:51Z #15 2.248 80300K .......... .......... .......... .......... .......... 63% 125M 1s -2024-04-11T17:58:51Z #15 2.249 80350K .......... .......... .......... .......... .......... 63% 91.9M 1s -2024-04-11T17:58:51Z #15 2.249 80400K .......... .......... .......... .......... .......... 63% 124M 1s -2024-04-11T17:58:51Z #15 2.249 80450K .......... .......... .......... .......... .......... 63% 10.9M 1s -2024-04-11T17:58:51Z #15 2.254 80500K .......... .......... .......... .......... .......... 63% 114M 1s -2024-04-11T17:58:51Z #15 2.254 80550K .......... .......... .......... .......... .......... 63% 118M 1s -2024-04-11T17:58:51Z #15 2.255 80600K .......... .......... .......... .......... .......... 63% 100M 1s -2024-04-11T17:58:51Z #15 2.256 80650K .......... .......... .......... .......... .......... 63% 136M 1s -2024-04-11T17:58:51Z #15 2.257 80700K .......... .......... .......... .......... .......... 63% 142M 1s -2024-04-11T17:58:51Z #15 2.257 80750K .......... .......... .......... .......... .......... 63% 118M 1s -2024-04-11T17:58:51Z #15 2.257 80800K .......... .......... .......... .......... .......... 63% 151M 1s -2024-04-11T17:58:51Z #15 2.257 80850K .......... .......... .......... .......... .......... 63% 109M 1s -2024-04-11T17:58:51Z #15 2.257 80900K .......... .......... .......... .......... .......... 63% 126M 1s -2024-04-11T17:58:51Z #15 2.258 80950K .......... .......... .......... .......... .......... 63% 105M 1s -2024-04-11T17:58:51Z #15 2.258 81000K .......... .......... .......... .......... .......... 63% 162M 1s -2024-04-11T17:58:51Z #15 2.258 81050K .......... .......... .......... .......... .......... 63% 128M 1s -2024-04-11T17:58:51Z #15 2.259 81100K .......... .......... .......... .......... .......... 64% 124M 0s -2024-04-11T17:58:51Z #15 2.259 81150K .......... .......... .......... .......... .......... 64% 112M 0s -2024-04-11T17:58:51Z #15 2.260 81200K .......... .......... .......... .......... .......... 64% 156M 0s -2024-04-11T17:58:51Z #15 2.260 81250K .......... .......... .......... .......... .......... 64% 132M 0s -2024-04-11T17:58:51Z #15 2.260 81300K .......... .......... .......... .......... .......... 64% 135M 0s -2024-04-11T17:58:51Z #15 2.261 81350K .......... .......... .......... .......... .......... 64% 121M 0s -2024-04-11T17:58:51Z #15 2.261 81400K .......... .......... .......... .......... .......... 64% 128M 0s -2024-04-11T17:58:51Z #15 2.266 81450K .......... .......... .......... .......... .......... 64% 164M 0s -2024-04-11T17:58:51Z #15 2.266 81500K .......... .......... .......... .......... .......... 64% 10.8M 0s -2024-04-11T17:58:51Z #15 2.266 81550K .......... .......... .......... .......... .......... 64% 161M 0s -2024-04-11T17:58:51Z #15 2.266 81600K .......... .......... .......... .......... .......... 64% 154M 0s -2024-04-11T17:58:51Z #15 2.267 81650K .......... .......... .......... .......... .......... 64% 134M 0s -2024-04-11T17:58:51Z #15 2.267 81700K .......... .......... .......... .......... .......... 64% 169M 0s -2024-04-11T17:58:51Z #15 2.267 81750K .......... .......... .......... .......... .......... 64% 149M 0s -2024-04-11T17:58:51Z #15 2.268 81800K .......... .......... .......... .......... .......... 64% 125M 0s -2024-04-11T17:58:51Z #15 2.268 81850K .......... .......... .......... .......... .......... 64% 150M 0s -2024-04-11T17:58:51Z #15 2.268 81900K .......... .......... .......... .......... .......... 64% 146M 0s -2024-04-11T17:58:51Z #15 2.269 81950K .......... .......... .......... .......... .......... 64% 147M 0s -2024-04-11T17:58:51Z #15 2.269 82000K .......... .......... .......... .......... .......... 64% 132M 0s -2024-04-11T17:58:51Z #15 2.270 82050K .......... .......... .......... .......... .......... 64% 97.3M 0s -2024-04-11T17:58:51Z #15 2.270 82100K .......... .......... .......... .......... .......... 64% 151M 0s -2024-04-11T17:58:51Z #15 2.270 82150K .......... .......... .......... .......... .......... 64% 149M 0s -2024-04-11T17:58:51Z #15 2.271 82200K .......... .......... .......... .......... .......... 64% 133M 0s -2024-04-11T17:58:51Z #15 2.271 82250K .......... .......... .......... .......... .......... 64% 173M 0s -2024-04-11T17:58:51Z #15 2.272 82300K .......... .......... .......... .......... .......... 64% 133M 0s -2024-04-11T17:58:51Z #15 2.272 82350K .......... .......... .......... .......... .......... 64% 135M 0s -2024-04-11T17:58:51Z #15 2.272 82400K .......... .......... .......... .......... .......... 65% 168M 0s -2024-04-11T17:58:51Z #15 2.273 82450K .......... .......... .......... .......... .......... 65% 147M 0s -2024-04-11T17:58:51Z #15 2.273 82500K .......... .......... .......... .......... .......... 65% 159M 0s -2024-04-11T17:58:51Z #15 2.273 82550K .......... .......... .......... .......... .......... 65% 142M 0s -2024-04-11T17:58:51Z #15 2.274 82600K .......... .......... .......... .......... .......... 65% 144M 0s -2024-04-11T17:58:51Z #15 2.274 82650K .......... .......... .......... .......... .......... 65% 11.2M 0s -2024-04-11T17:58:51Z #15 2.278 82700K .......... .......... .......... .......... .......... 65% 123M 0s -2024-04-11T17:58:51Z #15 2.278 82750K .......... .......... .......... .......... .......... 65% 164M 0s -2024-04-11T17:58:51Z #15 2.279 82800K .......... .......... .......... .......... .......... 65% 148M 0s -2024-04-11T17:58:51Z #15 2.280 82850K .......... .......... .......... .......... .......... 65% 162M 0s -2024-04-11T17:58:51Z #15 2.280 82900K .......... .......... .......... .......... .......... 65% 91.7M 0s -2024-04-11T17:58:51Z #15 2.280 82950K .......... .......... .......... .......... .......... 65% 87.5M 0s -2024-04-11T17:58:51Z #15 2.281 83000K .......... .......... .......... .......... .......... 65% 91.6M 0s -2024-04-11T17:58:51Z #15 2.281 83050K .......... .......... .......... .......... .......... 65% 92.2M 0s -2024-04-11T17:58:51Z #15 2.282 83100K .......... .......... .......... .......... .......... 65% 114M 0s -2024-04-11T17:58:51Z #15 2.282 83150K .......... .......... .......... .......... .......... 65% 157M 0s -2024-04-11T17:58:51Z #15 2.283 83200K .......... .......... .......... .......... .......... 65% 133M 0s -2024-04-11T17:58:51Z #15 2.283 83250K .......... .......... .......... .......... .......... 65% 161M 0s -2024-04-11T17:58:51Z #15 2.283 83300K .......... .......... .......... .......... .......... 65% 140M 0s -2024-04-11T17:58:51Z #15 2.284 83350K .......... .......... .......... .......... .......... 65% 142M 0s -2024-04-11T17:58:51Z #15 2.284 83400K .......... .......... .......... .......... .......... 65% 151M 0s -2024-04-11T17:58:51Z #15 2.284 83450K .......... .......... .......... .......... .......... 65% 126M 0s -2024-04-11T17:58:51Z #15 2.284 83500K .......... .......... .......... .......... .......... 65% 151M 0s -2024-04-11T17:58:51Z #15 2.285 83550K .......... .......... .......... .......... .......... 65% 146M 0s -2024-04-11T17:58:51Z #15 2.285 83600K .......... .......... .......... .......... .......... 65% 157M 0s -2024-04-11T17:58:51Z #15 2.287 83650K .......... .......... .......... .......... .......... 66% 152M 0s -2024-04-11T17:58:51Z #15 2.287 83700K .......... .......... .......... .......... .......... 66% 10.9M 0s -2024-04-11T17:58:51Z #15 2.290 83750K .......... .......... .......... .......... .......... 66% 164M 0s -2024-04-11T17:58:51Z #15 2.290 83800K .......... .......... .......... .......... .......... 66% 134M 0s -2024-04-11T17:58:51Z #15 2.291 83850K .......... .......... .......... .......... .......... 66% 152M 0s -2024-04-11T17:58:51Z #15 2.292 83900K .......... .......... .......... .......... .......... 66% 158M 0s -2024-04-11T17:58:51Z #15 2.292 83950K .......... .......... .......... .......... .......... 66% 127M 0s -2024-04-11T17:58:51Z #15 2.292 84000K .......... .......... .......... .......... .......... 66% 144M 0s -2024-04-11T17:58:51Z #15 2.292 84050K .......... .......... .......... .......... .......... 66% 157M 0s -2024-04-11T17:58:51Z #15 2.292 84100K .......... .......... .......... .......... .......... 66% 164M 0s -2024-04-11T17:58:51Z #15 2.293 84150K .......... .......... .......... .......... .......... 66% 140M 0s -2024-04-11T17:58:51Z #15 2.293 84200K .......... .......... .......... .......... .......... 66% 162M 0s -2024-04-11T17:58:51Z #15 2.293 84250K .......... .......... .......... .......... .......... 66% 158M 0s -2024-04-11T17:58:51Z #15 2.294 84300K .......... .......... .......... .......... .......... 66% 111M 0s -2024-04-11T17:58:51Z #15 2.294 84350K .......... .......... .......... .......... .......... 66% 156M 0s -2024-04-11T17:58:51Z #15 2.294 84400K .......... .......... .......... .......... .......... 66% 153M 0s -2024-04-11T17:58:51Z #15 2.295 84450K .......... .......... .......... .......... .......... 66% 154M 0s -2024-04-11T17:58:51Z #15 2.295 84500K .......... .......... .......... .......... .......... 66% 131M 0s -2024-04-11T17:58:51Z #15 2.296 84550K .......... .......... .......... .......... .......... 66% 149M 0s -2024-04-11T17:58:51Z #15 2.296 84600K .......... .......... .......... .......... .......... 66% 158M 0s -2024-04-11T17:58:51Z #15 2.296 84650K .......... .......... .......... .......... .......... 66% 168M 0s -2024-04-11T17:58:51Z #15 2.297 84700K .......... .......... .......... .......... .......... 66% 122M 0s -2024-04-11T17:58:51Z #15 2.297 84750K .......... .......... .......... .......... .......... 66% 167M 0s -2024-04-11T17:58:51Z #15 2.297 84800K .......... .......... .......... .......... .......... 66% 151M 0s -2024-04-11T17:58:51Z #15 2.298 84850K .......... .......... .......... .......... .......... 66% 152M 0s -2024-04-11T17:58:51Z #15 2.311 84900K .......... .......... .......... .......... .......... 67% 11.0M 0s -2024-04-11T17:58:51Z #15 2.311 84950K .......... .......... .......... .......... .......... 67% 154M 0s -2024-04-11T17:58:51Z #15 2.311 85000K .......... .......... .......... .......... .......... 67% 170M 0s -2024-04-11T17:58:51Z #15 2.311 85050K .......... .......... .......... .......... .......... 67% 155M 0s -2024-04-11T17:58:51Z #15 2.311 85100K .......... .......... .......... .......... .......... 67% 82.3M 0s -2024-04-11T17:58:51Z #15 2.311 85150K .......... .......... .......... .......... .......... 67% 97.6M 0s -2024-04-11T17:58:51Z #15 2.311 85200K .......... .......... .......... .......... .......... 67% 89.8M 0s -2024-04-11T17:58:51Z #15 2.311 85250K .......... .......... .......... .......... .......... 67% 157M 0s -2024-04-11T17:58:51Z #15 2.311 85300K .......... .......... .......... .......... .......... 67% 107M 0s -2024-04-11T17:58:51Z #15 2.311 85350K .......... .......... .......... .......... .......... 67% 92.4M 0s -2024-04-11T17:58:51Z #15 2.311 85400K .......... .......... .......... .......... .......... 67% 101M 0s -2024-04-11T17:58:51Z #15 2.311 85450K .......... .......... .......... .......... .......... 67% 175M 0s -2024-04-11T17:58:51Z #15 2.311 85500K .......... .......... .......... .......... .......... 67% 84.1M 0s -2024-04-11T17:58:51Z #15 2.311 85550K .......... .......... .......... .......... .......... 67% 116M 0s -2024-04-11T17:58:51Z #15 2.311 85600K .......... .......... .......... .......... .......... 67% 107M 0s -2024-04-11T17:58:51Z #15 2.311 85650K .......... .......... .......... .......... .......... 67% 170M 0s -2024-04-11T17:58:51Z #15 2.311 85700K .......... .......... .......... .......... .......... 67% 142M 0s -2024-04-11T17:58:51Z #15 2.311 85750K .......... .......... .......... .......... .......... 67% 90.9M 0s -2024-04-11T17:58:51Z #15 2.311 85800K .......... .......... .......... .......... .......... 67% 14.2M 0s -2024-04-11T17:58:51Z #15 2.319 85850K .......... .......... .......... .......... .......... 67% 126M 0s -2024-04-11T17:58:51Z #15 2.319 85900K .......... .......... .......... .......... .......... 67% 174M 0s -2024-04-11T17:58:51Z #15 2.319 85950K .......... .......... .......... .......... .......... 67% 158M 0s -2024-04-11T17:58:51Z #15 2.319 86000K .......... .......... .......... .......... .......... 67% 115M 0s -2024-04-11T17:58:51Z #15 2.319 86050K .......... .......... .......... .......... .......... 67% 120M 0s -2024-04-11T17:58:51Z #15 2.319 86100K .......... .......... .......... .......... .......... 67% 82.9M 0s -2024-04-11T17:58:51Z #15 2.319 86150K .......... .......... .......... .......... .......... 67% 90.8M 0s -2024-04-11T17:58:51Z #15 2.319 86200K .......... .......... .......... .......... .......... 68% 152M 0s -2024-04-11T17:58:51Z #15 2.319 86250K .......... .......... .......... .......... .......... 68% 77.4M 0s -2024-04-11T17:58:51Z #15 2.319 86300K .......... .......... .......... .......... .......... 68% 122M 0s -2024-04-11T17:58:51Z #15 2.319 86350K .......... .......... .......... .......... .......... 68% 107M 0s -2024-04-11T17:58:51Z #15 2.319 86400K .......... .......... .......... .......... .......... 68% 9.56M 0s -2024-04-11T17:58:51Z #15 2.326 86450K .......... .......... .......... .......... .......... 68% 21.8M 0s -2024-04-11T17:58:51Z #15 2.326 86500K .......... .......... .......... .......... .......... 68% 16.9M 0s -2024-04-11T17:58:51Z #15 2.330 86550K .......... .......... .......... .......... .......... 68% 77.9M 0s -2024-04-11T17:58:51Z #15 2.330 86600K .......... .......... .......... .......... .......... 68% 42.9M 0s -2024-04-11T17:58:51Z #15 2.334 86650K .......... .......... .......... .......... .......... 68% 24.9M 0s -2024-04-11T17:58:51Z #15 2.334 86700K .......... .......... .......... .......... .......... 68% 25.5M 0s -2024-04-11T17:58:51Z #15 2.334 86750K .......... .......... .......... .......... .......... 68% 46.0M 0s -2024-04-11T17:58:51Z #15 2.335 86800K .......... .......... .......... .......... .......... 68% 52.6M 0s -2024-04-11T17:58:51Z #15 2.338 86850K .......... .......... .......... .......... .......... 68% 32.7M 0s -2024-04-11T17:58:51Z #15 2.338 86900K .......... .......... .......... .......... .......... 68% 49.4M 0s -2024-04-11T17:58:51Z #15 2.338 86950K .......... .......... .......... .......... .......... 68% 29.3M 0s -2024-04-11T17:58:51Z #15 2.340 87000K .......... .......... .......... .......... .......... 68% 34.5M 0s -2024-04-11T17:58:51Z #15 2.342 87050K .......... .......... .......... .......... .......... 68% 25.5M 0s -2024-04-11T17:58:51Z #15 2.343 87100K .......... .......... .......... .......... .......... 68% 26.4M 0s -2024-04-11T17:58:51Z #15 2.346 87150K .......... .......... .......... .......... .......... 68% 18.1M 0s -2024-04-11T17:58:51Z #15 2.350 87200K .......... .......... .......... .......... .......... 68% 42.7M 0s -2024-04-11T17:58:51Z #15 2.350 87250K .......... .......... .......... .......... .......... 68% 48.1M 0s -2024-04-11T17:58:51Z #15 2.350 87300K .......... .......... .......... .......... .......... 68% 20.9M 0s -2024-04-11T17:58:51Z #15 2.354 87350K .......... .......... .......... .......... .......... 68% 43.0M 0s -2024-04-11T17:58:51Z #15 2.354 87400K .......... .......... .......... .......... .......... 68% 34.5M 0s -2024-04-11T17:58:51Z #15 2.355 87450K .......... .......... .......... .......... .......... 69% 26.8M 0s -2024-04-11T17:58:51Z #15 2.358 87500K .......... .......... .......... .......... .......... 69% 27.9M 0s -2024-04-11T17:58:51Z #15 2.358 87550K .......... .......... .......... .......... .......... 69% 29.9M 0s -2024-04-11T17:58:51Z #15 2.362 87600K .......... .......... .......... .......... .......... 69% 31.9M 0s -2024-04-11T17:58:51Z #15 2.362 87650K .......... .......... .......... .......... .......... 69% 37.7M 0s -2024-04-11T17:58:51Z #15 2.363 87700K .......... .......... .......... .......... .......... 69% 19.7M 0s -2024-04-11T17:58:51Z #15 2.366 87750K .......... .......... .......... .......... .......... 69% 38.7M 0s -2024-04-11T17:58:51Z #15 2.366 87800K .......... .......... .......... .......... .......... 69% 39.5M 0s -2024-04-11T17:58:51Z #15 2.370 87850K .......... .......... .......... .......... .......... 69% 34.5M 0s -2024-04-11T17:58:51Z #15 2.370 87900K .......... .......... .......... .......... .......... 69% 67.7M 0s -2024-04-11T17:58:51Z #15 2.370 87950K .......... .......... .......... .......... .......... 69% 25.7M 0s -2024-04-11T17:58:51Z #15 2.372 88000K .......... .......... .......... .......... .......... 69% 23.7M 0s -2024-04-11T17:58:51Z #15 2.378 88050K .......... .......... .......... .......... .......... 69% 31.1M 0s -2024-04-11T17:58:51Z #15 2.378 88100K .......... .......... .......... .......... .......... 69% 33.2M 0s -2024-04-11T17:58:51Z #15 2.378 88150K .......... .......... .......... .......... .......... 69% 36.4M 0s -2024-04-11T17:58:51Z #15 2.378 88200K .......... .......... .......... .......... .......... 69% 45.8M 0s -2024-04-11T17:58:51Z #15 2.379 88250K .......... .......... .......... .......... .......... 69% 23.6M 0s -2024-04-11T17:58:51Z #15 2.386 88300K .......... .......... .......... .......... .......... 69% 25.7M 0s -2024-04-11T17:58:51Z #15 2.386 88350K .......... .......... .......... .......... .......... 69% 72.4M 0s -2024-04-11T17:58:51Z #15 2.386 88400K .......... .......... .......... .......... .......... 69% 27.6M 0s -2024-04-11T17:58:51Z #15 2.386 88450K .......... .......... .......... .......... .......... 69% 38.4M 0s -2024-04-11T17:58:51Z #15 2.387 88500K .......... .......... .......... .......... .......... 69% 22.6M 0s -2024-04-11T17:58:51Z #15 2.390 88550K .......... .......... .......... .......... .......... 69% 33.5M 0s -2024-04-11T17:58:51Z #15 2.390 88600K .......... .......... .......... .......... .......... 69% 25.4M 0s -2024-04-11T17:58:51Z #15 2.392 88650K .......... .......... .......... .......... .......... 69% 24.4M 0s -2024-04-11T17:58:51Z #15 2.395 88700K .......... .......... .......... .......... .......... 70% 30.8M 0s -2024-04-11T17:58:51Z #15 2.400 88750K .......... .......... .......... .......... .......... 70% 35.4M 0s -2024-04-11T17:58:51Z #15 2.400 88800K .......... .......... .......... .......... .......... 70% 17.4M 0s -2024-04-11T17:58:51Z #15 2.400 88850K .......... .......... .......... .......... .......... 70% 81.3M 0s -2024-04-11T17:58:51Z #15 2.401 88900K .......... .......... .......... .......... .......... 70% 62.2M 0s -2024-04-11T17:58:51Z #15 2.406 88950K .......... .......... .......... .......... .......... 70% 27.7M 0s -2024-04-11T17:58:51Z #15 2.406 89000K .......... .......... .......... .......... .......... 70% 38.3M 0s -2024-04-11T17:58:51Z #15 2.406 89050K .......... .......... .......... .......... .......... 70% 34.2M 0s -2024-04-11T17:58:51Z #15 2.406 89100K .......... .......... .......... .......... .......... 70% 20.0M 0s -2024-04-11T17:58:51Z #15 2.410 89150K .......... .......... .......... .......... .......... 70% 34.1M 0s -2024-04-11T17:58:51Z #15 2.410 89200K .......... .......... .......... .......... .......... 70% 52.0M 0s -2024-04-11T17:58:51Z #15 2.411 89250K .......... .......... .......... .......... .......... 70% 18.5M 0s -2024-04-11T17:58:51Z #15 2.414 89300K .......... .......... .......... .......... .......... 70% 21.4M 0s -2024-04-11T17:58:51Z #15 2.416 89350K .......... .......... .......... .......... .......... 70% 18.9M 0s -2024-04-11T17:58:51Z #15 2.422 89400K .......... .......... .......... .......... .......... 70% 37.7M 0s -2024-04-11T17:58:51Z #15 2.422 89450K .......... .......... .......... .......... .......... 70% 40.7M 0s -2024-04-11T17:58:51Z #15 2.422 89500K .......... .......... .......... .......... .......... 70% 25.5M 0s -2024-04-11T17:58:51Z #15 2.423 89550K .......... .......... .......... .......... .......... 70% 19.1M 0s -2024-04-11T17:58:51Z #15 2.426 89600K .......... .......... .......... .......... .......... 70% 27.7M 0s -2024-04-11T17:58:51Z #15 2.430 89650K .......... .......... .......... .......... .......... 70% 26.3M 0s -2024-04-11T17:58:51Z #15 2.430 89700K .......... .......... .......... .......... .......... 70% 21.5M 0s -2024-04-11T17:58:51Z #15 2.431 89750K .......... .......... .......... .......... .......... 70% 62.7M 0s -2024-04-11T17:58:51Z #15 2.432 89800K .......... .......... .......... .......... .......... 70% 30.8M 0s -2024-04-11T17:58:51Z #15 2.434 89850K .......... .......... .......... .......... .......... 70% 21.9M 0s -2024-04-11T17:58:51Z #15 2.436 89900K .......... .......... .......... .......... .......... 70% 24.8M 0s -2024-04-11T17:58:51Z #15 2.438 89950K .......... .......... .......... .......... .......... 70% 27.2M 0s -2024-04-11T17:58:51Z #15 2.440 90000K .......... .......... .......... .......... .......... 71% 22.1M 0s -2024-04-11T17:58:51Z #15 2.442 90050K .......... .......... .......... .......... .......... 71% 33.6M 0s -2024-04-11T17:58:51Z #15 2.443 90100K .......... .......... .......... .......... .......... 71% 18.3M 0s -2024-04-11T17:58:51Z #15 2.446 90150K .......... .......... .......... .......... .......... 71% 44.0M 0s -2024-04-11T17:58:51Z #15 2.447 90200K .......... .......... .......... .......... .......... 71% 24.2M 0s -2024-04-11T17:58:51Z #15 2.449 90250K .......... .......... .......... .......... .......... 71% 26.8M 0s -2024-04-11T17:58:51Z #15 2.451 90300K .......... .......... .......... .......... .......... 71% 20.8M 0s -2024-04-11T17:58:51Z #15 2.453 90350K .......... .......... .......... .......... .......... 71% 24.3M 0s -2024-04-11T17:58:51Z #15 2.455 90400K .......... .......... .......... .......... .......... 71% 20.9M 0s -2024-04-11T17:58:51Z #15 2.458 90450K .......... .......... .......... .......... .......... 71% 48.9M 0s -2024-04-11T17:58:51Z #15 2.459 90500K .......... .......... .......... .......... .......... 71% 23.1M 0s -2024-04-11T17:58:51Z #15 2.461 90550K .......... .......... .......... .......... .......... 71% 28.6M 0s -2024-04-11T17:58:51Z #15 2.463 90600K .......... .......... .......... .......... .......... 71% 20.9M 0s -2024-04-11T17:58:51Z #15 2.465 90650K .......... .......... .......... .......... .......... 71% 22.8M 0s -2024-04-11T17:58:51Z #15 2.467 90700K .......... .......... .......... .......... .......... 71% 23.6M 0s -2024-04-11T17:58:51Z #15 2.469 90750K .......... .......... .......... .......... .......... 71% 25.0M 0s -2024-04-11T17:58:51Z #15 2.471 90800K .......... .......... .......... .......... .......... 71% 33.0M 0s -2024-04-11T17:58:51Z #15 2.472 90850K .......... .......... .......... .......... .......... 71% 27.4M 0s -2024-04-11T17:58:51Z #15 2.474 90900K .......... .......... .......... .......... .......... 71% 19.4M 0s -2024-04-11T17:58:51Z #15 2.477 90950K .......... .......... .......... .......... .......... 71% 36.3M 0s -2024-04-11T17:58:51Z #15 2.478 91000K .......... .......... .......... .......... .......... 71% 23.5M 0s -2024-04-11T17:58:51Z #15 2.480 91050K .......... .......... .......... .......... .......... 71% 31.8M 0s -2024-04-11T17:58:51Z #15 2.482 91100K .......... .......... .......... .......... .......... 71% 24.9M 0s -2024-04-11T17:58:51Z #15 2.484 91150K .......... .......... .......... .......... .......... 71% 20.0M 0s -2024-04-11T17:58:51Z #15 2.486 91200K .......... .......... .......... .......... .......... 71% 26.4M 0s -2024-04-11T17:58:51Z #15 2.488 91250K .......... .......... .......... .......... .......... 72% 21.0M 0s -2024-04-11T17:58:51Z #15 2.490 91300K .......... .......... .......... .......... .......... 72% 23.2M 0s -2024-04-11T17:58:51Z #15 2.493 91350K .......... .......... .......... .......... .......... 72% 48.3M 0s -2024-04-11T17:58:51Z #15 2.494 91400K .......... .......... .......... .......... .......... 72% 26.2M 0s -2024-04-11T17:58:51Z #15 2.495 91450K .......... .......... .......... .......... .......... 72% 47.5M 0s -2024-04-11T17:58:51Z #15 2.496 91500K .......... .......... .......... .......... .......... 72% 37.6M 0s -2024-04-11T17:58:51Z #15 2.498 91550K .......... .......... .......... .......... .......... 72% 27.9M 0s -2024-04-11T17:58:51Z #15 2.500 91600K .......... .......... .......... .......... .......... 72% 34.4M 0s -2024-04-11T17:58:51Z #15 2.501 91650K .......... .......... .......... .......... .......... 72% 29.3M 0s -2024-04-11T17:58:51Z #15 2.502 91700K .......... .......... .......... .......... .......... 72% 41.2M 0s -2024-04-11T17:58:51Z #15 2.504 91750K .......... .......... .......... .......... .......... 72% 38.0M 0s -2024-04-11T17:58:51Z #15 2.505 91800K .......... .......... .......... .......... .......... 72% 31.4M 0s -2024-04-11T17:58:51Z #15 2.506 91850K .......... .......... .......... .......... .......... 72% 42.5M 0s -2024-04-11T17:58:51Z #15 2.508 91900K .......... .......... .......... .......... .......... 72% 39.6M 0s -2024-04-11T17:58:51Z #15 2.509 91950K .......... .......... .......... .......... .......... 72% 20.3M 0s -2024-04-11T17:58:51Z #15 2.512 92000K .......... .......... .......... .......... .......... 72% 45.3M 0s -2024-04-11T17:58:51Z #15 2.512 92050K .......... .......... .......... .......... .......... 72% 90.0M 0s -2024-04-11T17:58:51Z #15 2.513 92100K .......... .......... .......... .......... .......... 72% 37.7M 0s -2024-04-11T17:58:51Z #15 2.514 92150K .......... .......... .......... .......... .......... 72% 33.3M 0s -2024-04-11T17:58:51Z #15 2.516 92200K .......... .......... .......... .......... .......... 72% 59.7M 0s -2024-04-11T17:58:51Z #15 2.516 92250K .......... .......... .......... .......... .......... 72% 31.1M 0s -2024-04-11T17:58:51Z #15 2.519 92300K .......... .......... .......... .......... .......... 72% 52.0M 0s -2024-04-11T17:58:51Z #15 2.519 92350K .......... .......... .......... .......... .......... 72% 24.0M 0s -2024-04-11T17:58:51Z #15 2.521 92400K .......... .......... .......... .......... .......... 72% 43.6M 0s -2024-04-11T17:58:51Z #15 2.522 92450K .......... .......... .......... .......... .......... 72% 22.0M 0s -2024-04-11T17:58:51Z #15 2.524 92500K .......... .......... .......... .......... .......... 72% 75.8M 0s -2024-04-11T17:58:51Z #15 2.525 92550K .......... .......... .......... .......... .......... 73% 23.7M 0s -2024-04-11T17:58:51Z #15 2.527 92600K .......... .......... .......... .......... .......... 73% 56.7M 0s -2024-04-11T17:58:51Z #15 2.528 92650K .......... .......... .......... .......... .......... 73% 45.9M 0s -2024-04-11T17:58:51Z #15 2.529 92700K .......... .......... .......... .......... .......... 73% 28.6M 0s -2024-04-11T17:58:51Z #15 2.531 92750K .......... .......... .......... .......... .......... 73% 51.2M 0s -2024-04-11T17:58:51Z #15 2.531 92800K .......... .......... .......... .......... .......... 73% 31.8M 0s -2024-04-11T17:58:51Z #15 2.533 92850K .......... .......... .......... .......... .......... 73% 40.5M 0s -2024-04-11T17:58:51Z #15 2.535 92900K .......... .......... .......... .......... .......... 73% 27.9M 0s -2024-04-11T17:58:51Z #15 2.536 92950K .......... .......... .......... .......... .......... 73% 78.0M 0s -2024-04-11T17:58:51Z #15 2.537 93000K .......... .......... .......... .......... .......... 73% 15.1M 0s -2024-04-11T17:58:51Z #15 2.541 93050K .......... .......... .......... .......... .......... 73% 82.6M 0s -2024-04-11T17:58:51Z #15 2.541 93100K .......... .......... .......... .......... .......... 73% 71.7M 0s -2024-04-11T17:58:51Z #15 2.541 93150K .......... .......... .......... .......... .......... 73% 22.0M 0s -2024-04-11T17:58:51Z #15 2.543 93200K .......... .......... .......... .......... .......... 73% 36.6M 0s -2024-04-11T17:58:51Z #15 2.545 93250K .......... .......... .......... .......... .......... 73% 21.5M 0s -2024-04-11T17:58:51Z #15 2.547 93300K .......... .......... .......... .......... .......... 73% 25.0M 0s -2024-04-11T17:58:51Z #15 2.549 93350K .......... .......... .......... .......... .......... 73% 33.5M 0s -2024-04-11T17:58:51Z #15 2.554 93400K .......... .......... .......... .......... .......... 73% 21.0M 0s -2024-04-11T17:58:51Z #15 2.554 93450K .......... .......... .......... .......... .......... 73% 26.0M 0s -2024-04-11T17:58:51Z #15 2.555 93500K .......... .......... .......... .......... .......... 73% 26.7M 0s -2024-04-11T17:58:51Z #15 2.557 93550K .......... .......... .......... .......... .......... 73% 24.9M 0s -2024-04-11T17:58:51Z #15 2.558 93600K .......... .......... .......... .......... .......... 73% 50.9M 0s -2024-04-11T17:58:51Z #15 2.562 93650K .......... .......... .......... .......... .......... 73% 122M 0s -2024-04-11T17:58:51Z #15 2.562 93700K .......... .......... .......... .......... .......... 73% 170M 0s -2024-04-11T17:58:51Z #15 2.562 93750K .......... .......... .......... .......... .......... 73% 101M 0s -2024-04-11T17:58:51Z #15 2.562 93800K .......... .......... .......... .......... .......... 74% 187M 0s -2024-04-11T17:58:51Z #15 2.562 93850K .......... .......... .......... .......... .......... 74% 109M 0s -2024-04-11T17:58:51Z #15 2.562 93900K .......... .......... .......... .......... .......... 74% 204M 0s -2024-04-11T17:58:51Z #15 2.562 93950K .......... .......... .......... .......... .......... 74% 147M 0s -2024-04-11T17:58:51Z #15 2.562 94000K .......... .......... .......... .......... .......... 74% 15.0M 0s -2024-04-11T17:58:51Z #15 2.565 94050K .......... .......... .......... .......... .......... 74% 20.1M 0s -2024-04-11T17:58:51Z #15 2.568 94100K .......... .......... .......... .......... .......... 74% 27.8M 0s -2024-04-11T17:58:51Z #15 2.569 94150K .......... .......... .......... .......... .......... 74% 48.6M 0s -2024-04-11T17:58:51Z #15 2.574 94200K .......... .......... .......... .......... .......... 74% 49.7M 0s -2024-04-11T17:58:51Z #15 2.574 94250K .......... .......... .......... .......... .......... 74% 30.9M 0s -2024-04-11T17:58:51Z #15 2.574 94300K .......... .......... .......... .......... .......... 74% 35.2M 0s -2024-04-11T17:58:51Z #15 2.590 94350K .......... .......... .......... .......... .......... 74% 34.3M 0s -2024-04-11T17:58:51Z #15 2.590 94400K .......... .......... .......... .......... .......... 74% 30.4M 0s -2024-04-11T17:58:51Z #15 2.590 94450K .......... .......... .......... .......... .......... 74% 58.6M 0s -2024-04-11T17:58:51Z #15 2.590 94500K .......... .......... .......... .......... .......... 74% 22.6M 0s -2024-04-11T17:58:51Z #15 2.590 94550K .......... .......... .......... .......... .......... 74% 43.4M 0s -2024-04-11T17:58:51Z #15 2.590 94600K .......... .......... .......... .......... .......... 74% 49.3M 0s -2024-04-11T17:58:51Z #15 2.590 94650K .......... .......... .......... .......... .......... 74% 79.1M 0s -2024-04-11T17:58:51Z #15 2.590 94700K .......... .......... .......... .......... .......... 74% 61.6M 0s -2024-04-11T17:58:51Z #15 2.590 94750K .......... .......... .......... .......... .......... 74% 196M 0s -2024-04-11T17:58:51Z #15 2.590 94800K .......... .......... .......... .......... .......... 74% 106M 0s -2024-04-11T17:58:51Z #15 2.590 94850K .......... .......... .......... .......... .......... 74% 172M 0s -2024-04-11T17:58:51Z #15 2.590 94900K .......... .......... .......... .......... .......... 74% 21.7M 0s -2024-04-11T17:58:51Z #15 2.590 94950K .......... .......... .......... .......... .......... 74% 30.7M 0s -2024-04-11T17:58:51Z #15 2.590 95000K .......... .......... .......... .......... .......... 74% 25.0M 0s -2024-04-11T17:58:51Z #15 2.591 95050K .......... .......... .......... .......... .......... 75% 29.4M 0s -2024-04-11T17:58:51Z #15 2.592 95100K .......... .......... .......... .......... .......... 75% 71.9M 0s -2024-04-11T17:58:51Z #15 2.594 95150K .......... .......... .......... .......... .......... 75% 174M 0s -2024-04-11T17:58:51Z #15 2.594 95200K .......... .......... .......... .......... .......... 75% 145M 0s -2024-04-11T17:58:51Z #15 2.594 95250K .......... .......... .......... .......... .......... 75% 194M 0s -2024-04-11T17:58:51Z #15 2.594 95300K .......... .......... .......... .......... .......... 75% 21.4M 0s -2024-04-11T17:58:51Z #15 2.596 95350K .......... .......... .......... .......... .......... 75% 28.4M 0s -2024-04-11T17:58:51Z #15 2.606 95400K .......... .......... .......... .......... .......... 75% 25.2M 0s -2024-04-11T17:58:51Z #15 2.606 95450K .......... .......... .......... .......... .......... 75% 70.0M 0s -2024-04-11T17:58:51Z #15 2.606 95500K .......... .......... .......... .......... .......... 75% 30.5M 0s -2024-04-11T17:58:51Z #15 2.606 95550K .......... .......... .......... .......... .......... 75% 136M 0s -2024-04-11T17:58:51Z #15 2.606 95600K .......... .......... .......... .......... .......... 75% 33.8M 0s -2024-04-11T17:58:51Z #15 2.606 95650K .......... .......... .......... .......... .......... 75% 29.9M 0s -2024-04-11T17:58:51Z #15 2.606 95700K .......... .......... .......... .......... .......... 75% 61.1M 0s -2024-04-11T17:58:51Z #15 2.610 95750K .......... .......... .......... .......... .......... 75% 168M 0s -2024-04-11T17:58:51Z #15 2.610 95800K .......... .......... .......... .......... .......... 75% 172M 0s -2024-04-11T17:58:51Z #15 2.610 95850K .......... .......... .......... .......... .......... 75% 105M 0s -2024-04-11T17:58:51Z #15 2.610 95900K .......... .......... .......... .......... .......... 75% 128M 0s -2024-04-11T17:58:51Z #15 2.610 95950K .......... .......... .......... .......... .......... 75% 124M 0s -2024-04-11T17:58:51Z #15 2.610 96000K .......... .......... .......... .......... .......... 75% 116M 0s -2024-04-11T17:58:51Z #15 2.610 96050K .......... .......... .......... .......... .......... 75% 140M 0s -2024-04-11T17:58:51Z #15 2.610 96100K .......... .......... .......... .......... .......... 75% 143M 0s -2024-04-11T17:58:51Z #15 2.610 96150K .......... .......... .......... .......... .......... 75% 187M 0s -2024-04-11T17:58:51Z #15 2.610 96200K .......... .......... .......... .......... .......... 75% 112M 0s -2024-04-11T17:58:51Z #15 2.610 96250K .......... .......... .......... .......... .......... 75% 24.1M 0s -2024-04-11T17:58:51Z #15 2.612 96300K .......... .......... .......... .......... .......... 75% 57.2M 0s -2024-04-11T17:58:51Z #15 2.613 96350K .......... .......... .......... .......... .......... 76% 67.1M 0s -2024-04-11T17:58:51Z #15 2.614 96400K .......... .......... .......... .......... .......... 76% 191M 0s -2024-04-11T17:58:51Z #15 2.614 96450K .......... .......... .......... .......... .......... 76% 35.9M 0s -2024-04-11T17:58:51Z #15 2.615 96500K .......... .......... .......... .......... .......... 76% 86.3M 0s -2024-04-11T17:58:51Z #15 2.622 96550K .......... .......... .......... .......... .......... 76% 189M 0s -2024-04-11T17:58:51Z #15 2.622 96600K .......... .......... .......... .......... .......... 76% 169M 0s -2024-04-11T17:58:51Z #15 2.622 96650K .......... .......... .......... .......... .......... 76% 135M 0s -2024-04-11T17:58:51Z #15 2.622 96700K .......... .......... .......... .......... .......... 76% 195M 0s -2024-04-11T17:58:51Z #15 2.622 96750K .......... .......... .......... .......... .......... 76% 95.8M 0s -2024-04-11T17:58:51Z #15 2.622 96800K .......... .......... .......... .......... .......... 76% 99.4M 0s -2024-04-11T17:58:51Z #15 2.622 96850K .......... .......... .......... .......... .......... 76% 29.5M 0s -2024-04-11T17:58:51Z #15 2.622 96900K .......... .......... .......... .......... .......... 76% 117M 0s -2024-04-11T17:58:51Z #15 2.622 96950K .......... .......... .......... .......... .......... 76% 166M 0s -2024-04-11T17:58:51Z #15 2.622 97000K .......... .......... .......... .......... .......... 76% 31.7M 0s -2024-04-11T17:58:51Z #15 2.622 97050K .......... .......... .......... .......... .......... 76% 33.4M 0s -2024-04-11T17:58:51Z #15 2.640 97100K .......... .......... .......... .......... .......... 76% 103M 0s -2024-04-11T17:58:51Z #15 2.640 97150K .......... .......... .......... .......... .......... 76% 154M 0s -2024-04-11T17:58:51Z #15 2.640 97200K .......... .......... .......... .......... .......... 76% 213M 0s -2024-04-11T17:58:51Z #15 2.640 97250K .......... .......... .......... .......... .......... 76% 189M 0s -2024-04-11T17:58:51Z #15 2.640 97300K .......... .......... .......... .......... .......... 76% 193M 0s -2024-04-11T17:58:51Z #15 2.640 97350K .......... .......... .......... .......... .......... 76% 87.9M 0s -2024-04-11T17:58:51Z #15 2.640 97400K .......... .......... .......... .......... .......... 76% 110M 0s -2024-04-11T17:58:51Z #15 2.640 97450K .......... .......... .......... .......... .......... 76% 49.0M 0s -2024-04-11T17:58:51Z #15 2.640 97500K .......... .......... .......... .......... .......... 76% 72.2M 0s -2024-04-11T17:58:51Z #15 2.640 97550K .......... .......... .......... .......... .......... 76% 195M 0s -2024-04-11T17:58:51Z #15 2.640 97600K .......... .......... .......... .......... .......... 77% 160M 0s -2024-04-11T17:58:51Z #15 2.640 97650K .......... .......... .......... .......... .......... 77% 209M 0s -2024-04-11T17:58:51Z #15 2.640 97700K .......... .......... .......... .......... .......... 77% 195M 0s -2024-04-11T17:58:51Z #15 2.640 97750K .......... .......... .......... .......... .......... 77% 99.4M 0s -2024-04-11T17:58:51Z #15 2.640 97800K .......... .......... .......... .......... .......... 77% 164M 0s -2024-04-11T17:58:51Z #15 2.640 97850K .......... .......... .......... .......... .......... 77% 129M 0s -2024-04-11T17:58:51Z #15 2.640 97900K .......... .......... .......... .......... .......... 77% 31.6M 0s -2024-04-11T17:58:51Z #15 2.640 97950K .......... .......... .......... .......... .......... 77% 75.0M 0s -2024-04-11T17:58:51Z #15 2.640 98000K .......... .......... .......... .......... .......... 77% 130M 0s -2024-04-11T17:58:51Z #15 2.640 98050K .......... .......... .......... .......... .......... 77% 173M 0s -2024-04-11T17:58:51Z #15 2.640 98100K .......... .......... .......... .......... .......... 77% 148M 0s -2024-04-11T17:58:51Z #15 2.640 98150K .......... .......... .......... .......... .......... 77% 171M 0s -2024-04-11T17:58:51Z #15 2.640 98200K .......... .......... .......... .......... .......... 77% 22.0M 0s -2024-04-11T17:58:51Z #15 2.640 98250K .......... .......... .......... .......... .......... 77% 44.2M 0s -2024-04-11T17:58:51Z #15 2.640 98300K .......... .......... .......... .......... .......... 77% 51.8M 0s -2024-04-11T17:58:51Z #15 2.640 98350K .......... .......... .......... .......... .......... 77% 43.1M 0s -2024-04-11T17:58:51Z #15 2.640 98400K .......... .......... .......... .......... .......... 77% 68.3M 0s -2024-04-11T17:58:51Z #15 2.640 98450K .......... .......... .......... .......... .......... 77% 106M 0s -2024-04-11T17:58:51Z #15 2.640 98500K .......... .......... .......... .......... .......... 77% 47.5M 0s -2024-04-11T17:58:51Z #15 2.661 98550K .......... .......... .......... .......... .......... 77% 42.0M 0s -2024-04-11T17:58:51Z #15 2.661 98600K .......... .......... .......... .......... .......... 77% 55.1M 0s -2024-04-11T17:58:51Z #15 2.661 98650K .......... .......... .......... .......... .......... 77% 101M 0s -2024-04-11T17:58:51Z #15 2.661 98700K .......... .......... .......... .......... .......... 77% 185M 0s -2024-04-11T17:58:51Z #15 2.661 98750K .......... .......... .......... .......... .......... 77% 193M 0s -2024-04-11T17:58:51Z #15 2.661 98800K .......... .......... .......... .......... .......... 77% 172M 0s -2024-04-11T17:58:51Z #15 2.661 98850K .......... .......... .......... .......... .......... 78% 211M 0s -2024-04-11T17:58:51Z #15 2.661 98900K .......... .......... .......... .......... .......... 78% 50.3M 0s -2024-04-11T17:58:51Z #15 2.661 98950K .......... .......... .......... .......... .......... 78% 159M 0s -2024-04-11T17:58:51Z #15 2.661 99000K .......... .......... .......... .......... .......... 78% 159M 0s -2024-04-11T17:58:51Z #15 2.661 99050K .......... .......... .......... .......... .......... 78% 26.3M 0s -2024-04-11T17:58:51Z #15 2.661 99100K .......... .......... .......... .......... .......... 78% 142M 0s -2024-04-11T17:58:51Z #15 2.661 99150K .......... .......... .......... .......... .......... 78% 156M 0s -2024-04-11T17:58:51Z #15 2.661 99200K .......... .......... .......... .......... .......... 78% 168M 0s -2024-04-11T17:58:51Z #15 2.661 99250K .......... .......... .......... .......... .......... 78% 89.9M 0s -2024-04-11T17:58:51Z #15 2.661 99300K .......... .......... .......... .......... .......... 78% 75.7M 0s -2024-04-11T17:58:51Z #15 2.661 99350K .......... .......... .......... .......... .......... 78% 51.2M 0s -2024-04-11T17:58:51Z #15 2.661 99400K .......... .......... .......... .......... .......... 78% 161M 0s -2024-04-11T17:58:51Z #15 2.661 99450K .......... .......... .......... .......... .......... 78% 199M 0s -2024-04-11T17:58:51Z #15 2.661 99500K .......... .......... .......... .......... .......... 78% 201M 0s -2024-04-11T17:58:51Z #15 2.661 99550K .......... .......... .......... .......... .......... 78% 197M 0s -2024-04-11T17:58:51Z #15 2.661 99600K .......... .......... .......... .......... .......... 78% 84.4M 0s -2024-04-11T17:58:51Z #15 2.661 99650K .......... .......... .......... .......... .......... 78% 140M 0s -2024-04-11T17:58:51Z #15 2.661 99700K .......... .......... .......... .......... .......... 78% 110M 0s -2024-04-11T17:58:51Z #15 2.661 99750K .......... .......... .......... .......... .......... 78% 208M 0s -2024-04-11T17:58:51Z #15 2.661 99800K .......... .......... .......... .......... .......... 78% 194M 0s -2024-04-11T17:58:51Z #15 2.661 99850K .......... .......... .......... .......... .......... 78% 73.7M 0s -2024-04-11T17:58:51Z #15 2.661 99900K .......... .......... .......... .......... .......... 78% 43.3M 0s -2024-04-11T17:58:51Z #15 2.661 99950K .......... .......... .......... .......... .......... 78% 155M 0s -2024-04-11T17:58:51Z #15 2.661 100000K .......... .......... .......... .......... .......... 78% 126M 0s -2024-04-11T17:58:51Z #15 2.661 100050K .......... .......... .......... .......... .......... 78% 93.9M 0s -2024-04-11T17:58:51Z #15 2.661 100100K .......... .......... .......... .......... .......... 78% 72.8M 0s -2024-04-11T17:58:51Z #15 2.661 100150K .......... .......... .......... .......... .......... 79% 169M 0s -2024-04-11T17:58:51Z #15 2.661 100200K .......... .......... .......... .......... .......... 79% 49.4M 0s -2024-04-11T17:58:51Z #15 2.661 100250K .......... .......... .......... .......... .......... 79% 137M 0s -2024-04-11T17:58:51Z #15 2.661 100300K .......... .......... .......... .......... .......... 79% 190M 0s -2024-04-11T17:58:51Z #15 2.661 100350K .......... .......... .......... .......... .......... 79% 218M 0s -2024-04-11T17:58:51Z #15 2.661 100400K .......... .......... .......... .......... .......... 79% 128M 0s -2024-04-11T17:58:51Z #15 2.661 100450K .......... .......... .......... .......... .......... 79% 40.5M 0s -2024-04-11T17:58:51Z #15 2.670 100500K .......... .......... .......... .......... .......... 79% 77.4M 0s -2024-04-11T17:58:51Z #15 2.670 100550K .......... .......... .......... .......... .......... 79% 64.2M 0s -2024-04-11T17:58:51Z #15 2.670 100600K .......... .......... .......... .......... .......... 79% 82.1M 0s -2024-04-11T17:58:51Z #15 2.670 100650K .......... .......... .......... .......... .......... 79% 45.9M 0s -2024-04-11T17:58:51Z #15 2.670 100700K .......... .......... .......... .......... .......... 79% 42.4M 0s -2024-04-11T17:58:51Z #15 2.670 100750K .......... .......... .......... .......... .......... 79% 61.8M 0s -2024-04-11T17:58:51Z #15 2.670 100800K .......... .......... .......... .......... .......... 79% 42.4M 0s -2024-04-11T17:58:51Z #15 2.670 100850K .......... .......... .......... .......... .......... 79% 41.1M 0s -2024-04-11T17:58:51Z #15 2.670 100900K .......... .......... .......... .......... .......... 79% 68.9M 0s -2024-04-11T17:58:51Z #15 2.670 100950K .......... .......... .......... .......... .......... 79% 77.0M 0s -2024-04-11T17:58:51Z #15 2.670 101000K .......... .......... .......... .......... .......... 79% 16.1M 0s -2024-04-11T17:58:51Z #15 2.673 101050K .......... .......... .......... .......... .......... 79% 27.3M 0s -2024-04-11T17:58:51Z #15 2.675 101100K .......... .......... .......... .......... .......... 79% 32.5M 0s -2024-04-11T17:58:51Z #15 2.676 101150K .......... .......... .......... .......... .......... 79% 39.6M 0s -2024-04-11T17:58:51Z #15 2.677 101200K .......... .......... .......... .......... .......... 79% 59.3M 0s -2024-04-11T17:58:51Z #15 2.678 101250K .......... .......... .......... .......... .......... 79% 64.7M 0s -2024-04-11T17:58:51Z #15 2.679 101300K .......... .......... .......... .......... .......... 79% 27.2M 0s -2024-04-11T17:58:51Z #15 2.681 101350K .......... .......... .......... .......... .......... 79% 48.4M 0s -2024-04-11T17:58:51Z #15 2.682 101400K .......... .......... .......... .......... .......... 80% 27.9M 0s -2024-04-11T17:58:51Z #15 2.683 101450K .......... .......... .......... .......... .......... 80% 39.5M 0s -2024-04-11T17:58:51Z #15 2.685 101500K .......... .......... .......... .......... .......... 80% 26.5M 0s -2024-04-11T17:58:51Z #15 2.687 101550K .......... .......... .......... .......... .......... 80% 38.5M 0s -2024-04-11T17:58:51Z #15 2.688 101600K .......... .......... .......... .......... .......... 80% 40.1M 0s -2024-04-11T17:58:51Z #15 2.689 101650K .......... .......... .......... .......... .......... 80% 26.7M 0s -2024-04-11T17:58:51Z #15 2.691 101700K .......... .......... .......... .......... .......... 80% 40.3M 0s -2024-04-11T17:58:51Z #15 2.692 101750K .......... .......... .......... .......... .......... 80% 25.7M 0s -2024-04-11T17:58:51Z #15 2.694 101800K .......... .......... .......... .......... .......... 80% 35.8M 0s -2024-04-11T17:58:51Z #15 2.695 101850K .......... .......... .......... .......... .......... 80% 30.7M 0s -2024-04-11T17:58:51Z #15 2.697 101900K .......... .......... .......... .......... .......... 80% 31.9M 0s -2024-04-11T17:58:51Z #15 2.699 101950K .......... .......... .......... .......... .......... 80% 42.0M 0s -2024-04-11T17:58:51Z #15 2.700 102000K .......... .......... .......... .......... .......... 80% 34.7M 0s -2024-04-11T17:58:51Z #15 2.701 102050K .......... .......... .......... .......... .......... 80% 41.4M 0s -2024-04-11T17:58:51Z #15 2.702 102100K .......... .......... .......... .......... .......... 80% 33.5M 0s -2024-04-11T17:58:51Z #15 2.704 102150K .......... .......... .......... .......... .......... 80% 26.8M 0s -2024-04-11T17:58:51Z #15 2.705 102200K .......... .......... .......... .......... .......... 80% 38.6M 0s -2024-04-11T17:58:51Z #15 2.707 102250K .......... .......... .......... .......... .......... 80% 43.9M 0s -2024-04-11T17:58:51Z #15 2.708 102300K .......... .......... .......... .......... .......... 80% 35.4M 0s -2024-04-11T17:58:51Z #15 2.709 102350K .......... .......... .......... .......... .......... 80% 32.0M 0s -2024-04-11T17:58:51Z #15 2.711 102400K .......... .......... .......... .......... .......... 80% 44.8M 0s -2024-04-11T17:58:51Z #15 2.712 102450K .......... .......... .......... .......... .......... 80% 30.4M 0s -2024-04-11T17:58:51Z #15 2.713 102500K .......... .......... .......... .......... .......... 80% 47.9M 0s -2024-04-11T17:58:51Z #15 2.714 102550K .......... .......... .......... .......... .......... 80% 22.1M 0s -2024-04-11T17:58:51Z #15 2.717 102600K .......... .......... .......... .......... .......... 80% 55.5M 0s -2024-04-11T17:58:51Z #15 2.718 102650K .......... .......... .......... .......... .......... 81% 35.5M 0s -2024-04-11T17:58:51Z #15 2.719 102700K .......... .......... .......... .......... .......... 81% 29.6M 0s -2024-04-11T17:58:51Z #15 2.721 102750K .......... .......... .......... .......... .......... 81% 32.7M 0s -2024-04-11T17:58:51Z #15 2.722 102800K .......... .......... .......... .......... .......... 81% 25.7M 0s -2024-04-11T17:58:51Z #15 2.724 102850K .......... .......... .......... .......... .......... 81% 40.5M 0s -2024-04-11T17:58:51Z #15 2.725 102900K .......... .......... .......... .......... .......... 81% 35.9M 0s -2024-04-11T17:58:51Z #15 2.726 102950K .......... .......... .......... .......... .......... 81% 31.9M 0s -2024-04-11T17:58:51Z #15 2.728 103000K .......... .......... .......... .......... .......... 81% 28.3M 0s -2024-04-11T17:58:51Z #15 2.730 103050K .......... .......... .......... .......... .......... 81% 28.3M 0s -2024-04-11T17:58:51Z #15 2.731 103100K .......... .......... .......... .......... .......... 81% 44.2M 0s -2024-04-11T17:58:51Z #15 2.733 103150K .......... .......... .......... .......... .......... 81% 43.2M 0s -2024-04-11T17:58:51Z #15 2.734 103200K .......... .......... .......... .......... .......... 81% 27.4M 0s -2024-04-11T17:58:51Z #15 2.735 103250K .......... .......... .......... .......... .......... 81% 33.8M 0s -2024-04-11T17:58:51Z #15 2.737 103300K .......... .......... .......... .......... .......... 81% 35.5M 0s -2024-04-11T17:58:51Z #15 2.738 103350K .......... .......... .......... .......... .......... 81% 37.6M 0s -2024-04-11T17:58:51Z #15 2.740 103400K .......... .......... .......... .......... .......... 81% 45.8M 0s -2024-04-11T17:58:51Z #15 2.741 103450K .......... .......... .......... .......... .......... 81% 35.6M 0s -2024-04-11T17:58:51Z #15 2.742 103500K .......... .......... .......... .......... .......... 81% 32.1M 0s -2024-04-11T17:58:51Z #15 2.744 103550K .......... .......... .......... .......... .......... 81% 33.1M 0s -2024-04-11T17:58:51Z #15 2.745 103600K .......... .......... .......... .......... .......... 81% 25.4M 0s -2024-04-11T17:58:51Z #15 2.747 103650K .......... .......... .......... .......... .......... 81% 37.2M 0s -2024-04-11T17:58:51Z #15 2.749 103700K .......... .......... .......... .......... .......... 81% 40.2M 0s -2024-04-11T17:58:51Z #15 2.750 103750K .......... .......... .......... .......... .......... 81% 33.1M 0s -2024-04-11T17:58:51Z #15 2.751 103800K .......... .......... .......... .......... .......... 81% 28.4M 0s -2024-04-11T17:58:51Z #15 2.753 103850K .......... .......... .......... .......... .......... 81% 28.5M 0s -2024-04-11T17:58:51Z #15 2.755 103900K .......... .......... .......... .......... .......... 81% 40.9M 0s -2024-04-11T17:58:51Z #15 2.756 103950K .......... .......... .......... .......... .......... 82% 29.3M 0s -2024-04-11T17:58:51Z #15 2.758 104000K .......... .......... .......... .......... .......... 82% 32.7M 0s -2024-04-11T17:58:51Z #15 2.759 104050K .......... .......... .......... .......... .......... 82% 41.7M 0s -2024-04-11T17:58:51Z #15 2.760 104100K .......... .......... .......... .......... .......... 82% 32.7M 0s -2024-04-11T17:58:51Z #15 2.761 104150K .......... .......... .......... .......... .......... 82% 41.4M 0s -2024-04-11T17:58:51Z #15 2.763 104200K .......... .......... .......... .......... .......... 82% 43.3M 0s -2024-04-11T17:58:51Z #15 2.764 104250K .......... .......... .......... .......... .......... 82% 27.8M 0s -2024-04-11T17:58:51Z #15 2.766 104300K .......... .......... .......... .......... .......... 82% 37.3M 0s -2024-04-11T17:58:51Z #15 2.767 104350K .......... .......... .......... .......... .......... 82% 24.6M 0s -2024-04-11T17:58:51Z #15 2.769 104400K .......... .......... .......... .......... .......... 82% 32.0M 0s -2024-04-11T17:58:51Z #15 2.770 104450K .......... .......... .......... .......... .......... 82% 30.7M 0s -2024-04-11T17:58:51Z #15 2.772 104500K .......... .......... .......... .......... .......... 82% 41.1M 0s -2024-04-11T17:58:51Z #15 2.773 104550K .......... .......... .......... .......... .......... 82% 34.0M 0s -2024-04-11T17:58:51Z #15 2.775 104600K .......... .......... .......... .......... .......... 82% 36.6M 0s -2024-04-11T17:58:51Z #15 2.776 104650K .......... .......... .......... .......... .......... 82% 24.1M 0s -2024-04-11T17:58:51Z #15 2.778 104700K .......... .......... .......... .......... .......... 82% 29.1M 0s -2024-04-11T17:58:51Z #15 2.780 104750K .......... .......... .......... .......... .......... 82% 47.8M 0s -2024-04-11T17:58:51Z #15 2.780 104800K .......... .......... .......... .......... .......... 82% 41.3M 0s -2024-04-11T17:58:51Z #15 2.782 104850K .......... .......... .......... .......... .......... 82% 139M 0s -2024-04-11T17:58:51Z #15 2.782 104900K .......... .......... .......... .......... .......... 82% 28.6M 0s -2024-04-11T17:58:51Z #15 2.784 104950K .......... .......... .......... .......... .......... 82% 31.4M 0s -2024-04-11T17:58:51Z #15 2.786 105000K .......... .......... .......... .......... .......... 82% 22.6M 0s -2024-04-11T17:58:51Z #15 2.788 105050K .......... .......... .......... .......... .......... 82% 49.5M 0s -2024-04-11T17:58:51Z #15 2.789 105100K .......... .......... .......... .......... .......... 82% 34.6M 0s -2024-04-11T17:58:51Z #15 2.790 105150K .......... .......... .......... .......... .......... 82% 35.8M 0s -2024-04-11T17:58:51Z #15 2.791 105200K .......... .......... .......... .......... .......... 83% 33.1M 0s -2024-04-11T17:58:51Z #15 2.793 105250K .......... .......... .......... .......... .......... 83% 35.7M 0s -2024-04-11T17:58:51Z #15 2.794 105300K .......... .......... .......... .......... .......... 83% 40.5M 0s -2024-04-11T17:58:51Z #15 2.795 105350K .......... .......... .......... .......... .......... 83% 24.7M 0s -2024-04-11T17:58:51Z #15 2.797 105400K .......... .......... .......... .......... .......... 83% 42.0M 0s -2024-04-11T17:58:51Z #15 2.799 105450K .......... .......... .......... .......... .......... 83% 38.8M 0s -2024-04-11T17:58:51Z #15 2.800 105500K .......... .......... .......... .......... .......... 83% 49.9M 0s -2024-04-11T17:58:51Z #15 2.801 105550K .......... .......... .......... .......... .......... 83% 27.5M 0s -2024-04-11T17:58:51Z #15 2.803 105600K .......... .......... .......... .......... .......... 83% 27.7M 0s -2024-04-11T17:58:52Z #15 2.805 105650K .......... .......... .......... .......... .......... 83% 48.5M 0s -2024-04-11T17:58:52Z #15 2.805 105700K .......... .......... .......... .......... .......... 83% 25.0M 0s -2024-04-11T17:58:52Z #15 2.807 105750K .......... .......... .......... .......... .......... 83% 63.4M 0s -2024-04-11T17:58:52Z #15 2.808 105800K .......... .......... .......... .......... .......... 83% 19.5M 0s -2024-04-11T17:58:52Z #15 2.810 105850K .......... .......... .......... .......... .......... 83% 35.6M 0s -2024-04-11T17:58:52Z #15 2.812 105900K .......... .......... .......... .......... .......... 83% 34.4M 0s -2024-04-11T17:58:52Z #15 2.813 105950K .......... .......... .......... .......... .......... 83% 27.9M 0s -2024-04-11T17:58:52Z #15 2.815 106000K .......... .......... .......... .......... .......... 83% 46.1M 0s -2024-04-11T17:58:52Z #15 2.816 106050K .......... .......... .......... .......... .......... 83% 25.0M 0s -2024-04-11T17:58:52Z #15 2.818 106100K .......... .......... .......... .......... .......... 83% 54.4M 0s -2024-04-11T17:58:52Z #15 2.819 106150K .......... .......... .......... .......... .......... 83% 78.1M 0s -2024-04-11T17:58:52Z #15 2.820 106200K .......... .......... .......... .......... .......... 83% 26.9M 0s -2024-04-11T17:58:52Z #15 2.822 106250K .......... .......... .......... .......... .......... 83% 30.9M 0s -2024-04-11T17:58:52Z #15 2.823 106300K .......... .......... .......... .......... .......... 83% 40.0M 0s -2024-04-11T17:58:52Z #15 2.824 106350K .......... .......... .......... .......... .......... 83% 27.6M 0s -2024-04-11T17:58:52Z #15 2.826 106400K .......... .......... .......... .......... .......... 83% 31.1M 0s -2024-04-11T17:58:52Z #15 2.828 106450K .......... .......... .......... .......... .......... 84% 34.6M 0s -2024-04-11T17:58:52Z #15 2.829 106500K .......... .......... .......... .......... .......... 84% 30.0M 0s -2024-04-11T17:58:52Z #15 2.831 106550K .......... .......... .......... .......... .......... 84% 46.1M 0s -2024-04-11T17:58:52Z #15 2.832 106600K .......... .......... .......... .......... .......... 84% 28.7M 0s -2024-04-11T17:58:52Z #15 2.833 106650K .......... .......... .......... .......... .......... 84% 23.0M 0s -2024-04-11T17:58:52Z #15 2.835 106700K .......... .......... .......... .......... .......... 84% 32.5M 0s -2024-04-11T17:58:52Z #15 2.837 106750K .......... .......... .......... .......... .......... 84% 26.7M 0s -2024-04-11T17:58:52Z #15 2.839 106800K .......... .......... .......... .......... .......... 84% 31.2M 0s -2024-04-11T17:58:52Z #15 2.840 106850K .......... .......... .......... .......... .......... 84% 32.7M 0s -2024-04-11T17:58:52Z #15 2.842 106900K .......... .......... .......... .......... .......... 84% 28.2M 0s -2024-04-11T17:58:52Z #15 2.844 106950K .......... .......... .......... .......... .......... 84% 159M 0s -2024-04-11T17:58:52Z #15 2.844 107000K .......... .......... .......... .......... .......... 84% 21.8M 0s -2024-04-11T17:58:52Z #15 2.846 107050K .......... .......... .......... .......... .......... 84% 49.2M 0s -2024-04-11T17:58:52Z #15 2.848 107100K .......... .......... .......... .......... .......... 84% 29.9M 0s -2024-04-11T17:58:52Z #15 2.849 107150K .......... .......... .......... .......... .......... 84% 27.2M 0s -2024-04-11T17:58:52Z #15 2.850 107200K .......... .......... .......... .......... .......... 84% 39.4M 0s -2024-04-11T17:58:52Z #15 2.852 107250K .......... .......... .......... .......... .......... 84% 81.1M 0s -2024-04-11T17:58:52Z #15 2.852 107300K .......... .......... .......... .......... .......... 84% 19.2M 0s -2024-04-11T17:58:52Z #15 2.855 107350K .......... .......... .......... .......... .......... 84% 46.8M 0s -2024-04-11T17:58:52Z #15 2.856 107400K .......... .......... .......... .......... .......... 84% 31.2M 0s -2024-04-11T17:58:52Z #15 2.857 107450K .......... .......... .......... .......... .......... 84% 45.6M 0s -2024-04-11T17:58:52Z #15 2.859 107500K .......... .......... .......... .......... .......... 84% 42.2M 0s -2024-04-11T17:58:52Z #15 2.860 107550K .......... .......... .......... .......... .......... 84% 29.2M 0s -2024-04-11T17:58:52Z #15 2.861 107600K .......... .......... .......... .......... .......... 84% 43.2M 0s -2024-04-11T17:58:52Z #15 2.863 107650K .......... .......... .......... .......... .......... 84% 28.3M 0s -2024-04-11T17:58:52Z #15 2.864 107700K .......... .......... .......... .......... .......... 84% 31.2M 0s -2024-04-11T17:58:52Z #15 2.866 107750K .......... .......... .......... .......... .......... 85% 20.6M 0s -2024-04-11T17:58:52Z #15 2.868 107800K .......... .......... .......... .......... .......... 85% 33.4M 0s -2024-04-11T17:58:52Z #15 2.870 107850K .......... .......... .......... .......... .......... 85% 143M 0s -2024-04-11T17:58:52Z #15 2.870 107900K .......... .......... .......... .......... .......... 85% 31.6M 0s -2024-04-11T17:58:52Z #15 2.871 107950K .......... .......... .......... .......... .......... 85% 30.1M 0s -2024-04-11T17:58:52Z #15 2.873 108000K .......... .......... .......... .......... .......... 85% 37.9M 0s -2024-04-11T17:58:52Z #15 2.875 108050K .......... .......... .......... .......... .......... 85% 21.7M 0s -2024-04-11T17:58:52Z #15 2.877 108100K .......... .......... .......... .......... .......... 85% 49.8M 0s -2024-04-11T17:58:52Z #15 2.878 108150K .......... .......... .......... .......... .......... 85% 39.0M 0s -2024-04-11T17:58:52Z #15 2.879 108200K .......... .......... .......... .......... .......... 85% 21.5M 0s -2024-04-11T17:58:52Z #15 2.881 108250K .......... .......... .......... .......... .......... 85% 45.0M 0s -2024-04-11T17:58:52Z #15 2.882 108300K .......... .......... .......... .......... .......... 85% 34.0M 0s -2024-04-11T17:58:52Z #15 2.884 108350K .......... .......... .......... .......... .......... 85% 29.0M 0s -2024-04-11T17:58:52Z #15 2.885 108400K .......... .......... .......... .......... .......... 85% 44.3M 0s -2024-04-11T17:58:52Z #15 2.887 108450K .......... .......... .......... .......... .......... 85% 41.2M 0s -2024-04-11T17:58:52Z #15 2.888 108500K .......... .......... .......... .......... .......... 85% 22.4M 0s -2024-04-11T17:58:52Z #15 2.890 108550K .......... .......... .......... .......... .......... 85% 57.1M 0s -2024-04-11T17:58:52Z #15 2.891 108600K .......... .......... .......... .......... .......... 85% 21.7M 0s -2024-04-11T17:58:52Z #15 2.893 108650K .......... .......... .......... .......... .......... 85% 32.7M 0s -2024-04-11T17:58:52Z #15 2.894 108700K .......... .......... .......... .......... .......... 85% 45.6M 0s -2024-04-11T17:58:52Z #15 2.896 108750K .......... .......... .......... .......... .......... 85% 21.8M 0s -2024-04-11T17:58:52Z #15 2.898 108800K .......... .......... .......... .......... .......... 85% 46.2M 0s -2024-04-11T17:58:52Z #15 2.899 108850K .......... .......... .......... .......... .......... 85% 23.3M 0s -2024-04-11T17:58:52Z #15 2.901 108900K .......... .......... .......... .......... .......... 85% 36.5M 0s -2024-04-11T17:58:52Z #15 2.902 108950K .......... .......... .......... .......... .......... 85% 67.0M 0s -2024-04-11T17:58:52Z #15 2.904 109000K .......... .......... .......... .......... .......... 86% 33.4M 0s -2024-04-11T17:58:52Z #15 2.904 109050K .......... .......... .......... .......... .......... 86% 24.0M 0s -2024-04-11T17:58:52Z #15 2.907 109100K .......... .......... .......... .......... .......... 86% 29.8M 0s -2024-04-11T17:58:52Z #15 2.908 109150K .......... .......... .......... .......... .......... 86% 49.8M 0s -2024-04-11T17:58:52Z #15 2.909 109200K .......... .......... .......... .......... .......... 86% 23.2M 0s -2024-04-11T17:58:52Z #15 2.911 109250K .......... .......... .......... .......... .......... 86% 25.9M 0s -2024-04-11T17:58:52Z #15 2.913 109300K .......... .......... .......... .......... .......... 86% 40.7M 0s -2024-04-11T17:58:52Z #15 2.915 109350K .......... .......... .......... .......... .......... 86% 65.7M 0s -2024-04-11T17:58:52Z #15 2.915 109400K .......... .......... .......... .......... .......... 86% 26.4M 0s -2024-04-11T17:58:52Z #15 2.917 109450K .......... .......... .......... .......... .......... 86% 29.2M 0s -2024-04-11T17:58:52Z #15 2.918 109500K .......... .......... .......... .......... .......... 86% 60.9M 0s -2024-04-11T17:58:52Z #15 2.919 109550K .......... .......... .......... .......... .......... 86% 38.2M 0s -2024-04-11T17:58:52Z #15 2.921 109600K .......... .......... .......... .......... .......... 86% 32.1M 0s -2024-04-11T17:58:52Z #15 2.922 109650K .......... .......... .......... .......... .......... 86% 60.9M 0s -2024-04-11T17:58:52Z #15 2.923 109700K .......... .......... .......... .......... .......... 86% 21.7M 0s -2024-04-11T17:58:52Z #15 2.925 109750K .......... .......... .......... .......... .......... 86% 30.0M 0s -2024-04-11T17:58:52Z #15 2.928 109800K .......... .......... .......... .......... .......... 86% 19.1M 0s -2024-04-11T17:58:52Z #15 2.929 109850K .......... .......... .......... .......... .......... 86% 35.4M 0s -2024-04-11T17:58:52Z #15 2.931 109900K .......... .......... .......... .......... .......... 86% 46.7M 0s -2024-04-11T17:58:52Z #15 2.932 109950K .......... .......... .......... .......... .......... 86% 26.5M 0s -2024-04-11T17:58:52Z #15 2.934 110000K .......... .......... .......... .......... .......... 86% 27.8M 0s -2024-04-11T17:58:52Z #15 2.936 110050K .......... .......... .......... .......... .......... 86% 37.7M 0s -2024-04-11T17:58:52Z #15 2.937 110100K .......... .......... .......... .......... .......... 86% 33.7M 0s -2024-04-11T17:58:52Z #15 2.938 110150K .......... .......... .......... .......... .......... 86% 44.6M 0s -2024-04-11T17:58:52Z #15 2.939 110200K .......... .......... .......... .......... .......... 86% 36.6M 0s -2024-04-11T17:58:52Z #15 2.941 110250K .......... .......... .......... .......... .......... 86% 26.8M 0s -2024-04-11T17:58:52Z #15 2.943 110300K .......... .......... .......... .......... .......... 87% 63.7M 0s -2024-04-11T17:58:52Z #15 2.943 110350K .......... .......... .......... .......... .......... 87% 29.4M 0s -2024-04-11T17:58:52Z #15 2.945 110400K .......... .......... .......... .......... .......... 87% 40.2M 0s -2024-04-11T17:58:52Z #15 2.947 110450K .......... .......... .......... .......... .......... 87% 29.1M 0s -2024-04-11T17:58:52Z #15 2.948 110500K .......... .......... .......... .......... .......... 87% 53.2M 0s -2024-04-11T17:58:52Z #15 2.949 110550K .......... .......... .......... .......... .......... 87% 30.1M 0s -2024-04-11T17:58:52Z #15 2.950 110600K .......... .......... .......... .......... .......... 87% 25.7M 0s -2024-04-11T17:58:52Z #15 2.952 110650K .......... .......... .......... .......... .......... 87% 43.9M 0s -2024-04-11T17:58:52Z #15 2.953 110700K .......... .......... .......... .......... .......... 87% 33.9M 0s -2024-04-11T17:58:52Z #15 2.955 110750K .......... .......... .......... .......... .......... 87% 39.8M 0s -2024-04-11T17:58:52Z #15 2.956 110800K .......... .......... .......... .......... .......... 87% 57.0M 0s -2024-04-11T17:58:52Z #15 2.957 110850K .......... .......... .......... .......... .......... 87% 29.0M 0s -2024-04-11T17:58:52Z #15 2.959 110900K .......... .......... .......... .......... .......... 87% 36.2M 0s -2024-04-11T17:58:52Z #15 2.960 110950K .......... .......... .......... .......... .......... 87% 38.2M 0s -2024-04-11T17:58:52Z #15 2.962 111000K .......... .......... .......... .......... .......... 87% 29.5M 0s -2024-04-11T17:58:52Z #15 2.963 111050K .......... .......... .......... .......... .......... 87% 28.5M 0s -2024-04-11T17:58:52Z #15 2.965 111100K .......... .......... .......... .......... .......... 87% 38.5M 0s -2024-04-11T17:58:52Z #15 2.966 111150K .......... .......... .......... .......... .......... 87% 31.7M 0s -2024-04-11T17:58:52Z #15 2.967 111200K .......... .......... .......... .......... .......... 87% 34.3M 0s -2024-04-11T17:58:52Z #15 2.969 111250K .......... .......... .......... .......... .......... 87% 20.5M 0s -2024-04-11T17:58:52Z #15 2.971 111300K .......... .......... .......... .......... .......... 87% 33.4M 0s -2024-04-11T17:58:52Z #15 2.973 111350K .......... .......... .......... .......... .......... 87% 40.4M 0s -2024-04-11T17:58:52Z #15 2.974 111400K .......... .......... .......... .......... .......... 87% 24.0M 0s -2024-04-11T17:58:52Z #15 2.976 111450K .......... .......... .......... .......... .......... 87% 30.8M 0s -2024-04-11T17:58:52Z #15 2.977 111500K .......... .......... .......... .......... .......... 87% 44.6M 0s -2024-04-11T17:58:52Z #15 2.979 111550K .......... .......... .......... .......... .......... 88% 28.3M 0s -2024-04-11T17:58:52Z #15 2.981 111600K .......... .......... .......... .......... .......... 88% 31.4M 0s -2024-04-11T17:58:52Z #15 2.982 111650K .......... .......... .......... .......... .......... 88% 23.7M 0s -2024-04-11T17:58:52Z #15 2.984 111700K .......... .......... .......... .......... .......... 88% 31.2M 0s -2024-04-11T17:58:52Z #15 2.986 111750K .......... .......... .......... .......... .......... 88% 24.0M 0s -2024-04-11T17:58:52Z #15 2.988 111800K .......... .......... .......... .......... .......... 88% 56.8M 0s -2024-04-11T17:58:52Z #15 2.988 111850K .......... .......... .......... .......... .......... 88% 32.9M 0s -2024-04-11T17:58:52Z #15 2.993 111900K .......... .......... .......... .......... .......... 88% 24.6M 0s -2024-04-11T17:58:52Z #15 2.993 111950K .......... .......... .......... .......... .......... 88% 95.8M 0s -2024-04-11T17:58:52Z #15 2.993 112000K .......... .......... .......... .......... .......... 88% 201M 0s -2024-04-11T17:58:52Z #15 2.993 112050K .......... .......... .......... .......... .......... 88% 176M 0s -2024-04-11T17:58:52Z #15 2.993 112100K .......... .......... .......... .......... .......... 88% 144M 0s -2024-04-11T17:58:52Z #15 2.994 112150K .......... .......... .......... .......... .......... 88% 11.5M 0s -2024-04-11T17:58:52Z #15 2.997 112200K .......... .......... .......... .......... .......... 88% 38.6M 0s -2024-04-11T17:58:52Z #15 2.999 112250K .......... .......... .......... .......... .......... 88% 24.5M 0s -2024-04-11T17:58:52Z #15 3.002 112300K .......... .......... .......... .......... .......... 88% 23.1M 0s -2024-04-11T17:58:52Z #15 3.003 112350K .......... .......... .......... .......... .......... 88% 44.4M 0s -2024-04-11T17:58:52Z #15 3.004 112400K .......... .......... .......... .......... .......... 88% 26.6M 0s -2024-04-11T17:58:52Z #15 3.006 112450K .......... .......... .......... .......... .......... 88% 29.9M 0s -2024-04-11T17:58:52Z #15 3.007 112500K .......... .......... .......... .......... .......... 88% 38.4M 0s -2024-04-11T17:58:52Z #15 3.009 112550K .......... .......... .......... .......... .......... 88% 30.9M 0s -2024-04-11T17:58:52Z #15 3.010 112600K .......... .......... .......... .......... .......... 88% 49.5M 0s -2024-04-11T17:58:52Z #15 3.011 112650K .......... .......... .......... .......... .......... 88% 35.2M 0s -2024-04-11T17:58:52Z #15 3.013 112700K .......... .......... .......... .......... .......... 88% 25.8M 0s -2024-04-11T17:58:52Z #15 3.015 112750K .......... .......... .......... .......... .......... 88% 36.3M 0s -2024-04-11T17:58:52Z #15 3.016 112800K .......... .......... .......... .......... .......... 89% 36.4M 0s -2024-04-11T17:58:52Z #15 3.017 112850K .......... .......... .......... .......... .......... 89% 28.6M 0s -2024-04-11T17:58:52Z #15 3.019 112900K .......... .......... .......... .......... .......... 89% 31.1M 0s -2024-04-11T17:58:52Z #15 3.020 112950K .......... .......... .......... .......... .......... 89% 36.7M 0s -2024-04-11T17:58:52Z #15 3.022 113000K .......... .......... .......... .......... .......... 89% 59.4M 0s -2024-04-11T17:58:52Z #15 3.023 113050K .......... .......... .......... .......... .......... 89% 25.8M 0s -2024-04-11T17:58:52Z #15 3.025 113100K .......... .......... .......... .......... .......... 89% 45.3M 0s -2024-04-11T17:58:52Z #15 3.026 113150K .......... .......... .......... .......... .......... 89% 39.7M 0s -2024-04-11T17:58:52Z #15 3.027 113200K .......... .......... .......... .......... .......... 89% 22.3M 0s -2024-04-11T17:58:52Z #15 3.029 113250K .......... .......... .......... .......... .......... 89% 40.8M 0s -2024-04-11T17:58:52Z #15 3.030 113300K .......... .......... .......... .......... .......... 89% 147M 0s -2024-04-11T17:58:52Z #15 3.030 113350K .......... .......... .......... .......... .......... 89% 26.7M 0s -2024-04-11T17:58:52Z #15 3.032 113400K .......... .......... .......... .......... .......... 89% 34.2M 0s -2024-04-11T17:58:52Z #15 3.034 113450K .......... .......... .......... .......... .......... 89% 30.4M 0s -2024-04-11T17:58:52Z #15 3.036 113500K .......... .......... .......... .......... .......... 89% 46.8M 0s -2024-04-11T17:58:52Z #15 3.037 113550K .......... .......... .......... .......... .......... 89% 15.8M 0s -2024-04-11T17:58:52Z #15 3.039 113600K .......... .......... .......... .......... .......... 89% 84.7M 0s -2024-04-11T17:58:52Z #15 3.041 113650K .......... .......... .......... .......... .......... 89% 21.1M 0s -2024-04-11T17:58:52Z #15 3.043 113700K .......... .......... .......... .......... .......... 89% 38.3M 0s -2024-04-11T17:58:52Z #15 3.044 113750K .......... .......... .......... .......... .......... 89% 121M 0s -2024-04-11T17:58:52Z #15 3.044 113800K .......... .......... .......... .......... .......... 89% 25.3M 0s -2024-04-11T17:58:52Z #15 3.046 113850K .......... .......... .......... .......... .......... 89% 27.4M 0s -2024-04-11T17:58:52Z #15 3.048 113900K .......... .......... .......... .......... .......... 89% 115M 0s -2024-04-11T17:58:52Z #15 3.048 113950K .......... .......... .......... .......... .......... 89% 20.1M 0s -2024-04-11T17:58:52Z #15 3.051 114000K .......... .......... .......... .......... .......... 89% 37.0M 0s -2024-04-11T17:58:52Z #15 3.052 114050K .......... .......... .......... .......... .......... 89% 27.3M 0s -2024-04-11T17:58:52Z #15 3.054 114100K .......... .......... .......... .......... .......... 90% 25.2M 0s -2024-04-11T17:58:52Z #15 3.056 114150K .......... .......... .......... .......... .......... 90% 53.0M 0s -2024-04-11T17:58:52Z #15 3.057 114200K .......... .......... .......... .......... .......... 90% 33.7M 0s -2024-04-11T17:58:52Z #15 3.058 114250K .......... .......... .......... .......... .......... 90% 22.4M 0s -2024-04-11T17:58:52Z #15 3.060 114300K .......... .......... .......... .......... .......... 90% 32.9M 0s -2024-04-11T17:58:52Z #15 3.062 114350K .......... .......... .......... .......... .......... 90% 23.3M 0s -2024-04-11T17:58:52Z #15 3.064 114400K .......... .......... .......... .......... .......... 90% 63.2M 0s -2024-04-11T17:58:52Z #15 3.065 114450K .......... .......... .......... .......... .......... 90% 31.1M 0s -2024-04-11T17:58:52Z #15 3.066 114500K .......... .......... .......... .......... .......... 90% 26.2M 0s -2024-04-11T17:58:52Z #15 3.068 114550K .......... .......... .......... .......... .......... 90% 34.1M 0s -2024-04-11T17:58:52Z #15 3.070 114600K .......... .......... .......... .......... .......... 90% 29.4M 0s -2024-04-11T17:58:52Z #15 3.071 114650K .......... .......... .......... .......... .......... 90% 44.6M 0s -2024-04-11T17:58:52Z #15 3.072 114700K .......... .......... .......... .......... .......... 90% 28.0M 0s -2024-04-11T17:58:52Z #15 3.074 114750K .......... .......... .......... .......... .......... 90% 55.1M 0s -2024-04-11T17:58:52Z #15 3.075 114800K .......... .......... .......... .......... .......... 90% 53.1M 0s -2024-04-11T17:58:52Z #15 3.076 114850K .......... .......... .......... .......... .......... 90% 55.7M 0s -2024-04-11T17:58:52Z #15 3.077 114900K .......... .......... .......... .......... .......... 90% 24.4M 0s -2024-04-11T17:58:52Z #15 3.079 114950K .......... .......... .......... .......... .......... 90% 48.7M 0s -2024-04-11T17:58:52Z #15 3.080 115000K .......... .......... .......... .......... .......... 90% 48.7M 0s -2024-04-11T17:58:52Z #15 3.081 115050K .......... .......... .......... .......... .......... 90% 66.3M 0s -2024-04-11T17:58:52Z #15 3.082 115100K .......... .......... .......... .......... .......... 90% 19.6M 0s -2024-04-11T17:58:52Z #15 3.084 115150K .......... .......... .......... .......... .......... 90% 60.4M 0s -2024-04-11T17:58:52Z #15 3.085 115200K .......... .......... .......... .......... .......... 90% 65.8M 0s -2024-04-11T17:58:52Z #15 3.085 115250K .......... .......... .......... .......... .......... 90% 21.3M 0s -2024-04-11T17:58:52Z #15 3.088 115300K .......... .......... .......... .......... .......... 90% 48.3M 0s -2024-04-11T17:58:52Z #15 3.089 115350K .......... .......... .......... .......... .......... 91% 24.3M 0s -2024-04-11T17:58:52Z #15 3.091 115400K .......... .......... .......... .......... .......... 91% 149M 0s -2024-04-11T17:58:52Z #15 3.091 115450K .......... .......... .......... .......... .......... 91% 30.4M 0s -2024-04-11T17:58:52Z #15 3.093 115500K .......... .......... .......... .......... .......... 91% 41.4M 0s -2024-04-11T17:58:52Z #15 3.094 115550K .......... .......... .......... .......... .......... 91% 41.7M 0s -2024-04-11T17:58:52Z #15 3.095 115600K .......... .......... .......... .......... .......... 91% 26.8M 0s -2024-04-11T17:58:52Z #15 3.097 115650K .......... .......... .......... .......... .......... 91% 34.0M 0s -2024-04-11T17:58:52Z #15 3.098 115700K .......... .......... .......... .......... .......... 91% 62.5M 0s -2024-04-11T17:58:52Z #15 3.099 115750K .......... .......... .......... .......... .......... 91% 34.9M 0s -2024-04-11T17:58:52Z #15 3.100 115800K .......... .......... .......... .......... .......... 91% 33.2M 0s -2024-04-11T17:58:52Z #15 3.102 115850K .......... .......... .......... .......... .......... 91% 73.8M 0s -2024-04-11T17:58:52Z #15 3.103 115900K .......... .......... .......... .......... .......... 91% 26.2M 0s -2024-04-11T17:58:52Z #15 3.105 115950K .......... .......... .......... .......... .......... 91% 40.7M 0s -2024-04-11T17:58:52Z #15 3.106 116000K .......... .......... .......... .......... .......... 91% 46.8M 0s -2024-04-11T17:58:52Z #15 3.107 116050K .......... .......... .......... .......... .......... 91% 169M 0s -2024-04-11T17:58:52Z #15 3.107 116100K .......... .......... .......... .......... .......... 91% 32.8M 0s -2024-04-11T17:58:52Z #15 3.109 116150K .......... .......... .......... .......... .......... 91% 31.6M 0s -2024-04-11T17:58:52Z #15 3.110 116200K .......... .......... .......... .......... .......... 91% 52.6M 0s -2024-04-11T17:58:52Z #15 3.111 116250K .......... .......... .......... .......... .......... 91% 31.0M 0s -2024-04-11T17:58:52Z #15 3.113 116300K .......... .......... .......... .......... .......... 91% 28.9M 0s -2024-04-11T17:58:52Z #15 3.114 116350K .......... .......... .......... .......... .......... 91% 34.2M 0s -2024-04-11T17:58:52Z #15 3.116 116400K .......... .......... .......... .......... .......... 91% 30.0M 0s -2024-04-11T17:58:52Z #15 3.118 116450K .......... .......... .......... .......... .......... 91% 23.1M 0s -2024-04-11T17:58:52Z #15 3.120 116500K .......... .......... .......... .......... .......... 91% 38.4M 0s -2024-04-11T17:58:52Z #15 3.121 116550K .......... .......... .......... .......... .......... 91% 38.1M 0s -2024-04-11T17:58:52Z #15 3.122 116600K .......... .......... .......... .......... .......... 92% 26.3M 0s -2024-04-11T17:58:52Z #15 3.124 116650K .......... .......... .......... .......... .......... 92% 38.9M 0s -2024-04-11T17:58:52Z #15 3.125 116700K .......... .......... .......... .......... .......... 92% 36.3M 0s -2024-04-11T17:58:52Z #15 3.126 116750K .......... .......... .......... .......... .......... 92% 40.7M 0s -2024-04-11T17:58:52Z #15 3.128 116800K .......... .......... .......... .......... .......... 92% 143M 0s -2024-04-11T17:58:52Z #15 3.128 116850K .......... .......... .......... .......... .......... 92% 17.8M 0s -2024-04-11T17:58:52Z #15 3.131 116900K .......... .......... .......... .......... .......... 92% 51.4M 0s -2024-04-11T17:58:52Z #15 3.132 116950K .......... .......... .......... .......... .......... 92% 49.7M 0s -2024-04-11T17:58:52Z #15 3.133 117000K .......... .......... .......... .......... .......... 92% 26.5M 0s -2024-04-11T17:58:52Z #15 3.135 117050K .......... .......... .......... .......... .......... 92% 37.1M 0s -2024-04-11T17:58:52Z #15 3.136 117100K .......... .......... .......... .......... .......... 92% 48.3M 0s -2024-04-11T17:58:52Z #15 3.137 117150K .......... .......... .......... .......... .......... 92% 36.8M 0s -2024-04-11T17:58:52Z #15 3.138 117200K .......... .......... .......... .......... .......... 92% 41.5M 0s -2024-04-11T17:58:52Z #15 3.140 117250K .......... .......... .......... .......... .......... 92% 28.5M 0s -2024-04-11T17:58:52Z #15 3.141 117300K .......... .......... .......... .......... .......... 92% 95.9M 0s -2024-04-11T17:58:52Z #15 3.142 117350K .......... .......... .......... .......... .......... 92% 17.8M 0s -2024-04-11T17:58:52Z #15 3.144 117400K .......... .......... .......... .......... .......... 92% 37.3M 0s -2024-04-11T17:58:52Z #15 3.146 117450K .......... .......... .......... .......... .......... 92% 65.6M 0s -2024-04-11T17:58:52Z #15 3.147 117500K .......... .......... .......... .......... .......... 92% 27.1M 0s -2024-04-11T17:58:52Z #15 3.148 117550K .......... .......... .......... .......... .......... 92% 31.7M 0s -2024-04-11T17:58:52Z #15 3.150 117600K .......... .......... .......... .......... .......... 92% 36.4M 0s -2024-04-11T17:58:52Z #15 3.151 117650K .......... .......... .......... .......... .......... 92% 25.9M 0s -2024-04-11T17:58:52Z #15 3.153 117700K .......... .......... .......... .......... .......... 92% 49.0M 0s -2024-04-11T17:58:52Z #15 3.154 117750K .......... .......... .......... .......... .......... 92% 33.4M 0s -2024-04-11T17:58:52Z #15 3.155 117800K .......... .......... .......... .......... .......... 92% 29.2M 0s -2024-04-11T17:58:52Z #15 3.157 117850K .......... .......... .......... .......... .......... 92% 44.0M 0s -2024-04-11T17:58:52Z #15 3.158 117900K .......... .......... .......... .......... .......... 93% 32.7M 0s -2024-04-11T17:58:52Z #15 3.160 117950K .......... .......... .......... .......... .......... 93% 32.8M 0s -2024-04-11T17:58:52Z #15 3.161 118000K .......... .......... .......... .......... .......... 93% 53.8M 0s -2024-04-11T17:58:52Z #15 3.162 118050K .......... .......... .......... .......... .......... 93% 21.9M 0s -2024-04-11T17:58:52Z #15 3.164 118100K .......... .......... .......... .......... .......... 93% 56.1M 0s -2024-04-11T17:58:52Z #15 3.165 118150K .......... .......... .......... .......... .......... 93% 32.8M 0s -2024-04-11T17:58:52Z #15 3.167 118200K .......... .......... .......... .......... .......... 93% 28.1M 0s -2024-04-11T17:58:52Z #15 3.169 118250K .......... .......... .......... .......... .......... 93% 37.1M 0s -2024-04-11T17:58:52Z #15 3.170 118300K .......... .......... .......... .......... .......... 93% 32.4M 0s -2024-04-11T17:58:52Z #15 3.172 118350K .......... .......... .......... .......... .......... 93% 28.6M 0s -2024-04-11T17:58:52Z #15 3.173 118400K .......... .......... .......... .......... .......... 93% 48.5M 0s -2024-04-11T17:58:52Z #15 3.174 118450K .......... .......... .......... .......... .......... 93% 37.0M 0s -2024-04-11T17:58:52Z #15 3.175 118500K .......... .......... .......... .......... .......... 93% 34.5M 0s -2024-04-11T17:58:52Z #15 3.177 118550K .......... .......... .......... .......... .......... 93% 57.2M 0s -2024-04-11T17:58:52Z #15 3.177 118600K .......... .......... .......... .......... .......... 93% 24.7M 0s -2024-04-11T17:58:52Z #15 3.180 118650K .......... .......... .......... .......... .......... 93% 46.9M 0s -2024-04-11T17:58:52Z #15 3.181 118700K .......... .......... .......... .......... .......... 93% 73.2M 0s -2024-04-11T17:58:52Z #15 3.181 118750K .......... .......... .......... .......... .......... 93% 39.9M 0s -2024-04-11T17:58:52Z #15 3.182 118800K .......... .......... .......... .......... .......... 93% 35.3M 0s -2024-04-11T17:58:52Z #15 3.184 118850K .......... .......... .......... .......... .......... 93% 35.5M 0s -2024-04-11T17:58:52Z #15 3.185 118900K .......... .......... .......... .......... .......... 93% 27.6M 0s -2024-04-11T17:58:52Z #15 3.187 118950K .......... .......... .......... .......... .......... 93% 53.0M 0s -2024-04-11T17:58:52Z #15 3.188 119000K .......... .......... .......... .......... .......... 93% 36.8M 0s -2024-04-11T17:58:52Z #15 3.189 119050K .......... .......... .......... .......... .......... 93% 42.2M 0s -2024-04-11T17:58:52Z #15 3.191 119100K .......... .......... .......... .......... .......... 93% 34.9M 0s -2024-04-11T17:58:52Z #15 3.192 119150K .......... .......... .......... .......... .......... 94% 45.2M 0s -2024-04-11T17:58:52Z #15 3.193 119200K .......... .......... .......... .......... .......... 94% 35.4M 0s -2024-04-11T17:58:52Z #15 3.194 119250K .......... .......... .......... .......... .......... 94% 39.1M 0s -2024-04-11T17:58:52Z #15 3.195 119300K .......... .......... .......... .......... .......... 94% 32.5M 0s -2024-04-11T17:58:52Z #15 3.197 119350K .......... .......... .......... .......... .......... 94% 31.0M 0s -2024-04-11T17:58:52Z #15 3.198 119400K .......... .......... .......... .......... .......... 94% 81.7M 0s -2024-04-11T17:58:52Z #15 3.199 119450K .......... .......... .......... .......... .......... 94% 28.4M 0s -2024-04-11T17:58:52Z #15 3.201 119500K .......... .......... .......... .......... .......... 94% 22.5M 0s -2024-04-11T17:58:52Z #15 3.203 119550K .......... .......... .......... .......... .......... 94% 43.5M 0s -2024-04-11T17:58:52Z #15 3.204 119600K .......... .......... .......... .......... .......... 94% 38.4M 0s -2024-04-11T17:58:52Z #15 3.206 119650K .......... .......... .......... .......... .......... 94% 73.5M 0s -2024-04-11T17:58:52Z #15 3.206 119700K .......... .......... .......... .......... .......... 94% 22.5M 0s -2024-04-11T17:58:52Z #15 3.209 119750K .......... .......... .......... .......... .......... 94% 22.4M 0s -2024-04-11T17:58:52Z #15 3.210 119800K .......... .......... .......... .......... .......... 94% 89.0M 0s -2024-04-11T17:58:52Z #15 3.211 119850K .......... .......... .......... .......... .......... 94% 25.8M 0s -2024-04-11T17:58:52Z #15 3.213 119900K .......... .......... .......... .......... .......... 94% 32.6M 0s -2024-04-11T17:58:52Z #15 3.214 119950K .......... .......... .......... .......... .......... 94% 27.6M 0s -2024-04-11T17:58:52Z #15 3.216 120000K .......... .......... .......... .......... .......... 94% 49.1M 0s -2024-04-11T17:58:52Z #15 3.217 120050K .......... .......... .......... .......... .......... 94% 35.5M 0s -2024-04-11T17:58:52Z #15 3.219 120100K .......... .......... .......... .......... .......... 94% 35.1M 0s -2024-04-11T17:58:52Z #15 3.220 120150K .......... .......... .......... .......... .......... 94% 38.4M 0s -2024-04-11T17:58:52Z #15 3.221 120200K .......... .......... .......... .......... .......... 94% 34.8M 0s -2024-04-11T17:58:52Z #15 3.223 120250K .......... .......... .......... .......... .......... 94% 32.1M 0s -2024-04-11T17:58:52Z #15 3.224 120300K .......... .......... .......... .......... .......... 94% 40.4M 0s -2024-04-11T17:58:52Z #15 3.225 120350K .......... .......... .......... .......... .......... 94% 33.9M 0s -2024-04-11T17:58:52Z #15 3.227 120400K .......... .......... .......... .......... .......... 95% 137M 0s -2024-04-11T17:58:52Z #15 3.227 120450K .......... .......... .......... .......... .......... 95% 33.7M 0s -2024-04-11T17:58:52Z #15 3.228 120500K .......... .......... .......... .......... .......... 95% 44.6M 0s -2024-04-11T17:58:52Z #15 3.229 120550K .......... .......... .......... .......... .......... 95% 31.3M 0s -2024-04-11T17:58:52Z #15 3.231 120600K .......... .......... .......... .......... .......... 95% 32.8M 0s -2024-04-11T17:58:52Z #15 3.233 120650K .......... .......... .......... .......... .......... 95% 29.2M 0s -2024-04-11T17:58:52Z #15 3.234 120700K .......... .......... .......... .......... .......... 95% 31.6M 0s -2024-04-11T17:58:52Z #15 3.236 120750K .......... .......... .......... .......... .......... 95% 36.9M 0s -2024-04-11T17:58:52Z #15 3.237 120800K .......... .......... .......... .......... .......... 95% 26.6M 0s -2024-04-11T17:58:52Z #15 3.239 120850K .......... .......... .......... .......... .......... 95% 39.7M 0s -2024-04-11T17:58:52Z #15 3.241 120900K .......... .......... .......... .......... .......... 95% 79.0M 0s -2024-04-11T17:58:52Z #15 3.241 120950K .......... .......... .......... .......... .......... 95% 18.3M 0s -2024-04-11T17:58:52Z #15 3.244 121000K .......... .......... .......... .......... .......... 95% 31.6M 0s -2024-04-11T17:58:52Z #15 3.245 121050K .......... .......... .......... .......... .......... 95% 165M 0s -2024-04-11T17:58:52Z #15 3.245 121100K .......... .......... .......... .......... .......... 95% 33.3M 0s -2024-04-11T17:58:52Z #15 3.247 121150K .......... .......... .......... .......... .......... 95% 28.9M 0s -2024-04-11T17:58:52Z #15 3.249 121200K .......... .......... .......... .......... .......... 95% 60.5M 0s -2024-04-11T17:58:52Z #15 3.250 121250K .......... .......... .......... .......... .......... 95% 38.2M 0s -2024-04-11T17:58:52Z #15 3.251 121300K .......... .......... .......... .......... .......... 95% 24.0M 0s -2024-04-11T17:58:52Z #15 3.253 121350K .......... .......... .......... .......... .......... 95% 45.5M 0s -2024-04-11T17:58:52Z #15 3.254 121400K .......... .......... .......... .......... .......... 95% 79.9M 0s -2024-04-11T17:58:52Z #15 3.254 121450K .......... .......... .......... .......... .......... 95% 22.6M 0s -2024-04-11T17:58:52Z #15 3.257 121500K .......... .......... .......... .......... .......... 95% 148M 0s -2024-04-11T17:58:52Z #15 3.257 121550K .......... .......... .......... .......... .......... 95% 22.6M 0s -2024-04-11T17:58:52Z #15 3.259 121600K .......... .......... .......... .......... .......... 95% 32.1M 0s -2024-04-11T17:58:52Z #15 3.261 121650K .......... .......... .......... .......... .......... 95% 38.4M 0s -2024-04-11T17:58:52Z #15 3.262 121700K .......... .......... .......... .......... .......... 96% 23.4M 0s -2024-04-11T17:58:52Z #15 3.264 121750K .......... .......... .......... .......... .......... 96% 74.5M 0s -2024-04-11T17:58:52Z #15 3.265 121800K .......... .......... .......... .......... .......... 96% 30.2M 0s -2024-04-11T17:58:52Z #15 3.266 121850K .......... .......... .......... .......... .......... 96% 44.6M 0s -2024-04-11T17:58:52Z #15 3.268 121900K .......... .......... .......... .......... .......... 96% 31.9M 0s -2024-04-11T17:58:52Z #15 3.269 121950K .......... .......... .......... .......... .......... 96% 23.3M 0s -2024-04-11T17:58:52Z #15 3.271 122000K .......... .......... .......... .......... .......... 96% 27.3M 0s -2024-04-11T17:58:52Z #15 3.273 122050K .......... .......... .......... .......... .......... 96% 22.5M 0s -2024-04-11T17:58:52Z #15 3.275 122100K .......... .......... .......... .......... .......... 96% 36.3M 0s -2024-04-11T17:58:52Z #15 3.276 122150K .......... .......... .......... .......... .......... 96% 78.6M 0s -2024-04-11T17:58:52Z #15 3.277 122200K .......... .......... .......... .......... .......... 96% 33.5M 0s -2024-04-11T17:58:52Z #15 3.278 122250K .......... .......... .......... .......... .......... 96% 40.3M 0s -2024-04-11T17:58:52Z #15 3.280 122300K .......... .......... .......... .......... .......... 96% 45.7M 0s -2024-04-11T17:58:52Z #15 3.281 122350K .......... .......... .......... .......... .......... 96% 39.4M 0s -2024-04-11T17:58:52Z #15 3.282 122400K .......... .......... .......... .......... .......... 96% 32.6M 0s -2024-04-11T17:58:52Z #15 3.283 122450K .......... .......... .......... .......... .......... 96% 37.0M 0s -2024-04-11T17:58:52Z #15 3.285 122500K .......... .......... .......... .......... .......... 96% 77.0M 0s -2024-04-11T17:58:52Z #15 3.285 122550K .......... .......... .......... .......... .......... 96% 39.8M 0s -2024-04-11T17:58:52Z #15 3.287 122600K .......... .......... .......... .......... .......... 96% 44.9M 0s -2024-04-11T17:58:52Z #15 3.288 122650K .......... .......... .......... .......... .......... 96% 52.3M 0s -2024-04-11T17:58:52Z #15 3.288 122700K .......... .......... .......... .......... .......... 96% 26.6M 0s -2024-04-11T17:58:52Z #15 3.290 122750K .......... .......... .......... .......... .......... 96% 32.1M 0s -2024-04-11T17:58:52Z #15 3.292 122800K .......... .......... .......... .......... .......... 96% 41.3M 0s -2024-04-11T17:58:52Z #15 3.293 122850K .......... .......... .......... .......... .......... 96% 32.6M 0s -2024-04-11T17:58:52Z #15 3.295 122900K .......... .......... .......... .......... .......... 96% 30.1M 0s -2024-04-11T17:58:52Z #15 3.296 122950K .......... .......... .......... .......... .......... 97% 30.2M 0s -2024-04-11T17:58:52Z #15 3.298 123000K .......... .......... .......... .......... .......... 97% 48.7M 0s -2024-04-11T17:58:52Z #15 3.299 123050K .......... .......... .......... .......... .......... 97% 34.6M 0s -2024-04-11T17:58:52Z #15 3.300 123100K .......... .......... .......... .......... .......... 97% 22.9M 0s -2024-04-11T17:58:52Z #15 3.302 123150K .......... .......... .......... .......... .......... 97% 32.9M 0s -2024-04-11T17:58:52Z #15 3.304 123200K .......... .......... .......... .......... .......... 97% 44.5M 0s -2024-04-11T17:58:52Z #15 3.305 123250K .......... .......... .......... .......... .......... 97% 39.6M 0s -2024-04-11T17:58:52Z #15 3.306 123300K .......... .......... .......... .......... .......... 97% 29.4M 0s -2024-04-11T17:58:52Z #15 3.308 123350K .......... .......... .......... .......... .......... 97% 40.5M 0s -2024-04-11T17:58:52Z #15 3.309 123400K .......... .......... .......... .......... .......... 97% 46.1M 0s -2024-04-11T17:58:52Z #15 3.310 123450K .......... .......... .......... .......... .......... 97% 32.4M 0s -2024-04-11T17:58:52Z #15 3.312 123500K .......... .......... .......... .......... .......... 97% 47.3M 0s -2024-04-11T17:58:52Z #15 3.313 123550K .......... .......... .......... .......... .......... 97% 34.9M 0s -2024-04-11T17:58:52Z #15 3.314 123600K .......... .......... .......... .......... .......... 97% 36.5M 0s -2024-04-11T17:58:52Z #15 3.315 123650K .......... .......... .......... .......... .......... 97% 33.5M 0s -2024-04-11T17:58:52Z #15 3.317 123700K .......... .......... .......... .......... .......... 97% 31.7M 0s -2024-04-11T17:58:52Z #15 3.318 123750K .......... .......... .......... .......... .......... 97% 46.7M 0s -2024-04-11T17:58:52Z #15 3.319 123800K .......... .......... .......... .......... .......... 97% 24.8M 0s -2024-04-11T17:58:52Z #15 3.321 123850K .......... .......... .......... .......... .......... 97% 31.9M 0s -2024-04-11T17:58:52Z #15 3.324 123900K .......... .......... .......... .......... .......... 97% 31.2M 0s -2024-04-11T17:58:52Z #15 3.325 123950K .......... .......... .......... .......... .......... 97% 36.2M 0s -2024-04-11T17:58:52Z #15 3.326 124000K .......... .......... .......... .......... .......... 97% 128M 0s -2024-04-11T17:58:52Z #15 3.326 124050K .......... .......... .......... .......... .......... 97% 46.8M 0s -2024-04-11T17:58:52Z #15 3.327 124100K .......... .......... .......... .......... .......... 97% 24.8M 0s -2024-04-11T17:58:52Z #15 3.329 124150K .......... .......... .......... .......... .......... 97% 29.9M 0s -2024-04-11T17:58:52Z #15 3.331 124200K .......... .......... .......... .......... .......... 98% 29.6M 0s -2024-04-11T17:58:52Z #15 3.332 124250K .......... .......... .......... .......... .......... 98% 28.8M 0s -2024-04-11T17:58:52Z #15 3.334 124300K .......... .......... .......... .......... .......... 98% 30.1M 0s -2024-04-11T17:58:52Z #15 3.336 124350K .......... .......... .......... .......... .......... 98% 40.7M 0s -2024-04-11T17:58:52Z #15 3.337 124400K .......... .......... .......... .......... .......... 98% 46.5M 0s -2024-04-11T17:58:52Z #15 3.338 124450K .......... .......... .......... .......... .......... 98% 27.3M 0s -2024-04-11T17:58:52Z #15 3.340 124500K .......... .......... .......... .......... .......... 98% 34.8M 0s -2024-04-11T17:58:52Z #15 3.341 124550K .......... .......... .......... .......... .......... 98% 28.4M 0s -2024-04-11T17:58:52Z #15 3.343 124600K .......... .......... .......... .......... .......... 98% 36.0M 0s -2024-04-11T17:58:52Z #15 3.344 124650K .......... .......... .......... .......... .......... 98% 31.4M 0s -2024-04-11T17:58:52Z #15 3.346 124700K .......... .......... .......... .......... .......... 98% 31.1M 0s -2024-04-11T17:58:52Z #15 3.347 124750K .......... .......... .......... .......... .......... 98% 59.5M 0s -2024-04-11T17:58:52Z #15 3.348 124800K .......... .......... .......... .......... .......... 98% 41.1M 0s -2024-04-11T17:58:52Z #15 3.349 124850K .......... .......... .......... .......... .......... 98% 27.1M 0s -2024-04-11T17:58:52Z #15 3.351 124900K .......... .......... .......... .......... .......... 98% 50.9M 0s -2024-04-11T17:58:52Z #15 3.353 124950K .......... .......... .......... .......... .......... 98% 26.6M 0s -2024-04-11T17:58:52Z #15 3.354 125000K .......... .......... .......... .......... .......... 98% 42.4M 0s -2024-04-11T17:58:52Z #15 3.355 125050K .......... .......... .......... .......... .......... 98% 31.1M 0s -2024-04-11T17:58:52Z #15 3.357 125100K .......... .......... .......... .......... .......... 98% 30.8M 0s -2024-04-11T17:58:52Z #15 3.359 125150K .......... .......... .......... .......... .......... 98% 28.5M 0s -2024-04-11T17:58:52Z #15 3.360 125200K .......... .......... .......... .......... .......... 98% 48.4M 0s -2024-04-11T17:58:52Z #15 3.361 125250K .......... .......... .......... .......... .......... 98% 26.0M 0s -2024-04-11T17:58:52Z #15 3.363 125300K .......... .......... .......... .......... .......... 98% 28.6M 0s -2024-04-11T17:58:52Z #15 3.365 125350K .......... .......... .......... .......... .......... 98% 107M 0s -2024-04-11T17:58:52Z #15 3.365 125400K .......... .......... .......... .......... .......... 98% 28.6M 0s -2024-04-11T17:58:52Z #15 3.367 125450K .......... .......... .......... .......... .......... 98% 65.3M 0s -2024-04-11T17:58:52Z #15 3.368 125500K .......... .......... .......... .......... .......... 99% 22.8M 0s -2024-04-11T17:58:52Z #15 3.370 125550K .......... .......... .......... .......... .......... 99% 29.6M 0s -2024-04-11T17:58:52Z #15 3.372 125600K .......... .......... .......... .......... .......... 99% 39.6M 0s -2024-04-11T17:58:52Z #15 3.373 125650K .......... .......... .......... .......... .......... 99% 41.2M 0s -2024-04-11T17:58:52Z #15 3.374 125700K .......... .......... .......... .......... .......... 99% 29.3M 0s -2024-04-11T17:58:52Z #15 3.376 125750K .......... .......... .......... .......... .......... 99% 26.7M 0s -2024-04-11T17:58:52Z #15 3.380 125800K .......... .......... .......... .......... .......... 99% 101M 0s -2024-04-11T17:58:52Z #15 3.380 125850K .......... .......... .......... .......... .......... 99% 82.4M 0s -2024-04-11T17:58:52Z #15 3.380 125900K .......... .......... .......... .......... .......... 99% 35.4M 0s -2024-04-11T17:58:52Z #15 3.380 125950K .......... .......... .......... .......... .......... 99% 28.2M 0s -2024-04-11T17:58:52Z #15 3.381 126000K .......... .......... .......... .......... .......... 99% 46.7M 0s -2024-04-11T17:58:52Z #15 3.383 126050K .......... .......... .......... .......... .......... 99% 111M 0s -2024-04-11T17:58:52Z #15 3.383 126100K .......... .......... .......... .......... .......... 99% 28.6M 0s -2024-04-11T17:58:52Z #15 3.385 126150K .......... .......... .......... .......... .......... 99% 29.3M 0s -2024-04-11T17:58:52Z #15 3.386 126200K .......... .......... .......... .......... .......... 99% 61.3M 0s -2024-04-11T17:58:52Z #15 3.390 126250K .......... .......... .......... .......... .......... 99% 179M 0s -2024-04-11T17:58:52Z #15 3.390 126300K .......... .......... .......... .......... .......... 99% 207M 0s -2024-04-11T17:58:52Z #15 3.390 126350K .......... .......... .......... .......... .......... 99% 177M 0s -2024-04-11T17:58:52Z #15 3.390 126400K .......... .......... .......... .......... .......... 99% 189M 0s -2024-04-11T17:58:52Z #15 3.390 126450K .......... .......... .......... .......... .......... 99% 205M 0s -2024-04-11T17:58:52Z #15 3.390 126500K .......... .......... .......... .......... .......... 99% 198M 0s -2024-04-11T17:58:52Z #15 3.390 126550K .......... .......... .......... .......... .......... 99% 210M 0s -2024-04-11T17:58:52Z #15 3.390 126600K .......... .......... .......... .......... .......... 99% 169M 0s -2024-04-11T17:58:52Z #15 3.390 126650K .......... .......... .......... .......... .......... 99% 199M 0s -2024-04-11T17:58:52Z #15 3.390 126700K .......... .......... .......... .......... .......... 99% 209M 0s -2024-04-11T17:58:52Z #15 3.390 126750K .......... .......... .......... .. 100% 205M=2.0s -2024-04-11T17:58:52Z #15 3.390 -2024-04-11T17:58:52Z #15 3.390 2024-04-11 17:58:52 (61.3 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] -2024-04-11T17:58:52Z #15 3.390 -2024-04-11T17:58:53Z #15 4.871 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' -2024-04-11T17:58:53Z #15 4.893 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-04-11T17:58:54Z #15 DONE 5.3s -2024-04-11T17:58:54Z -2024-04-11T17:58:54Z #16 exporting to image -2024-04-11T17:58:54Z #16 exporting layers -2024-04-11T18:01:31Z #16 exporting layers 157.3s done -2024-04-11T18:01:31Z #16 writing image sha256:11b53ec046891c1d140c682a33cc890957c577e1bc1a95e396715c5b0314ceef done -2024-04-11T18:01:31Z #16 naming to docker.io/pavics/workflow-tests:py310-240411 done -2024-04-11T18:01:31Z #16 DONE 157.3s -2024-04-11T18:01:31Z -2024-04-11T18:01:31Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:9d5f6b6ec999bb2b0b5ff5c6b272311f267644ae4647b037764d8a7992cd1624 -2024-04-11T18:01:31Z Pushing index.docker.io/pavics/workflow-tests:py310-240411... -2024-04-11T18:09:09Z Done! -2024-04-11T18:09:09Z Build finished +2024-04-19T20:53:47Z Building in Docker Cloud's infrastructure... +2024-04-19T20:53:47Z Cloning into '.'... +2024-04-19T20:53:48Z Warning: Permanently added the RSA host key for IP address '140.82.113.3' to the list of known hosts. +2024-04-19T20:53:49Z Switched to a new branch 'docker-py310-240419' +2024-04-19T20:53:50Z KernelVersion: 5.4.0-1068-aws +2024-04-19T20:53:50Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-04-19T20:53:50Z Arch: amd64 +2024-04-19T20:53:50Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-04-19T20:53:50Z ApiVersion: 1.41 +2024-04-19T20:53:50Z Platform: {u'Name': u'Docker Engine - Community'} +2024-04-19T20:53:50Z Version: 20.10.15 +2024-04-19T20:53:50Z MinAPIVersion: 1.12 +2024-04-19T20:53:50Z GitCommit: 4433bf6 +2024-04-19T20:53:50Z Os: linux +2024-04-19T20:53:50Z GoVersion: go1.17.9 +2024-04-19T20:53:50Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240419... +2024-04-19T20:53:55Z #1 [internal] load build definition from Dockerfile +2024-04-19T20:53:55Z #1 transferring dockerfile: 6.99kB done +2024-04-19T20:53:55Z #1 DONE 0.1s +2024-04-19T20:53:55Z +2024-04-19T20:53:55Z #2 [internal] load .dockerignore +2024-04-19T20:53:55Z #2 transferring context: 2B done +2024-04-19T20:53:55Z #2 DONE 0.0s +2024-04-19T20:53:55Z +2024-04-19T20:53:55Z #3 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-04-19T20:53:56Z #3 DONE 0.0s +2024-04-19T20:53:56Z +2024-04-19T20:53:56Z #4 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-04-19T20:53:56Z #4 DONE 0.6s +2024-04-19T20:53:56Z +2024-04-19T20:53:56Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b +2024-04-19T20:53:56Z #5 resolve docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b done +2024-04-19T20:53:56Z #5 ... +2024-04-19T20:53:56Z +2024-04-19T20:53:56Z #6 [internal] load build context +2024-04-19T20:53:56Z #6 transferring context: 9.81kB done +2024-04-19T20:53:56Z #6 DONE 0.1s +2024-04-19T20:53:56Z +2024-04-19T20:53:56Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b +2024-04-19T20:53:56Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0B / 150.89MB 0.1s +2024-04-19T20:53:56Z #5 sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b 2.36kB / 2.36kB done +2024-04-19T20:53:56Z #5 sha256:2f63021fb73070c52ff804d164a9802b54e89ce9734eeb3c4236bddc57c75617 869B / 869B done +2024-04-19T20:53:56Z #5 sha256:1f702ef68adb9e4c2b71bdec2ef2cf775120cee7edc02a8e46c4388e259d431c 5.62kB / 5.62kB done +2024-04-19T20:53:56Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 10.49MB / 31.43MB 0.2s +2024-04-19T20:53:56Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 3.15MB / 50.08MB 0.2s +2024-04-19T20:53:56Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 8.39MB / 150.89MB 0.5s +2024-04-19T20:53:56Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 20.97MB / 31.43MB 0.5s +2024-04-19T20:53:56Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 12.93MB / 50.08MB 0.5s +2024-04-19T20:53:57Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 23.07MB / 31.43MB 0.6s +2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 17.83MB / 50.08MB 0.6s +2024-04-19T20:53:57Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 16.78MB / 150.89MB 0.7s +2024-04-19T20:53:57Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 28.31MB / 31.43MB 0.9s +2024-04-19T20:53:57Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 26.21MB / 150.89MB 1.0s +2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 20.97MB / 50.08MB 1.0s +2024-04-19T20:53:57Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.1s +2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 24.12MB / 50.08MB 1.1s +2024-04-19T20:53:57Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 38.80MB / 150.89MB 1.4s +2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 34.60MB / 50.08MB 1.4s +2024-04-19T20:53:57Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.4s done +2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 42.99MB / 50.08MB 1.5s +2024-04-19T20:53:58Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 48.23MB / 150.89MB 1.7s +2024-04-19T20:53:58Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 47.72MB / 50.08MB 1.7s +2024-04-19T20:53:58Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 +2024-04-19T20:53:58Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 58.72MB / 150.89MB 2.0s +2024-04-19T20:53:58Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 2.1s done +2024-04-19T20:53:59Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 68.16MB / 150.89MB 2.6s +2024-04-19T20:53:59Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 79.69MB / 150.89MB 2.8s +2024-04-19T20:53:59Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 91.23MB / 150.89MB 3.1s +2024-04-19T20:53:59Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 101.71MB / 150.89MB 3.3s +2024-04-19T20:54:00Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 113.25MB / 150.89MB 3.6s +2024-04-19T20:54:00Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 121.63MB / 150.89MB 4.1s +2024-04-19T20:54:00Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 130.02MB / 150.89MB 4.4s +2024-04-19T20:54:01Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 140.51MB / 150.89MB 4.6s +2024-04-19T20:54:01Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 148.55MB / 150.89MB 4.9s +2024-04-19T20:54:02Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 150.89MB / 150.89MB 6.2s done +2024-04-19T20:54:03Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.4s +2024-04-19T20:54:04Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.8s done +2024-04-19T20:54:04Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 +2024-04-19T20:54:09Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.3s +2024-04-19T20:54:10Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 6.4s done +2024-04-19T20:54:11Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc +2024-04-19T20:54:16Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 5.0s +2024-04-19T20:54:21Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.0s +2024-04-19T20:54:25Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 14.4s done +2024-04-19T20:54:26Z #5 DONE 29.8s +2024-04-19T20:54:26Z +2024-04-19T20:54:26Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-04-19T20:54:27Z #7 1.479 Channels: +2024-04-19T20:54:27Z #7 1.479 - defaults +2024-04-19T20:54:27Z #7 1.479 Platform: linux-64 +2024-04-19T20:54:32Z #7 1.479 Collecting package metadata (repodata.json): ...working... done +2024-04-19T20:54:32Z #7 5.984 Solving environment: ...working... done +2024-04-19T20:54:32Z #7 6.340 +2024-04-19T20:54:32Z #7 6.340 # All requested packages already installed. +2024-04-19T20:54:32Z #7 6.340 +2024-04-19T20:54:33Z #7 7.444 Channels: +2024-04-19T20:54:33Z #7 7.444 - conda-forge +2024-04-19T20:54:33Z #7 7.444 - defaults +2024-04-19T20:54:33Z #7 7.444 Platform: linux-64 +2024-04-19T20:55:00Z #7 7.444 Collecting package metadata (repodata.json): ...working... done +2024-04-19T20:55:02Z #7 34.34 Solving environment: ...working... done +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 ## Package Plan ## +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 environment location: /opt/conda +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 added / updated specs: +2024-04-19T20:55:02Z #7 36.64 - conda-pack +2024-04-19T20:55:02Z #7 36.64 - mamba +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 The following packages will be downloaded: +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 package | build +2024-04-19T20:55:02Z #7 36.64 ---------------------------|----------------- +2024-04-19T20:55:02Z #7 36.64 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 c-ares-1.28.1 | hd590300_0 165 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 conda-24.3.0 | py312h7900ff3_0 1.1 MB conda-forge +2024-04-19T20:55:02Z #7 36.64 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-04-19T20:55:02Z #7 36.64 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge +2024-04-19T20:55:02Z #7 36.64 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libcurl-8.7.1 | hca28451_0 389 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libexpat-2.5.0 | hcb278e6_1 76 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge +2024-04-19T20:55:02Z #7 36.64 libmambapy-1.5.8 | py312hd9e9ff6_0 299 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libnsl-2.0.1 | hd590300_0 33 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libsqlite-3.45.3 | h2797004_0 840 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libssh2-1.11.0 | h0841786_0 265 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge +2024-04-19T20:55:02Z #7 36.64 libuuid-2.38.1 | h0b41bf4_0 33 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libxcrypt-4.4.36 | hd590300_1 98 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libxml2-2.12.6 | h232c23b_2 688 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 lzo-2.10 | hd590300_1001 167 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 mamba-1.5.8 | py312h9460a1c_0 63 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge +2024-04-19T20:55:02Z #7 36.64 python-3.12.2 |hab00c5b_0_cpython 30.8 MB conda-forge +2024-04-19T20:55:02Z #7 36.64 python_abi-3.12 | 4_cp312 6 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 tk-8.6.13 |noxft_h4845f30_101 3.2 MB conda-forge +2024-04-19T20:55:02Z #7 36.64 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-04-19T20:55:02Z #7 36.64 ------------------------------------------------------------ +2024-04-19T20:55:02Z #7 36.64 Total: 62.9 MB +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 The following NEW packages will be INSTALLED: +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 +2024-04-19T20:55:02Z #7 36.64 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 +2024-04-19T20:55:02Z #7 36.64 libexpat conda-forge/linux-64::libexpat-2.5.0-hcb278e6_1 +2024-04-19T20:55:02Z #7 36.64 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-04-19T20:55:02Z #7 36.64 libnsl conda-forge/linux-64::libnsl-2.0.1-hd590300_0 +2024-04-19T20:55:02Z #7 36.64 libsqlite conda-forge/linux-64::libsqlite-3.45.3-h2797004_0 +2024-04-19T20:55:02Z #7 36.64 libxcrypt conda-forge/linux-64::libxcrypt-4.4.36-hd590300_1 +2024-04-19T20:55:02Z #7 36.64 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-04-19T20:55:02Z #7 36.64 lzo conda-forge/linux-64::lzo-2.10-hd590300_1001 +2024-04-19T20:55:02Z #7 36.64 mamba conda-forge/linux-64::mamba-1.5.8-py312h9460a1c_0 +2024-04-19T20:55:02Z #7 36.64 python_abi conda-forge/linux-64::python_abi-3.12-4_cp312 +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 The following packages will be UPDATED: +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 +2024-04-19T20:55:02Z #7 36.64 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-04-19T20:55:02Z #7 36.64 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-04-19T20:55:02Z #7 36.64 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 +2024-04-19T20:55:02Z #7 36.64 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-04-19T20:55:02Z #7 36.64 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 +2024-04-19T20:55:02Z #7 36.64 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 +2024-04-19T20:55:02Z #7 36.64 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 +2024-04-19T20:55:02Z #7 36.64 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 +2024-04-19T20:55:02Z #7 36.64 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 +2024-04-19T20:55:02Z #7 36.64 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 +2024-04-19T20:55:02Z #7 36.64 libuuid pkgs/main::libuuid-1.41.5-h5eee18b_0 --> conda-forge::libuuid-2.38.1-h0b41bf4_0 +2024-04-19T20:55:02Z #7 36.64 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_2 +2024-04-19T20:55:02Z #7 36.64 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 +2024-04-19T20:55:02Z #7 36.64 tk pkgs/main::tk-8.6.12-h1ccaba5_0 --> conda-forge::tk-8.6.13-noxft_h4845f30_101 +2024-04-19T20:55:02Z #7 36.64 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 The following packages will be SUPERSEDED by a higher-priority channel: +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-04-19T20:55:02Z #7 36.64 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-04-19T20:55:02Z #7 36.64 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-04-19T20:55:02Z #7 36.64 conda pkgs/main::conda-24.3.0-py312h06a4308~ --> conda-forge::conda-24.3.0-py312h7900ff3_0 +2024-04-19T20:55:02Z #7 36.64 libmamba pkgs/main::libmamba-1.5.8-hfe524e5_1 --> conda-forge::libmamba-1.5.8-had39da4_0 +2024-04-19T20:55:02Z #7 36.64 libmambapy pkgs/main::libmambapy-1.5.8-py312h2da~ --> conda-forge::libmambapy-1.5.8-py312hd9e9ff6_0 +2024-04-19T20:55:02Z #7 36.64 python pkgs/main::python-3.12.2-h996f2a0_0 --> conda-forge::python-3.12.2-hab00c5b_0_cpython +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:02Z #7 36.64 +2024-04-19T20:55:03Z #7 36.64 Proceed ([y]/n)? +2024-04-19T20:55:07Z #7 41.47 +2024-04-19T20:55:07Z #7 41.47 Downloading and Extracting Packages: ...working... done +2024-04-19T20:55:08Z #7 41.47 Preparing transaction: ...working... done +2024-04-19T20:55:10Z #7 41.78 Verifying transaction: ...working... done +2024-04-19T20:55:32Z #7 43.77 Executing transaction: ...working... done +2024-04-19T20:55:35Z #7 69.50 Will remove 34 (62.9 MB) tarball(s). +2024-04-19T20:55:35Z #7 69.50 Will remove 1 index cache(s). +2024-04-19T20:55:35Z #7 69.50 Will remove 3 (120 KB) package(s). +2024-04-19T20:55:35Z #7 69.50 There are no tempfile(s) to remove. +2024-04-19T20:55:35Z #7 69.50 There are no logfile(s) to remove. +2024-04-19T20:55:37Z #7 71.11 bin/micromamba +2024-04-19T20:55:39Z #7 DONE 72.8s +2024-04-19T20:55:39Z +2024-04-19T20:55:39Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-04-19T20:55:39Z #8 0.548 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-04-19T20:55:39Z #8 0.573 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-04-19T20:55:39Z #8 0.574 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-04-19T20:55:39Z #8 0.736 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-04-19T20:55:40Z #8 0.975 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] +2024-04-19T20:55:40Z #8 1.608 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-04-19T20:55:42Z #8 3.201 Fetched 8565 kB in 3s (3210 kB/s) +2024-04-19T20:55:43Z #8 3.201 Reading package lists... +2024-04-19T20:55:44Z #8 4.351 Reading package lists... +2024-04-19T20:55:44Z #8 5.489 Building dependency tree... +2024-04-19T20:55:44Z #8 5.770 Reading state information... +2024-04-19T20:55:45Z #8 6.154 git is already the newest version (1:2.30.2-1+deb11u2). +2024-04-19T20:55:45Z #8 6.154 mercurial is already the newest version (5.6.1-4). +2024-04-19T20:55:45Z #8 6.154 The following additional packages will be installed: +2024-04-19T20:55:45Z #8 6.155 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-19T20:55:45Z #8 6.155 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-19T20:55:45Z #8 6.156 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-04-19T20:55:45Z #8 6.156 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-04-19T20:55:45Z #8 6.157 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-04-19T20:55:45Z #8 6.157 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-04-19T20:55:45Z #8 6.162 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-04-19T20:55:45Z #8 6.162 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-19T20:55:45Z #8 6.162 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-19T20:55:45Z #8 6.162 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-04-19T20:55:45Z #8 6.162 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-04-19T20:55:45Z #8 6.162 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-04-19T20:55:45Z #8 6.162 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-04-19T20:55:45Z #8 6.162 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-04-19T20:55:45Z #8 6.162 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-04-19T20:55:45Z #8 6.162 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-04-19T20:55:45Z #8 6.162 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-04-19T20:55:45Z #8 6.162 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-04-19T20:55:45Z #8 6.162 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-04-19T20:55:45Z #8 6.162 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-04-19T20:55:45Z #8 6.162 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-04-19T20:55:45Z #8 6.162 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-04-19T20:55:45Z #8 6.162 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-04-19T20:55:45Z #8 6.162 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-04-19T20:55:45Z #8 6.162 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-04-19T20:55:45Z #8 6.162 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-04-19T20:55:45Z #8 6.162 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-04-19T20:55:45Z #8 6.162 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-04-19T20:55:45Z #8 6.162 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-04-19T20:55:45Z #8 6.162 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-04-19T20:55:45Z #8 6.162 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-04-19T20:55:45Z #8 6.162 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-04-19T20:55:45Z #8 6.162 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-04-19T20:55:45Z #8 6.162 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-04-19T20:55:45Z #8 6.162 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-04-19T20:55:45Z #8 6.162 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-04-19T20:55:45Z #8 6.162 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-04-19T20:55:45Z #8 6.162 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv +2024-04-19T20:55:45Z #8 6.162 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data +2024-04-19T20:55:45Z #8 6.172 Suggested packages: +2024-04-19T20:55:45Z #8 6.172 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-04-19T20:55:45Z #8 6.172 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-04-19T20:55:45Z #8 6.173 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-04-19T20:55:45Z #8 6.173 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs +2024-04-19T20:55:45Z #8 6.173 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser +2024-04-19T20:55:45Z #8 6.173 opencl-icd ed diffutils-doc systemd-container policykit-1 zip +2024-04-19T20:55:45Z #8 6.176 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-04-19T20:55:45Z #8 6.176 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-04-19T20:55:45Z #8 6.176 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-04-19T20:55:47Z #8 8.088 The following NEW packages will be installed: +2024-04-19T20:55:47Z #8 8.090 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-19T20:55:47Z #8 8.092 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-19T20:55:47Z #8 8.100 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-04-19T20:55:47Z #8 8.100 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-04-19T20:55:47Z #8 8.100 glib-networking glib-networking-common glib-networking-services +2024-04-19T20:55:47Z #8 8.100 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-04-19T20:55:47Z #8 8.100 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-04-19T20:55:47Z #8 8.100 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-04-19T20:55:47Z #8 8.100 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-19T20:55:47Z #8 8.100 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-19T20:55:47Z #8 8.100 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-04-19T20:55:47Z #8 8.100 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-04-19T20:55:47Z #8 8.100 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-04-19T20:55:47Z #8 8.100 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-04-19T20:55:47Z #8 8.100 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-04-19T20:55:47Z #8 8.100 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-04-19T20:55:47Z #8 8.100 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-04-19T20:55:47Z #8 8.100 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-04-19T20:55:47Z #8 8.100 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-04-19T20:55:47Z #8 8.100 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-04-19T20:55:47Z #8 8.100 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-04-19T20:55:47Z #8 8.100 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-04-19T20:55:47Z #8 8.100 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-04-19T20:55:47Z #8 8.100 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-04-19T20:55:47Z #8 8.100 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-04-19T20:55:47Z #8 8.100 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-04-19T20:55:47Z #8 8.100 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-04-19T20:55:47Z #8 8.100 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-04-19T20:55:47Z #8 8.100 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-04-19T20:55:47Z #8 8.100 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-04-19T20:55:47Z #8 8.100 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-04-19T20:55:47Z #8 8.100 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-04-19T20:55:47Z #8 8.100 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-04-19T20:55:47Z #8 8.100 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-04-19T20:55:47Z #8 8.100 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-04-19T20:55:47Z #8 8.100 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-04-19T20:55:47Z #8 8.100 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-04-19T20:55:47Z #8 8.100 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-04-19T20:55:47Z #8 8.100 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-04-19T20:55:47Z #8 8.100 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-04-19T20:55:47Z #8 8.100 x11-utils xkb-data +2024-04-19T20:55:47Z #8 8.141 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. +2024-04-19T20:55:47Z #8 8.141 Need to get 236 MB of archives. +2024-04-19T20:55:47Z #8 8.141 After this operation, 891 MB of additional disk space will be used. +2024-04-19T20:55:47Z #8 8.141 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-04-19T20:55:47Z #8 8.146 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-04-19T20:55:47Z #8 8.148 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-04-19T20:55:47Z #8 8.150 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-04-19T20:55:47Z #8 8.153 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-04-19T20:55:47Z #8 8.157 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-04-19T20:55:47Z #8 8.159 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-04-19T20:55:47Z #8 8.166 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-04-19T20:55:47Z #8 8.169 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-04-19T20:55:47Z #8 8.172 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-04-19T20:55:47Z #8 8.283 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-04-19T20:55:47Z #8 8.291 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-04-19T20:55:47Z #8 8.295 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-04-19T20:55:47Z #8 8.299 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-04-19T20:55:47Z #8 8.303 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-04-19T20:55:47Z #8 8.308 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-04-19T20:55:47Z #8 8.331 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-04-19T20:55:47Z #8 8.336 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-04-19T20:55:47Z #8 8.338 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-04-19T20:55:47Z #8 8.343 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-04-19T20:55:47Z #8 8.556 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-04-19T20:55:47Z #8 8.575 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-04-19T20:55:47Z #8 8.589 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-04-19T20:55:47Z #8 8.594 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-04-19T20:55:47Z #8 8.601 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-04-19T20:55:47Z #8 8.604 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-04-19T20:55:47Z #8 8.606 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-04-19T20:55:47Z #8 8.612 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-04-19T20:55:47Z #8 8.621 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-04-19T20:55:47Z #8 8.624 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-04-19T20:55:47Z #8 8.627 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-04-19T20:55:48Z #8 8.929 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-04-19T20:55:48Z #8 8.931 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-04-19T20:55:48Z #8 8.933 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-04-19T20:55:48Z #8 8.940 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-04-19T20:55:48Z #8 8.942 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-04-19T20:55:48Z #8 8.944 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-04-19T20:55:48Z #8 8.946 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-04-19T20:55:48Z #8 8.948 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-04-19T20:55:48Z #8 8.951 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-04-19T20:55:48Z #8 8.986 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-04-19T20:55:48Z #8 8.998 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-04-19T20:55:48Z #8 9.016 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-04-19T20:55:48Z #8 9.018 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-04-19T20:55:48Z #8 9.039 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-04-19T20:55:48Z #8 9.041 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-04-19T20:55:48Z #8 9.050 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-04-19T20:55:48Z #8 9.078 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-04-19T20:55:48Z #8 9.080 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-04-19T20:55:48Z #8 9.292 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-04-19T20:55:48Z #8 9.294 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-04-19T20:55:48Z #8 9.297 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-04-19T20:55:48Z #8 9.300 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-04-19T20:55:48Z #8 9.302 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-04-19T20:55:48Z #8 9.304 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-04-19T20:55:48Z #8 9.308 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-04-19T20:55:48Z #8 9.310 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-04-19T20:55:48Z #8 9.317 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-04-19T20:55:48Z #8 9.334 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-04-19T20:55:48Z #8 9.340 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-04-19T20:55:48Z #8 9.346 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-04-19T20:55:48Z #8 9.355 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-04-19T20:55:48Z #8 9.366 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-04-19T20:55:48Z #8 9.369 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-04-19T20:55:48Z #8 9.380 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-04-19T20:55:48Z #8 9.385 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-04-19T20:55:48Z #8 9.387 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-04-19T20:55:48Z #8 9.391 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-04-19T20:55:48Z #8 9.394 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-04-19T20:55:48Z #8 9.404 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-04-19T20:55:48Z #8 9.408 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-04-19T20:55:48Z #8 9.411 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-04-19T20:55:48Z #8 9.414 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-04-19T20:55:48Z #8 9.416 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-04-19T20:55:48Z #8 9.423 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-04-19T20:55:48Z #8 9.427 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-04-19T20:55:48Z #8 9.430 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-04-19T20:55:48Z #8 9.433 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-04-19T20:55:48Z #8 9.455 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-04-19T20:55:48Z #8 9.457 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-04-19T20:55:48Z #8 9.460 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-04-19T20:55:48Z #8 9.467 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-04-19T20:55:48Z #8 9.470 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-04-19T20:55:48Z #8 9.472 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-04-19T20:55:48Z #8 9.476 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-04-19T20:55:48Z #8 9.480 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-04-19T20:55:48Z #8 9.483 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-04-19T20:55:48Z #8 9.487 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-04-19T20:55:48Z #8 9.491 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-04-19T20:55:48Z #8 9.495 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-04-19T20:55:48Z #8 9.506 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-04-19T20:55:48Z #8 9.520 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-04-19T20:55:48Z #8 9.524 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-04-19T20:55:48Z #8 9.532 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-04-19T20:55:48Z #8 9.534 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-04-19T20:55:48Z #8 9.536 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-04-19T20:55:48Z #8 9.540 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-04-19T20:55:48Z #8 9.542 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-04-19T20:55:48Z #8 9.544 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-04-19T20:55:48Z #8 9.547 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-04-19T20:55:48Z #8 9.549 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-04-19T20:55:48Z #8 9.552 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-04-19T20:55:48Z #8 9.554 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-04-19T20:55:48Z #8 9.557 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-04-19T20:55:48Z #8 9.569 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-04-19T20:55:48Z #8 9.573 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-04-19T20:55:48Z #8 9.575 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-04-19T20:55:48Z #8 9.668 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-04-19T20:55:48Z #8 9.728 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-04-19T20:55:48Z #8 9.732 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.10.0esr-1~deb11u1 [63.7 MB] +2024-04-19T20:55:50Z #8 11.05 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-04-19T20:55:50Z #8 11.05 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-04-19T20:55:50Z #8 11.05 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-04-19T20:55:50Z #8 11.05 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-04-19T20:55:50Z #8 11.05 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-04-19T20:55:50Z #8 11.06 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-04-19T20:55:50Z #8 11.08 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-04-19T20:55:50Z #8 11.09 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-04-19T20:55:50Z #8 11.12 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-04-19T20:55:50Z #8 11.13 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-04-19T20:55:50Z #8 11.14 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-04-19T20:55:50Z #8 11.17 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-04-19T20:55:50Z #8 11.61 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-04-19T20:55:50Z #8 11.61 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-04-19T20:55:50Z #8 11.61 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-04-19T20:55:50Z #8 11.61 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-04-19T20:55:50Z #8 11.61 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-04-19T20:55:50Z #8 11.61 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-04-19T20:55:50Z #8 11.61 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-04-19T20:55:50Z #8 11.62 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-04-19T20:55:50Z #8 11.62 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-04-19T20:55:50Z #8 11.66 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-04-19T20:55:50Z #8 11.69 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-04-19T20:55:50Z #8 11.77 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-04-19T20:55:50Z #8 11.77 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-04-19T20:55:50Z #8 11.78 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-04-19T20:55:50Z #8 11.78 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-04-19T20:55:50Z #8 11.78 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-04-19T20:55:50Z #8 11.79 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-04-19T20:55:51Z #8 11.98 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-04-19T20:55:51Z #8 11.99 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-04-19T20:55:51Z #8 11.99 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-04-19T20:55:51Z #8 12.00 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-04-19T20:55:51Z #8 12.00 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-04-19T20:55:51Z #8 12.01 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-04-19T20:55:51Z #8 12.04 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-04-19T20:55:51Z #8 12.04 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-04-19T20:55:51Z #8 12.04 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-04-19T20:55:51Z #8 12.05 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-04-19T20:55:51Z #8 12.05 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-04-19T20:55:51Z #8 12.06 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-04-19T20:55:51Z #8 12.06 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-04-19T20:55:51Z #8 12.06 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-04-19T20:55:51Z #8 12.07 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-04-19T20:55:51Z #8 12.07 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-04-19T20:55:51Z #8 12.07 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-04-19T20:55:51Z #8 12.09 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-04-19T20:55:51Z #8 12.10 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-04-19T20:55:51Z #8 12.10 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-04-19T20:55:51Z #8 12.11 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-04-19T20:55:51Z #8 12.12 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-04-19T20:55:51Z #8 12.13 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-04-19T20:55:51Z #8 12.14 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-04-19T20:55:51Z #8 12.14 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-04-19T20:55:51Z #8 12.15 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-04-19T20:55:51Z #8 12.26 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] +2024-04-19T20:55:51Z #8 12.27 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-04-19T20:55:51Z #8 12.27 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-04-19T20:55:51Z #8 12.27 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] +2024-04-19T20:55:51Z #8 12.28 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-04-19T20:55:51Z #8 12.31 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-04-19T20:55:51Z #8 12.32 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-04-19T20:55:51Z #8 12.32 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-04-19T20:55:51Z #8 12.32 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] +2024-04-19T20:55:51Z #8 12.36 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-04-19T20:55:51Z #8 12.37 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-04-19T20:55:51Z #8 12.37 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-04-19T20:55:51Z #8 12.37 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-04-19T20:55:51Z #8 12.38 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-04-19T20:55:51Z #8 12.38 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-04-19T20:55:51Z #8 12.38 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-04-19T20:55:51Z #8 12.38 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-04-19T20:55:51Z #8 12.56 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-04-19T20:55:52Z #8 13.04 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-04-19T20:55:52Z #8 13.04 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-04-19T20:55:52Z #8 13.04 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-04-19T20:55:52Z #8 13.05 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-04-19T20:55:52Z #8 13.30 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-04-19T20:55:52Z #8 13.31 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-04-19T20:55:52Z #8 13.31 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-04-19T20:55:52Z #8 13.31 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-04-19T20:55:52Z #8 13.32 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-04-19T20:55:52Z #8 13.32 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-04-19T20:55:52Z #8 13.33 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-04-19T20:55:52Z #8 13.33 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-04-19T20:55:52Z #8 13.33 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-04-19T20:55:52Z #8 13.33 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-04-19T20:55:52Z #8 13.34 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-04-19T20:55:52Z #8 13.34 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-04-19T20:55:52Z #8 13.35 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-04-19T20:55:52Z #8 13.35 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-04-19T20:55:52Z #8 13.35 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-04-19T20:55:52Z #8 13.36 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-04-19T20:55:52Z #8 13.36 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-04-19T20:55:52Z #8 13.37 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-04-19T20:55:52Z #8 13.37 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-04-19T20:55:52Z #8 13.39 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-04-19T20:55:52Z #8 13.39 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-04-19T20:55:52Z #8 13.40 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-04-19T20:55:52Z #8 13.40 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-04-19T20:55:52Z #8 13.40 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-04-19T20:55:52Z #8 13.40 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-04-19T20:55:52Z #8 13.40 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-04-19T20:55:52Z #8 13.44 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-04-19T20:55:52Z #8 13.48 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-04-19T20:55:52Z #8 13.55 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-04-19T20:55:52Z #8 13.64 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-04-19T20:55:52Z #8 13.64 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-04-19T20:55:52Z #8 13.65 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-04-19T20:55:52Z #8 13.65 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-04-19T20:55:52Z #8 13.65 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-04-19T20:55:53Z #8 14.01 debconf: delaying package configuration, since apt-utils is not installed +2024-04-19T20:55:53Z #8 14.08 Fetched 236 MB in 6s (42.6 MB/s) +2024-04-19T20:55:53Z #8 14.11 Selecting previously unselected package libapparmor1:amd64. +2024-04-19T20:55:53Z #8 14.11 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-04-19T20:55:53Z #8 14.13 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-04-19T20:55:53Z #8 14.14 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-04-19T20:55:53Z #8 14.20 Selecting previously unselected package libcap2:amd64. +2024-04-19T20:55:53Z #8 14.20 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-04-19T20:55:53Z #8 14.21 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-04-19T20:55:53Z #8 14.25 Selecting previously unselected package libargon2-1:amd64. +2024-04-19T20:55:53Z #8 14.25 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-04-19T20:55:53Z #8 14.25 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-19T20:55:53Z #8 14.30 Selecting previously unselected package dmsetup. +2024-04-19T20:55:53Z #8 14.30 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-04-19T20:55:53Z #8 14.31 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-04-19T20:55:53Z #8 14.37 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-04-19T20:55:53Z #8 14.37 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-04-19T20:55:53Z #8 14.38 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-19T20:55:53Z #8 14.44 Selecting previously unselected package libjson-c5:amd64. +2024-04-19T20:55:53Z #8 14.44 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-04-19T20:55:53Z #8 14.45 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-19T20:55:53Z #8 14.50 Selecting previously unselected package libcryptsetup12:amd64. +2024-04-19T20:55:53Z #8 14.50 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-04-19T20:55:53Z #8 14.50 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-19T20:55:53Z #8 14.58 Selecting previously unselected package libip4tc2:amd64. +2024-04-19T20:55:53Z #8 14.58 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-04-19T20:55:53Z #8 14.59 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-04-19T20:55:53Z #8 14.64 Selecting previously unselected package libkmod2:amd64. +2024-04-19T20:55:53Z #8 14.64 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-04-19T20:55:53Z #8 14.64 Unpacking libkmod2:amd64 (28-1) ... +2024-04-19T20:55:53Z #8 14.72 Selecting previously unselected package systemd. +2024-04-19T20:55:53Z #8 14.72 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-19T20:55:53Z #8 14.79 Unpacking systemd (247.3-7+deb11u4) ... +2024-04-19T20:55:54Z #8 15.86 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-04-19T20:55:55Z #8 15.88 Setting up libcap2:amd64 (1:2.44-1) ... +2024-04-19T20:55:55Z #8 15.90 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-19T20:55:55Z #8 15.91 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-19T20:55:55Z #8 15.93 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-04-19T20:55:55Z #8 15.94 Setting up libkmod2:amd64 (28-1) ... +2024-04-19T20:55:55Z #8 15.95 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-19T20:55:55Z #8 15.96 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-19T20:55:55Z #8 15.98 Setting up systemd (247.3-7+deb11u4) ... +2024-04-19T20:55:55Z #8 16.03 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-04-19T20:55:55Z #8 16.05 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-04-19T20:55:55Z #8 16.05 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-04-19T20:55:55Z #8 16.09 Initializing machine ID from KVM UUID. +2024-04-19T20:55:55Z #8 16.56 Setting up dmsetup (2:1.02.175-2.1) ... +2024-04-19T20:55:55Z #8 16.64 Selecting previously unselected package systemd-sysv. +2024-04-19T20:55:55Z #8 16.64 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-04-19T20:55:55Z #8 16.67 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-04-19T20:55:55Z #8 16.67 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-04-19T20:55:55Z #8 16.74 Selecting previously unselected package libdbus-1-3:amd64. +2024-04-19T20:55:55Z #8 16.75 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-04-19T20:55:55Z #8 16.76 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-19T20:55:56Z #8 16.86 Selecting previously unselected package dbus. +2024-04-19T20:55:56Z #8 16.86 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-04-19T20:55:56Z #8 16.88 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-04-19T20:55:56Z #8 16.98 Selecting previously unselected package libnss-systemd:amd64. +2024-04-19T20:55:56Z #8 16.99 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-19T20:55:56Z #8 17.00 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-19T20:55:56Z #8 17.06 Selecting previously unselected package libpam-systemd:amd64. +2024-04-19T20:55:56Z #8 17.06 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-19T20:55:56Z #8 17.07 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-19T20:55:56Z #8 17.15 Selecting previously unselected package manpages. +2024-04-19T20:55:56Z #8 17.16 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-04-19T20:55:56Z #8 17.16 Unpacking manpages (5.10-1) ... +2024-04-19T20:55:56Z #8 17.40 Selecting previously unselected package systemd-timesyncd. +2024-04-19T20:55:56Z #8 17.41 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-04-19T20:55:56Z #8 17.41 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-19T20:55:56Z #8 17.48 Selecting previously unselected package hicolor-icon-theme. +2024-04-19T20:55:56Z #8 17.48 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-04-19T20:55:56Z #8 17.48 Unpacking hicolor-icon-theme (0.17-2) ... +2024-04-19T20:55:56Z #8 17.60 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-04-19T20:55:56Z #8 17.60 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-04-19T20:55:56Z #8 17.61 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-19T20:55:56Z #8 17.74 Selecting previously unselected package libicu67:amd64. +2024-04-19T20:55:56Z #8 17.74 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-04-19T20:55:56Z #8 17.75 Unpacking libicu67:amd64 (67.1-7) ... +2024-04-19T20:55:58Z #8 19.52 Selecting previously unselected package libxml2:amd64. +2024-04-19T20:55:58Z #8 19.52 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-04-19T20:55:58Z #8 19.53 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-19T20:55:58Z #8 19.68 Selecting previously unselected package shared-mime-info. +2024-04-19T20:55:58Z #8 19.68 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-04-19T20:55:58Z #8 19.69 Unpacking shared-mime-info (2.0-1) ... +2024-04-19T20:55:59Z #8 19.89 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-04-19T20:55:59Z #8 19.89 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-04-19T20:55:59Z #8 19.90 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-19T20:55:59Z #8 19.96 Selecting previously unselected package libpng16-16:amd64. +2024-04-19T20:55:59Z #8 19.96 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-04-19T20:55:59Z #8 19.97 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-04-19T20:55:59Z #8 20.04 Selecting previously unselected package libdeflate0:amd64. +2024-04-19T20:55:59Z #8 20.04 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-04-19T20:55:59Z #8 20.05 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-04-19T20:55:59Z #8 20.12 Selecting previously unselected package libjbig0:amd64. +2024-04-19T20:55:59Z #8 20.12 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-04-19T20:55:59Z #8 20.12 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-19T20:55:59Z #8 20.19 Selecting previously unselected package libwebp6:amd64. +2024-04-19T20:55:59Z #8 20.19 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-19T20:55:59Z #8 20.19 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-19T20:55:59Z #8 20.29 Selecting previously unselected package libtiff5:amd64. +2024-04-19T20:55:59Z #8 20.29 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-04-19T20:55:59Z #8 20.29 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-19T20:55:59Z #8 20.40 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-04-19T20:55:59Z #8 20.40 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-19T20:55:59Z #8 20.40 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-19T20:55:59Z #8 20.48 Selecting previously unselected package gtk-update-icon-cache. +2024-04-19T20:55:59Z #8 20.48 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-04-19T20:55:59Z #8 20.48 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-19T20:55:59Z #8 20.61 Selecting previously unselected package adwaita-icon-theme. +2024-04-19T20:55:59Z #8 20.62 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-04-19T20:55:59Z #8 20.62 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-04-19T20:56:02Z #8 23.58 Selecting previously unselected package alsa-topology-conf. +2024-04-19T20:56:02Z #8 23.58 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-04-19T20:56:02Z #8 23.59 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-04-19T20:56:02Z #8 23.65 Selecting previously unselected package libasound2-data. +2024-04-19T20:56:02Z #8 23.65 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-04-19T20:56:02Z #8 23.66 Unpacking libasound2-data (1.2.4-1.1) ... +2024-04-19T20:56:02Z #8 23.73 Selecting previously unselected package libasound2:amd64. +2024-04-19T20:56:02Z #8 23.74 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-04-19T20:56:02Z #8 23.75 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-04-19T20:56:03Z #8 23.86 Selecting previously unselected package alsa-ucm-conf. +2024-04-19T20:56:03Z #8 23.86 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-04-19T20:56:03Z #8 23.87 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-04-19T20:56:03Z #8 23.96 Selecting previously unselected package libatspi2.0-0:amd64. +2024-04-19T20:56:03Z #8 23.97 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-04-19T20:56:03Z #8 23.97 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-19T20:56:03Z #8 24.04 Selecting previously unselected package libxi6:amd64. +2024-04-19T20:56:03Z #8 24.04 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-04-19T20:56:03Z #8 24.04 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-04-19T20:56:03Z #8 24.10 Selecting previously unselected package libxtst6:amd64. +2024-04-19T20:56:03Z #8 24.10 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-04-19T20:56:03Z #8 24.11 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-04-19T20:56:03Z #8 24.15 Selecting previously unselected package at-spi2-core. +2024-04-19T20:56:03Z #8 24.15 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-04-19T20:56:03Z #8 24.15 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-19T20:56:03Z #8 24.22 Selecting previously unselected package binutils-common:amd64. +2024-04-19T20:56:03Z #8 24.23 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-04-19T20:56:03Z #8 24.23 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-04-19T20:56:03Z #8 24.71 Selecting previously unselected package libbinutils:amd64. +2024-04-19T20:56:03Z #8 24.71 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-04-19T20:56:03Z #8 24.72 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-04-19T20:56:03Z #8 24.89 Selecting previously unselected package libctf-nobfd0:amd64. +2024-04-19T20:56:03Z #8 24.89 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-04-19T20:56:03Z #8 24.89 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-19T20:56:04Z #8 24.95 Selecting previously unselected package libctf0:amd64. +2024-04-19T20:56:04Z #8 24.95 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-04-19T20:56:04Z #8 24.96 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-04-19T20:56:04Z #8 25.01 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-04-19T20:56:04Z #8 25.01 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-04-19T20:56:04Z #8 25.02 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-19T20:56:04Z #8 25.44 Selecting previously unselected package binutils. +2024-04-19T20:56:04Z #8 25.44 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-04-19T20:56:04Z #8 25.45 Unpacking binutils (2.35.2-2) ... +2024-04-19T20:56:04Z #8 25.51 Selecting previously unselected package libisl23:amd64. +2024-04-19T20:56:04Z #8 25.51 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-04-19T20:56:04Z #8 25.52 Unpacking libisl23:amd64 (0.23-1) ... +2024-04-19T20:56:04Z #8 25.69 Selecting previously unselected package libmpfr6:amd64. +2024-04-19T20:56:04Z #8 25.70 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-04-19T20:56:04Z #8 25.70 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-04-19T20:56:05Z #8 25.94 Selecting previously unselected package libmpc3:amd64. +2024-04-19T20:56:05Z #8 25.94 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-04-19T20:56:05Z #8 25.95 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-04-19T20:56:05Z #8 26.00 Selecting previously unselected package cpp-10. +2024-04-19T20:56:05Z #8 26.00 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-04-19T20:56:05Z #8 26.01 Unpacking cpp-10 (10.2.1-6) ... +2024-04-19T20:56:06Z #8 27.58 Selecting previously unselected package cpp. +2024-04-19T20:56:06Z #8 27.58 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-04-19T20:56:06Z #8 27.59 Unpacking cpp (4:10.2.1-1) ... +2024-04-19T20:56:06Z #8 27.63 Selecting previously unselected package dbus-user-session. +2024-04-19T20:56:06Z #8 27.63 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-04-19T20:56:06Z #8 27.64 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-19T20:56:06Z #8 27.70 Selecting previously unselected package libdconf1:amd64. +2024-04-19T20:56:06Z #8 27.71 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-04-19T20:56:06Z #8 27.71 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-04-19T20:56:06Z #8 27.76 Selecting previously unselected package dconf-service. +2024-04-19T20:56:06Z #8 27.76 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-04-19T20:56:06Z #8 27.77 Unpacking dconf-service (0.38.0-2) ... +2024-04-19T20:56:07Z #8 27.81 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-04-19T20:56:07Z #8 27.82 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-04-19T20:56:07Z #8 27.82 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-19T20:56:07Z #8 27.87 Selecting previously unselected package libatk1.0-data. +2024-04-19T20:56:07Z #8 27.87 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-04-19T20:56:07Z #8 27.88 Unpacking libatk1.0-data (2.36.0-2) ... +2024-04-19T20:56:07Z #8 27.97 Selecting previously unselected package libatk1.0-0:amd64. +2024-04-19T20:56:07Z #8 27.98 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-04-19T20:56:07Z #8 27.98 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-19T20:56:07Z #8 28.04 Selecting previously unselected package libfreetype6:amd64. +2024-04-19T20:56:07Z #8 28.04 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-04-19T20:56:07Z #8 28.05 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-19T20:56:07Z #8 28.16 Selecting previously unselected package fonts-dejavu-core. +2024-04-19T20:56:07Z #8 28.17 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-04-19T20:56:07Z #8 28.17 Unpacking fonts-dejavu-core (2.37-2) ... +2024-04-19T20:56:07Z #8 28.45 Selecting previously unselected package fontconfig-config. +2024-04-19T20:56:07Z #8 28.46 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-04-19T20:56:07Z #8 28.61 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-04-19T20:56:07Z #8 28.68 Selecting previously unselected package libfontconfig1:amd64. +2024-04-19T20:56:07Z #8 28.68 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-04-19T20:56:07Z #8 28.69 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-19T20:56:07Z #8 28.75 Selecting previously unselected package libpixman-1-0:amd64. +2024-04-19T20:56:07Z #8 28.76 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-04-19T20:56:07Z #8 28.76 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-19T20:56:07Z #8 28.86 Selecting previously unselected package libxcb-render0:amd64. +2024-04-19T20:56:07Z #8 28.86 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-04-19T20:56:07Z #8 28.87 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-04-19T20:56:08Z #8 28.93 Selecting previously unselected package libxcb-shm0:amd64. +2024-04-19T20:56:08Z #8 28.94 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-04-19T20:56:08Z #8 28.95 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-04-19T20:56:08Z #8 29.01 Selecting previously unselected package libcairo2:amd64. +2024-04-19T20:56:08Z #8 29.01 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-04-19T20:56:08Z #8 29.02 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-04-19T20:56:08Z #8 29.17 Selecting previously unselected package libcairo-gobject2:amd64. +2024-04-19T20:56:08Z #8 29.18 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-04-19T20:56:08Z #8 29.18 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-19T20:56:08Z #8 29.25 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-04-19T20:56:08Z #8 29.25 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-04-19T20:56:08Z #8 29.26 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-19T20:56:08Z #8 29.32 Selecting previously unselected package libevent-2.1-7:amd64. +2024-04-19T20:56:08Z #8 29.32 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-04-19T20:56:08Z #8 29.33 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-19T20:56:08Z #8 29.41 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-04-19T20:56:08Z #8 29.41 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-04-19T20:56:08Z #8 29.42 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-19T20:56:08Z #8 29.48 Selecting previously unselected package liblcms2-2:amd64. +2024-04-19T20:56:08Z #8 29.48 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-04-19T20:56:08Z #8 29.49 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-19T20:56:08Z #8 29.57 Selecting previously unselected package libcolord2:amd64. +2024-04-19T20:56:08Z #8 29.57 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-04-19T20:56:08Z #8 29.58 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-04-19T20:56:08Z #8 29.65 Selecting previously unselected package libavahi-common-data:amd64. +2024-04-19T20:56:08Z #8 29.65 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-04-19T20:56:08Z #8 29.65 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-19T20:56:08Z #8 29.73 Selecting previously unselected package libavahi-common3:amd64. +2024-04-19T20:56:08Z #8 29.73 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-04-19T20:56:08Z #8 29.74 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-19T20:56:08Z #8 29.80 Selecting previously unselected package libavahi-client3:amd64. +2024-04-19T20:56:08Z #8 29.81 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-04-19T20:56:08Z #8 29.81 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-19T20:56:09Z #8 29.87 Selecting previously unselected package libcups2:amd64. +2024-04-19T20:56:09Z #8 29.88 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-04-19T20:56:09Z #8 29.89 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-19T20:56:09Z #8 30.02 Selecting previously unselected package libepoxy0:amd64. +2024-04-19T20:56:09Z #8 30.03 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-04-19T20:56:09Z #8 30.03 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-04-19T20:56:09Z #8 30.13 Selecting previously unselected package libfribidi0:amd64. +2024-04-19T20:56:09Z #8 30.13 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-04-19T20:56:09Z #8 30.14 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-19T20:56:09Z #8 30.20 Selecting previously unselected package libgraphite2-3:amd64. +2024-04-19T20:56:09Z #8 30.21 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-04-19T20:56:09Z #8 30.22 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-19T20:56:09Z #8 30.32 Selecting previously unselected package libharfbuzz0b:amd64. +2024-04-19T20:56:09Z #8 30.32 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-04-19T20:56:09Z #8 30.33 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-19T20:56:09Z #8 30.43 Selecting previously unselected package libjson-glib-1.0-common. +2024-04-19T20:56:09Z #8 30.44 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-04-19T20:56:09Z #8 30.44 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-04-19T20:56:09Z #8 30.51 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-04-19T20:56:09Z #8 30.51 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-04-19T20:56:09Z #8 30.52 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-19T20:56:09Z #8 30.57 Selecting previously unselected package fontconfig. +2024-04-19T20:56:09Z #8 30.58 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-04-19T20:56:09Z #8 30.58 Unpacking fontconfig (2.13.1-4.2) ... +2024-04-19T20:56:09Z #8 30.65 Selecting previously unselected package libthai-data. +2024-04-19T20:56:09Z #8 30.65 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-04-19T20:56:09Z #8 30.66 Unpacking libthai-data (0.1.28-3) ... +2024-04-19T20:56:09Z #8 30.73 Selecting previously unselected package libdatrie1:amd64. +2024-04-19T20:56:09Z #8 30.73 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-04-19T20:56:09Z #8 30.74 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-04-19T20:56:09Z #8 30.80 Selecting previously unselected package libthai0:amd64. +2024-04-19T20:56:09Z #8 30.81 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-04-19T20:56:10Z #8 30.82 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-04-19T20:56:10Z #8 30.88 Selecting previously unselected package libpango-1.0-0:amd64. +2024-04-19T20:56:10Z #8 30.89 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-04-19T20:56:10Z #8 30.89 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-19T20:56:10Z #8 30.97 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-04-19T20:56:10Z #8 30.98 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-04-19T20:56:10Z #8 30.98 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-19T20:56:10Z #8 31.04 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-04-19T20:56:10Z #8 31.05 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-04-19T20:56:10Z #8 31.06 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-19T20:56:10Z #8 31.11 Selecting previously unselected package libproxy1v5:amd64. +2024-04-19T20:56:10Z #8 31.12 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-04-19T20:56:10Z #8 31.12 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-04-19T20:56:10Z #8 31.17 Selecting previously unselected package glib-networking-common. +2024-04-19T20:56:10Z #8 31.18 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-04-19T20:56:10Z #8 31.18 Unpacking glib-networking-common (2.66.0-2) ... +2024-04-19T20:56:10Z #8 31.25 Selecting previously unselected package glib-networking-services. +2024-04-19T20:56:10Z #8 31.26 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-04-19T20:56:10Z #8 31.27 Unpacking glib-networking-services (2.66.0-2) ... +2024-04-19T20:56:10Z #8 31.31 Selecting previously unselected package gsettings-desktop-schemas. +2024-04-19T20:56:10Z #8 31.31 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-04-19T20:56:10Z #8 31.32 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-04-19T20:56:10Z #8 31.50 Selecting previously unselected package glib-networking:amd64. +2024-04-19T20:56:10Z #8 31.51 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-04-19T20:56:10Z #8 31.51 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-04-19T20:56:10Z #8 31.57 Selecting previously unselected package libsoup2.4-1:amd64. +2024-04-19T20:56:10Z #8 31.58 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-04-19T20:56:10Z #8 31.58 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-19T20:56:10Z #8 31.73 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-04-19T20:56:10Z #8 31.73 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-04-19T20:56:10Z #8 31.74 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-19T20:56:10Z #8 31.79 Selecting previously unselected package librest-0.7-0:amd64. +2024-04-19T20:56:10Z #8 31.80 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-04-19T20:56:10Z #8 31.81 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-19T20:56:10Z #8 31.85 Selecting previously unselected package libwayland-client0:amd64. +2024-04-19T20:56:10Z #8 31.86 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-19T20:56:10Z #8 31.87 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-19T20:56:11Z #8 31.91 Selecting previously unselected package libwayland-cursor0:amd64. +2024-04-19T20:56:11Z #8 31.92 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-19T20:56:11Z #8 31.93 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-19T20:56:11Z #8 31.98 Selecting previously unselected package libwayland-egl1:amd64. +2024-04-19T20:56:11Z #8 31.98 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-04-19T20:56:11Z #8 31.99 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-19T20:56:11Z #8 32.03 Selecting previously unselected package libxcomposite1:amd64. +2024-04-19T20:56:11Z #8 32.04 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-04-19T20:56:11Z #8 32.05 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-19T20:56:11Z #8 32.10 Selecting previously unselected package libxfixes3:amd64. +2024-04-19T20:56:11Z #8 32.10 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-04-19T20:56:11Z #8 32.10 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-19T20:56:11Z #8 32.14 Selecting previously unselected package libxcursor1:amd64. +2024-04-19T20:56:11Z #8 32.15 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-04-19T20:56:11Z #8 32.16 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-19T20:56:11Z #8 32.21 Selecting previously unselected package libxdamage1:amd64. +2024-04-19T20:56:11Z #8 32.21 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-04-19T20:56:11Z #8 32.22 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-19T20:56:11Z #8 32.26 Selecting previously unselected package libxinerama1:amd64. +2024-04-19T20:56:11Z #8 32.27 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-04-19T20:56:11Z #8 32.27 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-19T20:56:11Z #8 32.31 Selecting previously unselected package xkb-data. +2024-04-19T20:56:11Z #8 32.31 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-04-19T20:56:11Z #8 32.32 Unpacking xkb-data (2.29-2) ... +2024-04-19T20:56:11Z #8 32.57 Selecting previously unselected package libxkbcommon0:amd64. +2024-04-19T20:56:11Z #8 32.58 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-04-19T20:56:11Z #8 32.58 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-19T20:56:11Z #8 32.65 Selecting previously unselected package libxrandr2:amd64. +2024-04-19T20:56:11Z #8 32.65 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-04-19T20:56:11Z #8 32.66 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-19T20:56:11Z #8 32.70 Selecting previously unselected package libgtk-3-common. +2024-04-19T20:56:11Z #8 32.71 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-04-19T20:56:11Z #8 32.71 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-19T20:56:12Z #8 33.54 Selecting previously unselected package libgtk-3-0:amd64. +2024-04-19T20:56:12Z #8 33.54 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-04-19T20:56:12Z #8 33.55 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-19T20:56:13Z #8 34.06 Selecting previously unselected package libx11-xcb1:amd64. +2024-04-19T20:56:13Z #8 34.07 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-04-19T20:56:13Z #8 34.07 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-19T20:56:13Z #8 34.13 Selecting previously unselected package firefox-esr. +2024-04-19T20:56:13Z #8 34.13 Preparing to unpack .../099-firefox-esr_115.10.0esr-1~deb11u1_amd64.deb ... +2024-04-19T20:56:13Z #8 34.15 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-04-19T20:56:13Z #8 34.16 Unpacking firefox-esr (115.10.0esr-1~deb11u1) ... +2024-04-19T20:56:24Z #8 45.52 Selecting previously unselected package fonts-humor-sans. +2024-04-19T20:56:24Z #8 45.52 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-04-19T20:56:24Z #8 45.53 Unpacking fonts-humor-sans (1.0-4) ... +2024-04-19T20:56:24Z #8 45.59 Selecting previously unselected package libcc1-0:amd64. +2024-04-19T20:56:24Z #8 45.60 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-04-19T20:56:24Z #8 45.60 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-04-19T20:56:24Z #8 45.66 Selecting previously unselected package libgomp1:amd64. +2024-04-19T20:56:24Z #8 45.67 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-04-19T20:56:24Z #8 45.68 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-04-19T20:56:24Z #8 45.76 Selecting previously unselected package libitm1:amd64. +2024-04-19T20:56:24Z #8 45.76 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-04-19T20:56:24Z #8 45.77 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-04-19T20:56:24Z #8 45.81 Selecting previously unselected package libatomic1:amd64. +2024-04-19T20:56:24Z #8 45.82 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-04-19T20:56:24Z #8 45.83 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-04-19T20:56:25Z #8 45.87 Selecting previously unselected package libasan6:amd64. +2024-04-19T20:56:25Z #8 45.88 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-04-19T20:56:25Z #8 45.88 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-04-19T20:56:25Z #8 46.28 Selecting previously unselected package liblsan0:amd64. +2024-04-19T20:56:25Z #8 46.28 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-04-19T20:56:25Z #8 46.29 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-04-19T20:56:25Z #8 46.48 Selecting previously unselected package libtsan0:amd64. +2024-04-19T20:56:25Z #8 46.49 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-04-19T20:56:25Z #8 46.49 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-04-19T20:56:26Z #8 46.91 Selecting previously unselected package libubsan1:amd64. +2024-04-19T20:56:26Z #8 46.92 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-04-19T20:56:26Z #8 46.92 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-04-19T20:56:26Z #8 47.10 Selecting previously unselected package libquadmath0:amd64. +2024-04-19T20:56:26Z #8 47.10 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-04-19T20:56:26Z #8 47.11 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-04-19T20:56:26Z #8 47.16 Selecting previously unselected package libgcc-10-dev:amd64. +2024-04-19T20:56:26Z #8 47.17 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-04-19T20:56:26Z #8 47.17 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-19T20:56:26Z #8 47.61 Selecting previously unselected package gcc-10. +2024-04-19T20:56:26Z #8 47.61 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-04-19T20:56:26Z #8 47.62 Unpacking gcc-10 (10.2.1-6) ... +2024-04-19T20:56:29Z #8 50.21 Selecting previously unselected package gcc. +2024-04-19T20:56:29Z #8 50.21 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-04-19T20:56:29Z #8 50.22 Unpacking gcc (4:10.2.1-1) ... +2024-04-19T20:56:29Z #8 50.27 Selecting previously unselected package libva2:amd64. +2024-04-19T20:56:29Z #8 50.28 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-04-19T20:56:29Z #8 50.28 Unpacking libva2:amd64 (2.10.0-1) ... +2024-04-19T20:56:29Z #8 50.33 Selecting previously unselected package libdrm-common. +2024-04-19T20:56:29Z #8 50.33 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-04-19T20:56:29Z #8 50.34 Unpacking libdrm-common (2.4.104-1) ... +2024-04-19T20:56:29Z #8 50.38 Selecting previously unselected package libdrm2:amd64. +2024-04-19T20:56:29Z #8 50.39 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-04-19T20:56:29Z #8 50.39 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-04-19T20:56:29Z #8 50.44 Selecting previously unselected package libpciaccess0:amd64. +2024-04-19T20:56:29Z #8 50.44 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-04-19T20:56:29Z #8 50.45 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-04-19T20:56:29Z #8 50.51 Selecting previously unselected package libdrm-intel1:amd64. +2024-04-19T20:56:29Z #8 50.52 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-04-19T20:56:29Z #8 50.52 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-19T20:56:29Z #8 50.58 Selecting previously unselected package i965-va-driver:amd64. +2024-04-19T20:56:29Z #8 50.58 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-04-19T20:56:29Z #8 50.58 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-19T20:56:29Z #8 50.68 Selecting previously unselected package libigdgmm11:amd64. +2024-04-19T20:56:29Z #8 50.68 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-04-19T20:56:29Z #8 50.68 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-19T20:56:29Z #8 50.78 Selecting previously unselected package intel-media-va-driver:amd64. +2024-04-19T20:56:29Z #8 50.78 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-04-19T20:56:29Z #8 50.79 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-19T20:56:30Z #8 51.11 Selecting previously unselected package libaom0:amd64. +2024-04-19T20:56:30Z #8 51.11 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-04-19T20:56:30Z #8 51.12 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-19T20:56:30Z #8 51.34 Selecting previously unselected package libmfx1:amd64. +2024-04-19T20:56:30Z #8 51.34 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-04-19T20:56:30Z #8 51.35 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-04-19T20:56:31Z #8 52.10 Selecting previously unselected package libva-drm2:amd64. +2024-04-19T20:56:31Z #8 52.10 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-04-19T20:56:31Z #8 52.11 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-04-19T20:56:31Z #8 52.16 Selecting previously unselected package libva-x11-2:amd64. +2024-04-19T20:56:31Z #8 52.16 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-04-19T20:56:31Z #8 52.17 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-04-19T20:56:31Z #8 52.22 Selecting previously unselected package libvdpau1:amd64. +2024-04-19T20:56:31Z #8 52.23 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-04-19T20:56:31Z #8 52.23 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-04-19T20:56:31Z #8 52.29 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-04-19T20:56:31Z #8 52.29 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-04-19T20:56:31Z #8 52.30 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-19T20:56:31Z #8 52.35 Selecting previously unselected package libavutil56:amd64. +2024-04-19T20:56:31Z #8 52.36 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-19T20:56:31Z #8 52.36 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-19T20:56:31Z #8 52.45 Selecting previously unselected package libcodec2-0.9:amd64. +2024-04-19T20:56:31Z #8 52.46 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-04-19T20:56:31Z #8 52.47 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-19T20:56:32Z #8 53.57 Selecting previously unselected package libdav1d4:amd64. +2024-04-19T20:56:32Z #8 53.57 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-04-19T20:56:32Z #8 53.58 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-04-19T20:56:32Z #8 53.68 Selecting previously unselected package libgsm1:amd64. +2024-04-19T20:56:32Z #8 53.68 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-04-19T20:56:32Z #8 53.68 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-04-19T20:56:32Z #8 53.73 Selecting previously unselected package libmp3lame0:amd64. +2024-04-19T20:56:32Z #8 53.73 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-04-19T20:56:32Z #8 53.74 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-04-19T20:56:32Z #8 53.82 Selecting previously unselected package libopenjp2-7:amd64. +2024-04-19T20:56:32Z #8 53.82 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-04-19T20:56:32Z #8 53.83 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-19T20:56:32Z #8 53.90 Selecting previously unselected package libopus0:amd64. +2024-04-19T20:56:32Z #8 53.91 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-04-19T20:56:32Z #8 53.91 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-04-19T20:56:33Z #8 53.99 Selecting previously unselected package librsvg2-2:amd64. +2024-04-19T20:56:33Z #8 53.99 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-19T20:56:33Z #8 54.00 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-19T20:56:33Z #8 54.47 Selecting previously unselected package libshine3:amd64. +2024-04-19T20:56:33Z #8 54.47 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-04-19T20:56:33Z #8 54.48 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-04-19T20:56:33Z #8 54.53 Selecting previously unselected package libsnappy1v5:amd64. +2024-04-19T20:56:33Z #8 54.54 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-04-19T20:56:33Z #8 54.54 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-19T20:56:33Z #8 54.59 Selecting previously unselected package libspeex1:amd64. +2024-04-19T20:56:33Z #8 54.60 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-04-19T20:56:33Z #8 54.61 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-19T20:56:33Z #8 54.66 Selecting previously unselected package libsoxr0:amd64. +2024-04-19T20:56:33Z #8 54.66 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-04-19T20:56:33Z #8 54.67 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-04-19T20:56:33Z #8 54.73 Selecting previously unselected package libswresample3:amd64. +2024-04-19T20:56:33Z #8 54.74 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-19T20:56:33Z #8 54.74 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-19T20:56:33Z #8 54.80 Selecting previously unselected package libogg0:amd64. +2024-04-19T20:56:33Z #8 54.81 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-04-19T20:56:33Z #8 54.81 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-04-19T20:56:34Z #8 54.86 Selecting previously unselected package libtheora0:amd64. +2024-04-19T20:56:34Z #8 54.86 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-04-19T20:56:34Z #8 54.87 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-19T20:56:34Z #8 54.94 Selecting previously unselected package libtwolame0:amd64. +2024-04-19T20:56:34Z #8 54.95 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-04-19T20:56:34Z #8 54.96 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-04-19T20:56:34Z #8 55.02 Selecting previously unselected package libvorbis0a:amd64. +2024-04-19T20:56:34Z #8 55.03 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-04-19T20:56:34Z #8 55.03 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-04-19T20:56:34Z #8 55.09 Selecting previously unselected package libvorbisenc2:amd64. +2024-04-19T20:56:34Z #8 55.09 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-04-19T20:56:34Z #8 55.10 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-19T20:56:34Z #8 55.17 Selecting previously unselected package libvpx6:amd64. +2024-04-19T20:56:34Z #8 55.17 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-04-19T20:56:34Z #8 55.18 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-19T20:56:34Z #8 55.35 Selecting previously unselected package libwavpack1:amd64. +2024-04-19T20:56:34Z #8 55.35 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-04-19T20:56:34Z #8 55.36 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-04-19T20:56:34Z #8 55.41 Selecting previously unselected package libwebpmux3:amd64. +2024-04-19T20:56:34Z #8 55.41 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-19T20:56:34Z #8 55.42 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-19T20:56:34Z #8 55.48 Selecting previously unselected package libx264-160:amd64. +2024-04-19T20:56:34Z #8 55.48 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-04-19T20:56:34Z #8 55.49 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-19T20:56:34Z #8 55.61 Selecting previously unselected package libnuma1:amd64. +2024-04-19T20:56:34Z #8 55.62 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-04-19T20:56:34Z #8 55.63 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-19T20:56:34Z #8 55.68 Selecting previously unselected package libx265-192:amd64. +2024-04-19T20:56:34Z #8 55.69 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-04-19T20:56:34Z #8 55.69 Unpacking libx265-192:amd64 (3.4-2) ... +2024-04-19T20:56:35Z #8 56.01 Selecting previously unselected package libxvidcore4:amd64. +2024-04-19T20:56:35Z #8 56.01 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-04-19T20:56:35Z #8 56.02 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-19T20:56:35Z #8 56.09 Selecting previously unselected package libzvbi-common. +2024-04-19T20:56:35Z #8 56.09 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-04-19T20:56:35Z #8 56.10 Unpacking libzvbi-common (0.2.35-18) ... +2024-04-19T20:56:35Z #8 56.15 Selecting previously unselected package libzvbi0:amd64. +2024-04-19T20:56:35Z #8 56.16 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-04-19T20:56:35Z #8 56.17 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-04-19T20:56:35Z #8 56.25 Selecting previously unselected package libavcodec58:amd64. +2024-04-19T20:56:35Z #8 56.25 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-19T20:56:35Z #8 56.26 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-19T20:56:36Z #8 57.03 Selecting previously unselected package libc-dev-bin. +2024-04-19T20:56:36Z #8 57.04 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... +2024-04-19T20:56:36Z #8 57.04 Unpacking libc-dev-bin (2.31-13+deb11u8) ... +2024-04-19T20:56:36Z #8 57.09 Selecting previously unselected package libxpm4:amd64. +2024-04-19T20:56:36Z #8 57.10 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-04-19T20:56:36Z #8 57.10 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-19T20:56:36Z #8 57.15 Selecting previously unselected package libgd3:amd64. +2024-04-19T20:56:36Z #8 57.17 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-04-19T20:56:36Z #8 57.19 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-04-19T20:56:36Z #8 57.64 Selecting previously unselected package libc-devtools. +2024-04-19T20:56:36Z #8 57.64 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... +2024-04-19T20:56:36Z #8 57.65 Unpacking libc-devtools (2.31-13+deb11u8) ... +2024-04-19T20:56:36Z #8 57.73 Selecting previously unselected package linux-libc-dev:amd64. +2024-04-19T20:56:36Z #8 57.74 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-04-19T20:56:36Z #8 57.75 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-19T20:56:37Z #8 58.10 Selecting previously unselected package libcrypt-dev:amd64. +2024-04-19T20:56:37Z #8 58.11 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-04-19T20:56:37Z #8 58.11 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-19T20:56:37Z #8 58.17 Selecting previously unselected package libtirpc-dev:amd64. +2024-04-19T20:56:37Z #8 58.17 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-04-19T20:56:37Z #8 58.17 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-19T20:56:37Z #8 58.24 Selecting previously unselected package libnsl-dev:amd64. +2024-04-19T20:56:37Z #8 58.25 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-04-19T20:56:37Z #8 58.25 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-04-19T20:56:37Z #8 58.31 Selecting previously unselected package libc6-dev:amd64. +2024-04-19T20:56:37Z #8 58.31 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... +2024-04-19T20:56:37Z #8 58.32 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-04-19T20:56:38Z #8 58.88 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-04-19T20:56:38Z #8 58.89 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-04-19T20:56:38Z #8 58.89 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-19T20:56:38Z #8 58.94 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-04-19T20:56:38Z #8 58.95 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-04-19T20:56:38Z #8 58.95 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-19T20:56:38Z #8 59.07 Selecting previously unselected package libdrm-radeon1:amd64. +2024-04-19T20:56:38Z #8 59.07 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-04-19T20:56:38Z #8 59.08 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-19T20:56:38Z #8 59.13 Selecting previously unselected package libelf1:amd64. +2024-04-19T20:56:38Z #8 59.13 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-04-19T20:56:38Z #8 59.14 Unpacking libelf1:amd64 (0.183-1) ... +2024-04-19T20:56:38Z #8 59.21 Selecting previously unselected package libfontenc1:amd64. +2024-04-19T20:56:38Z #8 59.21 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-04-19T20:56:38Z #8 59.22 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-19T20:56:38Z #8 59.26 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-04-19T20:56:38Z #8 59.26 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-19T20:56:38Z #8 59.27 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-19T20:56:38Z #8 59.31 Selecting previously unselected package libglapi-mesa:amd64. +2024-04-19T20:56:38Z #8 59.32 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-04-19T20:56:38Z #8 59.32 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-19T20:56:38Z #8 59.37 Selecting previously unselected package libz3-4:amd64. +2024-04-19T20:56:38Z #8 59.38 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-04-19T20:56:38Z #8 59.38 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-04-19T20:56:39Z #8 60.47 Selecting previously unselected package libllvm11:amd64. +2024-04-19T20:56:39Z #8 60.47 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-04-19T20:56:39Z #8 60.48 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-04-19T20:56:42Z #8 63.60 Selecting previously unselected package libsensors-config. +2024-04-19T20:56:42Z #8 63.61 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-04-19T20:56:42Z #8 63.61 Unpacking libsensors-config (1:3.6.0-7) ... +2024-04-19T20:56:42Z #8 63.66 Selecting previously unselected package libsensors5:amd64. +2024-04-19T20:56:42Z #8 63.67 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-04-19T20:56:42Z #8 63.71 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-04-19T20:56:42Z #8 63.76 Selecting previously unselected package libvulkan1:amd64. +2024-04-19T20:56:42Z #8 63.77 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-04-19T20:56:42Z #8 63.77 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-19T20:56:42Z #8 63.85 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-04-19T20:56:43Z #8 63.85 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-04-19T20:56:43Z #8 63.86 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-19T20:56:44Z #8 65.36 Selecting previously unselected package libglvnd0:amd64. +2024-04-19T20:56:44Z #8 65.36 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-04-19T20:56:44Z #8 65.37 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-04-19T20:56:44Z #8 65.42 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-04-19T20:56:44Z #8 65.43 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-04-19T20:56:44Z #8 65.43 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-19T20:56:44Z #8 65.48 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-04-19T20:56:44Z #8 65.49 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-04-19T20:56:44Z #8 65.49 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-19T20:56:44Z #8 65.54 Selecting previously unselected package libxcb-glx0:amd64. +2024-04-19T20:56:44Z #8 65.55 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-04-19T20:56:44Z #8 65.55 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-04-19T20:56:44Z #8 65.62 Selecting previously unselected package libxcb-present0:amd64. +2024-04-19T20:56:44Z #8 65.62 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-04-19T20:56:44Z #8 65.62 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-04-19T20:56:44Z #8 65.68 Selecting previously unselected package libxcb-sync1:amd64. +2024-04-19T20:56:44Z #8 65.68 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-04-19T20:56:44Z #8 65.69 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-04-19T20:56:44Z #8 65.74 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-04-19T20:56:44Z #8 65.74 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-04-19T20:56:44Z #8 65.75 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-19T20:56:44Z #8 65.80 Selecting previously unselected package libxshmfence1:amd64. +2024-04-19T20:56:44Z #8 65.80 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-04-19T20:56:44Z #8 65.81 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-04-19T20:56:45Z #8 65.85 Selecting previously unselected package libxxf86vm1:amd64. +2024-04-19T20:56:45Z #8 65.85 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-04-19T20:56:45Z #8 65.86 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-19T20:56:45Z #8 65.90 Selecting previously unselected package libglx-mesa0:amd64. +2024-04-19T20:56:45Z #8 65.90 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-04-19T20:56:45Z #8 65.91 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-19T20:56:45Z #8 65.97 Selecting previously unselected package libgtk-3-bin. +2024-04-19T20:56:45Z #8 65.98 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-04-19T20:56:45Z #8 65.98 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-19T20:56:45Z #8 66.04 Selecting previously unselected package librsvg2-common:amd64. +2024-04-19T20:56:45Z #8 66.05 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-19T20:56:45Z #8 66.05 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-19T20:56:45Z #8 66.10 Selecting previously unselected package libglx0:amd64. +2024-04-19T20:56:45Z #8 66.10 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-04-19T20:56:45Z #8 66.11 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-04-19T20:56:45Z #8 66.16 Selecting previously unselected package libgl1:amd64. +2024-04-19T20:56:45Z #8 66.16 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-04-19T20:56:45Z #8 66.17 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-04-19T20:56:45Z #8 66.22 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-04-19T20:56:45Z #8 66.23 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-04-19T20:56:45Z #8 66.23 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-19T20:56:45Z #8 66.28 Selecting previously unselected package libxt6:amd64. +2024-04-19T20:56:45Z #8 66.29 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-04-19T20:56:45Z #8 66.29 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-04-19T20:56:45Z #8 66.36 Selecting previously unselected package libxmu6:amd64. +2024-04-19T20:56:45Z #8 66.36 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-19T20:56:45Z #8 66.37 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-19T20:56:45Z #8 66.42 Selecting previously unselected package libxaw7:amd64. +2024-04-19T20:56:45Z #8 66.43 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-04-19T20:56:45Z #8 66.43 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-19T20:56:45Z #8 66.51 Selecting previously unselected package libxcb-randr0:amd64. +2024-04-19T20:56:45Z #8 66.51 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-04-19T20:56:45Z #8 66.52 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-04-19T20:56:45Z #8 66.57 Selecting previously unselected package libxcb-shape0:amd64. +2024-04-19T20:56:45Z #8 66.58 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-04-19T20:56:45Z #8 66.58 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-04-19T20:56:45Z #8 66.64 Selecting previously unselected package libxft2:amd64. +2024-04-19T20:56:45Z #8 66.65 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-04-19T20:56:45Z #8 66.65 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-04-19T20:56:45Z #8 66.70 Selecting previously unselected package libxkbfile1:amd64. +2024-04-19T20:56:45Z #8 66.71 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-04-19T20:56:45Z #8 66.71 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-19T20:56:45Z #8 66.77 Selecting previously unselected package libxmuu1:amd64. +2024-04-19T20:56:45Z #8 66.77 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-19T20:56:45Z #8 66.78 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-19T20:56:45Z #8 66.83 Selecting previously unselected package libxv1:amd64. +2024-04-19T20:56:45Z #8 66.83 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-04-19T20:56:45Z #8 66.84 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-04-19T20:56:46Z #8 66.88 Selecting previously unselected package libxxf86dga1:amd64. +2024-04-19T20:56:46Z #8 66.89 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-04-19T20:56:46Z #8 66.89 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-19T20:56:46Z #8 66.94 Selecting previously unselected package manpages-dev. +2024-04-19T20:56:46Z #8 66.94 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-04-19T20:56:46Z #8 66.94 Unpacking manpages-dev (5.10-1) ... +2024-04-19T20:56:46Z #8 67.40 Selecting previously unselected package mesa-va-drivers:amd64. +2024-04-19T20:56:46Z #8 67.40 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-04-19T20:56:46Z #8 67.41 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-19T20:56:46Z #8 67.87 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-04-19T20:56:46Z #8 67.88 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-04-19T20:56:46Z #8 67.88 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-19T20:56:48Z #8 69.47 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-04-19T20:56:48Z #8 69.48 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-04-19T20:56:48Z #8 69.67 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-19T20:56:49Z #8 70.37 Selecting previously unselected package patch. +2024-04-19T20:56:49Z #8 70.37 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-04-19T20:56:49Z #8 70.38 Unpacking patch (2.7.6-7) ... +2024-04-19T20:56:49Z #8 70.43 Selecting previously unselected package unzip. +2024-04-19T20:56:49Z #8 70.44 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-04-19T20:56:49Z #8 70.44 Unpacking unzip (6.0-26+deb11u1) ... +2024-04-19T20:56:49Z #8 70.51 Selecting previously unselected package va-driver-all:amd64. +2024-04-19T20:56:49Z #8 70.51 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-04-19T20:56:49Z #8 70.52 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-04-19T20:56:49Z #8 70.56 Selecting previously unselected package vdpau-driver-all:amd64. +2024-04-19T20:56:49Z #8 70.57 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-04-19T20:56:49Z #8 70.57 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-04-19T20:56:49Z #8 70.62 Selecting previously unselected package x11-utils. +2024-04-19T20:56:49Z #8 70.62 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-04-19T20:56:49Z #8 70.63 Unpacking x11-utils (7.7+5) ... +2024-04-19T20:56:49Z #8 70.77 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-19T20:56:49Z #8 70.78 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-19T20:56:49Z #8 70.80 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-19T20:56:49Z #8 70.81 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-19T20:56:49Z #8 70.83 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-19T20:56:49Z #8 70.84 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-04-19T20:56:49Z #8 70.85 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-04-19T20:56:49Z #8 70.86 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-04-19T20:56:49Z #8 70.88 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-19T20:56:49Z #8 70.89 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-19T20:56:49Z #8 70.90 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-04-19T20:56:49Z #8 70.91 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-19T20:56:50Z #8 70.93 Setting up libshine3:amd64 (3.1.1-2) ... +2024-04-19T20:56:50Z #8 70.94 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-19T20:56:50Z #8 70.95 Setting up hicolor-icon-theme (0.17-2) ... +2024-04-19T20:56:50Z #8 70.98 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-04-19T20:56:50Z #8 70.99 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-04-19T20:56:50Z #8 71.01 Setting up libicu67:amd64 (67.1-7) ... +2024-04-19T20:56:50Z #8 71.02 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-04-19T20:56:50Z #8 71.04 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-04-19T20:56:50Z #8 71.05 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-04-19T20:56:50Z #8 71.06 Setting up manpages (5.10-1) ... +2024-04-19T20:56:50Z #8 71.08 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-04-19T20:56:50Z #8 71.09 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-04-19T20:56:50Z #8 71.10 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-04-19T20:56:50Z #8 71.11 Setting up unzip (6.0-26+deb11u1) ... +2024-04-19T20:56:50Z #8 71.13 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-19T20:56:50Z #8 71.15 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-19T20:56:50Z #8 71.16 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-04-19T20:56:50Z #8 71.18 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-04-19T20:56:50Z #8 71.19 Setting up libsensors-config (1:3.6.0-7) ... +2024-04-19T20:56:50Z #8 71.21 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-19T20:56:50Z #8 71.23 Setting up libdeflate0:amd64 (1.7-1) ... +2024-04-19T20:56:50Z #8 71.24 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-19T20:56:50Z #8 71.26 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-19T20:56:50Z #8 71.27 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-19T20:56:50Z #8 71.28 First installation detected... +2024-04-19T20:56:50Z #8 71.29 Checking NSS setup... +2024-04-19T20:56:50Z #8 71.29 Setting up xkb-data (2.29-2) ... +2024-04-19T20:56:50Z #8 71.31 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-04-19T20:56:50Z #8 71.32 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-04-19T20:56:50Z #8 71.34 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-19T20:56:50Z #8 71.35 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-19T20:56:50Z #8 71.37 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-19T20:56:50Z #8 71.39 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-04-19T20:56:50Z #8 71.40 Setting up libasan6:amd64 (10.2.1-6) ... +2024-04-19T20:56:50Z #8 71.42 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-19T20:56:50Z #8 71.43 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-19T20:56:50Z #8 71.44 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-04-19T20:56:50Z #8 71.46 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-04-19T20:56:50Z #8 71.47 Setting up libasound2-data (1.2.4-1.1) ... +2024-04-19T20:56:50Z #8 71.49 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-19T20:56:50Z #8 71.50 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-04-19T20:56:50Z #8 71.51 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-19T20:56:50Z #8 71.53 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-04-19T20:56:50Z #8 71.54 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-19T20:56:50Z #8 71.55 Setting up libva2:amd64 (2.10.0-1) ... +2024-04-19T20:56:50Z #8 71.56 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-19T20:56:50Z #8 71.58 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-04-19T20:56:50Z #8 71.60 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-04-19T20:56:50Z #8 71.61 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-19T20:56:50Z #8 71.63 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-04-19T20:56:50Z #8 71.64 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-19T20:56:50Z #8 71.65 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-19T20:56:50Z #8 71.67 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-19T20:56:50Z #8 71.69 Setting up dbus (1.12.28-0+deb11u1) ... +2024-04-19T20:56:50Z #8 71.86 invoke-rc.d: could not determine current runlevel +2024-04-19T20:56:50Z #8 71.87 invoke-rc.d: policy-rc.d denied execution of start. +2024-04-19T20:56:50Z #8 71.87 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-19T20:56:50Z #8 71.89 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-04-19T20:56:50Z #8 71.90 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-04-19T20:56:50Z #8 71.91 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-19T20:56:51Z #8 71.92 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-19T20:56:51Z #8 71.94 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-04-19T20:56:51Z #8 71.95 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-04-19T20:56:51Z #8 71.97 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-04-19T20:56:51Z #8 71.99 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-19T20:56:51Z #8 72.36 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-19T20:56:51Z #8 72.36 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-19T20:56:51Z #8 72.37 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-04-19T20:56:51Z #8 72.39 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-04-19T20:56:51Z #8 72.40 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-19T20:56:51Z #8 72.42 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-19T20:56:51Z #8 72.43 Setting up patch (2.7.6-7) ... +2024-04-19T20:56:51Z #8 72.45 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-19T20:56:51Z #8 72.46 Setting up fonts-dejavu-core (2.37-2) ... +2024-04-19T20:56:51Z #8 72.62 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-04-19T20:56:51Z #8 72.63 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-04-19T20:56:51Z #8 72.65 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-19T20:56:51Z #8 72.66 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-19T20:56:51Z #8 72.68 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-04-19T20:56:51Z #8 72.69 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-19T20:56:51Z #8 72.70 Setting up libatk1.0-data (2.36.0-2) ... +2024-04-19T20:56:51Z #8 72.71 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-19T20:56:51Z #8 72.73 Setting up alsa-topology-conf (1.2.4-1) ... +2024-04-19T20:56:51Z #8 72.75 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-04-19T20:56:51Z #8 72.76 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-19T20:56:51Z #8 72.78 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-04-19T20:56:51Z #8 72.79 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-19T20:56:51Z #8 72.81 Setting up libvdpau1:amd64 (1.4-3) ... +2024-04-19T20:56:52Z #8 72.83 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-19T20:56:52Z #8 72.84 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-04-19T20:56:52Z #8 72.86 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-04-19T20:56:52Z #8 72.87 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-04-19T20:56:52Z #8 72.88 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-19T20:56:52Z #8 73.12 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-04-19T20:56:52Z #8 73.14 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-19T20:56:52Z #8 73.15 Setting up libthai-data (0.1.28-3) ... +2024-04-19T20:56:52Z #8 73.17 Setting up fonts-humor-sans (1.0-4) ... +2024-04-19T20:56:52Z #8 73.19 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-04-19T20:56:52Z #8 73.20 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-19T20:56:52Z #8 73.21 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-19T20:56:52Z #8 73.24 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-19T20:56:52Z #8 73.26 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-19T20:56:52Z #8 73.27 Setting up glib-networking-common (2.66.0-2) ... +2024-04-19T20:56:52Z #8 73.29 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-04-19T20:56:52Z #8 73.31 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-04-19T20:56:52Z #8 73.32 Setting up libisl23:amd64 (0.23-1) ... +2024-04-19T20:56:52Z #8 73.33 Setting up libc-dev-bin (2.31-13+deb11u8) ... +2024-04-19T20:56:52Z #8 73.35 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-19T20:56:52Z #8 73.37 Setting up libdrm-common (2.4.104-1) ... +2024-04-19T20:56:52Z #8 73.38 Setting up libelf1:amd64 (0.183-1) ... +2024-04-19T20:56:52Z #8 73.40 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-19T20:56:52Z #8 73.41 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-19T20:56:52Z #8 73.43 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-04-19T20:56:52Z #8 73.44 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-19T20:56:52Z #8 73.45 Setting up libzvbi-common (0.2.35-18) ... +2024-04-19T20:56:52Z #8 73.47 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-04-19T20:56:52Z #8 73.49 Setting up cpp-10 (10.2.1-6) ... +2024-04-19T20:56:52Z #8 73.51 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-04-19T20:56:52Z #8 73.52 Setting up libitm1:amd64 (10.2.1-6) ... +2024-04-19T20:56:52Z #8 73.53 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-19T20:56:52Z #8 73.55 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-04-19T20:56:52Z #8 73.57 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-19T20:56:52Z #8 73.59 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-19T20:56:52Z #8 73.61 Setting up libctf0:amd64 (2.35.2-2) ... +2024-04-19T20:56:52Z #8 73.62 Setting up glib-networking-services (2.66.0-2) ... +2024-04-19T20:56:52Z #8 73.63 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-04-19T20:56:52Z #8 73.65 Setting up manpages-dev (5.10-1) ... +2024-04-19T20:56:52Z #8 73.66 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-19T20:56:52Z #8 73.68 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-04-19T20:56:52Z #8 73.69 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-04-19T20:56:52Z #8 73.71 Setting up fontconfig-config (2.13.1-4.2) ... +2024-04-19T20:56:53Z #8 74.05 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-19T20:56:53Z #8 74.07 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-19T20:56:53Z #8 74.08 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-19T20:56:53Z #8 74.10 Setting up libx265-192:amd64 (3.4-2) ... +2024-04-19T20:56:53Z #8 74.12 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-19T20:56:53Z #8 74.14 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-19T20:56:53Z #8 74.15 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-19T20:56:53Z #8 74.17 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-19T20:56:53Z #8 74.18 Setting up libthai0:amd64 (0.1.28-3) ... +2024-04-19T20:56:53Z #8 74.20 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-19T20:56:53Z #8 74.22 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-19T20:56:53Z #8 74.23 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-19T20:56:53Z #8 74.25 Setting up shared-mime-info (2.0-1) ... +2024-04-19T20:56:56Z #8 77.24 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-04-19T20:56:56Z #8 77.25 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-04-19T20:56:56Z #8 77.27 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-19T20:56:56Z #8 77.29 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-19T20:56:56Z #8 77.30 Setting up cpp (4:10.2.1-1) ... +2024-04-19T20:56:56Z #8 77.32 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... +2024-04-19T20:56:56Z #8 77.34 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-19T20:56:56Z #8 77.35 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-19T20:56:56Z #8 77.39 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-19T20:56:56Z #8 77.45 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-04-19T20:56:56Z #8 77.47 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-19T20:56:56Z #8 77.49 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-19T20:56:56Z #8 77.50 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-19T20:56:56Z #8 77.51 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-19T20:56:56Z #8 77.53 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-19T20:56:56Z #8 77.54 Setting up fontconfig (2.13.1-4.2) ... +2024-04-19T20:56:58Z #8 77.55 Regenerating fonts cache... done. +2024-04-19T20:56:58Z #8 79.58 Setting up libxft2:amd64 (2.3.2-2) ... +2024-04-19T20:56:58Z #8 79.59 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-19T20:56:58Z #8 79.61 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-19T20:56:58Z #8 79.62 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-19T20:56:58Z #8 79.63 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-19T20:56:58Z #8 79.64 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-19T20:56:58Z #8 79.66 Setting up dconf-service (0.38.0-2) ... +2024-04-19T20:56:58Z #8 79.68 Setting up binutils (2.35.2-2) ... +2024-04-19T20:56:58Z #8 79.69 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-04-19T20:56:58Z #8 79.70 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-19T20:56:58Z #8 79.72 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-04-19T20:56:58Z #8 79.81 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-04-19T20:56:58Z #8 79.82 Setting up libgd3:amd64 (2.3.0-2) ... +2024-04-19T20:56:58Z #8 79.84 Setting up gcc-10 (10.2.1-6) ... +2024-04-19T20:56:58Z #8 79.85 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-19T20:56:58Z #8 79.87 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-19T20:56:59Z #8 79.88 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-19T20:56:59Z #8 79.90 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-19T20:56:59Z #8 79.91 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-19T20:56:59Z #8 79.92 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-19T20:56:59Z #8 79.94 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-19T20:56:59Z #8 79.95 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-19T20:56:59Z #8 79.97 Setting up libc-devtools (2.31-13+deb11u8) ... +2024-04-19T20:56:59Z #8 79.99 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-19T20:56:59Z #8 80.01 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-19T20:56:59Z #8 80.02 Setting up libglx0:amd64 (1.3.2-1) ... +2024-04-19T20:56:59Z #8 80.04 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-19T20:56:59Z #8 80.05 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-19T20:56:59Z #8 80.07 Setting up gcc (4:10.2.1-1) ... +2024-04-19T20:56:59Z #8 80.10 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-19T20:56:59Z #8 80.12 Setting up libgl1:amd64 (1.3.2-1) ... +2024-04-19T20:56:59Z #8 80.13 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-04-19T20:56:59Z #8 80.15 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-19T20:56:59Z #8 80.17 Setting up x11-utils (7.7+5) ... +2024-04-19T20:56:59Z #8 80.24 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-19T20:56:59Z #8 80.25 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-19T20:56:59Z #8 80.27 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-19T20:56:59Z #8 80.29 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-04-19T20:56:59Z #8 80.31 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-04-19T20:56:59Z #8 80.33 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-04-19T20:56:59Z #8 80.37 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-19T20:56:59Z #8 80.42 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-04-19T20:56:59Z #8 80.43 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-19T20:56:59Z #8 80.46 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-19T20:56:59Z #8 80.48 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-19T20:56:59Z #8 80.50 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-19T20:56:59Z #8 80.54 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-19T20:56:59Z #8 80.55 Setting up firefox-esr (115.10.0esr-1~deb11u1) ... +2024-04-19T20:56:59Z #8 80.57 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-04-19T20:56:59Z #8 80.58 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-04-19T20:56:59Z #8 80.58 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-04-19T20:56:59Z #8 80.59 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-04-19T20:56:59Z #8 80.60 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-19T20:56:59Z #8 80.63 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-19T20:57:04Z #8 DONE 85.2s +2024-04-19T20:57:04Z +2024-04-19T20:57:04Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-04-19T20:58:02Z #9 DONE 57.6s +2024-04-19T20:58:02Z +2024-04-19T20:58:02Z #10 [ 5/10] COPY environment.yml /environment.yml +2024-04-19T20:58:02Z #10 DONE 0.1s +2024-04-19T20:58:02Z +2024-04-19T20:58:02Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-04-19T21:00:34Z #11 152.0 Transaction +2024-04-19T21:00:34Z #11 152.0 +2024-04-19T21:00:34Z #11 152.0 Prefix: /opt/conda/envs/birdy +2024-04-19T21:00:34Z #11 152.0 +2024-04-19T21:00:34Z #11 152.0 Updating specs: +2024-04-19T21:00:34Z #11 152.0 +2024-04-19T21:00:34Z #11 152.0 - xclim +2024-04-19T21:00:34Z #11 152.0 - ravenpy +2024-04-19T21:00:34Z #11 152.0 - python=3.10 +2024-04-19T21:00:34Z #11 152.0 +2024-04-19T21:00:34Z #11 152.0 +2024-04-19T21:00:34Z #11 152.1 Package Version Build Channel Size +2024-04-19T21:00:34Z #11 152.1 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-19T21:00:34Z #11 152.1 Install: +2024-04-19T21:00:34Z #11 152.1 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-19T21:00:34Z #11 152.1 +2024-04-19T21:00:34Z #11 152.1 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-04-19T21:00:34Z #11 152.1 + python_abi 3.10 4_cp310 conda-forge 6kB +2024-04-19T21:00:34Z #11 152.1 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB +2024-04-19T21:00:34Z #11 152.1 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB +2024-04-19T21:00:34Z #11 152.1 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB +2024-04-19T21:00:34Z #11 152.1 + mpi 1.0 impi conda-forge 7kB +2024-04-19T21:00:34Z #11 152.1 + libgomp 13.2.0 h807b86a_5 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + impi_rt 2021.12.0 ha770c72_535 conda-forge 37MB +2024-04-19T21:00:34Z #11 152.1 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-04-19T21:00:34Z #11 152.1 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-04-19T21:00:34Z #11 152.1 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-04-19T21:00:34Z #11 152.1 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-04-19T21:00:34Z #11 152.1 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-04-19T21:00:34Z #11 152.1 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-04-19T21:00:34Z #11 152.1 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-04-19T21:00:34Z #11 152.1 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-04-19T21:00:34Z #11 152.1 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-04-19T21:00:34Z #11 152.1 + aws-c-common 0.9.15 hd590300_0 conda-forge 227kB +2024-04-19T21:00:34Z #11 152.1 + c-ares 1.28.1 hd590300_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + libev 4.33 hd590300_2 conda-forge 113kB +2024-04-19T21:00:34Z #11 152.1 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-04-19T21:00:34Z #11 152.1 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-04-19T21:00:34Z #11 152.1 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-04-19T21:00:34Z #11 152.1 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-04-19T21:00:34Z #11 152.1 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-04-19T21:00:34Z #11 152.1 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-04-19T21:00:34Z #11 152.1 + lzo 2.10 hd590300_1001 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-04-19T21:00:34Z #11 152.1 + giflib 5.2.2 hd590300_0 conda-forge 77kB +2024-04-19T21:00:34Z #11 152.1 + snappy 1.2.0 hdb0a2a9_1 conda-forge 42kB +2024-04-19T21:00:34Z #11 152.1 + libwebp-base 1.4.0 hd590300_0 conda-forge 439kB +2024-04-19T21:00:34Z #11 152.1 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-04-19T21:00:34Z #11 152.1 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-04-19T21:00:34Z #11 152.1 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + openssl 3.2.1 hd590300_1 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + libxcrypt 4.4.36 hd590300_1 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-04-19T21:00:34Z #11 152.1 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-04-19T21:00:34Z #11 152.1 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-04-19T21:00:34Z #11 152.1 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-04-19T21:00:34Z #11 152.1 + icu 73.2 h59595ed_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-04-19T21:00:34Z #11 152.1 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB +2024-04-19T21:00:34Z #11 152.1 + libdeflate 1.20 hd590300_0 conda-forge 72kB +2024-04-19T21:00:34Z #11 152.1 + libaec 1.1.3 h59595ed_0 conda-forge 35kB +2024-04-19T21:00:34Z #11 152.1 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-04-19T21:00:34Z #11 152.1 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-04-19T21:00:34Z #11 152.1 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-04-19T21:00:34Z #11 152.1 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-04-19T21:00:34Z #11 152.1 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB +2024-04-19T21:00:34Z #11 152.1 + libuuid 2.38.1 h0b41bf4_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + libnsl 2.0.1 hd590300_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-04-19T21:00:34Z #11 152.1 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB +2024-04-19T21:00:34Z #11 152.1 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB +2024-04-19T21:00:34Z #11 152.1 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-04-19T21:00:34Z #11 152.1 + aws-checksums 0.1.18 hce8ee76_3 conda-forge 50kB +2024-04-19T21:00:34Z #11 152.1 + aws-c-compression 0.2.18 hce8ee76_3 conda-forge 19kB +2024-04-19T21:00:34Z #11 152.1 + aws-c-sdkutils 0.1.15 hce8ee76_3 conda-forge 55kB +2024-04-19T21:00:34Z #11 152.1 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-04-19T21:00:34Z #11 152.1 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-04-19T21:00:34Z #11 152.1 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-04-19T21:00:34Z #11 152.1 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-04-19T21:00:34Z #11 152.1 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-04-19T21:00:34Z #11 152.1 + s2n 1.4.12 h06160fa_0 conda-forge 347kB +2024-04-19T21:00:34Z #11 152.1 + aws-c-cal 0.6.11 heb1d5e4_0 conda-forge 46kB +2024-04-19T21:00:34Z #11 152.1 + expat 2.6.2 h59595ed_0 conda-forge 138kB +2024-04-19T21:00:34Z #11 152.1 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB +2024-04-19T21:00:34Z #11 152.1 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-04-19T21:00:34Z #11 152.1 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-04-19T21:00:34Z #11 152.1 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-04-19T21:00:34Z #11 152.1 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-04-19T21:00:34Z #11 152.1 + libssh2 1.11.0 h0841786_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + tk 8.6.13 noxft_h4845f30_101 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + libsqlite 3.45.3 h2797004_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + pcre2 10.43 hcad00b1_0 conda-forge 951kB +2024-04-19T21:00:34Z #11 152.1 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-04-19T21:00:34Z #11 152.1 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2024-04-19T21:00:34Z #11 152.1 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB +2024-04-19T21:00:34Z #11 152.1 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-04-19T21:00:34Z #11 152.1 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-04-19T21:00:34Z #11 152.1 + readline 8.2 h8228510_1 conda-forge 281kB +2024-04-19T21:00:34Z #11 152.1 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-04-19T21:00:34Z #11 152.1 + libxml2 2.12.6 h232c23b_2 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + ucx 1.15.0 ha691c75_8 conda-forge 7MB +2024-04-19T21:00:34Z #11 152.1 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-04-19T21:00:34Z #11 152.1 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-04-19T21:00:34Z #11 152.1 + xorg-libx11 1.8.9 h8ee46fc_0 conda-forge 828kB +2024-04-19T21:00:34Z #11 152.1 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-04-19T21:00:34Z #11 152.1 + aws-c-io 0.14.7 hbfbeace_6 conda-forge 158kB +2024-04-19T21:00:34Z #11 152.1 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-04-19T21:00:34Z #11 152.1 + libglib 2.80.0 hf2295e7_5 conda-forge 4MB +2024-04-19T21:00:34Z #11 152.1 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-04-19T21:00:34Z #11 152.1 + orc 2.0.0 h17fec99_1 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-04-19T21:00:34Z #11 152.1 + blosc 1.21.5 hc2324a3_1 conda-forge 49kB +2024-04-19T21:00:34Z #11 152.1 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB +2024-04-19T21:00:34Z #11 152.1 + libopenblas 0.3.27 pthreads_h413a1c8_0 conda-forge 6MB +2024-04-19T21:00:34Z #11 152.1 + krb5 1.21.2 h659d440_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + sqlite 3.45.3 h2c6b66d_0 conda-forge 849kB +2024-04-19T21:00:34Z #11 152.1 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-04-19T21:00:34Z #11 152.1 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-04-19T21:00:34Z #11 152.1 + libgrpc 1.62.2 h15f2491_0 conda-forge 7MB +2024-04-19T21:00:34Z #11 152.1 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-04-19T21:00:34Z #11 152.1 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-04-19T21:00:34Z #11 152.1 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-04-19T21:00:34Z #11 152.1 + aws-c-event-stream 0.4.2 h01f5eca_8 conda-forge 54kB +2024-04-19T21:00:34Z #11 152.1 + aws-c-http 0.8.1 hdb68c23_10 conda-forge 195kB +2024-04-19T21:00:34Z #11 152.1 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-04-19T21:00:34Z #11 152.1 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-04-19T21:00:34Z #11 152.1 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-04-19T21:00:34Z #11 152.1 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-04-19T21:00:34Z #11 152.1 + libblas 3.9.0 22_linux64_openblas conda-forge 15kB +2024-04-19T21:00:34Z #11 152.1 + libpq 16.2 h33b98f1_1 conda-forge 3MB +2024-04-19T21:00:34Z #11 152.1 + libcurl 8.7.1 hca28451_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + aws-c-mqtt 0.10.3 h50844eb_4 conda-forge 164kB +2024-04-19T21:00:34Z #11 152.1 + aws-c-auth 0.7.17 he0b1f16_2 conda-forge 104kB +2024-04-19T21:00:34Z #11 152.1 + libcblas 3.9.0 22_linux64_openblas conda-forge 14kB +2024-04-19T21:00:34Z #11 152.1 + liblapack 3.9.0 22_linux64_openblas conda-forge 14kB +2024-04-19T21:00:34Z #11 152.1 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB +2024-04-19T21:00:34Z #11 152.1 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + cfitsio 4.4.0 hbdc6101_1 conda-forge 914kB +2024-04-19T21:00:34Z #11 152.1 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB +2024-04-19T21:00:34Z #11 152.1 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-04-19T21:00:34Z #11 152.1 + proj 9.3.1 h1d62c97_0 conda-forge 3MB +2024-04-19T21:00:34Z #11 152.1 + aws-c-s3 0.5.7 hb7bd14b_1 conda-forge 108kB +2024-04-19T21:00:34Z #11 152.1 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB +2024-04-19T21:00:34Z #11 152.1 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB +2024-04-19T21:00:34Z #11 152.1 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-04-19T21:00:34Z #11 152.1 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-04-19T21:00:34Z #11 152.1 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB +2024-04-19T21:00:34Z #11 152.1 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB +2024-04-19T21:00:34Z #11 152.1 + aws-crt-cpp 0.26.6 hf567797_4 conda-forge 335kB +2024-04-19T21:00:34Z #11 152.1 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB +2024-04-19T21:00:34Z #11 152.1 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-04-19T21:00:34Z #11 152.1 + aws-sdk-cpp 1.11.267 hbf3e495_6 conda-forge 4MB +2024-04-19T21:00:34Z #11 152.1 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB +2024-04-19T21:00:34Z #11 152.1 + tiledb 2.21.2 h8a5282e_1 conda-forge 4MB +2024-04-19T21:00:34Z #11 152.1 + libarrow 15.0.2 he70291f_3_cpu conda-forge 8MB +2024-04-19T21:00:34Z #11 152.1 + libparquet 15.0.2 h6a7eafb_3_cpu conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + libarrow-gandiva 15.0.2 hd4ab825_3_cpu conda-forge 896kB +2024-04-19T21:00:34Z #11 152.1 + libarrow-flight 15.0.2 hd42f311_3_cpu conda-forge 506kB +2024-04-19T21:00:34Z #11 152.1 + libarrow-acero 15.0.2 hac33072_3_cpu conda-forge 598kB +2024-04-19T21:00:34Z #11 152.1 + libarrow-flight-sql 15.0.2 h9241762_3_cpu conda-forge 195kB +2024-04-19T21:00:34Z #11 152.1 + libarrow-dataset 15.0.2 hac33072_3_cpu conda-forge 586kB +2024-04-19T21:00:34Z #11 152.1 + libarrow-substrait 15.0.2 h9241762_3_cpu conda-forge 519kB +2024-04-19T21:00:34Z #11 152.1 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-04-19T21:00:34Z #11 152.1 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-04-19T21:00:34Z #11 152.1 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-04-19T21:00:34Z #11 152.1 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-04-19T21:00:34Z #11 152.1 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-04-19T21:00:34Z #11 152.1 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB +2024-04-19T21:00:34Z #11 152.1 + fonts-conda-forge 1 0 conda-forge 4kB +2024-04-19T21:00:34Z #11 152.1 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-04-19T21:00:34Z #11 152.1 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB +2024-04-19T21:00:34Z #11 152.1 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB +2024-04-19T21:00:34Z #11 152.1 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-04-19T21:00:34Z #11 152.1 + poppler 24.03.0 h590f24d_0 conda-forge 2MB +2024-04-19T21:00:34Z #11 152.1 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB +2024-04-19T21:00:34Z #11 152.1 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB +2024-04-19T21:00:34Z #11 152.1 + setuptools 69.5.1 pyhd8ed1ab_0 conda-forge 502kB +2024-04-19T21:00:34Z #11 152.1 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-04-19T21:00:34Z #11 152.1 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB +2024-04-19T21:00:34Z #11 152.1 + joblib 1.4.0 pyhd8ed1ab_0 conda-forge 220kB +2024-04-19T21:00:34Z #11 152.1 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB +2024-04-19T21:00:34Z #11 152.1 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB +2024-04-19T21:00:34Z #11 152.1 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-19T21:00:34Z #11 152.1 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-04-19T21:00:34Z #11 152.1 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-04-19T21:00:34Z #11 152.1 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-19T21:00:34Z #11 152.1 + networkx 3.3 pyhd8ed1ab_1 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-04-19T21:00:34Z #11 152.1 + idna 3.7 pyhd8ed1ab_0 conda-forge 53kB +2024-04-19T21:00:34Z #11 152.1 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-04-19T21:00:34Z #11 152.1 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-04-19T21:00:34Z #11 152.1 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-04-19T21:00:34Z #11 152.1 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB +2024-04-19T21:00:34Z #11 152.1 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-04-19T21:00:34Z #11 152.1 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-04-19T21:00:34Z #11 152.1 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-04-19T21:00:34Z #11 152.1 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-04-19T21:00:34Z #11 152.1 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-04-19T21:00:34Z #11 152.1 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-04-19T21:00:34Z #11 152.1 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-04-19T21:00:34Z #11 152.1 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-04-19T21:00:34Z #11 152.1 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-04-19T21:00:34Z #11 152.1 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-19T21:00:34Z #11 152.1 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-04-19T21:00:34Z #11 152.1 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-04-19T21:00:34Z #11 152.1 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-04-19T21:00:34Z #11 152.1 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB +2024-04-19T21:00:34Z #11 152.1 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB +2024-04-19T21:00:34Z #11 152.1 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-04-19T21:00:34Z #11 152.1 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-04-19T21:00:34Z #11 152.1 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB +2024-04-19T21:00:34Z #11 152.1 + typing_extensions 4.11.0 pyha770c72_0 conda-forge 38kB +2024-04-19T21:00:34Z #11 152.1 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-04-19T21:00:34Z #11 152.1 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB +2024-04-19T21:00:34Z #11 152.1 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB +2024-04-19T21:00:34Z #11 152.1 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-04-19T21:00:34Z #11 152.1 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-04-19T21:00:34Z #11 152.1 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-04-19T21:00:34Z #11 152.1 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-04-19T21:00:34Z #11 152.1 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-04-19T21:00:34Z #11 152.1 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB +2024-04-19T21:00:34Z #11 152.1 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-04-19T21:00:34Z #11 152.1 + typing-extensions 4.11.0 hd8ed1ab_0 conda-forge 10kB +2024-04-19T21:00:34Z #11 152.1 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB +2024-04-19T21:00:34Z #11 152.1 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-19T21:00:34Z #11 152.1 + jsonpickle 3.0.4 pyhd8ed1ab_0 conda-forge 39kB +2024-04-19T21:00:34Z #11 152.1 + mpi4py 3.1.6 py310h45b48a2_0 conda-forge 540kB +2024-04-19T21:00:34Z #11 152.1 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB +2024-04-19T21:00:34Z #11 152.1 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB +2024-04-19T21:00:34Z #11 152.1 + tornado 6.4 py310h2372a71_0 conda-forge 651kB +2024-04-19T21:00:34Z #11 152.1 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB +2024-04-19T21:00:34Z #11 152.1 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB +2024-04-19T21:00:34Z #11 152.1 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB +2024-04-19T21:00:34Z #11 152.1 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB +2024-04-19T21:00:34Z #11 152.1 + pillow 10.3.0 py310hf73ecf8_0 conda-forge 42MB +2024-04-19T21:00:34Z #11 152.1 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB +2024-04-19T21:00:34Z #11 152.1 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB +2024-04-19T21:00:34Z #11 152.1 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB +2024-04-19T21:00:34Z #11 152.1 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB +2024-04-19T21:00:34Z #11 152.1 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB +2024-04-19T21:00:34Z #11 152.1 + numpy 1.26.4 py310hb13e2d6_0 conda-forge 7MB +2024-04-19T21:00:34Z #11 152.1 + lxml 5.1.1 py310hf050c1a_0 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB +2024-04-19T21:00:34Z #11 152.1 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB +2024-04-19T21:00:34Z #11 152.1 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB +2024-04-19T21:00:34Z #11 152.1 + pydantic-core 2.18.1 py310hcb5633a_0 conda-forge 2MB +2024-04-19T21:00:34Z #11 152.1 + fonttools 4.51.0 py310h2372a71_0 conda-forge 2MB +2024-04-19T21:00:34Z #11 152.1 + pyarrow 15.0.2 py310hc7d9cee_3_cpu conda-forge 5MB +2024-04-19T21:00:34Z #11 152.1 + contourpy 1.2.1 py310hd41b1e2_0 conda-forge 242kB +2024-04-19T21:00:34Z #11 152.1 + gdal 3.8.4 py310he073c5f_5 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB +2024-04-19T21:00:34Z #11 152.1 + numba 0.59.1 py310h7dc5dd1_0 conda-forge 4MB +2024-04-19T21:00:34Z #11 152.1 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB +2024-04-19T21:00:34Z #11 152.1 + h5py 3.11.0 nompi_py310h65828d5_100 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + pandas 2.2.2 py310hcc13569_0 conda-forge 13MB +2024-04-19T21:00:34Z #11 152.1 + shapely 2.0.4 py310hc3e127f_0 conda-forge 481kB +2024-04-19T21:00:34Z #11 152.1 + scipy 1.13.0 py310hb13e2d6_0 conda-forge 16MB +2024-04-19T21:00:34Z #11 152.1 + matplotlib-base 3.8.4 py310h62c0568_0 conda-forge 7MB +2024-04-19T21:00:34Z #11 152.1 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB +2024-04-19T21:00:34Z #11 152.1 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB +2024-04-19T21:00:34Z #11 152.1 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB +2024-04-19T21:00:34Z #11 152.1 + scikit-learn 1.4.2 py310h1fdf081_0 conda-forge 9MB +2024-04-19T21:00:34Z #11 152.1 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-04-19T21:00:34Z #11 152.1 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-04-19T21:00:34Z #11 152.1 + yamale 5.0.0 pyhca7485f_0 conda-forge 45kB +2024-04-19T21:00:34Z #11 152.1 + dask-core 2024.4.1 pyhd8ed1ab_0 conda-forge 881kB +2024-04-19T21:00:34Z #11 152.1 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB +2024-04-19T21:00:34Z #11 152.1 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-04-19T21:00:34Z #11 152.1 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-04-19T21:00:34Z #11 152.1 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-04-19T21:00:34Z #11 152.1 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-04-19T21:00:34Z #11 152.1 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-04-19T21:00:34Z #11 152.1 + pydantic 2.7.0 pyhd8ed1ab_0 conda-forge 281kB +2024-04-19T21:00:34Z #11 152.1 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-04-19T21:00:34Z #11 152.1 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB +2024-04-19T21:00:34Z #11 152.1 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB +2024-04-19T21:00:34Z #11 152.1 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB +2024-04-19T21:00:34Z #11 152.1 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-04-19T21:00:34Z #11 152.1 + properscoring 0.1 py_0 conda-forge 22kB +2024-04-19T21:00:34Z #11 152.1 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-04-19T21:00:34Z #11 152.1 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-04-19T21:00:34Z #11 152.1 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-04-19T21:00:34Z #11 152.1 + bokeh 3.4.1 pyhd8ed1ab_0 conda-forge 5MB +2024-04-19T21:00:34Z #11 152.1 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB +2024-04-19T21:00:34Z #11 152.1 + dask-expr 1.0.11 pyhd8ed1ab_0 conda-forge 143kB +2024-04-19T21:00:34Z #11 152.1 + distributed 2024.4.1 pyhd8ed1ab_0 conda-forge 794kB +2024-04-19T21:00:34Z #11 152.1 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-04-19T21:00:34Z #11 152.1 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-04-19T21:00:34Z #11 152.1 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-04-19T21:00:34Z #11 152.1 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-04-19T21:00:34Z #11 152.1 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-04-19T21:00:34Z #11 152.1 + dask 2024.4.1 pyhd8ed1ab_0 conda-forge 7kB +2024-04-19T21:00:34Z #11 152.1 + xesmf 0.8.5 pyhd8ed1ab_0 conda-forge 45kB +2024-04-19T21:00:34Z #11 152.1 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB +2024-04-19T21:00:34Z #11 152.1 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-04-19T21:00:34Z #11 152.1 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-04-19T21:00:34Z #11 152.1 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB +2024-04-19T21:00:34Z #11 152.1 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB +2024-04-19T21:00:34Z #11 152.1 + rioxarray 0.15.4 pyhd8ed1ab_0 conda-forge 51kB +2024-04-19T21:00:34Z #11 152.1 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB +2024-04-19T21:00:34Z #11 152.1 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-04-19T21:00:34Z #11 152.1 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB +2024-04-19T21:00:34Z #11 152.1 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-04-19T21:00:34Z #11 152.1 + ravenpy 0.14.0 pyhd8ed1ab_1 conda-forge 6MB +2024-04-19T21:00:34Z #11 152.1 +2024-04-19T21:00:34Z #11 152.1 Summary: +2024-04-19T21:00:34Z #11 152.1 +2024-04-19T21:00:34Z #11 152.1 Install: 299 packages +2024-04-19T21:00:34Z #11 152.1 +2024-04-19T21:00:34Z #11 152.1 Total download: 468MB +2024-04-19T21:00:34Z #11 152.1 +2024-04-19T21:00:34Z #11 152.1 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-19T21:00:34Z #11 152.1 +2024-04-19T21:00:34Z #11 152.1 +2024-04-19T21:02:10Z #11 248.1 +2024-04-19T21:02:10Z #11 248.1 Looking for: ['xclim', 'ravenpy', 'python=3.10'] +2024-04-19T21:02:10Z #11 248.1 +2024-04-19T21:02:10Z #11 248.1 +2024-04-19T21:02:10Z #11 248.1 Downloading and Extracting Packages: ...working... done +2024-04-19T21:02:14Z #11 248.1 Preparing transaction: ...working... done +2024-04-19T21:02:28Z #11 252.7 Verifying transaction: ...working... done +2024-04-19T21:03:08Z #11 266.7 Executing transaction: ...working... done +2024-04-19T21:03:08Z #11 306.0 +2024-04-19T21:03:08Z #11 306.0 To activate this environment, use +2024-04-19T21:03:08Z #11 306.0 +2024-04-19T21:03:08Z #11 306.0 $ mamba activate birdy +2024-04-19T21:03:08Z #11 306.0 +2024-04-19T21:03:08Z #11 306.0 To deactivate an active environment, use +2024-04-19T21:03:08Z #11 306.0 +2024-04-19T21:03:08Z #11 306.0 $ mamba deactivate +2024-04-19T21:03:08Z #11 306.0 +2024-04-19T21:03:11Z #11 309.5 Channels: +2024-04-19T21:03:11Z #11 309.5 - conda-forge +2024-04-19T21:03:11Z #11 309.5 - cdat +2024-04-19T21:03:11Z #11 309.5 - bokeh +2024-04-19T21:03:11Z #11 309.5 - pyviz/label/dev +2024-04-19T21:03:11Z #11 309.5 - defaults +2024-04-19T21:03:11Z #11 309.5 Platform: linux-64 +2024-04-19T21:03:45Z #11 309.5 Collecting package metadata (repodata.json): ...working... done +2024-04-19T21:04:50Z #11 343.2 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.3 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:54Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-19T21:08:40Z #11 638.5 done +2024-04-19T21:10:38Z #11 756.1 +2024-04-19T21:10:38Z #11 756.1 Downloading and Extracting Packages: ...working... done +2024-04-19T21:10:45Z #11 756.1 Preparing transaction: ...working... done +2024-04-19T21:11:08Z #11 763.2 Verifying transaction: ...working... done +2024-04-19T21:11:59Z #11 786.4 Executing transaction: ...working... /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-04-19T21:11:59Z #11 837.4 given by the platformdirs library. To remove this warning and +2024-04-19T21:11:59Z #11 837.4 see the appropriate new directories, set the environment variable +2024-04-19T21:11:59Z #11 837.4 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-04-19T21:11:59Z #11 837.4 The use of platformdirs will be the default in `jupyter_core` v6 +2024-04-19T21:11:59Z #11 837.4 from . import paths +2024-04-19T21:11:59Z #11 837.4 Enabling: jupyterlab_git +2024-04-19T21:11:59Z #11 837.4 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-19T21:11:59Z #11 837.4 - Validating... +2024-04-19T21:11:59Z #11 837.4 jupyterlab_git OK +2024-04-19T21:11:59Z #11 837.4 +2024-04-19T21:11:59Z #11 837.4 done +2024-04-19T21:12:44Z #11 844.8 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-04-19T21:12:44Z #11 883.0 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.dumifk6t.requirements.txt', '--exists-action=b'] +2024-04-19T21:12:44Z #11 883.0 Pip subprocess output: +2024-04-19T21:12:44Z #11 883.0 Collecting xncml (from -r /condaenv.dumifk6t.requirements.txt (line 1)) +2024-04-19T21:12:44Z #11 883.0 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-04-19T21:12:44Z #11 883.0 Collecting hsclient (from -r /condaenv.dumifk6t.requirements.txt (line 2)) +2024-04-19T21:12:44Z #11 883.0 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-04-19T21:12:44Z #11 883.0 Collecting fstd2nc (from -r /condaenv.dumifk6t.requirements.txt (line 3)) +2024-04-19T21:12:44Z #11 883.0 Downloading fstd2nc-0.20240401.0.tar.gz (166 kB) +2024-04-19T21:12:44Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.9/166.9 kB 10.4 MB/s eta 0:00:00 +2024-04-19T21:12:44Z #11 883.0 Installing build dependencies: started +2024-04-19T21:12:44Z #11 883.0 Installing build dependencies: finished with status 'done' +2024-04-19T21:12:44Z #11 883.0 Getting requirements to build wheel: started +2024-04-19T21:12:44Z #11 883.0 Getting requirements to build wheel: finished with status 'done' +2024-04-19T21:12:44Z #11 883.0 Installing backend dependencies: started +2024-04-19T21:12:44Z #11 883.0 Installing backend dependencies: finished with status 'done' +2024-04-19T21:12:44Z #11 883.0 Preparing metadata (pyproject.toml): started +2024-04-19T21:12:44Z #11 883.0 Preparing metadata (pyproject.toml): finished with status 'done' +2024-04-19T21:12:44Z #11 883.0 Collecting figanos (from -r /condaenv.dumifk6t.requirements.txt (line 4)) +2024-04-19T21:12:44Z #11 883.0 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-04-19T21:12:44Z #11 883.0 Collecting pixiedust (from -r /condaenv.dumifk6t.requirements.txt (line 5)) +2024-04-19T21:12:44Z #11 883.0 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-04-19T21:12:44Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 21.2 MB/s eta 0:00:00 +2024-04-19T21:12:44Z #11 883.0 Preparing metadata (setup.py): started +2024-04-19T21:12:44Z #11 883.0 Preparing metadata (setup.py): finished with status 'done' +2024-04-19T21:12:44Z #11 883.0 Collecting ipython_blocking (from -r /condaenv.dumifk6t.requirements.txt (line 6)) +2024-04-19T21:12:44Z #11 883.0 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-19T21:12:44Z #11 883.0 Collecting jupyternotify (from -r /condaenv.dumifk6t.requirements.txt (line 7)) +2024-04-19T21:12:44Z #11 883.0 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-04-19T21:12:44Z #11 883.0 Preparing metadata (setup.py): started +2024-04-19T21:12:44Z #11 883.0 Preparing metadata (setup.py): finished with status 'done' +2024-04-19T21:12:44Z #11 883.0 Collecting jupyterlab-logout (from -r /condaenv.dumifk6t.requirements.txt (line 8)) +2024-04-19T21:12:44Z #11 883.0 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-04-19T21:12:44Z #11 883.0 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.dumifk6t.requirements.txt (line 9)) +2024-04-19T21:12:44Z #11 883.0 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-04-19T21:12:44Z #11 883.0 Collecting pytest-tornasync (from -r /condaenv.dumifk6t.requirements.txt (line 10)) +2024-04-19T21:12:44Z #11 883.0 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-04-19T21:12:44Z #11 883.0 Collecting xmltodict (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) +2024-04-19T21:12:44Z #11 883.0 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-04-19T21:12:44Z #11 883.0 Collecting xsdata (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) +2024-04-19T21:12:44Z #11 883.0 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (2023.8.0) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (1.6.3) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (1.6.2) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (2024.4.1) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (5.9.8) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (69.5.1) +2024-04-19T21:12:44Z #11 883.0 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) +2024-04-19T21:12:44Z #11 883.0 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.31.0) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.0.0) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.dumifk6t.requirements.txt (line 3)) (1.24.4) +2024-04-19T21:12:44Z #11 883.0 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.dumifk6t.requirements.txt (line 3)) +2024-04-19T21:12:44Z #11 883.0 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.23.0) +2024-04-19T21:12:44Z #11 883.0 Collecting cairosvg (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) +2024-04-19T21:12:44Z #11 883.0 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.14.3) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.8.4) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.1.4) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (4.2.0) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (6.0.1) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.13.2) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.22.0) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.47.0) +2024-04-19T21:12:44Z #11 883.0 Collecting geojson (from pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) +2024-04-19T21:12:44Z #11 883.0 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-04-19T21:12:44Z #11 883.0 Collecting astunparse (from pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) +2024-04-19T21:12:44Z #11 883.0 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) (3.6) +2024-04-19T21:12:44Z #11 883.0 Collecting colour (from pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) +2024-04-19T21:12:44Z #11 883.0 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (8.22.2) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (8.1.2) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.7.4) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (1.0.0) +2024-04-19T21:12:44Z #11 883.0 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) +2024-04-19T21:12:44Z #11 883.0 Downloading jupyterlab-4.1.6-py3-none-any.whl.metadata (16 kB) +2024-04-19T21:12:44Z #11 883.0 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-04-19T21:12:44Z #11 883.0 Collecting jupyterlab-logout (from -r /condaenv.dumifk6t.requirements.txt (line 8)) +2024-04-19T21:12:44Z #11 883.0 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.6.1) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (3.6.7) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (24.0) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (6.4) +2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (5.7.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.26.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.14.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.2.4) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.8.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.0.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (6.5.6) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (3.1.3) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.0.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.dumifk6t.requirements.txt (line 10)) (8.1.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.dumifk6t.requirements.txt (line 3)) (2024.1) +2024-04-19T21:12:45Z #11 883.0 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) +2024-04-19T21:12:45Z #11 883.0 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.7.0) +2024-04-19T21:12:45Z #11 883.0 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) +2024-04-19T21:12:45Z #11 883.0 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (0.6.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pydantic-core==2.18.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.18.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (4.11.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.dumifk6t.requirements.txt (line 10)) (2.0.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.dumifk6t.requirements.txt (line 10)) (1.4.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.dumifk6t.requirements.txt (line 10)) (1.2.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (24.0.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.3.8) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.9.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (8.1.7) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.0.4) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.0.6) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.59.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.23) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.4.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.13.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.14.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (3.0.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (2024.3.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (1.4.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (0.12.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (7.1.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.9.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2024.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) (0.43.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) (1.16.0) +2024-04-19T21:12:45Z #11 883.0 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) +2024-04-19T21:12:45Z #11 883.0 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) +2024-04-19T21:12:45Z #11 883.0 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) +2024-04-19T21:12:45Z #11 883.0 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.7.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (9.4.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.2.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.0.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pyshp>=2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.3.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pyproj>=3.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.5.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.2.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.12.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (4.51.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.4.5) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.1.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.9.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (5.1.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.19.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.1.7) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (3.0.42) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (2.17.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.6.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (5.14.3) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (4.9.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.2.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (4.0.10) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (3.0.10) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (5.5.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (6.6.3) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (7.16.3) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (6.29.3) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (7.4.9) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (5.10.4) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (3.3.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (3.7) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.0.7) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2024.2.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (3.2.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.3) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.34.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2023.8.12) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.4) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (23.2.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.1.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.7.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (4.0.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (3.17.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.8.4) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.1.5) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.4) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (1.6.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (24.0.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (4.3.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: argon2-cffi>=21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (23.1.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.10.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-server-terminals>=0.4.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.5.3) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: overrides>=5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (7.7.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: prometheus-client>=0.9 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.20.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.8.3) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.18.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: websocket-client>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.7.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.9.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.8.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.5.9) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.14.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.9.25) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (4.21.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (4.12.3) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (6.1.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (0.3.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (3.0.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (1.5.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (2.19.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.2.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.2.4) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (1.0.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.7.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.2.13) +2024-04-19T21:12:45Z #11 883.0 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) +2024-04-19T21:12:45Z #11 883.0 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.4.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.4.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.16.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.5.1) +2024-04-19T21:12:45Z #11 883.0 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) +2024-04-19T21:12:45Z #11 883.0 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (1.8.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.42.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (2.4.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (2.0.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (2.4.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.2.2) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.5.6) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.3.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi>=21.1->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (21.2.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.22) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2023.12.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.34.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.18.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.0.7) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.1.4) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.1.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (22.1.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.19.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (2.5) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.5.1) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (20.11.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.4) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.3.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.13) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.3.0) +2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.9.0.20240316) +2024-04-19T21:12:45Z #11 883.0 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 47.9 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.5 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 36.0 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 55.0 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 5.3 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading xsdata-24.4-py3-none-any.whl (229 kB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 22.9 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 24.5 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 9.4 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-04-19T21:12:45Z #11 883.0 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 28.0 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.7 MB/s eta 0:00:00 +2024-04-19T21:12:45Z #11 883.0 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify +2024-04-19T21:12:45Z #11 883.0 Building wheel for fstd2nc (pyproject.toml): started +2024-04-19T21:12:45Z #11 883.0 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-04-19T21:12:45Z #11 883.0 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.0-py3-none-any.whl size=169076 sha256=ed9ee59ae6bd4e1354b2df1704edc6a42cf5aee26b3e4696fd17e2a3e742e455 +2024-04-19T21:12:45Z #11 883.0 Stored in directory: /root/.cache/pip/wheels/b7/e5/e2/65589bc6ca947390d3d694cdc195ca6662e0448bb58d970eb6 +2024-04-19T21:12:45Z #11 883.0 Building wheel for pixiedust (setup.py): started +2024-04-19T21:12:45Z #11 883.0 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-04-19T21:12:45Z #11 883.0 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=69b80ee4114b4bc1f4d6cdc41dbd6766aaea16e22278ba5ff4ff17cc862fec47 +2024-04-19T21:12:45Z #11 883.0 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 +2024-04-19T21:12:45Z #11 883.0 Building wheel for jupyternotify (setup.py): started +2024-04-19T21:12:45Z #11 883.0 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-04-19T21:12:45Z #11 883.0 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=5313a4ca1c0c1a2200b51252186e59fa578d090ecdd8d31e4e47c108c94ba963 +2024-04-19T21:12:45Z #11 883.0 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 +2024-04-19T21:12:45Z #11 883.0 Successfully built fstd2nc pixiedust jupyternotify +2024-04-19T21:12:45Z #11 883.0 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-04-19T21:12:45Z #11 883.0 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.0 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 +2024-04-19T21:12:45Z #11 883.0 +2024-04-19T21:12:45Z #11 883.0 done +2024-04-19T21:12:45Z #11 883.0 # +2024-04-19T21:12:45Z #11 883.0 # To activate this environment, use +2024-04-19T21:12:45Z #11 883.0 # +2024-04-19T21:12:45Z #11 883.0 # $ conda activate birdy +2024-04-19T21:12:45Z #11 883.0 # +2024-04-19T21:12:45Z #11 883.0 # To deactivate an active environment, use +2024-04-19T21:12:45Z #11 883.0 # +2024-04-19T21:12:45Z #11 883.0 # $ conda deactivate +2024-04-19T21:12:45Z #11 883.0 +2024-04-19T21:13:01Z #11 899.2 Will remove 785 (1.22 GB) tarball(s). +2024-04-19T21:13:01Z #11 899.2 Will remove 1 index cache(s). +2024-04-19T21:13:01Z #11 899.2 Will remove 148 (1.32 GB) package(s). +2024-04-19T21:13:01Z #11 899.2 There are no tempfile(s) to remove. +2024-04-19T21:13:01Z #11 899.2 There are no logfile(s) to remove. +2024-04-19T21:13:02Z #11 DONE 900.1s +2024-04-19T21:13:02Z +2024-04-19T21:13:02Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2024-04-19T21:13:03Z #12 1.423 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-04-19T21:13:03Z #12 DONE 1.6s +2024-04-19T21:13:03Z +2024-04-19T21:13:03Z #13 [ 8/10] RUN jupyter lab build +2024-04-19T21:13:05Z #13 2.001 [LabBuildApp] JupyterLab 3.6.7 +2024-04-19T21:13:05Z #13 2.002 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2024-04-19T21:13:06Z #13 2.663 [LabBuildApp] Building jupyterlab assets (production, minimized) +2024-04-19T21:13:06Z #13 2.677 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. +2024-04-19T21:13:06Z #13 2.677 +2024-04-19T21:15:25Z #13 2.680 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ +2024-04-19T21:15:25Z #13 DONE 141.7s +2024-04-19T21:15:25Z +2024-04-19T21:15:25Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-04-19T21:15:26Z #14 0.732 Enabling: voila +2024-04-19T21:15:26Z #14 0.732 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-19T21:15:26Z #14 0.735 - Validating... +2024-04-19T21:15:26Z #14 1.445 voila 0.5.6 OK +2024-04-19T21:15:27Z #14 1.833 Enabling: panel.io.jupyter_server_extension +2024-04-19T21:15:27Z #14 1.834 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-19T21:15:27Z #14 1.836 - Validating... +2024-04-19T21:15:29Z #14 3.798 panel.io.jupyter_server_extension OK +2024-04-19T21:15:29Z #14 4.317 - Validating... +2024-04-19T21:15:30Z #14 5.233 dask_labextension 6.2.0 OK +2024-04-19T21:15:30Z #14 5.233 - Validating... +2024-04-19T21:15:30Z #14 5.236 jupyter_archive 3.3.4 OK +2024-04-19T21:15:30Z #14 5.236 - Validating... +2024-04-19T21:15:30Z #14 5.236 jupyter_server_proxy 4.1.1-0.dev OK +2024-04-19T21:15:30Z #14 5.236 - Validating... +2024-04-19T21:15:30Z #14 5.425 jupyter_resource_usage 0.7.1 OK +2024-04-19T21:15:30Z #14 5.425 - Validating... +2024-04-19T21:15:30Z #14 5.484  X is jupyter_server_ydoc importable? +2024-04-19T21:15:31Z #14 5.484 - Validating... +2024-04-19T21:15:31Z #14 5.561 jupyterlab 3.6.7 OK +2024-04-19T21:15:31Z #14 5.561 - Validating... +2024-04-19T21:15:31Z #14 5.739 jupyterlab_jupytext OK +2024-04-19T21:15:31Z #14 5.739 - Validating... +2024-04-19T21:15:31Z #14 5.744 mamba_gator 5.2.1 OK +2024-04-19T21:15:31Z #14 5.744 - Validating... +2024-04-19T21:15:31Z #14 5.763 nbdime 4.0.1 OK +2024-04-19T21:15:31Z #14 5.763 - Validating... +2024-04-19T21:15:32Z #14 6.898 panel.io.jupyter_server_extension OK +2024-04-19T21:15:32Z #14 6.898 - Validating... +2024-04-19T21:15:32Z #14 6.968 nbresuse OK +2024-04-19T21:15:32Z #14 6.968 - Validating... +2024-04-19T21:15:32Z #14 7.229 voila.server_extension OK +2024-04-19T21:15:32Z #14 7.229 - Validating... +2024-04-19T21:15:32Z #14 7.231 jupyterlab_git OK +2024-04-19T21:15:32Z #14 7.231 - Validating... +2024-04-19T21:15:32Z #14 7.231 voila 0.5.6 OK +2024-04-19T21:15:32Z #14 7.232 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-04-19T21:15:32Z #14 7.232 dask_labextension  enabled  +2024-04-19T21:15:32Z #14 7.232 jupyter_archive  enabled  +2024-04-19T21:15:32Z #14 7.232 jupyter_server_proxy  enabled  +2024-04-19T21:15:32Z #14 7.232 jupyter_resource_usage  enabled  +2024-04-19T21:15:32Z #14 7.232 jupyter_server_ydoc  enabled  +2024-04-19T21:15:32Z #14 7.232 jupyterlab  enabled  +2024-04-19T21:15:32Z #14 7.232 jupyterlab_jupytext  enabled  +2024-04-19T21:15:32Z #14 7.232 mamba_gator  enabled  +2024-04-19T21:15:32Z #14 7.232 nbdime  enabled  +2024-04-19T21:15:32Z #14 7.232 panel.io.jupyter_server_extension  enabled  +2024-04-19T21:15:32Z #14 7.232 nbresuse  enabled  +2024-04-19T21:15:32Z #14 7.232 voila.server_extension  enabled  +2024-04-19T21:15:32Z #14 7.232 jupyterlab_git  enabled  +2024-04-19T21:15:32Z #14 7.232 voila  enabled  +2024-04-19T21:15:33Z #14 DONE 7.7s +2024-04-19T21:15:33Z +2024-04-19T21:15:33Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-04-19T21:15:33Z #15 0.347 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-04-19T21:15:33Z #15 0.369 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ... +2024-04-19T21:15:33Z #15 0.373 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-04-19T21:15:33Z #15 0.379 HTTP request sent, awaiting response... 200 OK +2024-04-19T21:15:33Z #15 0.452 Length: 9769 (9.5K) [text/plain] +2024-04-19T21:15:33Z #15 0.452 Saving to: ‘/usr/local/bin/start.sh’ +2024-04-19T21:15:33Z #15 0.452 +2024-04-19T21:15:33Z #15 0.452 0K ......... 100% 4.51M=0.002s +2024-04-19T21:15:33Z #15 0.455 +2024-04-19T21:15:33Z #15 0.455 2024-04-19 21:15:33 (4.51 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-04-19T21:15:33Z #15 0.455 +2024-04-19T21:15:33Z #15 0.458 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-04-19T21:15:33Z #15 0.483 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2024-04-19T21:15:33Z #15 0.485 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-04-19T21:15:33Z #15 0.490 HTTP request sent, awaiting response... 200 OK +2024-04-19T21:15:33Z #15 0.561 Length: 359 [text/plain] +2024-04-19T21:15:33Z #15 0.562 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-04-19T21:15:33Z #15 0.562 +2024-04-19T21:15:33Z #15 0.562 0K 100% 6.04M=0s +2024-04-19T21:15:33Z #15 0.563 +2024-04-19T21:15:33Z #15 0.563 2024-04-19 21:15:33 (6.04 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-04-19T21:15:33Z #15 0.563 +2024-04-19T21:15:33Z #15 0.566 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-04-19T21:15:33Z #15 0.591 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2024-04-19T21:15:33Z #15 0.595 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-04-19T21:15:33Z #15 0.600 HTTP request sent, awaiting response... 200 OK +2024-04-19T21:15:33Z #15 0.681 Length: 852 [text/plain] +2024-04-19T21:15:33Z #15 0.681 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-04-19T21:15:33Z #15 0.681 +2024-04-19T21:15:33Z #15 0.681 0K 100% 15.4M=0s +2024-04-19T21:15:33Z #15 0.682 +2024-04-19T21:15:33Z #15 0.682 2024-04-19 21:15:33 (15.4 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-04-19T21:15:33Z #15 0.682 +2024-04-19T21:15:33Z #15 0.686 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-04-19T21:15:33Z #15 0.710 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2024-04-19T21:15:33Z #15 0.712 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-04-19T21:15:33Z #15 0.733 HTTP request sent, awaiting response... 200 OK +2024-04-19T21:15:34Z #15 0.814 Length: 1034 (1.0K) [text/plain] +2024-04-19T21:15:34Z #15 0.815 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-04-19T21:15:34Z #15 0.815 +2024-04-19T21:15:34Z #15 0.815 0K . 100% 38.4M=0s +2024-04-19T21:15:34Z #15 0.819 +2024-04-19T21:15:34Z #15 0.819 2024-04-19 21:15:33 (38.4 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-04-19T21:15:34Z #15 0.819 +2024-04-19T21:15:34Z #15 0.825 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-04-19T21:15:34Z #15 0.849 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2024-04-19T21:15:34Z #15 0.850 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-04-19T21:15:34Z #15 0.856 HTTP request sent, awaiting response... 200 OK +2024-04-19T21:15:34Z #15 0.948 Length: 1836 (1.8K) [text/plain] +2024-04-19T21:15:34Z #15 0.948 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-04-19T21:15:34Z #15 0.948 +2024-04-19T21:15:34Z #15 0.948 0K . 100% 6.59M=0s +2024-04-19T21:15:34Z #15 0.951 +2024-04-19T21:15:34Z #15 0.951 2024-04-19 21:15:34 (6.59 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-04-19T21:15:34Z #15 0.951 +2024-04-19T21:15:34Z #15 1.181 --2024-04-19 21:15:34-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-04-19T21:15:34Z #15 1.205 Resolving downloads.globus.org (downloads.globus.org)... 52.85.132.96, 52.85.132.25, 52.85.132.85, ... +2024-04-19T21:15:34Z #15 1.210 Connecting to downloads.globus.org (downloads.globus.org)|52.85.132.96|:443... connected. +2024-04-19T21:15:34Z #15 1.218 HTTP request sent, awaiting response... 200 OK +2024-04-19T21:15:34Z #15 1.450 Length: 129825343 (124M) [application/x-tar] +2024-04-19T21:15:34Z #15 1.450 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-04-19T21:15:34Z #15 1.450 +2024-04-19T21:15:34Z #15 1.450 0K .......... .......... .......... .......... .......... 0% 46.6M 3s +2024-04-19T21:15:34Z #15 1.451 50K .......... .......... .......... .......... .......... 0% 31.9M 3s +2024-04-19T21:15:34Z #15 1.453 100K .......... .......... .......... .......... .......... 0% 5.40M 10s +2024-04-19T21:15:34Z #15 1.464 150K .......... .......... .......... .......... .......... 0% 28.9M 8s +2024-04-19T21:15:34Z #15 1.464 200K .......... .......... .......... .......... .......... 0% 41.5M 7s +2024-04-19T21:15:34Z #15 1.465 250K .......... .......... .......... .......... .......... 0% 37.1M 7s +2024-04-19T21:15:34Z #15 1.467 300K .......... .......... .......... .......... .......... 0% 25.0M 6s +2024-04-19T21:15:34Z #15 1.468 350K .......... .......... .......... .......... .......... 0% 34.4M 6s +2024-04-19T21:15:34Z #15 1.470 400K .......... .......... .......... .......... .......... 0% 30.8M 6s +2024-04-19T21:15:34Z #15 1.471 450K .......... .......... .......... .......... .......... 0% 33.4M 6s +2024-04-19T21:15:34Z #15 1.473 500K .......... .......... .......... .......... .......... 0% 27.6M 6s +2024-04-19T21:15:34Z #15 1.474 550K .......... .......... .......... .......... .......... 0% 23.3M 5s +2024-04-19T21:15:34Z #15 1.476 600K .......... .......... .......... .......... .......... 0% 29.9M 5s +2024-04-19T21:15:34Z #15 1.478 650K .......... .......... .......... .......... .......... 0% 37.0M 5s +2024-04-19T21:15:34Z #15 1.480 700K .......... .......... .......... .......... .......... 0% 45.0M 5s +2024-04-19T21:15:34Z #15 1.480 750K .......... .......... .......... .......... .......... 0% 43.2M 5s +2024-04-19T21:15:34Z #15 1.482 800K .......... .......... .......... .......... .......... 0% 36.7M 5s +2024-04-19T21:15:34Z #15 1.483 850K .......... .......... .......... .......... .......... 0% 20.7M 5s +2024-04-19T21:15:34Z #15 1.485 900K .......... .......... .......... .......... .......... 0% 25.2M 5s +2024-04-19T21:15:34Z #15 1.487 950K .......... .......... .......... .......... .......... 0% 35.6M 5s +2024-04-19T21:15:34Z #15 1.489 1000K .......... .......... .......... .......... .......... 0% 32.4M 5s +2024-04-19T21:15:34Z #15 1.490 1050K .......... .......... .......... .......... .......... 0% 21.5M 5s +2024-04-19T21:15:34Z #15 1.492 1100K .......... .......... .......... .......... .......... 0% 53.0M 5s +2024-04-19T21:15:34Z #15 1.493 1150K .......... .......... .......... .......... .......... 0% 37.7M 5s +2024-04-19T21:15:34Z #15 1.495 1200K .......... .......... .......... .......... .......... 0% 28.9M 5s +2024-04-19T21:15:34Z #15 1.503 1250K .......... .......... .......... .......... .......... 1% 93.5M 4s +2024-04-19T21:15:34Z #15 1.503 1300K .......... .......... .......... .......... .......... 1% 113M 4s +2024-04-19T21:15:34Z #15 1.503 1350K .......... .......... .......... .......... .......... 1% 112M 4s +2024-04-19T21:15:34Z #15 1.503 1400K .......... .......... .......... .......... .......... 1% 114M 4s +2024-04-19T21:15:34Z #15 1.503 1450K .......... .......... .......... .......... .......... 1% 111M 4s +2024-04-19T21:15:34Z #15 1.503 1500K .......... .......... .......... .......... .......... 1% 90.0M 4s +2024-04-19T21:15:34Z #15 1.503 1550K .......... .......... .......... .......... .......... 1% 123M 4s +2024-04-19T21:15:34Z #15 1.503 1600K .......... .......... .......... .......... .......... 1% 132M 4s +2024-04-19T21:15:34Z #15 1.503 1650K .......... .......... .......... .......... .......... 1% 120M 4s +2024-04-19T21:15:34Z #15 1.503 1700K .......... .......... .......... .......... .......... 1% 129M 4s +2024-04-19T21:15:34Z #15 1.503 1750K .......... .......... .......... .......... .......... 1% 97.0M 4s +2024-04-19T21:15:34Z #15 1.503 1800K .......... .......... .......... .......... .......... 1% 109M 3s +2024-04-19T21:15:34Z #15 1.503 1850K .......... .......... .......... .......... .......... 1% 109M 3s +2024-04-19T21:15:34Z #15 1.503 1900K .......... .......... .......... .......... .......... 1% 120M 3s +2024-04-19T21:15:34Z #15 1.503 1950K .......... .......... .......... .......... .......... 1% 135M 3s +2024-04-19T21:15:34Z #15 1.503 2000K .......... .......... .......... .......... .......... 1% 18.8M 3s +2024-04-19T21:15:34Z #15 1.505 2050K .......... .......... .......... .......... .......... 1% 57.2M 3s +2024-04-19T21:15:34Z #15 1.506 2100K .......... .......... .......... .......... .......... 1% 46.6M 3s +2024-04-19T21:15:34Z #15 1.511 2150K .......... .......... .......... .......... .......... 1% 116M 3s +2024-04-19T21:15:34Z #15 1.511 2200K .......... .......... .......... .......... .......... 1% 119M 3s +2024-04-19T21:15:34Z #15 1.511 2250K .......... .......... .......... .......... .......... 1% 117M 3s +2024-04-19T21:15:34Z #15 1.511 2300K .......... .......... .......... .......... .......... 1% 137M 3s +2024-04-19T21:15:34Z #15 1.511 2350K .......... .......... .......... .......... .......... 1% 103M 3s +2024-04-19T21:15:34Z #15 1.511 2400K .......... .......... .......... .......... .......... 1% 129M 3s +2024-04-19T21:15:34Z #15 1.511 2450K .......... .......... .......... .......... .......... 1% 108M 3s +2024-04-19T21:15:34Z #15 1.511 2500K .......... .......... .......... .......... .......... 2% 139M 3s +2024-04-19T21:15:34Z #15 1.511 2550K .......... .......... .......... .......... .......... 2% 39.7M 3s +2024-04-19T21:15:34Z #15 1.512 2600K .......... .......... .......... .......... .......... 2% 23.7M 3s +2024-04-19T21:15:34Z #15 1.514 2650K .......... .......... .......... .......... .......... 2% 63.8M 3s +2024-04-19T21:15:34Z #15 1.515 2700K .......... .......... .......... .......... .......... 2% 64.3M 3s +2024-04-19T21:15:34Z #15 1.515 2750K .......... .......... .......... .......... .......... 2% 48.4M 3s +2024-04-19T21:15:34Z #15 1.516 2800K .......... .......... .......... .......... .......... 2% 35.3M 3s +2024-04-19T21:15:34Z #15 1.523 2850K .......... .......... .......... .......... .......... 2% 112M 3s +2024-04-19T21:15:34Z #15 1.523 2900K .......... .......... .......... .......... .......... 2% 118M 3s +2024-04-19T21:15:34Z #15 1.523 2950K .......... .......... .......... .......... .......... 2% 94.3M 3s +2024-04-19T21:15:34Z #15 1.523 3000K .......... .......... .......... .......... .......... 2% 92.7M 3s +2024-04-19T21:15:34Z #15 1.523 3050K .......... .......... .......... .......... .......... 2% 127M 3s +2024-04-19T21:15:34Z #15 1.523 3100K .......... .......... .......... .......... .......... 2% 116M 3s +2024-04-19T21:15:34Z #15 1.523 3150K .......... .......... .......... .......... .......... 2% 130M 3s +2024-04-19T21:15:34Z #15 1.523 3200K .......... .......... .......... .......... .......... 2% 109M 3s +2024-04-19T21:15:34Z #15 1.523 3250K .......... .......... .......... .......... .......... 2% 106M 3s +2024-04-19T21:15:34Z #15 1.523 3300K .......... .......... .......... .......... .......... 2% 123M 3s +2024-04-19T21:15:34Z #15 1.523 3350K .......... .......... .......... .......... .......... 2% 115M 3s +2024-04-19T21:15:34Z #15 1.523 3400K .......... .......... .......... .......... .......... 2% 61.6M 3s +2024-04-19T21:15:34Z #15 1.523 3450K .......... .......... .......... .......... .......... 2% 30.6M 3s +2024-04-19T21:15:34Z #15 1.525 3500K .......... .......... .......... .......... .......... 2% 46.6M 3s +2024-04-19T21:15:34Z #15 1.526 3550K .......... .......... .......... .......... .......... 2% 48.0M 3s +2024-04-19T21:15:34Z #15 1.531 3600K .......... .......... .......... .......... .......... 2% 139M 3s +2024-04-19T21:15:34Z #15 1.531 3650K .......... .......... .......... .......... .......... 2% 146M 3s +2024-04-19T21:15:34Z #15 1.531 3700K .......... .......... .......... .......... .......... 2% 100M 3s +2024-04-19T21:15:34Z #15 1.531 3750K .......... .......... .......... .......... .......... 2% 117M 3s +2024-04-19T21:15:34Z #15 1.531 3800K .......... .......... .......... .......... .......... 3% 119M 3s +2024-04-19T21:15:34Z #15 1.531 3850K .......... .......... .......... .......... .......... 3% 110M 2s +2024-04-19T21:15:34Z #15 1.531 3900K .......... .......... .......... .......... .......... 3% 100M 2s +2024-04-19T21:15:34Z #15 1.531 3950K .......... .......... .......... .......... .......... 3% 116M 2s +2024-04-19T21:15:34Z #15 1.531 4000K .......... .......... .......... .......... .......... 3% 126M 2s +2024-04-19T21:15:34Z #15 1.531 4050K .......... .......... .......... .......... .......... 3% 75.2M 2s +2024-04-19T21:15:34Z #15 1.535 4100K .......... .......... .......... .......... .......... 3% 150M 2s +2024-04-19T21:15:34Z #15 1.535 4150K .......... .......... .......... .......... .......... 3% 141M 2s +2024-04-19T21:15:34Z #15 1.535 4200K .......... .......... .......... .......... .......... 3% 107M 2s +2024-04-19T21:15:34Z #15 1.535 4250K .......... .......... .......... .......... .......... 3% 124M 2s +2024-04-19T21:15:34Z #15 1.535 4300K .......... .......... .......... .......... .......... 3% 124M 2s +2024-04-19T21:15:34Z #15 1.535 4350K .......... .......... .......... .......... .......... 3% 134M 2s +2024-04-19T21:15:34Z #15 1.535 4400K .......... .......... .......... .......... .......... 3% 95.9M 2s +2024-04-19T21:15:34Z #15 1.535 4450K .......... .......... .......... .......... .......... 3% 120M 2s +2024-04-19T21:15:34Z #15 1.535 4500K .......... .......... .......... .......... .......... 3% 107M 2s +2024-04-19T21:15:34Z #15 1.539 4550K .......... .......... .......... .......... .......... 3% 135M 2s +2024-04-19T21:15:34Z #15 1.539 4600K .......... .......... .......... .......... .......... 3% 123M 2s +2024-04-19T21:15:34Z #15 1.539 4650K .......... .......... .......... .......... .......... 3% 127M 2s +2024-04-19T21:15:34Z #15 1.539 4700K .......... .......... .......... .......... .......... 3% 129M 2s +2024-04-19T21:15:34Z #15 1.539 4750K .......... .......... .......... .......... .......... 3% 111M 2s +2024-04-19T21:15:34Z #15 1.539 4800K .......... .......... .......... .......... .......... 3% 115M 2s +2024-04-19T21:15:34Z #15 1.539 4850K .......... .......... .......... .......... .......... 3% 124M 2s +2024-04-19T21:15:34Z #15 1.539 4900K .......... .......... .......... .......... .......... 3% 133M 2s +2024-04-19T21:15:34Z #15 1.539 4950K .......... .......... .......... .......... .......... 3% 105M 2s +2024-04-19T21:15:34Z #15 1.539 5000K .......... .......... .......... .......... .......... 3% 68.3M 2s +2024-04-19T21:15:34Z #15 1.543 5050K .......... .......... .......... .......... .......... 4% 157M 2s +2024-04-19T21:15:34Z #15 1.543 5100K .......... .......... .......... .......... .......... 4% 131M 2s +2024-04-19T21:15:34Z #15 1.543 5150K .......... .......... .......... .......... .......... 4% 147M 2s +2024-04-19T21:15:34Z #15 1.543 5200K .......... .......... .......... .......... .......... 4% 105M 2s +2024-04-19T21:15:34Z #15 1.543 5250K .......... .......... .......... .......... .......... 4% 109M 2s +2024-04-19T21:15:34Z #15 1.543 5300K .......... .......... .......... .......... .......... 4% 122M 2s +2024-04-19T21:15:34Z #15 1.543 5350K .......... .......... .......... .......... .......... 4% 133M 2s +2024-04-19T21:15:34Z #15 1.543 5400K .......... .......... .......... .......... .......... 4% 121M 2s +2024-04-19T21:15:34Z #15 1.543 5450K .......... .......... .......... .......... .......... 4% 87.7M 2s +2024-04-19T21:15:34Z #15 1.543 5500K .......... .......... .......... .......... .......... 4% 81.8M 2s +2024-04-19T21:15:34Z #15 1.547 5550K .......... .......... .......... .......... .......... 4% 155M 2s +2024-04-19T21:15:34Z #15 1.547 5600K .......... .......... .......... .......... .......... 4% 115M 2s +2024-04-19T21:15:34Z #15 1.547 5650K .......... .......... .......... .......... .......... 4% 141M 2s +2024-04-19T21:15:34Z #15 1.547 5700K .......... .......... .......... .......... .......... 4% 125M 2s +2024-04-19T21:15:34Z #15 1.547 5750K .......... .......... .......... .......... .......... 4% 119M 2s +2024-04-19T21:15:34Z #15 1.547 5800K .......... .......... .......... .......... .......... 4% 126M 2s +2024-04-19T21:15:34Z #15 1.547 5850K .......... .......... .......... .......... .......... 4% 118M 2s +2024-04-19T21:15:34Z #15 1.547 5900K .......... .......... .......... .......... .......... 4% 119M 2s +2024-04-19T21:15:34Z #15 1.547 5950K .......... .......... .......... .......... .......... 4% 56.1M 2s +2024-04-19T21:15:34Z #15 1.551 6000K .......... .......... .......... .......... .......... 4% 118M 2s +2024-04-19T21:15:34Z #15 1.551 6050K .......... .......... .......... .......... .......... 4% 147M 2s +2024-04-19T21:15:34Z #15 1.551 6100K .......... .......... .......... .......... .......... 4% 129M 2s +2024-04-19T21:15:34Z #15 1.551 6150K .......... .......... .......... .......... .......... 4% 122M 2s +2024-04-19T21:15:34Z #15 1.551 6200K .......... .......... .......... .......... .......... 4% 108M 2s +2024-04-19T21:15:34Z #15 1.551 6250K .......... .......... .......... .......... .......... 4% 123M 2s +2024-04-19T21:15:34Z #15 1.551 6300K .......... .......... .......... .......... .......... 5% 108M 2s +2024-04-19T21:15:34Z #15 1.551 6350K .......... .......... .......... .......... .......... 5% 127M 2s +2024-04-19T21:15:34Z #15 1.551 6400K .......... .......... .......... .......... .......... 5% 53.4M 2s +2024-04-19T21:15:34Z #15 1.555 6450K .......... .......... .......... .......... .......... 5% 124M 2s +2024-04-19T21:15:34Z #15 1.555 6500K .......... .......... .......... .......... .......... 5% 145M 2s +2024-04-19T21:15:34Z #15 1.555 6550K .......... .......... .......... .......... .......... 5% 135M 2s +2024-04-19T21:15:34Z #15 1.555 6600K .......... .......... .......... .......... .......... 5% 109M 2s +2024-04-19T21:15:34Z #15 1.555 6650K .......... .......... .......... .......... .......... 5% 114M 2s +2024-04-19T21:15:34Z #15 1.555 6700K .......... .......... .......... .......... .......... 5% 121M 2s +2024-04-19T21:15:34Z #15 1.555 6750K .......... .......... .......... .......... .......... 5% 133M 2s +2024-04-19T21:15:34Z #15 1.555 6800K .......... .......... .......... .......... .......... 5% 80.2M 2s +2024-04-19T21:15:34Z #15 1.555 6850K .......... .......... .......... .......... .......... 5% 52.0M 2s +2024-04-19T21:15:34Z #15 1.556 6900K .......... .......... .......... .......... .......... 5% 61.6M 2s +2024-04-19T21:15:34Z #15 1.558 6950K .......... .......... .......... .......... .......... 5% 138M 2s +2024-04-19T21:15:34Z #15 1.558 7000K .......... .......... .......... .......... .......... 5% 121M 2s +2024-04-19T21:15:34Z #15 1.558 7050K .......... .......... .......... .......... .......... 5% 126M 2s +2024-04-19T21:15:34Z #15 1.558 7100K .......... .......... .......... .......... .......... 5% 49.0M 2s +2024-04-19T21:15:34Z #15 1.559 7150K .......... .......... .......... .......... .......... 5% 135M 2s +2024-04-19T21:15:34Z #15 1.560 7200K .......... .......... .......... .......... .......... 5% 105M 2s +2024-04-19T21:15:34Z #15 1.560 7250K .......... .......... .......... .......... .......... 5% 129M 2s +2024-04-19T21:15:34Z #15 1.560 7300K .......... .......... .......... .......... .......... 5% 144M 2s +2024-04-19T21:15:34Z #15 1.561 7350K .......... .......... .......... .......... .......... 5% 124M 2s +2024-04-19T21:15:34Z #15 1.562 7400K .......... .......... .......... .......... .......... 5% 88.1M 2s +2024-04-19T21:15:34Z #15 1.575 7450K .......... .......... .......... .......... .......... 5% 4.93M 2s +2024-04-19T21:15:34Z #15 1.575 7500K .......... .......... .......... .......... .......... 5% 122M 2s +2024-04-19T21:15:34Z #15 1.575 7550K .......... .......... .......... .......... .......... 5% 124M 2s +2024-04-19T21:15:34Z #15 1.575 7600K .......... .......... .......... .......... .......... 6% 97.7M 2s +2024-04-19T21:15:34Z #15 1.575 7650K .......... .......... .......... .......... .......... 6% 115M 2s +2024-04-19T21:15:34Z #15 1.575 7700K .......... .......... .......... .......... .......... 6% 118M 2s +2024-04-19T21:15:34Z #15 1.575 7750K .......... .......... .......... .......... .......... 6% 125M 2s +2024-04-19T21:15:34Z #15 1.575 7800K .......... .......... .......... .......... .......... 6% 111M 2s +2024-04-19T21:15:34Z #15 1.575 7850K .......... .......... .......... .......... .......... 6% 120M 2s +2024-04-19T21:15:34Z #15 1.575 7900K .......... .......... .......... .......... .......... 6% 117M 2s +2024-04-19T21:15:34Z #15 1.579 7950K .......... .......... .......... .......... .......... 6% 158M 2s +2024-04-19T21:15:34Z #15 1.579 8000K .......... .......... .......... .......... .......... 6% 122M 2s +2024-04-19T21:15:34Z #15 1.579 8050K .......... .......... .......... .......... .......... 6% 120M 2s +2024-04-19T21:15:34Z #15 1.579 8100K .......... .......... .......... .......... .......... 6% 124M 2s +2024-04-19T21:15:34Z #15 1.579 8150K .......... .......... .......... .......... .......... 6% 126M 2s +2024-04-19T21:15:34Z #15 1.579 8200K .......... .......... .......... .......... .......... 6% 106M 2s +2024-04-19T21:15:34Z #15 1.579 8250K .......... .......... .......... .......... .......... 6% 133M 2s +2024-04-19T21:15:34Z #15 1.579 8300K .......... .......... .......... .......... .......... 6% 126M 2s +2024-04-19T21:15:34Z #15 1.579 8350K .......... .......... .......... .......... .......... 6% 120M 2s +2024-04-19T21:15:34Z #15 1.579 8400K .......... .......... .......... .......... .......... 6% 10.5M 2s +2024-04-19T21:15:34Z #15 1.587 8450K .......... .......... .......... .......... .......... 6% 141M 2s +2024-04-19T21:15:34Z #15 1.587 8500K .......... .......... .......... .......... .......... 6% 116M 2s +2024-04-19T21:15:34Z #15 1.587 8550K .......... .......... .......... .......... .......... 6% 115M 2s +2024-04-19T21:15:34Z #15 1.587 8600K .......... .......... .......... .......... .......... 6% 108M 2s +2024-04-19T21:15:34Z #15 1.587 8650K .......... .......... .......... .......... .......... 6% 135M 2s +2024-04-19T21:15:34Z #15 1.587 8700K .......... .......... .......... .......... .......... 6% 115M 2s +2024-04-19T21:15:34Z #15 1.587 8750K .......... .......... .......... .......... .......... 6% 120M 2s +2024-04-19T21:15:34Z #15 1.587 8800K .......... .......... .......... .......... .......... 6% 103M 2s +2024-04-19T21:15:34Z #15 1.587 8850K .......... .......... .......... .......... .......... 7% 42.9M 2s +2024-04-19T21:15:34Z #15 1.595 8900K .......... .......... .......... .......... .......... 7% 132M 2s +2024-04-19T21:15:34Z #15 1.595 8950K .......... .......... .......... .......... .......... 7% 130M 2s +2024-04-19T21:15:34Z #15 1.595 9000K .......... .......... .......... .......... .......... 7% 113M 2s +2024-04-19T21:15:34Z #15 1.595 9050K .......... .......... .......... .......... .......... 7% 137M 2s +2024-04-19T21:15:34Z #15 1.595 9100K .......... .......... .......... .......... .......... 7% 123M 2s +2024-04-19T21:15:34Z #15 1.595 9150K .......... .......... .......... .......... .......... 7% 126M 2s +2024-04-19T21:15:34Z #15 1.595 9200K .......... .......... .......... .......... .......... 7% 111M 2s +2024-04-19T21:15:34Z #15 1.595 9250K .......... .......... .......... .......... .......... 7% 123M 2s +2024-04-19T21:15:34Z #15 1.595 9300K .......... .......... .......... .......... .......... 7% 121M 2s +2024-04-19T21:15:34Z #15 1.595 9350K .......... .......... .......... .......... .......... 7% 132M 2s +2024-04-19T21:15:34Z #15 1.595 9400K .......... .......... .......... .......... .......... 7% 110M 2s +2024-04-19T21:15:34Z #15 1.595 9450K .......... .......... .......... .......... .......... 7% 114M 2s +2024-04-19T21:15:34Z #15 1.595 9500K .......... .......... .......... .......... .......... 7% 104M 2s +2024-04-19T21:15:34Z #15 1.595 9550K .......... .......... .......... .......... .......... 7% 139M 2s +2024-04-19T21:15:34Z #15 1.595 9600K .......... .......... .......... .......... .......... 7% 144M 2s +2024-04-19T21:15:34Z #15 1.595 9650K .......... .......... .......... .......... .......... 7% 121M 2s +2024-04-19T21:15:34Z #15 1.595 9700K .......... .......... .......... .......... .......... 7% 113M 2s +2024-04-19T21:15:34Z #15 1.595 9750K .......... .......... .......... .......... .......... 7% 3.88M 2s +2024-04-19T21:15:34Z #15 1.611 9800K .......... .......... .......... .......... .......... 7% 131M 2s +2024-04-19T21:15:34Z #15 1.611 9850K .......... .......... .......... .......... .......... 7% 121M 2s +2024-04-19T21:15:34Z #15 1.611 9900K .......... .......... .......... .......... .......... 7% 100M 2s +2024-04-19T21:15:34Z #15 1.611 9950K .......... .......... .......... .......... .......... 7% 132M 2s +2024-04-19T21:15:34Z #15 1.611 10000K .......... .......... .......... .......... .......... 7% 122M 2s +2024-04-19T21:15:34Z #15 1.611 10050K .......... .......... .......... .......... .......... 7% 109M 2s +2024-04-19T21:15:34Z #15 1.611 10100K .......... .......... .......... .......... .......... 8% 123M 2s +2024-04-19T21:15:34Z #15 1.611 10150K .......... .......... .......... .......... .......... 8% 101M 2s +2024-04-19T21:15:34Z #15 1.611 10200K .......... .......... .......... .......... .......... 8% 85.5M 2s +2024-04-19T21:15:34Z #15 1.619 10250K .......... .......... .......... .......... .......... 8% 114M 2s +2024-04-19T21:15:34Z #15 1.619 10300K .......... .......... .......... .......... .......... 8% 130M 2s +2024-04-19T21:15:34Z #15 1.619 10350K .......... .......... .......... .......... .......... 8% 115M 2s +2024-04-19T21:15:34Z #15 1.619 10400K .......... .......... .......... .......... .......... 8% 118M 2s +2024-04-19T21:15:34Z #15 1.619 10450K .......... .......... .......... .......... .......... 8% 97.3M 2s +2024-04-19T21:15:34Z #15 1.619 10500K .......... .......... .......... .......... .......... 8% 121M 2s +2024-04-19T21:15:34Z #15 1.619 10550K .......... .......... .......... .......... .......... 8% 108M 2s +2024-04-19T21:15:34Z #15 1.619 10600K .......... .......... .......... .......... .......... 8% 120M 2s +2024-04-19T21:15:34Z #15 1.619 10650K .......... .......... .......... .......... .......... 8% 98.6M 2s +2024-04-19T21:15:34Z #15 1.619 10700K .......... .......... .......... .......... .......... 8% 129M 2s +2024-04-19T21:15:34Z #15 1.619 10750K .......... .......... .......... .......... .......... 8% 166M 2s +2024-04-19T21:15:34Z #15 1.619 10800K .......... .......... .......... .......... .......... 8% 112M 2s +2024-04-19T21:15:34Z #15 1.619 10850K .......... .......... .......... .......... .......... 8% 164M 2s +2024-04-19T21:15:34Z #15 1.619 10900K .......... .......... .......... .......... .......... 8% 146M 2s +2024-04-19T21:15:34Z #15 1.619 10950K .......... .......... .......... .......... .......... 8% 147M 2s +2024-04-19T21:15:34Z #15 1.619 11000K .......... .......... .......... .......... .......... 8% 112M 2s +2024-04-19T21:15:34Z #15 1.619 11050K .......... .......... .......... .......... .......... 8% 159M 2s +2024-04-19T21:15:34Z #15 1.619 11100K .......... .......... .......... .......... .......... 8% 157M 2s +2024-04-19T21:15:34Z #15 1.619 11150K .......... .......... .......... .......... .......... 8% 145M 2s +2024-04-19T21:15:34Z #15 1.619 11200K .......... .......... .......... .......... .......... 8% 134M 2s +2024-04-19T21:15:34Z #15 1.619 11250K .......... .......... .......... .......... .......... 8% 22.9M 2s +2024-04-19T21:15:34Z #15 1.621 11300K .......... .......... .......... .......... .......... 8% 50.6M 2s +2024-04-19T21:15:34Z #15 1.622 11350K .......... .......... .......... .......... .......... 8% 40.9M 2s +2024-04-19T21:15:34Z #15 1.623 11400K .......... .......... .......... .......... .......... 9% 32.2M 2s +2024-04-19T21:15:34Z #15 1.627 11450K .......... .......... .......... .......... .......... 9% 50.9M 2s +2024-04-19T21:15:34Z #15 1.627 11500K .......... .......... .......... .......... .......... 9% 53.6M 2s +2024-04-19T21:15:34Z #15 1.627 11550K .......... .......... .......... .......... .......... 9% 41.4M 2s +2024-04-19T21:15:34Z #15 1.628 11600K .......... .......... .......... .......... .......... 9% 28.4M 2s +2024-04-19T21:15:34Z #15 1.630 11650K .......... .......... .......... .......... .......... 9% 25.7M 2s +2024-04-19T21:15:34Z #15 1.635 11700K .......... .......... .......... .......... .......... 9% 120M 2s +2024-04-19T21:15:34Z #15 1.635 11750K .......... .......... .......... .......... .......... 9% 139M 2s +2024-04-19T21:15:34Z #15 1.635 11800K .......... .......... .......... .......... .......... 9% 112M 2s +2024-04-19T21:15:34Z #15 1.635 11850K .......... .......... .......... .......... .......... 9% 96.7M 2s +2024-04-19T21:15:34Z #15 1.635 11900K .......... .......... .......... .......... .......... 9% 116M 2s +2024-04-19T21:15:34Z #15 1.635 11950K .......... .......... .......... .......... .......... 9% 124M 2s +2024-04-19T21:15:34Z #15 1.635 12000K .......... .......... .......... .......... .......... 9% 116M 2s +2024-04-19T21:15:34Z #15 1.635 12050K .......... .......... .......... .......... .......... 9% 127M 2s +2024-04-19T21:15:34Z #15 1.635 12100K .......... .......... .......... .......... .......... 9% 62.6M 2s +2024-04-19T21:15:34Z #15 1.639 12150K .......... .......... .......... .......... .......... 9% 104M 2s +2024-04-19T21:15:34Z #15 1.639 12200K .......... .......... .......... .......... .......... 9% 102M 2s +2024-04-19T21:15:34Z #15 1.639 12250K .......... .......... .......... .......... .......... 9% 110M 2s +2024-04-19T21:15:34Z #15 1.639 12300K .......... .......... .......... .......... .......... 9% 122M 2s +2024-04-19T21:15:34Z #15 1.639 12350K .......... .......... .......... .......... .......... 9% 114M 2s +2024-04-19T21:15:34Z #15 1.639 12400K .......... .......... .......... .......... .......... 9% 97.6M 2s +2024-04-19T21:15:34Z #15 1.639 12450K .......... .......... .......... .......... .......... 9% 113M 2s +2024-04-19T21:15:34Z #15 1.639 12500K .......... .......... .......... .......... .......... 9% 81.2M 2s +2024-04-19T21:15:34Z #15 1.643 12550K .......... .......... .......... .......... .......... 9% 117M 2s +2024-04-19T21:15:34Z #15 1.643 12600K .......... .......... .......... .......... .......... 9% 106M 2s +2024-04-19T21:15:34Z #15 1.643 12650K .......... .......... .......... .......... .......... 10% 110M 2s +2024-04-19T21:15:34Z #15 1.643 12700K .......... .......... .......... .......... .......... 10% 113M 2s +2024-04-19T21:15:34Z #15 1.643 12750K .......... .......... .......... .......... .......... 10% 98.7M 2s +2024-04-19T21:15:34Z #15 1.643 12800K .......... .......... .......... .......... .......... 10% 127M 2s +2024-04-19T21:15:34Z #15 1.643 12850K .......... .......... .......... .......... .......... 10% 99.1M 2s +2024-04-19T21:15:34Z #15 1.643 12900K .......... .......... .......... .......... .......... 10% 93.5M 2s +2024-04-19T21:15:34Z #15 1.643 12950K .......... .......... .......... .......... .......... 10% 90.1M 2s +2024-04-19T21:15:34Z #15 1.647 13000K .......... .......... .......... .......... .......... 10% 101M 2s +2024-04-19T21:15:34Z #15 1.647 13050K .......... .......... .......... .......... .......... 10% 109M 2s +2024-04-19T21:15:34Z #15 1.647 13100K .......... .......... .......... .......... .......... 10% 106M 2s +2024-04-19T21:15:34Z #15 1.647 13150K .......... .......... .......... .......... .......... 10% 135M 2s +2024-04-19T21:15:34Z #15 1.647 13200K .......... .......... .......... .......... .......... 10% 120M 2s +2024-04-19T21:15:34Z #15 1.647 13250K .......... .......... .......... .......... .......... 10% 134M 2s +2024-04-19T21:15:34Z #15 1.647 13300K .......... .......... .......... .......... .......... 10% 105M 2s +2024-04-19T21:15:34Z #15 1.647 13350K .......... .......... .......... .......... .......... 10% 154M 2s +2024-04-19T21:15:34Z #15 1.647 13400K .......... .......... .......... .......... .......... 10% 84.6M 2s +2024-04-19T21:15:34Z #15 1.647 13450K .......... .......... .......... .......... .......... 10% 146M 2s +2024-04-19T21:15:34Z #15 1.648 13500K .......... .......... .......... .......... .......... 10% 124M 2s +2024-04-19T21:15:34Z #15 1.648 13550K .......... .......... .......... .......... .......... 10% 156M 2s +2024-04-19T21:15:34Z #15 1.648 13600K .......... .......... .......... .......... .......... 10% 155M 2s +2024-04-19T21:15:34Z #15 1.649 13650K .......... .......... .......... .......... .......... 10% 137M 2s +2024-04-19T21:15:34Z #15 1.649 13700K .......... .......... .......... .......... .......... 10% 142M 2s +2024-04-19T21:15:34Z #15 1.649 13750K .......... .......... .......... .......... .......... 10% 134M 2s +2024-04-19T21:15:34Z #15 1.650 13800K .......... .......... .......... .......... .......... 10% 147M 2s +2024-04-19T21:15:34Z #15 1.650 13850K .......... .......... .......... .......... .......... 10% 135M 2s +2024-04-19T21:15:34Z #15 1.650 13900K .......... .......... .......... .......... .......... 11% 151M 2s +2024-04-19T21:15:34Z #15 1.655 13950K .......... .......... .......... .......... .......... 11% 112M 2s +2024-04-19T21:15:34Z #15 1.655 14000K .......... .......... .......... .......... .......... 11% 136M 2s +2024-04-19T21:15:34Z #15 1.655 14050K .......... .......... .......... .......... .......... 11% 127M 2s +2024-04-19T21:15:34Z #15 1.655 14100K .......... .......... .......... .......... .......... 11% 106M 2s +2024-04-19T21:15:34Z #15 1.655 14150K .......... .......... .......... .......... .......... 11% 117M 2s +2024-04-19T21:15:34Z #15 1.655 14200K .......... .......... .......... .......... .......... 11% 122M 2s +2024-04-19T21:15:34Z #15 1.655 14250K .......... .......... .......... .......... .......... 11% 116M 2s +2024-04-19T21:15:34Z #15 1.655 14300K .......... .......... .......... .......... .......... 11% 114M 2s +2024-04-19T21:15:34Z #15 1.655 14350K .......... .......... .......... .......... .......... 11% 120M 2s +2024-04-19T21:15:34Z #15 1.655 14400K .......... .......... .......... .......... .......... 11% 119M 2s +2024-04-19T21:15:34Z #15 1.659 14450K .......... .......... .......... .......... .......... 11% 91.9M 2s +2024-04-19T21:15:34Z #15 1.659 14500K .......... .......... .......... .......... .......... 11% 95.0M 2s +2024-04-19T21:15:34Z #15 1.659 14550K .......... .......... .......... .......... .......... 11% 112M 2s +2024-04-19T21:15:34Z #15 1.659 14600K .......... .......... .......... .......... .......... 11% 131M 2s +2024-04-19T21:15:34Z #15 1.659 14650K .......... .......... .......... .......... .......... 11% 125M 2s +2024-04-19T21:15:34Z #15 1.659 14700K .......... .......... .......... .......... .......... 11% 96.8M 2s +2024-04-19T21:15:34Z #15 1.659 14750K .......... .......... .......... .......... .......... 11% 116M 2s +2024-04-19T21:15:34Z #15 1.659 14800K .......... .......... .......... .......... .......... 11% 131M 2s +2024-04-19T21:15:34Z #15 1.659 14850K .......... .......... .......... .......... .......... 11% 121M 2s +2024-04-19T21:15:34Z #15 1.659 14900K .......... .......... .......... .......... .......... 11% 76.2M 2s +2024-04-19T21:15:34Z #15 1.663 14950K .......... .......... .......... .......... .......... 11% 123M 2s +2024-04-19T21:15:34Z #15 1.663 15000K .......... .......... .......... .......... .......... 11% 119M 2s +2024-04-19T21:15:34Z #15 1.663 15050K .......... .......... .......... .......... .......... 11% 112M 2s +2024-04-19T21:15:34Z #15 1.663 15100K .......... .......... .......... .......... .......... 11% 107M 2s +2024-04-19T21:15:34Z #15 1.663 15150K .......... .......... .......... .......... .......... 11% 104M 2s +2024-04-19T21:15:34Z #15 1.663 15200K .......... .......... .......... .......... .......... 12% 126M 2s +2024-04-19T21:15:34Z #15 1.663 15250K .......... .......... .......... .......... .......... 12% 122M 2s +2024-04-19T21:15:34Z #15 1.663 15300K .......... .......... .......... .......... .......... 12% 97.7M 2s +2024-04-19T21:15:34Z #15 1.675 15350K .......... .......... .......... .......... .......... 12% 95.1M 2s +2024-04-19T21:15:34Z #15 1.675 15400K .......... .......... .......... .......... .......... 12% 165M 2s +2024-04-19T21:15:34Z #15 1.675 15450K .......... .......... .......... .......... .......... 12% 173M 2s +2024-04-19T21:15:34Z #15 1.675 15500K .......... .......... .......... .......... .......... 12% 162M 2s +2024-04-19T21:15:34Z #15 1.675 15550K .......... .......... .......... .......... .......... 12% 160M 2s +2024-04-19T21:15:34Z #15 1.675 15600K .......... .......... .......... .......... .......... 12% 172M 2s +2024-04-19T21:15:34Z #15 1.675 15650K .......... .......... .......... .......... .......... 12% 181M 2s +2024-04-19T21:15:34Z #15 1.675 15700K .......... .......... .......... .......... .......... 12% 24.7M 2s +2024-04-19T21:15:34Z #15 1.675 15750K .......... .......... .......... .......... .......... 12% 152M 2s +2024-04-19T21:15:34Z #15 1.675 15800K .......... .......... .......... .......... .......... 12% 140M 2s +2024-04-19T21:15:34Z #15 1.675 15850K .......... .......... .......... .......... .......... 12% 157M 2s +2024-04-19T21:15:34Z #15 1.675 15900K .......... .......... .......... .......... .......... 12% 140M 2s +2024-04-19T21:15:34Z #15 1.675 15950K .......... .......... .......... .......... .......... 12% 156M 2s +2024-04-19T21:15:34Z #15 1.675 16000K .......... .......... .......... .......... .......... 12% 158M 2s +2024-04-19T21:15:34Z #15 1.675 16050K .......... .......... .......... .......... .......... 12% 155M 2s +2024-04-19T21:15:34Z #15 1.675 16100K .......... .......... .......... .......... .......... 12% 135M 2s +2024-04-19T21:15:34Z #15 1.675 16150K .......... .......... .......... .......... .......... 12% 156M 1s +2024-04-19T21:15:34Z #15 1.675 16200K .......... .......... .......... .......... .......... 12% 169M 1s +2024-04-19T21:15:34Z #15 1.675 16250K .......... .......... .......... .......... .......... 12% 151M 1s +2024-04-19T21:15:34Z #15 1.675 16300K .......... .......... .......... .......... .......... 12% 110M 1s +2024-04-19T21:15:34Z #15 1.675 16350K .......... .......... .......... .......... .......... 12% 148M 1s +2024-04-19T21:15:34Z #15 1.675 16400K .......... .......... .......... .......... .......... 12% 129M 1s +2024-04-19T21:15:34Z #15 1.675 16450K .......... .......... .......... .......... .......... 13% 110M 1s +2024-04-19T21:15:34Z #15 1.675 16500K .......... .......... .......... .......... .......... 13% 116M 1s +2024-04-19T21:15:34Z #15 1.675 16550K .......... .......... .......... .......... .......... 13% 130M 1s +2024-04-19T21:15:34Z #15 1.675 16600K .......... .......... .......... .......... .......... 13% 121M 1s +2024-04-19T21:15:34Z #15 1.675 16650K .......... .......... .......... .......... .......... 13% 110M 1s +2024-04-19T21:15:34Z #15 1.675 16700K .......... .......... .......... .......... .......... 13% 107M 1s +2024-04-19T21:15:34Z #15 1.675 16750K .......... .......... .......... .......... .......... 13% 128M 1s +2024-04-19T21:15:34Z #15 1.675 16800K .......... .......... .......... .......... .......... 13% 78.9M 1s +2024-04-19T21:15:34Z #15 1.679 16850K .......... .......... .......... .......... .......... 13% 117M 1s +2024-04-19T21:15:34Z #15 1.679 16900K .......... .......... .......... .......... .......... 13% 137M 1s +2024-04-19T21:15:34Z #15 1.679 16950K .......... .......... .......... .......... .......... 13% 128M 1s +2024-04-19T21:15:34Z #15 1.679 17000K .......... .......... .......... .......... .......... 13% 109M 1s +2024-04-19T21:15:34Z #15 1.679 17050K .......... .......... .......... .......... .......... 13% 127M 1s +2024-04-19T21:15:34Z #15 1.679 17100K .......... .......... .......... .......... .......... 13% 105M 1s +2024-04-19T21:15:34Z #15 1.679 17150K .......... .......... .......... .......... .......... 13% 132M 1s +2024-04-19T21:15:34Z #15 1.679 17200K .......... .......... .......... .......... .......... 13% 123M 1s +2024-04-19T21:15:34Z #15 1.679 17250K .......... .......... .......... .......... .......... 13% 77.8M 1s +2024-04-19T21:15:34Z #15 1.679 17300K .......... .......... .......... .......... .......... 13% 1013K 2s +2024-04-19T21:15:34Z #15 1.728 17350K .......... .......... .......... .......... .......... 13% 44.5M 2s +2024-04-19T21:15:34Z #15 1.729 17400K .......... .......... .......... .......... .......... 13% 37.4M 2s +2024-04-19T21:15:34Z #15 1.731 17450K .......... .......... .......... .......... .......... 13% 139M 2s +2024-04-19T21:15:34Z #15 1.731 17500K .......... .......... .......... .......... .......... 13% 146M 2s +2024-04-19T21:15:34Z #15 1.731 17550K .......... .......... .......... .......... .......... 13% 148M 2s +2024-04-19T21:15:34Z #15 1.732 17600K .......... .......... .......... .......... .......... 13% 129M 2s +2024-04-19T21:15:34Z #15 1.732 17650K .......... .......... .......... .......... .......... 13% 153M 2s +2024-04-19T21:15:34Z #15 1.733 17700K .......... .......... .......... .......... .......... 14% 135M 2s +2024-04-19T21:15:34Z #15 1.733 17750K .......... .......... .......... .......... .......... 14% 139M 2s +2024-04-19T21:15:34Z #15 1.733 17800K .......... .......... .......... .......... .......... 14% 116M 2s +2024-04-19T21:15:34Z #15 1.734 17850K .......... .......... .......... .......... .......... 14% 95.8M 2s +2024-04-19T21:15:34Z #15 1.734 17900K .......... .......... .......... .......... .......... 14% 107M 2s +2024-04-19T21:15:34Z #15 1.735 17950K .......... .......... .......... .......... .......... 14% 108M 2s +2024-04-19T21:15:34Z #15 1.735 18000K .......... .......... .......... .......... .......... 14% 109M 2s +2024-04-19T21:15:34Z #15 1.735 18050K .......... .......... .......... .......... .......... 14% 126M 2s +2024-04-19T21:15:34Z #15 1.736 18100K .......... .......... .......... .......... .......... 14% 97.3M 2s +2024-04-19T21:15:34Z #15 1.736 18150K .......... .......... .......... .......... .......... 14% 83.1M 2s +2024-04-19T21:15:34Z #15 1.737 18200K .......... .......... .......... .......... .......... 14% 49.4M 2s +2024-04-19T21:15:34Z #15 1.738 18250K .......... .......... .......... .......... .......... 14% 112M 2s +2024-04-19T21:15:34Z #15 1.738 18300K .......... .......... .......... .......... .......... 14% 107M 2s +2024-04-19T21:15:34Z #15 1.740 18350K .......... .......... .......... .......... .......... 14% 76.5M 2s +2024-04-19T21:15:34Z #15 1.740 18400K .......... .......... .......... .......... .......... 14% 45.3M 2s +2024-04-19T21:15:34Z #15 1.741 18450K .......... .......... .......... .......... .......... 14% 66.3M 2s +2024-04-19T21:15:34Z #15 1.742 18500K .......... .......... .......... .......... .......... 14% 131M 2s +2024-04-19T21:15:34Z #15 1.742 18550K .......... .......... .......... .......... .......... 14% 51.5M 2s +2024-04-19T21:15:34Z #15 1.743 18600K .......... .......... .......... .......... .......... 14% 38.2M 2s +2024-04-19T21:15:34Z #15 1.744 18650K .......... .......... .......... .......... .......... 14% 58.9M 2s +2024-04-19T21:15:34Z #15 1.745 18700K .......... .......... .......... .......... .......... 14% 65.5M 2s +2024-04-19T21:15:34Z #15 1.746 18750K .......... .......... .......... .......... .......... 14% 59.4M 2s +2024-04-19T21:15:34Z #15 1.747 18800K .......... .......... .......... .......... .......... 14% 54.7M 2s +2024-04-19T21:15:34Z #15 1.747 18850K .......... .......... .......... .......... .......... 14% 77.0M 2s +2024-04-19T21:15:34Z #15 1.748 18900K .......... .......... .......... .......... .......... 14% 106M 2s +2024-04-19T21:15:34Z #15 1.748 18950K .......... .......... .......... .......... .......... 14% 66.2M 2s +2024-04-19T21:15:34Z #15 1.749 19000K .......... .......... .......... .......... .......... 15% 120M 2s +2024-04-19T21:15:34Z #15 1.750 19050K .......... .......... .......... .......... .......... 15% 127M 2s +2024-04-19T21:15:34Z #15 1.750 19100K .......... .......... .......... .......... .......... 15% 118M 2s +2024-04-19T21:15:34Z #15 1.751 19150K .......... .......... .......... .......... .......... 15% 122M 2s +2024-04-19T21:15:34Z #15 1.751 19200K .......... .......... .......... .......... .......... 15% 124M 2s +2024-04-19T21:15:34Z #15 1.751 19250K .......... .......... .......... .......... .......... 15% 126M 2s +2024-04-19T21:15:34Z #15 1.752 19300K .......... .......... .......... .......... .......... 15% 126M 2s +2024-04-19T21:15:34Z #15 1.752 19350K .......... .......... .......... .......... .......... 15% 131M 2s +2024-04-19T21:15:34Z #15 1.752 19400K .......... .......... .......... .......... .......... 15% 130M 2s +2024-04-19T21:15:34Z #15 1.753 19450K .......... .......... .......... .......... .......... 15% 118M 2s +2024-04-19T21:15:34Z #15 1.753 19500K .......... .......... .......... .......... .......... 15% 147M 2s +2024-04-19T21:15:34Z #15 1.753 19550K .......... .......... .......... .......... .......... 15% 110M 2s +2024-04-19T21:15:34Z #15 1.754 19600K .......... .......... .......... .......... .......... 15% 122M 2s +2024-04-19T21:15:34Z #15 1.754 19650K .......... .......... .......... .......... .......... 15% 127M 2s +2024-04-19T21:15:34Z #15 1.754 19700K .......... .......... .......... .......... .......... 15% 130M 2s +2024-04-19T21:15:34Z #15 1.755 19750K .......... .......... .......... .......... .......... 15% 126M 2s +2024-04-19T21:15:34Z #15 1.755 19800K .......... .......... .......... .......... .......... 15% 126M 2s +2024-04-19T21:15:34Z #15 1.756 19850K .......... .......... .......... .......... .......... 15% 134M 2s +2024-04-19T21:15:34Z #15 1.756 19900K .......... .......... .......... .......... .......... 15% 127M 2s +2024-04-19T21:15:34Z #15 1.756 19950K .......... .......... .......... .......... .......... 15% 122M 2s +2024-04-19T21:15:34Z #15 1.757 20000K .......... .......... .......... .......... .......... 15% 122M 2s +2024-04-19T21:15:34Z #15 1.758 20050K .......... .......... .......... .......... .......... 15% 123M 2s +2024-04-19T21:15:34Z #15 1.758 20100K .......... .......... .......... .......... .......... 15% 139M 2s +2024-04-19T21:15:34Z #15 1.758 20150K .......... .......... .......... .......... .......... 15% 134M 2s +2024-04-19T21:15:34Z #15 1.759 20200K .......... .......... .......... .......... .......... 15% 103M 2s +2024-04-19T21:15:34Z #15 1.760 20250K .......... .......... .......... .......... .......... 16% 115M 2s +2024-04-19T21:15:35Z #15 1.760 20300K .......... .......... .......... .......... .......... 16% 156M 2s +2024-04-19T21:15:35Z #15 1.760 20350K .......... .......... .......... .......... .......... 16% 107M 2s +2024-04-19T21:15:35Z #15 1.760 20400K .......... .......... .......... .......... .......... 16% 139M 2s +2024-04-19T21:15:35Z #15 1.760 20450K .......... .......... .......... .......... .......... 16% 146M 2s +2024-04-19T21:15:35Z #15 1.761 20500K .......... .......... .......... .......... .......... 16% 113M 2s +2024-04-19T21:15:35Z #15 1.761 20550K .......... .......... .......... .......... .......... 16% 122M 2s +2024-04-19T21:15:35Z #15 1.762 20600K .......... .......... .......... .......... .......... 16% 124M 2s +2024-04-19T21:15:35Z #15 1.762 20650K .......... .......... .......... .......... .......... 16% 144M 2s +2024-04-19T21:15:35Z #15 1.762 20700K .......... .......... .......... .......... .......... 16% 106M 2s +2024-04-19T21:15:35Z #15 1.768 20750K .......... .......... .......... .......... .......... 16% 117M 2s +2024-04-19T21:15:35Z #15 1.768 20800K .......... .......... .......... .......... .......... 16% 157M 2s +2024-04-19T21:15:35Z #15 1.768 20850K .......... .......... .......... .......... .......... 16% 108M 2s +2024-04-19T21:15:35Z #15 1.768 20900K .......... .......... .......... .......... .......... 16% 79.7M 2s +2024-04-19T21:15:35Z #15 1.768 20950K .......... .......... .......... .......... .......... 16% 68.8M 2s +2024-04-19T21:15:35Z #15 1.768 21000K .......... .......... .......... .......... .......... 16% 74.5M 2s +2024-04-19T21:15:35Z #15 1.768 21050K .......... .......... .......... .......... .......... 16% 74.5M 2s +2024-04-19T21:15:35Z #15 1.768 21100K .......... .......... .......... .......... .......... 16% 80.5M 2s +2024-04-19T21:15:35Z #15 1.768 21150K .......... .......... .......... .......... .......... 16% 106M 2s +2024-04-19T21:15:35Z #15 1.768 21200K .......... .......... .......... .......... .......... 16% 113M 2s +2024-04-19T21:15:35Z #15 1.768 21250K .......... .......... .......... .......... .......... 16% 130M 2s +2024-04-19T21:15:35Z #15 1.768 21300K .......... .......... .......... .......... .......... 16% 106M 2s +2024-04-19T21:15:35Z #15 1.769 21350K .......... .......... .......... .......... .......... 16% 156M 2s +2024-04-19T21:15:35Z #15 1.769 21400K .......... .......... .......... .......... .......... 16% 139M 2s +2024-04-19T21:15:35Z #15 1.770 21450K .......... .......... .......... .......... .......... 16% 114M 2s +2024-04-19T21:15:35Z #15 1.770 21500K .......... .......... .......... .......... .......... 16% 104M 2s +2024-04-19T21:15:35Z #15 1.770 21550K .......... .......... .......... .......... .......... 17% 116M 2s +2024-04-19T21:15:35Z #15 1.771 21600K .......... .......... .......... .......... .......... 17% 105M 2s +2024-04-19T21:15:35Z #15 1.771 21650K .......... .......... .......... .......... .......... 17% 123M 2s +2024-04-19T21:15:35Z #15 1.772 21700K .......... .......... .......... .......... .......... 17% 123M 2s +2024-04-19T21:15:35Z #15 1.775 21750K .......... .......... .......... .......... .......... 17% 132M 2s +2024-04-19T21:15:35Z #15 1.775 21800K .......... .......... .......... .......... .......... 17% 150M 2s +2024-04-19T21:15:35Z #15 1.775 21850K .......... .......... .......... .......... .......... 17% 126M 2s +2024-04-19T21:15:35Z #15 1.775 21900K .......... .......... .......... .......... .......... 17% 101M 2s +2024-04-19T21:15:35Z #15 1.775 21950K .......... .......... .......... .......... .......... 17% 73.8M 2s +2024-04-19T21:15:35Z #15 1.775 22000K .......... .......... .......... .......... .......... 17% 13.8M 2s +2024-04-19T21:15:35Z #15 1.778 22050K .......... .......... .......... .......... .......... 17% 129M 2s +2024-04-19T21:15:35Z #15 1.778 22100K .......... .......... .......... .......... .......... 17% 110M 2s +2024-04-19T21:15:35Z #15 1.779 22150K .......... .......... .......... .......... .......... 17% 91.2M 2s +2024-04-19T21:15:35Z #15 1.779 22200K .......... .......... .......... .......... .......... 17% 126M 2s +2024-04-19T21:15:35Z #15 1.780 22250K .......... .......... .......... .......... .......... 17% 123M 2s +2024-04-19T21:15:35Z #15 1.781 22300K .......... .......... .......... .......... .......... 17% 105M 2s +2024-04-19T21:15:35Z #15 1.781 22350K .......... .......... .......... .......... .......... 17% 122M 2s +2024-04-19T21:15:35Z #15 1.781 22400K .......... .......... .......... .......... .......... 17% 112M 2s +2024-04-19T21:15:35Z #15 1.781 22450K .......... .......... .......... .......... .......... 17% 110M 2s +2024-04-19T21:15:35Z #15 1.782 22500K .......... .......... .......... .......... .......... 17% 151M 2s +2024-04-19T21:15:35Z #15 1.782 22550K .......... .......... .......... .......... .......... 17% 113M 2s +2024-04-19T21:15:35Z #15 1.787 22600K .......... .......... .......... .......... .......... 17% 97.2M 2s +2024-04-19T21:15:35Z #15 1.787 22650K .......... .......... .......... .......... .......... 17% 133M 2s +2024-04-19T21:15:35Z #15 1.787 22700K .......... .......... .......... .......... .......... 17% 113M 2s +2024-04-19T21:15:35Z #15 1.787 22750K .......... .......... .......... .......... .......... 17% 109M 2s +2024-04-19T21:15:35Z #15 1.787 22800K .......... .......... .......... .......... .......... 18% 76.1M 2s +2024-04-19T21:15:35Z #15 1.787 22850K .......... .......... .......... .......... .......... 18% 94.9M 2s +2024-04-19T21:15:35Z #15 1.787 22900K .......... .......... .......... .......... .......... 18% 79.8M 2s +2024-04-19T21:15:35Z #15 1.787 22950K .......... .......... .......... .......... .......... 18% 83.7M 2s +2024-04-19T21:15:35Z #15 1.787 23000K .......... .......... .......... .......... .......... 18% 41.8M 2s +2024-04-19T21:15:35Z #15 1.788 23050K .......... .......... .......... .......... .......... 18% 29.3M 2s +2024-04-19T21:15:35Z #15 1.790 23100K .......... .......... .......... .......... .......... 18% 35.2M 2s +2024-04-19T21:15:35Z #15 1.795 23150K .......... .......... .......... .......... .......... 18% 35.4M 2s +2024-04-19T21:15:35Z #15 1.795 23200K .......... .......... .......... .......... .......... 18% 28.4M 2s +2024-04-19T21:15:35Z #15 1.795 23250K .......... .......... .......... .......... .......... 18% 28.0M 2s +2024-04-19T21:15:35Z #15 1.796 23300K .......... .......... .......... .......... .......... 18% 38.1M 2s +2024-04-19T21:15:35Z #15 1.799 23350K .......... .......... .......... .......... .......... 18% 33.9M 2s +2024-04-19T21:15:35Z #15 1.799 23400K .......... .......... .......... .......... .......... 18% 35.7M 2s +2024-04-19T21:15:35Z #15 1.800 23450K .......... .......... .......... .......... .......... 18% 29.8M 2s +2024-04-19T21:15:35Z #15 1.807 23500K .......... .......... .......... .......... .......... 18% 46.7M 2s +2024-04-19T21:15:35Z #15 1.807 23550K .......... .......... .......... .......... .......... 18% 30.5M 2s +2024-04-19T21:15:35Z #15 1.807 23600K .......... .......... .......... .......... .......... 18% 33.1M 2s +2024-04-19T21:15:35Z #15 1.807 23650K .......... .......... .......... .......... .......... 18% 47.6M 2s +2024-04-19T21:15:35Z #15 1.807 23700K .......... .......... .......... .......... .......... 18% 69.9M 2s +2024-04-19T21:15:35Z #15 1.808 23750K .......... .......... .......... .......... .......... 18% 123M 2s +2024-04-19T21:15:35Z #15 1.808 23800K .......... .......... .......... .......... .......... 18% 117M 2s +2024-04-19T21:15:35Z #15 1.808 23850K .......... .......... .......... .......... .......... 18% 125M 2s +2024-04-19T21:15:35Z #15 1.809 23900K .......... .......... .......... .......... .......... 18% 128M 2s +2024-04-19T21:15:35Z #15 1.809 23950K .......... .......... .......... .......... .......... 18% 111M 2s +2024-04-19T21:15:35Z #15 1.809 24000K .......... .......... .......... .......... .......... 18% 140M 2s +2024-04-19T21:15:35Z #15 1.810 24050K .......... .......... .......... .......... .......... 19% 103M 2s +2024-04-19T21:15:35Z #15 1.810 24100K .......... .......... .......... .......... .......... 19% 139M 2s +2024-04-19T21:15:35Z #15 1.811 24150K .......... .......... .......... .......... .......... 19% 86.9M 2s +2024-04-19T21:15:35Z #15 1.811 24200K .......... .......... .......... .......... .......... 19% 36.8M 2s +2024-04-19T21:15:35Z #15 1.813 24250K .......... .......... .......... .......... .......... 19% 33.4M 2s +2024-04-19T21:15:35Z #15 1.814 24300K .......... .......... .......... .......... .......... 19% 45.1M 2s +2024-04-19T21:15:35Z #15 1.819 24350K .......... .......... .......... .......... .......... 19% 34.8M 2s +2024-04-19T21:15:35Z #15 1.819 24400K .......... .......... .......... .......... .......... 19% 48.8M 2s +2024-04-19T21:15:35Z #15 1.819 24450K .......... .......... .......... .......... .......... 19% 63.5M 2s +2024-04-19T21:15:35Z #15 1.819 24500K .......... .......... .......... .......... .......... 19% 66.9M 2s +2024-04-19T21:15:35Z #15 1.819 24550K .......... .......... .......... .......... .......... 19% 132M 2s +2024-04-19T21:15:35Z #15 1.819 24600K .......... .......... .......... .......... .......... 19% 144M 2s +2024-04-19T21:15:35Z #15 1.820 24650K .......... .......... .......... .......... .......... 19% 105M 2s +2024-04-19T21:15:35Z #15 1.820 24700K .......... .......... .......... .......... .......... 19% 123M 2s +2024-04-19T21:15:35Z #15 1.821 24750K .......... .......... .......... .......... .......... 19% 123M 2s +2024-04-19T21:15:35Z #15 1.821 24800K .......... .......... .......... .......... .......... 19% 119M 2s +2024-04-19T21:15:35Z #15 1.821 24850K .......... .......... .......... .......... .......... 19% 119M 2s +2024-04-19T21:15:35Z #15 1.822 24900K .......... .......... .......... .......... .......... 19% 114M 2s +2024-04-19T21:15:35Z #15 1.822 24950K .......... .......... .......... .......... .......... 19% 133M 2s +2024-04-19T21:15:35Z #15 1.822 25000K .......... .......... .......... .......... .......... 19% 84.5M 2s +2024-04-19T21:15:35Z #15 1.823 25050K .......... .......... .......... .......... .......... 19% 81.6M 2s +2024-04-19T21:15:35Z #15 1.823 25100K .......... .......... .......... .......... .......... 19% 170M 2s +2024-04-19T21:15:35Z #15 1.824 25150K .......... .......... .......... .......... .......... 19% 133M 2s +2024-04-19T21:15:35Z #15 1.824 25200K .......... .......... .......... .......... .......... 19% 139M 2s +2024-04-19T21:15:35Z #15 1.824 25250K .......... .......... .......... .......... .......... 19% 150M 2s +2024-04-19T21:15:35Z #15 1.825 25300K .......... .......... .......... .......... .......... 19% 126M 2s +2024-04-19T21:15:35Z #15 1.831 25350K .......... .......... .......... .......... .......... 20% 127M 1s +2024-04-19T21:15:35Z #15 1.831 25400K .......... .......... .......... .......... .......... 20% 143M 1s +2024-04-19T21:15:35Z #15 1.831 25450K .......... .......... .......... .......... .......... 20% 139M 1s +2024-04-19T21:15:35Z #15 1.831 25500K .......... .......... .......... .......... .......... 20% 152M 1s +2024-04-19T21:15:35Z #15 1.831 25550K .......... .......... .......... .......... .......... 20% 111M 1s +2024-04-19T21:15:35Z #15 1.831 25600K .......... .......... .......... .......... .......... 20% 143M 1s +2024-04-19T21:15:35Z #15 1.831 25650K .......... .......... .......... .......... .......... 20% 148M 1s +2024-04-19T21:15:35Z #15 1.831 25700K .......... .......... .......... .......... .......... 20% 152M 1s +2024-04-19T21:15:35Z #15 1.831 25750K .......... .......... .......... .......... .......... 20% 164M 1s +2024-04-19T21:15:35Z #15 1.831 25800K .......... .......... .......... .......... .......... 20% 139M 1s +2024-04-19T21:15:35Z #15 1.831 25850K .......... .......... .......... .......... .......... 20% 155M 1s +2024-04-19T21:15:35Z #15 1.831 25900K .......... .......... .......... .......... .......... 20% 165M 1s +2024-04-19T21:15:35Z #15 1.831 25950K .......... .......... .......... .......... .......... 20% 176M 1s +2024-04-19T21:15:35Z #15 1.831 26000K .......... .......... .......... .......... .......... 20% 123M 1s +2024-04-19T21:15:35Z #15 1.831 26050K .......... .......... .......... .......... .......... 20% 154M 1s +2024-04-19T21:15:35Z #15 1.831 26100K .......... .......... .......... .......... .......... 20% 174M 1s +2024-04-19T21:15:35Z #15 1.831 26150K .......... .......... .......... .......... .......... 20% 132M 1s +2024-04-19T21:15:35Z #15 1.831 26200K .......... .......... .......... .......... .......... 20% 139M 1s +2024-04-19T21:15:35Z #15 1.831 26250K .......... .......... .......... .......... .......... 20% 145M 1s +2024-04-19T21:15:35Z #15 1.832 26300K .......... .......... .......... .......... .......... 20% 148M 1s +2024-04-19T21:15:35Z #15 1.832 26350K .......... .......... .......... .......... .......... 20% 162M 1s +2024-04-19T21:15:35Z #15 1.832 26400K .......... .......... .......... .......... .......... 20% 124M 1s +2024-04-19T21:15:35Z #15 1.833 26450K .......... .......... .......... .......... .......... 20% 141M 1s +2024-04-19T21:15:35Z #15 1.833 26500K .......... .......... .......... .......... .......... 20% 149M 1s +2024-04-19T21:15:35Z #15 1.833 26550K .......... .......... .......... .......... .......... 20% 148M 1s +2024-04-19T21:15:35Z #15 1.834 26600K .......... .......... .......... .......... .......... 21% 126M 1s +2024-04-19T21:15:35Z #15 1.834 26650K .......... .......... .......... .......... .......... 21% 150M 1s +2024-04-19T21:15:35Z #15 1.834 26700K .......... .......... .......... .......... .......... 21% 113M 1s +2024-04-19T21:15:35Z #15 1.835 26750K .......... .......... .......... .......... .......... 21% 146M 1s +2024-04-19T21:15:35Z #15 1.835 26800K .......... .......... .......... .......... .......... 21% 139M 1s +2024-04-19T21:15:35Z #15 1.835 26850K .......... .......... .......... .......... .......... 21% 150M 1s +2024-04-19T21:15:35Z #15 1.836 26900K .......... .......... .......... .......... .......... 21% 122M 1s +2024-04-19T21:15:35Z #15 1.836 26950K .......... .......... .......... .......... .......... 21% 154M 1s +2024-04-19T21:15:35Z #15 1.837 27000K .......... .......... .......... .......... .......... 21% 117M 1s +2024-04-19T21:15:35Z #15 1.837 27050K .......... .......... .......... .......... .......... 21% 131M 1s +2024-04-19T21:15:35Z #15 1.837 27100K .......... .......... .......... .......... .......... 21% 148M 1s +2024-04-19T21:15:35Z #15 1.838 27150K .......... .......... .......... .......... .......... 21% 127M 1s +2024-04-19T21:15:35Z #15 1.838 27200K .......... .......... .......... .......... .......... 21% 150M 1s +2024-04-19T21:15:35Z #15 1.838 27250K .......... .......... .......... .......... .......... 21% 114M 1s +2024-04-19T21:15:35Z #15 1.843 27300K .......... .......... .......... .......... .......... 21% 172M 1s +2024-04-19T21:15:35Z #15 1.843 27350K .......... .......... .......... .......... .......... 21% 138M 1s +2024-04-19T21:15:35Z #15 1.843 27400K .......... .......... .......... .......... .......... 21% 155M 1s +2024-04-19T21:15:35Z #15 1.843 27450K .......... .......... .......... .......... .......... 21% 141M 1s +2024-04-19T21:15:35Z #15 1.843 27500K .......... .......... .......... .......... .......... 21% 154M 1s +2024-04-19T21:15:35Z #15 1.843 27550K .......... .......... .......... .......... .......... 21% 135M 1s +2024-04-19T21:15:35Z #15 1.843 27600K .......... .......... .......... .......... .......... 21% 153M 1s +2024-04-19T21:15:35Z #15 1.843 27650K .......... .......... .......... .......... .......... 21% 137M 1s +2024-04-19T21:15:35Z #15 1.843 27700K .......... .......... .......... .......... .......... 21% 159M 1s +2024-04-19T21:15:35Z #15 1.843 27750K .......... .......... .......... .......... .......... 21% 128M 1s +2024-04-19T21:15:35Z #15 1.843 27800K .......... .......... .......... .......... .......... 21% 148M 1s +2024-04-19T21:15:35Z #15 1.843 27850K .......... .......... .......... .......... .......... 22% 129M 1s +2024-04-19T21:15:35Z #15 1.843 27900K .......... .......... .......... .......... .......... 22% 164M 1s +2024-04-19T21:15:35Z #15 1.843 27950K .......... .......... .......... .......... .......... 22% 133M 1s +2024-04-19T21:15:35Z #15 1.844 28000K .......... .......... .......... .......... .......... 22% 133M 1s +2024-04-19T21:15:35Z #15 1.844 28050K .......... .......... .......... .......... .......... 22% 149M 1s +2024-04-19T21:15:35Z #15 1.844 28100K .......... .......... .......... .......... .......... 22% 139M 1s +2024-04-19T21:15:35Z #15 1.845 28150K .......... .......... .......... .......... .......... 22% 120M 1s +2024-04-19T21:15:35Z #15 1.845 28200K .......... .......... .......... .......... .......... 22% 141M 1s +2024-04-19T21:15:35Z #15 1.845 28250K .......... .......... .......... .......... .......... 22% 144M 1s +2024-04-19T21:15:35Z #15 1.846 28300K .......... .......... .......... .......... .......... 22% 133M 1s +2024-04-19T21:15:35Z #15 1.846 28350K .......... .......... .......... .......... .......... 22% 142M 1s +2024-04-19T21:15:35Z #15 1.846 28400K .......... .......... .......... .......... .......... 22% 119M 1s +2024-04-19T21:15:35Z #15 1.847 28450K .......... .......... .......... .......... .......... 22% 134M 1s +2024-04-19T21:15:35Z #15 1.847 28500K .......... .......... .......... .......... .......... 22% 138M 1s +2024-04-19T21:15:35Z #15 1.848 28550K .......... .......... .......... .......... .......... 22% 147M 1s +2024-04-19T21:15:35Z #15 1.850 28600K .......... .......... .......... .......... .......... 22% 120M 1s +2024-04-19T21:15:35Z #15 1.850 28650K .......... .......... .......... .......... .......... 22% 149M 1s +2024-04-19T21:15:35Z #15 1.850 28700K .......... .......... .......... .......... .......... 22% 147M 1s +2024-04-19T21:15:35Z #15 1.850 28750K .......... .......... .......... .......... .......... 22% 139M 1s +2024-04-19T21:15:35Z #15 1.850 28800K .......... .......... .......... .......... .......... 22% 125M 1s +2024-04-19T21:15:35Z #15 1.850 28850K .......... .......... .......... .......... .......... 22% 152M 1s +2024-04-19T21:15:35Z #15 1.850 28900K .......... .......... .......... .......... .......... 22% 143M 1s +2024-04-19T21:15:35Z #15 1.850 28950K .......... .......... .......... .......... .......... 22% 139M 1s +2024-04-19T21:15:35Z #15 1.851 29000K .......... .......... .......... .......... .......... 22% 14.5M 1s +2024-04-19T21:15:35Z #15 1.854 29050K .......... .......... .......... .......... .......... 22% 154M 1s +2024-04-19T21:15:35Z #15 1.854 29100K .......... .......... .......... .......... .......... 22% 145M 1s +2024-04-19T21:15:35Z #15 1.855 29150K .......... .......... .......... .......... .......... 23% 117M 1s +2024-04-19T21:15:35Z #15 1.855 29200K .......... .......... .......... .......... .......... 23% 133M 1s +2024-04-19T21:15:35Z #15 1.855 29250K .......... .......... .......... .......... .......... 23% 150M 1s +2024-04-19T21:15:35Z #15 1.856 29300K .......... .......... .......... .......... .......... 23% 147M 1s +2024-04-19T21:15:35Z #15 1.856 29350K .......... .......... .......... .......... .......... 23% 117M 1s +2024-04-19T21:15:35Z #15 1.857 29400K .......... .......... .......... .......... .......... 23% 123M 1s +2024-04-19T21:15:35Z #15 1.857 29450K .......... .......... .......... .......... .......... 23% 124M 1s +2024-04-19T21:15:35Z #15 1.857 29500K .......... .......... .......... .......... .......... 23% 129M 1s +2024-04-19T21:15:35Z #15 1.858 29550K .......... .......... .......... .......... .......... 23% 139M 1s +2024-04-19T21:15:35Z #15 1.858 29600K .......... .......... .......... .......... .......... 23% 122M 1s +2024-04-19T21:15:35Z #15 1.859 29650K .......... .......... .......... .......... .......... 23% 117M 1s +2024-04-19T21:15:35Z #15 1.860 29700K .......... .......... .......... .......... .......... 23% 111M 1s +2024-04-19T21:15:35Z #15 1.860 29750K .......... .......... .......... .......... .......... 23% 141M 1s +2024-04-19T21:15:35Z #15 1.860 29800K .......... .......... .......... .......... .......... 23% 159M 1s +2024-04-19T21:15:35Z #15 1.860 29850K .......... .......... .......... .......... .......... 23% 152M 1s +2024-04-19T21:15:35Z #15 1.860 29900K .......... .......... .......... .......... .......... 23% 121M 1s +2024-04-19T21:15:35Z #15 1.861 29950K .......... .......... .......... .......... .......... 23% 116M 1s +2024-04-19T21:15:35Z #15 1.861 30000K .......... .......... .......... .......... .......... 23% 107M 1s +2024-04-19T21:15:35Z #15 1.862 30050K .......... .......... .......... .......... .......... 23% 120M 1s +2024-04-19T21:15:35Z #15 1.862 30100K .......... .......... .......... .......... .......... 23% 117M 1s +2024-04-19T21:15:35Z #15 1.863 30150K .......... .......... .......... .......... .......... 23% 100M 1s +2024-04-19T21:15:35Z #15 1.863 30200K .......... .......... .......... .......... .......... 23% 98.2M 1s +2024-04-19T21:15:35Z #15 1.864 30250K .......... .......... .......... .......... .......... 23% 124M 1s +2024-04-19T21:15:35Z #15 1.864 30300K .......... .......... .......... .......... .......... 23% 128M 1s +2024-04-19T21:15:35Z #15 1.864 30350K .......... .......... .......... .......... .......... 23% 98.9M 1s +2024-04-19T21:15:35Z #15 1.865 30400K .......... .......... .......... .......... .......... 24% 129M 1s +2024-04-19T21:15:35Z #15 1.865 30450K .......... .......... .......... .......... .......... 24% 114M 1s +2024-04-19T21:15:35Z #15 1.866 30500K .......... .......... .......... .......... .......... 24% 130M 1s +2024-04-19T21:15:35Z #15 1.866 30550K .......... .......... .......... .......... .......... 24% 108M 1s +2024-04-19T21:15:35Z #15 1.866 30600K .......... .......... .......... .......... .......... 24% 118M 1s +2024-04-19T21:15:35Z #15 1.867 30650K .......... .......... .......... .......... .......... 24% 112M 1s +2024-04-19T21:15:35Z #15 1.867 30700K .......... .......... .......... .......... .......... 24% 12.8M 1s +2024-04-19T21:15:35Z #15 1.871 30750K .......... .......... .......... .......... .......... 24% 123M 1s +2024-04-19T21:15:35Z #15 1.871 30800K .......... .......... .......... .......... .......... 24% 98.8M 1s +2024-04-19T21:15:35Z #15 1.872 30850K .......... .......... .......... .......... .......... 24% 149M 1s +2024-04-19T21:15:35Z #15 1.872 30900K .......... .......... .......... .......... .......... 24% 124M 1s +2024-04-19T21:15:35Z #15 1.873 30950K .......... .......... .......... .......... .......... 24% 133M 1s +2024-04-19T21:15:35Z #15 1.873 31000K .......... .......... .......... .......... .......... 24% 107M 1s +2024-04-19T21:15:35Z #15 1.873 31050K .......... .......... .......... .......... .......... 24% 131M 1s +2024-04-19T21:15:35Z #15 1.874 31100K .......... .......... .......... .......... .......... 24% 119M 1s +2024-04-19T21:15:35Z #15 1.874 31150K .......... .......... .......... .......... .......... 24% 128M 1s +2024-04-19T21:15:35Z #15 1.876 31200K .......... .......... .......... .......... .......... 24% 111M 1s +2024-04-19T21:15:35Z #15 1.876 31250K .......... .......... .......... .......... .......... 24% 133M 1s +2024-04-19T21:15:35Z #15 1.876 31300K .......... .......... .......... .......... .......... 24% 119M 1s +2024-04-19T21:15:35Z #15 1.876 31350K .......... .......... .......... .......... .......... 24% 118M 1s +2024-04-19T21:15:35Z #15 1.878 31400K .......... .......... .......... .......... .......... 24% 118M 1s +2024-04-19T21:15:35Z #15 1.878 31450K .......... .......... .......... .......... .......... 24% 125M 1s +2024-04-19T21:15:35Z #15 1.879 31500K .......... .......... .......... .......... .......... 24% 22.0M 1s +2024-04-19T21:15:35Z #15 1.879 31550K .......... .......... .......... .......... .......... 24% 121M 1s +2024-04-19T21:15:35Z #15 1.880 31600K .......... .......... .......... .......... .......... 24% 116M 1s +2024-04-19T21:15:35Z #15 1.880 31650K .......... .......... .......... .......... .......... 25% 115M 1s +2024-04-19T21:15:35Z #15 1.881 31700K .......... .......... .......... .......... .......... 25% 105M 1s +2024-04-19T21:15:35Z #15 1.881 31750K .......... .......... .......... .......... .......... 25% 102M 1s +2024-04-19T21:15:35Z #15 1.881 31800K .......... .......... .......... .......... .......... 25% 123M 1s +2024-04-19T21:15:35Z #15 1.882 31850K .......... .......... .......... .......... .......... 25% 119M 1s +2024-04-19T21:15:35Z #15 1.882 31900K .......... .......... .......... .......... .......... 25% 123M 1s +2024-04-19T21:15:35Z #15 1.883 31950K .......... .......... .......... .......... .......... 25% 106M 1s +2024-04-19T21:15:35Z #15 1.883 32000K .......... .......... .......... .......... .......... 25% 124M 1s +2024-04-19T21:15:35Z #15 1.883 32050K .......... .......... .......... .......... .......... 25% 127M 1s +2024-04-19T21:15:35Z #15 1.884 32100K .......... .......... .......... .......... .......... 25% 108M 1s +2024-04-19T21:15:35Z #15 1.884 32150K .......... .......... .......... .......... .......... 25% 115M 1s +2024-04-19T21:15:35Z #15 1.885 32200K .......... .......... .......... .......... .......... 25% 131M 1s +2024-04-19T21:15:35Z #15 1.885 32250K .......... .......... .......... .......... .......... 25% 122M 1s +2024-04-19T21:15:35Z #15 1.885 32300K .......... .......... .......... .......... .......... 25% 99.4M 1s +2024-04-19T21:15:35Z #15 1.886 32350K .......... .......... .......... .......... .......... 25% 157M 1s +2024-04-19T21:15:35Z #15 1.886 32400K .......... .......... .......... .......... .......... 25% 127M 1s +2024-04-19T21:15:35Z #15 1.887 32450K .......... .......... .......... .......... .......... 25% 10.8M 1s +2024-04-19T21:15:35Z #15 1.891 32500K .......... .......... .......... .......... .......... 25% 116M 1s +2024-04-19T21:15:35Z #15 1.892 32550K .......... .......... .......... .......... .......... 25% 140M 1s +2024-04-19T21:15:35Z #15 1.892 32600K .......... .......... .......... .......... .......... 25% 129M 1s +2024-04-19T21:15:35Z #15 1.893 32650K .......... .......... .......... .......... .......... 25% 121M 1s +2024-04-19T21:15:35Z #15 1.894 32700K .......... .......... .......... .......... .......... 25% 113M 1s +2024-04-19T21:15:35Z #15 1.894 32750K .......... .......... .......... .......... .......... 25% 139M 1s +2024-04-19T21:15:35Z #15 1.894 32800K .......... .......... .......... .......... .......... 25% 121M 1s +2024-04-19T21:15:35Z #15 1.894 32850K .......... .......... .......... .......... .......... 25% 108M 1s +2024-04-19T21:15:35Z #15 1.894 32900K .......... .......... .......... .......... .......... 25% 11.1M 1s +2024-04-19T21:15:35Z #15 1.899 32950K .......... .......... .......... .......... .......... 26% 106M 1s +2024-04-19T21:15:35Z #15 1.900 33000K .......... .......... .......... .......... .......... 26% 111M 1s +2024-04-19T21:15:35Z #15 1.900 33050K .......... .......... .......... .......... .......... 26% 119M 1s +2024-04-19T21:15:35Z #15 1.901 33100K .......... .......... .......... .......... .......... 26% 141M 1s +2024-04-19T21:15:35Z #15 1.901 33150K .......... .......... .......... .......... .......... 26% 107M 1s +2024-04-19T21:15:35Z #15 1.901 33200K .......... .......... .......... .......... .......... 26% 119M 1s +2024-04-19T21:15:35Z #15 1.901 33250K .......... .......... .......... .......... .......... 26% 119M 1s +2024-04-19T21:15:35Z #15 1.902 33300K .......... .......... .......... .......... .......... 26% 105M 1s +2024-04-19T21:15:35Z #15 1.902 33350K .......... .......... .......... .......... .......... 26% 113M 1s +2024-04-19T21:15:35Z #15 1.903 33400K .......... .......... .......... .......... .......... 26% 112M 1s +2024-04-19T21:15:35Z #15 1.903 33450K .......... .......... .......... .......... .......... 26% 134M 1s +2024-04-19T21:15:35Z #15 1.904 33500K .......... .......... .......... .......... .......... 26% 65.8M 1s +2024-04-19T21:15:35Z #15 1.904 33550K .......... .......... .......... .......... .......... 26% 152M 1s +2024-04-19T21:15:35Z #15 1.904 33600K .......... .......... .......... .......... .......... 26% 126M 1s +2024-04-19T21:15:35Z #15 1.905 33650K .......... .......... .......... .......... .......... 26% 153M 1s +2024-04-19T21:15:35Z #15 1.907 33700K .......... .......... .......... .......... .......... 26% 134M 1s +2024-04-19T21:15:35Z #15 1.907 33750K .......... .......... .......... .......... .......... 26% 126M 1s +2024-04-19T21:15:35Z #15 1.907 33800K .......... .......... .......... .......... .......... 26% 145M 1s +2024-04-19T21:15:35Z #15 1.907 33850K .......... .......... .......... .......... .......... 26% 151M 1s +2024-04-19T21:15:35Z #15 1.907 33900K .......... .......... .......... .......... .......... 26% 106M 1s +2024-04-19T21:15:35Z #15 1.907 33950K .......... .......... .......... .......... .......... 26% 154M 1s +2024-04-19T21:15:35Z #15 1.907 34000K .......... .......... .......... .......... .......... 26% 142M 1s +2024-04-19T21:15:35Z #15 1.908 34050K .......... .......... .......... .......... .......... 26% 159M 1s +2024-04-19T21:15:35Z #15 1.909 34100K .......... .......... .......... .......... .......... 26% 167M 1s +2024-04-19T21:15:35Z #15 1.909 34150K .......... .......... .......... .......... .......... 26% 140M 1s +2024-04-19T21:15:35Z #15 1.909 34200K .......... .......... .......... .......... .......... 27% 134M 1s +2024-04-19T21:15:35Z #15 1.909 34250K .......... .......... .......... .......... .......... 27% 139M 1s +2024-04-19T21:15:35Z #15 1.909 34300K .......... .......... .......... .......... .......... 27% 163M 1s +2024-04-19T21:15:35Z #15 1.910 34350K .......... .......... .......... .......... .......... 27% 163M 1s +2024-04-19T21:15:35Z #15 1.910 34400K .......... .......... .......... .......... .......... 27% 143M 1s +2024-04-19T21:15:35Z #15 1.910 34450K .......... .......... .......... .......... .......... 27% 161M 1s +2024-04-19T21:15:35Z #15 1.911 34500K .......... .......... .......... .......... .......... 27% 11.1M 1s +2024-04-19T21:15:35Z #15 1.915 34550K .......... .......... .......... .......... .......... 27% 155M 1s +2024-04-19T21:15:35Z #15 1.915 34600K .......... .......... .......... .......... .......... 27% 135M 1s +2024-04-19T21:15:35Z #15 1.916 34650K .......... .......... .......... .......... .......... 27% 168M 1s +2024-04-19T21:15:35Z #15 1.917 34700K .......... .......... .......... .......... .......... 27% 749K 1s +2024-04-19T21:15:35Z #15 1.984 34750K .......... .......... .......... .......... .......... 27% 56.4M 1s +2024-04-19T21:15:35Z #15 1.984 34800K .......... .......... .......... .......... .......... 27% 52.0M 1s +2024-04-19T21:15:35Z #15 1.985 34850K .......... .......... .......... .......... .......... 27% 44.4M 1s +2024-04-19T21:15:35Z #15 1.986 34900K .......... .......... .......... .......... .......... 27% 52.4M 1s +2024-04-19T21:15:35Z #15 1.987 34950K .......... .......... .......... .......... .......... 27% 52.8M 1s +2024-04-19T21:15:35Z #15 1.988 35000K .......... .......... .......... .......... .......... 27% 56.3M 1s +2024-04-19T21:15:35Z #15 1.990 35050K .......... .......... .......... .......... .......... 27% 43.7M 1s +2024-04-19T21:15:35Z #15 1.990 35100K .......... .......... .......... .......... .......... 27% 60.1M 1s +2024-04-19T21:15:35Z #15 1.990 35150K .......... .......... .......... .......... .......... 27% 139M 1s +2024-04-19T21:15:35Z #15 1.991 35200K .......... .......... .......... .......... .......... 27% 135M 1s +2024-04-19T21:15:35Z #15 1.991 35250K .......... .......... .......... .......... .......... 27% 150M 1s +2024-04-19T21:15:35Z #15 1.991 35300K .......... .......... .......... .......... .......... 27% 130M 1s +2024-04-19T21:15:35Z #15 1.992 35350K .......... .......... .......... .......... .......... 27% 153M 1s +2024-04-19T21:15:35Z #15 1.992 35400K .......... .......... .......... .......... .......... 27% 133M 1s +2024-04-19T21:15:35Z #15 1.992 35450K .......... .......... .......... .......... .......... 28% 157M 1s +2024-04-19T21:15:35Z #15 1.993 35500K .......... .......... .......... .......... .......... 28% 138M 1s +2024-04-19T21:15:35Z #15 1.993 35550K .......... .......... .......... .......... .......... 28% 132M 1s +2024-04-19T21:15:35Z #15 1.993 35600K .......... .......... .......... .......... .......... 28% 138M 1s +2024-04-19T21:15:35Z #15 1.994 35650K .......... .......... .......... .......... .......... 28% 144M 1s +2024-04-19T21:15:35Z #15 1.995 35700K .......... .......... .......... .......... .......... 28% 126M 1s +2024-04-19T21:15:35Z #15 1.995 35750K .......... .......... .......... .......... .......... 28% 10.4M 1s +2024-04-19T21:15:35Z #15 1.999 35800K .......... .......... .......... .......... .......... 28% 98.1M 1s +2024-04-19T21:15:35Z #15 2.001 35850K .......... .......... .......... .......... .......... 28% 147M 1s +2024-04-19T21:15:35Z #15 2.001 35900K .......... .......... .......... .......... .......... 28% 158M 1s +2024-04-19T21:15:35Z #15 2.001 35950K .......... .......... .......... .......... .......... 28% 149M 1s +2024-04-19T21:15:35Z #15 2.001 36000K .......... .......... .......... .......... .......... 28% 120M 1s +2024-04-19T21:15:35Z #15 2.001 36050K .......... .......... .......... .......... .......... 28% 144M 1s +2024-04-19T21:15:35Z #15 2.002 36100K .......... .......... .......... .......... .......... 28% 149M 1s +2024-04-19T21:15:35Z #15 2.002 36150K .......... .......... .......... .......... .......... 28% 130M 1s +2024-04-19T21:15:35Z #15 2.003 36200K .......... .......... .......... .......... .......... 28% 141M 1s +2024-04-19T21:15:35Z #15 2.003 36250K .......... .......... .......... .......... .......... 28% 10.9M 1s +2024-04-19T21:15:35Z #15 2.007 36300K .......... .......... .......... .......... .......... 28% 141M 1s +2024-04-19T21:15:35Z #15 2.008 36350K .......... .......... .......... .......... .......... 28% 156M 1s +2024-04-19T21:15:35Z #15 2.008 36400K .......... .......... .......... .......... .......... 28% 150M 1s +2024-04-19T21:15:35Z #15 2.008 36450K .......... .......... .......... .......... .......... 28% 124M 1s +2024-04-19T21:15:35Z #15 2.008 36500K .......... .......... .......... .......... .......... 28% 162M 1s +2024-04-19T21:15:35Z #15 2.009 36550K .......... .......... .......... .......... .......... 28% 141M 1s +2024-04-19T21:15:35Z #15 2.010 36600K .......... .......... .......... .......... .......... 28% 110M 1s +2024-04-19T21:15:35Z #15 2.010 36650K .......... .......... .......... .......... .......... 28% 149M 1s +2024-04-19T21:15:35Z #15 2.010 36700K .......... .......... .......... .......... .......... 28% 146M 1s +2024-04-19T21:15:35Z #15 2.010 36750K .......... .......... .......... .......... .......... 29% 140M 1s +2024-04-19T21:15:35Z #15 2.011 36800K .......... .......... .......... .......... .......... 29% 11.7M 1s +2024-04-19T21:15:35Z #15 2.015 36850K .......... .......... .......... .......... .......... 29% 104M 1s +2024-04-19T21:15:35Z #15 2.015 36900K .......... .......... .......... .......... .......... 29% 119M 1s +2024-04-19T21:15:35Z #15 2.015 36950K .......... .......... .......... .......... .......... 29% 156M 1s +2024-04-19T21:15:35Z #15 2.016 37000K .......... .......... .......... .......... .......... 29% 157M 1s +2024-04-19T21:15:35Z #15 2.016 37050K .......... .......... .......... .......... .......... 29% 137M 1s +2024-04-19T21:15:35Z #15 2.016 37100K .......... .......... .......... .......... .......... 29% 154M 1s +2024-04-19T21:15:35Z #15 2.017 37150K .......... .......... .......... .......... .......... 29% 152M 1s +2024-04-19T21:15:35Z #15 2.017 37200K .......... .......... .......... .......... .......... 29% 118M 1s +2024-04-19T21:15:35Z #15 2.018 37250K .......... .......... .......... .......... .......... 29% 142M 1s +2024-04-19T21:15:35Z #15 2.018 37300K .......... .......... .......... .......... .......... 29% 162M 1s +2024-04-19T21:15:35Z #15 2.018 37350K .......... .......... .......... .......... .......... 29% 137M 1s +2024-04-19T21:15:35Z #15 2.019 37400K .......... .......... .......... .......... .......... 29% 121M 1s +2024-04-19T21:15:35Z #15 2.019 37450K .......... .......... .......... .......... .......... 29% 127M 1s +2024-04-19T21:15:35Z #15 2.021 37500K .......... .......... .......... .......... .......... 29% 172M 1s +2024-04-19T21:15:35Z #15 2.021 37550K .......... .......... .......... .......... .......... 29% 129M 1s +2024-04-19T21:15:35Z #15 2.021 37600K .......... .......... .......... .......... .......... 29% 154M 1s +2024-04-19T21:15:35Z #15 2.021 37650K .......... .......... .......... .......... .......... 29% 124M 1s +2024-04-19T21:15:35Z #15 2.021 37700K .......... .......... .......... .......... .......... 29% 149M 1s +2024-04-19T21:15:35Z #15 2.021 37750K .......... .......... .......... .......... .......... 29% 152M 1s +2024-04-19T21:15:35Z #15 2.022 37800K .......... .......... .......... .......... .......... 29% 149M 1s +2024-04-19T21:15:35Z #15 2.022 37850K .......... .......... .......... .......... .......... 29% 130M 1s +2024-04-19T21:15:35Z #15 2.022 37900K .......... .......... .......... .......... .......... 29% 121M 1s +2024-04-19T21:15:35Z #15 2.022 37950K .......... .......... .......... .......... .......... 29% 27.9M 1s +2024-04-19T21:15:35Z #15 2.031 38000K .......... .......... .......... .......... .......... 30% 158M 1s +2024-04-19T21:15:35Z #15 2.031 38050K .......... .......... .......... .......... .......... 30% 147M 1s +2024-04-19T21:15:35Z #15 2.031 38100K .......... .......... .......... .......... .......... 30% 81.4M 1s +2024-04-19T21:15:35Z #15 2.031 38150K .......... .......... .......... .......... .......... 30% 122M 1s +2024-04-19T21:15:35Z #15 2.031 38200K .......... .......... .......... .......... .......... 30% 126M 1s +2024-04-19T21:15:35Z #15 2.031 38250K .......... .......... .......... .......... .......... 30% 71.0M 1s +2024-04-19T21:15:35Z #15 2.031 38300K .......... .......... .......... .......... .......... 30% 128M 1s +2024-04-19T21:15:35Z #15 2.031 38350K .......... .......... .......... .......... .......... 30% 136M 1s +2024-04-19T21:15:35Z #15 2.031 38400K .......... .......... .......... .......... .......... 30% 103M 1s +2024-04-19T21:15:35Z #15 2.031 38450K .......... .......... .......... .......... .......... 30% 168M 1s +2024-04-19T21:15:35Z #15 2.031 38500K .......... .......... .......... .......... .......... 30% 136M 1s +2024-04-19T21:15:35Z #15 2.031 38550K .......... .......... .......... .......... .......... 30% 84.9M 1s +2024-04-19T21:15:35Z #15 2.031 38600K .......... .......... .......... .......... .......... 30% 149M 1s +2024-04-19T21:15:35Z #15 2.031 38650K .......... .......... .......... .......... .......... 30% 83.2M 1s +2024-04-19T21:15:35Z #15 2.031 38700K .......... .......... .......... .......... .......... 30% 152M 1s +2024-04-19T21:15:35Z #15 2.031 38750K .......... .......... .......... .......... .......... 30% 17.1M 1s +2024-04-19T21:15:35Z #15 2.037 38800K .......... .......... .......... .......... .......... 30% 142M 1s +2024-04-19T21:15:35Z #15 2.037 38850K .......... .......... .......... .......... .......... 30% 147M 1s +2024-04-19T21:15:35Z #15 2.037 38900K .......... .......... .......... .......... .......... 30% 93.2M 1s +2024-04-19T21:15:35Z #15 2.037 38950K .......... .......... .......... .......... .......... 30% 102M 1s +2024-04-19T21:15:35Z #15 2.037 39000K .......... .......... .......... .......... .......... 30% 111M 1s +2024-04-19T21:15:35Z #15 2.037 39050K .......... .......... .......... .......... .......... 30% 136M 1s +2024-04-19T21:15:35Z #15 2.037 39100K .......... .......... .......... .......... .......... 30% 100M 1s +2024-04-19T21:15:35Z #15 2.037 39150K .......... .......... .......... .......... .......... 30% 60.9M 1s +2024-04-19T21:15:35Z #15 2.037 39200K .......... .......... .......... .......... .......... 30% 33.5M 1s +2024-04-19T21:15:35Z #15 2.043 39250K .......... .......... .......... .......... .......... 30% 63.3M 1s +2024-04-19T21:15:35Z #15 2.043 39300K .......... .......... .......... .......... .......... 31% 103M 1s +2024-04-19T21:15:35Z #15 2.043 39350K .......... .......... .......... .......... .......... 31% 106M 1s +2024-04-19T21:15:35Z #15 2.043 39400K .......... .......... .......... .......... .......... 31% 82.9M 1s +2024-04-19T21:15:35Z #15 2.043 39450K .......... .......... .......... .......... .......... 31% 73.1M 1s +2024-04-19T21:15:35Z #15 2.043 39500K .......... .......... .......... .......... .......... 31% 127M 1s +2024-04-19T21:15:35Z #15 2.043 39550K .......... .......... .......... .......... .......... 31% 122M 1s +2024-04-19T21:15:35Z #15 2.043 39600K .......... .......... .......... .......... .......... 31% 43.1M 1s +2024-04-19T21:15:35Z #15 2.044 39650K .......... .......... .......... .......... .......... 31% 34.9M 1s +2024-04-19T21:15:35Z #15 2.047 39700K .......... .......... .......... .......... .......... 31% 125M 1s +2024-04-19T21:15:35Z #15 2.047 39750K .......... .......... .......... .......... .......... 31% 123M 1s +2024-04-19T21:15:35Z #15 2.047 39800K .......... .......... .......... .......... .......... 31% 72.9M 1s +2024-04-19T21:15:35Z #15 2.047 39850K .......... .......... .......... .......... .......... 31% 67.2M 1s +2024-04-19T21:15:35Z #15 2.051 39900K .......... .......... .......... .......... .......... 31% 115M 1s +2024-04-19T21:15:35Z #15 2.051 39950K .......... .......... .......... .......... .......... 31% 80.9M 1s +2024-04-19T21:15:35Z #15 2.051 40000K .......... .......... .......... .......... .......... 31% 106M 1s +2024-04-19T21:15:35Z #15 2.051 40050K .......... .......... .......... .......... .......... 31% 130M 1s +2024-04-19T21:15:35Z #15 2.051 40100K .......... .......... .......... .......... .......... 31% 104M 1s +2024-04-19T21:15:35Z #15 2.051 40150K .......... .......... .......... .......... .......... 31% 129M 1s +2024-04-19T21:15:35Z #15 2.051 40200K .......... .......... .......... .......... .......... 31% 43.2M 1s +2024-04-19T21:15:35Z #15 2.051 40250K .......... .......... .......... .......... .......... 31% 38.6M 1s +2024-04-19T21:15:35Z #15 2.055 40300K .......... .......... .......... .......... .......... 31% 99.7M 1s +2024-04-19T21:15:35Z #15 2.055 40350K .......... .......... .......... .......... .......... 31% 122M 1s +2024-04-19T21:15:35Z #15 2.055 40400K .......... .......... .......... .......... .......... 31% 71.2M 1s +2024-04-19T21:15:35Z #15 2.055 40450K .......... .......... .......... .......... .......... 31% 89.9M 1s +2024-04-19T21:15:35Z #15 2.055 40500K .......... .......... .......... .......... .......... 31% 87.4M 1s +2024-04-19T21:15:35Z #15 2.055 40550K .......... .......... .......... .......... .......... 32% 130M 1s +2024-04-19T21:15:35Z #15 2.055 40600K .......... .......... .......... .......... .......... 32% 76.9M 1s +2024-04-19T21:15:35Z #15 2.056 40650K .......... .......... .......... .......... .......... 32% 111M 1s +2024-04-19T21:15:35Z #15 2.056 40700K .......... .......... .......... .......... .......... 32% 118M 1s +2024-04-19T21:15:35Z #15 2.057 40750K .......... .......... .......... .......... .......... 32% 71.4M 1s +2024-04-19T21:15:35Z #15 2.057 40800K .......... .......... .......... .......... .......... 32% 126M 1s +2024-04-19T21:15:35Z #15 2.058 40850K .......... .......... .......... .......... .......... 32% 143M 1s +2024-04-19T21:15:35Z #15 2.058 40900K .......... .......... .......... .......... .......... 32% 61.7M 1s +2024-04-19T21:15:35Z #15 2.063 40950K .......... .......... .......... .......... .......... 32% 111M 1s +2024-04-19T21:15:35Z #15 2.063 41000K .......... .......... .......... .......... .......... 32% 116M 1s +2024-04-19T21:15:35Z #15 2.063 41050K .......... .......... .......... .......... .......... 32% 117M 1s +2024-04-19T21:15:35Z #15 2.063 41100K .......... .......... .......... .......... .......... 32% 65.0M 1s +2024-04-19T21:15:35Z #15 2.063 41150K .......... .......... .......... .......... .......... 32% 119M 1s +2024-04-19T21:15:35Z #15 2.063 41200K .......... .......... .......... .......... .......... 32% 118M 1s +2024-04-19T21:15:35Z #15 2.063 41250K .......... .......... .......... .......... .......... 32% 66.4M 1s +2024-04-19T21:15:35Z #15 2.063 41300K .......... .......... .......... .......... .......... 32% 55.0M 1s +2024-04-19T21:15:35Z #15 2.067 41350K .......... .......... .......... .......... .......... 32% 123M 1s +2024-04-19T21:15:35Z #15 2.067 41400K .......... .......... .......... .......... .......... 32% 116M 1s +2024-04-19T21:15:35Z #15 2.067 41450K .......... .......... .......... .......... .......... 32% 56.7M 1s +2024-04-19T21:15:35Z #15 2.067 41500K .......... .......... .......... .......... .......... 32% 144M 1s +2024-04-19T21:15:35Z #15 2.067 41550K .......... .......... .......... .......... .......... 32% 121M 1s +2024-04-19T21:15:35Z #15 2.067 41600K .......... .......... .......... .......... .......... 32% 76.1M 1s +2024-04-19T21:15:35Z #15 2.067 41650K .......... .......... .......... .......... .......... 32% 77.5M 1s +2024-04-19T21:15:35Z #15 2.071 41700K .......... .......... .......... .......... .......... 32% 113M 1s +2024-04-19T21:15:35Z #15 2.071 41750K .......... .......... .......... .......... .......... 32% 63.2M 1s +2024-04-19T21:15:35Z #15 2.071 41800K .......... .......... .......... .......... .......... 33% 110M 1s +2024-04-19T21:15:35Z #15 2.071 41850K .......... .......... .......... .......... .......... 33% 136M 1s +2024-04-19T21:15:35Z #15 2.071 41900K .......... .......... .......... .......... .......... 33% 69.8M 1s +2024-04-19T21:15:35Z #15 2.071 41950K .......... .......... .......... .......... .......... 33% 146M 1s +2024-04-19T21:15:35Z #15 2.071 42000K .......... .......... .......... .......... .......... 33% 113M 1s +2024-04-19T21:15:35Z #15 2.071 42050K .......... .......... .......... .......... .......... 33% 56.1M 1s +2024-04-19T21:15:35Z #15 2.072 42100K .......... .......... .......... .......... .......... 33% 109M 1s +2024-04-19T21:15:35Z #15 2.072 42150K .......... .......... .......... .......... .......... 33% 83.5M 1s +2024-04-19T21:15:35Z #15 2.073 42200K .......... .......... .......... .......... .......... 33% 58.6M 1s +2024-04-19T21:15:35Z #15 2.079 42250K .......... .......... .......... .......... .......... 33% 147M 1s +2024-04-19T21:15:35Z #15 2.079 42300K .......... .......... .......... .......... .......... 33% 136M 1s +2024-04-19T21:15:35Z #15 2.079 42350K .......... .......... .......... .......... .......... 33% 61.3M 1s +2024-04-19T21:15:35Z #15 2.079 42400K .......... .......... .......... .......... .......... 33% 101M 1s +2024-04-19T21:15:35Z #15 2.079 42450K .......... .......... .......... .......... .......... 33% 120M 1s +2024-04-19T21:15:35Z #15 2.079 42500K .......... .......... .......... .......... .......... 33% 89.3M 1s +2024-04-19T21:15:35Z #15 2.079 42550K .......... .......... .......... .......... .......... 33% 121M 1s +2024-04-19T21:15:35Z #15 2.079 42600K .......... .......... .......... .......... .......... 33% 73.2M 1s +2024-04-19T21:15:35Z #15 2.079 42650K .......... .......... .......... .......... .......... 33% 105M 1s +2024-04-19T21:15:35Z #15 2.079 42700K .......... .......... .......... .......... .......... 33% 122M 1s +2024-04-19T21:15:35Z #15 2.079 42750K .......... .......... .......... .......... .......... 33% 48.3M 1s +2024-04-19T21:15:35Z #15 2.083 42800K .......... .......... .......... .......... .......... 33% 147M 1s +2024-04-19T21:15:35Z #15 2.083 42850K .......... .......... .......... .......... .......... 33% 123M 1s +2024-04-19T21:15:35Z #15 2.083 42900K .......... .......... .......... .......... .......... 33% 76.6M 1s +2024-04-19T21:15:35Z #15 2.083 42950K .......... .......... .......... .......... .......... 33% 105M 1s +2024-04-19T21:15:35Z #15 2.083 43000K .......... .......... .......... .......... .......... 33% 109M 1s +2024-04-19T21:15:35Z #15 2.083 43050K .......... .......... .......... .......... .......... 33% 59.2M 1s +2024-04-19T21:15:35Z #15 2.083 43100K .......... .......... .......... .......... .......... 34% 74.7M 1s +2024-04-19T21:15:35Z #15 2.083 43150K .......... .......... .......... .......... .......... 34% 91.0M 1s +2024-04-19T21:15:35Z #15 2.084 43200K .......... .......... .......... .......... .......... 34% 130M 1s +2024-04-19T21:15:35Z #15 2.084 43250K .......... .......... .......... .......... .......... 34% 80.5M 1s +2024-04-19T21:15:35Z #15 2.085 43300K .......... .......... .......... .......... .......... 34% 120M 1s +2024-04-19T21:15:35Z #15 2.085 43350K .......... .......... .......... .......... .......... 34% 82.3M 1s +2024-04-19T21:15:35Z #15 2.086 43400K .......... .......... .......... .......... .......... 34% 98.9M 1s +2024-04-19T21:15:35Z #15 2.086 43450K .......... .......... .......... .......... .......... 34% 149M 1s +2024-04-19T21:15:35Z #15 2.087 43500K .......... .......... .......... .......... .......... 34% 151M 1s +2024-04-19T21:15:35Z #15 2.087 43550K .......... .......... .......... .......... .......... 34% 78.2M 1s +2024-04-19T21:15:35Z #15 2.090 43600K .......... .......... .......... .......... .......... 34% 131M 1s +2024-04-19T21:15:35Z #15 2.090 43650K .......... .......... .......... .......... .......... 34% 95.4M 1s +2024-04-19T21:15:35Z #15 2.090 43700K .......... .......... .......... .......... .......... 34% 155M 1s +2024-04-19T21:15:35Z #15 2.090 43750K .......... .......... .......... .......... .......... 34% 167M 1s +2024-04-19T21:15:35Z #15 2.090 43800K .......... .......... .......... .......... .......... 34% 72.6M 1s +2024-04-19T21:15:35Z #15 2.090 43850K .......... .......... .......... .......... .......... 34% 129M 1s +2024-04-19T21:15:35Z #15 2.090 43900K .......... .......... .......... .......... .......... 34% 149M 1s +2024-04-19T21:15:35Z #15 2.090 43950K .......... .......... .......... .......... .......... 34% 65.8M 1s +2024-04-19T21:15:35Z #15 2.095 44000K .......... .......... .......... .......... .......... 34% 106M 1s +2024-04-19T21:15:35Z #15 2.095 44050K .......... .......... .......... .......... .......... 34% 157M 1s +2024-04-19T21:15:35Z #15 2.095 44100K .......... .......... .......... .......... .......... 34% 124M 1s +2024-04-19T21:15:35Z #15 2.095 44150K .......... .......... .......... .......... .......... 34% 67.2M 1s +2024-04-19T21:15:35Z #15 2.095 44200K .......... .......... .......... .......... .......... 34% 79.2M 1s +2024-04-19T21:15:35Z #15 2.095 44250K .......... .......... .......... .......... .......... 34% 118M 1s +2024-04-19T21:15:35Z #15 2.095 44300K .......... .......... .......... .......... .......... 34% 65.8M 1s +2024-04-19T21:15:35Z #15 2.095 44350K .......... .......... .......... .......... .......... 35% 65.0M 1s +2024-04-19T21:15:35Z #15 2.095 44400K .......... .......... .......... .......... .......... 35% 143M 1s +2024-04-19T21:15:35Z #15 2.096 44450K .......... .......... .......... .......... .......... 35% 61.9M 1s +2024-04-19T21:15:35Z #15 2.096 44500K .......... .......... .......... .......... .......... 35% 92.8M 1s +2024-04-19T21:15:35Z #15 2.097 44550K .......... .......... .......... .......... .......... 35% 128M 1s +2024-04-19T21:15:35Z #15 2.097 44600K .......... .......... .......... .......... .......... 35% 139M 1s +2024-04-19T21:15:35Z #15 2.098 44650K .......... .......... .......... .......... .......... 35% 66.2M 1s +2024-04-19T21:15:35Z #15 2.098 44700K .......... .......... .......... .......... .......... 35% 105M 1s +2024-04-19T21:15:35Z #15 2.099 44750K .......... .......... .......... .......... .......... 35% 141M 1s +2024-04-19T21:15:35Z #15 2.099 44800K .......... .......... .......... .......... .......... 35% 141M 1s +2024-04-19T21:15:35Z #15 2.100 44850K .......... .......... .......... .......... .......... 35% 77.6M 1s +2024-04-19T21:15:35Z #15 2.100 44900K .......... .......... .......... .......... .......... 35% 104M 1s +2024-04-19T21:15:35Z #15 2.101 44950K .......... .......... .......... .......... .......... 35% 151M 1s +2024-04-19T21:15:35Z #15 2.101 45000K .......... .......... .......... .......... .......... 35% 136M 1s +2024-04-19T21:15:35Z #15 2.101 45050K .......... .......... .......... .......... .......... 35% 78.6M 1s +2024-04-19T21:15:35Z #15 2.103 45100K .......... .......... .......... .......... .......... 35% 126M 1s +2024-04-19T21:15:35Z #15 2.103 45150K .......... .......... .......... .......... .......... 35% 83.7M 1s +2024-04-19T21:15:35Z #15 2.104 45200K .......... .......... .......... .......... .......... 35% 83.6M 1s +2024-04-19T21:15:35Z #15 2.104 45250K .......... .......... .......... .......... .......... 35% 156M 1s +2024-04-19T21:15:35Z #15 2.104 45300K .......... .......... .......... .......... .......... 35% 116M 1s +2024-04-19T21:15:35Z #15 2.105 45350K .......... .......... .......... .......... .......... 35% 79.1M 1s +2024-04-19T21:15:35Z #15 2.105 45400K .......... .......... .......... .......... .......... 35% 112M 1s +2024-04-19T21:15:35Z #15 2.105 45450K .......... .......... .......... .......... .......... 35% 59.5M 1s +2024-04-19T21:15:35Z #15 2.107 45500K .......... .......... .......... .......... .......... 35% 140M 1s +2024-04-19T21:15:35Z #15 2.107 45550K .......... .......... .......... .......... .......... 35% 128M 1s +2024-04-19T21:15:35Z #15 2.107 45600K .......... .......... .......... .......... .......... 36% 122M 1s +2024-04-19T21:15:35Z #15 2.107 45650K .......... .......... .......... .......... .......... 36% 60.0M 1s +2024-04-19T21:15:35Z #15 2.108 45700K .......... .......... .......... .......... .......... 36% 168M 1s +2024-04-19T21:15:35Z #15 2.108 45750K .......... .......... .......... .......... .......... 36% 140M 1s +2024-04-19T21:15:35Z #15 2.109 45800K .......... .......... .......... .......... .......... 36% 78.7M 1s +2024-04-19T21:15:35Z #15 2.115 45850K .......... .......... .......... .......... .......... 36% 105M 1s +2024-04-19T21:15:35Z #15 2.115 45900K .......... .......... .......... .......... .......... 36% 178M 1s +2024-04-19T21:15:35Z #15 2.115 45950K .......... .......... .......... .......... .......... 36% 79.7M 1s +2024-04-19T21:15:35Z #15 2.115 46000K .......... .......... .......... .......... .......... 36% 138M 1s +2024-04-19T21:15:35Z #15 2.115 46050K .......... .......... .......... .......... .......... 36% 76.7M 1s +2024-04-19T21:15:35Z #15 2.115 46100K .......... .......... .......... .......... .......... 36% 144M 1s +2024-04-19T21:15:35Z #15 2.115 46150K .......... .......... .......... .......... .......... 36% 133M 1s +2024-04-19T21:15:35Z #15 2.115 46200K .......... .......... .......... .......... .......... 36% 125M 1s +2024-04-19T21:15:35Z #15 2.115 46250K .......... .......... .......... .......... .......... 36% 78.4M 1s +2024-04-19T21:15:35Z #15 2.115 46300K .......... .......... .......... .......... .......... 36% 143M 1s +2024-04-19T21:15:35Z #15 2.115 46350K .......... .......... .......... .......... .......... 36% 176M 1s +2024-04-19T21:15:35Z #15 2.115 46400K .......... .......... .......... .......... .......... 36% 70.9M 1s +2024-04-19T21:15:35Z #15 2.115 46450K .......... .......... .......... .......... .......... 36% 116M 1s +2024-04-19T21:15:35Z #15 2.115 46500K .......... .......... .......... .......... .......... 36% 128M 1s +2024-04-19T21:15:35Z #15 2.116 46550K .......... .......... .......... .......... .......... 36% 115M 1s +2024-04-19T21:15:35Z #15 2.116 46600K .......... .......... .......... .......... .......... 36% 57.4M 1s +2024-04-19T21:15:35Z #15 2.117 46650K .......... .......... .......... .......... .......... 36% 83.2M 1s +2024-04-19T21:15:35Z #15 2.118 46700K .......... .......... .......... .......... .......... 36% 132M 1s +2024-04-19T21:15:35Z #15 2.118 46750K .......... .......... .......... .......... .......... 36% 61.7M 1s +2024-04-19T21:15:35Z #15 2.119 46800K .......... .......... .......... .......... .......... 36% 91.3M 1s +2024-04-19T21:15:35Z #15 2.119 46850K .......... .......... .......... .......... .......... 36% 126M 1s +2024-04-19T21:15:35Z #15 2.120 46900K .......... .......... .......... .......... .......... 37% 102M 1s +2024-04-19T21:15:35Z #15 2.120 46950K .......... .......... .......... .......... .......... 37% 66.2M 1s +2024-04-19T21:15:35Z #15 2.123 47000K .......... .......... .......... .......... .......... 37% 79.3M 1s +2024-04-19T21:15:35Z #15 2.123 47050K .......... .......... .......... .......... .......... 37% 134M 1s +2024-04-19T21:15:35Z #15 2.123 47100K .......... .......... .......... .......... .......... 37% 95.4M 1s +2024-04-19T21:15:35Z #15 2.123 47150K .......... .......... .......... .......... .......... 37% 58.0M 1s +2024-04-19T21:15:35Z #15 2.123 47200K .......... .......... .......... .......... .......... 37% 110M 1s +2024-04-19T21:15:35Z #15 2.124 47250K .......... .......... .......... .......... .......... 37% 102M 1s +2024-04-19T21:15:35Z #15 2.124 47300K .......... .......... .......... .......... .......... 37% 106M 1s +2024-04-19T21:15:35Z #15 2.124 47350K .......... .......... .......... .......... .......... 37% 76.2M 1s +2024-04-19T21:15:35Z #15 2.125 47400K .......... .......... .......... .......... .......... 37% 90.8M 1s +2024-04-19T21:15:35Z #15 2.126 47450K .......... .......... .......... .......... .......... 37% 130M 1s +2024-04-19T21:15:35Z #15 2.127 47500K .......... .......... .......... .......... .......... 37% 80.3M 1s +2024-04-19T21:15:35Z #15 2.127 47550K .......... .......... .......... .......... .......... 37% 110M 1s +2024-04-19T21:15:35Z #15 2.128 47600K .......... .......... .......... .......... .......... 37% 74.2M 1s +2024-04-19T21:15:35Z #15 2.128 47650K .......... .......... .......... .......... .......... 37% 105M 1s +2024-04-19T21:15:35Z #15 2.129 47700K .......... .......... .......... .......... .......... 37% 140M 1s +2024-04-19T21:15:35Z #15 2.129 47750K .......... .......... .......... .......... .......... 37% 68.1M 1s +2024-04-19T21:15:35Z #15 2.130 47800K .......... .......... .......... .......... .......... 37% 106M 1s +2024-04-19T21:15:35Z #15 2.130 47850K .......... .......... .......... .......... .......... 37% 148M 1s +2024-04-19T21:15:35Z #15 2.130 47900K .......... .......... .......... .......... .......... 37% 125M 1s +2024-04-19T21:15:35Z #15 2.132 47950K .......... .......... .......... .......... .......... 37% 10.1M 1s +2024-04-19T21:15:35Z #15 2.136 48000K .......... .......... .......... .......... .......... 37% 110M 1s +2024-04-19T21:15:35Z #15 2.136 48050K .......... .......... .......... .......... .......... 37% 115M 1s +2024-04-19T21:15:35Z #15 2.136 48100K .......... .......... .......... .......... .......... 37% 73.1M 1s +2024-04-19T21:15:35Z #15 2.137 48150K .......... .......... .......... .......... .......... 38% 137M 1s +2024-04-19T21:15:35Z #15 2.138 48200K .......... .......... .......... .......... .......... 38% 120M 1s +2024-04-19T21:15:35Z #15 2.138 48250K .......... .......... .......... .......... .......... 38% 75.2M 1s +2024-04-19T21:15:35Z #15 2.138 48300K .......... .......... .......... .......... .......... 38% 94.4M 1s +2024-04-19T21:15:35Z #15 2.139 48350K .......... .......... .......... .......... .......... 38% 122M 1s +2024-04-19T21:15:35Z #15 2.139 48400K .......... .......... .......... .......... .......... 38% 143M 1s +2024-04-19T21:15:35Z #15 2.140 48450K .......... .......... .......... .......... .......... 38% 71.0M 1s +2024-04-19T21:15:35Z #15 2.141 48500K .......... .......... .......... .......... .......... 38% 139M 1s +2024-04-19T21:15:35Z #15 2.141 48550K .......... .......... .......... .......... .......... 38% 77.0M 1s +2024-04-19T21:15:35Z #15 2.142 48600K .......... .......... .......... .......... .......... 38% 103M 1s +2024-04-19T21:15:35Z #15 2.142 48650K .......... .......... .......... .......... .......... 38% 76.1M 1s +2024-04-19T21:15:35Z #15 2.143 48700K .......... .......... .......... .......... .......... 38% 129M 1s +2024-04-19T21:15:35Z #15 2.143 48750K .......... .......... .......... .......... .......... 38% 129M 1s +2024-04-19T21:15:35Z #15 2.144 48800K .......... .......... .......... .......... .......... 38% 73.2M 1s +2024-04-19T21:15:35Z #15 2.145 48850K .......... .......... .......... .......... .......... 38% 118M 1s +2024-04-19T21:15:35Z #15 2.145 48900K .......... .......... .......... .......... .......... 38% 122M 1s +2024-04-19T21:15:35Z #15 2.145 48950K .......... .......... .......... .......... .......... 38% 72.6M 1s +2024-04-19T21:15:35Z #15 2.146 49000K .......... .......... .......... .......... .......... 38% 107M 1s +2024-04-19T21:15:35Z #15 2.146 49050K .......... .......... .......... .......... .......... 38% 84.2M 1s +2024-04-19T21:15:35Z #15 2.146 49100K .......... .......... .......... .......... .......... 38% 82.8M 1s +2024-04-19T21:15:35Z #15 2.156 49150K .......... .......... .......... .......... .......... 38% 5.73M 1s +2024-04-19T21:15:35Z #15 2.156 49200K .......... .......... .......... .......... .......... 38% 111M 1s +2024-04-19T21:15:35Z #15 2.156 49250K .......... .......... .......... .......... .......... 38% 82.1M 1s +2024-04-19T21:15:35Z #15 2.157 49300K .......... .......... .......... .......... .......... 38% 103M 1s +2024-04-19T21:15:35Z #15 2.157 49350K .......... .......... .......... .......... .......... 38% 84.9M 1s +2024-04-19T21:15:35Z #15 2.158 49400K .......... .......... .......... .......... .......... 39% 96.6M 1s +2024-04-19T21:15:35Z #15 2.158 49450K .......... .......... .......... .......... .......... 39% 86.1M 1s +2024-04-19T21:15:35Z #15 2.159 49500K .......... .......... .......... .......... .......... 39% 135M 1s +2024-04-19T21:15:35Z #15 2.160 49550K .......... .......... .......... .......... .......... 39% 117M 1s +2024-04-19T21:15:35Z #15 2.160 49600K .......... .......... .......... .......... .......... 39% 68.1M 1s +2024-04-19T21:15:35Z #15 2.161 49650K .......... .......... .......... .......... .......... 39% 105M 1s +2024-04-19T21:15:35Z #15 2.161 49700K .......... .......... .......... .......... .......... 39% 79.3M 1s +2024-04-19T21:15:35Z #15 2.162 49750K .......... .......... .......... .......... .......... 39% 90.2M 1s +2024-04-19T21:15:35Z #15 2.162 49800K .......... .......... .......... .......... .......... 39% 121M 1s +2024-04-19T21:15:35Z #15 2.162 49850K .......... .......... .......... .......... .......... 39% 85.9M 1s +2024-04-19T21:15:35Z #15 2.163 49900K .......... .......... .......... .......... .......... 39% 95.9M 1s +2024-04-19T21:15:35Z #15 2.163 49950K .......... .......... .......... .......... .......... 39% 114M 1s +2024-04-19T21:15:35Z #15 2.163 50000K .......... .......... .......... .......... .......... 39% 71.4M 1s +2024-04-19T21:15:35Z #15 2.165 50050K .......... .......... .......... .......... .......... 39% 118M 1s +2024-04-19T21:15:35Z #15 2.165 50100K .......... .......... .......... .......... .......... 39% 73.8M 1s +2024-04-19T21:15:35Z #15 2.165 50150K .......... .......... .......... .......... .......... 39% 108M 1s +2024-04-19T21:15:35Z #15 2.166 50200K .......... .......... .......... .......... .......... 39% 141M 1s +2024-04-19T21:15:35Z #15 2.166 50250K .......... .......... .......... .......... .......... 39% 70.6M 1s +2024-04-19T21:15:35Z #15 2.175 50300K .......... .......... .......... .......... .......... 39% 5.69M 1s +2024-04-19T21:15:35Z #15 2.175 50350K .......... .......... .......... .......... .......... 39% 102M 1s +2024-04-19T21:15:35Z #15 2.176 50400K .......... .......... .......... .......... .......... 39% 68.3M 1s +2024-04-19T21:15:35Z #15 2.177 50450K .......... .......... .......... .......... .......... 39% 112M 1s +2024-04-19T21:15:35Z #15 2.177 50500K .......... .......... .......... .......... .......... 39% 98.5M 1s +2024-04-19T21:15:35Z #15 2.177 50550K .......... .......... .......... .......... .......... 39% 81.2M 1s +2024-04-19T21:15:35Z #15 2.178 50600K .......... .......... .......... .......... .......... 39% 129M 1s +2024-04-19T21:15:35Z #15 2.179 50650K .......... .......... .......... .......... .......... 39% 108M 1s +2024-04-19T21:15:35Z #15 2.179 50700K .......... .......... .......... .......... .......... 40% 75.6M 1s +2024-04-19T21:15:35Z #15 2.180 50750K .......... .......... .......... .......... .......... 40% 85.4M 1s +2024-04-19T21:15:35Z #15 2.180 50800K .......... .......... .......... .......... .......... 40% 132M 1s +2024-04-19T21:15:35Z #15 2.180 50850K .......... .......... .......... .......... .......... 40% 73.7M 1s +2024-04-19T21:15:35Z #15 2.181 50900K .......... .......... .......... .......... .......... 40% 72.9M 1s +2024-04-19T21:15:35Z #15 2.182 50950K .......... .......... .......... .......... .......... 40% 115M 1s +2024-04-19T21:15:35Z #15 2.182 51000K .......... .......... .......... .......... .......... 40% 98.0M 1s +2024-04-19T21:15:35Z #15 2.183 51050K .......... .......... .......... .......... .......... 40% 78.0M 1s +2024-04-19T21:15:35Z #15 2.183 51100K .......... .......... .......... .......... .......... 40% 137M 1s +2024-04-19T21:15:35Z #15 2.184 51150K .......... .......... .......... .......... .......... 40% 113M 1s +2024-04-19T21:15:35Z #15 2.184 51200K .......... .......... .......... .......... .......... 40% 75.8M 1s +2024-04-19T21:15:35Z #15 2.185 51250K .......... .......... .......... .......... .......... 40% 102M 1s +2024-04-19T21:15:35Z #15 2.185 51300K .......... .......... .......... .......... .......... 40% 73.2M 1s +2024-04-19T21:15:35Z #15 2.186 51350K .......... .......... .......... .......... .......... 40% 148M 1s +2024-04-19T21:15:35Z #15 2.187 51400K .......... .......... .......... .......... .......... 40% 122M 1s +2024-04-19T21:15:35Z #15 2.187 51450K .......... .......... .......... .......... .......... 40% 10.6M 1s +2024-04-19T21:15:35Z #15 2.191 51500K .......... .......... .......... .......... .......... 40% 116M 1s +2024-04-19T21:15:35Z #15 2.192 51550K .......... .......... .......... .......... .......... 40% 67.2M 1s +2024-04-19T21:15:35Z #15 2.193 51600K .......... .......... .......... .......... .......... 40% 136M 1s +2024-04-19T21:15:35Z #15 2.193 51650K .......... .......... .......... .......... .......... 40% 107M 1s +2024-04-19T21:15:35Z #15 2.193 51700K .......... .......... .......... .......... .......... 40% 71.1M 1s +2024-04-19T21:15:35Z #15 2.194 51750K .......... .......... .......... .......... .......... 40% 140M 1s +2024-04-19T21:15:35Z #15 2.194 51800K .......... .......... .......... .......... .......... 40% 126M 1s +2024-04-19T21:15:35Z #15 2.195 51850K .......... .......... .......... .......... .......... 40% 55.5M 1s +2024-04-19T21:15:35Z #15 2.196 51900K .......... .......... .......... .......... .......... 40% 147M 1s +2024-04-19T21:15:35Z #15 2.196 51950K .......... .......... .......... .......... .......... 41% 137M 1s +2024-04-19T21:15:35Z #15 2.196 52000K .......... .......... .......... .......... .......... 41% 124M 1s +2024-04-19T21:15:35Z #15 2.197 52050K .......... .......... .......... .......... .......... 41% 54.3M 1s +2024-04-19T21:15:35Z #15 2.198 52100K .......... .......... .......... .......... .......... 41% 139M 1s +2024-04-19T21:15:35Z #15 2.198 52150K .......... .......... .......... .......... .......... 41% 118M 1s +2024-04-19T21:15:35Z #15 2.199 52200K .......... .......... .......... .......... .......... 41% 51.9M 1s +2024-04-19T21:15:35Z #15 2.199 52250K .......... .......... .......... .......... .......... 41% 125M 1s +2024-04-19T21:15:35Z #15 2.200 52300K .......... .......... .......... .......... .......... 41% 115M 1s +2024-04-19T21:15:35Z #15 2.200 52350K .......... .......... .......... .......... .......... 41% 94.5M 1s +2024-04-19T21:15:35Z #15 2.201 52400K .......... .......... .......... .......... .......... 41% 82.0M 1s +2024-04-19T21:15:35Z #15 2.201 52450K .......... .......... .......... .......... .......... 41% 106M 1s +2024-04-19T21:15:35Z #15 2.202 52500K .......... .......... .......... .......... .......... 41% 78.7M 1s +2024-04-19T21:15:35Z #15 2.203 52550K .......... .......... .......... .......... .......... 41% 135M 1s +2024-04-19T21:15:35Z #15 2.203 52600K .......... .......... .......... .......... .......... 41% 5.66M 1s +2024-04-19T21:15:35Z #15 2.211 52650K .......... .......... .......... .......... .......... 41% 116M 1s +2024-04-19T21:15:35Z #15 2.212 52700K .......... .......... .......... .......... .......... 41% 102M 1s +2024-04-19T21:15:35Z #15 2.212 52750K .......... .......... .......... .......... .......... 41% 86.3M 1s +2024-04-19T21:15:35Z #15 2.213 52800K .......... .......... .......... .......... .......... 41% 138M 1s +2024-04-19T21:15:35Z #15 2.213 52850K .......... .......... .......... .......... .......... 41% 119M 1s +2024-04-19T21:15:35Z #15 2.214 52900K .......... .......... .......... .......... .......... 41% 58.1M 1s +2024-04-19T21:15:35Z #15 2.215 52950K .......... .......... .......... .......... .......... 41% 126M 1s +2024-04-19T21:15:35Z #15 2.215 53000K .......... .......... .......... .......... .......... 41% 115M 1s +2024-04-19T21:15:35Z #15 2.215 53050K .......... .......... .......... .......... .......... 41% 61.7M 1s +2024-04-19T21:15:35Z #15 2.228 53100K .......... .......... .......... .......... .......... 41% 126M 1s +2024-04-19T21:15:35Z #15 2.228 53150K .......... .......... .......... .......... .......... 41% 122M 1s +2024-04-19T21:15:35Z #15 2.228 53200K .......... .......... .......... .......... .......... 42% 53.3M 1s +2024-04-19T21:15:35Z #15 2.228 53250K .......... .......... .......... .......... .......... 42% 130M 1s +2024-04-19T21:15:35Z #15 2.228 53300K .......... .......... .......... .......... .......... 42% 111M 1s +2024-04-19T21:15:35Z #15 2.228 53350K .......... .......... .......... .......... .......... 42% 82.1M 1s +2024-04-19T21:15:35Z #15 2.228 53400K .......... .......... .......... .......... .......... 42% 107M 1s +2024-04-19T21:15:35Z #15 2.228 53450K .......... .......... .......... .......... .......... 42% 139M 1s +2024-04-19T21:15:35Z #15 2.228 53500K .......... .......... .......... .......... .......... 42% 83.6M 1s +2024-04-19T21:15:35Z #15 2.228 53550K .......... .......... .......... .......... .......... 42% 142M 1s +2024-04-19T21:15:35Z #15 2.228 53600K .......... .......... .......... .......... .......... 42% 138M 1s +2024-04-19T21:15:35Z #15 2.228 53650K .......... .......... .......... .......... .......... 42% 75.3M 1s +2024-04-19T21:15:35Z #15 2.228 53700K .......... .......... .......... .......... .......... 42% 103M 1s +2024-04-19T21:15:35Z #15 2.228 53750K .......... .......... .......... .......... .......... 42% 156M 1s +2024-04-19T21:15:35Z #15 2.228 53800K .......... .......... .......... .......... .......... 42% 118M 1s +2024-04-19T21:15:35Z #15 2.228 53850K .......... .......... .......... .......... .......... 42% 87.9M 1s +2024-04-19T21:15:35Z #15 2.228 53900K .......... .......... .......... .......... .......... 42% 154M 1s +2024-04-19T21:15:35Z #15 2.228 53950K .......... .......... .......... .......... .......... 42% 70.9M 1s +2024-04-19T21:15:35Z #15 2.228 54000K .......... .......... .......... .......... .......... 42% 122M 1s +2024-04-19T21:15:35Z #15 2.228 54050K .......... .......... .......... .......... .......... 42% 142M 1s +2024-04-19T21:15:35Z #15 2.228 54100K .......... .......... .......... .......... .......... 42% 142M 1s +2024-04-19T21:15:35Z #15 2.228 54150K .......... .......... .......... .......... .......... 42% 93.2M 1s +2024-04-19T21:15:35Z #15 2.228 54200K .......... .......... .......... .......... .......... 42% 157M 1s +2024-04-19T21:15:35Z #15 2.228 54250K .......... .......... .......... .......... .......... 42% 60.1M 1s +2024-04-19T21:15:35Z #15 2.228 54300K .......... .......... .......... .......... .......... 42% 100M 1s +2024-04-19T21:15:35Z #15 2.228 54350K .......... .......... .......... .......... .......... 42% 131M 1s +2024-04-19T21:15:35Z #15 2.228 54400K .......... .......... .......... .......... .......... 42% 138M 1s +2024-04-19T21:15:35Z #15 2.229 54450K .......... .......... .......... .......... .......... 42% 109M 1s +2024-04-19T21:15:35Z #15 2.229 54500K .......... .......... .......... .......... .......... 43% 82.0M 1s +2024-04-19T21:15:35Z #15 2.230 54550K .......... .......... .......... .......... .......... 43% 64.1M 1s +2024-04-19T21:15:35Z #15 2.230 54600K .......... .......... .......... .......... .......... 43% 138M 1s +2024-04-19T21:15:35Z #15 2.231 54650K .......... .......... .......... .......... .......... 43% 93.6M 1s +2024-04-19T21:15:35Z #15 2.231 54700K .......... .......... .......... .......... .......... 43% 69.5M 1s +2024-04-19T21:15:35Z #15 2.232 54750K .......... .......... .......... .......... .......... 43% 127M 1s +2024-04-19T21:15:35Z #15 2.232 54800K .......... .......... .......... .......... .......... 43% 63.9M 1s +2024-04-19T21:15:35Z #15 2.233 54850K .......... .......... .......... .......... .......... 43% 115M 1s +2024-04-19T21:15:35Z #15 2.233 54900K .......... .......... .......... .......... .......... 43% 95.6M 1s +2024-04-19T21:15:35Z #15 2.234 54950K .......... .......... .......... .......... .......... 43% 71.9M 1s +2024-04-19T21:15:35Z #15 2.235 55000K .......... .......... .......... .......... .......... 43% 88.0M 1s +2024-04-19T21:15:35Z #15 2.235 55050K .......... .......... .......... .......... .......... 43% 110M 1s +2024-04-19T21:15:35Z #15 2.236 55100K .......... .......... .......... .......... .......... 43% 67.6M 1s +2024-04-19T21:15:35Z #15 2.236 55150K .......... .......... .......... .......... .......... 43% 137M 1s +2024-04-19T21:15:35Z #15 2.237 55200K .......... .......... .......... .......... .......... 43% 123M 1s +2024-04-19T21:15:35Z #15 2.243 55250K .......... .......... .......... .......... .......... 43% 56.9M 1s +2024-04-19T21:15:35Z #15 2.244 55300K .......... .......... .......... .......... .......... 43% 137M 1s +2024-04-19T21:15:35Z #15 2.244 55350K .......... .......... .......... .......... .......... 43% 183M 1s +2024-04-19T21:15:35Z #15 2.244 55400K .......... .......... .......... .......... .......... 43% 135M 1s +2024-04-19T21:15:35Z #15 2.244 55450K .......... .......... .......... .......... .......... 43% 95.3M 1s +2024-04-19T21:15:35Z #15 2.244 55500K .......... .......... .......... .......... .......... 43% 85.0M 1s +2024-04-19T21:15:35Z #15 2.244 55550K .......... .......... .......... .......... .......... 43% 143M 1s +2024-04-19T21:15:35Z #15 2.244 55600K .......... .......... .......... .......... .......... 43% 172M 1s +2024-04-19T21:15:35Z #15 2.244 55650K .......... .......... .......... .......... .......... 43% 86.5M 1s +2024-04-19T21:15:35Z #15 2.244 55700K .......... .......... .......... .......... .......... 43% 91.2M 1s +2024-04-19T21:15:35Z #15 2.244 55750K .......... .......... .......... .......... .......... 44% 153M 1s +2024-04-19T21:15:35Z #15 2.244 55800K .......... .......... .......... .......... .......... 44% 103M 1s +2024-04-19T21:15:35Z #15 2.244 55850K .......... .......... .......... .......... .......... 44% 139M 1s +2024-04-19T21:15:35Z #15 2.244 55900K .......... .......... .......... .......... .......... 44% 99.7M 1s +2024-04-19T21:15:35Z #15 2.244 55950K .......... .......... .......... .......... .......... 44% 80.9M 1s +2024-04-19T21:15:35Z #15 2.244 56000K .......... .......... .......... .......... .......... 44% 89.8M 1s +2024-04-19T21:15:35Z #15 2.245 56050K .......... .......... .......... .......... .......... 44% 143M 1s +2024-04-19T21:15:35Z #15 2.245 56100K .......... .......... .......... .......... .......... 44% 62.9M 1s +2024-04-19T21:15:35Z #15 2.246 56150K .......... .......... .......... .......... .......... 44% 124M 1s +2024-04-19T21:15:35Z #15 2.246 56200K .......... .......... .......... .......... .......... 44% 111M 1s +2024-04-19T21:15:35Z #15 2.246 56250K .......... .......... .......... .......... .......... 44% 65.3M 1s +2024-04-19T21:15:35Z #15 2.247 56300K .......... .......... .......... .......... .......... 44% 98.3M 1s +2024-04-19T21:15:35Z #15 2.248 56350K .......... .......... .......... .......... .......... 44% 105M 1s +2024-04-19T21:15:35Z #15 2.248 56400K .......... .......... .......... .......... .......... 44% 79.0M 1s +2024-04-19T21:15:35Z #15 2.249 56450K .......... .......... .......... .......... .......... 44% 82.4M 1s +2024-04-19T21:15:35Z #15 2.249 56500K .......... .......... .......... .......... .......... 44% 108M 1s +2024-04-19T21:15:35Z #15 2.251 56550K .......... .......... .......... .......... .......... 44% 81.5M 1s +2024-04-19T21:15:35Z #15 2.251 56600K .......... .......... .......... .......... .......... 44% 114M 1s +2024-04-19T21:15:35Z #15 2.251 56650K .......... .......... .......... .......... .......... 44% 117M 1s +2024-04-19T21:15:35Z #15 2.251 56700K .......... .......... .......... .......... .......... 44% 67.5M 1s +2024-04-19T21:15:35Z #15 2.252 56750K .......... .......... .......... .......... .......... 44% 130M 1s +2024-04-19T21:15:35Z #15 2.253 56800K .......... .......... .......... .......... .......... 44% 123M 1s +2024-04-19T21:15:35Z #15 2.253 56850K .......... .......... .......... .......... .......... 44% 67.0M 1s +2024-04-19T21:15:35Z #15 2.254 56900K .......... .......... .......... .......... .......... 44% 116M 1s +2024-04-19T21:15:35Z #15 2.254 56950K .......... .......... .......... .......... .......... 44% 167M 1s +2024-04-19T21:15:35Z #15 2.255 57000K .......... .......... .......... .......... .......... 44% 116M 1s +2024-04-19T21:15:35Z #15 2.255 57050K .......... .......... .......... .......... .......... 45% 67.3M 1s +2024-04-19T21:15:35Z #15 2.256 57100K .......... .......... .......... .......... .......... 45% 114M 1s +2024-04-19T21:15:35Z #15 2.256 57150K .......... .......... .......... .......... .......... 45% 148M 1s +2024-04-19T21:15:35Z #15 2.256 57200K .......... .......... .......... .......... .......... 45% 66.8M 1s +2024-04-19T21:15:35Z #15 2.257 57250K .......... .......... .......... .......... .......... 45% 124M 1s +2024-04-19T21:15:35Z #15 2.258 57300K .......... .......... .......... .......... .......... 45% 158M 1s +2024-04-19T21:15:35Z #15 2.258 57350K .......... .......... .......... .......... .......... 45% 119M 1s +2024-04-19T21:15:35Z #15 2.259 57400K .......... .......... .......... .......... .......... 45% 61.6M 1s +2024-04-19T21:15:35Z #15 2.259 57450K .......... .......... .......... .......... .......... 45% 107M 1s +2024-04-19T21:15:35Z #15 2.259 57500K .......... .......... .......... .......... .......... 45% 76.7M 1s +2024-04-19T21:15:35Z #15 2.261 57550K .......... .......... .......... .......... .......... 45% 150M 1s +2024-04-19T21:15:35Z #15 2.262 57600K .......... .......... .......... .......... .......... 45% 71.9M 1s +2024-04-19T21:15:35Z #15 2.262 57650K .......... .......... .......... .......... .......... 45% 92.1M 1s +2024-04-19T21:15:35Z #15 2.262 57700K .......... .......... .......... .......... .......... 45% 136M 1s +2024-04-19T21:15:35Z #15 2.262 57750K .......... .......... .......... .......... .......... 45% 145M 1s +2024-04-19T21:15:35Z #15 2.262 57800K .......... .......... .......... .......... .......... 45% 68.5M 1s +2024-04-19T21:15:35Z #15 2.264 57850K .......... .......... .......... .......... .......... 45% 108M 1s +2024-04-19T21:15:35Z #15 2.264 57900K .......... .......... .......... .......... .......... 45% 165M 1s +2024-04-19T21:15:35Z #15 2.264 57950K .......... .......... .......... .......... .......... 45% 143M 1s +2024-04-19T21:15:35Z #15 2.264 58000K .......... .......... .......... .......... .......... 45% 68.1M 1s +2024-04-19T21:15:35Z #15 2.265 58050K .......... .......... .......... .......... .......... 45% 144M 1s +2024-04-19T21:15:35Z #15 2.266 58100K .......... .......... .......... .......... .......... 45% 117M 1s +2024-04-19T21:15:35Z #15 2.266 58150K .......... .......... .......... .......... .......... 45% 92.3M 1s +2024-04-19T21:15:35Z #15 2.266 58200K .......... .......... .......... .......... .......... 45% 133M 1s +2024-04-19T21:15:35Z #15 2.266 58250K .......... .......... .......... .......... .......... 45% 75.9M 1s +2024-04-19T21:15:35Z #15 2.268 58300K .......... .......... .......... .......... .......... 46% 104M 1s +2024-04-19T21:15:35Z #15 2.268 58350K .......... .......... .......... .......... .......... 46% 131M 1s +2024-04-19T21:15:35Z #15 2.268 58400K .......... .......... .......... .......... .......... 46% 82.5M 1s +2024-04-19T21:15:35Z #15 2.268 58450K .......... .......... .......... .......... .......... 46% 93.1M 1s +2024-04-19T21:15:35Z #15 2.269 58500K .......... .......... .......... .......... .......... 46% 134M 1s +2024-04-19T21:15:35Z #15 2.269 58550K .......... .......... .......... .......... .......... 46% 111M 1s +2024-04-19T21:15:35Z #15 2.271 58600K .......... .......... .......... .......... .......... 46% 68.2M 1s +2024-04-19T21:15:35Z #15 2.271 58650K .......... .......... .......... .......... .......... 46% 102M 1s +2024-04-19T21:15:35Z #15 2.272 58700K .......... .......... .......... .......... .......... 46% 167M 1s +2024-04-19T21:15:35Z #15 2.272 58750K .......... .......... .......... .......... .......... 46% 140M 1s +2024-04-19T21:15:35Z #15 2.272 58800K .......... .......... .......... .......... .......... 46% 76.5M 1s +2024-04-19T21:15:35Z #15 2.273 58850K .......... .......... .......... .......... .......... 46% 93.3M 1s +2024-04-19T21:15:35Z #15 2.273 58900K .......... .......... .......... .......... .......... 46% 134M 1s +2024-04-19T21:15:35Z #15 2.273 58950K .......... .......... .......... .......... .......... 46% 113M 1s +2024-04-19T21:15:35Z #15 2.273 59000K .......... .......... .......... .......... .......... 46% 61.2M 1s +2024-04-19T21:15:35Z #15 2.274 59050K .......... .......... .......... .......... .......... 46% 109M 1s +2024-04-19T21:15:35Z #15 2.279 59100K .......... .......... .......... .......... .......... 46% 107M 1s +2024-04-19T21:15:35Z #15 2.280 59150K .......... .......... .......... .......... .......... 46% 160M 1s +2024-04-19T21:15:35Z #15 2.280 59200K .......... .......... .......... .......... .......... 46% 67.3M 1s +2024-04-19T21:15:35Z #15 2.280 59250K .......... .......... .......... .......... .......... 46% 145M 1s +2024-04-19T21:15:35Z #15 2.280 59300K .......... .......... .......... .......... .......... 46% 150M 1s +2024-04-19T21:15:35Z #15 2.280 59350K .......... .......... .......... .......... .......... 46% 150M 1s +2024-04-19T21:15:35Z #15 2.280 59400K .......... .......... .......... .......... .......... 46% 66.6M 1s +2024-04-19T21:15:35Z #15 2.280 59450K .......... .......... .......... .......... .......... 46% 175M 1s +2024-04-19T21:15:35Z #15 2.280 59500K .......... .......... .......... .......... .......... 46% 133M 1s +2024-04-19T21:15:35Z #15 2.280 59550K .......... .......... .......... .......... .......... 47% 158M 1s +2024-04-19T21:15:35Z #15 2.280 59600K .......... .......... .......... .......... .......... 47% 158M 1s +2024-04-19T21:15:35Z #15 2.280 59650K .......... .......... .......... .......... .......... 47% 158M 1s +2024-04-19T21:15:35Z #15 2.280 59700K .......... .......... .......... .......... .......... 47% 66.2M 1s +2024-04-19T21:15:35Z #15 2.280 59750K .......... .......... .......... .......... .......... 47% 81.9M 1s +2024-04-19T21:15:35Z #15 2.281 59800K .......... .......... .......... .......... .......... 47% 129M 1s +2024-04-19T21:15:35Z #15 2.281 59850K .......... .......... .......... .......... .......... 47% 105M 1s +2024-04-19T21:15:35Z #15 2.282 59900K .......... .......... .......... .......... .......... 47% 76.9M 1s +2024-04-19T21:15:35Z #15 2.283 59950K .......... .......... .......... .......... .......... 47% 122M 1s +2024-04-19T21:15:35Z #15 2.283 60000K .......... .......... .......... .......... .......... 47% 79.5M 1s +2024-04-19T21:15:35Z #15 2.283 60050K .......... .......... .......... .......... .......... 47% 79.8M 1s +2024-04-19T21:15:35Z #15 2.284 60100K .......... .......... .......... .......... .......... 47% 129M 1s +2024-04-19T21:15:35Z #15 2.285 60150K .......... .......... .......... .......... .......... 47% 127M 1s +2024-04-19T21:15:35Z #15 2.285 60200K .......... .......... .......... .......... .......... 47% 77.7M 1s +2024-04-19T21:15:35Z #15 2.285 60250K .......... .......... .......... .......... .......... 47% 81.9M 1s +2024-04-19T21:15:35Z #15 2.286 60300K .......... .......... .......... .......... .......... 47% 131M 1s +2024-04-19T21:15:35Z #15 2.287 60350K .......... .......... .......... .......... .......... 47% 151M 1s +2024-04-19T21:15:35Z #15 2.287 60400K .......... .......... .......... .......... .......... 47% 62.6M 1s +2024-04-19T21:15:35Z #15 2.288 60450K .......... .......... .......... .......... .......... 47% 116M 1s +2024-04-19T21:15:35Z #15 2.289 60500K .......... .......... .......... .......... .......... 47% 189M 1s +2024-04-19T21:15:35Z #15 2.289 60550K .......... .......... .......... .......... .......... 47% 132M 1s +2024-04-19T21:15:35Z #15 2.289 60600K .......... .......... .......... .......... .......... 47% 64.7M 1s +2024-04-19T21:15:35Z #15 2.290 60650K .......... .......... .......... .......... .......... 47% 101M 1s +2024-04-19T21:15:35Z #15 2.290 60700K .......... .......... .......... .......... .......... 47% 123M 1s +2024-04-19T21:15:35Z #15 2.290 60750K .......... .......... .......... .......... .......... 47% 63.9M 1s +2024-04-19T21:15:35Z #15 2.295 60800K .......... .......... .......... .......... .......... 47% 116M 1s +2024-04-19T21:15:35Z #15 2.295 60850K .......... .......... .......... .......... .......... 48% 152M 1s +2024-04-19T21:15:35Z #15 2.295 60900K .......... .......... .......... .......... .......... 48% 89.8M 1s +2024-04-19T21:15:35Z #15 2.295 60950K .......... .......... .......... .......... .......... 48% 151M 1s +2024-04-19T21:15:35Z #15 2.295 61000K .......... .......... .......... .......... .......... 48% 88.8M 1s +2024-04-19T21:15:35Z #15 2.295 61050K .......... .......... .......... .......... .......... 48% 98.7M 1s +2024-04-19T21:15:35Z #15 2.295 61100K .......... .......... .......... .......... .......... 48% 129M 1s +2024-04-19T21:15:35Z #15 2.295 61150K .......... .......... .......... .......... .......... 48% 156M 1s +2024-04-19T21:15:35Z #15 2.295 61200K .......... .......... .......... .......... .......... 48% 84.9M 1s +2024-04-19T21:15:35Z #15 2.295 61250K .......... .......... .......... .......... .......... 48% 65.9M 1s +2024-04-19T21:15:35Z #15 2.296 61300K .......... .......... .......... .......... .......... 48% 133M 1s +2024-04-19T21:15:35Z #15 2.296 61350K .......... .......... .......... .......... .......... 48% 119M 1s +2024-04-19T21:15:35Z #15 2.296 61400K .......... .......... .......... .......... .......... 48% 70.7M 1s +2024-04-19T21:15:35Z #15 2.297 61450K .......... .......... .......... .......... .......... 48% 90.9M 1s +2024-04-19T21:15:35Z #15 2.298 61500K .......... .......... .......... .......... .......... 48% 136M 1s +2024-04-19T21:15:35Z #15 2.298 61550K .......... .......... .......... .......... .......... 48% 116M 1s +2024-04-19T21:15:35Z #15 2.303 61600K .......... .......... .......... .......... .......... 48% 52.1M 1s +2024-04-19T21:15:35Z #15 2.303 61650K .......... .......... .......... .......... .......... 48% 103M 1s +2024-04-19T21:15:35Z #15 2.303 61700K .......... .......... .......... .......... .......... 48% 109M 1s +2024-04-19T21:15:35Z #15 2.303 61750K .......... .......... .......... .......... .......... 48% 63.0M 1s +2024-04-19T21:15:35Z #15 2.303 61800K .......... .......... .......... .......... .......... 48% 102M 1s +2024-04-19T21:15:35Z #15 2.303 61850K .......... .......... .......... .......... .......... 48% 102M 1s +2024-04-19T21:15:35Z #15 2.303 61900K .......... .......... .......... .......... .......... 48% 116M 1s +2024-04-19T21:15:35Z #15 2.303 61950K .......... .......... .......... .......... .......... 48% 44.4M 1s +2024-04-19T21:15:35Z #15 2.303 62000K .......... .......... .......... .......... .......... 48% 150M 1s +2024-04-19T21:15:35Z #15 2.304 62050K .......... .......... .......... .......... .......... 48% 130M 1s +2024-04-19T21:15:35Z #15 2.304 62100K .......... .......... .......... .......... .......... 49% 124M 1s +2024-04-19T21:15:35Z #15 2.304 62150K .......... .......... .......... .......... .......... 49% 76.1M 1s +2024-04-19T21:15:35Z #15 2.305 62200K .......... .......... .......... .......... .......... 49% 87.4M 1s +2024-04-19T21:15:35Z #15 2.306 62250K .......... .......... .......... .......... .......... 49% 140M 1s +2024-04-19T21:15:35Z #15 2.306 62300K .......... .......... .......... .......... .......... 49% 158M 1s +2024-04-19T21:15:35Z #15 2.306 62350K .......... .......... .......... .......... .......... 49% 116M 1s +2024-04-19T21:15:35Z #15 2.307 62400K .......... .......... .......... .......... .......... 49% 66.2M 1s +2024-04-19T21:15:35Z #15 2.307 62450K .......... .......... .......... .......... .......... 49% 121M 1s +2024-04-19T21:15:35Z #15 2.308 62500K .......... .......... .......... .......... .......... 49% 116M 1s +2024-04-19T21:15:35Z #15 2.308 62550K .......... .......... .......... .......... .......... 49% 87.2M 1s +2024-04-19T21:15:35Z #15 2.309 62600K .......... .......... .......... .......... .......... 49% 102M 1s +2024-04-19T21:15:35Z #15 2.309 62650K .......... .......... .......... .......... .......... 49% 127M 1s +2024-04-19T21:15:35Z #15 2.310 62700K .......... .......... .......... .......... .......... 49% 140M 1s +2024-04-19T21:15:35Z #15 2.310 62750K .......... .......... .......... .......... .......... 49% 134M 1s +2024-04-19T21:15:35Z #15 2.310 62800K .......... .......... .......... .......... .......... 49% 78.6M 1s +2024-04-19T21:15:35Z #15 2.315 62850K .......... .......... .......... .......... .......... 49% 157M 1s +2024-04-19T21:15:35Z #15 2.315 62900K .......... .......... .......... .......... .......... 49% 98.8M 1s +2024-04-19T21:15:35Z #15 2.315 62950K .......... .......... .......... .......... .......... 49% 101M 1s +2024-04-19T21:15:35Z #15 2.315 63000K .......... .......... .......... .......... .......... 49% 178M 1s +2024-04-19T21:15:35Z #15 2.315 63050K .......... .......... .......... .......... .......... 49% 158M 1s +2024-04-19T21:15:35Z #15 2.315 63100K .......... .......... .......... .......... .......... 49% 84.8M 1s +2024-04-19T21:15:35Z #15 2.315 63150K .......... .......... .......... .......... .......... 49% 96.9M 1s +2024-04-19T21:15:35Z #15 2.315 63200K .......... .......... .......... .......... .......... 49% 174M 1s +2024-04-19T21:15:35Z #15 2.315 63250K .......... .......... .......... .......... .......... 49% 157M 1s +2024-04-19T21:15:35Z #15 2.315 63300K .......... .......... .......... .......... .......... 49% 86.6M 1s +2024-04-19T21:15:35Z #15 2.315 63350K .......... .......... .......... .......... .......... 50% 143M 1s +2024-04-19T21:15:35Z #15 2.315 63400K .......... .......... .......... .......... .......... 50% 81.1M 1s +2024-04-19T21:15:35Z #15 2.316 63450K .......... .......... .......... .......... .......... 50% 102M 1s +2024-04-19T21:15:35Z #15 2.317 63500K .......... .......... .......... .......... .......... 50% 148M 1s +2024-04-19T21:15:35Z #15 2.317 63550K .......... .......... .......... .......... .......... 50% 66.8M 1s +2024-04-19T21:15:35Z #15 2.318 63600K .......... .......... .......... .......... .......... 50% 93.8M 1s +2024-04-19T21:15:35Z #15 2.318 63650K .......... .......... .......... .......... .......... 50% 160M 1s +2024-04-19T21:15:35Z #15 2.318 63700K .......... .......... .......... .......... .......... 50% 128M 1s +2024-04-19T21:15:35Z #15 2.319 63750K .......... .......... .......... .......... .......... 50% 144M 1s +2024-04-19T21:15:35Z #15 2.319 63800K .......... .......... .......... .......... .......... 50% 62.8M 1s +2024-04-19T21:15:35Z #15 2.320 63850K .......... .......... .......... .......... .......... 50% 145M 1s +2024-04-19T21:15:35Z #15 2.320 63900K .......... .......... .......... .......... .......... 50% 146M 1s +2024-04-19T21:15:35Z #15 2.321 63950K .......... .......... .......... .......... .......... 50% 118M 1s +2024-04-19T21:15:35Z #15 2.321 64000K .......... .......... .......... .......... .......... 50% 69.5M 1s +2024-04-19T21:15:35Z #15 2.322 64050K .......... .......... .......... .......... .......... 50% 156M 1s +2024-04-19T21:15:35Z #15 2.322 64100K .......... .......... .......... .......... .......... 50% 131M 1s +2024-04-19T21:15:35Z #15 2.322 64150K .......... .......... .......... .......... .......... 50% 74.4M 1s +2024-04-19T21:15:35Z #15 2.324 64200K .......... .......... .......... .......... .......... 50% 116M 1s +2024-04-19T21:15:35Z #15 2.324 64250K .......... .......... .......... .......... .......... 50% 114M 1s +2024-04-19T21:15:35Z #15 2.324 64300K .......... .......... .......... .......... .......... 50% 150M 1s +2024-04-19T21:15:35Z #15 2.324 64350K .......... .......... .......... .......... .......... 50% 88.9M 1s +2024-04-19T21:15:35Z #15 2.325 64400K .......... .......... .......... .......... .......... 50% 96.5M 1s +2024-04-19T21:15:35Z #15 2.325 64450K .......... .......... .......... .......... .......... 50% 151M 1s +2024-04-19T21:15:35Z #15 2.326 64500K .......... .......... .......... .......... .......... 50% 168M 1s +2024-04-19T21:15:35Z #15 2.326 64550K .......... .......... .......... .......... .......... 50% 127M 1s +2024-04-19T21:15:35Z #15 2.327 64600K .......... .......... .......... .......... .......... 50% 59.1M 1s +2024-04-19T21:15:35Z #15 2.327 64650K .......... .......... .......... .......... .......... 51% 146M 1s +2024-04-19T21:15:35Z #15 2.327 64700K .......... .......... .......... .......... .......... 51% 152M 1s +2024-04-19T21:15:35Z #15 2.328 64750K .......... .......... .......... .......... .......... 51% 86.5M 1s +2024-04-19T21:15:35Z #15 2.331 64800K .......... .......... .......... .......... .......... 51% 101M 1s +2024-04-19T21:15:35Z #15 2.331 64850K .......... .......... .......... .......... .......... 51% 156M 1s +2024-04-19T21:15:35Z #15 2.331 64900K .......... .......... .......... .......... .......... 51% 149M 1s +2024-04-19T21:15:35Z #15 2.331 64950K .......... .......... .......... .......... .......... 51% 81.9M 1s +2024-04-19T21:15:35Z #15 2.331 65000K .......... .......... .......... .......... .......... 51% 113M 1s +2024-04-19T21:15:35Z #15 2.331 65050K .......... .......... .......... .......... .......... 51% 130M 1s +2024-04-19T21:15:35Z #15 2.331 65100K .......... .......... .......... .......... .......... 51% 155M 1s +2024-04-19T21:15:35Z #15 2.331 65150K .......... .......... .......... .......... .......... 51% 67.4M 1s +2024-04-19T21:15:35Z #15 2.332 65200K .......... .......... .......... .......... .......... 51% 129M 1s +2024-04-19T21:15:35Z #15 2.332 65250K .......... .......... .......... .......... .......... 51% 161M 1s +2024-04-19T21:15:35Z #15 2.333 65300K .......... .......... .......... .......... .......... 51% 149M 1s +2024-04-19T21:15:35Z #15 2.333 65350K .......... .......... .......... .......... .......... 51% 66.4M 1s +2024-04-19T21:15:35Z #15 2.334 65400K .......... .......... .......... .......... .......... 51% 137M 1s +2024-04-19T21:15:35Z #15 2.334 65450K .......... .......... .......... .......... .......... 51% 133M 1s +2024-04-19T21:15:35Z #15 2.334 65500K .......... .......... .......... .......... .......... 51% 66.2M 1s +2024-04-19T21:15:35Z #15 2.335 65550K .......... .......... .......... .......... .......... 51% 119M 1s +2024-04-19T21:15:35Z #15 2.336 65600K .......... .......... .......... .......... .......... 51% 166M 1s +2024-04-19T21:15:35Z #15 2.336 65650K .......... .......... .......... .......... .......... 51% 170M 1s +2024-04-19T21:15:35Z #15 2.336 65700K .......... .......... .......... .......... .......... 51% 127M 1s +2024-04-19T21:15:35Z #15 2.344 65750K .......... .......... .......... .......... .......... 51% 72.5M 1s +2024-04-19T21:15:35Z #15 2.344 65800K .......... .......... .......... .......... .......... 51% 114M 1s +2024-04-19T21:15:35Z #15 2.344 65850K .......... .......... .......... .......... .......... 51% 180M 1s +2024-04-19T21:15:35Z #15 2.344 65900K .......... .......... .......... .......... .......... 52% 152M 1s +2024-04-19T21:15:35Z #15 2.344 65950K .......... .......... .......... .......... .......... 52% 68.3M 1s +2024-04-19T21:15:35Z #15 2.344 66000K .......... .......... .......... .......... .......... 52% 116M 1s +2024-04-19T21:15:35Z #15 2.344 66050K .......... .......... .......... .......... .......... 52% 173M 1s +2024-04-19T21:15:35Z #15 2.344 66100K .......... .......... .......... .......... .......... 52% 157M 1s +2024-04-19T21:15:35Z #15 2.344 66150K .......... .......... .......... .......... .......... 52% 75.6M 1s +2024-04-19T21:15:35Z #15 2.344 66200K .......... .......... .......... .......... .......... 52% 112M 1s +2024-04-19T21:15:35Z #15 2.344 66250K .......... .......... .......... .......... .......... 52% 143M 1s +2024-04-19T21:15:35Z #15 2.344 66300K .......... .......... .......... .......... .......... 52% 178M 1s +2024-04-19T21:15:35Z #15 2.344 66350K .......... .......... .......... .......... .......... 52% 76.1M 1s +2024-04-19T21:15:35Z #15 2.344 66400K .......... .......... .......... .......... .......... 52% 120M 1s +2024-04-19T21:15:35Z #15 2.344 66450K .......... .......... .......... .......... .......... 52% 132M 1s +2024-04-19T21:15:35Z #15 2.344 66500K .......... .......... .......... .......... .......... 52% 72.8M 1s +2024-04-19T21:15:35Z #15 2.344 66550K .......... .......... .......... .......... .......... 52% 121M 1s +2024-04-19T21:15:35Z #15 2.344 66600K .......... .......... .......... .......... .......... 52% 166M 1s +2024-04-19T21:15:35Z #15 2.344 66650K .......... .......... .......... .......... .......... 52% 147M 1s +2024-04-19T21:15:35Z #15 2.345 66700K .......... .......... .......... .......... .......... 52% 67.4M 1s +2024-04-19T21:15:35Z #15 2.345 66750K .......... .......... .......... .......... .......... 52% 118M 1s +2024-04-19T21:15:35Z #15 2.346 66800K .......... .......... .......... .......... .......... 52% 166M 1s +2024-04-19T21:15:35Z #15 2.346 66850K .......... .......... .......... .......... .......... 52% 150M 1s +2024-04-19T21:15:35Z #15 2.346 66900K .......... .......... .......... .......... .......... 52% 76.2M 1s +2024-04-19T21:15:35Z #15 2.347 66950K .......... .......... .......... .......... .......... 52% 98.8M 1s +2024-04-19T21:15:35Z #15 2.348 67000K .......... .......... .......... .......... .......... 52% 148M 1s +2024-04-19T21:15:35Z #15 2.348 67050K .......... .......... .......... .......... .......... 52% 153M 1s +2024-04-19T21:15:35Z #15 2.349 67100K .......... .......... .......... .......... .......... 52% 85.5M 1s +2024-04-19T21:15:35Z #15 2.349 67150K .......... .......... .......... .......... .......... 53% 100M 1s +2024-04-19T21:15:35Z #15 2.349 67200K .......... .......... .......... .......... .......... 53% 128M 1s +2024-04-19T21:15:35Z #15 2.350 67250K .......... .......... .......... .......... .......... 53% 169M 1s +2024-04-19T21:15:35Z #15 2.350 67300K .......... .......... .......... .......... .......... 53% 70.8M 1s +2024-04-19T21:15:35Z #15 2.352 67350K .......... .......... .......... .......... .......... 53% 104M 1s +2024-04-19T21:15:35Z #15 2.352 67400K .......... .......... .......... .......... .......... 53% 159M 1s +2024-04-19T21:15:35Z #15 2.352 67450K .......... .......... .......... .......... .......... 53% 91.0M 1s +2024-04-19T21:15:35Z #15 2.352 67500K .......... .......... .......... .......... .......... 53% 90.1M 1s +2024-04-19T21:15:35Z #15 2.353 67550K .......... .......... .......... .......... .......... 53% 166M 1s +2024-04-19T21:15:35Z #15 2.353 67600K .......... .......... .......... .......... .......... 53% 152M 1s +2024-04-19T21:15:35Z #15 2.353 67650K .......... .......... .......... .......... .......... 53% 68.5M 1s +2024-04-19T21:15:35Z #15 2.354 67700K .......... .......... .......... .......... .......... 53% 126M 1s +2024-04-19T21:15:35Z #15 2.354 67750K .......... .......... .......... .......... .......... 53% 156M 1s +2024-04-19T21:15:35Z #15 2.355 67800K .......... .......... .......... .......... .......... 53% 132M 1s +2024-04-19T21:15:35Z #15 2.355 67850K .......... .......... .......... .......... .......... 53% 68.5M 1s +2024-04-19T21:15:35Z #15 2.356 67900K .......... .......... .......... .......... .......... 53% 117M 1s +2024-04-19T21:15:35Z #15 2.359 67950K .......... .......... .......... .......... .......... 53% 164M 1s +2024-04-19T21:15:35Z #15 2.359 68000K .......... .......... .......... .......... .......... 53% 151M 1s +2024-04-19T21:15:35Z #15 2.359 68050K .......... .......... .......... .......... .......... 53% 81.3M 1s +2024-04-19T21:15:35Z #15 2.359 68100K .......... .......... .......... .......... .......... 53% 157M 1s +2024-04-19T21:15:35Z #15 2.359 68150K .......... .......... .......... .......... .......... 53% 130M 1s +2024-04-19T21:15:35Z #15 2.359 68200K .......... .......... .......... .......... .......... 53% 78.3M 1s +2024-04-19T21:15:35Z #15 2.359 68250K .......... .......... .......... .......... .......... 53% 126M 1s +2024-04-19T21:15:35Z #15 2.359 68300K .......... .......... .......... .......... .......... 53% 155M 1s +2024-04-19T21:15:35Z #15 2.359 68350K .......... .......... .......... .......... .......... 53% 67.5M 1s +2024-04-19T21:15:35Z #15 2.360 68400K .......... .......... .......... .......... .......... 53% 123M 1s +2024-04-19T21:15:35Z #15 2.360 68450K .......... .......... .......... .......... .......... 54% 160M 1s +2024-04-19T21:15:35Z #15 2.361 68500K .......... .......... .......... .......... .......... 54% 101M 1s +2024-04-19T21:15:35Z #15 2.361 68550K .......... .......... .......... .......... .......... 54% 79.7M 1s +2024-04-19T21:15:35Z #15 2.362 68600K .......... .......... .......... .......... .......... 54% 146M 1s +2024-04-19T21:15:35Z #15 2.362 68650K .......... .......... .......... .......... .......... 54% 125M 1s +2024-04-19T21:15:35Z #15 2.363 68700K .......... .......... .......... .......... .......... 54% 91.6M 1s +2024-04-19T21:15:35Z #15 2.363 68750K .......... .......... .......... .......... .......... 54% 93.9M 1s +2024-04-19T21:15:35Z #15 2.364 68800K .......... .......... .......... .......... .......... 54% 122M 1s +2024-04-19T21:15:35Z #15 2.364 68850K .......... .......... .......... .......... .......... 54% 98.7M 1s +2024-04-19T21:15:35Z #15 2.364 68900K .......... .......... .......... .......... .......... 54% 83.4M 1s +2024-04-19T21:15:35Z #15 2.367 68950K .......... .......... .......... .......... .......... 54% 156M 1s +2024-04-19T21:15:35Z #15 2.367 69000K .......... .......... .......... .......... .......... 54% 137M 1s +2024-04-19T21:15:35Z #15 2.367 69050K .......... .......... .......... .......... .......... 54% 97.4M 1s +2024-04-19T21:15:35Z #15 2.367 69100K .......... .......... .......... .......... .......... 54% 118M 1s +2024-04-19T21:15:35Z #15 2.367 69150K .......... .......... .......... .......... .......... 54% 92.9M 1s +2024-04-19T21:15:35Z #15 2.367 69200K .......... .......... .......... .......... .......... 54% 107M 1s +2024-04-19T21:15:35Z #15 2.368 69250K .......... .......... .......... .......... .......... 54% 114M 1s +2024-04-19T21:15:35Z #15 2.368 69300K .......... .......... .......... .......... .......... 54% 123M 1s +2024-04-19T21:15:35Z #15 2.369 69350K .......... .......... .......... .......... .......... 54% 81.6M 1s +2024-04-19T21:15:35Z #15 2.369 69400K .......... .......... .......... .......... .......... 54% 137M 1s +2024-04-19T21:15:35Z #15 2.370 69450K .......... .......... .......... .......... .......... 54% 117M 1s +2024-04-19T21:15:35Z #15 2.370 69500K .......... .......... .......... .......... .......... 54% 64.6M 1s +2024-04-19T21:15:35Z #15 2.371 69550K .......... .......... .......... .......... .......... 54% 123M 1s +2024-04-19T21:15:35Z #15 2.371 69600K .......... .......... .......... .......... .......... 54% 161M 1s +2024-04-19T21:15:35Z #15 2.371 69650K .......... .......... .......... .......... .......... 54% 110M 1s +2024-04-19T21:15:35Z #15 2.373 69700K .......... .......... .......... .......... .......... 55% 78.4M 1s +2024-04-19T21:15:35Z #15 2.373 69750K .......... .......... .......... .......... .......... 55% 163M 1s +2024-04-19T21:15:35Z #15 2.373 69800K .......... .......... .......... .......... .......... 55% 153M 1s +2024-04-19T21:15:35Z #15 2.373 69850K .......... .......... .......... .......... .......... 55% 71.9M 1s +2024-04-19T21:15:35Z #15 2.374 69900K .......... .......... .......... .......... .......... 55% 165M 1s +2024-04-19T21:15:35Z #15 2.374 69950K .......... .......... .......... .......... .......... 55% 145M 1s +2024-04-19T21:15:35Z #15 2.375 70000K .......... .......... .......... .......... .......... 55% 78.1M 1s +2024-04-19T21:15:35Z #15 2.375 70050K .......... .......... .......... .......... .......... 55% 93.2M 1s +2024-04-19T21:15:35Z #15 2.376 70100K .......... .......... .......... .......... .......... 55% 126M 1s +2024-04-19T21:15:35Z #15 2.376 70150K .......... .......... .......... .......... .......... 55% 171M 1s +2024-04-19T21:15:35Z #15 2.376 70200K .......... .......... .......... .......... .......... 55% 79.0M 1s +2024-04-19T21:15:35Z #15 2.377 70250K .......... .......... .......... .......... .......... 55% 92.0M 1s +2024-04-19T21:15:35Z #15 2.377 70300K .......... .......... .......... .......... .......... 55% 133M 1s +2024-04-19T21:15:35Z #15 2.378 70350K .......... .......... .......... .......... .......... 55% 99.6M 1s +2024-04-19T21:15:35Z #15 2.379 70400K .......... .......... .......... .......... .......... 55% 74.4M 1s +2024-04-19T21:15:35Z #15 2.383 70450K .......... .......... .......... .......... .......... 55% 166M 1s +2024-04-19T21:15:35Z #15 2.383 70500K .......... .......... .......... .......... .......... 55% 152M 1s +2024-04-19T21:15:35Z #15 2.383 70550K .......... .......... .......... .......... .......... 55% 89.6M 1s +2024-04-19T21:15:35Z #15 2.383 70600K .......... .......... .......... .......... .......... 55% 118M 1s +2024-04-19T21:15:35Z #15 2.383 70650K .......... .......... .......... .......... .......... 55% 156M 1s +2024-04-19T21:15:35Z #15 2.383 70700K .......... .......... .......... .......... .......... 55% 65.7M 1s +2024-04-19T21:15:35Z #15 2.383 70750K .......... .......... .......... .......... .......... 55% 132M 1s +2024-04-19T21:15:35Z #15 2.383 70800K .......... .......... .......... .......... .......... 55% 155M 1s +2024-04-19T21:15:35Z #15 2.383 70850K .......... .......... .......... .......... .......... 55% 172M 1s +2024-04-19T21:15:35Z #15 2.383 70900K .......... .......... .......... .......... .......... 55% 26.9M 1s +2024-04-19T21:15:35Z #15 2.384 70950K .......... .......... .......... .......... .......... 56% 19.0M 1s +2024-04-19T21:15:35Z #15 2.391 71000K .......... .......... .......... .......... .......... 56% 103M 1s +2024-04-19T21:15:35Z #15 2.391 71050K .......... .......... .......... .......... .......... 56% 83.7M 1s +2024-04-19T21:15:35Z #15 2.391 71100K .......... .......... .......... .......... .......... 56% 130M 1s +2024-04-19T21:15:35Z #15 2.391 71150K .......... .......... .......... .......... .......... 56% 170M 1s +2024-04-19T21:15:35Z #15 2.391 71200K .......... .......... .......... .......... .......... 56% 64.3M 1s +2024-04-19T21:15:35Z #15 2.391 71250K .......... .......... .......... .......... .......... 56% 166M 1s +2024-04-19T21:15:35Z #15 2.391 71300K .......... .......... .......... .......... .......... 56% 139M 1s +2024-04-19T21:15:35Z #15 2.391 71350K .......... .......... .......... .......... .......... 56% 96.3M 1s +2024-04-19T21:15:35Z #15 2.391 71400K .......... .......... .......... .......... .......... 56% 33.8M 1s +2024-04-19T21:15:35Z #15 2.392 71450K .......... .......... .......... .......... .......... 56% 29.1M 1s +2024-04-19T21:15:35Z #15 2.394 71500K .......... .......... .......... .......... .......... 56% 23.8M 1s +2024-04-19T21:15:35Z #15 2.396 71550K .......... .......... .......... .......... .......... 56% 27.9M 1s +2024-04-19T21:15:35Z #15 2.397 71600K .......... .......... .......... .......... .......... 56% 41.3M 1s +2024-04-19T21:15:35Z #15 2.403 71650K .......... .......... .......... .......... .......... 56% 69.6M 1s +2024-04-19T21:15:35Z #15 2.403 71700K .......... .......... .......... .......... .......... 56% 109M 1s +2024-04-19T21:15:35Z #15 2.403 71750K .......... .......... .......... .......... .......... 56% 170M 1s +2024-04-19T21:15:35Z #15 2.403 71800K .......... .......... .......... .......... .......... 56% 154M 1s +2024-04-19T21:15:35Z #15 2.403 71850K .......... .......... .......... .......... .......... 56% 134M 1s +2024-04-19T21:15:35Z #15 2.403 71900K .......... .......... .......... .......... .......... 56% 81.0M 1s +2024-04-19T21:15:35Z #15 2.403 71950K .......... .......... .......... .......... .......... 56% 134M 1s +2024-04-19T21:15:35Z #15 2.403 72000K .......... .......... .......... .......... .......... 56% 167M 1s +2024-04-19T21:15:35Z #15 2.403 72050K .......... .......... .......... .......... .......... 56% 72.2M 1s +2024-04-19T21:15:35Z #15 2.403 72100K .......... .......... .......... .......... .......... 56% 35.1M 1s +2024-04-19T21:15:35Z #15 2.404 72150K .......... .......... .......... .......... .......... 56% 26.2M 1s +2024-04-19T21:15:35Z #15 2.406 72200K .......... .......... .......... .......... .......... 56% 31.3M 1s +2024-04-19T21:15:35Z #15 2.411 72250K .......... .......... .......... .......... .......... 57% 28.2M 1s +2024-04-19T21:15:35Z #15 2.411 72300K .......... .......... .......... .......... .......... 57% 35.9M 1s +2024-04-19T21:15:35Z #15 2.415 72350K .......... .......... .......... .......... .......... 57% 147M 1s +2024-04-19T21:15:35Z #15 2.415 72400K .......... .......... .......... .......... .......... 57% 169M 1s +2024-04-19T21:15:35Z #15 2.415 72450K .......... .......... .......... .......... .......... 57% 81.9M 1s +2024-04-19T21:15:35Z #15 2.415 72500K .......... .......... .......... .......... .......... 57% 117M 1s +2024-04-19T21:15:35Z #15 2.415 72550K .......... .......... .......... .......... .......... 57% 154M 1s +2024-04-19T21:15:35Z #15 2.415 72600K .......... .......... .......... .......... .......... 57% 73.7M 1s +2024-04-19T21:15:35Z #15 2.415 72650K .......... .......... .......... .......... .......... 57% 161M 1s +2024-04-19T21:15:35Z #15 2.415 72700K .......... .......... .......... .......... .......... 57% 130M 1s +2024-04-19T21:15:35Z #15 2.415 72750K .......... .......... .......... .......... .......... 57% 106M 1s +2024-04-19T21:15:35Z #15 2.415 72800K .......... .......... .......... .......... .......... 57% 145M 1s +2024-04-19T21:15:35Z #15 2.415 72850K .......... .......... .......... .......... .......... 57% 35.8M 1s +2024-04-19T21:15:35Z #15 2.416 72900K .......... .......... .......... .......... .......... 57% 29.5M 1s +2024-04-19T21:15:35Z #15 2.418 72950K .......... .......... .......... .......... .......... 57% 26.0M 1s +2024-04-19T21:15:35Z #15 2.422 73000K .......... .......... .......... .......... .......... 57% 159M 1s +2024-04-19T21:15:35Z #15 2.422 73050K .......... .......... .......... .......... .......... 57% 137M 1s +2024-04-19T21:15:35Z #15 2.422 73100K .......... .......... .......... .......... .......... 57% 129M 1s +2024-04-19T21:15:35Z #15 2.422 73150K .......... .......... .......... .......... .......... 57% 96.6M 1s +2024-04-19T21:15:35Z #15 2.422 73200K .......... .......... .......... .......... .......... 57% 128M 1s +2024-04-19T21:15:35Z #15 2.422 73250K .......... .......... .......... .......... .......... 57% 72.4M 1s +2024-04-19T21:15:35Z #15 2.422 73300K .......... .......... .......... .......... .......... 57% 32.1M 1s +2024-04-19T21:15:35Z #15 2.424 73350K .......... .......... .......... .......... .......... 57% 49.5M 1s +2024-04-19T21:15:35Z #15 2.427 73400K .......... .......... .......... .......... .......... 57% 72.1M 1s +2024-04-19T21:15:35Z #15 2.427 73450K .......... .......... .......... .......... .......... 57% 152M 1s +2024-04-19T21:15:35Z #15 2.427 73500K .......... .......... .......... .......... .......... 58% 123M 1s +2024-04-19T21:15:35Z #15 2.427 73550K .......... .......... .......... .......... .......... 58% 141M 1s +2024-04-19T21:15:35Z #15 2.427 73600K .......... .......... .......... .......... .......... 58% 130M 1s +2024-04-19T21:15:35Z #15 2.427 73650K .......... .......... .......... .......... .......... 58% 24.6M 1s +2024-04-19T21:15:35Z #15 2.431 73700K .......... .......... .......... .......... .......... 58% 104M 1s +2024-04-19T21:15:35Z #15 2.431 73750K .......... .......... .......... .......... .......... 58% 123M 1s +2024-04-19T21:15:35Z #15 2.431 73800K .......... .......... .......... .......... .......... 58% 91.7M 1s +2024-04-19T21:15:35Z #15 2.431 73850K .......... .......... .......... .......... .......... 58% 140M 1s +2024-04-19T21:15:35Z #15 2.431 73900K .......... .......... .......... .......... .......... 58% 47.3M 1s +2024-04-19T21:15:35Z #15 2.432 73950K .......... .......... .......... .......... .......... 58% 9.36M 1s +2024-04-19T21:15:35Z #15 2.439 74000K .......... .......... .......... .......... .......... 58% 168M 1s +2024-04-19T21:15:35Z #15 2.439 74050K .......... .......... .......... .......... .......... 58% 127M 1s +2024-04-19T21:15:35Z #15 2.439 74100K .......... .......... .......... .......... .......... 58% 104M 1s +2024-04-19T21:15:35Z #15 2.439 74150K .......... .......... .......... .......... .......... 58% 92.8M 1s +2024-04-19T21:15:35Z #15 2.439 74200K .......... .......... .......... .......... .......... 58% 157M 1s +2024-04-19T21:15:35Z #15 2.439 74250K .......... .......... .......... .......... .......... 58% 9.64M 1s +2024-04-19T21:15:35Z #15 2.447 74300K .......... .......... .......... .......... .......... 58% 126M 1s +2024-04-19T21:15:35Z #15 2.447 74350K .......... .......... .......... .......... .......... 58% 169M 1s +2024-04-19T21:15:35Z #15 2.447 74400K .......... .......... .......... .......... .......... 58% 72.5M 1s +2024-04-19T21:15:35Z #15 2.447 74450K .......... .......... .......... .......... .......... 58% 162M 1s +2024-04-19T21:15:35Z #15 2.447 74500K .......... .......... .......... .......... .......... 58% 141M 1s +2024-04-19T21:15:35Z #15 2.447 74550K .......... .......... .......... .......... .......... 58% 75.0M 1s +2024-04-19T21:15:35Z #15 2.447 74600K .......... .......... .......... .......... .......... 58% 72.7M 1s +2024-04-19T21:15:35Z #15 2.447 74650K .......... .......... .......... .......... .......... 58% 16.9M 1s +2024-04-19T21:15:35Z #15 2.455 74700K .......... .......... .......... .......... .......... 58% 147M 1s +2024-04-19T21:15:35Z #15 2.455 74750K .......... .......... .......... .......... .......... 58% 82.2M 1s +2024-04-19T21:15:35Z #15 2.455 74800K .......... .......... .......... .......... .......... 59% 174M 1s +2024-04-19T21:15:35Z #15 2.455 74850K .......... .......... .......... .......... .......... 59% 157M 1s +2024-04-19T21:15:35Z #15 2.455 74900K .......... .......... .......... .......... .......... 59% 62.7M 1s +2024-04-19T21:15:35Z #15 2.455 74950K .......... .......... .......... .......... .......... 59% 141M 1s +2024-04-19T21:15:35Z #15 2.455 75000K .......... .......... .......... .......... .......... 59% 181M 1s +2024-04-19T21:15:35Z #15 2.455 75050K .......... .......... .......... .......... .......... 59% 142M 1s +2024-04-19T21:15:35Z #15 2.455 75100K .......... .......... .......... .......... .......... 59% 67.4M 1s +2024-04-19T21:15:35Z #15 2.455 75150K .......... .......... .......... .......... .......... 59% 121M 1s +2024-04-19T21:15:35Z #15 2.455 75200K .......... .......... .......... .......... .......... 59% 171M 1s +2024-04-19T21:15:35Z #15 2.455 75250K .......... .......... .......... .......... .......... 59% 29.3M 1s +2024-04-19T21:15:35Z #15 2.456 75300K .......... .......... .......... .......... .......... 59% 37.1M 1s +2024-04-19T21:15:35Z #15 2.463 75350K .......... .......... .......... .......... .......... 59% 146M 1s +2024-04-19T21:15:35Z #15 2.463 75400K .......... .......... .......... .......... .......... 59% 151M 1s +2024-04-19T21:15:35Z #15 2.463 75450K .......... .......... .......... .......... .......... 59% 94.4M 1s +2024-04-19T21:15:35Z #15 2.463 75500K .......... .......... .......... .......... .......... 59% 151M 1s +2024-04-19T21:15:35Z #15 2.463 75550K .......... .......... .......... .......... .......... 59% 81.7M 1s +2024-04-19T21:15:35Z #15 2.463 75600K .......... .......... .......... .......... .......... 59% 114M 1s +2024-04-19T21:15:35Z #15 2.463 75650K .......... .......... .......... .......... .......... 59% 175M 1s +2024-04-19T21:15:35Z #15 2.463 75700K .......... .......... .......... .......... .......... 59% 153M 1s +2024-04-19T21:15:35Z #15 2.463 75750K .......... .......... .......... .......... .......... 59% 72.0M 1s +2024-04-19T21:15:35Z #15 2.463 75800K .......... .......... .......... .......... .......... 59% 142M 1s +2024-04-19T21:15:35Z #15 2.463 75850K .......... .......... .......... .......... .......... 59% 156M 1s +2024-04-19T21:15:35Z #15 2.463 75900K .......... .......... .......... .......... .......... 59% 155M 1s +2024-04-19T21:15:35Z #15 2.463 75950K .......... .......... .......... .......... .......... 59% 27.0M 1s +2024-04-19T21:15:35Z #15 2.465 76000K .......... .......... .......... .......... .......... 59% 28.6M 1s +2024-04-19T21:15:35Z #15 2.466 76050K .......... .......... .......... .......... .......... 60% 67.5M 1s +2024-04-19T21:15:35Z #15 2.467 76100K .......... .......... .......... .......... .......... 60% 28.9M 1s +2024-04-19T21:15:35Z #15 2.468 76150K .......... .......... .......... .......... .......... 60% 20.6M 1s +2024-04-19T21:15:35Z #15 2.471 76200K .......... .......... .......... .......... .......... 60% 51.8M 1s +2024-04-19T21:15:35Z #15 2.475 76250K .......... .......... .......... .......... .......... 60% 87.1M 1s +2024-04-19T21:15:35Z #15 2.475 76300K .......... .......... .......... .......... .......... 60% 106M 1s +2024-04-19T21:15:35Z #15 2.475 76350K .......... .......... .......... .......... .......... 60% 167M 1s +2024-04-19T21:15:35Z #15 2.475 76400K .......... .......... .......... .......... .......... 60% 124M 1s +2024-04-19T21:15:35Z #15 2.475 76450K .......... .......... .......... .......... .......... 60% 71.5M 1s +2024-04-19T21:15:35Z #15 2.475 76500K .......... .......... .......... .......... .......... 60% 147M 1s +2024-04-19T21:15:35Z #15 2.475 76550K .......... .......... .......... .......... .......... 60% 142M 1s +2024-04-19T21:15:35Z #15 2.475 76600K .......... .......... .......... .......... .......... 60% 19.5M 1s +2024-04-19T21:15:35Z #15 2.479 76650K .......... .......... .......... .......... .......... 60% 141M 1s +2024-04-19T21:15:35Z #15 2.479 76700K .......... .......... .......... .......... .......... 60% 128M 1s +2024-04-19T21:15:35Z #15 2.479 76750K .......... .......... .......... .......... .......... 60% 92.7M 1s +2024-04-19T21:15:35Z #15 2.479 76800K .......... .......... .......... .......... .......... 60% 24.3M 1s +2024-04-19T21:15:35Z #15 2.481 76850K .......... .......... .......... .......... .......... 60% 68.4M 1s +2024-04-19T21:15:35Z #15 2.483 76900K .......... .......... .......... .......... .......... 60% 126M 1s +2024-04-19T21:15:35Z #15 2.483 76950K .......... .......... .......... .......... .......... 60% 87.2M 1s +2024-04-19T21:15:35Z #15 2.483 77000K .......... .......... .......... .......... .......... 60% 101M 1s +2024-04-19T21:15:35Z #15 2.483 77050K .......... .......... .......... .......... .......... 60% 49.9M 1s +2024-04-19T21:15:35Z #15 2.484 77100K .......... .......... .......... .......... .......... 60% 20.7M 1s +2024-04-19T21:15:35Z #15 2.486 77150K .......... .......... .......... .......... .......... 60% 9.43M 1s +2024-04-19T21:15:35Z #15 2.491 77200K .......... .......... .......... .......... .......... 60% 88.7M 1s +2024-04-19T21:15:35Z #15 2.492 77250K .......... .......... .......... .......... .......... 60% 68.3M 1s +2024-04-19T21:15:35Z #15 2.492 77300K .......... .......... .......... .......... .......... 61% 111M 1s +2024-04-19T21:15:35Z #15 2.493 77350K .......... .......... .......... .......... .......... 61% 161M 1s +2024-04-19T21:15:35Z #15 2.493 77400K .......... .......... .......... .......... .......... 61% 149M 1s +2024-04-19T21:15:35Z #15 2.493 77450K .......... .......... .......... .......... .......... 61% 67.7M 1s +2024-04-19T21:15:35Z #15 2.494 77500K .......... .......... .......... .......... .......... 61% 114M 1s +2024-04-19T21:15:35Z #15 2.494 77550K .......... .......... .......... .......... .......... 61% 11.1M 1s +2024-04-19T21:15:35Z #15 2.499 77600K .......... .......... .......... .......... .......... 61% 79.3M 1s +2024-04-19T21:15:35Z #15 2.500 77650K .......... .......... .......... .......... .......... 61% 128M 1s +2024-04-19T21:15:35Z #15 2.500 77700K .......... .......... .......... .......... .......... 61% 110M 1s +2024-04-19T21:15:35Z #15 2.500 77750K .......... .......... .......... .......... .......... 61% 61.0M 1s +2024-04-19T21:15:35Z #15 2.502 77800K .......... .......... .......... .......... .......... 61% 114M 1s +2024-04-19T21:15:35Z #15 2.502 77850K .......... .......... .......... .......... .......... 61% 144M 1s +2024-04-19T21:15:35Z #15 2.502 77900K .......... .......... .......... .......... .......... 61% 109M 1s +2024-04-19T21:15:35Z #15 2.502 77950K .......... .......... .......... .......... .......... 61% 98.6M 1s +2024-04-19T21:15:35Z #15 2.503 78000K .......... .......... .......... .......... .......... 61% 146M 1s +2024-04-19T21:15:35Z #15 2.503 78050K .......... .......... .......... .......... .......... 61% 71.3M 1s +2024-04-19T21:15:35Z #15 2.504 78100K .......... .......... .......... .......... .......... 61% 129M 1s +2024-04-19T21:15:35Z #15 2.504 78150K .......... .......... .......... .......... .......... 61% 141M 1s +2024-04-19T21:15:35Z #15 2.505 78200K .......... .......... .......... .......... .......... 61% 75.9M 1s +2024-04-19T21:15:35Z #15 2.505 78250K .......... .......... .......... .......... .......... 61% 96.2M 1s +2024-04-19T21:15:35Z #15 2.506 78300K .......... .......... .......... .......... .......... 61% 90.6M 1s +2024-04-19T21:15:35Z #15 2.507 78350K .......... .......... .......... .......... .......... 61% 99.8M 1s +2024-04-19T21:15:35Z #15 2.507 78400K .......... .......... .......... .......... .......... 61% 128M 1s +2024-04-19T21:15:35Z #15 2.507 78450K .......... .......... .......... .......... .......... 61% 63.8M 1s +2024-04-19T21:15:35Z #15 2.508 78500K .......... .......... .......... .......... .......... 61% 111M 1s +2024-04-19T21:15:35Z #15 2.509 78550K .......... .......... .......... .......... .......... 61% 68.1M 1s +2024-04-19T21:15:35Z #15 2.509 78600K .......... .......... .......... .......... .......... 62% 148M 1s +2024-04-19T21:15:35Z #15 2.509 78650K .......... .......... .......... .......... .......... 62% 122M 1s +2024-04-19T21:15:35Z #15 2.510 78700K .......... .......... .......... .......... .......... 62% 83.2M 1s +2024-04-19T21:15:35Z #15 2.511 78750K .......... .......... .......... .......... .......... 62% 10.6M 1s +2024-04-19T21:15:35Z #15 2.515 78800K .......... .......... .......... .......... .......... 62% 131M 1s +2024-04-19T21:15:35Z #15 2.515 78850K .......... .......... .......... .......... .......... 62% 121M 1s +2024-04-19T21:15:35Z #15 2.516 78900K .......... .......... .......... .......... .......... 62% 92.2M 1s +2024-04-19T21:15:35Z #15 2.517 78950K .......... .......... .......... .......... .......... 62% 76.8M 1s +2024-04-19T21:15:35Z #15 2.518 79000K .......... .......... .......... .......... .......... 62% 117M 1s +2024-04-19T21:15:35Z #15 2.518 79050K .......... .......... .......... .......... .......... 62% 77.7M 1s +2024-04-19T21:15:35Z #15 2.518 79100K .......... .......... .......... .......... .......... 62% 66.7M 1s +2024-04-19T21:15:35Z #15 2.519 79150K .......... .......... .......... .......... .......... 62% 115M 1s +2024-04-19T21:15:35Z #15 2.520 79200K .......... .......... .......... .......... .......... 62% 105M 1s +2024-04-19T21:15:35Z #15 2.520 79250K .......... .......... .......... .......... .......... 62% 121M 1s +2024-04-19T21:15:35Z #15 2.520 79300K .......... .......... .......... .......... .......... 62% 97.9M 1s +2024-04-19T21:15:35Z #15 2.521 79350K .......... .......... .......... .......... .......... 62% 67.2M 1s +2024-04-19T21:15:35Z #15 2.522 79400K .......... .......... .......... .......... .......... 62% 111M 1s +2024-04-19T21:15:35Z #15 2.522 79450K .......... .......... .......... .......... .......... 62% 109M 1s +2024-04-19T21:15:35Z #15 2.522 79500K .......... .......... .......... .......... .......... 62% 10.3M 1s +2024-04-19T21:15:35Z #15 2.539 79550K .......... .......... .......... .......... .......... 62% 167M 1s +2024-04-19T21:15:35Z #15 2.539 79600K .......... .......... .......... .......... .......... 62% 161M 1s +2024-04-19T21:15:35Z #15 2.539 79650K .......... .......... .......... .......... .......... 62% 77.5M 1s +2024-04-19T21:15:35Z #15 2.539 79700K .......... .......... .......... .......... .......... 62% 142M 1s +2024-04-19T21:15:35Z #15 2.539 79750K .......... .......... .......... .......... .......... 62% 221M 1s +2024-04-19T21:15:35Z #15 2.539 79800K .......... .......... .......... .......... .......... 62% 187M 1s +2024-04-19T21:15:35Z #15 2.539 79850K .......... .......... .......... .......... .......... 63% 120M 1s +2024-04-19T21:15:35Z #15 2.539 79900K .......... .......... .......... .......... .......... 63% 140M 1s +2024-04-19T21:15:35Z #15 2.539 79950K .......... .......... .......... .......... .......... 63% 168M 1s +2024-04-19T21:15:35Z #15 2.539 80000K .......... .......... .......... .......... .......... 63% 179M 1s +2024-04-19T21:15:35Z #15 2.539 80050K .......... .......... .......... .......... .......... 63% 119M 1s +2024-04-19T21:15:35Z #15 2.539 80100K .......... .......... .......... .......... .......... 63% 94.2M 1s +2024-04-19T21:15:35Z #15 2.539 80150K .......... .......... .......... .......... .......... 63% 180M 1s +2024-04-19T21:15:35Z #15 2.539 80200K .......... .......... .......... .......... .......... 63% 142M 1s +2024-04-19T21:15:35Z #15 2.539 80250K .......... .......... .......... .......... .......... 63% 98.6M 1s +2024-04-19T21:15:35Z #15 2.539 80300K .......... .......... .......... .......... .......... 63% 125M 1s +2024-04-19T21:15:35Z #15 2.539 80350K .......... .......... .......... .......... .......... 63% 127M 1s +2024-04-19T21:15:35Z #15 2.539 80400K .......... .......... .......... .......... .......... 63% 137M 1s +2024-04-19T21:15:35Z #15 2.539 80450K .......... .......... .......... .......... .......... 63% 73.0M 1s +2024-04-19T21:15:35Z #15 2.539 80500K .......... .......... .......... .......... .......... 63% 141M 1s +2024-04-19T21:15:35Z #15 2.539 80550K .......... .......... .......... .......... .......... 63% 93.0M 1s +2024-04-19T21:15:35Z #15 2.539 80600K .......... .......... .......... .......... .......... 63% 171M 1s +2024-04-19T21:15:35Z #15 2.539 80650K .......... .......... .......... .......... .......... 63% 128M 1s +2024-04-19T21:15:35Z #15 2.539 80700K .......... .......... .......... .......... .......... 63% 87.1M 1s +2024-04-19T21:15:35Z #15 2.539 80750K .......... .......... .......... .......... .......... 63% 114M 1s +2024-04-19T21:15:35Z #15 2.539 80800K .......... .......... .......... .......... .......... 63% 146M 1s +2024-04-19T21:15:35Z #15 2.539 80850K .......... .......... .......... .......... .......... 63% 148M 1s +2024-04-19T21:15:35Z #15 2.539 80900K .......... .......... .......... .......... .......... 63% 79.9M 1s +2024-04-19T21:15:35Z #15 2.539 80950K .......... .......... .......... .......... .......... 63% 159M 1s +2024-04-19T21:15:35Z #15 2.539 81000K .......... .......... .......... .......... .......... 63% 169M 1s +2024-04-19T21:15:35Z #15 2.539 81050K .......... .......... .......... .......... .......... 63% 65.0M 1s +2024-04-19T21:15:35Z #15 2.541 81100K .......... .......... .......... .......... .......... 64% 87.2M 1s +2024-04-19T21:15:35Z #15 2.541 81150K .......... .......... .......... .......... .......... 64% 116M 1s +2024-04-19T21:15:35Z #15 2.541 81200K .......... .......... .......... .......... .......... 64% 59.9M 1s +2024-04-19T21:15:35Z #15 2.541 81250K .......... .......... .......... .......... .......... 64% 112M 1s +2024-04-19T21:15:35Z #15 2.541 81300K .......... .......... .......... .......... .......... 64% 103M 1s +2024-04-19T21:15:35Z #15 2.542 81350K .......... .......... .......... .......... .......... 64% 56.4M 1s +2024-04-19T21:15:35Z #15 2.543 81400K .......... .......... .......... .......... .......... 64% 123M 1s +2024-04-19T21:15:35Z #15 2.543 81450K .......... .......... .......... .......... .......... 64% 107M 1s +2024-04-19T21:15:35Z #15 2.544 81500K .......... .......... .......... .......... .......... 64% 71.5M 1s +2024-04-19T21:15:35Z #15 2.544 81550K .......... .......... .......... .......... .......... 64% 113M 1s +2024-04-19T21:15:35Z #15 2.545 81600K .......... .......... .......... .......... .......... 64% 65.5M 1s +2024-04-19T21:15:35Z #15 2.546 81650K .......... .......... .......... .......... .......... 64% 102M 1s +2024-04-19T21:15:35Z #15 2.546 81700K .......... .......... .......... .......... .......... 64% 98.0M 1s +2024-04-19T21:15:35Z #15 2.547 81750K .......... .......... .......... .......... .......... 64% 53.5M 1s +2024-04-19T21:15:35Z #15 2.547 81800K .......... .......... .......... .......... .......... 64% 128M 1s +2024-04-19T21:15:35Z #15 2.548 81850K .......... .......... .......... .......... .......... 64% 117M 1s +2024-04-19T21:15:35Z #15 2.548 81900K .......... .......... .......... .......... .......... 64% 66.8M 1s +2024-04-19T21:15:35Z #15 2.549 81950K .......... .......... .......... .......... .......... 64% 91.8M 1s +2024-04-19T21:15:35Z #15 2.549 82000K .......... .......... .......... .......... .......... 64% 128M 1s +2024-04-19T21:15:35Z #15 2.555 82050K .......... .......... .......... .......... .......... 64% 130M 1s +2024-04-19T21:15:35Z #15 2.555 82100K .......... .......... .......... .......... .......... 64% 37.5M 1s +2024-04-19T21:15:35Z #15 2.555 82150K .......... .......... .......... .......... .......... 64% 154M 1s +2024-04-19T21:15:35Z #15 2.555 82200K .......... .......... .......... .......... .......... 64% 91.2M 1s +2024-04-19T21:15:35Z #15 2.555 82250K .......... .......... .......... .......... .......... 64% 122M 1s +2024-04-19T21:15:35Z #15 2.555 82300K .......... .......... .......... .......... .......... 64% 122M 1s +2024-04-19T21:15:35Z #15 2.555 82350K .......... .......... .......... .......... .......... 64% 176M 1s +2024-04-19T21:15:35Z #15 2.555 82400K .......... .......... .......... .......... .......... 65% 71.5M 1s +2024-04-19T21:15:35Z #15 2.555 82450K .......... .......... .......... .......... .......... 65% 129M 1s +2024-04-19T21:15:35Z #15 2.555 82500K .......... .......... .......... .......... .......... 65% 54.4M 1s +2024-04-19T21:15:35Z #15 2.555 82550K .......... .......... .......... .......... .......... 65% 60.5M 1s +2024-04-19T21:15:35Z #15 2.556 82600K .......... .......... .......... .......... .......... 65% 70.0M 1s +2024-04-19T21:15:35Z #15 2.557 82650K .......... .......... .......... .......... .......... 65% 35.2M 1s +2024-04-19T21:15:35Z #15 2.559 82700K .......... .......... .......... .......... .......... 65% 18.1M 1s +2024-04-19T21:15:35Z #15 2.563 82750K .......... .......... .......... .......... .......... 65% 63.8M 1s +2024-04-19T21:15:35Z #15 2.563 82800K .......... .......... .......... .......... .......... 65% 77.7M 1s +2024-04-19T21:15:35Z #15 2.563 82850K .......... .......... .......... .......... .......... 65% 18.9M 1s +2024-04-19T21:15:35Z #15 2.565 82900K .......... .......... .......... .......... .......... 65% 57.8M 1s +2024-04-19T21:15:35Z #15 2.568 82950K .......... .......... .......... .......... .......... 65% 38.0M 1s +2024-04-19T21:15:35Z #15 2.568 83000K .......... .......... .......... .......... .......... 65% 99.8M 1s +2024-04-19T21:15:35Z #15 2.568 83050K .......... .......... .......... .......... .......... 65% 111M 1s +2024-04-19T21:15:35Z #15 2.569 83100K .......... .......... .......... .......... .......... 65% 18.8M 1s +2024-04-19T21:15:35Z #15 2.572 83150K .......... .......... .......... .......... .......... 65% 105M 1s +2024-04-19T21:15:35Z #15 2.572 83200K .......... .......... .......... .......... .......... 65% 23.3M 1s +2024-04-19T21:15:35Z #15 2.573 83250K .......... .......... .......... .......... .......... 65% 59.5M 1s +2024-04-19T21:15:35Z #15 2.579 83300K .......... .......... .......... .......... .......... 65% 106M 1s +2024-04-19T21:15:35Z #15 2.579 83350K .......... .......... .......... .......... .......... 65% 67.7M 1s +2024-04-19T21:15:35Z #15 2.579 83400K .......... .......... .......... .......... .......... 65% 115M 1s +2024-04-19T21:15:35Z #15 2.579 83450K .......... .......... .......... .......... .......... 65% 62.6M 1s +2024-04-19T21:15:35Z #15 2.579 83500K .......... .......... .......... .......... .......... 65% 123M 1s +2024-04-19T21:15:35Z #15 2.579 83550K .......... .......... .......... .......... .......... 65% 79.4M 1s +2024-04-19T21:15:35Z #15 2.579 83600K .......... .......... .......... .......... .......... 65% 75.5M 1s +2024-04-19T21:15:35Z #15 2.579 83650K .......... .......... .......... .......... .......... 66% 123M 1s +2024-04-19T21:15:35Z #15 2.579 83700K .......... .......... .......... .......... .......... 66% 34.0M 1s +2024-04-19T21:15:35Z #15 2.580 83750K .......... .......... .......... .......... .......... 66% 32.3M 1s +2024-04-19T21:15:35Z #15 2.583 83800K .......... .......... .......... .......... .......... 66% 131M 1s +2024-04-19T21:15:35Z #15 2.583 83850K .......... .......... .......... .......... .......... 66% 108M 1s +2024-04-19T21:15:35Z #15 2.583 83900K .......... .......... .......... .......... .......... 66% 15.5M 1s +2024-04-19T21:15:35Z #15 2.586 83950K .......... .......... .......... .......... .......... 66% 42.9M 1s +2024-04-19T21:15:35Z #15 2.591 84000K .......... .......... .......... .......... .......... 66% 62.5M 1s +2024-04-19T21:15:35Z #15 2.591 84050K .......... .......... .......... .......... .......... 66% 86.7M 1s +2024-04-19T21:15:35Z #15 2.591 84100K .......... .......... .......... .......... .......... 66% 99.9M 1s +2024-04-19T21:15:35Z #15 2.591 84150K .......... .......... .......... .......... .......... 66% 69.0M 1s +2024-04-19T21:15:35Z #15 2.591 84200K .......... .......... .......... .......... .......... 66% 94.0M 1s +2024-04-19T21:15:35Z #15 2.591 84250K .......... .......... .......... .......... .......... 66% 135M 1s +2024-04-19T21:15:35Z #15 2.591 84300K .......... .......... .......... .......... .......... 66% 28.4M 1s +2024-04-19T21:15:35Z #15 2.592 84350K .......... .......... .......... .......... .......... 66% 17.9M 1s +2024-04-19T21:15:35Z #15 2.594 84400K .......... .......... .......... .......... .......... 66% 73.6M 1s +2024-04-19T21:15:35Z #15 2.595 84450K .......... .......... .......... .......... .......... 66% 30.3M 1s +2024-04-19T21:15:35Z #15 2.599 84500K .......... .......... .......... .......... .......... 66% 114M 1s +2024-04-19T21:15:35Z #15 2.599 84550K .......... .......... .......... .......... .......... 66% 87.1M 1s +2024-04-19T21:15:35Z #15 2.599 84600K .......... .......... .......... .......... .......... 66% 70.3M 1s +2024-04-19T21:15:35Z #15 2.599 84650K .......... .......... .......... .......... .......... 66% 26.1M 1s +2024-04-19T21:15:35Z #15 2.600 84700K .......... .......... .......... .......... .......... 66% 20.3M 1s +2024-04-19T21:15:35Z #15 2.603 84750K .......... .......... .......... .......... .......... 66% 109M 1s +2024-04-19T21:15:35Z #15 2.603 84800K .......... .......... .......... .......... .......... 66% 61.8M 1s +2024-04-19T21:15:35Z #15 2.604 84850K .......... .......... .......... .......... .......... 66% 108M 1s +2024-04-19T21:15:35Z #15 2.604 84900K .......... .......... .......... .......... .......... 67% 33.0M 1s +2024-04-19T21:15:35Z #15 2.607 84950K .......... .......... .......... .......... .......... 67% 19.6M 1s +2024-04-19T21:15:35Z #15 2.611 85000K .......... .......... .......... .......... .......... 67% 112M 1s +2024-04-19T21:15:35Z #15 2.611 85050K .......... .......... .......... .......... .......... 67% 63.8M 1s +2024-04-19T21:15:35Z #15 2.611 85100K .......... .......... .......... .......... .......... 67% 99.6M 1s +2024-04-19T21:15:35Z #15 2.611 85150K .......... .......... .......... .......... .......... 67% 121M 1s +2024-04-19T21:15:35Z #15 2.611 85200K .......... .......... .......... .......... .......... 67% 18.7M 1s +2024-04-19T21:15:35Z #15 2.614 85250K .......... .......... .......... .......... .......... 67% 20.6M 1s +2024-04-19T21:15:35Z #15 2.619 85300K .......... .......... .......... .......... .......... 67% 123M 1s +2024-04-19T21:15:35Z #15 2.619 85350K .......... .......... .......... .......... .......... 67% 112M 1s +2024-04-19T21:15:35Z #15 2.619 85400K .......... .......... .......... .......... .......... 67% 61.8M 1s +2024-04-19T21:15:35Z #15 2.619 85450K .......... .......... .......... .......... .......... 67% 136M 1s +2024-04-19T21:15:35Z #15 2.619 85500K .......... .......... .......... .......... .......... 67% 116M 1s +2024-04-19T21:15:35Z #15 2.619 85550K .......... .......... .......... .......... .......... 67% 72.7M 1s +2024-04-19T21:15:35Z #15 2.619 85600K .......... .......... .......... .......... .......... 67% 22.3M 1s +2024-04-19T21:15:35Z #15 2.621 85650K .......... .......... .......... .......... .......... 67% 25.5M 1s +2024-04-19T21:15:35Z #15 2.623 85700K .......... .......... .......... .......... .......... 67% 30.9M 1s +2024-04-19T21:15:35Z #15 2.624 85750K .......... .......... .......... .......... .......... 67% 28.4M 1s +2024-04-19T21:15:35Z #15 2.630 85800K .......... .......... .......... .......... .......... 67% 121M 1s +2024-04-19T21:15:35Z #15 2.630 85850K .......... .......... .......... .......... .......... 67% 103M 1s +2024-04-19T21:15:35Z #15 2.630 85900K .......... .......... .......... .......... .......... 67% 65.4M 1s +2024-04-19T21:15:35Z #15 2.630 85950K .......... .......... .......... .......... .......... 67% 129M 1s +2024-04-19T21:15:35Z #15 2.630 86000K .......... .......... .......... .......... .......... 67% 68.9M 1s +2024-04-19T21:15:35Z #15 2.630 86050K .......... .......... .......... .......... .......... 67% 101M 1s +2024-04-19T21:15:35Z #15 2.630 86100K .......... .......... .......... .......... .......... 67% 98.8M 1s +2024-04-19T21:15:35Z #15 2.630 86150K .......... .......... .......... .......... .......... 67% 29.9M 1s +2024-04-19T21:15:35Z #15 2.632 86200K .......... .......... .......... .......... .......... 68% 20.3M 1s +2024-04-19T21:15:35Z #15 2.634 86250K .......... .......... .......... .......... .......... 68% 22.3M 1s +2024-04-19T21:15:35Z #15 2.639 86300K .......... .......... .......... .......... .......... 68% 125M 1s +2024-04-19T21:15:35Z #15 2.639 86350K .......... .......... .......... .......... .......... 68% 109M 1s +2024-04-19T21:15:35Z #15 2.639 86400K .......... .......... .......... .......... .......... 68% 69.4M 1s +2024-04-19T21:15:35Z #15 2.639 86450K .......... .......... .......... .......... .......... 68% 100M 1s +2024-04-19T21:15:35Z #15 2.639 86500K .......... .......... .......... .......... .......... 68% 90.1M 1s +2024-04-19T21:15:35Z #15 2.639 86550K .......... .......... .......... .......... .......... 68% 14.3M 1s +2024-04-19T21:15:35Z #15 2.642 86600K .......... .......... .......... .......... .......... 68% 33.7M 1s +2024-04-19T21:15:35Z #15 2.647 86650K .......... .......... .......... .......... .......... 68% 112M 1s +2024-04-19T21:15:35Z #15 2.647 86700K .......... .......... .......... .......... .......... 68% 59.3M 1s +2024-04-19T21:15:35Z #15 2.647 86750K .......... .......... .......... .......... .......... 68% 111M 1s +2024-04-19T21:15:35Z #15 2.647 86800K .......... .......... .......... .......... .......... 68% 89.4M 1s +2024-04-19T21:15:35Z #15 2.647 86850K .......... .......... .......... .......... .......... 68% 94.2M 1s +2024-04-19T21:15:35Z #15 2.647 86900K .......... .......... .......... .......... .......... 68% 105M 1s +2024-04-19T21:15:35Z #15 2.647 86950K .......... .......... .......... .......... .......... 68% 22.3M 1s +2024-04-19T21:15:35Z #15 2.649 87000K .......... .......... .......... .......... .......... 68% 20.1M 1s +2024-04-19T21:15:35Z #15 2.651 87050K .......... .......... .......... .......... .......... 68% 44.9M 1s +2024-04-19T21:15:35Z #15 2.652 87100K .......... .......... .......... .......... .......... 68% 21.0M 1s +2024-04-19T21:15:35Z #15 2.660 87150K .......... .......... .......... .......... .......... 68% 9.44M 1s +2024-04-19T21:15:35Z #15 2.663 87200K .......... .......... .......... .......... .......... 68% 170M 1s +2024-04-19T21:15:35Z #15 2.663 87250K .......... .......... .......... .......... .......... 68% 134M 1s +2024-04-19T21:15:35Z #15 2.663 87300K .......... .......... .......... .......... .......... 68% 136M 1s +2024-04-19T21:15:35Z #15 2.663 87350K .......... .......... .......... .......... .......... 68% 143M 1s +2024-04-19T21:15:35Z #15 2.663 87400K .......... .......... .......... .......... .......... 68% 156M 1s +2024-04-19T21:15:35Z #15 2.663 87450K .......... .......... .......... .......... .......... 69% 172M 1s +2024-04-19T21:15:35Z #15 2.663 87500K .......... .......... .......... .......... .......... 69% 114M 1s +2024-04-19T21:15:35Z #15 2.663 87550K .......... .......... .......... .......... .......... 69% 160M 1s +2024-04-19T21:15:35Z #15 2.663 87600K .......... .......... .......... .......... .......... 69% 153M 1s +2024-04-19T21:15:35Z #15 2.663 87650K .......... .......... .......... .......... .......... 69% 42.7M 1s +2024-04-19T21:15:35Z #15 2.676 87700K .......... .......... .......... .......... .......... 69% 150M 1s +2024-04-19T21:15:35Z #15 2.676 87750K .......... .......... .......... .......... .......... 69% 159M 1s +2024-04-19T21:15:36Z #15 2.676 87800K .......... .......... .......... .......... .......... 69% 142M 1s +2024-04-19T21:15:36Z #15 2.676 87850K .......... .......... .......... .......... .......... 69% 147M 1s +2024-04-19T21:15:36Z #15 2.676 87900K .......... .......... .......... .......... .......... 69% 111M 1s +2024-04-19T21:15:36Z #15 2.676 87950K .......... .......... .......... .......... .......... 69% 145M 1s +2024-04-19T21:15:36Z #15 2.676 88000K .......... .......... .......... .......... .......... 69% 178M 1s +2024-04-19T21:15:36Z #15 2.676 88050K .......... .......... .......... .......... .......... 69% 150M 1s +2024-04-19T21:15:36Z #15 2.676 88100K .......... .......... .......... .......... .......... 69% 116M 1s +2024-04-19T21:15:36Z #15 2.676 88150K .......... .......... .......... .......... .......... 69% 171M 1s +2024-04-19T21:15:36Z #15 2.676 88200K .......... .......... .......... .......... .......... 69% 179M 1s +2024-04-19T21:15:36Z #15 2.676 88250K .......... .......... .......... .......... .......... 69% 143M 1s +2024-04-19T21:15:36Z #15 2.676 88300K .......... .......... .......... .......... .......... 69% 132M 1s +2024-04-19T21:15:36Z #15 2.676 88350K .......... .......... .......... .......... .......... 69% 174M 1s +2024-04-19T21:15:36Z #15 2.676 88400K .......... .......... .......... .......... .......... 69% 172M 1s +2024-04-19T21:15:36Z #15 2.676 88450K .......... .......... .......... .......... .......... 69% 164M 1s +2024-04-19T21:15:36Z #15 2.676 88500K .......... .......... .......... .......... .......... 69% 130M 1s +2024-04-19T21:15:36Z #15 2.676 88550K .......... .......... .......... .......... .......... 69% 168M 1s +2024-04-19T21:15:36Z #15 2.676 88600K .......... .......... .......... .......... .......... 69% 171M 1s +2024-04-19T21:15:36Z #15 2.676 88650K .......... .......... .......... .......... .......... 69% 174M 1s +2024-04-19T21:15:36Z #15 2.676 88700K .......... .......... .......... .......... .......... 70% 135M 1s +2024-04-19T21:15:36Z #15 2.676 88750K .......... .......... .......... .......... .......... 70% 5.70M 1s +2024-04-19T21:15:36Z #15 2.683 88800K .......... .......... .......... .......... .......... 70% 164M 1s +2024-04-19T21:15:36Z #15 2.683 88850K .......... .......... .......... .......... .......... 70% 160M 1s +2024-04-19T21:15:36Z #15 2.683 88900K .......... .......... .......... .......... .......... 70% 163M 1s +2024-04-19T21:15:36Z #15 2.683 88950K .......... .......... .......... .......... .......... 70% 165M 1s +2024-04-19T21:15:36Z #15 2.683 89000K .......... .......... .......... .......... .......... 70% 179M 1s +2024-04-19T21:15:36Z #15 2.683 89050K .......... .......... .......... .......... .......... 70% 153M 1s +2024-04-19T21:15:36Z #15 2.683 89100K .......... .......... .......... .......... .......... 70% 129M 1s +2024-04-19T21:15:36Z #15 2.683 89150K .......... .......... .......... .......... .......... 70% 165M 1s +2024-04-19T21:15:36Z #15 2.683 89200K .......... .......... .......... .......... .......... 70% 166M 1s +2024-04-19T21:15:36Z #15 2.683 89250K .......... .......... .......... .......... .......... 70% 152M 1s +2024-04-19T21:15:36Z #15 2.683 89300K .......... .......... .......... .......... .......... 70% 149M 1s +2024-04-19T21:15:36Z #15 2.683 89350K .......... .......... .......... .......... .......... 70% 8.50M 1s +2024-04-19T21:15:36Z #15 2.703 89400K .......... .......... .......... .......... .......... 70% 158M 1s +2024-04-19T21:15:36Z #15 2.703 89450K .......... .......... .......... .......... .......... 70% 206M 1s +2024-04-19T21:15:36Z #15 2.703 89500K .......... .......... .......... .......... .......... 70% 147M 1s +2024-04-19T21:15:36Z #15 2.703 89550K .......... .......... .......... .......... .......... 70% 131M 1s +2024-04-19T21:15:36Z #15 2.703 89600K .......... .......... .......... .......... .......... 70% 184M 1s +2024-04-19T21:15:36Z #15 2.703 89650K .......... .......... .......... .......... .......... 70% 184M 1s +2024-04-19T21:15:36Z #15 2.703 89700K .......... .......... .......... .......... .......... 70% 157M 1s +2024-04-19T21:15:36Z #15 2.703 89750K .......... .......... .......... .......... .......... 70% 123M 1s +2024-04-19T21:15:36Z #15 2.703 89800K .......... .......... .......... .......... .......... 70% 171M 1s +2024-04-19T21:15:36Z #15 2.703 89850K .......... .......... .......... .......... .......... 70% 182M 1s +2024-04-19T21:15:36Z #15 2.703 89900K .......... .......... .......... .......... .......... 70% 179M 1s +2024-04-19T21:15:36Z #15 2.703 89950K .......... .......... .......... .......... .......... 70% 131M 1s +2024-04-19T21:15:36Z #15 2.703 90000K .......... .......... .......... .......... .......... 71% 153M 1s +2024-04-19T21:15:36Z #15 2.703 90050K .......... .......... .......... .......... .......... 71% 183M 1s +2024-04-19T21:15:36Z #15 2.703 90100K .......... .......... .......... .......... .......... 71% 188M 1s +2024-04-19T21:15:36Z #15 2.703 90150K .......... .......... .......... .......... .......... 71% 128M 1s +2024-04-19T21:15:36Z #15 2.703 90200K .......... .......... .......... .......... .......... 71% 155M 1s +2024-04-19T21:15:36Z #15 2.703 90250K .......... .......... .......... .......... .......... 71% 51.4M 1s +2024-04-19T21:15:36Z #15 2.703 90300K .......... .......... .......... .......... .......... 71% 106M 1s +2024-04-19T21:15:36Z #15 2.703 90350K .......... .......... .......... .......... .......... 71% 166M 1s +2024-04-19T21:15:36Z #15 2.703 90400K .......... .......... .......... .......... .......... 71% 182M 1s +2024-04-19T21:15:36Z #15 2.703 90450K .......... .......... .......... .......... .......... 71% 124M 0s +2024-04-19T21:15:36Z #15 2.703 90500K .......... .......... .......... .......... .......... 71% 167M 0s +2024-04-19T21:15:36Z #15 2.703 90550K .......... .......... .......... .......... .......... 71% 176M 0s +2024-04-19T21:15:36Z #15 2.703 90600K .......... .......... .......... .......... .......... 71% 141M 0s +2024-04-19T21:15:36Z #15 2.703 90650K .......... .......... .......... .......... .......... 71% 116M 0s +2024-04-19T21:15:36Z #15 2.703 90700K .......... .......... .......... .......... .......... 71% 90.8M 0s +2024-04-19T21:15:36Z #15 2.703 90750K .......... .......... .......... .......... .......... 71% 125M 0s +2024-04-19T21:15:36Z #15 2.703 90800K .......... .......... .......... .......... .......... 71% 152M 0s +2024-04-19T21:15:36Z #15 2.703 90850K .......... .......... .......... .......... .......... 71% 120M 0s +2024-04-19T21:15:36Z #15 2.703 90900K .......... .......... .......... .......... .......... 71% 154M 0s +2024-04-19T21:15:36Z #15 2.703 90950K .......... .......... .......... .......... .......... 71% 169M 0s +2024-04-19T21:15:36Z #15 2.703 91000K .......... .......... .......... .......... .......... 71% 123M 0s +2024-04-19T21:15:36Z #15 2.703 91050K .......... .......... .......... .......... .......... 71% 140M 0s +2024-04-19T21:15:36Z #15 2.703 91100K .......... .......... .......... .......... .......... 71% 170M 0s +2024-04-19T21:15:36Z #15 2.703 91150K .......... .......... .......... .......... .......... 71% 149M 0s +2024-04-19T21:15:36Z #15 2.703 91200K .......... .......... .......... .......... .......... 71% 141M 0s +2024-04-19T21:15:36Z #15 2.703 91250K .......... .......... .......... .......... .......... 72% 136M 0s +2024-04-19T21:15:36Z #15 2.703 91300K .......... .......... .......... .......... .......... 72% 166M 0s +2024-04-19T21:15:36Z #15 2.703 91350K .......... .......... .......... .......... .......... 72% 119M 0s +2024-04-19T21:15:36Z #15 2.703 91400K .......... .......... .......... .......... .......... 72% 135M 0s +2024-04-19T21:15:36Z #15 2.703 91450K .......... .......... .......... .......... .......... 72% 93.5M 0s +2024-04-19T21:15:36Z #15 2.711 91500K .......... .......... .......... .......... .......... 72% 136M 0s +2024-04-19T21:15:36Z #15 2.711 91550K .......... .......... .......... .......... .......... 72% 108M 0s +2024-04-19T21:15:36Z #15 2.711 91600K .......... .......... .......... .......... .......... 72% 83.8M 0s +2024-04-19T21:15:36Z #15 2.711 91650K .......... .......... .......... .......... .......... 72% 161M 0s +2024-04-19T21:15:36Z #15 2.711 91700K .......... .......... .......... .......... .......... 72% 54.3M 0s +2024-04-19T21:15:36Z #15 2.711 91750K .......... .......... .......... .......... .......... 72% 67.3M 0s +2024-04-19T21:15:36Z #15 2.711 91800K .......... .......... .......... .......... .......... 72% 65.3M 0s +2024-04-19T21:15:36Z #15 2.711 91850K .......... .......... .......... .......... .......... 72% 76.2M 0s +2024-04-19T21:15:36Z #15 2.711 91900K .......... .......... .......... .......... .......... 72% 82.7M 0s +2024-04-19T21:15:36Z #15 2.711 91950K .......... .......... .......... .......... .......... 72% 86.6M 0s +2024-04-19T21:15:36Z #15 2.711 92000K .......... .......... .......... .......... .......... 72% 66.1M 0s +2024-04-19T21:15:36Z #15 2.711 92050K .......... .......... .......... .......... .......... 72% 105M 0s +2024-04-19T21:15:36Z #15 2.711 92100K .......... .......... .......... .......... .......... 72% 121M 0s +2024-04-19T21:15:36Z #15 2.711 92150K .......... .......... .......... .......... .......... 72% 83.3M 0s +2024-04-19T21:15:36Z #15 2.711 92200K .......... .......... .......... .......... .......... 72% 50.2M 0s +2024-04-19T21:15:36Z #15 2.712 92250K .......... .......... .......... .......... .......... 72% 84.7M 0s +2024-04-19T21:15:36Z #15 2.713 92300K .......... .......... .......... .......... .......... 72% 75.9M 0s +2024-04-19T21:15:36Z #15 2.714 92350K .......... .......... .......... .......... .......... 72% 64.3M 0s +2024-04-19T21:15:36Z #15 2.714 92400K .......... .......... .......... .......... .......... 72% 50.5M 0s +2024-04-19T21:15:36Z #15 2.716 92450K .......... .......... .......... .......... .......... 72% 126M 0s +2024-04-19T21:15:36Z #15 2.716 92500K .......... .......... .......... .......... .......... 72% 63.2M 0s +2024-04-19T21:15:36Z #15 2.716 92550K .......... .......... .......... .......... .......... 73% 70.7M 0s +2024-04-19T21:15:36Z #15 2.717 92600K .......... .......... .......... .......... .......... 73% 51.7M 0s +2024-04-19T21:15:36Z #15 2.718 92650K .......... .......... .......... .......... .......... 73% 80.2M 0s +2024-04-19T21:15:36Z #15 2.719 92700K .......... .......... .......... .......... .......... 73% 46.8M 0s +2024-04-19T21:15:36Z #15 2.720 92750K .......... .......... .......... .......... .......... 73% 52.0M 0s +2024-04-19T21:15:36Z #15 2.721 92800K .......... .......... .......... .......... .......... 73% 42.7M 0s +2024-04-19T21:15:36Z #15 2.722 92850K .......... .......... .......... .......... .......... 73% 45.0M 0s +2024-04-19T21:15:36Z #15 2.723 92900K .......... .......... .......... .......... .......... 73% 100M 0s +2024-04-19T21:15:36Z #15 2.723 92950K .......... .......... .......... .......... .......... 73% 115M 0s +2024-04-19T21:15:36Z #15 2.724 93000K .......... .......... .......... .......... .......... 73% 101M 0s +2024-04-19T21:15:36Z #15 2.725 93050K .......... .......... .......... .......... .......... 73% 53.5M 0s +2024-04-19T21:15:36Z #15 2.725 93100K .......... .......... .......... .......... .......... 73% 68.2M 0s +2024-04-19T21:15:36Z #15 2.726 93150K .......... .......... .......... .......... .......... 73% 51.4M 0s +2024-04-19T21:15:36Z #15 2.727 93200K .......... .......... .......... .......... .......... 73% 70.6M 0s +2024-04-19T21:15:36Z #15 2.728 93250K .......... .......... .......... .......... .......... 73% 46.5M 0s +2024-04-19T21:15:36Z #15 2.729 93300K .......... .......... .......... .......... .......... 73% 69.1M 0s +2024-04-19T21:15:36Z #15 2.730 93350K .......... .......... .......... .......... .......... 73% 61.1M 0s +2024-04-19T21:15:36Z #15 2.730 93400K .......... .......... .......... .......... .......... 73% 110M 0s +2024-04-19T21:15:36Z #15 2.730 93450K .......... .......... .......... .......... .......... 73% 60.3M 0s +2024-04-19T21:15:36Z #15 2.731 93500K .......... .......... .......... .......... .......... 73% 57.8M 0s +2024-04-19T21:15:36Z #15 2.732 93550K .......... .......... .......... .......... .......... 73% 96.6M 0s +2024-04-19T21:15:36Z #15 2.733 93600K .......... .......... .......... .......... .......... 73% 110M 0s +2024-04-19T21:15:36Z #15 2.733 93650K .......... .......... .......... .......... .......... 73% 117M 0s +2024-04-19T21:15:36Z #15 2.733 93700K .......... .......... .......... .......... .......... 73% 132M 0s +2024-04-19T21:15:36Z #15 2.734 93750K .......... .......... .......... .......... .......... 73% 131M 0s +2024-04-19T21:15:36Z #15 2.739 93800K .......... .......... .......... .......... .......... 74% 60.5M 0s +2024-04-19T21:15:36Z #15 2.739 93850K .......... .......... .......... .......... .......... 74% 144M 0s +2024-04-19T21:15:36Z #15 2.739 93900K .......... .......... .......... .......... .......... 74% 160M 0s +2024-04-19T21:15:36Z #15 2.739 93950K .......... .......... .......... .......... .......... 74% 150M 0s +2024-04-19T21:15:36Z #15 2.739 94000K .......... .......... .......... .......... .......... 74% 130M 0s +2024-04-19T21:15:36Z #15 2.739 94050K .......... .......... .......... .......... .......... 74% 154M 0s +2024-04-19T21:15:36Z #15 2.739 94100K .......... .......... .......... .......... .......... 74% 165M 0s +2024-04-19T21:15:36Z #15 2.739 94150K .......... .......... .......... .......... .......... 74% 155M 0s +2024-04-19T21:15:36Z #15 2.739 94200K .......... .......... .......... .......... .......... 74% 113M 0s +2024-04-19T21:15:36Z #15 2.739 94250K .......... .......... .......... .......... .......... 74% 159M 0s +2024-04-19T21:15:36Z #15 2.739 94300K .......... .......... .......... .......... .......... 74% 163M 0s +2024-04-19T21:15:36Z #15 2.739 94350K .......... .......... .......... .......... .......... 74% 161M 0s +2024-04-19T21:15:36Z #15 2.739 94400K .......... .......... .......... .......... .......... 74% 61.5M 0s +2024-04-19T21:15:36Z #15 2.740 94450K .......... .......... .......... .......... .......... 74% 32.3M 0s +2024-04-19T21:15:36Z #15 2.741 94500K .......... .......... .......... .......... .......... 74% 116M 0s +2024-04-19T21:15:36Z #15 2.741 94550K .......... .......... .......... .......... .......... 74% 39.0M 0s +2024-04-19T21:15:36Z #15 2.743 94600K .......... .......... .......... .......... .......... 74% 88.0M 0s +2024-04-19T21:15:36Z #15 2.743 94650K .......... .......... .......... .......... .......... 74% 123M 0s +2024-04-19T21:15:36Z #15 2.744 94700K .......... .......... .......... .......... .......... 74% 95.5M 0s +2024-04-19T21:15:36Z #15 2.744 94750K .......... .......... .......... .......... .......... 74% 148M 0s +2024-04-19T21:15:36Z #15 2.744 94800K .......... .......... .......... .......... .......... 74% 119M 0s +2024-04-19T21:15:36Z #15 2.747 94850K .......... .......... .......... .......... .......... 74% 66.6M 0s +2024-04-19T21:15:36Z #15 2.747 94900K .......... .......... .......... .......... .......... 74% 140M 0s +2024-04-19T21:15:36Z #15 2.747 94950K .......... .......... .......... .......... .......... 74% 152M 0s +2024-04-19T21:15:36Z #15 2.747 95000K .......... .......... .......... .......... .......... 74% 157M 0s +2024-04-19T21:15:36Z #15 2.747 95050K .......... .......... .......... .......... .......... 75% 63.6M 0s +2024-04-19T21:15:36Z #15 2.747 95100K .......... .......... .......... .......... .......... 75% 60.4M 0s +2024-04-19T21:15:36Z #15 2.748 95150K .......... .......... .......... .......... .......... 75% 79.0M 0s +2024-04-19T21:15:36Z #15 2.749 95200K .......... .......... .......... .......... .......... 75% 40.1M 0s +2024-04-19T21:15:36Z #15 2.750 95250K .......... .......... .......... .......... .......... 75% 110M 0s +2024-04-19T21:15:36Z #15 2.750 95300K .......... .......... .......... .......... .......... 75% 60.7M 0s +2024-04-19T21:15:36Z #15 2.751 95350K .......... .......... .......... .......... .......... 75% 64.3M 0s +2024-04-19T21:15:36Z #15 2.752 95400K .......... .......... .......... .......... .......... 75% 59.4M 0s +2024-04-19T21:15:36Z #15 2.753 95450K .......... .......... .......... .......... .......... 75% 93.0M 0s +2024-04-19T21:15:36Z #15 2.754 95500K .......... .......... .......... .......... .......... 75% 90.5M 0s +2024-04-19T21:15:36Z #15 2.754 95550K .......... .......... .......... .......... .......... 75% 58.8M 0s +2024-04-19T21:15:36Z #15 2.755 95600K .......... .......... .......... .......... .......... 75% 48.4M 0s +2024-04-19T21:15:36Z #15 2.756 95650K .......... .......... .......... .......... .......... 75% 119M 0s +2024-04-19T21:15:36Z #15 2.756 95700K .......... .......... .......... .......... .......... 75% 48.7M 0s +2024-04-19T21:15:36Z #15 2.759 95750K .......... .......... .......... .......... .......... 75% 80.3M 0s +2024-04-19T21:15:36Z #15 2.759 95800K .......... .......... .......... .......... .......... 75% 174M 0s +2024-04-19T21:15:36Z #15 2.759 95850K .......... .......... .......... .......... .......... 75% 152M 0s +2024-04-19T21:15:36Z #15 2.759 95900K .......... .......... .......... .......... .......... 75% 90.7M 0s +2024-04-19T21:15:36Z #15 2.759 95950K .......... .......... .......... .......... .......... 75% 112M 0s +2024-04-19T21:15:36Z #15 2.759 96000K .......... .......... .......... .......... .......... 75% 126M 0s +2024-04-19T21:15:36Z #15 2.760 96050K .......... .......... .......... .......... .......... 75% 115M 0s +2024-04-19T21:15:36Z #15 2.760 96100K .......... .......... .......... .......... .......... 75% 113M 0s +2024-04-19T21:15:36Z #15 2.760 96150K .......... .......... .......... .......... .......... 75% 109M 0s +2024-04-19T21:15:36Z #15 2.761 96200K .......... .......... .......... .......... .......... 75% 103M 0s +2024-04-19T21:15:36Z #15 2.762 96250K .......... .......... .......... .......... .......... 75% 98.6M 0s +2024-04-19T21:15:36Z #15 2.762 96300K .......... .......... .......... .......... .......... 75% 134M 0s +2024-04-19T21:15:36Z #15 2.762 96350K .......... .......... .......... .......... .......... 76% 115M 0s +2024-04-19T21:15:36Z #15 2.763 96400K .......... .......... .......... .......... .......... 76% 120M 0s +2024-04-19T21:15:36Z #15 2.763 96450K .......... .......... .......... .......... .......... 76% 107M 0s +2024-04-19T21:15:36Z #15 2.764 96500K .......... .......... .......... .......... .......... 76% 106M 0s +2024-04-19T21:15:36Z #15 2.764 96550K .......... .......... .......... .......... .......... 76% 113M 0s +2024-04-19T21:15:36Z #15 2.765 96600K .......... .......... .......... .......... .......... 76% 128M 0s +2024-04-19T21:15:36Z #15 2.765 96650K .......... .......... .......... .......... .......... 76% 85.5M 0s +2024-04-19T21:15:36Z #15 2.765 96700K .......... .......... .......... .......... .......... 76% 108M 0s +2024-04-19T21:15:36Z #15 2.766 96750K .......... .......... .......... .......... .......... 76% 114M 0s +2024-04-19T21:15:36Z #15 2.766 96800K .......... .......... .......... .......... .......... 76% 105M 0s +2024-04-19T21:15:36Z #15 2.767 96850K .......... .......... .......... .......... .......... 76% 107M 0s +2024-04-19T21:15:36Z #15 2.771 96900K .......... .......... .......... .......... .......... 76% 54.7M 0s +2024-04-19T21:15:36Z #15 2.771 96950K .......... .......... .......... .......... .......... 76% 36.9M 0s +2024-04-19T21:15:36Z #15 2.771 97000K .......... .......... .......... .......... .......... 76% 150M 0s +2024-04-19T21:15:36Z #15 2.771 97050K .......... .......... .......... .......... .......... 76% 144M 0s +2024-04-19T21:15:36Z #15 2.771 97100K .......... .......... .......... .......... .......... 76% 160M 0s +2024-04-19T21:15:36Z #15 2.771 97150K .......... .......... .......... .......... .......... 76% 97.4M 0s +2024-04-19T21:15:36Z #15 2.771 97200K .......... .......... .......... .......... .......... 76% 57.3M 0s +2024-04-19T21:15:36Z #15 2.772 97250K .......... .......... .......... .......... .......... 76% 50.5M 0s +2024-04-19T21:15:36Z #15 2.773 97300K .......... .......... .......... .......... .......... 76% 123M 0s +2024-04-19T21:15:36Z #15 2.774 97350K .......... .......... .......... .......... .......... 76% 136M 0s +2024-04-19T21:15:36Z #15 2.774 97400K .......... .......... .......... .......... .......... 76% 88.4M 0s +2024-04-19T21:15:36Z #15 2.774 97450K .......... .......... .......... .......... .......... 76% 108M 0s +2024-04-19T21:15:36Z #15 2.775 97500K .......... .......... .......... .......... .......... 76% 94.5M 0s +2024-04-19T21:15:36Z #15 2.775 97550K .......... .......... .......... .......... .......... 76% 125M 0s +2024-04-19T21:15:36Z #15 2.775 97600K .......... .......... .......... .......... .......... 77% 121M 0s +2024-04-19T21:15:36Z #15 2.776 97650K .......... .......... .......... .......... .......... 77% 137M 0s +2024-04-19T21:15:36Z #15 2.776 97700K .......... .......... .......... .......... .......... 77% 101M 0s +2024-04-19T21:15:36Z #15 2.777 97750K .......... .......... .......... .......... .......... 77% 128M 0s +2024-04-19T21:15:36Z #15 2.777 97800K .......... .......... .......... .......... .......... 77% 118M 0s +2024-04-19T21:15:36Z #15 2.777 97850K .......... .......... .......... .......... .......... 77% 150M 0s +2024-04-19T21:15:36Z #15 2.778 97900K .......... .......... .......... .......... .......... 77% 95.3M 0s +2024-04-19T21:15:36Z #15 2.778 97950K .......... .......... .......... .......... .......... 77% 102M 0s +2024-04-19T21:15:36Z #15 2.784 98000K .......... .......... .......... .......... .......... 77% 53.1M 0s +2024-04-19T21:15:36Z #15 2.784 98050K .......... .......... .......... .......... .......... 77% 151M 0s +2024-04-19T21:15:36Z #15 2.784 98100K .......... .......... .......... .......... .......... 77% 140M 0s +2024-04-19T21:15:36Z #15 2.784 98150K .......... .......... .......... .......... .......... 77% 148M 0s +2024-04-19T21:15:36Z #15 2.784 98200K .......... .......... .......... .......... .......... 77% 155M 0s +2024-04-19T21:15:36Z #15 2.784 98250K .......... .......... .......... .......... .......... 77% 127M 0s +2024-04-19T21:15:36Z #15 2.784 98300K .......... .......... .......... .......... .......... 77% 139M 0s +2024-04-19T21:15:36Z #15 2.784 98350K .......... .......... .......... .......... .......... 77% 145M 0s +2024-04-19T21:15:36Z #15 2.784 98400K .......... .......... .......... .......... .......... 77% 142M 0s +2024-04-19T21:15:36Z #15 2.784 98450K .......... .......... .......... .......... .......... 77% 125M 0s +2024-04-19T21:15:36Z #15 2.784 98500K .......... .......... .......... .......... .......... 77% 33.4M 0s +2024-04-19T21:15:36Z #15 2.784 98550K .......... .......... .......... .......... .......... 77% 44.6M 0s +2024-04-19T21:15:36Z #15 2.785 98600K .......... .......... .......... .......... .......... 77% 72.0M 0s +2024-04-19T21:15:36Z #15 2.786 98650K .......... .......... .......... .......... .......... 77% 93.2M 0s +2024-04-19T21:15:36Z #15 2.787 98700K .......... .......... .......... .......... .......... 77% 126M 0s +2024-04-19T21:15:36Z #15 2.787 98750K .......... .......... .......... .......... .......... 77% 64.5M 0s +2024-04-19T21:15:36Z #15 2.788 98800K .......... .......... .......... .......... .......... 77% 51.3M 0s +2024-04-19T21:15:36Z #15 2.789 98850K .......... .......... .......... .......... .......... 78% 54.1M 0s +2024-04-19T21:15:36Z #15 2.790 98900K .......... .......... .......... .......... .......... 78% 101M 0s +2024-04-19T21:15:36Z #15 2.790 98950K .......... .......... .......... .......... .......... 78% 106M 0s +2024-04-19T21:15:36Z #15 2.790 99000K .......... .......... .......... .......... .......... 78% 41.3M 0s +2024-04-19T21:15:36Z #15 2.793 99050K .......... .......... .......... .......... .......... 78% 171M 0s +2024-04-19T21:15:36Z #15 2.793 99100K .......... .......... .......... .......... .......... 78% 153M 0s +2024-04-19T21:15:36Z #15 2.793 99150K .......... .......... .......... .......... .......... 78% 168M 0s +2024-04-19T21:15:36Z #15 2.793 99200K .......... .......... .......... .......... .......... 78% 97.0M 0s +2024-04-19T21:15:36Z #15 2.793 99250K .......... .......... .......... .......... .......... 78% 103M 0s +2024-04-19T21:15:36Z #15 2.794 99300K .......... .......... .......... .......... .......... 78% 87.0M 0s +2024-04-19T21:15:36Z #15 2.795 99350K .......... .......... .......... .......... .......... 78% 40.0M 0s +2024-04-19T21:15:36Z #15 2.795 99400K .......... .......... .......... .......... .......... 78% 112M 0s +2024-04-19T21:15:36Z #15 2.796 99450K .......... .......... .......... .......... .......... 78% 126M 0s +2024-04-19T21:15:36Z #15 2.800 99500K .......... .......... .......... .......... .......... 78% 112M 0s +2024-04-19T21:15:36Z #15 2.800 99550K .......... .......... .......... .......... .......... 78% 148M 0s +2024-04-19T21:15:36Z #15 2.800 99600K .......... .......... .......... .......... .......... 78% 164M 0s +2024-04-19T21:15:36Z #15 2.800 99650K .......... .......... .......... .......... .......... 78% 148M 0s +2024-04-19T21:15:36Z #15 2.800 99700K .......... .......... .......... .......... .......... 78% 140M 0s +2024-04-19T21:15:36Z #15 2.800 99750K .......... .......... .......... .......... .......... 78% 143M 0s +2024-04-19T21:15:36Z #15 2.800 99800K .......... .......... .......... .......... .......... 78% 126M 0s +2024-04-19T21:15:36Z #15 2.800 99850K .......... .......... .......... .......... .......... 78% 71.0M 0s +2024-04-19T21:15:36Z #15 2.800 99900K .......... .......... .......... .......... .......... 78% 90.9M 0s +2024-04-19T21:15:36Z #15 2.800 99950K .......... .......... .......... .......... .......... 78% 79.2M 0s +2024-04-19T21:15:36Z #15 2.801 100000K .......... .......... .......... .......... .......... 78% 120M 0s +2024-04-19T21:15:36Z #15 2.801 100050K .......... .......... .......... .......... .......... 78% 153M 0s +2024-04-19T21:15:36Z #15 2.801 100100K .......... .......... .......... .......... .......... 78% 155M 0s +2024-04-19T21:15:36Z #15 2.802 100150K .......... .......... .......... .......... .......... 79% 146M 0s +2024-04-19T21:15:36Z #15 2.802 100200K .......... .......... .......... .......... .......... 79% 140M 0s +2024-04-19T21:15:36Z #15 2.802 100250K .......... .......... .......... .......... .......... 79% 136M 0s +2024-04-19T21:15:36Z #15 2.803 100300K .......... .......... .......... .......... .......... 79% 125M 0s +2024-04-19T21:15:36Z #15 2.803 100350K .......... .......... .......... .......... .......... 79% 149M 0s +2024-04-19T21:15:36Z #15 2.803 100400K .......... .......... .......... .......... .......... 79% 144M 0s +2024-04-19T21:15:36Z #15 2.804 100450K .......... .......... .......... .......... .......... 79% 135M 0s +2024-04-19T21:15:36Z #15 2.804 100500K .......... .......... .......... .......... .......... 79% 106M 0s +2024-04-19T21:15:36Z #15 2.811 100550K .......... .......... .......... .......... .......... 79% 122M 0s +2024-04-19T21:15:36Z #15 2.811 100600K .......... .......... .......... .......... .......... 79% 124M 0s +2024-04-19T21:15:36Z #15 2.811 100650K .......... .......... .......... .......... .......... 79% 152M 0s +2024-04-19T21:15:36Z #15 2.811 100700K .......... .......... .......... .......... .......... 79% 132M 0s +2024-04-19T21:15:36Z #15 2.811 100750K .......... .......... .......... .......... .......... 79% 159M 0s +2024-04-19T21:15:36Z #15 2.811 100800K .......... .......... .......... .......... .......... 79% 172M 0s +2024-04-19T21:15:36Z #15 2.811 100850K .......... .......... .......... .......... .......... 79% 121M 0s +2024-04-19T21:15:36Z #15 2.811 100900K .......... .......... .......... .......... .......... 79% 125M 0s +2024-04-19T21:15:36Z #15 2.811 100950K .......... .......... .......... .......... .......... 79% 151M 0s +2024-04-19T21:15:36Z #15 2.811 101000K .......... .......... .......... .......... .......... 79% 156M 0s +2024-04-19T21:15:36Z #15 2.811 101050K .......... .......... .......... .......... .......... 79% 144M 0s +2024-04-19T21:15:36Z #15 2.811 101100K .......... .......... .......... .......... .......... 79% 157M 0s +2024-04-19T21:15:36Z #15 2.811 101150K .......... .......... .......... .......... .......... 79% 142M 0s +2024-04-19T21:15:36Z #15 2.811 101200K .......... .......... .......... .......... .......... 79% 135M 0s +2024-04-19T21:15:36Z #15 2.811 101250K .......... .......... .......... .......... .......... 79% 147M 0s +2024-04-19T21:15:36Z #15 2.811 101300K .......... .......... .......... .......... .......... 79% 166M 0s +2024-04-19T21:15:36Z #15 2.811 101350K .......... .......... .......... .......... .......... 79% 141M 0s +2024-04-19T21:15:36Z #15 2.811 101400K .......... .......... .......... .......... .......... 80% 125M 0s +2024-04-19T21:15:36Z #15 2.811 101450K .......... .......... .......... .......... .......... 80% 38.2M 0s +2024-04-19T21:15:36Z #15 2.812 101500K .......... .......... .......... .......... .......... 80% 113M 0s +2024-04-19T21:15:36Z #15 2.812 101550K .......... .......... .......... .......... .......... 80% 123M 0s +2024-04-19T21:15:36Z #15 2.813 101600K .......... .......... .......... .......... .......... 80% 108M 0s +2024-04-19T21:15:36Z #15 2.813 101650K .......... .......... .......... .......... .......... 80% 97.8M 0s +2024-04-19T21:15:36Z #15 2.816 101700K .......... .......... .......... .......... .......... 80% 86.2M 0s +2024-04-19T21:15:36Z #15 2.816 101750K .......... .......... .......... .......... .......... 80% 68.9M 0s +2024-04-19T21:15:36Z #15 2.816 101800K .......... .......... .......... .......... .......... 80% 106M 0s +2024-04-19T21:15:36Z #15 2.816 101850K .......... .......... .......... .......... .......... 80% 148M 0s +2024-04-19T21:15:36Z #15 2.817 101900K .......... .......... .......... .......... .......... 80% 66.5M 0s +2024-04-19T21:15:36Z #15 2.817 101950K .......... .......... .......... .......... .......... 80% 52.9M 0s +2024-04-19T21:15:36Z #15 2.818 102000K .......... .......... .......... .......... .......... 80% 59.9M 0s +2024-04-19T21:15:36Z #15 2.818 102050K .......... .......... .......... .......... .......... 80% 145M 0s +2024-04-19T21:15:36Z #15 2.819 102100K .......... .......... .......... .......... .......... 80% 87.7M 0s +2024-04-19T21:15:36Z #15 2.819 102150K .......... .......... .......... .......... .......... 80% 106M 0s +2024-04-19T21:15:36Z #15 2.820 102200K .......... .......... .......... .......... .......... 80% 124M 0s +2024-04-19T21:15:36Z #15 2.820 102250K .......... .......... .......... .......... .......... 80% 107M 0s +2024-04-19T21:15:36Z #15 2.821 102300K .......... .......... .......... .......... .......... 80% 134M 0s +2024-04-19T21:15:36Z #15 2.821 102350K .......... .......... .......... .......... .......... 80% 116M 0s +2024-04-19T21:15:36Z #15 2.821 102400K .......... .......... .......... .......... .......... 80% 124M 0s +2024-04-19T21:15:36Z #15 2.822 102450K .......... .......... .......... .......... .......... 80% 119M 0s +2024-04-19T21:15:36Z #15 2.822 102500K .......... .......... .......... .......... .......... 80% 120M 0s +2024-04-19T21:15:36Z #15 2.822 102550K .......... .......... .......... .......... .......... 80% 48.0M 0s +2024-04-19T21:15:36Z #15 2.827 102600K .......... .......... .......... .......... .......... 80% 158M 0s +2024-04-19T21:15:36Z #15 2.827 102650K .......... .......... .......... .......... .......... 81% 148M 0s +2024-04-19T21:15:36Z #15 2.827 102700K .......... .......... .......... .......... .......... 81% 142M 0s +2024-04-19T21:15:36Z #15 2.827 102750K .......... .......... .......... .......... .......... 81% 135M 0s +2024-04-19T21:15:36Z #15 2.827 102800K .......... .......... .......... .......... .......... 81% 126M 0s +2024-04-19T21:15:36Z #15 2.827 102850K .......... .......... .......... .......... .......... 81% 165M 0s +2024-04-19T21:15:36Z #15 2.827 102900K .......... .......... .......... .......... .......... 81% 154M 0s +2024-04-19T21:15:36Z #15 2.827 102950K .......... .......... .......... .......... .......... 81% 155M 0s +2024-04-19T21:15:36Z #15 2.827 103000K .......... .......... .......... .......... .......... 81% 125M 0s +2024-04-19T21:15:36Z #15 2.827 103050K .......... .......... .......... .......... .......... 81% 51.9M 0s +2024-04-19T21:15:36Z #15 2.827 103100K .......... .......... .......... .......... .......... 81% 91.4M 0s +2024-04-19T21:15:36Z #15 2.828 103150K .......... .......... .......... .......... .......... 81% 113M 0s +2024-04-19T21:15:36Z #15 2.828 103200K .......... .......... .......... .......... .......... 81% 125M 0s +2024-04-19T21:15:36Z #15 2.829 103250K .......... .......... .......... .......... .......... 81% 126M 0s +2024-04-19T21:15:36Z #15 2.829 103300K .......... .......... .......... .......... .......... 81% 121M 0s +2024-04-19T21:15:36Z #15 2.830 103350K .......... .......... .......... .......... .......... 81% 109M 0s +2024-04-19T21:15:36Z #15 2.830 103400K .......... .......... .......... .......... .......... 81% 124M 0s +2024-04-19T21:15:36Z #15 2.831 103450K .......... .......... .......... .......... .......... 81% 49.8M 0s +2024-04-19T21:15:36Z #15 2.832 103500K .......... .......... .......... .......... .......... 81% 97.1M 0s +2024-04-19T21:15:36Z #15 2.832 103550K .......... .......... .......... .......... .......... 81% 96.9M 0s +2024-04-19T21:15:36Z #15 2.833 103600K .......... .......... .......... .......... .......... 81% 136M 0s +2024-04-19T21:15:36Z #15 2.833 103650K .......... .......... .......... .......... .......... 81% 115M 0s +2024-04-19T21:15:36Z #15 2.833 103700K .......... .......... .......... .......... .......... 81% 69.3M 0s +2024-04-19T21:15:36Z #15 2.840 103750K .......... .......... .......... .......... .......... 81% 135M 0s +2024-04-19T21:15:36Z #15 2.840 103800K .......... .......... .......... .......... .......... 81% 134M 0s +2024-04-19T21:15:36Z #15 2.840 103850K .......... .......... .......... .......... .......... 81% 116M 0s +2024-04-19T21:15:36Z #15 2.840 103900K .......... .......... .......... .......... .......... 81% 152M 0s +2024-04-19T21:15:36Z #15 2.840 103950K .......... .......... .......... .......... .......... 82% 155M 0s +2024-04-19T21:15:36Z #15 2.840 104000K .......... .......... .......... .......... .......... 82% 140M 0s +2024-04-19T21:15:36Z #15 2.840 104050K .......... .......... .......... .......... .......... 82% 138M 0s +2024-04-19T21:15:36Z #15 2.840 104100K .......... .......... .......... .......... .......... 82% 146M 0s +2024-04-19T21:15:36Z #15 2.840 104150K .......... .......... .......... .......... .......... 82% 168M 0s +2024-04-19T21:15:36Z #15 2.840 104200K .......... .......... .......... .......... .......... 82% 122M 0s +2024-04-19T21:15:36Z #15 2.840 104250K .......... .......... .......... .......... .......... 82% 161M 0s +2024-04-19T21:15:36Z #15 2.840 104300K .......... .......... .......... .......... .......... 82% 130M 0s +2024-04-19T21:15:36Z #15 2.840 104350K .......... .......... .......... .......... .......... 82% 148M 0s +2024-04-19T21:15:36Z #15 2.840 104400K .......... .......... .......... .......... .......... 82% 107M 0s +2024-04-19T21:15:36Z #15 2.840 104450K .......... .......... .......... .......... .......... 82% 139M 0s +2024-04-19T21:15:36Z #15 2.840 104500K .......... .......... .......... .......... .......... 82% 130M 0s +2024-04-19T21:15:36Z #15 2.840 104550K .......... .......... .......... .......... .......... 82% 159M 0s +2024-04-19T21:15:36Z #15 2.840 104600K .......... .......... .......... .......... .......... 82% 103M 0s +2024-04-19T21:15:36Z #15 2.840 104650K .......... .......... .......... .......... .......... 82% 106M 0s +2024-04-19T21:15:36Z #15 2.841 104700K .......... .......... .......... .......... .......... 82% 139M 0s +2024-04-19T21:15:36Z #15 2.841 104750K .......... .......... .......... .......... .......... 82% 115M 0s +2024-04-19T21:15:36Z #15 2.842 104800K .......... .......... .......... .......... .......... 82% 157M 0s +2024-04-19T21:15:36Z #15 2.842 104850K .......... .......... .......... .......... .......... 82% 141M 0s +2024-04-19T21:15:36Z #15 2.843 104900K .......... .......... .......... .......... .......... 82% 145M 0s +2024-04-19T21:15:36Z #15 2.843 104950K .......... .......... .......... .......... .......... 82% 93.3M 0s +2024-04-19T21:15:36Z #15 2.843 105000K .......... .......... .......... .......... .......... 82% 119M 0s +2024-04-19T21:15:36Z #15 2.844 105050K .......... .......... .......... .......... .......... 82% 140M 0s +2024-04-19T21:15:36Z #15 2.844 105100K .......... .......... .......... .......... .......... 82% 137M 0s +2024-04-19T21:15:36Z #15 2.844 105150K .......... .......... .......... .......... .......... 82% 104M 0s +2024-04-19T21:15:36Z #15 2.845 105200K .......... .......... .......... .......... .......... 83% 111M 0s +2024-04-19T21:15:36Z #15 2.845 105250K .......... .......... .......... .......... .......... 83% 131M 0s +2024-04-19T21:15:36Z #15 2.846 105300K .......... .......... .......... .......... .......... 83% 131M 0s +2024-04-19T21:15:36Z #15 2.846 105350K .......... .......... .......... .......... .......... 83% 108M 0s +2024-04-19T21:15:36Z #15 2.846 105400K .......... .......... .......... .......... .......... 83% 111M 0s +2024-04-19T21:15:36Z #15 2.847 105450K .......... .......... .......... .......... .......... 83% 152M 0s +2024-04-19T21:15:36Z #15 2.847 105500K .......... .......... .......... .......... .......... 83% 110M 0s +2024-04-19T21:15:36Z #15 2.848 105550K .......... .......... .......... .......... .......... 83% 138M 0s +2024-04-19T21:15:36Z #15 2.848 105600K .......... .......... .......... .......... .......... 83% 137M 0s +2024-04-19T21:15:36Z #15 2.848 105650K .......... .......... .......... .......... .......... 83% 148M 0s +2024-04-19T21:15:36Z #15 2.849 105700K .......... .......... .......... .......... .......... 83% 131M 0s +2024-04-19T21:15:36Z #15 2.849 105750K .......... .......... .......... .......... .......... 83% 119M 0s +2024-04-19T21:15:36Z #15 2.850 105800K .......... .......... .......... .......... .......... 83% 129M 0s +2024-04-19T21:15:36Z #15 2.850 105850K .......... .......... .......... .......... .......... 83% 121M 0s +2024-04-19T21:15:36Z #15 2.850 105900K .......... .......... .......... .......... .......... 83% 96.7M 0s +2024-04-19T21:15:36Z #15 2.851 105950K .......... .......... .......... .......... .......... 83% 124M 0s +2024-04-19T21:15:36Z #15 2.851 106000K .......... .......... .......... .......... .......... 83% 119M 0s +2024-04-19T21:15:36Z #15 2.852 106050K .......... .......... .......... .......... .......... 83% 98.8M 0s +2024-04-19T21:15:36Z #15 2.852 106100K .......... .......... .......... .......... .......... 83% 136M 0s +2024-04-19T21:15:36Z #15 2.853 106150K .......... .......... .......... .......... .......... 83% 114M 0s +2024-04-19T21:15:36Z #15 2.853 106200K .......... .......... .......... .......... .......... 83% 129M 0s +2024-04-19T21:15:36Z #15 2.853 106250K .......... .......... .......... .......... .......... 83% 117M 0s +2024-04-19T21:15:36Z #15 2.854 106300K .......... .......... .......... .......... .......... 83% 100M 0s +2024-04-19T21:15:36Z #15 2.859 106350K .......... .......... .......... .......... .......... 83% 111M 0s +2024-04-19T21:15:36Z #15 2.859 106400K .......... .......... .......... .......... .......... 83% 130M 0s +2024-04-19T21:15:36Z #15 2.859 106450K .......... .......... .......... .......... .......... 84% 143M 0s +2024-04-19T21:15:36Z #15 2.859 106500K .......... .......... .......... .......... .......... 84% 165M 0s +2024-04-19T21:15:36Z #15 2.859 106550K .......... .......... .......... .......... .......... 84% 167M 0s +2024-04-19T21:15:36Z #15 2.859 106600K .......... .......... .......... .......... .......... 84% 156M 0s +2024-04-19T21:15:36Z #15 2.859 106650K .......... .......... .......... .......... .......... 84% 125M 0s +2024-04-19T21:15:36Z #15 2.859 106700K .......... .......... .......... .......... .......... 84% 157M 0s +2024-04-19T21:15:36Z #15 2.859 106750K .......... .......... .......... .......... .......... 84% 171M 0s +2024-04-19T21:15:36Z #15 2.859 106800K .......... .......... .......... .......... .......... 84% 147M 0s +2024-04-19T21:15:36Z #15 2.859 106850K .......... .......... .......... .......... .......... 84% 143M 0s +2024-04-19T21:15:36Z #15 2.859 106900K .......... .......... .......... .......... .......... 84% 117M 0s +2024-04-19T21:15:36Z #15 2.859 106950K .......... .......... .......... .......... .......... 84% 123M 0s +2024-04-19T21:15:36Z #15 2.859 107000K .......... .......... .......... .......... .......... 84% 117M 0s +2024-04-19T21:15:36Z #15 2.859 107050K .......... .......... .......... .......... .......... 84% 113M 0s +2024-04-19T21:15:36Z #15 2.859 107100K .......... .......... .......... .......... .......... 84% 124M 0s +2024-04-19T21:15:36Z #15 2.860 107150K .......... .......... .......... .......... .......... 84% 128M 0s +2024-04-19T21:15:36Z #15 2.860 107200K .......... .......... .......... .......... .......... 84% 113M 0s +2024-04-19T21:15:36Z #15 2.861 107250K .......... .......... .......... .......... .......... 84% 129M 0s +2024-04-19T21:15:36Z #15 2.861 107300K .......... .......... .......... .......... .......... 84% 71.6M 0s +2024-04-19T21:15:36Z #15 2.862 107350K .......... .......... .......... .......... .......... 84% 110M 0s +2024-04-19T21:15:36Z #15 2.862 107400K .......... .......... .......... .......... .......... 84% 115M 0s +2024-04-19T21:15:36Z #15 2.866 107450K .......... .......... .......... .......... .......... 84% 47.6M 0s +2024-04-19T21:15:36Z #15 2.866 107500K .......... .......... .......... .......... .......... 84% 152M 0s +2024-04-19T21:15:36Z #15 2.866 107550K .......... .......... .......... .......... .......... 84% 145M 0s +2024-04-19T21:15:36Z #15 2.866 107600K .......... .......... .......... .......... .......... 84% 162M 0s +2024-04-19T21:15:36Z #15 2.866 107650K .......... .......... .......... .......... .......... 84% 146M 0s +2024-04-19T21:15:36Z #15 2.866 107700K .......... .......... .......... .......... .......... 84% 157M 0s +2024-04-19T21:15:36Z #15 2.866 107750K .......... .......... .......... .......... .......... 85% 85.4M 0s +2024-04-19T21:15:36Z #15 2.866 107800K .......... .......... .......... .......... .......... 85% 114M 0s +2024-04-19T21:15:36Z #15 2.866 107850K .......... .......... .......... .......... .......... 85% 48.5M 0s +2024-04-19T21:15:36Z #15 2.868 107900K .......... .......... .......... .......... .......... 85% 66.7M 0s +2024-04-19T21:15:36Z #15 2.868 107950K .......... .......... .......... .......... .......... 85% 128M 0s +2024-04-19T21:15:36Z #15 2.869 108000K .......... .......... .......... .......... .......... 85% 59.6M 0s +2024-04-19T21:15:36Z #15 2.869 108050K .......... .......... .......... .......... .......... 85% 72.4M 0s +2024-04-19T21:15:36Z #15 2.870 108100K .......... .......... .......... .......... .......... 85% 69.6M 0s +2024-04-19T21:15:36Z #15 2.871 108150K .......... .......... .......... .......... .......... 85% 60.6M 0s +2024-04-19T21:15:36Z #15 2.872 108200K .......... .......... .......... .......... .......... 85% 128M 0s +2024-04-19T21:15:36Z #15 2.872 108250K .......... .......... .......... .......... .......... 85% 71.4M 0s +2024-04-19T21:15:36Z #15 2.873 108300K .......... .......... .......... .......... .......... 85% 101M 0s +2024-04-19T21:15:36Z #15 2.873 108350K .......... .......... .......... .......... .......... 85% 58.5M 0s +2024-04-19T21:15:36Z #15 2.874 108400K .......... .......... .......... .......... .......... 85% 118M 0s +2024-04-19T21:15:36Z #15 2.874 108450K .......... .......... .......... .......... .......... 85% 61.7M 0s +2024-04-19T21:15:36Z #15 2.876 108500K .......... .......... .......... .......... .......... 85% 103M 0s +2024-04-19T21:15:36Z #15 2.876 108550K .......... .......... .......... .......... .......... 85% 102M 0s +2024-04-19T21:15:36Z #15 2.876 108600K .......... .......... .......... .......... .......... 85% 78.0M 0s +2024-04-19T21:15:36Z #15 2.877 108650K .......... .......... .......... .......... .......... 85% 96.0M 0s +2024-04-19T21:15:36Z #15 2.877 108700K .......... .......... .......... .......... .......... 85% 95.4M 0s +2024-04-19T21:15:36Z #15 2.878 108750K .......... .......... .......... .......... .......... 85% 109M 0s +2024-04-19T21:15:36Z #15 2.878 108800K .......... .......... .......... .......... .......... 85% 94.6M 0s +2024-04-19T21:15:36Z #15 2.878 108850K .......... .......... .......... .......... .......... 85% 111M 0s +2024-04-19T21:15:36Z #15 2.883 108900K .......... .......... .......... .......... .......... 85% 168M 0s +2024-04-19T21:15:36Z #15 2.883 108950K .......... .......... .......... .......... .......... 85% 162M 0s +2024-04-19T21:15:36Z #15 2.883 109000K .......... .......... .......... .......... .......... 86% 130M 0s +2024-04-19T21:15:36Z #15 2.883 109050K .......... .......... .......... .......... .......... 86% 151M 0s +2024-04-19T21:15:36Z #15 2.883 109100K .......... .......... .......... .......... .......... 86% 181M 0s +2024-04-19T21:15:36Z #15 2.883 109150K .......... .......... .......... .......... .......... 86% 137M 0s +2024-04-19T21:15:36Z #15 2.883 109200K .......... .......... .......... .......... .......... 86% 172M 0s +2024-04-19T21:15:36Z #15 2.883 109250K .......... .......... .......... .......... .......... 86% 119M 0s +2024-04-19T21:15:36Z #15 2.883 109300K .......... .......... .......... .......... .......... 86% 159M 0s +2024-04-19T21:15:36Z #15 2.883 109350K .......... .......... .......... .......... .......... 86% 148M 0s +2024-04-19T21:15:36Z #15 2.883 109400K .......... .......... .......... .......... .......... 86% 153M 0s +2024-04-19T21:15:36Z #15 2.883 109450K .......... .......... .......... .......... .......... 86% 114M 0s +2024-04-19T21:15:36Z #15 2.883 109500K .......... .......... .......... .......... .......... 86% 72.6M 0s +2024-04-19T21:15:36Z #15 2.885 109550K .......... .......... .......... .......... .......... 86% 97.6M 0s +2024-04-19T21:15:36Z #15 2.885 109600K .......... .......... .......... .......... .......... 86% 145M 0s +2024-04-19T21:15:36Z #15 2.885 109650K .......... .......... .......... .......... .......... 86% 127M 0s +2024-04-19T21:15:36Z #15 2.885 109700K .......... .......... .......... .......... .......... 86% 95.1M 0s +2024-04-19T21:15:36Z #15 2.886 109750K .......... .......... .......... .......... .......... 86% 71.2M 0s +2024-04-19T21:15:36Z #15 2.886 109800K .......... .......... .......... .......... .......... 86% 56.5M 0s +2024-04-19T21:15:36Z #15 2.887 109850K .......... .......... .......... .......... .......... 86% 113M 0s +2024-04-19T21:15:36Z #15 2.888 109900K .......... .......... .......... .......... .......... 86% 55.7M 0s +2024-04-19T21:15:36Z #15 2.888 109950K .......... .......... .......... .......... .......... 86% 89.8M 0s +2024-04-19T21:15:36Z #15 2.889 110000K .......... .......... .......... .......... .......... 86% 126M 0s +2024-04-19T21:15:36Z #15 2.889 110050K .......... .......... .......... .......... .......... 86% 126M 0s +2024-04-19T21:15:36Z #15 2.895 110100K .......... .......... .......... .......... .......... 86% 116M 0s +2024-04-19T21:15:36Z #15 2.895 110150K .......... .......... .......... .......... .......... 86% 160M 0s +2024-04-19T21:15:36Z #15 2.895 110200K .......... .......... .......... .......... .......... 86% 149M 0s +2024-04-19T21:15:36Z #15 2.895 110250K .......... .......... .......... .......... .......... 86% 137M 0s +2024-04-19T21:15:36Z #15 2.895 110300K .......... .......... .......... .......... .......... 87% 161M 0s +2024-04-19T21:15:36Z #15 2.895 110350K .......... .......... .......... .......... .......... 87% 169M 0s +2024-04-19T21:15:36Z #15 2.895 110400K .......... .......... .......... .......... .......... 87% 132M 0s +2024-04-19T21:15:36Z #15 2.895 110450K .......... .......... .......... .......... .......... 87% 144M 0s +2024-04-19T21:15:36Z #15 2.895 110500K .......... .......... .......... .......... .......... 87% 147M 0s +2024-04-19T21:15:36Z #15 2.895 110550K .......... .......... .......... .......... .......... 87% 153M 0s +2024-04-19T21:15:36Z #15 2.895 110600K .......... .......... .......... .......... .......... 87% 137M 0s +2024-04-19T21:15:36Z #15 2.895 110650K .......... .......... .......... .......... .......... 87% 171M 0s +2024-04-19T21:15:36Z #15 2.895 110700K .......... .......... .......... .......... .......... 87% 149M 0s +2024-04-19T21:15:36Z #15 2.895 110750K .......... .......... .......... .......... .......... 87% 149M 0s +2024-04-19T21:15:36Z #15 2.895 110800K .......... .......... .......... .......... .......... 87% 135M 0s +2024-04-19T21:15:36Z #15 2.895 110850K .......... .......... .......... .......... .......... 87% 32.1M 0s +2024-04-19T21:15:36Z #15 2.897 110900K .......... .......... .......... .......... .......... 87% 121M 0s +2024-04-19T21:15:36Z #15 2.897 110950K .......... .......... .......... .......... .......... 87% 74.9M 0s +2024-04-19T21:15:36Z #15 2.898 111000K .......... .......... .......... .......... .......... 87% 58.2M 0s +2024-04-19T21:15:36Z #15 2.899 111050K .......... .......... .......... .......... .......... 87% 117M 0s +2024-04-19T21:15:36Z #15 2.899 111100K .......... .......... .......... .......... .......... 87% 115M 0s +2024-04-19T21:15:36Z #15 2.899 111150K .......... .......... .......... .......... .......... 87% 57.3M 0s +2024-04-19T21:15:36Z #15 2.901 111200K .......... .......... .......... .......... .......... 87% 68.3M 0s +2024-04-19T21:15:36Z #15 2.901 111250K .......... .......... .......... .......... .......... 87% 130M 0s +2024-04-19T21:15:36Z #15 2.901 111300K .......... .......... .......... .......... .......... 87% 61.1M 0s +2024-04-19T21:15:36Z #15 2.903 111350K .......... .......... .......... .......... .......... 87% 61.9M 0s +2024-04-19T21:15:36Z #15 2.903 111400K .......... .......... .......... .......... .......... 87% 61.1M 0s +2024-04-19T21:15:36Z #15 2.904 111450K .......... .......... .......... .......... .......... 87% 107M 0s +2024-04-19T21:15:36Z #15 2.904 111500K .......... .......... .......... .......... .......... 87% 119M 0s +2024-04-19T21:15:36Z #15 2.904 111550K .......... .......... .......... .......... .......... 88% 68.1M 0s +2024-04-19T21:15:36Z #15 2.905 111600K .......... .......... .......... .......... .......... 88% 64.2M 0s +2024-04-19T21:15:36Z #15 2.906 111650K .......... .......... .......... .......... .......... 88% 59.2M 0s +2024-04-19T21:15:36Z #15 2.907 111700K .......... .......... .......... .......... .......... 88% 48.9M 0s +2024-04-19T21:15:36Z #15 2.908 111750K .......... .......... .......... .......... .......... 88% 67.7M 0s +2024-04-19T21:15:36Z #15 2.909 111800K .......... .......... .......... .......... .......... 88% 124M 0s +2024-04-19T21:15:36Z #15 2.909 111850K .......... .......... .......... .......... .......... 88% 45.2M 0s +2024-04-19T21:15:36Z #15 2.910 111900K .......... .......... .......... .......... .......... 88% 114M 0s +2024-04-19T21:15:36Z #15 2.910 111950K .......... .......... .......... .......... .......... 88% 28.3M 0s +2024-04-19T21:15:36Z #15 2.912 112000K .......... .......... .......... .......... .......... 88% 64.3M 0s +2024-04-19T21:15:36Z #15 2.913 112050K .......... .......... .......... .......... .......... 88% 42.5M 0s +2024-04-19T21:15:36Z #15 2.914 112100K .......... .......... .......... .......... .......... 88% 37.5M 0s +2024-04-19T21:15:36Z #15 2.916 112150K .......... .......... .......... .......... .......... 88% 126M 0s +2024-04-19T21:15:36Z #15 2.916 112200K .......... .......... .......... .......... .......... 88% 32.2M 0s +2024-04-19T21:15:36Z #15 2.917 112250K .......... .......... .......... .......... .......... 88% 54.8M 0s +2024-04-19T21:15:36Z #15 2.918 112300K .......... .......... .......... .......... .......... 88% 50.5M 0s +2024-04-19T21:15:36Z #15 2.919 112350K .......... .......... .......... .......... .......... 88% 85.5M 0s +2024-04-19T21:15:36Z #15 2.921 112400K .......... .......... .......... .......... .......... 88% 76.6M 0s +2024-04-19T21:15:36Z #15 2.921 112450K .......... .......... .......... .......... .......... 88% 95.3M 0s +2024-04-19T21:15:36Z #15 2.921 112500K .......... .......... .......... .......... .......... 88% 68.1M 0s +2024-04-19T21:15:36Z #15 2.921 112550K .......... .......... .......... .......... .......... 88% 60.9M 0s +2024-04-19T21:15:36Z #15 2.922 112600K .......... .......... .......... .......... .......... 88% 78.1M 0s +2024-04-19T21:15:36Z #15 2.923 112650K .......... .......... .......... .......... .......... 88% 84.3M 0s +2024-04-19T21:15:36Z #15 2.923 112700K .......... .......... .......... .......... .......... 88% 58.7M 0s +2024-04-19T21:15:36Z #15 2.924 112750K .......... .......... .......... .......... .......... 88% 85.6M 0s +2024-04-19T21:15:36Z #15 2.925 112800K .......... .......... .......... .......... .......... 89% 69.7M 0s +2024-04-19T21:15:36Z #15 2.925 112850K .......... .......... .......... .......... .......... 89% 91.1M 0s +2024-04-19T21:15:36Z #15 2.926 112900K .......... .......... .......... .......... .......... 89% 74.5M 0s +2024-04-19T21:15:36Z #15 2.928 112950K .......... .......... .......... .......... .......... 89% 98.4M 0s +2024-04-19T21:15:36Z #15 2.929 113000K .......... .......... .......... .......... .......... 89% 178M 0s +2024-04-19T21:15:36Z #15 2.929 113050K .......... .......... .......... .......... .......... 89% 119M 0s +2024-04-19T21:15:36Z #15 2.929 113100K .......... .......... .......... .......... .......... 89% 145M 0s +2024-04-19T21:15:36Z #15 2.929 113150K .......... .......... .......... .......... .......... 89% 69.8M 0s +2024-04-19T21:15:36Z #15 2.929 113200K .......... .......... .......... .......... .......... 89% 111M 0s +2024-04-19T21:15:36Z #15 2.929 113250K .......... .......... .......... .......... .......... 89% 70.6M 0s +2024-04-19T21:15:36Z #15 2.930 113300K .......... .......... .......... .......... .......... 89% 113M 0s +2024-04-19T21:15:36Z #15 2.932 113350K .......... .......... .......... .......... .......... 89% 58.6M 0s +2024-04-19T21:15:36Z #15 2.932 113400K .......... .......... .......... .......... .......... 89% 120M 0s +2024-04-19T21:15:36Z #15 2.932 113450K .......... .......... .......... .......... .......... 89% 112M 0s +2024-04-19T21:15:36Z #15 2.932 113500K .......... .......... .......... .......... .......... 89% 121M 0s +2024-04-19T21:15:36Z #15 2.934 113550K .......... .......... .......... .......... .......... 89% 70.4M 0s +2024-04-19T21:15:36Z #15 2.934 113600K .......... .......... .......... .......... .......... 89% 115M 0s +2024-04-19T21:15:36Z #15 2.934 113650K .......... .......... .......... .......... .......... 89% 110M 0s +2024-04-19T21:15:36Z #15 2.934 113700K .......... .......... .......... .......... .......... 89% 21.9M 0s +2024-04-19T21:15:36Z #15 2.937 113750K .......... .......... .......... .......... .......... 89% 37.7M 0s +2024-04-19T21:15:36Z #15 2.938 113800K .......... .......... .......... .......... .......... 89% 57.9M 0s +2024-04-19T21:15:36Z #15 2.939 113850K .......... .......... .......... .......... .......... 89% 22.3M 0s +2024-04-19T21:15:36Z #15 2.941 113900K .......... .......... .......... .......... .......... 89% 118M 0s +2024-04-19T21:15:36Z #15 2.941 113950K .......... .......... .......... .......... .......... 89% 37.1M 0s +2024-04-19T21:15:36Z #15 2.942 114000K .......... .......... .......... .......... .......... 89% 105M 0s +2024-04-19T21:15:36Z #15 2.942 114050K .......... .......... .......... .......... .......... 89% 112M 0s +2024-04-19T21:15:36Z #15 2.943 114100K .......... .......... .......... .......... .......... 90% 102M 0s +2024-04-19T21:15:36Z #15 2.943 114150K .......... .......... .......... .......... .......... 90% 118M 0s +2024-04-19T21:15:36Z #15 2.944 114200K .......... .......... .......... .......... .......... 90% 123M 0s +2024-04-19T21:15:36Z #15 2.944 114250K .......... .......... .......... .......... .......... 90% 132M 0s +2024-04-19T21:15:36Z #15 2.945 114300K .......... .......... .......... .......... .......... 90% 114M 0s +2024-04-19T21:15:36Z #15 2.945 114350K .......... .......... .......... .......... .......... 90% 111M 0s +2024-04-19T21:15:36Z #15 2.946 114400K .......... .......... .......... .......... .......... 90% 98.6M 0s +2024-04-19T21:15:36Z #15 2.946 114450K .......... .......... .......... .......... .......... 90% 141M 0s +2024-04-19T21:15:36Z #15 2.946 114500K .......... .......... .......... .......... .......... 90% 56.2M 0s +2024-04-19T21:15:36Z #15 2.950 114550K .......... .......... .......... .......... .......... 90% 156M 0s +2024-04-19T21:15:36Z #15 2.950 114600K .......... .......... .......... .......... .......... 90% 137M 0s +2024-04-19T21:15:36Z #15 2.950 114650K .......... .......... .......... .......... .......... 90% 176M 0s +2024-04-19T21:15:36Z #15 2.950 114700K .......... .......... .......... .......... .......... 90% 143M 0s +2024-04-19T21:15:36Z #15 2.950 114750K .......... .......... .......... .......... .......... 90% 161M 0s +2024-04-19T21:15:36Z #15 2.950 114800K .......... .......... .......... .......... .......... 90% 119M 0s +2024-04-19T21:15:36Z #15 2.950 114850K .......... .......... .......... .......... .......... 90% 159M 0s +2024-04-19T21:15:36Z #15 2.950 114900K .......... .......... .......... .......... .......... 90% 170M 0s +2024-04-19T21:15:36Z #15 2.950 114950K .......... .......... .......... .......... .......... 90% 138M 0s +2024-04-19T21:15:36Z #15 2.950 115000K .......... .......... .......... .......... .......... 90% 101M 0s +2024-04-19T21:15:36Z #15 2.953 115050K .......... .......... .......... .......... .......... 90% 11.8M 0s +2024-04-19T21:15:36Z #15 2.955 115100K .......... .......... .......... .......... .......... 90% 24.7M 0s +2024-04-19T21:15:36Z #15 2.957 115150K .......... .......... .......... .......... .......... 90% 58.3M 0s +2024-04-19T21:15:36Z #15 2.958 115200K .......... .......... .......... .......... .......... 90% 33.8M 0s +2024-04-19T21:15:36Z #15 2.959 115250K .......... .......... .......... .......... .......... 90% 54.3M 0s +2024-04-19T21:15:36Z #15 2.960 115300K .......... .......... .......... .......... .......... 90% 38.4M 0s +2024-04-19T21:15:36Z #15 2.963 115350K .......... .......... .......... .......... .......... 91% 87.7M 0s +2024-04-19T21:15:36Z #15 2.963 115400K .......... .......... .......... .......... .......... 91% 159M 0s +2024-04-19T21:15:36Z #15 2.963 115450K .......... .......... .......... .......... .......... 91% 153M 0s +2024-04-19T21:15:36Z #15 2.963 115500K .......... .......... .......... .......... .......... 91% 28.1M 0s +2024-04-19T21:15:36Z #15 2.964 115550K .......... .......... .......... .......... .......... 91% 44.6M 0s +2024-04-19T21:15:36Z #15 2.971 115600K .......... .......... .......... .......... .......... 91% 152M 0s +2024-04-19T21:15:36Z #15 2.971 115650K .......... .......... .......... .......... .......... 91% 93.7M 0s +2024-04-19T21:15:36Z #15 2.971 115700K .......... .......... .......... .......... .......... 91% 160M 0s +2024-04-19T21:15:36Z #15 2.971 115750K .......... .......... .......... .......... .......... 91% 157M 0s +2024-04-19T21:15:36Z #15 2.971 115800K .......... .......... .......... .......... .......... 91% 84.1M 0s +2024-04-19T21:15:36Z #15 2.971 115850K .......... .......... .......... .......... .......... 91% 142M 0s +2024-04-19T21:15:36Z #15 2.971 115900K .......... .......... .......... .......... .......... 91% 150M 0s +2024-04-19T21:15:36Z #15 2.971 115950K .......... .......... .......... .......... .......... 91% 76.7M 0s +2024-04-19T21:15:36Z #15 2.971 116000K .......... .......... .......... .......... .......... 91% 155M 0s +2024-04-19T21:15:36Z #15 2.971 116050K .......... .......... .......... .......... .......... 91% 124M 0s +2024-04-19T21:15:36Z #15 2.971 116100K .......... .......... .......... .......... .......... 91% 79.3M 0s +2024-04-19T21:15:36Z #15 2.971 116150K .......... .......... .......... .......... .......... 91% 170M 0s +2024-04-19T21:15:36Z #15 2.971 116200K .......... .......... .......... .......... .......... 91% 159M 0s +2024-04-19T21:15:36Z #15 2.971 116250K .......... .......... .......... .......... .......... 91% 8.47M 0s +2024-04-19T21:15:36Z #15 2.976 116300K .......... .......... .......... .......... .......... 91% 19.5M 0s +2024-04-19T21:15:36Z #15 2.981 116350K .......... .......... .......... .......... .......... 91% 173M 0s +2024-04-19T21:15:36Z #15 2.981 116400K .......... .......... .......... .......... .......... 91% 171M 0s +2024-04-19T21:15:36Z #15 2.981 116450K .......... .......... .......... .......... .......... 91% 132M 0s +2024-04-19T21:15:36Z #15 2.981 116500K .......... .......... .......... .......... .......... 91% 68.4M 0s +2024-04-19T21:15:36Z #15 2.981 116550K .......... .......... .......... .......... .......... 91% 14.6M 0s +2024-04-19T21:15:36Z #15 2.984 116600K .......... .......... .......... .......... .......... 92% 21.9M 0s +2024-04-19T21:15:36Z #15 2.987 116650K .......... .......... .......... .......... .......... 92% 21.5M 0s +2024-04-19T21:15:36Z #15 2.988 116700K .......... .......... .......... .......... .......... 92% 26.6M 0s +2024-04-19T21:15:36Z #15 2.990 116750K .......... .......... .......... .......... .......... 92% 67.0M 0s +2024-04-19T21:15:36Z #15 2.991 116800K .......... .......... .......... .......... .......... 92% 21.8M 0s +2024-04-19T21:15:36Z #15 2.993 116850K .......... .......... .......... .......... .......... 92% 28.2M 0s +2024-04-19T21:15:36Z #15 2.995 116900K .......... .......... .......... .......... .......... 92% 61.5M 0s +2024-04-19T21:15:36Z #15 2.999 116950K .......... .......... .......... .......... .......... 92% 105M 0s +2024-04-19T21:15:36Z #15 2.999 117000K .......... .......... .......... .......... .......... 92% 55.9M 0s +2024-04-19T21:15:36Z #15 2.999 117050K .......... .......... .......... .......... .......... 92% 125M 0s +2024-04-19T21:15:36Z #15 2.999 117100K .......... .......... .......... .......... .......... 92% 101M 0s +2024-04-19T21:15:36Z #15 2.999 117150K .......... .......... .......... .......... .......... 92% 73.8M 0s +2024-04-19T21:15:36Z #15 2.999 117200K .......... .......... .......... .......... .......... 92% 15.7M 0s +2024-04-19T21:15:36Z #15 3.002 117250K .......... .......... .......... .......... .......... 92% 16.8M 0s +2024-04-19T21:15:36Z #15 3.007 117300K .......... .......... .......... .......... .......... 92% 121M 0s +2024-04-19T21:15:36Z #15 3.007 117350K .......... .......... .......... .......... .......... 92% 136M 0s +2024-04-19T21:15:36Z #15 3.007 117400K .......... .......... .......... .......... .......... 92% 95.2M 0s +2024-04-19T21:15:36Z #15 3.007 117450K .......... .......... .......... .......... .......... 92% 78.2M 0s +2024-04-19T21:15:36Z #15 3.007 117500K .......... .......... .......... .......... .......... 92% 42.5M 0s +2024-04-19T21:15:36Z #15 3.008 117550K .......... .......... .......... .......... .......... 92% 21.1M 0s +2024-04-19T21:15:36Z #15 3.010 117600K .......... .......... .......... .......... .......... 92% 23.4M 0s +2024-04-19T21:15:36Z #15 3.012 117650K .......... .......... .......... .......... .......... 92% 26.9M 0s +2024-04-19T21:15:36Z #15 3.019 117700K .......... .......... .......... .......... .......... 92% 39.8M 0s +2024-04-19T21:15:36Z #15 3.019 117750K .......... .......... .......... .......... .......... 92% 51.4M 0s +2024-04-19T21:15:36Z #15 3.019 117800K .......... .......... .......... .......... .......... 92% 28.9M 0s +2024-04-19T21:15:36Z #15 3.019 117850K .......... .......... .......... .......... .......... 92% 48.4M 0s +2024-04-19T21:15:36Z #15 3.019 117900K .......... .......... .......... .......... .......... 93% 31.9M 0s +2024-04-19T21:15:36Z #15 3.020 117950K .......... .......... .......... .......... .......... 93% 21.7M 0s +2024-04-19T21:15:36Z #15 3.023 118000K .......... .......... .......... .......... .......... 93% 45.8M 0s +2024-04-19T21:15:36Z #15 3.024 118050K .......... .......... .......... .......... .......... 93% 90.7M 0s +2024-04-19T21:15:36Z #15 3.025 118100K .......... .......... .......... .......... .......... 93% 24.6M 0s +2024-04-19T21:15:36Z #15 3.026 118150K .......... .......... .......... .......... .......... 93% 42.3M 0s +2024-04-19T21:15:36Z #15 3.027 118200K .......... .......... .......... .......... .......... 93% 25.6M 0s +2024-04-19T21:15:36Z #15 3.029 118250K .......... .......... .......... .......... .......... 93% 24.5M 0s +2024-04-19T21:15:36Z #15 3.031 118300K .......... .......... .......... .......... .......... 93% 37.1M 0s +2024-04-19T21:15:36Z #15 3.033 118350K .......... .......... .......... .......... .......... 93% 67.6M 0s +2024-04-19T21:15:36Z #15 3.033 118400K .......... .......... .......... .......... .......... 93% 69.8M 0s +2024-04-19T21:15:36Z #15 3.034 118450K .......... .......... .......... .......... .......... 93% 57.0M 0s +2024-04-19T21:15:36Z #15 3.035 118500K .......... .......... .......... .......... .......... 93% 22.8M 0s +2024-04-19T21:15:36Z #15 3.039 118550K .......... .......... .......... .......... .......... 93% 59.6M 0s +2024-04-19T21:15:36Z #15 3.039 118600K .......... .......... .......... .......... .......... 93% 154M 0s +2024-04-19T21:15:36Z #15 3.039 118650K .......... .......... .......... .......... .......... 93% 47.2M 0s +2024-04-19T21:15:36Z #15 3.039 118700K .......... .......... .......... .......... .......... 93% 18.5M 0s +2024-04-19T21:15:36Z #15 3.042 118750K .......... .......... .......... .......... .......... 93% 34.7M 0s +2024-04-19T21:15:36Z #15 3.047 118800K .......... .......... .......... .......... .......... 93% 159M 0s +2024-04-19T21:15:36Z #15 3.047 118850K .......... .......... .......... .......... .......... 93% 55.5M 0s +2024-04-19T21:15:36Z #15 3.047 118900K .......... .......... .......... .......... .......... 93% 116M 0s +2024-04-19T21:15:36Z #15 3.047 118950K .......... .......... .......... .......... .......... 93% 126M 0s +2024-04-19T21:15:36Z #15 3.047 119000K .......... .......... .......... .......... .......... 93% 108M 0s +2024-04-19T21:15:36Z #15 3.047 119050K .......... .......... .......... .......... .......... 93% 53.6M 0s +2024-04-19T21:15:36Z #15 3.047 119100K .......... .......... .......... .......... .......... 93% 98.1M 0s +2024-04-19T21:15:36Z #15 3.048 119150K .......... .......... .......... .......... .......... 94% 21.3M 0s +2024-04-19T21:15:36Z #15 3.049 119200K .......... .......... .......... .......... .......... 94% 38.1M 0s +2024-04-19T21:15:36Z #15 3.051 119250K .......... .......... .......... .......... .......... 94% 25.2M 0s +2024-04-19T21:15:36Z #15 3.052 119300K .......... .......... .......... .......... .......... 94% 21.7M 0s +2024-04-19T21:15:36Z #15 3.055 119350K .......... .......... .......... .......... .......... 94% 27.6M 0s +2024-04-19T21:15:36Z #15 3.057 119400K .......... .......... .......... .......... .......... 94% 28.5M 0s +2024-04-19T21:15:36Z #15 3.059 119450K .......... .......... .......... .......... .......... 94% 21.7M 0s +2024-04-19T21:15:36Z #15 3.061 119500K .......... .......... .......... .......... .......... 94% 20.2M 0s +2024-04-19T21:15:36Z #15 3.063 119550K .......... .......... .......... .......... .......... 94% 30.9M 0s +2024-04-19T21:15:36Z #15 3.065 119600K .......... .......... .......... .......... .......... 94% 24.3M 0s +2024-04-19T21:15:36Z #15 3.067 119650K .......... .......... .......... .......... .......... 94% 24.0M 0s +2024-04-19T21:15:36Z #15 3.069 119700K .......... .......... .......... .......... .......... 94% 24.4M 0s +2024-04-19T21:15:36Z #15 3.070 119750K .......... .......... .......... .......... .......... 94% 27.5M 0s +2024-04-19T21:15:36Z #15 3.072 119800K .......... .......... .......... .......... .......... 94% 48.8M 0s +2024-04-19T21:15:36Z #15 3.073 119850K .......... .......... .......... .......... .......... 94% 17.6M 0s +2024-04-19T21:15:36Z #15 3.077 119900K .......... .......... .......... .......... .......... 94% 41.4M 0s +2024-04-19T21:15:36Z #15 3.077 119950K .......... .......... .......... .......... .......... 94% 30.4M 0s +2024-04-19T21:15:36Z #15 3.079 120000K .......... .......... .......... .......... .......... 94% 159M 0s +2024-04-19T21:15:36Z #15 3.079 120050K .......... .......... .......... .......... .......... 94% 125M 0s +2024-04-19T21:15:36Z #15 3.079 120100K .......... .......... .......... .......... .......... 94% 39.1M 0s +2024-04-19T21:15:36Z #15 3.081 120150K .......... .......... .......... .......... .......... 94% 72.7M 0s +2024-04-19T21:15:36Z #15 3.081 120200K .......... .......... .......... .......... .......... 94% 57.7M 0s +2024-04-19T21:15:36Z #15 3.082 120250K .......... .......... .......... .......... .......... 94% 40.8M 0s +2024-04-19T21:15:36Z #15 3.083 120300K .......... .......... .......... .......... .......... 94% 70.5M 0s +2024-04-19T21:15:36Z #15 3.084 120350K .......... .......... .......... .......... .......... 94% 70.6M 0s +2024-04-19T21:15:36Z #15 3.085 120400K .......... .......... .......... .......... .......... 95% 36.1M 0s +2024-04-19T21:15:36Z #15 3.086 120450K .......... .......... .......... .......... .......... 95% 67.2M 0s +2024-04-19T21:15:36Z #15 3.087 120500K .......... .......... .......... .......... .......... 95% 87.5M 0s +2024-04-19T21:15:36Z #15 3.088 120550K .......... .......... .......... .......... .......... 95% 148M 0s +2024-04-19T21:15:36Z #15 3.088 120600K .......... .......... .......... .......... .......... 95% 48.9M 0s +2024-04-19T21:15:36Z #15 3.089 120650K .......... .......... .......... .......... .......... 95% 152M 0s +2024-04-19T21:15:36Z #15 3.089 120700K .......... .......... .......... .......... .......... 95% 155M 0s +2024-04-19T21:15:36Z #15 3.089 120750K .......... .......... .......... .......... .......... 95% 120M 0s +2024-04-19T21:15:36Z #15 3.090 120800K .......... .......... .......... .......... .......... 95% 54.9M 0s +2024-04-19T21:15:36Z #15 3.091 120850K .......... .......... .......... .......... .......... 95% 116M 0s +2024-04-19T21:15:36Z #15 3.091 120900K .......... .......... .......... .......... .......... 95% 165M 0s +2024-04-19T21:15:36Z #15 3.091 120950K .......... .......... .......... .......... .......... 95% 132M 0s +2024-04-19T21:15:36Z #15 3.092 121000K .......... .......... .......... .......... .......... 95% 68.0M 0s +2024-04-19T21:15:36Z #15 3.093 121050K .......... .......... .......... .......... .......... 95% 99.0M 0s +2024-04-19T21:15:36Z #15 3.093 121100K .......... .......... .......... .......... .......... 95% 72.5M 0s +2024-04-19T21:15:36Z #15 3.094 121150K .......... .......... .......... .......... .......... 95% 128M 0s +2024-04-19T21:15:36Z #15 3.094 121200K .......... .......... .......... .......... .......... 95% 142M 0s +2024-04-19T21:15:36Z #15 3.095 121250K .......... .......... .......... .......... .......... 95% 58.1M 0s +2024-04-19T21:15:36Z #15 3.095 121300K .......... .......... .......... .......... .......... 95% 163M 0s +2024-04-19T21:15:36Z #15 3.096 121350K .......... .......... .......... .......... .......... 95% 65.5M 0s +2024-04-19T21:15:36Z #15 3.096 121400K .......... .......... .......... .......... .......... 95% 78.1M 0s +2024-04-19T21:15:36Z #15 3.097 121450K .......... .......... .......... .......... .......... 95% 117M 0s +2024-04-19T21:15:36Z #15 3.097 121500K .......... .......... .......... .......... .......... 95% 90.3M 0s +2024-04-19T21:15:36Z #15 3.098 121550K .......... .......... .......... .......... .......... 95% 162M 0s +2024-04-19T21:15:36Z #15 3.098 121600K .......... .......... .......... .......... .......... 95% 120M 0s +2024-04-19T21:15:36Z #15 3.098 121650K .......... .......... .......... .......... .......... 95% 65.0M 0s +2024-04-19T21:15:36Z #15 3.099 121700K .......... .......... .......... .......... .......... 96% 122M 0s +2024-04-19T21:15:36Z #15 3.100 121750K .......... .......... .......... .......... .......... 96% 136M 0s +2024-04-19T21:15:36Z #15 3.100 121800K .......... .......... .......... .......... .......... 96% 94.0M 0s +2024-04-19T21:15:36Z #15 3.100 121850K .......... .......... .......... .......... .......... 96% 89.6M 0s +2024-04-19T21:15:36Z #15 3.101 121900K .......... .......... .......... .......... .......... 96% 109M 0s +2024-04-19T21:15:36Z #15 3.101 121950K .......... .......... .......... .......... .......... 96% 131M 0s +2024-04-19T21:15:36Z #15 3.102 122000K .......... .......... .......... .......... .......... 96% 66.8M 0s +2024-04-19T21:15:36Z #15 3.103 122050K .......... .......... .......... .......... .......... 96% 104M 0s +2024-04-19T21:15:36Z #15 3.103 122100K .......... .......... .......... .......... .......... 96% 151M 0s +2024-04-19T21:15:36Z #15 3.103 122150K .......... .......... .......... .......... .......... 96% 113M 0s +2024-04-19T21:15:36Z #15 3.104 122200K .......... .......... .......... .......... .......... 96% 71.4M 0s +2024-04-19T21:15:36Z #15 3.104 122250K .......... .......... .......... .......... .......... 96% 141M 0s +2024-04-19T21:15:36Z #15 3.105 122300K .......... .......... .......... .......... .......... 96% 131M 0s +2024-04-19T21:15:36Z #15 3.105 122350K .......... .......... .......... .......... .......... 96% 97.6M 0s +2024-04-19T21:15:36Z #15 3.106 122400K .......... .......... .......... .......... .......... 96% 47.7M 0s +2024-04-19T21:15:36Z #15 3.107 122450K .......... .......... .......... .......... .......... 96% 93.0M 0s +2024-04-19T21:15:36Z #15 3.108 122500K .......... .......... .......... .......... .......... 96% 43.3M 0s +2024-04-19T21:15:36Z #15 3.108 122550K .......... .......... .......... .......... .......... 96% 101M 0s +2024-04-19T21:15:36Z #15 3.109 122600K .......... .......... .......... .......... .......... 96% 45.3M 0s +2024-04-19T21:15:36Z #15 3.110 122650K .......... .......... .......... .......... .......... 96% 51.9M 0s +2024-04-19T21:15:36Z #15 3.111 122700K .......... .......... .......... .......... .......... 96% 67.3M 0s +2024-04-19T21:15:36Z #15 3.112 122750K .......... .......... .......... .......... .......... 96% 74.9M 0s +2024-04-19T21:15:36Z #15 3.112 122800K .......... .......... .......... .......... .......... 96% 47.7M 0s +2024-04-19T21:15:36Z #15 3.113 122850K .......... .......... .......... .......... .......... 96% 51.9M 0s +2024-04-19T21:15:36Z #15 3.114 122900K .......... .......... .......... .......... .......... 96% 55.4M 0s +2024-04-19T21:15:36Z #15 3.116 122950K .......... .......... .......... .......... .......... 97% 95.5M 0s +2024-04-19T21:15:36Z #15 3.116 123000K .......... .......... .......... .......... .......... 97% 38.7M 0s +2024-04-19T21:15:36Z #15 3.117 123050K .......... .......... .......... .......... .......... 97% 87.0M 0s +2024-04-19T21:15:36Z #15 3.118 123100K .......... .......... .......... .......... .......... 97% 74.7M 0s +2024-04-19T21:15:36Z #15 3.118 123150K .......... .......... .......... .......... .......... 97% 5.54M 0s +2024-04-19T21:15:36Z #15 3.127 123200K .......... .......... .......... .......... .......... 97% 121M 0s +2024-04-19T21:15:36Z #15 3.127 123250K .......... .......... .......... .......... .......... 97% 114M 0s +2024-04-19T21:15:36Z #15 3.128 123300K .......... .......... .......... .......... .......... 97% 70.7M 0s +2024-04-19T21:15:36Z #15 3.129 123350K .......... .......... .......... .......... .......... 97% 91.0M 0s +2024-04-19T21:15:36Z #15 3.129 123400K .......... .......... .......... .......... .......... 97% 109M 0s +2024-04-19T21:15:36Z #15 3.130 123450K .......... .......... .......... .......... .......... 97% 76.7M 0s +2024-04-19T21:15:36Z #15 3.130 123500K .......... .......... .......... .......... .......... 97% 90.5M 0s +2024-04-19T21:15:36Z #15 3.131 123550K .......... .......... .......... .......... .......... 97% 115M 0s +2024-04-19T21:15:36Z #15 3.131 123600K .......... .......... .......... .......... .......... 97% 71.3M 0s +2024-04-19T21:15:36Z #15 3.132 123650K .......... .......... .......... .......... .......... 97% 83.2M 0s +2024-04-19T21:15:36Z #15 3.132 123700K .......... .......... .......... .......... .......... 97% 103M 0s +2024-04-19T21:15:36Z #15 3.133 123750K .......... .......... .......... .......... .......... 97% 112M 0s +2024-04-19T21:15:36Z #15 3.133 123800K .......... .......... .......... .......... .......... 97% 69.1M 0s +2024-04-19T21:15:36Z #15 3.134 123850K .......... .......... .......... .......... .......... 97% 129M 0s +2024-04-19T21:15:36Z #15 3.134 123900K .......... .......... .......... .......... .......... 97% 44.9M 0s +2024-04-19T21:15:36Z #15 3.136 123950K .......... .......... .......... .......... .......... 97% 125M 0s +2024-04-19T21:15:36Z #15 3.136 124000K .......... .......... .......... .......... .......... 97% 121M 0s +2024-04-19T21:15:36Z #15 3.136 124050K .......... .......... .......... .......... .......... 97% 77.1M 0s +2024-04-19T21:15:36Z #15 3.137 124100K .......... .......... .......... .......... .......... 97% 8.02M 0s +2024-04-19T21:15:36Z #15 3.143 124150K .......... .......... .......... .......... .......... 97% 121M 0s +2024-04-19T21:15:36Z #15 3.143 124200K .......... .......... .......... .......... .......... 98% 79.5M 0s +2024-04-19T21:15:36Z #15 3.144 124250K .......... .......... .......... .......... .......... 98% 105M 0s +2024-04-19T21:15:36Z #15 3.144 124300K .......... .......... .......... .......... .......... 98% 79.6M 0s +2024-04-19T21:15:36Z #15 3.145 124350K .......... .......... .......... .......... .......... 98% 122M 0s +2024-04-19T21:15:36Z #15 3.145 124400K .......... .......... .......... .......... .......... 98% 101M 0s +2024-04-19T21:15:36Z #15 3.146 124450K .......... .......... .......... .......... .......... 98% 81.0M 0s +2024-04-19T21:15:36Z #15 3.147 124500K .......... .......... .......... .......... .......... 98% 108M 0s +2024-04-19T21:15:36Z #15 3.147 124550K .......... .......... .......... .......... .......... 98% 109M 0s +2024-04-19T21:15:36Z #15 3.147 124600K .......... .......... .......... .......... .......... 98% 60.5M 0s +2024-04-19T21:15:36Z #15 3.148 124650K .......... .......... .......... .......... .......... 98% 120M 0s +2024-04-19T21:15:36Z #15 3.149 124700K .......... .......... .......... .......... .......... 98% 86.3M 0s +2024-04-19T21:15:36Z #15 3.149 124750K .......... .......... .......... .......... .......... 98% 119M 0s +2024-04-19T21:15:36Z #15 3.150 124800K .......... .......... .......... .......... .......... 98% 152M 0s +2024-04-19T21:15:36Z #15 3.150 124850K .......... .......... .......... .......... .......... 98% 67.5M 0s +2024-04-19T21:15:36Z #15 3.151 124900K .......... .......... .......... .......... .......... 98% 90.7M 0s +2024-04-19T21:15:36Z #15 3.151 124950K .......... .......... .......... .......... .......... 98% 135M 0s +2024-04-19T21:15:36Z #15 3.152 125000K .......... .......... .......... .......... .......... 98% 101M 0s +2024-04-19T21:15:36Z #15 3.152 125050K .......... .......... .......... .......... .......... 98% 57.9M 0s +2024-04-19T21:15:36Z #15 3.153 125100K .......... .......... .......... .......... .......... 98% 110M 0s +2024-04-19T21:15:36Z #15 3.153 125150K .......... .......... .......... .......... .......... 98% 137M 0s +2024-04-19T21:15:36Z #15 3.154 125200K .......... .......... .......... .......... .......... 98% 112M 0s +2024-04-19T21:15:36Z #15 3.154 125250K .......... .......... .......... .......... .......... 98% 5.58M 0s +2024-04-19T21:15:36Z #15 3.163 125300K .......... .......... .......... .......... .......... 98% 143M 0s +2024-04-19T21:15:36Z #15 3.163 125350K .......... .......... .......... .......... .......... 98% 97.9M 0s +2024-04-19T21:15:36Z #15 3.164 125400K .......... .......... .......... .......... .......... 98% 62.6M 0s +2024-04-19T21:15:36Z #15 3.165 125450K .......... .......... .......... .......... .......... 98% 119M 0s +2024-04-19T21:15:36Z #15 3.165 125500K .......... .......... .......... .......... .......... 99% 128M 0s +2024-04-19T21:15:36Z #15 3.165 125550K .......... .......... .......... .......... .......... 99% 118M 0s +2024-04-19T21:15:36Z #15 3.166 125600K .......... .......... .......... .......... .......... 99% 71.5M 0s +2024-04-19T21:15:36Z #15 3.166 125650K .......... .......... .......... .......... .......... 99% 118M 0s +2024-04-19T21:15:36Z #15 3.167 125700K .......... .......... .......... .......... .......... 99% 110M 0s +2024-04-19T21:15:36Z #15 3.167 125750K .......... .......... .......... .......... .......... 99% 123M 0s +2024-04-19T21:15:36Z #15 3.168 125800K .......... .......... .......... .......... .......... 99% 126M 0s +2024-04-19T21:15:36Z #15 3.168 125850K .......... .......... .......... .......... .......... 99% 136M 0s +2024-04-19T21:15:36Z #15 3.168 125900K .......... .......... .......... .......... .......... 99% 106M 0s +2024-04-19T21:15:36Z #15 3.169 125950K .......... .......... .......... .......... .......... 99% 126M 0s +2024-04-19T21:15:36Z #15 3.169 126000K .......... .......... .......... .......... .......... 99% 121M 0s +2024-04-19T21:15:36Z #15 3.170 126050K .......... .......... .......... .......... .......... 99% 106M 0s +2024-04-19T21:15:36Z #15 3.170 126100K .......... .......... .......... .......... .......... 99% 140M 0s +2024-04-19T21:15:36Z #15 3.171 126150K .......... .......... .......... .......... .......... 99% 19.3M 0s +2024-04-19T21:15:36Z #15 3.173 126200K .......... .......... .......... .......... .......... 99% 106M 0s +2024-04-19T21:15:36Z #15 3.173 126250K .......... .......... .......... .......... .......... 99% 126M 0s +2024-04-19T21:15:36Z #15 3.174 126300K .......... .......... .......... .......... .......... 99% 131M 0s +2024-04-19T21:15:36Z #15 3.174 126350K .......... .......... .......... .......... .......... 99% 112M 0s +2024-04-19T21:15:36Z #15 3.175 126400K .......... .......... .......... .......... .......... 99% 106M 0s +2024-04-19T21:15:36Z #15 3.175 126450K .......... .......... .......... .......... .......... 99% 125M 0s +2024-04-19T21:15:36Z #15 3.175 126500K .......... .......... .......... .......... .......... 99% 128M 0s +2024-04-19T21:15:36Z #15 3.176 126550K .......... .......... .......... .......... .......... 99% 107M 0s +2024-04-19T21:15:36Z #15 3.176 126600K .......... .......... .......... .......... .......... 99% 121M 0s +2024-04-19T21:15:36Z #15 3.177 126650K .......... .......... .......... .......... .......... 99% 161M 0s +2024-04-19T21:15:36Z #15 3.177 126700K .......... .......... .......... .......... .......... 99% 132M 0s +2024-04-19T21:15:36Z #15 3.177 126750K .......... .......... .......... .. 100% 133M=1.7s +2024-04-19T21:15:36Z #15 3.178 +2024-04-19T21:15:36Z #15 3.178 2024-04-19 21:15:36 (71.7 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] +2024-04-19T21:15:36Z #15 3.178 +2024-04-19T21:15:37Z #15 4.675 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' +2024-04-19T21:15:37Z #15 4.697 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-04-19T21:15:38Z #15 DONE 5.3s +2024-04-19T21:15:38Z +2024-04-19T21:15:38Z #16 exporting to image +2024-04-19T21:15:38Z #16 exporting layers +2024-04-19T21:18:20Z #16 exporting layers 162.3s done +2024-04-19T21:18:20Z #16 writing image sha256:10bdc081fe8fdf99936ab69cc1bf5cd1b080a1ff602a4cba74e66c40cacc053a done +2024-04-19T21:18:20Z #16 naming to docker.io/pavics/workflow-tests:py310-240419 done +2024-04-19T21:18:20Z #16 DONE 162.3s +2024-04-19T21:18:20Z Pushing index.docker.io/pavics/workflow-tests:py310-240419... +2024-04-19T21:26:33Z Done! +2024-04-19T21:26:33Z Build finished From 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sat, 20 Apr 2024 10:59:26 -0400 Subject: [PATCH 073/104] docker: py310-240419: conda env export --- docker/saved_buildout/conda-env-export.yml | 56 +++++++++++----------- 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index ded7cdb..ca453f3 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -52,7 +52,7 @@ dependencies: - bleach=6.1.0=pyhd8ed1ab_0 - blinker=1.7.0=pyhd8ed1ab_0 - blosc=1.21.5=h0f2a231_0 - - bokeh=3.4.0=pyhd8ed1ab_0 + - bokeh=3.4.1=pyhd8ed1ab_0 - boltons=24.0.0=pyhd8ed1ab_0 - boost-cpp=1.78.0=h5adbc97_2 - botocore=1.34.51=pyge310_1234567_0 @@ -64,7 +64,7 @@ dependencies: - brunsli=0.1=h9c3ff4c_0 - bzip2=1.0.8=hd590300_5 - c-ares=1.28.1=hd590300_0 - - c-blosc2=2.14.4=hb4ffafa_1 + - c-blosc2=2.12.0=hb4ffafa_0 - ca-certificates=2024.2.2=hbcca054_0 - cached-property=1.5.2=hd8ed1ab_1 - cached_property=1.5.2=pyha770c72_1 @@ -128,6 +128,7 @@ dependencies: - esgf-pyclient=0.3.1=pyhca7485f_3 - esmf=8.4.0=nompi_hdb2cfa9_4 - esmpy=8.4.0=nompi_py310h4c636dd_2 + - et_xmlfile=1.1.0=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.1.1=pyhd8ed1ab_0 - executing=2.0.1=pyhd8ed1ab_0 @@ -205,9 +206,10 @@ dependencies: - hvplot=0.9.2=pyhd8ed1ab_0 - icu=70.1=h27087fc_0 - identify=2.5.35=pyhd8ed1ab_0 - - idna=3.6=pyhd8ed1ab_0 + - idna=3.7=pyhd8ed1ab_0 - imagecodecs=2023.1.23=py310ha3ed6a1_0 - imageio=2.34.0=pyh4b66e23_0 + - impi_rt=2021.12.0=ha770c72_535 - importlib-metadata=7.1.0=pyha770c72_0 - importlib_metadata=7.1.0=hd8ed1ab_0 - importlib_resources=6.4.0=pyhd8ed1ab_0 @@ -223,7 +225,7 @@ dependencies: - ipython_genutils=0.2.0=py_1 - ipywidgets=8.1.2=pyhd8ed1ab_0 - isoduration=20.11.0=pyhd8ed1ab_0 - - itsdangerous=2.1.2=pyhd8ed1ab_0 + - itsdangerous=2.2.0=pyhd8ed1ab_0 - jack=1.9.22=h11f4161_0 - jasper=2.0.33=h0ff4b12_1 - jedi=0.19.1=pyhd8ed1ab_0 @@ -232,14 +234,14 @@ dependencies: - joblib=1.4.0=pyhd8ed1ab_0 - jpeg=9e=h166bdaf_2 - json-c=0.16=hc379101_0 - - json5=0.9.24=pyhd8ed1ab_0 + - json5=0.9.25=pyhd8ed1ab_0 - jsonpickle=3.0.4=pyhd8ed1ab_0 - jsonpointer=2.4=py310hff52083_3 - jsonschema=4.21.1=pyhd8ed1ab_0 - jsonschema-specifications=2023.12.1=pyhd8ed1ab_0 - jsonschema-with-format-nongpl=4.21.1=pyhd8ed1ab_0 - jupyter=1.0.0=pyhd8ed1ab_10 - - jupyter-archive=3.4.0=pyhd8ed1ab_0 + - jupyter-archive=3.3.4=pyhd8ed1ab_1 - jupyter-resource-usage=0.7.1=pyhd8ed1ab_0 - jupyter-server-mathjax=0.2.6=pyh5bfe37b_1 - jupyter-server-proxy=4.1.2=pyhd8ed1ab_0 @@ -248,7 +250,7 @@ dependencies: - jupyter_console=6.6.3=pyhd8ed1ab_0 - jupyter_core=5.7.2=py310hff52083_0 - jupyter_events=0.10.0=pyhd8ed1ab_0 - - jupyter_server=2.13.0=pyhd8ed1ab_0 + - jupyter_server=2.14.0=pyhd8ed1ab_0 - jupyter_server_fileid=0.9.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_0 - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 @@ -345,7 +347,7 @@ dependencies: - libsodium=1.0.18=h36c2ea0_1 - libspatialindex=1.9.3=h9c3ff4c_4 - libspatialite=5.0.1=h221c8f1_23 - - libsqlite=3.45.2=h2797004_0 + - libsqlite=3.45.3=h2797004_0 - libssh2=1.11.0=h0841786_0 - libstdcxx-ng=13.2.0=h7e041cc_5 - libsystemd0=253=h8c4010b_1 @@ -359,7 +361,7 @@ dependencies: - libuuid=2.38.1=h0b41bf4_0 - libuv=1.44.2=hd590300_1 - libvorbis=1.3.7=h9c3ff4c_0 - - libwebp-base=1.3.2=hd590300_1 + - libwebp-base=1.4.0=hd590300_0 - libxcb=1.13=h7f98852_1004 - libxcrypt=4.4.36=hd590300_1 - libxkbcommon=1.5.0=h79f4944_1 @@ -376,7 +378,7 @@ dependencies: - lxml=4.9.2=py310hbdc0903_0 - lz4=4.3.3=py310h350c4a5_0 - lz4-c=1.9.4=hcb278e6_0 - - lzo=2.10=h516909a_1000 + - lzo=2.10=hd590300_1001 - mako=1.3.3=pyhd8ed1ab_0 - mamba_gator=5.2.1=pyhd8ed1ab_0 - mapclassify=2.6.1=pyhd8ed1ab_0 @@ -385,7 +387,7 @@ dependencies: - markupsafe=2.1.5=py310h2372a71_0 - matplotlib=3.8.4=py310hff52083_0 - matplotlib-base=3.8.4=py310h62c0568_0 - - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - matplotlib-inline=0.1.7=pyhd8ed1ab_0 - mdit-py-plugins=0.4.0=pyhd8ed1ab_0 - mdurl=0.1.2=pyhd8ed1ab_0 - memory_profiler=0.61.0=pyhd8ed1ab_0 @@ -393,8 +395,8 @@ dependencies: - minizip=4.0.3=h0ab5242_0 - mistune=3.0.2=pyhd8ed1ab_0 - mpg123=1.32.6=h59595ed_0 - - mpi=1.0=openmpi - - mpi4py=3.1.5=py310h2a790f2_1 + - mpi=1.0=impi + - mpi4py=3.1.6=py310h45b48a2_0 - msgpack-python=1.0.7=py310hd41b1e2_0 - multidict=6.0.5=py310h2372a71_0 - multipledispatch=0.6.0=py_0 @@ -436,7 +438,7 @@ dependencies: - oauthlib=3.2.2=pyhd8ed1ab_0 - openblas=0.3.27=pthreads_h7a3da1a_0 - openjpeg=2.5.0=hfec8fc6_2 - - openmpi=4.1.6=h336e698_100 + - openpyxl=3.1.2=py310h2372a71_1 - openssl=3.1.5=hd590300_0 - orc=1.8.3=h2f23424_1 - outcome=1.3.0.post0=pyhd8ed1ab_0 @@ -466,7 +468,7 @@ dependencies: - pixman=0.43.2=h59595ed_0 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - platformdirs=4.2.0=pyhd8ed1ab_0 - - plotly=5.19.0=pyhd8ed1ab_0 + - plotly=5.21.0=pyhd8ed1ab_0 - pluggy=1.4.0=pyhd8ed1ab_0 - ply=3.11=pyhd8ed1ab_2 - pooch=1.8.1=pyhd8ed1ab_0 @@ -493,18 +495,18 @@ dependencies: - pure_eval=0.2.2=pyhd8ed1ab_0 - pyarrow=11.0.0=py310h633f555_14_cpu - pyarrow-hotfix=0.6=pyhd8ed1ab_0 - - pyasn1=0.5.1=pyhd8ed1ab_0 - - pyasn1-modules=0.3.0=pyhd8ed1ab_0 + - pyasn1=0.6.0=pyhd8ed1ab_0 + - pyasn1-modules=0.4.0=pyhd8ed1ab_0 - pycparser=2.22=pyhd8ed1ab_0 - pyct=0.5.0=pyhd8ed1ab_0 - pycurl=7.45.1=py310h60f9ec7_3 - - pydantic=2.6.4=pyhd8ed1ab_0 - - pydantic-core=2.16.3=py310hcb5633a_0 + - pydantic=2.7.0=pyhd8ed1ab_0 + - pydantic-core=2.18.1=py310hcb5633a_0 - pydap=3.4.0=pyhd8ed1ab_0 - pydeck=0.8.0=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyjwt=2.8.0=pyhd8ed1ab_1 - - pykdtree=1.3.11=py310h1f7b6fc_0 + - pykdtree=1.3.12=py310h8a78493_0 - pymbolic=2022.2=pyhd8ed1ab_0 - pymetalink=6.4=pyhd8ed1ab_0 - pynacl=1.5.0=py310h2372a71_3 @@ -553,7 +555,7 @@ dependencies: - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rich=13.7.1=pyhd8ed1ab_0 - - rioxarray=0.15.3=pyhd8ed1ab_0 + - rioxarray=0.15.4=pyhd8ed1ab_0 - roocs-grids=0.1.2=pyhd8ed1ab_0 - roocs-utils=0.6.7=pyhca7485f_0 - rpds-py=0.18.0=py310hcb5633a_0 @@ -573,7 +575,7 @@ dependencies: - selenium=4.19.0=pyhd8ed1ab_0 - selenium-manager=4.19.0=he8a937b_0 - send2trash=1.8.3=pyh0d859eb_0 - - setuptools=69.2.0=pyhd8ed1ab_0 + - setuptools=69.5.1=pyhd8ed1ab_0 - shapely=2.0.1=py310h8b84c32_0 - simpervisor=1.0.0=pyhd8ed1ab_0 - sip=6.7.12=py310hc6cd4ac_0 @@ -589,7 +591,7 @@ dependencies: - spdlog=1.12.0=hd2e6256_2 - spotpy=1.6.2=pyhd8ed1ab_0 - sqlalchemy=2.0.29=py310h2372a71_0 - - sqlite=3.45.2=h2c6b66d_0 + - sqlite=3.45.3=h2c6b66d_0 - stack_data=0.6.2=pyhd8ed1ab_0 - statsmodels=0.14.1=py310h1f7b6fc_0 - streamlit=1.33.0=pyhd8ed1ab_1 @@ -607,7 +609,7 @@ dependencies: - toolz=0.12.1=pyhd8ed1ab_0 - tornado=6.4=py310h2372a71_0 - tqdm=4.66.2=pyhd8ed1ab_0 - - traitlets=5.14.2=pyhd8ed1ab_0 + - traitlets=5.14.3=pyhd8ed1ab_0 - traittypes=0.2.1=pyh9f0ad1d_2 - trio=0.25.0=py310hff52083_0 - trio-websocket=0.11.1=pyhd8ed1ab_0 @@ -628,8 +630,8 @@ dependencies: - url-normalize=1.4.3=pyhd8ed1ab_0 - urllib3=2.0.7=pyhd8ed1ab_0 - urlpath=1.2.0=pyhd8ed1ab_0 - - validators=0.28.0=pyhd8ed1ab_0 - - virtualenv=20.25.1=pyhd8ed1ab_0 + - validators=0.28.1=pyhd8ed1ab_0 + - virtualenv=20.25.3=pyhd8ed1ab_0 - voila=0.5.6=pyhd8ed1ab_0 - watchdog=4.0.0=py310hff52083_0 - wcwidth=0.2.13=pyhd8ed1ab_0 @@ -652,7 +654,7 @@ dependencies: - xcb-util-wm=0.4.1=h516909a_0 - xclim=0.47.0=py310hff52083_0 - xerces-c=3.2.4=h55805fa_1 - - xesmf=0.8.4=pyhd8ed1ab_1 + - xesmf=0.8.5=pyhd8ed1ab_0 - xeus=3.1.5=h06414e2_0 - xeus-python=0.15.12=py310hd41b1e2_0 - xeus-python-shell=0.5.0=pyhd8ed1ab_0 From 80cd6c4a5cf497dbb06f82e7ba6e78a059384ebb Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 23 Apr 2024 21:02:42 -0400 Subject: [PATCH 074/104] docker: py310-240419: initial jenkins, default nb, only homepage nb 4 --- .../jenkins-buildlogs-default.txt | 1613 ++++++++--------- 1 file changed, 775 insertions(+), 838 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index a5df39b..2c81c85 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -1,5 +1,5 @@ Started by user Long Vu -Replayed #288 +Replayed #294 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -8,7 +8,6 @@ Fetching upstream changes from origin > git --version # timeout=10 > git config --get remote.origin.url # timeout=10 > git fetch --tags --progress -- origin +refs/heads/*:refs/remotes/origin/* # timeout=10 -Seen branch in repository origin/allow-full-custom-config-override Seen branch in repository origin/current-production-version Seen branch in repository origin/devel-new-extensions Seen branch in repository origin/extended_tests @@ -18,8 +17,8 @@ Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 10 remote branches -Obtained Jenkinsfile from 9765cc8d98bef9ded245654406ac56d5e6bd0f97 +Seen 9 remote branches +Obtained Jenkinsfile from 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -31,844 +30,782 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags +Checking out Revision 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 (new-docker-build) +Commit message: "docker: py310-240419: conda env export" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 (new-docker-build) -Commit message: "release: update to use image pavics/workflow-tests:py310-240411" > git config core.sparsecheckout # timeout=10 - > git checkout -f 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 # timeout=10 - > git rev-list --no-walk 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 # timeout=10 + > git checkout -f 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 # timeout=10 + > git rev-list --no-walk 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240411 ++ docker inspect -f . pavics/workflow-tests:py310-240419 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240411 cat -$ docker top 31a69ca4dbfc4c2d71081aac6f92e6dd5b8cf9aea4aaa92c9f1ea209873e7f05 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240419 cat +$ docker top 92c582eb50d564204deb33d83c67e8561be689fd8307b8e9cdc310bdb6b5aedb -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-12T03:53:20.733Z] Timeout set to expire in 2 hr 0 min +[2024-04-20T17:31:51.999Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-12T03:53:22.264Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-20T17:31:53.006Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-12T03:53:22.647Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-12T03:53:22.647Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-12T03:53:22.647Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-12T03:53:22.647Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-12T03:53:22.647Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-12T03:53:22.647Z] FINCH_BRANCH has been set to 'master' -[2024-04-12T03:53:22.647Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-12T03:53:22.647Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-12T03:53:22.647Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-12T03:53:22.647Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-12T03:53:22.647Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-12T03:53:22.647Z] RAVEN_BRANCH has been set to 'main' -[2024-04-12T03:53:22.647Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-12T03:53:22.647Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-12T03:53:22.647Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-12T03:53:22.647Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-12T03:53:22.647Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-12T03:53:22.647Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-12T03:53:22.647Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-12T03:53:22.647Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-12T03:53:22.647Z] + git clean -fdx -[2024-04-12T03:53:22.910Z] Removing .pytest_cache/ -[2024-04-12T03:53:22.910Z] Removing PAVICS-landing-master/ -[2024-04-12T03:53:22.910Z] Removing RavenPy-master/ -[2024-04-12T03:53:22.910Z] Removing __pycache__/ -[2024-04-12T03:53:22.910Z] Removing buildout/ -[2024-04-12T03:53:22.910Z] Removing esgf-compute-api-devel/ -[2024-04-12T03:53:22.910Z] Removing finch-master/ -[2024-04-12T03:53:22.910Z] Removing pavics-sdi-master/ -[2024-04-12T03:53:22.910Z] Removing raven-main/ -[2024-04-12T03:53:22.910Z] + ./downloadrepos -[2024-04-12T03:53:22.910Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-12T03:53:22.910Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-12T03:53:22.910Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-12T03:53:22.910Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-12T03:53:22.910Z] FINCH_BRANCH has been set to 'master' -[2024-04-12T03:53:22.910Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-12T03:53:22.910Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-12T03:53:22.910Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-12T03:53:22.910Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-12T03:53:22.910Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-12T03:53:22.910Z] RAVEN_BRANCH has been set to 'main' -[2024-04-12T03:53:22.910Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-12T03:53:22.911Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-12T03:53:22.911Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-12T03:53:22.911Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-12T03:53:22.911Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-12T03:53:22.911Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-12T03:53:22.911Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-12T03:53:22.911Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-12T03:53:22.911Z] + rm -rf pavics-sdi-* -[2024-04-12T03:53:22.911Z] + ls -[2024-04-12T03:53:22.911Z] + grep pavics-sdi -[2024-04-12T03:53:22.911Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:53:22.911Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-12T03:53:22.911Z] + shift -[2024-04-12T03:53:22.911Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:53:22.911Z] + shift -[2024-04-12T03:53:22.911Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-12T03:53:22.911Z] + tar xz -[2024-04-12T03:53:40.961Z] + ls -[2024-04-12T03:53:40.961Z] + grep pavics-sdi -[2024-04-12T03:53:40.961Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:53:40.961Z] + set +x -[2024-04-12T03:53:40.961Z] + rm -rf finch-* -[2024-04-12T03:53:40.961Z] + ls -[2024-04-12T03:53:40.961Z] + grep finch -[2024-04-12T03:53:40.961Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-12T03:53:40.961Z] + github_repo=https://github.com/bird-house/finch -[2024-04-12T03:53:40.961Z] + shift -[2024-04-12T03:53:40.961Z] + branch=master -[2024-04-12T03:53:40.961Z] + shift -[2024-04-12T03:53:40.961Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-12T03:53:40.961Z] + tar xz -[2024-04-12T03:53:42.913Z] + ls -[2024-04-12T03:53:42.913Z] + grep finch -[2024-04-12T03:53:42.913Z] finch-master -[2024-04-12T03:53:42.913Z] + set +x -[2024-04-12T03:53:42.913Z] + rm -rf PAVICS-landing-* -[2024-04-12T03:53:42.913Z] + ls -[2024-04-12T03:53:42.913Z] + grep PAVICS-landing -[2024-04-12T03:53:42.913Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:53:42.913Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-12T03:53:42.913Z] + shift -[2024-04-12T03:53:42.913Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:53:42.913Z] + shift -[2024-04-12T03:53:42.913Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-12T03:53:42.913Z] + tar xz -[2024-04-12T03:54:14.961Z] + ls -[2024-04-12T03:54:14.961Z] + grep PAVICS-landing -[2024-04-12T03:54:14.961Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:54:14.961Z] + set +x -[2024-04-12T03:54:14.961Z] + rm -rf raven-* -[2024-04-12T03:54:14.961Z] + ls -[2024-04-12T03:54:14.961Z] + grep raven -[2024-04-12T03:54:14.961Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-12T03:54:14.961Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-12T03:54:14.961Z] + shift -[2024-04-12T03:54:14.961Z] + branch=main -[2024-04-12T03:54:14.961Z] + shift -[2024-04-12T03:54:14.961Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-12T03:54:14.961Z] + tar xz -[2024-04-12T03:54:14.961Z] + ls -[2024-04-12T03:54:14.961Z] + grep raven -[2024-04-12T03:54:14.961Z] raven-main -[2024-04-12T03:54:14.961Z] + set +x -[2024-04-12T03:54:14.961Z] + rm -rf RavenPy-* -[2024-04-12T03:54:14.961Z] + ls -[2024-04-12T03:54:14.961Z] + grep RavenPy -[2024-04-12T03:54:14.961Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-12T03:54:14.961Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-12T03:54:14.961Z] + shift -[2024-04-12T03:54:14.961Z] + branch=master -[2024-04-12T03:54:14.961Z] + shift -[2024-04-12T03:54:14.961Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-12T03:54:14.961Z] + tar xz -[2024-04-12T03:54:36.869Z] + ls -[2024-04-12T03:54:36.869Z] + grep RavenPy -[2024-04-12T03:54:36.869Z] RavenPy-master -[2024-04-12T03:54:36.869Z] + set +x -[2024-04-12T03:54:36.869Z] + rm -rf esgf-compute-api-* -[2024-04-12T03:54:36.869Z] + ls -[2024-04-12T03:54:36.869Z] + grep esgf-compute-api -[2024-04-12T03:54:36.869Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-12T03:54:36.869Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-12T03:54:36.869Z] + shift -[2024-04-12T03:54:36.869Z] + branch=devel -[2024-04-12T03:54:36.869Z] + shift -[2024-04-12T03:54:36.869Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-12T03:54:36.869Z] + tar xz -[2024-04-12T03:54:36.869Z] + ls -[2024-04-12T03:54:36.869Z] + grep esgf-compute-api -[2024-04-12T03:54:36.869Z] esgf-compute-api-devel -[2024-04-12T03:54:36.869Z] + set +x -[2024-04-12T03:54:36.869Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:54:36.869Z] + sed s@/@-@g -[2024-04-12T03:54:36.869Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:54:36.869Z] + echo Ouranosinc/pavics-sdi -[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g -[2024-04-12T03:54:36.869Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-12T03:54:36.869Z] + echo master -[2024-04-12T03:54:36.869Z] + sed s@/@-@g -[2024-04-12T03:54:36.869Z] + FINCH_BRANCH=master -[2024-04-12T03:54:36.869Z] + echo bird-house/finch -[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g -[2024-04-12T03:54:36.869Z] + FINCH_REPO_NAME=finch -[2024-04-12T03:54:36.869Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:54:36.869Z] + sed s@/@-@g -[2024-04-12T03:54:36.869Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:54:36.869Z] + echo Ouranosinc/PAVICS-landing -[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g -[2024-04-12T03:54:36.869Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-12T03:54:36.869Z] + echo main -[2024-04-12T03:54:36.869Z] + sed s@/@-@g -[2024-04-12T03:54:36.869Z] + RAVEN_BRANCH=main -[2024-04-12T03:54:36.869Z] + echo Ouranosinc/raven -[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g -[2024-04-12T03:54:36.869Z] + RAVEN_REPO_NAME=raven -[2024-04-12T03:54:36.869Z] + echo master -[2024-04-12T03:54:36.869Z] + sed s@/@-@g -[2024-04-12T03:54:36.869Z] + RAVENPY_BRANCH=master -[2024-04-12T03:54:36.869Z] + echo CSHS-CWRA/RavenPy -[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g -[2024-04-12T03:54:36.869Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-12T03:54:36.869Z] + echo devel -[2024-04-12T03:54:36.869Z] + sed s@/@-@g -[2024-04-12T03:54:36.869Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-12T03:54:36.869Z] + echo ESGF/esgf-compute-api -[2024-04-12T03:54:36.869Z] + sed s@^.*/@@g -[2024-04-12T03:54:36.869Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-12T03:54:36.869Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:54:36.869Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:54:36.869Z] + echo finch-master -[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:54:36.869Z] + FINCH_DIR=finch-master -[2024-04-12T03:54:36.869Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:54:36.869Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-12T03:54:36.869Z] + echo raven-main -[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:54:36.869Z] + RAVEN_DIR=raven-main -[2024-04-12T03:54:36.869Z] + echo RavenPy-master -[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:54:36.869Z] + RAVENPY_DIR=RavenPy-master -[2024-04-12T03:54:36.869Z] + echo esgf-compute-api-devel -[2024-04-12T03:54:36.869Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:54:36.869Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-12T03:54:36.869Z] + echo true -[2024-04-12T03:54:36.869Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.869Z] + VERIFY_SSL=true -[2024-04-12T03:54:36.869Z] + [ xtrue = xfalse ] -[2024-04-12T03:54:36.869Z] + rm -v finch-master/setup.cfg -[2024-04-12T03:54:36.869Z] removed 'finch-master/setup.cfg' -[2024-04-12T03:54:36.869Z] + rm -v raven-main/setup.cfg -[2024-04-12T03:54:36.869Z] removed 'raven-main/setup.cfg' -[2024-04-12T03:54:36.869Z] + rm -v raven-main/pyproject.toml -[2024-04-12T03:54:36.870Z] removed 'raven-main/pyproject.toml' -[2024-04-12T03:54:36.870Z] + rm -v RavenPy-master/setup.cfg -[2024-04-12T03:54:36.870Z] removed 'RavenPy-master/setup.cfg' -[2024-04-12T03:54:36.870Z] + rm -v RavenPy-master/tox.ini -[2024-04-12T03:54:36.870Z] removed 'RavenPy-master/tox.ini' -[2024-04-12T03:54:36.870Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-12T03:54:36.870Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-12T03:54:36.870Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-12T03:54:36.870Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-12T03:54:36.870Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-12T03:54:36.870Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-12T03:54:36.870Z] + echo false -[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.870Z] + TEST_MAGPIE_AUTH=false -[2024-04-12T03:54:36.870Z] + echo true -[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.870Z] + TEST_PAVICS_SDI_REPO=true -[2024-04-12T03:54:36.870Z] + echo false -[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.870Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-12T03:54:36.870Z] + echo true -[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.870Z] + TEST_FINCH_REPO=true -[2024-04-12T03:54:36.870Z] + echo true -[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.870Z] + TEST_PAVICS_LANDING_REPO=true -[2024-04-12T03:54:36.870Z] + echo false -[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.870Z] + TEST_RAVEN_REPO=false -[2024-04-12T03:54:36.870Z] + echo false -[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.870Z] + TEST_RAVENPY_REPO=false -[2024-04-12T03:54:36.870Z] + echo false -[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.870Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-12T03:54:36.870Z] + echo true -[2024-04-12T03:54:36.870Z] + tr [:upper:] [:lower:] -[2024-04-12T03:54:36.870Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-04-12T03:54:36.870Z] + NOTEBOOKS_TO_TEST= -[2024-04-12T03:54:36.870Z] + [ xfalse = xtrue ] -[2024-04-12T03:54:36.870Z] + [ xtrue = xtrue ] -[2024-04-12T03:54:36.870Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb -[2024-04-12T03:54:36.870Z] + [ xfalse = xtrue ] -[2024-04-12T03:54:36.870Z] + [ xtrue = xtrue ] -[2024-04-12T03:54:36.870Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-04-12T03:54:36.870Z] + [ xtrue = xtrue ] -[2024-04-12T03:54:36.870Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb -[2024-04-12T03:54:36.870Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-12T03:54:36.870Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-04-12T03:54:36.870Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-12T03:54:36.870Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-12T03:54:36.870Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-12T03:54:36.870Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-12T03:54:36.870Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators -[2024-04-12T03:54:36.870Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-12T03:54:36.870Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-12T03:54:36.870Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-04-12T03:54:36.870Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.870Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.871Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.872Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.873Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-12T03:54:36.873Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-04-12T03:54:36.873Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-04-12T03:54:36.873Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-04-12T03:54:36.873Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' -[2024-04-12T03:54:36.873Z] + [ xfalse = xtrue ] -[2024-04-12T03:54:36.873Z] + [ xfalse = xtrue ] -[2024-04-12T03:54:36.873Z] + [ xfalse = xtrue ] -[2024-04-12T03:54:36.873Z] + [ xtrue = xtrue ] -[2024-04-12T03:54:36.873Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-12T03:54:36.873Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-12T03:54:36.873Z] + [ -n ] -[2024-04-12T03:54:36.873Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-12T03:54:36.873Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-12T03:54:36.873Z] Will run notebooks against pavics.ouranos.ca -[2024-04-12T03:54:36.873Z] + [ -z ] -[2024-04-12T03:54:36.873Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-04-12T03:54:36.873Z] + git diff -[2024-04-12T03:54:36.873Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-12T03:54:36.875Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-04-12T03:54:37.539Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-12T03:54:37.539Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-12T03:54:37.804Z] ============================= test session starts ============================== -[2024-04-12T03:54:37.804Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-04-12T03:54:37.804Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-04-12T03:54:37.804Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-12T03:54:37.804Z] collected 220 items -[2024-04-12T03:54:37.804Z] -[2024-04-12T03:54:41.095Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] -[2024-04-12T03:55:14.533Z] ..... [ 2%] -[2024-04-12T03:55:17.102Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] -[2024-04-12T03:55:23.218Z] ...... [ 5%] -[2024-04-12T03:55:25.145Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] -[2024-04-12T03:55:30.999Z] ..... [ 8%] -[2024-04-12T03:55:31.938Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] -[2024-04-12T03:55:51.000Z] ....... [ 12%] -[2024-04-12T03:55:59.144Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] -[2024-04-12T03:59:10.150Z] ........... [ 17%] -[2024-04-12T03:59:10.729Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] -[2024-04-12T03:59:19.021Z] ............... [ 25%] -[2024-04-12T03:59:21.579Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] -[2024-04-12T03:59:27.083Z] .... [ 27%] -[2024-04-12T03:59:29.023Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] -[2024-04-12T04:00:38.668Z] ..... [ 30%] -[2024-04-12T04:00:42.948Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] -[2024-04-12T04:00:50.555Z] ..... [ 32%] -[2024-04-12T04:00:52.493Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] -[2024-04-12T04:00:56.124Z] ...... [ 35%] -[2024-04-12T04:00:57.076Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] -[2024-04-12T04:01:00.187Z] .... [ 38%] -[2024-04-12T04:01:18.286Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] -[2024-04-12T04:02:50.567Z] ........................... [ 50%] -[2024-04-12T04:02:50.567Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] -[2024-04-12T04:02:51.088Z] ... [ 52%] -[2024-04-12T04:02:52.024Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] -[2024-04-12T04:03:09.735Z] ........................ [ 64%] -[2024-04-12T04:03:13.048Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] -[2024-04-12T04:03:17.843Z] ..... [ 66%] -[2024-04-12T04:03:26.446Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] -[2024-04-12T04:03:34.441Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] -[2024-04-12T04:03:35.821Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] -[2024-04-12T04:03:38.886Z] ...... [ 77%] -[2024-04-12T04:03:47.008Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] -[2024-04-12T04:04:00.323Z] ............. [ 84%] -[2024-04-12T04:04:10.312Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-04-12T04:04:31.702Z] ....s [ 86%] -[2024-04-12T04:04:38.258Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] -[2024-04-12T04:04:58.904Z] .F. [ 88%] -[2024-04-12T04:05:11.097Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] -[2024-04-12T04:05:59.348Z] ...... [ 91%] -[2024-04-12T04:05:59.870Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-04-12T04:08:02.287Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] =================================== FAILURES =================================== -[2024-04-12T04:08:02.287Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ -[2024-04-12T04:08:02.287Z] Notebook cell execution failed -[2024-04-12T04:08:02.287Z] Cell 2: Cell execution caused an exception -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] Input: -[2024-04-12T04:08:02.287Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) -[2024-04-12T04:08:02.287Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] chng_f, pos_f = xens.change_significance( -[2024-04-12T04:08:02.287Z] fut.sel(time=fut["time.season"] == "JJA"), -[2024-04-12T04:08:02.287Z] ref.sel(time=ref["time.season"] == "JJA"), -[2024-04-12T04:08:02.287Z] test="ttest", -[2024-04-12T04:08:02.287Z] ) -[2024-04-12T04:08:02.287Z] plt.figure( -[2024-04-12T04:08:02.287Z] figsize=(15, 6), -[2024-04-12T04:08:02.287Z] ) -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] plt.subplot(1, 2, 1) -[2024-04-12T04:08:02.287Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] plt.title(chng_f.description.split(".")[0]) -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] plt.subplot(1, 2, 2) -[2024-04-12T04:08:02.287Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-12T04:08:02.287Z] plt.title(pos_f.description.split(".")[0]) -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] display() -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] Traceback: -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] --------------------------------------------------------------------------- -[2024-04-12T04:08:02.287Z] AttributeError Traceback (most recent call last) -[2024-04-12T04:08:02.287Z] Cell In[1], line 20 -[2024-04-12T04:08:02.287Z]  18 plt.subplot(1, 2, 2) -[2024-04-12T04:08:02.287Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-12T04:08:02.287Z] ---> 20 plt.title(pos_f.description.split(".")[0]) -[2024-04-12T04:08:02.287Z]  22 display() -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-04-12T04:08:02.287Z]  275 with suppress(KeyError): -[2024-04-12T04:08:02.287Z]  276 return source[name] -[2024-04-12T04:08:02.287Z] --> 277 raise AttributeError( -[2024-04-12T04:08:02.287Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-04-12T04:08:02.287Z]  279 ) -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-04-12T04:08:02.287Z] -[2024-04-12T04:08:02.287Z] =========================== short test summary info ============================ -[2024-04-12T04:08:02.287Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-04-12T04:08:02.287Z] ============= 1 failed, 218 passed, 1 skipped in 802.78s (0:13:22) ============= -[2024-04-12T04:08:02.287Z] + EXIT_CODE=1 -[2024-04-12T04:08:02.287Z] + echo true -[2024-04-12T04:08:02.287Z] + tr [:upper:] [:lower:] -[2024-04-12T04:08:02.287Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-04-12T04:08:02.287Z] + [ xtrue = xtrue ] -[2024-04-12T04:08:02.287Z] + mkdir -p buildout -[2024-04-12T04:08:02.287Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-12T04:08:02.287Z] + filename=CaSR_basic.ipynb -[2024-04-12T04:08:02.287Z] + echo CaSR_basic.ipynb -[2024-04-12T04:08:02.287Z] + sed s/.ipynb$// -[2024-04-12T04:08:02.287Z] + filename=CaSR_basic -[2024-04-12T04:08:02.287Z] + [ -e buildout/CaSR_basic.output.ipynb ] -[2024-04-12T04:08:02.287Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-12T04:08:02.287Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook -[2024-04-12T04:08:28.959Z] 2024-04-12 04:08:26,426 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. -[2024-04-12T04:08:28.959Z] Traceback (most recent call last): -[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read -[2024-04-12T04:08:28.959Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) -[2024-04-12T04:08:28.959Z] tornado.iostream.StreamClosedError: Stream is closed -[2024-04-12T04:08:28.959Z] -[2024-04-12T04:08:28.959Z] The above exception was the direct cause of the following exception: -[2024-04-12T04:08:28.959Z] -[2024-04-12T04:08:28.959Z] Traceback (most recent call last): -[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat -[2024-04-12T04:08:28.959Z] response = await retry_operation( -[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation -[2024-04-12T04:08:28.959Z] return await retry( -[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry -[2024-04-12T04:08:28.959Z] return await coro() -[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc -[2024-04-12T04:08:28.959Z] return await send_recv(comm=comm, op=key, **kwargs) -[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv -[2024-04-12T04:08:28.959Z] response = await comm.read(deserializers=deserializers) -[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read -[2024-04-12T04:08:28.959Z] convert_stream_closed_error(self, e) -[2024-04-12T04:08:28.959Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error -[2024-04-12T04:08:28.959Z] raise CommClosedError(f"in {obj}: {exc}") from exc -[2024-04-12T04:08:28.959Z] distributed.comm.core.CommClosedError: in : Stream is closed -[2024-04-12T04:08:50.918Z] [NbConvertApp] Writing 694582 bytes to buildout/CaSR_basic.output.ipynb -[2024-04-12T04:08:50.918Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-12T04:08:50.918Z] + filename=WCS_example.ipynb -[2024-04-12T04:08:50.918Z] + echo WCS_example.ipynb -[2024-04-12T04:08:50.918Z] + sed s/.ipynb$// -[2024-04-12T04:08:50.918Z] + filename=WCS_example -[2024-04-12T04:08:50.918Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-04-12T04:08:50.918Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-12T04:08:50.918Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-04-12T04:09:00.892Z] [NbConvertApp] Writing 144062 bytes to buildout/WCS_example.output.ipynb -[2024-04-12T04:09:00.892Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-12T04:09:00.892Z] + filename=WFS_example.ipynb -[2024-04-12T04:09:00.892Z] + echo WFS_example.ipynb -[2024-04-12T04:09:00.892Z] + sed s/.ipynb$// -[2024-04-12T04:09:00.892Z] + filename=WFS_example -[2024-04-12T04:09:00.892Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-04-12T04:09:00.892Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-12T04:09:02.841Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-04-12T04:09:12.806Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb -[2024-04-12T04:09:12.806Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-12T04:09:12.806Z] + filename=WMS_example.ipynb -[2024-04-12T04:09:12.806Z] + echo WMS_example.ipynb -[2024-04-12T04:09:12.806Z] + sed s/.ipynb$// -[2024-04-12T04:09:12.806Z] + filename=WMS_example -[2024-04-12T04:09:12.806Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-04-12T04:09:12.806Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-12T04:09:13.754Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-04-12T04:09:19.044Z] [NbConvertApp] Writing 46204 bytes to buildout/WMS_example.output.ipynb -[2024-04-12T04:09:19.044Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-12T04:09:19.044Z] + filename=climex.ipynb -[2024-04-12T04:09:19.044Z] + + echo climex.ipynb -[2024-04-12T04:09:19.044Z] sed s/.ipynb$// -[2024-04-12T04:09:19.044Z] + filename=climex -[2024-04-12T04:09:19.044Z] + [ -e buildout/climex.output.ipynb ] -[2024-04-12T04:09:19.044Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-12T04:09:19.991Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook -[2024-04-12T04:12:56.533Z] [NbConvertApp] Writing 1790264 bytes to buildout/climex.output.ipynb -[2024-04-12T04:12:56.533Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-12T04:12:56.533Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-04-12T04:12:56.533Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-04-12T04:12:56.533Z] + sed s/.ipynb$// -[2024-04-12T04:12:56.533Z] + filename=eccc-geoapi-climate-stations -[2024-04-12T04:12:56.533Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-04-12T04:12:56.533Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-12T04:12:57.915Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-04-12T04:13:10.093Z] [NbConvertApp] Writing 279646 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-04-12T04:13:10.093Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-12T04:13:10.093Z] + filename=eccc-geoapi-xclim.ipynb -[2024-04-12T04:13:10.093Z] + echo eccc-geoapi-xclim.ipynb -[2024-04-12T04:13:10.093Z] + sed s/.ipynb$// -[2024-04-12T04:13:10.093Z] + filename=eccc-geoapi-xclim -[2024-04-12T04:13:10.093Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-04-12T04:13:10.093Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-12T04:13:11.992Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-04-12T04:13:22.004Z] [NbConvertApp] Writing 108151 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-04-12T04:13:22.004Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-12T04:13:22.004Z] + filename=esgf-dap.ipynb -[2024-04-12T04:13:22.004Z] + + echo esgf-dap.ipynb -[2024-04-12T04:13:22.004Z] sed s/.ipynb$// -[2024-04-12T04:13:22.004Z] + filename=esgf-dap -[2024-04-12T04:13:22.004Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-04-12T04:13:22.004Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-12T04:13:22.934Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-04-12T04:15:44.470Z] [NbConvertApp] Writing 39049 bytes to buildout/esgf-dap.output.ipynb -[2024-04-12T04:15:44.470Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-12T04:15:44.470Z] + filename=forecasts.ipynb -[2024-04-12T04:15:44.470Z] + echo forecasts.ipynb -[2024-04-12T04:15:44.470Z] + sed s/.ipynb$// -[2024-04-12T04:15:44.470Z] + filename=forecasts -[2024-04-12T04:15:44.470Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-04-12T04:15:44.470Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-12T04:15:44.470Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook -[2024-04-12T04:15:52.686Z] [NbConvertApp] Writing 165341 bytes to buildout/forecasts.output.ipynb -[2024-04-12T04:15:52.686Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-12T04:15:52.686Z] + filename=jupyter_extensions.ipynb -[2024-04-12T04:15:52.686Z] + echo jupyter_extensions.ipynb -[2024-04-12T04:15:52.686Z] + sed s/.ipynb$// -[2024-04-12T04:15:52.686Z] + filename=jupyter_extensions -[2024-04-12T04:15:52.686Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-04-12T04:15:52.686Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-12T04:15:54.080Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-04-12T04:15:55.997Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb -[2024-04-12T04:15:56.269Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-12T04:15:56.269Z] + filename=opendap.ipynb -[2024-04-12T04:15:56.269Z] + echo opendap.ipynb -[2024-04-12T04:15:56.269Z] + sed s/.ipynb$// -[2024-04-12T04:15:56.269Z] + filename=opendap -[2024-04-12T04:15:56.269Z] + [ -e buildout/opendap.output.ipynb ] -[2024-04-12T04:15:56.269Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-12T04:15:58.175Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook -[2024-04-12T04:16:08.233Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb -[2024-04-12T04:16:08.233Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-12T04:16:08.233Z] + filename=pavics_thredds.ipynb -[2024-04-12T04:16:08.233Z] + + echo pavics_thredds.ipynb -[2024-04-12T04:16:08.233Z] sed s/.ipynb$// -[2024-04-12T04:16:08.233Z] + filename=pavics_thredds -[2024-04-12T04:16:08.233Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-04-12T04:16:08.233Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-12T04:16:10.150Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-04-12T04:16:13.447Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-12T04:16:13.447Z] context: Access to service is forbidden. -[2024-04-12T04:16:13.447Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-12T04:16:13.447Z] context: Access to service is forbidden. -[2024-04-12T04:16:17.648Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb -[2024-04-12T04:16:17.908Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-12T04:16:17.908Z] + filename=regridding.ipynb -[2024-04-12T04:16:17.908Z] + echo regridding.ipynb -[2024-04-12T04:16:17.909Z] + sed s/.ipynb$// -[2024-04-12T04:16:17.909Z] + filename=regridding -[2024-04-12T04:16:17.909Z] + [ -e buildout/regridding.output.ipynb ] -[2024-04-12T04:16:17.909Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-12T04:16:19.358Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook -[2024-04-12T04:18:10.854Z] [NbConvertApp] Writing 1239953 bytes to buildout/regridding.output.ipynb -[2024-04-12T04:18:10.854Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-12T04:18:10.854Z] + filename=rendering.ipynb -[2024-04-12T04:18:10.854Z] + + echo rendering.ipynb -[2024-04-12T04:18:10.854Z] sed s/.ipynb$// -[2024-04-12T04:18:10.854Z] + filename=rendering -[2024-04-12T04:18:10.854Z] + [ -e buildout/rendering.output.ipynb ] -[2024-04-12T04:18:10.854Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-12T04:18:10.854Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook -[2024-04-12T04:18:10.854Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb -[2024-04-12T04:18:10.854Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-12T04:18:10.854Z] + filename=subset-user-input.ipynb -[2024-04-12T04:18:10.854Z] + + sed s/.ipynb$// -[2024-04-12T04:18:10.854Z] echo subset-user-input.ipynb -[2024-04-12T04:18:10.854Z] + filename=subset-user-input -[2024-04-12T04:18:10.854Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-04-12T04:18:10.854Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-12T04:18:10.854Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-04-12T04:18:28.961Z] [NbConvertApp] Writing 255279 bytes to buildout/subset-user-input.output.ipynb -[2024-04-12T04:18:28.962Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-12T04:18:28.962Z] + filename=subsetting.ipynb -[2024-04-12T04:18:28.962Z] + sed s/.ipynb$// -[2024-04-12T04:18:28.962Z] + echo subsetting.ipynb -[2024-04-12T04:18:28.962Z] + filename=subsetting -[2024-04-12T04:18:28.962Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-04-12T04:18:28.962Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-12T04:18:29.530Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook -[2024-04-12T04:18:39.528Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb -[2024-04-12T04:18:39.528Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-12T04:18:39.528Z] + filename=dap_subset.ipynb -[2024-04-12T04:18:39.528Z] + echo dap_subset.ipynb -[2024-04-12T04:18:39.528Z] + sed s/.ipynb$// -[2024-04-12T04:18:39.528Z] + filename=dap_subset -[2024-04-12T04:18:39.528Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-04-12T04:18:39.528Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-12T04:18:40.469Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-04-12T04:18:50.542Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb -[2024-04-12T04:18:50.542Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-12T04:18:50.542Z] + filename=finch-usage.ipynb -[2024-04-12T04:18:50.542Z] + echo finch-usage.ipynb -[2024-04-12T04:18:50.542Z] + sed s/.ipynb$// -[2024-04-12T04:18:50.542Z] + filename=finch-usage -[2024-04-12T04:18:50.542Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-04-12T04:18:50.542Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-12T04:18:51.917Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-04-12T04:19:04.135Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb -[2024-04-12T04:19:04.135Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-12T04:19:04.135Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-12T04:19:04.135Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-12T04:19:04.135Z] + sed s/.ipynb$// -[2024-04-12T04:19:04.135Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-04-12T04:19:04.135Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-04-12T04:19:04.135Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-12T04:19:04.135Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-04-12T04:19:10.696Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-04-12T04:19:10.696Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-12T04:19:10.696Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-12T04:19:10.696Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-12T04:19:10.696Z] + sed s/.ipynb$// -[2024-04-12T04:19:10.696Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-04-12T04:19:10.696Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-04-12T04:19:10.696Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-12T04:19:11.633Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-04-12T04:19:33.648Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-04-12T04:19:33.648Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-12T04:19:33.648Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-12T04:19:33.648Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-12T04:19:33.648Z] + sed s/.ipynb$// -[2024-04-12T04:19:33.648Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-04-12T04:19:33.648Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-04-12T04:19:33.649Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-12T04:19:35.027Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-04-12T04:30:11.780Z] [NbConvertApp] ERROR | Timeout waiting for execute reply (600s). -[2024-04-12T04:30:11.780Z] Traceback (most recent call last): -[2024-04-12T04:30:11.780Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 778, in _async_poll_for_reply -[2024-04-12T04:30:11.780Z] msg = await ensure_async(self.kc.shell_channel.get_msg(timeout=new_timeout)) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 198, in ensure_async -[2024-04-12T04:30:11.781Z] result = await obj -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_client/channels.py", line 230, in get_msg -[2024-04-12T04:30:11.781Z] raise Empty -[2024-04-12T04:30:11.781Z] _queue.Empty -[2024-04-12T04:30:11.781Z] -[2024-04-12T04:30:11.781Z] During handling of the above exception, another exception occurred: -[2024-04-12T04:30:11.781Z] -[2024-04-12T04:30:11.781Z] Traceback (most recent call last): -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in -[2024-04-12T04:30:11.781Z] sys.exit(main()) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance -[2024-04-12T04:30:11.781Z] super().launch_instance(argv=argv, **kwargs) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance -[2024-04-12T04:30:11.781Z] app.start() -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start -[2024-04-12T04:30:11.781Z] self.convert_notebooks() -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks -[2024-04-12T04:30:11.781Z] self.convert_single_notebook(notebook_filename) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook -[2024-04-12T04:30:11.781Z] output, resources = self.export_single_notebook( -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook -[2024-04-12T04:30:11.781Z] output, resources = self.exporter.from_filename( -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename -[2024-04-12T04:30:11.781Z] return self.from_file(f, resources=resources, **kw) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file -[2024-04-12T04:30:11.781Z] return self.from_notebook_node( -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node -[2024-04-12T04:30:11.781Z] nb_copy, resources = super().from_notebook_node(nb, resources, **kw) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node -[2024-04-12T04:30:11.781Z] nb_copy, resources = self._preprocess(nb_copy, resources) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess -[2024-04-12T04:30:11.781Z] nbc, resc = preprocessor(nbc, resc) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ -[2024-04-12T04:30:11.781Z] return self.preprocess(nb, resources) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess -[2024-04-12T04:30:11.781Z] self.preprocess_cell(cell, resources, index) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell -[2024-04-12T04:30:11.781Z] cell = self.execute_cell(cell, index, store_history=True) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped -[2024-04-12T04:30:11.781Z] return loop.run_until_complete(inner) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete -[2024-04-12T04:30:11.781Z] return future.result() -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1001, in async_execute_cell -[2024-04-12T04:30:11.781Z] exec_reply = await self.task_poll_for_reply -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 802, in _async_poll_for_reply -[2024-04-12T04:30:11.781Z] error_on_timeout_execute_reply = await self._async_handle_timeout(timeout, cell) -[2024-04-12T04:30:11.781Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 852, in _async_handle_timeout -[2024-04-12T04:30:11.781Z] raise CellTimeoutError.error_from_timeout_and_cell( -[2024-04-12T04:30:11.781Z] nbclient.exceptions.CellTimeoutError: A cell timed out while it was being executed, after 600 seconds. -[2024-04-12T04:30:11.781Z] The message was: Cell execution timed out. -[2024-04-12T04:30:11.781Z] Here is a preview of the cell contents: -[2024-04-12T04:30:11.781Z] ------------------- -[2024-04-12T04:30:11.781Z] ['# NBVAL_SKIP', '', '', '# We define a small sub-function for xclim.atmos indicator calculation and export to netcdf.', '# compute=False results in returning a dask.delayed object : computation is not immediately executed.'] -[2024-04-12T04:30:11.781Z] ... -[2024-04-12T04:30:11.781Z] [' print("finished")', '', ' # optionally restart the client when finished (can help ensure good memory management)', ' client.restart()', ' clear_output()'] -[2024-04-12T04:30:11.781Z] ------------------- -[2024-04-12T04:30:11.781Z] -[2024-04-12T04:30:11.781Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-12T04:30:11.781Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-12T04:30:11.781Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-12T04:30:11.781Z] + sed s/.ipynb$// -[2024-04-12T04:30:11.781Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-04-12T04:30:11.781Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-04-12T04:30:11.781Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-12T04:30:11.781Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-04-12T04:30:43.863Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-04-12T04:30:43.864Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-12T04:30:43.864Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-12T04:30:43.864Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-12T04:30:43.864Z] + sed s/.ipynb$// -[2024-04-12T04:30:43.864Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-04-12T04:30:43.864Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-04-12T04:30:43.864Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-12T04:30:43.864Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-04-12T04:31:51.624Z] [NbConvertApp] Writing 1051937 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-04-12T04:31:51.624Z] + basename notebooks/hummingbird.ipynb -[2024-04-12T04:31:51.624Z] + filename=hummingbird.ipynb -[2024-04-12T04:31:51.624Z] + + sed s/.ipynb$// -[2024-04-12T04:31:51.625Z] echo hummingbird.ipynb -[2024-04-12T04:31:51.625Z] + filename=hummingbird -[2024-04-12T04:31:51.625Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-04-12T04:31:51.625Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-04-12T04:31:51.625Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-04-12T04:31:51.625Z] [NbConvertApp] Writing 15864 bytes to buildout/hummingbird.output.ipynb -[2024-04-12T04:31:51.625Z] + basename notebooks/stress-tests.ipynb -[2024-04-12T04:31:51.625Z] + filename=stress-tests.ipynb -[2024-04-12T04:31:51.625Z] + sed s/.ipynb$// -[2024-04-12T04:31:51.625Z] + echo stress-tests.ipynb -[2024-04-12T04:31:51.625Z] + filename=stress-tests -[2024-04-12T04:31:51.625Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-04-12T04:31:51.625Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-04-12T04:31:51.625Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-04-12T04:33:58.115Z] [NbConvertApp] Writing 428563 bytes to buildout/stress-tests.output.ipynb -[2024-04-12T04:33:58.115Z] + exit 1 -[2024-04-12T04:33:58.115Z] + EXIT_CODE=1 -[2024-04-12T04:33:58.116Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-04-12T04:33:58.116Z] + mkdir -p buildout/env-dump -[2024-04-12T04:33:58.116Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-04-12T04:33:58.116Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-04-12T04:33:58.116Z] + conda env export -n birdy -[2024-04-12T04:34:10.309Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-12T04:34:10.309Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-12T04:34:10.309Z] + conda list -n birdy --explicit -[2024-04-12T04:34:20.251Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-12T04:34:20.251Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-12T04:34:20.252Z] + pip freeze -[2024-04-12T04:34:20.252Z] + exit 1 +[2024-04-20T17:31:53.362Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-20T17:31:53.362Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-20T17:31:53.362Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-20T17:31:53.362Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-20T17:31:53.362Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-20T17:31:53.362Z] FINCH_BRANCH has been set to 'master' +[2024-04-20T17:31:53.362Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-20T17:31:53.362Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-20T17:31:53.362Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-20T17:31:53.362Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-20T17:31:53.362Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-20T17:31:53.362Z] RAVEN_BRANCH has been set to 'main' +[2024-04-20T17:31:53.362Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-20T17:31:53.362Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-20T17:31:53.362Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-20T17:31:53.362Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-20T17:31:53.362Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-20T17:31:53.362Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-20T17:31:53.363Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-20T17:31:53.363Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-20T17:31:53.363Z] + git clean -fdx +[2024-04-20T17:31:54.312Z] Removing PAVICS-landing-master/ +[2024-04-20T17:31:54.312Z] Removing RavenPy-master/ +[2024-04-20T17:31:54.312Z] Removing __pycache__/ +[2024-04-20T17:31:54.312Z] Removing esgf-compute-api-devel/ +[2024-04-20T17:31:54.312Z] Removing finch-master/ +[2024-04-20T17:31:54.312Z] Removing pavics-sdi-master/ +[2024-04-20T17:31:54.312Z] Removing raven-main/ +[2024-04-20T17:31:54.312Z] + ./downloadrepos +[2024-04-20T17:31:54.312Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-20T17:31:54.312Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-20T17:31:54.312Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-20T17:31:54.312Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-20T17:31:54.312Z] FINCH_BRANCH has been set to 'master' +[2024-04-20T17:31:54.312Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-20T17:31:54.312Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-20T17:31:54.312Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-20T17:31:54.312Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-20T17:31:54.312Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-20T17:31:54.312Z] RAVEN_BRANCH has been set to 'main' +[2024-04-20T17:31:54.312Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-20T17:31:54.312Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-20T17:31:54.312Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-20T17:31:54.312Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-20T17:31:54.312Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-20T17:31:54.312Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-20T17:31:54.312Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-20T17:31:54.312Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-20T17:31:54.312Z] + rm -rf pavics-sdi-* +[2024-04-20T17:31:54.312Z] + ls +[2024-04-20T17:31:54.312Z] + grep pavics-sdi +[2024-04-20T17:31:54.312Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:31:54.312Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-20T17:31:54.312Z] + shift +[2024-04-20T17:31:54.312Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:31:54.312Z] + shift +[2024-04-20T17:31:54.312Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-20T17:31:54.312Z] + tar xz +[2024-04-20T17:31:56.849Z] + ls +[2024-04-20T17:31:56.849Z] + grep pavics-sdi +[2024-04-20T17:31:56.849Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:31:56.849Z] + set +x +[2024-04-20T17:31:56.849Z] + rm -rf finch-* +[2024-04-20T17:31:56.849Z] + grep+ finch +[2024-04-20T17:31:56.849Z] ls +[2024-04-20T17:31:56.849Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-20T17:31:56.849Z] + github_repo=https://github.com/bird-house/finch +[2024-04-20T17:31:56.849Z] + shift +[2024-04-20T17:31:56.849Z] + branch=master +[2024-04-20T17:31:56.849Z] + shift +[2024-04-20T17:31:56.849Z] + tar xz +[2024-04-20T17:31:56.849Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-20T17:31:58.751Z] + grep finch +[2024-04-20T17:31:58.751Z] + ls +[2024-04-20T17:31:58.751Z] finch-master +[2024-04-20T17:31:58.751Z] + set +x +[2024-04-20T17:31:58.751Z] + rm -rf PAVICS-landing-* +[2024-04-20T17:31:58.751Z] + ls +[2024-04-20T17:31:58.751Z] + grep PAVICS-landing +[2024-04-20T17:31:58.751Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:31:58.751Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-20T17:31:58.751Z] + shift +[2024-04-20T17:31:58.751Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:31:58.751Z] + shift +[2024-04-20T17:31:58.751Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-20T17:31:58.751Z] + tar xz +[2024-04-20T17:32:08.713Z] + ls +[2024-04-20T17:32:08.713Z] + grep PAVICS-landing +[2024-04-20T17:32:08.713Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:32:08.713Z] + set +x +[2024-04-20T17:32:08.713Z] + rm -rf raven-* +[2024-04-20T17:32:08.713Z] + ls +[2024-04-20T17:32:08.713Z] + grep raven +[2024-04-20T17:32:08.713Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-20T17:32:08.713Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-20T17:32:08.713Z] + shift +[2024-04-20T17:32:08.713Z] + branch=main +[2024-04-20T17:32:08.713Z] + shift +[2024-04-20T17:32:08.713Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-20T17:32:08.713Z] + tar xz +[2024-04-20T17:32:10.083Z] + ls +[2024-04-20T17:32:10.083Z] + grep raven +[2024-04-20T17:32:10.083Z] raven-main +[2024-04-20T17:32:10.083Z] + set +x +[2024-04-20T17:32:10.083Z] + rm -rf RavenPy-* +[2024-04-20T17:32:10.083Z] + ls +[2024-04-20T17:32:10.083Z] + grep RavenPy +[2024-04-20T17:32:10.083Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-20T17:32:10.083Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-20T17:32:10.083Z] + shift +[2024-04-20T17:32:10.083Z] + branch=master +[2024-04-20T17:32:10.083Z] + shift +[2024-04-20T17:32:10.083Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-20T17:32:10.083Z] + tar xz +[2024-04-20T17:32:11.981Z] + ls +[2024-04-20T17:32:11.981Z] + grep RavenPy +[2024-04-20T17:32:11.981Z] RavenPy-master +[2024-04-20T17:32:11.981Z] + set +x +[2024-04-20T17:32:11.981Z] + rm -rf esgf-compute-api-* +[2024-04-20T17:32:11.981Z] + ls +[2024-04-20T17:32:11.981Z] + grep esgf-compute-api +[2024-04-20T17:32:11.981Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-20T17:32:11.981Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-20T17:32:11.981Z] + shift +[2024-04-20T17:32:11.981Z] + branch=devel +[2024-04-20T17:32:11.981Z] + shift +[2024-04-20T17:32:11.981Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-20T17:32:11.981Z] + tar xz +[2024-04-20T17:32:12.547Z] + ls +[2024-04-20T17:32:12.547Z] + grep esgf-compute-api +[2024-04-20T17:32:12.547Z] esgf-compute-api-devel +[2024-04-20T17:32:12.547Z] + set +x +[2024-04-20T17:32:12.547Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:32:12.547Z] + sed s@/@-@g +[2024-04-20T17:32:12.547Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:32:12.547Z] + echo Ouranosinc/pavics-sdi +[2024-04-20T17:32:12.547Z] + sed s@^.*/@@g +[2024-04-20T17:32:12.547Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-20T17:32:12.547Z] + echo master +[2024-04-20T17:32:12.547Z] + sed s@/@-@g +[2024-04-20T17:32:12.547Z] + FINCH_BRANCH=master +[2024-04-20T17:32:12.547Z] + echo bird-house/finch +[2024-04-20T17:32:12.547Z] + sed s@^.*/@@g +[2024-04-20T17:32:12.547Z] + FINCH_REPO_NAME=finch +[2024-04-20T17:32:12.547Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:32:12.547Z] + sed s@/@-@g +[2024-04-20T17:32:12.547Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:32:12.547Z] + + echo Ouranosinc/PAVICS-landing +[2024-04-20T17:32:12.547Z] sed s@^.*/@@g +[2024-04-20T17:32:12.547Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-20T17:32:12.547Z] + + echosed main s@/@-@g +[2024-04-20T17:32:12.547Z] +[2024-04-20T17:32:12.547Z] + RAVEN_BRANCH=main +[2024-04-20T17:32:12.547Z] + + sed s@^.*/@@g +[2024-04-20T17:32:12.547Z] echo Ouranosinc/raven +[2024-04-20T17:32:12.547Z] + RAVEN_REPO_NAME=raven +[2024-04-20T17:32:12.547Z] + sed s@/@-@g +[2024-04-20T17:32:12.547Z] + echo master +[2024-04-20T17:32:12.547Z] + RAVENPY_BRANCH=master +[2024-04-20T17:32:12.547Z] + sed s@^.*/@@g +[2024-04-20T17:32:12.547Z] + echo CSHS-CWRA/RavenPy +[2024-04-20T17:32:12.809Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-20T17:32:12.809Z] + sed+ s@/@-@g +[2024-04-20T17:32:12.810Z] echo devel +[2024-04-20T17:32:12.810Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-20T17:32:12.810Z] + echo ESGF/esgf-compute-api +[2024-04-20T17:32:12.810Z] + sed s@^.*/@@g +[2024-04-20T17:32:12.810Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-20T17:32:12.810Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-20T17:32:12.810Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:32:12.810Z] + echo finch-master +[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-20T17:32:12.810Z] + FINCH_DIR=finch-master +[2024-04-20T17:32:12.810Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-20T17:32:12.810Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-20T17:32:12.810Z] + echo raven-main +[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-20T17:32:12.810Z] + RAVEN_DIR=raven-main +[2024-04-20T17:32:12.810Z] + echo RavenPy-master +[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-20T17:32:12.810Z] + RAVENPY_DIR=RavenPy-master +[2024-04-20T17:32:12.810Z] + echo esgf-compute-api-devel +[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-20T17:32:12.810Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-20T17:32:12.810Z] + echo true +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + VERIFY_SSL=true +[2024-04-20T17:32:12.810Z] + [ xtrue = xfalse ] +[2024-04-20T17:32:12.810Z] + rm -v finch-master/setup.cfg +[2024-04-20T17:32:12.810Z] removed 'finch-master/setup.cfg' +[2024-04-20T17:32:12.810Z] + rm -v raven-main/setup.cfg +[2024-04-20T17:32:12.810Z] removed 'raven-main/setup.cfg' +[2024-04-20T17:32:12.810Z] + rm -v raven-main/pyproject.toml +[2024-04-20T17:32:12.810Z] removed 'raven-main/pyproject.toml' +[2024-04-20T17:32:12.810Z] + rm -v RavenPy-master/setup.cfg +[2024-04-20T17:32:12.810Z] removed 'RavenPy-master/setup.cfg' +[2024-04-20T17:32:12.810Z] + rm -v RavenPy-master/tox.ini +[2024-04-20T17:32:12.810Z] removed 'RavenPy-master/tox.ini' +[2024-04-20T17:32:12.810Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-20T17:32:12.810Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-20T17:32:12.810Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-20T17:32:12.810Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-20T17:32:12.810Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-20T17:32:12.810Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-20T17:32:12.810Z] + echo false +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + TEST_MAGPIE_AUTH=false +[2024-04-20T17:32:12.810Z] + echo true +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + TEST_PAVICS_SDI_REPO=true +[2024-04-20T17:32:12.810Z] + echo false +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-20T17:32:12.810Z] + echo true +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + TEST_FINCH_REPO=true +[2024-04-20T17:32:12.810Z] + echo true +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + TEST_PAVICS_LANDING_REPO=true +[2024-04-20T17:32:12.810Z] + echo false +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + TEST_RAVEN_REPO=false +[2024-04-20T17:32:12.810Z] + echo false +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + TEST_RAVENPY_REPO=false +[2024-04-20T17:32:12.810Z] + echo false +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-20T17:32:12.810Z] + echo true +[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] +[2024-04-20T17:32:12.810Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-04-20T17:32:12.810Z] + NOTEBOOKS_TO_TEST= +[2024-04-20T17:32:12.810Z] + [ xfalse = xtrue ] +[2024-04-20T17:32:12.810Z] + [ xtrue = xtrue ] +[2024-04-20T17:32:12.810Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb +[2024-04-20T17:32:12.810Z] + [ xfalse = xtrue ] +[2024-04-20T17:32:12.810Z] + [ xtrue = xtrue ] +[2024-04-20T17:32:12.810Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-04-20T17:32:12.810Z] + [ xtrue = xtrue ] +[2024-04-20T17:32:12.810Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb +[2024-04-20T17:32:12.810Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-20T17:32:12.810Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-04-20T17:32:12.810Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-20T17:32:12.810Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-20T17:32:12.810Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-20T17:32:12.810Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-20T17:32:12.810Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators +[2024-04-20T17:32:12.810Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-20T17:32:12.810Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-20T17:32:12.810Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-04-20T17:32:12.810Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.072Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.072Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-20T17:32:13.593Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-04-20T17:32:13.593Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-04-20T17:32:13.593Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-04-20T17:32:13.593Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' +[2024-04-20T17:32:13.593Z] + [ xfalse = xtrue ] +[2024-04-20T17:32:13.593Z] + [ xfalse = xtrue ] +[2024-04-20T17:32:13.594Z] + [ xfalse = xtrue ] +[2024-04-20T17:32:13.594Z] + [ xtrue = xtrue ] +[2024-04-20T17:32:13.594Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-20T17:32:13.594Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-20T17:32:13.594Z] + [ -n ] +[2024-04-20T17:32:13.594Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-20T17:32:13.594Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-20T17:32:13.594Z] Will run notebooks against pavics.ouranos.ca +[2024-04-20T17:32:13.594Z] + [ -z ] +[2024-04-20T17:32:13.594Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-04-20T17:32:13.854Z] + git diff +[2024-04-20T17:32:13.854Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-20T17:32:13.854Z] + [ -n ] +[2024-04-20T17:32:13.855Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-04-20T17:32:15.764Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-20T17:32:15.764Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-20T17:32:16.342Z] ============================= test session starts ============================== +[2024-04-20T17:32:16.342Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-04-20T17:32:16.342Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-04-20T17:32:16.342Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-20T17:32:16.342Z] collected 220 items +[2024-04-20T17:32:16.342Z] +[2024-04-20T17:32:19.642Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-04-20T17:32:50.242Z] ..... [ 2%] +[2024-04-20T17:32:52.779Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-04-20T17:32:59.823Z] ...... [ 5%] +[2024-04-20T17:33:01.735Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-04-20T17:33:08.564Z] ..... [ 8%] +[2024-04-20T17:33:09.505Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-04-20T17:33:23.596Z] ....... [ 12%] +[2024-04-20T17:33:31.798Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] +[2024-04-20T17:36:17.031Z] ........... [ 17%] +[2024-04-20T17:36:17.031Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-04-20T17:36:23.100Z] ............... [ 25%] +[2024-04-20T17:36:25.635Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-04-20T17:36:30.654Z] .... [ 27%] +[2024-04-20T17:36:32.561Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] +[2024-04-20T17:36:37.632Z] ..... [ 30%] +[2024-04-20T17:36:45.738Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-04-20T17:36:52.120Z] ..... [ 32%] +[2024-04-20T17:36:54.042Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] +[2024-04-20T17:36:58.710Z] ...... [ 35%] +[2024-04-20T17:37:00.079Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-04-20T17:37:02.687Z] .... [ 38%] +[2024-04-20T17:37:20.794Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-04-20T17:38:51.046Z] ........................... [ 50%] +[2024-04-20T17:38:51.046Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-04-20T17:38:52.940Z] ... [ 52%] +[2024-04-20T17:38:53.877Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-04-20T17:39:10.939Z] ........................ [ 64%] +[2024-04-20T17:39:14.350Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-04-20T17:39:19.081Z] ..... [ 66%] +[2024-04-20T17:39:28.508Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] +[2024-04-20T17:39:36.803Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-04-20T17:39:38.276Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-04-20T17:39:41.065Z] ...... [ 77%] +[2024-04-20T17:39:46.338Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] +[2024-04-20T17:39:58.090Z] ............. [ 84%] +[2024-04-20T17:40:06.229Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-04-20T17:40:24.876Z] ....s [ 86%] +[2024-04-20T17:40:31.420Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-04-20T17:40:52.790Z] .F. [ 88%] +[2024-04-20T17:41:05.009Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-04-20T17:41:54.962Z] ...... [ 91%] +[2024-04-20T17:41:54.962Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-04-20T17:43:55.708Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-04-20T17:43:55.708Z] +[2024-04-20T17:43:55.708Z] =================================== FAILURES =================================== +[2024-04-20T17:43:55.708Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ +[2024-04-20T17:43:55.708Z] Notebook cell execution failed +[2024-04-20T17:43:55.708Z] Cell 2: Cell execution caused an exception +[2024-04-20T17:43:55.708Z] +[2024-04-20T17:43:55.708Z] Input: +[2024-04-20T17:43:55.708Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) +[2024-04-20T17:43:55.708Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) +[2024-04-20T17:43:55.708Z] +[2024-04-20T17:43:55.708Z] chng_f, pos_f = xens.change_significance( +[2024-04-20T17:43:55.708Z] fut.sel(time=fut["time.season"] == "JJA"), +[2024-04-20T17:43:55.708Z] ref.sel(time=ref["time.season"] == "JJA"), +[2024-04-20T17:43:55.708Z] test="ttest", +[2024-04-20T17:43:55.708Z] ) +[2024-04-20T17:43:55.708Z] plt.figure( +[2024-04-20T17:43:55.708Z] figsize=(15, 6), +[2024-04-20T17:43:55.708Z] ) +[2024-04-20T17:43:55.708Z] +[2024-04-20T17:43:55.708Z] plt.subplot(1, 2, 1) +[2024-04-20T17:43:55.708Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-20T17:43:55.708Z] +[2024-04-20T17:43:55.708Z] plt.title(chng_f.description.split(".")[0]) +[2024-04-20T17:43:55.708Z] +[2024-04-20T17:43:55.708Z] plt.subplot(1, 2, 2) +[2024-04-20T17:43:55.708Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-20T17:43:55.708Z] plt.title(pos_f.description.split(".")[0]) +[2024-04-20T17:43:55.708Z] +[2024-04-20T17:43:55.708Z] display() +[2024-04-20T17:43:55.708Z] +[2024-04-20T17:43:55.708Z] Traceback: +[2024-04-20T17:43:55.708Z] +[2024-04-20T17:43:55.708Z] --------------------------------------------------------------------------- +[2024-04-20T17:43:55.708Z] AttributeError Traceback (most recent call last) +[2024-04-20T17:43:55.708Z] Cell In[1], line 20 +[2024-04-20T17:43:55.708Z]  18 plt.subplot(1, 2, 2) +[2024-04-20T17:43:55.709Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-20T17:43:55.709Z] ---> 20 plt.title(pos_f.description.split(".")[0]) +[2024-04-20T17:43:55.709Z]  22 display() +[2024-04-20T17:43:55.709Z] +[2024-04-20T17:43:55.709Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-04-20T17:43:55.709Z]  275 with suppress(KeyError): +[2024-04-20T17:43:55.709Z]  276 return source[name] +[2024-04-20T17:43:55.709Z] --> 277 raise AttributeError( +[2024-04-20T17:43:55.709Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-04-20T17:43:55.709Z]  279 ) +[2024-04-20T17:43:55.709Z] +[2024-04-20T17:43:55.709Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-04-20T17:43:55.709Z] +[2024-04-20T17:43:55.709Z] =========================== short test summary info ============================ +[2024-04-20T17:43:55.709Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-04-20T17:43:55.709Z] ============= 1 failed, 218 passed, 1 skipped in 693.59s (0:11:33) ============= +[2024-04-20T17:43:55.709Z] + EXIT_CODE=1 +[2024-04-20T17:43:55.709Z] + + echo truetr +[2024-04-20T17:43:55.709Z] [:upper:] [:lower:] +[2024-04-20T17:43:55.709Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-04-20T17:43:55.709Z] + [ xtrue = xtrue ] +[2024-04-20T17:43:55.709Z] + mkdir -p buildout +[2024-04-20T17:43:55.709Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-20T17:43:55.709Z] + filename=CaSR_basic.ipynb +[2024-04-20T17:43:55.709Z] + echo CaSR_basic.ipynb +[2024-04-20T17:43:55.709Z] + sed s/.ipynb$// +[2024-04-20T17:43:55.709Z] + filename=CaSR_basic +[2024-04-20T17:43:55.709Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-04-20T17:43:55.709Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-20T17:43:55.709Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-04-20T17:44:27.811Z] [NbConvertApp] Writing 732953 bytes to buildout/CaSR_basic.output.ipynb +[2024-04-20T17:44:27.811Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-20T17:44:27.811Z] + filename=WCS_example.ipynb +[2024-04-20T17:44:27.811Z] + + echo WCS_example.ipynb +[2024-04-20T17:44:27.811Z] sed s/.ipynb$// +[2024-04-20T17:44:27.811Z] + filename=WCS_example +[2024-04-20T17:44:27.811Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-04-20T17:44:27.811Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-20T17:44:27.811Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-04-20T17:44:37.821Z] [NbConvertApp] Writing 144442 bytes to buildout/WCS_example.output.ipynb +[2024-04-20T17:44:37.821Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-20T17:44:37.821Z] + filename=WFS_example.ipynb +[2024-04-20T17:44:37.821Z] + echo WFS_example.ipynb +[2024-04-20T17:44:37.821Z] + sed s/.ipynb$// +[2024-04-20T17:44:37.821Z] + filename=WFS_example +[2024-04-20T17:44:37.821Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-04-20T17:44:37.821Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-20T17:44:38.391Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-04-20T17:44:48.436Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb +[2024-04-20T17:44:48.436Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-20T17:44:48.436Z] + filename=WMS_example.ipynb +[2024-04-20T17:44:48.436Z] + echo WMS_example.ipynb +[2024-04-20T17:44:48.437Z] + sed s/.ipynb$// +[2024-04-20T17:44:48.437Z] + filename=WMS_example +[2024-04-20T17:44:48.437Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-04-20T17:44:48.437Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-20T17:44:49.815Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-04-20T17:44:54.003Z] [NbConvertApp] Writing 46204 bytes to buildout/WMS_example.output.ipynb +[2024-04-20T17:44:54.263Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-20T17:44:54.263Z] + filename=climex.ipynb +[2024-04-20T17:44:54.263Z] + echo climex.ipynb +[2024-04-20T17:44:54.263Z] + sed s/.ipynb$// +[2024-04-20T17:44:54.263Z] + filename=climex +[2024-04-20T17:44:54.263Z] + [ -e buildout/climex.output.ipynb ] +[2024-04-20T17:44:54.263Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-20T17:44:56.171Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook +[2024-04-20T17:47:47.744Z] 2024-04-20 17:47:39,817 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. +[2024-04-20T17:47:47.744Z] Traceback (most recent call last): +[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read +[2024-04-20T17:47:47.744Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) +[2024-04-20T17:47:47.744Z] tornado.iostream.StreamClosedError: Stream is closed +[2024-04-20T17:47:47.744Z] +[2024-04-20T17:47:47.744Z] The above exception was the direct cause of the following exception: +[2024-04-20T17:47:47.744Z] +[2024-04-20T17:47:47.744Z] Traceback (most recent call last): +[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat +[2024-04-20T17:47:47.744Z] response = await retry_operation( +[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation +[2024-04-20T17:47:47.744Z] return await retry( +[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry +[2024-04-20T17:47:47.744Z] return await coro() +[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc +[2024-04-20T17:47:47.744Z] return await send_recv(comm=comm, op=key, **kwargs) +[2024-04-20T17:47:47.745Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv +[2024-04-20T17:47:47.745Z] response = await comm.read(deserializers=deserializers) +[2024-04-20T17:47:47.745Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read +[2024-04-20T17:47:47.745Z] convert_stream_closed_error(self, e) +[2024-04-20T17:47:47.745Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error +[2024-04-20T17:47:47.745Z] raise CommClosedError(f"in {obj}: {exc}") from exc +[2024-04-20T17:47:47.745Z] distributed.comm.core.CommClosedError: in : Stream is closed +[2024-04-20T17:47:47.745Z] [NbConvertApp] Writing 1789387 bytes to buildout/climex.output.ipynb +[2024-04-20T17:47:47.745Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-20T17:47:47.745Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-04-20T17:47:47.745Z] + sed s/.ipynb$// +[2024-04-20T17:47:47.745Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-04-20T17:47:47.745Z] + filename=eccc-geoapi-climate-stations +[2024-04-20T17:47:47.745Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-04-20T17:47:47.745Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-20T17:47:47.745Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-04-20T17:47:57.730Z] [NbConvertApp] Writing 278775 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-04-20T17:47:57.730Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-20T17:47:57.730Z] + filename=eccc-geoapi-xclim.ipynb +[2024-04-20T17:47:57.730Z] + echo eccc-geoapi-xclim.ipynb +[2024-04-20T17:47:57.730Z] + sed s/.ipynb$// +[2024-04-20T17:47:57.730Z] + filename=eccc-geoapi-xclim +[2024-04-20T17:47:57.730Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-04-20T17:47:57.730Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-20T17:47:58.297Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-04-20T17:48:08.281Z] [NbConvertApp] Writing 108216 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-04-20T17:48:08.281Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-20T17:48:08.281Z] + filename=esgf-dap.ipynb +[2024-04-20T17:48:08.281Z] + echo esgf-dap.ipynb +[2024-04-20T17:48:08.281Z] + sed s/.ipynb$// +[2024-04-20T17:48:08.281Z] + filename=esgf-dap +[2024-04-20T17:48:08.281Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-04-20T17:48:08.281Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-20T17:48:09.222Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-04-20T17:48:17.352Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb +[2024-04-20T17:48:17.352Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-20T17:48:17.352Z] + filename=forecasts.ipynb +[2024-04-20T17:48:17.352Z] + echo forecasts.ipynb +[2024-04-20T17:48:17.352Z] + sed s/.ipynb$// +[2024-04-20T17:48:17.352Z] + filename=forecasts +[2024-04-20T17:48:17.352Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-04-20T17:48:17.353Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-20T17:48:18.737Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook +[2024-04-20T17:48:36.833Z] [NbConvertApp] Writing 164981 bytes to buildout/forecasts.output.ipynb +[2024-04-20T17:48:36.833Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-20T17:48:36.833Z] + filename=jupyter_extensions.ipynb +[2024-04-20T17:48:36.833Z] + echo jupyter_extensions.ipynb +[2024-04-20T17:48:36.833Z] + sed s/.ipynb$// +[2024-04-20T17:48:36.833Z] + filename=jupyter_extensions +[2024-04-20T17:48:36.833Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-04-20T17:48:36.833Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-20T17:48:36.833Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-04-20T17:48:38.776Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb +[2024-04-20T17:48:39.094Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-20T17:48:39.094Z] + filename=opendap.ipynb +[2024-04-20T17:48:39.094Z] + echo opendap.ipynb +[2024-04-20T17:48:39.094Z] + sed s/.ipynb$// +[2024-04-20T17:48:39.094Z] + filename=opendap +[2024-04-20T17:48:39.095Z] + [ -e buildout/opendap.output.ipynb ] +[2024-04-20T17:48:39.095Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-20T17:48:40.994Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook +[2024-04-20T17:48:49.125Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb +[2024-04-20T17:48:49.125Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-20T17:48:49.125Z] + filename=pavics_thredds.ipynb +[2024-04-20T17:48:49.125Z] + + echo pavics_thredds.ipynb +[2024-04-20T17:48:49.125Z] sed s/.ipynb$// +[2024-04-20T17:48:49.125Z] + filename=pavics_thredds +[2024-04-20T17:48:49.125Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-04-20T17:48:49.125Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-20T17:48:50.507Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-04-20T17:48:53.875Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-20T17:48:53.876Z] context: Access to service is forbidden. +[2024-04-20T17:48:53.876Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-20T17:48:53.876Z] context: Access to service is forbidden. +[2024-04-20T17:48:55.789Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb +[2024-04-20T17:48:56.049Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-20T17:48:56.049Z] + filename=regridding.ipynb +[2024-04-20T17:48:56.049Z] + echo regridding.ipynb +[2024-04-20T17:48:56.049Z] + sed s/.ipynb$// +[2024-04-20T17:48:56.049Z] + filename=regridding +[2024-04-20T17:48:56.049Z] + [ -e buildout/regridding.output.ipynb ] +[2024-04-20T17:48:56.049Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-20T17:48:57.960Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook +[2024-04-20T17:50:34.413Z] [NbConvertApp] Writing 1239619 bytes to buildout/regridding.output.ipynb +[2024-04-20T17:50:34.413Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-20T17:50:34.413Z] + filename=rendering.ipynb +[2024-04-20T17:50:34.413Z] + echo rendering.ipynb +[2024-04-20T17:50:34.413Z] + sed s/.ipynb$// +[2024-04-20T17:50:34.413Z] + filename=rendering +[2024-04-20T17:50:34.413Z] + [ -e buildout/rendering.output.ipynb ] +[2024-04-20T17:50:34.413Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-20T17:50:34.413Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook +[2024-04-20T17:50:36.947Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb +[2024-04-20T17:50:37.204Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-20T17:50:37.204Z] + filename=subset-user-input.ipynb +[2024-04-20T17:50:37.205Z] + echo subset-user-input.ipynb +[2024-04-20T17:50:37.205Z] + sed s/.ipynb$// +[2024-04-20T17:50:37.205Z] + filename=subset-user-input +[2024-04-20T17:50:37.205Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-04-20T17:50:37.205Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-20T17:50:39.112Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-04-20T17:51:01.052Z] [NbConvertApp] Writing 255279 bytes to buildout/subset-user-input.output.ipynb +[2024-04-20T17:51:01.053Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-20T17:51:01.053Z] + filename=subsetting.ipynb +[2024-04-20T17:51:01.053Z] + echo subsetting.ipynb +[2024-04-20T17:51:01.053Z] + sed s/.ipynb$// +[2024-04-20T17:51:01.053Z] + filename=subsetting +[2024-04-20T17:51:01.053Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-04-20T17:51:01.053Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-20T17:51:01.053Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook +[2024-04-20T17:51:11.040Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb +[2024-04-20T17:51:11.040Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-20T17:51:11.040Z] + filename=dap_subset.ipynb +[2024-04-20T17:51:11.040Z] + echo dap_subset.ipynb +[2024-04-20T17:51:11.040Z] + sed s/.ipynb$// +[2024-04-20T17:51:11.040Z] + filename=dap_subset +[2024-04-20T17:51:11.040Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-04-20T17:51:11.040Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-20T17:51:12.422Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-04-20T17:51:22.405Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb +[2024-04-20T17:51:22.405Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-20T17:51:22.405Z] + filename=finch-usage.ipynb +[2024-04-20T17:51:22.405Z] + echo finch-usage.ipynb +[2024-04-20T17:51:22.405Z] + sed s/.ipynb$// +[2024-04-20T17:51:22.405Z] + filename=finch-usage +[2024-04-20T17:51:22.405Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-04-20T17:51:22.405Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-20T17:51:24.312Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-04-20T17:51:36.524Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb +[2024-04-20T17:51:36.524Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-20T17:51:36.524Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-20T17:51:36.524Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-20T17:51:36.524Z] + sed s/.ipynb$// +[2024-04-20T17:51:36.524Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-04-20T17:51:36.524Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-04-20T17:51:36.524Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-20T17:51:36.780Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-04-20T17:51:42.050Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-04-20T17:51:42.307Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-20T17:51:42.307Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-20T17:51:42.307Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-20T17:51:42.307Z] + sed s/.ipynb$// +[2024-04-20T17:51:42.307Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-04-20T17:51:42.307Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-04-20T17:51:42.307Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-20T17:51:44.211Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-04-20T17:52:02.301Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-04-20T17:52:02.301Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-20T17:52:02.301Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-20T17:52:02.301Z] + + sed s/.ipynb$// +[2024-04-20T17:52:02.301Z] echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-20T17:52:02.301Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-04-20T17:52:02.301Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-04-20T17:52:02.301Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-20T17:52:03.693Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-04-20T18:01:10.464Z] [NbConvertApp] Writing 577400 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb +[2024-04-20T18:01:10.464Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-20T18:01:10.464Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-20T18:01:10.464Z] + + sed s/.ipynb$// +[2024-04-20T18:01:10.464Z] echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-20T18:01:10.464Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-04-20T18:01:10.464Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-04-20T18:01:10.464Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-20T18:01:10.464Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-04-20T18:01:32.434Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-04-20T18:01:32.434Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-20T18:01:32.434Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-20T18:01:32.434Z] + sed s/.ipynb$// +[2024-04-20T18:01:32.434Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-20T18:01:32.434Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-04-20T18:01:32.434Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-04-20T18:01:32.434Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-20T18:01:32.694Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-04-20T18:02:40.402Z] [NbConvertApp] Writing 1051937 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-04-20T18:02:40.402Z] + basename notebooks/hummingbird.ipynb +[2024-04-20T18:02:40.402Z] + filename=hummingbird.ipynb +[2024-04-20T18:02:40.402Z] + echo hummingbird.ipynb +[2024-04-20T18:02:40.402Z] + sed s/.ipynb$// +[2024-04-20T18:02:40.402Z] + filename=hummingbird +[2024-04-20T18:02:40.402Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-04-20T18:02:40.402Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-04-20T18:02:40.402Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-04-20T18:02:40.665Z] [NbConvertApp] Writing 15951 bytes to buildout/hummingbird.output.ipynb +[2024-04-20T18:02:40.665Z] + basename notebooks/stress-tests.ipynb +[2024-04-20T18:02:40.665Z] + filename=stress-tests.ipynb +[2024-04-20T18:02:40.665Z] + echo stress-tests.ipynb +[2024-04-20T18:02:40.665Z] + sed s/.ipynb$// +[2024-04-20T18:02:40.665Z] + filename=stress-tests +[2024-04-20T18:02:40.665Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-04-20T18:02:40.665Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-04-20T18:02:42.578Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-04-20T18:04:49.079Z] [NbConvertApp] Writing 428563 bytes to buildout/stress-tests.output.ipynb +[2024-04-20T18:04:49.079Z] + exit 1 +[2024-04-20T18:04:49.079Z] + EXIT_CODE=1 +[2024-04-20T18:04:49.079Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-04-20T18:04:49.079Z] + mkdir -p buildout/env-dump +[2024-04-20T18:04:49.079Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-04-20T18:04:49.079Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-04-20T18:04:49.079Z] + conda env export -n birdy +[2024-04-20T18:04:52.369Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-20T18:04:52.369Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-20T18:04:52.369Z] + conda list -n birdy --explicit +[2024-04-20T18:05:04.584Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-20T18:05:04.584Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-20T18:05:04.584Z] + pip freeze +[2024-04-20T18:05:04.584Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -878,41 +815,41 @@ $ docker top 31a69ca4dbfc4c2d71081aac6f92e6dd5b8cf9aea4aaa92c9f1ea209873e7f05 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-12T04:34:22.033Z] Archiving artifacts -[2024-04-12T04:34:22.055Z] Recording fingerprints +[2024-04-20T18:05:05.068Z] Archiving artifacts +[2024-04-20T18:05:05.090Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:22.115Z] Archiving artifacts -[2024-04-12T04:34:22.962Z] Recording fingerprints +[2024-04-20T18:05:05.135Z] Archiving artifacts +[2024-04-20T18:05:05.974Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:24.439Z] Archiving artifacts -[2024-04-12T04:34:25.831Z] Recording fingerprints +[2024-04-20T18:05:06.656Z] Archiving artifacts +[2024-04-20T18:05:06.669Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:26.051Z] Archiving artifacts -[2024-04-12T04:34:26.071Z] Recording fingerprints +[2024-04-20T18:05:06.794Z] Archiving artifacts +[2024-04-20T18:05:06.832Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:26.090Z] Archiving artifacts -[2024-04-12T04:34:26.113Z] Recording fingerprints +[2024-04-20T18:05:06.901Z] Archiving artifacts +[2024-04-20T18:05:06.990Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:26.240Z] Archiving artifacts -[2024-04-12T04:34:26.286Z] Recording fingerprints +[2024-04-20T18:05:07.010Z] Archiving artifacts +[2024-04-20T18:05:07.059Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:27.076Z] Archiving artifacts -[2024-04-12T04:34:27.089Z] Recording fingerprints +[2024-04-20T18:05:07.163Z] Archiving artifacts +[2024-04-20T18:05:07.177Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:27.106Z] Archiving artifacts -[2024-04-12T04:34:27.146Z] Recording fingerprints +[2024-04-20T18:05:07.227Z] Archiving artifacts +[2024-04-20T18:05:07.267Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:27.505Z] Archiving artifacts -[2024-04-12T04:34:27.877Z] Recording fingerprints +[2024-04-20T18:05:07.317Z] Archiving artifacts +[2024-04-20T18:05:07.759Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:28.112Z] Archiving artifacts -[2024-04-12T04:34:29.006Z] Recording fingerprints +[2024-04-20T18:05:08.006Z] Archiving artifacts +[2024-04-20T18:05:08.893Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:34:32.088Z] Archiving artifacts -[2024-04-12T04:34:32.103Z] Recording fingerprints +[2024-04-20T18:05:09.634Z] Archiving artifacts +[2024-04-20T18:05:09.830Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-04-12T04:34:32.461Z] Sending e-mails to: vu.long@ouranos.ca +[2024-04-20T18:05:09.993Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -922,8 +859,8 @@ $ docker top 31a69ca4dbfc4c2d71081aac6f92e6dd5b8cf9aea4aaa92c9f1ea209873e7f05 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 31a69ca4dbfc4c2d71081aac6f92e6dd5b8cf9aea4aaa92c9f1ea209873e7f05 -$ docker rm -f 31a69ca4dbfc4c2d71081aac6f92e6dd5b8cf9aea4aaa92c9f1ea209873e7f05 +$ docker stop --time=1 92c582eb50d564204deb33d83c67e8561be689fd8307b8e9cdc310bdb6b5aedb +$ docker rm -f 92c582eb50d564204deb33d83c67e8561be689fd8307b8e9cdc310bdb6b5aedb [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From c792171c58cbcc16b4d9c418dc53ccfb52b30e0e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Fri, 26 Apr 2024 15:10:40 -0400 Subject: [PATCH 075/104] docker: py310-240419: initial jenkins, raven nb, some nb hang at import time, very weird Not hanging when running interractively in JupyterLab. Hanging at import time in Jenkins: ``` ============================= test session starts ============================== platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 collected 16 items RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 50%] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb Fx [ 62%] xxxxxx [100%] =================================== FAILURES =================================== _ RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb::Cell 0 _ Notebook cell execution failed Cell 0: Timeout of 2000 seconds exceeded while executing cell. Failed to interrupt kernel in 5 seconds, so failing without traceback. Input: import datetime as dt from matplotlib import pyplot as plt from ravenpy.config import commands as rc from ravenpy.config.emulators import GR4JCN from ravenpy.utilities import forecasting from ravenpy.utilities.testdata import get_file =========================== short test summary info ============================ FAILED RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb::Cell 0 ============= 1 failed, 8 passed, 7 xfailed in 2072.79s (0:34:32) ============== + EXIT_CODE=1 + echo true + tr [:upper:] [:lower:] + SAVE_RESULTING_NOTEBOOK=true + [ xtrue = xtrue ] + mkdir -p buildout + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb + filename=10_Data_assimilation.ipynb + echo 10_Data_assimilation.ipynb + sed s/.ipynb$// + filename=10_Data_assimilation + [ -e buildout/10_Data_assimilation.output.ipynb ] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook [NbConvertApp] Writing 432766 bytes to buildout/10_Data_assimilation.output.ipynb + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb + filename=11_Climatological_ESP_forecasting.ipynb + echo 11_Climatological_ESP_forecasting.ipynb + sed s/.ipynb$// + filename=11_Climatological_ESP_forecasting + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook [NbConvertApp] ERROR | Kernel died while waiting for execute reply. Traceback (most recent call last): File "/opt/conda/envs/birdy/bin/jupyter-nbconvert", line 10, in sys.exit(main()) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/application.py", line 283, in launch_instance super().launch_instance(argv=argv, **kwargs) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/traitlets/config/application.py", line 1075, in launch_instance app.start() File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 420, in start self.convert_notebooks() File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 597, in convert_notebooks self.convert_single_notebook(notebook_filename) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 563, in convert_single_notebook output, resources = self.export_single_notebook( File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/nbconvertapp.py", line 487, in export_single_notebook output, resources = self.exporter.from_filename( File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 201, in from_filename return self.from_file(f, resources=resources, **kw) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 220, in from_file return self.from_notebook_node( File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/notebook.py", line 36, in from_notebook_node nb_copy, resources = super().from_notebook_node(nb, resources, **kw) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 154, in from_notebook_node nb_copy, resources = self._preprocess(nb_copy, resources) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/exporters/exporter.py", line 353, in _preprocess nbc, resc = preprocessor(nbc, resc) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/base.py", line 48, in __call__ return self.preprocess(nb, resources) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 102, in preprocess self.preprocess_cell(cell, resources, index) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbconvert/preprocessors/execute.py", line 123, in preprocess_cell cell = self.execute_cell(cell, index, store_history=True) File "/opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/utils/__init__.py", line 165, in wrapped return loop.run_until_complete(inner) File "/opt/conda/envs/birdy/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete return future.result() File "/opt/conda/envs/birdy/lib/python3.10/site-packages/nbclient/client.py", line 1005, in async_execute_cell raise DeadKernelError("Kernel died") from None nbclient.exceptions.DeadKernelError: Kernel died + exit 1 ``` --- .../jenkins-buildlogs-raven.txt | 2319 +++-------------- 1 file changed, 337 insertions(+), 1982 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index e90a4b3..1eb4aef 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -1,4 +1,5 @@ Started by user Long Vu +Replayed #296 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -7,7 +8,6 @@ Fetching upstream changes from origin > git --version # timeout=10 > git config --get remote.origin.url # timeout=10 > git fetch --tags --progress -- origin +refs/heads/*:refs/remotes/origin/* # timeout=10 -Seen branch in repository origin/allow-full-custom-config-override Seen branch in repository origin/current-production-version Seen branch in repository origin/devel-new-extensions Seen branch in repository origin/extended_tests @@ -17,12 +17,12 @@ Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 10 remote branches -Obtained Jenkinsfile from 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 +Seen 9 remote branches +Obtained Jenkinsfile from 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -30,1986 +30,343 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags +Checking out Revision 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 (new-docker-build) +Commit message: "docker: py310-240419: conda env export" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 (new-docker-build) -Commit message: "release: update to use image pavics/workflow-tests:py310-240411" > git config core.sparsecheckout # timeout=10 - > git checkout -f 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 # timeout=10 - > git rev-list --no-walk 1d5d7a5de3e81ce0a9e31cf00c069475df617ef5 # timeout=10 + > git checkout -f 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 # timeout=10 + > git rev-list --no-walk 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240411 ++ docker inspect -f . pavics/workflow-tests:py310-240419 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240411 cat -$ docker top 0072fbfdf1a60e09332893a5d910d7b3e2f85c34919ab4197a68e6b650710bef -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240419 cat +$ docker top 59443904e937c3fa8728663a0f071e6b663d69ce915a7ddd7e30debfbab698ac -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-12T03:45:40.019Z] Timeout set to expire in 2 hr 0 min +[2024-04-21T21:06:06.129Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-12T03:45:41.978Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-21T21:06:07.486Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-12T03:45:42.723Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-12T03:45:42.723Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-12T03:45:42.723Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-12T03:45:42.723Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-12T03:45:42.723Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-12T03:45:42.723Z] FINCH_BRANCH has been set to 'master' -[2024-04-12T03:45:42.723Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-12T03:45:42.723Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-12T03:45:42.723Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-12T03:45:42.723Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-12T03:45:42.723Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-12T03:45:42.723Z] RAVEN_BRANCH has been set to 'main' -[2024-04-12T03:45:42.723Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-12T03:45:42.723Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-12T03:45:42.723Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-12T03:45:42.723Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-12T03:45:42.723Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-12T03:45:42.723Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-12T03:45:42.723Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-12T03:45:42.723Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-12T03:45:42.723Z] + git clean -fdx -[2024-04-12T03:45:42.987Z] Removing .pytest_cache/ -[2024-04-12T03:45:42.987Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/ -[2024-04-12T03:45:42.987Z] Removing RavenPy-master/ -[2024-04-12T03:45:42.987Z] Removing __pycache__/ -[2024-04-12T03:45:42.987Z] Removing buildout/ -[2024-04-12T03:45:42.987Z] Removing esgf-compute-api-devel/ -[2024-04-12T03:45:42.987Z] Removing finch-master/ -[2024-04-12T03:45:42.987Z] Removing pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/ -[2024-04-12T03:45:42.987Z] Removing raven-main/ -[2024-04-12T03:45:42.987Z] + ./downloadrepos -[2024-04-12T03:45:42.987Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-12T03:45:42.987Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-12T03:45:42.987Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-12T03:45:42.987Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-12T03:45:42.987Z] FINCH_BRANCH has been set to 'master' -[2024-04-12T03:45:42.987Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-12T03:45:42.987Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-12T03:45:42.987Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-12T03:45:42.987Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-12T03:45:42.987Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-12T03:45:42.987Z] RAVEN_BRANCH has been set to 'main' -[2024-04-12T03:45:42.987Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-12T03:45:42.987Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-12T03:45:42.987Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-12T03:45:42.987Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-12T03:45:42.987Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-12T03:45:42.987Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-12T03:45:42.987Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-12T03:45:42.987Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-12T03:45:42.987Z] + rm -rf pavics-sdi-* -[2024-04-12T03:45:42.987Z] + ls -[2024-04-12T03:45:42.987Z] + grep pavics-sdi -[2024-04-12T03:45:42.987Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-04-12T03:45:42.987Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-12T03:45:42.987Z] + shift -[2024-04-12T03:45:42.987Z] + branch=master -[2024-04-12T03:45:42.987Z] + shift -[2024-04-12T03:45:42.987Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-04-12T03:45:42.987Z] + tar xz -[2024-04-12T03:45:47.175Z] + ls -[2024-04-12T03:45:47.175Z] + grep pavics-sdi -[2024-04-12T03:45:47.175Z] pavics-sdi-master -[2024-04-12T03:45:47.175Z] + set +x -[2024-04-12T03:45:47.175Z] + rm -rf finch-* -[2024-04-12T03:45:47.175Z] + ls -[2024-04-12T03:45:47.175Z] + grep finch -[2024-04-12T03:45:47.175Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-12T03:45:47.175Z] + github_repo=https://github.com/bird-house/finch -[2024-04-12T03:45:47.175Z] + shift -[2024-04-12T03:45:47.175Z] + branch=master -[2024-04-12T03:45:47.175Z] + shift -[2024-04-12T03:45:47.175Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-12T03:45:47.175Z] + tar xz -[2024-04-12T03:45:48.116Z] + ls -[2024-04-12T03:45:48.116Z] + grep finch -[2024-04-12T03:45:48.116Z] finch-master -[2024-04-12T03:45:48.116Z] + set +x -[2024-04-12T03:45:48.116Z] + rm -rf PAVICS-landing-* -[2024-04-12T03:45:48.116Z] + ls -[2024-04-12T03:45:48.116Z] + grep PAVICS-landing -[2024-04-12T03:45:48.116Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-04-12T03:45:48.116Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-12T03:45:48.116Z] + shift -[2024-04-12T03:45:48.116Z] + branch=master -[2024-04-12T03:45:48.116Z] + shift -[2024-04-12T03:45:48.116Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-04-12T03:45:48.116Z] + tar xz -[2024-04-12T03:46:44.292Z] + ls -[2024-04-12T03:46:44.292Z] + grep PAVICS-landing -[2024-04-12T03:46:44.292Z] PAVICS-landing-master -[2024-04-12T03:46:44.292Z] + set +x -[2024-04-12T03:46:44.292Z] + rm -rf raven-* -[2024-04-12T03:46:44.292Z] + ls -[2024-04-12T03:46:44.292Z] + grep raven -[2024-04-12T03:46:44.292Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-12T03:46:44.292Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-12T03:46:44.292Z] + shift -[2024-04-12T03:46:44.292Z] + branch=main -[2024-04-12T03:46:44.292Z] + shift -[2024-04-12T03:46:44.292Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-12T03:46:44.292Z] + tar xz -[2024-04-12T03:46:44.292Z] + grep raven -[2024-04-12T03:46:44.292Z] + ls -[2024-04-12T03:46:44.292Z] raven-main -[2024-04-12T03:46:44.292Z] + set +x -[2024-04-12T03:46:44.292Z] + rm -rf RavenPy-* -[2024-04-12T03:46:44.292Z] + grep RavenPy -[2024-04-12T03:46:44.292Z] + ls -[2024-04-12T03:46:44.292Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-12T03:46:44.292Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-12T03:46:44.292Z] + shift -[2024-04-12T03:46:44.292Z] + branch=master -[2024-04-12T03:46:44.292Z] + shift -[2024-04-12T03:46:44.292Z] + tar xz -[2024-04-12T03:46:44.292Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-12T03:46:44.292Z] + ls -[2024-04-12T03:46:44.292Z] + grep RavenPy -[2024-04-12T03:46:44.292Z] RavenPy-master -[2024-04-12T03:46:44.292Z] + set +x -[2024-04-12T03:46:44.292Z] + rm -rf esgf-compute-api-* -[2024-04-12T03:46:44.292Z] + ls -[2024-04-12T03:46:44.292Z] + grep esgf-compute-api -[2024-04-12T03:46:44.292Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-12T03:46:44.292Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-12T03:46:44.292Z] + shift -[2024-04-12T03:46:44.292Z] + branch=devel -[2024-04-12T03:46:44.292Z] + shift -[2024-04-12T03:46:44.292Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-12T03:46:44.292Z] + tar xz -[2024-04-12T03:46:45.273Z] + + grep esgf-compute-api -[2024-04-12T03:46:45.273Z] ls -[2024-04-12T03:46:45.273Z] esgf-compute-api-devel -[2024-04-12T03:46:45.273Z] + set +x -[2024-04-12T03:46:45.273Z] + echo master -[2024-04-12T03:46:45.273Z] + sed s@/@-@g -[2024-04-12T03:46:45.273Z] + PAVICS_SDI_BRANCH=master -[2024-04-12T03:46:45.273Z] + echo Ouranosinc/pavics-sdi -[2024-04-12T03:46:45.273Z] + sed s@^.*/@@g -[2024-04-12T03:46:45.273Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-12T03:46:45.273Z] + echo master -[2024-04-12T03:46:45.273Z] + sed s@/@-@g -[2024-04-12T03:46:45.273Z] + FINCH_BRANCH=master -[2024-04-12T03:46:45.273Z] + echo bird-house/finch -[2024-04-12T03:46:45.273Z] + sed s@^.*/@@g -[2024-04-12T03:46:45.273Z] + FINCH_REPO_NAME=finch -[2024-04-12T03:46:45.273Z] + sed s@/@-@g -[2024-04-12T03:46:45.273Z] + echo master -[2024-04-12T03:46:45.273Z] + PAVICS_LANDING_BRANCH=master -[2024-04-12T03:46:45.273Z] + echo Ouranosinc/PAVICS-landing -[2024-04-12T03:46:45.273Z] + sed s@^.*/@@g -[2024-04-12T03:46:45.536Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-12T03:46:45.536Z] + echo main -[2024-04-12T03:46:45.536Z] + sed s@/@-@g -[2024-04-12T03:46:45.536Z] + RAVEN_BRANCH=main -[2024-04-12T03:46:45.536Z] + sed s@^.*/@@g -[2024-04-12T03:46:45.536Z] + echo Ouranosinc/raven -[2024-04-12T03:46:45.536Z] + RAVEN_REPO_NAME=raven -[2024-04-12T03:46:45.536Z] + echo master -[2024-04-12T03:46:45.536Z] + sed s@/@-@g -[2024-04-12T03:46:45.536Z] + RAVENPY_BRANCH=master -[2024-04-12T03:46:45.536Z] + echo CSHS-CWRA/RavenPy -[2024-04-12T03:46:45.536Z] + sed s@^.*/@@g -[2024-04-12T03:46:45.536Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-12T03:46:45.536Z] + echo devel -[2024-04-12T03:46:45.536Z] + sed s@/@-@g -[2024-04-12T03:46:45.536Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-12T03:46:45.536Z] + echo ESGF/esgf-compute-api -[2024-04-12T03:46:45.536Z] + sed s@^.*/@@g -[2024-04-12T03:46:45.536Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:46:45.536Z] + echo pavics-sdi-master -[2024-04-12T03:46:45.536Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:46:45.536Z] + echo finch-master -[2024-04-12T03:46:45.536Z] + FINCH_DIR=finch-master -[2024-04-12T03:46:45.536Z] + echo PAVICS-landing-master -[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:46:45.536Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-04-12T03:46:45.536Z] + echo raven-main -[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:46:45.536Z] + RAVEN_DIR=raven-main -[2024-04-12T03:46:45.536Z] + echo RavenPy-master -[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:46:45.536Z] + RAVENPY_DIR=RavenPy-master -[2024-04-12T03:46:45.536Z] + echo esgf-compute-api-devel -[2024-04-12T03:46:45.536Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-12T03:46:45.536Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-12T03:46:45.536Z] + echo true -[2024-04-12T03:46:45.536Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.536Z] + VERIFY_SSL=true -[2024-04-12T03:46:45.536Z] + [ xtrue = xfalse ] -[2024-04-12T03:46:45.536Z] + rm -v finch-master/setup.cfg -[2024-04-12T03:46:45.536Z] removed 'finch-master/setup.cfg' -[2024-04-12T03:46:45.536Z] + rm -v raven-main/setup.cfg -[2024-04-12T03:46:45.536Z] removed 'raven-main/setup.cfg' -[2024-04-12T03:46:45.536Z] + rm -v raven-main/pyproject.toml -[2024-04-12T03:46:45.536Z] removed 'raven-main/pyproject.toml' -[2024-04-12T03:46:45.536Z] + rm -v RavenPy-master/setup.cfg -[2024-04-12T03:46:45.537Z] removed 'RavenPy-master/setup.cfg' -[2024-04-12T03:46:45.537Z] + rm -v RavenPy-master/tox.ini -[2024-04-12T03:46:45.537Z] removed 'RavenPy-master/tox.ini' -[2024-04-12T03:46:45.537Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-12T03:46:45.537Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-12T03:46:45.537Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-12T03:46:45.537Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-12T03:46:45.537Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-12T03:46:45.537Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-12T03:46:45.537Z] + echo false -[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.537Z] + TEST_MAGPIE_AUTH=false -[2024-04-12T03:46:45.537Z] + echo false -[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.537Z] + TEST_PAVICS_SDI_REPO=false -[2024-04-12T03:46:45.537Z] + echo false -[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.537Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-12T03:46:45.537Z] + echo false -[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.537Z] + TEST_FINCH_REPO=false -[2024-04-12T03:46:45.537Z] + echo false -[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.537Z] + TEST_PAVICS_LANDING_REPO=false -[2024-04-12T03:46:45.537Z] + echo true -[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.537Z] + TEST_RAVEN_REPO=true -[2024-04-12T03:46:45.537Z] + echo true -[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.537Z] + TEST_RAVENPY_REPO=true -[2024-04-12T03:46:45.537Z] + echo false -[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.537Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-12T03:46:45.537Z] + echo false -[2024-04-12T03:46:45.537Z] + tr [:upper:] [:lower:] -[2024-04-12T03:46:45.537Z] + TEST_LOCAL_NOTEBOOKS=false -[2024-04-12T03:46:45.537Z] + NOTEBOOKS_TO_TEST= -[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] -[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] -[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] -[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] -[2024-04-12T03:46:45.537Z] + [ xtrue = xtrue ] -[2024-04-12T03:46:45.537Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-04-12T03:46:45.537Z] + [ xtrue = xtrue ] -[2024-04-12T03:46:45.537Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-04-12T03:46:45.537Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] -[2024-04-12T03:46:45.537Z] + [ xfalse = xtrue ] -[2024-04-12T03:46:45.537Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-12T03:46:45.537Z] + [ -n ] -[2024-04-12T03:46:45.537Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-12T03:46:45.537Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-12T03:46:45.537Z] Will run notebooks against pavics.ouranos.ca -[2024-04-12T03:46:45.537Z] + [ -z ] -[2024-04-12T03:46:45.538Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-12T03:46:45.538Z] + git diff -[2024-04-12T03:46:45.538Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-12T03:46:45.538Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-04-12T03:46:48.075Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-12T03:46:48.075Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-12T03:46:48.075Z] ============================= test session starts ============================== -[2024-04-12T03:46:48.075Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-04-12T03:46:48.075Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-04-12T03:46:48.075Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-12T03:46:48.075Z] collected 242 items -[2024-04-12T03:46:48.075Z] -[2024-04-12T03:46:58.371Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-04-12T03:47:00.917Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] -[2024-04-12T03:47:12.508Z] ...... [ 6%] -[2024-04-12T03:47:14.408Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] -[2024-04-12T03:47:14.408Z] [ 9%] -[2024-04-12T03:47:16.823Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-04-12T03:47:24.904Z] .... [ 12%] -[2024-04-12T03:47:31.450Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] -[2024-04-12T03:47:39.192Z] ....F.FF..F.. [ 18%] -[2024-04-12T03:48:09.294Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] -[2024-04-12T03:49:22.532Z] .. [ 22%] -[2024-04-12T03:49:24.054Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] -[2024-04-12T03:49:32.966Z] ..FFFFFFFF....... [ 30%] -[2024-04-12T03:49:40.972Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] -[2024-04-12T03:49:49.987Z] ........... [ 36%] -[2024-04-12T03:49:59.478Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] -[2024-04-12T03:50:04.752Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] -[2024-04-12T03:50:09.818Z] ..... [ 41%] -[2024-04-12T03:50:11.197Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] -[2024-04-12T03:54:21.244Z] ................. [ 48%] -[2024-04-12T03:54:27.820Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] -[2024-04-12T03:54:36.205Z] .... [ 50%] -[2024-04-12T03:56:00.571Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] -[2024-04-12T03:56:06.093Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] -[2024-04-12T03:56:41.329Z] ...... [ 57%] -[2024-04-12T03:56:51.385Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] -[2024-04-12T03:57:02.009Z] ....... [ 60%] -[2024-04-12T03:57:11.470Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] -[2024-04-12T03:57:32.907Z] .... [ 64%] -[2024-04-12T03:57:43.124Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] -[2024-04-12T03:58:08.822Z] ....... [ 67%] -[2024-04-12T03:58:12.282Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] -[2024-04-12T03:58:39.050Z] ....... [ 70%] -[2024-04-12T03:58:42.614Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] -[2024-04-12T03:58:54.522Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] -[2024-04-12T03:59:02.081Z] .... [ 74%] -[2024-04-12T03:59:49.828Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] -[2024-04-12T04:00:13.981Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] -[2024-04-12T04:00:14.913Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] -[2024-04-12T04:00:29.741Z] ............. [ 84%] -[2024-04-12T04:00:48.546Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] -[2024-04-12T04:00:56.803Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] -[2024-04-12T04:01:09.072Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] -[2024-04-12T04:02:16.206Z] .........FFFFFFFFFFF [100%] -[2024-04-12T04:02:16.206Z] -[2024-04-12T04:02:16.206Z] =================================== FAILURES =================================== -[2024-04-12T04:02:16.206Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ -[2024-04-12T04:02:16.206Z] Notebook cell execution failed -[2024-04-12T04:02:16.206Z] Cell 5: Cell execution caused an exception -[2024-04-12T04:02:16.206Z] -[2024-04-12T04:02:16.206Z] Input: -[2024-04-12T04:02:16.206Z] features, statistics, raster = stats_resp.get(asobj=True) -[2024-04-12T04:02:16.206Z] grid = raster[0] -[2024-04-12T04:02:16.206Z] grid.plot() -[2024-04-12T04:02:16.206Z] -[2024-04-12T04:02:16.206Z] Traceback: -[2024-04-12T04:02:16.206Z] -[2024-04-12T04:02:16.206Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.206Z] ValueError Traceback (most recent call last) -[2024-04-12T04:02:16.206Z] Cell In[1], line 3 -[2024-04-12T04:02:16.206Z]  1 features, statistics, raster = stats_resp.get(asobj=True) -[2024-04-12T04:02:16.206Z]  2 grid = raster[0] -[2024-04-12T04:02:16.206Z] ----> 3 grid.plot() -[2024-04-12T04:02:16.206Z] -[2024-04-12T04:02:16.207Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) -[2024-04-12T04:02:16.207Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: -[2024-04-12T04:02:16.207Z] --> 942 raise ValueError( -[2024-04-12T04:02:16.207Z]  943 "Dataset.plot cannot be called directly. Use " -[2024-04-12T04:02:16.207Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" -[2024-04-12T04:02:16.207Z]  945 ) -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ -[2024-04-12T04:02:16.207Z] Notebook cell execution failed -[2024-04-12T04:02:16.207Z] Cell 7: Cell execution caused an exception -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] Input: -[2024-04-12T04:02:16.207Z] unique, counts = np.unique(grid, return_counts=True) -[2024-04-12T04:02:16.207Z] print("The land-use categories available are: " + str(unique)) -[2024-04-12T04:02:16.207Z] print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] # Pixels values at '127' are NaN and can be ignored. -[2024-04-12T04:02:16.207Z] from matplotlib.colors import Normalize -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] norm = Normalize() -[2024-04-12T04:02:16.207Z] norm.autoscale(unique[:-1]) -[2024-04-12T04:02:16.207Z] cm = mpl.colormaps["tab20"] -[2024-04-12T04:02:16.207Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] # plt.bar(unique[:-1], counts[:-1]) -[2024-04-12T04:02:16.207Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) -[2024-04-12T04:02:16.207Z] plt.xlabel("Land-use categories") -[2024-04-12T04:02:16.207Z] plt.ylabel("Number of pixels") -[2024-04-12T04:02:16.207Z] plt.show() -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") -[2024-04-12T04:02:16.207Z] grid.name = "Land-use categories" -[2024-04-12T04:02:16.207Z] plt.show() -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] Traceback: -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.207Z] TypeError Traceback (most recent call last) -[2024-04-12T04:02:16.207Z] /tmp/ipykernel_379/750628277.py in ?() -[2024-04-12T04:02:16.207Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) -[2024-04-12T04:02:16.207Z]  2 print("The land-use categories available are: " + str(unique)) -[2024-04-12T04:02:16.207Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-04-12T04:02:16.207Z]  4  -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] <__array_function__ internals> in ?(*args, **kwargs) -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) -[2024-04-12T04:02:16.207Z]  268 >>> np.repeat(values, counts) -[2024-04-12T04:02:16.207Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved -[2024-04-12T04:02:16.207Z]  270  -[2024-04-12T04:02:16.207Z]  271 """ -[2024-04-12T04:02:16.207Z] --> 272 ar = np.asanyarray(ar) -[2024-04-12T04:02:16.207Z]  273 if axis is None: -[2024-04-12T04:02:16.207Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, -[2024-04-12T04:02:16.207Z]  275 equal_nan=equal_nan) -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py in ?(self, dtype) -[2024-04-12T04:02:16.207Z]  1472 def __array__(self, dtype=None): -[2024-04-12T04:02:16.207Z] -> 1473 raise TypeError( -[2024-04-12T04:02:16.207Z]  1474 "cannot directly convert an xarray.Dataset into a " -[2024-04-12T04:02:16.207Z]  1475 "numpy array. Instead, create an xarray.DataArray " -[2024-04-12T04:02:16.207Z]  1476 "first, either with indexing on the Dataset or by " -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ -[2024-04-12T04:02:16.207Z] Notebook cell execution failed -[2024-04-12T04:02:16.207Z] Cell 8: Cell execution caused an exception -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] Input: -[2024-04-12T04:02:16.207Z] import cartopy.crs as ccrs -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] # Set a CRS transformation: -[2024-04-12T04:02:16.207Z] crs = ccrs.LambertConformal( -[2024-04-12T04:02:16.207Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-12T04:02:16.207Z] ) -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] ax = plt.subplot(projection=crs) -[2024-04-12T04:02:16.207Z] grid.name = "Land-use categories" -[2024-04-12T04:02:16.207Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-04-12T04:02:16.207Z] plt.show() -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] Traceback: -[2024-04-12T04:02:16.207Z] -[2024-04-12T04:02:16.207Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.207Z] AttributeError Traceback (most recent call last) -[2024-04-12T04:02:16.207Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-12T04:02:16.208Z]  304 try: -[2024-04-12T04:02:16.208Z] --> 305 object.__setattr__(self, name, value) -[2024-04-12T04:02:16.208Z]  306 except AttributeError as e: -[2024-04-12T04:02:16.208Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-04-12T04:02:16.208Z]  308 # DataArray.dims.setter -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] The above exception was the direct cause of the following exception: -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] AttributeError Traceback (most recent call last) -[2024-04-12T04:02:16.208Z] Cell In[1], line 9 -[2024-04-12T04:02:16.208Z]  4 crs = ccrs.LambertConformal( -[2024-04-12T04:02:16.208Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-12T04:02:16.208Z]  6 ) -[2024-04-12T04:02:16.208Z]  8 ax = plt.subplot(projection=crs) -[2024-04-12T04:02:16.208Z] ----> 9 grid.name = "Land-use categories" -[2024-04-12T04:02:16.208Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-04-12T04:02:16.208Z]  11 plt.show() -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-12T04:02:16.208Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-04-12T04:02:16.208Z]  310 raise -[2024-04-12T04:02:16.208Z] --> 311 raise AttributeError( -[2024-04-12T04:02:16.208Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-04-12T04:02:16.208Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-04-12T04:02:16.208Z]  314 ) from e -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ -[2024-04-12T04:02:16.208Z] Notebook cell execution failed -[2024-04-12T04:02:16.208Z] Cell 11: Cell execution caused an exception -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] Input: -[2024-04-12T04:02:16.208Z] crs = ccrs.LambertConformal( -[2024-04-12T04:02:16.208Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-12T04:02:16.208Z] ) -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] dem.name = "Elevation" -[2024-04-12T04:02:16.208Z] dem.attrs["units"] = "m" -[2024-04-12T04:02:16.208Z] ax = plt.subplot(projection=crs) -[2024-04-12T04:02:16.208Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") -[2024-04-12T04:02:16.208Z] plt.show() -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] Traceback: -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.208Z] AttributeError Traceback (most recent call last) -[2024-04-12T04:02:16.208Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-12T04:02:16.208Z]  304 try: -[2024-04-12T04:02:16.208Z] --> 305 object.__setattr__(self, name, value) -[2024-04-12T04:02:16.208Z]  306 except AttributeError as e: -[2024-04-12T04:02:16.208Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-04-12T04:02:16.208Z]  308 # DataArray.dims.setter -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] The above exception was the direct cause of the following exception: -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.208Z] AttributeError Traceback (most recent call last) -[2024-04-12T04:02:16.208Z] Cell In[1], line 5 -[2024-04-12T04:02:16.208Z]  1 crs = ccrs.LambertConformal( -[2024-04-12T04:02:16.208Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-12T04:02:16.208Z]  3 ) -[2024-04-12T04:02:16.208Z] ----> 5 dem.name = "Elevation" -[2024-04-12T04:02:16.208Z]  6 dem.attrs["units"] = "m" -[2024-04-12T04:02:16.208Z]  7 ax = plt.subplot(projection=crs) -[2024-04-12T04:02:16.208Z] -[2024-04-12T04:02:16.209Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-12T04:02:16.209Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-04-12T04:02:16.209Z]  310 raise -[2024-04-12T04:02:16.209Z] --> 311 raise AttributeError( -[2024-04-12T04:02:16.209Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-04-12T04:02:16.209Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-04-12T04:02:16.209Z]  314 ) from e -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-04-12T04:02:16.209Z] Notebook cell execution failed -[2024-04-12T04:02:16.209Z] Cell 5: Cell execution caused an exception -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] Input: -[2024-04-12T04:02:16.209Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-04-12T04:02:16.209Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-04-12T04:02:16.209Z] from ravenpy import OutputReader -[2024-04-12T04:02:16.209Z] from ravenpy.ravenpy import run -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-04-12T04:02:16.209Z] run_name = run_name -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-04-12T04:02:16.209Z] # subfolder called "outputs" -[2024-04-12T04:02:16.209Z] configdir = workdir -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-04-12T04:02:16.209Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] # Get the outputs using the Output Reader object. -[2024-04-12T04:02:16.209Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] Traceback: -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.209Z] RavenError Traceback (most recent call last) -[2024-04-12T04:02:16.209Z] Cell In[1], line 14 -[2024-04-12T04:02:16.209Z]  11 configdir = workdir -[2024-04-12T04:02:16.209Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-04-12T04:02:16.209Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-04-12T04:02:16.209Z]  16 # Get the outputs using the Output Reader object. -[2024-04-12T04:02:16.209Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-04-12T04:02:16.209Z]  320 warn(msg, category=RavenWarning) -[2024-04-12T04:02:16.209Z]  322 if messages["ERROR"]: -[2024-04-12T04:02:16.209Z] --> 323 raise RavenError( -[2024-04-12T04:02:16.209Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-04-12T04:02:16.209Z]  325 ) -[2024-04-12T04:02:16.209Z]  327 if returncode != 0: -[2024-04-12T04:02:16.209Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] RavenError: Config directory: /tmp/NB4hhwhs6ze -[2024-04-12T04:02:16.209Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-04-12T04:02:16.209Z] Notebook cell execution failed -[2024-04-12T04:02:16.209Z] Cell 6: Cell execution caused an exception -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] Input: -[2024-04-12T04:02:16.209Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-04-12T04:02:16.209Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-04-12T04:02:16.209Z] from ravenpy import Emulator -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] # Prepare the emulator by writing files on disk -[2024-04-12T04:02:16.209Z] e = Emulator(config=m) -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] # Run the model and get the outputs. -[2024-04-12T04:02:16.209Z] outputs = e.run() -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.209Z] Traceback: -[2024-04-12T04:02:16.209Z] -[2024-04-12T04:02:16.210Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.210Z] RavenError Traceback (most recent call last) -[2024-04-12T04:02:16.210Z] Cell In[1], line 9 -[2024-04-12T04:02:16.210Z]  6 e = Emulator(config=m) -[2024-04-12T04:02:16.210Z]  8 # Run the model and get the outputs. -[2024-04-12T04:02:16.210Z] ----> 9 outputs = e.run() -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-04-12T04:02:16.210Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-04-12T04:02:16.210Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-04-12T04:02:16.210Z]  66 self.write_rv(overwrite=overwrite) -[2024-04-12T04:02:16.210Z] ---> 68 self._output_path = run( -[2024-04-12T04:02:16.210Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-04-12T04:02:16.210Z]  70 ) -[2024-04-12T04:02:16.210Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-04-12T04:02:16.210Z]  72 return self._output -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-04-12T04:02:16.210Z]  320 warn(msg, category=RavenWarning) -[2024-04-12T04:02:16.210Z]  322 if messages["ERROR"]: -[2024-04-12T04:02:16.210Z] --> 323 raise RavenError( -[2024-04-12T04:02:16.210Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-04-12T04:02:16.210Z]  325 ) -[2024-04-12T04:02:16.210Z]  327 if returncode != 0: -[2024-04-12T04:02:16.210Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] RavenError: Config directory: /tmp/tmpq2_lbhyl -[2024-04-12T04:02:16.210Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-04-12T04:02:16.210Z] Notebook cell execution failed -[2024-04-12T04:02:16.210Z] Cell 7: Cell execution caused an exception -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] Input: -[2024-04-12T04:02:16.210Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-04-12T04:02:16.210Z] outputs.files -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] Traceback: -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.210Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.210Z] Cell In[1], line 2 -[2024-04-12T04:02:16.210Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-04-12T04:02:16.210Z] ----> 2 outputs.files -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] NameError: name 'outputs' is not defined -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-04-12T04:02:16.210Z] Notebook cell execution failed -[2024-04-12T04:02:16.210Z] Cell 8: Cell execution caused an exception -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] Input: -[2024-04-12T04:02:16.210Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-04-12T04:02:16.210Z] print("----------------HYDROGRAPH----------------") -[2024-04-12T04:02:16.210Z] display(outputs.hydrograph) -[2024-04-12T04:02:16.210Z] print("") -[2024-04-12T04:02:16.210Z] print("-----------------STORAGE------------------") -[2024-04-12T04:02:16.210Z] display(outputs.storage) -[2024-04-12T04:02:16.210Z] print("") -[2024-04-12T04:02:16.210Z] print("-----------------SOLUTION-----------------") -[2024-04-12T04:02:16.210Z] display(outputs.solution) -[2024-04-12T04:02:16.210Z] print("") -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] Traceback: -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.210Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.210Z] Cell In[1], line 3 -[2024-04-12T04:02:16.210Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-04-12T04:02:16.210Z]  2 print("----------------HYDROGRAPH----------------") -[2024-04-12T04:02:16.210Z] ----> 3 display(outputs.hydrograph) -[2024-04-12T04:02:16.210Z]  4 print("") -[2024-04-12T04:02:16.210Z]  5 print("-----------------STORAGE------------------") -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] NameError: name 'outputs' is not defined -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-04-12T04:02:16.210Z] Notebook cell execution failed -[2024-04-12T04:02:16.210Z] Cell 9: Cell execution caused an exception -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] Input: -[2024-04-12T04:02:16.210Z] # Import the graphing utility built to handle Raven model outputs -[2024-04-12T04:02:16.210Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-04-12T04:02:16.210Z] -[2024-04-12T04:02:16.210Z] hydrograph_objects = outputs.hydrograph -[2024-04-12T04:02:16.211Z] hydrographs(hydrograph_objects) -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] Traceback: -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.211Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.211Z] Cell In[1], line 4 -[2024-04-12T04:02:16.211Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-04-12T04:02:16.211Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-04-12T04:02:16.211Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-04-12T04:02:16.211Z]  5 hydrographs(hydrograph_objects) -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] NameError: name 'outputs' is not defined -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-04-12T04:02:16.211Z] Notebook cell execution failed -[2024-04-12T04:02:16.211Z] Cell 10: Cell execution caused an exception -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] Input: -[2024-04-12T04:02:16.211Z] outputs.hydrograph.q_sim.plot() -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] Traceback: -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.211Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.211Z] Cell In[1], line 1 -[2024-04-12T04:02:16.211Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] NameError: name 'outputs' is not defined -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-04-12T04:02:16.211Z] Notebook cell execution failed -[2024-04-12T04:02:16.211Z] Cell 11: Cell execution caused an exception -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] Input: -[2024-04-12T04:02:16.211Z] print(list(outputs.storage.keys())) -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] Traceback: -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.211Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.211Z] Cell In[1], line 1 -[2024-04-12T04:02:16.211Z] ----> 1 print(list(outputs.storage.keys())) -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] NameError: name 'outputs' is not defined -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-04-12T04:02:16.211Z] Notebook cell execution failed -[2024-04-12T04:02:16.211Z] Cell 12: Cell execution caused an exception -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] Input: -[2024-04-12T04:02:16.211Z] # Plot the "Snow" variable -[2024-04-12T04:02:16.211Z] outputs.storage["Snow"].plot() -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] Traceback: -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.211Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.211Z] Cell In[1], line 2 -[2024-04-12T04:02:16.211Z]  1 # Plot the "Snow" variable -[2024-04-12T04:02:16.211Z] ----> 2 outputs.storage["Snow"].plot() -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] NameError: name 'outputs' is not defined -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ -[2024-04-12T04:02:16.211Z] Notebook cell execution failed -[2024-04-12T04:02:16.211Z] Cell 0: Cell execution caused an exception -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] Input: -[2024-04-12T04:02:16.211Z] import os -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] from hsclient import HydroShare, Token -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] # Authentication method using username and password -[2024-04-12T04:02:16.211Z] """ -[2024-04-12T04:02:16.211Z] username = 'XXXXX' -[2024-04-12T04:02:16.211Z] password = 'XXXXX' -[2024-04-12T04:02:16.211Z] hs = HydroShare(username=username, password=password) -[2024-04-12T04:02:16.211Z] """ -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-04-12T04:02:16.211Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] token = Token(access_token=access_token, token_type="bearer") -[2024-04-12T04:02:16.211Z] hs = HydroShare(client_id=client_id, token=token) -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] Traceback: -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.211Z] ValidationError Traceback (most recent call last) -[2024-04-12T04:02:16.211Z] Cell In[1], line 15 -[2024-04-12T04:02:16.211Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-04-12T04:02:16.211Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-04-12T04:02:16.211Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") -[2024-04-12T04:02:16.211Z]  16 hs = HydroShare(client_id=client_id, token=token) -[2024-04-12T04:02:16.211Z] -[2024-04-12T04:02:16.211Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/pydantic/main.py:171, in BaseModel.__init__(self, **data) -[2024-04-12T04:02:16.211Z]  169 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks -[2024-04-12T04:02:16.211Z]  170 __tracebackhide__ = True -[2024-04-12T04:02:16.212Z] --> 171 self.__pydantic_validator__.validate_python(data, self_instance=self) -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] ValidationError: 4 validation errors for Token -[2024-04-12T04:02:16.212Z] scope -[2024-04-12T04:02:16.212Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) -[2024-04-12T04:02:16.212Z]  2 for r in results: -[2024-04-12T04:02:16.212Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] NameError: name 'hs' is not defined -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ -[2024-04-12T04:02:16.212Z] Notebook cell execution failed -[2024-04-12T04:02:16.212Z] Cell 2: Cell execution caused an exception -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] Input: -[2024-04-12T04:02:16.212Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-04-12T04:02:16.212Z] res.files() -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] Traceback: -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.212Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.212Z] Cell In[1], line 1 -[2024-04-12T04:02:16.212Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-04-12T04:02:16.212Z]  2 res.files() -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] NameError: name 'hs' is not defined -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ -[2024-04-12T04:02:16.212Z] Notebook cell execution failed -[2024-04-12T04:02:16.212Z] Cell 3: Cell execution caused an exception -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] Input: -[2024-04-12T04:02:16.212Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] Traceback: -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.212Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.212Z] Cell In[1], line 1 -[2024-04-12T04:02:16.212Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] NameError: name 'res' is not defined -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ -[2024-04-12T04:02:16.212Z] Notebook cell execution failed -[2024-04-12T04:02:16.212Z] Cell 10: Cell execution caused an exception -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] Input: -[2024-04-12T04:02:16.212Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. -[2024-04-12T04:02:16.212Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" -[2024-04-12T04:02:16.212Z] cat = intake.open_catalog(catalog_name) -[2024-04-12T04:02:16.212Z] ds = cat.era5_reanalysis_single_levels.to_dask() -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] """ -[2024-04-12T04:02:16.212Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, -[2024-04-12T04:02:16.212Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total -[2024-04-12T04:02:16.212Z] precipitation. -[2024-04-12T04:02:16.212Z] """ -[2024-04-12T04:02:16.212Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, -[2024-04-12T04:02:16.212Z] # such as units and variable names. -[2024-04-12T04:02:16.212Z] with xr.set_options(keep_attrs=True): -[2024-04-12T04:02:16.212Z] ERA5_reference = subset.subset_shape( -[2024-04-12T04:02:16.212Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour -[2024-04-12T04:02:16.212Z] ) -[2024-04-12T04:02:16.212Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) -[2024-04-12T04:02:16.212Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) -[2024-04-12T04:02:16.212Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] # Change the units -[2024-04-12T04:02:16.212Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C -[2024-04-12T04:02:16.212Z] ERA5_tmin.attrs["units"] = "degC" -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C -[2024-04-12T04:02:16.212Z] ERA5_tmax.attrs["units"] = "degC" -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] ERA5_pr = ERA5_pr * 1000 # m to mm -[2024-04-12T04:02:16.212Z] ERA5_pr.attrs["units"] = "mm" -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] # Average the variables spatially -[2024-04-12T04:02:16.212Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-04-12T04:02:16.212Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-04-12T04:02:16.212Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.212Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-04-12T04:02:16.212Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-04-12T04:02:16.212Z] -[2024-04-12T04:02:16.213Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-04-12T04:02:16.213Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-04-12T04:02:16.213Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-04-12T04:02:16.213Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-04-12T04:02:16.213Z] -[2024-04-12T04:02:16.213Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the -[2024-04-12T04:02:16.213Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. -[2024-04-12T04:02:16.213Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) -[2024-04-12T04:02:16.213Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") -[2024-04-12T04:02:16.213Z] -[2024-04-12T04:02:16.213Z] Traceback: -[2024-04-12T04:02:16.213Z] -[2024-04-12T04:02:16.213Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.213Z] KeyError Traceback (most recent call last) -[2024-04-12T04:02:16.213Z] Cell In[1], line 37 -[2024-04-12T04:02:16.213Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-04-12T04:02:16.213Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-04-12T04:02:16.213Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 -[2024-04-12T04:02:16.213Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-04-12T04:02:16.213Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-04-12T04:02:16.213Z] -[2024-04-12T04:02:16.213Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-04-12T04:02:16.213Z]  851 self.coords[key] = value -[2024-04-12T04:02:16.213Z]  852 else: -[2024-04-12T04:02:16.213Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-04-12T04:02:16.213Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-04-12T04:02:16.213Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-04-12T04:02:16.213Z] --> 856 obj = self[key] -[2024-04-12T04:02:16.213Z]  857 if isinstance(value, DataArray): -[2024-04-12T04:02:16.213Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-04-12T04:02:16.213Z] -[2024-04-12T04:02:16.213Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-04-12T04:02:16.213Z]  844 return self._getitem_coord(key) -[2024-04-12T04:02:16.213Z]  845 else: -[2024-04-12T04:02:16.213Z]  846 # xarray-style array indexing -[2024-04-12T04:02:16.213Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-04-12T04:02:16.213Z] -[2024-04-12T04:02:16.213Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-04-12T04:02:16.213Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-04-12T04:02:16.213Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-04-12T04:02:16.213Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-04-12T04:02:16.213Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-04-12T04:02:16.213Z]  1447  ) -[2024-04-12T04:02:16.213Z]  1448 return self._from_temp_dataset(ds) -[2024-04-12T04:02:16.213Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-04-12T04:02:16.213Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-04-12T04:02:16.213Z] -[2024-04-12T04:02:16.213Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-04-12T04:02:16.213Z]  2926 var_indexers = { -[2024-04-12T04:02:16.213Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-04-12T04:02:16.213Z]  2928 } -[2024-04-12T04:02:16.213Z]  2929 if var_indexers: -[2024-04-12T04:02:16.213Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-04-12T04:02:16.213Z]  2931 # drop scalar coordinates -[2024-04-12T04:02:16.213Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-04-12T04:02:16.213Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-04-12T04:02:16.213Z] -[2024-04-12T04:02:16.214Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-04-12T04:02:16.214Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-04-12T04:02:16.214Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-04-12T04:02:16.214Z] -> 1368 return self[key] -[2024-04-12T04:02:16.214Z] -[2024-04-12T04:02:16.214Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-04-12T04:02:16.214Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-04-12T04:02:16.214Z]  879  """Return a new Variable object whose contents are consistent with -[2024-04-12T04:02:16.214Z]  880  getting the provided key from the underlying data. -[2024-04-12T04:02:16.214Z]  881 -[2024-04-12T04:02:16.214Z]  (...) -[2024-04-12T04:02:16.214Z]  889  array `x.values` directly. -[2024-04-12T04:02:16.214Z]  890  """ -[2024-04-12T04:02:16.214Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-04-12T04:02:16.214Z]  892 data = as_indexable(self._data)[indexer] -[2024-04-12T04:02:16.214Z]  893 if new_order: -[2024-04-12T04:02:16.214Z] -[2024-04-12T04:02:16.214Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-04-12T04:02:16.214Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-04-12T04:02:16.214Z]  722 return self._broadcast_indexes_basic(key) -[2024-04-12T04:02:16.214Z] --> 724 self._validate_indexers(key) -[2024-04-12T04:02:16.214Z]  725 # Detect it can be mapped as an outer indexer -[2024-04-12T04:02:16.214Z]  726 # If all key is unlabeled, or -[2024-04-12T04:02:16.214Z]  727 # key can be mapped as an OuterIndexer. -[2024-04-12T04:02:16.214Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-04-12T04:02:16.214Z] -[2024-04-12T04:02:16.214Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-04-12T04:02:16.214Z]  771 raise IndexError( -[2024-04-12T04:02:16.214Z]  772 "{}-dimensional boolean indexing is " -[2024-04-12T04:02:16.214Z]  773 "not supported. ".format(k.ndim) -[2024-04-12T04:02:16.214Z]  774 ) -[2024-04-12T04:02:16.214Z]  775 if is_duck_dask_array(k.data): -[2024-04-12T04:02:16.214Z] --> 776 raise KeyError( -[2024-04-12T04:02:16.214Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-04-12T04:02:16.214Z]  778 "This will result in a dask array of unknown shape. " -[2024-04-12T04:02:16.214Z]  779 "Such arrays are unsupported by Xarray." -[2024-04-12T04:02:16.214Z]  780 "Please compute the indexer first using .compute()" -[2024-04-12T04:02:16.214Z]  781 ) -[2024-04-12T04:02:16.214Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-04-12T04:02:16.214Z]  783 raise IndexError( -[2024-04-12T04:02:16.214Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-04-12T04:02:16.214Z]  785 "same dimension to the indexed array. Indexer is " -[2024-04-12T04:02:16.214Z]  (...) -[2024-04-12T04:02:16.214Z]  788 ) -[2024-04-12T04:02:16.214Z]  789 ) -[2024-04-12T04:02:16.214Z] -[2024-04-12T04:02:16.214Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-04-12T04:02:16.214Z] -[2024-04-12T04:02:16.214Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ -[2024-04-12T04:02:16.214Z] Notebook cell execution failed -[2024-04-12T04:02:16.214Z] Cell 11: Cell execution caused an exception -[2024-04-12T04:02:16.214Z] -[2024-04-12T04:02:16.214Z] Input: -[2024-04-12T04:02:16.214Z] # Climate model to use -[2024-04-12T04:02:16.214Z] climate_model = "MIROC6" -[2024-04-12T04:02:16.214Z] -[2024-04-12T04:02:16.214Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. -[2024-04-12T04:02:16.214Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") -[2024-04-12T04:02:16.214Z] col = intake.open_esm_datastore( -[2024-04-12T04:02:16.214Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" -[2024-04-12T04:02:16.214Z] ) -[2024-04-12T04:02:16.214Z] -[2024-04-12T04:02:16.214Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. -[2024-04-12T04:02:16.214Z] with xr.set_options(keep_attrs=True): -[2024-04-12T04:02:16.214Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. -[2024-04-12T04:02:16.214Z] out = {} -[2024-04-12T04:02:16.214Z] for exp in ["historical", "ssp585"]: -[2024-04-12T04:02:16.214Z] if exp == "historical": -[2024-04-12T04:02:16.214Z] period_start = reference_start_day -[2024-04-12T04:02:16.214Z] period_end = reference_end_day -[2024-04-12T04:02:16.214Z] else: -[2024-04-12T04:02:16.214Z] period_start = future_start_day -[2024-04-12T04:02:16.214Z] period_end = future_end_day -[2024-04-12T04:02:16.214Z] -[2024-04-12T04:02:16.214Z] out[exp] = {} -[2024-04-12T04:02:16.214Z] for variable in ["tasmin", "tasmax", "pr"]: -[2024-04-12T04:02:16.215Z] print(exp, variable) -[2024-04-12T04:02:16.215Z] query = dict( -[2024-04-12T04:02:16.215Z] experiment_id=exp, -[2024-04-12T04:02:16.215Z] table_id="day", -[2024-04-12T04:02:16.215Z] variable_id=variable, -[2024-04-12T04:02:16.215Z] member_id="r1i1p1f1", -[2024-04-12T04:02:16.215Z] source_id=climate_model, -[2024-04-12T04:02:16.215Z] ) -[2024-04-12T04:02:16.215Z] col_subset = col.search(require_all_on=["source_id"], **query) -[2024-04-12T04:02:16.215Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) -[2024-04-12T04:02:16.215Z] -[2024-04-12T04:02:16.215Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. -[2024-04-12T04:02:16.215Z] if variable == "pr": -[2024-04-12T04:02:16.215Z] out[exp][variable] = average.average_shape( -[2024-04-12T04:02:16.215Z] xr.open_zarr(mapper, consolidated=True).sel( -[2024-04-12T04:02:16.215Z] time=slice(period_start, period_end) -[2024-04-12T04:02:16.215Z] )[variable], -[2024-04-12T04:02:16.215Z] basin_contour, -[2024-04-12T04:02:16.215Z] ).chunk(-1) -[2024-04-12T04:02:16.215Z] else: -[2024-04-12T04:02:16.215Z] out[exp][variable] = average.average_shape( -[2024-04-12T04:02:16.215Z] xr.open_zarr(mapper, consolidated=True) -[2024-04-12T04:02:16.215Z] .sel(time=slice(period_start, period_end)) -[2024-04-12T04:02:16.215Z] .reset_coords("height", drop=True)[variable], -[2024-04-12T04:02:16.215Z] basin_contour, -[2024-04-12T04:02:16.215Z] ).chunk(-1) -[2024-04-12T04:02:16.215Z] -[2024-04-12T04:02:16.215Z] # We can now extract the variables that we will need later: -[2024-04-12T04:02:16.215Z] historical_tasmax = out["historical"]["tasmax"] -[2024-04-12T04:02:16.215Z] historical_tasmin = out["historical"]["tasmin"] -[2024-04-12T04:02:16.215Z] historical_pr = out["historical"]["pr"] -[2024-04-12T04:02:16.215Z] future_tasmax = out["ssp585"]["tasmax"] -[2024-04-12T04:02:16.215Z] future_tasmin = out["ssp585"]["tasmin"] -[2024-04-12T04:02:16.215Z] future_pr = out["ssp585"]["pr"] -[2024-04-12T04:02:16.215Z] -[2024-04-12T04:02:16.215Z] Traceback: -[2024-04-12T04:02:16.215Z] -[2024-04-12T04:02:16.215Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.215Z] KeyError Traceback (most recent call last) -[2024-04-12T04:02:16.215Z] Cell In[1], line 44 -[2024-04-12T04:02:16.215Z]  37 out[exp][variable] = average.average_shape( -[2024-04-12T04:02:16.215Z]  38 xr.open_zarr(mapper, consolidated=True).sel( -[2024-04-12T04:02:16.215Z]  39 time=slice(period_start, period_end) -[2024-04-12T04:02:16.215Z]  40 )[variable], -[2024-04-12T04:02:16.215Z]  41 basin_contour, -[2024-04-12T04:02:16.215Z]  42 ).chunk(-1) -[2024-04-12T04:02:16.215Z]  43 else: -[2024-04-12T04:02:16.215Z] ---> 44 out[exp][variable] = average.average_shape( -[2024-04-12T04:02:16.215Z]  45  xr.open_zarr(mapper, consolidated=True) -[2024-04-12T04:02:16.215Z]  46  .sel(time=slice(period_start, period_end)) -[2024-04-12T04:02:16.215Z]  47  .reset_coords("height", drop=True)[variable], -[2024-04-12T04:02:16.215Z]  48  basin_contour, -[2024-04-12T04:02:16.215Z]  49  ).chunk(-1) -[2024-04-12T04:02:16.215Z]  51 # We can now extract the variables that we will need later: -[2024-04-12T04:02:16.215Z]  52 historical_tasmax = out["historical"]["tasmax"] -[2024-04-12T04:02:16.215Z] -[2024-04-12T04:02:16.215Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) -[2024-04-12T04:02:16.215Z]  105 ds_sub = ds_copy.isel(indexer) -[2024-04-12T04:02:16.215Z]  107 # Compute the weights -[2024-04-12T04:02:16.215Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) -[2024-04-12T04:02:16.215Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. -[2024-04-12T04:02:16.215Z]  111 nonnull = ( -[2024-04-12T04:02:16.215Z]  112 savger.weights.data.nnz -[2024-04-12T04:02:16.215Z]  113 if isinstance(savger.weights, xr.DataArray) -[2024-04-12T04:02:16.215Z]  114 else savger.weights.nnz -[2024-04-12T04:02:16.215Z]  115 ) -[2024-04-12T04:02:16.215Z] -[2024-04-12T04:02:16.215Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:1185, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) -[2024-04-12T04:02:16.215Z]  1182 if isinstance(ds_in, xr.DataArray): -[2024-04-12T04:02:16.215Z]  1183 ds_in = ds_in._to_temp_dataset() -[2024-04-12T04:02:16.216Z] -> 1185 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) -[2024-04-12T04:02:16.216Z]  1187 # Create an output locstream so that the regridder knows the output shape and coords. -[2024-04-12T04:02:16.216Z]  1188 # Latitude and longitude coordinates are the polygon centroid. -[2024-04-12T04:02:16.216Z]  1189 lon_out, lat_out = _get_lon_lat(ds_in) -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) -[2024-04-12T04:02:16.216Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) -[2024-04-12T04:02:16.216Z]  166 if need_bounds: -[2024-04-12T04:02:16.216Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) -[2024-04-12T04:02:16.216Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) -[2024-04-12T04:02:16.216Z]  169 add_corner(grid, lon_b.T, lat_b.T) -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) -[2024-04-12T04:02:16.216Z]  105 lat_bnds = ds.cf.get_bounds('latitude') -[2024-04-12T04:02:16.216Z]  107 # Convert from CF bounds to xESMF bounds. -[2024-04-12T04:02:16.216Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. -[2024-04-12T04:02:16.216Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) -[2024-04-12T04:02:16.216Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) -[2024-04-12T04:02:16.216Z]  111 return lon_b, lat_b -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) -[2024-04-12T04:02:16.216Z]  2400 filtered = [ -[2024-04-12T04:02:16.216Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs -[2024-04-12T04:02:16.216Z]  2402 ] -[2024-04-12T04:02:16.216Z]  2403 if len(filtered) > 1: -[2024-04-12T04:02:16.216Z] -> 2404 raise KeyError( -[2024-04-12T04:02:16.216Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " -[2024-04-12T04:02:16.216Z]  2406 ) -[2024-04-12T04:02:16.216Z]  2408 (crd_name,) = filtered -[2024-04-12T04:02:16.216Z]  2409 crd = variables[crd_name] -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon', 'lon_bounds'] " -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ -[2024-04-12T04:02:16.216Z] Notebook cell execution failed -[2024-04-12T04:02:16.216Z] Cell 12: Cell execution caused an exception -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] Input: -[2024-04-12T04:02:16.216Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-04-12T04:02:16.216Z] # and make sure everything is consistent. -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] # Let's start with precipitation: -[2024-04-12T04:02:16.216Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-04-12T04:02:16.216Z] historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-04-12T04:02:16.216Z] future_pr = xclim.core.units.rate2amount(future_pr) -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] # Now we can actually convert units in absolute terms. -[2024-04-12T04:02:16.216Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") -[2024-04-12T04:02:16.216Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] # Now let's do temperature: -[2024-04-12T04:02:16.216Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") -[2024-04-12T04:02:16.216Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") -[2024-04-12T04:02:16.216Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") -[2024-04-12T04:02:16.216Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] Traceback: -[2024-04-12T04:02:16.216Z] -[2024-04-12T04:02:16.216Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.216Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.216Z] Cell In[1], line 6 -[2024-04-12T04:02:16.216Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-04-12T04:02:16.216Z]  2 # and make sure everything is consistent. -[2024-04-12T04:02:16.216Z]  3 -[2024-04-12T04:02:16.216Z]  4 # Let's start with precipitation: -[2024-04-12T04:02:16.216Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-04-12T04:02:16.216Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-04-12T04:02:16.217Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) -[2024-04-12T04:02:16.217Z]  9 # Now we can actually convert units in absolute terms. -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] NameError: name 'historical_pr' is not defined -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ -[2024-04-12T04:02:16.217Z] Notebook cell execution failed -[2024-04-12T04:02:16.217Z] Cell 13: Cell execution caused an exception -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] Input: -[2024-04-12T04:02:16.217Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. -[2024-04-12T04:02:16.217Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-04-12T04:02:16.217Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-12T04:02:16.217Z] ref=ERA5_weather.pr, -[2024-04-12T04:02:16.217Z] hist=historical_pr, -[2024-04-12T04:02:16.217Z] nquantiles=50, -[2024-04-12T04:02:16.217Z] kind="+", -[2024-04-12T04:02:16.217Z] group=group_month_window, -[2024-04-12T04:02:16.217Z] ) -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Apply the correction factors on the reference period -[2024-04-12T04:02:16.217Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Apply the correction factors on the future period -[2024-04-12T04:02:16.217Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Ensure that the precipitation is non-negative, which can happen with some climate models -[2024-04-12T04:02:16.217Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) -[2024-04-12T04:02:16.217Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data -[2024-04-12T04:02:16.217Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-12T04:02:16.217Z] ref=ERA5_weather.tmax, -[2024-04-12T04:02:16.217Z] hist=historical_tasmax, -[2024-04-12T04:02:16.217Z] nquantiles=50, -[2024-04-12T04:02:16.217Z] kind="+", -[2024-04-12T04:02:16.217Z] group=group_month_window, -[2024-04-12T04:02:16.217Z] ) -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Apply the correction factors on the reference period -[2024-04-12T04:02:16.217Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Apply the correction factors on the future period -[2024-04-12T04:02:16.217Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data -[2024-04-12T04:02:16.217Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-12T04:02:16.217Z] ref=ERA5_weather.tmin, -[2024-04-12T04:02:16.217Z] hist=historical_tasmin, -[2024-04-12T04:02:16.217Z] nquantiles=50, -[2024-04-12T04:02:16.217Z] kind="+", -[2024-04-12T04:02:16.217Z] group=group_month_window, -[2024-04-12T04:02:16.217Z] ) -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Apply the correction factors on the reference period -[2024-04-12T04:02:16.217Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Apply the correction factors on the future period -[2024-04-12T04:02:16.217Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] Traceback: -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.217Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.217Z] Cell In[1], line 6 -[2024-04-12T04:02:16.217Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-04-12T04:02:16.217Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-04-12T04:02:16.217Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-12T04:02:16.217Z] ----> 6 ref=ERA5_weather.pr, -[2024-04-12T04:02:16.217Z]  7 hist=historical_pr, -[2024-04-12T04:02:16.217Z]  8 nquantiles=50, -[2024-04-12T04:02:16.217Z]  9 kind="+", -[2024-04-12T04:02:16.217Z]  10 group=group_month_window, -[2024-04-12T04:02:16.217Z]  11 ) -[2024-04-12T04:02:16.217Z]  13 # Apply the correction factors on the reference period -[2024-04-12T04:02:16.217Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] NameError: name 'ERA5_weather' is not defined -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ -[2024-04-12T04:02:16.217Z] Notebook cell execution failed -[2024-04-12T04:02:16.217Z] Cell 14: Cell execution caused an exception -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] Input: -[2024-04-12T04:02:16.217Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-04-12T04:02:16.217Z] ref_dataset = xr.merge( -[2024-04-12T04:02:16.217Z] [ -[2024-04-12T04:02:16.217Z] corrected_ref_precip.to_dataset(name="pr"), -[2024-04-12T04:02:16.217Z] corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-04-12T04:02:16.217Z] corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-04-12T04:02:16.217Z] ] -[2024-04-12T04:02:16.217Z] ) -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Write to temporary folder -[2024-04-12T04:02:16.217Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-04-12T04:02:16.217Z] ref_dataset.to_netcdf(fn_tmp_ref) -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Convert the future corrected data into netCDF file -[2024-04-12T04:02:16.217Z] fut_dataset = xr.merge( -[2024-04-12T04:02:16.217Z] [ -[2024-04-12T04:02:16.217Z] corrected_fut_precip.to_dataset(name="pr"), -[2024-04-12T04:02:16.217Z] corrected_fut_tasmax.to_dataset(name="tasmax"), -[2024-04-12T04:02:16.217Z] corrected_fut_tasmin.to_dataset(name="tasmin"), -[2024-04-12T04:02:16.217Z] ] -[2024-04-12T04:02:16.217Z] ) -[2024-04-12T04:02:16.217Z] # Write to temporary folder -[2024-04-12T04:02:16.217Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" -[2024-04-12T04:02:16.217Z] fut_dataset.to_netcdf(fn_tmp_fut) -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] # Write the data to disk to a temporary location for future use. -[2024-04-12T04:02:16.217Z] ref_dataset = xr.open_dataset(fn_tmp_ref) -[2024-04-12T04:02:16.217Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") -[2024-04-12T04:02:16.217Z] -[2024-04-12T04:02:16.217Z] fut_dataset = xr.open_dataset(fn_tmp_fut) -[2024-04-12T04:02:16.218Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] Traceback: -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.218Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.218Z] Cell In[1], line 4 -[2024-04-12T04:02:16.218Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-04-12T04:02:16.218Z]  2 ref_dataset = xr.merge( -[2024-04-12T04:02:16.218Z]  3 [ -[2024-04-12T04:02:16.218Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), -[2024-04-12T04:02:16.218Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-04-12T04:02:16.218Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-04-12T04:02:16.218Z]  7 ] -[2024-04-12T04:02:16.218Z]  8 ) -[2024-04-12T04:02:16.218Z]  10 # Write to temporary folder -[2024-04-12T04:02:16.218Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] NameError: name 'corrected_ref_precip' is not defined -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ -[2024-04-12T04:02:16.218Z] Notebook cell execution failed -[2024-04-12T04:02:16.218Z] Cell 15: Cell execution caused an exception -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] Input: -[2024-04-12T04:02:16.218Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-04-12T04:02:16.218Z] # populate the fields for the HRU. -[2024-04-12T04:02:16.218Z] hru = {} -[2024-04-12T04:02:16.218Z] hru = dict( -[2024-04-12T04:02:16.218Z] area=all_properties["area"], -[2024-04-12T04:02:16.218Z] elevation=all_properties["elevation"], -[2024-04-12T04:02:16.218Z] latitude=all_properties["latitude"], -[2024-04-12T04:02:16.218Z] longitude=all_properties["longitude"], -[2024-04-12T04:02:16.218Z] hru_type="land", -[2024-04-12T04:02:16.218Z] ) -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-04-12T04:02:16.218Z] # will simply execute the model which has been pre-configured to run on this period. -[2024-04-12T04:02:16.218Z] start_date = dt.datetime(1981, 1, 1) -[2024-04-12T04:02:16.218Z] end_date = dt.datetime(1985, 12, 31) -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. -[2024-04-12T04:02:16.218Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] # Alternative variable names as described in the tutorial. -[2024-04-12T04:02:16.218Z] alt_names = { -[2024-04-12T04:02:16.218Z] "TEMP_MIN": "tmin", -[2024-04-12T04:02:16.218Z] "TEMP_MAX": "tmax", -[2024-04-12T04:02:16.218Z] "PRECIP": "pr", -[2024-04-12T04:02:16.218Z] } -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here -[2024-04-12T04:02:16.218Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. -[2024-04-12T04:02:16.218Z] data_kwds = { -[2024-04-12T04:02:16.218Z] "ALL": { -[2024-04-12T04:02:16.218Z] "elevation": hru["elevation"], -[2024-04-12T04:02:16.218Z] "latitude": hru["latitude"], -[2024-04-12T04:02:16.218Z] "longitude": hru["longitude"], -[2024-04-12T04:02:16.218Z] } -[2024-04-12T04:02:16.218Z] } -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] # Give a name to the simulation -[2024-04-12T04:02:16.218Z] run_name = "Paper_example_simulation" -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] # Setup the gauge object that includes meteorological data from ERA5 -[2024-04-12T04:02:16.218Z] gauge = [ -[2024-04-12T04:02:16.218Z] rc.Gauge.from_nc( -[2024-04-12T04:02:16.218Z] tmp -[2024-04-12T04:02:16.218Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-04-12T04:02:16.218Z] data_type=data_type, # Note that this is the list of all the variables -[2024-04-12T04:02:16.218Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-04-12T04:02:16.218Z] data_kwds=data_kwds, -[2024-04-12T04:02:16.218Z] ) -[2024-04-12T04:02:16.218Z] ] -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] # Read the streamflow from the HYSETS catchment data for this basin -[2024-04-12T04:02:16.218Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, -[2024-04-12T04:02:16.218Z] # and the optimizer will read it directly to calibrate. -[2024-04-12T04:02:16.218Z] eval_metrics = ("NASH_SUTCLIFFE",) -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] # Build the model configuration according to user preferences and inputs -[2024-04-12T04:02:16.218Z] model_config = GR4JCN( -[2024-04-12T04:02:16.218Z] ObservationData=discharge_data, -[2024-04-12T04:02:16.218Z] Gauge=gauge, -[2024-04-12T04:02:16.218Z] HRUs=[hru], -[2024-04-12T04:02:16.218Z] StartDate=start_date, -[2024-04-12T04:02:16.218Z] EndDate=end_date, -[2024-04-12T04:02:16.218Z] RunName=run_name, -[2024-04-12T04:02:16.218Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. -[2024-04-12T04:02:16.218Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. -[2024-04-12T04:02:16.218Z] ) -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] Traceback: -[2024-04-12T04:02:16.218Z] -[2024-04-12T04:02:16.218Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.218Z] ValueError Traceback (most recent call last) -[2024-04-12T04:02:16.218Z] Cell In[1], line 42 -[2024-04-12T04:02:16.218Z]  38 run_name = "Paper_example_simulation" -[2024-04-12T04:02:16.218Z]  40 # Setup the gauge object that includes meteorological data from ERA5 -[2024-04-12T04:02:16.218Z]  41 gauge = [ -[2024-04-12T04:02:16.218Z] ---> 42 rc.Gauge.from_nc( -[2024-04-12T04:02:16.218Z]  43  tmp -[2024-04-12T04:02:16.218Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-04-12T04:02:16.218Z]  45  data_type=data_type, # Note that this is the list of all the variables -[2024-04-12T04:02:16.219Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-04-12T04:02:16.219Z]  47  data_kwds=data_kwds, -[2024-04-12T04:02:16.219Z]  48  ) -[2024-04-12T04:02:16.219Z]  49 ] -[2024-04-12T04:02:16.219Z]  51 # Read the streamflow from the HYSETS catchment data for this basin -[2024-04-12T04:02:16.219Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-12T04:02:16.219Z]  751 forcings.difference_update(data) -[2024-04-12T04:02:16.219Z]  753 if len(data) == 0: -[2024-04-12T04:02:16.219Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-12T04:02:16.219Z]  756 # Default Gauge name -[2024-04-12T04:02:16.219Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] ValueError: No data found in netCDF files. -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ -[2024-04-12T04:02:16.219Z] Notebook cell execution failed -[2024-04-12T04:02:16.219Z] Cell 16: Cell execution caused an exception -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] Input: -[2024-04-12T04:02:16.219Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, -[2024-04-12T04:02:16.219Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. -[2024-04-12T04:02:16.219Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) -[2024-04-12T04:02:16.219Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. -[2024-04-12T04:02:16.219Z] random_seed = 42 -[2024-04-12T04:02:16.219Z] np.random.seed(random_seed) -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] # Build the optimizer object -[2024-04-12T04:02:16.219Z] spot_setup = SpotSetup( -[2024-04-12T04:02:16.219Z] config=model_config, -[2024-04-12T04:02:16.219Z] low=low, -[2024-04-12T04:02:16.219Z] high=high, -[2024-04-12T04:02:16.219Z] ) -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-04-12T04:02:16.219Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-04-12T04:02:16.219Z] max_iterations = 200 -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer -[2024-04-12T04:02:16.219Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most -[2024-04-12T04:02:16.219Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation -[2024-04-12T04:02:16.219Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small -[2024-04-12T04:02:16.219Z] # evaluation budgets. For more details on DDS, see: -[2024-04-12T04:02:16.219Z] # -[2024-04-12T04:02:16.219Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water -[2024-04-12T04:02:16.219Z] # Resources Research, 43(1) -[2024-04-12T04:02:16.219Z] sampler = spotpy.algorithms.dds( -[2024-04-12T04:02:16.219Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False -[2024-04-12T04:02:16.219Z] ) -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and -[2024-04-12T04:02:16.219Z] # the best overall value from all trials is returned. -[2024-04-12T04:02:16.219Z] sampler.sample(max_iterations, trials=1) -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] # Get the model diagnostics -[2024-04-12T04:02:16.219Z] diag = spot_setup.diagnostics -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] # Get all the values of each iteration -[2024-04-12T04:02:16.219Z] results = sampler.getdata() -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] # Get the raw resutlts directly in an array -[2024-04-12T04:02:16.219Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( -[2024-04-12T04:02:16.219Z] results -[2024-04-12T04:02:16.219Z] ) # Want to get the MAX NSE (change for min for RMSE) -[2024-04-12T04:02:16.219Z] best_model_run = list( -[2024-04-12T04:02:16.219Z] results[bestindex][0] -[2024-04-12T04:02:16.219Z] ) # Get the parameter set returning the best NSE -[2024-04-12T04:02:16.219Z] optimized_parameters = best_model_run[ -[2024-04-12T04:02:16.219Z] 1:-1 -[2024-04-12T04:02:16.219Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] # Display the parameter set ready to use in a future run: -[2024-04-12T04:02:16.219Z] print(optimized_parameters) -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] Traceback: -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.219Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.219Z] Cell In[1], line 12 -[2024-04-12T04:02:16.219Z]  8 np.random.seed(random_seed) -[2024-04-12T04:02:16.219Z]  10 # Build the optimizer object -[2024-04-12T04:02:16.219Z]  11 spot_setup = SpotSetup( -[2024-04-12T04:02:16.219Z] ---> 12 config=model_config, -[2024-04-12T04:02:16.219Z]  13 low=low, -[2024-04-12T04:02:16.219Z]  14 high=high, -[2024-04-12T04:02:16.219Z]  15 ) -[2024-04-12T04:02:16.219Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-04-12T04:02:16.219Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-04-12T04:02:16.219Z]  19 max_iterations = 200 -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] NameError: name 'model_config' is not defined -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ -[2024-04-12T04:02:16.219Z] Notebook cell execution failed -[2024-04-12T04:02:16.219Z] Cell 17: Cell execution caused an exception -[2024-04-12T04:02:16.219Z] -[2024-04-12T04:02:16.219Z] Input: -[2024-04-12T04:02:16.220Z] # Copy the configuration of the previous model that we will modify for our validation: -[2024-04-12T04:02:16.220Z] model_validation = model_config.duplicate( -[2024-04-12T04:02:16.220Z] params=optimized_parameters, -[2024-04-12T04:02:16.220Z] StartDate=dt.datetime(1986, 1, 1), -[2024-04-12T04:02:16.220Z] EndDate=dt.datetime(1990, 12, 31), -[2024-04-12T04:02:16.220Z] SuppressOutput=False, -[2024-04-12T04:02:16.220Z] ) -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] sim_output = Emulator(config=model_validation).run() -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] # Get validation NSE (note we are counting the first year without warm-up) -[2024-04-12T04:02:16.220Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] # Plot the model output -[2024-04-12T04:02:16.220Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") -[2024-04-12T04:02:16.220Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-04-12T04:02:16.220Z] plt.legend() -[2024-04-12T04:02:16.220Z] plt.title("Validation period - NSE=" + str(NSE[0])) -[2024-04-12T04:02:16.220Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-12T04:02:16.220Z] plt.grid() -[2024-04-12T04:02:16.220Z] plt.show() -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] Traceback: -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.220Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.220Z] Cell In[1], line 2 -[2024-04-12T04:02:16.220Z]  1 # Copy the configuration of the previous model that we will modify for our validation: -[2024-04-12T04:02:16.220Z] ----> 2 model_validation = model_config.duplicate( -[2024-04-12T04:02:16.220Z]  3 params=optimized_parameters, -[2024-04-12T04:02:16.220Z]  4 StartDate=dt.datetime(1986, 1, 1), -[2024-04-12T04:02:16.220Z]  5 EndDate=dt.datetime(1990, 12, 31), -[2024-04-12T04:02:16.220Z]  6 SuppressOutput=False, -[2024-04-12T04:02:16.220Z]  7 ) -[2024-04-12T04:02:16.220Z]  9 sim_output = Emulator(config=model_validation).run() -[2024-04-12T04:02:16.220Z]  11 # Get validation NSE (note we are counting the first year without warm-up) -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] NameError: name 'model_config' is not defined -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ -[2024-04-12T04:02:16.220Z] Notebook cell execution failed -[2024-04-12T04:02:16.220Z] Cell 18: Cell execution caused an exception -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] Input: -[2024-04-12T04:02:16.220Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-04-12T04:02:16.220Z] gauge_ref = [ -[2024-04-12T04:02:16.220Z] rc.Gauge.from_nc( -[2024-04-12T04:02:16.220Z] tmp -[2024-04-12T04:02:16.220Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-12T04:02:16.220Z] data_type=data_type, -[2024-04-12T04:02:16.220Z] alt_names=alt_names, -[2024-04-12T04:02:16.220Z] data_kwds=data_kwds, -[2024-04-12T04:02:16.220Z] ) -[2024-04-12T04:02:16.220Z] ] -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-12T04:02:16.220Z] model_config_reference = model_validation.duplicate( -[2024-04-12T04:02:16.220Z] Gauge=gauge_ref, -[2024-04-12T04:02:16.220Z] StartDate=reference_start_day -[2024-04-12T04:02:16.220Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-04-12T04:02:16.220Z] EndDate=reference_end_day, -[2024-04-12T04:02:16.220Z] ) -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] # Run the model from the configuration and get the outputs. -[2024-04-12T04:02:16.220Z] ref_output = Emulator(config=model_config_reference).run() -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] # Plot the model output. Note that both simulations should have similar hydrological -[2024-04-12T04:02:16.220Z] # regime but day-to-day variability is not expected to match. -[2024-04-12T04:02:16.220Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") -[2024-04-12T04:02:16.220Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-04-12T04:02:16.220Z] plt.legend() -[2024-04-12T04:02:16.220Z] plt.title("Reference period") -[2024-04-12T04:02:16.220Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-12T04:02:16.220Z] plt.grid() -[2024-04-12T04:02:16.220Z] plt.show() -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] Traceback: -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.220Z] ValueError Traceback (most recent call last) -[2024-04-12T04:02:16.220Z] Cell In[1], line 3 -[2024-04-12T04:02:16.220Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-04-12T04:02:16.220Z]  2 gauge_ref = [ -[2024-04-12T04:02:16.220Z] ----> 3 rc.Gauge.from_nc( -[2024-04-12T04:02:16.220Z]  4  tmp -[2024-04-12T04:02:16.220Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-12T04:02:16.220Z]  6  data_type=data_type, -[2024-04-12T04:02:16.220Z]  7  alt_names=alt_names, -[2024-04-12T04:02:16.220Z]  8  data_kwds=data_kwds, -[2024-04-12T04:02:16.220Z]  9  ) -[2024-04-12T04:02:16.220Z]  10 ] -[2024-04-12T04:02:16.220Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-12T04:02:16.220Z]  13 model_config_reference = model_validation.duplicate( -[2024-04-12T04:02:16.220Z]  14 Gauge=gauge_ref, -[2024-04-12T04:02:16.220Z]  15 StartDate=reference_start_day -[2024-04-12T04:02:16.220Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-04-12T04:02:16.220Z]  17 EndDate=reference_end_day, -[2024-04-12T04:02:16.220Z]  18 ) -[2024-04-12T04:02:16.220Z] -[2024-04-12T04:02:16.220Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-12T04:02:16.221Z]  751 forcings.difference_update(data) -[2024-04-12T04:02:16.221Z]  753 if len(data) == 0: -[2024-04-12T04:02:16.221Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-12T04:02:16.221Z]  756 # Default Gauge name -[2024-04-12T04:02:16.221Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-12T04:02:16.221Z] -[2024-04-12T04:02:16.221Z] ValueError: No data found in netCDF files. -[2024-04-12T04:02:16.221Z] -[2024-04-12T04:02:16.221Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ -[2024-04-12T04:02:16.221Z] Notebook cell execution failed -[2024-04-12T04:02:16.221Z] Cell 19: Cell execution caused an exception -[2024-04-12T04:02:16.221Z] -[2024-04-12T04:02:16.221Z] Input: -[2024-04-12T04:02:16.221Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-04-12T04:02:16.221Z] gauge_fut = [ -[2024-04-12T04:02:16.221Z] rc.Gauge.from_nc( -[2024-04-12T04:02:16.221Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-12T04:02:16.221Z] data_type=data_type, -[2024-04-12T04:02:16.221Z] alt_names=alt_names, -[2024-04-12T04:02:16.221Z] data_kwds=data_kwds, -[2024-04-12T04:02:16.221Z] ) -[2024-04-12T04:02:16.221Z] ] -[2024-04-12T04:02:16.221Z] -[2024-04-12T04:02:16.221Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-12T04:02:16.221Z] model_config_future = model_validation.duplicate( -[2024-04-12T04:02:16.221Z] Gauge=gauge_fut, -[2024-04-12T04:02:16.221Z] StartDate=future_start_day + dt.timedelta(days=1), -[2024-04-12T04:02:16.221Z] EndDate=future_end_day, -[2024-04-12T04:02:16.221Z] ObservationData=None, # There are no observations for the future period. -[2024-04-12T04:02:16.221Z] ) -[2024-04-12T04:02:16.221Z] -[2024-04-12T04:02:16.221Z] # Run the model and get the outputs and hydrographs. -[2024-04-12T04:02:16.221Z] fut_output = Emulator(config=model_config_future).run() -[2024-04-12T04:02:16.221Z] -[2024-04-12T04:02:16.221Z] # Plot the model output -[2024-04-12T04:02:16.221Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") -[2024-04-12T04:02:16.221Z] plt.legend() -[2024-04-12T04:02:16.221Z] plt.title("Future period") -[2024-04-12T04:02:16.221Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-12T04:02:16.221Z] plt.grid() -[2024-04-12T04:02:16.221Z] plt.show() -[2024-04-12T04:02:16.221Z] -[2024-04-12T04:02:16.221Z] Traceback: -[2024-04-12T04:02:16.221Z] -[2024-04-12T04:02:16.221Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.221Z] ValueError Traceback (most recent call last) -[2024-04-12T04:02:16.221Z] Cell In[1], line 3 -[2024-04-12T04:02:16.221Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-04-12T04:02:16.221Z]  2 gauge_fut = [ -[2024-04-12T04:02:16.221Z] ----> 3 rc.Gauge.from_nc( -[2024-04-12T04:02:16.221Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-12T04:02:16.221Z]  5  data_type=data_type, -[2024-04-12T04:02:16.221Z]  6  alt_names=alt_names, -[2024-04-12T04:02:16.221Z]  7  data_kwds=data_kwds, -[2024-04-12T04:02:16.221Z]  8  ) -[2024-04-12T04:02:16.221Z]  9 ] -[2024-04-12T04:02:16.221Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-12T04:02:16.221Z]  12 model_config_future = model_validation.duplicate( -[2024-04-12T04:02:16.221Z]  13 Gauge=gauge_fut, -[2024-04-12T04:02:16.221Z]  14 StartDate=future_start_day + dt.timedelta(days=1), -[2024-04-12T04:02:16.221Z]  15 EndDate=future_end_day, -[2024-04-12T04:02:16.221Z]  16 ObservationData=None, # There are no observations for the future period. -[2024-04-12T04:02:16.221Z]  17 ) -[2024-04-12T04:02:16.221Z] -[2024-04-12T04:02:16.222Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-12T04:02:16.222Z]  751 forcings.difference_update(data) -[2024-04-12T04:02:16.222Z]  753 if len(data) == 0: -[2024-04-12T04:02:16.222Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-12T04:02:16.222Z]  756 # Default Gauge name -[2024-04-12T04:02:16.222Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-12T04:02:16.222Z] -[2024-04-12T04:02:16.222Z] ValueError: No data found in netCDF files. -[2024-04-12T04:02:16.222Z] -[2024-04-12T04:02:16.222Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ -[2024-04-12T04:02:16.222Z] Notebook cell execution failed -[2024-04-12T04:02:16.222Z] Cell 20: Cell execution caused an exception -[2024-04-12T04:02:16.222Z] -[2024-04-12T04:02:16.222Z] Input: -[2024-04-12T04:02:16.222Z] # Extract the mean annual hydrograph for each simulation. -[2024-04-12T04:02:16.222Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-12T04:02:16.222Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-12T04:02:16.222Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-12T04:02:16.222Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-12T04:02:16.222Z] -[2024-04-12T04:02:16.222Z] # Plot the model output -[2024-04-12T04:02:16.222Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") -[2024-04-12T04:02:16.222Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") -[2024-04-12T04:02:16.222Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") -[2024-04-12T04:02:16.222Z] future_flows.plot(color="red", label="Future", x="dayofyear") -[2024-04-12T04:02:16.222Z] plt.legend() -[2024-04-12T04:02:16.222Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-12T04:02:16.222Z] plt.xlabel("Day of year") -[2024-04-12T04:02:16.222Z] plt.xlim([0, 365]) -[2024-04-12T04:02:16.222Z] plt.title("Comparison of mean annual hydrographs") -[2024-04-12T04:02:16.222Z] plt.grid() -[2024-04-12T04:02:16.222Z] plt.show() -[2024-04-12T04:02:16.222Z] -[2024-04-12T04:02:16.222Z] Traceback: -[2024-04-12T04:02:16.222Z] -[2024-04-12T04:02:16.222Z] --------------------------------------------------------------------------- -[2024-04-12T04:02:16.222Z] NameError Traceback (most recent call last) -[2024-04-12T04:02:16.222Z] Cell In[1], line 2 -[2024-04-12T04:02:16.222Z]  1 # Extract the mean annual hydrograph for each simulation. -[2024-04-12T04:02:16.222Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-12T04:02:16.222Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-12T04:02:16.222Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-12T04:02:16.222Z] -[2024-04-12T04:02:16.222Z] NameError: name 'ref_output' is not defined -[2024-04-12T04:02:16.222Z] -[2024-04-12T04:02:16.222Z] =========================== short test summary info ============================ -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 -[2024-04-12T04:02:16.222Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 -[2024-04-12T04:02:16.222Z] ================== 27 failed, 215 passed in 928.59s (0:15:28) ================== -[2024-04-12T04:02:16.479Z] + EXIT_CODE=1 -[2024-04-12T04:02:16.479Z] + tr [:upper:] [:lower:] -[2024-04-12T04:02:16.479Z] + echo true -[2024-04-12T04:02:16.479Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-04-12T04:02:16.479Z] + [ xtrue = xtrue ] -[2024-04-12T04:02:16.479Z] + mkdir -p buildout -[2024-04-12T04:02:16.479Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-04-12T04:02:16.479Z] + filename=Region_selection.ipynb -[2024-04-12T04:02:16.479Z] + echo Region_selection.ipynb -[2024-04-12T04:02:16.479Z] + sed s/.ipynb$// -[2024-04-12T04:02:16.479Z] + filename=Region_selection -[2024-04-12T04:02:16.479Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-04-12T04:02:16.479Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-04-12T04:02:18.396Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-04-12T04:02:30.639Z] [NbConvertApp] Writing 107224 bytes to buildout/Region_selection.output.ipynb -[2024-04-12T04:02:30.639Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-04-12T04:02:30.639Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-04-12T04:02:30.639Z] + echo Subset_climate_data_over_watershed.ipynb -[2024-04-12T04:02:30.639Z] + sed s/.ipynb$// -[2024-04-12T04:02:30.639Z] + filename=Subset_climate_data_over_watershed -[2024-04-12T04:02:30.639Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-04-12T04:02:30.639Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-04-12T04:02:30.898Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-04-12T04:02:49.001Z] [NbConvertApp] Writing 97070 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-04-12T04:02:49.001Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-04-12T04:02:49.001Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-04-12T04:02:49.001Z] + echo 00_Introduction_to_JupyterLab.ipynb -[2024-04-12T04:02:49.001Z] + sed s/.ipynb$// -[2024-04-12T04:02:49.001Z] + filename=00_Introduction_to_JupyterLab -[2024-04-12T04:02:49.001Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-04-12T04:02:49.001Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-04-12T04:02:49.001Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-04-12T04:02:50.907Z] [NbConvertApp] Writing 13179 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-04-12T04:02:51.164Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-04-12T04:02:51.164Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-04-12T04:02:51.164Z] + echo 01_Getting_watershed_boundaries.ipynb -[2024-04-12T04:02:51.164Z] + sed s/.ipynb$// -[2024-04-12T04:02:51.164Z] + filename=01_Getting_watershed_boundaries -[2024-04-12T04:02:51.164Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-04-12T04:02:51.164Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-04-12T04:02:53.061Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-04-12T04:03:05.262Z] [NbConvertApp] Writing 109427 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-04-12T04:03:05.262Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-04-12T04:03:05.262Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-04-12T04:03:05.262Z] + sed s/.ipynb$// -[2024-04-12T04:03:05.262Z] + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-04-12T04:03:05.262Z] + filename=02_Extract_geographical_watershed_properties -[2024-04-12T04:03:05.262Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-04-12T04:03:05.262Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-04-12T04:03:05.263Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-04-12T04:03:20.155Z] [NbConvertApp] Writing 91031 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-04-12T04:03:20.155Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-04-12T04:03:20.155Z] + filename=03_Extracting_forcing_data.ipynb -[2024-04-12T04:03:20.155Z] + echo 03_Extracting_forcing_data.ipynb -[2024-04-12T04:03:20.155Z] + sed s/.ipynb$// -[2024-04-12T04:03:20.155Z] + filename=03_Extracting_forcing_data -[2024-04-12T04:03:20.155Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-04-12T04:03:20.155Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-04-12T04:03:21.539Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-04-12T04:05:13.031Z] [NbConvertApp] Writing 110377 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-04-12T04:05:13.031Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-04-12T04:05:13.031Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-04-12T04:05:13.031Z] + sed s/.ipynb$// -[2024-04-12T04:05:13.031Z] + echo 04_Emulating_hydrological_models.ipynb -[2024-04-12T04:05:13.031Z] + filename=04_Emulating_hydrological_models -[2024-04-12T04:05:13.031Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-04-12T04:05:13.031Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-04-12T04:05:13.031Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-04-12T04:05:18.279Z] [NbConvertApp] Writing 144059 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-04-12T04:05:18.279Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-04-12T04:05:18.279Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-04-12T04:05:18.279Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-04-12T04:05:18.279Z] + sed s/.ipynb$// -[2024-04-12T04:05:18.279Z] + filename=05_Advanced_RavenPy_configuration -[2024-04-12T04:05:18.279Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-04-12T04:05:18.279Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-04-12T04:05:19.647Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-04-12T04:05:41.612Z] [NbConvertApp] Writing 340428 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-04-12T04:05:41.612Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-04-12T04:05:41.612Z] + filename=06_Raven_calibration.ipynb -[2024-04-12T04:05:41.612Z] + echo 06_Raven_calibration.ipynb -[2024-04-12T04:05:41.612Z] + sed s/.ipynb$// -[2024-04-12T04:05:41.612Z] + filename=06_Raven_calibration -[2024-04-12T04:05:41.612Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-04-12T04:05:41.612Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-04-12T04:05:41.612Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-04-12T04:05:51.598Z] [NbConvertApp] Writing 24094 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-04-12T04:05:51.598Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-04-12T04:05:51.598Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-04-12T04:05:51.598Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-04-12T04:05:51.598Z] + sed s/.ipynb$// -[2024-04-12T04:05:51.598Z] + filename=07_Making_and_using_hotstart_files -[2024-04-12T04:05:51.598Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-04-12T04:05:51.598Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-04-12T04:05:52.998Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-04-12T04:06:07.931Z] [NbConvertApp] Writing 226139 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-04-12T04:06:07.931Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-12T04:06:07.931Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-12T04:06:07.931Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-12T04:06:07.931Z] + sed s/.ipynb$// -[2024-04-12T04:06:07.931Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-04-12T04:06:07.931Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-04-12T04:06:07.931Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-12T04:06:07.931Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-04-12T04:12:14.569Z] [NbConvertApp] Writing 251789 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb -[2024-04-12T04:12:14.569Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-12T04:12:14.569Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-12T04:12:14.569Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-12T04:12:14.569Z] + sed s/.ipynb$// -[2024-04-12T04:12:14.569Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-04-12T04:12:14.569Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-04-12T04:12:14.569Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-12T04:12:14.569Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-04-12T04:12:21.158Z] [NbConvertApp] Writing 128175 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-04-12T04:12:21.158Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-04-12T04:12:21.158Z] + filename=10_Data_assimilation.ipynb -[2024-04-12T04:12:21.158Z] + echo 10_Data_assimilation.ipynb -[2024-04-12T04:12:21.158Z] + sed s/.ipynb$// -[2024-04-12T04:12:21.158Z] + filename=10_Data_assimilation -[2024-04-12T04:12:21.158Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-04-12T04:12:21.158Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-04-12T04:12:22.527Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-04-12T04:13:44.026Z] [NbConvertApp] Writing 689843 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-04-12T04:13:44.026Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-04-12T04:13:44.026Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-04-12T04:13:44.026Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-04-12T04:13:44.026Z] + sed s/.ipynb$// -[2024-04-12T04:13:44.026Z] + filename=11_Climatological_ESP_forecasting -[2024-04-12T04:13:44.026Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-04-12T04:13:44.026Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-04-12T04:13:44.026Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-04-12T04:14:30.702Z] [NbConvertApp] Writing 556869 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-04-12T04:14:30.702Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-04-12T04:14:30.702Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-04-12T04:14:30.702Z] + echo 12_Performing_hindcasting_experiments.ipynb -[2024-04-12T04:14:30.702Z] + sed s/.ipynb$// -[2024-04-12T04:14:30.702Z] + filename=12_Performing_hindcasting_experiments -[2024-04-12T04:14:30.702Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-04-12T04:14:30.702Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-04-12T04:14:30.702Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-04-12T04:14:52.649Z] [NbConvertApp] Writing 298489 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-04-12T04:14:52.649Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-04-12T04:14:52.649Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-04-12T04:14:52.649Z] + echo Assess_probabilistic_flood_risk.ipynb -[2024-04-12T04:14:52.649Z] + sed s/.ipynb$// -[2024-04-12T04:14:52.649Z] + filename=Assess_probabilistic_flood_risk -[2024-04-12T04:14:52.649Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-04-12T04:14:52.649Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-04-12T04:14:52.649Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-04-12T04:15:24.743Z] [NbConvertApp] Writing 550034 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-04-12T04:15:24.743Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-12T04:15:24.743Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-12T04:15:24.743Z] + sed s/.ipynb$// -[2024-04-12T04:15:24.743Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-12T04:15:24.743Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-04-12T04:15:24.743Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-04-12T04:15:24.743Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-12T04:15:24.743Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-04-12T04:16:03.517Z] [NbConvertApp] Writing 748540 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-04-12T04:16:03.517Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-04-12T04:16:03.517Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-04-12T04:16:03.517Z] + sed s/.ipynb$// -[2024-04-12T04:16:03.517Z] + echo Distributed_hydrological_modelling.ipynb -[2024-04-12T04:16:03.517Z] + filename=Distributed_hydrological_modelling -[2024-04-12T04:16:03.517Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-04-12T04:16:03.517Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-04-12T04:16:03.517Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-04-12T04:16:35.628Z] [NbConvertApp] Writing 111408 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-04-12T04:16:35.628Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-04-12T04:16:35.628Z] + filename=HydroShare_integration.ipynb -[2024-04-12T04:16:35.628Z] + echo HydroShare_integration.ipynb -[2024-04-12T04:16:35.628Z] + sed s/.ipynb$// -[2024-04-12T04:16:35.628Z] + filename=HydroShare_integration -[2024-04-12T04:16:35.628Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-04-12T04:16:35.628Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-04-12T04:16:35.628Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-04-12T04:16:39.827Z] [NbConvertApp] Writing 11584 bytes to buildout/HydroShare_integration.output.ipynb -[2024-04-12T04:16:39.827Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-04-12T04:16:39.827Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-04-12T04:16:39.827Z] + + sed s/.ipynb$// -[2024-04-12T04:16:39.827Z] echo Hydrological_realtime_forecasting.ipynb -[2024-04-12T04:16:39.827Z] + filename=Hydrological_realtime_forecasting -[2024-04-12T04:16:39.827Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-04-12T04:16:39.827Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-04-12T04:16:41.213Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-04-12T04:17:03.226Z] [NbConvertApp] Writing 305229 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-04-12T04:17:03.485Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-04-12T04:17:03.485Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-04-12T04:17:03.485Z] + echo Managing_Jupyter_Environments.ipynb -[2024-04-12T04:17:03.485Z] + sed s/.ipynb$// -[2024-04-12T04:17:03.485Z] + filename=Managing_Jupyter_Environments -[2024-04-12T04:17:03.485Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-04-12T04:17:03.485Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-04-12T04:17:05.395Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-04-12T04:17:17.614Z] [NbConvertApp] Writing 8035 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-04-12T04:17:17.614Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-04-12T04:17:17.614Z] + filename=Perform_Regionalization.ipynb -[2024-04-12T04:17:17.614Z] + sed s/.ipynb$// -[2024-04-12T04:17:17.614Z] + echo Perform_Regionalization.ipynb -[2024-04-12T04:17:17.614Z] + filename=Perform_Regionalization -[2024-04-12T04:17:17.614Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-04-12T04:17:17.614Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-04-12T04:17:17.615Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-04-12T04:17:49.779Z] [NbConvertApp] Writing 127609 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-04-12T04:17:49.779Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-12T04:17:49.779Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-12T04:17:49.780Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-12T04:17:49.780Z] + sed s/.ipynb$// -[2024-04-12T04:17:49.780Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-04-12T04:17:49.780Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-04-12T04:17:49.780Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-12T04:17:49.780Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-04-12T04:18:04.658Z] [NbConvertApp] Writing 111378 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-04-12T04:18:04.658Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-04-12T04:18:04.658Z] + filename=Sensitivity_analysis.ipynb -[2024-04-12T04:18:04.658Z] + echo Sensitivity_analysis.ipynb -[2024-04-12T04:18:04.658Z] + sed s/.ipynb$// -[2024-04-12T04:18:04.658Z] + filename=Sensitivity_analysis -[2024-04-12T04:18:04.658Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-04-12T04:18:04.658Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-04-12T04:18:06.039Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-04-12T04:18:24.186Z] [NbConvertApp] Writing 35307 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-04-12T04:18:24.186Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-04-12T04:18:24.186Z] + filename=time_series_analysis.ipynb -[2024-04-12T04:18:24.186Z] + sed s/.ipynb$// -[2024-04-12T04:18:24.186Z] + echo time_series_analysis.ipynb -[2024-04-12T04:18:24.186Z] + filename=time_series_analysis -[2024-04-12T04:18:24.186Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-04-12T04:18:24.186Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-04-12T04:18:25.563Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-04-12T04:18:37.797Z] [NbConvertApp] Writing 190847 bytes to buildout/time_series_analysis.output.ipynb -[2024-04-12T04:18:37.797Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-12T04:18:37.797Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-12T04:18:37.797Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-12T04:18:37.797Z] + sed s/.ipynb$// -[2024-04-12T04:18:37.797Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-04-12T04:18:37.797Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-04-12T04:18:37.797Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-12T04:18:37.798Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-04-12T04:20:14.273Z] [NbConvertApp] Writing 119909 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-04-12T04:20:14.273Z] + exit 1 -[2024-04-12T04:20:14.273Z] + EXIT_CODE=1 -[2024-04-12T04:20:14.273Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-04-12T04:20:14.273Z] + mkdir -p buildout/env-dump -[2024-04-12T04:20:14.273Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-04-12T04:20:14.273Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-04-12T04:20:14.273Z] + conda env export -n birdy -[2024-04-12T04:20:29.166Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-12T04:20:29.166Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-12T04:20:29.166Z] + conda list -n birdy --explicit -[2024-04-12T04:20:39.142Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-12T04:20:39.142Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-12T04:20:39.142Z] + pip freeze -[2024-04-12T04:20:40.084Z] + exit 1 +[2024-04-21T21:06:08.293Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-21T21:06:08.293Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-21T21:06:08.293Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-21T21:06:08.293Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-21T21:06:08.293Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-21T21:06:08.293Z] FINCH_BRANCH has been set to 'master' +[2024-04-21T21:06:08.293Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-21T21:06:08.293Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-21T21:06:08.293Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-21T21:06:08.293Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-21T21:06:08.293Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-21T21:06:08.293Z] RAVEN_BRANCH has been set to 'main' +[2024-04-21T21:06:08.294Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-21T21:06:08.294Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-21T21:06:08.294Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-21T21:06:08.294Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-21T21:06:08.294Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-21T21:06:08.294Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-21T21:06:08.294Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-21T21:06:08.294Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-21T21:06:08.294Z] + git clean -fdx +[2024-04-21T21:06:08.552Z] Removing .pytest_cache/ +[2024-04-21T21:06:08.552Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/ +[2024-04-21T21:06:08.552Z] Removing RavenPy-master/ +[2024-04-21T21:06:08.552Z] Removing __pycache__/ +[2024-04-21T21:06:08.552Z] Removing buildout/ +[2024-04-21T21:06:08.552Z] Removing esgf-compute-api-devel/ +[2024-04-21T21:06:08.552Z] Removing finch-master/ +[2024-04-21T21:06:08.552Z] Removing pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/ +[2024-04-21T21:06:08.552Z] Removing raven-main/ +[2024-04-21T21:06:08.552Z] + ./downloadrepos +[2024-04-21T21:06:08.552Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-21T21:06:08.552Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-21T21:06:08.552Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-21T21:06:08.552Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-21T21:06:08.552Z] FINCH_BRANCH has been set to 'master' +[2024-04-21T21:06:08.552Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-21T21:06:08.552Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-21T21:06:08.552Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-21T21:06:08.552Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-21T21:06:08.552Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-21T21:06:08.552Z] RAVEN_BRANCH has been set to 'main' +[2024-04-21T21:06:08.552Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-21T21:06:08.552Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-21T21:06:08.552Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-21T21:06:08.552Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-21T21:06:08.552Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-21T21:06:08.552Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-21T21:06:08.552Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-21T21:06:08.552Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-21T21:06:08.552Z] + rm -rf pavics-sdi-* +[2024-04-21T21:06:08.552Z] + ls +[2024-04-21T21:06:08.552Z] + grep pavics-sdi +[2024-04-21T21:06:08.552Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-04-21T21:06:08.552Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-21T21:06:08.552Z] + shift +[2024-04-21T21:06:08.552Z] + branch=master +[2024-04-21T21:06:08.552Z] + shift +[2024-04-21T21:06:08.552Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-04-21T21:06:08.552Z] + tar xz +[2024-04-21T21:06:11.827Z] + ls +[2024-04-21T21:06:11.827Z] + grep pavics-sdi +[2024-04-21T21:06:11.827Z] pavics-sdi-master +[2024-04-21T21:06:11.827Z] + set +x +[2024-04-21T21:06:11.827Z] + rm -rf finch-* +[2024-04-21T21:06:11.827Z] + ls +[2024-04-21T21:06:11.827Z] + grep finch +[2024-04-21T21:06:11.827Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-21T21:06:11.827Z] + github_repo=https://github.com/bird-house/finch +[2024-04-21T21:06:11.827Z] + shift +[2024-04-21T21:06:11.827Z] + branch=master +[2024-04-21T21:06:11.827Z] + shift +[2024-04-21T21:06:11.827Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-21T21:06:11.827Z] + tar xz +[2024-04-21T21:06:13.206Z] + ls +[2024-04-21T21:06:13.206Z] + grep finch +[2024-04-21T21:06:13.206Z] finch-master +[2024-04-21T21:06:13.206Z] + set +x +[2024-04-21T21:06:13.206Z] + rm -rf PAVICS-landing-* +[2024-04-21T21:06:13.206Z] + + grep PAVICS-landing +[2024-04-21T21:06:13.206Z] ls +[2024-04-21T21:06:13.206Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-04-21T21:06:13.206Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-21T21:06:13.206Z] + shift +[2024-04-21T21:06:13.206Z] + branch=master +[2024-04-21T21:06:13.206Z] + shift +[2024-04-21T21:06:13.206Z] + + tar xz +[2024-04-21T21:06:13.206Z] wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-04-21T21:06:23.167Z] + ls +[2024-04-21T21:06:23.167Z] + grep PAVICS-landing +[2024-04-21T21:06:23.167Z] PAVICS-landing-master +[2024-04-21T21:06:23.167Z] + set +x +[2024-04-21T21:06:23.167Z] + rm -rf raven-* +[2024-04-21T21:06:23.167Z] + ls +[2024-04-21T21:06:23.167Z] + grep raven +[2024-04-21T21:06:23.167Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-21T21:06:23.167Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-21T21:06:23.167Z] + shift +[2024-04-21T21:06:23.167Z] + branch=main +[2024-04-21T21:06:23.167Z] + shift +[2024-04-21T21:06:23.167Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-21T21:06:23.167Z] + tar xz +[2024-04-21T21:06:23.733Z] + ls +[2024-04-21T21:06:23.733Z] + grep raven +[2024-04-21T21:06:23.733Z] raven-main +[2024-04-21T21:06:23.733Z] + set +x +[2024-04-21T21:06:23.733Z] + rm -rf RavenPy-* +[2024-04-21T21:06:23.733Z] + ls +[2024-04-21T21:06:23.733Z] + grep RavenPy +[2024-04-21T21:06:23.733Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-21T21:06:23.733Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-21T21:06:23.733Z] + shift +[2024-04-21T21:06:23.733Z] + branch=master +[2024-04-21T21:06:23.733Z] + shift +[2024-04-21T21:06:23.733Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-21T21:06:23.733Z] + tar xz +[2024-04-21T21:06:25.627Z] + ls +[2024-04-21T21:06:25.627Z] + grep RavenPy +[2024-04-21T21:06:25.627Z] RavenPy-master +[2024-04-21T21:06:25.627Z] + set +x +[2024-04-21T21:06:25.627Z] + rm -rf esgf-compute-api-* +[2024-04-21T21:06:25.628Z] + ls +[2024-04-21T21:06:25.628Z] + grep esgf-compute-api +[2024-04-21T21:06:25.628Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-21T21:06:25.628Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-21T21:06:25.628Z] + shift +[2024-04-21T21:06:25.628Z] + branch=devel +[2024-04-21T21:06:25.628Z] + shift +[2024-04-21T21:06:25.628Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-21T21:06:25.628Z] + tar xz +[2024-04-21T21:06:26.190Z] + + grep esgf-compute-api +[2024-04-21T21:06:26.190Z] ls +[2024-04-21T21:06:26.190Z] esgf-compute-api-devel +[2024-04-21T21:06:26.190Z] + set +x +[2024-04-21T21:06:26.190Z] + echo master +[2024-04-21T21:06:26.190Z] + sed s@/@-@g +[2024-04-21T21:06:26.190Z] + PAVICS_SDI_BRANCH=master +[2024-04-21T21:06:26.190Z] + echo Ouranosinc/pavics-sdi +[2024-04-21T21:06:26.190Z] + sed s@^.*/@@g +[2024-04-21T21:06:26.190Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-21T21:06:26.190Z] + echo master +[2024-04-21T21:06:26.190Z] + sed s@/@-@g +[2024-04-21T21:06:26.190Z] + FINCH_BRANCH=master +[2024-04-21T21:06:26.190Z] + echo bird-house/finch +[2024-04-21T21:06:26.190Z] + sed s@^.*/@@g +[2024-04-21T21:06:26.190Z] + FINCH_REPO_NAME=finch +[2024-04-21T21:06:26.190Z] + echo master +[2024-04-21T21:06:26.190Z] + sed s@/@-@g +[2024-04-21T21:06:26.190Z] + PAVICS_LANDING_BRANCH=master +[2024-04-21T21:06:26.190Z] + echo Ouranosinc/PAVICS-landing +[2024-04-21T21:06:26.190Z] + sed s@^.*/@@g +[2024-04-21T21:06:26.190Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-21T21:06:26.190Z] + echo main +[2024-04-21T21:06:26.190Z] + sed s@/@-@g +[2024-04-21T21:06:26.190Z] + RAVEN_BRANCH=main +[2024-04-21T21:06:26.190Z] + echo Ouranosinc/raven +[2024-04-21T21:06:26.190Z] + sed s@^.*/@@g +[2024-04-21T21:06:26.190Z] + RAVEN_REPO_NAME=raven +[2024-04-21T21:06:26.190Z] + echo master +[2024-04-21T21:06:26.190Z] + sed s@/@-@g +[2024-04-21T21:06:26.190Z] + RAVENPY_BRANCH=master +[2024-04-21T21:06:26.190Z] + echo CSHS-CWRA/RavenPy +[2024-04-21T21:06:26.191Z] + sed s@^.*/@@g +[2024-04-21T21:06:26.191Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-21T21:06:26.191Z] + echo devel +[2024-04-21T21:06:26.191Z] + sed s@/@-@g +[2024-04-21T21:06:26.191Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-21T21:06:26.191Z] + echo ESGF/esgf-compute-api +[2024-04-21T21:06:26.191Z] + sed s@^.*/@@g +[2024-04-21T21:06:26.191Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-21T21:06:26.191Z] + echo pavics-sdi-master +[2024-04-21T21:06:26.191Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-21T21:06:26.191Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-04-21T21:06:26.450Z] + echo finch-master +[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-21T21:06:26.450Z] + FINCH_DIR=finch-master +[2024-04-21T21:06:26.450Z] + echo PAVICS-landing-master +[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-21T21:06:26.450Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-04-21T21:06:26.450Z] + echo raven-main +[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-21T21:06:26.450Z] + RAVEN_DIR=raven-main +[2024-04-21T21:06:26.450Z] + echo RavenPy-master +[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-21T21:06:26.450Z] + RAVENPY_DIR=RavenPy-master +[2024-04-21T21:06:26.450Z] + echo esgf-compute-api-devel +[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-21T21:06:26.450Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-21T21:06:26.450Z] + echo true +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + VERIFY_SSL=true +[2024-04-21T21:06:26.450Z] + [ xtrue = xfalse ] +[2024-04-21T21:06:26.450Z] + rm -v finch-master/setup.cfg +[2024-04-21T21:06:26.450Z] removed 'finch-master/setup.cfg' +[2024-04-21T21:06:26.450Z] + rm -v raven-main/setup.cfg +[2024-04-21T21:06:26.450Z] removed 'raven-main/setup.cfg' +[2024-04-21T21:06:26.450Z] + rm -v raven-main/pyproject.toml +[2024-04-21T21:06:26.450Z] removed 'raven-main/pyproject.toml' +[2024-04-21T21:06:26.450Z] + rm -v RavenPy-master/setup.cfg +[2024-04-21T21:06:26.450Z] removed 'RavenPy-master/setup.cfg' +[2024-04-21T21:06:26.450Z] + rm -v RavenPy-master/tox.ini +[2024-04-21T21:06:26.450Z] removed 'RavenPy-master/tox.ini' +[2024-04-21T21:06:26.450Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-21T21:06:26.450Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-21T21:06:26.450Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-21T21:06:26.450Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-21T21:06:26.450Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-21T21:06:26.450Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-21T21:06:26.450Z] + echo false +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + TEST_MAGPIE_AUTH=false +[2024-04-21T21:06:26.450Z] + echo false +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + TEST_PAVICS_SDI_REPO=false +[2024-04-21T21:06:26.450Z] + echo false +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-21T21:06:26.450Z] + echo false +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + TEST_FINCH_REPO=false +[2024-04-21T21:06:26.450Z] + echo false +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + TEST_PAVICS_LANDING_REPO=false +[2024-04-21T21:06:26.450Z] + echo true +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + TEST_RAVEN_REPO=true +[2024-04-21T21:06:26.450Z] + echo true +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + TEST_RAVENPY_REPO=true +[2024-04-21T21:06:26.450Z] + echo false +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-21T21:06:26.450Z] + echo false +[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] +[2024-04-21T21:06:26.450Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-04-21T21:06:26.451Z] + NOTEBOOKS_TO_TEST= +[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] +[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] +[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] +[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] +[2024-04-21T21:06:26.451Z] + [ xtrue = xtrue ] +[2024-04-21T21:06:26.451Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-04-21T21:06:26.451Z] + [ xtrue = xtrue ] +[2024-04-21T21:06:26.451Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-04-21T21:06:26.451Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] +[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] +[2024-04-21T21:06:26.451Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-21T21:06:26.451Z] + [ -n ] +[2024-04-21T21:06:26.451Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-21T21:06:26.451Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-21T21:06:26.451Z] Will run notebooks against pavics.ouranos.ca +[2024-04-21T21:06:26.451Z] + [ -z ] +[2024-04-21T21:06:26.451Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-21T21:06:26.451Z] + git diff +[2024-04-21T21:06:26.451Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-21T21:06:26.451Z] + [ -n ] +[2024-04-21T21:06:26.451Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-04-21T21:06:28.976Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-21T21:06:28.977Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-21T21:06:28.977Z] ============================= test session starts ============================== +[2024-04-21T21:06:28.977Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 +[2024-04-21T21:06:28.977Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-04-21T21:06:28.977Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-21T21:06:28.977Z] collected 242 items +[2024-04-21T21:06:28.977Z] +[2024-04-21T21:06:39.508Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-04-21T21:06:42.046Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-04-21T21:06:54.526Z] ...... [ 6%] +[2024-04-21T21:06:56.435Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] +[2024-04-21T21:06:56.435Z] [ 9%] +[2024-04-21T21:06:58.605Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-04-21T21:07:06.708Z] .... [ 12%] +[2024-04-21T21:07:13.321Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-04-21T21:07:20.424Z] ....F.FF..F.. [ 18%] +[2024-04-21T21:07:50.081Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] +[2024-04-21T21:09:09.227Z] .. [ 22%] +[2024-04-21T21:09:14.800Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] +[2024-04-21T21:09:24.081Z] ..FFFFFFFF....... [ 30%] +[2024-04-21T21:09:31.416Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] +[2024-04-21T21:09:43.048Z] ........... [ 36%] +[2024-04-21T21:09:52.078Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] +[2024-04-21T21:09:57.389Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-04-21T21:10:03.553Z] ..... [ 41%] +[2024-04-21T21:10:04.936Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-04-21T21:15:06.169Z] ................. [ 48%] +[2024-04-21T21:15:13.035Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-04-21T21:15:20.659Z] .... [ 50%] +[2024-04-21T21:16:35.327Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] +[2024-04-21T21:50:13.236Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb Fx [ 54%] +[2024-04-21T21:50:13.236Z] xxxxxx [ 57%] +[2024-04-21T22:23:36.070Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb F [ 57%] +[2024-04-21T22:23:36.070Z] xxxxxxx [ 60%] +[2024-04-21T22:23:36.070Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] +[2024-04-21T22:57:13.993Z] Fxxx [ 64%] +[2024-04-21T23:06:06.131Z] Cancelling nested steps due to timeout +[2024-04-21T23:06:06.135Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb Sending interrupt signal to process +[2024-04-21T23:06:20.796Z] Terminated +[2024-04-21T23:06:20.800Z] script returned exit code 143 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -2019,41 +376,39 @@ $ docker top 0072fbfdf1a60e09332893a5d910d7b3e2f85c34919ab4197a68e6b650710bef -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-12T04:20:40.225Z] Archiving artifacts -[2024-04-12T04:20:40.250Z] Recording fingerprints +[2024-04-21T23:06:23.702Z] Archiving artifacts +[2024-04-21T23:06:23.744Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:20:40.282Z] Archiving artifacts -[2024-04-12T04:20:42.502Z] Recording fingerprints +[2024-04-21T23:06:24.165Z] Archiving artifacts +[2024-04-21T23:06:26.785Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:20:43.141Z] Archiving artifacts -[2024-04-12T04:20:43.157Z] Recording fingerprints +[2024-04-21T23:06:28.222Z] Archiving artifacts +[2024-04-21T23:06:28.588Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:20:43.512Z] Archiving artifacts -[2024-04-12T04:20:43.535Z] Recording fingerprints +[2024-04-21T23:06:28.787Z] Archiving artifacts +[2024-04-21T23:06:28.807Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:20:43.564Z] Archiving artifacts -[2024-04-12T04:20:43.725Z] Recording fingerprints +[2024-04-21T23:06:28.943Z] Archiving artifacts +[2024-04-21T23:06:28.960Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:20:43.809Z] Archiving artifacts -[2024-04-12T04:20:43.843Z] Recording fingerprints +[2024-04-21T23:06:29.118Z] Archiving artifacts +[2024-04-21T23:06:29.249Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:20:45.044Z] Archiving artifacts -[2024-04-12T04:20:45.056Z] Recording fingerprints +[2024-04-21T23:06:31.087Z] Archiving artifacts +[2024-04-21T23:06:31.342Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:20:45.075Z] Archiving artifacts -[2024-04-12T04:20:45.110Z] Recording fingerprints +[2024-04-21T23:06:31.372Z] Archiving artifacts +[2024-04-21T23:06:31.507Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:20:45.706Z] Archiving artifacts -[2024-04-12T04:20:46.087Z] Recording fingerprints +[2024-04-21T23:06:32.344Z] Archiving artifacts +[2024-04-21T23:06:32.840Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-12T04:20:46.905Z] Archiving artifacts -[2024-04-12T04:20:47.262Z] Recording fingerprints +[2024-04-21T23:06:32.993Z] Archiving artifacts [Pipeline] archiveArtifacts -[2024-04-12T04:20:49.104Z] Archiving artifacts -[2024-04-12T04:20:49.118Z] Recording fingerprints +[2024-04-21T23:06:33.037Z] Archiving artifacts [Pipeline] emailextrecipients [Pipeline] step -[2024-04-12T04:20:49.199Z] Sending e-mails to: vu.long@ouranos.ca +[2024-04-21T23:06:33.451Z] No mail will be sent out, as 'PAVICS-e2e-workflow-tests » new-docker-build #300' does not have a result yet. Please make sure you set a proper result in case of pipeline/build scripts. [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -2063,13 +418,13 @@ $ docker top 0072fbfdf1a60e09332893a5d910d7b3e2f85c34919ab4197a68e6b650710bef -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 0072fbfdf1a60e09332893a5d910d7b3e2f85c34919ab4197a68e6b650710bef -$ docker rm -f 0072fbfdf1a60e09332893a5d910d7b3e2f85c34919ab4197a68e6b650710bef +$ docker stop --time=1 59443904e937c3fa8728663a0f071e6b663d69ce915a7ddd7e30debfbab698ac +$ docker rm -f 59443904e937c3fa8728663a0f071e6b663d69ce915a7ddd7e30debfbab698ac [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] End of Pipeline -ERROR: script returned exit code 1 -Finished: FAILURE +Timeout has been exceeded +Finished: ABORTED From a584cacccf193cb23d2413c671f534f3bcb062d1 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Sun, 28 Apr 2024 23:56:32 -0400 Subject: [PATCH 076/104] docker: move to py3.11 and remove cdms2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit py3.11 because py3.10 hang unexpectedly in raven nb in Jenkins but not interractively in JupyterLab. Unable to diagnose. Remove cdms2 because: ``` Could not solve for environment specs The following packages are incompatible ├─ cdms2 is installable with the potential options │ ├─ cdms2 [2.10|2.12|...|3.1.4] would require │ │ └─ python [2.7* |>=2.7,<2.8.0a0 ], which can be installed; │ ├─ cdms2 [3.0|3.0.1] would require │ │ └─ python [3.5* |>=3.5,<3.6.0a0 ], which can be installed; │ ├─ cdms2 3.0 would require │ │ └─ python 3.6* , which can be installed; │ ├─ cdms2 [3.0.1|3.1.0|3.1.2|3.1.3|3.1.4] would require │ │ └─ python >=3.6,<3.7.0a0 , which can be installed; │ ├─ cdms2 [3.1.2|3.1.3|3.1.4] would require │ │ └─ python >=3.7,<3.8.0a0 , which can be installed; │ ├─ cdms2 [3.1.4|3.1.5] would require │ │ └─ python >=3.6,<3.7.0a0 *_cpython, which can be installed; │ ├─ cdms2 [3.1.4|3.1.5] would require │ │ └─ python >=3.7,<3.8.0a0 *_cpython, which can be installed; │ ├─ cdms2 3.1.4 would require │ │ └─ python >=3.8,<3.9.0a0 , which can be installed; │ ├─ cdms2 [3.1.4|3.1.5] would require │ │ └─ python >=3.8,<3.9.0a0 *_cpython, which can be installed; │ ├─ cdms2 3.1.5 would require │ │ └─ python >=3.10,<3.11.0a0 *_cpython, which can be installed; │ ├─ cdms2 3.1.5 would require │ │ └─ python >=3.9,<3.10.0a0 *_cpython, which can be installed; │ └─ cdms2 3.1.5 would require │ └─ python >=3.9,<3.10.0a0 *_73_pypy, which can be installed; └─ pin-1 is not installable because it requires └─ python 3.11.* , which conflicts with any installable versions previously reported. Pins seem to be involved in the conflict. Currently pinned specs: - python 3.11.* (labeled as 'pin-1') ``` --- docker/Dockerfile | 2 +- docker/environment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 77ef985..25e9642 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -44,7 +44,7 @@ COPY environment.yml /environment.yml # DEBUG conda.common._logic:_run_sat(607): Invoking SAT with clause count: 2500273 # RUN umask 0000 && \ - mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && \ + mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.11 --yes && \ mamba env update --name birdy --file /environment.yml && \ mamba clean --all --yes diff --git a/docker/environment.yml b/docker/environment.yml index aae421f..1af960f 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -146,7 +146,7 @@ dependencies: - esgf-compute-api # https://anaconda.org/conda-forge/esgf-pyclient (for pavics-sdi esgf-dap.ipynb) - esgf-pyclient - - cdms2 + #- cdms2 # Disable vcs because it was forcing python downgrade to below 3.9. # See https://github.com/CDAT/vcs/issues/457 # package vcs-8.1-py_0 requires vtk-cdat >8.1, but none of the providers can be installed From 61834e13d5c71b22a33cff4d87a8964958b9d49e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Mon, 29 Apr 2024 00:00:27 -0400 Subject: [PATCH 077/104] release: update to use image pavics/workflow-tests:py310-240428 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e61c357..9023817 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-240419" + image "pavics/workflow-tests:py310-240428" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index ef1e02c..fc79d46 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-240419 +FROM pavics/workflow-tests:py310-240428 USER root diff --git a/launchcontainer b/launchcontainer index c3e68b3..da5252e 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240419" + DOCKER_IMAGE="pavics/workflow-tests:py310-240428" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 53b87f1..330c636 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240419" + DOCKER_IMAGE="pavics/workflow-tests:py310-240428" fi if [ -z "$CONTAINER_NAME" ]; then From 6a8cb91e690c9b644a96d2911b6eeed488947f10 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Mon, 29 Apr 2024 00:01:19 -0400 Subject: [PATCH 078/104] release: update to use image pavics/workflow-tests:py311-240428 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9023817..a5cc206 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py310-240428" + image "pavics/workflow-tests:py311-240428" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index fc79d46..8acc0ca 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py310-240428 +FROM pavics/workflow-tests:py311-240428 USER root diff --git a/launchcontainer b/launchcontainer index da5252e..0797ac1 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240428" + DOCKER_IMAGE="pavics/workflow-tests:py311-240428" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 330c636..9df7f13 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py310-240428" + DOCKER_IMAGE="pavics/workflow-tests:py311-240428" fi if [ -z "$CONTAINER_NAME" ]; then From 393fc67361048209d2e59114c1308bfdf275dca8 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Mon, 29 Apr 2024 00:41:44 -0400 Subject: [PATCH 079/104] docker: document why cdms2 was disabled --- docker/environment.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/environment.yml b/docker/environment.yml index 1af960f..b23f238 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -146,6 +146,7 @@ dependencies: - esgf-compute-api # https://anaconda.org/conda-forge/esgf-pyclient (for pavics-sdi esgf-dap.ipynb) - esgf-pyclient + # Disable cdms2 because it was forcing python downgrade to 3.10 and below. #- cdms2 # Disable vcs because it was forcing python downgrade to below 3.9. # See https://github.com/CDAT/vcs/issues/457 From be70c30221329103a37443c4a296c5da2bae281b Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 1 May 2024 13:21:58 -0400 Subject: [PATCH 080/104] docker: py311-240428: docker hub build log --- docker/saved_buildout/docker-buildlogs.txt | 12293 ++++++++++--------- 1 file changed, 6302 insertions(+), 5991 deletions(-) diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index 17404ab..5cce884 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,5991 +1,6302 @@ -2024-04-19T20:53:47Z Building in Docker Cloud's infrastructure... -2024-04-19T20:53:47Z Cloning into '.'... -2024-04-19T20:53:48Z Warning: Permanently added the RSA host key for IP address '140.82.113.3' to the list of known hosts. -2024-04-19T20:53:49Z Switched to a new branch 'docker-py310-240419' -2024-04-19T20:53:50Z KernelVersion: 5.4.0-1068-aws -2024-04-19T20:53:50Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-04-19T20:53:50Z Arch: amd64 -2024-04-19T20:53:50Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-04-19T20:53:50Z ApiVersion: 1.41 -2024-04-19T20:53:50Z Platform: {u'Name': u'Docker Engine - Community'} -2024-04-19T20:53:50Z Version: 20.10.15 -2024-04-19T20:53:50Z MinAPIVersion: 1.12 -2024-04-19T20:53:50Z GitCommit: 4433bf6 -2024-04-19T20:53:50Z Os: linux -2024-04-19T20:53:50Z GoVersion: go1.17.9 -2024-04-19T20:53:50Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py310-240419... -2024-04-19T20:53:55Z #1 [internal] load build definition from Dockerfile -2024-04-19T20:53:55Z #1 transferring dockerfile: 6.99kB done -2024-04-19T20:53:55Z #1 DONE 0.1s -2024-04-19T20:53:55Z -2024-04-19T20:53:55Z #2 [internal] load .dockerignore -2024-04-19T20:53:55Z #2 transferring context: 2B done -2024-04-19T20:53:55Z #2 DONE 0.0s -2024-04-19T20:53:55Z -2024-04-19T20:53:55Z #3 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-04-19T20:53:56Z #3 DONE 0.0s -2024-04-19T20:53:56Z -2024-04-19T20:53:56Z #4 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-04-19T20:53:56Z #4 DONE 0.6s -2024-04-19T20:53:56Z -2024-04-19T20:53:56Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b -2024-04-19T20:53:56Z #5 resolve docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b done -2024-04-19T20:53:56Z #5 ... -2024-04-19T20:53:56Z -2024-04-19T20:53:56Z #6 [internal] load build context -2024-04-19T20:53:56Z #6 transferring context: 9.81kB done -2024-04-19T20:53:56Z #6 DONE 0.1s -2024-04-19T20:53:56Z -2024-04-19T20:53:56Z #5 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b -2024-04-19T20:53:56Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0B / 150.89MB 0.1s -2024-04-19T20:53:56Z #5 sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b 2.36kB / 2.36kB done -2024-04-19T20:53:56Z #5 sha256:2f63021fb73070c52ff804d164a9802b54e89ce9734eeb3c4236bddc57c75617 869B / 869B done -2024-04-19T20:53:56Z #5 sha256:1f702ef68adb9e4c2b71bdec2ef2cf775120cee7edc02a8e46c4388e259d431c 5.62kB / 5.62kB done -2024-04-19T20:53:56Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 10.49MB / 31.43MB 0.2s -2024-04-19T20:53:56Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 3.15MB / 50.08MB 0.2s -2024-04-19T20:53:56Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 8.39MB / 150.89MB 0.5s -2024-04-19T20:53:56Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 20.97MB / 31.43MB 0.5s -2024-04-19T20:53:56Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 12.93MB / 50.08MB 0.5s -2024-04-19T20:53:57Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 23.07MB / 31.43MB 0.6s -2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 17.83MB / 50.08MB 0.6s -2024-04-19T20:53:57Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 16.78MB / 150.89MB 0.7s -2024-04-19T20:53:57Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 28.31MB / 31.43MB 0.9s -2024-04-19T20:53:57Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 26.21MB / 150.89MB 1.0s -2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 20.97MB / 50.08MB 1.0s -2024-04-19T20:53:57Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.1s -2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 24.12MB / 50.08MB 1.1s -2024-04-19T20:53:57Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 38.80MB / 150.89MB 1.4s -2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 34.60MB / 50.08MB 1.4s -2024-04-19T20:53:57Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.4s done -2024-04-19T20:53:57Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 42.99MB / 50.08MB 1.5s -2024-04-19T20:53:58Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 48.23MB / 150.89MB 1.7s -2024-04-19T20:53:58Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 47.72MB / 50.08MB 1.7s -2024-04-19T20:53:58Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 -2024-04-19T20:53:58Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 58.72MB / 150.89MB 2.0s -2024-04-19T20:53:58Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 2.1s done -2024-04-19T20:53:59Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 68.16MB / 150.89MB 2.6s -2024-04-19T20:53:59Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 79.69MB / 150.89MB 2.8s -2024-04-19T20:53:59Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 91.23MB / 150.89MB 3.1s -2024-04-19T20:53:59Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 101.71MB / 150.89MB 3.3s -2024-04-19T20:54:00Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 113.25MB / 150.89MB 3.6s -2024-04-19T20:54:00Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 121.63MB / 150.89MB 4.1s -2024-04-19T20:54:00Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 130.02MB / 150.89MB 4.4s -2024-04-19T20:54:01Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 140.51MB / 150.89MB 4.6s -2024-04-19T20:54:01Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 148.55MB / 150.89MB 4.9s -2024-04-19T20:54:02Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 150.89MB / 150.89MB 6.2s done -2024-04-19T20:54:03Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.4s -2024-04-19T20:54:04Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.8s done -2024-04-19T20:54:04Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 -2024-04-19T20:54:09Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.3s -2024-04-19T20:54:10Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 6.4s done -2024-04-19T20:54:11Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc -2024-04-19T20:54:16Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 5.0s -2024-04-19T20:54:21Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.0s -2024-04-19T20:54:25Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 14.4s done -2024-04-19T20:54:26Z #5 DONE 29.8s -2024-04-19T20:54:26Z -2024-04-19T20:54:26Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-04-19T20:54:27Z #7 1.479 Channels: -2024-04-19T20:54:27Z #7 1.479 - defaults -2024-04-19T20:54:27Z #7 1.479 Platform: linux-64 -2024-04-19T20:54:32Z #7 1.479 Collecting package metadata (repodata.json): ...working... done -2024-04-19T20:54:32Z #7 5.984 Solving environment: ...working... done -2024-04-19T20:54:32Z #7 6.340 -2024-04-19T20:54:32Z #7 6.340 # All requested packages already installed. -2024-04-19T20:54:32Z #7 6.340 -2024-04-19T20:54:33Z #7 7.444 Channels: -2024-04-19T20:54:33Z #7 7.444 - conda-forge -2024-04-19T20:54:33Z #7 7.444 - defaults -2024-04-19T20:54:33Z #7 7.444 Platform: linux-64 -2024-04-19T20:55:00Z #7 7.444 Collecting package metadata (repodata.json): ...working... done -2024-04-19T20:55:02Z #7 34.34 Solving environment: ...working... done -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 ## Package Plan ## -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 environment location: /opt/conda -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 added / updated specs: -2024-04-19T20:55:02Z #7 36.64 - conda-pack -2024-04-19T20:55:02Z #7 36.64 - mamba -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 The following packages will be downloaded: -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 package | build -2024-04-19T20:55:02Z #7 36.64 ---------------------------|----------------- -2024-04-19T20:55:02Z #7 36.64 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 c-ares-1.28.1 | hd590300_0 165 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 conda-24.3.0 | py312h7900ff3_0 1.1 MB conda-forge -2024-04-19T20:55:02Z #7 36.64 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-04-19T20:55:02Z #7 36.64 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge -2024-04-19T20:55:02Z #7 36.64 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libcurl-8.7.1 | hca28451_0 389 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libexpat-2.5.0 | hcb278e6_1 76 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libgcc-ng-13.2.0 | h807b86a_5 752 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libgomp-13.2.0 | h807b86a_5 410 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge -2024-04-19T20:55:02Z #7 36.64 libmambapy-1.5.8 | py312hd9e9ff6_0 299 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libnsl-2.0.1 | hd590300_0 33 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libsqlite-3.45.3 | h2797004_0 840 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libssh2-1.11.0 | h0841786_0 265 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libstdcxx-ng-13.2.0 | h7e041cc_5 3.7 MB conda-forge -2024-04-19T20:55:02Z #7 36.64 libuuid-2.38.1 | h0b41bf4_0 33 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libxcrypt-4.4.36 | hd590300_1 98 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libxml2-2.12.6 | h232c23b_2 688 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 lzo-2.10 | hd590300_1001 167 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 mamba-1.5.8 | py312h9460a1c_0 63 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge -2024-04-19T20:55:02Z #7 36.64 python-3.12.2 |hab00c5b_0_cpython 30.8 MB conda-forge -2024-04-19T20:55:02Z #7 36.64 python_abi-3.12 | 4_cp312 6 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 tk-8.6.13 |noxft_h4845f30_101 3.2 MB conda-forge -2024-04-19T20:55:02Z #7 36.64 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-04-19T20:55:02Z #7 36.64 ------------------------------------------------------------ -2024-04-19T20:55:02Z #7 36.64 Total: 62.9 MB -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 The following NEW packages will be INSTALLED: -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 -2024-04-19T20:55:02Z #7 36.64 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 -2024-04-19T20:55:02Z #7 36.64 libexpat conda-forge/linux-64::libexpat-2.5.0-hcb278e6_1 -2024-04-19T20:55:02Z #7 36.64 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-04-19T20:55:02Z #7 36.64 libnsl conda-forge/linux-64::libnsl-2.0.1-hd590300_0 -2024-04-19T20:55:02Z #7 36.64 libsqlite conda-forge/linux-64::libsqlite-3.45.3-h2797004_0 -2024-04-19T20:55:02Z #7 36.64 libxcrypt conda-forge/linux-64::libxcrypt-4.4.36-hd590300_1 -2024-04-19T20:55:02Z #7 36.64 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-04-19T20:55:02Z #7 36.64 lzo conda-forge/linux-64::lzo-2.10-hd590300_1001 -2024-04-19T20:55:02Z #7 36.64 mamba conda-forge/linux-64::mamba-1.5.8-py312h9460a1c_0 -2024-04-19T20:55:02Z #7 36.64 python_abi conda-forge/linux-64::python_abi-3.12-4_cp312 -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 The following packages will be UPDATED: -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 -2024-04-19T20:55:02Z #7 36.64 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-04-19T20:55:02Z #7 36.64 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-04-19T20:55:02Z #7 36.64 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 -2024-04-19T20:55:02Z #7 36.64 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-04-19T20:55:02Z #7 36.64 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 -2024-04-19T20:55:02Z #7 36.64 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h807b86a_5 -2024-04-19T20:55:02Z #7 36.64 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h807b86a_5 -2024-04-19T20:55:02Z #7 36.64 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 -2024-04-19T20:55:02Z #7 36.64 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 -2024-04-19T20:55:02Z #7 36.64 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h7e041cc_5 -2024-04-19T20:55:02Z #7 36.64 libuuid pkgs/main::libuuid-1.41.5-h5eee18b_0 --> conda-forge::libuuid-2.38.1-h0b41bf4_0 -2024-04-19T20:55:02Z #7 36.64 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_2 -2024-04-19T20:55:02Z #7 36.64 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 -2024-04-19T20:55:02Z #7 36.64 tk pkgs/main::tk-8.6.12-h1ccaba5_0 --> conda-forge::tk-8.6.13-noxft_h4845f30_101 -2024-04-19T20:55:02Z #7 36.64 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 The following packages will be SUPERSEDED by a higher-priority channel: -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-04-19T20:55:02Z #7 36.64 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-04-19T20:55:02Z #7 36.64 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-04-19T20:55:02Z #7 36.64 conda pkgs/main::conda-24.3.0-py312h06a4308~ --> conda-forge::conda-24.3.0-py312h7900ff3_0 -2024-04-19T20:55:02Z #7 36.64 libmamba pkgs/main::libmamba-1.5.8-hfe524e5_1 --> conda-forge::libmamba-1.5.8-had39da4_0 -2024-04-19T20:55:02Z #7 36.64 libmambapy pkgs/main::libmambapy-1.5.8-py312h2da~ --> conda-forge::libmambapy-1.5.8-py312hd9e9ff6_0 -2024-04-19T20:55:02Z #7 36.64 python pkgs/main::python-3.12.2-h996f2a0_0 --> conda-forge::python-3.12.2-hab00c5b_0_cpython -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:02Z #7 36.64 -2024-04-19T20:55:03Z #7 36.64 Proceed ([y]/n)? -2024-04-19T20:55:07Z #7 41.47 -2024-04-19T20:55:07Z #7 41.47 Downloading and Extracting Packages: ...working... done -2024-04-19T20:55:08Z #7 41.47 Preparing transaction: ...working... done -2024-04-19T20:55:10Z #7 41.78 Verifying transaction: ...working... done -2024-04-19T20:55:32Z #7 43.77 Executing transaction: ...working... done -2024-04-19T20:55:35Z #7 69.50 Will remove 34 (62.9 MB) tarball(s). -2024-04-19T20:55:35Z #7 69.50 Will remove 1 index cache(s). -2024-04-19T20:55:35Z #7 69.50 Will remove 3 (120 KB) package(s). -2024-04-19T20:55:35Z #7 69.50 There are no tempfile(s) to remove. -2024-04-19T20:55:35Z #7 69.50 There are no logfile(s) to remove. -2024-04-19T20:55:37Z #7 71.11 bin/micromamba -2024-04-19T20:55:39Z #7 DONE 72.8s -2024-04-19T20:55:39Z -2024-04-19T20:55:39Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-04-19T20:55:39Z #8 0.548 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-04-19T20:55:39Z #8 0.573 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-04-19T20:55:39Z #8 0.574 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-04-19T20:55:39Z #8 0.736 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-04-19T20:55:40Z #8 0.975 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] -2024-04-19T20:55:40Z #8 1.608 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-04-19T20:55:42Z #8 3.201 Fetched 8565 kB in 3s (3210 kB/s) -2024-04-19T20:55:43Z #8 3.201 Reading package lists... -2024-04-19T20:55:44Z #8 4.351 Reading package lists... -2024-04-19T20:55:44Z #8 5.489 Building dependency tree... -2024-04-19T20:55:44Z #8 5.770 Reading state information... -2024-04-19T20:55:45Z #8 6.154 git is already the newest version (1:2.30.2-1+deb11u2). -2024-04-19T20:55:45Z #8 6.154 mercurial is already the newest version (5.6.1-4). -2024-04-19T20:55:45Z #8 6.154 The following additional packages will be installed: -2024-04-19T20:55:45Z #8 6.155 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-19T20:55:45Z #8 6.155 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-19T20:55:45Z #8 6.156 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-04-19T20:55:45Z #8 6.156 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-04-19T20:55:45Z #8 6.157 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-04-19T20:55:45Z #8 6.157 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-04-19T20:55:45Z #8 6.162 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-04-19T20:55:45Z #8 6.162 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-19T20:55:45Z #8 6.162 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-19T20:55:45Z #8 6.162 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-04-19T20:55:45Z #8 6.162 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-04-19T20:55:45Z #8 6.162 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-04-19T20:55:45Z #8 6.162 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-04-19T20:55:45Z #8 6.162 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-04-19T20:55:45Z #8 6.162 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-04-19T20:55:45Z #8 6.162 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-04-19T20:55:45Z #8 6.162 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-04-19T20:55:45Z #8 6.162 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-04-19T20:55:45Z #8 6.162 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-04-19T20:55:45Z #8 6.162 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-04-19T20:55:45Z #8 6.162 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-04-19T20:55:45Z #8 6.162 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-04-19T20:55:45Z #8 6.162 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-04-19T20:55:45Z #8 6.162 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-04-19T20:55:45Z #8 6.162 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-04-19T20:55:45Z #8 6.162 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-04-19T20:55:45Z #8 6.162 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-04-19T20:55:45Z #8 6.162 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-04-19T20:55:45Z #8 6.162 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-04-19T20:55:45Z #8 6.162 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-04-19T20:55:45Z #8 6.162 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-04-19T20:55:45Z #8 6.162 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-04-19T20:55:45Z #8 6.162 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-04-19T20:55:45Z #8 6.162 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-04-19T20:55:45Z #8 6.162 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-04-19T20:55:45Z #8 6.162 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-04-19T20:55:45Z #8 6.162 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-04-19T20:55:45Z #8 6.162 mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info systemd systemd-sysv -2024-04-19T20:55:45Z #8 6.162 systemd-timesyncd va-driver-all vdpau-driver-all xkb-data -2024-04-19T20:55:45Z #8 6.172 Suggested packages: -2024-04-19T20:55:45Z #8 6.172 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-04-19T20:55:45Z #8 6.172 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-04-19T20:55:45Z #8 6.173 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-04-19T20:55:45Z #8 6.173 libasound2-plugins alsa-utils glibc-doc colord cups-common libgd-tools gvfs -2024-04-19T20:55:45Z #8 6.173 liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors speex man-browser -2024-04-19T20:55:45Z #8 6.173 opencl-icd ed diffutils-doc systemd-container policykit-1 zip -2024-04-19T20:55:45Z #8 6.176 nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-04-19T20:55:45Z #8 6.176 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-04-19T20:55:45Z #8 6.176 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-04-19T20:55:47Z #8 8.088 The following NEW packages will be installed: -2024-04-19T20:55:47Z #8 8.090 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-19T20:55:47Z #8 8.092 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-19T20:55:47Z #8 8.100 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-04-19T20:55:47Z #8 8.100 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-04-19T20:55:47Z #8 8.100 glib-networking glib-networking-common glib-networking-services -2024-04-19T20:55:47Z #8 8.100 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-04-19T20:55:47Z #8 8.100 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-04-19T20:55:47Z #8 8.100 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-04-19T20:55:47Z #8 8.100 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-19T20:55:47Z #8 8.100 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-19T20:55:47Z #8 8.100 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-04-19T20:55:47Z #8 8.100 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-04-19T20:55:47Z #8 8.100 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-04-19T20:55:47Z #8 8.100 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-04-19T20:55:47Z #8 8.100 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-04-19T20:55:47Z #8 8.100 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-04-19T20:55:47Z #8 8.100 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-04-19T20:55:47Z #8 8.100 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-04-19T20:55:47Z #8 8.100 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-04-19T20:55:47Z #8 8.100 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-04-19T20:55:47Z #8 8.100 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-04-19T20:55:47Z #8 8.100 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-04-19T20:55:47Z #8 8.100 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-04-19T20:55:47Z #8 8.100 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-04-19T20:55:47Z #8 8.100 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-04-19T20:55:47Z #8 8.100 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-04-19T20:55:47Z #8 8.100 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-04-19T20:55:47Z #8 8.100 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-04-19T20:55:47Z #8 8.100 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-04-19T20:55:47Z #8 8.100 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-04-19T20:55:47Z #8 8.100 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-04-19T20:55:47Z #8 8.100 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-04-19T20:55:47Z #8 8.100 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-04-19T20:55:47Z #8 8.100 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-04-19T20:55:47Z #8 8.100 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-04-19T20:55:47Z #8 8.100 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-04-19T20:55:47Z #8 8.100 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-04-19T20:55:47Z #8 8.100 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-04-19T20:55:47Z #8 8.100 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-04-19T20:55:47Z #8 8.100 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-04-19T20:55:47Z #8 8.100 x11-utils xkb-data -2024-04-19T20:55:47Z #8 8.141 0 upgraded, 221 newly installed, 0 to remove and 0 not upgraded. -2024-04-19T20:55:47Z #8 8.141 Need to get 236 MB of archives. -2024-04-19T20:55:47Z #8 8.141 After this operation, 891 MB of additional disk space will be used. -2024-04-19T20:55:47Z #8 8.141 Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-04-19T20:55:47Z #8 8.146 Get:2 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-04-19T20:55:47Z #8 8.148 Get:3 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-04-19T20:55:47Z #8 8.150 Get:4 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-04-19T20:55:47Z #8 8.153 Get:5 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-04-19T20:55:47Z #8 8.157 Get:6 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-04-19T20:55:47Z #8 8.159 Get:7 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-04-19T20:55:47Z #8 8.166 Get:8 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-04-19T20:55:47Z #8 8.169 Get:9 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-04-19T20:55:47Z #8 8.172 Get:10 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-04-19T20:55:47Z #8 8.283 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-04-19T20:55:47Z #8 8.291 Get:12 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-04-19T20:55:47Z #8 8.295 Get:13 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-04-19T20:55:47Z #8 8.299 Get:14 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-04-19T20:55:47Z #8 8.303 Get:15 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-04-19T20:55:47Z #8 8.308 Get:16 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-04-19T20:55:47Z #8 8.331 Get:17 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-04-19T20:55:47Z #8 8.336 Get:18 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-04-19T20:55:47Z #8 8.338 Get:19 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-04-19T20:55:47Z #8 8.343 Get:20 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-04-19T20:55:47Z #8 8.556 Get:21 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-04-19T20:55:47Z #8 8.575 Get:22 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-04-19T20:55:47Z #8 8.589 Get:23 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-04-19T20:55:47Z #8 8.594 Get:24 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-04-19T20:55:47Z #8 8.601 Get:25 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-04-19T20:55:47Z #8 8.604 Get:26 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-04-19T20:55:47Z #8 8.606 Get:27 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-04-19T20:55:47Z #8 8.612 Get:28 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-04-19T20:55:47Z #8 8.621 Get:29 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-04-19T20:55:47Z #8 8.624 Get:30 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-04-19T20:55:47Z #8 8.627 Get:31 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-04-19T20:55:48Z #8 8.929 Get:32 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-04-19T20:55:48Z #8 8.931 Get:33 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-04-19T20:55:48Z #8 8.933 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-04-19T20:55:48Z #8 8.940 Get:35 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-04-19T20:55:48Z #8 8.942 Get:36 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-04-19T20:55:48Z #8 8.944 Get:37 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-04-19T20:55:48Z #8 8.946 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-04-19T20:55:48Z #8 8.948 Get:39 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-04-19T20:55:48Z #8 8.951 Get:40 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-04-19T20:55:48Z #8 8.986 Get:41 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-04-19T20:55:48Z #8 8.998 Get:42 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-04-19T20:55:48Z #8 9.016 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-04-19T20:55:48Z #8 9.018 Get:44 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-04-19T20:55:48Z #8 9.039 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-04-19T20:55:48Z #8 9.041 Get:46 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-04-19T20:55:48Z #8 9.050 Get:47 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-04-19T20:55:48Z #8 9.078 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-04-19T20:55:48Z #8 9.080 Get:49 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-04-19T20:55:48Z #8 9.292 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-04-19T20:55:48Z #8 9.294 Get:51 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-04-19T20:55:48Z #8 9.297 Get:52 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-04-19T20:55:48Z #8 9.300 Get:53 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-04-19T20:55:48Z #8 9.302 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-04-19T20:55:48Z #8 9.304 Get:55 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-04-19T20:55:48Z #8 9.308 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-04-19T20:55:48Z #8 9.310 Get:57 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-04-19T20:55:48Z #8 9.317 Get:58 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-04-19T20:55:48Z #8 9.334 Get:59 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-04-19T20:55:48Z #8 9.340 Get:60 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-04-19T20:55:48Z #8 9.346 Get:61 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-04-19T20:55:48Z #8 9.355 Get:62 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-04-19T20:55:48Z #8 9.366 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-04-19T20:55:48Z #8 9.369 Get:64 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-04-19T20:55:48Z #8 9.380 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-04-19T20:55:48Z #8 9.385 Get:66 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-04-19T20:55:48Z #8 9.387 Get:67 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-04-19T20:55:48Z #8 9.391 Get:68 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-04-19T20:55:48Z #8 9.394 Get:69 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-04-19T20:55:48Z #8 9.404 Get:70 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-04-19T20:55:48Z #8 9.408 Get:71 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-04-19T20:55:48Z #8 9.411 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-04-19T20:55:48Z #8 9.414 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-04-19T20:55:48Z #8 9.416 Get:74 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-04-19T20:55:48Z #8 9.423 Get:75 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-04-19T20:55:48Z #8 9.427 Get:76 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-04-19T20:55:48Z #8 9.430 Get:77 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-04-19T20:55:48Z #8 9.433 Get:78 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-04-19T20:55:48Z #8 9.455 Get:79 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-04-19T20:55:48Z #8 9.457 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-04-19T20:55:48Z #8 9.460 Get:81 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-04-19T20:55:48Z #8 9.467 Get:82 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-04-19T20:55:48Z #8 9.470 Get:83 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-04-19T20:55:48Z #8 9.472 Get:84 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-04-19T20:55:48Z #8 9.476 Get:85 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-04-19T20:55:48Z #8 9.480 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-04-19T20:55:48Z #8 9.483 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-04-19T20:55:48Z #8 9.487 Get:88 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-04-19T20:55:48Z #8 9.491 Get:89 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-04-19T20:55:48Z #8 9.495 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-04-19T20:55:48Z #8 9.506 Get:91 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-04-19T20:55:48Z #8 9.520 Get:92 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-04-19T20:55:48Z #8 9.524 Get:93 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-04-19T20:55:48Z #8 9.532 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-04-19T20:55:48Z #8 9.534 Get:95 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-04-19T20:55:48Z #8 9.536 Get:96 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-04-19T20:55:48Z #8 9.540 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-04-19T20:55:48Z #8 9.542 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-04-19T20:55:48Z #8 9.544 Get:99 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-04-19T20:55:48Z #8 9.547 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-04-19T20:55:48Z #8 9.549 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-04-19T20:55:48Z #8 9.552 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-04-19T20:55:48Z #8 9.554 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-04-19T20:55:48Z #8 9.557 Get:104 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-04-19T20:55:48Z #8 9.569 Get:105 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-04-19T20:55:48Z #8 9.573 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-04-19T20:55:48Z #8 9.575 Get:107 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-04-19T20:55:48Z #8 9.668 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-04-19T20:55:48Z #8 9.728 Get:109 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-04-19T20:55:48Z #8 9.732 Get:110 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.10.0esr-1~deb11u1 [63.7 MB] -2024-04-19T20:55:50Z #8 11.05 Get:111 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-04-19T20:55:50Z #8 11.05 Get:112 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-04-19T20:55:50Z #8 11.05 Get:113 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-04-19T20:55:50Z #8 11.05 Get:114 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-04-19T20:55:50Z #8 11.05 Get:115 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-04-19T20:55:50Z #8 11.06 Get:116 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-04-19T20:55:50Z #8 11.08 Get:117 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-04-19T20:55:50Z #8 11.09 Get:118 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-04-19T20:55:50Z #8 11.12 Get:119 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-04-19T20:55:50Z #8 11.13 Get:120 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-04-19T20:55:50Z #8 11.14 Get:121 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-04-19T20:55:50Z #8 11.17 Get:122 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-04-19T20:55:50Z #8 11.61 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-04-19T20:55:50Z #8 11.61 Get:124 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-04-19T20:55:50Z #8 11.61 Get:125 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-04-19T20:55:50Z #8 11.61 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-04-19T20:55:50Z #8 11.61 Get:127 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-04-19T20:55:50Z #8 11.61 Get:128 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-04-19T20:55:50Z #8 11.61 Get:129 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-04-19T20:55:50Z #8 11.62 Get:130 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-04-19T20:55:50Z #8 11.62 Get:131 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-04-19T20:55:50Z #8 11.66 Get:132 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-04-19T20:55:50Z #8 11.69 Get:133 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-04-19T20:55:50Z #8 11.77 Get:134 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-04-19T20:55:50Z #8 11.77 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-04-19T20:55:50Z #8 11.78 Get:136 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-04-19T20:55:50Z #8 11.78 Get:137 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-04-19T20:55:50Z #8 11.78 Get:138 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-04-19T20:55:50Z #8 11.79 Get:139 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-04-19T20:55:51Z #8 11.98 Get:140 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-04-19T20:55:51Z #8 11.99 Get:141 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-04-19T20:55:51Z #8 11.99 Get:142 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-04-19T20:55:51Z #8 12.00 Get:143 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-04-19T20:55:51Z #8 12.00 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-04-19T20:55:51Z #8 12.01 Get:145 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-04-19T20:55:51Z #8 12.04 Get:146 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-04-19T20:55:51Z #8 12.04 Get:147 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-04-19T20:55:51Z #8 12.04 Get:148 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-04-19T20:55:51Z #8 12.05 Get:149 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-04-19T20:55:51Z #8 12.05 Get:150 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-04-19T20:55:51Z #8 12.06 Get:151 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-04-19T20:55:51Z #8 12.06 Get:152 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-04-19T20:55:51Z #8 12.06 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-04-19T20:55:51Z #8 12.07 Get:154 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-04-19T20:55:51Z #8 12.07 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-04-19T20:55:51Z #8 12.07 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-04-19T20:55:51Z #8 12.09 Get:157 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-04-19T20:55:51Z #8 12.10 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-04-19T20:55:51Z #8 12.10 Get:159 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-04-19T20:55:51Z #8 12.11 Get:160 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-04-19T20:55:51Z #8 12.12 Get:161 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-04-19T20:55:51Z #8 12.13 Get:162 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-04-19T20:55:51Z #8 12.14 Get:163 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-04-19T20:55:51Z #8 12.14 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-04-19T20:55:51Z #8 12.15 Get:165 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-04-19T20:55:51Z #8 12.26 Get:166 http://deb.debian.org/debian bullseye/main amd64 libc-dev-bin amd64 2.31-13+deb11u8 [276 kB] -2024-04-19T20:55:51Z #8 12.27 Get:167 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-04-19T20:55:51Z #8 12.27 Get:168 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-04-19T20:55:51Z #8 12.27 Get:169 http://deb.debian.org/debian bullseye/main amd64 libc-devtools amd64 2.31-13+deb11u8 [246 kB] -2024-04-19T20:55:51Z #8 12.28 Get:170 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-04-19T20:55:51Z #8 12.31 Get:171 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-04-19T20:55:51Z #8 12.32 Get:172 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-04-19T20:55:51Z #8 12.32 Get:173 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-04-19T20:55:51Z #8 12.32 Get:174 http://deb.debian.org/debian bullseye/main amd64 libc6-dev amd64 2.31-13+deb11u8 [2361 kB] -2024-04-19T20:55:51Z #8 12.36 Get:175 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-04-19T20:55:51Z #8 12.37 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-04-19T20:55:51Z #8 12.37 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-04-19T20:55:51Z #8 12.37 Get:178 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-04-19T20:55:51Z #8 12.38 Get:179 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-04-19T20:55:51Z #8 12.38 Get:180 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-04-19T20:55:51Z #8 12.38 Get:181 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-04-19T20:55:51Z #8 12.38 Get:182 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-04-19T20:55:51Z #8 12.56 Get:183 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-04-19T20:55:52Z #8 13.04 Get:184 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-04-19T20:55:52Z #8 13.04 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-04-19T20:55:52Z #8 13.04 Get:186 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-04-19T20:55:52Z #8 13.05 Get:187 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-04-19T20:55:52Z #8 13.30 Get:188 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-04-19T20:55:52Z #8 13.31 Get:189 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-04-19T20:55:52Z #8 13.31 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-04-19T20:55:52Z #8 13.31 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-04-19T20:55:52Z #8 13.32 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-04-19T20:55:52Z #8 13.32 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-04-19T20:55:52Z #8 13.33 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-04-19T20:55:52Z #8 13.33 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-04-19T20:55:52Z #8 13.33 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-04-19T20:55:52Z #8 13.33 Get:197 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-04-19T20:55:52Z #8 13.34 Get:198 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-04-19T20:55:52Z #8 13.34 Get:199 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-04-19T20:55:52Z #8 13.35 Get:200 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-04-19T20:55:52Z #8 13.35 Get:201 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-04-19T20:55:52Z #8 13.35 Get:202 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-04-19T20:55:52Z #8 13.36 Get:203 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-04-19T20:55:52Z #8 13.36 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-04-19T20:55:52Z #8 13.37 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-04-19T20:55:52Z #8 13.37 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-04-19T20:55:52Z #8 13.39 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-04-19T20:55:52Z #8 13.39 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-04-19T20:55:52Z #8 13.40 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-04-19T20:55:52Z #8 13.40 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-04-19T20:55:52Z #8 13.40 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-04-19T20:55:52Z #8 13.40 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-04-19T20:55:52Z #8 13.40 Get:213 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-04-19T20:55:52Z #8 13.44 Get:214 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-04-19T20:55:52Z #8 13.48 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-04-19T20:55:52Z #8 13.55 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-04-19T20:55:52Z #8 13.64 Get:217 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-04-19T20:55:52Z #8 13.64 Get:218 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-04-19T20:55:52Z #8 13.65 Get:219 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-04-19T20:55:52Z #8 13.65 Get:220 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-04-19T20:55:52Z #8 13.65 Get:221 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-04-19T20:55:53Z #8 14.01 debconf: delaying package configuration, since apt-utils is not installed -2024-04-19T20:55:53Z #8 14.08 Fetched 236 MB in 6s (42.6 MB/s) -2024-04-19T20:55:53Z #8 14.11 Selecting previously unselected package libapparmor1:amd64. -2024-04-19T20:55:53Z #8 14.11 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-04-19T20:55:53Z #8 14.13 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-04-19T20:55:53Z #8 14.14 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-04-19T20:55:53Z #8 14.20 Selecting previously unselected package libcap2:amd64. -2024-04-19T20:55:53Z #8 14.20 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-04-19T20:55:53Z #8 14.21 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-04-19T20:55:53Z #8 14.25 Selecting previously unselected package libargon2-1:amd64. -2024-04-19T20:55:53Z #8 14.25 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-04-19T20:55:53Z #8 14.25 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-19T20:55:53Z #8 14.30 Selecting previously unselected package dmsetup. -2024-04-19T20:55:53Z #8 14.30 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-04-19T20:55:53Z #8 14.31 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-04-19T20:55:53Z #8 14.37 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-04-19T20:55:53Z #8 14.37 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-04-19T20:55:53Z #8 14.38 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-19T20:55:53Z #8 14.44 Selecting previously unselected package libjson-c5:amd64. -2024-04-19T20:55:53Z #8 14.44 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-04-19T20:55:53Z #8 14.45 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-19T20:55:53Z #8 14.50 Selecting previously unselected package libcryptsetup12:amd64. -2024-04-19T20:55:53Z #8 14.50 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-04-19T20:55:53Z #8 14.50 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-19T20:55:53Z #8 14.58 Selecting previously unselected package libip4tc2:amd64. -2024-04-19T20:55:53Z #8 14.58 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-04-19T20:55:53Z #8 14.59 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-04-19T20:55:53Z #8 14.64 Selecting previously unselected package libkmod2:amd64. -2024-04-19T20:55:53Z #8 14.64 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-04-19T20:55:53Z #8 14.64 Unpacking libkmod2:amd64 (28-1) ... -2024-04-19T20:55:53Z #8 14.72 Selecting previously unselected package systemd. -2024-04-19T20:55:53Z #8 14.72 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-19T20:55:53Z #8 14.79 Unpacking systemd (247.3-7+deb11u4) ... -2024-04-19T20:55:54Z #8 15.86 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-04-19T20:55:55Z #8 15.88 Setting up libcap2:amd64 (1:2.44-1) ... -2024-04-19T20:55:55Z #8 15.90 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-19T20:55:55Z #8 15.91 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-19T20:55:55Z #8 15.93 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-04-19T20:55:55Z #8 15.94 Setting up libkmod2:amd64 (28-1) ... -2024-04-19T20:55:55Z #8 15.95 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-19T20:55:55Z #8 15.96 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-19T20:55:55Z #8 15.98 Setting up systemd (247.3-7+deb11u4) ... -2024-04-19T20:55:55Z #8 16.03 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-04-19T20:55:55Z #8 16.05 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-04-19T20:55:55Z #8 16.05 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-04-19T20:55:55Z #8 16.09 Initializing machine ID from KVM UUID. -2024-04-19T20:55:55Z #8 16.56 Setting up dmsetup (2:1.02.175-2.1) ... -2024-04-19T20:55:55Z #8 16.64 Selecting previously unselected package systemd-sysv. -2024-04-19T20:55:55Z #8 16.64 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-04-19T20:55:55Z #8 16.67 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-04-19T20:55:55Z #8 16.67 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-04-19T20:55:55Z #8 16.74 Selecting previously unselected package libdbus-1-3:amd64. -2024-04-19T20:55:55Z #8 16.75 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-04-19T20:55:55Z #8 16.76 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-19T20:55:56Z #8 16.86 Selecting previously unselected package dbus. -2024-04-19T20:55:56Z #8 16.86 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-04-19T20:55:56Z #8 16.88 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-04-19T20:55:56Z #8 16.98 Selecting previously unselected package libnss-systemd:amd64. -2024-04-19T20:55:56Z #8 16.99 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-19T20:55:56Z #8 17.00 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-19T20:55:56Z #8 17.06 Selecting previously unselected package libpam-systemd:amd64. -2024-04-19T20:55:56Z #8 17.06 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-19T20:55:56Z #8 17.07 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-19T20:55:56Z #8 17.15 Selecting previously unselected package manpages. -2024-04-19T20:55:56Z #8 17.16 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-04-19T20:55:56Z #8 17.16 Unpacking manpages (5.10-1) ... -2024-04-19T20:55:56Z #8 17.40 Selecting previously unselected package systemd-timesyncd. -2024-04-19T20:55:56Z #8 17.41 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-04-19T20:55:56Z #8 17.41 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-19T20:55:56Z #8 17.48 Selecting previously unselected package hicolor-icon-theme. -2024-04-19T20:55:56Z #8 17.48 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-04-19T20:55:56Z #8 17.48 Unpacking hicolor-icon-theme (0.17-2) ... -2024-04-19T20:55:56Z #8 17.60 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-04-19T20:55:56Z #8 17.60 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-04-19T20:55:56Z #8 17.61 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-19T20:55:56Z #8 17.74 Selecting previously unselected package libicu67:amd64. -2024-04-19T20:55:56Z #8 17.74 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-04-19T20:55:56Z #8 17.75 Unpacking libicu67:amd64 (67.1-7) ... -2024-04-19T20:55:58Z #8 19.52 Selecting previously unselected package libxml2:amd64. -2024-04-19T20:55:58Z #8 19.52 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-04-19T20:55:58Z #8 19.53 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-19T20:55:58Z #8 19.68 Selecting previously unselected package shared-mime-info. -2024-04-19T20:55:58Z #8 19.68 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-04-19T20:55:58Z #8 19.69 Unpacking shared-mime-info (2.0-1) ... -2024-04-19T20:55:59Z #8 19.89 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-04-19T20:55:59Z #8 19.89 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-04-19T20:55:59Z #8 19.90 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-19T20:55:59Z #8 19.96 Selecting previously unselected package libpng16-16:amd64. -2024-04-19T20:55:59Z #8 19.96 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-04-19T20:55:59Z #8 19.97 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-04-19T20:55:59Z #8 20.04 Selecting previously unselected package libdeflate0:amd64. -2024-04-19T20:55:59Z #8 20.04 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-04-19T20:55:59Z #8 20.05 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-04-19T20:55:59Z #8 20.12 Selecting previously unselected package libjbig0:amd64. -2024-04-19T20:55:59Z #8 20.12 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-04-19T20:55:59Z #8 20.12 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-19T20:55:59Z #8 20.19 Selecting previously unselected package libwebp6:amd64. -2024-04-19T20:55:59Z #8 20.19 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-19T20:55:59Z #8 20.19 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-19T20:55:59Z #8 20.29 Selecting previously unselected package libtiff5:amd64. -2024-04-19T20:55:59Z #8 20.29 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-04-19T20:55:59Z #8 20.29 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-19T20:55:59Z #8 20.40 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-04-19T20:55:59Z #8 20.40 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-19T20:55:59Z #8 20.40 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-19T20:55:59Z #8 20.48 Selecting previously unselected package gtk-update-icon-cache. -2024-04-19T20:55:59Z #8 20.48 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-04-19T20:55:59Z #8 20.48 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-19T20:55:59Z #8 20.61 Selecting previously unselected package adwaita-icon-theme. -2024-04-19T20:55:59Z #8 20.62 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-04-19T20:55:59Z #8 20.62 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-04-19T20:56:02Z #8 23.58 Selecting previously unselected package alsa-topology-conf. -2024-04-19T20:56:02Z #8 23.58 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-04-19T20:56:02Z #8 23.59 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-04-19T20:56:02Z #8 23.65 Selecting previously unselected package libasound2-data. -2024-04-19T20:56:02Z #8 23.65 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-04-19T20:56:02Z #8 23.66 Unpacking libasound2-data (1.2.4-1.1) ... -2024-04-19T20:56:02Z #8 23.73 Selecting previously unselected package libasound2:amd64. -2024-04-19T20:56:02Z #8 23.74 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-04-19T20:56:02Z #8 23.75 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-04-19T20:56:03Z #8 23.86 Selecting previously unselected package alsa-ucm-conf. -2024-04-19T20:56:03Z #8 23.86 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-04-19T20:56:03Z #8 23.87 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-04-19T20:56:03Z #8 23.96 Selecting previously unselected package libatspi2.0-0:amd64. -2024-04-19T20:56:03Z #8 23.97 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-04-19T20:56:03Z #8 23.97 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-19T20:56:03Z #8 24.04 Selecting previously unselected package libxi6:amd64. -2024-04-19T20:56:03Z #8 24.04 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-04-19T20:56:03Z #8 24.04 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-04-19T20:56:03Z #8 24.10 Selecting previously unselected package libxtst6:amd64. -2024-04-19T20:56:03Z #8 24.10 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-04-19T20:56:03Z #8 24.11 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-04-19T20:56:03Z #8 24.15 Selecting previously unselected package at-spi2-core. -2024-04-19T20:56:03Z #8 24.15 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-04-19T20:56:03Z #8 24.15 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-19T20:56:03Z #8 24.22 Selecting previously unselected package binutils-common:amd64. -2024-04-19T20:56:03Z #8 24.23 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-04-19T20:56:03Z #8 24.23 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-04-19T20:56:03Z #8 24.71 Selecting previously unselected package libbinutils:amd64. -2024-04-19T20:56:03Z #8 24.71 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-04-19T20:56:03Z #8 24.72 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-04-19T20:56:03Z #8 24.89 Selecting previously unselected package libctf-nobfd0:amd64. -2024-04-19T20:56:03Z #8 24.89 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-04-19T20:56:03Z #8 24.89 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-19T20:56:04Z #8 24.95 Selecting previously unselected package libctf0:amd64. -2024-04-19T20:56:04Z #8 24.95 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-04-19T20:56:04Z #8 24.96 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-04-19T20:56:04Z #8 25.01 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-04-19T20:56:04Z #8 25.01 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-04-19T20:56:04Z #8 25.02 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-19T20:56:04Z #8 25.44 Selecting previously unselected package binutils. -2024-04-19T20:56:04Z #8 25.44 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-04-19T20:56:04Z #8 25.45 Unpacking binutils (2.35.2-2) ... -2024-04-19T20:56:04Z #8 25.51 Selecting previously unselected package libisl23:amd64. -2024-04-19T20:56:04Z #8 25.51 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-04-19T20:56:04Z #8 25.52 Unpacking libisl23:amd64 (0.23-1) ... -2024-04-19T20:56:04Z #8 25.69 Selecting previously unselected package libmpfr6:amd64. -2024-04-19T20:56:04Z #8 25.70 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-04-19T20:56:04Z #8 25.70 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-04-19T20:56:05Z #8 25.94 Selecting previously unselected package libmpc3:amd64. -2024-04-19T20:56:05Z #8 25.94 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-04-19T20:56:05Z #8 25.95 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-04-19T20:56:05Z #8 26.00 Selecting previously unselected package cpp-10. -2024-04-19T20:56:05Z #8 26.00 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-04-19T20:56:05Z #8 26.01 Unpacking cpp-10 (10.2.1-6) ... -2024-04-19T20:56:06Z #8 27.58 Selecting previously unselected package cpp. -2024-04-19T20:56:06Z #8 27.58 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-04-19T20:56:06Z #8 27.59 Unpacking cpp (4:10.2.1-1) ... -2024-04-19T20:56:06Z #8 27.63 Selecting previously unselected package dbus-user-session. -2024-04-19T20:56:06Z #8 27.63 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-04-19T20:56:06Z #8 27.64 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-19T20:56:06Z #8 27.70 Selecting previously unselected package libdconf1:amd64. -2024-04-19T20:56:06Z #8 27.71 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-04-19T20:56:06Z #8 27.71 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-04-19T20:56:06Z #8 27.76 Selecting previously unselected package dconf-service. -2024-04-19T20:56:06Z #8 27.76 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-04-19T20:56:06Z #8 27.77 Unpacking dconf-service (0.38.0-2) ... -2024-04-19T20:56:07Z #8 27.81 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-04-19T20:56:07Z #8 27.82 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-04-19T20:56:07Z #8 27.82 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-19T20:56:07Z #8 27.87 Selecting previously unselected package libatk1.0-data. -2024-04-19T20:56:07Z #8 27.87 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-04-19T20:56:07Z #8 27.88 Unpacking libatk1.0-data (2.36.0-2) ... -2024-04-19T20:56:07Z #8 27.97 Selecting previously unselected package libatk1.0-0:amd64. -2024-04-19T20:56:07Z #8 27.98 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-04-19T20:56:07Z #8 27.98 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-19T20:56:07Z #8 28.04 Selecting previously unselected package libfreetype6:amd64. -2024-04-19T20:56:07Z #8 28.04 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-04-19T20:56:07Z #8 28.05 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-19T20:56:07Z #8 28.16 Selecting previously unselected package fonts-dejavu-core. -2024-04-19T20:56:07Z #8 28.17 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-04-19T20:56:07Z #8 28.17 Unpacking fonts-dejavu-core (2.37-2) ... -2024-04-19T20:56:07Z #8 28.45 Selecting previously unselected package fontconfig-config. -2024-04-19T20:56:07Z #8 28.46 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-04-19T20:56:07Z #8 28.61 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-04-19T20:56:07Z #8 28.68 Selecting previously unselected package libfontconfig1:amd64. -2024-04-19T20:56:07Z #8 28.68 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-04-19T20:56:07Z #8 28.69 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-19T20:56:07Z #8 28.75 Selecting previously unselected package libpixman-1-0:amd64. -2024-04-19T20:56:07Z #8 28.76 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-04-19T20:56:07Z #8 28.76 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-19T20:56:07Z #8 28.86 Selecting previously unselected package libxcb-render0:amd64. -2024-04-19T20:56:07Z #8 28.86 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-04-19T20:56:07Z #8 28.87 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-04-19T20:56:08Z #8 28.93 Selecting previously unselected package libxcb-shm0:amd64. -2024-04-19T20:56:08Z #8 28.94 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-04-19T20:56:08Z #8 28.95 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-04-19T20:56:08Z #8 29.01 Selecting previously unselected package libcairo2:amd64. -2024-04-19T20:56:08Z #8 29.01 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-04-19T20:56:08Z #8 29.02 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-04-19T20:56:08Z #8 29.17 Selecting previously unselected package libcairo-gobject2:amd64. -2024-04-19T20:56:08Z #8 29.18 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-04-19T20:56:08Z #8 29.18 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-19T20:56:08Z #8 29.25 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-04-19T20:56:08Z #8 29.25 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-04-19T20:56:08Z #8 29.26 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-19T20:56:08Z #8 29.32 Selecting previously unselected package libevent-2.1-7:amd64. -2024-04-19T20:56:08Z #8 29.32 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-04-19T20:56:08Z #8 29.33 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-19T20:56:08Z #8 29.41 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-04-19T20:56:08Z #8 29.41 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-04-19T20:56:08Z #8 29.42 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-19T20:56:08Z #8 29.48 Selecting previously unselected package liblcms2-2:amd64. -2024-04-19T20:56:08Z #8 29.48 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-04-19T20:56:08Z #8 29.49 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-19T20:56:08Z #8 29.57 Selecting previously unselected package libcolord2:amd64. -2024-04-19T20:56:08Z #8 29.57 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-04-19T20:56:08Z #8 29.58 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-04-19T20:56:08Z #8 29.65 Selecting previously unselected package libavahi-common-data:amd64. -2024-04-19T20:56:08Z #8 29.65 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-04-19T20:56:08Z #8 29.65 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-19T20:56:08Z #8 29.73 Selecting previously unselected package libavahi-common3:amd64. -2024-04-19T20:56:08Z #8 29.73 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-04-19T20:56:08Z #8 29.74 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-19T20:56:08Z #8 29.80 Selecting previously unselected package libavahi-client3:amd64. -2024-04-19T20:56:08Z #8 29.81 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-04-19T20:56:08Z #8 29.81 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-19T20:56:09Z #8 29.87 Selecting previously unselected package libcups2:amd64. -2024-04-19T20:56:09Z #8 29.88 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-04-19T20:56:09Z #8 29.89 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-19T20:56:09Z #8 30.02 Selecting previously unselected package libepoxy0:amd64. -2024-04-19T20:56:09Z #8 30.03 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-04-19T20:56:09Z #8 30.03 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-04-19T20:56:09Z #8 30.13 Selecting previously unselected package libfribidi0:amd64. -2024-04-19T20:56:09Z #8 30.13 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-04-19T20:56:09Z #8 30.14 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-19T20:56:09Z #8 30.20 Selecting previously unselected package libgraphite2-3:amd64. -2024-04-19T20:56:09Z #8 30.21 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-04-19T20:56:09Z #8 30.22 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-19T20:56:09Z #8 30.32 Selecting previously unselected package libharfbuzz0b:amd64. -2024-04-19T20:56:09Z #8 30.32 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-04-19T20:56:09Z #8 30.33 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-19T20:56:09Z #8 30.43 Selecting previously unselected package libjson-glib-1.0-common. -2024-04-19T20:56:09Z #8 30.44 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-04-19T20:56:09Z #8 30.44 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-04-19T20:56:09Z #8 30.51 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-04-19T20:56:09Z #8 30.51 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-04-19T20:56:09Z #8 30.52 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-19T20:56:09Z #8 30.57 Selecting previously unselected package fontconfig. -2024-04-19T20:56:09Z #8 30.58 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-04-19T20:56:09Z #8 30.58 Unpacking fontconfig (2.13.1-4.2) ... -2024-04-19T20:56:09Z #8 30.65 Selecting previously unselected package libthai-data. -2024-04-19T20:56:09Z #8 30.65 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-04-19T20:56:09Z #8 30.66 Unpacking libthai-data (0.1.28-3) ... -2024-04-19T20:56:09Z #8 30.73 Selecting previously unselected package libdatrie1:amd64. -2024-04-19T20:56:09Z #8 30.73 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-04-19T20:56:09Z #8 30.74 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-04-19T20:56:09Z #8 30.80 Selecting previously unselected package libthai0:amd64. -2024-04-19T20:56:09Z #8 30.81 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-04-19T20:56:10Z #8 30.82 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-04-19T20:56:10Z #8 30.88 Selecting previously unselected package libpango-1.0-0:amd64. -2024-04-19T20:56:10Z #8 30.89 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-04-19T20:56:10Z #8 30.89 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-19T20:56:10Z #8 30.97 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-04-19T20:56:10Z #8 30.98 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-04-19T20:56:10Z #8 30.98 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-19T20:56:10Z #8 31.04 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-04-19T20:56:10Z #8 31.05 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-04-19T20:56:10Z #8 31.06 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-19T20:56:10Z #8 31.11 Selecting previously unselected package libproxy1v5:amd64. -2024-04-19T20:56:10Z #8 31.12 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-04-19T20:56:10Z #8 31.12 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-04-19T20:56:10Z #8 31.17 Selecting previously unselected package glib-networking-common. -2024-04-19T20:56:10Z #8 31.18 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-04-19T20:56:10Z #8 31.18 Unpacking glib-networking-common (2.66.0-2) ... -2024-04-19T20:56:10Z #8 31.25 Selecting previously unselected package glib-networking-services. -2024-04-19T20:56:10Z #8 31.26 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-04-19T20:56:10Z #8 31.27 Unpacking glib-networking-services (2.66.0-2) ... -2024-04-19T20:56:10Z #8 31.31 Selecting previously unselected package gsettings-desktop-schemas. -2024-04-19T20:56:10Z #8 31.31 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-04-19T20:56:10Z #8 31.32 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-04-19T20:56:10Z #8 31.50 Selecting previously unselected package glib-networking:amd64. -2024-04-19T20:56:10Z #8 31.51 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-04-19T20:56:10Z #8 31.51 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-04-19T20:56:10Z #8 31.57 Selecting previously unselected package libsoup2.4-1:amd64. -2024-04-19T20:56:10Z #8 31.58 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-04-19T20:56:10Z #8 31.58 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-19T20:56:10Z #8 31.73 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-04-19T20:56:10Z #8 31.73 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-04-19T20:56:10Z #8 31.74 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-19T20:56:10Z #8 31.79 Selecting previously unselected package librest-0.7-0:amd64. -2024-04-19T20:56:10Z #8 31.80 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-04-19T20:56:10Z #8 31.81 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-19T20:56:10Z #8 31.85 Selecting previously unselected package libwayland-client0:amd64. -2024-04-19T20:56:10Z #8 31.86 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-19T20:56:10Z #8 31.87 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-19T20:56:11Z #8 31.91 Selecting previously unselected package libwayland-cursor0:amd64. -2024-04-19T20:56:11Z #8 31.92 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-19T20:56:11Z #8 31.93 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-19T20:56:11Z #8 31.98 Selecting previously unselected package libwayland-egl1:amd64. -2024-04-19T20:56:11Z #8 31.98 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-04-19T20:56:11Z #8 31.99 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-19T20:56:11Z #8 32.03 Selecting previously unselected package libxcomposite1:amd64. -2024-04-19T20:56:11Z #8 32.04 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-04-19T20:56:11Z #8 32.05 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-19T20:56:11Z #8 32.10 Selecting previously unselected package libxfixes3:amd64. -2024-04-19T20:56:11Z #8 32.10 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-04-19T20:56:11Z #8 32.10 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-19T20:56:11Z #8 32.14 Selecting previously unselected package libxcursor1:amd64. -2024-04-19T20:56:11Z #8 32.15 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-04-19T20:56:11Z #8 32.16 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-19T20:56:11Z #8 32.21 Selecting previously unselected package libxdamage1:amd64. -2024-04-19T20:56:11Z #8 32.21 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-04-19T20:56:11Z #8 32.22 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-19T20:56:11Z #8 32.26 Selecting previously unselected package libxinerama1:amd64. -2024-04-19T20:56:11Z #8 32.27 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-04-19T20:56:11Z #8 32.27 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-19T20:56:11Z #8 32.31 Selecting previously unselected package xkb-data. -2024-04-19T20:56:11Z #8 32.31 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-04-19T20:56:11Z #8 32.32 Unpacking xkb-data (2.29-2) ... -2024-04-19T20:56:11Z #8 32.57 Selecting previously unselected package libxkbcommon0:amd64. -2024-04-19T20:56:11Z #8 32.58 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-04-19T20:56:11Z #8 32.58 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-19T20:56:11Z #8 32.65 Selecting previously unselected package libxrandr2:amd64. -2024-04-19T20:56:11Z #8 32.65 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-04-19T20:56:11Z #8 32.66 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-19T20:56:11Z #8 32.70 Selecting previously unselected package libgtk-3-common. -2024-04-19T20:56:11Z #8 32.71 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-04-19T20:56:11Z #8 32.71 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-19T20:56:12Z #8 33.54 Selecting previously unselected package libgtk-3-0:amd64. -2024-04-19T20:56:12Z #8 33.54 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-04-19T20:56:12Z #8 33.55 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-19T20:56:13Z #8 34.06 Selecting previously unselected package libx11-xcb1:amd64. -2024-04-19T20:56:13Z #8 34.07 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-04-19T20:56:13Z #8 34.07 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-19T20:56:13Z #8 34.13 Selecting previously unselected package firefox-esr. -2024-04-19T20:56:13Z #8 34.13 Preparing to unpack .../099-firefox-esr_115.10.0esr-1~deb11u1_amd64.deb ... -2024-04-19T20:56:13Z #8 34.15 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-04-19T20:56:13Z #8 34.16 Unpacking firefox-esr (115.10.0esr-1~deb11u1) ... -2024-04-19T20:56:24Z #8 45.52 Selecting previously unselected package fonts-humor-sans. -2024-04-19T20:56:24Z #8 45.52 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-04-19T20:56:24Z #8 45.53 Unpacking fonts-humor-sans (1.0-4) ... -2024-04-19T20:56:24Z #8 45.59 Selecting previously unselected package libcc1-0:amd64. -2024-04-19T20:56:24Z #8 45.60 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-04-19T20:56:24Z #8 45.60 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-04-19T20:56:24Z #8 45.66 Selecting previously unselected package libgomp1:amd64. -2024-04-19T20:56:24Z #8 45.67 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-04-19T20:56:24Z #8 45.68 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-04-19T20:56:24Z #8 45.76 Selecting previously unselected package libitm1:amd64. -2024-04-19T20:56:24Z #8 45.76 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-04-19T20:56:24Z #8 45.77 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-04-19T20:56:24Z #8 45.81 Selecting previously unselected package libatomic1:amd64. -2024-04-19T20:56:24Z #8 45.82 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-04-19T20:56:24Z #8 45.83 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-04-19T20:56:25Z #8 45.87 Selecting previously unselected package libasan6:amd64. -2024-04-19T20:56:25Z #8 45.88 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-04-19T20:56:25Z #8 45.88 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-04-19T20:56:25Z #8 46.28 Selecting previously unselected package liblsan0:amd64. -2024-04-19T20:56:25Z #8 46.28 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-04-19T20:56:25Z #8 46.29 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-04-19T20:56:25Z #8 46.48 Selecting previously unselected package libtsan0:amd64. -2024-04-19T20:56:25Z #8 46.49 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-04-19T20:56:25Z #8 46.49 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-04-19T20:56:26Z #8 46.91 Selecting previously unselected package libubsan1:amd64. -2024-04-19T20:56:26Z #8 46.92 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-04-19T20:56:26Z #8 46.92 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-04-19T20:56:26Z #8 47.10 Selecting previously unselected package libquadmath0:amd64. -2024-04-19T20:56:26Z #8 47.10 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-04-19T20:56:26Z #8 47.11 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-04-19T20:56:26Z #8 47.16 Selecting previously unselected package libgcc-10-dev:amd64. -2024-04-19T20:56:26Z #8 47.17 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-04-19T20:56:26Z #8 47.17 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-19T20:56:26Z #8 47.61 Selecting previously unselected package gcc-10. -2024-04-19T20:56:26Z #8 47.61 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-04-19T20:56:26Z #8 47.62 Unpacking gcc-10 (10.2.1-6) ... -2024-04-19T20:56:29Z #8 50.21 Selecting previously unselected package gcc. -2024-04-19T20:56:29Z #8 50.21 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-04-19T20:56:29Z #8 50.22 Unpacking gcc (4:10.2.1-1) ... -2024-04-19T20:56:29Z #8 50.27 Selecting previously unselected package libva2:amd64. -2024-04-19T20:56:29Z #8 50.28 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-04-19T20:56:29Z #8 50.28 Unpacking libva2:amd64 (2.10.0-1) ... -2024-04-19T20:56:29Z #8 50.33 Selecting previously unselected package libdrm-common. -2024-04-19T20:56:29Z #8 50.33 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-04-19T20:56:29Z #8 50.34 Unpacking libdrm-common (2.4.104-1) ... -2024-04-19T20:56:29Z #8 50.38 Selecting previously unselected package libdrm2:amd64. -2024-04-19T20:56:29Z #8 50.39 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-04-19T20:56:29Z #8 50.39 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-04-19T20:56:29Z #8 50.44 Selecting previously unselected package libpciaccess0:amd64. -2024-04-19T20:56:29Z #8 50.44 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-04-19T20:56:29Z #8 50.45 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-04-19T20:56:29Z #8 50.51 Selecting previously unselected package libdrm-intel1:amd64. -2024-04-19T20:56:29Z #8 50.52 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-04-19T20:56:29Z #8 50.52 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-19T20:56:29Z #8 50.58 Selecting previously unselected package i965-va-driver:amd64. -2024-04-19T20:56:29Z #8 50.58 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-04-19T20:56:29Z #8 50.58 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-19T20:56:29Z #8 50.68 Selecting previously unselected package libigdgmm11:amd64. -2024-04-19T20:56:29Z #8 50.68 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-04-19T20:56:29Z #8 50.68 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-19T20:56:29Z #8 50.78 Selecting previously unselected package intel-media-va-driver:amd64. -2024-04-19T20:56:29Z #8 50.78 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-04-19T20:56:29Z #8 50.79 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-19T20:56:30Z #8 51.11 Selecting previously unselected package libaom0:amd64. -2024-04-19T20:56:30Z #8 51.11 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-04-19T20:56:30Z #8 51.12 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-19T20:56:30Z #8 51.34 Selecting previously unselected package libmfx1:amd64. -2024-04-19T20:56:30Z #8 51.34 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-04-19T20:56:30Z #8 51.35 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-04-19T20:56:31Z #8 52.10 Selecting previously unselected package libva-drm2:amd64. -2024-04-19T20:56:31Z #8 52.10 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-04-19T20:56:31Z #8 52.11 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-04-19T20:56:31Z #8 52.16 Selecting previously unselected package libva-x11-2:amd64. -2024-04-19T20:56:31Z #8 52.16 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-04-19T20:56:31Z #8 52.17 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-04-19T20:56:31Z #8 52.22 Selecting previously unselected package libvdpau1:amd64. -2024-04-19T20:56:31Z #8 52.23 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-04-19T20:56:31Z #8 52.23 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-04-19T20:56:31Z #8 52.29 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-04-19T20:56:31Z #8 52.29 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-04-19T20:56:31Z #8 52.30 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-19T20:56:31Z #8 52.35 Selecting previously unselected package libavutil56:amd64. -2024-04-19T20:56:31Z #8 52.36 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-19T20:56:31Z #8 52.36 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-19T20:56:31Z #8 52.45 Selecting previously unselected package libcodec2-0.9:amd64. -2024-04-19T20:56:31Z #8 52.46 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-04-19T20:56:31Z #8 52.47 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-19T20:56:32Z #8 53.57 Selecting previously unselected package libdav1d4:amd64. -2024-04-19T20:56:32Z #8 53.57 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-04-19T20:56:32Z #8 53.58 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-04-19T20:56:32Z #8 53.68 Selecting previously unselected package libgsm1:amd64. -2024-04-19T20:56:32Z #8 53.68 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-04-19T20:56:32Z #8 53.68 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-04-19T20:56:32Z #8 53.73 Selecting previously unselected package libmp3lame0:amd64. -2024-04-19T20:56:32Z #8 53.73 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-04-19T20:56:32Z #8 53.74 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-04-19T20:56:32Z #8 53.82 Selecting previously unselected package libopenjp2-7:amd64. -2024-04-19T20:56:32Z #8 53.82 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-04-19T20:56:32Z #8 53.83 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-19T20:56:32Z #8 53.90 Selecting previously unselected package libopus0:amd64. -2024-04-19T20:56:32Z #8 53.91 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-04-19T20:56:32Z #8 53.91 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-04-19T20:56:33Z #8 53.99 Selecting previously unselected package librsvg2-2:amd64. -2024-04-19T20:56:33Z #8 53.99 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-19T20:56:33Z #8 54.00 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-19T20:56:33Z #8 54.47 Selecting previously unselected package libshine3:amd64. -2024-04-19T20:56:33Z #8 54.47 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-04-19T20:56:33Z #8 54.48 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-04-19T20:56:33Z #8 54.53 Selecting previously unselected package libsnappy1v5:amd64. -2024-04-19T20:56:33Z #8 54.54 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-04-19T20:56:33Z #8 54.54 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-19T20:56:33Z #8 54.59 Selecting previously unselected package libspeex1:amd64. -2024-04-19T20:56:33Z #8 54.60 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-04-19T20:56:33Z #8 54.61 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-19T20:56:33Z #8 54.66 Selecting previously unselected package libsoxr0:amd64. -2024-04-19T20:56:33Z #8 54.66 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-04-19T20:56:33Z #8 54.67 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-04-19T20:56:33Z #8 54.73 Selecting previously unselected package libswresample3:amd64. -2024-04-19T20:56:33Z #8 54.74 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-19T20:56:33Z #8 54.74 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-19T20:56:33Z #8 54.80 Selecting previously unselected package libogg0:amd64. -2024-04-19T20:56:33Z #8 54.81 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-04-19T20:56:33Z #8 54.81 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-04-19T20:56:34Z #8 54.86 Selecting previously unselected package libtheora0:amd64. -2024-04-19T20:56:34Z #8 54.86 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-04-19T20:56:34Z #8 54.87 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-19T20:56:34Z #8 54.94 Selecting previously unselected package libtwolame0:amd64. -2024-04-19T20:56:34Z #8 54.95 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-04-19T20:56:34Z #8 54.96 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-04-19T20:56:34Z #8 55.02 Selecting previously unselected package libvorbis0a:amd64. -2024-04-19T20:56:34Z #8 55.03 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-04-19T20:56:34Z #8 55.03 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-04-19T20:56:34Z #8 55.09 Selecting previously unselected package libvorbisenc2:amd64. -2024-04-19T20:56:34Z #8 55.09 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-04-19T20:56:34Z #8 55.10 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-19T20:56:34Z #8 55.17 Selecting previously unselected package libvpx6:amd64. -2024-04-19T20:56:34Z #8 55.17 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-04-19T20:56:34Z #8 55.18 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-19T20:56:34Z #8 55.35 Selecting previously unselected package libwavpack1:amd64. -2024-04-19T20:56:34Z #8 55.35 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-04-19T20:56:34Z #8 55.36 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-04-19T20:56:34Z #8 55.41 Selecting previously unselected package libwebpmux3:amd64. -2024-04-19T20:56:34Z #8 55.41 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-19T20:56:34Z #8 55.42 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-19T20:56:34Z #8 55.48 Selecting previously unselected package libx264-160:amd64. -2024-04-19T20:56:34Z #8 55.48 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-04-19T20:56:34Z #8 55.49 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-19T20:56:34Z #8 55.61 Selecting previously unselected package libnuma1:amd64. -2024-04-19T20:56:34Z #8 55.62 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-04-19T20:56:34Z #8 55.63 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-19T20:56:34Z #8 55.68 Selecting previously unselected package libx265-192:amd64. -2024-04-19T20:56:34Z #8 55.69 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-04-19T20:56:34Z #8 55.69 Unpacking libx265-192:amd64 (3.4-2) ... -2024-04-19T20:56:35Z #8 56.01 Selecting previously unselected package libxvidcore4:amd64. -2024-04-19T20:56:35Z #8 56.01 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-04-19T20:56:35Z #8 56.02 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-19T20:56:35Z #8 56.09 Selecting previously unselected package libzvbi-common. -2024-04-19T20:56:35Z #8 56.09 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-04-19T20:56:35Z #8 56.10 Unpacking libzvbi-common (0.2.35-18) ... -2024-04-19T20:56:35Z #8 56.15 Selecting previously unselected package libzvbi0:amd64. -2024-04-19T20:56:35Z #8 56.16 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-04-19T20:56:35Z #8 56.17 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-04-19T20:56:35Z #8 56.25 Selecting previously unselected package libavcodec58:amd64. -2024-04-19T20:56:35Z #8 56.25 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-19T20:56:35Z #8 56.26 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-19T20:56:36Z #8 57.03 Selecting previously unselected package libc-dev-bin. -2024-04-19T20:56:36Z #8 57.04 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u8_amd64.deb ... -2024-04-19T20:56:36Z #8 57.04 Unpacking libc-dev-bin (2.31-13+deb11u8) ... -2024-04-19T20:56:36Z #8 57.09 Selecting previously unselected package libxpm4:amd64. -2024-04-19T20:56:36Z #8 57.10 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-04-19T20:56:36Z #8 57.10 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-19T20:56:36Z #8 57.15 Selecting previously unselected package libgd3:amd64. -2024-04-19T20:56:36Z #8 57.17 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-04-19T20:56:36Z #8 57.19 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-04-19T20:56:36Z #8 57.64 Selecting previously unselected package libc-devtools. -2024-04-19T20:56:36Z #8 57.64 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u8_amd64.deb ... -2024-04-19T20:56:36Z #8 57.65 Unpacking libc-devtools (2.31-13+deb11u8) ... -2024-04-19T20:56:36Z #8 57.73 Selecting previously unselected package linux-libc-dev:amd64. -2024-04-19T20:56:36Z #8 57.74 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-04-19T20:56:36Z #8 57.75 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-19T20:56:37Z #8 58.10 Selecting previously unselected package libcrypt-dev:amd64. -2024-04-19T20:56:37Z #8 58.11 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-04-19T20:56:37Z #8 58.11 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-19T20:56:37Z #8 58.17 Selecting previously unselected package libtirpc-dev:amd64. -2024-04-19T20:56:37Z #8 58.17 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-04-19T20:56:37Z #8 58.17 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-19T20:56:37Z #8 58.24 Selecting previously unselected package libnsl-dev:amd64. -2024-04-19T20:56:37Z #8 58.25 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-04-19T20:56:37Z #8 58.25 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-04-19T20:56:37Z #8 58.31 Selecting previously unselected package libc6-dev:amd64. -2024-04-19T20:56:37Z #8 58.31 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u8_amd64.deb ... -2024-04-19T20:56:37Z #8 58.32 Unpacking libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-04-19T20:56:38Z #8 58.88 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-04-19T20:56:38Z #8 58.89 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-04-19T20:56:38Z #8 58.89 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-19T20:56:38Z #8 58.94 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-04-19T20:56:38Z #8 58.95 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-04-19T20:56:38Z #8 58.95 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-19T20:56:38Z #8 59.07 Selecting previously unselected package libdrm-radeon1:amd64. -2024-04-19T20:56:38Z #8 59.07 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-04-19T20:56:38Z #8 59.08 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-19T20:56:38Z #8 59.13 Selecting previously unselected package libelf1:amd64. -2024-04-19T20:56:38Z #8 59.13 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-04-19T20:56:38Z #8 59.14 Unpacking libelf1:amd64 (0.183-1) ... -2024-04-19T20:56:38Z #8 59.21 Selecting previously unselected package libfontenc1:amd64. -2024-04-19T20:56:38Z #8 59.21 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-04-19T20:56:38Z #8 59.22 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-19T20:56:38Z #8 59.26 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-04-19T20:56:38Z #8 59.26 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-19T20:56:38Z #8 59.27 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-19T20:56:38Z #8 59.31 Selecting previously unselected package libglapi-mesa:amd64. -2024-04-19T20:56:38Z #8 59.32 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-04-19T20:56:38Z #8 59.32 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-19T20:56:38Z #8 59.37 Selecting previously unselected package libz3-4:amd64. -2024-04-19T20:56:38Z #8 59.38 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-04-19T20:56:38Z #8 59.38 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-04-19T20:56:39Z #8 60.47 Selecting previously unselected package libllvm11:amd64. -2024-04-19T20:56:39Z #8 60.47 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-04-19T20:56:39Z #8 60.48 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-04-19T20:56:42Z #8 63.60 Selecting previously unselected package libsensors-config. -2024-04-19T20:56:42Z #8 63.61 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-04-19T20:56:42Z #8 63.61 Unpacking libsensors-config (1:3.6.0-7) ... -2024-04-19T20:56:42Z #8 63.66 Selecting previously unselected package libsensors5:amd64. -2024-04-19T20:56:42Z #8 63.67 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-04-19T20:56:42Z #8 63.71 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-04-19T20:56:42Z #8 63.76 Selecting previously unselected package libvulkan1:amd64. -2024-04-19T20:56:42Z #8 63.77 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-04-19T20:56:42Z #8 63.77 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-19T20:56:42Z #8 63.85 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-04-19T20:56:43Z #8 63.85 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-04-19T20:56:43Z #8 63.86 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-19T20:56:44Z #8 65.36 Selecting previously unselected package libglvnd0:amd64. -2024-04-19T20:56:44Z #8 65.36 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-04-19T20:56:44Z #8 65.37 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-04-19T20:56:44Z #8 65.42 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-04-19T20:56:44Z #8 65.43 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-04-19T20:56:44Z #8 65.43 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-19T20:56:44Z #8 65.48 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-04-19T20:56:44Z #8 65.49 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-04-19T20:56:44Z #8 65.49 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-19T20:56:44Z #8 65.54 Selecting previously unselected package libxcb-glx0:amd64. -2024-04-19T20:56:44Z #8 65.55 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-04-19T20:56:44Z #8 65.55 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-04-19T20:56:44Z #8 65.62 Selecting previously unselected package libxcb-present0:amd64. -2024-04-19T20:56:44Z #8 65.62 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-04-19T20:56:44Z #8 65.62 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-04-19T20:56:44Z #8 65.68 Selecting previously unselected package libxcb-sync1:amd64. -2024-04-19T20:56:44Z #8 65.68 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-04-19T20:56:44Z #8 65.69 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-04-19T20:56:44Z #8 65.74 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-04-19T20:56:44Z #8 65.74 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-04-19T20:56:44Z #8 65.75 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-19T20:56:44Z #8 65.80 Selecting previously unselected package libxshmfence1:amd64. -2024-04-19T20:56:44Z #8 65.80 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-04-19T20:56:44Z #8 65.81 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-04-19T20:56:45Z #8 65.85 Selecting previously unselected package libxxf86vm1:amd64. -2024-04-19T20:56:45Z #8 65.85 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-04-19T20:56:45Z #8 65.86 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-19T20:56:45Z #8 65.90 Selecting previously unselected package libglx-mesa0:amd64. -2024-04-19T20:56:45Z #8 65.90 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-04-19T20:56:45Z #8 65.91 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-19T20:56:45Z #8 65.97 Selecting previously unselected package libgtk-3-bin. -2024-04-19T20:56:45Z #8 65.98 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-04-19T20:56:45Z #8 65.98 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-19T20:56:45Z #8 66.04 Selecting previously unselected package librsvg2-common:amd64. -2024-04-19T20:56:45Z #8 66.05 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-19T20:56:45Z #8 66.05 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-19T20:56:45Z #8 66.10 Selecting previously unselected package libglx0:amd64. -2024-04-19T20:56:45Z #8 66.10 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-04-19T20:56:45Z #8 66.11 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-04-19T20:56:45Z #8 66.16 Selecting previously unselected package libgl1:amd64. -2024-04-19T20:56:45Z #8 66.16 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-04-19T20:56:45Z #8 66.17 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-04-19T20:56:45Z #8 66.22 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-04-19T20:56:45Z #8 66.23 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-04-19T20:56:45Z #8 66.23 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-19T20:56:45Z #8 66.28 Selecting previously unselected package libxt6:amd64. -2024-04-19T20:56:45Z #8 66.29 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-04-19T20:56:45Z #8 66.29 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-04-19T20:56:45Z #8 66.36 Selecting previously unselected package libxmu6:amd64. -2024-04-19T20:56:45Z #8 66.36 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-19T20:56:45Z #8 66.37 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-19T20:56:45Z #8 66.42 Selecting previously unselected package libxaw7:amd64. -2024-04-19T20:56:45Z #8 66.43 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-04-19T20:56:45Z #8 66.43 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-19T20:56:45Z #8 66.51 Selecting previously unselected package libxcb-randr0:amd64. -2024-04-19T20:56:45Z #8 66.51 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-04-19T20:56:45Z #8 66.52 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-04-19T20:56:45Z #8 66.57 Selecting previously unselected package libxcb-shape0:amd64. -2024-04-19T20:56:45Z #8 66.58 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-04-19T20:56:45Z #8 66.58 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-04-19T20:56:45Z #8 66.64 Selecting previously unselected package libxft2:amd64. -2024-04-19T20:56:45Z #8 66.65 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-04-19T20:56:45Z #8 66.65 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-04-19T20:56:45Z #8 66.70 Selecting previously unselected package libxkbfile1:amd64. -2024-04-19T20:56:45Z #8 66.71 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-04-19T20:56:45Z #8 66.71 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-19T20:56:45Z #8 66.77 Selecting previously unselected package libxmuu1:amd64. -2024-04-19T20:56:45Z #8 66.77 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-19T20:56:45Z #8 66.78 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-19T20:56:45Z #8 66.83 Selecting previously unselected package libxv1:amd64. -2024-04-19T20:56:45Z #8 66.83 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-04-19T20:56:45Z #8 66.84 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-04-19T20:56:46Z #8 66.88 Selecting previously unselected package libxxf86dga1:amd64. -2024-04-19T20:56:46Z #8 66.89 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-04-19T20:56:46Z #8 66.89 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-19T20:56:46Z #8 66.94 Selecting previously unselected package manpages-dev. -2024-04-19T20:56:46Z #8 66.94 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-04-19T20:56:46Z #8 66.94 Unpacking manpages-dev (5.10-1) ... -2024-04-19T20:56:46Z #8 67.40 Selecting previously unselected package mesa-va-drivers:amd64. -2024-04-19T20:56:46Z #8 67.40 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-04-19T20:56:46Z #8 67.41 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-19T20:56:46Z #8 67.87 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-04-19T20:56:46Z #8 67.88 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-04-19T20:56:46Z #8 67.88 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-19T20:56:48Z #8 69.47 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-04-19T20:56:48Z #8 69.48 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-04-19T20:56:48Z #8 69.67 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-19T20:56:49Z #8 70.37 Selecting previously unselected package patch. -2024-04-19T20:56:49Z #8 70.37 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-04-19T20:56:49Z #8 70.38 Unpacking patch (2.7.6-7) ... -2024-04-19T20:56:49Z #8 70.43 Selecting previously unselected package unzip. -2024-04-19T20:56:49Z #8 70.44 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-04-19T20:56:49Z #8 70.44 Unpacking unzip (6.0-26+deb11u1) ... -2024-04-19T20:56:49Z #8 70.51 Selecting previously unselected package va-driver-all:amd64. -2024-04-19T20:56:49Z #8 70.51 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-04-19T20:56:49Z #8 70.52 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-04-19T20:56:49Z #8 70.56 Selecting previously unselected package vdpau-driver-all:amd64. -2024-04-19T20:56:49Z #8 70.57 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-04-19T20:56:49Z #8 70.57 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-04-19T20:56:49Z #8 70.62 Selecting previously unselected package x11-utils. -2024-04-19T20:56:49Z #8 70.62 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-04-19T20:56:49Z #8 70.63 Unpacking x11-utils (7.7+5) ... -2024-04-19T20:56:49Z #8 70.77 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-19T20:56:49Z #8 70.78 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-19T20:56:49Z #8 70.80 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-19T20:56:49Z #8 70.81 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-19T20:56:49Z #8 70.83 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-19T20:56:49Z #8 70.84 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-04-19T20:56:49Z #8 70.85 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-04-19T20:56:49Z #8 70.86 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-04-19T20:56:49Z #8 70.88 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-19T20:56:49Z #8 70.89 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-19T20:56:49Z #8 70.90 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-04-19T20:56:49Z #8 70.91 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-19T20:56:50Z #8 70.93 Setting up libshine3:amd64 (3.1.1-2) ... -2024-04-19T20:56:50Z #8 70.94 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-19T20:56:50Z #8 70.95 Setting up hicolor-icon-theme (0.17-2) ... -2024-04-19T20:56:50Z #8 70.98 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-04-19T20:56:50Z #8 70.99 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-04-19T20:56:50Z #8 71.01 Setting up libicu67:amd64 (67.1-7) ... -2024-04-19T20:56:50Z #8 71.02 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-04-19T20:56:50Z #8 71.04 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-04-19T20:56:50Z #8 71.05 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-04-19T20:56:50Z #8 71.06 Setting up manpages (5.10-1) ... -2024-04-19T20:56:50Z #8 71.08 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-04-19T20:56:50Z #8 71.09 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-04-19T20:56:50Z #8 71.10 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-04-19T20:56:50Z #8 71.11 Setting up unzip (6.0-26+deb11u1) ... -2024-04-19T20:56:50Z #8 71.13 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-19T20:56:50Z #8 71.15 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-19T20:56:50Z #8 71.16 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-04-19T20:56:50Z #8 71.18 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-04-19T20:56:50Z #8 71.19 Setting up libsensors-config (1:3.6.0-7) ... -2024-04-19T20:56:50Z #8 71.21 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-19T20:56:50Z #8 71.23 Setting up libdeflate0:amd64 (1.7-1) ... -2024-04-19T20:56:50Z #8 71.24 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-19T20:56:50Z #8 71.26 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-19T20:56:50Z #8 71.27 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-19T20:56:50Z #8 71.28 First installation detected... -2024-04-19T20:56:50Z #8 71.29 Checking NSS setup... -2024-04-19T20:56:50Z #8 71.29 Setting up xkb-data (2.29-2) ... -2024-04-19T20:56:50Z #8 71.31 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-04-19T20:56:50Z #8 71.32 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-04-19T20:56:50Z #8 71.34 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-19T20:56:50Z #8 71.35 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-19T20:56:50Z #8 71.37 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-19T20:56:50Z #8 71.39 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-04-19T20:56:50Z #8 71.40 Setting up libasan6:amd64 (10.2.1-6) ... -2024-04-19T20:56:50Z #8 71.42 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-19T20:56:50Z #8 71.43 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-19T20:56:50Z #8 71.44 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-04-19T20:56:50Z #8 71.46 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-04-19T20:56:50Z #8 71.47 Setting up libasound2-data (1.2.4-1.1) ... -2024-04-19T20:56:50Z #8 71.49 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-19T20:56:50Z #8 71.50 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-04-19T20:56:50Z #8 71.51 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-19T20:56:50Z #8 71.53 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-04-19T20:56:50Z #8 71.54 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-19T20:56:50Z #8 71.55 Setting up libva2:amd64 (2.10.0-1) ... -2024-04-19T20:56:50Z #8 71.56 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-19T20:56:50Z #8 71.58 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-04-19T20:56:50Z #8 71.60 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-04-19T20:56:50Z #8 71.61 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-19T20:56:50Z #8 71.63 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-04-19T20:56:50Z #8 71.64 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-19T20:56:50Z #8 71.65 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-19T20:56:50Z #8 71.67 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-19T20:56:50Z #8 71.69 Setting up dbus (1.12.28-0+deb11u1) ... -2024-04-19T20:56:50Z #8 71.86 invoke-rc.d: could not determine current runlevel -2024-04-19T20:56:50Z #8 71.87 invoke-rc.d: policy-rc.d denied execution of start. -2024-04-19T20:56:50Z #8 71.87 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-19T20:56:50Z #8 71.89 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-04-19T20:56:50Z #8 71.90 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-04-19T20:56:50Z #8 71.91 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-19T20:56:51Z #8 71.92 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-19T20:56:51Z #8 71.94 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-04-19T20:56:51Z #8 71.95 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-04-19T20:56:51Z #8 71.97 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-04-19T20:56:51Z #8 71.99 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-19T20:56:51Z #8 72.36 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-19T20:56:51Z #8 72.36 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-19T20:56:51Z #8 72.37 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-04-19T20:56:51Z #8 72.39 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-04-19T20:56:51Z #8 72.40 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-19T20:56:51Z #8 72.42 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-19T20:56:51Z #8 72.43 Setting up patch (2.7.6-7) ... -2024-04-19T20:56:51Z #8 72.45 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-19T20:56:51Z #8 72.46 Setting up fonts-dejavu-core (2.37-2) ... -2024-04-19T20:56:51Z #8 72.62 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-04-19T20:56:51Z #8 72.63 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-04-19T20:56:51Z #8 72.65 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-19T20:56:51Z #8 72.66 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-19T20:56:51Z #8 72.68 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-04-19T20:56:51Z #8 72.69 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-19T20:56:51Z #8 72.70 Setting up libatk1.0-data (2.36.0-2) ... -2024-04-19T20:56:51Z #8 72.71 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-19T20:56:51Z #8 72.73 Setting up alsa-topology-conf (1.2.4-1) ... -2024-04-19T20:56:51Z #8 72.75 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-04-19T20:56:51Z #8 72.76 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-19T20:56:51Z #8 72.78 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-04-19T20:56:51Z #8 72.79 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-19T20:56:51Z #8 72.81 Setting up libvdpau1:amd64 (1.4-3) ... -2024-04-19T20:56:52Z #8 72.83 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-19T20:56:52Z #8 72.84 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-04-19T20:56:52Z #8 72.86 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-04-19T20:56:52Z #8 72.87 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-04-19T20:56:52Z #8 72.88 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-19T20:56:52Z #8 73.12 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-04-19T20:56:52Z #8 73.14 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-19T20:56:52Z #8 73.15 Setting up libthai-data (0.1.28-3) ... -2024-04-19T20:56:52Z #8 73.17 Setting up fonts-humor-sans (1.0-4) ... -2024-04-19T20:56:52Z #8 73.19 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-04-19T20:56:52Z #8 73.20 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-19T20:56:52Z #8 73.21 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-19T20:56:52Z #8 73.24 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-19T20:56:52Z #8 73.26 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-19T20:56:52Z #8 73.27 Setting up glib-networking-common (2.66.0-2) ... -2024-04-19T20:56:52Z #8 73.29 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-04-19T20:56:52Z #8 73.31 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-04-19T20:56:52Z #8 73.32 Setting up libisl23:amd64 (0.23-1) ... -2024-04-19T20:56:52Z #8 73.33 Setting up libc-dev-bin (2.31-13+deb11u8) ... -2024-04-19T20:56:52Z #8 73.35 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-19T20:56:52Z #8 73.37 Setting up libdrm-common (2.4.104-1) ... -2024-04-19T20:56:52Z #8 73.38 Setting up libelf1:amd64 (0.183-1) ... -2024-04-19T20:56:52Z #8 73.40 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-19T20:56:52Z #8 73.41 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-19T20:56:52Z #8 73.43 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-04-19T20:56:52Z #8 73.44 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-19T20:56:52Z #8 73.45 Setting up libzvbi-common (0.2.35-18) ... -2024-04-19T20:56:52Z #8 73.47 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-04-19T20:56:52Z #8 73.49 Setting up cpp-10 (10.2.1-6) ... -2024-04-19T20:56:52Z #8 73.51 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-04-19T20:56:52Z #8 73.52 Setting up libitm1:amd64 (10.2.1-6) ... -2024-04-19T20:56:52Z #8 73.53 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-19T20:56:52Z #8 73.55 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-04-19T20:56:52Z #8 73.57 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-19T20:56:52Z #8 73.59 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-19T20:56:52Z #8 73.61 Setting up libctf0:amd64 (2.35.2-2) ... -2024-04-19T20:56:52Z #8 73.62 Setting up glib-networking-services (2.66.0-2) ... -2024-04-19T20:56:52Z #8 73.63 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-04-19T20:56:52Z #8 73.65 Setting up manpages-dev (5.10-1) ... -2024-04-19T20:56:52Z #8 73.66 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-19T20:56:52Z #8 73.68 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-04-19T20:56:52Z #8 73.69 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-04-19T20:56:52Z #8 73.71 Setting up fontconfig-config (2.13.1-4.2) ... -2024-04-19T20:56:53Z #8 74.05 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-19T20:56:53Z #8 74.07 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-19T20:56:53Z #8 74.08 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-19T20:56:53Z #8 74.10 Setting up libx265-192:amd64 (3.4-2) ... -2024-04-19T20:56:53Z #8 74.12 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-19T20:56:53Z #8 74.14 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-19T20:56:53Z #8 74.15 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-19T20:56:53Z #8 74.17 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-19T20:56:53Z #8 74.18 Setting up libthai0:amd64 (0.1.28-3) ... -2024-04-19T20:56:53Z #8 74.20 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-19T20:56:53Z #8 74.22 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-19T20:56:53Z #8 74.23 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-19T20:56:53Z #8 74.25 Setting up shared-mime-info (2.0-1) ... -2024-04-19T20:56:56Z #8 77.24 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-04-19T20:56:56Z #8 77.25 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-04-19T20:56:56Z #8 77.27 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-19T20:56:56Z #8 77.29 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-19T20:56:56Z #8 77.30 Setting up cpp (4:10.2.1-1) ... -2024-04-19T20:56:56Z #8 77.32 Setting up libc6-dev:amd64 (2.31-13+deb11u8) ... -2024-04-19T20:56:56Z #8 77.34 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-19T20:56:56Z #8 77.35 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-19T20:56:56Z #8 77.39 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-19T20:56:56Z #8 77.45 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-04-19T20:56:56Z #8 77.47 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-19T20:56:56Z #8 77.49 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-19T20:56:56Z #8 77.50 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-19T20:56:56Z #8 77.51 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-19T20:56:56Z #8 77.53 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-19T20:56:56Z #8 77.54 Setting up fontconfig (2.13.1-4.2) ... -2024-04-19T20:56:58Z #8 77.55 Regenerating fonts cache... done. -2024-04-19T20:56:58Z #8 79.58 Setting up libxft2:amd64 (2.3.2-2) ... -2024-04-19T20:56:58Z #8 79.59 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-19T20:56:58Z #8 79.61 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-19T20:56:58Z #8 79.62 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-19T20:56:58Z #8 79.63 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-19T20:56:58Z #8 79.64 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-19T20:56:58Z #8 79.66 Setting up dconf-service (0.38.0-2) ... -2024-04-19T20:56:58Z #8 79.68 Setting up binutils (2.35.2-2) ... -2024-04-19T20:56:58Z #8 79.69 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-04-19T20:56:58Z #8 79.70 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-19T20:56:58Z #8 79.72 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-04-19T20:56:58Z #8 79.81 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-04-19T20:56:58Z #8 79.82 Setting up libgd3:amd64 (2.3.0-2) ... -2024-04-19T20:56:58Z #8 79.84 Setting up gcc-10 (10.2.1-6) ... -2024-04-19T20:56:58Z #8 79.85 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-19T20:56:58Z #8 79.87 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-19T20:56:59Z #8 79.88 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-19T20:56:59Z #8 79.90 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-19T20:56:59Z #8 79.91 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-19T20:56:59Z #8 79.92 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-19T20:56:59Z #8 79.94 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-19T20:56:59Z #8 79.95 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-19T20:56:59Z #8 79.97 Setting up libc-devtools (2.31-13+deb11u8) ... -2024-04-19T20:56:59Z #8 79.99 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-19T20:56:59Z #8 80.01 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-19T20:56:59Z #8 80.02 Setting up libglx0:amd64 (1.3.2-1) ... -2024-04-19T20:56:59Z #8 80.04 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-19T20:56:59Z #8 80.05 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-19T20:56:59Z #8 80.07 Setting up gcc (4:10.2.1-1) ... -2024-04-19T20:56:59Z #8 80.10 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-19T20:56:59Z #8 80.12 Setting up libgl1:amd64 (1.3.2-1) ... -2024-04-19T20:56:59Z #8 80.13 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-04-19T20:56:59Z #8 80.15 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-19T20:56:59Z #8 80.17 Setting up x11-utils (7.7+5) ... -2024-04-19T20:56:59Z #8 80.24 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-19T20:56:59Z #8 80.25 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-19T20:56:59Z #8 80.27 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-19T20:56:59Z #8 80.29 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-04-19T20:56:59Z #8 80.31 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-04-19T20:56:59Z #8 80.33 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-04-19T20:56:59Z #8 80.37 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-19T20:56:59Z #8 80.42 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-04-19T20:56:59Z #8 80.43 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-19T20:56:59Z #8 80.46 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-19T20:56:59Z #8 80.48 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-19T20:56:59Z #8 80.50 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-19T20:56:59Z #8 80.54 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-19T20:56:59Z #8 80.55 Setting up firefox-esr (115.10.0esr-1~deb11u1) ... -2024-04-19T20:56:59Z #8 80.57 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-04-19T20:56:59Z #8 80.58 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-04-19T20:56:59Z #8 80.58 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-04-19T20:56:59Z #8 80.59 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-04-19T20:56:59Z #8 80.60 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-19T20:56:59Z #8 80.63 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-19T20:57:04Z #8 DONE 85.2s -2024-04-19T20:57:04Z -2024-04-19T20:57:04Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-04-19T20:58:02Z #9 DONE 57.6s -2024-04-19T20:58:02Z -2024-04-19T20:58:02Z #10 [ 5/10] COPY environment.yml /environment.yml -2024-04-19T20:58:02Z #10 DONE 0.1s -2024-04-19T20:58:02Z -2024-04-19T20:58:02Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-04-19T21:00:34Z #11 152.0 Transaction -2024-04-19T21:00:34Z #11 152.0 -2024-04-19T21:00:34Z #11 152.0 Prefix: /opt/conda/envs/birdy -2024-04-19T21:00:34Z #11 152.0 -2024-04-19T21:00:34Z #11 152.0 Updating specs: -2024-04-19T21:00:34Z #11 152.0 -2024-04-19T21:00:34Z #11 152.0 - xclim -2024-04-19T21:00:34Z #11 152.0 - ravenpy -2024-04-19T21:00:34Z #11 152.0 - python=3.10 -2024-04-19T21:00:34Z #11 152.0 -2024-04-19T21:00:34Z #11 152.0 -2024-04-19T21:00:34Z #11 152.1 Package Version Build Channel Size -2024-04-19T21:00:34Z #11 152.1 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-19T21:00:34Z #11 152.1 Install: -2024-04-19T21:00:34Z #11 152.1 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-19T21:00:34Z #11 152.1 -2024-04-19T21:00:34Z #11 152.1 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-04-19T21:00:34Z #11 152.1 + python_abi 3.10 4_cp310 conda-forge 6kB -2024-04-19T21:00:34Z #11 152.1 + libstdcxx-ng 13.2.0 h7e041cc_5 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + ld_impl_linux-64 2.40 h41732ed_0 conda-forge 705kB -2024-04-19T21:00:34Z #11 152.1 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB -2024-04-19T21:00:34Z #11 152.1 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB -2024-04-19T21:00:34Z #11 152.1 + mpi 1.0 impi conda-forge 7kB -2024-04-19T21:00:34Z #11 152.1 + libgomp 13.2.0 h807b86a_5 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + impi_rt 2021.12.0 ha770c72_535 conda-forge 37MB -2024-04-19T21:00:34Z #11 152.1 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-04-19T21:00:34Z #11 152.1 + libgcc-ng 13.2.0 h807b86a_5 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-04-19T21:00:34Z #11 152.1 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-04-19T21:00:34Z #11 152.1 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-04-19T21:00:34Z #11 152.1 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-04-19T21:00:34Z #11 152.1 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-04-19T21:00:34Z #11 152.1 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-04-19T21:00:34Z #11 152.1 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-04-19T21:00:34Z #11 152.1 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-04-19T21:00:34Z #11 152.1 + aws-c-common 0.9.15 hd590300_0 conda-forge 227kB -2024-04-19T21:00:34Z #11 152.1 + c-ares 1.28.1 hd590300_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + libev 4.33 hd590300_2 conda-forge 113kB -2024-04-19T21:00:34Z #11 152.1 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-04-19T21:00:34Z #11 152.1 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-04-19T21:00:34Z #11 152.1 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-04-19T21:00:34Z #11 152.1 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-04-19T21:00:34Z #11 152.1 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-04-19T21:00:34Z #11 152.1 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-04-19T21:00:34Z #11 152.1 + lzo 2.10 hd590300_1001 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-04-19T21:00:34Z #11 152.1 + giflib 5.2.2 hd590300_0 conda-forge 77kB -2024-04-19T21:00:34Z #11 152.1 + snappy 1.2.0 hdb0a2a9_1 conda-forge 42kB -2024-04-19T21:00:34Z #11 152.1 + libwebp-base 1.4.0 hd590300_0 conda-forge 439kB -2024-04-19T21:00:34Z #11 152.1 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-04-19T21:00:34Z #11 152.1 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-04-19T21:00:34Z #11 152.1 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + openssl 3.2.1 hd590300_1 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + libxcrypt 4.4.36 hd590300_1 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-04-19T21:00:34Z #11 152.1 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-04-19T21:00:34Z #11 152.1 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-04-19T21:00:34Z #11 152.1 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-04-19T21:00:34Z #11 152.1 + icu 73.2 h59595ed_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-04-19T21:00:34Z #11 152.1 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB -2024-04-19T21:00:34Z #11 152.1 + libdeflate 1.20 hd590300_0 conda-forge 72kB -2024-04-19T21:00:34Z #11 152.1 + libaec 1.1.3 h59595ed_0 conda-forge 35kB -2024-04-19T21:00:34Z #11 152.1 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-04-19T21:00:34Z #11 152.1 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-04-19T21:00:34Z #11 152.1 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-04-19T21:00:34Z #11 152.1 + libgfortran5 13.2.0 ha4646dd_5 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-04-19T21:00:34Z #11 152.1 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB -2024-04-19T21:00:34Z #11 152.1 + libuuid 2.38.1 h0b41bf4_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + libnsl 2.0.1 hd590300_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-04-19T21:00:34Z #11 152.1 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB -2024-04-19T21:00:34Z #11 152.1 + spdlog 1.12.0 hd2e6256_2 conda-forge 188kB -2024-04-19T21:00:34Z #11 152.1 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-04-19T21:00:34Z #11 152.1 + aws-checksums 0.1.18 hce8ee76_3 conda-forge 50kB -2024-04-19T21:00:34Z #11 152.1 + aws-c-compression 0.2.18 hce8ee76_3 conda-forge 19kB -2024-04-19T21:00:34Z #11 152.1 + aws-c-sdkutils 0.1.15 hce8ee76_3 conda-forge 55kB -2024-04-19T21:00:34Z #11 152.1 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-04-19T21:00:34Z #11 152.1 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-04-19T21:00:34Z #11 152.1 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-04-19T21:00:34Z #11 152.1 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-04-19T21:00:34Z #11 152.1 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-04-19T21:00:34Z #11 152.1 + s2n 1.4.12 h06160fa_0 conda-forge 347kB -2024-04-19T21:00:34Z #11 152.1 + aws-c-cal 0.6.11 heb1d5e4_0 conda-forge 46kB -2024-04-19T21:00:34Z #11 152.1 + expat 2.6.2 h59595ed_0 conda-forge 138kB -2024-04-19T21:00:34Z #11 152.1 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB -2024-04-19T21:00:34Z #11 152.1 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-04-19T21:00:34Z #11 152.1 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-04-19T21:00:34Z #11 152.1 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-04-19T21:00:34Z #11 152.1 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-04-19T21:00:34Z #11 152.1 + libssh2 1.11.0 h0841786_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + tk 8.6.13 noxft_h4845f30_101 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + libsqlite 3.45.3 h2797004_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + pcre2 10.43 hcad00b1_0 conda-forge 951kB -2024-04-19T21:00:34Z #11 152.1 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-04-19T21:00:34Z #11 152.1 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2024-04-19T21:00:34Z #11 152.1 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + libgfortran-ng 13.2.0 h69a702a_5 conda-forge 24kB -2024-04-19T21:00:34Z #11 152.1 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-04-19T21:00:34Z #11 152.1 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-04-19T21:00:34Z #11 152.1 + readline 8.2 h8228510_1 conda-forge 281kB -2024-04-19T21:00:34Z #11 152.1 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-04-19T21:00:34Z #11 152.1 + libxml2 2.12.6 h232c23b_2 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + ucx 1.15.0 ha691c75_8 conda-forge 7MB -2024-04-19T21:00:34Z #11 152.1 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-04-19T21:00:34Z #11 152.1 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-04-19T21:00:34Z #11 152.1 + xorg-libx11 1.8.9 h8ee46fc_0 conda-forge 828kB -2024-04-19T21:00:34Z #11 152.1 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-04-19T21:00:34Z #11 152.1 + aws-c-io 0.14.7 hbfbeace_6 conda-forge 158kB -2024-04-19T21:00:34Z #11 152.1 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-04-19T21:00:34Z #11 152.1 + libglib 2.80.0 hf2295e7_5 conda-forge 4MB -2024-04-19T21:00:34Z #11 152.1 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-04-19T21:00:34Z #11 152.1 + orc 2.0.0 h17fec99_1 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-04-19T21:00:34Z #11 152.1 + blosc 1.21.5 hc2324a3_1 conda-forge 49kB -2024-04-19T21:00:34Z #11 152.1 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB -2024-04-19T21:00:34Z #11 152.1 + libopenblas 0.3.27 pthreads_h413a1c8_0 conda-forge 6MB -2024-04-19T21:00:34Z #11 152.1 + krb5 1.21.2 h659d440_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + sqlite 3.45.3 h2c6b66d_0 conda-forge 849kB -2024-04-19T21:00:34Z #11 152.1 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-04-19T21:00:34Z #11 152.1 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-04-19T21:00:34Z #11 152.1 + libgrpc 1.62.2 h15f2491_0 conda-forge 7MB -2024-04-19T21:00:34Z #11 152.1 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-04-19T21:00:34Z #11 152.1 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-04-19T21:00:34Z #11 152.1 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-04-19T21:00:34Z #11 152.1 + aws-c-event-stream 0.4.2 h01f5eca_8 conda-forge 54kB -2024-04-19T21:00:34Z #11 152.1 + aws-c-http 0.8.1 hdb68c23_10 conda-forge 195kB -2024-04-19T21:00:34Z #11 152.1 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-04-19T21:00:34Z #11 152.1 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-04-19T21:00:34Z #11 152.1 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-04-19T21:00:34Z #11 152.1 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-04-19T21:00:34Z #11 152.1 + libblas 3.9.0 22_linux64_openblas conda-forge 15kB -2024-04-19T21:00:34Z #11 152.1 + libpq 16.2 h33b98f1_1 conda-forge 3MB -2024-04-19T21:00:34Z #11 152.1 + libcurl 8.7.1 hca28451_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + aws-c-mqtt 0.10.3 h50844eb_4 conda-forge 164kB -2024-04-19T21:00:34Z #11 152.1 + aws-c-auth 0.7.17 he0b1f16_2 conda-forge 104kB -2024-04-19T21:00:34Z #11 152.1 + libcblas 3.9.0 22_linux64_openblas conda-forge 14kB -2024-04-19T21:00:34Z #11 152.1 + liblapack 3.9.0 22_linux64_openblas conda-forge 14kB -2024-04-19T21:00:34Z #11 152.1 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB -2024-04-19T21:00:34Z #11 152.1 + libgoogle-cloud 2.22.0 h9be4e54_1 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + cfitsio 4.4.0 hbdc6101_1 conda-forge 914kB -2024-04-19T21:00:34Z #11 152.1 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB -2024-04-19T21:00:34Z #11 152.1 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-04-19T21:00:34Z #11 152.1 + proj 9.3.1 h1d62c97_0 conda-forge 3MB -2024-04-19T21:00:34Z #11 152.1 + aws-c-s3 0.5.7 hb7bd14b_1 conda-forge 108kB -2024-04-19T21:00:34Z #11 152.1 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB -2024-04-19T21:00:34Z #11 152.1 + libgoogle-cloud-storage 2.22.0 hc7a4891_1 conda-forge 749kB -2024-04-19T21:00:34Z #11 152.1 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-04-19T21:00:34Z #11 152.1 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-04-19T21:00:34Z #11 152.1 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB -2024-04-19T21:00:34Z #11 152.1 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB -2024-04-19T21:00:34Z #11 152.1 + aws-crt-cpp 0.26.6 hf567797_4 conda-forge 335kB -2024-04-19T21:00:34Z #11 152.1 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB -2024-04-19T21:00:34Z #11 152.1 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-04-19T21:00:34Z #11 152.1 + aws-sdk-cpp 1.11.267 hbf3e495_6 conda-forge 4MB -2024-04-19T21:00:34Z #11 152.1 + esmf 8.6.0 nompi_h7b237b1_0 conda-forge 24MB -2024-04-19T21:00:34Z #11 152.1 + tiledb 2.21.2 h8a5282e_1 conda-forge 4MB -2024-04-19T21:00:34Z #11 152.1 + libarrow 15.0.2 he70291f_3_cpu conda-forge 8MB -2024-04-19T21:00:34Z #11 152.1 + libparquet 15.0.2 h6a7eafb_3_cpu conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + libarrow-gandiva 15.0.2 hd4ab825_3_cpu conda-forge 896kB -2024-04-19T21:00:34Z #11 152.1 + libarrow-flight 15.0.2 hd42f311_3_cpu conda-forge 506kB -2024-04-19T21:00:34Z #11 152.1 + libarrow-acero 15.0.2 hac33072_3_cpu conda-forge 598kB -2024-04-19T21:00:34Z #11 152.1 + libarrow-flight-sql 15.0.2 h9241762_3_cpu conda-forge 195kB -2024-04-19T21:00:34Z #11 152.1 + libarrow-dataset 15.0.2 hac33072_3_cpu conda-forge 586kB -2024-04-19T21:00:34Z #11 152.1 + libarrow-substrait 15.0.2 h9241762_3_cpu conda-forge 519kB -2024-04-19T21:00:34Z #11 152.1 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-04-19T21:00:34Z #11 152.1 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-04-19T21:00:34Z #11 152.1 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-04-19T21:00:34Z #11 152.1 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-04-19T21:00:34Z #11 152.1 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-04-19T21:00:34Z #11 152.1 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB -2024-04-19T21:00:34Z #11 152.1 + fonts-conda-forge 1 0 conda-forge 4kB -2024-04-19T21:00:34Z #11 152.1 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-04-19T21:00:34Z #11 152.1 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB -2024-04-19T21:00:34Z #11 152.1 + python 3.10.14 hd12c33a_0_cpython conda-forge 26MB -2024-04-19T21:00:34Z #11 152.1 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-04-19T21:00:34Z #11 152.1 + poppler 24.03.0 h590f24d_0 conda-forge 2MB -2024-04-19T21:00:34Z #11 152.1 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB -2024-04-19T21:00:34Z #11 152.1 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB -2024-04-19T21:00:34Z #11 152.1 + setuptools 69.5.1 pyhd8ed1ab_0 conda-forge 502kB -2024-04-19T21:00:34Z #11 152.1 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-04-19T21:00:34Z #11 152.1 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB -2024-04-19T21:00:34Z #11 152.1 + joblib 1.4.0 pyhd8ed1ab_0 conda-forge 220kB -2024-04-19T21:00:34Z #11 152.1 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB -2024-04-19T21:00:34Z #11 152.1 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB -2024-04-19T21:00:34Z #11 152.1 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-19T21:00:34Z #11 152.1 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-04-19T21:00:34Z #11 152.1 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-04-19T21:00:34Z #11 152.1 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-19T21:00:34Z #11 152.1 + networkx 3.3 pyhd8ed1ab_1 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-04-19T21:00:34Z #11 152.1 + idna 3.7 pyhd8ed1ab_0 conda-forge 53kB -2024-04-19T21:00:34Z #11 152.1 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-04-19T21:00:34Z #11 152.1 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-04-19T21:00:34Z #11 152.1 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-04-19T21:00:34Z #11 152.1 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB -2024-04-19T21:00:34Z #11 152.1 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-04-19T21:00:34Z #11 152.1 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-04-19T21:00:34Z #11 152.1 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-04-19T21:00:34Z #11 152.1 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-04-19T21:00:34Z #11 152.1 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-04-19T21:00:34Z #11 152.1 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-04-19T21:00:34Z #11 152.1 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-04-19T21:00:34Z #11 152.1 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-04-19T21:00:34Z #11 152.1 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-04-19T21:00:34Z #11 152.1 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-19T21:00:34Z #11 152.1 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-04-19T21:00:34Z #11 152.1 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-04-19T21:00:34Z #11 152.1 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-04-19T21:00:34Z #11 152.1 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB -2024-04-19T21:00:34Z #11 152.1 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB -2024-04-19T21:00:34Z #11 152.1 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-04-19T21:00:34Z #11 152.1 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-04-19T21:00:34Z #11 152.1 + platformdirs 4.2.0 pyhd8ed1ab_0 conda-forge 20kB -2024-04-19T21:00:34Z #11 152.1 + typing_extensions 4.11.0 pyha770c72_0 conda-forge 38kB -2024-04-19T21:00:34Z #11 152.1 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-04-19T21:00:34Z #11 152.1 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB -2024-04-19T21:00:34Z #11 152.1 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB -2024-04-19T21:00:34Z #11 152.1 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-04-19T21:00:34Z #11 152.1 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-04-19T21:00:34Z #11 152.1 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-04-19T21:00:34Z #11 152.1 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-04-19T21:00:34Z #11 152.1 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-04-19T21:00:34Z #11 152.1 + pytools 2024.1.1 pyhd8ed1ab_0 conda-forge 71kB -2024-04-19T21:00:34Z #11 152.1 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-04-19T21:00:34Z #11 152.1 + typing-extensions 4.11.0 hd8ed1ab_0 conda-forge 10kB -2024-04-19T21:00:34Z #11 152.1 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB -2024-04-19T21:00:34Z #11 152.1 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-19T21:00:34Z #11 152.1 + jsonpickle 3.0.4 pyhd8ed1ab_0 conda-forge 39kB -2024-04-19T21:00:34Z #11 152.1 + mpi4py 3.1.6 py310h45b48a2_0 conda-forge 540kB -2024-04-19T21:00:34Z #11 152.1 + brotli-python 1.1.0 py310hc6cd4ac_1 conda-forge 349kB -2024-04-19T21:00:34Z #11 152.1 + lz4 4.3.3 py310h350c4a5_0 conda-forge 37kB -2024-04-19T21:00:34Z #11 152.1 + tornado 6.4 py310h2372a71_0 conda-forge 651kB -2024-04-19T21:00:34Z #11 152.1 + psutil 5.9.8 py310h2372a71_0 conda-forge 368kB -2024-04-19T21:00:34Z #11 152.1 + msgpack-python 1.0.7 py310hd41b1e2_0 conda-forge 197kB -2024-04-19T21:00:34Z #11 152.1 + markupsafe 2.1.5 py310h2372a71_0 conda-forge 24kB -2024-04-19T21:00:34Z #11 152.1 + unicodedata2 15.1.0 py310h2372a71_0 conda-forge 374kB -2024-04-19T21:00:34Z #11 152.1 + pillow 10.3.0 py310hf73ecf8_0 conda-forge 42MB -2024-04-19T21:00:34Z #11 152.1 + kiwisolver 1.4.5 py310hd41b1e2_1 conda-forge 73kB -2024-04-19T21:00:34Z #11 152.1 + llvmlite 0.42.0 py310h1b8f574_1 conda-forge 3MB -2024-04-19T21:00:34Z #11 152.1 + rtree 1.2.0 py310hbdcdc62_0 conda-forge 50kB -2024-04-19T21:00:34Z #11 152.1 + pyyaml 6.0.1 py310h2372a71_1 conda-forge 171kB -2024-04-19T21:00:34Z #11 152.1 + raven-hydro 0.2.4 py310h3ce4ad4_1 conda-forge 786kB -2024-04-19T21:00:34Z #11 152.1 + numpy 1.26.4 py310hb13e2d6_0 conda-forge 7MB -2024-04-19T21:00:34Z #11 152.1 + lxml 5.1.1 py310hf050c1a_0 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + multiprocess 0.70.16 py310h2372a71_0 conda-forge 243kB -2024-04-19T21:00:34Z #11 152.1 + pyproj 3.6.1 py310hd5c30f3_5 conda-forge 526kB -2024-04-19T21:00:34Z #11 152.1 + cytoolz 0.12.3 py310h2372a71_0 conda-forge 368kB -2024-04-19T21:00:34Z #11 152.1 + pydantic-core 2.18.1 py310hcb5633a_0 conda-forge 2MB -2024-04-19T21:00:34Z #11 152.1 + fonttools 4.51.0 py310h2372a71_0 conda-forge 2MB -2024-04-19T21:00:34Z #11 152.1 + pyarrow 15.0.2 py310hc7d9cee_3_cpu conda-forge 5MB -2024-04-19T21:00:34Z #11 152.1 + contourpy 1.2.1 py310hd41b1e2_0 conda-forge 242kB -2024-04-19T21:00:34Z #11 152.1 + gdal 3.8.4 py310he073c5f_5 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + cftime 1.6.3 py310h1f7b6fc_0 conda-forge 247kB -2024-04-19T21:00:34Z #11 152.1 + numba 0.59.1 py310h7dc5dd1_0 conda-forge 4MB -2024-04-19T21:00:34Z #11 152.1 + bottleneck 1.3.8 py310h1f7b6fc_0 conda-forge 125kB -2024-04-19T21:00:34Z #11 152.1 + h5py 3.11.0 nompi_py310h65828d5_100 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + pandas 2.2.2 py310hcc13569_0 conda-forge 13MB -2024-04-19T21:00:34Z #11 152.1 + shapely 2.0.4 py310hc3e127f_0 conda-forge 481kB -2024-04-19T21:00:34Z #11 152.1 + scipy 1.13.0 py310hb13e2d6_0 conda-forge 16MB -2024-04-19T21:00:34Z #11 152.1 + matplotlib-base 3.8.4 py310h62c0568_0 conda-forge 7MB -2024-04-19T21:00:34Z #11 152.1 + pyogrio 0.7.2 py310h0a1e91f_1 conda-forge 635kB -2024-04-19T21:00:34Z #11 152.1 + netcdf4 1.6.5 nompi_py310hba70d50_100 conda-forge 549kB -2024-04-19T21:00:34Z #11 152.1 + fiona 1.9.6 py310h0a1e91f_0 conda-forge 962kB -2024-04-19T21:00:34Z #11 152.1 + scikit-learn 1.4.2 py310h1fdf081_0 conda-forge 9MB -2024-04-19T21:00:34Z #11 152.1 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-04-19T21:00:34Z #11 152.1 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-04-19T21:00:34Z #11 152.1 + yamale 5.0.0 pyhca7485f_0 conda-forge 45kB -2024-04-19T21:00:34Z #11 152.1 + dask-core 2024.4.1 pyhd8ed1ab_0 conda-forge 881kB -2024-04-19T21:00:34Z #11 152.1 + esmpy 8.6.0 pyhc1e730c_0 conda-forge 2MB -2024-04-19T21:00:34Z #11 152.1 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-04-19T21:00:34Z #11 152.1 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-04-19T21:00:34Z #11 152.1 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-04-19T21:00:34Z #11 152.1 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-04-19T21:00:34Z #11 152.1 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-04-19T21:00:34Z #11 152.1 + pydantic 2.7.0 pyhd8ed1ab_0 conda-forge 281kB -2024-04-19T21:00:34Z #11 152.1 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-04-19T21:00:34Z #11 152.1 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB -2024-04-19T21:00:34Z #11 152.1 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB -2024-04-19T21:00:34Z #11 152.1 + geopandas-base 0.14.3 pyha770c72_0 conda-forge 1MB -2024-04-19T21:00:34Z #11 152.1 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-04-19T21:00:34Z #11 152.1 + properscoring 0.1 py_0 conda-forge 22kB -2024-04-19T21:00:34Z #11 152.1 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-04-19T21:00:34Z #11 152.1 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-04-19T21:00:34Z #11 152.1 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-04-19T21:00:34Z #11 152.1 + bokeh 3.4.1 pyhd8ed1ab_0 conda-forge 5MB -2024-04-19T21:00:34Z #11 152.1 + branca 0.7.1 pyhd8ed1ab_0 conda-forge 29kB -2024-04-19T21:00:34Z #11 152.1 + dask-expr 1.0.11 pyhd8ed1ab_0 conda-forge 143kB -2024-04-19T21:00:34Z #11 152.1 + distributed 2024.4.1 pyhd8ed1ab_0 conda-forge 794kB -2024-04-19T21:00:34Z #11 152.1 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-04-19T21:00:34Z #11 152.1 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-04-19T21:00:34Z #11 152.1 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-04-19T21:00:34Z #11 152.1 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-04-19T21:00:34Z #11 152.1 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-04-19T21:00:34Z #11 152.1 + dask 2024.4.1 pyhd8ed1ab_0 conda-forge 7kB -2024-04-19T21:00:34Z #11 152.1 + xesmf 0.8.5 pyhd8ed1ab_0 conda-forge 45kB -2024-04-19T21:00:34Z #11 152.1 + geopandas 0.14.3 pyhd8ed1ab_0 conda-forge 8kB -2024-04-19T21:00:34Z #11 152.1 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-04-19T21:00:34Z #11 152.1 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-04-19T21:00:34Z #11 152.1 + rasterio 1.3.9 py310hedc89e0_2 conda-forge 7MB -2024-04-19T21:00:34Z #11 152.1 + statsmodels 0.14.1 py310h1f7b6fc_0 conda-forge 11MB -2024-04-19T21:00:34Z #11 152.1 + rioxarray 0.15.4 pyhd8ed1ab_0 conda-forge 51kB -2024-04-19T21:00:34Z #11 152.1 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB -2024-04-19T21:00:34Z #11 152.1 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-04-19T21:00:34Z #11 152.1 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB -2024-04-19T21:00:34Z #11 152.1 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-04-19T21:00:34Z #11 152.1 + ravenpy 0.14.0 pyhd8ed1ab_1 conda-forge 6MB -2024-04-19T21:00:34Z #11 152.1 -2024-04-19T21:00:34Z #11 152.1 Summary: -2024-04-19T21:00:34Z #11 152.1 -2024-04-19T21:00:34Z #11 152.1 Install: 299 packages -2024-04-19T21:00:34Z #11 152.1 -2024-04-19T21:00:34Z #11 152.1 Total download: 468MB -2024-04-19T21:00:34Z #11 152.1 -2024-04-19T21:00:34Z #11 152.1 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-19T21:00:34Z #11 152.1 -2024-04-19T21:00:34Z #11 152.1 -2024-04-19T21:02:10Z #11 248.1 -2024-04-19T21:02:10Z #11 248.1 Looking for: ['xclim', 'ravenpy', 'python=3.10'] -2024-04-19T21:02:10Z #11 248.1 -2024-04-19T21:02:10Z #11 248.1 -2024-04-19T21:02:10Z #11 248.1 Downloading and Extracting Packages: ...working... done -2024-04-19T21:02:14Z #11 248.1 Preparing transaction: ...working... done -2024-04-19T21:02:28Z #11 252.7 Verifying transaction: ...working... done -2024-04-19T21:03:08Z #11 266.7 Executing transaction: ...working... done -2024-04-19T21:03:08Z #11 306.0 -2024-04-19T21:03:08Z #11 306.0 To activate this environment, use -2024-04-19T21:03:08Z #11 306.0 -2024-04-19T21:03:08Z #11 306.0 $ mamba activate birdy -2024-04-19T21:03:08Z #11 306.0 -2024-04-19T21:03:08Z #11 306.0 To deactivate an active environment, use -2024-04-19T21:03:08Z #11 306.0 -2024-04-19T21:03:08Z #11 306.0 $ mamba deactivate -2024-04-19T21:03:08Z #11 306.0 -2024-04-19T21:03:11Z #11 309.5 Channels: -2024-04-19T21:03:11Z #11 309.5 - conda-forge -2024-04-19T21:03:11Z #11 309.5 - cdat -2024-04-19T21:03:11Z #11 309.5 - bokeh -2024-04-19T21:03:11Z #11 309.5 - pyviz/label/dev -2024-04-19T21:03:11Z #11 309.5 - defaults -2024-04-19T21:03:11Z #11 309.5 Platform: linux-64 -2024-04-19T21:03:45Z #11 309.5 Collecting package metadata (repodata.json): ...working... done -2024-04-19T21:04:50Z #11 343.2 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.3 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:04:50Z #11 408.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:52Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:53Z #11 471.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 472.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:54Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:05:55Z #11 473.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-19T21:08:40Z #11 638.5 done -2024-04-19T21:10:38Z #11 756.1 -2024-04-19T21:10:38Z #11 756.1 Downloading and Extracting Packages: ...working... done -2024-04-19T21:10:45Z #11 756.1 Preparing transaction: ...working... done -2024-04-19T21:11:08Z #11 763.2 Verifying transaction: ...working... done -2024-04-19T21:11:59Z #11 786.4 Executing transaction: ...working... /opt/conda/envs/birdy/lib/python3.10/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-04-19T21:11:59Z #11 837.4 given by the platformdirs library. To remove this warning and -2024-04-19T21:11:59Z #11 837.4 see the appropriate new directories, set the environment variable -2024-04-19T21:11:59Z #11 837.4 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-04-19T21:11:59Z #11 837.4 The use of platformdirs will be the default in `jupyter_core` v6 -2024-04-19T21:11:59Z #11 837.4 from . import paths -2024-04-19T21:11:59Z #11 837.4 Enabling: jupyterlab_git -2024-04-19T21:11:59Z #11 837.4 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-19T21:11:59Z #11 837.4 - Validating... -2024-04-19T21:11:59Z #11 837.4 jupyterlab_git OK -2024-04-19T21:11:59Z #11 837.4 -2024-04-19T21:11:59Z #11 837.4 done -2024-04-19T21:12:44Z #11 844.8 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-04-19T21:12:44Z #11 883.0 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.dumifk6t.requirements.txt', '--exists-action=b'] -2024-04-19T21:12:44Z #11 883.0 Pip subprocess output: -2024-04-19T21:12:44Z #11 883.0 Collecting xncml (from -r /condaenv.dumifk6t.requirements.txt (line 1)) -2024-04-19T21:12:44Z #11 883.0 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-04-19T21:12:44Z #11 883.0 Collecting hsclient (from -r /condaenv.dumifk6t.requirements.txt (line 2)) -2024-04-19T21:12:44Z #11 883.0 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-04-19T21:12:44Z #11 883.0 Collecting fstd2nc (from -r /condaenv.dumifk6t.requirements.txt (line 3)) -2024-04-19T21:12:44Z #11 883.0 Downloading fstd2nc-0.20240401.0.tar.gz (166 kB) -2024-04-19T21:12:44Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.9/166.9 kB 10.4 MB/s eta 0:00:00 -2024-04-19T21:12:44Z #11 883.0 Installing build dependencies: started -2024-04-19T21:12:44Z #11 883.0 Installing build dependencies: finished with status 'done' -2024-04-19T21:12:44Z #11 883.0 Getting requirements to build wheel: started -2024-04-19T21:12:44Z #11 883.0 Getting requirements to build wheel: finished with status 'done' -2024-04-19T21:12:44Z #11 883.0 Installing backend dependencies: started -2024-04-19T21:12:44Z #11 883.0 Installing backend dependencies: finished with status 'done' -2024-04-19T21:12:44Z #11 883.0 Preparing metadata (pyproject.toml): started -2024-04-19T21:12:44Z #11 883.0 Preparing metadata (pyproject.toml): finished with status 'done' -2024-04-19T21:12:44Z #11 883.0 Collecting figanos (from -r /condaenv.dumifk6t.requirements.txt (line 4)) -2024-04-19T21:12:44Z #11 883.0 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-04-19T21:12:44Z #11 883.0 Collecting pixiedust (from -r /condaenv.dumifk6t.requirements.txt (line 5)) -2024-04-19T21:12:44Z #11 883.0 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-04-19T21:12:44Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 21.2 MB/s eta 0:00:00 -2024-04-19T21:12:44Z #11 883.0 Preparing metadata (setup.py): started -2024-04-19T21:12:44Z #11 883.0 Preparing metadata (setup.py): finished with status 'done' -2024-04-19T21:12:44Z #11 883.0 Collecting ipython_blocking (from -r /condaenv.dumifk6t.requirements.txt (line 6)) -2024-04-19T21:12:44Z #11 883.0 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-19T21:12:44Z #11 883.0 Collecting jupyternotify (from -r /condaenv.dumifk6t.requirements.txt (line 7)) -2024-04-19T21:12:44Z #11 883.0 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-04-19T21:12:44Z #11 883.0 Preparing metadata (setup.py): started -2024-04-19T21:12:44Z #11 883.0 Preparing metadata (setup.py): finished with status 'done' -2024-04-19T21:12:44Z #11 883.0 Collecting jupyterlab-logout (from -r /condaenv.dumifk6t.requirements.txt (line 8)) -2024-04-19T21:12:44Z #11 883.0 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-04-19T21:12:44Z #11 883.0 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.dumifk6t.requirements.txt (line 9)) -2024-04-19T21:12:44Z #11 883.0 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-04-19T21:12:44Z #11 883.0 Collecting pytest-tornasync (from -r /condaenv.dumifk6t.requirements.txt (line 10)) -2024-04-19T21:12:44Z #11 883.0 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-04-19T21:12:44Z #11 883.0 Collecting xmltodict (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) -2024-04-19T21:12:44Z #11 883.0 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-04-19T21:12:44Z #11 883.0 Collecting xsdata (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) -2024-04-19T21:12:44Z #11 883.0 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (2023.8.0) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (1.6.3) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (1.6.2) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (2024.4.1) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (5.9.8) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (69.5.1) -2024-04-19T21:12:44Z #11 883.0 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) -2024-04-19T21:12:44Z #11 883.0 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.31.0) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.0.0) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc->-r /condaenv.dumifk6t.requirements.txt (line 3)) (1.24.4) -2024-04-19T21:12:44Z #11 883.0 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.dumifk6t.requirements.txt (line 3)) -2024-04-19T21:12:44Z #11 883.0 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.23.0) -2024-04-19T21:12:44Z #11 883.0 Collecting cairosvg (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) -2024-04-19T21:12:44Z #11 883.0 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.14.3) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.8.4) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.1.4) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (4.2.0) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (6.0.1) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.13.2) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.22.0) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.47.0) -2024-04-19T21:12:44Z #11 883.0 Collecting geojson (from pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) -2024-04-19T21:12:44Z #11 883.0 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-04-19T21:12:44Z #11 883.0 Collecting astunparse (from pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) -2024-04-19T21:12:44Z #11 883.0 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) (3.6) -2024-04-19T21:12:44Z #11 883.0 Collecting colour (from pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) -2024-04-19T21:12:44Z #11 883.0 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (8.22.2) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (8.1.2) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.7.4) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (1.0.0) -2024-04-19T21:12:44Z #11 883.0 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) -2024-04-19T21:12:44Z #11 883.0 Downloading jupyterlab-4.1.6-py3-none-any.whl.metadata (16 kB) -2024-04-19T21:12:44Z #11 883.0 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-04-19T21:12:44Z #11 883.0 Collecting jupyterlab-logout (from -r /condaenv.dumifk6t.requirements.txt (line 8)) -2024-04-19T21:12:44Z #11 883.0 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.6.1) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (3.6.7) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (24.0) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (6.4) -2024-04-19T21:12:44Z #11 883.0 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (5.7.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.26.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.14.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.2.4) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.8.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.0.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (6.5.6) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (3.1.3) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: tomli in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.0.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest-tornasync->-r /condaenv.dumifk6t.requirements.txt (line 10)) (8.1.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.dumifk6t.requirements.txt (line 3)) (2024.1) -2024-04-19T21:12:45Z #11 883.0 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) -2024-04-19T21:12:45Z #11 883.0 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.10/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.7.0) -2024-04-19T21:12:45Z #11 883.0 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) -2024-04-19T21:12:45Z #11 883.0 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (0.6.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pydantic-core==2.18.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.18.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (4.11.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.dumifk6t.requirements.txt (line 10)) (2.0.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pluggy<2.0,>=1.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.dumifk6t.requirements.txt (line 10)) (1.4.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: exceptiongroup>=1.0.0rc8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.dumifk6t.requirements.txt (line 10)) (1.2.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (24.0.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.3.8) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.9.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (8.1.7) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.0.4) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.0.6) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.59.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.23) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.4.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.13.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.10/site-packages (from xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.14.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (3.0.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (2024.3.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (1.4.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (0.12.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (7.1.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.9.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2024.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) (0.43.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from astunparse->pixiedust->-r /condaenv.dumifk6t.requirements.txt (line 5)) (1.16.0) -2024-04-19T21:12:45Z #11 883.0 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) -2024-04-19T21:12:45Z #11 883.0 Downloading cairocffi-1.6.1-py3-none-any.whl.metadata (3.3 kB) -2024-04-19T21:12:45Z #11 883.0 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) -2024-04-19T21:12:45Z #11 883.0 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.7.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (9.4.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.2.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.0.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pyshp>=2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.3.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pyproj>=3.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cartopy->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.5.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.2.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.12.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (4.51.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.4.5) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from matplotlib->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.1.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.9.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (5.1.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.19.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.1.7) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (3.0.42) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (2.17.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.6.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (5.14.3) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (4.9.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.2.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (4.0.10) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (3.0.10) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (5.5.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (6.6.3) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (7.16.3) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (6.29.3) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (7.4.9) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (5.10.4) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (3.3.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (3.7) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2.0.7) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (2024.2.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from requests-oauthlib->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) (3.2.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.3) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.34.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2023.8.12) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-image->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.4) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (23.2.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.1.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.7.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (4.0.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (3.17.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.8.4) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.1.5) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.4) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (1.6.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (24.0.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (4.3.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: argon2-cffi>=21.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (23.1.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.10.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-server-terminals>=0.4.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.5.3) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: overrides>=5.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (7.7.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: prometheus-client>=0.9 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.20.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.8.3) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.18.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: websocket-client>=1.7 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.7.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.9.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.8.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.5.9) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.14.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.9.25) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (4.21.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (4.12.3) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (6.1.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (0.3.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (3.0.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (1.5.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (2.19.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.10/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.2.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.2.4) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.10/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.dumifk6t.requirements.txt (line 1)) (1.0.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.7.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.10/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.2.13) -2024-04-19T21:12:45Z #11 883.0 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) -2024-04-19T21:12:45Z #11 883.0 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.4.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (3.4.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (1.16.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.5.1) -2024-04-19T21:12:45Z #11 883.0 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.dumifk6t.requirements.txt (line 2)) -2024-04-19T21:12:45Z #11 883.0 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (1.8.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.42.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (2.4.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (2.0.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (2.4.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.10/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.dumifk6t.requirements.txt (line 6)) (0.2.2) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (0.5.6) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.3.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.10/site-packages (from argon2-cffi>=21.1->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (21.2.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.10/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.dumifk6t.requirements.txt (line 4)) (2.22) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2023.12.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.34.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.18.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.0.7) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.1.4) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.1.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (22.1.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (0.19.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.dumifk6t.requirements.txt (line 7)) (2.5) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.5.1) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (20.11.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.4) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.3.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.13) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (1.3.0) -2024-04-19T21:12:45Z #11 883.0 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.10/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.dumifk6t.requirements.txt (line 8)) (2.9.0.20240316) -2024-04-19T21:12:45Z #11 883.0 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 47.9 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.5 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 36.0 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 55.0 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 5.3 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading xsdata-24.4-py3-none-any.whl (229 kB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 22.9 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 24.5 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Downloading cairocffi-1.6.1-py3-none-any.whl (75 kB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.1/75.1 kB 9.4 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-04-19T21:12:45Z #11 883.0 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 28.0 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-04-19T21:12:45Z #11 883.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 4.7 MB/s eta 0:00:00 -2024-04-19T21:12:45Z #11 883.0 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify -2024-04-19T21:12:45Z #11 883.0 Building wheel for fstd2nc (pyproject.toml): started -2024-04-19T21:12:45Z #11 883.0 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-04-19T21:12:45Z #11 883.0 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.0-py3-none-any.whl size=169076 sha256=ed9ee59ae6bd4e1354b2df1704edc6a42cf5aee26b3e4696fd17e2a3e742e455 -2024-04-19T21:12:45Z #11 883.0 Stored in directory: /root/.cache/pip/wheels/b7/e5/e2/65589bc6ca947390d3d694cdc195ca6662e0448bb58d970eb6 -2024-04-19T21:12:45Z #11 883.0 Building wheel for pixiedust (setup.py): started -2024-04-19T21:12:45Z #11 883.0 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-04-19T21:12:45Z #11 883.0 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=69b80ee4114b4bc1f4d6cdc41dbd6766aaea16e22278ba5ff4ff17cc862fec47 -2024-04-19T21:12:45Z #11 883.0 Stored in directory: /root/.cache/pip/wheels/e7/c8/bb/ea11f2bc243510793a9156bdd7ca8c8af0cb9890a714dd9453 -2024-04-19T21:12:45Z #11 883.0 Building wheel for jupyternotify (setup.py): started -2024-04-19T21:12:45Z #11 883.0 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-04-19T21:12:45Z #11 883.0 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=5313a4ca1c0c1a2200b51252186e59fa578d090ecdd8d31e4e47c108c94ba963 -2024-04-19T21:12:45Z #11 883.0 Stored in directory: /root/.cache/pip/wheels/63/34/97/8a3823c623565678421dc47b1daa23bc4c723fa1b5c82c1801 -2024-04-19T21:12:45Z #11 883.0 Successfully built fstd2nc pixiedust jupyternotify -2024-04-19T21:12:45Z #11 883.0 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-04-19T21:12:45Z #11 883.0 Successfully installed astunparse-1.6.3 cairocffi-1.6.1 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.0 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 -2024-04-19T21:12:45Z #11 883.0 -2024-04-19T21:12:45Z #11 883.0 done -2024-04-19T21:12:45Z #11 883.0 # -2024-04-19T21:12:45Z #11 883.0 # To activate this environment, use -2024-04-19T21:12:45Z #11 883.0 # -2024-04-19T21:12:45Z #11 883.0 # $ conda activate birdy -2024-04-19T21:12:45Z #11 883.0 # -2024-04-19T21:12:45Z #11 883.0 # To deactivate an active environment, use -2024-04-19T21:12:45Z #11 883.0 # -2024-04-19T21:12:45Z #11 883.0 # $ conda deactivate -2024-04-19T21:12:45Z #11 883.0 -2024-04-19T21:13:01Z #11 899.2 Will remove 785 (1.22 GB) tarball(s). -2024-04-19T21:13:01Z #11 899.2 Will remove 1 index cache(s). -2024-04-19T21:13:01Z #11 899.2 Will remove 148 (1.32 GB) package(s). -2024-04-19T21:13:01Z #11 899.2 There are no tempfile(s) to remove. -2024-04-19T21:13:01Z #11 899.2 There are no logfile(s) to remove. -2024-04-19T21:13:02Z #11 DONE 900.1s -2024-04-19T21:13:02Z -2024-04-19T21:13:02Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2024-04-19T21:13:03Z #12 1.423 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-04-19T21:13:03Z #12 DONE 1.6s -2024-04-19T21:13:03Z -2024-04-19T21:13:03Z #13 [ 8/10] RUN jupyter lab build -2024-04-19T21:13:05Z #13 2.001 [LabBuildApp] JupyterLab 3.6.7 -2024-04-19T21:13:05Z #13 2.002 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2024-04-19T21:13:06Z #13 2.663 [LabBuildApp] Building jupyterlab assets (production, minimized) -2024-04-19T21:13:06Z #13 2.677 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. -2024-04-19T21:13:06Z #13 2.677 -2024-04-19T21:15:25Z #13 2.680 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ -2024-04-19T21:15:25Z #13 DONE 141.7s -2024-04-19T21:15:25Z -2024-04-19T21:15:25Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-04-19T21:15:26Z #14 0.732 Enabling: voila -2024-04-19T21:15:26Z #14 0.732 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-19T21:15:26Z #14 0.735 - Validating... -2024-04-19T21:15:26Z #14 1.445 voila 0.5.6 OK -2024-04-19T21:15:27Z #14 1.833 Enabling: panel.io.jupyter_server_extension -2024-04-19T21:15:27Z #14 1.834 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-19T21:15:27Z #14 1.836 - Validating... -2024-04-19T21:15:29Z #14 3.798 panel.io.jupyter_server_extension OK -2024-04-19T21:15:29Z #14 4.317 - Validating... -2024-04-19T21:15:30Z #14 5.233 dask_labextension 6.2.0 OK -2024-04-19T21:15:30Z #14 5.233 - Validating... -2024-04-19T21:15:30Z #14 5.236 jupyter_archive 3.3.4 OK -2024-04-19T21:15:30Z #14 5.236 - Validating... -2024-04-19T21:15:30Z #14 5.236 jupyter_server_proxy 4.1.1-0.dev OK -2024-04-19T21:15:30Z #14 5.236 - Validating... -2024-04-19T21:15:30Z #14 5.425 jupyter_resource_usage 0.7.1 OK -2024-04-19T21:15:30Z #14 5.425 - Validating... -2024-04-19T21:15:30Z #14 5.484  X is jupyter_server_ydoc importable? -2024-04-19T21:15:31Z #14 5.484 - Validating... -2024-04-19T21:15:31Z #14 5.561 jupyterlab 3.6.7 OK -2024-04-19T21:15:31Z #14 5.561 - Validating... -2024-04-19T21:15:31Z #14 5.739 jupyterlab_jupytext OK -2024-04-19T21:15:31Z #14 5.739 - Validating... -2024-04-19T21:15:31Z #14 5.744 mamba_gator 5.2.1 OK -2024-04-19T21:15:31Z #14 5.744 - Validating... -2024-04-19T21:15:31Z #14 5.763 nbdime 4.0.1 OK -2024-04-19T21:15:31Z #14 5.763 - Validating... -2024-04-19T21:15:32Z #14 6.898 panel.io.jupyter_server_extension OK -2024-04-19T21:15:32Z #14 6.898 - Validating... -2024-04-19T21:15:32Z #14 6.968 nbresuse OK -2024-04-19T21:15:32Z #14 6.968 - Validating... -2024-04-19T21:15:32Z #14 7.229 voila.server_extension OK -2024-04-19T21:15:32Z #14 7.229 - Validating... -2024-04-19T21:15:32Z #14 7.231 jupyterlab_git OK -2024-04-19T21:15:32Z #14 7.231 - Validating... -2024-04-19T21:15:32Z #14 7.231 voila 0.5.6 OK -2024-04-19T21:15:32Z #14 7.232 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-04-19T21:15:32Z #14 7.232 dask_labextension  enabled  -2024-04-19T21:15:32Z #14 7.232 jupyter_archive  enabled  -2024-04-19T21:15:32Z #14 7.232 jupyter_server_proxy  enabled  -2024-04-19T21:15:32Z #14 7.232 jupyter_resource_usage  enabled  -2024-04-19T21:15:32Z #14 7.232 jupyter_server_ydoc  enabled  -2024-04-19T21:15:32Z #14 7.232 jupyterlab  enabled  -2024-04-19T21:15:32Z #14 7.232 jupyterlab_jupytext  enabled  -2024-04-19T21:15:32Z #14 7.232 mamba_gator  enabled  -2024-04-19T21:15:32Z #14 7.232 nbdime  enabled  -2024-04-19T21:15:32Z #14 7.232 panel.io.jupyter_server_extension  enabled  -2024-04-19T21:15:32Z #14 7.232 nbresuse  enabled  -2024-04-19T21:15:32Z #14 7.232 voila.server_extension  enabled  -2024-04-19T21:15:32Z #14 7.232 jupyterlab_git  enabled  -2024-04-19T21:15:32Z #14 7.232 voila  enabled  -2024-04-19T21:15:33Z #14 DONE 7.7s -2024-04-19T21:15:33Z -2024-04-19T21:15:33Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-04-19T21:15:33Z #15 0.347 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-04-19T21:15:33Z #15 0.369 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ... -2024-04-19T21:15:33Z #15 0.373 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-04-19T21:15:33Z #15 0.379 HTTP request sent, awaiting response... 200 OK -2024-04-19T21:15:33Z #15 0.452 Length: 9769 (9.5K) [text/plain] -2024-04-19T21:15:33Z #15 0.452 Saving to: ‘/usr/local/bin/start.sh’ -2024-04-19T21:15:33Z #15 0.452 -2024-04-19T21:15:33Z #15 0.452 0K ......... 100% 4.51M=0.002s -2024-04-19T21:15:33Z #15 0.455 -2024-04-19T21:15:33Z #15 0.455 2024-04-19 21:15:33 (4.51 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-04-19T21:15:33Z #15 0.455 -2024-04-19T21:15:33Z #15 0.458 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-04-19T21:15:33Z #15 0.483 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2024-04-19T21:15:33Z #15 0.485 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-04-19T21:15:33Z #15 0.490 HTTP request sent, awaiting response... 200 OK -2024-04-19T21:15:33Z #15 0.561 Length: 359 [text/plain] -2024-04-19T21:15:33Z #15 0.562 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-04-19T21:15:33Z #15 0.562 -2024-04-19T21:15:33Z #15 0.562 0K 100% 6.04M=0s -2024-04-19T21:15:33Z #15 0.563 -2024-04-19T21:15:33Z #15 0.563 2024-04-19 21:15:33 (6.04 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-04-19T21:15:33Z #15 0.563 -2024-04-19T21:15:33Z #15 0.566 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-04-19T21:15:33Z #15 0.591 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2024-04-19T21:15:33Z #15 0.595 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-04-19T21:15:33Z #15 0.600 HTTP request sent, awaiting response... 200 OK -2024-04-19T21:15:33Z #15 0.681 Length: 852 [text/plain] -2024-04-19T21:15:33Z #15 0.681 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-04-19T21:15:33Z #15 0.681 -2024-04-19T21:15:33Z #15 0.681 0K 100% 15.4M=0s -2024-04-19T21:15:33Z #15 0.682 -2024-04-19T21:15:33Z #15 0.682 2024-04-19 21:15:33 (15.4 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-04-19T21:15:33Z #15 0.682 -2024-04-19T21:15:33Z #15 0.686 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-04-19T21:15:33Z #15 0.710 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2024-04-19T21:15:33Z #15 0.712 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-04-19T21:15:33Z #15 0.733 HTTP request sent, awaiting response... 200 OK -2024-04-19T21:15:34Z #15 0.814 Length: 1034 (1.0K) [text/plain] -2024-04-19T21:15:34Z #15 0.815 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-04-19T21:15:34Z #15 0.815 -2024-04-19T21:15:34Z #15 0.815 0K . 100% 38.4M=0s -2024-04-19T21:15:34Z #15 0.819 -2024-04-19T21:15:34Z #15 0.819 2024-04-19 21:15:33 (38.4 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-04-19T21:15:34Z #15 0.819 -2024-04-19T21:15:34Z #15 0.825 --2024-04-19 21:15:33-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-04-19T21:15:34Z #15 0.849 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2024-04-19T21:15:34Z #15 0.850 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-04-19T21:15:34Z #15 0.856 HTTP request sent, awaiting response... 200 OK -2024-04-19T21:15:34Z #15 0.948 Length: 1836 (1.8K) [text/plain] -2024-04-19T21:15:34Z #15 0.948 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-04-19T21:15:34Z #15 0.948 -2024-04-19T21:15:34Z #15 0.948 0K . 100% 6.59M=0s -2024-04-19T21:15:34Z #15 0.951 -2024-04-19T21:15:34Z #15 0.951 2024-04-19 21:15:34 (6.59 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-04-19T21:15:34Z #15 0.951 -2024-04-19T21:15:34Z #15 1.181 --2024-04-19 21:15:34-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-04-19T21:15:34Z #15 1.205 Resolving downloads.globus.org (downloads.globus.org)... 52.85.132.96, 52.85.132.25, 52.85.132.85, ... -2024-04-19T21:15:34Z #15 1.210 Connecting to downloads.globus.org (downloads.globus.org)|52.85.132.96|:443... connected. -2024-04-19T21:15:34Z #15 1.218 HTTP request sent, awaiting response... 200 OK -2024-04-19T21:15:34Z #15 1.450 Length: 129825343 (124M) [application/x-tar] -2024-04-19T21:15:34Z #15 1.450 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-04-19T21:15:34Z #15 1.450 -2024-04-19T21:15:34Z #15 1.450 0K .......... .......... .......... .......... .......... 0% 46.6M 3s -2024-04-19T21:15:34Z #15 1.451 50K .......... .......... .......... .......... .......... 0% 31.9M 3s -2024-04-19T21:15:34Z #15 1.453 100K .......... .......... .......... .......... .......... 0% 5.40M 10s -2024-04-19T21:15:34Z #15 1.464 150K .......... .......... .......... .......... .......... 0% 28.9M 8s -2024-04-19T21:15:34Z #15 1.464 200K .......... .......... .......... .......... .......... 0% 41.5M 7s -2024-04-19T21:15:34Z #15 1.465 250K .......... .......... .......... .......... .......... 0% 37.1M 7s -2024-04-19T21:15:34Z #15 1.467 300K .......... .......... .......... .......... .......... 0% 25.0M 6s -2024-04-19T21:15:34Z #15 1.468 350K .......... .......... .......... .......... .......... 0% 34.4M 6s -2024-04-19T21:15:34Z #15 1.470 400K .......... .......... .......... .......... .......... 0% 30.8M 6s -2024-04-19T21:15:34Z #15 1.471 450K .......... .......... .......... .......... .......... 0% 33.4M 6s -2024-04-19T21:15:34Z #15 1.473 500K .......... .......... .......... .......... .......... 0% 27.6M 6s -2024-04-19T21:15:34Z #15 1.474 550K .......... .......... .......... .......... .......... 0% 23.3M 5s -2024-04-19T21:15:34Z #15 1.476 600K .......... .......... .......... .......... .......... 0% 29.9M 5s -2024-04-19T21:15:34Z #15 1.478 650K .......... .......... .......... .......... .......... 0% 37.0M 5s -2024-04-19T21:15:34Z #15 1.480 700K .......... .......... .......... .......... .......... 0% 45.0M 5s -2024-04-19T21:15:34Z #15 1.480 750K .......... .......... .......... .......... .......... 0% 43.2M 5s -2024-04-19T21:15:34Z #15 1.482 800K .......... .......... .......... .......... .......... 0% 36.7M 5s -2024-04-19T21:15:34Z #15 1.483 850K .......... .......... .......... .......... .......... 0% 20.7M 5s -2024-04-19T21:15:34Z #15 1.485 900K .......... .......... .......... .......... .......... 0% 25.2M 5s -2024-04-19T21:15:34Z #15 1.487 950K .......... .......... .......... .......... .......... 0% 35.6M 5s -2024-04-19T21:15:34Z #15 1.489 1000K .......... .......... .......... .......... .......... 0% 32.4M 5s -2024-04-19T21:15:34Z #15 1.490 1050K .......... .......... .......... .......... .......... 0% 21.5M 5s -2024-04-19T21:15:34Z #15 1.492 1100K .......... .......... .......... .......... .......... 0% 53.0M 5s -2024-04-19T21:15:34Z #15 1.493 1150K .......... .......... .......... .......... .......... 0% 37.7M 5s -2024-04-19T21:15:34Z #15 1.495 1200K .......... .......... .......... .......... .......... 0% 28.9M 5s -2024-04-19T21:15:34Z #15 1.503 1250K .......... .......... .......... .......... .......... 1% 93.5M 4s -2024-04-19T21:15:34Z #15 1.503 1300K .......... .......... .......... .......... .......... 1% 113M 4s -2024-04-19T21:15:34Z #15 1.503 1350K .......... .......... .......... .......... .......... 1% 112M 4s -2024-04-19T21:15:34Z #15 1.503 1400K .......... .......... .......... .......... .......... 1% 114M 4s -2024-04-19T21:15:34Z #15 1.503 1450K .......... .......... .......... .......... .......... 1% 111M 4s -2024-04-19T21:15:34Z #15 1.503 1500K .......... .......... .......... .......... .......... 1% 90.0M 4s -2024-04-19T21:15:34Z #15 1.503 1550K .......... .......... .......... .......... .......... 1% 123M 4s -2024-04-19T21:15:34Z #15 1.503 1600K .......... .......... .......... .......... .......... 1% 132M 4s -2024-04-19T21:15:34Z #15 1.503 1650K .......... .......... .......... .......... .......... 1% 120M 4s -2024-04-19T21:15:34Z #15 1.503 1700K .......... .......... .......... .......... .......... 1% 129M 4s -2024-04-19T21:15:34Z #15 1.503 1750K .......... .......... .......... .......... .......... 1% 97.0M 4s -2024-04-19T21:15:34Z #15 1.503 1800K .......... .......... .......... .......... .......... 1% 109M 3s -2024-04-19T21:15:34Z #15 1.503 1850K .......... .......... .......... .......... .......... 1% 109M 3s -2024-04-19T21:15:34Z #15 1.503 1900K .......... .......... .......... .......... .......... 1% 120M 3s -2024-04-19T21:15:34Z #15 1.503 1950K .......... .......... .......... .......... .......... 1% 135M 3s -2024-04-19T21:15:34Z #15 1.503 2000K .......... .......... .......... .......... .......... 1% 18.8M 3s -2024-04-19T21:15:34Z #15 1.505 2050K .......... .......... .......... .......... .......... 1% 57.2M 3s -2024-04-19T21:15:34Z #15 1.506 2100K .......... .......... .......... .......... .......... 1% 46.6M 3s -2024-04-19T21:15:34Z #15 1.511 2150K .......... .......... .......... .......... .......... 1% 116M 3s -2024-04-19T21:15:34Z #15 1.511 2200K .......... .......... .......... .......... .......... 1% 119M 3s -2024-04-19T21:15:34Z #15 1.511 2250K .......... .......... .......... .......... .......... 1% 117M 3s -2024-04-19T21:15:34Z #15 1.511 2300K .......... .......... .......... .......... .......... 1% 137M 3s -2024-04-19T21:15:34Z #15 1.511 2350K .......... .......... .......... .......... .......... 1% 103M 3s -2024-04-19T21:15:34Z #15 1.511 2400K .......... .......... .......... .......... .......... 1% 129M 3s -2024-04-19T21:15:34Z #15 1.511 2450K .......... .......... .......... .......... .......... 1% 108M 3s -2024-04-19T21:15:34Z #15 1.511 2500K .......... .......... .......... .......... .......... 2% 139M 3s -2024-04-19T21:15:34Z #15 1.511 2550K .......... .......... .......... .......... .......... 2% 39.7M 3s -2024-04-19T21:15:34Z #15 1.512 2600K .......... .......... .......... .......... .......... 2% 23.7M 3s -2024-04-19T21:15:34Z #15 1.514 2650K .......... .......... .......... .......... .......... 2% 63.8M 3s -2024-04-19T21:15:34Z #15 1.515 2700K .......... .......... .......... .......... .......... 2% 64.3M 3s -2024-04-19T21:15:34Z #15 1.515 2750K .......... .......... .......... .......... .......... 2% 48.4M 3s -2024-04-19T21:15:34Z #15 1.516 2800K .......... .......... .......... .......... .......... 2% 35.3M 3s -2024-04-19T21:15:34Z #15 1.523 2850K .......... .......... .......... .......... .......... 2% 112M 3s -2024-04-19T21:15:34Z #15 1.523 2900K .......... .......... .......... .......... .......... 2% 118M 3s -2024-04-19T21:15:34Z #15 1.523 2950K .......... .......... .......... .......... .......... 2% 94.3M 3s -2024-04-19T21:15:34Z #15 1.523 3000K .......... .......... .......... .......... .......... 2% 92.7M 3s -2024-04-19T21:15:34Z #15 1.523 3050K .......... .......... .......... .......... .......... 2% 127M 3s -2024-04-19T21:15:34Z #15 1.523 3100K .......... .......... .......... .......... .......... 2% 116M 3s -2024-04-19T21:15:34Z #15 1.523 3150K .......... .......... .......... .......... .......... 2% 130M 3s -2024-04-19T21:15:34Z #15 1.523 3200K .......... .......... .......... .......... .......... 2% 109M 3s -2024-04-19T21:15:34Z #15 1.523 3250K .......... .......... .......... .......... .......... 2% 106M 3s -2024-04-19T21:15:34Z #15 1.523 3300K .......... .......... .......... .......... .......... 2% 123M 3s -2024-04-19T21:15:34Z #15 1.523 3350K .......... .......... .......... .......... .......... 2% 115M 3s -2024-04-19T21:15:34Z #15 1.523 3400K .......... .......... .......... .......... .......... 2% 61.6M 3s -2024-04-19T21:15:34Z #15 1.523 3450K .......... .......... .......... .......... .......... 2% 30.6M 3s -2024-04-19T21:15:34Z #15 1.525 3500K .......... .......... .......... .......... .......... 2% 46.6M 3s -2024-04-19T21:15:34Z #15 1.526 3550K .......... .......... .......... .......... .......... 2% 48.0M 3s -2024-04-19T21:15:34Z #15 1.531 3600K .......... .......... .......... .......... .......... 2% 139M 3s -2024-04-19T21:15:34Z #15 1.531 3650K .......... .......... .......... .......... .......... 2% 146M 3s -2024-04-19T21:15:34Z #15 1.531 3700K .......... .......... .......... .......... .......... 2% 100M 3s -2024-04-19T21:15:34Z #15 1.531 3750K .......... .......... .......... .......... .......... 2% 117M 3s -2024-04-19T21:15:34Z #15 1.531 3800K .......... .......... .......... .......... .......... 3% 119M 3s -2024-04-19T21:15:34Z #15 1.531 3850K .......... .......... .......... .......... .......... 3% 110M 2s -2024-04-19T21:15:34Z #15 1.531 3900K .......... .......... .......... .......... .......... 3% 100M 2s -2024-04-19T21:15:34Z #15 1.531 3950K .......... .......... .......... .......... .......... 3% 116M 2s -2024-04-19T21:15:34Z #15 1.531 4000K .......... .......... .......... .......... .......... 3% 126M 2s -2024-04-19T21:15:34Z #15 1.531 4050K .......... .......... .......... .......... .......... 3% 75.2M 2s -2024-04-19T21:15:34Z #15 1.535 4100K .......... .......... .......... .......... .......... 3% 150M 2s -2024-04-19T21:15:34Z #15 1.535 4150K .......... .......... .......... .......... .......... 3% 141M 2s -2024-04-19T21:15:34Z #15 1.535 4200K .......... .......... .......... .......... .......... 3% 107M 2s -2024-04-19T21:15:34Z #15 1.535 4250K .......... .......... .......... .......... .......... 3% 124M 2s -2024-04-19T21:15:34Z #15 1.535 4300K .......... .......... .......... .......... .......... 3% 124M 2s -2024-04-19T21:15:34Z #15 1.535 4350K .......... .......... .......... .......... .......... 3% 134M 2s -2024-04-19T21:15:34Z #15 1.535 4400K .......... .......... .......... .......... .......... 3% 95.9M 2s -2024-04-19T21:15:34Z #15 1.535 4450K .......... .......... .......... .......... .......... 3% 120M 2s -2024-04-19T21:15:34Z #15 1.535 4500K .......... .......... .......... .......... .......... 3% 107M 2s -2024-04-19T21:15:34Z #15 1.539 4550K .......... .......... .......... .......... .......... 3% 135M 2s -2024-04-19T21:15:34Z #15 1.539 4600K .......... .......... .......... .......... .......... 3% 123M 2s -2024-04-19T21:15:34Z #15 1.539 4650K .......... .......... .......... .......... .......... 3% 127M 2s -2024-04-19T21:15:34Z #15 1.539 4700K .......... .......... .......... .......... .......... 3% 129M 2s -2024-04-19T21:15:34Z #15 1.539 4750K .......... .......... .......... .......... .......... 3% 111M 2s -2024-04-19T21:15:34Z #15 1.539 4800K .......... .......... .......... .......... .......... 3% 115M 2s -2024-04-19T21:15:34Z #15 1.539 4850K .......... .......... .......... .......... .......... 3% 124M 2s -2024-04-19T21:15:34Z #15 1.539 4900K .......... .......... .......... .......... .......... 3% 133M 2s -2024-04-19T21:15:34Z #15 1.539 4950K .......... .......... .......... .......... .......... 3% 105M 2s -2024-04-19T21:15:34Z #15 1.539 5000K .......... .......... .......... .......... .......... 3% 68.3M 2s -2024-04-19T21:15:34Z #15 1.543 5050K .......... .......... .......... .......... .......... 4% 157M 2s -2024-04-19T21:15:34Z #15 1.543 5100K .......... .......... .......... .......... .......... 4% 131M 2s -2024-04-19T21:15:34Z #15 1.543 5150K .......... .......... .......... .......... .......... 4% 147M 2s -2024-04-19T21:15:34Z #15 1.543 5200K .......... .......... .......... .......... .......... 4% 105M 2s -2024-04-19T21:15:34Z #15 1.543 5250K .......... .......... .......... .......... .......... 4% 109M 2s -2024-04-19T21:15:34Z #15 1.543 5300K .......... .......... .......... .......... .......... 4% 122M 2s -2024-04-19T21:15:34Z #15 1.543 5350K .......... .......... .......... .......... .......... 4% 133M 2s -2024-04-19T21:15:34Z #15 1.543 5400K .......... .......... .......... .......... .......... 4% 121M 2s -2024-04-19T21:15:34Z #15 1.543 5450K .......... .......... .......... .......... .......... 4% 87.7M 2s -2024-04-19T21:15:34Z #15 1.543 5500K .......... .......... .......... .......... .......... 4% 81.8M 2s -2024-04-19T21:15:34Z #15 1.547 5550K .......... .......... .......... .......... .......... 4% 155M 2s -2024-04-19T21:15:34Z #15 1.547 5600K .......... .......... .......... .......... .......... 4% 115M 2s -2024-04-19T21:15:34Z #15 1.547 5650K .......... .......... .......... .......... .......... 4% 141M 2s -2024-04-19T21:15:34Z #15 1.547 5700K .......... .......... .......... .......... .......... 4% 125M 2s -2024-04-19T21:15:34Z #15 1.547 5750K .......... .......... .......... .......... .......... 4% 119M 2s -2024-04-19T21:15:34Z #15 1.547 5800K .......... .......... .......... .......... .......... 4% 126M 2s -2024-04-19T21:15:34Z #15 1.547 5850K .......... .......... .......... .......... .......... 4% 118M 2s -2024-04-19T21:15:34Z #15 1.547 5900K .......... .......... .......... .......... .......... 4% 119M 2s -2024-04-19T21:15:34Z #15 1.547 5950K .......... .......... .......... .......... .......... 4% 56.1M 2s -2024-04-19T21:15:34Z #15 1.551 6000K .......... .......... .......... .......... .......... 4% 118M 2s -2024-04-19T21:15:34Z #15 1.551 6050K .......... .......... .......... .......... .......... 4% 147M 2s -2024-04-19T21:15:34Z #15 1.551 6100K .......... .......... .......... .......... .......... 4% 129M 2s -2024-04-19T21:15:34Z #15 1.551 6150K .......... .......... .......... .......... .......... 4% 122M 2s -2024-04-19T21:15:34Z #15 1.551 6200K .......... .......... .......... .......... .......... 4% 108M 2s -2024-04-19T21:15:34Z #15 1.551 6250K .......... .......... .......... .......... .......... 4% 123M 2s -2024-04-19T21:15:34Z #15 1.551 6300K .......... .......... .......... .......... .......... 5% 108M 2s -2024-04-19T21:15:34Z #15 1.551 6350K .......... .......... .......... .......... .......... 5% 127M 2s -2024-04-19T21:15:34Z #15 1.551 6400K .......... .......... .......... .......... .......... 5% 53.4M 2s -2024-04-19T21:15:34Z #15 1.555 6450K .......... .......... .......... .......... .......... 5% 124M 2s -2024-04-19T21:15:34Z #15 1.555 6500K .......... .......... .......... .......... .......... 5% 145M 2s -2024-04-19T21:15:34Z #15 1.555 6550K .......... .......... .......... .......... .......... 5% 135M 2s -2024-04-19T21:15:34Z #15 1.555 6600K .......... .......... .......... .......... .......... 5% 109M 2s -2024-04-19T21:15:34Z #15 1.555 6650K .......... .......... .......... .......... .......... 5% 114M 2s -2024-04-19T21:15:34Z #15 1.555 6700K .......... .......... .......... .......... .......... 5% 121M 2s -2024-04-19T21:15:34Z #15 1.555 6750K .......... .......... .......... .......... .......... 5% 133M 2s -2024-04-19T21:15:34Z #15 1.555 6800K .......... .......... .......... .......... .......... 5% 80.2M 2s -2024-04-19T21:15:34Z #15 1.555 6850K .......... .......... .......... .......... .......... 5% 52.0M 2s -2024-04-19T21:15:34Z #15 1.556 6900K .......... .......... .......... .......... .......... 5% 61.6M 2s -2024-04-19T21:15:34Z #15 1.558 6950K .......... .......... .......... .......... .......... 5% 138M 2s -2024-04-19T21:15:34Z #15 1.558 7000K .......... .......... .......... .......... .......... 5% 121M 2s -2024-04-19T21:15:34Z #15 1.558 7050K .......... .......... .......... .......... .......... 5% 126M 2s -2024-04-19T21:15:34Z #15 1.558 7100K .......... .......... .......... .......... .......... 5% 49.0M 2s -2024-04-19T21:15:34Z #15 1.559 7150K .......... .......... .......... .......... .......... 5% 135M 2s -2024-04-19T21:15:34Z #15 1.560 7200K .......... .......... .......... .......... .......... 5% 105M 2s -2024-04-19T21:15:34Z #15 1.560 7250K .......... .......... .......... .......... .......... 5% 129M 2s -2024-04-19T21:15:34Z #15 1.560 7300K .......... .......... .......... .......... .......... 5% 144M 2s -2024-04-19T21:15:34Z #15 1.561 7350K .......... .......... .......... .......... .......... 5% 124M 2s -2024-04-19T21:15:34Z #15 1.562 7400K .......... .......... .......... .......... .......... 5% 88.1M 2s -2024-04-19T21:15:34Z #15 1.575 7450K .......... .......... .......... .......... .......... 5% 4.93M 2s -2024-04-19T21:15:34Z #15 1.575 7500K .......... .......... .......... .......... .......... 5% 122M 2s -2024-04-19T21:15:34Z #15 1.575 7550K .......... .......... .......... .......... .......... 5% 124M 2s -2024-04-19T21:15:34Z #15 1.575 7600K .......... .......... .......... .......... .......... 6% 97.7M 2s -2024-04-19T21:15:34Z #15 1.575 7650K .......... .......... .......... .......... .......... 6% 115M 2s -2024-04-19T21:15:34Z #15 1.575 7700K .......... .......... .......... .......... .......... 6% 118M 2s -2024-04-19T21:15:34Z #15 1.575 7750K .......... .......... .......... .......... .......... 6% 125M 2s -2024-04-19T21:15:34Z #15 1.575 7800K .......... .......... .......... .......... .......... 6% 111M 2s -2024-04-19T21:15:34Z #15 1.575 7850K .......... .......... .......... .......... .......... 6% 120M 2s -2024-04-19T21:15:34Z #15 1.575 7900K .......... .......... .......... .......... .......... 6% 117M 2s -2024-04-19T21:15:34Z #15 1.579 7950K .......... .......... .......... .......... .......... 6% 158M 2s -2024-04-19T21:15:34Z #15 1.579 8000K .......... .......... .......... .......... .......... 6% 122M 2s -2024-04-19T21:15:34Z #15 1.579 8050K .......... .......... .......... .......... .......... 6% 120M 2s -2024-04-19T21:15:34Z #15 1.579 8100K .......... .......... .......... .......... .......... 6% 124M 2s -2024-04-19T21:15:34Z #15 1.579 8150K .......... .......... .......... .......... .......... 6% 126M 2s -2024-04-19T21:15:34Z #15 1.579 8200K .......... .......... .......... .......... .......... 6% 106M 2s -2024-04-19T21:15:34Z #15 1.579 8250K .......... .......... .......... .......... .......... 6% 133M 2s -2024-04-19T21:15:34Z #15 1.579 8300K .......... .......... .......... .......... .......... 6% 126M 2s -2024-04-19T21:15:34Z #15 1.579 8350K .......... .......... .......... .......... .......... 6% 120M 2s -2024-04-19T21:15:34Z #15 1.579 8400K .......... .......... .......... .......... .......... 6% 10.5M 2s -2024-04-19T21:15:34Z #15 1.587 8450K .......... .......... .......... .......... .......... 6% 141M 2s -2024-04-19T21:15:34Z #15 1.587 8500K .......... .......... .......... .......... .......... 6% 116M 2s -2024-04-19T21:15:34Z #15 1.587 8550K .......... .......... .......... .......... .......... 6% 115M 2s -2024-04-19T21:15:34Z #15 1.587 8600K .......... .......... .......... .......... .......... 6% 108M 2s -2024-04-19T21:15:34Z #15 1.587 8650K .......... .......... .......... .......... .......... 6% 135M 2s -2024-04-19T21:15:34Z #15 1.587 8700K .......... .......... .......... .......... .......... 6% 115M 2s -2024-04-19T21:15:34Z #15 1.587 8750K .......... .......... .......... .......... .......... 6% 120M 2s -2024-04-19T21:15:34Z #15 1.587 8800K .......... .......... .......... .......... .......... 6% 103M 2s -2024-04-19T21:15:34Z #15 1.587 8850K .......... .......... .......... .......... .......... 7% 42.9M 2s -2024-04-19T21:15:34Z #15 1.595 8900K .......... .......... .......... .......... .......... 7% 132M 2s -2024-04-19T21:15:34Z #15 1.595 8950K .......... .......... .......... .......... .......... 7% 130M 2s -2024-04-19T21:15:34Z #15 1.595 9000K .......... .......... .......... .......... .......... 7% 113M 2s -2024-04-19T21:15:34Z #15 1.595 9050K .......... .......... .......... .......... .......... 7% 137M 2s -2024-04-19T21:15:34Z #15 1.595 9100K .......... .......... .......... .......... .......... 7% 123M 2s -2024-04-19T21:15:34Z #15 1.595 9150K .......... .......... .......... .......... .......... 7% 126M 2s -2024-04-19T21:15:34Z #15 1.595 9200K .......... .......... .......... .......... .......... 7% 111M 2s -2024-04-19T21:15:34Z #15 1.595 9250K .......... .......... .......... .......... .......... 7% 123M 2s -2024-04-19T21:15:34Z #15 1.595 9300K .......... .......... .......... .......... .......... 7% 121M 2s -2024-04-19T21:15:34Z #15 1.595 9350K .......... .......... .......... .......... .......... 7% 132M 2s -2024-04-19T21:15:34Z #15 1.595 9400K .......... .......... .......... .......... .......... 7% 110M 2s -2024-04-19T21:15:34Z #15 1.595 9450K .......... .......... .......... .......... .......... 7% 114M 2s -2024-04-19T21:15:34Z #15 1.595 9500K .......... .......... .......... .......... .......... 7% 104M 2s -2024-04-19T21:15:34Z #15 1.595 9550K .......... .......... .......... .......... .......... 7% 139M 2s -2024-04-19T21:15:34Z #15 1.595 9600K .......... .......... .......... .......... .......... 7% 144M 2s -2024-04-19T21:15:34Z #15 1.595 9650K .......... .......... .......... .......... .......... 7% 121M 2s -2024-04-19T21:15:34Z #15 1.595 9700K .......... .......... .......... .......... .......... 7% 113M 2s -2024-04-19T21:15:34Z #15 1.595 9750K .......... .......... .......... .......... .......... 7% 3.88M 2s -2024-04-19T21:15:34Z #15 1.611 9800K .......... .......... .......... .......... .......... 7% 131M 2s -2024-04-19T21:15:34Z #15 1.611 9850K .......... .......... .......... .......... .......... 7% 121M 2s -2024-04-19T21:15:34Z #15 1.611 9900K .......... .......... .......... .......... .......... 7% 100M 2s -2024-04-19T21:15:34Z #15 1.611 9950K .......... .......... .......... .......... .......... 7% 132M 2s -2024-04-19T21:15:34Z #15 1.611 10000K .......... .......... .......... .......... .......... 7% 122M 2s -2024-04-19T21:15:34Z #15 1.611 10050K .......... .......... .......... .......... .......... 7% 109M 2s -2024-04-19T21:15:34Z #15 1.611 10100K .......... .......... .......... .......... .......... 8% 123M 2s -2024-04-19T21:15:34Z #15 1.611 10150K .......... .......... .......... .......... .......... 8% 101M 2s -2024-04-19T21:15:34Z #15 1.611 10200K .......... .......... .......... .......... .......... 8% 85.5M 2s -2024-04-19T21:15:34Z #15 1.619 10250K .......... .......... .......... .......... .......... 8% 114M 2s -2024-04-19T21:15:34Z #15 1.619 10300K .......... .......... .......... .......... .......... 8% 130M 2s -2024-04-19T21:15:34Z #15 1.619 10350K .......... .......... .......... .......... .......... 8% 115M 2s -2024-04-19T21:15:34Z #15 1.619 10400K .......... .......... .......... .......... .......... 8% 118M 2s -2024-04-19T21:15:34Z #15 1.619 10450K .......... .......... .......... .......... .......... 8% 97.3M 2s -2024-04-19T21:15:34Z #15 1.619 10500K .......... .......... .......... .......... .......... 8% 121M 2s -2024-04-19T21:15:34Z #15 1.619 10550K .......... .......... .......... .......... .......... 8% 108M 2s -2024-04-19T21:15:34Z #15 1.619 10600K .......... .......... .......... .......... .......... 8% 120M 2s -2024-04-19T21:15:34Z #15 1.619 10650K .......... .......... .......... .......... .......... 8% 98.6M 2s -2024-04-19T21:15:34Z #15 1.619 10700K .......... .......... .......... .......... .......... 8% 129M 2s -2024-04-19T21:15:34Z #15 1.619 10750K .......... .......... .......... .......... .......... 8% 166M 2s -2024-04-19T21:15:34Z #15 1.619 10800K .......... .......... .......... .......... .......... 8% 112M 2s -2024-04-19T21:15:34Z #15 1.619 10850K .......... .......... .......... .......... .......... 8% 164M 2s -2024-04-19T21:15:34Z #15 1.619 10900K .......... .......... .......... .......... .......... 8% 146M 2s -2024-04-19T21:15:34Z #15 1.619 10950K .......... .......... .......... .......... .......... 8% 147M 2s -2024-04-19T21:15:34Z #15 1.619 11000K .......... .......... .......... .......... .......... 8% 112M 2s -2024-04-19T21:15:34Z #15 1.619 11050K .......... .......... .......... .......... .......... 8% 159M 2s -2024-04-19T21:15:34Z #15 1.619 11100K .......... .......... .......... .......... .......... 8% 157M 2s -2024-04-19T21:15:34Z #15 1.619 11150K .......... .......... .......... .......... .......... 8% 145M 2s -2024-04-19T21:15:34Z #15 1.619 11200K .......... .......... .......... .......... .......... 8% 134M 2s -2024-04-19T21:15:34Z #15 1.619 11250K .......... .......... .......... .......... .......... 8% 22.9M 2s -2024-04-19T21:15:34Z #15 1.621 11300K .......... .......... .......... .......... .......... 8% 50.6M 2s -2024-04-19T21:15:34Z #15 1.622 11350K .......... .......... .......... .......... .......... 8% 40.9M 2s -2024-04-19T21:15:34Z #15 1.623 11400K .......... .......... .......... .......... .......... 9% 32.2M 2s -2024-04-19T21:15:34Z #15 1.627 11450K .......... .......... .......... .......... .......... 9% 50.9M 2s -2024-04-19T21:15:34Z #15 1.627 11500K .......... .......... .......... .......... .......... 9% 53.6M 2s -2024-04-19T21:15:34Z #15 1.627 11550K .......... .......... .......... .......... .......... 9% 41.4M 2s -2024-04-19T21:15:34Z #15 1.628 11600K .......... .......... .......... .......... .......... 9% 28.4M 2s -2024-04-19T21:15:34Z #15 1.630 11650K .......... .......... .......... .......... .......... 9% 25.7M 2s -2024-04-19T21:15:34Z #15 1.635 11700K .......... .......... .......... .......... .......... 9% 120M 2s -2024-04-19T21:15:34Z #15 1.635 11750K .......... .......... .......... .......... .......... 9% 139M 2s -2024-04-19T21:15:34Z #15 1.635 11800K .......... .......... .......... .......... .......... 9% 112M 2s -2024-04-19T21:15:34Z #15 1.635 11850K .......... .......... .......... .......... .......... 9% 96.7M 2s -2024-04-19T21:15:34Z #15 1.635 11900K .......... .......... .......... .......... .......... 9% 116M 2s -2024-04-19T21:15:34Z #15 1.635 11950K .......... .......... .......... .......... .......... 9% 124M 2s -2024-04-19T21:15:34Z #15 1.635 12000K .......... .......... .......... .......... .......... 9% 116M 2s -2024-04-19T21:15:34Z #15 1.635 12050K .......... .......... .......... .......... .......... 9% 127M 2s -2024-04-19T21:15:34Z #15 1.635 12100K .......... .......... .......... .......... .......... 9% 62.6M 2s -2024-04-19T21:15:34Z #15 1.639 12150K .......... .......... .......... .......... .......... 9% 104M 2s -2024-04-19T21:15:34Z #15 1.639 12200K .......... .......... .......... .......... .......... 9% 102M 2s -2024-04-19T21:15:34Z #15 1.639 12250K .......... .......... .......... .......... .......... 9% 110M 2s -2024-04-19T21:15:34Z #15 1.639 12300K .......... .......... .......... .......... .......... 9% 122M 2s -2024-04-19T21:15:34Z #15 1.639 12350K .......... .......... .......... .......... .......... 9% 114M 2s -2024-04-19T21:15:34Z #15 1.639 12400K .......... .......... .......... .......... .......... 9% 97.6M 2s -2024-04-19T21:15:34Z #15 1.639 12450K .......... .......... .......... .......... .......... 9% 113M 2s -2024-04-19T21:15:34Z #15 1.639 12500K .......... .......... .......... .......... .......... 9% 81.2M 2s -2024-04-19T21:15:34Z #15 1.643 12550K .......... .......... .......... .......... .......... 9% 117M 2s -2024-04-19T21:15:34Z #15 1.643 12600K .......... .......... .......... .......... .......... 9% 106M 2s -2024-04-19T21:15:34Z #15 1.643 12650K .......... .......... .......... .......... .......... 10% 110M 2s -2024-04-19T21:15:34Z #15 1.643 12700K .......... .......... .......... .......... .......... 10% 113M 2s -2024-04-19T21:15:34Z #15 1.643 12750K .......... .......... .......... .......... .......... 10% 98.7M 2s -2024-04-19T21:15:34Z #15 1.643 12800K .......... .......... .......... .......... .......... 10% 127M 2s -2024-04-19T21:15:34Z #15 1.643 12850K .......... .......... .......... .......... .......... 10% 99.1M 2s -2024-04-19T21:15:34Z #15 1.643 12900K .......... .......... .......... .......... .......... 10% 93.5M 2s -2024-04-19T21:15:34Z #15 1.643 12950K .......... .......... .......... .......... .......... 10% 90.1M 2s -2024-04-19T21:15:34Z #15 1.647 13000K .......... .......... .......... .......... .......... 10% 101M 2s -2024-04-19T21:15:34Z #15 1.647 13050K .......... .......... .......... .......... .......... 10% 109M 2s -2024-04-19T21:15:34Z #15 1.647 13100K .......... .......... .......... .......... .......... 10% 106M 2s -2024-04-19T21:15:34Z #15 1.647 13150K .......... .......... .......... .......... .......... 10% 135M 2s -2024-04-19T21:15:34Z #15 1.647 13200K .......... .......... .......... .......... .......... 10% 120M 2s -2024-04-19T21:15:34Z #15 1.647 13250K .......... .......... .......... .......... .......... 10% 134M 2s -2024-04-19T21:15:34Z #15 1.647 13300K .......... .......... .......... .......... .......... 10% 105M 2s -2024-04-19T21:15:34Z #15 1.647 13350K .......... .......... .......... .......... .......... 10% 154M 2s -2024-04-19T21:15:34Z #15 1.647 13400K .......... .......... .......... .......... .......... 10% 84.6M 2s -2024-04-19T21:15:34Z #15 1.647 13450K .......... .......... .......... .......... .......... 10% 146M 2s -2024-04-19T21:15:34Z #15 1.648 13500K .......... .......... .......... .......... .......... 10% 124M 2s -2024-04-19T21:15:34Z #15 1.648 13550K .......... .......... .......... .......... .......... 10% 156M 2s -2024-04-19T21:15:34Z #15 1.648 13600K .......... .......... .......... .......... .......... 10% 155M 2s -2024-04-19T21:15:34Z #15 1.649 13650K .......... .......... .......... .......... .......... 10% 137M 2s -2024-04-19T21:15:34Z #15 1.649 13700K .......... .......... .......... .......... .......... 10% 142M 2s -2024-04-19T21:15:34Z #15 1.649 13750K .......... .......... .......... .......... .......... 10% 134M 2s -2024-04-19T21:15:34Z #15 1.650 13800K .......... .......... .......... .......... .......... 10% 147M 2s -2024-04-19T21:15:34Z #15 1.650 13850K .......... .......... .......... .......... .......... 10% 135M 2s -2024-04-19T21:15:34Z #15 1.650 13900K .......... .......... .......... .......... .......... 11% 151M 2s -2024-04-19T21:15:34Z #15 1.655 13950K .......... .......... .......... .......... .......... 11% 112M 2s -2024-04-19T21:15:34Z #15 1.655 14000K .......... .......... .......... .......... .......... 11% 136M 2s -2024-04-19T21:15:34Z #15 1.655 14050K .......... .......... .......... .......... .......... 11% 127M 2s -2024-04-19T21:15:34Z #15 1.655 14100K .......... .......... .......... .......... .......... 11% 106M 2s -2024-04-19T21:15:34Z #15 1.655 14150K .......... .......... .......... .......... .......... 11% 117M 2s -2024-04-19T21:15:34Z #15 1.655 14200K .......... .......... .......... .......... .......... 11% 122M 2s -2024-04-19T21:15:34Z #15 1.655 14250K .......... .......... .......... .......... .......... 11% 116M 2s -2024-04-19T21:15:34Z #15 1.655 14300K .......... .......... .......... .......... .......... 11% 114M 2s -2024-04-19T21:15:34Z #15 1.655 14350K .......... .......... .......... .......... .......... 11% 120M 2s -2024-04-19T21:15:34Z #15 1.655 14400K .......... .......... .......... .......... .......... 11% 119M 2s -2024-04-19T21:15:34Z #15 1.659 14450K .......... .......... .......... .......... .......... 11% 91.9M 2s -2024-04-19T21:15:34Z #15 1.659 14500K .......... .......... .......... .......... .......... 11% 95.0M 2s -2024-04-19T21:15:34Z #15 1.659 14550K .......... .......... .......... .......... .......... 11% 112M 2s -2024-04-19T21:15:34Z #15 1.659 14600K .......... .......... .......... .......... .......... 11% 131M 2s -2024-04-19T21:15:34Z #15 1.659 14650K .......... .......... .......... .......... .......... 11% 125M 2s -2024-04-19T21:15:34Z #15 1.659 14700K .......... .......... .......... .......... .......... 11% 96.8M 2s -2024-04-19T21:15:34Z #15 1.659 14750K .......... .......... .......... .......... .......... 11% 116M 2s -2024-04-19T21:15:34Z #15 1.659 14800K .......... .......... .......... .......... .......... 11% 131M 2s -2024-04-19T21:15:34Z #15 1.659 14850K .......... .......... .......... .......... .......... 11% 121M 2s -2024-04-19T21:15:34Z #15 1.659 14900K .......... .......... .......... .......... .......... 11% 76.2M 2s -2024-04-19T21:15:34Z #15 1.663 14950K .......... .......... .......... .......... .......... 11% 123M 2s -2024-04-19T21:15:34Z #15 1.663 15000K .......... .......... .......... .......... .......... 11% 119M 2s -2024-04-19T21:15:34Z #15 1.663 15050K .......... .......... .......... .......... .......... 11% 112M 2s -2024-04-19T21:15:34Z #15 1.663 15100K .......... .......... .......... .......... .......... 11% 107M 2s -2024-04-19T21:15:34Z #15 1.663 15150K .......... .......... .......... .......... .......... 11% 104M 2s -2024-04-19T21:15:34Z #15 1.663 15200K .......... .......... .......... .......... .......... 12% 126M 2s -2024-04-19T21:15:34Z #15 1.663 15250K .......... .......... .......... .......... .......... 12% 122M 2s -2024-04-19T21:15:34Z #15 1.663 15300K .......... .......... .......... .......... .......... 12% 97.7M 2s -2024-04-19T21:15:34Z #15 1.675 15350K .......... .......... .......... .......... .......... 12% 95.1M 2s -2024-04-19T21:15:34Z #15 1.675 15400K .......... .......... .......... .......... .......... 12% 165M 2s -2024-04-19T21:15:34Z #15 1.675 15450K .......... .......... .......... .......... .......... 12% 173M 2s -2024-04-19T21:15:34Z #15 1.675 15500K .......... .......... .......... .......... .......... 12% 162M 2s -2024-04-19T21:15:34Z #15 1.675 15550K .......... .......... .......... .......... .......... 12% 160M 2s -2024-04-19T21:15:34Z #15 1.675 15600K .......... .......... .......... .......... .......... 12% 172M 2s -2024-04-19T21:15:34Z #15 1.675 15650K .......... .......... .......... .......... .......... 12% 181M 2s -2024-04-19T21:15:34Z #15 1.675 15700K .......... .......... .......... .......... .......... 12% 24.7M 2s -2024-04-19T21:15:34Z #15 1.675 15750K .......... .......... .......... .......... .......... 12% 152M 2s -2024-04-19T21:15:34Z #15 1.675 15800K .......... .......... .......... .......... .......... 12% 140M 2s -2024-04-19T21:15:34Z #15 1.675 15850K .......... .......... .......... .......... .......... 12% 157M 2s -2024-04-19T21:15:34Z #15 1.675 15900K .......... .......... .......... .......... .......... 12% 140M 2s -2024-04-19T21:15:34Z #15 1.675 15950K .......... .......... .......... .......... .......... 12% 156M 2s -2024-04-19T21:15:34Z #15 1.675 16000K .......... .......... .......... .......... .......... 12% 158M 2s -2024-04-19T21:15:34Z #15 1.675 16050K .......... .......... .......... .......... .......... 12% 155M 2s -2024-04-19T21:15:34Z #15 1.675 16100K .......... .......... .......... .......... .......... 12% 135M 2s -2024-04-19T21:15:34Z #15 1.675 16150K .......... .......... .......... .......... .......... 12% 156M 1s -2024-04-19T21:15:34Z #15 1.675 16200K .......... .......... .......... .......... .......... 12% 169M 1s -2024-04-19T21:15:34Z #15 1.675 16250K .......... .......... .......... .......... .......... 12% 151M 1s -2024-04-19T21:15:34Z #15 1.675 16300K .......... .......... .......... .......... .......... 12% 110M 1s -2024-04-19T21:15:34Z #15 1.675 16350K .......... .......... .......... .......... .......... 12% 148M 1s -2024-04-19T21:15:34Z #15 1.675 16400K .......... .......... .......... .......... .......... 12% 129M 1s -2024-04-19T21:15:34Z #15 1.675 16450K .......... .......... .......... .......... .......... 13% 110M 1s -2024-04-19T21:15:34Z #15 1.675 16500K .......... .......... .......... .......... .......... 13% 116M 1s -2024-04-19T21:15:34Z #15 1.675 16550K .......... .......... .......... .......... .......... 13% 130M 1s -2024-04-19T21:15:34Z #15 1.675 16600K .......... .......... .......... .......... .......... 13% 121M 1s -2024-04-19T21:15:34Z #15 1.675 16650K .......... .......... .......... .......... .......... 13% 110M 1s -2024-04-19T21:15:34Z #15 1.675 16700K .......... .......... .......... .......... .......... 13% 107M 1s -2024-04-19T21:15:34Z #15 1.675 16750K .......... .......... .......... .......... .......... 13% 128M 1s -2024-04-19T21:15:34Z #15 1.675 16800K .......... .......... .......... .......... .......... 13% 78.9M 1s -2024-04-19T21:15:34Z #15 1.679 16850K .......... .......... .......... .......... .......... 13% 117M 1s -2024-04-19T21:15:34Z #15 1.679 16900K .......... .......... .......... .......... .......... 13% 137M 1s -2024-04-19T21:15:34Z #15 1.679 16950K .......... .......... .......... .......... .......... 13% 128M 1s -2024-04-19T21:15:34Z #15 1.679 17000K .......... .......... .......... .......... .......... 13% 109M 1s -2024-04-19T21:15:34Z #15 1.679 17050K .......... .......... .......... .......... .......... 13% 127M 1s -2024-04-19T21:15:34Z #15 1.679 17100K .......... .......... .......... .......... .......... 13% 105M 1s -2024-04-19T21:15:34Z #15 1.679 17150K .......... .......... .......... .......... .......... 13% 132M 1s -2024-04-19T21:15:34Z #15 1.679 17200K .......... .......... .......... .......... .......... 13% 123M 1s -2024-04-19T21:15:34Z #15 1.679 17250K .......... .......... .......... .......... .......... 13% 77.8M 1s -2024-04-19T21:15:34Z #15 1.679 17300K .......... .......... .......... .......... .......... 13% 1013K 2s -2024-04-19T21:15:34Z #15 1.728 17350K .......... .......... .......... .......... .......... 13% 44.5M 2s -2024-04-19T21:15:34Z #15 1.729 17400K .......... .......... .......... .......... .......... 13% 37.4M 2s -2024-04-19T21:15:34Z #15 1.731 17450K .......... .......... .......... .......... .......... 13% 139M 2s -2024-04-19T21:15:34Z #15 1.731 17500K .......... .......... .......... .......... .......... 13% 146M 2s -2024-04-19T21:15:34Z #15 1.731 17550K .......... .......... .......... .......... .......... 13% 148M 2s -2024-04-19T21:15:34Z #15 1.732 17600K .......... .......... .......... .......... .......... 13% 129M 2s -2024-04-19T21:15:34Z #15 1.732 17650K .......... .......... .......... .......... .......... 13% 153M 2s -2024-04-19T21:15:34Z #15 1.733 17700K .......... .......... .......... .......... .......... 14% 135M 2s -2024-04-19T21:15:34Z #15 1.733 17750K .......... .......... .......... .......... .......... 14% 139M 2s -2024-04-19T21:15:34Z #15 1.733 17800K .......... .......... .......... .......... .......... 14% 116M 2s -2024-04-19T21:15:34Z #15 1.734 17850K .......... .......... .......... .......... .......... 14% 95.8M 2s -2024-04-19T21:15:34Z #15 1.734 17900K .......... .......... .......... .......... .......... 14% 107M 2s -2024-04-19T21:15:34Z #15 1.735 17950K .......... .......... .......... .......... .......... 14% 108M 2s -2024-04-19T21:15:34Z #15 1.735 18000K .......... .......... .......... .......... .......... 14% 109M 2s -2024-04-19T21:15:34Z #15 1.735 18050K .......... .......... .......... .......... .......... 14% 126M 2s -2024-04-19T21:15:34Z #15 1.736 18100K .......... .......... .......... .......... .......... 14% 97.3M 2s -2024-04-19T21:15:34Z #15 1.736 18150K .......... .......... .......... .......... .......... 14% 83.1M 2s -2024-04-19T21:15:34Z #15 1.737 18200K .......... .......... .......... .......... .......... 14% 49.4M 2s -2024-04-19T21:15:34Z #15 1.738 18250K .......... .......... .......... .......... .......... 14% 112M 2s -2024-04-19T21:15:34Z #15 1.738 18300K .......... .......... .......... .......... .......... 14% 107M 2s -2024-04-19T21:15:34Z #15 1.740 18350K .......... .......... .......... .......... .......... 14% 76.5M 2s -2024-04-19T21:15:34Z #15 1.740 18400K .......... .......... .......... .......... .......... 14% 45.3M 2s -2024-04-19T21:15:34Z #15 1.741 18450K .......... .......... .......... .......... .......... 14% 66.3M 2s -2024-04-19T21:15:34Z #15 1.742 18500K .......... .......... .......... .......... .......... 14% 131M 2s -2024-04-19T21:15:34Z #15 1.742 18550K .......... .......... .......... .......... .......... 14% 51.5M 2s -2024-04-19T21:15:34Z #15 1.743 18600K .......... .......... .......... .......... .......... 14% 38.2M 2s -2024-04-19T21:15:34Z #15 1.744 18650K .......... .......... .......... .......... .......... 14% 58.9M 2s -2024-04-19T21:15:34Z #15 1.745 18700K .......... .......... .......... .......... .......... 14% 65.5M 2s -2024-04-19T21:15:34Z #15 1.746 18750K .......... .......... .......... .......... .......... 14% 59.4M 2s -2024-04-19T21:15:34Z #15 1.747 18800K .......... .......... .......... .......... .......... 14% 54.7M 2s -2024-04-19T21:15:34Z #15 1.747 18850K .......... .......... .......... .......... .......... 14% 77.0M 2s -2024-04-19T21:15:34Z #15 1.748 18900K .......... .......... .......... .......... .......... 14% 106M 2s -2024-04-19T21:15:34Z #15 1.748 18950K .......... .......... .......... .......... .......... 14% 66.2M 2s -2024-04-19T21:15:34Z #15 1.749 19000K .......... .......... .......... .......... .......... 15% 120M 2s -2024-04-19T21:15:34Z #15 1.750 19050K .......... .......... .......... .......... .......... 15% 127M 2s -2024-04-19T21:15:34Z #15 1.750 19100K .......... .......... .......... .......... .......... 15% 118M 2s -2024-04-19T21:15:34Z #15 1.751 19150K .......... .......... .......... .......... .......... 15% 122M 2s -2024-04-19T21:15:34Z #15 1.751 19200K .......... .......... .......... .......... .......... 15% 124M 2s -2024-04-19T21:15:34Z #15 1.751 19250K .......... .......... .......... .......... .......... 15% 126M 2s -2024-04-19T21:15:34Z #15 1.752 19300K .......... .......... .......... .......... .......... 15% 126M 2s -2024-04-19T21:15:34Z #15 1.752 19350K .......... .......... .......... .......... .......... 15% 131M 2s -2024-04-19T21:15:34Z #15 1.752 19400K .......... .......... .......... .......... .......... 15% 130M 2s -2024-04-19T21:15:34Z #15 1.753 19450K .......... .......... .......... .......... .......... 15% 118M 2s -2024-04-19T21:15:34Z #15 1.753 19500K .......... .......... .......... .......... .......... 15% 147M 2s -2024-04-19T21:15:34Z #15 1.753 19550K .......... .......... .......... .......... .......... 15% 110M 2s -2024-04-19T21:15:34Z #15 1.754 19600K .......... .......... .......... .......... .......... 15% 122M 2s -2024-04-19T21:15:34Z #15 1.754 19650K .......... .......... .......... .......... .......... 15% 127M 2s -2024-04-19T21:15:34Z #15 1.754 19700K .......... .......... .......... .......... .......... 15% 130M 2s -2024-04-19T21:15:34Z #15 1.755 19750K .......... .......... .......... .......... .......... 15% 126M 2s -2024-04-19T21:15:34Z #15 1.755 19800K .......... .......... .......... .......... .......... 15% 126M 2s -2024-04-19T21:15:34Z #15 1.756 19850K .......... .......... .......... .......... .......... 15% 134M 2s -2024-04-19T21:15:34Z #15 1.756 19900K .......... .......... .......... .......... .......... 15% 127M 2s -2024-04-19T21:15:34Z #15 1.756 19950K .......... .......... .......... .......... .......... 15% 122M 2s -2024-04-19T21:15:34Z #15 1.757 20000K .......... .......... .......... .......... .......... 15% 122M 2s -2024-04-19T21:15:34Z #15 1.758 20050K .......... .......... .......... .......... .......... 15% 123M 2s -2024-04-19T21:15:34Z #15 1.758 20100K .......... .......... .......... .......... .......... 15% 139M 2s -2024-04-19T21:15:34Z #15 1.758 20150K .......... .......... .......... .......... .......... 15% 134M 2s -2024-04-19T21:15:34Z #15 1.759 20200K .......... .......... .......... .......... .......... 15% 103M 2s -2024-04-19T21:15:34Z #15 1.760 20250K .......... .......... .......... .......... .......... 16% 115M 2s -2024-04-19T21:15:35Z #15 1.760 20300K .......... .......... .......... .......... .......... 16% 156M 2s -2024-04-19T21:15:35Z #15 1.760 20350K .......... .......... .......... .......... .......... 16% 107M 2s -2024-04-19T21:15:35Z #15 1.760 20400K .......... .......... .......... .......... .......... 16% 139M 2s -2024-04-19T21:15:35Z #15 1.760 20450K .......... .......... .......... .......... .......... 16% 146M 2s -2024-04-19T21:15:35Z #15 1.761 20500K .......... .......... .......... .......... .......... 16% 113M 2s -2024-04-19T21:15:35Z #15 1.761 20550K .......... .......... .......... .......... .......... 16% 122M 2s -2024-04-19T21:15:35Z #15 1.762 20600K .......... .......... .......... .......... .......... 16% 124M 2s -2024-04-19T21:15:35Z #15 1.762 20650K .......... .......... .......... .......... .......... 16% 144M 2s -2024-04-19T21:15:35Z #15 1.762 20700K .......... .......... .......... .......... .......... 16% 106M 2s -2024-04-19T21:15:35Z #15 1.768 20750K .......... .......... .......... .......... .......... 16% 117M 2s -2024-04-19T21:15:35Z #15 1.768 20800K .......... .......... .......... .......... .......... 16% 157M 2s -2024-04-19T21:15:35Z #15 1.768 20850K .......... .......... .......... .......... .......... 16% 108M 2s -2024-04-19T21:15:35Z #15 1.768 20900K .......... .......... .......... .......... .......... 16% 79.7M 2s -2024-04-19T21:15:35Z #15 1.768 20950K .......... .......... .......... .......... .......... 16% 68.8M 2s -2024-04-19T21:15:35Z #15 1.768 21000K .......... .......... .......... .......... .......... 16% 74.5M 2s -2024-04-19T21:15:35Z #15 1.768 21050K .......... .......... .......... .......... .......... 16% 74.5M 2s -2024-04-19T21:15:35Z #15 1.768 21100K .......... .......... .......... .......... .......... 16% 80.5M 2s -2024-04-19T21:15:35Z #15 1.768 21150K .......... .......... .......... .......... .......... 16% 106M 2s -2024-04-19T21:15:35Z #15 1.768 21200K .......... .......... .......... .......... .......... 16% 113M 2s -2024-04-19T21:15:35Z #15 1.768 21250K .......... .......... .......... .......... .......... 16% 130M 2s -2024-04-19T21:15:35Z #15 1.768 21300K .......... .......... .......... .......... .......... 16% 106M 2s -2024-04-19T21:15:35Z #15 1.769 21350K .......... .......... .......... .......... .......... 16% 156M 2s -2024-04-19T21:15:35Z #15 1.769 21400K .......... .......... .......... .......... .......... 16% 139M 2s -2024-04-19T21:15:35Z #15 1.770 21450K .......... .......... .......... .......... .......... 16% 114M 2s -2024-04-19T21:15:35Z #15 1.770 21500K .......... .......... .......... .......... .......... 16% 104M 2s -2024-04-19T21:15:35Z #15 1.770 21550K .......... .......... .......... .......... .......... 17% 116M 2s -2024-04-19T21:15:35Z #15 1.771 21600K .......... .......... .......... .......... .......... 17% 105M 2s -2024-04-19T21:15:35Z #15 1.771 21650K .......... .......... .......... .......... .......... 17% 123M 2s -2024-04-19T21:15:35Z #15 1.772 21700K .......... .......... .......... .......... .......... 17% 123M 2s -2024-04-19T21:15:35Z #15 1.775 21750K .......... .......... .......... .......... .......... 17% 132M 2s -2024-04-19T21:15:35Z #15 1.775 21800K .......... .......... .......... .......... .......... 17% 150M 2s -2024-04-19T21:15:35Z #15 1.775 21850K .......... .......... .......... .......... .......... 17% 126M 2s -2024-04-19T21:15:35Z #15 1.775 21900K .......... .......... .......... .......... .......... 17% 101M 2s -2024-04-19T21:15:35Z #15 1.775 21950K .......... .......... .......... .......... .......... 17% 73.8M 2s -2024-04-19T21:15:35Z #15 1.775 22000K .......... .......... .......... .......... .......... 17% 13.8M 2s -2024-04-19T21:15:35Z #15 1.778 22050K .......... .......... .......... .......... .......... 17% 129M 2s -2024-04-19T21:15:35Z #15 1.778 22100K .......... .......... .......... .......... .......... 17% 110M 2s -2024-04-19T21:15:35Z #15 1.779 22150K .......... .......... .......... .......... .......... 17% 91.2M 2s -2024-04-19T21:15:35Z #15 1.779 22200K .......... .......... .......... .......... .......... 17% 126M 2s -2024-04-19T21:15:35Z #15 1.780 22250K .......... .......... .......... .......... .......... 17% 123M 2s -2024-04-19T21:15:35Z #15 1.781 22300K .......... .......... .......... .......... .......... 17% 105M 2s -2024-04-19T21:15:35Z #15 1.781 22350K .......... .......... .......... .......... .......... 17% 122M 2s -2024-04-19T21:15:35Z #15 1.781 22400K .......... .......... .......... .......... .......... 17% 112M 2s -2024-04-19T21:15:35Z #15 1.781 22450K .......... .......... .......... .......... .......... 17% 110M 2s -2024-04-19T21:15:35Z #15 1.782 22500K .......... .......... .......... .......... .......... 17% 151M 2s -2024-04-19T21:15:35Z #15 1.782 22550K .......... .......... .......... .......... .......... 17% 113M 2s -2024-04-19T21:15:35Z #15 1.787 22600K .......... .......... .......... .......... .......... 17% 97.2M 2s -2024-04-19T21:15:35Z #15 1.787 22650K .......... .......... .......... .......... .......... 17% 133M 2s -2024-04-19T21:15:35Z #15 1.787 22700K .......... .......... .......... .......... .......... 17% 113M 2s -2024-04-19T21:15:35Z #15 1.787 22750K .......... .......... .......... .......... .......... 17% 109M 2s -2024-04-19T21:15:35Z #15 1.787 22800K .......... .......... .......... .......... .......... 18% 76.1M 2s -2024-04-19T21:15:35Z #15 1.787 22850K .......... .......... .......... .......... .......... 18% 94.9M 2s -2024-04-19T21:15:35Z #15 1.787 22900K .......... .......... .......... .......... .......... 18% 79.8M 2s -2024-04-19T21:15:35Z #15 1.787 22950K .......... .......... .......... .......... .......... 18% 83.7M 2s -2024-04-19T21:15:35Z #15 1.787 23000K .......... .......... .......... .......... .......... 18% 41.8M 2s -2024-04-19T21:15:35Z #15 1.788 23050K .......... .......... .......... .......... .......... 18% 29.3M 2s -2024-04-19T21:15:35Z #15 1.790 23100K .......... .......... .......... .......... .......... 18% 35.2M 2s -2024-04-19T21:15:35Z #15 1.795 23150K .......... .......... .......... .......... .......... 18% 35.4M 2s -2024-04-19T21:15:35Z #15 1.795 23200K .......... .......... .......... .......... .......... 18% 28.4M 2s -2024-04-19T21:15:35Z #15 1.795 23250K .......... .......... .......... .......... .......... 18% 28.0M 2s -2024-04-19T21:15:35Z #15 1.796 23300K .......... .......... .......... .......... .......... 18% 38.1M 2s -2024-04-19T21:15:35Z #15 1.799 23350K .......... .......... .......... .......... .......... 18% 33.9M 2s -2024-04-19T21:15:35Z #15 1.799 23400K .......... .......... .......... .......... .......... 18% 35.7M 2s -2024-04-19T21:15:35Z #15 1.800 23450K .......... .......... .......... .......... .......... 18% 29.8M 2s -2024-04-19T21:15:35Z #15 1.807 23500K .......... .......... .......... .......... .......... 18% 46.7M 2s -2024-04-19T21:15:35Z #15 1.807 23550K .......... .......... .......... .......... .......... 18% 30.5M 2s -2024-04-19T21:15:35Z #15 1.807 23600K .......... .......... .......... .......... .......... 18% 33.1M 2s -2024-04-19T21:15:35Z #15 1.807 23650K .......... .......... .......... .......... .......... 18% 47.6M 2s -2024-04-19T21:15:35Z #15 1.807 23700K .......... .......... .......... .......... .......... 18% 69.9M 2s -2024-04-19T21:15:35Z #15 1.808 23750K .......... .......... .......... .......... .......... 18% 123M 2s -2024-04-19T21:15:35Z #15 1.808 23800K .......... .......... .......... .......... .......... 18% 117M 2s -2024-04-19T21:15:35Z #15 1.808 23850K .......... .......... .......... .......... .......... 18% 125M 2s -2024-04-19T21:15:35Z #15 1.809 23900K .......... .......... .......... .......... .......... 18% 128M 2s -2024-04-19T21:15:35Z #15 1.809 23950K .......... .......... .......... .......... .......... 18% 111M 2s -2024-04-19T21:15:35Z #15 1.809 24000K .......... .......... .......... .......... .......... 18% 140M 2s -2024-04-19T21:15:35Z #15 1.810 24050K .......... .......... .......... .......... .......... 19% 103M 2s -2024-04-19T21:15:35Z #15 1.810 24100K .......... .......... .......... .......... .......... 19% 139M 2s -2024-04-19T21:15:35Z #15 1.811 24150K .......... .......... .......... .......... .......... 19% 86.9M 2s -2024-04-19T21:15:35Z #15 1.811 24200K .......... .......... .......... .......... .......... 19% 36.8M 2s -2024-04-19T21:15:35Z #15 1.813 24250K .......... .......... .......... .......... .......... 19% 33.4M 2s -2024-04-19T21:15:35Z #15 1.814 24300K .......... .......... .......... .......... .......... 19% 45.1M 2s -2024-04-19T21:15:35Z #15 1.819 24350K .......... .......... .......... .......... .......... 19% 34.8M 2s -2024-04-19T21:15:35Z #15 1.819 24400K .......... .......... .......... .......... .......... 19% 48.8M 2s -2024-04-19T21:15:35Z #15 1.819 24450K .......... .......... .......... .......... .......... 19% 63.5M 2s -2024-04-19T21:15:35Z #15 1.819 24500K .......... .......... .......... .......... .......... 19% 66.9M 2s -2024-04-19T21:15:35Z #15 1.819 24550K .......... .......... .......... .......... .......... 19% 132M 2s -2024-04-19T21:15:35Z #15 1.819 24600K .......... .......... .......... .......... .......... 19% 144M 2s -2024-04-19T21:15:35Z #15 1.820 24650K .......... .......... .......... .......... .......... 19% 105M 2s -2024-04-19T21:15:35Z #15 1.820 24700K .......... .......... .......... .......... .......... 19% 123M 2s -2024-04-19T21:15:35Z #15 1.821 24750K .......... .......... .......... .......... .......... 19% 123M 2s -2024-04-19T21:15:35Z #15 1.821 24800K .......... .......... .......... .......... .......... 19% 119M 2s -2024-04-19T21:15:35Z #15 1.821 24850K .......... .......... .......... .......... .......... 19% 119M 2s -2024-04-19T21:15:35Z #15 1.822 24900K .......... .......... .......... .......... .......... 19% 114M 2s -2024-04-19T21:15:35Z #15 1.822 24950K .......... .......... .......... .......... .......... 19% 133M 2s -2024-04-19T21:15:35Z #15 1.822 25000K .......... .......... .......... .......... .......... 19% 84.5M 2s -2024-04-19T21:15:35Z #15 1.823 25050K .......... .......... .......... .......... .......... 19% 81.6M 2s -2024-04-19T21:15:35Z #15 1.823 25100K .......... .......... .......... .......... .......... 19% 170M 2s -2024-04-19T21:15:35Z #15 1.824 25150K .......... .......... .......... .......... .......... 19% 133M 2s -2024-04-19T21:15:35Z #15 1.824 25200K .......... .......... .......... .......... .......... 19% 139M 2s -2024-04-19T21:15:35Z #15 1.824 25250K .......... .......... .......... .......... .......... 19% 150M 2s -2024-04-19T21:15:35Z #15 1.825 25300K .......... .......... .......... .......... .......... 19% 126M 2s -2024-04-19T21:15:35Z #15 1.831 25350K .......... .......... .......... .......... .......... 20% 127M 1s -2024-04-19T21:15:35Z #15 1.831 25400K .......... .......... .......... .......... .......... 20% 143M 1s -2024-04-19T21:15:35Z #15 1.831 25450K .......... .......... .......... .......... .......... 20% 139M 1s -2024-04-19T21:15:35Z #15 1.831 25500K .......... .......... .......... .......... .......... 20% 152M 1s -2024-04-19T21:15:35Z #15 1.831 25550K .......... .......... .......... .......... .......... 20% 111M 1s -2024-04-19T21:15:35Z #15 1.831 25600K .......... .......... .......... .......... .......... 20% 143M 1s -2024-04-19T21:15:35Z #15 1.831 25650K .......... .......... .......... .......... .......... 20% 148M 1s -2024-04-19T21:15:35Z #15 1.831 25700K .......... .......... .......... .......... .......... 20% 152M 1s -2024-04-19T21:15:35Z #15 1.831 25750K .......... .......... .......... .......... .......... 20% 164M 1s -2024-04-19T21:15:35Z #15 1.831 25800K .......... .......... .......... .......... .......... 20% 139M 1s -2024-04-19T21:15:35Z #15 1.831 25850K .......... .......... .......... .......... .......... 20% 155M 1s -2024-04-19T21:15:35Z #15 1.831 25900K .......... .......... .......... .......... .......... 20% 165M 1s -2024-04-19T21:15:35Z #15 1.831 25950K .......... .......... .......... .......... .......... 20% 176M 1s -2024-04-19T21:15:35Z #15 1.831 26000K .......... .......... .......... .......... .......... 20% 123M 1s -2024-04-19T21:15:35Z #15 1.831 26050K .......... .......... .......... .......... .......... 20% 154M 1s -2024-04-19T21:15:35Z #15 1.831 26100K .......... .......... .......... .......... .......... 20% 174M 1s -2024-04-19T21:15:35Z #15 1.831 26150K .......... .......... .......... .......... .......... 20% 132M 1s -2024-04-19T21:15:35Z #15 1.831 26200K .......... .......... .......... .......... .......... 20% 139M 1s -2024-04-19T21:15:35Z #15 1.831 26250K .......... .......... .......... .......... .......... 20% 145M 1s -2024-04-19T21:15:35Z #15 1.832 26300K .......... .......... .......... .......... .......... 20% 148M 1s -2024-04-19T21:15:35Z #15 1.832 26350K .......... .......... .......... .......... .......... 20% 162M 1s -2024-04-19T21:15:35Z #15 1.832 26400K .......... .......... .......... .......... .......... 20% 124M 1s -2024-04-19T21:15:35Z #15 1.833 26450K .......... .......... .......... .......... .......... 20% 141M 1s -2024-04-19T21:15:35Z #15 1.833 26500K .......... .......... .......... .......... .......... 20% 149M 1s -2024-04-19T21:15:35Z #15 1.833 26550K .......... .......... .......... .......... .......... 20% 148M 1s -2024-04-19T21:15:35Z #15 1.834 26600K .......... .......... .......... .......... .......... 21% 126M 1s -2024-04-19T21:15:35Z #15 1.834 26650K .......... .......... .......... .......... .......... 21% 150M 1s -2024-04-19T21:15:35Z #15 1.834 26700K .......... .......... .......... .......... .......... 21% 113M 1s -2024-04-19T21:15:35Z #15 1.835 26750K .......... .......... .......... .......... .......... 21% 146M 1s -2024-04-19T21:15:35Z #15 1.835 26800K .......... .......... .......... .......... .......... 21% 139M 1s -2024-04-19T21:15:35Z #15 1.835 26850K .......... .......... .......... .......... .......... 21% 150M 1s -2024-04-19T21:15:35Z #15 1.836 26900K .......... .......... .......... .......... .......... 21% 122M 1s -2024-04-19T21:15:35Z #15 1.836 26950K .......... .......... .......... .......... .......... 21% 154M 1s -2024-04-19T21:15:35Z #15 1.837 27000K .......... .......... .......... .......... .......... 21% 117M 1s -2024-04-19T21:15:35Z #15 1.837 27050K .......... .......... .......... .......... .......... 21% 131M 1s -2024-04-19T21:15:35Z #15 1.837 27100K .......... .......... .......... .......... .......... 21% 148M 1s -2024-04-19T21:15:35Z #15 1.838 27150K .......... .......... .......... .......... .......... 21% 127M 1s -2024-04-19T21:15:35Z #15 1.838 27200K .......... .......... .......... .......... .......... 21% 150M 1s -2024-04-19T21:15:35Z #15 1.838 27250K .......... .......... .......... .......... .......... 21% 114M 1s -2024-04-19T21:15:35Z #15 1.843 27300K .......... .......... .......... .......... .......... 21% 172M 1s -2024-04-19T21:15:35Z #15 1.843 27350K .......... .......... .......... .......... .......... 21% 138M 1s -2024-04-19T21:15:35Z #15 1.843 27400K .......... .......... .......... .......... .......... 21% 155M 1s -2024-04-19T21:15:35Z #15 1.843 27450K .......... .......... .......... .......... .......... 21% 141M 1s -2024-04-19T21:15:35Z #15 1.843 27500K .......... .......... .......... .......... .......... 21% 154M 1s -2024-04-19T21:15:35Z #15 1.843 27550K .......... .......... .......... .......... .......... 21% 135M 1s -2024-04-19T21:15:35Z #15 1.843 27600K .......... .......... .......... .......... .......... 21% 153M 1s -2024-04-19T21:15:35Z #15 1.843 27650K .......... .......... .......... .......... .......... 21% 137M 1s -2024-04-19T21:15:35Z #15 1.843 27700K .......... .......... .......... .......... .......... 21% 159M 1s -2024-04-19T21:15:35Z #15 1.843 27750K .......... .......... .......... .......... .......... 21% 128M 1s -2024-04-19T21:15:35Z #15 1.843 27800K .......... .......... .......... .......... .......... 21% 148M 1s -2024-04-19T21:15:35Z #15 1.843 27850K .......... .......... .......... .......... .......... 22% 129M 1s -2024-04-19T21:15:35Z #15 1.843 27900K .......... .......... .......... .......... .......... 22% 164M 1s -2024-04-19T21:15:35Z #15 1.843 27950K .......... .......... .......... .......... .......... 22% 133M 1s -2024-04-19T21:15:35Z #15 1.844 28000K .......... .......... .......... .......... .......... 22% 133M 1s -2024-04-19T21:15:35Z #15 1.844 28050K .......... .......... .......... .......... .......... 22% 149M 1s -2024-04-19T21:15:35Z #15 1.844 28100K .......... .......... .......... .......... .......... 22% 139M 1s -2024-04-19T21:15:35Z #15 1.845 28150K .......... .......... .......... .......... .......... 22% 120M 1s -2024-04-19T21:15:35Z #15 1.845 28200K .......... .......... .......... .......... .......... 22% 141M 1s -2024-04-19T21:15:35Z #15 1.845 28250K .......... .......... .......... .......... .......... 22% 144M 1s -2024-04-19T21:15:35Z #15 1.846 28300K .......... .......... .......... .......... .......... 22% 133M 1s -2024-04-19T21:15:35Z #15 1.846 28350K .......... .......... .......... .......... .......... 22% 142M 1s -2024-04-19T21:15:35Z #15 1.846 28400K .......... .......... .......... .......... .......... 22% 119M 1s -2024-04-19T21:15:35Z #15 1.847 28450K .......... .......... .......... .......... .......... 22% 134M 1s -2024-04-19T21:15:35Z #15 1.847 28500K .......... .......... .......... .......... .......... 22% 138M 1s -2024-04-19T21:15:35Z #15 1.848 28550K .......... .......... .......... .......... .......... 22% 147M 1s -2024-04-19T21:15:35Z #15 1.850 28600K .......... .......... .......... .......... .......... 22% 120M 1s -2024-04-19T21:15:35Z #15 1.850 28650K .......... .......... .......... .......... .......... 22% 149M 1s -2024-04-19T21:15:35Z #15 1.850 28700K .......... .......... .......... .......... .......... 22% 147M 1s -2024-04-19T21:15:35Z #15 1.850 28750K .......... .......... .......... .......... .......... 22% 139M 1s -2024-04-19T21:15:35Z #15 1.850 28800K .......... .......... .......... .......... .......... 22% 125M 1s -2024-04-19T21:15:35Z #15 1.850 28850K .......... .......... .......... .......... .......... 22% 152M 1s -2024-04-19T21:15:35Z #15 1.850 28900K .......... .......... .......... .......... .......... 22% 143M 1s -2024-04-19T21:15:35Z #15 1.850 28950K .......... .......... .......... .......... .......... 22% 139M 1s -2024-04-19T21:15:35Z #15 1.851 29000K .......... .......... .......... .......... .......... 22% 14.5M 1s -2024-04-19T21:15:35Z #15 1.854 29050K .......... .......... .......... .......... .......... 22% 154M 1s -2024-04-19T21:15:35Z #15 1.854 29100K .......... .......... .......... .......... .......... 22% 145M 1s -2024-04-19T21:15:35Z #15 1.855 29150K .......... .......... .......... .......... .......... 23% 117M 1s -2024-04-19T21:15:35Z #15 1.855 29200K .......... .......... .......... .......... .......... 23% 133M 1s -2024-04-19T21:15:35Z #15 1.855 29250K .......... .......... .......... .......... .......... 23% 150M 1s -2024-04-19T21:15:35Z #15 1.856 29300K .......... .......... .......... .......... .......... 23% 147M 1s -2024-04-19T21:15:35Z #15 1.856 29350K .......... .......... .......... .......... .......... 23% 117M 1s -2024-04-19T21:15:35Z #15 1.857 29400K .......... .......... .......... .......... .......... 23% 123M 1s -2024-04-19T21:15:35Z #15 1.857 29450K .......... .......... .......... .......... .......... 23% 124M 1s -2024-04-19T21:15:35Z #15 1.857 29500K .......... .......... .......... .......... .......... 23% 129M 1s -2024-04-19T21:15:35Z #15 1.858 29550K .......... .......... .......... .......... .......... 23% 139M 1s -2024-04-19T21:15:35Z #15 1.858 29600K .......... .......... .......... .......... .......... 23% 122M 1s -2024-04-19T21:15:35Z #15 1.859 29650K .......... .......... .......... .......... .......... 23% 117M 1s -2024-04-19T21:15:35Z #15 1.860 29700K .......... .......... .......... .......... .......... 23% 111M 1s -2024-04-19T21:15:35Z #15 1.860 29750K .......... .......... .......... .......... .......... 23% 141M 1s -2024-04-19T21:15:35Z #15 1.860 29800K .......... .......... .......... .......... .......... 23% 159M 1s -2024-04-19T21:15:35Z #15 1.860 29850K .......... .......... .......... .......... .......... 23% 152M 1s -2024-04-19T21:15:35Z #15 1.860 29900K .......... .......... .......... .......... .......... 23% 121M 1s -2024-04-19T21:15:35Z #15 1.861 29950K .......... .......... .......... .......... .......... 23% 116M 1s -2024-04-19T21:15:35Z #15 1.861 30000K .......... .......... .......... .......... .......... 23% 107M 1s -2024-04-19T21:15:35Z #15 1.862 30050K .......... .......... .......... .......... .......... 23% 120M 1s -2024-04-19T21:15:35Z #15 1.862 30100K .......... .......... .......... .......... .......... 23% 117M 1s -2024-04-19T21:15:35Z #15 1.863 30150K .......... .......... .......... .......... .......... 23% 100M 1s -2024-04-19T21:15:35Z #15 1.863 30200K .......... .......... .......... .......... .......... 23% 98.2M 1s -2024-04-19T21:15:35Z #15 1.864 30250K .......... .......... .......... .......... .......... 23% 124M 1s -2024-04-19T21:15:35Z #15 1.864 30300K .......... .......... .......... .......... .......... 23% 128M 1s -2024-04-19T21:15:35Z #15 1.864 30350K .......... .......... .......... .......... .......... 23% 98.9M 1s -2024-04-19T21:15:35Z #15 1.865 30400K .......... .......... .......... .......... .......... 24% 129M 1s -2024-04-19T21:15:35Z #15 1.865 30450K .......... .......... .......... .......... .......... 24% 114M 1s -2024-04-19T21:15:35Z #15 1.866 30500K .......... .......... .......... .......... .......... 24% 130M 1s -2024-04-19T21:15:35Z #15 1.866 30550K .......... .......... .......... .......... .......... 24% 108M 1s -2024-04-19T21:15:35Z #15 1.866 30600K .......... .......... .......... .......... .......... 24% 118M 1s -2024-04-19T21:15:35Z #15 1.867 30650K .......... .......... .......... .......... .......... 24% 112M 1s -2024-04-19T21:15:35Z #15 1.867 30700K .......... .......... .......... .......... .......... 24% 12.8M 1s -2024-04-19T21:15:35Z #15 1.871 30750K .......... .......... .......... .......... .......... 24% 123M 1s -2024-04-19T21:15:35Z #15 1.871 30800K .......... .......... .......... .......... .......... 24% 98.8M 1s -2024-04-19T21:15:35Z #15 1.872 30850K .......... .......... .......... .......... .......... 24% 149M 1s -2024-04-19T21:15:35Z #15 1.872 30900K .......... .......... .......... .......... .......... 24% 124M 1s -2024-04-19T21:15:35Z #15 1.873 30950K .......... .......... .......... .......... .......... 24% 133M 1s -2024-04-19T21:15:35Z #15 1.873 31000K .......... .......... .......... .......... .......... 24% 107M 1s -2024-04-19T21:15:35Z #15 1.873 31050K .......... .......... .......... .......... .......... 24% 131M 1s -2024-04-19T21:15:35Z #15 1.874 31100K .......... .......... .......... .......... .......... 24% 119M 1s -2024-04-19T21:15:35Z #15 1.874 31150K .......... .......... .......... .......... .......... 24% 128M 1s -2024-04-19T21:15:35Z #15 1.876 31200K .......... .......... .......... .......... .......... 24% 111M 1s -2024-04-19T21:15:35Z #15 1.876 31250K .......... .......... .......... .......... .......... 24% 133M 1s -2024-04-19T21:15:35Z #15 1.876 31300K .......... .......... .......... .......... .......... 24% 119M 1s -2024-04-19T21:15:35Z #15 1.876 31350K .......... .......... .......... .......... .......... 24% 118M 1s -2024-04-19T21:15:35Z #15 1.878 31400K .......... .......... .......... .......... .......... 24% 118M 1s -2024-04-19T21:15:35Z #15 1.878 31450K .......... .......... .......... .......... .......... 24% 125M 1s -2024-04-19T21:15:35Z #15 1.879 31500K .......... .......... .......... .......... .......... 24% 22.0M 1s -2024-04-19T21:15:35Z #15 1.879 31550K .......... .......... .......... .......... .......... 24% 121M 1s -2024-04-19T21:15:35Z #15 1.880 31600K .......... .......... .......... .......... .......... 24% 116M 1s -2024-04-19T21:15:35Z #15 1.880 31650K .......... .......... .......... .......... .......... 25% 115M 1s -2024-04-19T21:15:35Z #15 1.881 31700K .......... .......... .......... .......... .......... 25% 105M 1s -2024-04-19T21:15:35Z #15 1.881 31750K .......... .......... .......... .......... .......... 25% 102M 1s -2024-04-19T21:15:35Z #15 1.881 31800K .......... .......... .......... .......... .......... 25% 123M 1s -2024-04-19T21:15:35Z #15 1.882 31850K .......... .......... .......... .......... .......... 25% 119M 1s -2024-04-19T21:15:35Z #15 1.882 31900K .......... .......... .......... .......... .......... 25% 123M 1s -2024-04-19T21:15:35Z #15 1.883 31950K .......... .......... .......... .......... .......... 25% 106M 1s -2024-04-19T21:15:35Z #15 1.883 32000K .......... .......... .......... .......... .......... 25% 124M 1s -2024-04-19T21:15:35Z #15 1.883 32050K .......... .......... .......... .......... .......... 25% 127M 1s -2024-04-19T21:15:35Z #15 1.884 32100K .......... .......... .......... .......... .......... 25% 108M 1s -2024-04-19T21:15:35Z #15 1.884 32150K .......... .......... .......... .......... .......... 25% 115M 1s -2024-04-19T21:15:35Z #15 1.885 32200K .......... .......... .......... .......... .......... 25% 131M 1s -2024-04-19T21:15:35Z #15 1.885 32250K .......... .......... .......... .......... .......... 25% 122M 1s -2024-04-19T21:15:35Z #15 1.885 32300K .......... .......... .......... .......... .......... 25% 99.4M 1s -2024-04-19T21:15:35Z #15 1.886 32350K .......... .......... .......... .......... .......... 25% 157M 1s -2024-04-19T21:15:35Z #15 1.886 32400K .......... .......... .......... .......... .......... 25% 127M 1s -2024-04-19T21:15:35Z #15 1.887 32450K .......... .......... .......... .......... .......... 25% 10.8M 1s -2024-04-19T21:15:35Z #15 1.891 32500K .......... .......... .......... .......... .......... 25% 116M 1s -2024-04-19T21:15:35Z #15 1.892 32550K .......... .......... .......... .......... .......... 25% 140M 1s -2024-04-19T21:15:35Z #15 1.892 32600K .......... .......... .......... .......... .......... 25% 129M 1s -2024-04-19T21:15:35Z #15 1.893 32650K .......... .......... .......... .......... .......... 25% 121M 1s -2024-04-19T21:15:35Z #15 1.894 32700K .......... .......... .......... .......... .......... 25% 113M 1s -2024-04-19T21:15:35Z #15 1.894 32750K .......... .......... .......... .......... .......... 25% 139M 1s -2024-04-19T21:15:35Z #15 1.894 32800K .......... .......... .......... .......... .......... 25% 121M 1s -2024-04-19T21:15:35Z #15 1.894 32850K .......... .......... .......... .......... .......... 25% 108M 1s -2024-04-19T21:15:35Z #15 1.894 32900K .......... .......... .......... .......... .......... 25% 11.1M 1s -2024-04-19T21:15:35Z #15 1.899 32950K .......... .......... .......... .......... .......... 26% 106M 1s -2024-04-19T21:15:35Z #15 1.900 33000K .......... .......... .......... .......... .......... 26% 111M 1s -2024-04-19T21:15:35Z #15 1.900 33050K .......... .......... .......... .......... .......... 26% 119M 1s -2024-04-19T21:15:35Z #15 1.901 33100K .......... .......... .......... .......... .......... 26% 141M 1s -2024-04-19T21:15:35Z #15 1.901 33150K .......... .......... .......... .......... .......... 26% 107M 1s -2024-04-19T21:15:35Z #15 1.901 33200K .......... .......... .......... .......... .......... 26% 119M 1s -2024-04-19T21:15:35Z #15 1.901 33250K .......... .......... .......... .......... .......... 26% 119M 1s -2024-04-19T21:15:35Z #15 1.902 33300K .......... .......... .......... .......... .......... 26% 105M 1s -2024-04-19T21:15:35Z #15 1.902 33350K .......... .......... .......... .......... .......... 26% 113M 1s -2024-04-19T21:15:35Z #15 1.903 33400K .......... .......... .......... .......... .......... 26% 112M 1s -2024-04-19T21:15:35Z #15 1.903 33450K .......... .......... .......... .......... .......... 26% 134M 1s -2024-04-19T21:15:35Z #15 1.904 33500K .......... .......... .......... .......... .......... 26% 65.8M 1s -2024-04-19T21:15:35Z #15 1.904 33550K .......... .......... .......... .......... .......... 26% 152M 1s -2024-04-19T21:15:35Z #15 1.904 33600K .......... .......... .......... .......... .......... 26% 126M 1s -2024-04-19T21:15:35Z #15 1.905 33650K .......... .......... .......... .......... .......... 26% 153M 1s -2024-04-19T21:15:35Z #15 1.907 33700K .......... .......... .......... .......... .......... 26% 134M 1s -2024-04-19T21:15:35Z #15 1.907 33750K .......... .......... .......... .......... .......... 26% 126M 1s -2024-04-19T21:15:35Z #15 1.907 33800K .......... .......... .......... .......... .......... 26% 145M 1s -2024-04-19T21:15:35Z #15 1.907 33850K .......... .......... .......... .......... .......... 26% 151M 1s -2024-04-19T21:15:35Z #15 1.907 33900K .......... .......... .......... .......... .......... 26% 106M 1s -2024-04-19T21:15:35Z #15 1.907 33950K .......... .......... .......... .......... .......... 26% 154M 1s -2024-04-19T21:15:35Z #15 1.907 34000K .......... .......... .......... .......... .......... 26% 142M 1s -2024-04-19T21:15:35Z #15 1.908 34050K .......... .......... .......... .......... .......... 26% 159M 1s -2024-04-19T21:15:35Z #15 1.909 34100K .......... .......... .......... .......... .......... 26% 167M 1s -2024-04-19T21:15:35Z #15 1.909 34150K .......... .......... .......... .......... .......... 26% 140M 1s -2024-04-19T21:15:35Z #15 1.909 34200K .......... .......... .......... .......... .......... 27% 134M 1s -2024-04-19T21:15:35Z #15 1.909 34250K .......... .......... .......... .......... .......... 27% 139M 1s -2024-04-19T21:15:35Z #15 1.909 34300K .......... .......... .......... .......... .......... 27% 163M 1s -2024-04-19T21:15:35Z #15 1.910 34350K .......... .......... .......... .......... .......... 27% 163M 1s -2024-04-19T21:15:35Z #15 1.910 34400K .......... .......... .......... .......... .......... 27% 143M 1s -2024-04-19T21:15:35Z #15 1.910 34450K .......... .......... .......... .......... .......... 27% 161M 1s -2024-04-19T21:15:35Z #15 1.911 34500K .......... .......... .......... .......... .......... 27% 11.1M 1s -2024-04-19T21:15:35Z #15 1.915 34550K .......... .......... .......... .......... .......... 27% 155M 1s -2024-04-19T21:15:35Z #15 1.915 34600K .......... .......... .......... .......... .......... 27% 135M 1s -2024-04-19T21:15:35Z #15 1.916 34650K .......... .......... .......... .......... .......... 27% 168M 1s -2024-04-19T21:15:35Z #15 1.917 34700K .......... .......... .......... .......... .......... 27% 749K 1s -2024-04-19T21:15:35Z #15 1.984 34750K .......... .......... .......... .......... .......... 27% 56.4M 1s -2024-04-19T21:15:35Z #15 1.984 34800K .......... .......... .......... .......... .......... 27% 52.0M 1s -2024-04-19T21:15:35Z #15 1.985 34850K .......... .......... .......... .......... .......... 27% 44.4M 1s -2024-04-19T21:15:35Z #15 1.986 34900K .......... .......... .......... .......... .......... 27% 52.4M 1s -2024-04-19T21:15:35Z #15 1.987 34950K .......... .......... .......... .......... .......... 27% 52.8M 1s -2024-04-19T21:15:35Z #15 1.988 35000K .......... .......... .......... .......... .......... 27% 56.3M 1s -2024-04-19T21:15:35Z #15 1.990 35050K .......... .......... .......... .......... .......... 27% 43.7M 1s -2024-04-19T21:15:35Z #15 1.990 35100K .......... .......... .......... .......... .......... 27% 60.1M 1s -2024-04-19T21:15:35Z #15 1.990 35150K .......... .......... .......... .......... .......... 27% 139M 1s -2024-04-19T21:15:35Z #15 1.991 35200K .......... .......... .......... .......... .......... 27% 135M 1s -2024-04-19T21:15:35Z #15 1.991 35250K .......... .......... .......... .......... .......... 27% 150M 1s -2024-04-19T21:15:35Z #15 1.991 35300K .......... .......... .......... .......... .......... 27% 130M 1s -2024-04-19T21:15:35Z #15 1.992 35350K .......... .......... .......... .......... .......... 27% 153M 1s -2024-04-19T21:15:35Z #15 1.992 35400K .......... .......... .......... .......... .......... 27% 133M 1s -2024-04-19T21:15:35Z #15 1.992 35450K .......... .......... .......... .......... .......... 28% 157M 1s -2024-04-19T21:15:35Z #15 1.993 35500K .......... .......... .......... .......... .......... 28% 138M 1s -2024-04-19T21:15:35Z #15 1.993 35550K .......... .......... .......... .......... .......... 28% 132M 1s -2024-04-19T21:15:35Z #15 1.993 35600K .......... .......... .......... .......... .......... 28% 138M 1s -2024-04-19T21:15:35Z #15 1.994 35650K .......... .......... .......... .......... .......... 28% 144M 1s -2024-04-19T21:15:35Z #15 1.995 35700K .......... .......... .......... .......... .......... 28% 126M 1s -2024-04-19T21:15:35Z #15 1.995 35750K .......... .......... .......... .......... .......... 28% 10.4M 1s -2024-04-19T21:15:35Z #15 1.999 35800K .......... .......... .......... .......... .......... 28% 98.1M 1s -2024-04-19T21:15:35Z #15 2.001 35850K .......... .......... .......... .......... .......... 28% 147M 1s -2024-04-19T21:15:35Z #15 2.001 35900K .......... .......... .......... .......... .......... 28% 158M 1s -2024-04-19T21:15:35Z #15 2.001 35950K .......... .......... .......... .......... .......... 28% 149M 1s -2024-04-19T21:15:35Z #15 2.001 36000K .......... .......... .......... .......... .......... 28% 120M 1s -2024-04-19T21:15:35Z #15 2.001 36050K .......... .......... .......... .......... .......... 28% 144M 1s -2024-04-19T21:15:35Z #15 2.002 36100K .......... .......... .......... .......... .......... 28% 149M 1s -2024-04-19T21:15:35Z #15 2.002 36150K .......... .......... .......... .......... .......... 28% 130M 1s -2024-04-19T21:15:35Z #15 2.003 36200K .......... .......... .......... .......... .......... 28% 141M 1s -2024-04-19T21:15:35Z #15 2.003 36250K .......... .......... .......... .......... .......... 28% 10.9M 1s -2024-04-19T21:15:35Z #15 2.007 36300K .......... .......... .......... .......... .......... 28% 141M 1s -2024-04-19T21:15:35Z #15 2.008 36350K .......... .......... .......... .......... .......... 28% 156M 1s -2024-04-19T21:15:35Z #15 2.008 36400K .......... .......... .......... .......... .......... 28% 150M 1s -2024-04-19T21:15:35Z #15 2.008 36450K .......... .......... .......... .......... .......... 28% 124M 1s -2024-04-19T21:15:35Z #15 2.008 36500K .......... .......... .......... .......... .......... 28% 162M 1s -2024-04-19T21:15:35Z #15 2.009 36550K .......... .......... .......... .......... .......... 28% 141M 1s -2024-04-19T21:15:35Z #15 2.010 36600K .......... .......... .......... .......... .......... 28% 110M 1s -2024-04-19T21:15:35Z #15 2.010 36650K .......... .......... .......... .......... .......... 28% 149M 1s -2024-04-19T21:15:35Z #15 2.010 36700K .......... .......... .......... .......... .......... 28% 146M 1s -2024-04-19T21:15:35Z #15 2.010 36750K .......... .......... .......... .......... .......... 29% 140M 1s -2024-04-19T21:15:35Z #15 2.011 36800K .......... .......... .......... .......... .......... 29% 11.7M 1s -2024-04-19T21:15:35Z #15 2.015 36850K .......... .......... .......... .......... .......... 29% 104M 1s -2024-04-19T21:15:35Z #15 2.015 36900K .......... .......... .......... .......... .......... 29% 119M 1s -2024-04-19T21:15:35Z #15 2.015 36950K .......... .......... .......... .......... .......... 29% 156M 1s -2024-04-19T21:15:35Z #15 2.016 37000K .......... .......... .......... .......... .......... 29% 157M 1s -2024-04-19T21:15:35Z #15 2.016 37050K .......... .......... .......... .......... .......... 29% 137M 1s -2024-04-19T21:15:35Z #15 2.016 37100K .......... .......... .......... .......... .......... 29% 154M 1s -2024-04-19T21:15:35Z #15 2.017 37150K .......... .......... .......... .......... .......... 29% 152M 1s -2024-04-19T21:15:35Z #15 2.017 37200K .......... .......... .......... .......... .......... 29% 118M 1s -2024-04-19T21:15:35Z #15 2.018 37250K .......... .......... .......... .......... .......... 29% 142M 1s -2024-04-19T21:15:35Z #15 2.018 37300K .......... .......... .......... .......... .......... 29% 162M 1s -2024-04-19T21:15:35Z #15 2.018 37350K .......... .......... .......... .......... .......... 29% 137M 1s -2024-04-19T21:15:35Z #15 2.019 37400K .......... .......... .......... .......... .......... 29% 121M 1s -2024-04-19T21:15:35Z #15 2.019 37450K .......... .......... .......... .......... .......... 29% 127M 1s -2024-04-19T21:15:35Z #15 2.021 37500K .......... .......... .......... .......... .......... 29% 172M 1s -2024-04-19T21:15:35Z #15 2.021 37550K .......... .......... .......... .......... .......... 29% 129M 1s -2024-04-19T21:15:35Z #15 2.021 37600K .......... .......... .......... .......... .......... 29% 154M 1s -2024-04-19T21:15:35Z #15 2.021 37650K .......... .......... .......... .......... .......... 29% 124M 1s -2024-04-19T21:15:35Z #15 2.021 37700K .......... .......... .......... .......... .......... 29% 149M 1s -2024-04-19T21:15:35Z #15 2.021 37750K .......... .......... .......... .......... .......... 29% 152M 1s -2024-04-19T21:15:35Z #15 2.022 37800K .......... .......... .......... .......... .......... 29% 149M 1s -2024-04-19T21:15:35Z #15 2.022 37850K .......... .......... .......... .......... .......... 29% 130M 1s -2024-04-19T21:15:35Z #15 2.022 37900K .......... .......... .......... .......... .......... 29% 121M 1s -2024-04-19T21:15:35Z #15 2.022 37950K .......... .......... .......... .......... .......... 29% 27.9M 1s -2024-04-19T21:15:35Z #15 2.031 38000K .......... .......... .......... .......... .......... 30% 158M 1s -2024-04-19T21:15:35Z #15 2.031 38050K .......... .......... .......... .......... .......... 30% 147M 1s -2024-04-19T21:15:35Z #15 2.031 38100K .......... .......... .......... .......... .......... 30% 81.4M 1s -2024-04-19T21:15:35Z #15 2.031 38150K .......... .......... .......... .......... .......... 30% 122M 1s -2024-04-19T21:15:35Z #15 2.031 38200K .......... .......... .......... .......... .......... 30% 126M 1s -2024-04-19T21:15:35Z #15 2.031 38250K .......... .......... .......... .......... .......... 30% 71.0M 1s -2024-04-19T21:15:35Z #15 2.031 38300K .......... .......... .......... .......... .......... 30% 128M 1s -2024-04-19T21:15:35Z #15 2.031 38350K .......... .......... .......... .......... .......... 30% 136M 1s -2024-04-19T21:15:35Z #15 2.031 38400K .......... .......... .......... .......... .......... 30% 103M 1s -2024-04-19T21:15:35Z #15 2.031 38450K .......... .......... .......... .......... .......... 30% 168M 1s -2024-04-19T21:15:35Z #15 2.031 38500K .......... .......... .......... .......... .......... 30% 136M 1s -2024-04-19T21:15:35Z #15 2.031 38550K .......... .......... .......... .......... .......... 30% 84.9M 1s -2024-04-19T21:15:35Z #15 2.031 38600K .......... .......... .......... .......... .......... 30% 149M 1s -2024-04-19T21:15:35Z #15 2.031 38650K .......... .......... .......... .......... .......... 30% 83.2M 1s -2024-04-19T21:15:35Z #15 2.031 38700K .......... .......... .......... .......... .......... 30% 152M 1s -2024-04-19T21:15:35Z #15 2.031 38750K .......... .......... .......... .......... .......... 30% 17.1M 1s -2024-04-19T21:15:35Z #15 2.037 38800K .......... .......... .......... .......... .......... 30% 142M 1s -2024-04-19T21:15:35Z #15 2.037 38850K .......... .......... .......... .......... .......... 30% 147M 1s -2024-04-19T21:15:35Z #15 2.037 38900K .......... .......... .......... .......... .......... 30% 93.2M 1s -2024-04-19T21:15:35Z #15 2.037 38950K .......... .......... .......... .......... .......... 30% 102M 1s -2024-04-19T21:15:35Z #15 2.037 39000K .......... .......... .......... .......... .......... 30% 111M 1s -2024-04-19T21:15:35Z #15 2.037 39050K .......... .......... .......... .......... .......... 30% 136M 1s -2024-04-19T21:15:35Z #15 2.037 39100K .......... .......... .......... .......... .......... 30% 100M 1s -2024-04-19T21:15:35Z #15 2.037 39150K .......... .......... .......... .......... .......... 30% 60.9M 1s -2024-04-19T21:15:35Z #15 2.037 39200K .......... .......... .......... .......... .......... 30% 33.5M 1s -2024-04-19T21:15:35Z #15 2.043 39250K .......... .......... .......... .......... .......... 30% 63.3M 1s -2024-04-19T21:15:35Z #15 2.043 39300K .......... .......... .......... .......... .......... 31% 103M 1s -2024-04-19T21:15:35Z #15 2.043 39350K .......... .......... .......... .......... .......... 31% 106M 1s -2024-04-19T21:15:35Z #15 2.043 39400K .......... .......... .......... .......... .......... 31% 82.9M 1s -2024-04-19T21:15:35Z #15 2.043 39450K .......... .......... .......... .......... .......... 31% 73.1M 1s -2024-04-19T21:15:35Z #15 2.043 39500K .......... .......... .......... .......... .......... 31% 127M 1s -2024-04-19T21:15:35Z #15 2.043 39550K .......... .......... .......... .......... .......... 31% 122M 1s -2024-04-19T21:15:35Z #15 2.043 39600K .......... .......... .......... .......... .......... 31% 43.1M 1s -2024-04-19T21:15:35Z #15 2.044 39650K .......... .......... .......... .......... .......... 31% 34.9M 1s -2024-04-19T21:15:35Z #15 2.047 39700K .......... .......... .......... .......... .......... 31% 125M 1s -2024-04-19T21:15:35Z #15 2.047 39750K .......... .......... .......... .......... .......... 31% 123M 1s -2024-04-19T21:15:35Z #15 2.047 39800K .......... .......... .......... .......... .......... 31% 72.9M 1s -2024-04-19T21:15:35Z #15 2.047 39850K .......... .......... .......... .......... .......... 31% 67.2M 1s -2024-04-19T21:15:35Z #15 2.051 39900K .......... .......... .......... .......... .......... 31% 115M 1s -2024-04-19T21:15:35Z #15 2.051 39950K .......... .......... .......... .......... .......... 31% 80.9M 1s -2024-04-19T21:15:35Z #15 2.051 40000K .......... .......... .......... .......... .......... 31% 106M 1s -2024-04-19T21:15:35Z #15 2.051 40050K .......... .......... .......... .......... .......... 31% 130M 1s -2024-04-19T21:15:35Z #15 2.051 40100K .......... .......... .......... .......... .......... 31% 104M 1s -2024-04-19T21:15:35Z #15 2.051 40150K .......... .......... .......... .......... .......... 31% 129M 1s -2024-04-19T21:15:35Z #15 2.051 40200K .......... .......... .......... .......... .......... 31% 43.2M 1s -2024-04-19T21:15:35Z #15 2.051 40250K .......... .......... .......... .......... .......... 31% 38.6M 1s -2024-04-19T21:15:35Z #15 2.055 40300K .......... .......... .......... .......... .......... 31% 99.7M 1s -2024-04-19T21:15:35Z #15 2.055 40350K .......... .......... .......... .......... .......... 31% 122M 1s -2024-04-19T21:15:35Z #15 2.055 40400K .......... .......... .......... .......... .......... 31% 71.2M 1s -2024-04-19T21:15:35Z #15 2.055 40450K .......... .......... .......... .......... .......... 31% 89.9M 1s -2024-04-19T21:15:35Z #15 2.055 40500K .......... .......... .......... .......... .......... 31% 87.4M 1s -2024-04-19T21:15:35Z #15 2.055 40550K .......... .......... .......... .......... .......... 32% 130M 1s -2024-04-19T21:15:35Z #15 2.055 40600K .......... .......... .......... .......... .......... 32% 76.9M 1s -2024-04-19T21:15:35Z #15 2.056 40650K .......... .......... .......... .......... .......... 32% 111M 1s -2024-04-19T21:15:35Z #15 2.056 40700K .......... .......... .......... .......... .......... 32% 118M 1s -2024-04-19T21:15:35Z #15 2.057 40750K .......... .......... .......... .......... .......... 32% 71.4M 1s -2024-04-19T21:15:35Z #15 2.057 40800K .......... .......... .......... .......... .......... 32% 126M 1s -2024-04-19T21:15:35Z #15 2.058 40850K .......... .......... .......... .......... .......... 32% 143M 1s -2024-04-19T21:15:35Z #15 2.058 40900K .......... .......... .......... .......... .......... 32% 61.7M 1s -2024-04-19T21:15:35Z #15 2.063 40950K .......... .......... .......... .......... .......... 32% 111M 1s -2024-04-19T21:15:35Z #15 2.063 41000K .......... .......... .......... .......... .......... 32% 116M 1s -2024-04-19T21:15:35Z #15 2.063 41050K .......... .......... .......... .......... .......... 32% 117M 1s -2024-04-19T21:15:35Z #15 2.063 41100K .......... .......... .......... .......... .......... 32% 65.0M 1s -2024-04-19T21:15:35Z #15 2.063 41150K .......... .......... .......... .......... .......... 32% 119M 1s -2024-04-19T21:15:35Z #15 2.063 41200K .......... .......... .......... .......... .......... 32% 118M 1s -2024-04-19T21:15:35Z #15 2.063 41250K .......... .......... .......... .......... .......... 32% 66.4M 1s -2024-04-19T21:15:35Z #15 2.063 41300K .......... .......... .......... .......... .......... 32% 55.0M 1s -2024-04-19T21:15:35Z #15 2.067 41350K .......... .......... .......... .......... .......... 32% 123M 1s -2024-04-19T21:15:35Z #15 2.067 41400K .......... .......... .......... .......... .......... 32% 116M 1s -2024-04-19T21:15:35Z #15 2.067 41450K .......... .......... .......... .......... .......... 32% 56.7M 1s -2024-04-19T21:15:35Z #15 2.067 41500K .......... .......... .......... .......... .......... 32% 144M 1s -2024-04-19T21:15:35Z #15 2.067 41550K .......... .......... .......... .......... .......... 32% 121M 1s -2024-04-19T21:15:35Z #15 2.067 41600K .......... .......... .......... .......... .......... 32% 76.1M 1s -2024-04-19T21:15:35Z #15 2.067 41650K .......... .......... .......... .......... .......... 32% 77.5M 1s -2024-04-19T21:15:35Z #15 2.071 41700K .......... .......... .......... .......... .......... 32% 113M 1s -2024-04-19T21:15:35Z #15 2.071 41750K .......... .......... .......... .......... .......... 32% 63.2M 1s -2024-04-19T21:15:35Z #15 2.071 41800K .......... .......... .......... .......... .......... 33% 110M 1s -2024-04-19T21:15:35Z #15 2.071 41850K .......... .......... .......... .......... .......... 33% 136M 1s -2024-04-19T21:15:35Z #15 2.071 41900K .......... .......... .......... .......... .......... 33% 69.8M 1s -2024-04-19T21:15:35Z #15 2.071 41950K .......... .......... .......... .......... .......... 33% 146M 1s -2024-04-19T21:15:35Z #15 2.071 42000K .......... .......... .......... .......... .......... 33% 113M 1s -2024-04-19T21:15:35Z #15 2.071 42050K .......... .......... .......... .......... .......... 33% 56.1M 1s -2024-04-19T21:15:35Z #15 2.072 42100K .......... .......... .......... .......... .......... 33% 109M 1s -2024-04-19T21:15:35Z #15 2.072 42150K .......... .......... .......... .......... .......... 33% 83.5M 1s -2024-04-19T21:15:35Z #15 2.073 42200K .......... .......... .......... .......... .......... 33% 58.6M 1s -2024-04-19T21:15:35Z #15 2.079 42250K .......... .......... .......... .......... .......... 33% 147M 1s -2024-04-19T21:15:35Z #15 2.079 42300K .......... .......... .......... .......... .......... 33% 136M 1s -2024-04-19T21:15:35Z #15 2.079 42350K .......... .......... .......... .......... .......... 33% 61.3M 1s -2024-04-19T21:15:35Z #15 2.079 42400K .......... .......... .......... .......... .......... 33% 101M 1s -2024-04-19T21:15:35Z #15 2.079 42450K .......... .......... .......... .......... .......... 33% 120M 1s -2024-04-19T21:15:35Z #15 2.079 42500K .......... .......... .......... .......... .......... 33% 89.3M 1s -2024-04-19T21:15:35Z #15 2.079 42550K .......... .......... .......... .......... .......... 33% 121M 1s -2024-04-19T21:15:35Z #15 2.079 42600K .......... .......... .......... .......... .......... 33% 73.2M 1s -2024-04-19T21:15:35Z #15 2.079 42650K .......... .......... .......... .......... .......... 33% 105M 1s -2024-04-19T21:15:35Z #15 2.079 42700K .......... .......... .......... .......... .......... 33% 122M 1s -2024-04-19T21:15:35Z #15 2.079 42750K .......... .......... .......... .......... .......... 33% 48.3M 1s -2024-04-19T21:15:35Z #15 2.083 42800K .......... .......... .......... .......... .......... 33% 147M 1s -2024-04-19T21:15:35Z #15 2.083 42850K .......... .......... .......... .......... .......... 33% 123M 1s -2024-04-19T21:15:35Z #15 2.083 42900K .......... .......... .......... .......... .......... 33% 76.6M 1s -2024-04-19T21:15:35Z #15 2.083 42950K .......... .......... .......... .......... .......... 33% 105M 1s -2024-04-19T21:15:35Z #15 2.083 43000K .......... .......... .......... .......... .......... 33% 109M 1s -2024-04-19T21:15:35Z #15 2.083 43050K .......... .......... .......... .......... .......... 33% 59.2M 1s -2024-04-19T21:15:35Z #15 2.083 43100K .......... .......... .......... .......... .......... 34% 74.7M 1s -2024-04-19T21:15:35Z #15 2.083 43150K .......... .......... .......... .......... .......... 34% 91.0M 1s -2024-04-19T21:15:35Z #15 2.084 43200K .......... .......... .......... .......... .......... 34% 130M 1s -2024-04-19T21:15:35Z #15 2.084 43250K .......... .......... .......... .......... .......... 34% 80.5M 1s -2024-04-19T21:15:35Z #15 2.085 43300K .......... .......... .......... .......... .......... 34% 120M 1s -2024-04-19T21:15:35Z #15 2.085 43350K .......... .......... .......... .......... .......... 34% 82.3M 1s -2024-04-19T21:15:35Z #15 2.086 43400K .......... .......... .......... .......... .......... 34% 98.9M 1s -2024-04-19T21:15:35Z #15 2.086 43450K .......... .......... .......... .......... .......... 34% 149M 1s -2024-04-19T21:15:35Z #15 2.087 43500K .......... .......... .......... .......... .......... 34% 151M 1s -2024-04-19T21:15:35Z #15 2.087 43550K .......... .......... .......... .......... .......... 34% 78.2M 1s -2024-04-19T21:15:35Z #15 2.090 43600K .......... .......... .......... .......... .......... 34% 131M 1s -2024-04-19T21:15:35Z #15 2.090 43650K .......... .......... .......... .......... .......... 34% 95.4M 1s -2024-04-19T21:15:35Z #15 2.090 43700K .......... .......... .......... .......... .......... 34% 155M 1s -2024-04-19T21:15:35Z #15 2.090 43750K .......... .......... .......... .......... .......... 34% 167M 1s -2024-04-19T21:15:35Z #15 2.090 43800K .......... .......... .......... .......... .......... 34% 72.6M 1s -2024-04-19T21:15:35Z #15 2.090 43850K .......... .......... .......... .......... .......... 34% 129M 1s -2024-04-19T21:15:35Z #15 2.090 43900K .......... .......... .......... .......... .......... 34% 149M 1s -2024-04-19T21:15:35Z #15 2.090 43950K .......... .......... .......... .......... .......... 34% 65.8M 1s -2024-04-19T21:15:35Z #15 2.095 44000K .......... .......... .......... .......... .......... 34% 106M 1s -2024-04-19T21:15:35Z #15 2.095 44050K .......... .......... .......... .......... .......... 34% 157M 1s -2024-04-19T21:15:35Z #15 2.095 44100K .......... .......... .......... .......... .......... 34% 124M 1s -2024-04-19T21:15:35Z #15 2.095 44150K .......... .......... .......... .......... .......... 34% 67.2M 1s -2024-04-19T21:15:35Z #15 2.095 44200K .......... .......... .......... .......... .......... 34% 79.2M 1s -2024-04-19T21:15:35Z #15 2.095 44250K .......... .......... .......... .......... .......... 34% 118M 1s -2024-04-19T21:15:35Z #15 2.095 44300K .......... .......... .......... .......... .......... 34% 65.8M 1s -2024-04-19T21:15:35Z #15 2.095 44350K .......... .......... .......... .......... .......... 35% 65.0M 1s -2024-04-19T21:15:35Z #15 2.095 44400K .......... .......... .......... .......... .......... 35% 143M 1s -2024-04-19T21:15:35Z #15 2.096 44450K .......... .......... .......... .......... .......... 35% 61.9M 1s -2024-04-19T21:15:35Z #15 2.096 44500K .......... .......... .......... .......... .......... 35% 92.8M 1s -2024-04-19T21:15:35Z #15 2.097 44550K .......... .......... .......... .......... .......... 35% 128M 1s -2024-04-19T21:15:35Z #15 2.097 44600K .......... .......... .......... .......... .......... 35% 139M 1s -2024-04-19T21:15:35Z #15 2.098 44650K .......... .......... .......... .......... .......... 35% 66.2M 1s -2024-04-19T21:15:35Z #15 2.098 44700K .......... .......... .......... .......... .......... 35% 105M 1s -2024-04-19T21:15:35Z #15 2.099 44750K .......... .......... .......... .......... .......... 35% 141M 1s -2024-04-19T21:15:35Z #15 2.099 44800K .......... .......... .......... .......... .......... 35% 141M 1s -2024-04-19T21:15:35Z #15 2.100 44850K .......... .......... .......... .......... .......... 35% 77.6M 1s -2024-04-19T21:15:35Z #15 2.100 44900K .......... .......... .......... .......... .......... 35% 104M 1s -2024-04-19T21:15:35Z #15 2.101 44950K .......... .......... .......... .......... .......... 35% 151M 1s -2024-04-19T21:15:35Z #15 2.101 45000K .......... .......... .......... .......... .......... 35% 136M 1s -2024-04-19T21:15:35Z #15 2.101 45050K .......... .......... .......... .......... .......... 35% 78.6M 1s -2024-04-19T21:15:35Z #15 2.103 45100K .......... .......... .......... .......... .......... 35% 126M 1s -2024-04-19T21:15:35Z #15 2.103 45150K .......... .......... .......... .......... .......... 35% 83.7M 1s -2024-04-19T21:15:35Z #15 2.104 45200K .......... .......... .......... .......... .......... 35% 83.6M 1s -2024-04-19T21:15:35Z #15 2.104 45250K .......... .......... .......... .......... .......... 35% 156M 1s -2024-04-19T21:15:35Z #15 2.104 45300K .......... .......... .......... .......... .......... 35% 116M 1s -2024-04-19T21:15:35Z #15 2.105 45350K .......... .......... .......... .......... .......... 35% 79.1M 1s -2024-04-19T21:15:35Z #15 2.105 45400K .......... .......... .......... .......... .......... 35% 112M 1s -2024-04-19T21:15:35Z #15 2.105 45450K .......... .......... .......... .......... .......... 35% 59.5M 1s -2024-04-19T21:15:35Z #15 2.107 45500K .......... .......... .......... .......... .......... 35% 140M 1s -2024-04-19T21:15:35Z #15 2.107 45550K .......... .......... .......... .......... .......... 35% 128M 1s -2024-04-19T21:15:35Z #15 2.107 45600K .......... .......... .......... .......... .......... 36% 122M 1s -2024-04-19T21:15:35Z #15 2.107 45650K .......... .......... .......... .......... .......... 36% 60.0M 1s -2024-04-19T21:15:35Z #15 2.108 45700K .......... .......... .......... .......... .......... 36% 168M 1s -2024-04-19T21:15:35Z #15 2.108 45750K .......... .......... .......... .......... .......... 36% 140M 1s -2024-04-19T21:15:35Z #15 2.109 45800K .......... .......... .......... .......... .......... 36% 78.7M 1s -2024-04-19T21:15:35Z #15 2.115 45850K .......... .......... .......... .......... .......... 36% 105M 1s -2024-04-19T21:15:35Z #15 2.115 45900K .......... .......... .......... .......... .......... 36% 178M 1s -2024-04-19T21:15:35Z #15 2.115 45950K .......... .......... .......... .......... .......... 36% 79.7M 1s -2024-04-19T21:15:35Z #15 2.115 46000K .......... .......... .......... .......... .......... 36% 138M 1s -2024-04-19T21:15:35Z #15 2.115 46050K .......... .......... .......... .......... .......... 36% 76.7M 1s -2024-04-19T21:15:35Z #15 2.115 46100K .......... .......... .......... .......... .......... 36% 144M 1s -2024-04-19T21:15:35Z #15 2.115 46150K .......... .......... .......... .......... .......... 36% 133M 1s -2024-04-19T21:15:35Z #15 2.115 46200K .......... .......... .......... .......... .......... 36% 125M 1s -2024-04-19T21:15:35Z #15 2.115 46250K .......... .......... .......... .......... .......... 36% 78.4M 1s -2024-04-19T21:15:35Z #15 2.115 46300K .......... .......... .......... .......... .......... 36% 143M 1s -2024-04-19T21:15:35Z #15 2.115 46350K .......... .......... .......... .......... .......... 36% 176M 1s -2024-04-19T21:15:35Z #15 2.115 46400K .......... .......... .......... .......... .......... 36% 70.9M 1s -2024-04-19T21:15:35Z #15 2.115 46450K .......... .......... .......... .......... .......... 36% 116M 1s -2024-04-19T21:15:35Z #15 2.115 46500K .......... .......... .......... .......... .......... 36% 128M 1s -2024-04-19T21:15:35Z #15 2.116 46550K .......... .......... .......... .......... .......... 36% 115M 1s -2024-04-19T21:15:35Z #15 2.116 46600K .......... .......... .......... .......... .......... 36% 57.4M 1s -2024-04-19T21:15:35Z #15 2.117 46650K .......... .......... .......... .......... .......... 36% 83.2M 1s -2024-04-19T21:15:35Z #15 2.118 46700K .......... .......... .......... .......... .......... 36% 132M 1s -2024-04-19T21:15:35Z #15 2.118 46750K .......... .......... .......... .......... .......... 36% 61.7M 1s -2024-04-19T21:15:35Z #15 2.119 46800K .......... .......... .......... .......... .......... 36% 91.3M 1s -2024-04-19T21:15:35Z #15 2.119 46850K .......... .......... .......... .......... .......... 36% 126M 1s -2024-04-19T21:15:35Z #15 2.120 46900K .......... .......... .......... .......... .......... 37% 102M 1s -2024-04-19T21:15:35Z #15 2.120 46950K .......... .......... .......... .......... .......... 37% 66.2M 1s -2024-04-19T21:15:35Z #15 2.123 47000K .......... .......... .......... .......... .......... 37% 79.3M 1s -2024-04-19T21:15:35Z #15 2.123 47050K .......... .......... .......... .......... .......... 37% 134M 1s -2024-04-19T21:15:35Z #15 2.123 47100K .......... .......... .......... .......... .......... 37% 95.4M 1s -2024-04-19T21:15:35Z #15 2.123 47150K .......... .......... .......... .......... .......... 37% 58.0M 1s -2024-04-19T21:15:35Z #15 2.123 47200K .......... .......... .......... .......... .......... 37% 110M 1s -2024-04-19T21:15:35Z #15 2.124 47250K .......... .......... .......... .......... .......... 37% 102M 1s -2024-04-19T21:15:35Z #15 2.124 47300K .......... .......... .......... .......... .......... 37% 106M 1s -2024-04-19T21:15:35Z #15 2.124 47350K .......... .......... .......... .......... .......... 37% 76.2M 1s -2024-04-19T21:15:35Z #15 2.125 47400K .......... .......... .......... .......... .......... 37% 90.8M 1s -2024-04-19T21:15:35Z #15 2.126 47450K .......... .......... .......... .......... .......... 37% 130M 1s -2024-04-19T21:15:35Z #15 2.127 47500K .......... .......... .......... .......... .......... 37% 80.3M 1s -2024-04-19T21:15:35Z #15 2.127 47550K .......... .......... .......... .......... .......... 37% 110M 1s -2024-04-19T21:15:35Z #15 2.128 47600K .......... .......... .......... .......... .......... 37% 74.2M 1s -2024-04-19T21:15:35Z #15 2.128 47650K .......... .......... .......... .......... .......... 37% 105M 1s -2024-04-19T21:15:35Z #15 2.129 47700K .......... .......... .......... .......... .......... 37% 140M 1s -2024-04-19T21:15:35Z #15 2.129 47750K .......... .......... .......... .......... .......... 37% 68.1M 1s -2024-04-19T21:15:35Z #15 2.130 47800K .......... .......... .......... .......... .......... 37% 106M 1s -2024-04-19T21:15:35Z #15 2.130 47850K .......... .......... .......... .......... .......... 37% 148M 1s -2024-04-19T21:15:35Z #15 2.130 47900K .......... .......... .......... .......... .......... 37% 125M 1s -2024-04-19T21:15:35Z #15 2.132 47950K .......... .......... .......... .......... .......... 37% 10.1M 1s -2024-04-19T21:15:35Z #15 2.136 48000K .......... .......... .......... .......... .......... 37% 110M 1s -2024-04-19T21:15:35Z #15 2.136 48050K .......... .......... .......... .......... .......... 37% 115M 1s -2024-04-19T21:15:35Z #15 2.136 48100K .......... .......... .......... .......... .......... 37% 73.1M 1s -2024-04-19T21:15:35Z #15 2.137 48150K .......... .......... .......... .......... .......... 38% 137M 1s -2024-04-19T21:15:35Z #15 2.138 48200K .......... .......... .......... .......... .......... 38% 120M 1s -2024-04-19T21:15:35Z #15 2.138 48250K .......... .......... .......... .......... .......... 38% 75.2M 1s -2024-04-19T21:15:35Z #15 2.138 48300K .......... .......... .......... .......... .......... 38% 94.4M 1s -2024-04-19T21:15:35Z #15 2.139 48350K .......... .......... .......... .......... .......... 38% 122M 1s -2024-04-19T21:15:35Z #15 2.139 48400K .......... .......... .......... .......... .......... 38% 143M 1s -2024-04-19T21:15:35Z #15 2.140 48450K .......... .......... .......... .......... .......... 38% 71.0M 1s -2024-04-19T21:15:35Z #15 2.141 48500K .......... .......... .......... .......... .......... 38% 139M 1s -2024-04-19T21:15:35Z #15 2.141 48550K .......... .......... .......... .......... .......... 38% 77.0M 1s -2024-04-19T21:15:35Z #15 2.142 48600K .......... .......... .......... .......... .......... 38% 103M 1s -2024-04-19T21:15:35Z #15 2.142 48650K .......... .......... .......... .......... .......... 38% 76.1M 1s -2024-04-19T21:15:35Z #15 2.143 48700K .......... .......... .......... .......... .......... 38% 129M 1s -2024-04-19T21:15:35Z #15 2.143 48750K .......... .......... .......... .......... .......... 38% 129M 1s -2024-04-19T21:15:35Z #15 2.144 48800K .......... .......... .......... .......... .......... 38% 73.2M 1s -2024-04-19T21:15:35Z #15 2.145 48850K .......... .......... .......... .......... .......... 38% 118M 1s -2024-04-19T21:15:35Z #15 2.145 48900K .......... .......... .......... .......... .......... 38% 122M 1s -2024-04-19T21:15:35Z #15 2.145 48950K .......... .......... .......... .......... .......... 38% 72.6M 1s -2024-04-19T21:15:35Z #15 2.146 49000K .......... .......... .......... .......... .......... 38% 107M 1s -2024-04-19T21:15:35Z #15 2.146 49050K .......... .......... .......... .......... .......... 38% 84.2M 1s -2024-04-19T21:15:35Z #15 2.146 49100K .......... .......... .......... .......... .......... 38% 82.8M 1s -2024-04-19T21:15:35Z #15 2.156 49150K .......... .......... .......... .......... .......... 38% 5.73M 1s -2024-04-19T21:15:35Z #15 2.156 49200K .......... .......... .......... .......... .......... 38% 111M 1s -2024-04-19T21:15:35Z #15 2.156 49250K .......... .......... .......... .......... .......... 38% 82.1M 1s -2024-04-19T21:15:35Z #15 2.157 49300K .......... .......... .......... .......... .......... 38% 103M 1s -2024-04-19T21:15:35Z #15 2.157 49350K .......... .......... .......... .......... .......... 38% 84.9M 1s -2024-04-19T21:15:35Z #15 2.158 49400K .......... .......... .......... .......... .......... 39% 96.6M 1s -2024-04-19T21:15:35Z #15 2.158 49450K .......... .......... .......... .......... .......... 39% 86.1M 1s -2024-04-19T21:15:35Z #15 2.159 49500K .......... .......... .......... .......... .......... 39% 135M 1s -2024-04-19T21:15:35Z #15 2.160 49550K .......... .......... .......... .......... .......... 39% 117M 1s -2024-04-19T21:15:35Z #15 2.160 49600K .......... .......... .......... .......... .......... 39% 68.1M 1s -2024-04-19T21:15:35Z #15 2.161 49650K .......... .......... .......... .......... .......... 39% 105M 1s -2024-04-19T21:15:35Z #15 2.161 49700K .......... .......... .......... .......... .......... 39% 79.3M 1s -2024-04-19T21:15:35Z #15 2.162 49750K .......... .......... .......... .......... .......... 39% 90.2M 1s -2024-04-19T21:15:35Z #15 2.162 49800K .......... .......... .......... .......... .......... 39% 121M 1s -2024-04-19T21:15:35Z #15 2.162 49850K .......... .......... .......... .......... .......... 39% 85.9M 1s -2024-04-19T21:15:35Z #15 2.163 49900K .......... .......... .......... .......... .......... 39% 95.9M 1s -2024-04-19T21:15:35Z #15 2.163 49950K .......... .......... .......... .......... .......... 39% 114M 1s -2024-04-19T21:15:35Z #15 2.163 50000K .......... .......... .......... .......... .......... 39% 71.4M 1s -2024-04-19T21:15:35Z #15 2.165 50050K .......... .......... .......... .......... .......... 39% 118M 1s -2024-04-19T21:15:35Z #15 2.165 50100K .......... .......... .......... .......... .......... 39% 73.8M 1s -2024-04-19T21:15:35Z #15 2.165 50150K .......... .......... .......... .......... .......... 39% 108M 1s -2024-04-19T21:15:35Z #15 2.166 50200K .......... .......... .......... .......... .......... 39% 141M 1s -2024-04-19T21:15:35Z #15 2.166 50250K .......... .......... .......... .......... .......... 39% 70.6M 1s -2024-04-19T21:15:35Z #15 2.175 50300K .......... .......... .......... .......... .......... 39% 5.69M 1s -2024-04-19T21:15:35Z #15 2.175 50350K .......... .......... .......... .......... .......... 39% 102M 1s -2024-04-19T21:15:35Z #15 2.176 50400K .......... .......... .......... .......... .......... 39% 68.3M 1s -2024-04-19T21:15:35Z #15 2.177 50450K .......... .......... .......... .......... .......... 39% 112M 1s -2024-04-19T21:15:35Z #15 2.177 50500K .......... .......... .......... .......... .......... 39% 98.5M 1s -2024-04-19T21:15:35Z #15 2.177 50550K .......... .......... .......... .......... .......... 39% 81.2M 1s -2024-04-19T21:15:35Z #15 2.178 50600K .......... .......... .......... .......... .......... 39% 129M 1s -2024-04-19T21:15:35Z #15 2.179 50650K .......... .......... .......... .......... .......... 39% 108M 1s -2024-04-19T21:15:35Z #15 2.179 50700K .......... .......... .......... .......... .......... 40% 75.6M 1s -2024-04-19T21:15:35Z #15 2.180 50750K .......... .......... .......... .......... .......... 40% 85.4M 1s -2024-04-19T21:15:35Z #15 2.180 50800K .......... .......... .......... .......... .......... 40% 132M 1s -2024-04-19T21:15:35Z #15 2.180 50850K .......... .......... .......... .......... .......... 40% 73.7M 1s -2024-04-19T21:15:35Z #15 2.181 50900K .......... .......... .......... .......... .......... 40% 72.9M 1s -2024-04-19T21:15:35Z #15 2.182 50950K .......... .......... .......... .......... .......... 40% 115M 1s -2024-04-19T21:15:35Z #15 2.182 51000K .......... .......... .......... .......... .......... 40% 98.0M 1s -2024-04-19T21:15:35Z #15 2.183 51050K .......... .......... .......... .......... .......... 40% 78.0M 1s -2024-04-19T21:15:35Z #15 2.183 51100K .......... .......... .......... .......... .......... 40% 137M 1s -2024-04-19T21:15:35Z #15 2.184 51150K .......... .......... .......... .......... .......... 40% 113M 1s -2024-04-19T21:15:35Z #15 2.184 51200K .......... .......... .......... .......... .......... 40% 75.8M 1s -2024-04-19T21:15:35Z #15 2.185 51250K .......... .......... .......... .......... .......... 40% 102M 1s -2024-04-19T21:15:35Z #15 2.185 51300K .......... .......... .......... .......... .......... 40% 73.2M 1s -2024-04-19T21:15:35Z #15 2.186 51350K .......... .......... .......... .......... .......... 40% 148M 1s -2024-04-19T21:15:35Z #15 2.187 51400K .......... .......... .......... .......... .......... 40% 122M 1s -2024-04-19T21:15:35Z #15 2.187 51450K .......... .......... .......... .......... .......... 40% 10.6M 1s -2024-04-19T21:15:35Z #15 2.191 51500K .......... .......... .......... .......... .......... 40% 116M 1s -2024-04-19T21:15:35Z #15 2.192 51550K .......... .......... .......... .......... .......... 40% 67.2M 1s -2024-04-19T21:15:35Z #15 2.193 51600K .......... .......... .......... .......... .......... 40% 136M 1s -2024-04-19T21:15:35Z #15 2.193 51650K .......... .......... .......... .......... .......... 40% 107M 1s -2024-04-19T21:15:35Z #15 2.193 51700K .......... .......... .......... .......... .......... 40% 71.1M 1s -2024-04-19T21:15:35Z #15 2.194 51750K .......... .......... .......... .......... .......... 40% 140M 1s -2024-04-19T21:15:35Z #15 2.194 51800K .......... .......... .......... .......... .......... 40% 126M 1s -2024-04-19T21:15:35Z #15 2.195 51850K .......... .......... .......... .......... .......... 40% 55.5M 1s -2024-04-19T21:15:35Z #15 2.196 51900K .......... .......... .......... .......... .......... 40% 147M 1s -2024-04-19T21:15:35Z #15 2.196 51950K .......... .......... .......... .......... .......... 41% 137M 1s -2024-04-19T21:15:35Z #15 2.196 52000K .......... .......... .......... .......... .......... 41% 124M 1s -2024-04-19T21:15:35Z #15 2.197 52050K .......... .......... .......... .......... .......... 41% 54.3M 1s -2024-04-19T21:15:35Z #15 2.198 52100K .......... .......... .......... .......... .......... 41% 139M 1s -2024-04-19T21:15:35Z #15 2.198 52150K .......... .......... .......... .......... .......... 41% 118M 1s -2024-04-19T21:15:35Z #15 2.199 52200K .......... .......... .......... .......... .......... 41% 51.9M 1s -2024-04-19T21:15:35Z #15 2.199 52250K .......... .......... .......... .......... .......... 41% 125M 1s -2024-04-19T21:15:35Z #15 2.200 52300K .......... .......... .......... .......... .......... 41% 115M 1s -2024-04-19T21:15:35Z #15 2.200 52350K .......... .......... .......... .......... .......... 41% 94.5M 1s -2024-04-19T21:15:35Z #15 2.201 52400K .......... .......... .......... .......... .......... 41% 82.0M 1s -2024-04-19T21:15:35Z #15 2.201 52450K .......... .......... .......... .......... .......... 41% 106M 1s -2024-04-19T21:15:35Z #15 2.202 52500K .......... .......... .......... .......... .......... 41% 78.7M 1s -2024-04-19T21:15:35Z #15 2.203 52550K .......... .......... .......... .......... .......... 41% 135M 1s -2024-04-19T21:15:35Z #15 2.203 52600K .......... .......... .......... .......... .......... 41% 5.66M 1s -2024-04-19T21:15:35Z #15 2.211 52650K .......... .......... .......... .......... .......... 41% 116M 1s -2024-04-19T21:15:35Z #15 2.212 52700K .......... .......... .......... .......... .......... 41% 102M 1s -2024-04-19T21:15:35Z #15 2.212 52750K .......... .......... .......... .......... .......... 41% 86.3M 1s -2024-04-19T21:15:35Z #15 2.213 52800K .......... .......... .......... .......... .......... 41% 138M 1s -2024-04-19T21:15:35Z #15 2.213 52850K .......... .......... .......... .......... .......... 41% 119M 1s -2024-04-19T21:15:35Z #15 2.214 52900K .......... .......... .......... .......... .......... 41% 58.1M 1s -2024-04-19T21:15:35Z #15 2.215 52950K .......... .......... .......... .......... .......... 41% 126M 1s -2024-04-19T21:15:35Z #15 2.215 53000K .......... .......... .......... .......... .......... 41% 115M 1s -2024-04-19T21:15:35Z #15 2.215 53050K .......... .......... .......... .......... .......... 41% 61.7M 1s -2024-04-19T21:15:35Z #15 2.228 53100K .......... .......... .......... .......... .......... 41% 126M 1s -2024-04-19T21:15:35Z #15 2.228 53150K .......... .......... .......... .......... .......... 41% 122M 1s -2024-04-19T21:15:35Z #15 2.228 53200K .......... .......... .......... .......... .......... 42% 53.3M 1s -2024-04-19T21:15:35Z #15 2.228 53250K .......... .......... .......... .......... .......... 42% 130M 1s -2024-04-19T21:15:35Z #15 2.228 53300K .......... .......... .......... .......... .......... 42% 111M 1s -2024-04-19T21:15:35Z #15 2.228 53350K .......... .......... .......... .......... .......... 42% 82.1M 1s -2024-04-19T21:15:35Z #15 2.228 53400K .......... .......... .......... .......... .......... 42% 107M 1s -2024-04-19T21:15:35Z #15 2.228 53450K .......... .......... .......... .......... .......... 42% 139M 1s -2024-04-19T21:15:35Z #15 2.228 53500K .......... .......... .......... .......... .......... 42% 83.6M 1s -2024-04-19T21:15:35Z #15 2.228 53550K .......... .......... .......... .......... .......... 42% 142M 1s -2024-04-19T21:15:35Z #15 2.228 53600K .......... .......... .......... .......... .......... 42% 138M 1s -2024-04-19T21:15:35Z #15 2.228 53650K .......... .......... .......... .......... .......... 42% 75.3M 1s -2024-04-19T21:15:35Z #15 2.228 53700K .......... .......... .......... .......... .......... 42% 103M 1s -2024-04-19T21:15:35Z #15 2.228 53750K .......... .......... .......... .......... .......... 42% 156M 1s -2024-04-19T21:15:35Z #15 2.228 53800K .......... .......... .......... .......... .......... 42% 118M 1s -2024-04-19T21:15:35Z #15 2.228 53850K .......... .......... .......... .......... .......... 42% 87.9M 1s -2024-04-19T21:15:35Z #15 2.228 53900K .......... .......... .......... .......... .......... 42% 154M 1s -2024-04-19T21:15:35Z #15 2.228 53950K .......... .......... .......... .......... .......... 42% 70.9M 1s -2024-04-19T21:15:35Z #15 2.228 54000K .......... .......... .......... .......... .......... 42% 122M 1s -2024-04-19T21:15:35Z #15 2.228 54050K .......... .......... .......... .......... .......... 42% 142M 1s -2024-04-19T21:15:35Z #15 2.228 54100K .......... .......... .......... .......... .......... 42% 142M 1s -2024-04-19T21:15:35Z #15 2.228 54150K .......... .......... .......... .......... .......... 42% 93.2M 1s -2024-04-19T21:15:35Z #15 2.228 54200K .......... .......... .......... .......... .......... 42% 157M 1s -2024-04-19T21:15:35Z #15 2.228 54250K .......... .......... .......... .......... .......... 42% 60.1M 1s -2024-04-19T21:15:35Z #15 2.228 54300K .......... .......... .......... .......... .......... 42% 100M 1s -2024-04-19T21:15:35Z #15 2.228 54350K .......... .......... .......... .......... .......... 42% 131M 1s -2024-04-19T21:15:35Z #15 2.228 54400K .......... .......... .......... .......... .......... 42% 138M 1s -2024-04-19T21:15:35Z #15 2.229 54450K .......... .......... .......... .......... .......... 42% 109M 1s -2024-04-19T21:15:35Z #15 2.229 54500K .......... .......... .......... .......... .......... 43% 82.0M 1s -2024-04-19T21:15:35Z #15 2.230 54550K .......... .......... .......... .......... .......... 43% 64.1M 1s -2024-04-19T21:15:35Z #15 2.230 54600K .......... .......... .......... .......... .......... 43% 138M 1s -2024-04-19T21:15:35Z #15 2.231 54650K .......... .......... .......... .......... .......... 43% 93.6M 1s -2024-04-19T21:15:35Z #15 2.231 54700K .......... .......... .......... .......... .......... 43% 69.5M 1s -2024-04-19T21:15:35Z #15 2.232 54750K .......... .......... .......... .......... .......... 43% 127M 1s -2024-04-19T21:15:35Z #15 2.232 54800K .......... .......... .......... .......... .......... 43% 63.9M 1s -2024-04-19T21:15:35Z #15 2.233 54850K .......... .......... .......... .......... .......... 43% 115M 1s -2024-04-19T21:15:35Z #15 2.233 54900K .......... .......... .......... .......... .......... 43% 95.6M 1s -2024-04-19T21:15:35Z #15 2.234 54950K .......... .......... .......... .......... .......... 43% 71.9M 1s -2024-04-19T21:15:35Z #15 2.235 55000K .......... .......... .......... .......... .......... 43% 88.0M 1s -2024-04-19T21:15:35Z #15 2.235 55050K .......... .......... .......... .......... .......... 43% 110M 1s -2024-04-19T21:15:35Z #15 2.236 55100K .......... .......... .......... .......... .......... 43% 67.6M 1s -2024-04-19T21:15:35Z #15 2.236 55150K .......... .......... .......... .......... .......... 43% 137M 1s -2024-04-19T21:15:35Z #15 2.237 55200K .......... .......... .......... .......... .......... 43% 123M 1s -2024-04-19T21:15:35Z #15 2.243 55250K .......... .......... .......... .......... .......... 43% 56.9M 1s -2024-04-19T21:15:35Z #15 2.244 55300K .......... .......... .......... .......... .......... 43% 137M 1s -2024-04-19T21:15:35Z #15 2.244 55350K .......... .......... .......... .......... .......... 43% 183M 1s -2024-04-19T21:15:35Z #15 2.244 55400K .......... .......... .......... .......... .......... 43% 135M 1s -2024-04-19T21:15:35Z #15 2.244 55450K .......... .......... .......... .......... .......... 43% 95.3M 1s -2024-04-19T21:15:35Z #15 2.244 55500K .......... .......... .......... .......... .......... 43% 85.0M 1s -2024-04-19T21:15:35Z #15 2.244 55550K .......... .......... .......... .......... .......... 43% 143M 1s -2024-04-19T21:15:35Z #15 2.244 55600K .......... .......... .......... .......... .......... 43% 172M 1s -2024-04-19T21:15:35Z #15 2.244 55650K .......... .......... .......... .......... .......... 43% 86.5M 1s -2024-04-19T21:15:35Z #15 2.244 55700K .......... .......... .......... .......... .......... 43% 91.2M 1s -2024-04-19T21:15:35Z #15 2.244 55750K .......... .......... .......... .......... .......... 44% 153M 1s -2024-04-19T21:15:35Z #15 2.244 55800K .......... .......... .......... .......... .......... 44% 103M 1s -2024-04-19T21:15:35Z #15 2.244 55850K .......... .......... .......... .......... .......... 44% 139M 1s -2024-04-19T21:15:35Z #15 2.244 55900K .......... .......... .......... .......... .......... 44% 99.7M 1s -2024-04-19T21:15:35Z #15 2.244 55950K .......... .......... .......... .......... .......... 44% 80.9M 1s -2024-04-19T21:15:35Z #15 2.244 56000K .......... .......... .......... .......... .......... 44% 89.8M 1s -2024-04-19T21:15:35Z #15 2.245 56050K .......... .......... .......... .......... .......... 44% 143M 1s -2024-04-19T21:15:35Z #15 2.245 56100K .......... .......... .......... .......... .......... 44% 62.9M 1s -2024-04-19T21:15:35Z #15 2.246 56150K .......... .......... .......... .......... .......... 44% 124M 1s -2024-04-19T21:15:35Z #15 2.246 56200K .......... .......... .......... .......... .......... 44% 111M 1s -2024-04-19T21:15:35Z #15 2.246 56250K .......... .......... .......... .......... .......... 44% 65.3M 1s -2024-04-19T21:15:35Z #15 2.247 56300K .......... .......... .......... .......... .......... 44% 98.3M 1s -2024-04-19T21:15:35Z #15 2.248 56350K .......... .......... .......... .......... .......... 44% 105M 1s -2024-04-19T21:15:35Z #15 2.248 56400K .......... .......... .......... .......... .......... 44% 79.0M 1s -2024-04-19T21:15:35Z #15 2.249 56450K .......... .......... .......... .......... .......... 44% 82.4M 1s -2024-04-19T21:15:35Z #15 2.249 56500K .......... .......... .......... .......... .......... 44% 108M 1s -2024-04-19T21:15:35Z #15 2.251 56550K .......... .......... .......... .......... .......... 44% 81.5M 1s -2024-04-19T21:15:35Z #15 2.251 56600K .......... .......... .......... .......... .......... 44% 114M 1s -2024-04-19T21:15:35Z #15 2.251 56650K .......... .......... .......... .......... .......... 44% 117M 1s -2024-04-19T21:15:35Z #15 2.251 56700K .......... .......... .......... .......... .......... 44% 67.5M 1s -2024-04-19T21:15:35Z #15 2.252 56750K .......... .......... .......... .......... .......... 44% 130M 1s -2024-04-19T21:15:35Z #15 2.253 56800K .......... .......... .......... .......... .......... 44% 123M 1s -2024-04-19T21:15:35Z #15 2.253 56850K .......... .......... .......... .......... .......... 44% 67.0M 1s -2024-04-19T21:15:35Z #15 2.254 56900K .......... .......... .......... .......... .......... 44% 116M 1s -2024-04-19T21:15:35Z #15 2.254 56950K .......... .......... .......... .......... .......... 44% 167M 1s -2024-04-19T21:15:35Z #15 2.255 57000K .......... .......... .......... .......... .......... 44% 116M 1s -2024-04-19T21:15:35Z #15 2.255 57050K .......... .......... .......... .......... .......... 45% 67.3M 1s -2024-04-19T21:15:35Z #15 2.256 57100K .......... .......... .......... .......... .......... 45% 114M 1s -2024-04-19T21:15:35Z #15 2.256 57150K .......... .......... .......... .......... .......... 45% 148M 1s -2024-04-19T21:15:35Z #15 2.256 57200K .......... .......... .......... .......... .......... 45% 66.8M 1s -2024-04-19T21:15:35Z #15 2.257 57250K .......... .......... .......... .......... .......... 45% 124M 1s -2024-04-19T21:15:35Z #15 2.258 57300K .......... .......... .......... .......... .......... 45% 158M 1s -2024-04-19T21:15:35Z #15 2.258 57350K .......... .......... .......... .......... .......... 45% 119M 1s -2024-04-19T21:15:35Z #15 2.259 57400K .......... .......... .......... .......... .......... 45% 61.6M 1s -2024-04-19T21:15:35Z #15 2.259 57450K .......... .......... .......... .......... .......... 45% 107M 1s -2024-04-19T21:15:35Z #15 2.259 57500K .......... .......... .......... .......... .......... 45% 76.7M 1s -2024-04-19T21:15:35Z #15 2.261 57550K .......... .......... .......... .......... .......... 45% 150M 1s -2024-04-19T21:15:35Z #15 2.262 57600K .......... .......... .......... .......... .......... 45% 71.9M 1s -2024-04-19T21:15:35Z #15 2.262 57650K .......... .......... .......... .......... .......... 45% 92.1M 1s -2024-04-19T21:15:35Z #15 2.262 57700K .......... .......... .......... .......... .......... 45% 136M 1s -2024-04-19T21:15:35Z #15 2.262 57750K .......... .......... .......... .......... .......... 45% 145M 1s -2024-04-19T21:15:35Z #15 2.262 57800K .......... .......... .......... .......... .......... 45% 68.5M 1s -2024-04-19T21:15:35Z #15 2.264 57850K .......... .......... .......... .......... .......... 45% 108M 1s -2024-04-19T21:15:35Z #15 2.264 57900K .......... .......... .......... .......... .......... 45% 165M 1s -2024-04-19T21:15:35Z #15 2.264 57950K .......... .......... .......... .......... .......... 45% 143M 1s -2024-04-19T21:15:35Z #15 2.264 58000K .......... .......... .......... .......... .......... 45% 68.1M 1s -2024-04-19T21:15:35Z #15 2.265 58050K .......... .......... .......... .......... .......... 45% 144M 1s -2024-04-19T21:15:35Z #15 2.266 58100K .......... .......... .......... .......... .......... 45% 117M 1s -2024-04-19T21:15:35Z #15 2.266 58150K .......... .......... .......... .......... .......... 45% 92.3M 1s -2024-04-19T21:15:35Z #15 2.266 58200K .......... .......... .......... .......... .......... 45% 133M 1s -2024-04-19T21:15:35Z #15 2.266 58250K .......... .......... .......... .......... .......... 45% 75.9M 1s -2024-04-19T21:15:35Z #15 2.268 58300K .......... .......... .......... .......... .......... 46% 104M 1s -2024-04-19T21:15:35Z #15 2.268 58350K .......... .......... .......... .......... .......... 46% 131M 1s -2024-04-19T21:15:35Z #15 2.268 58400K .......... .......... .......... .......... .......... 46% 82.5M 1s -2024-04-19T21:15:35Z #15 2.268 58450K .......... .......... .......... .......... .......... 46% 93.1M 1s -2024-04-19T21:15:35Z #15 2.269 58500K .......... .......... .......... .......... .......... 46% 134M 1s -2024-04-19T21:15:35Z #15 2.269 58550K .......... .......... .......... .......... .......... 46% 111M 1s -2024-04-19T21:15:35Z #15 2.271 58600K .......... .......... .......... .......... .......... 46% 68.2M 1s -2024-04-19T21:15:35Z #15 2.271 58650K .......... .......... .......... .......... .......... 46% 102M 1s -2024-04-19T21:15:35Z #15 2.272 58700K .......... .......... .......... .......... .......... 46% 167M 1s -2024-04-19T21:15:35Z #15 2.272 58750K .......... .......... .......... .......... .......... 46% 140M 1s -2024-04-19T21:15:35Z #15 2.272 58800K .......... .......... .......... .......... .......... 46% 76.5M 1s -2024-04-19T21:15:35Z #15 2.273 58850K .......... .......... .......... .......... .......... 46% 93.3M 1s -2024-04-19T21:15:35Z #15 2.273 58900K .......... .......... .......... .......... .......... 46% 134M 1s -2024-04-19T21:15:35Z #15 2.273 58950K .......... .......... .......... .......... .......... 46% 113M 1s -2024-04-19T21:15:35Z #15 2.273 59000K .......... .......... .......... .......... .......... 46% 61.2M 1s -2024-04-19T21:15:35Z #15 2.274 59050K .......... .......... .......... .......... .......... 46% 109M 1s -2024-04-19T21:15:35Z #15 2.279 59100K .......... .......... .......... .......... .......... 46% 107M 1s -2024-04-19T21:15:35Z #15 2.280 59150K .......... .......... .......... .......... .......... 46% 160M 1s -2024-04-19T21:15:35Z #15 2.280 59200K .......... .......... .......... .......... .......... 46% 67.3M 1s -2024-04-19T21:15:35Z #15 2.280 59250K .......... .......... .......... .......... .......... 46% 145M 1s -2024-04-19T21:15:35Z #15 2.280 59300K .......... .......... .......... .......... .......... 46% 150M 1s -2024-04-19T21:15:35Z #15 2.280 59350K .......... .......... .......... .......... .......... 46% 150M 1s -2024-04-19T21:15:35Z #15 2.280 59400K .......... .......... .......... .......... .......... 46% 66.6M 1s -2024-04-19T21:15:35Z #15 2.280 59450K .......... .......... .......... .......... .......... 46% 175M 1s -2024-04-19T21:15:35Z #15 2.280 59500K .......... .......... .......... .......... .......... 46% 133M 1s -2024-04-19T21:15:35Z #15 2.280 59550K .......... .......... .......... .......... .......... 47% 158M 1s -2024-04-19T21:15:35Z #15 2.280 59600K .......... .......... .......... .......... .......... 47% 158M 1s -2024-04-19T21:15:35Z #15 2.280 59650K .......... .......... .......... .......... .......... 47% 158M 1s -2024-04-19T21:15:35Z #15 2.280 59700K .......... .......... .......... .......... .......... 47% 66.2M 1s -2024-04-19T21:15:35Z #15 2.280 59750K .......... .......... .......... .......... .......... 47% 81.9M 1s -2024-04-19T21:15:35Z #15 2.281 59800K .......... .......... .......... .......... .......... 47% 129M 1s -2024-04-19T21:15:35Z #15 2.281 59850K .......... .......... .......... .......... .......... 47% 105M 1s -2024-04-19T21:15:35Z #15 2.282 59900K .......... .......... .......... .......... .......... 47% 76.9M 1s -2024-04-19T21:15:35Z #15 2.283 59950K .......... .......... .......... .......... .......... 47% 122M 1s -2024-04-19T21:15:35Z #15 2.283 60000K .......... .......... .......... .......... .......... 47% 79.5M 1s -2024-04-19T21:15:35Z #15 2.283 60050K .......... .......... .......... .......... .......... 47% 79.8M 1s -2024-04-19T21:15:35Z #15 2.284 60100K .......... .......... .......... .......... .......... 47% 129M 1s -2024-04-19T21:15:35Z #15 2.285 60150K .......... .......... .......... .......... .......... 47% 127M 1s -2024-04-19T21:15:35Z #15 2.285 60200K .......... .......... .......... .......... .......... 47% 77.7M 1s -2024-04-19T21:15:35Z #15 2.285 60250K .......... .......... .......... .......... .......... 47% 81.9M 1s -2024-04-19T21:15:35Z #15 2.286 60300K .......... .......... .......... .......... .......... 47% 131M 1s -2024-04-19T21:15:35Z #15 2.287 60350K .......... .......... .......... .......... .......... 47% 151M 1s -2024-04-19T21:15:35Z #15 2.287 60400K .......... .......... .......... .......... .......... 47% 62.6M 1s -2024-04-19T21:15:35Z #15 2.288 60450K .......... .......... .......... .......... .......... 47% 116M 1s -2024-04-19T21:15:35Z #15 2.289 60500K .......... .......... .......... .......... .......... 47% 189M 1s -2024-04-19T21:15:35Z #15 2.289 60550K .......... .......... .......... .......... .......... 47% 132M 1s -2024-04-19T21:15:35Z #15 2.289 60600K .......... .......... .......... .......... .......... 47% 64.7M 1s -2024-04-19T21:15:35Z #15 2.290 60650K .......... .......... .......... .......... .......... 47% 101M 1s -2024-04-19T21:15:35Z #15 2.290 60700K .......... .......... .......... .......... .......... 47% 123M 1s -2024-04-19T21:15:35Z #15 2.290 60750K .......... .......... .......... .......... .......... 47% 63.9M 1s -2024-04-19T21:15:35Z #15 2.295 60800K .......... .......... .......... .......... .......... 47% 116M 1s -2024-04-19T21:15:35Z #15 2.295 60850K .......... .......... .......... .......... .......... 48% 152M 1s -2024-04-19T21:15:35Z #15 2.295 60900K .......... .......... .......... .......... .......... 48% 89.8M 1s -2024-04-19T21:15:35Z #15 2.295 60950K .......... .......... .......... .......... .......... 48% 151M 1s -2024-04-19T21:15:35Z #15 2.295 61000K .......... .......... .......... .......... .......... 48% 88.8M 1s -2024-04-19T21:15:35Z #15 2.295 61050K .......... .......... .......... .......... .......... 48% 98.7M 1s -2024-04-19T21:15:35Z #15 2.295 61100K .......... .......... .......... .......... .......... 48% 129M 1s -2024-04-19T21:15:35Z #15 2.295 61150K .......... .......... .......... .......... .......... 48% 156M 1s -2024-04-19T21:15:35Z #15 2.295 61200K .......... .......... .......... .......... .......... 48% 84.9M 1s -2024-04-19T21:15:35Z #15 2.295 61250K .......... .......... .......... .......... .......... 48% 65.9M 1s -2024-04-19T21:15:35Z #15 2.296 61300K .......... .......... .......... .......... .......... 48% 133M 1s -2024-04-19T21:15:35Z #15 2.296 61350K .......... .......... .......... .......... .......... 48% 119M 1s -2024-04-19T21:15:35Z #15 2.296 61400K .......... .......... .......... .......... .......... 48% 70.7M 1s -2024-04-19T21:15:35Z #15 2.297 61450K .......... .......... .......... .......... .......... 48% 90.9M 1s -2024-04-19T21:15:35Z #15 2.298 61500K .......... .......... .......... .......... .......... 48% 136M 1s -2024-04-19T21:15:35Z #15 2.298 61550K .......... .......... .......... .......... .......... 48% 116M 1s -2024-04-19T21:15:35Z #15 2.303 61600K .......... .......... .......... .......... .......... 48% 52.1M 1s -2024-04-19T21:15:35Z #15 2.303 61650K .......... .......... .......... .......... .......... 48% 103M 1s -2024-04-19T21:15:35Z #15 2.303 61700K .......... .......... .......... .......... .......... 48% 109M 1s -2024-04-19T21:15:35Z #15 2.303 61750K .......... .......... .......... .......... .......... 48% 63.0M 1s -2024-04-19T21:15:35Z #15 2.303 61800K .......... .......... .......... .......... .......... 48% 102M 1s -2024-04-19T21:15:35Z #15 2.303 61850K .......... .......... .......... .......... .......... 48% 102M 1s -2024-04-19T21:15:35Z #15 2.303 61900K .......... .......... .......... .......... .......... 48% 116M 1s -2024-04-19T21:15:35Z #15 2.303 61950K .......... .......... .......... .......... .......... 48% 44.4M 1s -2024-04-19T21:15:35Z #15 2.303 62000K .......... .......... .......... .......... .......... 48% 150M 1s -2024-04-19T21:15:35Z #15 2.304 62050K .......... .......... .......... .......... .......... 48% 130M 1s -2024-04-19T21:15:35Z #15 2.304 62100K .......... .......... .......... .......... .......... 49% 124M 1s -2024-04-19T21:15:35Z #15 2.304 62150K .......... .......... .......... .......... .......... 49% 76.1M 1s -2024-04-19T21:15:35Z #15 2.305 62200K .......... .......... .......... .......... .......... 49% 87.4M 1s -2024-04-19T21:15:35Z #15 2.306 62250K .......... .......... .......... .......... .......... 49% 140M 1s -2024-04-19T21:15:35Z #15 2.306 62300K .......... .......... .......... .......... .......... 49% 158M 1s -2024-04-19T21:15:35Z #15 2.306 62350K .......... .......... .......... .......... .......... 49% 116M 1s -2024-04-19T21:15:35Z #15 2.307 62400K .......... .......... .......... .......... .......... 49% 66.2M 1s -2024-04-19T21:15:35Z #15 2.307 62450K .......... .......... .......... .......... .......... 49% 121M 1s -2024-04-19T21:15:35Z #15 2.308 62500K .......... .......... .......... .......... .......... 49% 116M 1s -2024-04-19T21:15:35Z #15 2.308 62550K .......... .......... .......... .......... .......... 49% 87.2M 1s -2024-04-19T21:15:35Z #15 2.309 62600K .......... .......... .......... .......... .......... 49% 102M 1s -2024-04-19T21:15:35Z #15 2.309 62650K .......... .......... .......... .......... .......... 49% 127M 1s -2024-04-19T21:15:35Z #15 2.310 62700K .......... .......... .......... .......... .......... 49% 140M 1s -2024-04-19T21:15:35Z #15 2.310 62750K .......... .......... .......... .......... .......... 49% 134M 1s -2024-04-19T21:15:35Z #15 2.310 62800K .......... .......... .......... .......... .......... 49% 78.6M 1s -2024-04-19T21:15:35Z #15 2.315 62850K .......... .......... .......... .......... .......... 49% 157M 1s -2024-04-19T21:15:35Z #15 2.315 62900K .......... .......... .......... .......... .......... 49% 98.8M 1s -2024-04-19T21:15:35Z #15 2.315 62950K .......... .......... .......... .......... .......... 49% 101M 1s -2024-04-19T21:15:35Z #15 2.315 63000K .......... .......... .......... .......... .......... 49% 178M 1s -2024-04-19T21:15:35Z #15 2.315 63050K .......... .......... .......... .......... .......... 49% 158M 1s -2024-04-19T21:15:35Z #15 2.315 63100K .......... .......... .......... .......... .......... 49% 84.8M 1s -2024-04-19T21:15:35Z #15 2.315 63150K .......... .......... .......... .......... .......... 49% 96.9M 1s -2024-04-19T21:15:35Z #15 2.315 63200K .......... .......... .......... .......... .......... 49% 174M 1s -2024-04-19T21:15:35Z #15 2.315 63250K .......... .......... .......... .......... .......... 49% 157M 1s -2024-04-19T21:15:35Z #15 2.315 63300K .......... .......... .......... .......... .......... 49% 86.6M 1s -2024-04-19T21:15:35Z #15 2.315 63350K .......... .......... .......... .......... .......... 50% 143M 1s -2024-04-19T21:15:35Z #15 2.315 63400K .......... .......... .......... .......... .......... 50% 81.1M 1s -2024-04-19T21:15:35Z #15 2.316 63450K .......... .......... .......... .......... .......... 50% 102M 1s -2024-04-19T21:15:35Z #15 2.317 63500K .......... .......... .......... .......... .......... 50% 148M 1s -2024-04-19T21:15:35Z #15 2.317 63550K .......... .......... .......... .......... .......... 50% 66.8M 1s -2024-04-19T21:15:35Z #15 2.318 63600K .......... .......... .......... .......... .......... 50% 93.8M 1s -2024-04-19T21:15:35Z #15 2.318 63650K .......... .......... .......... .......... .......... 50% 160M 1s -2024-04-19T21:15:35Z #15 2.318 63700K .......... .......... .......... .......... .......... 50% 128M 1s -2024-04-19T21:15:35Z #15 2.319 63750K .......... .......... .......... .......... .......... 50% 144M 1s -2024-04-19T21:15:35Z #15 2.319 63800K .......... .......... .......... .......... .......... 50% 62.8M 1s -2024-04-19T21:15:35Z #15 2.320 63850K .......... .......... .......... .......... .......... 50% 145M 1s -2024-04-19T21:15:35Z #15 2.320 63900K .......... .......... .......... .......... .......... 50% 146M 1s -2024-04-19T21:15:35Z #15 2.321 63950K .......... .......... .......... .......... .......... 50% 118M 1s -2024-04-19T21:15:35Z #15 2.321 64000K .......... .......... .......... .......... .......... 50% 69.5M 1s -2024-04-19T21:15:35Z #15 2.322 64050K .......... .......... .......... .......... .......... 50% 156M 1s -2024-04-19T21:15:35Z #15 2.322 64100K .......... .......... .......... .......... .......... 50% 131M 1s -2024-04-19T21:15:35Z #15 2.322 64150K .......... .......... .......... .......... .......... 50% 74.4M 1s -2024-04-19T21:15:35Z #15 2.324 64200K .......... .......... .......... .......... .......... 50% 116M 1s -2024-04-19T21:15:35Z #15 2.324 64250K .......... .......... .......... .......... .......... 50% 114M 1s -2024-04-19T21:15:35Z #15 2.324 64300K .......... .......... .......... .......... .......... 50% 150M 1s -2024-04-19T21:15:35Z #15 2.324 64350K .......... .......... .......... .......... .......... 50% 88.9M 1s -2024-04-19T21:15:35Z #15 2.325 64400K .......... .......... .......... .......... .......... 50% 96.5M 1s -2024-04-19T21:15:35Z #15 2.325 64450K .......... .......... .......... .......... .......... 50% 151M 1s -2024-04-19T21:15:35Z #15 2.326 64500K .......... .......... .......... .......... .......... 50% 168M 1s -2024-04-19T21:15:35Z #15 2.326 64550K .......... .......... .......... .......... .......... 50% 127M 1s -2024-04-19T21:15:35Z #15 2.327 64600K .......... .......... .......... .......... .......... 50% 59.1M 1s -2024-04-19T21:15:35Z #15 2.327 64650K .......... .......... .......... .......... .......... 51% 146M 1s -2024-04-19T21:15:35Z #15 2.327 64700K .......... .......... .......... .......... .......... 51% 152M 1s -2024-04-19T21:15:35Z #15 2.328 64750K .......... .......... .......... .......... .......... 51% 86.5M 1s -2024-04-19T21:15:35Z #15 2.331 64800K .......... .......... .......... .......... .......... 51% 101M 1s -2024-04-19T21:15:35Z #15 2.331 64850K .......... .......... .......... .......... .......... 51% 156M 1s -2024-04-19T21:15:35Z #15 2.331 64900K .......... .......... .......... .......... .......... 51% 149M 1s -2024-04-19T21:15:35Z #15 2.331 64950K .......... .......... .......... .......... .......... 51% 81.9M 1s -2024-04-19T21:15:35Z #15 2.331 65000K .......... .......... .......... .......... .......... 51% 113M 1s -2024-04-19T21:15:35Z #15 2.331 65050K .......... .......... .......... .......... .......... 51% 130M 1s -2024-04-19T21:15:35Z #15 2.331 65100K .......... .......... .......... .......... .......... 51% 155M 1s -2024-04-19T21:15:35Z #15 2.331 65150K .......... .......... .......... .......... .......... 51% 67.4M 1s -2024-04-19T21:15:35Z #15 2.332 65200K .......... .......... .......... .......... .......... 51% 129M 1s -2024-04-19T21:15:35Z #15 2.332 65250K .......... .......... .......... .......... .......... 51% 161M 1s -2024-04-19T21:15:35Z #15 2.333 65300K .......... .......... .......... .......... .......... 51% 149M 1s -2024-04-19T21:15:35Z #15 2.333 65350K .......... .......... .......... .......... .......... 51% 66.4M 1s -2024-04-19T21:15:35Z #15 2.334 65400K .......... .......... .......... .......... .......... 51% 137M 1s -2024-04-19T21:15:35Z #15 2.334 65450K .......... .......... .......... .......... .......... 51% 133M 1s -2024-04-19T21:15:35Z #15 2.334 65500K .......... .......... .......... .......... .......... 51% 66.2M 1s -2024-04-19T21:15:35Z #15 2.335 65550K .......... .......... .......... .......... .......... 51% 119M 1s -2024-04-19T21:15:35Z #15 2.336 65600K .......... .......... .......... .......... .......... 51% 166M 1s -2024-04-19T21:15:35Z #15 2.336 65650K .......... .......... .......... .......... .......... 51% 170M 1s -2024-04-19T21:15:35Z #15 2.336 65700K .......... .......... .......... .......... .......... 51% 127M 1s -2024-04-19T21:15:35Z #15 2.344 65750K .......... .......... .......... .......... .......... 51% 72.5M 1s -2024-04-19T21:15:35Z #15 2.344 65800K .......... .......... .......... .......... .......... 51% 114M 1s -2024-04-19T21:15:35Z #15 2.344 65850K .......... .......... .......... .......... .......... 51% 180M 1s -2024-04-19T21:15:35Z #15 2.344 65900K .......... .......... .......... .......... .......... 52% 152M 1s -2024-04-19T21:15:35Z #15 2.344 65950K .......... .......... .......... .......... .......... 52% 68.3M 1s -2024-04-19T21:15:35Z #15 2.344 66000K .......... .......... .......... .......... .......... 52% 116M 1s -2024-04-19T21:15:35Z #15 2.344 66050K .......... .......... .......... .......... .......... 52% 173M 1s -2024-04-19T21:15:35Z #15 2.344 66100K .......... .......... .......... .......... .......... 52% 157M 1s -2024-04-19T21:15:35Z #15 2.344 66150K .......... .......... .......... .......... .......... 52% 75.6M 1s -2024-04-19T21:15:35Z #15 2.344 66200K .......... .......... .......... .......... .......... 52% 112M 1s -2024-04-19T21:15:35Z #15 2.344 66250K .......... .......... .......... .......... .......... 52% 143M 1s -2024-04-19T21:15:35Z #15 2.344 66300K .......... .......... .......... .......... .......... 52% 178M 1s -2024-04-19T21:15:35Z #15 2.344 66350K .......... .......... .......... .......... .......... 52% 76.1M 1s -2024-04-19T21:15:35Z #15 2.344 66400K .......... .......... .......... .......... .......... 52% 120M 1s -2024-04-19T21:15:35Z #15 2.344 66450K .......... .......... .......... .......... .......... 52% 132M 1s -2024-04-19T21:15:35Z #15 2.344 66500K .......... .......... .......... .......... .......... 52% 72.8M 1s -2024-04-19T21:15:35Z #15 2.344 66550K .......... .......... .......... .......... .......... 52% 121M 1s -2024-04-19T21:15:35Z #15 2.344 66600K .......... .......... .......... .......... .......... 52% 166M 1s -2024-04-19T21:15:35Z #15 2.344 66650K .......... .......... .......... .......... .......... 52% 147M 1s -2024-04-19T21:15:35Z #15 2.345 66700K .......... .......... .......... .......... .......... 52% 67.4M 1s -2024-04-19T21:15:35Z #15 2.345 66750K .......... .......... .......... .......... .......... 52% 118M 1s -2024-04-19T21:15:35Z #15 2.346 66800K .......... .......... .......... .......... .......... 52% 166M 1s -2024-04-19T21:15:35Z #15 2.346 66850K .......... .......... .......... .......... .......... 52% 150M 1s -2024-04-19T21:15:35Z #15 2.346 66900K .......... .......... .......... .......... .......... 52% 76.2M 1s -2024-04-19T21:15:35Z #15 2.347 66950K .......... .......... .......... .......... .......... 52% 98.8M 1s -2024-04-19T21:15:35Z #15 2.348 67000K .......... .......... .......... .......... .......... 52% 148M 1s -2024-04-19T21:15:35Z #15 2.348 67050K .......... .......... .......... .......... .......... 52% 153M 1s -2024-04-19T21:15:35Z #15 2.349 67100K .......... .......... .......... .......... .......... 52% 85.5M 1s -2024-04-19T21:15:35Z #15 2.349 67150K .......... .......... .......... .......... .......... 53% 100M 1s -2024-04-19T21:15:35Z #15 2.349 67200K .......... .......... .......... .......... .......... 53% 128M 1s -2024-04-19T21:15:35Z #15 2.350 67250K .......... .......... .......... .......... .......... 53% 169M 1s -2024-04-19T21:15:35Z #15 2.350 67300K .......... .......... .......... .......... .......... 53% 70.8M 1s -2024-04-19T21:15:35Z #15 2.352 67350K .......... .......... .......... .......... .......... 53% 104M 1s -2024-04-19T21:15:35Z #15 2.352 67400K .......... .......... .......... .......... .......... 53% 159M 1s -2024-04-19T21:15:35Z #15 2.352 67450K .......... .......... .......... .......... .......... 53% 91.0M 1s -2024-04-19T21:15:35Z #15 2.352 67500K .......... .......... .......... .......... .......... 53% 90.1M 1s -2024-04-19T21:15:35Z #15 2.353 67550K .......... .......... .......... .......... .......... 53% 166M 1s -2024-04-19T21:15:35Z #15 2.353 67600K .......... .......... .......... .......... .......... 53% 152M 1s -2024-04-19T21:15:35Z #15 2.353 67650K .......... .......... .......... .......... .......... 53% 68.5M 1s -2024-04-19T21:15:35Z #15 2.354 67700K .......... .......... .......... .......... .......... 53% 126M 1s -2024-04-19T21:15:35Z #15 2.354 67750K .......... .......... .......... .......... .......... 53% 156M 1s -2024-04-19T21:15:35Z #15 2.355 67800K .......... .......... .......... .......... .......... 53% 132M 1s -2024-04-19T21:15:35Z #15 2.355 67850K .......... .......... .......... .......... .......... 53% 68.5M 1s -2024-04-19T21:15:35Z #15 2.356 67900K .......... .......... .......... .......... .......... 53% 117M 1s -2024-04-19T21:15:35Z #15 2.359 67950K .......... .......... .......... .......... .......... 53% 164M 1s -2024-04-19T21:15:35Z #15 2.359 68000K .......... .......... .......... .......... .......... 53% 151M 1s -2024-04-19T21:15:35Z #15 2.359 68050K .......... .......... .......... .......... .......... 53% 81.3M 1s -2024-04-19T21:15:35Z #15 2.359 68100K .......... .......... .......... .......... .......... 53% 157M 1s -2024-04-19T21:15:35Z #15 2.359 68150K .......... .......... .......... .......... .......... 53% 130M 1s -2024-04-19T21:15:35Z #15 2.359 68200K .......... .......... .......... .......... .......... 53% 78.3M 1s -2024-04-19T21:15:35Z #15 2.359 68250K .......... .......... .......... .......... .......... 53% 126M 1s -2024-04-19T21:15:35Z #15 2.359 68300K .......... .......... .......... .......... .......... 53% 155M 1s -2024-04-19T21:15:35Z #15 2.359 68350K .......... .......... .......... .......... .......... 53% 67.5M 1s -2024-04-19T21:15:35Z #15 2.360 68400K .......... .......... .......... .......... .......... 53% 123M 1s -2024-04-19T21:15:35Z #15 2.360 68450K .......... .......... .......... .......... .......... 54% 160M 1s -2024-04-19T21:15:35Z #15 2.361 68500K .......... .......... .......... .......... .......... 54% 101M 1s -2024-04-19T21:15:35Z #15 2.361 68550K .......... .......... .......... .......... .......... 54% 79.7M 1s -2024-04-19T21:15:35Z #15 2.362 68600K .......... .......... .......... .......... .......... 54% 146M 1s -2024-04-19T21:15:35Z #15 2.362 68650K .......... .......... .......... .......... .......... 54% 125M 1s -2024-04-19T21:15:35Z #15 2.363 68700K .......... .......... .......... .......... .......... 54% 91.6M 1s -2024-04-19T21:15:35Z #15 2.363 68750K .......... .......... .......... .......... .......... 54% 93.9M 1s -2024-04-19T21:15:35Z #15 2.364 68800K .......... .......... .......... .......... .......... 54% 122M 1s -2024-04-19T21:15:35Z #15 2.364 68850K .......... .......... .......... .......... .......... 54% 98.7M 1s -2024-04-19T21:15:35Z #15 2.364 68900K .......... .......... .......... .......... .......... 54% 83.4M 1s -2024-04-19T21:15:35Z #15 2.367 68950K .......... .......... .......... .......... .......... 54% 156M 1s -2024-04-19T21:15:35Z #15 2.367 69000K .......... .......... .......... .......... .......... 54% 137M 1s -2024-04-19T21:15:35Z #15 2.367 69050K .......... .......... .......... .......... .......... 54% 97.4M 1s -2024-04-19T21:15:35Z #15 2.367 69100K .......... .......... .......... .......... .......... 54% 118M 1s -2024-04-19T21:15:35Z #15 2.367 69150K .......... .......... .......... .......... .......... 54% 92.9M 1s -2024-04-19T21:15:35Z #15 2.367 69200K .......... .......... .......... .......... .......... 54% 107M 1s -2024-04-19T21:15:35Z #15 2.368 69250K .......... .......... .......... .......... .......... 54% 114M 1s -2024-04-19T21:15:35Z #15 2.368 69300K .......... .......... .......... .......... .......... 54% 123M 1s -2024-04-19T21:15:35Z #15 2.369 69350K .......... .......... .......... .......... .......... 54% 81.6M 1s -2024-04-19T21:15:35Z #15 2.369 69400K .......... .......... .......... .......... .......... 54% 137M 1s -2024-04-19T21:15:35Z #15 2.370 69450K .......... .......... .......... .......... .......... 54% 117M 1s -2024-04-19T21:15:35Z #15 2.370 69500K .......... .......... .......... .......... .......... 54% 64.6M 1s -2024-04-19T21:15:35Z #15 2.371 69550K .......... .......... .......... .......... .......... 54% 123M 1s -2024-04-19T21:15:35Z #15 2.371 69600K .......... .......... .......... .......... .......... 54% 161M 1s -2024-04-19T21:15:35Z #15 2.371 69650K .......... .......... .......... .......... .......... 54% 110M 1s -2024-04-19T21:15:35Z #15 2.373 69700K .......... .......... .......... .......... .......... 55% 78.4M 1s -2024-04-19T21:15:35Z #15 2.373 69750K .......... .......... .......... .......... .......... 55% 163M 1s -2024-04-19T21:15:35Z #15 2.373 69800K .......... .......... .......... .......... .......... 55% 153M 1s -2024-04-19T21:15:35Z #15 2.373 69850K .......... .......... .......... .......... .......... 55% 71.9M 1s -2024-04-19T21:15:35Z #15 2.374 69900K .......... .......... .......... .......... .......... 55% 165M 1s -2024-04-19T21:15:35Z #15 2.374 69950K .......... .......... .......... .......... .......... 55% 145M 1s -2024-04-19T21:15:35Z #15 2.375 70000K .......... .......... .......... .......... .......... 55% 78.1M 1s -2024-04-19T21:15:35Z #15 2.375 70050K .......... .......... .......... .......... .......... 55% 93.2M 1s -2024-04-19T21:15:35Z #15 2.376 70100K .......... .......... .......... .......... .......... 55% 126M 1s -2024-04-19T21:15:35Z #15 2.376 70150K .......... .......... .......... .......... .......... 55% 171M 1s -2024-04-19T21:15:35Z #15 2.376 70200K .......... .......... .......... .......... .......... 55% 79.0M 1s -2024-04-19T21:15:35Z #15 2.377 70250K .......... .......... .......... .......... .......... 55% 92.0M 1s -2024-04-19T21:15:35Z #15 2.377 70300K .......... .......... .......... .......... .......... 55% 133M 1s -2024-04-19T21:15:35Z #15 2.378 70350K .......... .......... .......... .......... .......... 55% 99.6M 1s -2024-04-19T21:15:35Z #15 2.379 70400K .......... .......... .......... .......... .......... 55% 74.4M 1s -2024-04-19T21:15:35Z #15 2.383 70450K .......... .......... .......... .......... .......... 55% 166M 1s -2024-04-19T21:15:35Z #15 2.383 70500K .......... .......... .......... .......... .......... 55% 152M 1s -2024-04-19T21:15:35Z #15 2.383 70550K .......... .......... .......... .......... .......... 55% 89.6M 1s -2024-04-19T21:15:35Z #15 2.383 70600K .......... .......... .......... .......... .......... 55% 118M 1s -2024-04-19T21:15:35Z #15 2.383 70650K .......... .......... .......... .......... .......... 55% 156M 1s -2024-04-19T21:15:35Z #15 2.383 70700K .......... .......... .......... .......... .......... 55% 65.7M 1s -2024-04-19T21:15:35Z #15 2.383 70750K .......... .......... .......... .......... .......... 55% 132M 1s -2024-04-19T21:15:35Z #15 2.383 70800K .......... .......... .......... .......... .......... 55% 155M 1s -2024-04-19T21:15:35Z #15 2.383 70850K .......... .......... .......... .......... .......... 55% 172M 1s -2024-04-19T21:15:35Z #15 2.383 70900K .......... .......... .......... .......... .......... 55% 26.9M 1s -2024-04-19T21:15:35Z #15 2.384 70950K .......... .......... .......... .......... .......... 56% 19.0M 1s -2024-04-19T21:15:35Z #15 2.391 71000K .......... .......... .......... .......... .......... 56% 103M 1s -2024-04-19T21:15:35Z #15 2.391 71050K .......... .......... .......... .......... .......... 56% 83.7M 1s -2024-04-19T21:15:35Z #15 2.391 71100K .......... .......... .......... .......... .......... 56% 130M 1s -2024-04-19T21:15:35Z #15 2.391 71150K .......... .......... .......... .......... .......... 56% 170M 1s -2024-04-19T21:15:35Z #15 2.391 71200K .......... .......... .......... .......... .......... 56% 64.3M 1s -2024-04-19T21:15:35Z #15 2.391 71250K .......... .......... .......... .......... .......... 56% 166M 1s -2024-04-19T21:15:35Z #15 2.391 71300K .......... .......... .......... .......... .......... 56% 139M 1s -2024-04-19T21:15:35Z #15 2.391 71350K .......... .......... .......... .......... .......... 56% 96.3M 1s -2024-04-19T21:15:35Z #15 2.391 71400K .......... .......... .......... .......... .......... 56% 33.8M 1s -2024-04-19T21:15:35Z #15 2.392 71450K .......... .......... .......... .......... .......... 56% 29.1M 1s -2024-04-19T21:15:35Z #15 2.394 71500K .......... .......... .......... .......... .......... 56% 23.8M 1s -2024-04-19T21:15:35Z #15 2.396 71550K .......... .......... .......... .......... .......... 56% 27.9M 1s -2024-04-19T21:15:35Z #15 2.397 71600K .......... .......... .......... .......... .......... 56% 41.3M 1s -2024-04-19T21:15:35Z #15 2.403 71650K .......... .......... .......... .......... .......... 56% 69.6M 1s -2024-04-19T21:15:35Z #15 2.403 71700K .......... .......... .......... .......... .......... 56% 109M 1s -2024-04-19T21:15:35Z #15 2.403 71750K .......... .......... .......... .......... .......... 56% 170M 1s -2024-04-19T21:15:35Z #15 2.403 71800K .......... .......... .......... .......... .......... 56% 154M 1s -2024-04-19T21:15:35Z #15 2.403 71850K .......... .......... .......... .......... .......... 56% 134M 1s -2024-04-19T21:15:35Z #15 2.403 71900K .......... .......... .......... .......... .......... 56% 81.0M 1s -2024-04-19T21:15:35Z #15 2.403 71950K .......... .......... .......... .......... .......... 56% 134M 1s -2024-04-19T21:15:35Z #15 2.403 72000K .......... .......... .......... .......... .......... 56% 167M 1s -2024-04-19T21:15:35Z #15 2.403 72050K .......... .......... .......... .......... .......... 56% 72.2M 1s -2024-04-19T21:15:35Z #15 2.403 72100K .......... .......... .......... .......... .......... 56% 35.1M 1s -2024-04-19T21:15:35Z #15 2.404 72150K .......... .......... .......... .......... .......... 56% 26.2M 1s -2024-04-19T21:15:35Z #15 2.406 72200K .......... .......... .......... .......... .......... 56% 31.3M 1s -2024-04-19T21:15:35Z #15 2.411 72250K .......... .......... .......... .......... .......... 57% 28.2M 1s -2024-04-19T21:15:35Z #15 2.411 72300K .......... .......... .......... .......... .......... 57% 35.9M 1s -2024-04-19T21:15:35Z #15 2.415 72350K .......... .......... .......... .......... .......... 57% 147M 1s -2024-04-19T21:15:35Z #15 2.415 72400K .......... .......... .......... .......... .......... 57% 169M 1s -2024-04-19T21:15:35Z #15 2.415 72450K .......... .......... .......... .......... .......... 57% 81.9M 1s -2024-04-19T21:15:35Z #15 2.415 72500K .......... .......... .......... .......... .......... 57% 117M 1s -2024-04-19T21:15:35Z #15 2.415 72550K .......... .......... .......... .......... .......... 57% 154M 1s -2024-04-19T21:15:35Z #15 2.415 72600K .......... .......... .......... .......... .......... 57% 73.7M 1s -2024-04-19T21:15:35Z #15 2.415 72650K .......... .......... .......... .......... .......... 57% 161M 1s -2024-04-19T21:15:35Z #15 2.415 72700K .......... .......... .......... .......... .......... 57% 130M 1s -2024-04-19T21:15:35Z #15 2.415 72750K .......... .......... .......... .......... .......... 57% 106M 1s -2024-04-19T21:15:35Z #15 2.415 72800K .......... .......... .......... .......... .......... 57% 145M 1s -2024-04-19T21:15:35Z #15 2.415 72850K .......... .......... .......... .......... .......... 57% 35.8M 1s -2024-04-19T21:15:35Z #15 2.416 72900K .......... .......... .......... .......... .......... 57% 29.5M 1s -2024-04-19T21:15:35Z #15 2.418 72950K .......... .......... .......... .......... .......... 57% 26.0M 1s -2024-04-19T21:15:35Z #15 2.422 73000K .......... .......... .......... .......... .......... 57% 159M 1s -2024-04-19T21:15:35Z #15 2.422 73050K .......... .......... .......... .......... .......... 57% 137M 1s -2024-04-19T21:15:35Z #15 2.422 73100K .......... .......... .......... .......... .......... 57% 129M 1s -2024-04-19T21:15:35Z #15 2.422 73150K .......... .......... .......... .......... .......... 57% 96.6M 1s -2024-04-19T21:15:35Z #15 2.422 73200K .......... .......... .......... .......... .......... 57% 128M 1s -2024-04-19T21:15:35Z #15 2.422 73250K .......... .......... .......... .......... .......... 57% 72.4M 1s -2024-04-19T21:15:35Z #15 2.422 73300K .......... .......... .......... .......... .......... 57% 32.1M 1s -2024-04-19T21:15:35Z #15 2.424 73350K .......... .......... .......... .......... .......... 57% 49.5M 1s -2024-04-19T21:15:35Z #15 2.427 73400K .......... .......... .......... .......... .......... 57% 72.1M 1s -2024-04-19T21:15:35Z #15 2.427 73450K .......... .......... .......... .......... .......... 57% 152M 1s -2024-04-19T21:15:35Z #15 2.427 73500K .......... .......... .......... .......... .......... 58% 123M 1s -2024-04-19T21:15:35Z #15 2.427 73550K .......... .......... .......... .......... .......... 58% 141M 1s -2024-04-19T21:15:35Z #15 2.427 73600K .......... .......... .......... .......... .......... 58% 130M 1s -2024-04-19T21:15:35Z #15 2.427 73650K .......... .......... .......... .......... .......... 58% 24.6M 1s -2024-04-19T21:15:35Z #15 2.431 73700K .......... .......... .......... .......... .......... 58% 104M 1s -2024-04-19T21:15:35Z #15 2.431 73750K .......... .......... .......... .......... .......... 58% 123M 1s -2024-04-19T21:15:35Z #15 2.431 73800K .......... .......... .......... .......... .......... 58% 91.7M 1s -2024-04-19T21:15:35Z #15 2.431 73850K .......... .......... .......... .......... .......... 58% 140M 1s -2024-04-19T21:15:35Z #15 2.431 73900K .......... .......... .......... .......... .......... 58% 47.3M 1s -2024-04-19T21:15:35Z #15 2.432 73950K .......... .......... .......... .......... .......... 58% 9.36M 1s -2024-04-19T21:15:35Z #15 2.439 74000K .......... .......... .......... .......... .......... 58% 168M 1s -2024-04-19T21:15:35Z #15 2.439 74050K .......... .......... .......... .......... .......... 58% 127M 1s -2024-04-19T21:15:35Z #15 2.439 74100K .......... .......... .......... .......... .......... 58% 104M 1s -2024-04-19T21:15:35Z #15 2.439 74150K .......... .......... .......... .......... .......... 58% 92.8M 1s -2024-04-19T21:15:35Z #15 2.439 74200K .......... .......... .......... .......... .......... 58% 157M 1s -2024-04-19T21:15:35Z #15 2.439 74250K .......... .......... .......... .......... .......... 58% 9.64M 1s -2024-04-19T21:15:35Z #15 2.447 74300K .......... .......... .......... .......... .......... 58% 126M 1s -2024-04-19T21:15:35Z #15 2.447 74350K .......... .......... .......... .......... .......... 58% 169M 1s -2024-04-19T21:15:35Z #15 2.447 74400K .......... .......... .......... .......... .......... 58% 72.5M 1s -2024-04-19T21:15:35Z #15 2.447 74450K .......... .......... .......... .......... .......... 58% 162M 1s -2024-04-19T21:15:35Z #15 2.447 74500K .......... .......... .......... .......... .......... 58% 141M 1s -2024-04-19T21:15:35Z #15 2.447 74550K .......... .......... .......... .......... .......... 58% 75.0M 1s -2024-04-19T21:15:35Z #15 2.447 74600K .......... .......... .......... .......... .......... 58% 72.7M 1s -2024-04-19T21:15:35Z #15 2.447 74650K .......... .......... .......... .......... .......... 58% 16.9M 1s -2024-04-19T21:15:35Z #15 2.455 74700K .......... .......... .......... .......... .......... 58% 147M 1s -2024-04-19T21:15:35Z #15 2.455 74750K .......... .......... .......... .......... .......... 58% 82.2M 1s -2024-04-19T21:15:35Z #15 2.455 74800K .......... .......... .......... .......... .......... 59% 174M 1s -2024-04-19T21:15:35Z #15 2.455 74850K .......... .......... .......... .......... .......... 59% 157M 1s -2024-04-19T21:15:35Z #15 2.455 74900K .......... .......... .......... .......... .......... 59% 62.7M 1s -2024-04-19T21:15:35Z #15 2.455 74950K .......... .......... .......... .......... .......... 59% 141M 1s -2024-04-19T21:15:35Z #15 2.455 75000K .......... .......... .......... .......... .......... 59% 181M 1s -2024-04-19T21:15:35Z #15 2.455 75050K .......... .......... .......... .......... .......... 59% 142M 1s -2024-04-19T21:15:35Z #15 2.455 75100K .......... .......... .......... .......... .......... 59% 67.4M 1s -2024-04-19T21:15:35Z #15 2.455 75150K .......... .......... .......... .......... .......... 59% 121M 1s -2024-04-19T21:15:35Z #15 2.455 75200K .......... .......... .......... .......... .......... 59% 171M 1s -2024-04-19T21:15:35Z #15 2.455 75250K .......... .......... .......... .......... .......... 59% 29.3M 1s -2024-04-19T21:15:35Z #15 2.456 75300K .......... .......... .......... .......... .......... 59% 37.1M 1s -2024-04-19T21:15:35Z #15 2.463 75350K .......... .......... .......... .......... .......... 59% 146M 1s -2024-04-19T21:15:35Z #15 2.463 75400K .......... .......... .......... .......... .......... 59% 151M 1s -2024-04-19T21:15:35Z #15 2.463 75450K .......... .......... .......... .......... .......... 59% 94.4M 1s -2024-04-19T21:15:35Z #15 2.463 75500K .......... .......... .......... .......... .......... 59% 151M 1s -2024-04-19T21:15:35Z #15 2.463 75550K .......... .......... .......... .......... .......... 59% 81.7M 1s -2024-04-19T21:15:35Z #15 2.463 75600K .......... .......... .......... .......... .......... 59% 114M 1s -2024-04-19T21:15:35Z #15 2.463 75650K .......... .......... .......... .......... .......... 59% 175M 1s -2024-04-19T21:15:35Z #15 2.463 75700K .......... .......... .......... .......... .......... 59% 153M 1s -2024-04-19T21:15:35Z #15 2.463 75750K .......... .......... .......... .......... .......... 59% 72.0M 1s -2024-04-19T21:15:35Z #15 2.463 75800K .......... .......... .......... .......... .......... 59% 142M 1s -2024-04-19T21:15:35Z #15 2.463 75850K .......... .......... .......... .......... .......... 59% 156M 1s -2024-04-19T21:15:35Z #15 2.463 75900K .......... .......... .......... .......... .......... 59% 155M 1s -2024-04-19T21:15:35Z #15 2.463 75950K .......... .......... .......... .......... .......... 59% 27.0M 1s -2024-04-19T21:15:35Z #15 2.465 76000K .......... .......... .......... .......... .......... 59% 28.6M 1s -2024-04-19T21:15:35Z #15 2.466 76050K .......... .......... .......... .......... .......... 60% 67.5M 1s -2024-04-19T21:15:35Z #15 2.467 76100K .......... .......... .......... .......... .......... 60% 28.9M 1s -2024-04-19T21:15:35Z #15 2.468 76150K .......... .......... .......... .......... .......... 60% 20.6M 1s -2024-04-19T21:15:35Z #15 2.471 76200K .......... .......... .......... .......... .......... 60% 51.8M 1s -2024-04-19T21:15:35Z #15 2.475 76250K .......... .......... .......... .......... .......... 60% 87.1M 1s -2024-04-19T21:15:35Z #15 2.475 76300K .......... .......... .......... .......... .......... 60% 106M 1s -2024-04-19T21:15:35Z #15 2.475 76350K .......... .......... .......... .......... .......... 60% 167M 1s -2024-04-19T21:15:35Z #15 2.475 76400K .......... .......... .......... .......... .......... 60% 124M 1s -2024-04-19T21:15:35Z #15 2.475 76450K .......... .......... .......... .......... .......... 60% 71.5M 1s -2024-04-19T21:15:35Z #15 2.475 76500K .......... .......... .......... .......... .......... 60% 147M 1s -2024-04-19T21:15:35Z #15 2.475 76550K .......... .......... .......... .......... .......... 60% 142M 1s -2024-04-19T21:15:35Z #15 2.475 76600K .......... .......... .......... .......... .......... 60% 19.5M 1s -2024-04-19T21:15:35Z #15 2.479 76650K .......... .......... .......... .......... .......... 60% 141M 1s -2024-04-19T21:15:35Z #15 2.479 76700K .......... .......... .......... .......... .......... 60% 128M 1s -2024-04-19T21:15:35Z #15 2.479 76750K .......... .......... .......... .......... .......... 60% 92.7M 1s -2024-04-19T21:15:35Z #15 2.479 76800K .......... .......... .......... .......... .......... 60% 24.3M 1s -2024-04-19T21:15:35Z #15 2.481 76850K .......... .......... .......... .......... .......... 60% 68.4M 1s -2024-04-19T21:15:35Z #15 2.483 76900K .......... .......... .......... .......... .......... 60% 126M 1s -2024-04-19T21:15:35Z #15 2.483 76950K .......... .......... .......... .......... .......... 60% 87.2M 1s -2024-04-19T21:15:35Z #15 2.483 77000K .......... .......... .......... .......... .......... 60% 101M 1s -2024-04-19T21:15:35Z #15 2.483 77050K .......... .......... .......... .......... .......... 60% 49.9M 1s -2024-04-19T21:15:35Z #15 2.484 77100K .......... .......... .......... .......... .......... 60% 20.7M 1s -2024-04-19T21:15:35Z #15 2.486 77150K .......... .......... .......... .......... .......... 60% 9.43M 1s -2024-04-19T21:15:35Z #15 2.491 77200K .......... .......... .......... .......... .......... 60% 88.7M 1s -2024-04-19T21:15:35Z #15 2.492 77250K .......... .......... .......... .......... .......... 60% 68.3M 1s -2024-04-19T21:15:35Z #15 2.492 77300K .......... .......... .......... .......... .......... 61% 111M 1s -2024-04-19T21:15:35Z #15 2.493 77350K .......... .......... .......... .......... .......... 61% 161M 1s -2024-04-19T21:15:35Z #15 2.493 77400K .......... .......... .......... .......... .......... 61% 149M 1s -2024-04-19T21:15:35Z #15 2.493 77450K .......... .......... .......... .......... .......... 61% 67.7M 1s -2024-04-19T21:15:35Z #15 2.494 77500K .......... .......... .......... .......... .......... 61% 114M 1s -2024-04-19T21:15:35Z #15 2.494 77550K .......... .......... .......... .......... .......... 61% 11.1M 1s -2024-04-19T21:15:35Z #15 2.499 77600K .......... .......... .......... .......... .......... 61% 79.3M 1s -2024-04-19T21:15:35Z #15 2.500 77650K .......... .......... .......... .......... .......... 61% 128M 1s -2024-04-19T21:15:35Z #15 2.500 77700K .......... .......... .......... .......... .......... 61% 110M 1s -2024-04-19T21:15:35Z #15 2.500 77750K .......... .......... .......... .......... .......... 61% 61.0M 1s -2024-04-19T21:15:35Z #15 2.502 77800K .......... .......... .......... .......... .......... 61% 114M 1s -2024-04-19T21:15:35Z #15 2.502 77850K .......... .......... .......... .......... .......... 61% 144M 1s -2024-04-19T21:15:35Z #15 2.502 77900K .......... .......... .......... .......... .......... 61% 109M 1s -2024-04-19T21:15:35Z #15 2.502 77950K .......... .......... .......... .......... .......... 61% 98.6M 1s -2024-04-19T21:15:35Z #15 2.503 78000K .......... .......... .......... .......... .......... 61% 146M 1s -2024-04-19T21:15:35Z #15 2.503 78050K .......... .......... .......... .......... .......... 61% 71.3M 1s -2024-04-19T21:15:35Z #15 2.504 78100K .......... .......... .......... .......... .......... 61% 129M 1s -2024-04-19T21:15:35Z #15 2.504 78150K .......... .......... .......... .......... .......... 61% 141M 1s -2024-04-19T21:15:35Z #15 2.505 78200K .......... .......... .......... .......... .......... 61% 75.9M 1s -2024-04-19T21:15:35Z #15 2.505 78250K .......... .......... .......... .......... .......... 61% 96.2M 1s -2024-04-19T21:15:35Z #15 2.506 78300K .......... .......... .......... .......... .......... 61% 90.6M 1s -2024-04-19T21:15:35Z #15 2.507 78350K .......... .......... .......... .......... .......... 61% 99.8M 1s -2024-04-19T21:15:35Z #15 2.507 78400K .......... .......... .......... .......... .......... 61% 128M 1s -2024-04-19T21:15:35Z #15 2.507 78450K .......... .......... .......... .......... .......... 61% 63.8M 1s -2024-04-19T21:15:35Z #15 2.508 78500K .......... .......... .......... .......... .......... 61% 111M 1s -2024-04-19T21:15:35Z #15 2.509 78550K .......... .......... .......... .......... .......... 61% 68.1M 1s -2024-04-19T21:15:35Z #15 2.509 78600K .......... .......... .......... .......... .......... 62% 148M 1s -2024-04-19T21:15:35Z #15 2.509 78650K .......... .......... .......... .......... .......... 62% 122M 1s -2024-04-19T21:15:35Z #15 2.510 78700K .......... .......... .......... .......... .......... 62% 83.2M 1s -2024-04-19T21:15:35Z #15 2.511 78750K .......... .......... .......... .......... .......... 62% 10.6M 1s -2024-04-19T21:15:35Z #15 2.515 78800K .......... .......... .......... .......... .......... 62% 131M 1s -2024-04-19T21:15:35Z #15 2.515 78850K .......... .......... .......... .......... .......... 62% 121M 1s -2024-04-19T21:15:35Z #15 2.516 78900K .......... .......... .......... .......... .......... 62% 92.2M 1s -2024-04-19T21:15:35Z #15 2.517 78950K .......... .......... .......... .......... .......... 62% 76.8M 1s -2024-04-19T21:15:35Z #15 2.518 79000K .......... .......... .......... .......... .......... 62% 117M 1s -2024-04-19T21:15:35Z #15 2.518 79050K .......... .......... .......... .......... .......... 62% 77.7M 1s -2024-04-19T21:15:35Z #15 2.518 79100K .......... .......... .......... .......... .......... 62% 66.7M 1s -2024-04-19T21:15:35Z #15 2.519 79150K .......... .......... .......... .......... .......... 62% 115M 1s -2024-04-19T21:15:35Z #15 2.520 79200K .......... .......... .......... .......... .......... 62% 105M 1s -2024-04-19T21:15:35Z #15 2.520 79250K .......... .......... .......... .......... .......... 62% 121M 1s -2024-04-19T21:15:35Z #15 2.520 79300K .......... .......... .......... .......... .......... 62% 97.9M 1s -2024-04-19T21:15:35Z #15 2.521 79350K .......... .......... .......... .......... .......... 62% 67.2M 1s -2024-04-19T21:15:35Z #15 2.522 79400K .......... .......... .......... .......... .......... 62% 111M 1s -2024-04-19T21:15:35Z #15 2.522 79450K .......... .......... .......... .......... .......... 62% 109M 1s -2024-04-19T21:15:35Z #15 2.522 79500K .......... .......... .......... .......... .......... 62% 10.3M 1s -2024-04-19T21:15:35Z #15 2.539 79550K .......... .......... .......... .......... .......... 62% 167M 1s -2024-04-19T21:15:35Z #15 2.539 79600K .......... .......... .......... .......... .......... 62% 161M 1s -2024-04-19T21:15:35Z #15 2.539 79650K .......... .......... .......... .......... .......... 62% 77.5M 1s -2024-04-19T21:15:35Z #15 2.539 79700K .......... .......... .......... .......... .......... 62% 142M 1s -2024-04-19T21:15:35Z #15 2.539 79750K .......... .......... .......... .......... .......... 62% 221M 1s -2024-04-19T21:15:35Z #15 2.539 79800K .......... .......... .......... .......... .......... 62% 187M 1s -2024-04-19T21:15:35Z #15 2.539 79850K .......... .......... .......... .......... .......... 63% 120M 1s -2024-04-19T21:15:35Z #15 2.539 79900K .......... .......... .......... .......... .......... 63% 140M 1s -2024-04-19T21:15:35Z #15 2.539 79950K .......... .......... .......... .......... .......... 63% 168M 1s -2024-04-19T21:15:35Z #15 2.539 80000K .......... .......... .......... .......... .......... 63% 179M 1s -2024-04-19T21:15:35Z #15 2.539 80050K .......... .......... .......... .......... .......... 63% 119M 1s -2024-04-19T21:15:35Z #15 2.539 80100K .......... .......... .......... .......... .......... 63% 94.2M 1s -2024-04-19T21:15:35Z #15 2.539 80150K .......... .......... .......... .......... .......... 63% 180M 1s -2024-04-19T21:15:35Z #15 2.539 80200K .......... .......... .......... .......... .......... 63% 142M 1s -2024-04-19T21:15:35Z #15 2.539 80250K .......... .......... .......... .......... .......... 63% 98.6M 1s -2024-04-19T21:15:35Z #15 2.539 80300K .......... .......... .......... .......... .......... 63% 125M 1s -2024-04-19T21:15:35Z #15 2.539 80350K .......... .......... .......... .......... .......... 63% 127M 1s -2024-04-19T21:15:35Z #15 2.539 80400K .......... .......... .......... .......... .......... 63% 137M 1s -2024-04-19T21:15:35Z #15 2.539 80450K .......... .......... .......... .......... .......... 63% 73.0M 1s -2024-04-19T21:15:35Z #15 2.539 80500K .......... .......... .......... .......... .......... 63% 141M 1s -2024-04-19T21:15:35Z #15 2.539 80550K .......... .......... .......... .......... .......... 63% 93.0M 1s -2024-04-19T21:15:35Z #15 2.539 80600K .......... .......... .......... .......... .......... 63% 171M 1s -2024-04-19T21:15:35Z #15 2.539 80650K .......... .......... .......... .......... .......... 63% 128M 1s -2024-04-19T21:15:35Z #15 2.539 80700K .......... .......... .......... .......... .......... 63% 87.1M 1s -2024-04-19T21:15:35Z #15 2.539 80750K .......... .......... .......... .......... .......... 63% 114M 1s -2024-04-19T21:15:35Z #15 2.539 80800K .......... .......... .......... .......... .......... 63% 146M 1s -2024-04-19T21:15:35Z #15 2.539 80850K .......... .......... .......... .......... .......... 63% 148M 1s -2024-04-19T21:15:35Z #15 2.539 80900K .......... .......... .......... .......... .......... 63% 79.9M 1s -2024-04-19T21:15:35Z #15 2.539 80950K .......... .......... .......... .......... .......... 63% 159M 1s -2024-04-19T21:15:35Z #15 2.539 81000K .......... .......... .......... .......... .......... 63% 169M 1s -2024-04-19T21:15:35Z #15 2.539 81050K .......... .......... .......... .......... .......... 63% 65.0M 1s -2024-04-19T21:15:35Z #15 2.541 81100K .......... .......... .......... .......... .......... 64% 87.2M 1s -2024-04-19T21:15:35Z #15 2.541 81150K .......... .......... .......... .......... .......... 64% 116M 1s -2024-04-19T21:15:35Z #15 2.541 81200K .......... .......... .......... .......... .......... 64% 59.9M 1s -2024-04-19T21:15:35Z #15 2.541 81250K .......... .......... .......... .......... .......... 64% 112M 1s -2024-04-19T21:15:35Z #15 2.541 81300K .......... .......... .......... .......... .......... 64% 103M 1s -2024-04-19T21:15:35Z #15 2.542 81350K .......... .......... .......... .......... .......... 64% 56.4M 1s -2024-04-19T21:15:35Z #15 2.543 81400K .......... .......... .......... .......... .......... 64% 123M 1s -2024-04-19T21:15:35Z #15 2.543 81450K .......... .......... .......... .......... .......... 64% 107M 1s -2024-04-19T21:15:35Z #15 2.544 81500K .......... .......... .......... .......... .......... 64% 71.5M 1s -2024-04-19T21:15:35Z #15 2.544 81550K .......... .......... .......... .......... .......... 64% 113M 1s -2024-04-19T21:15:35Z #15 2.545 81600K .......... .......... .......... .......... .......... 64% 65.5M 1s -2024-04-19T21:15:35Z #15 2.546 81650K .......... .......... .......... .......... .......... 64% 102M 1s -2024-04-19T21:15:35Z #15 2.546 81700K .......... .......... .......... .......... .......... 64% 98.0M 1s -2024-04-19T21:15:35Z #15 2.547 81750K .......... .......... .......... .......... .......... 64% 53.5M 1s -2024-04-19T21:15:35Z #15 2.547 81800K .......... .......... .......... .......... .......... 64% 128M 1s -2024-04-19T21:15:35Z #15 2.548 81850K .......... .......... .......... .......... .......... 64% 117M 1s -2024-04-19T21:15:35Z #15 2.548 81900K .......... .......... .......... .......... .......... 64% 66.8M 1s -2024-04-19T21:15:35Z #15 2.549 81950K .......... .......... .......... .......... .......... 64% 91.8M 1s -2024-04-19T21:15:35Z #15 2.549 82000K .......... .......... .......... .......... .......... 64% 128M 1s -2024-04-19T21:15:35Z #15 2.555 82050K .......... .......... .......... .......... .......... 64% 130M 1s -2024-04-19T21:15:35Z #15 2.555 82100K .......... .......... .......... .......... .......... 64% 37.5M 1s -2024-04-19T21:15:35Z #15 2.555 82150K .......... .......... .......... .......... .......... 64% 154M 1s -2024-04-19T21:15:35Z #15 2.555 82200K .......... .......... .......... .......... .......... 64% 91.2M 1s -2024-04-19T21:15:35Z #15 2.555 82250K .......... .......... .......... .......... .......... 64% 122M 1s -2024-04-19T21:15:35Z #15 2.555 82300K .......... .......... .......... .......... .......... 64% 122M 1s -2024-04-19T21:15:35Z #15 2.555 82350K .......... .......... .......... .......... .......... 64% 176M 1s -2024-04-19T21:15:35Z #15 2.555 82400K .......... .......... .......... .......... .......... 65% 71.5M 1s -2024-04-19T21:15:35Z #15 2.555 82450K .......... .......... .......... .......... .......... 65% 129M 1s -2024-04-19T21:15:35Z #15 2.555 82500K .......... .......... .......... .......... .......... 65% 54.4M 1s -2024-04-19T21:15:35Z #15 2.555 82550K .......... .......... .......... .......... .......... 65% 60.5M 1s -2024-04-19T21:15:35Z #15 2.556 82600K .......... .......... .......... .......... .......... 65% 70.0M 1s -2024-04-19T21:15:35Z #15 2.557 82650K .......... .......... .......... .......... .......... 65% 35.2M 1s -2024-04-19T21:15:35Z #15 2.559 82700K .......... .......... .......... .......... .......... 65% 18.1M 1s -2024-04-19T21:15:35Z #15 2.563 82750K .......... .......... .......... .......... .......... 65% 63.8M 1s -2024-04-19T21:15:35Z #15 2.563 82800K .......... .......... .......... .......... .......... 65% 77.7M 1s -2024-04-19T21:15:35Z #15 2.563 82850K .......... .......... .......... .......... .......... 65% 18.9M 1s -2024-04-19T21:15:35Z #15 2.565 82900K .......... .......... .......... .......... .......... 65% 57.8M 1s -2024-04-19T21:15:35Z #15 2.568 82950K .......... .......... .......... .......... .......... 65% 38.0M 1s -2024-04-19T21:15:35Z #15 2.568 83000K .......... .......... .......... .......... .......... 65% 99.8M 1s -2024-04-19T21:15:35Z #15 2.568 83050K .......... .......... .......... .......... .......... 65% 111M 1s -2024-04-19T21:15:35Z #15 2.569 83100K .......... .......... .......... .......... .......... 65% 18.8M 1s -2024-04-19T21:15:35Z #15 2.572 83150K .......... .......... .......... .......... .......... 65% 105M 1s -2024-04-19T21:15:35Z #15 2.572 83200K .......... .......... .......... .......... .......... 65% 23.3M 1s -2024-04-19T21:15:35Z #15 2.573 83250K .......... .......... .......... .......... .......... 65% 59.5M 1s -2024-04-19T21:15:35Z #15 2.579 83300K .......... .......... .......... .......... .......... 65% 106M 1s -2024-04-19T21:15:35Z #15 2.579 83350K .......... .......... .......... .......... .......... 65% 67.7M 1s -2024-04-19T21:15:35Z #15 2.579 83400K .......... .......... .......... .......... .......... 65% 115M 1s -2024-04-19T21:15:35Z #15 2.579 83450K .......... .......... .......... .......... .......... 65% 62.6M 1s -2024-04-19T21:15:35Z #15 2.579 83500K .......... .......... .......... .......... .......... 65% 123M 1s -2024-04-19T21:15:35Z #15 2.579 83550K .......... .......... .......... .......... .......... 65% 79.4M 1s -2024-04-19T21:15:35Z #15 2.579 83600K .......... .......... .......... .......... .......... 65% 75.5M 1s -2024-04-19T21:15:35Z #15 2.579 83650K .......... .......... .......... .......... .......... 66% 123M 1s -2024-04-19T21:15:35Z #15 2.579 83700K .......... .......... .......... .......... .......... 66% 34.0M 1s -2024-04-19T21:15:35Z #15 2.580 83750K .......... .......... .......... .......... .......... 66% 32.3M 1s -2024-04-19T21:15:35Z #15 2.583 83800K .......... .......... .......... .......... .......... 66% 131M 1s -2024-04-19T21:15:35Z #15 2.583 83850K .......... .......... .......... .......... .......... 66% 108M 1s -2024-04-19T21:15:35Z #15 2.583 83900K .......... .......... .......... .......... .......... 66% 15.5M 1s -2024-04-19T21:15:35Z #15 2.586 83950K .......... .......... .......... .......... .......... 66% 42.9M 1s -2024-04-19T21:15:35Z #15 2.591 84000K .......... .......... .......... .......... .......... 66% 62.5M 1s -2024-04-19T21:15:35Z #15 2.591 84050K .......... .......... .......... .......... .......... 66% 86.7M 1s -2024-04-19T21:15:35Z #15 2.591 84100K .......... .......... .......... .......... .......... 66% 99.9M 1s -2024-04-19T21:15:35Z #15 2.591 84150K .......... .......... .......... .......... .......... 66% 69.0M 1s -2024-04-19T21:15:35Z #15 2.591 84200K .......... .......... .......... .......... .......... 66% 94.0M 1s -2024-04-19T21:15:35Z #15 2.591 84250K .......... .......... .......... .......... .......... 66% 135M 1s -2024-04-19T21:15:35Z #15 2.591 84300K .......... .......... .......... .......... .......... 66% 28.4M 1s -2024-04-19T21:15:35Z #15 2.592 84350K .......... .......... .......... .......... .......... 66% 17.9M 1s -2024-04-19T21:15:35Z #15 2.594 84400K .......... .......... .......... .......... .......... 66% 73.6M 1s -2024-04-19T21:15:35Z #15 2.595 84450K .......... .......... .......... .......... .......... 66% 30.3M 1s -2024-04-19T21:15:35Z #15 2.599 84500K .......... .......... .......... .......... .......... 66% 114M 1s -2024-04-19T21:15:35Z #15 2.599 84550K .......... .......... .......... .......... .......... 66% 87.1M 1s -2024-04-19T21:15:35Z #15 2.599 84600K .......... .......... .......... .......... .......... 66% 70.3M 1s -2024-04-19T21:15:35Z #15 2.599 84650K .......... .......... .......... .......... .......... 66% 26.1M 1s -2024-04-19T21:15:35Z #15 2.600 84700K .......... .......... .......... .......... .......... 66% 20.3M 1s -2024-04-19T21:15:35Z #15 2.603 84750K .......... .......... .......... .......... .......... 66% 109M 1s -2024-04-19T21:15:35Z #15 2.603 84800K .......... .......... .......... .......... .......... 66% 61.8M 1s -2024-04-19T21:15:35Z #15 2.604 84850K .......... .......... .......... .......... .......... 66% 108M 1s -2024-04-19T21:15:35Z #15 2.604 84900K .......... .......... .......... .......... .......... 67% 33.0M 1s -2024-04-19T21:15:35Z #15 2.607 84950K .......... .......... .......... .......... .......... 67% 19.6M 1s -2024-04-19T21:15:35Z #15 2.611 85000K .......... .......... .......... .......... .......... 67% 112M 1s -2024-04-19T21:15:35Z #15 2.611 85050K .......... .......... .......... .......... .......... 67% 63.8M 1s -2024-04-19T21:15:35Z #15 2.611 85100K .......... .......... .......... .......... .......... 67% 99.6M 1s -2024-04-19T21:15:35Z #15 2.611 85150K .......... .......... .......... .......... .......... 67% 121M 1s -2024-04-19T21:15:35Z #15 2.611 85200K .......... .......... .......... .......... .......... 67% 18.7M 1s -2024-04-19T21:15:35Z #15 2.614 85250K .......... .......... .......... .......... .......... 67% 20.6M 1s -2024-04-19T21:15:35Z #15 2.619 85300K .......... .......... .......... .......... .......... 67% 123M 1s -2024-04-19T21:15:35Z #15 2.619 85350K .......... .......... .......... .......... .......... 67% 112M 1s -2024-04-19T21:15:35Z #15 2.619 85400K .......... .......... .......... .......... .......... 67% 61.8M 1s -2024-04-19T21:15:35Z #15 2.619 85450K .......... .......... .......... .......... .......... 67% 136M 1s -2024-04-19T21:15:35Z #15 2.619 85500K .......... .......... .......... .......... .......... 67% 116M 1s -2024-04-19T21:15:35Z #15 2.619 85550K .......... .......... .......... .......... .......... 67% 72.7M 1s -2024-04-19T21:15:35Z #15 2.619 85600K .......... .......... .......... .......... .......... 67% 22.3M 1s -2024-04-19T21:15:35Z #15 2.621 85650K .......... .......... .......... .......... .......... 67% 25.5M 1s -2024-04-19T21:15:35Z #15 2.623 85700K .......... .......... .......... .......... .......... 67% 30.9M 1s -2024-04-19T21:15:35Z #15 2.624 85750K .......... .......... .......... .......... .......... 67% 28.4M 1s -2024-04-19T21:15:35Z #15 2.630 85800K .......... .......... .......... .......... .......... 67% 121M 1s -2024-04-19T21:15:35Z #15 2.630 85850K .......... .......... .......... .......... .......... 67% 103M 1s -2024-04-19T21:15:35Z #15 2.630 85900K .......... .......... .......... .......... .......... 67% 65.4M 1s -2024-04-19T21:15:35Z #15 2.630 85950K .......... .......... .......... .......... .......... 67% 129M 1s -2024-04-19T21:15:35Z #15 2.630 86000K .......... .......... .......... .......... .......... 67% 68.9M 1s -2024-04-19T21:15:35Z #15 2.630 86050K .......... .......... .......... .......... .......... 67% 101M 1s -2024-04-19T21:15:35Z #15 2.630 86100K .......... .......... .......... .......... .......... 67% 98.8M 1s -2024-04-19T21:15:35Z #15 2.630 86150K .......... .......... .......... .......... .......... 67% 29.9M 1s -2024-04-19T21:15:35Z #15 2.632 86200K .......... .......... .......... .......... .......... 68% 20.3M 1s -2024-04-19T21:15:35Z #15 2.634 86250K .......... .......... .......... .......... .......... 68% 22.3M 1s -2024-04-19T21:15:35Z #15 2.639 86300K .......... .......... .......... .......... .......... 68% 125M 1s -2024-04-19T21:15:35Z #15 2.639 86350K .......... .......... .......... .......... .......... 68% 109M 1s -2024-04-19T21:15:35Z #15 2.639 86400K .......... .......... .......... .......... .......... 68% 69.4M 1s -2024-04-19T21:15:35Z #15 2.639 86450K .......... .......... .......... .......... .......... 68% 100M 1s -2024-04-19T21:15:35Z #15 2.639 86500K .......... .......... .......... .......... .......... 68% 90.1M 1s -2024-04-19T21:15:35Z #15 2.639 86550K .......... .......... .......... .......... .......... 68% 14.3M 1s -2024-04-19T21:15:35Z #15 2.642 86600K .......... .......... .......... .......... .......... 68% 33.7M 1s -2024-04-19T21:15:35Z #15 2.647 86650K .......... .......... .......... .......... .......... 68% 112M 1s -2024-04-19T21:15:35Z #15 2.647 86700K .......... .......... .......... .......... .......... 68% 59.3M 1s -2024-04-19T21:15:35Z #15 2.647 86750K .......... .......... .......... .......... .......... 68% 111M 1s -2024-04-19T21:15:35Z #15 2.647 86800K .......... .......... .......... .......... .......... 68% 89.4M 1s -2024-04-19T21:15:35Z #15 2.647 86850K .......... .......... .......... .......... .......... 68% 94.2M 1s -2024-04-19T21:15:35Z #15 2.647 86900K .......... .......... .......... .......... .......... 68% 105M 1s -2024-04-19T21:15:35Z #15 2.647 86950K .......... .......... .......... .......... .......... 68% 22.3M 1s -2024-04-19T21:15:35Z #15 2.649 87000K .......... .......... .......... .......... .......... 68% 20.1M 1s -2024-04-19T21:15:35Z #15 2.651 87050K .......... .......... .......... .......... .......... 68% 44.9M 1s -2024-04-19T21:15:35Z #15 2.652 87100K .......... .......... .......... .......... .......... 68% 21.0M 1s -2024-04-19T21:15:35Z #15 2.660 87150K .......... .......... .......... .......... .......... 68% 9.44M 1s -2024-04-19T21:15:35Z #15 2.663 87200K .......... .......... .......... .......... .......... 68% 170M 1s -2024-04-19T21:15:35Z #15 2.663 87250K .......... .......... .......... .......... .......... 68% 134M 1s -2024-04-19T21:15:35Z #15 2.663 87300K .......... .......... .......... .......... .......... 68% 136M 1s -2024-04-19T21:15:35Z #15 2.663 87350K .......... .......... .......... .......... .......... 68% 143M 1s -2024-04-19T21:15:35Z #15 2.663 87400K .......... .......... .......... .......... .......... 68% 156M 1s -2024-04-19T21:15:35Z #15 2.663 87450K .......... .......... .......... .......... .......... 69% 172M 1s -2024-04-19T21:15:35Z #15 2.663 87500K .......... .......... .......... .......... .......... 69% 114M 1s -2024-04-19T21:15:35Z #15 2.663 87550K .......... .......... .......... .......... .......... 69% 160M 1s -2024-04-19T21:15:35Z #15 2.663 87600K .......... .......... .......... .......... .......... 69% 153M 1s -2024-04-19T21:15:35Z #15 2.663 87650K .......... .......... .......... .......... .......... 69% 42.7M 1s -2024-04-19T21:15:35Z #15 2.676 87700K .......... .......... .......... .......... .......... 69% 150M 1s -2024-04-19T21:15:35Z #15 2.676 87750K .......... .......... .......... .......... .......... 69% 159M 1s -2024-04-19T21:15:36Z #15 2.676 87800K .......... .......... .......... .......... .......... 69% 142M 1s -2024-04-19T21:15:36Z #15 2.676 87850K .......... .......... .......... .......... .......... 69% 147M 1s -2024-04-19T21:15:36Z #15 2.676 87900K .......... .......... .......... .......... .......... 69% 111M 1s -2024-04-19T21:15:36Z #15 2.676 87950K .......... .......... .......... .......... .......... 69% 145M 1s -2024-04-19T21:15:36Z #15 2.676 88000K .......... .......... .......... .......... .......... 69% 178M 1s -2024-04-19T21:15:36Z #15 2.676 88050K .......... .......... .......... .......... .......... 69% 150M 1s -2024-04-19T21:15:36Z #15 2.676 88100K .......... .......... .......... .......... .......... 69% 116M 1s -2024-04-19T21:15:36Z #15 2.676 88150K .......... .......... .......... .......... .......... 69% 171M 1s -2024-04-19T21:15:36Z #15 2.676 88200K .......... .......... .......... .......... .......... 69% 179M 1s -2024-04-19T21:15:36Z #15 2.676 88250K .......... .......... .......... .......... .......... 69% 143M 1s -2024-04-19T21:15:36Z #15 2.676 88300K .......... .......... .......... .......... .......... 69% 132M 1s -2024-04-19T21:15:36Z #15 2.676 88350K .......... .......... .......... .......... .......... 69% 174M 1s -2024-04-19T21:15:36Z #15 2.676 88400K .......... .......... .......... .......... .......... 69% 172M 1s -2024-04-19T21:15:36Z #15 2.676 88450K .......... .......... .......... .......... .......... 69% 164M 1s -2024-04-19T21:15:36Z #15 2.676 88500K .......... .......... .......... .......... .......... 69% 130M 1s -2024-04-19T21:15:36Z #15 2.676 88550K .......... .......... .......... .......... .......... 69% 168M 1s -2024-04-19T21:15:36Z #15 2.676 88600K .......... .......... .......... .......... .......... 69% 171M 1s -2024-04-19T21:15:36Z #15 2.676 88650K .......... .......... .......... .......... .......... 69% 174M 1s -2024-04-19T21:15:36Z #15 2.676 88700K .......... .......... .......... .......... .......... 70% 135M 1s -2024-04-19T21:15:36Z #15 2.676 88750K .......... .......... .......... .......... .......... 70% 5.70M 1s -2024-04-19T21:15:36Z #15 2.683 88800K .......... .......... .......... .......... .......... 70% 164M 1s -2024-04-19T21:15:36Z #15 2.683 88850K .......... .......... .......... .......... .......... 70% 160M 1s -2024-04-19T21:15:36Z #15 2.683 88900K .......... .......... .......... .......... .......... 70% 163M 1s -2024-04-19T21:15:36Z #15 2.683 88950K .......... .......... .......... .......... .......... 70% 165M 1s -2024-04-19T21:15:36Z #15 2.683 89000K .......... .......... .......... .......... .......... 70% 179M 1s -2024-04-19T21:15:36Z #15 2.683 89050K .......... .......... .......... .......... .......... 70% 153M 1s -2024-04-19T21:15:36Z #15 2.683 89100K .......... .......... .......... .......... .......... 70% 129M 1s -2024-04-19T21:15:36Z #15 2.683 89150K .......... .......... .......... .......... .......... 70% 165M 1s -2024-04-19T21:15:36Z #15 2.683 89200K .......... .......... .......... .......... .......... 70% 166M 1s -2024-04-19T21:15:36Z #15 2.683 89250K .......... .......... .......... .......... .......... 70% 152M 1s -2024-04-19T21:15:36Z #15 2.683 89300K .......... .......... .......... .......... .......... 70% 149M 1s -2024-04-19T21:15:36Z #15 2.683 89350K .......... .......... .......... .......... .......... 70% 8.50M 1s -2024-04-19T21:15:36Z #15 2.703 89400K .......... .......... .......... .......... .......... 70% 158M 1s -2024-04-19T21:15:36Z #15 2.703 89450K .......... .......... .......... .......... .......... 70% 206M 1s -2024-04-19T21:15:36Z #15 2.703 89500K .......... .......... .......... .......... .......... 70% 147M 1s -2024-04-19T21:15:36Z #15 2.703 89550K .......... .......... .......... .......... .......... 70% 131M 1s -2024-04-19T21:15:36Z #15 2.703 89600K .......... .......... .......... .......... .......... 70% 184M 1s -2024-04-19T21:15:36Z #15 2.703 89650K .......... .......... .......... .......... .......... 70% 184M 1s -2024-04-19T21:15:36Z #15 2.703 89700K .......... .......... .......... .......... .......... 70% 157M 1s -2024-04-19T21:15:36Z #15 2.703 89750K .......... .......... .......... .......... .......... 70% 123M 1s -2024-04-19T21:15:36Z #15 2.703 89800K .......... .......... .......... .......... .......... 70% 171M 1s -2024-04-19T21:15:36Z #15 2.703 89850K .......... .......... .......... .......... .......... 70% 182M 1s -2024-04-19T21:15:36Z #15 2.703 89900K .......... .......... .......... .......... .......... 70% 179M 1s -2024-04-19T21:15:36Z #15 2.703 89950K .......... .......... .......... .......... .......... 70% 131M 1s -2024-04-19T21:15:36Z #15 2.703 90000K .......... .......... .......... .......... .......... 71% 153M 1s -2024-04-19T21:15:36Z #15 2.703 90050K .......... .......... .......... .......... .......... 71% 183M 1s -2024-04-19T21:15:36Z #15 2.703 90100K .......... .......... .......... .......... .......... 71% 188M 1s -2024-04-19T21:15:36Z #15 2.703 90150K .......... .......... .......... .......... .......... 71% 128M 1s -2024-04-19T21:15:36Z #15 2.703 90200K .......... .......... .......... .......... .......... 71% 155M 1s -2024-04-19T21:15:36Z #15 2.703 90250K .......... .......... .......... .......... .......... 71% 51.4M 1s -2024-04-19T21:15:36Z #15 2.703 90300K .......... .......... .......... .......... .......... 71% 106M 1s -2024-04-19T21:15:36Z #15 2.703 90350K .......... .......... .......... .......... .......... 71% 166M 1s -2024-04-19T21:15:36Z #15 2.703 90400K .......... .......... .......... .......... .......... 71% 182M 1s -2024-04-19T21:15:36Z #15 2.703 90450K .......... .......... .......... .......... .......... 71% 124M 0s -2024-04-19T21:15:36Z #15 2.703 90500K .......... .......... .......... .......... .......... 71% 167M 0s -2024-04-19T21:15:36Z #15 2.703 90550K .......... .......... .......... .......... .......... 71% 176M 0s -2024-04-19T21:15:36Z #15 2.703 90600K .......... .......... .......... .......... .......... 71% 141M 0s -2024-04-19T21:15:36Z #15 2.703 90650K .......... .......... .......... .......... .......... 71% 116M 0s -2024-04-19T21:15:36Z #15 2.703 90700K .......... .......... .......... .......... .......... 71% 90.8M 0s -2024-04-19T21:15:36Z #15 2.703 90750K .......... .......... .......... .......... .......... 71% 125M 0s -2024-04-19T21:15:36Z #15 2.703 90800K .......... .......... .......... .......... .......... 71% 152M 0s -2024-04-19T21:15:36Z #15 2.703 90850K .......... .......... .......... .......... .......... 71% 120M 0s -2024-04-19T21:15:36Z #15 2.703 90900K .......... .......... .......... .......... .......... 71% 154M 0s -2024-04-19T21:15:36Z #15 2.703 90950K .......... .......... .......... .......... .......... 71% 169M 0s -2024-04-19T21:15:36Z #15 2.703 91000K .......... .......... .......... .......... .......... 71% 123M 0s -2024-04-19T21:15:36Z #15 2.703 91050K .......... .......... .......... .......... .......... 71% 140M 0s -2024-04-19T21:15:36Z #15 2.703 91100K .......... .......... .......... .......... .......... 71% 170M 0s -2024-04-19T21:15:36Z #15 2.703 91150K .......... .......... .......... .......... .......... 71% 149M 0s -2024-04-19T21:15:36Z #15 2.703 91200K .......... .......... .......... .......... .......... 71% 141M 0s -2024-04-19T21:15:36Z #15 2.703 91250K .......... .......... .......... .......... .......... 72% 136M 0s -2024-04-19T21:15:36Z #15 2.703 91300K .......... .......... .......... .......... .......... 72% 166M 0s -2024-04-19T21:15:36Z #15 2.703 91350K .......... .......... .......... .......... .......... 72% 119M 0s -2024-04-19T21:15:36Z #15 2.703 91400K .......... .......... .......... .......... .......... 72% 135M 0s -2024-04-19T21:15:36Z #15 2.703 91450K .......... .......... .......... .......... .......... 72% 93.5M 0s -2024-04-19T21:15:36Z #15 2.711 91500K .......... .......... .......... .......... .......... 72% 136M 0s -2024-04-19T21:15:36Z #15 2.711 91550K .......... .......... .......... .......... .......... 72% 108M 0s -2024-04-19T21:15:36Z #15 2.711 91600K .......... .......... .......... .......... .......... 72% 83.8M 0s -2024-04-19T21:15:36Z #15 2.711 91650K .......... .......... .......... .......... .......... 72% 161M 0s -2024-04-19T21:15:36Z #15 2.711 91700K .......... .......... .......... .......... .......... 72% 54.3M 0s -2024-04-19T21:15:36Z #15 2.711 91750K .......... .......... .......... .......... .......... 72% 67.3M 0s -2024-04-19T21:15:36Z #15 2.711 91800K .......... .......... .......... .......... .......... 72% 65.3M 0s -2024-04-19T21:15:36Z #15 2.711 91850K .......... .......... .......... .......... .......... 72% 76.2M 0s -2024-04-19T21:15:36Z #15 2.711 91900K .......... .......... .......... .......... .......... 72% 82.7M 0s -2024-04-19T21:15:36Z #15 2.711 91950K .......... .......... .......... .......... .......... 72% 86.6M 0s -2024-04-19T21:15:36Z #15 2.711 92000K .......... .......... .......... .......... .......... 72% 66.1M 0s -2024-04-19T21:15:36Z #15 2.711 92050K .......... .......... .......... .......... .......... 72% 105M 0s -2024-04-19T21:15:36Z #15 2.711 92100K .......... .......... .......... .......... .......... 72% 121M 0s -2024-04-19T21:15:36Z #15 2.711 92150K .......... .......... .......... .......... .......... 72% 83.3M 0s -2024-04-19T21:15:36Z #15 2.711 92200K .......... .......... .......... .......... .......... 72% 50.2M 0s -2024-04-19T21:15:36Z #15 2.712 92250K .......... .......... .......... .......... .......... 72% 84.7M 0s -2024-04-19T21:15:36Z #15 2.713 92300K .......... .......... .......... .......... .......... 72% 75.9M 0s -2024-04-19T21:15:36Z #15 2.714 92350K .......... .......... .......... .......... .......... 72% 64.3M 0s -2024-04-19T21:15:36Z #15 2.714 92400K .......... .......... .......... .......... .......... 72% 50.5M 0s -2024-04-19T21:15:36Z #15 2.716 92450K .......... .......... .......... .......... .......... 72% 126M 0s -2024-04-19T21:15:36Z #15 2.716 92500K .......... .......... .......... .......... .......... 72% 63.2M 0s -2024-04-19T21:15:36Z #15 2.716 92550K .......... .......... .......... .......... .......... 73% 70.7M 0s -2024-04-19T21:15:36Z #15 2.717 92600K .......... .......... .......... .......... .......... 73% 51.7M 0s -2024-04-19T21:15:36Z #15 2.718 92650K .......... .......... .......... .......... .......... 73% 80.2M 0s -2024-04-19T21:15:36Z #15 2.719 92700K .......... .......... .......... .......... .......... 73% 46.8M 0s -2024-04-19T21:15:36Z #15 2.720 92750K .......... .......... .......... .......... .......... 73% 52.0M 0s -2024-04-19T21:15:36Z #15 2.721 92800K .......... .......... .......... .......... .......... 73% 42.7M 0s -2024-04-19T21:15:36Z #15 2.722 92850K .......... .......... .......... .......... .......... 73% 45.0M 0s -2024-04-19T21:15:36Z #15 2.723 92900K .......... .......... .......... .......... .......... 73% 100M 0s -2024-04-19T21:15:36Z #15 2.723 92950K .......... .......... .......... .......... .......... 73% 115M 0s -2024-04-19T21:15:36Z #15 2.724 93000K .......... .......... .......... .......... .......... 73% 101M 0s -2024-04-19T21:15:36Z #15 2.725 93050K .......... .......... .......... .......... .......... 73% 53.5M 0s -2024-04-19T21:15:36Z #15 2.725 93100K .......... .......... .......... .......... .......... 73% 68.2M 0s -2024-04-19T21:15:36Z #15 2.726 93150K .......... .......... .......... .......... .......... 73% 51.4M 0s -2024-04-19T21:15:36Z #15 2.727 93200K .......... .......... .......... .......... .......... 73% 70.6M 0s -2024-04-19T21:15:36Z #15 2.728 93250K .......... .......... .......... .......... .......... 73% 46.5M 0s -2024-04-19T21:15:36Z #15 2.729 93300K .......... .......... .......... .......... .......... 73% 69.1M 0s -2024-04-19T21:15:36Z #15 2.730 93350K .......... .......... .......... .......... .......... 73% 61.1M 0s -2024-04-19T21:15:36Z #15 2.730 93400K .......... .......... .......... .......... .......... 73% 110M 0s -2024-04-19T21:15:36Z #15 2.730 93450K .......... .......... .......... .......... .......... 73% 60.3M 0s -2024-04-19T21:15:36Z #15 2.731 93500K .......... .......... .......... .......... .......... 73% 57.8M 0s -2024-04-19T21:15:36Z #15 2.732 93550K .......... .......... .......... .......... .......... 73% 96.6M 0s -2024-04-19T21:15:36Z #15 2.733 93600K .......... .......... .......... .......... .......... 73% 110M 0s -2024-04-19T21:15:36Z #15 2.733 93650K .......... .......... .......... .......... .......... 73% 117M 0s -2024-04-19T21:15:36Z #15 2.733 93700K .......... .......... .......... .......... .......... 73% 132M 0s -2024-04-19T21:15:36Z #15 2.734 93750K .......... .......... .......... .......... .......... 73% 131M 0s -2024-04-19T21:15:36Z #15 2.739 93800K .......... .......... .......... .......... .......... 74% 60.5M 0s -2024-04-19T21:15:36Z #15 2.739 93850K .......... .......... .......... .......... .......... 74% 144M 0s -2024-04-19T21:15:36Z #15 2.739 93900K .......... .......... .......... .......... .......... 74% 160M 0s -2024-04-19T21:15:36Z #15 2.739 93950K .......... .......... .......... .......... .......... 74% 150M 0s -2024-04-19T21:15:36Z #15 2.739 94000K .......... .......... .......... .......... .......... 74% 130M 0s -2024-04-19T21:15:36Z #15 2.739 94050K .......... .......... .......... .......... .......... 74% 154M 0s -2024-04-19T21:15:36Z #15 2.739 94100K .......... .......... .......... .......... .......... 74% 165M 0s -2024-04-19T21:15:36Z #15 2.739 94150K .......... .......... .......... .......... .......... 74% 155M 0s -2024-04-19T21:15:36Z #15 2.739 94200K .......... .......... .......... .......... .......... 74% 113M 0s -2024-04-19T21:15:36Z #15 2.739 94250K .......... .......... .......... .......... .......... 74% 159M 0s -2024-04-19T21:15:36Z #15 2.739 94300K .......... .......... .......... .......... .......... 74% 163M 0s -2024-04-19T21:15:36Z #15 2.739 94350K .......... .......... .......... .......... .......... 74% 161M 0s -2024-04-19T21:15:36Z #15 2.739 94400K .......... .......... .......... .......... .......... 74% 61.5M 0s -2024-04-19T21:15:36Z #15 2.740 94450K .......... .......... .......... .......... .......... 74% 32.3M 0s -2024-04-19T21:15:36Z #15 2.741 94500K .......... .......... .......... .......... .......... 74% 116M 0s -2024-04-19T21:15:36Z #15 2.741 94550K .......... .......... .......... .......... .......... 74% 39.0M 0s -2024-04-19T21:15:36Z #15 2.743 94600K .......... .......... .......... .......... .......... 74% 88.0M 0s -2024-04-19T21:15:36Z #15 2.743 94650K .......... .......... .......... .......... .......... 74% 123M 0s -2024-04-19T21:15:36Z #15 2.744 94700K .......... .......... .......... .......... .......... 74% 95.5M 0s -2024-04-19T21:15:36Z #15 2.744 94750K .......... .......... .......... .......... .......... 74% 148M 0s -2024-04-19T21:15:36Z #15 2.744 94800K .......... .......... .......... .......... .......... 74% 119M 0s -2024-04-19T21:15:36Z #15 2.747 94850K .......... .......... .......... .......... .......... 74% 66.6M 0s -2024-04-19T21:15:36Z #15 2.747 94900K .......... .......... .......... .......... .......... 74% 140M 0s -2024-04-19T21:15:36Z #15 2.747 94950K .......... .......... .......... .......... .......... 74% 152M 0s -2024-04-19T21:15:36Z #15 2.747 95000K .......... .......... .......... .......... .......... 74% 157M 0s -2024-04-19T21:15:36Z #15 2.747 95050K .......... .......... .......... .......... .......... 75% 63.6M 0s -2024-04-19T21:15:36Z #15 2.747 95100K .......... .......... .......... .......... .......... 75% 60.4M 0s -2024-04-19T21:15:36Z #15 2.748 95150K .......... .......... .......... .......... .......... 75% 79.0M 0s -2024-04-19T21:15:36Z #15 2.749 95200K .......... .......... .......... .......... .......... 75% 40.1M 0s -2024-04-19T21:15:36Z #15 2.750 95250K .......... .......... .......... .......... .......... 75% 110M 0s -2024-04-19T21:15:36Z #15 2.750 95300K .......... .......... .......... .......... .......... 75% 60.7M 0s -2024-04-19T21:15:36Z #15 2.751 95350K .......... .......... .......... .......... .......... 75% 64.3M 0s -2024-04-19T21:15:36Z #15 2.752 95400K .......... .......... .......... .......... .......... 75% 59.4M 0s -2024-04-19T21:15:36Z #15 2.753 95450K .......... .......... .......... .......... .......... 75% 93.0M 0s -2024-04-19T21:15:36Z #15 2.754 95500K .......... .......... .......... .......... .......... 75% 90.5M 0s -2024-04-19T21:15:36Z #15 2.754 95550K .......... .......... .......... .......... .......... 75% 58.8M 0s -2024-04-19T21:15:36Z #15 2.755 95600K .......... .......... .......... .......... .......... 75% 48.4M 0s -2024-04-19T21:15:36Z #15 2.756 95650K .......... .......... .......... .......... .......... 75% 119M 0s -2024-04-19T21:15:36Z #15 2.756 95700K .......... .......... .......... .......... .......... 75% 48.7M 0s -2024-04-19T21:15:36Z #15 2.759 95750K .......... .......... .......... .......... .......... 75% 80.3M 0s -2024-04-19T21:15:36Z #15 2.759 95800K .......... .......... .......... .......... .......... 75% 174M 0s -2024-04-19T21:15:36Z #15 2.759 95850K .......... .......... .......... .......... .......... 75% 152M 0s -2024-04-19T21:15:36Z #15 2.759 95900K .......... .......... .......... .......... .......... 75% 90.7M 0s -2024-04-19T21:15:36Z #15 2.759 95950K .......... .......... .......... .......... .......... 75% 112M 0s -2024-04-19T21:15:36Z #15 2.759 96000K .......... .......... .......... .......... .......... 75% 126M 0s -2024-04-19T21:15:36Z #15 2.760 96050K .......... .......... .......... .......... .......... 75% 115M 0s -2024-04-19T21:15:36Z #15 2.760 96100K .......... .......... .......... .......... .......... 75% 113M 0s -2024-04-19T21:15:36Z #15 2.760 96150K .......... .......... .......... .......... .......... 75% 109M 0s -2024-04-19T21:15:36Z #15 2.761 96200K .......... .......... .......... .......... .......... 75% 103M 0s -2024-04-19T21:15:36Z #15 2.762 96250K .......... .......... .......... .......... .......... 75% 98.6M 0s -2024-04-19T21:15:36Z #15 2.762 96300K .......... .......... .......... .......... .......... 75% 134M 0s -2024-04-19T21:15:36Z #15 2.762 96350K .......... .......... .......... .......... .......... 76% 115M 0s -2024-04-19T21:15:36Z #15 2.763 96400K .......... .......... .......... .......... .......... 76% 120M 0s -2024-04-19T21:15:36Z #15 2.763 96450K .......... .......... .......... .......... .......... 76% 107M 0s -2024-04-19T21:15:36Z #15 2.764 96500K .......... .......... .......... .......... .......... 76% 106M 0s -2024-04-19T21:15:36Z #15 2.764 96550K .......... .......... .......... .......... .......... 76% 113M 0s -2024-04-19T21:15:36Z #15 2.765 96600K .......... .......... .......... .......... .......... 76% 128M 0s -2024-04-19T21:15:36Z #15 2.765 96650K .......... .......... .......... .......... .......... 76% 85.5M 0s -2024-04-19T21:15:36Z #15 2.765 96700K .......... .......... .......... .......... .......... 76% 108M 0s -2024-04-19T21:15:36Z #15 2.766 96750K .......... .......... .......... .......... .......... 76% 114M 0s -2024-04-19T21:15:36Z #15 2.766 96800K .......... .......... .......... .......... .......... 76% 105M 0s -2024-04-19T21:15:36Z #15 2.767 96850K .......... .......... .......... .......... .......... 76% 107M 0s -2024-04-19T21:15:36Z #15 2.771 96900K .......... .......... .......... .......... .......... 76% 54.7M 0s -2024-04-19T21:15:36Z #15 2.771 96950K .......... .......... .......... .......... .......... 76% 36.9M 0s -2024-04-19T21:15:36Z #15 2.771 97000K .......... .......... .......... .......... .......... 76% 150M 0s -2024-04-19T21:15:36Z #15 2.771 97050K .......... .......... .......... .......... .......... 76% 144M 0s -2024-04-19T21:15:36Z #15 2.771 97100K .......... .......... .......... .......... .......... 76% 160M 0s -2024-04-19T21:15:36Z #15 2.771 97150K .......... .......... .......... .......... .......... 76% 97.4M 0s -2024-04-19T21:15:36Z #15 2.771 97200K .......... .......... .......... .......... .......... 76% 57.3M 0s -2024-04-19T21:15:36Z #15 2.772 97250K .......... .......... .......... .......... .......... 76% 50.5M 0s -2024-04-19T21:15:36Z #15 2.773 97300K .......... .......... .......... .......... .......... 76% 123M 0s -2024-04-19T21:15:36Z #15 2.774 97350K .......... .......... .......... .......... .......... 76% 136M 0s -2024-04-19T21:15:36Z #15 2.774 97400K .......... .......... .......... .......... .......... 76% 88.4M 0s -2024-04-19T21:15:36Z #15 2.774 97450K .......... .......... .......... .......... .......... 76% 108M 0s -2024-04-19T21:15:36Z #15 2.775 97500K .......... .......... .......... .......... .......... 76% 94.5M 0s -2024-04-19T21:15:36Z #15 2.775 97550K .......... .......... .......... .......... .......... 76% 125M 0s -2024-04-19T21:15:36Z #15 2.775 97600K .......... .......... .......... .......... .......... 77% 121M 0s -2024-04-19T21:15:36Z #15 2.776 97650K .......... .......... .......... .......... .......... 77% 137M 0s -2024-04-19T21:15:36Z #15 2.776 97700K .......... .......... .......... .......... .......... 77% 101M 0s -2024-04-19T21:15:36Z #15 2.777 97750K .......... .......... .......... .......... .......... 77% 128M 0s -2024-04-19T21:15:36Z #15 2.777 97800K .......... .......... .......... .......... .......... 77% 118M 0s -2024-04-19T21:15:36Z #15 2.777 97850K .......... .......... .......... .......... .......... 77% 150M 0s -2024-04-19T21:15:36Z #15 2.778 97900K .......... .......... .......... .......... .......... 77% 95.3M 0s -2024-04-19T21:15:36Z #15 2.778 97950K .......... .......... .......... .......... .......... 77% 102M 0s -2024-04-19T21:15:36Z #15 2.784 98000K .......... .......... .......... .......... .......... 77% 53.1M 0s -2024-04-19T21:15:36Z #15 2.784 98050K .......... .......... .......... .......... .......... 77% 151M 0s -2024-04-19T21:15:36Z #15 2.784 98100K .......... .......... .......... .......... .......... 77% 140M 0s -2024-04-19T21:15:36Z #15 2.784 98150K .......... .......... .......... .......... .......... 77% 148M 0s -2024-04-19T21:15:36Z #15 2.784 98200K .......... .......... .......... .......... .......... 77% 155M 0s -2024-04-19T21:15:36Z #15 2.784 98250K .......... .......... .......... .......... .......... 77% 127M 0s -2024-04-19T21:15:36Z #15 2.784 98300K .......... .......... .......... .......... .......... 77% 139M 0s -2024-04-19T21:15:36Z #15 2.784 98350K .......... .......... .......... .......... .......... 77% 145M 0s -2024-04-19T21:15:36Z #15 2.784 98400K .......... .......... .......... .......... .......... 77% 142M 0s -2024-04-19T21:15:36Z #15 2.784 98450K .......... .......... .......... .......... .......... 77% 125M 0s -2024-04-19T21:15:36Z #15 2.784 98500K .......... .......... .......... .......... .......... 77% 33.4M 0s -2024-04-19T21:15:36Z #15 2.784 98550K .......... .......... .......... .......... .......... 77% 44.6M 0s -2024-04-19T21:15:36Z #15 2.785 98600K .......... .......... .......... .......... .......... 77% 72.0M 0s -2024-04-19T21:15:36Z #15 2.786 98650K .......... .......... .......... .......... .......... 77% 93.2M 0s -2024-04-19T21:15:36Z #15 2.787 98700K .......... .......... .......... .......... .......... 77% 126M 0s -2024-04-19T21:15:36Z #15 2.787 98750K .......... .......... .......... .......... .......... 77% 64.5M 0s -2024-04-19T21:15:36Z #15 2.788 98800K .......... .......... .......... .......... .......... 77% 51.3M 0s -2024-04-19T21:15:36Z #15 2.789 98850K .......... .......... .......... .......... .......... 78% 54.1M 0s -2024-04-19T21:15:36Z #15 2.790 98900K .......... .......... .......... .......... .......... 78% 101M 0s -2024-04-19T21:15:36Z #15 2.790 98950K .......... .......... .......... .......... .......... 78% 106M 0s -2024-04-19T21:15:36Z #15 2.790 99000K .......... .......... .......... .......... .......... 78% 41.3M 0s -2024-04-19T21:15:36Z #15 2.793 99050K .......... .......... .......... .......... .......... 78% 171M 0s -2024-04-19T21:15:36Z #15 2.793 99100K .......... .......... .......... .......... .......... 78% 153M 0s -2024-04-19T21:15:36Z #15 2.793 99150K .......... .......... .......... .......... .......... 78% 168M 0s -2024-04-19T21:15:36Z #15 2.793 99200K .......... .......... .......... .......... .......... 78% 97.0M 0s -2024-04-19T21:15:36Z #15 2.793 99250K .......... .......... .......... .......... .......... 78% 103M 0s -2024-04-19T21:15:36Z #15 2.794 99300K .......... .......... .......... .......... .......... 78% 87.0M 0s -2024-04-19T21:15:36Z #15 2.795 99350K .......... .......... .......... .......... .......... 78% 40.0M 0s -2024-04-19T21:15:36Z #15 2.795 99400K .......... .......... .......... .......... .......... 78% 112M 0s -2024-04-19T21:15:36Z #15 2.796 99450K .......... .......... .......... .......... .......... 78% 126M 0s -2024-04-19T21:15:36Z #15 2.800 99500K .......... .......... .......... .......... .......... 78% 112M 0s -2024-04-19T21:15:36Z #15 2.800 99550K .......... .......... .......... .......... .......... 78% 148M 0s -2024-04-19T21:15:36Z #15 2.800 99600K .......... .......... .......... .......... .......... 78% 164M 0s -2024-04-19T21:15:36Z #15 2.800 99650K .......... .......... .......... .......... .......... 78% 148M 0s -2024-04-19T21:15:36Z #15 2.800 99700K .......... .......... .......... .......... .......... 78% 140M 0s -2024-04-19T21:15:36Z #15 2.800 99750K .......... .......... .......... .......... .......... 78% 143M 0s -2024-04-19T21:15:36Z #15 2.800 99800K .......... .......... .......... .......... .......... 78% 126M 0s -2024-04-19T21:15:36Z #15 2.800 99850K .......... .......... .......... .......... .......... 78% 71.0M 0s -2024-04-19T21:15:36Z #15 2.800 99900K .......... .......... .......... .......... .......... 78% 90.9M 0s -2024-04-19T21:15:36Z #15 2.800 99950K .......... .......... .......... .......... .......... 78% 79.2M 0s -2024-04-19T21:15:36Z #15 2.801 100000K .......... .......... .......... .......... .......... 78% 120M 0s -2024-04-19T21:15:36Z #15 2.801 100050K .......... .......... .......... .......... .......... 78% 153M 0s -2024-04-19T21:15:36Z #15 2.801 100100K .......... .......... .......... .......... .......... 78% 155M 0s -2024-04-19T21:15:36Z #15 2.802 100150K .......... .......... .......... .......... .......... 79% 146M 0s -2024-04-19T21:15:36Z #15 2.802 100200K .......... .......... .......... .......... .......... 79% 140M 0s -2024-04-19T21:15:36Z #15 2.802 100250K .......... .......... .......... .......... .......... 79% 136M 0s -2024-04-19T21:15:36Z #15 2.803 100300K .......... .......... .......... .......... .......... 79% 125M 0s -2024-04-19T21:15:36Z #15 2.803 100350K .......... .......... .......... .......... .......... 79% 149M 0s -2024-04-19T21:15:36Z #15 2.803 100400K .......... .......... .......... .......... .......... 79% 144M 0s -2024-04-19T21:15:36Z #15 2.804 100450K .......... .......... .......... .......... .......... 79% 135M 0s -2024-04-19T21:15:36Z #15 2.804 100500K .......... .......... .......... .......... .......... 79% 106M 0s -2024-04-19T21:15:36Z #15 2.811 100550K .......... .......... .......... .......... .......... 79% 122M 0s -2024-04-19T21:15:36Z #15 2.811 100600K .......... .......... .......... .......... .......... 79% 124M 0s -2024-04-19T21:15:36Z #15 2.811 100650K .......... .......... .......... .......... .......... 79% 152M 0s -2024-04-19T21:15:36Z #15 2.811 100700K .......... .......... .......... .......... .......... 79% 132M 0s -2024-04-19T21:15:36Z #15 2.811 100750K .......... .......... .......... .......... .......... 79% 159M 0s -2024-04-19T21:15:36Z #15 2.811 100800K .......... .......... .......... .......... .......... 79% 172M 0s -2024-04-19T21:15:36Z #15 2.811 100850K .......... .......... .......... .......... .......... 79% 121M 0s -2024-04-19T21:15:36Z #15 2.811 100900K .......... .......... .......... .......... .......... 79% 125M 0s -2024-04-19T21:15:36Z #15 2.811 100950K .......... .......... .......... .......... .......... 79% 151M 0s -2024-04-19T21:15:36Z #15 2.811 101000K .......... .......... .......... .......... .......... 79% 156M 0s -2024-04-19T21:15:36Z #15 2.811 101050K .......... .......... .......... .......... .......... 79% 144M 0s -2024-04-19T21:15:36Z #15 2.811 101100K .......... .......... .......... .......... .......... 79% 157M 0s -2024-04-19T21:15:36Z #15 2.811 101150K .......... .......... .......... .......... .......... 79% 142M 0s -2024-04-19T21:15:36Z #15 2.811 101200K .......... .......... .......... .......... .......... 79% 135M 0s -2024-04-19T21:15:36Z #15 2.811 101250K .......... .......... .......... .......... .......... 79% 147M 0s -2024-04-19T21:15:36Z #15 2.811 101300K .......... .......... .......... .......... .......... 79% 166M 0s -2024-04-19T21:15:36Z #15 2.811 101350K .......... .......... .......... .......... .......... 79% 141M 0s -2024-04-19T21:15:36Z #15 2.811 101400K .......... .......... .......... .......... .......... 80% 125M 0s -2024-04-19T21:15:36Z #15 2.811 101450K .......... .......... .......... .......... .......... 80% 38.2M 0s -2024-04-19T21:15:36Z #15 2.812 101500K .......... .......... .......... .......... .......... 80% 113M 0s -2024-04-19T21:15:36Z #15 2.812 101550K .......... .......... .......... .......... .......... 80% 123M 0s -2024-04-19T21:15:36Z #15 2.813 101600K .......... .......... .......... .......... .......... 80% 108M 0s -2024-04-19T21:15:36Z #15 2.813 101650K .......... .......... .......... .......... .......... 80% 97.8M 0s -2024-04-19T21:15:36Z #15 2.816 101700K .......... .......... .......... .......... .......... 80% 86.2M 0s -2024-04-19T21:15:36Z #15 2.816 101750K .......... .......... .......... .......... .......... 80% 68.9M 0s -2024-04-19T21:15:36Z #15 2.816 101800K .......... .......... .......... .......... .......... 80% 106M 0s -2024-04-19T21:15:36Z #15 2.816 101850K .......... .......... .......... .......... .......... 80% 148M 0s -2024-04-19T21:15:36Z #15 2.817 101900K .......... .......... .......... .......... .......... 80% 66.5M 0s -2024-04-19T21:15:36Z #15 2.817 101950K .......... .......... .......... .......... .......... 80% 52.9M 0s -2024-04-19T21:15:36Z #15 2.818 102000K .......... .......... .......... .......... .......... 80% 59.9M 0s -2024-04-19T21:15:36Z #15 2.818 102050K .......... .......... .......... .......... .......... 80% 145M 0s -2024-04-19T21:15:36Z #15 2.819 102100K .......... .......... .......... .......... .......... 80% 87.7M 0s -2024-04-19T21:15:36Z #15 2.819 102150K .......... .......... .......... .......... .......... 80% 106M 0s -2024-04-19T21:15:36Z #15 2.820 102200K .......... .......... .......... .......... .......... 80% 124M 0s -2024-04-19T21:15:36Z #15 2.820 102250K .......... .......... .......... .......... .......... 80% 107M 0s -2024-04-19T21:15:36Z #15 2.821 102300K .......... .......... .......... .......... .......... 80% 134M 0s -2024-04-19T21:15:36Z #15 2.821 102350K .......... .......... .......... .......... .......... 80% 116M 0s -2024-04-19T21:15:36Z #15 2.821 102400K .......... .......... .......... .......... .......... 80% 124M 0s -2024-04-19T21:15:36Z #15 2.822 102450K .......... .......... .......... .......... .......... 80% 119M 0s -2024-04-19T21:15:36Z #15 2.822 102500K .......... .......... .......... .......... .......... 80% 120M 0s -2024-04-19T21:15:36Z #15 2.822 102550K .......... .......... .......... .......... .......... 80% 48.0M 0s -2024-04-19T21:15:36Z #15 2.827 102600K .......... .......... .......... .......... .......... 80% 158M 0s -2024-04-19T21:15:36Z #15 2.827 102650K .......... .......... .......... .......... .......... 81% 148M 0s -2024-04-19T21:15:36Z #15 2.827 102700K .......... .......... .......... .......... .......... 81% 142M 0s -2024-04-19T21:15:36Z #15 2.827 102750K .......... .......... .......... .......... .......... 81% 135M 0s -2024-04-19T21:15:36Z #15 2.827 102800K .......... .......... .......... .......... .......... 81% 126M 0s -2024-04-19T21:15:36Z #15 2.827 102850K .......... .......... .......... .......... .......... 81% 165M 0s -2024-04-19T21:15:36Z #15 2.827 102900K .......... .......... .......... .......... .......... 81% 154M 0s -2024-04-19T21:15:36Z #15 2.827 102950K .......... .......... .......... .......... .......... 81% 155M 0s -2024-04-19T21:15:36Z #15 2.827 103000K .......... .......... .......... .......... .......... 81% 125M 0s -2024-04-19T21:15:36Z #15 2.827 103050K .......... .......... .......... .......... .......... 81% 51.9M 0s -2024-04-19T21:15:36Z #15 2.827 103100K .......... .......... .......... .......... .......... 81% 91.4M 0s -2024-04-19T21:15:36Z #15 2.828 103150K .......... .......... .......... .......... .......... 81% 113M 0s -2024-04-19T21:15:36Z #15 2.828 103200K .......... .......... .......... .......... .......... 81% 125M 0s -2024-04-19T21:15:36Z #15 2.829 103250K .......... .......... .......... .......... .......... 81% 126M 0s -2024-04-19T21:15:36Z #15 2.829 103300K .......... .......... .......... .......... .......... 81% 121M 0s -2024-04-19T21:15:36Z #15 2.830 103350K .......... .......... .......... .......... .......... 81% 109M 0s -2024-04-19T21:15:36Z #15 2.830 103400K .......... .......... .......... .......... .......... 81% 124M 0s -2024-04-19T21:15:36Z #15 2.831 103450K .......... .......... .......... .......... .......... 81% 49.8M 0s -2024-04-19T21:15:36Z #15 2.832 103500K .......... .......... .......... .......... .......... 81% 97.1M 0s -2024-04-19T21:15:36Z #15 2.832 103550K .......... .......... .......... .......... .......... 81% 96.9M 0s -2024-04-19T21:15:36Z #15 2.833 103600K .......... .......... .......... .......... .......... 81% 136M 0s -2024-04-19T21:15:36Z #15 2.833 103650K .......... .......... .......... .......... .......... 81% 115M 0s -2024-04-19T21:15:36Z #15 2.833 103700K .......... .......... .......... .......... .......... 81% 69.3M 0s -2024-04-19T21:15:36Z #15 2.840 103750K .......... .......... .......... .......... .......... 81% 135M 0s -2024-04-19T21:15:36Z #15 2.840 103800K .......... .......... .......... .......... .......... 81% 134M 0s -2024-04-19T21:15:36Z #15 2.840 103850K .......... .......... .......... .......... .......... 81% 116M 0s -2024-04-19T21:15:36Z #15 2.840 103900K .......... .......... .......... .......... .......... 81% 152M 0s -2024-04-19T21:15:36Z #15 2.840 103950K .......... .......... .......... .......... .......... 82% 155M 0s -2024-04-19T21:15:36Z #15 2.840 104000K .......... .......... .......... .......... .......... 82% 140M 0s -2024-04-19T21:15:36Z #15 2.840 104050K .......... .......... .......... .......... .......... 82% 138M 0s -2024-04-19T21:15:36Z #15 2.840 104100K .......... .......... .......... .......... .......... 82% 146M 0s -2024-04-19T21:15:36Z #15 2.840 104150K .......... .......... .......... .......... .......... 82% 168M 0s -2024-04-19T21:15:36Z #15 2.840 104200K .......... .......... .......... .......... .......... 82% 122M 0s -2024-04-19T21:15:36Z #15 2.840 104250K .......... .......... .......... .......... .......... 82% 161M 0s -2024-04-19T21:15:36Z #15 2.840 104300K .......... .......... .......... .......... .......... 82% 130M 0s -2024-04-19T21:15:36Z #15 2.840 104350K .......... .......... .......... .......... .......... 82% 148M 0s -2024-04-19T21:15:36Z #15 2.840 104400K .......... .......... .......... .......... .......... 82% 107M 0s -2024-04-19T21:15:36Z #15 2.840 104450K .......... .......... .......... .......... .......... 82% 139M 0s -2024-04-19T21:15:36Z #15 2.840 104500K .......... .......... .......... .......... .......... 82% 130M 0s -2024-04-19T21:15:36Z #15 2.840 104550K .......... .......... .......... .......... .......... 82% 159M 0s -2024-04-19T21:15:36Z #15 2.840 104600K .......... .......... .......... .......... .......... 82% 103M 0s -2024-04-19T21:15:36Z #15 2.840 104650K .......... .......... .......... .......... .......... 82% 106M 0s -2024-04-19T21:15:36Z #15 2.841 104700K .......... .......... .......... .......... .......... 82% 139M 0s -2024-04-19T21:15:36Z #15 2.841 104750K .......... .......... .......... .......... .......... 82% 115M 0s -2024-04-19T21:15:36Z #15 2.842 104800K .......... .......... .......... .......... .......... 82% 157M 0s -2024-04-19T21:15:36Z #15 2.842 104850K .......... .......... .......... .......... .......... 82% 141M 0s -2024-04-19T21:15:36Z #15 2.843 104900K .......... .......... .......... .......... .......... 82% 145M 0s -2024-04-19T21:15:36Z #15 2.843 104950K .......... .......... .......... .......... .......... 82% 93.3M 0s -2024-04-19T21:15:36Z #15 2.843 105000K .......... .......... .......... .......... .......... 82% 119M 0s -2024-04-19T21:15:36Z #15 2.844 105050K .......... .......... .......... .......... .......... 82% 140M 0s -2024-04-19T21:15:36Z #15 2.844 105100K .......... .......... .......... .......... .......... 82% 137M 0s -2024-04-19T21:15:36Z #15 2.844 105150K .......... .......... .......... .......... .......... 82% 104M 0s -2024-04-19T21:15:36Z #15 2.845 105200K .......... .......... .......... .......... .......... 83% 111M 0s -2024-04-19T21:15:36Z #15 2.845 105250K .......... .......... .......... .......... .......... 83% 131M 0s -2024-04-19T21:15:36Z #15 2.846 105300K .......... .......... .......... .......... .......... 83% 131M 0s -2024-04-19T21:15:36Z #15 2.846 105350K .......... .......... .......... .......... .......... 83% 108M 0s -2024-04-19T21:15:36Z #15 2.846 105400K .......... .......... .......... .......... .......... 83% 111M 0s -2024-04-19T21:15:36Z #15 2.847 105450K .......... .......... .......... .......... .......... 83% 152M 0s -2024-04-19T21:15:36Z #15 2.847 105500K .......... .......... .......... .......... .......... 83% 110M 0s -2024-04-19T21:15:36Z #15 2.848 105550K .......... .......... .......... .......... .......... 83% 138M 0s -2024-04-19T21:15:36Z #15 2.848 105600K .......... .......... .......... .......... .......... 83% 137M 0s -2024-04-19T21:15:36Z #15 2.848 105650K .......... .......... .......... .......... .......... 83% 148M 0s -2024-04-19T21:15:36Z #15 2.849 105700K .......... .......... .......... .......... .......... 83% 131M 0s -2024-04-19T21:15:36Z #15 2.849 105750K .......... .......... .......... .......... .......... 83% 119M 0s -2024-04-19T21:15:36Z #15 2.850 105800K .......... .......... .......... .......... .......... 83% 129M 0s -2024-04-19T21:15:36Z #15 2.850 105850K .......... .......... .......... .......... .......... 83% 121M 0s -2024-04-19T21:15:36Z #15 2.850 105900K .......... .......... .......... .......... .......... 83% 96.7M 0s -2024-04-19T21:15:36Z #15 2.851 105950K .......... .......... .......... .......... .......... 83% 124M 0s -2024-04-19T21:15:36Z #15 2.851 106000K .......... .......... .......... .......... .......... 83% 119M 0s -2024-04-19T21:15:36Z #15 2.852 106050K .......... .......... .......... .......... .......... 83% 98.8M 0s -2024-04-19T21:15:36Z #15 2.852 106100K .......... .......... .......... .......... .......... 83% 136M 0s -2024-04-19T21:15:36Z #15 2.853 106150K .......... .......... .......... .......... .......... 83% 114M 0s -2024-04-19T21:15:36Z #15 2.853 106200K .......... .......... .......... .......... .......... 83% 129M 0s -2024-04-19T21:15:36Z #15 2.853 106250K .......... .......... .......... .......... .......... 83% 117M 0s -2024-04-19T21:15:36Z #15 2.854 106300K .......... .......... .......... .......... .......... 83% 100M 0s -2024-04-19T21:15:36Z #15 2.859 106350K .......... .......... .......... .......... .......... 83% 111M 0s -2024-04-19T21:15:36Z #15 2.859 106400K .......... .......... .......... .......... .......... 83% 130M 0s -2024-04-19T21:15:36Z #15 2.859 106450K .......... .......... .......... .......... .......... 84% 143M 0s -2024-04-19T21:15:36Z #15 2.859 106500K .......... .......... .......... .......... .......... 84% 165M 0s -2024-04-19T21:15:36Z #15 2.859 106550K .......... .......... .......... .......... .......... 84% 167M 0s -2024-04-19T21:15:36Z #15 2.859 106600K .......... .......... .......... .......... .......... 84% 156M 0s -2024-04-19T21:15:36Z #15 2.859 106650K .......... .......... .......... .......... .......... 84% 125M 0s -2024-04-19T21:15:36Z #15 2.859 106700K .......... .......... .......... .......... .......... 84% 157M 0s -2024-04-19T21:15:36Z #15 2.859 106750K .......... .......... .......... .......... .......... 84% 171M 0s -2024-04-19T21:15:36Z #15 2.859 106800K .......... .......... .......... .......... .......... 84% 147M 0s -2024-04-19T21:15:36Z #15 2.859 106850K .......... .......... .......... .......... .......... 84% 143M 0s -2024-04-19T21:15:36Z #15 2.859 106900K .......... .......... .......... .......... .......... 84% 117M 0s -2024-04-19T21:15:36Z #15 2.859 106950K .......... .......... .......... .......... .......... 84% 123M 0s -2024-04-19T21:15:36Z #15 2.859 107000K .......... .......... .......... .......... .......... 84% 117M 0s -2024-04-19T21:15:36Z #15 2.859 107050K .......... .......... .......... .......... .......... 84% 113M 0s -2024-04-19T21:15:36Z #15 2.859 107100K .......... .......... .......... .......... .......... 84% 124M 0s -2024-04-19T21:15:36Z #15 2.860 107150K .......... .......... .......... .......... .......... 84% 128M 0s -2024-04-19T21:15:36Z #15 2.860 107200K .......... .......... .......... .......... .......... 84% 113M 0s -2024-04-19T21:15:36Z #15 2.861 107250K .......... .......... .......... .......... .......... 84% 129M 0s -2024-04-19T21:15:36Z #15 2.861 107300K .......... .......... .......... .......... .......... 84% 71.6M 0s -2024-04-19T21:15:36Z #15 2.862 107350K .......... .......... .......... .......... .......... 84% 110M 0s -2024-04-19T21:15:36Z #15 2.862 107400K .......... .......... .......... .......... .......... 84% 115M 0s -2024-04-19T21:15:36Z #15 2.866 107450K .......... .......... .......... .......... .......... 84% 47.6M 0s -2024-04-19T21:15:36Z #15 2.866 107500K .......... .......... .......... .......... .......... 84% 152M 0s -2024-04-19T21:15:36Z #15 2.866 107550K .......... .......... .......... .......... .......... 84% 145M 0s -2024-04-19T21:15:36Z #15 2.866 107600K .......... .......... .......... .......... .......... 84% 162M 0s -2024-04-19T21:15:36Z #15 2.866 107650K .......... .......... .......... .......... .......... 84% 146M 0s -2024-04-19T21:15:36Z #15 2.866 107700K .......... .......... .......... .......... .......... 84% 157M 0s -2024-04-19T21:15:36Z #15 2.866 107750K .......... .......... .......... .......... .......... 85% 85.4M 0s -2024-04-19T21:15:36Z #15 2.866 107800K .......... .......... .......... .......... .......... 85% 114M 0s -2024-04-19T21:15:36Z #15 2.866 107850K .......... .......... .......... .......... .......... 85% 48.5M 0s -2024-04-19T21:15:36Z #15 2.868 107900K .......... .......... .......... .......... .......... 85% 66.7M 0s -2024-04-19T21:15:36Z #15 2.868 107950K .......... .......... .......... .......... .......... 85% 128M 0s -2024-04-19T21:15:36Z #15 2.869 108000K .......... .......... .......... .......... .......... 85% 59.6M 0s -2024-04-19T21:15:36Z #15 2.869 108050K .......... .......... .......... .......... .......... 85% 72.4M 0s -2024-04-19T21:15:36Z #15 2.870 108100K .......... .......... .......... .......... .......... 85% 69.6M 0s -2024-04-19T21:15:36Z #15 2.871 108150K .......... .......... .......... .......... .......... 85% 60.6M 0s -2024-04-19T21:15:36Z #15 2.872 108200K .......... .......... .......... .......... .......... 85% 128M 0s -2024-04-19T21:15:36Z #15 2.872 108250K .......... .......... .......... .......... .......... 85% 71.4M 0s -2024-04-19T21:15:36Z #15 2.873 108300K .......... .......... .......... .......... .......... 85% 101M 0s -2024-04-19T21:15:36Z #15 2.873 108350K .......... .......... .......... .......... .......... 85% 58.5M 0s -2024-04-19T21:15:36Z #15 2.874 108400K .......... .......... .......... .......... .......... 85% 118M 0s -2024-04-19T21:15:36Z #15 2.874 108450K .......... .......... .......... .......... .......... 85% 61.7M 0s -2024-04-19T21:15:36Z #15 2.876 108500K .......... .......... .......... .......... .......... 85% 103M 0s -2024-04-19T21:15:36Z #15 2.876 108550K .......... .......... .......... .......... .......... 85% 102M 0s -2024-04-19T21:15:36Z #15 2.876 108600K .......... .......... .......... .......... .......... 85% 78.0M 0s -2024-04-19T21:15:36Z #15 2.877 108650K .......... .......... .......... .......... .......... 85% 96.0M 0s -2024-04-19T21:15:36Z #15 2.877 108700K .......... .......... .......... .......... .......... 85% 95.4M 0s -2024-04-19T21:15:36Z #15 2.878 108750K .......... .......... .......... .......... .......... 85% 109M 0s -2024-04-19T21:15:36Z #15 2.878 108800K .......... .......... .......... .......... .......... 85% 94.6M 0s -2024-04-19T21:15:36Z #15 2.878 108850K .......... .......... .......... .......... .......... 85% 111M 0s -2024-04-19T21:15:36Z #15 2.883 108900K .......... .......... .......... .......... .......... 85% 168M 0s -2024-04-19T21:15:36Z #15 2.883 108950K .......... .......... .......... .......... .......... 85% 162M 0s -2024-04-19T21:15:36Z #15 2.883 109000K .......... .......... .......... .......... .......... 86% 130M 0s -2024-04-19T21:15:36Z #15 2.883 109050K .......... .......... .......... .......... .......... 86% 151M 0s -2024-04-19T21:15:36Z #15 2.883 109100K .......... .......... .......... .......... .......... 86% 181M 0s -2024-04-19T21:15:36Z #15 2.883 109150K .......... .......... .......... .......... .......... 86% 137M 0s -2024-04-19T21:15:36Z #15 2.883 109200K .......... .......... .......... .......... .......... 86% 172M 0s -2024-04-19T21:15:36Z #15 2.883 109250K .......... .......... .......... .......... .......... 86% 119M 0s -2024-04-19T21:15:36Z #15 2.883 109300K .......... .......... .......... .......... .......... 86% 159M 0s -2024-04-19T21:15:36Z #15 2.883 109350K .......... .......... .......... .......... .......... 86% 148M 0s -2024-04-19T21:15:36Z #15 2.883 109400K .......... .......... .......... .......... .......... 86% 153M 0s -2024-04-19T21:15:36Z #15 2.883 109450K .......... .......... .......... .......... .......... 86% 114M 0s -2024-04-19T21:15:36Z #15 2.883 109500K .......... .......... .......... .......... .......... 86% 72.6M 0s -2024-04-19T21:15:36Z #15 2.885 109550K .......... .......... .......... .......... .......... 86% 97.6M 0s -2024-04-19T21:15:36Z #15 2.885 109600K .......... .......... .......... .......... .......... 86% 145M 0s -2024-04-19T21:15:36Z #15 2.885 109650K .......... .......... .......... .......... .......... 86% 127M 0s -2024-04-19T21:15:36Z #15 2.885 109700K .......... .......... .......... .......... .......... 86% 95.1M 0s -2024-04-19T21:15:36Z #15 2.886 109750K .......... .......... .......... .......... .......... 86% 71.2M 0s -2024-04-19T21:15:36Z #15 2.886 109800K .......... .......... .......... .......... .......... 86% 56.5M 0s -2024-04-19T21:15:36Z #15 2.887 109850K .......... .......... .......... .......... .......... 86% 113M 0s -2024-04-19T21:15:36Z #15 2.888 109900K .......... .......... .......... .......... .......... 86% 55.7M 0s -2024-04-19T21:15:36Z #15 2.888 109950K .......... .......... .......... .......... .......... 86% 89.8M 0s -2024-04-19T21:15:36Z #15 2.889 110000K .......... .......... .......... .......... .......... 86% 126M 0s -2024-04-19T21:15:36Z #15 2.889 110050K .......... .......... .......... .......... .......... 86% 126M 0s -2024-04-19T21:15:36Z #15 2.895 110100K .......... .......... .......... .......... .......... 86% 116M 0s -2024-04-19T21:15:36Z #15 2.895 110150K .......... .......... .......... .......... .......... 86% 160M 0s -2024-04-19T21:15:36Z #15 2.895 110200K .......... .......... .......... .......... .......... 86% 149M 0s -2024-04-19T21:15:36Z #15 2.895 110250K .......... .......... .......... .......... .......... 86% 137M 0s -2024-04-19T21:15:36Z #15 2.895 110300K .......... .......... .......... .......... .......... 87% 161M 0s -2024-04-19T21:15:36Z #15 2.895 110350K .......... .......... .......... .......... .......... 87% 169M 0s -2024-04-19T21:15:36Z #15 2.895 110400K .......... .......... .......... .......... .......... 87% 132M 0s -2024-04-19T21:15:36Z #15 2.895 110450K .......... .......... .......... .......... .......... 87% 144M 0s -2024-04-19T21:15:36Z #15 2.895 110500K .......... .......... .......... .......... .......... 87% 147M 0s -2024-04-19T21:15:36Z #15 2.895 110550K .......... .......... .......... .......... .......... 87% 153M 0s -2024-04-19T21:15:36Z #15 2.895 110600K .......... .......... .......... .......... .......... 87% 137M 0s -2024-04-19T21:15:36Z #15 2.895 110650K .......... .......... .......... .......... .......... 87% 171M 0s -2024-04-19T21:15:36Z #15 2.895 110700K .......... .......... .......... .......... .......... 87% 149M 0s -2024-04-19T21:15:36Z #15 2.895 110750K .......... .......... .......... .......... .......... 87% 149M 0s -2024-04-19T21:15:36Z #15 2.895 110800K .......... .......... .......... .......... .......... 87% 135M 0s -2024-04-19T21:15:36Z #15 2.895 110850K .......... .......... .......... .......... .......... 87% 32.1M 0s -2024-04-19T21:15:36Z #15 2.897 110900K .......... .......... .......... .......... .......... 87% 121M 0s -2024-04-19T21:15:36Z #15 2.897 110950K .......... .......... .......... .......... .......... 87% 74.9M 0s -2024-04-19T21:15:36Z #15 2.898 111000K .......... .......... .......... .......... .......... 87% 58.2M 0s -2024-04-19T21:15:36Z #15 2.899 111050K .......... .......... .......... .......... .......... 87% 117M 0s -2024-04-19T21:15:36Z #15 2.899 111100K .......... .......... .......... .......... .......... 87% 115M 0s -2024-04-19T21:15:36Z #15 2.899 111150K .......... .......... .......... .......... .......... 87% 57.3M 0s -2024-04-19T21:15:36Z #15 2.901 111200K .......... .......... .......... .......... .......... 87% 68.3M 0s -2024-04-19T21:15:36Z #15 2.901 111250K .......... .......... .......... .......... .......... 87% 130M 0s -2024-04-19T21:15:36Z #15 2.901 111300K .......... .......... .......... .......... .......... 87% 61.1M 0s -2024-04-19T21:15:36Z #15 2.903 111350K .......... .......... .......... .......... .......... 87% 61.9M 0s -2024-04-19T21:15:36Z #15 2.903 111400K .......... .......... .......... .......... .......... 87% 61.1M 0s -2024-04-19T21:15:36Z #15 2.904 111450K .......... .......... .......... .......... .......... 87% 107M 0s -2024-04-19T21:15:36Z #15 2.904 111500K .......... .......... .......... .......... .......... 87% 119M 0s -2024-04-19T21:15:36Z #15 2.904 111550K .......... .......... .......... .......... .......... 88% 68.1M 0s -2024-04-19T21:15:36Z #15 2.905 111600K .......... .......... .......... .......... .......... 88% 64.2M 0s -2024-04-19T21:15:36Z #15 2.906 111650K .......... .......... .......... .......... .......... 88% 59.2M 0s -2024-04-19T21:15:36Z #15 2.907 111700K .......... .......... .......... .......... .......... 88% 48.9M 0s -2024-04-19T21:15:36Z #15 2.908 111750K .......... .......... .......... .......... .......... 88% 67.7M 0s -2024-04-19T21:15:36Z #15 2.909 111800K .......... .......... .......... .......... .......... 88% 124M 0s -2024-04-19T21:15:36Z #15 2.909 111850K .......... .......... .......... .......... .......... 88% 45.2M 0s -2024-04-19T21:15:36Z #15 2.910 111900K .......... .......... .......... .......... .......... 88% 114M 0s -2024-04-19T21:15:36Z #15 2.910 111950K .......... .......... .......... .......... .......... 88% 28.3M 0s -2024-04-19T21:15:36Z #15 2.912 112000K .......... .......... .......... .......... .......... 88% 64.3M 0s -2024-04-19T21:15:36Z #15 2.913 112050K .......... .......... .......... .......... .......... 88% 42.5M 0s -2024-04-19T21:15:36Z #15 2.914 112100K .......... .......... .......... .......... .......... 88% 37.5M 0s -2024-04-19T21:15:36Z #15 2.916 112150K .......... .......... .......... .......... .......... 88% 126M 0s -2024-04-19T21:15:36Z #15 2.916 112200K .......... .......... .......... .......... .......... 88% 32.2M 0s -2024-04-19T21:15:36Z #15 2.917 112250K .......... .......... .......... .......... .......... 88% 54.8M 0s -2024-04-19T21:15:36Z #15 2.918 112300K .......... .......... .......... .......... .......... 88% 50.5M 0s -2024-04-19T21:15:36Z #15 2.919 112350K .......... .......... .......... .......... .......... 88% 85.5M 0s -2024-04-19T21:15:36Z #15 2.921 112400K .......... .......... .......... .......... .......... 88% 76.6M 0s -2024-04-19T21:15:36Z #15 2.921 112450K .......... .......... .......... .......... .......... 88% 95.3M 0s -2024-04-19T21:15:36Z #15 2.921 112500K .......... .......... .......... .......... .......... 88% 68.1M 0s -2024-04-19T21:15:36Z #15 2.921 112550K .......... .......... .......... .......... .......... 88% 60.9M 0s -2024-04-19T21:15:36Z #15 2.922 112600K .......... .......... .......... .......... .......... 88% 78.1M 0s -2024-04-19T21:15:36Z #15 2.923 112650K .......... .......... .......... .......... .......... 88% 84.3M 0s -2024-04-19T21:15:36Z #15 2.923 112700K .......... .......... .......... .......... .......... 88% 58.7M 0s -2024-04-19T21:15:36Z #15 2.924 112750K .......... .......... .......... .......... .......... 88% 85.6M 0s -2024-04-19T21:15:36Z #15 2.925 112800K .......... .......... .......... .......... .......... 89% 69.7M 0s -2024-04-19T21:15:36Z #15 2.925 112850K .......... .......... .......... .......... .......... 89% 91.1M 0s -2024-04-19T21:15:36Z #15 2.926 112900K .......... .......... .......... .......... .......... 89% 74.5M 0s -2024-04-19T21:15:36Z #15 2.928 112950K .......... .......... .......... .......... .......... 89% 98.4M 0s -2024-04-19T21:15:36Z #15 2.929 113000K .......... .......... .......... .......... .......... 89% 178M 0s -2024-04-19T21:15:36Z #15 2.929 113050K .......... .......... .......... .......... .......... 89% 119M 0s -2024-04-19T21:15:36Z #15 2.929 113100K .......... .......... .......... .......... .......... 89% 145M 0s -2024-04-19T21:15:36Z #15 2.929 113150K .......... .......... .......... .......... .......... 89% 69.8M 0s -2024-04-19T21:15:36Z #15 2.929 113200K .......... .......... .......... .......... .......... 89% 111M 0s -2024-04-19T21:15:36Z #15 2.929 113250K .......... .......... .......... .......... .......... 89% 70.6M 0s -2024-04-19T21:15:36Z #15 2.930 113300K .......... .......... .......... .......... .......... 89% 113M 0s -2024-04-19T21:15:36Z #15 2.932 113350K .......... .......... .......... .......... .......... 89% 58.6M 0s -2024-04-19T21:15:36Z #15 2.932 113400K .......... .......... .......... .......... .......... 89% 120M 0s -2024-04-19T21:15:36Z #15 2.932 113450K .......... .......... .......... .......... .......... 89% 112M 0s -2024-04-19T21:15:36Z #15 2.932 113500K .......... .......... .......... .......... .......... 89% 121M 0s -2024-04-19T21:15:36Z #15 2.934 113550K .......... .......... .......... .......... .......... 89% 70.4M 0s -2024-04-19T21:15:36Z #15 2.934 113600K .......... .......... .......... .......... .......... 89% 115M 0s -2024-04-19T21:15:36Z #15 2.934 113650K .......... .......... .......... .......... .......... 89% 110M 0s -2024-04-19T21:15:36Z #15 2.934 113700K .......... .......... .......... .......... .......... 89% 21.9M 0s -2024-04-19T21:15:36Z #15 2.937 113750K .......... .......... .......... .......... .......... 89% 37.7M 0s -2024-04-19T21:15:36Z #15 2.938 113800K .......... .......... .......... .......... .......... 89% 57.9M 0s -2024-04-19T21:15:36Z #15 2.939 113850K .......... .......... .......... .......... .......... 89% 22.3M 0s -2024-04-19T21:15:36Z #15 2.941 113900K .......... .......... .......... .......... .......... 89% 118M 0s -2024-04-19T21:15:36Z #15 2.941 113950K .......... .......... .......... .......... .......... 89% 37.1M 0s -2024-04-19T21:15:36Z #15 2.942 114000K .......... .......... .......... .......... .......... 89% 105M 0s -2024-04-19T21:15:36Z #15 2.942 114050K .......... .......... .......... .......... .......... 89% 112M 0s -2024-04-19T21:15:36Z #15 2.943 114100K .......... .......... .......... .......... .......... 90% 102M 0s -2024-04-19T21:15:36Z #15 2.943 114150K .......... .......... .......... .......... .......... 90% 118M 0s -2024-04-19T21:15:36Z #15 2.944 114200K .......... .......... .......... .......... .......... 90% 123M 0s -2024-04-19T21:15:36Z #15 2.944 114250K .......... .......... .......... .......... .......... 90% 132M 0s -2024-04-19T21:15:36Z #15 2.945 114300K .......... .......... .......... .......... .......... 90% 114M 0s -2024-04-19T21:15:36Z #15 2.945 114350K .......... .......... .......... .......... .......... 90% 111M 0s -2024-04-19T21:15:36Z #15 2.946 114400K .......... .......... .......... .......... .......... 90% 98.6M 0s -2024-04-19T21:15:36Z #15 2.946 114450K .......... .......... .......... .......... .......... 90% 141M 0s -2024-04-19T21:15:36Z #15 2.946 114500K .......... .......... .......... .......... .......... 90% 56.2M 0s -2024-04-19T21:15:36Z #15 2.950 114550K .......... .......... .......... .......... .......... 90% 156M 0s -2024-04-19T21:15:36Z #15 2.950 114600K .......... .......... .......... .......... .......... 90% 137M 0s -2024-04-19T21:15:36Z #15 2.950 114650K .......... .......... .......... .......... .......... 90% 176M 0s -2024-04-19T21:15:36Z #15 2.950 114700K .......... .......... .......... .......... .......... 90% 143M 0s -2024-04-19T21:15:36Z #15 2.950 114750K .......... .......... .......... .......... .......... 90% 161M 0s -2024-04-19T21:15:36Z #15 2.950 114800K .......... .......... .......... .......... .......... 90% 119M 0s -2024-04-19T21:15:36Z #15 2.950 114850K .......... .......... .......... .......... .......... 90% 159M 0s -2024-04-19T21:15:36Z #15 2.950 114900K .......... .......... .......... .......... .......... 90% 170M 0s -2024-04-19T21:15:36Z #15 2.950 114950K .......... .......... .......... .......... .......... 90% 138M 0s -2024-04-19T21:15:36Z #15 2.950 115000K .......... .......... .......... .......... .......... 90% 101M 0s -2024-04-19T21:15:36Z #15 2.953 115050K .......... .......... .......... .......... .......... 90% 11.8M 0s -2024-04-19T21:15:36Z #15 2.955 115100K .......... .......... .......... .......... .......... 90% 24.7M 0s -2024-04-19T21:15:36Z #15 2.957 115150K .......... .......... .......... .......... .......... 90% 58.3M 0s -2024-04-19T21:15:36Z #15 2.958 115200K .......... .......... .......... .......... .......... 90% 33.8M 0s -2024-04-19T21:15:36Z #15 2.959 115250K .......... .......... .......... .......... .......... 90% 54.3M 0s -2024-04-19T21:15:36Z #15 2.960 115300K .......... .......... .......... .......... .......... 90% 38.4M 0s -2024-04-19T21:15:36Z #15 2.963 115350K .......... .......... .......... .......... .......... 91% 87.7M 0s -2024-04-19T21:15:36Z #15 2.963 115400K .......... .......... .......... .......... .......... 91% 159M 0s -2024-04-19T21:15:36Z #15 2.963 115450K .......... .......... .......... .......... .......... 91% 153M 0s -2024-04-19T21:15:36Z #15 2.963 115500K .......... .......... .......... .......... .......... 91% 28.1M 0s -2024-04-19T21:15:36Z #15 2.964 115550K .......... .......... .......... .......... .......... 91% 44.6M 0s -2024-04-19T21:15:36Z #15 2.971 115600K .......... .......... .......... .......... .......... 91% 152M 0s -2024-04-19T21:15:36Z #15 2.971 115650K .......... .......... .......... .......... .......... 91% 93.7M 0s -2024-04-19T21:15:36Z #15 2.971 115700K .......... .......... .......... .......... .......... 91% 160M 0s -2024-04-19T21:15:36Z #15 2.971 115750K .......... .......... .......... .......... .......... 91% 157M 0s -2024-04-19T21:15:36Z #15 2.971 115800K .......... .......... .......... .......... .......... 91% 84.1M 0s -2024-04-19T21:15:36Z #15 2.971 115850K .......... .......... .......... .......... .......... 91% 142M 0s -2024-04-19T21:15:36Z #15 2.971 115900K .......... .......... .......... .......... .......... 91% 150M 0s -2024-04-19T21:15:36Z #15 2.971 115950K .......... .......... .......... .......... .......... 91% 76.7M 0s -2024-04-19T21:15:36Z #15 2.971 116000K .......... .......... .......... .......... .......... 91% 155M 0s -2024-04-19T21:15:36Z #15 2.971 116050K .......... .......... .......... .......... .......... 91% 124M 0s -2024-04-19T21:15:36Z #15 2.971 116100K .......... .......... .......... .......... .......... 91% 79.3M 0s -2024-04-19T21:15:36Z #15 2.971 116150K .......... .......... .......... .......... .......... 91% 170M 0s -2024-04-19T21:15:36Z #15 2.971 116200K .......... .......... .......... .......... .......... 91% 159M 0s -2024-04-19T21:15:36Z #15 2.971 116250K .......... .......... .......... .......... .......... 91% 8.47M 0s -2024-04-19T21:15:36Z #15 2.976 116300K .......... .......... .......... .......... .......... 91% 19.5M 0s -2024-04-19T21:15:36Z #15 2.981 116350K .......... .......... .......... .......... .......... 91% 173M 0s -2024-04-19T21:15:36Z #15 2.981 116400K .......... .......... .......... .......... .......... 91% 171M 0s -2024-04-19T21:15:36Z #15 2.981 116450K .......... .......... .......... .......... .......... 91% 132M 0s -2024-04-19T21:15:36Z #15 2.981 116500K .......... .......... .......... .......... .......... 91% 68.4M 0s -2024-04-19T21:15:36Z #15 2.981 116550K .......... .......... .......... .......... .......... 91% 14.6M 0s -2024-04-19T21:15:36Z #15 2.984 116600K .......... .......... .......... .......... .......... 92% 21.9M 0s -2024-04-19T21:15:36Z #15 2.987 116650K .......... .......... .......... .......... .......... 92% 21.5M 0s -2024-04-19T21:15:36Z #15 2.988 116700K .......... .......... .......... .......... .......... 92% 26.6M 0s -2024-04-19T21:15:36Z #15 2.990 116750K .......... .......... .......... .......... .......... 92% 67.0M 0s -2024-04-19T21:15:36Z #15 2.991 116800K .......... .......... .......... .......... .......... 92% 21.8M 0s -2024-04-19T21:15:36Z #15 2.993 116850K .......... .......... .......... .......... .......... 92% 28.2M 0s -2024-04-19T21:15:36Z #15 2.995 116900K .......... .......... .......... .......... .......... 92% 61.5M 0s -2024-04-19T21:15:36Z #15 2.999 116950K .......... .......... .......... .......... .......... 92% 105M 0s -2024-04-19T21:15:36Z #15 2.999 117000K .......... .......... .......... .......... .......... 92% 55.9M 0s -2024-04-19T21:15:36Z #15 2.999 117050K .......... .......... .......... .......... .......... 92% 125M 0s -2024-04-19T21:15:36Z #15 2.999 117100K .......... .......... .......... .......... .......... 92% 101M 0s -2024-04-19T21:15:36Z #15 2.999 117150K .......... .......... .......... .......... .......... 92% 73.8M 0s -2024-04-19T21:15:36Z #15 2.999 117200K .......... .......... .......... .......... .......... 92% 15.7M 0s -2024-04-19T21:15:36Z #15 3.002 117250K .......... .......... .......... .......... .......... 92% 16.8M 0s -2024-04-19T21:15:36Z #15 3.007 117300K .......... .......... .......... .......... .......... 92% 121M 0s -2024-04-19T21:15:36Z #15 3.007 117350K .......... .......... .......... .......... .......... 92% 136M 0s -2024-04-19T21:15:36Z #15 3.007 117400K .......... .......... .......... .......... .......... 92% 95.2M 0s -2024-04-19T21:15:36Z #15 3.007 117450K .......... .......... .......... .......... .......... 92% 78.2M 0s -2024-04-19T21:15:36Z #15 3.007 117500K .......... .......... .......... .......... .......... 92% 42.5M 0s -2024-04-19T21:15:36Z #15 3.008 117550K .......... .......... .......... .......... .......... 92% 21.1M 0s -2024-04-19T21:15:36Z #15 3.010 117600K .......... .......... .......... .......... .......... 92% 23.4M 0s -2024-04-19T21:15:36Z #15 3.012 117650K .......... .......... .......... .......... .......... 92% 26.9M 0s -2024-04-19T21:15:36Z #15 3.019 117700K .......... .......... .......... .......... .......... 92% 39.8M 0s -2024-04-19T21:15:36Z #15 3.019 117750K .......... .......... .......... .......... .......... 92% 51.4M 0s -2024-04-19T21:15:36Z #15 3.019 117800K .......... .......... .......... .......... .......... 92% 28.9M 0s -2024-04-19T21:15:36Z #15 3.019 117850K .......... .......... .......... .......... .......... 92% 48.4M 0s -2024-04-19T21:15:36Z #15 3.019 117900K .......... .......... .......... .......... .......... 93% 31.9M 0s -2024-04-19T21:15:36Z #15 3.020 117950K .......... .......... .......... .......... .......... 93% 21.7M 0s -2024-04-19T21:15:36Z #15 3.023 118000K .......... .......... .......... .......... .......... 93% 45.8M 0s -2024-04-19T21:15:36Z #15 3.024 118050K .......... .......... .......... .......... .......... 93% 90.7M 0s -2024-04-19T21:15:36Z #15 3.025 118100K .......... .......... .......... .......... .......... 93% 24.6M 0s -2024-04-19T21:15:36Z #15 3.026 118150K .......... .......... .......... .......... .......... 93% 42.3M 0s -2024-04-19T21:15:36Z #15 3.027 118200K .......... .......... .......... .......... .......... 93% 25.6M 0s -2024-04-19T21:15:36Z #15 3.029 118250K .......... .......... .......... .......... .......... 93% 24.5M 0s -2024-04-19T21:15:36Z #15 3.031 118300K .......... .......... .......... .......... .......... 93% 37.1M 0s -2024-04-19T21:15:36Z #15 3.033 118350K .......... .......... .......... .......... .......... 93% 67.6M 0s -2024-04-19T21:15:36Z #15 3.033 118400K .......... .......... .......... .......... .......... 93% 69.8M 0s -2024-04-19T21:15:36Z #15 3.034 118450K .......... .......... .......... .......... .......... 93% 57.0M 0s -2024-04-19T21:15:36Z #15 3.035 118500K .......... .......... .......... .......... .......... 93% 22.8M 0s -2024-04-19T21:15:36Z #15 3.039 118550K .......... .......... .......... .......... .......... 93% 59.6M 0s -2024-04-19T21:15:36Z #15 3.039 118600K .......... .......... .......... .......... .......... 93% 154M 0s -2024-04-19T21:15:36Z #15 3.039 118650K .......... .......... .......... .......... .......... 93% 47.2M 0s -2024-04-19T21:15:36Z #15 3.039 118700K .......... .......... .......... .......... .......... 93% 18.5M 0s -2024-04-19T21:15:36Z #15 3.042 118750K .......... .......... .......... .......... .......... 93% 34.7M 0s -2024-04-19T21:15:36Z #15 3.047 118800K .......... .......... .......... .......... .......... 93% 159M 0s -2024-04-19T21:15:36Z #15 3.047 118850K .......... .......... .......... .......... .......... 93% 55.5M 0s -2024-04-19T21:15:36Z #15 3.047 118900K .......... .......... .......... .......... .......... 93% 116M 0s -2024-04-19T21:15:36Z #15 3.047 118950K .......... .......... .......... .......... .......... 93% 126M 0s -2024-04-19T21:15:36Z #15 3.047 119000K .......... .......... .......... .......... .......... 93% 108M 0s -2024-04-19T21:15:36Z #15 3.047 119050K .......... .......... .......... .......... .......... 93% 53.6M 0s -2024-04-19T21:15:36Z #15 3.047 119100K .......... .......... .......... .......... .......... 93% 98.1M 0s -2024-04-19T21:15:36Z #15 3.048 119150K .......... .......... .......... .......... .......... 94% 21.3M 0s -2024-04-19T21:15:36Z #15 3.049 119200K .......... .......... .......... .......... .......... 94% 38.1M 0s -2024-04-19T21:15:36Z #15 3.051 119250K .......... .......... .......... .......... .......... 94% 25.2M 0s -2024-04-19T21:15:36Z #15 3.052 119300K .......... .......... .......... .......... .......... 94% 21.7M 0s -2024-04-19T21:15:36Z #15 3.055 119350K .......... .......... .......... .......... .......... 94% 27.6M 0s -2024-04-19T21:15:36Z #15 3.057 119400K .......... .......... .......... .......... .......... 94% 28.5M 0s -2024-04-19T21:15:36Z #15 3.059 119450K .......... .......... .......... .......... .......... 94% 21.7M 0s -2024-04-19T21:15:36Z #15 3.061 119500K .......... .......... .......... .......... .......... 94% 20.2M 0s -2024-04-19T21:15:36Z #15 3.063 119550K .......... .......... .......... .......... .......... 94% 30.9M 0s -2024-04-19T21:15:36Z #15 3.065 119600K .......... .......... .......... .......... .......... 94% 24.3M 0s -2024-04-19T21:15:36Z #15 3.067 119650K .......... .......... .......... .......... .......... 94% 24.0M 0s -2024-04-19T21:15:36Z #15 3.069 119700K .......... .......... .......... .......... .......... 94% 24.4M 0s -2024-04-19T21:15:36Z #15 3.070 119750K .......... .......... .......... .......... .......... 94% 27.5M 0s -2024-04-19T21:15:36Z #15 3.072 119800K .......... .......... .......... .......... .......... 94% 48.8M 0s -2024-04-19T21:15:36Z #15 3.073 119850K .......... .......... .......... .......... .......... 94% 17.6M 0s -2024-04-19T21:15:36Z #15 3.077 119900K .......... .......... .......... .......... .......... 94% 41.4M 0s -2024-04-19T21:15:36Z #15 3.077 119950K .......... .......... .......... .......... .......... 94% 30.4M 0s -2024-04-19T21:15:36Z #15 3.079 120000K .......... .......... .......... .......... .......... 94% 159M 0s -2024-04-19T21:15:36Z #15 3.079 120050K .......... .......... .......... .......... .......... 94% 125M 0s -2024-04-19T21:15:36Z #15 3.079 120100K .......... .......... .......... .......... .......... 94% 39.1M 0s -2024-04-19T21:15:36Z #15 3.081 120150K .......... .......... .......... .......... .......... 94% 72.7M 0s -2024-04-19T21:15:36Z #15 3.081 120200K .......... .......... .......... .......... .......... 94% 57.7M 0s -2024-04-19T21:15:36Z #15 3.082 120250K .......... .......... .......... .......... .......... 94% 40.8M 0s -2024-04-19T21:15:36Z #15 3.083 120300K .......... .......... .......... .......... .......... 94% 70.5M 0s -2024-04-19T21:15:36Z #15 3.084 120350K .......... .......... .......... .......... .......... 94% 70.6M 0s -2024-04-19T21:15:36Z #15 3.085 120400K .......... .......... .......... .......... .......... 95% 36.1M 0s -2024-04-19T21:15:36Z #15 3.086 120450K .......... .......... .......... .......... .......... 95% 67.2M 0s -2024-04-19T21:15:36Z #15 3.087 120500K .......... .......... .......... .......... .......... 95% 87.5M 0s -2024-04-19T21:15:36Z #15 3.088 120550K .......... .......... .......... .......... .......... 95% 148M 0s -2024-04-19T21:15:36Z #15 3.088 120600K .......... .......... .......... .......... .......... 95% 48.9M 0s -2024-04-19T21:15:36Z #15 3.089 120650K .......... .......... .......... .......... .......... 95% 152M 0s -2024-04-19T21:15:36Z #15 3.089 120700K .......... .......... .......... .......... .......... 95% 155M 0s -2024-04-19T21:15:36Z #15 3.089 120750K .......... .......... .......... .......... .......... 95% 120M 0s -2024-04-19T21:15:36Z #15 3.090 120800K .......... .......... .......... .......... .......... 95% 54.9M 0s -2024-04-19T21:15:36Z #15 3.091 120850K .......... .......... .......... .......... .......... 95% 116M 0s -2024-04-19T21:15:36Z #15 3.091 120900K .......... .......... .......... .......... .......... 95% 165M 0s -2024-04-19T21:15:36Z #15 3.091 120950K .......... .......... .......... .......... .......... 95% 132M 0s -2024-04-19T21:15:36Z #15 3.092 121000K .......... .......... .......... .......... .......... 95% 68.0M 0s -2024-04-19T21:15:36Z #15 3.093 121050K .......... .......... .......... .......... .......... 95% 99.0M 0s -2024-04-19T21:15:36Z #15 3.093 121100K .......... .......... .......... .......... .......... 95% 72.5M 0s -2024-04-19T21:15:36Z #15 3.094 121150K .......... .......... .......... .......... .......... 95% 128M 0s -2024-04-19T21:15:36Z #15 3.094 121200K .......... .......... .......... .......... .......... 95% 142M 0s -2024-04-19T21:15:36Z #15 3.095 121250K .......... .......... .......... .......... .......... 95% 58.1M 0s -2024-04-19T21:15:36Z #15 3.095 121300K .......... .......... .......... .......... .......... 95% 163M 0s -2024-04-19T21:15:36Z #15 3.096 121350K .......... .......... .......... .......... .......... 95% 65.5M 0s -2024-04-19T21:15:36Z #15 3.096 121400K .......... .......... .......... .......... .......... 95% 78.1M 0s -2024-04-19T21:15:36Z #15 3.097 121450K .......... .......... .......... .......... .......... 95% 117M 0s -2024-04-19T21:15:36Z #15 3.097 121500K .......... .......... .......... .......... .......... 95% 90.3M 0s -2024-04-19T21:15:36Z #15 3.098 121550K .......... .......... .......... .......... .......... 95% 162M 0s -2024-04-19T21:15:36Z #15 3.098 121600K .......... .......... .......... .......... .......... 95% 120M 0s -2024-04-19T21:15:36Z #15 3.098 121650K .......... .......... .......... .......... .......... 95% 65.0M 0s -2024-04-19T21:15:36Z #15 3.099 121700K .......... .......... .......... .......... .......... 96% 122M 0s -2024-04-19T21:15:36Z #15 3.100 121750K .......... .......... .......... .......... .......... 96% 136M 0s -2024-04-19T21:15:36Z #15 3.100 121800K .......... .......... .......... .......... .......... 96% 94.0M 0s -2024-04-19T21:15:36Z #15 3.100 121850K .......... .......... .......... .......... .......... 96% 89.6M 0s -2024-04-19T21:15:36Z #15 3.101 121900K .......... .......... .......... .......... .......... 96% 109M 0s -2024-04-19T21:15:36Z #15 3.101 121950K .......... .......... .......... .......... .......... 96% 131M 0s -2024-04-19T21:15:36Z #15 3.102 122000K .......... .......... .......... .......... .......... 96% 66.8M 0s -2024-04-19T21:15:36Z #15 3.103 122050K .......... .......... .......... .......... .......... 96% 104M 0s -2024-04-19T21:15:36Z #15 3.103 122100K .......... .......... .......... .......... .......... 96% 151M 0s -2024-04-19T21:15:36Z #15 3.103 122150K .......... .......... .......... .......... .......... 96% 113M 0s -2024-04-19T21:15:36Z #15 3.104 122200K .......... .......... .......... .......... .......... 96% 71.4M 0s -2024-04-19T21:15:36Z #15 3.104 122250K .......... .......... .......... .......... .......... 96% 141M 0s -2024-04-19T21:15:36Z #15 3.105 122300K .......... .......... .......... .......... .......... 96% 131M 0s -2024-04-19T21:15:36Z #15 3.105 122350K .......... .......... .......... .......... .......... 96% 97.6M 0s -2024-04-19T21:15:36Z #15 3.106 122400K .......... .......... .......... .......... .......... 96% 47.7M 0s -2024-04-19T21:15:36Z #15 3.107 122450K .......... .......... .......... .......... .......... 96% 93.0M 0s -2024-04-19T21:15:36Z #15 3.108 122500K .......... .......... .......... .......... .......... 96% 43.3M 0s -2024-04-19T21:15:36Z #15 3.108 122550K .......... .......... .......... .......... .......... 96% 101M 0s -2024-04-19T21:15:36Z #15 3.109 122600K .......... .......... .......... .......... .......... 96% 45.3M 0s -2024-04-19T21:15:36Z #15 3.110 122650K .......... .......... .......... .......... .......... 96% 51.9M 0s -2024-04-19T21:15:36Z #15 3.111 122700K .......... .......... .......... .......... .......... 96% 67.3M 0s -2024-04-19T21:15:36Z #15 3.112 122750K .......... .......... .......... .......... .......... 96% 74.9M 0s -2024-04-19T21:15:36Z #15 3.112 122800K .......... .......... .......... .......... .......... 96% 47.7M 0s -2024-04-19T21:15:36Z #15 3.113 122850K .......... .......... .......... .......... .......... 96% 51.9M 0s -2024-04-19T21:15:36Z #15 3.114 122900K .......... .......... .......... .......... .......... 96% 55.4M 0s -2024-04-19T21:15:36Z #15 3.116 122950K .......... .......... .......... .......... .......... 97% 95.5M 0s -2024-04-19T21:15:36Z #15 3.116 123000K .......... .......... .......... .......... .......... 97% 38.7M 0s -2024-04-19T21:15:36Z #15 3.117 123050K .......... .......... .......... .......... .......... 97% 87.0M 0s -2024-04-19T21:15:36Z #15 3.118 123100K .......... .......... .......... .......... .......... 97% 74.7M 0s -2024-04-19T21:15:36Z #15 3.118 123150K .......... .......... .......... .......... .......... 97% 5.54M 0s -2024-04-19T21:15:36Z #15 3.127 123200K .......... .......... .......... .......... .......... 97% 121M 0s -2024-04-19T21:15:36Z #15 3.127 123250K .......... .......... .......... .......... .......... 97% 114M 0s -2024-04-19T21:15:36Z #15 3.128 123300K .......... .......... .......... .......... .......... 97% 70.7M 0s -2024-04-19T21:15:36Z #15 3.129 123350K .......... .......... .......... .......... .......... 97% 91.0M 0s -2024-04-19T21:15:36Z #15 3.129 123400K .......... .......... .......... .......... .......... 97% 109M 0s -2024-04-19T21:15:36Z #15 3.130 123450K .......... .......... .......... .......... .......... 97% 76.7M 0s -2024-04-19T21:15:36Z #15 3.130 123500K .......... .......... .......... .......... .......... 97% 90.5M 0s -2024-04-19T21:15:36Z #15 3.131 123550K .......... .......... .......... .......... .......... 97% 115M 0s -2024-04-19T21:15:36Z #15 3.131 123600K .......... .......... .......... .......... .......... 97% 71.3M 0s -2024-04-19T21:15:36Z #15 3.132 123650K .......... .......... .......... .......... .......... 97% 83.2M 0s -2024-04-19T21:15:36Z #15 3.132 123700K .......... .......... .......... .......... .......... 97% 103M 0s -2024-04-19T21:15:36Z #15 3.133 123750K .......... .......... .......... .......... .......... 97% 112M 0s -2024-04-19T21:15:36Z #15 3.133 123800K .......... .......... .......... .......... .......... 97% 69.1M 0s -2024-04-19T21:15:36Z #15 3.134 123850K .......... .......... .......... .......... .......... 97% 129M 0s -2024-04-19T21:15:36Z #15 3.134 123900K .......... .......... .......... .......... .......... 97% 44.9M 0s -2024-04-19T21:15:36Z #15 3.136 123950K .......... .......... .......... .......... .......... 97% 125M 0s -2024-04-19T21:15:36Z #15 3.136 124000K .......... .......... .......... .......... .......... 97% 121M 0s -2024-04-19T21:15:36Z #15 3.136 124050K .......... .......... .......... .......... .......... 97% 77.1M 0s -2024-04-19T21:15:36Z #15 3.137 124100K .......... .......... .......... .......... .......... 97% 8.02M 0s -2024-04-19T21:15:36Z #15 3.143 124150K .......... .......... .......... .......... .......... 97% 121M 0s -2024-04-19T21:15:36Z #15 3.143 124200K .......... .......... .......... .......... .......... 98% 79.5M 0s -2024-04-19T21:15:36Z #15 3.144 124250K .......... .......... .......... .......... .......... 98% 105M 0s -2024-04-19T21:15:36Z #15 3.144 124300K .......... .......... .......... .......... .......... 98% 79.6M 0s -2024-04-19T21:15:36Z #15 3.145 124350K .......... .......... .......... .......... .......... 98% 122M 0s -2024-04-19T21:15:36Z #15 3.145 124400K .......... .......... .......... .......... .......... 98% 101M 0s -2024-04-19T21:15:36Z #15 3.146 124450K .......... .......... .......... .......... .......... 98% 81.0M 0s -2024-04-19T21:15:36Z #15 3.147 124500K .......... .......... .......... .......... .......... 98% 108M 0s -2024-04-19T21:15:36Z #15 3.147 124550K .......... .......... .......... .......... .......... 98% 109M 0s -2024-04-19T21:15:36Z #15 3.147 124600K .......... .......... .......... .......... .......... 98% 60.5M 0s -2024-04-19T21:15:36Z #15 3.148 124650K .......... .......... .......... .......... .......... 98% 120M 0s -2024-04-19T21:15:36Z #15 3.149 124700K .......... .......... .......... .......... .......... 98% 86.3M 0s -2024-04-19T21:15:36Z #15 3.149 124750K .......... .......... .......... .......... .......... 98% 119M 0s -2024-04-19T21:15:36Z #15 3.150 124800K .......... .......... .......... .......... .......... 98% 152M 0s -2024-04-19T21:15:36Z #15 3.150 124850K .......... .......... .......... .......... .......... 98% 67.5M 0s -2024-04-19T21:15:36Z #15 3.151 124900K .......... .......... .......... .......... .......... 98% 90.7M 0s -2024-04-19T21:15:36Z #15 3.151 124950K .......... .......... .......... .......... .......... 98% 135M 0s -2024-04-19T21:15:36Z #15 3.152 125000K .......... .......... .......... .......... .......... 98% 101M 0s -2024-04-19T21:15:36Z #15 3.152 125050K .......... .......... .......... .......... .......... 98% 57.9M 0s -2024-04-19T21:15:36Z #15 3.153 125100K .......... .......... .......... .......... .......... 98% 110M 0s -2024-04-19T21:15:36Z #15 3.153 125150K .......... .......... .......... .......... .......... 98% 137M 0s -2024-04-19T21:15:36Z #15 3.154 125200K .......... .......... .......... .......... .......... 98% 112M 0s -2024-04-19T21:15:36Z #15 3.154 125250K .......... .......... .......... .......... .......... 98% 5.58M 0s -2024-04-19T21:15:36Z #15 3.163 125300K .......... .......... .......... .......... .......... 98% 143M 0s -2024-04-19T21:15:36Z #15 3.163 125350K .......... .......... .......... .......... .......... 98% 97.9M 0s -2024-04-19T21:15:36Z #15 3.164 125400K .......... .......... .......... .......... .......... 98% 62.6M 0s -2024-04-19T21:15:36Z #15 3.165 125450K .......... .......... .......... .......... .......... 98% 119M 0s -2024-04-19T21:15:36Z #15 3.165 125500K .......... .......... .......... .......... .......... 99% 128M 0s -2024-04-19T21:15:36Z #15 3.165 125550K .......... .......... .......... .......... .......... 99% 118M 0s -2024-04-19T21:15:36Z #15 3.166 125600K .......... .......... .......... .......... .......... 99% 71.5M 0s -2024-04-19T21:15:36Z #15 3.166 125650K .......... .......... .......... .......... .......... 99% 118M 0s -2024-04-19T21:15:36Z #15 3.167 125700K .......... .......... .......... .......... .......... 99% 110M 0s -2024-04-19T21:15:36Z #15 3.167 125750K .......... .......... .......... .......... .......... 99% 123M 0s -2024-04-19T21:15:36Z #15 3.168 125800K .......... .......... .......... .......... .......... 99% 126M 0s -2024-04-19T21:15:36Z #15 3.168 125850K .......... .......... .......... .......... .......... 99% 136M 0s -2024-04-19T21:15:36Z #15 3.168 125900K .......... .......... .......... .......... .......... 99% 106M 0s -2024-04-19T21:15:36Z #15 3.169 125950K .......... .......... .......... .......... .......... 99% 126M 0s -2024-04-19T21:15:36Z #15 3.169 126000K .......... .......... .......... .......... .......... 99% 121M 0s -2024-04-19T21:15:36Z #15 3.170 126050K .......... .......... .......... .......... .......... 99% 106M 0s -2024-04-19T21:15:36Z #15 3.170 126100K .......... .......... .......... .......... .......... 99% 140M 0s -2024-04-19T21:15:36Z #15 3.171 126150K .......... .......... .......... .......... .......... 99% 19.3M 0s -2024-04-19T21:15:36Z #15 3.173 126200K .......... .......... .......... .......... .......... 99% 106M 0s -2024-04-19T21:15:36Z #15 3.173 126250K .......... .......... .......... .......... .......... 99% 126M 0s -2024-04-19T21:15:36Z #15 3.174 126300K .......... .......... .......... .......... .......... 99% 131M 0s -2024-04-19T21:15:36Z #15 3.174 126350K .......... .......... .......... .......... .......... 99% 112M 0s -2024-04-19T21:15:36Z #15 3.175 126400K .......... .......... .......... .......... .......... 99% 106M 0s -2024-04-19T21:15:36Z #15 3.175 126450K .......... .......... .......... .......... .......... 99% 125M 0s -2024-04-19T21:15:36Z #15 3.175 126500K .......... .......... .......... .......... .......... 99% 128M 0s -2024-04-19T21:15:36Z #15 3.176 126550K .......... .......... .......... .......... .......... 99% 107M 0s -2024-04-19T21:15:36Z #15 3.176 126600K .......... .......... .......... .......... .......... 99% 121M 0s -2024-04-19T21:15:36Z #15 3.177 126650K .......... .......... .......... .......... .......... 99% 161M 0s -2024-04-19T21:15:36Z #15 3.177 126700K .......... .......... .......... .......... .......... 99% 132M 0s -2024-04-19T21:15:36Z #15 3.177 126750K .......... .......... .......... .. 100% 133M=1.7s -2024-04-19T21:15:36Z #15 3.178 -2024-04-19T21:15:36Z #15 3.178 2024-04-19 21:15:36 (71.7 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [129825343/129825343] -2024-04-19T21:15:36Z #15 3.178 -2024-04-19T21:15:37Z #15 4.675 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.3/globusconnectpersonal' -2024-04-19T21:15:37Z #15 4.697 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-04-19T21:15:38Z #15 DONE 5.3s -2024-04-19T21:15:38Z -2024-04-19T21:15:38Z #16 exporting to image -2024-04-19T21:15:38Z #16 exporting layers -2024-04-19T21:18:20Z #16 exporting layers 162.3s done -2024-04-19T21:18:20Z #16 writing image sha256:10bdc081fe8fdf99936ab69cc1bf5cd1b080a1ff602a4cba74e66c40cacc053a done -2024-04-19T21:18:20Z #16 naming to docker.io/pavics/workflow-tests:py310-240419 done -2024-04-19T21:18:20Z #16 DONE 162.3s -2024-04-19T21:18:20Z Pushing index.docker.io/pavics/workflow-tests:py310-240419... -2024-04-19T21:26:33Z Done! -2024-04-19T21:26:33Z Build finished +2024-04-29T04:04:22Z Building in Docker Cloud's infrastructure... +2024-04-29T04:04:22Z Cloning into '.'... +2024-04-29T04:04:23Z Warning: Permanently added the RSA host key for IP address '140.82.114.3' to the list of known hosts. +2024-04-29T04:04:25Z Switched to a new branch 'docker-py311-240428' +2024-04-29T04:04:25Z KernelVersion: 5.4.0-1068-aws +2024-04-29T04:04:25Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-04-29T04:04:25Z Arch: amd64 +2024-04-29T04:04:25Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-04-29T04:04:25Z ApiVersion: 1.41 +2024-04-29T04:04:25Z Platform: {u'Name': u'Docker Engine - Community'} +2024-04-29T04:04:25Z Version: 20.10.15 +2024-04-29T04:04:25Z MinAPIVersion: 1.12 +2024-04-29T04:04:25Z GitCommit: 4433bf6 +2024-04-29T04:04:25Z Os: linux +2024-04-29T04:04:25Z GoVersion: go1.17.9 +2024-04-29T04:04:25Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py311-240428... +2024-04-29T04:04:31Z #1 [internal] load build definition from Dockerfile +2024-04-29T04:04:31Z #1 transferring dockerfile: 6.99kB 0.0s done +2024-04-29T04:04:31Z #1 DONE 0.1s +2024-04-29T04:04:31Z +2024-04-29T04:04:31Z #2 [internal] load .dockerignore +2024-04-29T04:04:31Z #2 transferring context: 2B done +2024-04-29T04:04:31Z #2 DONE 0.1s +2024-04-29T04:04:31Z +2024-04-29T04:04:31Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-04-29T04:04:31Z #3 ... +2024-04-29T04:04:31Z +2024-04-29T04:04:31Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-04-29T04:04:31Z #4 DONE 0.0s +2024-04-29T04:04:31Z +2024-04-29T04:04:31Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-04-29T04:04:32Z #3 DONE 0.6s +2024-04-29T04:04:32Z +2024-04-29T04:04:32Z #5 [internal] load build context +2024-04-29T04:04:32Z #5 transferring context: 9.81kB done +2024-04-29T04:04:32Z #5 DONE 0.0s +2024-04-29T04:04:32Z +2024-04-29T04:04:32Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b +2024-04-29T04:04:32Z #6 resolve docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b done +2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 2.10MB / 50.08MB 0.2s +2024-04-29T04:04:32Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0B / 150.89MB 0.2s +2024-04-29T04:04:32Z #6 sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b 2.36kB / 2.36kB done +2024-04-29T04:04:32Z #6 sha256:2f63021fb73070c52ff804d164a9802b54e89ce9734eeb3c4236bddc57c75617 869B / 869B done +2024-04-29T04:04:32Z #6 sha256:1f702ef68adb9e4c2b71bdec2ef2cf775120cee7edc02a8e46c4388e259d431c 5.62kB / 5.62kB done +2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 6.29MB / 31.43MB 0.2s +2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.24MB / 50.08MB 0.3s +2024-04-29T04:04:32Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 8.39MB / 150.89MB 0.4s +2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 8.39MB / 31.43MB 0.4s +2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 12.89MB / 50.08MB 0.5s +2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 12.58MB / 31.43MB 0.5s +2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 15.73MB / 50.08MB 0.7s +2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 18.87MB / 50.08MB 0.8s +2024-04-29T04:04:32Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 18.87MB / 150.89MB 0.8s +2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 14.68MB / 31.43MB 0.8s +2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 19.92MB / 31.43MB 0.9s +2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 26.21MB / 50.08MB 1.1s +2024-04-29T04:04:33Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 26.21MB / 31.43MB 1.1s +2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 31.67MB / 50.08MB 1.3s +2024-04-29T04:04:33Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 30.41MB / 150.89MB 1.3s +2024-04-29T04:04:33Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.3s +2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 35.65MB / 50.08MB 1.4s +2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 40.89MB / 50.08MB 1.6s +2024-04-29T04:04:33Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 39.85MB / 150.89MB 1.6s +2024-04-29T04:04:33Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.6s done +2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 45.05MB / 50.08MB 1.8s +2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 2.0s +2024-04-29T04:04:34Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 48.10MB / 150.89MB 2.1s +2024-04-29T04:04:34Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 +2024-04-29T04:04:34Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 2.3s done +2024-04-29T04:04:34Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 61.87MB / 150.89MB 3.0s +2024-04-29T04:04:35Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 74.01MB / 150.89MB 3.6s +2024-04-29T04:04:35Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 83.46MB / 150.89MB 4.0s +2024-04-29T04:04:36Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 94.37MB / 150.89MB 4.5s +2024-04-29T04:04:37Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 104.85MB / 150.89MB 5.1s +2024-04-29T04:04:37Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 113.25MB / 150.89MB 5.6s +2024-04-29T04:04:37Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 122.68MB / 150.89MB 6.0s +2024-04-29T04:04:38Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 131.52MB / 150.89MB 6.5s +2024-04-29T04:04:38Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 141.14MB / 150.89MB 6.9s +2024-04-29T04:04:39Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 148.90MB / 150.89MB 7.1s +2024-04-29T04:04:39Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.1s +2024-04-29T04:04:40Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 150.89MB / 150.89MB 8.7s done +2024-04-29T04:04:41Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 7.0s done +2024-04-29T04:04:41Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 +2024-04-29T04:04:46Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.0s +2024-04-29T04:04:48Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 7.4s done +2024-04-29T04:04:49Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0.1s +2024-04-29T04:04:54Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 5.1s +2024-04-29T04:04:59Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.3s +2024-04-29T04:05:04Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 15.0s done +2024-04-29T04:05:04Z #6 DONE 32.8s +2024-04-29T04:05:04Z +2024-04-29T04:05:04Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-04-29T04:05:06Z #7 1.502 Channels: +2024-04-29T04:05:06Z #7 1.502 - defaults +2024-04-29T04:05:06Z #7 1.502 Platform: linux-64 +2024-04-29T04:05:10Z #7 1.502 Collecting package metadata (repodata.json): ...working... done +2024-04-29T04:05:10Z #7 5.991 Solving environment: ...working... done +2024-04-29T04:05:11Z #7 6.323 +2024-04-29T04:05:11Z #7 6.323 # All requested packages already installed. +2024-04-29T04:05:11Z #7 6.323 +2024-04-29T04:05:12Z #7 7.452 Channels: +2024-04-29T04:05:12Z #7 7.452 - conda-forge +2024-04-29T04:05:12Z #7 7.452 - defaults +2024-04-29T04:05:12Z #7 7.452 Platform: linux-64 +2024-04-29T04:05:39Z #7 7.452 Collecting package metadata (repodata.json): ...working... done +2024-04-29T04:05:41Z #7 34.56 Solving environment: ...working... done +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 ## Package Plan ## +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 environment location: /opt/conda +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 added / updated specs: +2024-04-29T04:05:41Z #7 36.89 - conda-pack +2024-04-29T04:05:41Z #7 36.89 - mamba +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 The following packages will be downloaded: +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 package | build +2024-04-29T04:05:41Z #7 36.89 ---------------------------|----------------- +2024-04-29T04:05:41Z #7 36.89 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 c-ares-1.28.1 | hd590300_0 165 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 conda-24.3.0 | py312h7900ff3_0 1.1 MB conda-forge +2024-04-29T04:05:41Z #7 36.89 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-04-29T04:05:41Z #7 36.89 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge +2024-04-29T04:05:41Z #7 36.89 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libcurl-8.7.1 | hca28451_0 389 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libexpat-2.5.0 | hcb278e6_1 76 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libgcc-ng-13.2.0 | hc881cc4_6 759 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libgomp-13.2.0 | hc881cc4_6 412 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge +2024-04-29T04:05:41Z #7 36.89 libmambapy-1.5.8 | py312hd9e9ff6_0 299 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libnsl-2.0.1 | hd590300_0 33 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libsqlite-3.45.3 | h2797004_0 840 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libssh2-1.11.0 | h0841786_0 265 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libstdcxx-ng-13.2.0 | h95c4c6d_6 3.7 MB conda-forge +2024-04-29T04:05:41Z #7 36.89 libuuid-2.38.1 | h0b41bf4_0 33 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libxcrypt-4.4.36 | hd590300_1 98 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libxml2-2.12.6 | h232c23b_2 688 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 lzo-2.10 | hd590300_1001 167 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 mamba-1.5.8 | py312h9460a1c_0 63 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge +2024-04-29T04:05:41Z #7 36.89 python-3.12.2 |hab00c5b_0_cpython 30.8 MB conda-forge +2024-04-29T04:05:41Z #7 36.89 python_abi-3.12 | 4_cp312 6 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 tk-8.6.13 |noxft_h4845f30_101 3.2 MB conda-forge +2024-04-29T04:05:41Z #7 36.89 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-04-29T04:05:41Z #7 36.89 ------------------------------------------------------------ +2024-04-29T04:05:41Z #7 36.89 Total: 62.9 MB +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 The following NEW packages will be INSTALLED: +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 +2024-04-29T04:05:41Z #7 36.89 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 +2024-04-29T04:05:41Z #7 36.89 libexpat conda-forge/linux-64::libexpat-2.5.0-hcb278e6_1 +2024-04-29T04:05:41Z #7 36.89 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-04-29T04:05:41Z #7 36.89 libnsl conda-forge/linux-64::libnsl-2.0.1-hd590300_0 +2024-04-29T04:05:41Z #7 36.89 libsqlite conda-forge/linux-64::libsqlite-3.45.3-h2797004_0 +2024-04-29T04:05:41Z #7 36.89 libxcrypt conda-forge/linux-64::libxcrypt-4.4.36-hd590300_1 +2024-04-29T04:05:41Z #7 36.89 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-04-29T04:05:41Z #7 36.89 lzo conda-forge/linux-64::lzo-2.10-hd590300_1001 +2024-04-29T04:05:41Z #7 36.89 mamba conda-forge/linux-64::mamba-1.5.8-py312h9460a1c_0 +2024-04-29T04:05:41Z #7 36.89 python_abi conda-forge/linux-64::python_abi-3.12-4_cp312 +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 The following packages will be UPDATED: +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 +2024-04-29T04:05:41Z #7 36.89 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-04-29T04:05:41Z #7 36.89 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-04-29T04:05:41Z #7 36.89 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 +2024-04-29T04:05:41Z #7 36.89 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-04-29T04:05:41Z #7 36.89 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 +2024-04-29T04:05:41Z #7 36.89 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-hc881cc4_6 +2024-04-29T04:05:41Z #7 36.89 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-hc881cc4_6 +2024-04-29T04:05:41Z #7 36.89 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 +2024-04-29T04:05:41Z #7 36.89 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 +2024-04-29T04:05:41Z #7 36.89 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h95c4c6d_6 +2024-04-29T04:05:41Z #7 36.89 libuuid pkgs/main::libuuid-1.41.5-h5eee18b_0 --> conda-forge::libuuid-2.38.1-h0b41bf4_0 +2024-04-29T04:05:41Z #7 36.89 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_2 +2024-04-29T04:05:41Z #7 36.89 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 +2024-04-29T04:05:41Z #7 36.89 tk pkgs/main::tk-8.6.12-h1ccaba5_0 --> conda-forge::tk-8.6.13-noxft_h4845f30_101 +2024-04-29T04:05:41Z #7 36.89 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 The following packages will be SUPERSEDED by a higher-priority channel: +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-04-29T04:05:41Z #7 36.89 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-04-29T04:05:41Z #7 36.89 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-04-29T04:05:41Z #7 36.89 conda pkgs/main::conda-24.3.0-py312h06a4308~ --> conda-forge::conda-24.3.0-py312h7900ff3_0 +2024-04-29T04:05:41Z #7 36.89 libmamba pkgs/main::libmamba-1.5.8-hfe524e5_1 --> conda-forge::libmamba-1.5.8-had39da4_0 +2024-04-29T04:05:41Z #7 36.89 libmambapy pkgs/main::libmambapy-1.5.8-py312h2da~ --> conda-forge::libmambapy-1.5.8-py312hd9e9ff6_0 +2024-04-29T04:05:41Z #7 36.89 python pkgs/main::python-3.12.2-h996f2a0_0 --> conda-forge::python-3.12.2-hab00c5b_0_cpython +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 +2024-04-29T04:05:41Z #7 36.89 Proceed ([y]/n)? +2024-04-29T04:05:46Z #7 42.04 +2024-04-29T04:05:46Z #7 42.04 Downloading and Extracting Packages: ...working... done +2024-04-29T04:05:47Z #7 42.04 Preparing transaction: ...working... done +2024-04-29T04:05:49Z #7 42.37 Verifying transaction: ...working... done +2024-04-29T04:06:16Z #7 44.39 Executing transaction: ...working... done +2024-04-29T04:06:19Z #7 74.59 Will remove 34 (62.9 MB) tarball(s). +2024-04-29T04:06:19Z #7 74.59 Will remove 1 index cache(s). +2024-04-29T04:06:19Z #7 74.59 Will remove 3 (120 KB) package(s). +2024-04-29T04:06:19Z #7 74.59 There are no tempfile(s) to remove. +2024-04-29T04:06:19Z #7 74.59 There are no logfile(s) to remove. +2024-04-29T04:06:20Z #7 76.11 bin/micromamba +2024-04-29T04:06:22Z #7 DONE 77.8s +2024-04-29T04:06:22Z +2024-04-29T04:06:22Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-04-29T04:06:23Z #8 0.556 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-04-29T04:06:23Z #8 0.584 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-04-29T04:06:23Z #8 0.584 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-04-29T04:06:23Z #8 0.719 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-04-29T04:06:23Z #8 0.951 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] +2024-04-29T04:06:24Z #8 1.625 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-04-29T04:06:25Z #8 3.225 Fetched 8565 kB in 3s (3196 kB/s) +2024-04-29T04:06:26Z #8 3.225 Reading package lists... +2024-04-29T04:06:28Z #8 4.366 Reading package lists... +2024-04-29T04:06:28Z #8 5.521 Building dependency tree... +2024-04-29T04:06:28Z #8 5.834 Reading state information... +2024-04-29T04:06:28Z #8 6.301 git is already the newest version (1:2.30.2-1+deb11u2). +2024-04-29T04:06:28Z #8 6.301 mercurial is already the newest version (5.6.1-4). +2024-04-29T04:06:28Z #8 6.301 The following additional packages will be installed: +2024-04-29T04:06:28Z #8 6.302 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-29T04:06:28Z #8 6.302 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-29T04:06:28Z #8 6.306 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-04-29T04:06:28Z #8 6.306 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-04-29T04:06:28Z #8 6.306 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-04-29T04:06:28Z #8 6.306 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-04-29T04:06:28Z #8 6.306 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-04-29T04:06:28Z #8 6.306 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-29T04:06:28Z #8 6.306 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-29T04:06:28Z #8 6.306 libc-dev-bin libc-devtools libc6 libc6-dev libcairo-gobject2 libcairo2 +2024-04-29T04:06:28Z #8 6.306 libcap2 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 +2024-04-29T04:06:28Z #8 6.306 libctf-nobfd0 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 +2024-04-29T04:06:28Z #8 6.306 libdbus-glib-1-2 libdconf1 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 +2024-04-29T04:06:28Z #8 6.306 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 +2024-04-29T04:06:28Z #8 6.306 libepoxy0 libevent-2.1-7 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 +2024-04-29T04:06:28Z #8 6.306 libgcc-10-dev libgd3 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin +2024-04-29T04:06:28Z #8 6.306 libgdk-pixbuf2.0-common libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 +2024-04-29T04:06:28Z #8 6.306 libglx-mesa0 libglx0 libgomp1 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin +2024-04-29T04:06:28Z #8 6.306 libgtk-3-common libharfbuzz0b libicu67 libigdgmm11 libip4tc2 libisl23 +2024-04-29T04:06:28Z #8 6.306 libitm1 libjbig0 libjpeg62-turbo libjson-c5 libjson-glib-1.0-0 +2024-04-29T04:06:28Z #8 6.306 libjson-glib-1.0-common libkmod2 liblcms2-2 libllvm11 liblsan0 libmfx1 +2024-04-29T04:06:28Z #8 6.306 libmp3lame0 libmpc3 libmpfr6 libnsl-dev libnss-systemd libnuma1 libogg0 +2024-04-29T04:06:28Z #8 6.306 libopenjp2-7 libopus0 libpam-systemd libpango-1.0-0 libpangocairo-1.0-0 +2024-04-29T04:06:28Z #8 6.306 libpangoft2-1.0-0 libpciaccess0 libpixman-1-0 libpng16-16 libproxy1v5 +2024-04-29T04:06:28Z #8 6.306 libquadmath0 librest-0.7-0 librsvg2-2 librsvg2-common libsensors-config +2024-04-29T04:06:28Z #8 6.306 libsensors5 libshine3 libsnappy1v5 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 +2024-04-29T04:06:28Z #8 6.306 libspeex1 libswresample3 libthai-data libthai0 libtheora0 libtiff5 +2024-04-29T04:06:28Z #8 6.306 libtirpc-dev libtsan0 libtwolame0 libubsan1 libva-drm2 libva-x11-2 libva2 +2024-04-29T04:06:28Z #8 6.306 libvdpau-va-gl1 libvdpau1 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 +2024-04-29T04:06:28Z #8 6.306 libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwebp6 +2024-04-29T04:06:28Z #8 6.306 libwebpmux3 libx11-xcb1 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 +2024-04-29T04:06:28Z #8 6.306 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 +2024-04-29T04:06:28Z #8 6.306 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcomposite1 +2024-04-29T04:06:28Z #8 6.306 libxcursor1 libxdamage1 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 +2024-04-29T04:06:28Z #8 6.306 libxkbfile1 libxml2 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 +2024-04-29T04:06:28Z #8 6.306 libxtst6 libxv1 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common +2024-04-29T04:06:28Z #8 6.306 libzvbi0 linux-libc-dev manpages manpages-dev mesa-va-drivers +2024-04-29T04:06:28Z #8 6.306 mesa-vdpau-drivers mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info +2024-04-29T04:06:28Z #8 6.306 systemd systemd-sysv systemd-timesyncd va-driver-all vdpau-driver-all +2024-04-29T04:06:28Z #8 6.306 xkb-data +2024-04-29T04:06:28Z #8 6.308 Suggested packages: +2024-04-29T04:06:28Z #8 6.309 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-04-29T04:06:28Z #8 6.309 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-04-29T04:06:28Z #8 6.310 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-04-29T04:06:28Z #8 6.315 libasound2-plugins alsa-utils glibc-doc libc-l10n locales colord cups-common +2024-04-29T04:06:28Z #8 6.315 libgd-tools gvfs liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors +2024-04-29T04:06:28Z #8 6.315 speex man-browser opencl-icd ed diffutils-doc systemd-container policykit-1 +2024-04-29T04:06:28Z #8 6.315 zip nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-04-29T04:06:28Z #8 6.315 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-04-29T04:06:28Z #8 6.315 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-04-29T04:06:28Z #8 6.315 Recommended packages: +2024-04-29T04:06:28Z #8 6.315 libnss-nis libnss-nisplus +2024-04-29T04:06:30Z #8 8.297 The following NEW packages will be installed: +2024-04-29T04:06:30Z #8 8.298 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-04-29T04:06:30Z #8 8.299 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-04-29T04:06:30Z #8 8.300 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-04-29T04:06:30Z #8 8.307 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-04-29T04:06:30Z #8 8.307 glib-networking glib-networking-common glib-networking-services +2024-04-29T04:06:30Z #8 8.307 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-04-29T04:06:30Z #8 8.307 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-04-29T04:06:30Z #8 8.307 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-04-29T04:06:30Z #8 8.307 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-04-29T04:06:30Z #8 8.307 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-04-29T04:06:30Z #8 8.307 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-04-29T04:06:30Z #8 8.307 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-04-29T04:06:30Z #8 8.307 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-04-29T04:06:30Z #8 8.307 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-04-29T04:06:30Z #8 8.307 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-04-29T04:06:30Z #8 8.307 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-04-29T04:06:30Z #8 8.307 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-04-29T04:06:30Z #8 8.307 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-04-29T04:06:30Z #8 8.307 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-04-29T04:06:30Z #8 8.307 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-04-29T04:06:30Z #8 8.307 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-04-29T04:06:30Z #8 8.307 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-04-29T04:06:30Z #8 8.307 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-04-29T04:06:31Z #8 8.307 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-04-29T04:06:31Z #8 8.307 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-04-29T04:06:31Z #8 8.307 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-04-29T04:06:31Z #8 8.307 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-04-29T04:06:31Z #8 8.307 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-04-29T04:06:31Z #8 8.307 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-04-29T04:06:31Z #8 8.307 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-04-29T04:06:31Z #8 8.307 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-04-29T04:06:31Z #8 8.307 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-04-29T04:06:31Z #8 8.307 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-04-29T04:06:31Z #8 8.307 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-04-29T04:06:31Z #8 8.307 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-04-29T04:06:31Z #8 8.307 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-04-29T04:06:31Z #8 8.307 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-04-29T04:06:31Z #8 8.307 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-04-29T04:06:31Z #8 8.307 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-04-29T04:06:31Z #8 8.307 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-04-29T04:06:31Z #8 8.307 x11-utils xkb-data +2024-04-29T04:06:31Z #8 8.307 The following packages will be upgraded: +2024-04-29T04:06:31Z #8 8.307 libc6 +2024-04-29T04:06:31Z #8 8.357 1 upgraded, 221 newly installed, 0 to remove and 1 not upgraded. +2024-04-29T04:06:31Z #8 8.357 Need to get 238 MB of archives. +2024-04-29T04:06:31Z #8 8.357 After this operation, 891 MB of additional disk space will be used. +2024-04-29T04:06:31Z #8 8.357 Get:1 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6 amd64 2.31-13+deb11u9 [2824 kB] +2024-04-29T04:06:31Z #8 8.441 Get:2 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-04-29T04:06:31Z #8 8.456 Get:3 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-04-29T04:06:31Z #8 8.462 Get:4 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-04-29T04:06:31Z #8 8.467 Get:5 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-04-29T04:06:31Z #8 8.471 Get:6 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-04-29T04:06:31Z #8 8.482 Get:7 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-04-29T04:06:31Z #8 8.485 Get:8 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-04-29T04:06:31Z #8 8.498 Get:9 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-04-29T04:06:31Z #8 8.501 Get:10 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-04-29T04:06:31Z #8 8.503 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-04-29T04:06:31Z #8 8.626 Get:12 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-04-29T04:06:31Z #8 8.628 Get:13 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-04-29T04:06:31Z #8 8.632 Get:14 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-04-29T04:06:31Z #8 8.636 Get:15 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-04-29T04:06:31Z #8 8.640 Get:16 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-04-29T04:06:31Z #8 8.644 Get:17 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-04-29T04:06:31Z #8 8.669 Get:18 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-04-29T04:06:31Z #8 8.673 Get:19 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-04-29T04:06:31Z #8 8.674 Get:20 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-04-29T04:06:31Z #8 8.680 Get:21 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-04-29T04:06:31Z #8 8.938 Get:22 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-04-29T04:06:31Z #8 8.949 Get:23 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-04-29T04:06:31Z #8 8.968 Get:24 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-04-29T04:06:31Z #8 8.971 Get:25 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-04-29T04:06:31Z #8 8.977 Get:26 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-04-29T04:06:31Z #8 8.989 Get:27 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-04-29T04:06:31Z #8 8.991 Get:28 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-04-29T04:06:31Z #8 8.996 Get:29 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-04-29T04:06:31Z #8 9.005 Get:30 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-04-29T04:06:31Z #8 9.009 Get:31 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-04-29T04:06:31Z #8 9.012 Get:32 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-04-29T04:06:31Z #8 9.348 Get:33 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-04-29T04:06:31Z #8 9.350 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-04-29T04:06:31Z #8 9.353 Get:35 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-04-29T04:06:31Z #8 9.362 Get:36 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-04-29T04:06:31Z #8 9.364 Get:37 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-04-29T04:06:31Z #8 9.366 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-04-29T04:06:31Z #8 9.369 Get:39 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-04-29T04:06:31Z #8 9.374 Get:40 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-04-29T04:06:31Z #8 9.377 Get:41 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-04-29T04:06:31Z #8 9.416 Get:42 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-04-29T04:06:32Z #8 9.432 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-04-29T04:06:32Z #8 9.461 Get:44 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-04-29T04:06:32Z #8 9.463 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-04-29T04:06:32Z #8 9.496 Get:46 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-04-29T04:06:32Z #8 9.501 Get:47 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-04-29T04:06:32Z #8 9.514 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-04-29T04:06:32Z #8 9.547 Get:49 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-04-29T04:06:32Z #8 9.552 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-04-29T04:06:32Z #8 9.800 Get:51 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-04-29T04:06:32Z #8 9.804 Get:52 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-04-29T04:06:32Z #8 9.808 Get:53 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-04-29T04:06:32Z #8 9.812 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-04-29T04:06:32Z #8 9.813 Get:55 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-04-29T04:06:32Z #8 9.815 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-04-29T04:06:32Z #8 9.818 Get:57 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-04-29T04:06:32Z #8 9.820 Get:58 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-04-29T04:06:32Z #8 9.827 Get:59 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-04-29T04:06:32Z #8 9.848 Get:60 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-04-29T04:06:32Z #8 9.853 Get:61 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-04-29T04:06:32Z #8 9.861 Get:62 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-04-29T04:06:32Z #8 9.873 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-04-29T04:06:32Z #8 9.894 Get:64 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-04-29T04:06:32Z #8 9.897 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-04-29T04:06:32Z #8 9.907 Get:66 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-04-29T04:06:32Z #8 9.916 Get:67 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-04-29T04:06:32Z #8 9.919 Get:68 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-04-29T04:06:32Z #8 9.923 Get:69 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-04-29T04:06:32Z #8 9.925 Get:70 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-04-29T04:06:32Z #8 9.929 Get:71 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-04-29T04:06:32Z #8 9.934 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-04-29T04:06:32Z #8 9.938 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-04-29T04:06:32Z #8 9.941 Get:74 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-04-29T04:06:32Z #8 9.945 Get:75 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-04-29T04:06:32Z #8 9.954 Get:76 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-04-29T04:06:32Z #8 9.958 Get:77 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-04-29T04:06:32Z #8 9.961 Get:78 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-04-29T04:06:32Z #8 9.963 Get:79 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-04-29T04:06:32Z #8 9.989 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-04-29T04:06:32Z #8 9.991 Get:81 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-04-29T04:06:32Z #8 9.993 Get:82 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-04-29T04:06:32Z #8 9.999 Get:83 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-04-29T04:06:32Z #8 10.00 Get:84 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-04-29T04:06:32Z #8 10.01 Get:85 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-04-29T04:06:32Z #8 10.01 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-04-29T04:06:32Z #8 10.03 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-04-29T04:06:32Z #8 10.03 Get:88 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-04-29T04:06:32Z #8 10.03 Get:89 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-04-29T04:06:32Z #8 10.03 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-04-29T04:06:32Z #8 10.04 Get:91 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-04-29T04:06:32Z #8 10.04 Get:92 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-04-29T04:06:32Z #8 10.05 Get:93 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-04-29T04:06:32Z #8 10.05 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-04-29T04:06:32Z #8 10.06 Get:95 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-04-29T04:06:32Z #8 10.06 Get:96 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-04-29T04:06:32Z #8 10.06 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-04-29T04:06:32Z #8 10.07 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-04-29T04:06:32Z #8 10.07 Get:99 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-04-29T04:06:32Z #8 10.07 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-04-29T04:06:32Z #8 10.08 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-04-29T04:06:32Z #8 10.08 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-04-29T04:06:32Z #8 10.09 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-04-29T04:06:32Z #8 10.09 Get:104 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-04-29T04:06:32Z #8 10.10 Get:105 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-04-29T04:06:32Z #8 10.11 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-04-29T04:06:32Z #8 10.14 Get:107 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-04-29T04:06:32Z #8 10.14 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-04-29T04:06:32Z #8 10.21 Get:109 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-04-29T04:06:32Z #8 10.26 Get:110 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-04-29T04:06:32Z #8 10.26 Get:111 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.10.0esr-1~deb11u1 [63.7 MB] +2024-04-29T04:06:34Z #8 11.66 Get:112 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-04-29T04:06:34Z #8 11.66 Get:113 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-04-29T04:06:34Z #8 11.66 Get:114 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-04-29T04:06:34Z #8 11.67 Get:115 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-04-29T04:06:34Z #8 11.67 Get:116 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-04-29T04:06:34Z #8 11.67 Get:117 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-04-29T04:06:34Z #8 11.70 Get:118 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-04-29T04:06:34Z #8 11.72 Get:119 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-04-29T04:06:34Z #8 11.76 Get:120 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-04-29T04:06:34Z #8 11.78 Get:121 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-04-29T04:06:34Z #8 11.79 Get:122 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-04-29T04:06:34Z #8 11.82 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-04-29T04:06:34Z #8 12.29 Get:124 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-04-29T04:06:34Z #8 12.29 Get:125 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-04-29T04:06:34Z #8 12.29 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-04-29T04:06:34Z #8 12.30 Get:127 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-04-29T04:06:34Z #8 12.30 Get:128 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-04-29T04:06:34Z #8 12.30 Get:129 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-04-29T04:06:34Z #8 12.30 Get:130 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-04-29T04:06:34Z #8 12.31 Get:131 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-04-29T04:06:34Z #8 12.31 Get:132 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-04-29T04:06:34Z #8 12.36 Get:133 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-04-29T04:06:35Z #8 12.40 Get:134 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-04-29T04:06:35Z #8 12.49 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-04-29T04:06:35Z #8 12.49 Get:136 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-04-29T04:06:35Z #8 12.49 Get:137 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-04-29T04:06:35Z #8 12.49 Get:138 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-04-29T04:06:35Z #8 12.50 Get:139 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-04-29T04:06:35Z #8 12.51 Get:140 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-04-29T04:06:35Z #8 12.72 Get:141 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-04-29T04:06:35Z #8 12.73 Get:142 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-04-29T04:06:35Z #8 12.73 Get:143 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-04-29T04:06:35Z #8 12.74 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-04-29T04:06:35Z #8 12.75 Get:145 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-04-29T04:06:35Z #8 12.75 Get:146 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-04-29T04:06:35Z #8 12.79 Get:147 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-04-29T04:06:35Z #8 12.79 Get:148 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-04-29T04:06:35Z #8 12.79 Get:149 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-04-29T04:06:35Z #8 12.79 Get:150 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-04-29T04:06:35Z #8 12.80 Get:151 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-04-29T04:06:35Z #8 12.80 Get:152 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-04-29T04:06:35Z #8 12.80 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-04-29T04:06:35Z #8 12.81 Get:154 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-04-29T04:06:35Z #8 12.82 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-04-29T04:06:35Z #8 12.82 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-04-29T04:06:35Z #8 12.82 Get:157 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-04-29T04:06:35Z #8 12.85 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-04-29T04:06:35Z #8 12.86 Get:159 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-04-29T04:06:35Z #8 12.86 Get:160 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-04-29T04:06:35Z #8 12.87 Get:161 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-04-29T04:06:35Z #8 12.88 Get:162 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-04-29T04:06:35Z #8 12.90 Get:163 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-04-29T04:06:35Z #8 12.90 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-04-29T04:06:35Z #8 12.91 Get:165 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-04-29T04:06:35Z #8 12.91 Get:166 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-04-29T04:06:35Z #8 13.04 Get:167 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-dev-bin amd64 2.31-13+deb11u9 [276 kB] +2024-04-29T04:06:35Z #8 13.05 Get:168 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-04-29T04:06:35Z #8 13.05 Get:169 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-04-29T04:06:35Z #8 13.06 Get:170 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-devtools amd64 2.31-13+deb11u9 [246 kB] +2024-04-29T04:06:35Z #8 13.06 Get:171 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-04-29T04:06:35Z #8 13.08 Get:172 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-04-29T04:06:35Z #8 13.09 Get:173 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-04-29T04:06:35Z #8 13.09 Get:174 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-04-29T04:06:35Z #8 13.09 Get:175 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6-dev amd64 2.31-13+deb11u9 [2360 kB] +2024-04-29T04:06:35Z #8 13.14 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-04-29T04:06:35Z #8 13.15 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-04-29T04:06:35Z #8 13.16 Get:178 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-04-29T04:06:35Z #8 13.16 Get:179 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-04-29T04:06:35Z #8 13.16 Get:180 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-04-29T04:06:35Z #8 13.16 Get:181 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-04-29T04:06:35Z #8 13.16 Get:182 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-04-29T04:06:35Z #8 13.17 Get:183 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-04-29T04:06:35Z #8 13.36 Get:184 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-04-29T04:06:36Z #8 13.88 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-04-29T04:06:36Z #8 13.88 Get:186 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-04-29T04:06:36Z #8 13.88 Get:187 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-04-29T04:06:36Z #8 13.89 Get:188 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-04-29T04:06:36Z #8 14.17 Get:189 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-04-29T04:06:36Z #8 14.17 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-04-29T04:06:36Z #8 14.18 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-04-29T04:06:36Z #8 14.18 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-04-29T04:06:36Z #8 14.18 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-04-29T04:06:36Z #8 14.19 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-04-29T04:06:36Z #8 14.19 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-04-29T04:06:36Z #8 14.20 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-04-29T04:06:36Z #8 14.20 Get:197 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-04-29T04:06:36Z #8 14.20 Get:198 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-04-29T04:06:36Z #8 14.21 Get:199 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-04-29T04:06:36Z #8 14.21 Get:200 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-04-29T04:06:36Z #8 14.21 Get:201 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-04-29T04:06:36Z #8 14.22 Get:202 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-04-29T04:06:36Z #8 14.22 Get:203 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-04-29T04:06:36Z #8 14.22 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-04-29T04:06:36Z #8 14.22 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-04-29T04:06:36Z #8 14.23 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-04-29T04:06:36Z #8 14.24 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-04-29T04:06:36Z #8 14.24 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-04-29T04:06:36Z #8 14.25 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-04-29T04:06:36Z #8 14.25 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-04-29T04:06:36Z #8 14.25 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-04-29T04:06:36Z #8 14.25 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-04-29T04:06:36Z #8 14.25 Get:213 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-04-29T04:06:36Z #8 14.26 Get:214 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-04-29T04:06:36Z #8 14.31 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-04-29T04:06:36Z #8 14.38 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-04-29T04:06:36Z #8 14.44 Get:217 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-04-29T04:06:37Z #8 14.54 Get:218 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-04-29T04:06:37Z #8 14.54 Get:219 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-04-29T04:06:37Z #8 14.55 Get:220 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-04-29T04:06:37Z #8 14.55 Get:221 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-04-29T04:06:37Z #8 14.55 Get:222 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-04-29T04:06:37Z #8 14.94 debconf: delaying package configuration, since apt-utils is not installed +2024-04-29T04:06:37Z #8 15.01 Fetched 238 MB in 6s (38.3 MB/s) +2024-04-29T04:06:37Z #8 15.07 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-04-29T04:06:37Z #8 15.10 Preparing to unpack .../libc6_2.31-13+deb11u9_amd64.deb ... +2024-04-29T04:06:38Z #8 15.38 Unpacking libc6:amd64 (2.31-13+deb11u9) over (2.31-13+deb11u8) ... +2024-04-29T04:06:39Z #8 17.29 Setting up libc6:amd64 (2.31-13+deb11u9) ... +2024-04-29T04:06:41Z #8 18.59 Selecting previously unselected package libapparmor1:amd64. +2024-04-29T04:06:41Z #8 18.59 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-04-29T04:06:41Z #8 18.62 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-04-29T04:06:41Z #8 18.62 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-04-29T04:06:41Z #8 18.68 Selecting previously unselected package libcap2:amd64. +2024-04-29T04:06:41Z #8 18.68 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-04-29T04:06:41Z #8 18.69 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-04-29T04:06:41Z #8 18.74 Selecting previously unselected package libargon2-1:amd64. +2024-04-29T04:06:41Z #8 18.75 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-04-29T04:06:41Z #8 18.75 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-29T04:06:41Z #8 18.80 Selecting previously unselected package dmsetup. +2024-04-29T04:06:41Z #8 18.80 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-04-29T04:06:41Z #8 18.81 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-04-29T04:06:41Z #8 18.87 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-04-29T04:06:41Z #8 18.87 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-04-29T04:06:41Z #8 18.88 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-29T04:06:41Z #8 18.95 Selecting previously unselected package libjson-c5:amd64. +2024-04-29T04:06:41Z #8 18.96 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-04-29T04:06:41Z #8 18.97 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-29T04:06:41Z #8 19.03 Selecting previously unselected package libcryptsetup12:amd64. +2024-04-29T04:06:41Z #8 19.03 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-04-29T04:06:41Z #8 19.04 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-29T04:06:41Z #8 19.14 Selecting previously unselected package libip4tc2:amd64. +2024-04-29T04:06:41Z #8 19.14 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-04-29T04:06:41Z #8 19.15 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-04-29T04:06:41Z #8 19.20 Selecting previously unselected package libkmod2:amd64. +2024-04-29T04:06:41Z #8 19.21 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-04-29T04:06:41Z #8 19.22 Unpacking libkmod2:amd64 (28-1) ... +2024-04-29T04:06:41Z #8 19.30 Selecting previously unselected package systemd. +2024-04-29T04:06:41Z #8 19.30 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-29T04:06:41Z #8 19.38 Unpacking systemd (247.3-7+deb11u4) ... +2024-04-29T04:06:42Z #8 20.45 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-04-29T04:06:43Z #8 20.47 Setting up libcap2:amd64 (1:2.44-1) ... +2024-04-29T04:06:43Z #8 20.48 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-04-29T04:06:43Z #8 20.54 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-04-29T04:06:43Z #8 20.56 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-04-29T04:06:43Z #8 20.57 Setting up libkmod2:amd64 (28-1) ... +2024-04-29T04:06:43Z #8 20.59 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-04-29T04:06:43Z #8 20.61 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-04-29T04:06:43Z #8 20.62 Setting up systemd (247.3-7+deb11u4) ... +2024-04-29T04:06:43Z #8 20.67 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-04-29T04:06:43Z #8 20.68 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-04-29T04:06:43Z #8 20.68 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-04-29T04:06:43Z #8 20.71 Initializing machine ID from KVM UUID. +2024-04-29T04:06:43Z #8 21.24 Setting up dmsetup (2:1.02.175-2.1) ... +2024-04-29T04:06:43Z #8 21.33 Selecting previously unselected package systemd-sysv. +2024-04-29T04:06:43Z #8 21.33 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-04-29T04:06:43Z #8 21.36 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-04-29T04:06:43Z #8 21.37 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-04-29T04:06:43Z #8 21.44 Selecting previously unselected package libdbus-1-3:amd64. +2024-04-29T04:06:43Z #8 21.44 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-04-29T04:06:44Z #8 21.45 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-29T04:06:44Z #8 21.58 Selecting previously unselected package dbus. +2024-04-29T04:06:44Z #8 21.58 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-04-29T04:06:44Z #8 21.59 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-04-29T04:06:44Z #8 21.72 Selecting previously unselected package libnss-systemd:amd64. +2024-04-29T04:06:44Z #8 21.73 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-29T04:06:44Z #8 21.73 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-29T04:06:44Z #8 21.85 Selecting previously unselected package libpam-systemd:amd64. +2024-04-29T04:06:44Z #8 21.85 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-04-29T04:06:44Z #8 21.86 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-29T04:06:44Z #8 21.95 Selecting previously unselected package manpages. +2024-04-29T04:06:44Z #8 21.95 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-04-29T04:06:44Z #8 21.96 Unpacking manpages (5.10-1) ... +2024-04-29T04:06:44Z #8 22.20 Selecting previously unselected package systemd-timesyncd. +2024-04-29T04:06:44Z #8 22.20 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-04-29T04:06:44Z #8 22.21 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-29T04:06:44Z #8 22.29 Selecting previously unselected package hicolor-icon-theme. +2024-04-29T04:06:44Z #8 22.29 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-04-29T04:06:44Z #8 22.30 Unpacking hicolor-icon-theme (0.17-2) ... +2024-04-29T04:06:45Z #8 22.40 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-04-29T04:06:45Z #8 22.41 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-04-29T04:06:45Z #8 22.41 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-29T04:06:45Z #8 22.53 Selecting previously unselected package libicu67:amd64. +2024-04-29T04:06:45Z #8 22.53 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-04-29T04:06:45Z #8 22.54 Unpacking libicu67:amd64 (67.1-7) ... +2024-04-29T04:06:46Z #8 24.30 Selecting previously unselected package libxml2:amd64. +2024-04-29T04:06:46Z #8 24.31 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-04-29T04:06:46Z #8 24.31 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-29T04:06:47Z #8 24.49 Selecting previously unselected package shared-mime-info. +2024-04-29T04:06:47Z #8 24.49 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-04-29T04:06:47Z #8 24.50 Unpacking shared-mime-info (2.0-1) ... +2024-04-29T04:06:47Z #8 24.72 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-04-29T04:06:47Z #8 24.72 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-04-29T04:06:47Z #8 24.73 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-29T04:06:47Z #8 24.81 Selecting previously unselected package libpng16-16:amd64. +2024-04-29T04:06:47Z #8 24.82 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-04-29T04:06:47Z #8 24.82 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-04-29T04:06:47Z #8 24.92 Selecting previously unselected package libdeflate0:amd64. +2024-04-29T04:06:47Z #8 24.92 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-04-29T04:06:47Z #8 24.94 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-04-29T04:06:47Z #8 25.00 Selecting previously unselected package libjbig0:amd64. +2024-04-29T04:06:47Z #8 25.00 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-04-29T04:06:47Z #8 25.01 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-29T04:06:47Z #8 25.06 Selecting previously unselected package libwebp6:amd64. +2024-04-29T04:06:47Z #8 25.07 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-29T04:06:47Z #8 25.07 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-29T04:06:47Z #8 25.17 Selecting previously unselected package libtiff5:amd64. +2024-04-29T04:06:47Z #8 25.17 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-04-29T04:06:47Z #8 25.18 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-29T04:06:47Z #8 25.27 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-04-29T04:06:47Z #8 25.28 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-29T04:06:47Z #8 25.28 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-29T04:06:47Z #8 25.37 Selecting previously unselected package gtk-update-icon-cache. +2024-04-29T04:06:48Z #8 25.37 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-04-29T04:06:48Z #8 25.38 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-29T04:06:48Z #8 25.47 Selecting previously unselected package adwaita-icon-theme. +2024-04-29T04:06:48Z #8 25.48 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-04-29T04:06:48Z #8 25.49 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-04-29T04:06:50Z #8 28.36 Selecting previously unselected package alsa-topology-conf. +2024-04-29T04:06:50Z #8 28.37 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-04-29T04:06:50Z #8 28.37 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-04-29T04:06:50Z #8 28.43 Selecting previously unselected package libasound2-data. +2024-04-29T04:06:51Z #8 28.43 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-04-29T04:06:51Z #8 28.44 Unpacking libasound2-data (1.2.4-1.1) ... +2024-04-29T04:06:51Z #8 28.52 Selecting previously unselected package libasound2:amd64. +2024-04-29T04:06:51Z #8 28.52 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-04-29T04:06:51Z #8 28.53 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-04-29T04:06:51Z #8 28.64 Selecting previously unselected package alsa-ucm-conf. +2024-04-29T04:06:51Z #8 28.65 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-04-29T04:06:51Z #8 28.65 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-04-29T04:06:51Z #8 28.75 Selecting previously unselected package libatspi2.0-0:amd64. +2024-04-29T04:06:51Z #8 28.76 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-04-29T04:06:51Z #8 28.77 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-29T04:06:51Z #8 28.84 Selecting previously unselected package libxi6:amd64. +2024-04-29T04:06:51Z #8 28.84 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-04-29T04:06:51Z #8 28.85 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-04-29T04:06:51Z #8 28.91 Selecting previously unselected package libxtst6:amd64. +2024-04-29T04:06:51Z #8 28.91 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-04-29T04:06:51Z #8 28.92 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-04-29T04:06:51Z #8 28.97 Selecting previously unselected package at-spi2-core. +2024-04-29T04:06:51Z #8 28.97 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-04-29T04:06:51Z #8 28.98 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-29T04:06:51Z #8 29.05 Selecting previously unselected package binutils-common:amd64. +2024-04-29T04:06:51Z #8 29.05 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-04-29T04:06:51Z #8 29.06 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-04-29T04:06:52Z #8 29.51 Selecting previously unselected package libbinutils:amd64. +2024-04-29T04:06:52Z #8 29.52 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-04-29T04:06:52Z #8 29.52 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-04-29T04:06:52Z #8 29.70 Selecting previously unselected package libctf-nobfd0:amd64. +2024-04-29T04:06:52Z #8 29.70 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-04-29T04:06:52Z #8 29.71 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-29T04:06:52Z #8 29.78 Selecting previously unselected package libctf0:amd64. +2024-04-29T04:06:52Z #8 29.78 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-04-29T04:06:52Z #8 29.79 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-04-29T04:06:52Z #8 29.84 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-04-29T04:06:52Z #8 29.85 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-04-29T04:06:52Z #8 29.86 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-29T04:06:53Z #8 30.35 Selecting previously unselected package binutils. +2024-04-29T04:06:53Z #8 30.35 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-04-29T04:06:53Z #8 30.37 Unpacking binutils (2.35.2-2) ... +2024-04-29T04:06:53Z #8 30.42 Selecting previously unselected package libisl23:amd64. +2024-04-29T04:06:53Z #8 30.43 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-04-29T04:06:53Z #8 30.43 Unpacking libisl23:amd64 (0.23-1) ... +2024-04-29T04:06:53Z #8 30.62 Selecting previously unselected package libmpfr6:amd64. +2024-04-29T04:06:53Z #8 30.62 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-04-29T04:06:53Z #8 30.63 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-04-29T04:06:53Z #8 30.88 Selecting previously unselected package libmpc3:amd64. +2024-04-29T04:06:53Z #8 30.89 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-04-29T04:06:53Z #8 30.90 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-04-29T04:06:53Z #8 30.94 Selecting previously unselected package cpp-10. +2024-04-29T04:06:53Z #8 30.95 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-04-29T04:06:53Z #8 30.95 Unpacking cpp-10 (10.2.1-6) ... +2024-04-29T04:06:55Z #8 32.66 Selecting previously unselected package cpp. +2024-04-29T04:06:55Z #8 32.67 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-04-29T04:06:55Z #8 32.67 Unpacking cpp (4:10.2.1-1) ... +2024-04-29T04:06:55Z #8 32.73 Selecting previously unselected package dbus-user-session. +2024-04-29T04:06:55Z #8 32.73 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-04-29T04:06:55Z #8 32.74 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-29T04:06:55Z #8 32.81 Selecting previously unselected package libdconf1:amd64. +2024-04-29T04:06:55Z #8 32.82 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-04-29T04:06:55Z #8 32.82 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-04-29T04:06:55Z #8 32.87 Selecting previously unselected package dconf-service. +2024-04-29T04:06:55Z #8 32.87 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-04-29T04:06:55Z #8 32.88 Unpacking dconf-service (0.38.0-2) ... +2024-04-29T04:06:55Z #8 32.92 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-04-29T04:06:55Z #8 32.93 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-04-29T04:06:55Z #8 32.94 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-29T04:06:55Z #8 32.98 Selecting previously unselected package libatk1.0-data. +2024-04-29T04:06:55Z #8 32.98 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-04-29T04:06:55Z #8 32.99 Unpacking libatk1.0-data (2.36.0-2) ... +2024-04-29T04:06:55Z #8 33.08 Selecting previously unselected package libatk1.0-0:amd64. +2024-04-29T04:06:55Z #8 33.08 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-04-29T04:06:55Z #8 33.09 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-29T04:06:55Z #8 33.15 Selecting previously unselected package libfreetype6:amd64. +2024-04-29T04:06:55Z #8 33.16 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-04-29T04:06:55Z #8 33.16 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-29T04:06:55Z #8 33.28 Selecting previously unselected package fonts-dejavu-core. +2024-04-29T04:06:55Z #8 33.28 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-04-29T04:06:55Z #8 33.30 Unpacking fonts-dejavu-core (2.37-2) ... +2024-04-29T04:06:56Z #8 33.56 Selecting previously unselected package fontconfig-config. +2024-04-29T04:06:56Z #8 33.56 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-04-29T04:06:56Z #8 33.74 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-04-29T04:06:56Z #8 33.83 Selecting previously unselected package libfontconfig1:amd64. +2024-04-29T04:06:56Z #8 33.84 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-04-29T04:06:56Z #8 33.84 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-29T04:06:56Z #8 33.92 Selecting previously unselected package libpixman-1-0:amd64. +2024-04-29T04:06:56Z #8 33.93 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-04-29T04:06:56Z #8 33.94 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-29T04:06:56Z #8 34.04 Selecting previously unselected package libxcb-render0:amd64. +2024-04-29T04:06:56Z #8 34.05 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-04-29T04:06:56Z #8 34.05 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-04-29T04:06:56Z #8 34.12 Selecting previously unselected package libxcb-shm0:amd64. +2024-04-29T04:06:56Z #8 34.12 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-04-29T04:06:56Z #8 34.13 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-04-29T04:06:56Z #8 34.20 Selecting previously unselected package libcairo2:amd64. +2024-04-29T04:06:56Z #8 34.20 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-04-29T04:06:56Z #8 34.21 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-04-29T04:06:56Z #8 34.36 Selecting previously unselected package libcairo-gobject2:amd64. +2024-04-29T04:06:56Z #8 34.36 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-04-29T04:06:56Z #8 34.37 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-29T04:06:56Z #8 34.43 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-04-29T04:06:56Z #8 34.44 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-04-29T04:06:56Z #8 34.44 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-29T04:06:57Z #8 34.52 Selecting previously unselected package libevent-2.1-7:amd64. +2024-04-29T04:06:57Z #8 34.52 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-04-29T04:06:57Z #8 34.53 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-29T04:06:57Z #8 34.60 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-04-29T04:06:57Z #8 34.61 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-04-29T04:06:57Z #8 34.61 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-29T04:06:57Z #8 34.67 Selecting previously unselected package liblcms2-2:amd64. +2024-04-29T04:06:57Z #8 34.68 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-04-29T04:06:57Z #8 34.68 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-29T04:06:57Z #8 34.76 Selecting previously unselected package libcolord2:amd64. +2024-04-29T04:06:57Z #8 34.76 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-04-29T04:06:57Z #8 34.77 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-04-29T04:06:57Z #8 34.85 Selecting previously unselected package libavahi-common-data:amd64. +2024-04-29T04:06:57Z #8 34.85 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-04-29T04:06:57Z #8 34.86 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-29T04:06:57Z #8 34.94 Selecting previously unselected package libavahi-common3:amd64. +2024-04-29T04:06:57Z #8 34.94 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-04-29T04:06:57Z #8 34.95 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-29T04:06:57Z #8 35.02 Selecting previously unselected package libavahi-client3:amd64. +2024-04-29T04:06:57Z #8 35.02 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-04-29T04:06:57Z #8 35.03 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-29T04:06:57Z #8 35.09 Selecting previously unselected package libcups2:amd64. +2024-04-29T04:06:57Z #8 35.10 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-04-29T04:06:57Z #8 35.11 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-29T04:06:57Z #8 35.22 Selecting previously unselected package libepoxy0:amd64. +2024-04-29T04:06:57Z #8 35.23 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-04-29T04:06:57Z #8 35.23 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-04-29T04:06:58Z #8 35.33 Selecting previously unselected package libfribidi0:amd64. +2024-04-29T04:06:58Z #8 35.34 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-04-29T04:06:58Z #8 35.35 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-29T04:06:58Z #8 35.42 Selecting previously unselected package libgraphite2-3:amd64. +2024-04-29T04:06:58Z #8 35.42 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-04-29T04:06:58Z #8 35.43 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-29T04:06:58Z #8 35.49 Selecting previously unselected package libharfbuzz0b:amd64. +2024-04-29T04:06:58Z #8 35.50 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-04-29T04:06:58Z #8 35.51 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-29T04:06:58Z #8 35.62 Selecting previously unselected package libjson-glib-1.0-common. +2024-04-29T04:06:58Z #8 35.63 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-04-29T04:06:58Z #8 35.63 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-04-29T04:06:58Z #8 35.71 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-04-29T04:06:58Z #8 35.71 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-04-29T04:06:58Z #8 35.72 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-29T04:06:58Z #8 35.77 Selecting previously unselected package fontconfig. +2024-04-29T04:06:58Z #8 35.78 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-04-29T04:06:58Z #8 35.78 Unpacking fontconfig (2.13.1-4.2) ... +2024-04-29T04:06:58Z #8 35.87 Selecting previously unselected package libthai-data. +2024-04-29T04:06:58Z #8 35.88 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-04-29T04:06:58Z #8 35.89 Unpacking libthai-data (0.1.28-3) ... +2024-04-29T04:06:58Z #8 35.97 Selecting previously unselected package libdatrie1:amd64. +2024-04-29T04:06:58Z #8 35.97 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-04-29T04:06:58Z #8 35.98 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-04-29T04:06:58Z #8 36.04 Selecting previously unselected package libthai0:amd64. +2024-04-29T04:06:58Z #8 36.05 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-04-29T04:06:58Z #8 36.05 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-04-29T04:06:58Z #8 36.10 Selecting previously unselected package libpango-1.0-0:amd64. +2024-04-29T04:06:58Z #8 36.11 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-04-29T04:06:58Z #8 36.12 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-29T04:06:58Z #8 36.21 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-04-29T04:06:58Z #8 36.21 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-04-29T04:06:58Z #8 36.22 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-29T04:06:58Z #8 36.27 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-04-29T04:06:58Z #8 36.27 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-04-29T04:06:58Z #8 36.28 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-29T04:06:59Z #8 36.33 Selecting previously unselected package libproxy1v5:amd64. +2024-04-29T04:06:59Z #8 36.34 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-04-29T04:06:59Z #8 36.34 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-04-29T04:06:59Z #8 36.40 Selecting previously unselected package glib-networking-common. +2024-04-29T04:06:59Z #8 36.41 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-04-29T04:06:59Z #8 36.41 Unpacking glib-networking-common (2.66.0-2) ... +2024-04-29T04:06:59Z #8 36.48 Selecting previously unselected package glib-networking-services. +2024-04-29T04:06:59Z #8 36.49 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-04-29T04:06:59Z #8 36.49 Unpacking glib-networking-services (2.66.0-2) ... +2024-04-29T04:06:59Z #8 36.54 Selecting previously unselected package gsettings-desktop-schemas. +2024-04-29T04:06:59Z #8 36.55 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-04-29T04:06:59Z #8 36.56 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-04-29T04:06:59Z #8 36.73 Selecting previously unselected package glib-networking:amd64. +2024-04-29T04:06:59Z #8 36.74 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-04-29T04:06:59Z #8 36.75 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-04-29T04:06:59Z #8 36.81 Selecting previously unselected package libsoup2.4-1:amd64. +2024-04-29T04:06:59Z #8 36.82 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-04-29T04:06:59Z #8 36.83 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-29T04:06:59Z #8 36.95 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-04-29T04:06:59Z #8 36.95 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-04-29T04:06:59Z #8 36.96 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-29T04:06:59Z #8 37.01 Selecting previously unselected package librest-0.7-0:amd64. +2024-04-29T04:06:59Z #8 37.02 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-04-29T04:06:59Z #8 37.02 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-29T04:06:59Z #8 37.08 Selecting previously unselected package libwayland-client0:amd64. +2024-04-29T04:06:59Z #8 37.09 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-29T04:06:59Z #8 37.09 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-29T04:06:59Z #8 37.14 Selecting previously unselected package libwayland-cursor0:amd64. +2024-04-29T04:06:59Z #8 37.15 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-04-29T04:06:59Z #8 37.16 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-29T04:06:59Z #8 37.22 Selecting previously unselected package libwayland-egl1:amd64. +2024-04-29T04:06:59Z #8 37.22 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-04-29T04:06:59Z #8 37.23 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-29T04:06:59Z #8 37.28 Selecting previously unselected package libxcomposite1:amd64. +2024-04-29T04:06:59Z #8 37.29 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-04-29T04:06:59Z #8 37.30 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-29T04:06:59Z #8 37.36 Selecting previously unselected package libxfixes3:amd64. +2024-04-29T04:06:59Z #8 37.36 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-04-29T04:06:59Z #8 37.37 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-29T04:07:00Z #8 37.42 Selecting previously unselected package libxcursor1:amd64. +2024-04-29T04:07:00Z #8 37.42 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-04-29T04:07:00Z #8 37.43 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-29T04:07:00Z #8 37.49 Selecting previously unselected package libxdamage1:amd64. +2024-04-29T04:07:00Z #8 37.50 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-04-29T04:07:00Z #8 37.51 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-29T04:07:00Z #8 37.57 Selecting previously unselected package libxinerama1:amd64. +2024-04-29T04:07:00Z #8 37.57 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-04-29T04:07:00Z #8 37.58 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-29T04:07:00Z #8 37.63 Selecting previously unselected package xkb-data. +2024-04-29T04:07:00Z #8 37.64 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-04-29T04:07:00Z #8 37.65 Unpacking xkb-data (2.29-2) ... +2024-04-29T04:07:00Z #8 37.92 Selecting previously unselected package libxkbcommon0:amd64. +2024-04-29T04:07:00Z #8 37.92 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-04-29T04:07:00Z #8 37.93 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-29T04:07:00Z #8 37.99 Selecting previously unselected package libxrandr2:amd64. +2024-04-29T04:07:00Z #8 38.00 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-04-29T04:07:00Z #8 38.01 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-29T04:07:00Z #8 38.06 Selecting previously unselected package libgtk-3-common. +2024-04-29T04:07:00Z #8 38.07 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-04-29T04:07:00Z #8 38.07 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-29T04:07:01Z #8 38.93 Selecting previously unselected package libgtk-3-0:amd64. +2024-04-29T04:07:01Z #8 38.94 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-04-29T04:07:01Z #8 38.95 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-29T04:07:02Z #8 39.52 Selecting previously unselected package libx11-xcb1:amd64. +2024-04-29T04:07:02Z #8 39.52 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-04-29T04:07:02Z #8 39.53 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-29T04:07:02Z #8 39.61 Selecting previously unselected package firefox-esr. +2024-04-29T04:07:02Z #8 39.61 Preparing to unpack .../099-firefox-esr_115.10.0esr-1~deb11u1_amd64.deb ... +2024-04-29T04:07:02Z #8 39.63 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-04-29T04:07:02Z #8 39.64 Unpacking firefox-esr (115.10.0esr-1~deb11u1) ... +2024-04-29T04:07:13Z #8 50.94 Selecting previously unselected package fonts-humor-sans. +2024-04-29T04:07:13Z #8 50.94 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-04-29T04:07:13Z #8 50.94 Unpacking fonts-humor-sans (1.0-4) ... +2024-04-29T04:07:13Z #8 50.98 Selecting previously unselected package libcc1-0:amd64. +2024-04-29T04:07:13Z #8 50.99 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-04-29T04:07:13Z #8 51.00 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-04-29T04:07:13Z #8 51.04 Selecting previously unselected package libgomp1:amd64. +2024-04-29T04:07:13Z #8 51.04 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-04-29T04:07:13Z #8 51.05 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-04-29T04:07:13Z #8 51.11 Selecting previously unselected package libitm1:amd64. +2024-04-29T04:07:13Z #8 51.12 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-04-29T04:07:13Z #8 51.13 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-04-29T04:07:13Z #8 51.20 Selecting previously unselected package libatomic1:amd64. +2024-04-29T04:07:13Z #8 51.21 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-04-29T04:07:13Z #8 51.21 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-04-29T04:07:13Z #8 51.27 Selecting previously unselected package libasan6:amd64. +2024-04-29T04:07:13Z #8 51.27 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-04-29T04:07:13Z #8 51.28 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-04-29T04:07:14Z #8 51.67 Selecting previously unselected package liblsan0:amd64. +2024-04-29T04:07:14Z #8 51.68 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-04-29T04:07:14Z #8 51.68 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-04-29T04:07:14Z #8 51.86 Selecting previously unselected package libtsan0:amd64. +2024-04-29T04:07:14Z #8 51.87 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-04-29T04:07:14Z #8 51.87 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-04-29T04:07:14Z #8 52.33 Selecting previously unselected package libubsan1:amd64. +2024-04-29T04:07:14Z #8 52.34 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-04-29T04:07:14Z #8 52.34 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-04-29T04:07:15Z #8 52.53 Selecting previously unselected package libquadmath0:amd64. +2024-04-29T04:07:15Z #8 52.53 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-04-29T04:07:15Z #8 52.54 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-04-29T04:07:15Z #8 52.60 Selecting previously unselected package libgcc-10-dev:amd64. +2024-04-29T04:07:15Z #8 52.60 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-04-29T04:07:15Z #8 52.61 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-29T04:07:15Z #8 53.02 Selecting previously unselected package gcc-10. +2024-04-29T04:07:15Z #8 53.02 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-04-29T04:07:15Z #8 53.03 Unpacking gcc-10 (10.2.1-6) ... +2024-04-29T04:07:18Z #8 55.66 Selecting previously unselected package gcc. +2024-04-29T04:07:18Z #8 55.66 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-04-29T04:07:18Z #8 55.67 Unpacking gcc (4:10.2.1-1) ... +2024-04-29T04:07:18Z #8 55.72 Selecting previously unselected package libva2:amd64. +2024-04-29T04:07:18Z #8 55.73 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-04-29T04:07:18Z #8 55.73 Unpacking libva2:amd64 (2.10.0-1) ... +2024-04-29T04:07:18Z #8 55.79 Selecting previously unselected package libdrm-common. +2024-04-29T04:07:18Z #8 55.79 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-04-29T04:07:18Z #8 55.80 Unpacking libdrm-common (2.4.104-1) ... +2024-04-29T04:07:18Z #8 55.85 Selecting previously unselected package libdrm2:amd64. +2024-04-29T04:07:18Z #8 55.85 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-04-29T04:07:18Z #8 55.85 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-04-29T04:07:18Z #8 55.91 Selecting previously unselected package libpciaccess0:amd64. +2024-04-29T04:07:18Z #8 55.91 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-04-29T04:07:18Z #8 55.91 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-04-29T04:07:18Z #8 55.97 Selecting previously unselected package libdrm-intel1:amd64. +2024-04-29T04:07:18Z #8 55.97 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-04-29T04:07:18Z #8 55.97 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-29T04:07:18Z #8 56.02 Selecting previously unselected package i965-va-driver:amd64. +2024-04-29T04:07:18Z #8 56.03 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-04-29T04:07:18Z #8 56.03 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-29T04:07:18Z #8 56.15 Selecting previously unselected package libigdgmm11:amd64. +2024-04-29T04:07:18Z #8 56.16 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-04-29T04:07:18Z #8 56.16 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-29T04:07:18Z #8 56.22 Selecting previously unselected package intel-media-va-driver:amd64. +2024-04-29T04:07:18Z #8 56.23 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-04-29T04:07:18Z #8 56.23 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-29T04:07:19Z #8 56.59 Selecting previously unselected package libaom0:amd64. +2024-04-29T04:07:19Z #8 56.60 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-04-29T04:07:19Z #8 56.60 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-29T04:07:19Z #8 56.83 Selecting previously unselected package libmfx1:amd64. +2024-04-29T04:07:19Z #8 56.83 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-04-29T04:07:19Z #8 56.84 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-04-29T04:07:20Z #8 57.56 Selecting previously unselected package libva-drm2:amd64. +2024-04-29T04:07:20Z #8 57.56 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-04-29T04:07:20Z #8 57.57 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-04-29T04:07:20Z #8 57.61 Selecting previously unselected package libva-x11-2:amd64. +2024-04-29T04:07:20Z #8 57.61 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-04-29T04:07:20Z #8 57.63 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-04-29T04:07:20Z #8 57.67 Selecting previously unselected package libvdpau1:amd64. +2024-04-29T04:07:20Z #8 57.67 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-04-29T04:07:20Z #8 57.68 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-04-29T04:07:20Z #8 57.73 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-04-29T04:07:20Z #8 57.73 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-04-29T04:07:20Z #8 57.73 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-29T04:07:20Z #8 57.79 Selecting previously unselected package libavutil56:amd64. +2024-04-29T04:07:20Z #8 57.79 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-29T04:07:20Z #8 57.79 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-29T04:07:20Z #8 57.89 Selecting previously unselected package libcodec2-0.9:amd64. +2024-04-29T04:07:20Z #8 57.89 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-04-29T04:07:20Z #8 57.89 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-29T04:07:21Z #8 58.99 Selecting previously unselected package libdav1d4:amd64. +2024-04-29T04:07:21Z #8 58.99 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-04-29T04:07:21Z #8 58.99 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-04-29T04:07:21Z #8 59.09 Selecting previously unselected package libgsm1:amd64. +2024-04-29T04:07:21Z #8 59.10 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-04-29T04:07:21Z #8 59.10 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-04-29T04:07:21Z #8 59.16 Selecting previously unselected package libmp3lame0:amd64. +2024-04-29T04:07:21Z #8 59.16 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-04-29T04:07:21Z #8 59.17 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-04-29T04:07:21Z #8 59.25 Selecting previously unselected package libopenjp2-7:amd64. +2024-04-29T04:07:21Z #8 59.25 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-04-29T04:07:21Z #8 59.26 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-29T04:07:21Z #8 59.32 Selecting previously unselected package libopus0:amd64. +2024-04-29T04:07:21Z #8 59.33 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-04-29T04:07:21Z #8 59.33 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-04-29T04:07:22Z #8 59.40 Selecting previously unselected package librsvg2-2:amd64. +2024-04-29T04:07:22Z #8 59.40 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-29T04:07:22Z #8 59.41 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-29T04:07:22Z #8 59.89 Selecting previously unselected package libshine3:amd64. +2024-04-29T04:07:22Z #8 59.89 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-04-29T04:07:22Z #8 59.89 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-04-29T04:07:22Z #8 59.94 Selecting previously unselected package libsnappy1v5:amd64. +2024-04-29T04:07:22Z #8 59.95 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-04-29T04:07:22Z #8 59.96 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-29T04:07:22Z #8 60.00 Selecting previously unselected package libspeex1:amd64. +2024-04-29T04:07:22Z #8 60.01 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-04-29T04:07:22Z #8 60.01 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-29T04:07:22Z #8 60.07 Selecting previously unselected package libsoxr0:amd64. +2024-04-29T04:07:22Z #8 60.07 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-04-29T04:07:22Z #8 60.08 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-04-29T04:07:22Z #8 60.14 Selecting previously unselected package libswresample3:amd64. +2024-04-29T04:07:22Z #8 60.14 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-29T04:07:22Z #8 60.15 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-29T04:07:22Z #8 60.21 Selecting previously unselected package libogg0:amd64. +2024-04-29T04:07:22Z #8 60.21 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-04-29T04:07:22Z #8 60.22 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-04-29T04:07:22Z #8 60.27 Selecting previously unselected package libtheora0:amd64. +2024-04-29T04:07:22Z #8 60.27 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-04-29T04:07:22Z #8 60.29 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-29T04:07:23Z #8 60.36 Selecting previously unselected package libtwolame0:amd64. +2024-04-29T04:07:23Z #8 60.36 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-04-29T04:07:23Z #8 60.37 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-04-29T04:07:23Z #8 60.43 Selecting previously unselected package libvorbis0a:amd64. +2024-04-29T04:07:23Z #8 60.43 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-04-29T04:07:23Z #8 60.44 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-04-29T04:07:23Z #8 60.50 Selecting previously unselected package libvorbisenc2:amd64. +2024-04-29T04:07:23Z #8 60.51 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-04-29T04:07:23Z #8 60.52 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-29T04:07:23Z #8 60.59 Selecting previously unselected package libvpx6:amd64. +2024-04-29T04:07:23Z #8 60.59 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-04-29T04:07:23Z #8 60.59 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-29T04:07:23Z #8 60.76 Selecting previously unselected package libwavpack1:amd64. +2024-04-29T04:07:23Z #8 60.77 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-04-29T04:07:23Z #8 60.77 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-04-29T04:07:23Z #8 60.83 Selecting previously unselected package libwebpmux3:amd64. +2024-04-29T04:07:23Z #8 60.83 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-04-29T04:07:23Z #8 60.83 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-29T04:07:23Z #8 60.89 Selecting previously unselected package libx264-160:amd64. +2024-04-29T04:07:23Z #8 60.90 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-04-29T04:07:23Z #8 60.91 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-29T04:07:23Z #8 61.08 Selecting previously unselected package libnuma1:amd64. +2024-04-29T04:07:23Z #8 61.08 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-04-29T04:07:23Z #8 61.09 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-29T04:07:23Z #8 61.13 Selecting previously unselected package libx265-192:amd64. +2024-04-29T04:07:23Z #8 61.14 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-04-29T04:07:23Z #8 61.14 Unpacking libx265-192:amd64 (3.4-2) ... +2024-04-29T04:07:24Z #8 61.46 Selecting previously unselected package libxvidcore4:amd64. +2024-04-29T04:07:24Z #8 61.46 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-04-29T04:07:24Z #8 61.47 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-29T04:07:24Z #8 61.54 Selecting previously unselected package libzvbi-common. +2024-04-29T04:07:24Z #8 61.55 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-04-29T04:07:24Z #8 61.56 Unpacking libzvbi-common (0.2.35-18) ... +2024-04-29T04:07:24Z #8 61.61 Selecting previously unselected package libzvbi0:amd64. +2024-04-29T04:07:24Z #8 61.62 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-04-29T04:07:24Z #8 61.62 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-04-29T04:07:24Z #8 61.85 Selecting previously unselected package libavcodec58:amd64. +2024-04-29T04:07:24Z #8 61.85 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-04-29T04:07:24Z #8 61.88 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-29T04:07:25Z #8 62.73 Selecting previously unselected package libc-dev-bin. +2024-04-29T04:07:25Z #8 62.73 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u9_amd64.deb ... +2024-04-29T04:07:25Z #8 62.74 Unpacking libc-dev-bin (2.31-13+deb11u9) ... +2024-04-29T04:07:25Z #8 62.80 Selecting previously unselected package libxpm4:amd64. +2024-04-29T04:07:25Z #8 62.80 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-04-29T04:07:25Z #8 62.81 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-29T04:07:25Z #8 62.87 Selecting previously unselected package libgd3:amd64. +2024-04-29T04:07:25Z #8 62.87 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-04-29T04:07:25Z #8 62.87 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-04-29T04:07:25Z #8 62.94 Selecting previously unselected package libc-devtools. +2024-04-29T04:07:25Z #8 62.94 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u9_amd64.deb ... +2024-04-29T04:07:25Z #8 62.94 Unpacking libc-devtools (2.31-13+deb11u9) ... +2024-04-29T04:07:25Z #8 63.00 Selecting previously unselected package linux-libc-dev:amd64. +2024-04-29T04:07:25Z #8 63.00 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-04-29T04:07:25Z #8 63.01 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-29T04:07:25Z #8 63.37 Selecting previously unselected package libcrypt-dev:amd64. +2024-04-29T04:07:25Z #8 63.37 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-04-29T04:07:25Z #8 63.38 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-29T04:07:25Z #8 63.43 Selecting previously unselected package libtirpc-dev:amd64. +2024-04-29T04:07:26Z #8 63.43 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-04-29T04:07:26Z #8 63.44 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-29T04:07:26Z #8 63.51 Selecting previously unselected package libnsl-dev:amd64. +2024-04-29T04:07:26Z #8 63.51 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-04-29T04:07:26Z #8 63.52 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-04-29T04:07:26Z #8 63.58 Selecting previously unselected package libc6-dev:amd64. +2024-04-29T04:07:26Z #8 63.58 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u9_amd64.deb ... +2024-04-29T04:07:26Z #8 63.59 Unpacking libc6-dev:amd64 (2.31-13+deb11u9) ... +2024-04-29T04:07:26Z #8 64.12 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-04-29T04:07:26Z #8 64.12 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-04-29T04:07:26Z #8 64.13 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-29T04:07:26Z #8 64.18 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-04-29T04:07:26Z #8 64.19 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-04-29T04:07:26Z #8 64.19 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-29T04:07:26Z #8 64.27 Selecting previously unselected package libdrm-radeon1:amd64. +2024-04-29T04:07:26Z #8 64.28 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-04-29T04:07:26Z #8 64.29 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-29T04:07:26Z #8 64.34 Selecting previously unselected package libelf1:amd64. +2024-04-29T04:07:26Z #8 64.34 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-04-29T04:07:26Z #8 64.35 Unpacking libelf1:amd64 (0.183-1) ... +2024-04-29T04:07:27Z #8 64.43 Selecting previously unselected package libfontenc1:amd64. +2024-04-29T04:07:27Z #8 64.43 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-04-29T04:07:27Z #8 64.44 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-29T04:07:27Z #8 64.48 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-04-29T04:07:27Z #8 64.48 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-04-29T04:07:27Z #8 64.49 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-29T04:07:27Z #8 64.54 Selecting previously unselected package libglapi-mesa:amd64. +2024-04-29T04:07:27Z #8 64.55 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-04-29T04:07:27Z #8 64.56 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-29T04:07:27Z #8 64.61 Selecting previously unselected package libz3-4:amd64. +2024-04-29T04:07:27Z #8 64.62 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-04-29T04:07:27Z #8 64.62 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-04-29T04:07:28Z #8 65.80 Selecting previously unselected package libllvm11:amd64. +2024-04-29T04:07:28Z #8 65.80 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-04-29T04:07:28Z #8 65.81 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-04-29T04:07:31Z #8 68.89 Selecting previously unselected package libsensors-config. +2024-04-29T04:07:31Z #8 68.90 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-04-29T04:07:31Z #8 68.90 Unpacking libsensors-config (1:3.6.0-7) ... +2024-04-29T04:07:31Z #8 68.95 Selecting previously unselected package libsensors5:amd64. +2024-04-29T04:07:31Z #8 68.95 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-04-29T04:07:31Z #8 69.00 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-04-29T04:07:31Z #8 69.05 Selecting previously unselected package libvulkan1:amd64. +2024-04-29T04:07:31Z #8 69.06 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-04-29T04:07:31Z #8 69.07 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-29T04:07:31Z #8 69.14 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-04-29T04:07:31Z #8 69.15 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-04-29T04:07:31Z #8 69.16 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-29T04:07:33Z #8 70.63 Selecting previously unselected package libglvnd0:amd64. +2024-04-29T04:07:33Z #8 70.64 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-04-29T04:07:33Z #8 70.64 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-04-29T04:07:33Z #8 70.70 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-04-29T04:07:33Z #8 70.71 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-04-29T04:07:33Z #8 70.71 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-29T04:07:33Z #8 70.76 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-04-29T04:07:33Z #8 70.77 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-04-29T04:07:33Z #8 70.78 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-29T04:07:33Z #8 70.83 Selecting previously unselected package libxcb-glx0:amd64. +2024-04-29T04:07:33Z #8 70.83 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-04-29T04:07:33Z #8 70.84 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-04-29T04:07:33Z #8 70.91 Selecting previously unselected package libxcb-present0:amd64. +2024-04-29T04:07:33Z #8 70.92 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-04-29T04:07:33Z #8 70.93 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-04-29T04:07:33Z #8 71.00 Selecting previously unselected package libxcb-sync1:amd64. +2024-04-29T04:07:33Z #8 71.01 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-04-29T04:07:33Z #8 71.02 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-04-29T04:07:33Z #8 71.07 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-04-29T04:07:33Z #8 71.07 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-04-29T04:07:33Z #8 71.08 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-29T04:07:33Z #8 71.13 Selecting previously unselected package libxshmfence1:amd64. +2024-04-29T04:07:33Z #8 71.14 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-04-29T04:07:33Z #8 71.14 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-04-29T04:07:33Z #8 71.19 Selecting previously unselected package libxxf86vm1:amd64. +2024-04-29T04:07:33Z #8 71.19 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-04-29T04:07:33Z #8 71.20 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-29T04:07:33Z #8 71.25 Selecting previously unselected package libglx-mesa0:amd64. +2024-04-29T04:07:33Z #8 71.25 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-04-29T04:07:33Z #8 71.26 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-29T04:07:33Z #8 71.33 Selecting previously unselected package libgtk-3-bin. +2024-04-29T04:07:33Z #8 71.34 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-04-29T04:07:34Z #8 71.35 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-29T04:07:34Z #8 71.42 Selecting previously unselected package librsvg2-common:amd64. +2024-04-29T04:07:34Z #8 71.42 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-04-29T04:07:34Z #8 71.43 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-29T04:07:34Z #8 71.49 Selecting previously unselected package libglx0:amd64. +2024-04-29T04:07:34Z #8 71.50 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-04-29T04:07:34Z #8 71.50 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-04-29T04:07:34Z #8 71.55 Selecting previously unselected package libgl1:amd64. +2024-04-29T04:07:34Z #8 71.56 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-04-29T04:07:34Z #8 71.56 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-04-29T04:07:34Z #8 71.62 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-04-29T04:07:34Z #8 71.63 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-04-29T04:07:34Z #8 71.63 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-29T04:07:34Z #8 71.69 Selecting previously unselected package libxt6:amd64. +2024-04-29T04:07:34Z #8 71.69 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-04-29T04:07:34Z #8 71.70 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-04-29T04:07:34Z #8 71.76 Selecting previously unselected package libxmu6:amd64. +2024-04-29T04:07:34Z #8 71.77 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-29T04:07:34Z #8 71.78 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-29T04:07:34Z #8 71.83 Selecting previously unselected package libxaw7:amd64. +2024-04-29T04:07:34Z #8 71.83 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-04-29T04:07:34Z #8 71.84 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-29T04:07:34Z #8 71.92 Selecting previously unselected package libxcb-randr0:amd64. +2024-04-29T04:07:34Z #8 71.93 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-04-29T04:07:34Z #8 71.94 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-04-29T04:07:34Z #8 72.00 Selecting previously unselected package libxcb-shape0:amd64. +2024-04-29T04:07:34Z #8 72.00 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-04-29T04:07:34Z #8 72.01 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-04-29T04:07:34Z #8 72.06 Selecting previously unselected package libxft2:amd64. +2024-04-29T04:07:34Z #8 72.07 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-04-29T04:07:34Z #8 72.07 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-04-29T04:07:34Z #8 72.12 Selecting previously unselected package libxkbfile1:amd64. +2024-04-29T04:07:34Z #8 72.13 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-04-29T04:07:34Z #8 72.13 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-29T04:07:34Z #8 72.35 Selecting previously unselected package libxmuu1:amd64. +2024-04-29T04:07:35Z #8 72.36 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-04-29T04:07:35Z #8 72.41 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-29T04:07:35Z #8 72.75 Selecting previously unselected package libxv1:amd64. +2024-04-29T04:07:35Z #8 72.75 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-04-29T04:07:35Z #8 72.79 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-04-29T04:07:35Z #8 72.83 Selecting previously unselected package libxxf86dga1:amd64. +2024-04-29T04:07:35Z #8 72.84 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-04-29T04:07:35Z #8 72.84 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-29T04:07:35Z #8 72.89 Selecting previously unselected package manpages-dev. +2024-04-29T04:07:35Z #8 72.90 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-04-29T04:07:35Z #8 72.90 Unpacking manpages-dev (5.10-1) ... +2024-04-29T04:07:36Z #8 73.33 Selecting previously unselected package mesa-va-drivers:amd64. +2024-04-29T04:07:36Z #8 73.34 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-04-29T04:07:36Z #8 73.34 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-29T04:07:36Z #8 73.80 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-04-29T04:07:36Z #8 73.80 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-04-29T04:07:36Z #8 73.81 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-29T04:07:36Z #8 74.30 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-04-29T04:07:36Z #8 74.30 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-04-29T04:07:36Z #8 74.31 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-29T04:07:37Z #8 75.05 Selecting previously unselected package patch. +2024-04-29T04:07:37Z #8 75.05 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-04-29T04:07:37Z #8 75.05 Unpacking patch (2.7.6-7) ... +2024-04-29T04:07:37Z #8 75.11 Selecting previously unselected package unzip. +2024-04-29T04:07:37Z #8 75.11 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-04-29T04:07:37Z #8 75.13 Unpacking unzip (6.0-26+deb11u1) ... +2024-04-29T04:07:37Z #8 75.19 Selecting previously unselected package va-driver-all:amd64. +2024-04-29T04:07:37Z #8 75.19 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-04-29T04:07:37Z #8 75.20 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-04-29T04:07:37Z #8 75.24 Selecting previously unselected package vdpau-driver-all:amd64. +2024-04-29T04:07:37Z #8 75.24 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-04-29T04:07:37Z #8 75.25 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-04-29T04:07:37Z #8 75.29 Selecting previously unselected package x11-utils. +2024-04-29T04:07:37Z #8 75.30 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-04-29T04:07:37Z #8 75.31 Unpacking x11-utils (7.7+5) ... +2024-04-29T04:07:38Z #8 75.41 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-04-29T04:07:38Z #8 75.43 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-04-29T04:07:38Z #8 75.44 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-04-29T04:07:38Z #8 75.45 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-04-29T04:07:38Z #8 75.47 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-04-29T04:07:38Z #8 75.49 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-04-29T04:07:38Z #8 75.50 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-04-29T04:07:38Z #8 75.52 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-04-29T04:07:38Z #8 75.53 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-04-29T04:07:38Z #8 75.55 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-04-29T04:07:38Z #8 75.56 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-04-29T04:07:38Z #8 75.58 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-04-29T04:07:38Z #8 75.60 Setting up libshine3:amd64 (3.1.1-2) ... +2024-04-29T04:07:38Z #8 75.61 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-04-29T04:07:38Z #8 75.63 Setting up hicolor-icon-theme (0.17-2) ... +2024-04-29T04:07:38Z #8 75.67 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-04-29T04:07:38Z #8 75.68 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-04-29T04:07:38Z #8 75.69 Setting up libicu67:amd64 (67.1-7) ... +2024-04-29T04:07:38Z #8 75.71 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-04-29T04:07:38Z #8 75.72 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-04-29T04:07:38Z #8 75.74 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-04-29T04:07:38Z #8 75.75 Setting up manpages (5.10-1) ... +2024-04-29T04:07:38Z #8 75.77 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-04-29T04:07:38Z #8 75.78 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-04-29T04:07:38Z #8 75.79 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-04-29T04:07:38Z #8 75.81 Setting up unzip (6.0-26+deb11u1) ... +2024-04-29T04:07:38Z #8 75.83 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-04-29T04:07:38Z #8 75.85 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-04-29T04:07:38Z #8 75.86 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-04-29T04:07:38Z #8 75.87 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-04-29T04:07:38Z #8 75.89 Setting up libsensors-config (1:3.6.0-7) ... +2024-04-29T04:07:38Z #8 75.92 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-04-29T04:07:38Z #8 75.93 Setting up libdeflate0:amd64 (1.7-1) ... +2024-04-29T04:07:38Z #8 75.94 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-04-29T04:07:38Z #8 75.96 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-04-29T04:07:38Z #8 75.97 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-29T04:07:38Z #8 75.98 First installation detected... +2024-04-29T04:07:38Z #8 75.99 Checking NSS setup... +2024-04-29T04:07:38Z #8 75.99 Setting up xkb-data (2.29-2) ... +2024-04-29T04:07:38Z #8 76.01 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-04-29T04:07:38Z #8 76.02 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-04-29T04:07:38Z #8 76.04 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-04-29T04:07:38Z #8 76.05 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-04-29T04:07:38Z #8 76.08 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-04-29T04:07:38Z #8 76.09 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-04-29T04:07:38Z #8 76.11 Setting up libasan6:amd64 (10.2.1-6) ... +2024-04-29T04:07:38Z #8 76.13 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-04-29T04:07:38Z #8 76.14 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-04-29T04:07:38Z #8 76.16 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-04-29T04:07:38Z #8 76.18 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-04-29T04:07:38Z #8 76.19 Setting up libasound2-data (1.2.4-1.1) ... +2024-04-29T04:07:38Z #8 76.21 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-04-29T04:07:38Z #8 76.23 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-04-29T04:07:38Z #8 76.25 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-04-29T04:07:38Z #8 76.26 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-04-29T04:07:38Z #8 76.28 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-04-29T04:07:38Z #8 76.30 Setting up libva2:amd64 (2.10.0-1) ... +2024-04-29T04:07:38Z #8 76.32 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-04-29T04:07:38Z #8 76.33 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-04-29T04:07:38Z #8 76.35 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-04-29T04:07:39Z #8 76.36 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-04-29T04:07:39Z #8 76.38 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-04-29T04:07:39Z #8 76.39 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-04-29T04:07:39Z #8 76.41 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-04-29T04:07:39Z #8 76.43 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-04-29T04:07:39Z #8 76.45 Setting up dbus (1.12.28-0+deb11u1) ... +2024-04-29T04:07:39Z #8 76.63 invoke-rc.d: could not determine current runlevel +2024-04-29T04:07:39Z #8 76.64 invoke-rc.d: policy-rc.d denied execution of start. +2024-04-29T04:07:39Z #8 76.65 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-04-29T04:07:39Z #8 76.66 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-04-29T04:07:39Z #8 76.68 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-04-29T04:07:39Z #8 76.69 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-04-29T04:07:39Z #8 76.71 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-04-29T04:07:39Z #8 76.72 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-04-29T04:07:39Z #8 76.74 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-04-29T04:07:39Z #8 76.76 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-04-29T04:07:39Z #8 76.78 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-04-29T04:07:39Z #8 77.15 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-29T04:07:39Z #8 77.15 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-04-29T04:07:39Z #8 77.16 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-04-29T04:07:39Z #8 77.18 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-04-29T04:07:39Z #8 77.19 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-04-29T04:07:39Z #8 77.21 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-04-29T04:07:39Z #8 77.23 Setting up patch (2.7.6-7) ... +2024-04-29T04:07:39Z #8 77.24 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-29T04:07:39Z #8 77.26 Setting up fonts-dejavu-core (2.37-2) ... +2024-04-29T04:07:40Z #8 77.40 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-04-29T04:07:40Z #8 77.42 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-04-29T04:07:40Z #8 77.43 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-04-29T04:07:40Z #8 77.45 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-04-29T04:07:40Z #8 77.47 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-04-29T04:07:40Z #8 77.49 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-04-29T04:07:40Z #8 77.51 Setting up libatk1.0-data (2.36.0-2) ... +2024-04-29T04:07:40Z #8 77.53 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-04-29T04:07:40Z #8 77.55 Setting up alsa-topology-conf (1.2.4-1) ... +2024-04-29T04:07:40Z #8 77.57 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-04-29T04:07:40Z #8 77.59 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-04-29T04:07:40Z #8 77.61 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-04-29T04:07:40Z #8 77.62 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-04-29T04:07:40Z #8 77.64 Setting up libvdpau1:amd64 (1.4-3) ... +2024-04-29T04:07:40Z #8 77.66 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-04-29T04:07:40Z #8 77.67 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-04-29T04:07:40Z #8 77.69 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-04-29T04:07:40Z #8 77.70 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-04-29T04:07:40Z #8 77.71 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-04-29T04:07:40Z #8 77.93 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-04-29T04:07:40Z #8 77.95 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-04-29T04:07:40Z #8 77.96 Setting up libthai-data (0.1.28-3) ... +2024-04-29T04:07:40Z #8 77.98 Setting up fonts-humor-sans (1.0-4) ... +2024-04-29T04:07:40Z #8 77.99 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-04-29T04:07:40Z #8 78.01 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-04-29T04:07:40Z #8 78.03 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-04-29T04:07:40Z #8 78.05 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-04-29T04:07:40Z #8 78.07 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-04-29T04:07:40Z #8 78.09 Setting up glib-networking-common (2.66.0-2) ... +2024-04-29T04:07:40Z #8 78.11 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-04-29T04:07:40Z #8 78.12 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-04-29T04:07:40Z #8 78.14 Setting up libisl23:amd64 (0.23-1) ... +2024-04-29T04:07:40Z #8 78.16 Setting up libc-dev-bin (2.31-13+deb11u9) ... +2024-04-29T04:07:40Z #8 78.18 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-04-29T04:07:40Z #8 78.20 Setting up libdrm-common (2.4.104-1) ... +2024-04-29T04:07:40Z #8 78.21 Setting up libelf1:amd64 (0.183-1) ... +2024-04-29T04:07:40Z #8 78.23 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-04-29T04:07:40Z #8 78.25 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-04-29T04:07:40Z #8 78.27 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-04-29T04:07:40Z #8 78.28 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-04-29T04:07:40Z #8 78.30 Setting up libzvbi-common (0.2.35-18) ... +2024-04-29T04:07:40Z #8 78.32 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-04-29T04:07:40Z #8 78.33 Setting up cpp-10 (10.2.1-6) ... +2024-04-29T04:07:40Z #8 78.35 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-04-29T04:07:40Z #8 78.36 Setting up libitm1:amd64 (10.2.1-6) ... +2024-04-29T04:07:41Z #8 78.39 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-04-29T04:07:41Z #8 78.41 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-04-29T04:07:41Z #8 78.43 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-04-29T04:07:41Z #8 78.45 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-04-29T04:07:41Z #8 78.46 Setting up libctf0:amd64 (2.35.2-2) ... +2024-04-29T04:07:41Z #8 78.49 Setting up glib-networking-services (2.66.0-2) ... +2024-04-29T04:07:41Z #8 78.50 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-04-29T04:07:41Z #8 78.53 Setting up manpages-dev (5.10-1) ... +2024-04-29T04:07:41Z #8 78.55 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-04-29T04:07:41Z #8 78.57 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-04-29T04:07:41Z #8 78.59 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-04-29T04:07:41Z #8 78.61 Setting up fontconfig-config (2.13.1-4.2) ... +2024-04-29T04:07:41Z #8 78.92 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-04-29T04:07:41Z #8 78.94 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-04-29T04:07:41Z #8 78.96 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-04-29T04:07:41Z #8 78.97 Setting up libx265-192:amd64 (3.4-2) ... +2024-04-29T04:07:41Z #8 78.99 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-04-29T04:07:41Z #8 79.01 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-04-29T04:07:41Z #8 79.03 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-04-29T04:07:41Z #8 79.04 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-04-29T04:07:41Z #8 79.06 Setting up libthai0:amd64 (0.1.28-3) ... +2024-04-29T04:07:41Z #8 79.07 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-04-29T04:07:41Z #8 79.10 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-04-29T04:07:41Z #8 79.11 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-04-29T04:07:41Z #8 79.13 Setting up shared-mime-info (2.0-1) ... +2024-04-29T04:07:44Z #8 81.87 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-04-29T04:07:44Z #8 81.88 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-04-29T04:07:44Z #8 81.90 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-04-29T04:07:44Z #8 81.93 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-04-29T04:07:44Z #8 81.94 Setting up cpp (4:10.2.1-1) ... +2024-04-29T04:07:44Z #8 81.96 Setting up libc6-dev:amd64 (2.31-13+deb11u9) ... +2024-04-29T04:07:44Z #8 81.98 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-04-29T04:07:44Z #8 81.99 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-29T04:07:44Z #8 82.04 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-04-29T04:07:44Z #8 82.07 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-04-29T04:07:44Z #8 82.08 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-04-29T04:07:44Z #8 82.09 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-04-29T04:07:44Z #8 82.11 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-04-29T04:07:44Z #8 82.13 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-04-29T04:07:44Z #8 82.14 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-04-29T04:07:44Z #8 82.15 Setting up fontconfig (2.13.1-4.2) ... +2024-04-29T04:07:46Z #8 82.17 Regenerating fonts cache... done. +2024-04-29T04:07:46Z #8 84.20 Setting up libxft2:amd64 (2.3.2-2) ... +2024-04-29T04:07:46Z #8 84.21 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-04-29T04:07:46Z #8 84.23 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-04-29T04:07:46Z #8 84.24 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-04-29T04:07:46Z #8 84.26 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-04-29T04:07:46Z #8 84.28 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-04-29T04:07:46Z #8 84.30 Setting up dconf-service (0.38.0-2) ... +2024-04-29T04:07:46Z #8 84.32 Setting up binutils (2.35.2-2) ... +2024-04-29T04:07:46Z #8 84.34 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-04-29T04:07:46Z #8 84.35 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-29T04:07:46Z #8 84.37 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-04-29T04:07:47Z #8 84.47 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-04-29T04:07:47Z #8 84.48 Setting up libgd3:amd64 (2.3.0-2) ... +2024-04-29T04:07:47Z #8 84.50 Setting up gcc-10 (10.2.1-6) ... +2024-04-29T04:07:47Z #8 84.51 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-04-29T04:07:47Z #8 84.53 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-04-29T04:07:47Z #8 84.55 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-04-29T04:07:47Z #8 84.56 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-04-29T04:07:47Z #8 84.58 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-04-29T04:07:47Z #8 84.59 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-04-29T04:07:47Z #8 84.61 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-04-29T04:07:47Z #8 84.62 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-04-29T04:07:47Z #8 84.64 Setting up libc-devtools (2.31-13+deb11u9) ... +2024-04-29T04:07:47Z #8 84.65 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-04-29T04:07:47Z #8 84.67 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-04-29T04:07:47Z #8 84.69 Setting up libglx0:amd64 (1.3.2-1) ... +2024-04-29T04:07:47Z #8 84.71 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-04-29T04:07:47Z #8 84.72 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-29T04:07:47Z #8 84.74 Setting up gcc (4:10.2.1-1) ... +2024-04-29T04:07:47Z #8 84.77 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-29T04:07:47Z #8 84.78 Setting up libgl1:amd64 (1.3.2-1) ... +2024-04-29T04:07:47Z #8 84.80 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-04-29T04:07:47Z #8 84.81 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-04-29T04:07:47Z #8 84.84 Setting up x11-utils (7.7+5) ... +2024-04-29T04:07:47Z #8 84.90 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-04-29T04:07:47Z #8 84.92 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-04-29T04:07:47Z #8 84.94 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-04-29T04:07:47Z #8 84.96 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-04-29T04:07:47Z #8 84.97 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-04-29T04:07:47Z #8 85.00 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-04-29T04:07:47Z #8 85.05 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-29T04:07:47Z #8 85.09 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-04-29T04:07:47Z #8 85.11 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-04-29T04:07:47Z #8 85.13 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-04-29T04:07:47Z #8 85.14 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-04-29T04:07:47Z #8 85.16 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-04-29T04:07:47Z #8 85.19 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-04-29T04:07:47Z #8 85.21 Setting up firefox-esr (115.10.0esr-1~deb11u1) ... +2024-04-29T04:07:47Z #8 85.23 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-04-29T04:07:47Z #8 85.23 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-04-29T04:07:47Z #8 85.24 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-04-29T04:07:47Z #8 85.24 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-04-29T04:07:47Z #8 85.25 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-04-29T04:07:47Z #8 85.30 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-04-29T04:07:49Z #8 DONE 87.1s +2024-04-29T04:07:49Z +2024-04-29T04:07:49Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-04-29T04:08:35Z #9 DONE 45.9s +2024-04-29T04:08:35Z +2024-04-29T04:08:35Z #10 [ 5/10] COPY environment.yml /environment.yml +2024-04-29T04:08:35Z #10 DONE 0.0s +2024-04-29T04:08:35Z +2024-04-29T04:08:35Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.11 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-04-29T04:11:08Z #11 152.6 Transaction +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 Prefix: /opt/conda/envs/birdy +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 Updating specs: +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 - xclim +2024-04-29T04:11:08Z #11 152.6 - ravenpy +2024-04-29T04:11:08Z #11 152.6 - python=3.11 +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 Package Version Build Channel Size +2024-04-29T04:11:08Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-29T04:11:08Z #11 152.6 Install: +2024-04-29T04:11:08Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-04-29T04:11:08Z #11 152.6 + python_abi 3.11 4_cp311 conda-forge 6kB +2024-04-29T04:11:08Z #11 152.6 + libstdcxx-ng 13.2.0 h95c4c6d_6 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB +2024-04-29T04:11:08Z #11 152.6 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB +2024-04-29T04:11:08Z #11 152.6 + ld_impl_linux-64 2.40 h55db66e_0 conda-forge 713kB +2024-04-29T04:11:08Z #11 152.6 + mpi 1.0 impi conda-forge 7kB +2024-04-29T04:11:08Z #11 152.6 + libgomp 13.2.0 hc881cc4_6 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + impi_rt 2021.12.0 ha770c72_535 conda-forge 37MB +2024-04-29T04:11:08Z #11 152.6 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-04-29T04:11:08Z #11 152.6 + libgcc-ng 13.2.0 hc881cc4_6 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-04-29T04:11:08Z #11 152.6 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-04-29T04:11:08Z #11 152.6 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-04-29T04:11:08Z #11 152.6 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-04-29T04:11:08Z #11 152.6 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-04-29T04:11:08Z #11 152.6 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-04-29T04:11:08Z #11 152.6 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-04-29T04:11:08Z #11 152.6 + libev 4.33 hd590300_2 conda-forge 113kB +2024-04-29T04:11:08Z #11 152.6 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-04-29T04:11:08Z #11 152.6 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-04-29T04:11:08Z #11 152.6 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-04-29T04:11:08Z #11 152.6 + aws-c-common 0.9.15 hd590300_0 conda-forge 227kB +2024-04-29T04:11:08Z #11 152.6 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-04-29T04:11:08Z #11 152.6 + c-ares 1.28.1 hd590300_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-04-29T04:11:08Z #11 152.6 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-04-29T04:11:08Z #11 152.6 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-04-29T04:11:08Z #11 152.6 + lzo 2.10 hd590300_1001 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-04-29T04:11:08Z #11 152.6 + giflib 5.2.2 hd590300_0 conda-forge 77kB +2024-04-29T04:11:08Z #11 152.6 + snappy 1.2.0 hdb0a2a9_1 conda-forge 42kB +2024-04-29T04:11:08Z #11 152.6 + libwebp-base 1.4.0 hd590300_0 conda-forge 439kB +2024-04-29T04:11:08Z #11 152.6 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-04-29T04:11:08Z #11 152.6 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-04-29T04:11:08Z #11 152.6 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + openssl 3.2.1 hd590300_1 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libxcrypt 4.4.36 hd590300_1 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-04-29T04:11:08Z #11 152.6 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-04-29T04:11:08Z #11 152.6 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-04-29T04:11:08Z #11 152.6 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-04-29T04:11:08Z #11 152.6 + icu 73.2 h59595ed_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-04-29T04:11:08Z #11 152.6 + libdeflate 1.20 hd590300_0 conda-forge 72kB +2024-04-29T04:11:08Z #11 152.6 + libaec 1.1.3 h59595ed_0 conda-forge 35kB +2024-04-29T04:11:08Z #11 152.6 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-04-29T04:11:08Z #11 152.6 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-04-29T04:11:08Z #11 152.6 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-04-29T04:11:08Z #11 152.6 + libgfortran5 13.2.0 h43f5ff8_6 conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-04-29T04:11:08Z #11 152.6 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB +2024-04-29T04:11:08Z #11 152.6 + libuuid 2.38.1 h0b41bf4_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libnsl 2.0.1 hd590300_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB +2024-04-29T04:11:08Z #11 152.6 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-04-29T04:11:08Z #11 152.6 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB +2024-04-29T04:11:08Z #11 152.6 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-04-29T04:11:08Z #11 152.6 + aws-c-compression 0.2.18 hce8ee76_3 conda-forge 19kB +2024-04-29T04:11:08Z #11 152.6 + aws-checksums 0.1.18 hce8ee76_3 conda-forge 50kB +2024-04-29T04:11:08Z #11 152.6 + aws-c-sdkutils 0.1.15 hce8ee76_3 conda-forge 55kB +2024-04-29T04:11:08Z #11 152.6 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-04-29T04:11:08Z #11 152.6 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-04-29T04:11:08Z #11 152.6 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-04-29T04:11:08Z #11 152.6 + spdlog 1.13.0 hd2e6256_0 conda-forge 188kB +2024-04-29T04:11:08Z #11 152.6 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-04-29T04:11:08Z #11 152.6 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-04-29T04:11:08Z #11 152.6 + s2n 1.4.12 h06160fa_0 conda-forge 347kB +2024-04-29T04:11:08Z #11 152.6 + aws-c-cal 0.6.11 heb1d5e4_0 conda-forge 46kB +2024-04-29T04:11:08Z #11 152.6 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB +2024-04-29T04:11:08Z #11 152.6 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-04-29T04:11:08Z #11 152.6 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-04-29T04:11:08Z #11 152.6 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-04-29T04:11:08Z #11 152.6 + libssh2 1.11.0 h0841786_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + tk 8.6.13 noxft_h4845f30_101 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + pcre2 10.43 hcad00b1_0 conda-forge 951kB +2024-04-29T04:11:08Z #11 152.6 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-04-29T04:11:08Z #11 152.6 + zstd 1.5.5 hfc55251_0 conda-forge 545kB +2024-04-29T04:11:08Z #11 152.6 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libsqlite 3.45.3 h2797004_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libgfortran-ng 13.2.0 h69a702a_6 conda-forge 24kB +2024-04-29T04:11:08Z #11 152.6 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-04-29T04:11:08Z #11 152.6 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-04-29T04:11:08Z #11 152.6 + readline 8.2 h8228510_1 conda-forge 281kB +2024-04-29T04:11:08Z #11 152.6 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-04-29T04:11:08Z #11 152.6 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-04-29T04:11:08Z #11 152.6 + expat 2.6.2 h59595ed_0 conda-forge 138kB +2024-04-29T04:11:08Z #11 152.6 + libxml2 2.12.6 h232c23b_2 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + ucx 1.15.0 ha691c75_8 conda-forge 7MB +2024-04-29T04:11:08Z #11 152.6 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-04-29T04:11:08Z #11 152.6 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-04-29T04:11:08Z #11 152.6 + xorg-libx11 1.8.9 h8ee46fc_0 conda-forge 828kB +2024-04-29T04:11:08Z #11 152.6 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-04-29T04:11:08Z #11 152.6 + aws-c-io 0.14.7 hbfbeace_6 conda-forge 158kB +2024-04-29T04:11:08Z #11 152.6 + libglib 2.80.0 hf2295e7_6 conda-forge 4MB +2024-04-29T04:11:08Z #11 152.6 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-04-29T04:11:08Z #11 152.6 + orc 2.0.0 h17fec99_1 conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-04-29T04:11:08Z #11 152.6 + blosc 1.21.5 hc2324a3_1 conda-forge 49kB +2024-04-29T04:11:08Z #11 152.6 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB +2024-04-29T04:11:08Z #11 152.6 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-04-29T04:11:08Z #11 152.6 + libopenblas 0.3.27 pthreads_h413a1c8_0 conda-forge 6MB +2024-04-29T04:11:08Z #11 152.6 + krb5 1.21.2 h659d440_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + sqlite 3.45.3 h2c6b66d_0 conda-forge 849kB +2024-04-29T04:11:08Z #11 152.6 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-04-29T04:11:08Z #11 152.6 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-04-29T04:11:08Z #11 152.6 + libgrpc 1.62.2 h15f2491_0 conda-forge 7MB +2024-04-29T04:11:08Z #11 152.6 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-04-29T04:11:08Z #11 152.6 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-04-29T04:11:08Z #11 152.6 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-04-29T04:11:08Z #11 152.6 + aws-c-http 0.8.1 hdb68c23_10 conda-forge 195kB +2024-04-29T04:11:08Z #11 152.6 + aws-c-event-stream 0.4.2 h01f5eca_8 conda-forge 54kB +2024-04-29T04:11:08Z #11 152.6 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-04-29T04:11:08Z #11 152.6 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-04-29T04:11:08Z #11 152.6 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-04-29T04:11:08Z #11 152.6 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-04-29T04:11:08Z #11 152.6 + libblas 3.9.0 22_linux64_openblas conda-forge 15kB +2024-04-29T04:11:08Z #11 152.6 + libpq 16.2 h33b98f1_1 conda-forge 3MB +2024-04-29T04:11:08Z #11 152.6 + libcurl 8.7.1 hca28451_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + aws-c-auth 0.7.17 he0b1f16_2 conda-forge 104kB +2024-04-29T04:11:08Z #11 152.6 + aws-c-mqtt 0.10.3 h50844eb_4 conda-forge 164kB +2024-04-29T04:11:08Z #11 152.6 + libcblas 3.9.0 22_linux64_openblas conda-forge 14kB +2024-04-29T04:11:08Z #11 152.6 + liblapack 3.9.0 22_linux64_openblas conda-forge 14kB +2024-04-29T04:11:08Z #11 152.6 + libgoogle-cloud 2.23.0 h9be4e54_1 conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB +2024-04-29T04:11:08Z #11 152.6 + cfitsio 4.4.0 hbdc6101_1 conda-forge 914kB +2024-04-29T04:11:08Z #11 152.6 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB +2024-04-29T04:11:08Z #11 152.6 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-04-29T04:11:08Z #11 152.6 + proj 9.3.1 h1d62c97_0 conda-forge 3MB +2024-04-29T04:11:08Z #11 152.6 + aws-c-s3 0.5.7 hb7bd14b_1 conda-forge 108kB +2024-04-29T04:11:08Z #11 152.6 + libgoogle-cloud-storage 2.23.0 hc7a4891_1 conda-forge 753kB +2024-04-29T04:11:08Z #11 152.6 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB +2024-04-29T04:11:08Z #11 152.6 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-04-29T04:11:08Z #11 152.6 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-04-29T04:11:08Z #11 152.6 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB +2024-04-29T04:11:08Z #11 152.6 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB +2024-04-29T04:11:08Z #11 152.6 + aws-crt-cpp 0.26.6 hf567797_4 conda-forge 335kB +2024-04-29T04:11:08Z #11 152.6 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB +2024-04-29T04:11:08Z #11 152.6 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-04-29T04:11:08Z #11 152.6 + aws-sdk-cpp 1.11.267 hbf3e495_6 conda-forge 4MB +2024-04-29T04:11:08Z #11 152.6 + esmf 8.6.1 nompi_h7b237b1_0 conda-forge 24MB +2024-04-29T04:11:08Z #11 152.6 + libarrow 15.0.2 h07fc4ce_5_cpu conda-forge 8MB +2024-04-29T04:11:08Z #11 152.6 + tiledb 2.21.2 h8cb5cbd_3 conda-forge 4MB +2024-04-29T04:11:08Z #11 152.6 + libparquet 15.0.2 hacf5a1f_5_cpu conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + libarrow-gandiva 15.0.2 hc1954e9_5_cpu conda-forge 898kB +2024-04-29T04:11:08Z #11 152.6 + libarrow-flight 15.0.2 hc4f8a93_5_cpu conda-forge 510kB +2024-04-29T04:11:08Z #11 152.6 + libarrow-acero 15.0.2 hbabe93e_5_cpu conda-forge 600kB +2024-04-29T04:11:08Z #11 152.6 + libarrow-flight-sql 15.0.2 he4f5ca8_5_cpu conda-forge 197kB +2024-04-29T04:11:08Z #11 152.6 + libarrow-dataset 15.0.2 hbabe93e_5_cpu conda-forge 588kB +2024-04-29T04:11:08Z #11 152.6 + libarrow-substrait 15.0.2 he4f5ca8_5_cpu conda-forge 522kB +2024-04-29T04:11:08Z #11 152.6 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-04-29T04:11:08Z #11 152.6 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-04-29T04:11:08Z #11 152.6 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-04-29T04:11:08Z #11 152.6 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-04-29T04:11:08Z #11 152.6 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-04-29T04:11:08Z #11 152.6 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB +2024-04-29T04:11:08Z #11 152.6 + fonts-conda-forge 1 0 conda-forge 4kB +2024-04-29T04:11:08Z #11 152.6 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-04-29T04:11:08Z #11 152.6 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB +2024-04-29T04:11:08Z #11 152.6 + python 3.11.9 hb806964_0_cpython conda-forge 31MB +2024-04-29T04:11:08Z #11 152.6 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-04-29T04:11:08Z #11 152.6 + poppler 24.03.0 h590f24d_0 conda-forge 2MB +2024-04-29T04:11:08Z #11 152.6 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB +2024-04-29T04:11:08Z #11 152.6 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB +2024-04-29T04:11:08Z #11 152.6 + setuptools 69.5.1 pyhd8ed1ab_0 conda-forge 502kB +2024-04-29T04:11:08Z #11 152.6 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB +2024-04-29T04:11:08Z #11 152.6 + joblib 1.4.0 pyhd8ed1ab_0 conda-forge 220kB +2024-04-29T04:11:08Z #11 152.6 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB +2024-04-29T04:11:08Z #11 152.6 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB +2024-04-29T04:11:08Z #11 152.6 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-29T04:11:08Z #11 152.6 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-04-29T04:11:08Z #11 152.6 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-04-29T04:11:08Z #11 152.6 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-29T04:11:08Z #11 152.6 + networkx 3.3 pyhd8ed1ab_1 conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-04-29T04:11:08Z #11 152.6 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-04-29T04:11:08Z #11 152.6 + idna 3.7 pyhd8ed1ab_0 conda-forge 53kB +2024-04-29T04:11:08Z #11 152.6 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-04-29T04:11:08Z #11 152.6 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-04-29T04:11:08Z #11 152.6 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-04-29T04:11:08Z #11 152.6 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB +2024-04-29T04:11:08Z #11 152.6 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-04-29T04:11:08Z #11 152.6 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-04-29T04:11:08Z #11 152.6 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-04-29T04:11:08Z #11 152.6 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-04-29T04:11:08Z #11 152.6 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-04-29T04:11:08Z #11 152.6 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-04-29T04:11:08Z #11 152.6 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-04-29T04:11:08Z #11 152.6 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-04-29T04:11:08Z #11 152.6 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-04-29T04:11:08Z #11 152.6 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-04-29T04:11:08Z #11 152.6 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-04-29T04:11:08Z #11 152.6 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-04-29T04:11:08Z #11 152.6 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-04-29T04:11:08Z #11 152.6 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB +2024-04-29T04:11:08Z #11 152.6 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB +2024-04-29T04:11:08Z #11 152.6 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-04-29T04:11:08Z #11 152.6 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-04-29T04:11:08Z #11 152.6 + platformdirs 4.2.1 pyhd8ed1ab_0 conda-forge 20kB +2024-04-29T04:11:08Z #11 152.6 + typing_extensions 4.11.0 pyha770c72_0 conda-forge 38kB +2024-04-29T04:11:08Z #11 152.6 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-04-29T04:11:08Z #11 152.6 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB +2024-04-29T04:11:08Z #11 152.6 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB +2024-04-29T04:11:08Z #11 152.6 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-04-29T04:11:08Z #11 152.6 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-04-29T04:11:08Z #11 152.6 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-04-29T04:11:08Z #11 152.6 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-04-29T04:11:08Z #11 152.6 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-04-29T04:11:08Z #11 152.6 + pytools 2024.1.2 pyhd8ed1ab_0 conda-forge 72kB +2024-04-29T04:11:08Z #11 152.6 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-04-29T04:11:08Z #11 152.6 + typing-extensions 4.11.0 hd8ed1ab_0 conda-forge 10kB +2024-04-29T04:11:08Z #11 152.6 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB +2024-04-29T04:11:08Z #11 152.6 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB +2024-04-29T04:11:08Z #11 152.6 + jsonpickle 3.0.4 pyhd8ed1ab_0 conda-forge 39kB +2024-04-29T04:11:08Z #11 152.6 + mpi4py 3.1.6 py311he9ffdee_0 conda-forge 567kB +2024-04-29T04:11:08Z #11 152.6 + brotli-python 1.1.0 py311hb755f60_1 conda-forge 351kB +2024-04-29T04:11:08Z #11 152.6 + lz4 4.3.3 py311h38e4bf4_0 conda-forge 40kB +2024-04-29T04:11:08Z #11 152.6 + tornado 6.4 py311h459d7ec_0 conda-forge 853kB +2024-04-29T04:11:08Z #11 152.6 + psutil 5.9.8 py311h459d7ec_0 conda-forge 506kB +2024-04-29T04:11:08Z #11 152.6 + msgpack-python 1.0.7 py311h9547e67_0 conda-forge 204kB +2024-04-29T04:11:08Z #11 152.6 + markupsafe 2.1.5 py311h459d7ec_0 conda-forge 28kB +2024-04-29T04:11:08Z #11 152.6 + pillow 10.3.0 py311h18e6fac_0 conda-forge 43MB +2024-04-29T04:11:08Z #11 152.6 + kiwisolver 1.4.5 py311h9547e67_1 conda-forge 73kB +2024-04-29T04:11:08Z #11 152.6 + llvmlite 0.42.0 py311ha6695c7_1 conda-forge 3MB +2024-04-29T04:11:08Z #11 152.6 + rtree 1.2.0 py311h3bb2b0f_0 conda-forge 64kB +2024-04-29T04:11:08Z #11 152.6 + pyyaml 6.0.1 py311h459d7ec_1 conda-forge 201kB +2024-04-29T04:11:08Z #11 152.6 + raven-hydro 0.2.4 py311h14de304_1 conda-forge 786kB +2024-04-29T04:11:08Z #11 152.6 + numpy 1.26.4 py311h64a7726_0 conda-forge 8MB +2024-04-29T04:11:08Z #11 152.6 + lxml 5.2.1 py311hc0a218f_0 conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + multiprocess 0.70.16 py311h459d7ec_0 conda-forge 348kB +2024-04-29T04:11:08Z #11 152.6 + fonttools 4.51.0 py311h459d7ec_0 conda-forge 3MB +2024-04-29T04:11:08Z #11 152.6 + pyproj 3.6.1 py311hca0b8b9_5 conda-forge 552kB +2024-04-29T04:11:08Z #11 152.6 + cytoolz 0.12.3 py311h459d7ec_0 conda-forge 396kB +2024-04-29T04:11:08Z #11 152.6 + pydantic-core 2.18.2 py311h5ecf98a_0 conda-forge 2MB +2024-04-29T04:11:08Z #11 152.6 + pyarrow 15.0.2 py311hd5e4297_5_cpu conda-forge 5MB +2024-04-29T04:11:08Z #11 152.6 + contourpy 1.2.1 py311h9547e67_0 conda-forge 259kB +2024-04-29T04:11:08Z #11 152.6 + gdal 3.8.4 py311h8be719e_5 conda-forge 2MB +2024-04-29T04:11:08Z #11 152.6 + cftime 1.6.3 py311h1f0f07a_0 conda-forge 248kB +2024-04-29T04:11:08Z #11 152.6 + numba 0.59.1 py311h96b013e_0 conda-forge 6MB +2024-04-29T04:11:08Z #11 152.6 + bottleneck 1.3.8 py311h1f0f07a_0 conda-forge 143kB +2024-04-29T04:11:08Z #11 152.6 + h5py 3.11.0 nompi_py311hebc2b07_100 conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + pandas 2.2.2 py311h320fe9a_0 conda-forge 16MB +2024-04-29T04:11:08Z #11 152.6 + shapely 2.0.4 py311h2032efe_0 conda-forge 577kB +2024-04-29T04:11:08Z #11 152.6 + scipy 1.13.0 py311h64a7726_0 conda-forge 17MB +2024-04-29T04:11:08Z #11 152.6 + matplotlib-base 3.8.4 py311h54ef318_0 conda-forge 8MB +2024-04-29T04:11:08Z #11 152.6 + pyogrio 0.7.2 py311hf8e0aa6_1 conda-forge 663kB +2024-04-29T04:11:08Z #11 152.6 + netcdf4 1.6.5 nompi_py311he8ad708_100 conda-forge 556kB +2024-04-29T04:11:08Z #11 152.6 + fiona 1.9.6 py311hf8e0aa6_0 conda-forge 993kB +2024-04-29T04:11:08Z #11 152.6 + scikit-learn 1.4.2 py311hc009520_0 conda-forge 10MB +2024-04-29T04:11:08Z #11 152.6 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-04-29T04:11:08Z #11 152.6 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-04-29T04:11:08Z #11 152.6 + yamale 5.0.0 pyhca7485f_0 conda-forge 45kB +2024-04-29T04:11:08Z #11 152.6 + dask-core 2024.4.2 pyhd8ed1ab_0 conda-forge 881kB +2024-04-29T04:11:08Z #11 152.6 + esmpy 8.6.1 pyhc1e730c_0 conda-forge 2MB +2024-04-29T04:11:08Z #11 152.6 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-04-29T04:11:08Z #11 152.6 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-04-29T04:11:08Z #11 152.6 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-04-29T04:11:08Z #11 152.6 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-04-29T04:11:08Z #11 152.6 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-04-29T04:11:08Z #11 152.6 + pydantic 2.7.1 pyhd8ed1ab_0 conda-forge 282kB +2024-04-29T04:11:08Z #11 152.6 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-04-29T04:11:08Z #11 152.6 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB +2024-04-29T04:11:08Z #11 152.6 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB +2024-04-29T04:11:08Z #11 152.6 + geopandas-base 0.14.4 pyha770c72_0 conda-forge 1MB +2024-04-29T04:11:08Z #11 152.6 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-04-29T04:11:08Z #11 152.6 + properscoring 0.1 py_0 conda-forge 22kB +2024-04-29T04:11:08Z #11 152.6 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-04-29T04:11:08Z #11 152.6 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-04-29T04:11:08Z #11 152.6 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-04-29T04:11:08Z #11 152.6 + bokeh 3.4.1 pyhd8ed1ab_0 conda-forge 5MB +2024-04-29T04:11:08Z #11 152.6 + branca 0.7.2 pyhd8ed1ab_0 conda-forge 29kB +2024-04-29T04:11:08Z #11 152.6 + dask-expr 1.0.13 pyhd8ed1ab_0 conda-forge 151kB +2024-04-29T04:11:08Z #11 152.6 + distributed 2024.4.2 pyhd8ed1ab_0 conda-forge 795kB +2024-04-29T04:11:08Z #11 152.6 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-04-29T04:11:08Z #11 152.6 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-04-29T04:11:08Z #11 152.6 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-04-29T04:11:08Z #11 152.6 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-04-29T04:11:08Z #11 152.6 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-04-29T04:11:08Z #11 152.6 + dask 2024.4.2 pyhd8ed1ab_0 conda-forge 8kB +2024-04-29T04:11:08Z #11 152.6 + xesmf 0.8.5 pyhd8ed1ab_0 conda-forge 45kB +2024-04-29T04:11:08Z #11 152.6 + geopandas 0.14.4 pyhd8ed1ab_0 conda-forge 8kB +2024-04-29T04:11:08Z #11 152.6 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-04-29T04:11:08Z #11 152.6 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-04-29T04:11:08Z #11 152.6 + rasterio 1.3.9 py311ha38370a_2 conda-forge 8MB +2024-04-29T04:11:08Z #11 152.6 + statsmodels 0.14.1 py311h1f0f07a_0 conda-forge 12MB +2024-04-29T04:11:08Z #11 152.6 + rioxarray 0.15.5 pyhd8ed1ab_0 conda-forge 51kB +2024-04-29T04:11:08Z #11 152.6 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB +2024-04-29T04:11:08Z #11 152.6 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-04-29T04:11:08Z #11 152.6 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB +2024-04-29T04:11:08Z #11 152.6 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-04-29T04:11:08Z #11 152.6 + ravenpy 0.14.0 pyhd8ed1ab_1 conda-forge 6MB +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 Summary: +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 Install: 298 packages +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 Total download: 485MB +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:11:08Z #11 152.6 +2024-04-29T04:12:44Z #11 248.8 +2024-04-29T04:12:44Z #11 248.8 Looking for: ['xclim', 'ravenpy', 'python=3.11'] +2024-04-29T04:12:44Z #11 248.8 +2024-04-29T04:12:44Z #11 248.8 +2024-04-29T04:12:44Z #11 248.8 Downloading and Extracting Packages: ...working... done +2024-04-29T04:12:48Z #11 248.8 Preparing transaction: ...working... done +2024-04-29T04:13:02Z #11 253.1 Verifying transaction: ...working... done +2024-04-29T04:13:44Z #11 267.2 Executing transaction: ...working... done +2024-04-29T04:13:44Z #11 309.2 +2024-04-29T04:13:44Z #11 309.2 To activate this environment, use +2024-04-29T04:13:44Z #11 309.2 +2024-04-29T04:13:44Z #11 309.2 $ mamba activate birdy +2024-04-29T04:13:44Z #11 309.2 +2024-04-29T04:13:44Z #11 309.2 To deactivate an active environment, use +2024-04-29T04:13:44Z #11 309.2 +2024-04-29T04:13:44Z #11 309.2 $ mamba deactivate +2024-04-29T04:13:44Z #11 309.2 +2024-04-29T04:13:48Z #11 312.8 Channels: +2024-04-29T04:13:48Z #11 312.8 - conda-forge +2024-04-29T04:13:48Z #11 312.8 - cdat +2024-04-29T04:13:48Z #11 312.8 - bokeh +2024-04-29T04:13:48Z #11 312.8 - pyviz/label/dev +2024-04-29T04:13:48Z #11 312.8 - defaults +2024-04-29T04:13:48Z #11 312.8 Platform: linux-64 +2024-04-29T04:14:25Z #11 312.8 Collecting package metadata (repodata.json): ...working... done +2024-04-29T04:15:26Z #11 350.1 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:15:26Z #11 411.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-04-29T04:20:05Z #11 689.5 done +2024-04-29T04:21:53Z #11 798.2 +2024-04-29T04:21:53Z #11 798.2 Downloading and Extracting Packages: ...working... done +2024-04-29T04:22:00Z #11 798.2 Preparing transaction: ...working... done +2024-04-29T04:22:23Z #11 805.1 Verifying transaction: ...working... done +2024-04-29T04:23:17Z #11 828.1 Executing transaction: ...working... /opt/conda/envs/birdy/lib/python3.11/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-04-29T04:23:17Z #11 881.6 given by the platformdirs library. To remove this warning and +2024-04-29T04:23:17Z #11 881.6 see the appropriate new directories, set the environment variable +2024-04-29T04:23:17Z #11 881.6 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-04-29T04:23:17Z #11 881.6 The use of platformdirs will be the default in `jupyter_core` v6 +2024-04-29T04:23:17Z #11 881.6 from . import paths +2024-04-29T04:23:17Z #11 881.6 Enabling: jupyterlab_git +2024-04-29T04:23:17Z #11 881.6 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-29T04:23:17Z #11 881.6 - Validating... +2024-04-29T04:23:17Z #11 881.6 jupyterlab_git OK +2024-04-29T04:23:17Z #11 881.6 +2024-04-29T04:23:17Z #11 881.6 done +2024-04-29T04:24:05Z #11 889.1 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-04-29T04:24:05Z #11 929.6 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.te84a3xj.requirements.txt', '--exists-action=b'] +2024-04-29T04:24:05Z #11 929.6 Pip subprocess output: +2024-04-29T04:24:05Z #11 929.6 Collecting xncml (from -r /condaenv.te84a3xj.requirements.txt (line 1)) +2024-04-29T04:24:05Z #11 929.6 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting hsclient (from -r /condaenv.te84a3xj.requirements.txt (line 2)) +2024-04-29T04:24:05Z #11 929.6 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting fstd2nc (from -r /condaenv.te84a3xj.requirements.txt (line 3)) +2024-04-29T04:24:05Z #11 929.6 Downloading fstd2nc-0.20240401.0.tar.gz (166 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.9/166.9 kB 10.5 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Installing build dependencies: started +2024-04-29T04:24:05Z #11 929.6 Installing build dependencies: finished with status 'done' +2024-04-29T04:24:05Z #11 929.6 Getting requirements to build wheel: started +2024-04-29T04:24:05Z #11 929.6 Getting requirements to build wheel: finished with status 'done' +2024-04-29T04:24:05Z #11 929.6 Installing backend dependencies: started +2024-04-29T04:24:05Z #11 929.6 Installing backend dependencies: finished with status 'done' +2024-04-29T04:24:05Z #11 929.6 Preparing metadata (pyproject.toml): started +2024-04-29T04:24:05Z #11 929.6 Preparing metadata (pyproject.toml): finished with status 'done' +2024-04-29T04:24:05Z #11 929.6 Collecting figanos (from -r /condaenv.te84a3xj.requirements.txt (line 4)) +2024-04-29T04:24:05Z #11 929.6 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting pixiedust (from -r /condaenv.te84a3xj.requirements.txt (line 5)) +2024-04-29T04:24:05Z #11 929.6 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 21.9 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Preparing metadata (setup.py): started +2024-04-29T04:24:05Z #11 929.6 Preparing metadata (setup.py): finished with status 'done' +2024-04-29T04:24:05Z #11 929.6 Collecting ipython_blocking (from -r /condaenv.te84a3xj.requirements.txt (line 6)) +2024-04-29T04:24:05Z #11 929.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting jupyternotify (from -r /condaenv.te84a3xj.requirements.txt (line 7)) +2024-04-29T04:24:05Z #11 929.6 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-04-29T04:24:05Z #11 929.6 Preparing metadata (setup.py): started +2024-04-29T04:24:05Z #11 929.6 Preparing metadata (setup.py): finished with status 'done' +2024-04-29T04:24:05Z #11 929.6 Collecting jupyterlab-logout (from -r /condaenv.te84a3xj.requirements.txt (line 8)) +2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.te84a3xj.requirements.txt (line 9)) +2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting pytest-tornasync (from -r /condaenv.te84a3xj.requirements.txt (line 10)) +2024-04-29T04:24:05Z #11 929.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting xmltodict (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) +2024-04-29T04:24:05Z #11 929.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting xsdata (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) +2024-04-29T04:24:05Z #11 929.6 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (2023.8.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (1.6.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (1.6.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (2024.4.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (5.9.8) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (69.5.1) +2024-04-29T04:24:05Z #11 929.6 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) +2024-04-29T04:24:05Z #11 929.6 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.31.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.0.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fstd2nc->-r /condaenv.te84a3xj.requirements.txt (line 3)) (1.24.4) +2024-04-29T04:24:05Z #11 929.6 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.te84a3xj.requirements.txt (line 3)) +2024-04-29T04:24:05Z #11 929.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.23.0) +2024-04-29T04:24:05Z #11 929.6 Collecting cairosvg (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) +2024-04-29T04:24:05Z #11 929.6 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.14.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.8.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.1.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (4.2.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (6.0.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.13.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.22.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.47.0) +2024-04-29T04:24:05Z #11 929.6 Collecting geojson (from pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) +2024-04-29T04:24:05Z #11 929.6 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting astunparse (from pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) +2024-04-29T04:24:05Z #11 929.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) (3.6) +2024-04-29T04:24:05Z #11 929.6 Collecting colour (from pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) +2024-04-29T04:24:05Z #11 929.6 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (8.22.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (8.1.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.7.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (1.0.0) +2024-04-29T04:24:05Z #11 929.6 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) +2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab-4.1.8-py3-none-any.whl.metadata (16 kB) +2024-04-29T04:24:05Z #11 929.6 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-04-29T04:24:05Z #11 929.6 Collecting jupyterlab-logout (from -r /condaenv.te84a3xj.requirements.txt (line 8)) +2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.6.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (3.6.7) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (24.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (6.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (5.7.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.27.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.14.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.2.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.8.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.0.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (6.5.6) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (3.1.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest-tornasync->-r /condaenv.te84a3xj.requirements.txt (line 10)) (8.2.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.te84a3xj.requirements.txt (line 3)) (2024.1) +2024-04-29T04:24:05Z #11 929.6 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) +2024-04-29T04:24:05Z #11 929.6 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.7.1) +2024-04-29T04:24:05Z #11 929.6 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) +2024-04-29T04:24:05Z #11 929.6 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (0.6.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pydantic-core==2.18.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.18.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (4.11.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.te84a3xj.requirements.txt (line 10)) (2.0.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pluggy<2.0,>=1.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.te84a3xj.requirements.txt (line 10)) (1.5.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (24.0.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.3.8) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.9.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (8.1.7) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.0.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.0.6) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.59.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.23) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.4.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.13.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.14.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (3.0.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (2024.3.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (1.4.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (0.12.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (7.1.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.9.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2024.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from astunparse->pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) (0.43.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from astunparse->pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) (1.16.0) +2024-04-29T04:24:05Z #11 929.6 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) +2024-04-29T04:24:05Z #11 929.6 Downloading cairocffi-1.7.0-py3-none-any.whl.metadata (3.3 kB) +2024-04-29T04:24:05Z #11 929.6 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) +2024-04-29T04:24:05Z #11 929.6 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.7.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (9.4.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.3.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.0.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyshp>=2.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.3.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyproj>=3.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.5.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.2.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.12.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (4.51.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.4.5) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.1.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.9.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (5.1.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.19.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.1.7) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (3.0.42) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (2.17.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.6.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (5.14.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (4.9.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.2.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (4.0.10) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (3.0.10) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (5.5.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (6.6.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (7.16.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (6.29.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (7.4.9) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (5.10.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (3.3.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (3.7) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.0.7) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2024.2.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests-oauthlib->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (3.2.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.34.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2023.8.12) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (23.2.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.1.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.7.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (4.0.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (3.17.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.8.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.1.5) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (1.6.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (24.0.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (4.3.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: argon2-cffi>=21.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (23.1.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.10.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-server-terminals>=0.4.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.5.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: overrides>=5.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (7.7.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: prometheus-client>=0.9 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.20.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.8.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.18.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: websocket-client>=1.7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.8.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.9.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.8.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.5.9) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.14.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.9.25) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (4.21.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (4.12.3) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (6.1.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (0.3.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (3.0.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (1.5.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (2.19.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.11/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.2.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.2.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.11/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (1.0.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.7.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.11/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.2.13) +2024-04-29T04:24:05Z #11 929.6 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) +2024-04-29T04:24:05Z #11 929.6 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.4.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.4.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.16.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.5.1) +2024-04-29T04:24:05Z #11 929.6 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) +2024-04-29T04:24:05Z #11 929.6 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (1.8.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.42.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (2.4.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (2.0.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (2.4.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.2.2) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.5.6) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.3.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.11/site-packages (from argon2-cffi>=21.1->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (21.2.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.22) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2023.12.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.35.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.18.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.0.7) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.1.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.1.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (22.1.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.19.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (2.5) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.5.1) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (20.11.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.4) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.3.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.13) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.3.0) +2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.9.0.20240316) +2024-04-29T04:24:05Z #11 929.6 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 47.7 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.3 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 38.5 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 7.2 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 5.1 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading xsdata-24.4-py3-none-any.whl (229 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 27.7 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 27.5 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Downloading cairocffi-1.7.0-py3-none-any.whl (75 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.4/75.4 kB 10.8 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-04-29T04:24:05Z #11 929.6 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 30.2 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.7 MB/s eta 0:00:00 +2024-04-29T04:24:05Z #11 929.6 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify +2024-04-29T04:24:05Z #11 929.6 Building wheel for fstd2nc (pyproject.toml): started +2024-04-29T04:24:05Z #11 929.6 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-04-29T04:24:05Z #11 929.6 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.0-py3-none-any.whl size=169076 sha256=c3f63f9947f05d628a5cc287139fb99e667f6b3c02b89195514981278fb4f028 +2024-04-29T04:24:05Z #11 929.6 Stored in directory: /root/.cache/pip/wheels/a3/77/15/800093c84a9d638eae4a0deec59311ad878b67b156be30cae8 +2024-04-29T04:24:05Z #11 929.6 Building wheel for pixiedust (setup.py): started +2024-04-29T04:24:05Z #11 929.6 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-04-29T04:24:05Z #11 929.6 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=7f060aba45d275968f8513c41a29a63582d4154007bef0c455b14a34e1f16327 +2024-04-29T04:24:05Z #11 929.6 Stored in directory: /root/.cache/pip/wheels/95/07/18/a3e64aff394679af4a7ec0192ecae66f2725617c23dc8810fa +2024-04-29T04:24:05Z #11 929.6 Building wheel for jupyternotify (setup.py): started +2024-04-29T04:24:05Z #11 929.6 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-04-29T04:24:05Z #11 929.6 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=19c948dcba2377933e073dfd140e57a7f234cade372a46df8200f3d4c576e3dc +2024-04-29T04:24:05Z #11 929.6 Stored in directory: /root/.cache/pip/wheels/ed/19/e2/59939d0f3bcf11547b07e9af34df315f836561f0c2f59acc6c +2024-04-29T04:24:05Z #11 929.6 Successfully built fstd2nc pixiedust jupyternotify +2024-04-29T04:24:05Z #11 929.6 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-04-29T04:24:05Z #11 929.6 Successfully installed astunparse-1.6.3 cairocffi-1.7.0 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.0 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 +2024-04-29T04:24:05Z #11 929.6 +2024-04-29T04:24:05Z #11 929.6 done +2024-04-29T04:24:05Z #11 929.6 # +2024-04-29T04:24:05Z #11 929.6 # To activate this environment, use +2024-04-29T04:24:05Z #11 929.6 # +2024-04-29T04:24:05Z #11 929.6 # $ conda activate birdy +2024-04-29T04:24:05Z #11 929.6 # +2024-04-29T04:24:05Z #11 929.6 # To deactivate an active environment, use +2024-04-29T04:24:05Z #11 929.6 # +2024-04-29T04:24:05Z #11 929.6 # $ conda deactivate +2024-04-29T04:24:05Z #11 929.6 +2024-04-29T04:24:17Z #11 942.3 Will remove 772 (1.24 GB) tarball(s). +2024-04-29T04:24:17Z #11 942.3 Will remove 1 index cache(s). +2024-04-29T04:24:17Z #11 942.3 Will remove 147 (1.36 GB) package(s). +2024-04-29T04:24:17Z #11 942.3 There are no tempfile(s) to remove. +2024-04-29T04:24:17Z #11 942.3 There are no logfile(s) to remove. +2024-04-29T04:24:18Z #11 DONE 943.1s +2024-04-29T04:24:18Z +2024-04-29T04:24:18Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2024-04-29T04:24:20Z #12 1.268 0.00s - Debugger warning: It seems that frozen modules are being used, which may +2024-04-29T04:24:20Z #12 1.268 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +2024-04-29T04:24:20Z #12 1.268 0.00s - to python to disable frozen modules. +2024-04-29T04:24:20Z #12 1.268 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +2024-04-29T04:24:20Z #12 1.333 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-04-29T04:24:20Z #12 DONE 1.5s +2024-04-29T04:24:20Z +2024-04-29T04:24:20Z #13 [ 8/10] RUN jupyter lab build +2024-04-29T04:24:22Z #13 1.963 [LabBuildApp] JupyterLab 3.6.7 +2024-04-29T04:24:22Z #13 1.964 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2024-04-29T04:24:22Z #13 2.605 [LabBuildApp] Building jupyterlab assets (production, minimized) +2024-04-29T04:24:22Z #13 2.622 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. +2024-04-29T04:24:22Z #13 2.622 +2024-04-29T04:26:38Z #13 2.627 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ +2024-04-29T04:26:38Z #13 DONE 138.0s +2024-04-29T04:26:38Z +2024-04-29T04:26:38Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-04-29T04:26:38Z #14 0.608 Enabling: voila +2024-04-29T04:26:38Z #14 0.608 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-29T04:26:38Z #14 0.610 - Validating... +2024-04-29T04:26:39Z #14 1.275 voila 0.5.6 OK +2024-04-29T04:26:39Z #14 1.648 Enabling: panel.io.jupyter_server_extension +2024-04-29T04:26:40Z #14 1.648 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-04-29T04:26:40Z #14 1.650 - Validating... +2024-04-29T04:26:41Z #14 3.251 panel.io.jupyter_server_extension OK +2024-04-29T04:26:42Z #14 3.739 - Validating... +2024-04-29T04:26:42Z #14 4.545 dask_labextension 6.2.0 OK +2024-04-29T04:26:42Z #14 4.545 - Validating... +2024-04-29T04:26:42Z #14 4.548 jupyter_archive 3.3.4 OK +2024-04-29T04:26:42Z #14 4.548 - Validating... +2024-04-29T04:26:42Z #14 4.548 jupyter_server_proxy 4.1.1-0.dev OK +2024-04-29T04:26:42Z #14 4.548 - Validating... +2024-04-29T04:26:43Z #14 4.675 jupyter_resource_usage 0.7.1 OK +2024-04-29T04:26:43Z #14 4.675 - Validating... +2024-04-29T04:26:43Z #14 4.764  X is jupyter_server_ydoc importable? +2024-04-29T04:26:43Z #14 4.764 - Validating... +2024-04-29T04:26:43Z #14 4.831 jupyterlab 3.6.7 OK +2024-04-29T04:26:43Z #14 4.831 - Validating... +2024-04-29T04:26:43Z #14 5.009 jupyterlab_jupytext OK +2024-04-29T04:26:43Z #14 5.009 - Validating... +2024-04-29T04:26:43Z #14 5.014 mamba_gator 5.2.1 OK +2024-04-29T04:26:43Z #14 5.014 - Validating... +2024-04-29T04:26:43Z #14 5.030 nbdime 4.0.1 OK +2024-04-29T04:26:43Z #14 5.030 - Validating... +2024-04-29T04:26:44Z #14 6.023 panel.io.jupyter_server_extension OK +2024-04-29T04:26:44Z #14 6.023 - Validating... +2024-04-29T04:26:44Z #14 6.087 nbresuse OK +2024-04-29T04:26:44Z #14 6.087 - Validating... +2024-04-29T04:26:44Z #14 6.253 voila.server_extension OK +2024-04-29T04:26:44Z #14 6.253 - Validating... +2024-04-29T04:26:44Z #14 6.255 jupyterlab_git OK +2024-04-29T04:26:44Z #14 6.255 - Validating... +2024-04-29T04:26:44Z #14 6.255 voila 0.5.6 OK +2024-04-29T04:26:44Z #14 6.256 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-04-29T04:26:44Z #14 6.256 dask_labextension  enabled  +2024-04-29T04:26:44Z #14 6.256 jupyter_archive  enabled  +2024-04-29T04:26:44Z #14 6.256 jupyter_server_proxy  enabled  +2024-04-29T04:26:44Z #14 6.256 jupyter_resource_usage  enabled  +2024-04-29T04:26:44Z #14 6.256 jupyter_server_ydoc  enabled  +2024-04-29T04:26:44Z #14 6.256 jupyterlab  enabled  +2024-04-29T04:26:44Z #14 6.256 jupyterlab_jupytext  enabled  +2024-04-29T04:26:44Z #14 6.256 mamba_gator  enabled  +2024-04-29T04:26:44Z #14 6.256 nbdime  enabled  +2024-04-29T04:26:44Z #14 6.256 panel.io.jupyter_server_extension  enabled  +2024-04-29T04:26:44Z #14 6.256 nbresuse  enabled  +2024-04-29T04:26:44Z #14 6.256 voila.server_extension  enabled  +2024-04-29T04:26:44Z #14 6.256 jupyterlab_git  enabled  +2024-04-29T04:26:44Z #14 6.256 voila  enabled  +2024-04-29T04:26:45Z #14 DONE 6.7s +2024-04-29T04:26:45Z +2024-04-29T04:26:45Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-04-29T04:26:45Z #15 0.443 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-04-29T04:26:45Z #15 0.467 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ... +2024-04-29T04:26:45Z #15 0.470 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-04-29T04:26:45Z #15 0.474 HTTP request sent, awaiting response... 200 OK +2024-04-29T04:26:45Z #15 0.588 Length: 9769 (9.5K) [text/plain] +2024-04-29T04:26:45Z #15 0.588 Saving to: ‘/usr/local/bin/start.sh’ +2024-04-29T04:26:45Z #15 0.588 +2024-04-29T04:26:45Z #15 0.588 0K ......... 100% 18.7M=0s +2024-04-29T04:26:45Z #15 0.590 +2024-04-29T04:26:45Z #15 0.590 2024-04-29 04:26:45 (18.7 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-04-29T04:26:45Z #15 0.590 +2024-04-29T04:26:45Z #15 0.593 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-04-29T04:26:45Z #15 0.618 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... +2024-04-29T04:26:45Z #15 0.619 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-04-29T04:26:45Z #15 0.625 HTTP request sent, awaiting response... 200 OK +2024-04-29T04:26:45Z #15 0.686 Length: 359 [text/plain] +2024-04-29T04:26:45Z #15 0.686 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-04-29T04:26:45Z #15 0.686 +2024-04-29T04:26:45Z #15 0.686 0K 100% 18.7M=0s +2024-04-29T04:26:45Z #15 0.688 +2024-04-29T04:26:45Z #15 0.688 2024-04-29 04:26:45 (18.7 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-04-29T04:26:45Z #15 0.688 +2024-04-29T04:26:45Z #15 0.691 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-04-29T04:26:45Z #15 0.715 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... +2024-04-29T04:26:45Z #15 0.716 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-04-29T04:26:45Z #15 0.720 HTTP request sent, awaiting response... 200 OK +2024-04-29T04:26:45Z #15 0.788 Length: 852 [text/plain] +2024-04-29T04:26:45Z #15 0.788 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-04-29T04:26:45Z #15 0.788 +2024-04-29T04:26:45Z #15 0.788 0K 100% 2.89M=0s +2024-04-29T04:26:45Z #15 0.790 +2024-04-29T04:26:45Z #15 0.791 2024-04-29 04:26:45 (2.89 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-04-29T04:26:45Z #15 0.791 +2024-04-29T04:26:45Z #15 0.795 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-04-29T04:26:45Z #15 0.819 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... +2024-04-29T04:26:45Z #15 0.821 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-04-29T04:26:45Z #15 0.827 HTTP request sent, awaiting response... 200 OK +2024-04-29T04:26:45Z #15 0.914 Length: 1034 (1.0K) [text/plain] +2024-04-29T04:26:45Z #15 0.914 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-04-29T04:26:45Z #15 0.915 +2024-04-29T04:26:45Z #15 0.915 0K . 100% 45.5M=0s +2024-04-29T04:26:45Z #15 0.918 +2024-04-29T04:26:45Z #15 0.918 2024-04-29 04:26:45 (45.5 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-04-29T04:26:45Z #15 0.918 +2024-04-29T04:26:45Z #15 0.922 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-04-29T04:26:45Z #15 0.946 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... +2024-04-29T04:26:45Z #15 0.948 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-04-29T04:26:45Z #15 0.954 HTTP request sent, awaiting response... 200 OK +2024-04-29T04:26:46Z #15 1.027 Length: 1836 (1.8K) [text/plain] +2024-04-29T04:26:46Z #15 1.027 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-04-29T04:26:46Z #15 1.027 +2024-04-29T04:26:46Z #15 1.027 0K . 100% 11.7M=0s +2024-04-29T04:26:46Z #15 1.028 +2024-04-29T04:26:46Z #15 1.028 2024-04-29 04:26:45 (11.7 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-04-29T04:26:46Z #15 1.028 +2024-04-29T04:26:46Z #15 1.211 --2024-04-29 04:26:46-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-04-29T04:26:46Z #15 1.234 Resolving downloads.globus.org (downloads.globus.org)... 52.85.132.85, 52.85.132.76, 52.85.132.96, ... +2024-04-29T04:26:46Z #15 1.240 Connecting to downloads.globus.org (downloads.globus.org)|52.85.132.85|:443... connected. +2024-04-29T04:26:46Z #15 1.245 HTTP request sent, awaiting response... 200 OK +2024-04-29T04:26:46Z #15 1.363 Length: 130857988 (125M) [application/x-tar] +2024-04-29T04:26:46Z #15 1.363 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-04-29T04:26:46Z #15 1.363 +2024-04-29T04:26:46Z #15 1.363 0K .......... .......... .......... .......... .......... 0% 27.9M 4s +2024-04-29T04:26:46Z #15 1.365 50K .......... .......... .......... .......... .......... 0% 31.6M 4s +2024-04-29T04:26:46Z #15 1.366 100K .......... .......... .......... .......... .......... 0% 31.0M 4s +2024-04-29T04:26:46Z #15 1.368 150K .......... .......... .......... .......... .......... 0% 23.3M 4s +2024-04-29T04:26:46Z #15 1.370 200K .......... .......... .......... .......... .......... 0% 35.0M 4s +2024-04-29T04:26:46Z #15 1.371 250K .......... .......... .......... .......... .......... 0% 31.9M 4s +2024-04-29T04:26:46Z #15 1.373 300K .......... .......... .......... .......... .......... 0% 30.7M 4s +2024-04-29T04:26:46Z #15 1.374 350K .......... .......... .......... .......... .......... 0% 41.6M 4s +2024-04-29T04:26:46Z #15 1.376 400K .......... .......... .......... .......... .......... 0% 38.4M 4s +2024-04-29T04:26:46Z #15 1.377 450K .......... .......... .......... .......... .......... 0% 37.7M 4s +2024-04-29T04:26:46Z #15 1.378 500K .......... .......... .......... .......... .......... 0% 57.8M 4s +2024-04-29T04:26:46Z #15 1.379 550K .......... .......... .......... .......... .......... 0% 120M 3s +2024-04-29T04:26:46Z #15 1.380 600K .......... .......... .......... .......... .......... 0% 131M 3s +2024-04-29T04:26:46Z #15 1.380 650K .......... .......... .......... .......... .......... 0% 121M 3s +2024-04-29T04:26:46Z #15 1.381 700K .......... .......... .......... .......... .......... 0% 162M 3s +2024-04-29T04:26:46Z #15 1.381 750K .......... .......... .......... .......... .......... 0% 147M 3s +2024-04-29T04:26:46Z #15 1.381 800K .......... .......... .......... .......... .......... 0% 99.9M 3s +2024-04-29T04:26:46Z #15 1.382 850K .......... .......... .......... .......... .......... 0% 75.2M 3s +2024-04-29T04:26:46Z #15 1.382 900K .......... .......... .......... .......... .......... 0% 95.9M 3s +2024-04-29T04:26:46Z #15 1.383 950K .......... .......... .......... .......... .......... 0% 99.1M 3s +2024-04-29T04:26:46Z #15 1.384 1000K .......... .......... .......... .......... .......... 0% 76.0M 2s +2024-04-29T04:26:46Z #15 1.384 1050K .......... .......... .......... .......... .......... 0% 78.5M 2s +2024-04-29T04:26:46Z #15 1.384 1100K .......... .......... .......... .......... .......... 0% 71.9M 2s +2024-04-29T04:26:46Z #15 1.385 1150K .......... .......... .......... .......... .......... 0% 85.0M 2s +2024-04-29T04:26:46Z #15 1.386 1200K .......... .......... .......... .......... .......... 0% 64.7M 2s +2024-04-29T04:26:46Z #15 1.387 1250K .......... .......... .......... .......... .......... 1% 80.8M 2s +2024-04-29T04:26:46Z #15 1.387 1300K .......... .......... .......... .......... .......... 1% 81.5M 2s +2024-04-29T04:26:46Z #15 1.388 1350K .......... .......... .......... .......... .......... 1% 79.7M 2s +2024-04-29T04:26:46Z #15 1.388 1400K .......... .......... .......... .......... .......... 1% 56.9M 2s +2024-04-29T04:26:46Z #15 1.389 1450K .......... .......... .......... .......... .......... 1% 46.9M 2s +2024-04-29T04:26:46Z #15 1.390 1500K .......... .......... .......... .......... .......... 1% 64.6M 2s +2024-04-29T04:26:46Z #15 1.391 1550K .......... .......... .......... .......... .......... 1% 69.2M 2s +2024-04-29T04:26:46Z #15 1.391 1600K .......... .......... .......... .......... .......... 1% 70.3M 2s +2024-04-29T04:26:46Z #15 1.392 1650K .......... .......... .......... .......... .......... 1% 70.6M 2s +2024-04-29T04:26:46Z #15 1.393 1700K .......... .......... .......... .......... .......... 1% 67.5M 2s +2024-04-29T04:26:46Z #15 1.394 1750K .......... .......... .......... .......... .......... 1% 70.7M 2s +2024-04-29T04:26:46Z #15 1.394 1800K .......... .......... .......... .......... .......... 1% 65.7M 2s +2024-04-29T04:26:46Z #15 1.395 1850K .......... .......... .......... .......... .......... 1% 55.6M 2s +2024-04-29T04:26:46Z #15 1.396 1900K .......... .......... .......... .......... .......... 1% 72.6M 2s +2024-04-29T04:26:46Z #15 1.397 1950K .......... .......... .......... .......... .......... 1% 48.9M 2s +2024-04-29T04:26:46Z #15 1.397 2000K .......... .......... .......... .......... .......... 1% 64.9M 2s +2024-04-29T04:26:46Z #15 1.399 2050K .......... .......... .......... .......... .......... 1% 73.1M 2s +2024-04-29T04:26:46Z #15 1.399 2100K .......... .......... .......... .......... .......... 1% 52.8M 2s +2024-04-29T04:26:46Z #15 1.400 2150K .......... .......... .......... .......... .......... 1% 74.4M 2s +2024-04-29T04:26:46Z #15 1.401 2200K .......... .......... .......... .......... .......... 1% 61.1M 2s +2024-04-29T04:26:46Z #15 1.401 2250K .......... .......... .......... .......... .......... 1% 68.3M 2s +2024-04-29T04:26:46Z #15 1.402 2300K .......... .......... .......... .......... .......... 1% 55.0M 2s +2024-04-29T04:26:46Z #15 1.403 2350K .......... .......... .......... .......... .......... 1% 72.0M 2s +2024-04-29T04:26:46Z #15 1.404 2400K .......... .......... .......... .......... .......... 1% 86.3M 2s +2024-04-29T04:26:46Z #15 1.404 2450K .......... .......... .......... .......... .......... 1% 74.6M 2s +2024-04-29T04:26:46Z #15 1.405 2500K .......... .......... .......... .......... .......... 1% 69.8M 2s +2024-04-29T04:26:46Z #15 1.406 2550K .......... .......... .......... .......... .......... 2% 80.8M 2s +2024-04-29T04:26:46Z #15 1.407 2600K .......... .......... .......... .......... .......... 2% 80.4M 2s +2024-04-29T04:26:46Z #15 1.407 2650K .......... .......... .......... .......... .......... 2% 75.9M 2s +2024-04-29T04:26:46Z #15 1.407 2700K .......... .......... .......... .......... .......... 2% 83.3M 2s +2024-04-29T04:26:46Z #15 1.408 2750K .......... .......... .......... .......... .......... 2% 120M 2s +2024-04-29T04:26:46Z #15 1.408 2800K .......... .......... .......... .......... .......... 2% 93.7M 2s +2024-04-29T04:26:46Z #15 1.409 2850K .......... .......... .......... .......... .......... 2% 127M 2s +2024-04-29T04:26:46Z #15 1.409 2900K .......... .......... .......... .......... .......... 2% 128M 2s +2024-04-29T04:26:46Z #15 1.410 2950K .......... .......... .......... .......... .......... 2% 131M 2s +2024-04-29T04:26:46Z #15 1.410 3000K .......... .......... .......... .......... .......... 2% 103M 2s +2024-04-29T04:26:46Z #15 1.410 3050K .......... .......... .......... .......... .......... 2% 142M 2s +2024-04-29T04:26:46Z #15 1.411 3100K .......... .......... .......... .......... .......... 2% 139M 2s +2024-04-29T04:26:46Z #15 1.411 3150K .......... .......... .......... .......... .......... 2% 129M 2s +2024-04-29T04:26:46Z #15 1.411 3200K .......... .......... .......... .......... .......... 2% 84.6M 2s +2024-04-29T04:26:46Z #15 1.412 3250K .......... .......... .......... .......... .......... 2% 144M 2s +2024-04-29T04:26:46Z #15 1.412 3300K .......... .......... .......... .......... .......... 2% 107M 2s +2024-04-29T04:26:46Z #15 1.413 3350K .......... .......... .......... .......... .......... 2% 129M 2s +2024-04-29T04:26:46Z #15 1.413 3400K .......... .......... .......... .......... .......... 2% 85.3M 2s +2024-04-29T04:26:46Z #15 1.415 3450K .......... .......... .......... .......... .......... 2% 101M 2s +2024-04-29T04:26:46Z #15 1.415 3500K .......... .......... .......... .......... .......... 2% 70.7M 2s +2024-04-29T04:26:46Z #15 1.415 3550K .......... .......... .......... .......... .......... 2% 96.1M 2s +2024-04-29T04:26:46Z #15 1.416 3600K .......... .......... .......... .......... .......... 2% 127M 2s +2024-04-29T04:26:46Z #15 1.416 3650K .......... .......... .......... .......... .......... 2% 149M 2s +2024-04-29T04:26:46Z #15 1.417 3700K .......... .......... .......... .......... .......... 2% 135M 2s +2024-04-29T04:26:46Z #15 1.417 3750K .......... .......... .......... .......... .......... 2% 97.9M 2s +2024-04-29T04:26:46Z #15 1.417 3800K .......... .......... .......... .......... .......... 3% 152M 2s +2024-04-29T04:26:46Z #15 1.417 3850K .......... .......... .......... .......... .......... 3% 119M 2s +2024-04-29T04:26:46Z #15 1.418 3900K .......... .......... .......... .......... .......... 3% 97.5M 2s +2024-04-29T04:26:46Z #15 1.418 3950K .......... .......... .......... .......... .......... 3% 127M 2s +2024-04-29T04:26:46Z #15 1.419 4000K .......... .......... .......... .......... .......... 3% 120M 2s +2024-04-29T04:26:46Z #15 1.419 4050K .......... .......... .......... .......... .......... 3% 148M 2s +2024-04-29T04:26:46Z #15 1.419 4100K .......... .......... .......... .......... .......... 3% 151M 2s +2024-04-29T04:26:46Z #15 1.420 4150K .......... .......... .......... .......... .......... 3% 132M 2s +2024-04-29T04:26:46Z #15 1.421 4200K .......... .......... .......... .......... .......... 3% 148M 2s +2024-04-29T04:26:46Z #15 1.421 4250K .......... .......... .......... .......... .......... 3% 119M 2s +2024-04-29T04:26:46Z #15 1.421 4300K .......... .......... .......... .......... .......... 3% 139M 2s +2024-04-29T04:26:46Z #15 1.425 4350K .......... .......... .......... .......... .......... 3% 168M 2s +2024-04-29T04:26:46Z #15 1.425 4400K .......... .......... .......... .......... .......... 3% 137M 2s +2024-04-29T04:26:46Z #15 1.425 4450K .......... .......... .......... .......... .......... 3% 149M 2s +2024-04-29T04:26:46Z #15 1.425 4500K .......... .......... .......... .......... .......... 3% 170M 2s +2024-04-29T04:26:46Z #15 1.425 4550K .......... .......... .......... .......... .......... 3% 148M 2s +2024-04-29T04:26:46Z #15 1.425 4600K .......... .......... .......... .......... .......... 3% 147M 2s +2024-04-29T04:26:46Z #15 1.425 4650K .......... .......... .......... .......... .......... 3% 172M 2s +2024-04-29T04:26:46Z #15 1.425 4700K .......... .......... .......... .......... .......... 3% 146M 2s +2024-04-29T04:26:46Z #15 1.425 4750K .......... .......... .......... .......... .......... 3% 146M 2s +2024-04-29T04:26:46Z #15 1.425 4800K .......... .......... .......... .......... .......... 3% 133M 2s +2024-04-29T04:26:46Z #15 1.425 4850K .......... .......... .......... .......... .......... 3% 128M 2s +2024-04-29T04:26:46Z #15 1.425 4900K .......... .......... .......... .......... .......... 3% 144M 2s +2024-04-29T04:26:46Z #15 1.425 4950K .......... .......... .......... .......... .......... 3% 143M 2s +2024-04-29T04:26:46Z #15 1.425 5000K .......... .......... .......... .......... .......... 3% 133M 2s +2024-04-29T04:26:46Z #15 1.426 5050K .......... .......... .......... .......... .......... 3% 151M 2s +2024-04-29T04:26:46Z #15 1.426 5100K .......... .......... .......... .......... .......... 4% 132M 2s +2024-04-29T04:26:46Z #15 1.427 5150K .......... .......... .......... .......... .......... 4% 145M 2s +2024-04-29T04:26:46Z #15 1.427 5200K .......... .......... .......... .......... .......... 4% 122M 2s +2024-04-29T04:26:46Z #15 1.427 5250K .......... .......... .......... .......... .......... 4% 146M 1s +2024-04-29T04:26:46Z #15 1.428 5300K .......... .......... .......... .......... .......... 4% 124M 1s +2024-04-29T04:26:46Z #15 1.428 5350K .......... .......... .......... .......... .......... 4% 8.91M 2s +2024-04-29T04:26:46Z #15 1.434 5400K .......... .......... .......... .......... .......... 4% 20.5M 2s +2024-04-29T04:26:46Z #15 1.436 5450K .......... .......... .......... .......... .......... 4% 56.5M 2s +2024-04-29T04:26:46Z #15 1.437 5500K .......... .......... .......... .......... .......... 4% 64.6M 2s +2024-04-29T04:26:46Z #15 1.438 5550K .......... .......... .......... .......... .......... 4% 50.0M 2s +2024-04-29T04:26:46Z #15 1.439 5600K .......... .......... .......... .......... .......... 4% 110M 2s +2024-04-29T04:26:46Z #15 1.439 5650K .......... .......... .......... .......... .......... 4% 154M 2s +2024-04-29T04:26:46Z #15 1.440 5700K .......... .......... .......... .......... .......... 4% 20.0M 2s +2024-04-29T04:26:46Z #15 1.442 5750K .......... .......... .......... .......... .......... 4% 29.5M 2s +2024-04-29T04:26:46Z #15 1.444 5800K .......... .......... .......... .......... .......... 4% 40.1M 2s +2024-04-29T04:26:46Z #15 1.445 5850K .......... .......... .......... .......... .......... 4% 40.0M 2s +2024-04-29T04:26:46Z #15 1.446 5900K .......... .......... .......... .......... .......... 4% 50.4M 2s +2024-04-29T04:26:46Z #15 1.447 5950K .......... .......... .......... .......... .......... 4% 47.8M 2s +2024-04-29T04:26:46Z #15 1.448 6000K .......... .......... .......... .......... .......... 4% 50.9M 2s +2024-04-29T04:26:46Z #15 1.449 6050K .......... .......... .......... .......... .......... 4% 22.2M 2s +2024-04-29T04:26:46Z #15 1.451 6100K .......... .......... .......... .......... .......... 4% 41.0M 2s +2024-04-29T04:26:46Z #15 1.452 6150K .......... .......... .......... .......... .......... 4% 34.4M 2s +2024-04-29T04:26:46Z #15 1.454 6200K .......... .......... .......... .......... .......... 4% 55.3M 2s +2024-04-29T04:26:46Z #15 1.455 6250K .......... .......... .......... .......... .......... 4% 64.4M 2s +2024-04-29T04:26:46Z #15 1.456 6300K .......... .......... .......... .......... .......... 4% 67.5M 2s +2024-04-29T04:26:46Z #15 1.456 6350K .......... .......... .......... .......... .......... 5% 53.9M 2s +2024-04-29T04:26:46Z #15 1.458 6400K .......... .......... .......... .......... .......... 5% 106M 2s +2024-04-29T04:26:46Z #15 1.458 6450K .......... .......... .......... .......... .......... 5% 55.8M 2s +2024-04-29T04:26:46Z #15 1.459 6500K .......... .......... .......... .......... .......... 5% 50.0M 2s +2024-04-29T04:26:46Z #15 1.459 6550K .......... .......... .......... .......... .......... 5% 67.3M 2s +2024-04-29T04:26:46Z #15 1.460 6600K .......... .......... .......... .......... .......... 5% 61.6M 2s +2024-04-29T04:26:46Z #15 1.461 6650K .......... .......... .......... .......... .......... 5% 43.2M 2s +2024-04-29T04:26:46Z #15 1.465 6700K .......... .......... .......... .......... .......... 5% 54.3M 2s +2024-04-29T04:26:46Z #15 1.465 6750K .......... .......... .......... .......... .......... 5% 54.6M 2s +2024-04-29T04:26:46Z #15 1.465 6800K .......... .......... .......... .......... .......... 5% 51.3M 2s +2024-04-29T04:26:46Z #15 1.465 6850K .......... .......... .......... .......... .......... 5% 35.5M 2s +2024-04-29T04:26:46Z #15 1.467 6900K .......... .......... .......... .......... .......... 5% 16.3M 2s +2024-04-29T04:26:46Z #15 1.469 6950K .......... .......... .......... .......... .......... 5% 33.4M 2s +2024-04-29T04:26:46Z #15 1.471 7000K .......... .......... .......... .......... .......... 5% 40.8M 2s +2024-04-29T04:26:46Z #15 1.475 7050K .......... .......... .......... .......... .......... 5% 129M 2s +2024-04-29T04:26:46Z #15 1.475 7100K .......... .......... .......... .......... .......... 5% 170M 2s +2024-04-29T04:26:46Z #15 1.475 7150K .......... .......... .......... .......... .......... 5% 169M 2s +2024-04-29T04:26:46Z #15 1.475 7200K .......... .......... .......... .......... .......... 5% 133M 2s +2024-04-29T04:26:46Z #15 1.475 7250K .......... .......... .......... .......... .......... 5% 141M 2s +2024-04-29T04:26:46Z #15 1.475 7300K .......... .......... .......... .......... .......... 5% 147M 2s +2024-04-29T04:26:46Z #15 1.475 7350K .......... .......... .......... .......... .......... 5% 157M 2s +2024-04-29T04:26:46Z #15 1.475 7400K .......... .......... .......... .......... .......... 5% 146M 2s +2024-04-29T04:26:46Z #15 1.475 7450K .......... .......... .......... .......... .......... 5% 126M 2s +2024-04-29T04:26:46Z #15 1.475 7500K .......... .......... .......... .......... .......... 5% 154M 2s +2024-04-29T04:26:46Z #15 1.475 7550K .......... .......... .......... .......... .......... 5% 23.5M 2s +2024-04-29T04:26:46Z #15 1.477 7600K .......... .......... .......... .......... .......... 5% 29.9M 2s +2024-04-29T04:26:46Z #15 1.479 7650K .......... .......... .......... .......... .......... 6% 46.6M 2s +2024-04-29T04:26:46Z #15 1.480 7700K .......... .......... .......... .......... .......... 6% 91.6M 2s +2024-04-29T04:26:46Z #15 1.480 7750K .......... .......... .......... .......... .......... 6% 18.1M 2s +2024-04-29T04:26:46Z #15 1.483 7800K .......... .......... .......... .......... .......... 6% 37.1M 2s +2024-04-29T04:26:46Z #15 1.485 7850K .......... .......... .......... .......... .......... 6% 37.0M 2s +2024-04-29T04:26:46Z #15 1.486 7900K .......... .......... .......... .......... .......... 6% 44.0M 2s +2024-04-29T04:26:46Z #15 1.487 7950K .......... .......... .......... .......... .......... 6% 116M 2s +2024-04-29T04:26:46Z #15 1.488 8000K .......... .......... .......... .......... .......... 6% 21.6M 2s +2024-04-29T04:26:46Z #15 1.490 8050K .......... .......... .......... .......... .......... 6% 64.3M 2s +2024-04-29T04:26:46Z #15 1.490 8100K .......... .......... .......... .......... .......... 6% 30.9M 2s +2024-04-29T04:26:46Z #15 1.492 8150K .......... .......... .......... .......... .......... 6% 40.8M 2s +2024-04-29T04:26:46Z #15 1.493 8200K .......... .......... .......... .......... .......... 6% 56.8M 2s +2024-04-29T04:26:46Z #15 1.494 8250K .......... .......... .......... .......... .......... 6% 30.6M 2s +2024-04-29T04:26:46Z #15 1.495 8300K .......... .......... .......... .......... .......... 6% 40.8M 2s +2024-04-29T04:26:46Z #15 1.497 8350K .......... .......... .......... .......... .......... 6% 41.6M 2s +2024-04-29T04:26:46Z #15 1.498 8400K .......... .......... .......... .......... .......... 6% 37.6M 2s +2024-04-29T04:26:46Z #15 1.499 8450K .......... .......... .......... .......... .......... 6% 61.7M 2s +2024-04-29T04:26:46Z #15 1.500 8500K .......... .......... .......... .......... .......... 6% 41.9M 2s +2024-04-29T04:26:46Z #15 1.501 8550K .......... .......... .......... .......... .......... 6% 59.0M 2s +2024-04-29T04:26:46Z #15 1.502 8600K .......... .......... .......... .......... .......... 6% 42.1M 2s +2024-04-29T04:26:46Z #15 1.503 8650K .......... .......... .......... .......... .......... 6% 46.2M 2s +2024-04-29T04:26:46Z #15 1.504 8700K .......... .......... .......... .......... .......... 6% 22.7M 2s +2024-04-29T04:26:46Z #15 1.506 8750K .......... .......... .......... .......... .......... 6% 41.1M 2s +2024-04-29T04:26:46Z #15 1.508 8800K .......... .......... .......... .......... .......... 6% 29.7M 2s +2024-04-29T04:26:46Z #15 1.509 8850K .......... .......... .......... .......... .......... 6% 22.2M 2s +2024-04-29T04:26:46Z #15 1.511 8900K .......... .......... .......... .......... .......... 7% 46.0M 2s +2024-04-29T04:26:46Z #15 1.512 8950K .......... .......... .......... .......... .......... 7% 38.2M 2s +2024-04-29T04:26:46Z #15 1.514 9000K .......... .......... .......... .......... .......... 7% 33.8M 2s +2024-04-29T04:26:46Z #15 1.515 9050K .......... .......... .......... .......... .......... 7% 50.2M 2s +2024-04-29T04:26:46Z #15 1.516 9100K .......... .......... .......... .......... .......... 7% 44.8M 2s +2024-04-29T04:26:46Z #15 1.517 9150K .......... .......... .......... .......... .......... 7% 27.2M 2s +2024-04-29T04:26:46Z #15 1.519 9200K .......... .......... .......... .......... .......... 7% 38.1M 2s +2024-04-29T04:26:46Z #15 1.520 9250K .......... .......... .......... .......... .......... 7% 41.0M 2s +2024-04-29T04:26:46Z #15 1.521 9300K .......... .......... .......... .......... .......... 7% 48.9M 2s +2024-04-29T04:26:46Z #15 1.523 9350K .......... .......... .......... .......... .......... 7% 39.8M 2s +2024-04-29T04:26:46Z #15 1.524 9400K .......... .......... .......... .......... .......... 7% 48.5M 2s +2024-04-29T04:26:46Z #15 1.525 9450K .......... .......... .......... .......... .......... 7% 19.7M 2s +2024-04-29T04:26:46Z #15 1.532 9500K .......... .......... .......... .......... .......... 7% 116M 2s +2024-04-29T04:26:46Z #15 1.532 9550K .......... .......... .......... .......... .......... 7% 119M 2s +2024-04-29T04:26:46Z #15 1.532 9600K .......... .......... .......... .......... .......... 7% 115M 2s +2024-04-29T04:26:46Z #15 1.532 9650K .......... .......... .......... .......... .......... 7% 109M 2s +2024-04-29T04:26:46Z #15 1.532 9700K .......... .......... .......... .......... .......... 7% 128M 2s +2024-04-29T04:26:46Z #15 1.532 9750K .......... .......... .......... .......... .......... 7% 108M 2s +2024-04-29T04:26:46Z #15 1.532 9800K .......... .......... .......... .......... .......... 7% 125M 2s +2024-04-29T04:26:46Z #15 1.532 9850K .......... .......... .......... .......... .......... 7% 128M 2s +2024-04-29T04:26:46Z #15 1.532 9900K .......... .......... .......... .......... .......... 7% 142M 2s +2024-04-29T04:26:46Z #15 1.532 9950K .......... .......... .......... .......... .......... 7% 110M 2s +2024-04-29T04:26:46Z #15 1.532 10000K .......... .......... .......... .......... .......... 7% 127M 2s +2024-04-29T04:26:46Z #15 1.532 10050K .......... .......... .......... .......... .......... 7% 121M 2s +2024-04-29T04:26:46Z #15 1.532 10100K .......... .......... .......... .......... .......... 7% 129M 2s +2024-04-29T04:26:46Z #15 1.532 10150K .......... .......... .......... .......... .......... 7% 64.3M 2s +2024-04-29T04:26:46Z #15 1.537 10200K .......... .......... .......... .......... .......... 8% 149M 2s +2024-04-29T04:26:46Z #15 1.537 10250K .......... .......... .......... .......... .......... 8% 180M 2s +2024-04-29T04:26:46Z #15 1.537 10300K .......... .......... .......... .......... .......... 8% 180M 2s +2024-04-29T04:26:46Z #15 1.537 10350K .......... .......... .......... .......... .......... 8% 139M 2s +2024-04-29T04:26:46Z #15 1.537 10400K .......... .......... .......... .......... .......... 8% 169M 2s +2024-04-29T04:26:46Z #15 1.537 10450K .......... .......... .......... .......... .......... 8% 169M 2s +2024-04-29T04:26:46Z #15 1.537 10500K .......... .......... .......... .......... .......... 8% 157M 2s +2024-04-29T04:26:46Z #15 1.537 10550K .......... .......... .......... .......... .......... 8% 179M 2s +2024-04-29T04:26:46Z #15 1.537 10600K .......... .......... .......... .......... .......... 8% 140M 2s +2024-04-29T04:26:46Z #15 1.537 10650K .......... .......... .......... .......... .......... 8% 174M 2s +2024-04-29T04:26:46Z #15 1.537 10700K .......... .......... .......... .......... .......... 8% 174M 2s +2024-04-29T04:26:46Z #15 1.537 10750K .......... .......... .......... .......... .......... 8% 116M 2s +2024-04-29T04:26:46Z #15 1.537 10800K .......... .......... .......... .......... .......... 8% 151M 2s +2024-04-29T04:26:46Z #15 1.537 10850K .......... .......... .......... .......... .......... 8% 70.3M 2s +2024-04-29T04:26:46Z #15 1.538 10900K .......... .......... .......... .......... .......... 8% 127M 2s +2024-04-29T04:26:46Z #15 1.538 10950K .......... .......... .......... .......... .......... 8% 102M 2s +2024-04-29T04:26:46Z #15 1.539 11000K .......... .......... .......... .......... .......... 8% 129M 2s +2024-04-29T04:26:46Z #15 1.539 11050K .......... .......... .......... .......... .......... 8% 145M 2s +2024-04-29T04:26:46Z #15 1.540 11100K .......... .......... .......... .......... .......... 8% 111M 2s +2024-04-29T04:26:46Z #15 1.540 11150K .......... .......... .......... .......... .......... 8% 115M 2s +2024-04-29T04:26:46Z #15 1.541 11200K .......... .......... .......... .......... .......... 8% 89.3M 2s +2024-04-29T04:26:46Z #15 1.541 11250K .......... .......... .......... .......... .......... 8% 113M 2s +2024-04-29T04:26:46Z #15 1.541 11300K .......... .......... .......... .......... .......... 8% 127M 2s +2024-04-29T04:26:46Z #15 1.542 11350K .......... .......... .......... .......... .......... 8% 108M 2s +2024-04-29T04:26:46Z #15 1.542 11400K .......... .......... .......... .......... .......... 8% 102M 2s +2024-04-29T04:26:46Z #15 1.543 11450K .......... .......... .......... .......... .......... 8% 126M 2s +2024-04-29T04:26:46Z #15 1.543 11500K .......... .......... .......... .......... .......... 9% 122M 2s +2024-04-29T04:26:46Z #15 1.543 11550K .......... .......... .......... .......... .......... 9% 113M 2s +2024-04-29T04:26:46Z #15 1.549 11600K .......... .......... .......... .......... .......... 9% 81.5M 2s +2024-04-29T04:26:46Z #15 1.549 11650K .......... .......... .......... .......... .......... 9% 121M 2s +2024-04-29T04:26:46Z #15 1.549 11700K .......... .......... .......... .......... .......... 9% 142M 2s +2024-04-29T04:26:46Z #15 1.549 11750K .......... .......... .......... .......... .......... 9% 154M 2s +2024-04-29T04:26:46Z #15 1.549 11800K .......... .......... .......... .......... .......... 9% 127M 2s +2024-04-29T04:26:46Z #15 1.549 11850K .......... .......... .......... .......... .......... 9% 158M 2s +2024-04-29T04:26:46Z #15 1.549 11900K .......... .......... .......... .......... .......... 9% 149M 2s +2024-04-29T04:26:46Z #15 1.549 11950K .......... .......... .......... .......... .......... 9% 142M 2s +2024-04-29T04:26:46Z #15 1.549 12000K .......... .......... .......... .......... .......... 9% 136M 2s +2024-04-29T04:26:46Z #15 1.549 12050K .......... .......... .......... .......... .......... 9% 152M 2s +2024-04-29T04:26:46Z #15 1.549 12100K .......... .......... .......... .......... .......... 9% 161M 2s +2024-04-29T04:26:46Z #15 1.549 12150K .......... .......... .......... .......... .......... 9% 125M 2s +2024-04-29T04:26:46Z #15 1.549 12200K .......... .......... .......... .......... .......... 9% 143M 2s +2024-04-29T04:26:46Z #15 1.549 12250K .......... .......... .......... .......... .......... 9% 70.1M 2s +2024-04-29T04:26:46Z #15 1.549 12300K .......... .......... .......... .......... .......... 9% 118M 2s +2024-04-29T04:26:46Z #15 1.550 12350K .......... .......... .......... .......... .......... 9% 101M 2s +2024-04-29T04:26:46Z #15 1.550 12400K .......... .......... .......... .......... .......... 9% 123M 2s +2024-04-29T04:26:46Z #15 1.551 12450K .......... .......... .......... .......... .......... 9% 135M 2s +2024-04-29T04:26:46Z #15 1.551 12500K .......... .......... .......... .......... .......... 9% 119M 2s +2024-04-29T04:26:46Z #15 1.551 12550K .......... .......... .......... .......... .......... 9% 89.7M 2s +2024-04-29T04:26:46Z #15 1.552 12600K .......... .......... .......... .......... .......... 9% 113M 2s +2024-04-29T04:26:46Z #15 1.553 12650K .......... .......... .......... .......... .......... 9% 115M 2s +2024-04-29T04:26:46Z #15 1.553 12700K .......... .......... .......... .......... .......... 9% 94.9M 2s +2024-04-29T04:26:46Z #15 1.553 12750K .......... .......... .......... .......... .......... 10% 125M 2s +2024-04-29T04:26:46Z #15 1.554 12800K .......... .......... .......... .......... .......... 10% 111M 2s +2024-04-29T04:26:46Z #15 1.554 12850K .......... .......... .......... .......... .......... 10% 117M 2s +2024-04-29T04:26:46Z #15 1.554 12900K .......... .......... .......... .......... .......... 10% 115M 2s +2024-04-29T04:26:46Z #15 1.555 12950K .......... .......... .......... .......... .......... 10% 105M 2s +2024-04-29T04:26:46Z #15 1.555 13000K .......... .......... .......... .......... .......... 10% 105M 2s +2024-04-29T04:26:46Z #15 1.556 13050K .......... .......... .......... .......... .......... 10% 120M 2s +2024-04-29T04:26:46Z #15 1.556 13100K .......... .......... .......... .......... .......... 10% 97.6M 2s +2024-04-29T04:26:46Z #15 1.557 13150K .......... .......... .......... .......... .......... 10% 88.6M 2s +2024-04-29T04:26:46Z #15 1.557 13200K .......... .......... .......... .......... .......... 10% 114M 2s +2024-04-29T04:26:46Z #15 1.564 13250K .......... .......... .......... .......... .......... 10% 91.8M 2s +2024-04-29T04:26:46Z #15 1.564 13300K .......... .......... .......... .......... .......... 10% 81.7M 2s +2024-04-29T04:26:46Z #15 1.564 13350K .......... .......... .......... .......... .......... 10% 89.0M 2s +2024-04-29T04:26:46Z #15 1.564 13400K .......... .......... .......... .......... .......... 10% 173M 2s +2024-04-29T04:26:46Z #15 1.564 13450K .......... .......... .......... .......... .......... 10% 133M 2s +2024-04-29T04:26:46Z #15 1.564 13500K .......... .......... .......... .......... .......... 10% 175M 2s +2024-04-29T04:26:46Z #15 1.564 13550K .......... .......... .......... .......... .......... 10% 168M 2s +2024-04-29T04:26:46Z #15 1.564 13600K .......... .......... .......... .......... .......... 10% 151M 2s +2024-04-29T04:26:46Z #15 1.564 13650K .......... .......... .......... .......... .......... 10% 150M 2s +2024-04-29T04:26:46Z #15 1.564 13700K .......... .......... .......... .......... .......... 10% 177M 2s +2024-04-29T04:26:46Z #15 1.564 13750K .......... .......... .......... .......... .......... 10% 178M 2s +2024-04-29T04:26:46Z #15 1.564 13800K .......... .......... .......... .......... .......... 10% 164M 2s +2024-04-29T04:26:46Z #15 1.564 13850K .......... .......... .......... .......... .......... 10% 143M 2s +2024-04-29T04:26:46Z #15 1.564 13900K .......... .......... .......... .......... .......... 10% 154M 2s +2024-04-29T04:26:46Z #15 1.564 13950K .......... .......... .......... .......... .......... 10% 187M 2s +2024-04-29T04:26:46Z #15 1.564 14000K .......... .......... .......... .......... .......... 10% 177M 2s +2024-04-29T04:26:46Z #15 1.564 14050K .......... .......... .......... .......... .......... 11% 162M 2s +2024-04-29T04:26:46Z #15 1.564 14100K .......... .......... .......... .......... .......... 11% 14.9M 2s +2024-04-29T04:26:46Z #15 1.567 14150K .......... .......... .......... .......... .......... 11% 33.9M 2s +2024-04-29T04:26:46Z #15 1.569 14200K .......... .......... .......... .......... .......... 11% 18.9M 2s +2024-04-29T04:26:46Z #15 1.571 14250K .......... .......... .......... .......... .......... 11% 167M 2s +2024-04-29T04:26:46Z #15 1.571 14300K .......... .......... .......... .......... .......... 11% 44.6M 2s +2024-04-29T04:26:46Z #15 1.572 14350K .......... .......... .......... .......... .......... 11% 50.4M 2s +2024-04-29T04:26:46Z #15 1.573 14400K .......... .......... .......... .......... .......... 11% 38.1M 2s +2024-04-29T04:26:46Z #15 1.575 14450K .......... .......... .......... .......... .......... 11% 61.5M 2s +2024-04-29T04:26:46Z #15 1.575 14500K .......... .......... .......... .......... .......... 11% 35.4M 2s +2024-04-29T04:26:46Z #15 1.577 14550K .......... .......... .......... .......... .......... 11% 29.2M 2s +2024-04-29T04:26:46Z #15 1.579 14600K .......... .......... .......... .......... .......... 11% 39.5M 2s +2024-04-29T04:26:46Z #15 1.580 14650K .......... .......... .......... .......... .......... 11% 145M 2s +2024-04-29T04:26:46Z #15 1.580 14700K .......... .......... .......... .......... .......... 11% 27.2M 2s +2024-04-29T04:26:46Z #15 1.582 14750K .......... .......... .......... .......... .......... 11% 36.5M 2s +2024-04-29T04:26:46Z #15 1.583 14800K .......... .......... .......... .......... .......... 11% 45.5M 2s +2024-04-29T04:26:46Z #15 1.584 14850K .......... .......... .......... .......... .......... 11% 47.6M 2s +2024-04-29T04:26:46Z #15 1.585 14900K .......... .......... .......... .......... .......... 11% 43.1M 2s +2024-04-29T04:26:46Z #15 1.586 14950K .......... .......... .......... .......... .......... 11% 43.2M 2s +2024-04-29T04:26:46Z #15 1.588 15000K .......... .......... .......... .......... .......... 11% 48.4M 2s +2024-04-29T04:26:46Z #15 1.588 15050K .......... .......... .......... .......... .......... 11% 47.2M 2s +2024-04-29T04:26:46Z #15 1.589 15100K .......... .......... .......... .......... .......... 11% 50.1M 2s +2024-04-29T04:26:46Z #15 1.590 15150K .......... .......... .......... .......... .......... 11% 40.2M 2s +2024-04-29T04:26:46Z #15 1.592 15200K .......... .......... .......... .......... .......... 11% 47.5M 2s +2024-04-29T04:26:46Z #15 1.593 15250K .......... .......... .......... .......... .......... 11% 49.3M 2s +2024-04-29T04:26:46Z #15 1.594 15300K .......... .......... .......... .......... .......... 12% 39.7M 2s +2024-04-29T04:26:46Z #15 1.595 15350K .......... .......... .......... .......... .......... 12% 35.8M 2s +2024-04-29T04:26:46Z #15 1.596 15400K .......... .......... .......... .......... .......... 12% 38.3M 2s +2024-04-29T04:26:46Z #15 1.598 15450K .......... .......... .......... .......... .......... 12% 32.3M 2s +2024-04-29T04:26:46Z #15 1.601 15500K .......... .......... .......... .......... .......... 12% 53.7M 2s +2024-04-29T04:26:46Z #15 1.601 15550K .......... .......... .......... .......... .......... 12% 43.0M 2s +2024-04-29T04:26:46Z #15 1.602 15600K .......... .......... .......... .......... .......... 12% 74.2M 2s +2024-04-29T04:26:46Z #15 1.602 15650K .......... .......... .......... .......... .......... 12% 117M 2s +2024-04-29T04:26:46Z #15 1.602 15700K .......... .......... .......... .......... .......... 12% 46.2M 2s +2024-04-29T04:26:46Z #15 1.604 15750K .......... .......... .......... .......... .......... 12% 28.6M 2s +2024-04-29T04:26:46Z #15 1.605 15800K .......... .......... .......... .......... .......... 12% 32.6M 2s +2024-04-29T04:26:46Z #15 1.607 15850K .......... .......... .......... .......... .......... 12% 41.1M 2s +2024-04-29T04:26:46Z #15 1.608 15900K .......... .......... .......... .......... .......... 12% 46.4M 2s +2024-04-29T04:26:46Z #15 1.609 15950K .......... .......... .......... .......... .......... 12% 76.8M 2s +2024-04-29T04:26:46Z #15 1.610 16000K .......... .......... .......... .......... .......... 12% 142M 2s +2024-04-29T04:26:46Z #15 1.610 16050K .......... .......... .......... .......... .......... 12% 39.5M 2s +2024-04-29T04:26:46Z #15 1.611 16100K .......... .......... .......... .......... .......... 12% 61.5M 2s +2024-04-29T04:26:46Z #15 1.612 16150K .......... .......... .......... .......... .......... 12% 44.0M 2s +2024-04-29T04:26:46Z #15 1.617 16200K .......... .......... .......... .......... .......... 12% 114M 2s +2024-04-29T04:26:46Z #15 1.617 16250K .......... .......... .......... .......... .......... 12% 145M 2s +2024-04-29T04:26:46Z #15 1.617 16300K .......... .......... .......... .......... .......... 12% 109M 2s +2024-04-29T04:26:46Z #15 1.617 16350K .......... .......... .......... .......... .......... 12% 125M 2s +2024-04-29T04:26:46Z #15 1.617 16400K .......... .......... .......... .......... .......... 12% 113M 2s +2024-04-29T04:26:46Z #15 1.617 16450K .......... .......... .......... .......... .......... 12% 122M 2s +2024-04-29T04:26:46Z #15 1.617 16500K .......... .......... .......... .......... .......... 12% 113M 2s +2024-04-29T04:26:46Z #15 1.617 16550K .......... .......... .......... .......... .......... 12% 121M 2s +2024-04-29T04:26:46Z #15 1.617 16600K .......... .......... .......... .......... .......... 13% 107M 2s +2024-04-29T04:26:46Z #15 1.617 16650K .......... .......... .......... .......... .......... 13% 68.3M 2s +2024-04-29T04:26:46Z #15 1.628 16700K .......... .......... .......... .......... .......... 13% 147M 2s +2024-04-29T04:26:46Z #15 1.628 16750K .......... .......... .......... .......... .......... 13% 141M 2s +2024-04-29T04:26:46Z #15 1.628 16800K .......... .......... .......... .......... .......... 13% 118M 2s +2024-04-29T04:26:46Z #15 1.628 16850K .......... .......... .......... .......... .......... 13% 111M 2s +2024-04-29T04:26:46Z #15 1.628 16900K .......... .......... .......... .......... .......... 13% 120M 2s +2024-04-29T04:26:46Z #15 1.628 16950K .......... .......... .......... .......... .......... 13% 112M 2s +2024-04-29T04:26:46Z #15 1.628 17000K .......... .......... .......... .......... .......... 13% 126M 2s +2024-04-29T04:26:46Z #15 1.628 17050K .......... .......... .......... .......... .......... 13% 121M 2s +2024-04-29T04:26:46Z #15 1.628 17100K .......... .......... .......... .......... .......... 13% 85.3M 2s +2024-04-29T04:26:46Z #15 1.628 17150K .......... .......... .......... .......... .......... 13% 130M 2s +2024-04-29T04:26:46Z #15 1.628 17200K .......... .......... .......... .......... .......... 13% 66.3M 2s +2024-04-29T04:26:46Z #15 1.628 17250K .......... .......... .......... .......... .......... 13% 95.4M 2s +2024-04-29T04:26:46Z #15 1.628 17300K .......... .......... .......... .......... .......... 13% 124M 2s +2024-04-29T04:26:46Z #15 1.628 17350K .......... .......... .......... .......... .......... 13% 86.0M 2s +2024-04-29T04:26:46Z #15 1.628 17400K .......... .......... .......... .......... .......... 13% 98.6M 2s +2024-04-29T04:26:46Z #15 1.628 17450K .......... .......... .......... .......... .......... 13% 92.4M 2s +2024-04-29T04:26:46Z #15 1.628 17500K .......... .......... .......... .......... .......... 13% 130M 2s +2024-04-29T04:26:46Z #15 1.628 17550K .......... .......... .......... .......... .......... 13% 75.1M 2s +2024-04-29T04:26:46Z #15 1.628 17600K .......... .......... .......... .......... .......... 13% 108M 2s +2024-04-29T04:26:46Z #15 1.628 17650K .......... .......... .......... .......... .......... 13% 108M 2s +2024-04-29T04:26:46Z #15 1.628 17700K .......... .......... .......... .......... .......... 13% 73.2M 2s +2024-04-29T04:26:46Z #15 1.628 17750K .......... .......... .......... .......... .......... 13% 114M 2s +2024-04-29T04:26:46Z #15 1.628 17800K .......... .......... .......... .......... .......... 13% 128M 2s +2024-04-29T04:26:46Z #15 1.628 17850K .......... .......... .......... .......... .......... 14% 31.5M 2s +2024-04-29T04:26:46Z #15 1.629 17900K .......... .......... .......... .......... .......... 14% 35.1M 2s +2024-04-29T04:26:46Z #15 1.632 17950K .......... .......... .......... .......... .......... 14% 122M 2s +2024-04-29T04:26:46Z #15 1.632 18000K .......... .......... .......... .......... .......... 14% 134M 2s +2024-04-29T04:26:46Z #15 1.632 18050K .......... .......... .......... .......... .......... 14% 84.5M 2s +2024-04-29T04:26:46Z #15 1.632 18100K .......... .......... .......... .......... .......... 14% 117M 2s +2024-04-29T04:26:46Z #15 1.633 18150K .......... .......... .......... .......... .......... 14% 6.05M 2s +2024-04-29T04:26:46Z #15 1.641 18200K .......... .......... .......... .......... .......... 14% 131M 2s +2024-04-29T04:26:46Z #15 1.641 18250K .......... .......... .......... .......... .......... 14% 109M 2s +2024-04-29T04:26:46Z #15 1.641 18300K .......... .......... .......... .......... .......... 14% 82.3M 2s +2024-04-29T04:26:46Z #15 1.642 18350K .......... .......... .......... .......... .......... 14% 91.1M 2s +2024-04-29T04:26:46Z #15 1.643 18400K .......... .......... .......... .......... .......... 14% 128M 2s +2024-04-29T04:26:46Z #15 1.643 18450K .......... .......... .......... .......... .......... 14% 105M 2s +2024-04-29T04:26:46Z #15 1.644 18500K .......... .......... .......... .......... .......... 14% 53.0M 2s +2024-04-29T04:26:46Z #15 1.644 18550K .......... .......... .......... .......... .......... 14% 117M 2s +2024-04-29T04:26:46Z #15 1.645 18600K .......... .......... .......... .......... .......... 14% 116M 2s +2024-04-29T04:26:46Z #15 1.645 18650K .......... .......... .......... .......... .......... 14% 74.8M 2s +2024-04-29T04:26:46Z #15 1.646 18700K .......... .......... .......... .......... .......... 14% 85.2M 2s +2024-04-29T04:26:46Z #15 1.647 18750K .......... .......... .......... .......... .......... 14% 106M 2s +2024-04-29T04:26:46Z #15 1.647 18800K .......... .......... .......... .......... .......... 14% 86.0M 2s +2024-04-29T04:26:46Z #15 1.648 18850K .......... .......... .......... .......... .......... 14% 120M 2s +2024-04-29T04:26:46Z #15 1.648 18900K .......... .......... .......... .......... .......... 14% 77.7M 2s +2024-04-29T04:26:46Z #15 1.657 18950K .......... .......... .......... .......... .......... 14% 5.70M 2s +2024-04-29T04:26:46Z #15 1.657 19000K .......... .......... .......... .......... .......... 14% 128M 2s +2024-04-29T04:26:46Z #15 1.658 19050K .......... .......... .......... .......... .......... 14% 99.1M 2s +2024-04-29T04:26:46Z #15 1.658 19100K .......... .......... .......... .......... .......... 14% 72.1M 2s +2024-04-29T04:26:46Z #15 1.659 19150K .......... .......... .......... .......... .......... 15% 112M 2s +2024-04-29T04:26:46Z #15 1.659 19200K .......... .......... .......... .......... .......... 15% 87.7M 2s +2024-04-29T04:26:46Z #15 1.660 19250K .......... .......... .......... .......... .......... 15% 89.0M 2s +2024-04-29T04:26:46Z #15 1.660 19300K .......... .......... .......... .......... .......... 15% 120M 2s +2024-04-29T04:26:46Z #15 1.661 19350K .......... .......... .......... .......... .......... 15% 91.8M 2s +2024-04-29T04:26:46Z #15 1.661 19400K .......... .......... .......... .......... .......... 15% 74.5M 2s +2024-04-29T04:26:46Z #15 1.662 19450K .......... .......... .......... .......... .......... 15% 121M 2s +2024-04-29T04:26:46Z #15 1.662 19500K .......... .......... .......... .......... .......... 15% 101M 2s +2024-04-29T04:26:46Z #15 1.663 19550K .......... .......... .......... .......... .......... 15% 68.7M 2s +2024-04-29T04:26:46Z #15 1.663 19600K .......... .......... .......... .......... .......... 15% 127M 2s +2024-04-29T04:26:46Z #15 1.664 19650K .......... .......... .......... .......... .......... 15% 124M 2s +2024-04-29T04:26:46Z #15 1.664 19700K .......... .......... .......... .......... .......... 15% 80.3M 2s +2024-04-29T04:26:46Z #15 1.665 19750K .......... .......... .......... .......... .......... 15% 81.1M 2s +2024-04-29T04:26:46Z #15 1.665 19800K .......... .......... .......... .......... .......... 15% 128M 2s +2024-04-29T04:26:46Z #15 1.666 19850K .......... .......... .......... .......... .......... 15% 72.7M 2s +2024-04-29T04:26:46Z #15 1.667 19900K .......... .......... .......... .......... .......... 15% 89.7M 2s +2024-04-29T04:26:46Z #15 1.667 19950K .......... .......... .......... .......... .......... 15% 99.3M 2s +2024-04-29T04:26:46Z #15 1.668 20000K .......... .......... .......... .......... .......... 15% 86.1M 2s +2024-04-29T04:26:46Z #15 1.668 20050K .......... .......... .......... .......... .......... 15% 117M 2s +2024-04-29T04:26:46Z #15 1.669 20100K .......... .......... .......... .......... .......... 15% 99.1M 2s +2024-04-29T04:26:46Z #15 1.669 20150K .......... .......... .......... .......... .......... 15% 90.9M 2s +2024-04-29T04:26:46Z #15 1.670 20200K .......... .......... .......... .......... .......... 15% 105M 2s +2024-04-29T04:26:46Z #15 1.670 20250K .......... .......... .......... .......... .......... 15% 84.6M 2s +2024-04-29T04:26:46Z #15 1.671 20300K .......... .......... .......... .......... .......... 15% 80.6M 2s +2024-04-29T04:26:46Z #15 1.671 20350K .......... .......... .......... .......... .......... 15% 113M 2s +2024-04-29T04:26:46Z #15 1.672 20400K .......... .......... .......... .......... .......... 16% 123M 2s +2024-04-29T04:26:46Z #15 1.672 20450K .......... .......... .......... .......... .......... 16% 169M 2s +2024-04-29T04:26:46Z #15 1.672 20500K .......... .......... .......... .......... .......... 16% 64.2M 2s +2024-04-29T04:26:46Z #15 1.677 20550K .......... .......... .......... .......... .......... 16% 113M 2s +2024-04-29T04:26:46Z #15 1.677 20600K .......... .......... .......... .......... .......... 16% 147M 2s +2024-04-29T04:26:46Z #15 1.677 20650K .......... .......... .......... .......... .......... 16% 179M 2s +2024-04-29T04:26:46Z #15 1.677 20700K .......... .......... .......... .......... .......... 16% 70.5M 2s +2024-04-29T04:26:46Z #15 1.677 20750K .......... .......... .......... .......... .......... 16% 137M 2s +2024-04-29T04:26:46Z #15 1.677 20800K .......... .......... .......... .......... .......... 16% 145M 2s +2024-04-29T04:26:46Z #15 1.677 20850K .......... .......... .......... .......... .......... 16% 98.2M 2s +2024-04-29T04:26:46Z #15 1.677 20900K .......... .......... .......... .......... .......... 16% 108M 2s +2024-04-29T04:26:46Z #15 1.677 20950K .......... .......... .......... .......... .......... 16% 103M 2s +2024-04-29T04:26:46Z #15 1.677 21000K .......... .......... .......... .......... .......... 16% 162M 2s +2024-04-29T04:26:46Z #15 1.677 21050K .......... .......... .......... .......... .......... 16% 86.5M 2s +2024-04-29T04:26:46Z #15 1.681 21100K .......... .......... .......... .......... .......... 16% 158M 2s +2024-04-29T04:26:46Z #15 1.681 21150K .......... .......... .......... .......... .......... 16% 114M 2s +2024-04-29T04:26:46Z #15 1.681 21200K .......... .......... .......... .......... .......... 16% 64.0M 2s +2024-04-29T04:26:46Z #15 1.681 21250K .......... .......... .......... .......... .......... 16% 171M 2s +2024-04-29T04:26:46Z #15 1.681 21300K .......... .......... .......... .......... .......... 16% 145M 2s +2024-04-29T04:26:46Z #15 1.681 21350K .......... .......... .......... .......... .......... 16% 178M 2s +2024-04-29T04:26:46Z #15 1.681 21400K .......... .......... .......... .......... .......... 16% 57.2M 2s +2024-04-29T04:26:46Z #15 1.681 21450K .......... .......... .......... .......... .......... 16% 129M 2s +2024-04-29T04:26:46Z #15 1.681 21500K .......... .......... .......... .......... .......... 16% 150M 2s +2024-04-29T04:26:46Z #15 1.682 21550K .......... .......... .......... .......... .......... 16% 147M 2s +2024-04-29T04:26:46Z #15 1.682 21600K .......... .......... .......... .......... .......... 16% 57.0M 2s +2024-04-29T04:26:46Z #15 1.683 21650K .......... .......... .......... .......... .......... 16% 131M 2s +2024-04-29T04:26:46Z #15 1.683 21700K .......... .......... .......... .......... .......... 17% 120M 2s +2024-04-29T04:26:46Z #15 1.684 21750K .......... .......... .......... .......... .......... 17% 138M 2s +2024-04-29T04:26:46Z #15 1.684 21800K .......... .......... .......... .......... .......... 17% 5.68M 2s +2024-04-29T04:26:46Z #15 1.693 21850K .......... .......... .......... .......... .......... 17% 116M 2s +2024-04-29T04:26:46Z #15 1.693 21900K .......... .......... .......... .......... .......... 17% 138M 2s +2024-04-29T04:26:46Z #15 1.693 21950K .......... .......... .......... .......... .......... 17% 160M 2s +2024-04-29T04:26:46Z #15 1.694 22000K .......... .......... .......... .......... .......... 17% 55.3M 2s +2024-04-29T04:26:46Z #15 1.695 22050K .......... .......... .......... .......... .......... 17% 167M 2s +2024-04-29T04:26:46Z #15 1.695 22100K .......... .......... .......... .......... .......... 17% 122M 2s +2024-04-29T04:26:46Z #15 1.696 22150K .......... .......... .......... .......... .......... 17% 156M 2s +2024-04-29T04:26:46Z #15 1.696 22200K .......... .......... .......... .......... .......... 17% 69.7M 2s +2024-04-29T04:26:46Z #15 1.696 22250K .......... .......... .......... .......... .......... 17% 116M 2s +2024-04-29T04:26:46Z #15 1.697 22300K .......... .......... .......... .......... .......... 17% 142M 2s +2024-04-29T04:26:46Z #15 1.698 22350K .......... .......... .......... .......... .......... 17% 82.2M 2s +2024-04-29T04:26:46Z #15 1.698 22400K .......... .......... .......... .......... .......... 17% 102M 2s +2024-04-29T04:26:46Z #15 1.699 22450K .......... .......... .......... .......... .......... 17% 109M 2s +2024-04-29T04:26:46Z #15 1.699 22500K .......... .......... .......... .......... .......... 17% 84.7M 2s +2024-04-29T04:26:46Z #15 1.699 22550K .......... .......... .......... .......... .......... 17% 77.6M 2s +2024-04-29T04:26:46Z #15 1.700 22600K .......... .......... .......... .......... .......... 17% 155M 2s +2024-04-29T04:26:46Z #15 1.701 22650K .......... .......... .......... .......... .......... 17% 123M 2s +2024-04-29T04:26:46Z #15 1.701 22700K .......... .......... .......... .......... .......... 17% 8.85M 2s +2024-04-29T04:26:46Z #15 1.706 22750K .......... .......... .......... .......... .......... 17% 122M 2s +2024-04-29T04:26:46Z #15 1.707 22800K .......... .......... .......... .......... .......... 17% 125M 2s +2024-04-29T04:26:46Z #15 1.707 22850K .......... .......... .......... .......... .......... 17% 94.7M 2s +2024-04-29T04:26:46Z #15 1.707 22900K .......... .......... .......... .......... .......... 17% 85.3M 2s +2024-04-29T04:26:46Z #15 1.708 22950K .......... .......... .......... .......... .......... 17% 128M 2s +2024-04-29T04:26:46Z #15 1.708 23000K .......... .......... .......... .......... .......... 18% 45.5M 2s +2024-04-29T04:26:46Z #15 1.710 23050K .......... .......... .......... .......... .......... 18% 149M 2s +2024-04-29T04:26:46Z #15 1.710 23100K .......... .......... .......... .......... .......... 18% 116M 2s +2024-04-29T04:26:46Z #15 1.710 23150K .......... .......... .......... .......... .......... 18% 131M 2s +2024-04-29T04:26:46Z #15 1.711 23200K .......... .......... .......... .......... .......... 18% 124M 2s +2024-04-29T04:26:46Z #15 1.711 23250K .......... .......... .......... .......... .......... 18% 63.7M 2s +2024-04-29T04:26:46Z #15 1.712 23300K .......... .......... .......... .......... .......... 18% 90.4M 2s +2024-04-29T04:26:46Z #15 1.712 23350K .......... .......... .......... .......... .......... 18% 156M 2s +2024-04-29T04:26:46Z #15 1.713 23400K .......... .......... .......... .......... .......... 18% 102M 2s +2024-04-29T04:26:46Z #15 1.714 23450K .......... .......... .......... .......... .......... 18% 76.6M 2s +2024-04-29T04:26:46Z #15 1.714 23500K .......... .......... .......... .......... .......... 18% 116M 2s +2024-04-29T04:26:46Z #15 1.714 23550K .......... .......... .......... .......... .......... 18% 120M 2s +2024-04-29T04:26:46Z #15 1.715 23600K .......... .......... .......... .......... .......... 18% 84.9M 2s +2024-04-29T04:26:46Z #15 1.715 23650K .......... .......... .......... .......... .......... 18% 88.3M 2s +2024-04-29T04:26:46Z #15 1.716 23700K .......... .......... .......... .......... .......... 18% 133M 2s +2024-04-29T04:26:46Z #15 1.716 23750K .......... .......... .......... .......... .......... 18% 82.3M 2s +2024-04-29T04:26:46Z #15 1.717 23800K .......... .......... .......... .......... .......... 18% 96.9M 2s +2024-04-29T04:26:46Z #15 1.717 23850K .......... .......... .......... .......... .......... 18% 132M 2s +2024-04-29T04:26:46Z #15 1.717 23900K .......... .......... .......... .......... .......... 18% 134M 2s +2024-04-29T04:26:46Z #15 1.718 23950K .......... .......... .......... .......... .......... 18% 75.4M 2s +2024-04-29T04:26:46Z #15 1.719 24000K .......... .......... .......... .......... .......... 18% 107M 2s +2024-04-29T04:26:46Z #15 1.719 24050K .......... .......... .......... .......... .......... 18% 118M 2s +2024-04-29T04:26:46Z #15 1.720 24100K .......... .......... .......... .......... .......... 18% 80.5M 2s +2024-04-29T04:26:46Z #15 1.720 24150K .......... .......... .......... .......... .......... 18% 147M 2s +2024-04-29T04:26:46Z #15 1.721 24200K .......... .......... .......... .......... .......... 18% 79.9M 2s +2024-04-29T04:26:46Z #15 1.721 24250K .......... .......... .......... .......... .......... 19% 134M 2s +2024-04-29T04:26:46Z #15 1.722 24300K .......... .......... .......... .......... .......... 19% 132M 2s +2024-04-29T04:26:46Z #15 1.722 24350K .......... .......... .......... .......... .......... 19% 80.1M 2s +2024-04-29T04:26:46Z #15 1.723 24400K .......... .......... .......... .......... .......... 19% 105M 2s +2024-04-29T04:26:46Z #15 1.723 24450K .......... .......... .......... .......... .......... 19% 116M 2s +2024-04-29T04:26:46Z #15 1.723 24500K .......... .......... .......... .......... .......... 19% 84.2M 2s +2024-04-29T04:26:46Z #15 1.724 24550K .......... .......... .......... .......... .......... 19% 95.8M 2s +2024-04-29T04:26:46Z #15 1.725 24600K .......... .......... .......... .......... .......... 19% 132M 2s +2024-04-29T04:26:46Z #15 1.725 24650K .......... .......... .......... .......... .......... 19% 99.1M 2s +2024-04-29T04:26:46Z #15 1.725 24700K .......... .......... .......... .......... .......... 19% 81.0M 2s +2024-04-29T04:26:46Z #15 1.726 24750K .......... .......... .......... .......... .......... 19% 154M 2s +2024-04-29T04:26:46Z #15 1.726 24800K .......... .......... .......... .......... .......... 19% 131M 2s +2024-04-29T04:26:46Z #15 1.727 24850K .......... .......... .......... .......... .......... 19% 58.3M 2s +2024-04-29T04:26:46Z #15 1.727 24900K .......... .......... .......... .......... .......... 19% 112M 2s +2024-04-29T04:26:46Z #15 1.728 24950K .......... .......... .......... .......... .......... 19% 112M 2s +2024-04-29T04:26:46Z #15 1.728 25000K .......... .......... .......... .......... .......... 19% 86.3M 1s +2024-04-29T04:26:46Z #15 1.729 25050K .......... .......... .......... .......... .......... 19% 84.3M 1s +2024-04-29T04:26:46Z #15 1.729 25100K .......... .......... .......... .......... .......... 19% 109M 1s +2024-04-29T04:26:46Z #15 1.730 25150K .......... .......... .......... .......... .......... 19% 81.7M 1s +2024-04-29T04:26:46Z #15 1.730 25200K .......... .......... .......... .......... .......... 19% 98.0M 1s +2024-04-29T04:26:46Z #15 1.731 25250K .......... .......... .......... .......... .......... 19% 119M 1s +2024-04-29T04:26:46Z #15 1.731 25300K .......... .......... .......... .......... .......... 19% 71.1M 1s +2024-04-29T04:26:46Z #15 1.732 25350K .......... .......... .......... .......... .......... 19% 100M 1s +2024-04-29T04:26:46Z #15 1.732 25400K .......... .......... .......... .......... .......... 19% 72.1M 1s +2024-04-29T04:26:46Z #15 1.734 25450K .......... .......... .......... .......... .......... 19% 12.8M 1s +2024-04-29T04:26:46Z #15 1.745 25500K .......... .......... .......... .......... .......... 19% 152M 1s +2024-04-29T04:26:46Z #15 1.745 25550K .......... .......... .......... .......... .......... 20% 154M 1s +2024-04-29T04:26:46Z #15 1.745 25600K .......... .......... .......... .......... .......... 20% 133M 1s +2024-04-29T04:26:46Z #15 1.745 25650K .......... .......... .......... .......... .......... 20% 143M 1s +2024-04-29T04:26:46Z #15 1.745 25700K .......... .......... .......... .......... .......... 20% 168M 1s +2024-04-29T04:26:46Z #15 1.745 25750K .......... .......... .......... .......... .......... 20% 117M 1s +2024-04-29T04:26:46Z #15 1.745 25800K .......... .......... .......... .......... .......... 20% 160M 1s +2024-04-29T04:26:46Z #15 1.745 25850K .......... .......... .......... .......... .......... 20% 152M 1s +2024-04-29T04:26:46Z #15 1.745 25900K .......... .......... .......... .......... .......... 20% 156M 1s +2024-04-29T04:26:46Z #15 1.745 25950K .......... .......... .......... .......... .......... 20% 155M 1s +2024-04-29T04:26:46Z #15 1.745 26000K .......... .......... .......... .......... .......... 20% 150M 1s +2024-04-29T04:26:46Z #15 1.745 26050K .......... .......... .......... .......... .......... 20% 120M 1s +2024-04-29T04:26:46Z #15 1.745 26100K .......... .......... .......... .......... .......... 20% 145M 1s +2024-04-29T04:26:46Z #15 1.745 26150K .......... .......... .......... .......... .......... 20% 147M 1s +2024-04-29T04:26:46Z #15 1.745 26200K .......... .......... .......... .......... .......... 20% 146M 1s +2024-04-29T04:26:46Z #15 1.745 26250K .......... .......... .......... .......... .......... 20% 130M 1s +2024-04-29T04:26:46Z #15 1.745 26300K .......... .......... .......... .......... .......... 20% 141M 1s +2024-04-29T04:26:46Z #15 1.745 26350K .......... .......... .......... .......... .......... 20% 167M 1s +2024-04-29T04:26:46Z #15 1.745 26400K .......... .......... .......... .......... .......... 20% 154M 1s +2024-04-29T04:26:46Z #15 1.745 26450K .......... .......... .......... .......... .......... 20% 124M 1s +2024-04-29T04:26:46Z #15 1.745 26500K .......... .......... .......... .......... .......... 20% 153M 1s +2024-04-29T04:26:46Z #15 1.745 26550K .......... .......... .......... .......... .......... 20% 165M 1s +2024-04-29T04:26:46Z #15 1.745 26600K .......... .......... .......... .......... .......... 20% 153M 1s +2024-04-29T04:26:46Z #15 1.745 26650K .......... .......... .......... .......... .......... 20% 15.1M 1s +2024-04-29T04:26:46Z #15 1.748 26700K .......... .......... .......... .......... .......... 20% 23.8M 1s +2024-04-29T04:26:46Z #15 1.750 26750K .......... .......... .......... .......... .......... 20% 16.9M 1s +2024-04-29T04:26:46Z #15 1.753 26800K .......... .......... .......... .......... .......... 21% 17.8M 1s +2024-04-29T04:26:46Z #15 1.756 26850K .......... .......... .......... .......... .......... 21% 20.7M 1s +2024-04-29T04:26:46Z #15 1.758 26900K .......... .......... .......... .......... .......... 21% 19.9M 1s +2024-04-29T04:26:46Z #15 1.760 26950K .......... .......... .......... .......... .......... 21% 19.8M 1s +2024-04-29T04:26:46Z #15 1.763 27000K .......... .......... .......... .......... .......... 21% 22.2M 1s +2024-04-29T04:26:46Z #15 1.765 27050K .......... .......... .......... .......... .......... 21% 23.7M 2s +2024-04-29T04:26:46Z #15 1.767 27100K .......... .......... .......... .......... .......... 21% 31.0M 2s +2024-04-29T04:26:46Z #15 1.773 27150K .......... .......... .......... .......... .......... 21% 44.6M 2s +2024-04-29T04:26:46Z #15 1.773 27200K .......... .......... .......... .......... .......... 21% 46.0M 2s +2024-04-29T04:26:46Z #15 1.773 27250K .......... .......... .......... .......... .......... 21% 166M 2s +2024-04-29T04:26:46Z #15 1.773 27300K .......... .......... .......... .......... .......... 21% 144M 1s +2024-04-29T04:26:46Z #15 1.773 27350K .......... .......... .......... .......... .......... 21% 169M 1s +2024-04-29T04:26:46Z #15 1.773 27400K .......... .......... .......... .......... .......... 21% 149M 1s +2024-04-29T04:26:46Z #15 1.773 27450K .......... .......... .......... .......... .......... 21% 119M 1s +2024-04-29T04:26:46Z #15 1.773 27500K .......... .......... .......... .......... .......... 21% 72.0M 1s +2024-04-29T04:26:46Z #15 1.773 27550K .......... .......... .......... .......... .......... 21% 20.3M 1s +2024-04-29T04:26:46Z #15 1.776 27600K .......... .......... .......... .......... .......... 21% 20.7M 2s +2024-04-29T04:26:46Z #15 1.778 27650K .......... .......... .......... .......... .......... 21% 36.0M 2s +2024-04-29T04:26:46Z #15 1.779 27700K .......... .......... .......... .......... .......... 21% 30.4M 2s +2024-04-29T04:26:46Z #15 1.781 27750K .......... .......... .......... .......... .......... 21% 41.5M 2s +2024-04-29T04:26:46Z #15 1.782 27800K .......... .......... .......... .......... .......... 21% 38.5M 2s +2024-04-29T04:26:46Z #15 1.783 27850K .......... .......... .......... .......... .......... 21% 57.9M 2s +2024-04-29T04:26:46Z #15 1.785 27900K .......... .......... .......... .......... .......... 21% 168M 2s +2024-04-29T04:26:46Z #15 1.785 27950K .......... .......... .......... .......... .......... 21% 138M 2s +2024-04-29T04:26:46Z #15 1.785 28000K .......... .......... .......... .......... .......... 21% 20.5M 2s +2024-04-29T04:26:46Z #15 1.787 28050K .......... .......... .......... .......... .......... 21% 20.3M 2s +2024-04-29T04:26:46Z #15 1.789 28100K .......... .......... .......... .......... .......... 22% 27.7M 2s +2024-04-29T04:26:46Z #15 1.793 28150K .......... .......... .......... .......... .......... 22% 154M 2s +2024-04-29T04:26:46Z #15 1.793 28200K .......... .......... .......... .......... .......... 22% 158M 2s +2024-04-29T04:26:46Z #15 1.793 28250K .......... .......... .......... .......... .......... 22% 163M 2s +2024-04-29T04:26:46Z #15 1.793 28300K .......... .......... .......... .......... .......... 22% 143M 2s +2024-04-29T04:26:46Z #15 1.793 28350K .......... .......... .......... .......... .......... 22% 29.0M 2s +2024-04-29T04:26:46Z #15 1.794 28400K .......... .......... .......... .......... .......... 22% 21.4M 2s +2024-04-29T04:26:46Z #15 1.797 28450K .......... .......... .......... .......... .......... 22% 23.8M 2s +2024-04-29T04:26:46Z #15 1.799 28500K .......... .......... .......... .......... .......... 22% 23.2M 2s +2024-04-29T04:26:46Z #15 1.801 28550K .......... .......... .......... .......... .......... 22% 36.5M 2s +2024-04-29T04:26:46Z #15 1.802 28600K .......... .......... .......... .......... .......... 22% 59.1M 2s +2024-04-29T04:26:46Z #15 1.803 28650K .......... .......... .......... .......... .......... 22% 47.5M 2s +2024-04-29T04:26:46Z #15 1.804 28700K .......... .......... .......... .......... .......... 22% 17.0M 2s +2024-04-29T04:26:46Z #15 1.807 28750K .......... .......... .......... .......... .......... 22% 38.0M 2s +2024-04-29T04:26:46Z #15 1.808 28800K .......... .......... .......... .......... .......... 22% 32.5M 2s +2024-04-29T04:26:46Z #15 1.810 28850K .......... .......... .......... .......... .......... 22% 31.3M 2s +2024-04-29T04:26:46Z #15 1.811 28900K .......... .......... .......... .......... .......... 22% 44.9M 2s +2024-04-29T04:26:46Z #15 1.812 28950K .......... .......... .......... .......... .......... 22% 58.0M 2s +2024-04-29T04:26:46Z #15 1.817 29000K .......... .......... .......... .......... .......... 22% 64.5M 2s +2024-04-29T04:26:46Z #15 1.817 29050K .......... .......... .......... .......... .......... 22% 89.5M 2s +2024-04-29T04:26:46Z #15 1.817 29100K .......... .......... .......... .......... .......... 22% 131M 2s +2024-04-29T04:26:46Z #15 1.817 29150K .......... .......... .......... .......... .......... 22% 64.8M 2s +2024-04-29T04:26:46Z #15 1.817 29200K .......... .......... .......... .......... .......... 22% 111M 2s +2024-04-29T04:26:46Z #15 1.817 29250K .......... .......... .......... .......... .......... 22% 115M 2s +2024-04-29T04:26:46Z #15 1.817 29300K .......... .......... .......... .......... .......... 22% 48.7M 2s +2024-04-29T04:26:46Z #15 1.821 29350K .......... .......... .......... .......... .......... 23% 99.6M 2s +2024-04-29T04:26:46Z #15 1.821 29400K .......... .......... .......... .......... .......... 23% 123M 2s +2024-04-29T04:26:46Z #15 1.821 29450K .......... .......... .......... .......... .......... 23% 69.7M 2s +2024-04-29T04:26:46Z #15 1.821 29500K .......... .......... .......... .......... .......... 23% 98.2M 2s +2024-04-29T04:26:46Z #15 1.821 29550K .......... .......... .......... .......... .......... 23% 85.8M 2s +2024-04-29T04:26:46Z #15 1.821 29600K .......... .......... .......... .......... .......... 23% 113M 2s +2024-04-29T04:26:46Z #15 1.821 29650K .......... .......... .......... .......... .......... 23% 15.5M 2s +2024-04-29T04:26:46Z #15 1.824 29700K .......... .......... .......... .......... .......... 23% 154M 2s +2024-04-29T04:26:46Z #15 1.824 29750K .......... .......... .......... .......... .......... 23% 137M 2s +2024-04-29T04:26:46Z #15 1.824 29800K .......... .......... .......... .......... .......... 23% 69.0M 2s +2024-04-29T04:26:46Z #15 1.825 29850K .......... .......... .......... .......... .......... 23% 99.1M 2s +2024-04-29T04:26:46Z #15 1.826 29900K .......... .......... .......... .......... .......... 23% 131M 2s +2024-04-29T04:26:46Z #15 1.826 29950K .......... .......... .......... .......... .......... 23% 77.5M 2s +2024-04-29T04:26:46Z #15 1.827 30000K .......... .......... .......... .......... .......... 23% 89.5M 2s +2024-04-29T04:26:46Z #15 1.827 30050K .......... .......... .......... .......... .......... 23% 122M 2s +2024-04-29T04:26:46Z #15 1.827 30100K .......... .......... .......... .......... .......... 23% 141M 2s +2024-04-29T04:26:46Z #15 1.828 30150K .......... .......... .......... .......... .......... 23% 88.6M 2s +2024-04-29T04:26:46Z #15 1.828 30200K .......... .......... .......... .......... .......... 23% 99.3M 2s +2024-04-29T04:26:46Z #15 1.829 30250K .......... .......... .......... .......... .......... 23% 118M 1s +2024-04-29T04:26:46Z #15 1.829 30300K .......... .......... .......... .......... .......... 23% 80.6M 1s +2024-04-29T04:26:46Z #15 1.830 30350K .......... .......... .......... .......... .......... 23% 89.4M 1s +2024-04-29T04:26:46Z #15 1.830 30400K .......... .......... .......... .......... .......... 23% 144M 1s +2024-04-29T04:26:46Z #15 1.831 30450K .......... .......... .......... .......... .......... 23% 134M 1s +2024-04-29T04:26:46Z #15 1.831 30500K .......... .......... .......... .......... .......... 23% 119M 1s +2024-04-29T04:26:46Z #15 1.832 30550K .......... .......... .......... .......... .......... 23% 72.3M 1s +2024-04-29T04:26:46Z #15 1.832 30600K .......... .......... .......... .......... .......... 23% 120M 1s +2024-04-29T04:26:46Z #15 1.832 30650K .......... .......... .......... .......... .......... 24% 109M 1s +2024-04-29T04:26:46Z #15 1.833 30700K .......... .......... .......... .......... .......... 24% 70.2M 1s +2024-04-29T04:26:46Z #15 1.834 30750K .......... .......... .......... .......... .......... 24% 6.60M 2s +2024-04-29T04:26:46Z #15 1.841 30800K .......... .......... .......... .......... .......... 24% 101M 2s +2024-04-29T04:26:46Z #15 1.842 30850K .......... .......... .......... .......... .......... 24% 135M 2s +2024-04-29T04:26:46Z #15 1.842 30900K .......... .......... .......... .......... .......... 24% 67.1M 2s +2024-04-29T04:26:46Z #15 1.843 30950K .......... .......... .......... .......... .......... 24% 94.0M 1s +2024-04-29T04:26:46Z #15 1.843 31000K .......... .......... .......... .......... .......... 24% 104M 1s +2024-04-29T04:26:46Z #15 1.844 31050K .......... .......... .......... .......... .......... 24% 132M 1s +2024-04-29T04:26:46Z #15 1.844 31100K .......... .......... .......... .......... .......... 24% 81.3M 1s +2024-04-29T04:26:46Z #15 1.845 31150K .......... .......... .......... .......... .......... 24% 108M 1s +2024-04-29T04:26:46Z #15 1.845 31200K .......... .......... .......... .......... .......... 24% 129M 1s +2024-04-29T04:26:46Z #15 1.846 31250K .......... .......... .......... .......... .......... 24% 77.2M 1s +2024-04-29T04:26:46Z #15 1.846 31300K .......... .......... .......... .......... .......... 24% 95.0M 1s +2024-04-29T04:26:46Z #15 1.847 31350K .......... .......... .......... .......... .......... 24% 91.5M 1s +2024-04-29T04:26:46Z #15 1.847 31400K .......... .......... .......... .......... .......... 24% 120M 1s +2024-04-29T04:26:46Z #15 1.847 31450K .......... .......... .......... .......... .......... 24% 132M 1s +2024-04-29T04:26:46Z #15 1.848 31500K .......... .......... .......... .......... .......... 24% 71.1M 1s +2024-04-29T04:26:46Z #15 1.848 31550K .......... .......... .......... .......... .......... 24% 110M 1s +2024-04-29T04:26:46Z #15 1.849 31600K .......... .......... .......... .......... .......... 24% 105M 1s +2024-04-29T04:26:46Z #15 1.850 31650K .......... .......... .......... .......... .......... 24% 89.4M 1s +2024-04-29T04:26:46Z #15 1.850 31700K .......... .......... .......... .......... .......... 24% 73.2M 1s +2024-04-29T04:26:46Z #15 1.851 31750K .......... .......... .......... .......... .......... 24% 138M 1s +2024-04-29T04:26:46Z #15 1.851 31800K .......... .......... .......... .......... .......... 24% 111M 1s +2024-04-29T04:26:46Z #15 1.851 31850K .......... .......... .......... .......... .......... 24% 134M 1s +2024-04-29T04:26:46Z #15 1.852 31900K .......... .......... .......... .......... .......... 25% 112M 1s +2024-04-29T04:26:46Z #15 1.852 31950K .......... .......... .......... .......... .......... 25% 5.65M 1s +2024-04-29T04:26:46Z #15 1.861 32000K .......... .......... .......... .......... .......... 25% 128M 1s +2024-04-29T04:26:46Z #15 1.861 32050K .......... .......... .......... .......... .......... 25% 75.3M 1s +2024-04-29T04:26:46Z #15 1.862 32100K .......... .......... .......... .......... .......... 25% 127M 1s +2024-04-29T04:26:46Z #15 1.862 32150K .......... .......... .......... .......... .......... 25% 115M 1s +2024-04-29T04:26:46Z #15 1.863 32200K .......... .......... .......... .......... .......... 25% 74.9M 1s +2024-04-29T04:26:46Z #15 1.864 32250K .......... .......... .......... .......... .......... 25% 85.9M 1s +2024-04-29T04:26:46Z #15 1.864 32300K .......... .......... .......... .......... .......... 25% 99.9M 1s +2024-04-29T04:26:46Z #15 1.865 32350K .......... .......... .......... .......... .......... 25% 128M 1s +2024-04-29T04:26:46Z #15 1.865 32400K .......... .......... .......... .......... .......... 25% 69.5M 1s +2024-04-29T04:26:46Z #15 1.866 32450K .......... .......... .......... .......... .......... 25% 102M 1s +2024-04-29T04:26:46Z #15 1.866 32500K .......... .......... .......... .......... .......... 25% 115M 1s +2024-04-29T04:26:46Z #15 1.867 32550K .......... .......... .......... .......... .......... 25% 91.3M 1s +2024-04-29T04:26:46Z #15 1.867 32600K .......... .......... .......... .......... .......... 25% 61.2M 1s +2024-04-29T04:26:46Z #15 1.868 32650K .......... .......... .......... .......... .......... 25% 145M 1s +2024-04-29T04:26:46Z #15 1.868 32700K .......... .......... .......... .......... .......... 25% 98.9M 1s +2024-04-29T04:26:46Z #15 1.869 32750K .......... .......... .......... .......... .......... 25% 73.4M 1s +2024-04-29T04:26:46Z #15 1.869 32800K .......... .......... .......... .......... .......... 25% 113M 1s +2024-04-29T04:26:46Z #15 1.870 32850K .......... .......... .......... .......... .......... 25% 112M 1s +2024-04-29T04:26:46Z #15 1.870 32900K .......... .......... .......... .......... .......... 25% 61.4M 1s +2024-04-29T04:26:46Z #15 1.871 32950K .......... .......... .......... .......... .......... 25% 118M 1s +2024-04-29T04:26:46Z #15 1.871 33000K .......... .......... .......... .......... .......... 25% 108M 1s +2024-04-29T04:26:46Z #15 1.872 33050K .......... .......... .......... .......... .......... 25% 65.6M 1s +2024-04-29T04:26:46Z #15 1.873 33100K .......... .......... .......... .......... .......... 25% 85.3M 1s +2024-04-29T04:26:46Z #15 1.873 33150K .......... .......... .......... .......... .......... 25% 134M 1s +2024-04-29T04:26:46Z #15 1.874 33200K .......... .......... .......... .......... .......... 26% 125M 1s +2024-04-29T04:26:46Z #15 1.874 33250K .......... .......... .......... .......... .......... 26% 72.1M 1s +2024-04-29T04:26:46Z #15 1.874 33300K .......... .......... .......... .......... .......... 26% 92.0M 1s +2024-04-29T04:26:46Z #15 1.875 33350K .......... .......... .......... .......... .......... 26% 123M 1s +2024-04-29T04:26:46Z #15 1.875 33400K .......... .......... .......... .......... .......... 26% 114M 1s +2024-04-29T04:26:46Z #15 1.876 33450K .......... .......... .......... .......... .......... 26% 70.4M 1s +2024-04-29T04:26:46Z #15 1.876 33500K .......... .......... .......... .......... .......... 26% 6.08M 1s +2024-04-29T04:26:46Z #15 1.885 33550K .......... .......... .......... .......... .......... 26% 124M 1s +2024-04-29T04:26:46Z #15 1.885 33600K .......... .......... .......... .......... .......... 26% 120M 1s +2024-04-29T04:26:46Z #15 1.886 33650K .......... .......... .......... .......... .......... 26% 61.3M 1s +2024-04-29T04:26:46Z #15 1.886 33700K .......... .......... .......... .......... .......... 26% 95.8M 1s +2024-04-29T04:26:46Z #15 1.887 33750K .......... .......... .......... .......... .......... 26% 138M 1s +2024-04-29T04:26:46Z #15 1.887 33800K .......... .......... .......... .......... .......... 26% 59.1M 1s +2024-04-29T04:26:46Z #15 1.888 33850K .......... .......... .......... .......... .......... 26% 129M 1s +2024-04-29T04:26:46Z #15 1.888 33900K .......... .......... .......... .......... .......... 26% 105M 1s +2024-04-29T04:26:46Z #15 1.889 33950K .......... .......... .......... .......... .......... 26% 74.4M 1s +2024-04-29T04:26:46Z #15 1.890 34000K .......... .......... .......... .......... .......... 26% 118M 1s +2024-04-29T04:26:46Z #15 1.890 34050K .......... .......... .......... .......... .......... 26% 104M 1s +2024-04-29T04:26:46Z #15 1.891 34100K .......... .......... .......... .......... .......... 26% 98.2M 1s +2024-04-29T04:26:46Z #15 1.891 34150K .......... .......... .......... .......... .......... 26% 140M 1s +2024-04-29T04:26:46Z #15 1.891 34200K .......... .......... .......... .......... .......... 26% 66.6M 1s +2024-04-29T04:26:46Z #15 1.892 34250K .......... .......... .......... .......... .......... 26% 136M 1s +2024-04-29T04:26:46Z #15 1.893 34300K .......... .......... .......... .......... .......... 26% 136M 1s +2024-04-29T04:26:46Z #15 1.893 34350K .......... .......... .......... .......... .......... 26% 62.6M 1s +2024-04-29T04:26:46Z #15 1.893 34400K .......... .......... .......... .......... .......... 26% 131M 1s +2024-04-29T04:26:46Z #15 1.894 34450K .......... .......... .......... .......... .......... 26% 124M 1s +2024-04-29T04:26:46Z #15 1.894 34500K .......... .......... .......... .......... .......... 27% 69.7M 1s +2024-04-29T04:26:46Z #15 1.895 34550K .......... .......... .......... .......... .......... 27% 105M 1s +2024-04-29T04:26:46Z #15 1.896 34600K .......... .......... .......... .......... .......... 27% 131M 1s +2024-04-29T04:26:46Z #15 1.896 34650K .......... .......... .......... .......... .......... 27% 129M 1s +2024-04-29T04:26:46Z #15 1.896 34700K .......... .......... .......... .......... .......... 27% 64.4M 1s +2024-04-29T04:26:46Z #15 1.897 34750K .......... .......... .......... .......... .......... 27% 115M 1s +2024-04-29T04:26:46Z #15 1.897 34800K .......... .......... .......... .......... .......... 27% 118M 1s +2024-04-29T04:26:46Z #15 1.898 34850K .......... .......... .......... .......... .......... 27% 128M 1s +2024-04-29T04:26:46Z #15 1.898 34900K .......... .......... .......... .......... .......... 27% 72.6M 1s +2024-04-29T04:26:46Z #15 1.899 34950K .......... .......... .......... .......... .......... 27% 91.1M 1s +2024-04-29T04:26:46Z #15 1.900 35000K .......... .......... .......... .......... .......... 27% 146M 1s +2024-04-29T04:26:46Z #15 1.900 35050K .......... .......... .......... .......... .......... 27% 60.0M 1s +2024-04-29T04:26:46Z #15 1.901 35100K .......... .......... .......... .......... .......... 27% 113M 1s +2024-04-29T04:26:46Z #15 1.901 35150K .......... .......... .......... .......... .......... 27% 115M 1s +2024-04-29T04:26:46Z #15 1.901 35200K .......... .......... .......... .......... .......... 27% 80.1M 1s +2024-04-29T04:26:46Z #15 1.902 35250K .......... .......... .......... .......... .......... 27% 111M 1s +2024-04-29T04:26:46Z #15 1.903 35300K .......... .......... .......... .......... .......... 27% 128M 1s +2024-04-29T04:26:46Z #15 1.903 35350K .......... .......... .......... .......... .......... 27% 78.2M 1s +2024-04-29T04:26:46Z #15 1.904 35400K .......... .......... .......... .......... .......... 27% 84.4M 1s +2024-04-29T04:26:46Z #15 1.904 35450K .......... .......... .......... .......... .......... 27% 128M 1s +2024-04-29T04:26:46Z #15 1.905 35500K .......... .......... .......... .......... .......... 27% 82.0M 1s +2024-04-29T04:26:46Z #15 1.905 35550K .......... .......... .......... .......... .......... 27% 102M 1s +2024-04-29T04:26:46Z #15 1.906 35600K .......... .......... .......... .......... .......... 27% 115M 1s +2024-04-29T04:26:46Z #15 1.906 35650K .......... .......... .......... .......... .......... 27% 121M 1s +2024-04-29T04:26:46Z #15 1.906 35700K .......... .......... .......... .......... .......... 27% 73.1M 1s +2024-04-29T04:26:46Z #15 1.907 35750K .......... .......... .......... .......... .......... 28% 133M 1s +2024-04-29T04:26:46Z #15 1.907 35800K .......... .......... .......... .......... .......... 28% 75.5M 1s +2024-04-29T04:26:46Z #15 1.908 35850K .......... .......... .......... .......... .......... 28% 120M 1s +2024-04-29T04:26:46Z #15 1.908 35900K .......... .......... .......... .......... .......... 28% 142M 1s +2024-04-29T04:26:46Z #15 1.909 35950K .......... .......... .......... .......... .......... 28% 89.0M 1s +2024-04-29T04:26:46Z #15 1.909 36000K .......... .......... .......... .......... .......... 28% 72.4M 1s +2024-04-29T04:26:46Z #15 1.910 36050K .......... .......... .......... .......... .......... 28% 137M 1s +2024-04-29T04:26:46Z #15 1.910 36100K .......... .......... .......... .......... .......... 28% 129M 1s +2024-04-29T04:26:46Z #15 1.910 36150K .......... .......... .......... .......... .......... 28% 78.1M 1s +2024-04-29T04:26:46Z #15 1.912 36200K .......... .......... .......... .......... .......... 28% 98.5M 1s +2024-04-29T04:26:46Z #15 1.912 36250K .......... .......... .......... .......... .......... 28% 89.8M 1s +2024-04-29T04:26:46Z #15 1.913 36300K .......... .......... .......... .......... .......... 28% 95.5M 1s +2024-04-29T04:26:46Z #15 1.913 36350K .......... .......... .......... .......... .......... 28% 125M 1s +2024-04-29T04:26:46Z #15 1.913 36400K .......... .......... .......... .......... .......... 28% 111M 1s +2024-04-29T04:26:46Z #15 1.914 36450K .......... .......... .......... .......... .......... 28% 68.3M 1s +2024-04-29T04:26:46Z #15 1.914 36500K .......... .......... .......... .......... .......... 28% 126M 1s +2024-04-29T04:26:46Z #15 1.915 36550K .......... .......... .......... .......... .......... 28% 127M 1s +2024-04-29T04:26:46Z #15 1.915 36600K .......... .......... .......... .......... .......... 28% 134M 1s +2024-04-29T04:26:46Z #15 1.916 36650K .......... .......... .......... .......... .......... 28% 132M 1s +2024-04-29T04:26:46Z #15 1.916 36700K .......... .......... .......... .......... .......... 28% 39.7M 1s +2024-04-29T04:26:46Z #15 1.917 36750K .......... .......... .......... .......... .......... 28% 148M 1s +2024-04-29T04:26:46Z #15 1.917 36800K .......... .......... .......... .......... .......... 28% 132M 1s +2024-04-29T04:26:46Z #15 1.918 36850K .......... .......... .......... .......... .......... 28% 92.8M 1s +2024-04-29T04:26:46Z #15 1.918 36900K .......... .......... .......... .......... .......... 28% 98.3M 1s +2024-04-29T04:26:46Z #15 1.919 36950K .......... .......... .......... .......... .......... 28% 67.7M 1s +2024-04-29T04:26:46Z #15 1.920 37000K .......... .......... .......... .......... .......... 28% 106M 1s +2024-04-29T04:26:46Z #15 1.920 37050K .......... .......... .......... .......... .......... 29% 112M 1s +2024-04-29T04:26:46Z #15 1.921 37100K .......... .......... .......... .......... .......... 29% 94.8M 1s +2024-04-29T04:26:46Z #15 1.921 37150K .......... .......... .......... .......... .......... 29% 126M 1s +2024-04-29T04:26:46Z #15 1.921 37200K .......... .......... .......... .......... .......... 29% 74.1M 1s +2024-04-29T04:26:46Z #15 1.922 37250K .......... .......... .......... .......... .......... 29% 105M 1s +2024-04-29T04:26:46Z #15 1.923 37300K .......... .......... .......... .......... .......... 29% 123M 1s +2024-04-29T04:26:46Z #15 1.923 37350K .......... .......... .......... .......... .......... 29% 112M 1s +2024-04-29T04:26:46Z #15 1.924 37400K .......... .......... .......... .......... .......... 29% 51.1M 1s +2024-04-29T04:26:46Z #15 1.924 37450K .......... .......... .......... .......... .......... 29% 108M 1s +2024-04-29T04:26:46Z #15 1.925 37500K .......... .......... .......... .......... .......... 29% 68.6M 1s +2024-04-29T04:26:46Z #15 1.925 37550K .......... .......... .......... .......... .......... 29% 90.6M 1s +2024-04-29T04:26:46Z #15 1.926 37600K .......... .......... .......... .......... .......... 29% 120M 1s +2024-04-29T04:26:46Z #15 1.926 37650K .......... .......... .......... .......... .......... 29% 74.5M 1s +2024-04-29T04:26:46Z #15 1.927 37700K .......... .......... .......... .......... .......... 29% 52.8M 1s +2024-04-29T04:26:46Z #15 1.928 37750K .......... .......... .......... .......... .......... 29% 140M 1s +2024-04-29T04:26:46Z #15 1.928 37800K .......... .......... .......... .......... .......... 29% 141M 1s +2024-04-29T04:26:46Z #15 1.929 37850K .......... .......... .......... .......... .......... 29% 73.9M 1s +2024-04-29T04:26:46Z #15 1.930 37900K .......... .......... .......... .......... .......... 29% 81.3M 1s +2024-04-29T04:26:46Z #15 1.930 37950K .......... .......... .......... .......... .......... 29% 131M 1s +2024-04-29T04:26:46Z #15 1.930 38000K .......... .......... .......... .......... .......... 29% 78.4M 1s +2024-04-29T04:26:46Z #15 1.931 38050K .......... .......... .......... .......... .......... 29% 136M 1s +2024-04-29T04:26:46Z #15 1.931 38100K .......... .......... .......... .......... .......... 29% 131M 1s +2024-04-29T04:26:46Z #15 1.931 38150K .......... .......... .......... .......... .......... 29% 63.8M 1s +2024-04-29T04:26:46Z #15 1.932 38200K .......... .......... .......... .......... .......... 29% 106M 1s +2024-04-29T04:26:46Z #15 1.933 38250K .......... .......... .......... .......... .......... 29% 145M 1s +2024-04-29T04:26:46Z #15 1.934 38300K .......... .......... .......... .......... .......... 30% 63.6M 1s +2024-04-29T04:26:46Z #15 1.935 38350K .......... .......... .......... .......... .......... 30% 6.74M 1s +2024-04-29T04:26:46Z #15 1.941 38400K .......... .......... .......... .......... .......... 30% 90.1M 1s +2024-04-29T04:26:46Z #15 1.942 38450K .......... .......... .......... .......... .......... 30% 67.3M 1s +2024-04-29T04:26:46Z #15 1.943 38500K .......... .......... .......... .......... .......... 30% 103M 1s +2024-04-29T04:26:46Z #15 1.943 38550K .......... .......... .......... .......... .......... 30% 132M 1s +2024-04-29T04:26:46Z #15 1.943 38600K .......... .......... .......... .......... .......... 30% 65.5M 1s +2024-04-29T04:26:46Z #15 1.944 38650K .......... .......... .......... .......... .......... 30% 134M 1s +2024-04-29T04:26:46Z #15 1.944 38700K .......... .......... .......... .......... .......... 30% 105M 1s +2024-04-29T04:26:46Z #15 1.945 38750K .......... .......... .......... .......... .......... 30% 104M 1s +2024-04-29T04:26:46Z #15 1.946 38800K .......... .......... .......... .......... .......... 30% 110M 1s +2024-04-29T04:26:46Z #15 1.946 38850K .......... .......... .......... .......... .......... 30% 84.4M 1s +2024-04-29T04:26:46Z #15 1.947 38900K .......... .......... .......... .......... .......... 30% 97.9M 1s +2024-04-29T04:26:46Z #15 1.947 38950K .......... .......... .......... .......... .......... 30% 90.7M 1s +2024-04-29T04:26:46Z #15 1.947 39000K .......... .......... .......... .......... .......... 30% 81.2M 1s +2024-04-29T04:26:46Z #15 1.948 39050K .......... .......... .......... .......... .......... 30% 127M 1s +2024-04-29T04:26:46Z #15 1.948 39100K .......... .......... .......... .......... .......... 30% 95.1M 1s +2024-04-29T04:26:46Z #15 1.949 39150K .......... .......... .......... .......... .......... 30% 83.5M 1s +2024-04-29T04:26:46Z #15 1.949 39200K .......... .......... .......... .......... .......... 30% 121M 1s +2024-04-29T04:26:46Z #15 1.950 39250K .......... .......... .......... .......... .......... 30% 154M 1s +2024-04-29T04:26:46Z #15 1.950 39300K .......... .......... .......... .......... .......... 30% 60.5M 1s +2024-04-29T04:26:46Z #15 1.951 39350K .......... .......... .......... .......... .......... 30% 125M 1s +2024-04-29T04:26:46Z #15 1.951 39400K .......... .......... .......... .......... .......... 30% 8.73M 1s +2024-04-29T04:26:46Z #15 1.957 39450K .......... .......... .......... .......... .......... 30% 82.5M 1s +2024-04-29T04:26:46Z #15 1.958 39500K .......... .......... .......... .......... .......... 30% 134M 1s +2024-04-29T04:26:46Z #15 1.958 39550K .......... .......... .......... .......... .......... 30% 129M 1s +2024-04-29T04:26:46Z #15 1.959 39600K .......... .......... .......... .......... .......... 31% 53.9M 1s +2024-04-29T04:26:46Z #15 1.959 39650K .......... .......... .......... .......... .......... 31% 128M 1s +2024-04-29T04:26:46Z #15 1.960 39700K .......... .......... .......... .......... .......... 31% 131M 1s +2024-04-29T04:26:46Z #15 1.960 39750K .......... .......... .......... .......... .......... 31% 114M 1s +2024-04-29T04:26:46Z #15 1.960 39800K .......... .......... .......... .......... .......... 31% 76.3M 1s +2024-04-29T04:26:46Z #15 1.961 39850K .......... .......... .......... .......... .......... 31% 126M 1s +2024-04-29T04:26:46Z #15 1.961 39900K .......... .......... .......... .......... .......... 31% 92.9M 1s +2024-04-29T04:26:46Z #15 1.962 39950K .......... .......... .......... .......... .......... 31% 114M 1s +2024-04-29T04:26:46Z #15 1.962 40000K .......... .......... .......... .......... .......... 31% 78.8M 1s +2024-04-29T04:26:46Z #15 1.963 40050K .......... .......... .......... .......... .......... 31% 89.0M 1s +2024-04-29T04:26:46Z #15 1.964 40100K .......... .......... .......... .......... .......... 31% 104M 1s +2024-04-29T04:26:46Z #15 1.964 40150K .......... .......... .......... .......... .......... 31% 108M 1s +2024-04-29T04:26:46Z #15 1.965 40200K .......... .......... .......... .......... .......... 31% 5.79M 1s +2024-04-29T04:26:46Z #15 1.973 40250K .......... .......... .......... .......... .......... 31% 133M 1s +2024-04-29T04:26:46Z #15 1.973 40300K .......... .......... .......... .......... .......... 31% 119M 1s +2024-04-29T04:26:46Z #15 1.974 40350K .......... .......... .......... .......... .......... 31% 67.3M 1s +2024-04-29T04:26:46Z #15 1.974 40400K .......... .......... .......... .......... .......... 31% 112M 1s +2024-04-29T04:26:46Z #15 1.975 40450K .......... .......... .......... .......... .......... 31% 82.0M 1s +2024-04-29T04:26:46Z #15 1.975 40500K .......... .......... .......... .......... .......... 31% 83.7M 1s +2024-04-29T04:26:47Z #15 1.976 40550K .......... .......... .......... .......... .......... 31% 114M 1s +2024-04-29T04:26:47Z #15 1.976 40600K .......... .......... .......... .......... .......... 31% 115M 1s +2024-04-29T04:26:47Z #15 1.977 40650K .......... .......... .......... .......... .......... 31% 60.0M 1s +2024-04-29T04:26:47Z #15 1.978 40700K .......... .......... .......... .......... .......... 31% 137M 1s +2024-04-29T04:26:47Z #15 1.978 40750K .......... .......... .......... .......... .......... 31% 135M 1s +2024-04-29T04:26:47Z #15 1.978 40800K .......... .......... .......... .......... .......... 31% 107M 1s +2024-04-29T04:26:47Z #15 1.979 40850K .......... .......... .......... .......... .......... 32% 74.5M 1s +2024-04-29T04:26:47Z #15 1.980 40900K .......... .......... .......... .......... .......... 32% 88.0M 1s +2024-04-29T04:26:47Z #15 1.980 40950K .......... .......... .......... .......... .......... 32% 96.1M 1s +2024-04-29T04:26:47Z #15 1.981 41000K .......... .......... .......... .......... .......... 32% 99.2M 1s +2024-04-29T04:26:47Z #15 1.981 41050K .......... .......... .......... .......... .......... 32% 119M 1s +2024-04-29T04:26:47Z #15 1.981 41100K .......... .......... .......... .......... .......... 32% 67.3M 1s +2024-04-29T04:26:47Z #15 1.982 41150K .......... .......... .......... .......... .......... 32% 107M 1s +2024-04-29T04:26:47Z #15 1.983 41200K .......... .......... .......... .......... .......... 32% 119M 1s +2024-04-29T04:26:47Z #15 1.983 41250K .......... .......... .......... .......... .......... 32% 75.1M 1s +2024-04-29T04:26:47Z #15 1.983 41300K .......... .......... .......... .......... .......... 32% 107M 1s +2024-04-29T04:26:47Z #15 1.984 41350K .......... .......... .......... .......... .......... 32% 97.4M 1s +2024-04-29T04:26:47Z #15 1.985 41400K .......... .......... .......... .......... .......... 32% 64.2M 1s +2024-04-29T04:26:47Z #15 1.985 41450K .......... .......... .......... .......... .......... 32% 93.2M 1s +2024-04-29T04:26:47Z #15 1.986 41500K .......... .......... .......... .......... .......... 32% 126M 1s +2024-04-29T04:26:47Z #15 1.986 41550K .......... .......... .......... .......... .......... 32% 112M 1s +2024-04-29T04:26:47Z #15 1.987 41600K .......... .......... .......... .......... .......... 32% 56.2M 1s +2024-04-29T04:26:47Z #15 1.988 41650K .......... .......... .......... .......... .......... 32% 103M 1s +2024-04-29T04:26:47Z #15 1.988 41700K .......... .......... .......... .......... .......... 32% 111M 1s +2024-04-29T04:26:47Z #15 1.989 41750K .......... .......... .......... .......... .......... 32% 5.76M 1s +2024-04-29T04:26:47Z #15 1.997 41800K .......... .......... .......... .......... .......... 32% 156M 1s +2024-04-29T04:26:47Z #15 1.998 41850K .......... .......... .......... .......... .......... 32% 117M 1s +2024-04-29T04:26:47Z #15 1.998 41900K .......... .......... .......... .......... .......... 32% 92.0M 1s +2024-04-29T04:26:47Z #15 1.998 41950K .......... .......... .......... .......... .......... 32% 84.0M 1s +2024-04-29T04:26:47Z #15 1.999 42000K .......... .......... .......... .......... .......... 32% 129M 1s +2024-04-29T04:26:47Z #15 1.999 42050K .......... .......... .......... .......... .......... 32% 112M 1s +2024-04-29T04:26:47Z #15 2.000 42100K .......... .......... .......... .......... .......... 32% 80.3M 1s +2024-04-29T04:26:47Z #15 2.001 42150K .......... .......... .......... .......... .......... 33% 78.6M 1s +2024-04-29T04:26:47Z #15 2.001 42200K .......... .......... .......... .......... .......... 33% 169M 1s +2024-04-29T04:26:47Z #15 2.002 42250K .......... .......... .......... .......... .......... 33% 118M 1s +2024-04-29T04:26:47Z #15 2.002 42300K .......... .......... .......... .......... .......... 33% 101M 1s +2024-04-29T04:26:47Z #15 2.002 42350K .......... .......... .......... .......... .......... 33% 80.2M 1s +2024-04-29T04:26:47Z #15 2.003 42400K .......... .......... .......... .......... .......... 33% 140M 1s +2024-04-29T04:26:47Z #15 2.003 42450K .......... .......... .......... .......... .......... 33% 113M 1s +2024-04-29T04:26:47Z #15 2.004 42500K .......... .......... .......... .......... .......... 33% 66.7M 1s +2024-04-29T04:26:47Z #15 2.004 42550K .......... .......... .......... .......... .......... 33% 134M 1s +2024-04-29T04:26:47Z #15 2.005 42600K .......... .......... .......... .......... .......... 33% 11.0M 1s +2024-04-29T04:26:47Z #15 2.021 42650K .......... .......... .......... .......... .......... 33% 141M 1s +2024-04-29T04:26:47Z #15 2.021 42700K .......... .......... .......... .......... .......... 33% 153M 1s +2024-04-29T04:26:47Z #15 2.021 42750K .......... .......... .......... .......... .......... 33% 160M 1s +2024-04-29T04:26:47Z #15 2.021 42800K .......... .......... .......... .......... .......... 33% 130M 1s +2024-04-29T04:26:47Z #15 2.021 42850K .......... .......... .......... .......... .......... 33% 130M 1s +2024-04-29T04:26:47Z #15 2.021 42900K .......... .......... .......... .......... .......... 33% 152M 1s +2024-04-29T04:26:47Z #15 2.021 42950K .......... .......... .......... .......... .......... 33% 157M 1s +2024-04-29T04:26:47Z #15 2.021 43000K .......... .......... .......... .......... .......... 33% 231M 1s +2024-04-29T04:26:47Z #15 2.021 43050K .......... .......... .......... .......... .......... 33% 143M 1s +2024-04-29T04:26:47Z #15 2.021 43100K .......... .......... .......... .......... .......... 33% 165M 1s +2024-04-29T04:26:47Z #15 2.021 43150K .......... .......... .......... .......... .......... 33% 183M 1s +2024-04-29T04:26:47Z #15 2.021 43200K .......... .......... .......... .......... .......... 33% 131M 1s +2024-04-29T04:26:47Z #15 2.021 43250K .......... .......... .......... .......... .......... 33% 96.3M 1s +2024-04-29T04:26:47Z #15 2.021 43300K .......... .......... .......... .......... .......... 33% 119M 1s +2024-04-29T04:26:47Z #15 2.021 43350K .......... .......... .......... .......... .......... 33% 126M 1s +2024-04-29T04:26:47Z #15 2.021 43400K .......... .......... .......... .......... .......... 34% 114M 1s +2024-04-29T04:26:47Z #15 2.021 43450K .......... .......... .......... .......... .......... 34% 106M 1s +2024-04-29T04:26:47Z #15 2.021 43500K .......... .......... .......... .......... .......... 34% 114M 1s +2024-04-29T04:26:47Z #15 2.021 43550K .......... .......... .......... .......... .......... 34% 110M 1s +2024-04-29T04:26:47Z #15 2.021 43600K .......... .......... .......... .......... .......... 34% 123M 1s +2024-04-29T04:26:47Z #15 2.021 43650K .......... .......... .......... .......... .......... 34% 101M 1s +2024-04-29T04:26:47Z #15 2.021 43700K .......... .......... .......... .......... .......... 34% 128M 1s +2024-04-29T04:26:47Z #15 2.021 43750K .......... .......... .......... .......... .......... 34% 119M 1s +2024-04-29T04:26:47Z #15 2.021 43800K .......... .......... .......... .......... .......... 34% 118M 1s +2024-04-29T04:26:47Z #15 2.021 43850K .......... .......... .......... .......... .......... 34% 107M 1s +2024-04-29T04:26:47Z #15 2.021 43900K .......... .......... .......... .......... .......... 34% 102M 1s +2024-04-29T04:26:47Z #15 2.021 43950K .......... .......... .......... .......... .......... 34% 120M 1s +2024-04-29T04:26:47Z #15 2.021 44000K .......... .......... .......... .......... .......... 34% 112M 1s +2024-04-29T04:26:47Z #15 2.021 44050K .......... .......... .......... .......... .......... 34% 95.8M 1s +2024-04-29T04:26:47Z #15 2.021 44100K .......... .......... .......... .......... .......... 34% 46.9M 1s +2024-04-29T04:26:47Z #15 2.021 44150K .......... .......... .......... .......... .......... 34% 59.3M 1s +2024-04-29T04:26:47Z #15 2.024 44200K .......... .......... .......... .......... .......... 34% 116M 1s +2024-04-29T04:26:47Z #15 2.024 44250K .......... .......... .......... .......... .......... 34% 120M 1s +2024-04-29T04:26:47Z #15 2.024 44300K .......... .......... .......... .......... .......... 34% 129M 1s +2024-04-29T04:26:47Z #15 2.024 44350K .......... .......... .......... .......... .......... 34% 111M 1s +2024-04-29T04:26:47Z #15 2.024 44400K .......... .......... .......... .......... .......... 34% 107M 1s +2024-04-29T04:26:47Z #15 2.024 44450K .......... .......... .......... .......... .......... 34% 127M 1s +2024-04-29T04:26:47Z #15 2.027 44500K .......... .......... .......... .......... .......... 34% 67.7M 1s +2024-04-29T04:26:47Z #15 2.027 44550K .......... .......... .......... .......... .......... 34% 124M 1s +2024-04-29T04:26:47Z #15 2.027 44600K .......... .......... .......... .......... .......... 34% 122M 1s +2024-04-29T04:26:47Z #15 2.027 44650K .......... .......... .......... .......... .......... 34% 95.3M 1s +2024-04-29T04:26:47Z #15 2.027 44700K .......... .......... .......... .......... .......... 35% 104M 1s +2024-04-29T04:26:47Z #15 2.028 44750K .......... .......... .......... .......... .......... 35% 126M 1s +2024-04-29T04:26:47Z #15 2.028 44800K .......... .......... .......... .......... .......... 35% 104M 1s +2024-04-29T04:26:47Z #15 2.028 44850K .......... .......... .......... .......... .......... 35% 147M 1s +2024-04-29T04:26:47Z #15 2.028 44900K .......... .......... .......... .......... .......... 35% 97.0M 1s +2024-04-29T04:26:47Z #15 2.032 44950K .......... .......... .......... .......... .......... 35% 135M 1s +2024-04-29T04:26:47Z #15 2.032 45000K .......... .......... .......... .......... .......... 35% 111M 1s +2024-04-29T04:26:47Z #15 2.032 45050K .......... .......... .......... .......... .......... 35% 126M 1s +2024-04-29T04:26:47Z #15 2.032 45100K .......... .......... .......... .......... .......... 35% 126M 1s +2024-04-29T04:26:47Z #15 2.032 45150K .......... .......... .......... .......... .......... 35% 119M 1s +2024-04-29T04:26:47Z #15 2.032 45200K .......... .......... .......... .......... .......... 35% 126M 1s +2024-04-29T04:26:47Z #15 2.032 45250K .......... .......... .......... .......... .......... 35% 118M 1s +2024-04-29T04:26:47Z #15 2.032 45300K .......... .......... .......... .......... .......... 35% 119M 1s +2024-04-29T04:26:47Z #15 2.032 45350K .......... .......... .......... .......... .......... 35% 127M 1s +2024-04-29T04:26:47Z #15 2.033 45400K .......... .......... .......... .......... .......... 35% 86.2M 1s +2024-04-29T04:26:47Z #15 2.034 45450K .......... .......... .......... .......... .......... 35% 122M 1s +2024-04-29T04:26:47Z #15 2.034 45500K .......... .......... .......... .......... .......... 35% 121M 1s +2024-04-29T04:26:47Z #15 2.034 45550K .......... .......... .......... .......... .......... 35% 132M 1s +2024-04-29T04:26:47Z #15 2.034 45600K .......... .......... .......... .......... .......... 35% 112M 1s +2024-04-29T04:26:47Z #15 2.041 45650K .......... .......... .......... .......... .......... 35% 135M 1s +2024-04-29T04:26:47Z #15 2.041 45700K .......... .......... .......... .......... .......... 35% 159M 1s +2024-04-29T04:26:47Z #15 2.041 45750K .......... .......... .......... .......... .......... 35% 156M 1s +2024-04-29T04:26:47Z #15 2.041 45800K .......... .......... .......... .......... .......... 35% 158M 1s +2024-04-29T04:26:47Z #15 2.041 45850K .......... .......... .......... .......... .......... 35% 137M 1s +2024-04-29T04:26:47Z #15 2.041 45900K .......... .......... .......... .......... .......... 35% 172M 1s +2024-04-29T04:26:47Z #15 2.041 45950K .......... .......... .......... .......... .......... 35% 114M 1s +2024-04-29T04:26:47Z #15 2.041 46000K .......... .......... .......... .......... .......... 36% 139M 1s +2024-04-29T04:26:47Z #15 2.041 46050K .......... .......... .......... .......... .......... 36% 147M 1s +2024-04-29T04:26:47Z #15 2.041 46100K .......... .......... .......... .......... .......... 36% 158M 1s +2024-04-29T04:26:47Z #15 2.041 46150K .......... .......... .......... .......... .......... 36% 144M 1s +2024-04-29T04:26:47Z #15 2.041 46200K .......... .......... .......... .......... .......... 36% 143M 1s +2024-04-29T04:26:47Z #15 2.041 46250K .......... .......... .......... .......... .......... 36% 155M 1s +2024-04-29T04:26:47Z #15 2.041 46300K .......... .......... .......... .......... .......... 36% 132M 1s +2024-04-29T04:26:47Z #15 2.041 46350K .......... .......... .......... .......... .......... 36% 152M 1s +2024-04-29T04:26:47Z #15 2.041 46400K .......... .......... .......... .......... .......... 36% 163M 1s +2024-04-29T04:26:47Z #15 2.041 46450K .......... .......... .......... .......... .......... 36% 153M 1s +2024-04-29T04:26:47Z #15 2.041 46500K .......... .......... .......... .......... .......... 36% 152M 1s +2024-04-29T04:26:47Z #15 2.041 46550K .......... .......... .......... .......... .......... 36% 68.2M 1s +2024-04-29T04:26:47Z #15 2.041 46600K .......... .......... .......... .......... .......... 36% 99.7M 1s +2024-04-29T04:26:47Z #15 2.042 46650K .......... .......... .......... .......... .......... 36% 129M 1s +2024-04-29T04:26:47Z #15 2.042 46700K .......... .......... .......... .......... .......... 36% 127M 1s +2024-04-29T04:26:47Z #15 2.043 46750K .......... .......... .......... .......... .......... 36% 102M 1s +2024-04-29T04:26:47Z #15 2.043 46800K .......... .......... .......... .......... .......... 36% 108M 1s +2024-04-29T04:26:47Z #15 2.043 46850K .......... .......... .......... .......... .......... 36% 125M 1s +2024-04-29T04:26:47Z #15 2.044 46900K .......... .......... .......... .......... .......... 36% 133M 1s +2024-04-29T04:26:47Z #15 2.044 46950K .......... .......... .......... .......... .......... 36% 143M 1s +2024-04-29T04:26:47Z #15 2.045 47000K .......... .......... .......... .......... .......... 36% 82.3M 1s +2024-04-29T04:26:47Z #15 2.045 47050K .......... .......... .......... .......... .......... 36% 121M 1s +2024-04-29T04:26:47Z #15 2.046 47100K .......... .......... .......... .......... .......... 36% 114M 1s +2024-04-29T04:26:47Z #15 2.046 47150K .......... .......... .......... .......... .......... 36% 118M 1s +2024-04-29T04:26:47Z #15 2.047 47200K .......... .......... .......... .......... .......... 36% 110M 1s +2024-04-29T04:26:47Z #15 2.047 47250K .......... .......... .......... .......... .......... 37% 123M 1s +2024-04-29T04:26:47Z #15 2.047 47300K .......... .......... .......... .......... .......... 37% 118M 1s +2024-04-29T04:26:47Z #15 2.048 47350K .......... .......... .......... .......... .......... 37% 135M 1s +2024-04-29T04:26:47Z #15 2.048 47400K .......... .......... .......... .......... .......... 37% 92.2M 1s +2024-04-29T04:26:47Z #15 2.049 47450K .......... .......... .......... .......... .......... 37% 107M 1s +2024-04-29T04:26:47Z #15 2.049 47500K .......... .......... .......... .......... .......... 37% 116M 1s +2024-04-29T04:26:47Z #15 2.050 47550K .......... .......... .......... .......... .......... 37% 142M 1s +2024-04-29T04:26:47Z #15 2.050 47600K .......... .......... .......... .......... .......... 37% 106M 1s +2024-04-29T04:26:47Z #15 2.050 47650K .......... .......... .......... .......... .......... 37% 107M 1s +2024-04-29T04:26:47Z #15 2.057 47700K .......... .......... .......... .......... .......... 37% 131M 1s +2024-04-29T04:26:47Z #15 2.057 47750K .......... .......... .......... .......... .......... 37% 138M 1s +2024-04-29T04:26:47Z #15 2.057 47800K .......... .......... .......... .......... .......... 37% 154M 1s +2024-04-29T04:26:47Z #15 2.057 47850K .......... .......... .......... .......... .......... 37% 160M 1s +2024-04-29T04:26:47Z #15 2.057 47900K .......... .......... .......... .......... .......... 37% 140M 1s +2024-04-29T04:26:47Z #15 2.057 47950K .......... .......... .......... .......... .......... 37% 116M 1s +2024-04-29T04:26:47Z #15 2.057 48000K .......... .......... .......... .......... .......... 37% 150M 1s +2024-04-29T04:26:47Z #15 2.057 48050K .......... .......... .......... .......... .......... 37% 138M 1s +2024-04-29T04:26:47Z #15 2.057 48100K .......... .......... .......... .......... .......... 37% 142M 1s +2024-04-29T04:26:47Z #15 2.057 48150K .......... .......... .......... .......... .......... 37% 153M 1s +2024-04-29T04:26:47Z #15 2.057 48200K .......... .......... .......... .......... .......... 37% 155M 1s +2024-04-29T04:26:47Z #15 2.057 48250K .......... .......... .......... .......... .......... 37% 136M 1s +2024-04-29T04:26:47Z #15 2.057 48300K .......... .......... .......... .......... .......... 37% 132M 1s +2024-04-29T04:26:47Z #15 2.057 48350K .......... .......... .......... .......... .......... 37% 142M 1s +2024-04-29T04:26:47Z #15 2.057 48400K .......... .......... .......... .......... .......... 37% 150M 1s +2024-04-29T04:26:47Z #15 2.057 48450K .......... .......... .......... .......... .......... 37% 148M 1s +2024-04-29T04:26:47Z #15 2.057 48500K .......... .......... .......... .......... .......... 37% 151M 1s +2024-04-29T04:26:47Z #15 2.057 48550K .......... .......... .......... .......... .......... 38% 65.2M 1s +2024-04-29T04:26:47Z #15 2.057 48600K .......... .......... .......... .......... .......... 38% 135M 1s +2024-04-29T04:26:47Z #15 2.058 48650K .......... .......... .......... .......... .......... 38% 131M 1s +2024-04-29T04:26:47Z #15 2.058 48700K .......... .......... .......... .......... .......... 38% 142M 1s +2024-04-29T04:26:47Z #15 2.058 48750K .......... .......... .......... .......... .......... 38% 110M 1s +2024-04-29T04:26:47Z #15 2.059 48800K .......... .......... .......... .......... .......... 38% 122M 1s +2024-04-29T04:26:47Z #15 2.059 48850K .......... .......... .......... .......... .......... 38% 102M 1s +2024-04-29T04:26:47Z #15 2.060 48900K .......... .......... .......... .......... .......... 38% 115M 1s +2024-04-29T04:26:47Z #15 2.060 48950K .......... .......... .......... .......... .......... 38% 114M 1s +2024-04-29T04:26:47Z #15 2.060 49000K .......... .......... .......... .......... .......... 38% 95.7M 1s +2024-04-29T04:26:47Z #15 2.064 49050K .......... .......... .......... .......... .......... 38% 135M 1s +2024-04-29T04:26:47Z #15 2.064 49100K .......... .......... .......... .......... .......... 38% 134M 1s +2024-04-29T04:26:47Z #15 2.064 49150K .......... .......... .......... .......... .......... 38% 103M 1s +2024-04-29T04:26:47Z #15 2.064 49200K .......... .......... .......... .......... .......... 38% 113M 1s +2024-04-29T04:26:47Z #15 2.064 49250K .......... .......... .......... .......... .......... 38% 115M 1s +2024-04-29T04:26:47Z #15 2.064 49300K .......... .......... .......... .......... .......... 38% 105M 1s +2024-04-29T04:26:47Z #15 2.064 49350K .......... .......... .......... .......... .......... 38% 108M 1s +2024-04-29T04:26:47Z #15 2.064 49400K .......... .......... .......... .......... .......... 38% 128M 1s +2024-04-29T04:26:47Z #15 2.064 49450K .......... .......... .......... .......... .......... 38% 66.4M 1s +2024-04-29T04:26:47Z #15 2.066 49500K .......... .......... .......... .......... .......... 38% 108M 1s +2024-04-29T04:26:47Z #15 2.066 49550K .......... .......... .......... .......... .......... 38% 76.1M 1s +2024-04-29T04:26:47Z #15 2.067 49600K .......... .......... .......... .......... .......... 38% 139M 1s +2024-04-29T04:26:47Z #15 2.067 49650K .......... .......... .......... .......... .......... 38% 86.2M 1s +2024-04-29T04:26:47Z #15 2.068 49700K .......... .......... .......... .......... .......... 38% 99.9M 1s +2024-04-29T04:26:47Z #15 2.068 49750K .......... .......... .......... .......... .......... 38% 122M 1s +2024-04-29T04:26:47Z #15 2.068 49800K .......... .......... .......... .......... .......... 39% 61.3M 1s +2024-04-29T04:26:47Z #15 2.070 49850K .......... .......... .......... .......... .......... 39% 115M 1s +2024-04-29T04:26:47Z #15 2.070 49900K .......... .......... .......... .......... .......... 39% 96.4M 1s +2024-04-29T04:26:47Z #15 2.070 49950K .......... .......... .......... .......... .......... 39% 138M 1s +2024-04-29T04:26:47Z #15 2.070 50000K .......... .......... .......... .......... .......... 39% 135M 1s +2024-04-29T04:26:47Z #15 2.070 50050K .......... .......... .......... .......... .......... 39% 69.4M 1s +2024-04-29T04:26:47Z #15 2.071 50100K .......... .......... .......... .......... .......... 39% 108M 1s +2024-04-29T04:26:47Z #15 2.072 50150K .......... .......... .......... .......... .......... 39% 133M 1s +2024-04-29T04:26:47Z #15 2.072 50200K .......... .......... .......... .......... .......... 39% 133M 1s +2024-04-29T04:26:47Z #15 2.072 50250K .......... .......... .......... .......... .......... 39% 11.1M 1s +2024-04-29T04:26:47Z #15 2.077 50300K .......... .......... .......... .......... .......... 39% 96.3M 1s +2024-04-29T04:26:47Z #15 2.077 50350K .......... .......... .......... .......... .......... 39% 127M 1s +2024-04-29T04:26:47Z #15 2.078 50400K .......... .......... .......... .......... .......... 39% 147M 1s +2024-04-29T04:26:47Z #15 2.079 50450K .......... .......... .......... .......... .......... 39% 97.0M 1s +2024-04-29T04:26:47Z #15 2.079 50500K .......... .......... .......... .......... .......... 39% 118M 1s +2024-04-29T04:26:47Z #15 2.079 50550K .......... .......... .......... .......... .......... 39% 122M 1s +2024-04-29T04:26:47Z #15 2.080 50600K .......... .......... .......... .......... .......... 39% 137M 1s +2024-04-29T04:26:47Z #15 2.080 50650K .......... .......... .......... .......... .......... 39% 122M 1s +2024-04-29T04:26:47Z #15 2.080 50700K .......... .......... .......... .......... .......... 39% 140M 1s +2024-04-29T04:26:47Z #15 2.081 50750K .......... .......... .......... .......... .......... 39% 113M 1s +2024-04-29T04:26:47Z #15 2.081 50800K .......... .......... .......... .......... .......... 39% 115M 1s +2024-04-29T04:26:47Z #15 2.081 50850K .......... .......... .......... .......... .......... 39% 117M 1s +2024-04-29T04:26:47Z #15 2.082 50900K .......... .......... .......... .......... .......... 39% 117M 1s +2024-04-29T04:26:47Z #15 2.082 50950K .......... .......... .......... .......... .......... 39% 123M 1s +2024-04-29T04:26:47Z #15 2.083 51000K .......... .......... .......... .......... .......... 39% 122M 1s +2024-04-29T04:26:47Z #15 2.083 51050K .......... .......... .......... .......... .......... 39% 107M 1s +2024-04-29T04:26:47Z #15 2.084 51100K .......... .......... .......... .......... .......... 40% 117M 1s +2024-04-29T04:26:47Z #15 2.084 51150K .......... .......... .......... .......... .......... 40% 145M 1s +2024-04-29T04:26:47Z #15 2.084 51200K .......... .......... .......... .......... .......... 40% 124M 1s +2024-04-29T04:26:47Z #15 2.084 51250K .......... .......... .......... .......... .......... 40% 11.0M 1s +2024-04-29T04:26:47Z #15 2.098 51300K .......... .......... .......... .......... .......... 40% 99.4M 1s +2024-04-29T04:26:47Z #15 2.098 51350K .......... .......... .......... .......... .......... 40% 92.0M 1s +2024-04-29T04:26:47Z #15 2.098 51400K .......... .......... .......... .......... .......... 40% 115M 1s +2024-04-29T04:26:47Z #15 2.098 51450K .......... .......... .......... .......... .......... 40% 147M 1s +2024-04-29T04:26:47Z #15 2.098 51500K .......... .......... .......... .......... .......... 40% 87.1M 1s +2024-04-29T04:26:47Z #15 2.098 51550K .......... .......... .......... .......... .......... 40% 114M 1s +2024-04-29T04:26:47Z #15 2.098 51600K .......... .......... .......... .......... .......... 40% 132M 1s +2024-04-29T04:26:47Z #15 2.098 51650K .......... .......... .......... .......... .......... 40% 181M 1s +2024-04-29T04:26:47Z #15 2.098 51700K .......... .......... .......... .......... .......... 40% 94.0M 1s +2024-04-29T04:26:47Z #15 2.098 51750K .......... .......... .......... .......... .......... 40% 97.8M 1s +2024-04-29T04:26:47Z #15 2.098 51800K .......... .......... .......... .......... .......... 40% 156M 1s +2024-04-29T04:26:47Z #15 2.098 51850K .......... .......... .......... .......... .......... 40% 182M 1s +2024-04-29T04:26:47Z #15 2.098 51900K .......... .......... .......... .......... .......... 40% 68.8M 1s +2024-04-29T04:26:47Z #15 2.098 51950K .......... .......... .......... .......... .......... 40% 131M 1s +2024-04-29T04:26:47Z #15 2.098 52000K .......... .......... .......... .......... .......... 40% 104M 1s +2024-04-29T04:26:47Z #15 2.098 52050K .......... .......... .......... .......... .......... 40% 87.3M 1s +2024-04-29T04:26:47Z #15 2.098 52100K .......... .......... .......... .......... .......... 40% 133M 1s +2024-04-29T04:26:47Z #15 2.098 52150K .......... .......... .......... .......... .......... 40% 10.8M 1s +2024-04-29T04:26:47Z #15 2.105 52200K .......... .......... .......... .......... .......... 40% 170M 1s +2024-04-29T04:26:47Z #15 2.105 52250K .......... .......... .......... .......... .......... 40% 157M 1s +2024-04-29T04:26:47Z #15 2.105 52300K .......... .......... .......... .......... .......... 40% 90.7M 1s +2024-04-29T04:26:47Z #15 2.105 52350K .......... .......... .......... .......... .......... 41% 126M 1s +2024-04-29T04:26:47Z #15 2.105 52400K .......... .......... .......... .......... .......... 41% 202M 1s +2024-04-29T04:26:47Z #15 2.105 52450K .......... .......... .......... .......... .......... 41% 253M 1s +2024-04-29T04:26:47Z #15 2.105 52500K .......... .......... .......... .......... .......... 41% 186M 1s +2024-04-29T04:26:47Z #15 2.105 52550K .......... .......... .......... .......... .......... 41% 253M 1s +2024-04-29T04:26:47Z #15 2.105 52600K .......... .......... .......... .......... .......... 41% 99.4M 1s +2024-04-29T04:26:47Z #15 2.105 52650K .......... .......... .......... .......... .......... 41% 105M 1s +2024-04-29T04:26:47Z #15 2.105 52700K .......... .......... .......... .......... .......... 41% 222M 1s +2024-04-29T04:26:47Z #15 2.105 52750K .......... .......... .......... .......... .......... 41% 121M 1s +2024-04-29T04:26:47Z #15 2.105 52800K .......... .......... .......... .......... .......... 41% 30.7M 1s +2024-04-29T04:26:47Z #15 2.107 52850K .......... .......... .......... .......... .......... 41% 70.9M 1s +2024-04-29T04:26:47Z #15 2.107 52900K .......... .......... .......... .......... .......... 41% 54.6M 1s +2024-04-29T04:26:47Z #15 2.108 52950K .......... .......... .......... .......... .......... 41% 37.4M 1s +2024-04-29T04:26:47Z #15 2.110 53000K .......... .......... .......... .......... .......... 41% 64.5M 1s +2024-04-29T04:26:47Z #15 2.110 53050K .......... .......... .......... .......... .......... 41% 82.6M 1s +2024-04-29T04:26:47Z #15 2.111 53100K .......... .......... .......... .......... .......... 41% 77.2M 1s +2024-04-29T04:26:47Z #15 2.111 53150K .......... .......... .......... .......... .......... 41% 104M 1s +2024-04-29T04:26:47Z #15 2.112 53200K .......... .......... .......... .......... .......... 41% 102M 1s +2024-04-29T04:26:47Z #15 2.112 53250K .......... .......... .......... .......... .......... 41% 46.4M 1s +2024-04-29T04:26:47Z #15 2.113 53300K .......... .......... .......... .......... .......... 41% 51.8M 1s +2024-04-29T04:26:47Z #15 2.116 53350K .......... .......... .......... .......... .......... 41% 121M 1s +2024-04-29T04:26:47Z #15 2.116 53400K .......... .......... .......... .......... .......... 41% 123M 1s +2024-04-29T04:26:47Z #15 2.116 53450K .......... .......... .......... .......... .......... 41% 77.8M 1s +2024-04-29T04:26:47Z #15 2.116 53500K .......... .......... .......... .......... .......... 41% 111M 1s +2024-04-29T04:26:47Z #15 2.116 53550K .......... .......... .......... .......... .......... 41% 83.8M 1s +2024-04-29T04:26:47Z #15 2.117 53600K .......... .......... .......... .......... .......... 41% 69.3M 1s +2024-04-29T04:26:47Z #15 2.118 53650K .......... .......... .......... .......... .......... 42% 44.3M 1s +2024-04-29T04:26:47Z #15 2.118 53700K .......... .......... .......... .......... .......... 42% 102M 1s +2024-04-29T04:26:47Z #15 2.120 53750K .......... .......... .......... .......... .......... 42% 91.8M 1s +2024-04-29T04:26:47Z #15 2.120 53800K .......... .......... .......... .......... .......... 42% 116M 1s +2024-04-29T04:26:47Z #15 2.120 53850K .......... .......... .......... .......... .......... 42% 62.1M 1s +2024-04-29T04:26:47Z #15 2.121 53900K .......... .......... .......... .......... .......... 42% 93.5M 1s +2024-04-29T04:26:47Z #15 2.121 53950K .......... .......... .......... .......... .......... 42% 113M 1s +2024-04-29T04:26:47Z #15 2.122 54000K .......... .......... .......... .......... .......... 42% 126M 1s +2024-04-29T04:26:47Z #15 2.122 54050K .......... .......... .......... .......... .......... 42% 75.5M 1s +2024-04-29T04:26:47Z #15 2.123 54100K .......... .......... .......... .......... .......... 42% 130M 1s +2024-04-29T04:26:47Z #15 2.123 54150K .......... .......... .......... .......... .......... 42% 128M 1s +2024-04-29T04:26:47Z #15 2.124 54200K .......... .......... .......... .......... .......... 42% 59.1M 1s +2024-04-29T04:26:47Z #15 2.124 54250K .......... .......... .......... .......... .......... 42% 134M 1s +2024-04-29T04:26:47Z #15 2.125 54300K .......... .......... .......... .......... .......... 42% 122M 1s +2024-04-29T04:26:47Z #15 2.125 54350K .......... .......... .......... .......... .......... 42% 96.4M 1s +2024-04-29T04:26:47Z #15 2.126 54400K .......... .......... .......... .......... .......... 42% 87.1M 1s +2024-04-29T04:26:47Z #15 2.126 54450K .......... .......... .......... .......... .......... 42% 104M 1s +2024-04-29T04:26:47Z #15 2.127 54500K .......... .......... .......... .......... .......... 42% 123M 1s +2024-04-29T04:26:47Z #15 2.127 54550K .......... .......... .......... .......... .......... 42% 74.3M 1s +2024-04-29T04:26:47Z #15 2.128 54600K .......... .......... .......... .......... .......... 42% 80.6M 1s +2024-04-29T04:26:47Z #15 2.128 54650K .......... .......... .......... .......... .......... 42% 110M 1s +2024-04-29T04:26:47Z #15 2.129 54700K .......... .......... .......... .......... .......... 42% 92.8M 1s +2024-04-29T04:26:47Z #15 2.130 54750K .......... .......... .......... .......... .......... 42% 142M 1s +2024-04-29T04:26:47Z #15 2.130 54800K .......... .......... .......... .......... .......... 42% 153M 1s +2024-04-29T04:26:47Z #15 2.131 54850K .......... .......... .......... .......... .......... 42% 64.3M 1s +2024-04-29T04:26:47Z #15 2.131 54900K .......... .......... .......... .......... .......... 42% 137M 1s +2024-04-29T04:26:47Z #15 2.131 54950K .......... .......... .......... .......... .......... 43% 64.1M 1s +2024-04-29T04:26:47Z #15 2.132 55000K .......... .......... .......... .......... .......... 43% 109M 1s +2024-04-29T04:26:47Z #15 2.133 55050K .......... .......... .......... .......... .......... 43% 164M 1s +2024-04-29T04:26:47Z #15 2.133 55100K .......... .......... .......... .......... .......... 43% 90.2M 1s +2024-04-29T04:26:47Z #15 2.133 55150K .......... .......... .......... .......... .......... 43% 116M 1s +2024-04-29T04:26:47Z #15 2.134 55200K .......... .......... .......... .......... .......... 43% 59.0M 1s +2024-04-29T04:26:47Z #15 2.135 55250K .......... .......... .......... .......... .......... 43% 107M 1s +2024-04-29T04:26:47Z #15 2.139 55300K .......... .......... .......... .......... .......... 43% 177M 1s +2024-04-29T04:26:47Z #15 2.139 55350K .......... .......... .......... .......... .......... 43% 153M 1s +2024-04-29T04:26:47Z #15 2.139 55400K .......... .......... .......... .......... .......... 43% 77.7M 1s +2024-04-29T04:26:47Z #15 2.139 55450K .......... .......... .......... .......... .......... 43% 78.6M 1s +2024-04-29T04:26:47Z #15 2.139 55500K .......... .......... .......... .......... .......... 43% 131M 1s +2024-04-29T04:26:47Z #15 2.139 55550K .......... .......... .......... .......... .......... 43% 67.4M 1s +2024-04-29T04:26:47Z #15 2.139 55600K .......... .......... .......... .......... .......... 43% 79.4M 1s +2024-04-29T04:26:47Z #15 2.139 55650K .......... .......... .......... .......... .......... 43% 109M 1s +2024-04-29T04:26:47Z #15 2.139 55700K .......... .......... .......... .......... .......... 43% 126M 1s +2024-04-29T04:26:47Z #15 2.139 55750K .......... .......... .......... .......... .......... 43% 78.0M 1s +2024-04-29T04:26:47Z #15 2.140 55800K .......... .......... .......... .......... .......... 43% 127M 1s +2024-04-29T04:26:47Z #15 2.141 55850K .......... .......... .......... .......... .......... 43% 145M 1s +2024-04-29T04:26:47Z #15 2.141 55900K .......... .......... .......... .......... .......... 43% 63.3M 1s +2024-04-29T04:26:47Z #15 2.142 55950K .......... .......... .......... .......... .......... 43% 110M 1s +2024-04-29T04:26:47Z #15 2.142 56000K .......... .......... .......... .......... .......... 43% 80.0M 1s +2024-04-29T04:26:47Z #15 2.143 56050K .......... .......... .......... .......... .......... 43% 69.8M 1s +2024-04-29T04:26:47Z #15 2.144 56100K .......... .......... .......... .......... .......... 43% 147M 1s +2024-04-29T04:26:47Z #15 2.144 56150K .......... .......... .......... .......... .......... 43% 110M 1s +2024-04-29T04:26:47Z #15 2.144 56200K .......... .......... .......... .......... .......... 44% 99.1M 1s +2024-04-29T04:26:47Z #15 2.145 56250K .......... .......... .......... .......... .......... 44% 81.3M 1s +2024-04-29T04:26:47Z #15 2.145 56300K .......... .......... .......... .......... .......... 44% 170M 1s +2024-04-29T04:26:47Z #15 2.145 56350K .......... .......... .......... .......... .......... 44% 62.9M 1s +2024-04-29T04:26:47Z #15 2.146 56400K .......... .......... .......... .......... .......... 44% 201M 1s +2024-04-29T04:26:47Z #15 2.146 56450K .......... .......... .......... .......... .......... 44% 147M 1s +2024-04-29T04:26:47Z #15 2.147 56500K .......... .......... .......... .......... .......... 44% 58.9M 1s +2024-04-29T04:26:47Z #15 2.178 56550K .......... .......... .......... .......... .......... 44% 132M 1s +2024-04-29T04:26:47Z #15 2.178 56600K .......... .......... .......... .......... .......... 44% 108M 1s +2024-04-29T04:26:47Z #15 2.178 56650K .......... .......... .......... .......... .......... 44% 109M 1s +2024-04-29T04:26:47Z #15 2.178 56700K .......... .......... .......... .......... .......... 44% 66.2M 1s +2024-04-29T04:26:47Z #15 2.178 56750K .......... .......... .......... .......... .......... 44% 106M 1s +2024-04-29T04:26:47Z #15 2.178 56800K .......... .......... .......... .......... .......... 44% 127M 1s +2024-04-29T04:26:47Z #15 2.178 56850K .......... .......... .......... .......... .......... 44% 115M 1s +2024-04-29T04:26:47Z #15 2.178 56900K .......... .......... .......... .......... .......... 44% 59.8M 1s +2024-04-29T04:26:47Z #15 2.178 56950K .......... .......... .......... .......... .......... 44% 109M 1s +2024-04-29T04:26:47Z #15 2.178 57000K .......... .......... .......... .......... .......... 44% 113M 1s +2024-04-29T04:26:47Z #15 2.178 57050K .......... .......... .......... .......... .......... 44% 5.65M 1s +2024-04-29T04:26:47Z #15 2.178 57100K .......... .......... .......... .......... .......... 44% 120M 1s +2024-04-29T04:26:47Z #15 2.178 57150K .......... .......... .......... .......... .......... 44% 99.3M 1s +2024-04-29T04:26:47Z #15 2.178 57200K .......... .......... .......... .......... .......... 44% 83.0M 1s +2024-04-29T04:26:47Z #15 2.178 57250K .......... .......... .......... .......... .......... 44% 75.8M 1s +2024-04-29T04:26:47Z #15 2.178 57300K .......... .......... .......... .......... .......... 44% 130M 1s +2024-04-29T04:26:47Z #15 2.178 57350K .......... .......... .......... .......... .......... 44% 120M 1s +2024-04-29T04:26:47Z #15 2.178 57400K .......... .......... .......... .......... .......... 44% 81.3M 1s +2024-04-29T04:26:47Z #15 2.178 57450K .......... .......... .......... .......... .......... 44% 74.3M 1s +2024-04-29T04:26:47Z #15 2.178 57500K .......... .......... .......... .......... .......... 45% 122M 1s +2024-04-29T04:26:47Z #15 2.178 57550K .......... .......... .......... .......... .......... 45% 91.6M 1s +2024-04-29T04:26:47Z #15 2.178 57600K .......... .......... .......... .......... .......... 45% 85.6M 1s +2024-04-29T04:26:47Z #15 2.178 57650K .......... .......... .......... .......... .......... 45% 124M 1s +2024-04-29T04:26:47Z #15 2.178 57700K .......... .......... .......... .......... .......... 45% 82.4M 1s +2024-04-29T04:26:47Z #15 2.178 57750K .......... .......... .......... .......... .......... 45% 92.0M 1s +2024-04-29T04:26:47Z #15 2.178 57800K .......... .......... .......... .......... .......... 45% 135M 1s +2024-04-29T04:26:47Z #15 2.178 57850K .......... .......... .......... .......... .......... 45% 11.0M 1s +2024-04-29T04:26:47Z #15 2.178 57900K .......... .......... .......... .......... .......... 45% 62.6M 1s +2024-04-29T04:26:47Z #15 2.178 57950K .......... .......... .......... .......... .......... 45% 109M 1s +2024-04-29T04:26:47Z #15 2.178 58000K .......... .......... .......... .......... .......... 45% 134M 1s +2024-04-29T04:26:47Z #15 2.178 58050K .......... .......... .......... .......... .......... 45% 101M 1s +2024-04-29T04:26:47Z #15 2.178 58100K .......... .......... .......... .......... .......... 45% 62.9M 1s +2024-04-29T04:26:47Z #15 2.178 58150K .......... .......... .......... .......... .......... 45% 106M 1s +2024-04-29T04:26:47Z #15 2.178 58200K .......... .......... .......... .......... .......... 45% 128M 1s +2024-04-29T04:26:47Z #15 2.178 58250K .......... .......... .......... .......... .......... 45% 139M 1s +2024-04-29T04:26:47Z #15 2.178 58300K .......... .......... .......... .......... .......... 45% 100M 1s +2024-04-29T04:26:47Z #15 2.178 58350K .......... .......... .......... .......... .......... 45% 11.2M 1s +2024-04-29T04:26:47Z #15 2.194 58400K .......... .......... .......... .......... .......... 45% 121M 1s +2024-04-29T04:26:47Z #15 2.194 58450K .......... .......... .......... .......... .......... 45% 102M 1s +2024-04-29T04:26:47Z #15 2.194 58500K .......... .......... .......... .......... .......... 45% 87.5M 1s +2024-04-29T04:26:47Z #15 2.194 58550K .......... .......... .......... .......... .......... 45% 102M 1s +2024-04-29T04:26:47Z #15 2.194 58600K .......... .......... .......... .......... .......... 45% 125M 1s +2024-04-29T04:26:47Z #15 2.194 58650K .......... .......... .......... .......... .......... 45% 68.3M 1s +2024-04-29T04:26:47Z #15 2.194 58700K .......... .......... .......... .......... .......... 45% 109M 1s +2024-04-29T04:26:47Z #15 2.194 58750K .......... .......... .......... .......... .......... 46% 97.2M 1s +2024-04-29T04:26:47Z #15 2.194 58800K .......... .......... .......... .......... .......... 46% 85.6M 1s +2024-04-29T04:26:47Z #15 2.194 58850K .......... .......... .......... .......... .......... 46% 111M 1s +2024-04-29T04:26:47Z #15 2.194 58900K .......... .......... .......... .......... .......... 46% 128M 1s +2024-04-29T04:26:47Z #15 2.194 58950K .......... .......... .......... .......... .......... 46% 79.3M 1s +2024-04-29T04:26:47Z #15 2.194 59000K .......... .......... .......... .......... .......... 46% 86.4M 1s +2024-04-29T04:26:47Z #15 2.194 59050K .......... .......... .......... .......... .......... 46% 110M 1s +2024-04-29T04:26:47Z #15 2.194 59100K .......... .......... .......... .......... .......... 46% 112M 1s +2024-04-29T04:26:47Z #15 2.194 59150K .......... .......... .......... .......... .......... 46% 97.6M 1s +2024-04-29T04:26:47Z #15 2.194 59200K .......... .......... .......... .......... .......... 46% 93.0M 1s +2024-04-29T04:26:47Z #15 2.194 59250K .......... .......... .......... .......... .......... 46% 74.3M 1s +2024-04-29T04:26:47Z #15 2.194 59300K .......... .......... .......... .......... .......... 46% 127M 1s +2024-04-29T04:26:47Z #15 2.194 59350K .......... .......... .......... .......... .......... 46% 92.4M 1s +2024-04-29T04:26:47Z #15 2.194 59400K .......... .......... .......... .......... .......... 46% 105M 1s +2024-04-29T04:26:47Z #15 2.194 59450K .......... .......... .......... .......... .......... 46% 5.63M 1s +2024-04-29T04:26:47Z #15 2.201 59500K .......... .......... .......... .......... .......... 46% 102M 1s +2024-04-29T04:26:47Z #15 2.201 59550K .......... .......... .......... .......... .......... 46% 80.2M 1s +2024-04-29T04:26:47Z #15 2.202 59600K .......... .......... .......... .......... .......... 46% 123M 1s +2024-04-29T04:26:47Z #15 2.202 59650K .......... .......... .......... .......... .......... 46% 118M 1s +2024-04-29T04:26:47Z #15 2.203 59700K .......... .......... .......... .......... .......... 46% 73.0M 1s +2024-04-29T04:26:47Z #15 2.204 59750K .......... .......... .......... .......... .......... 46% 89.5M 1s +2024-04-29T04:26:47Z #15 2.204 59800K .......... .......... .......... .......... .......... 46% 129M 1s +2024-04-29T04:26:47Z #15 2.212 59850K .......... .......... .......... .......... .......... 46% 5.55M 1s +2024-04-29T04:26:47Z #15 2.213 59900K .......... .......... .......... .......... .......... 46% 88.5M 1s +2024-04-29T04:26:47Z #15 2.214 59950K .......... .......... .......... .......... .......... 46% 110M 1s +2024-04-29T04:26:47Z #15 2.214 60000K .......... .......... .......... .......... .......... 46% 69.4M 1s +2024-04-29T04:26:47Z #15 2.215 60050K .......... .......... .......... .......... .......... 47% 106M 1s +2024-04-29T04:26:47Z #15 2.215 60100K .......... .......... .......... .......... .......... 47% 109M 1s +2024-04-29T04:26:47Z #15 2.216 60150K .......... .......... .......... .......... .......... 47% 56.6M 1s +2024-04-29T04:26:47Z #15 2.217 60200K .......... .......... .......... .......... .......... 47% 119M 1s +2024-04-29T04:26:47Z #15 2.217 60250K .......... .......... .......... .......... .......... 47% 101M 1s +2024-04-29T04:26:47Z #15 2.218 60300K .......... .......... .......... .......... .......... 47% 63.9M 1s +2024-04-29T04:26:47Z #15 2.218 60350K .......... .......... .......... .......... .......... 47% 102M 1s +2024-04-29T04:26:47Z #15 2.219 60400K .......... .......... .......... .......... .......... 47% 113M 1s +2024-04-29T04:26:47Z #15 2.219 60450K .......... .......... .......... .......... .......... 47% 71.2M 1s +2024-04-29T04:26:47Z #15 2.220 60500K .......... .......... .......... .......... .......... 47% 78.7M 1s +2024-04-29T04:26:47Z #15 2.221 60550K .......... .......... .......... .......... .......... 47% 127M 1s +2024-04-29T04:26:47Z #15 2.221 60600K .......... .......... .......... .......... .......... 47% 121M 1s +2024-04-29T04:26:47Z #15 2.221 60650K .......... .......... .......... .......... .......... 47% 61.7M 1s +2024-04-29T04:26:47Z #15 2.222 60700K .......... .......... .......... .......... .......... 47% 97.1M 1s +2024-04-29T04:26:47Z #15 2.223 60750K .......... .......... .......... .......... .......... 47% 74.4M 1s +2024-04-29T04:26:47Z #15 2.223 60800K .......... .......... .......... .......... .......... 47% 83.3M 1s +2024-04-29T04:26:47Z #15 2.224 60850K .......... .......... .......... .......... .......... 47% 123M 1s +2024-04-29T04:26:47Z #15 2.224 60900K .......... .......... .......... .......... .......... 47% 5.77M 1s +2024-04-29T04:26:47Z #15 2.241 60950K .......... .......... .......... .......... .......... 47% 154M 1s +2024-04-29T04:26:47Z #15 2.241 61000K .......... .......... .......... .......... .......... 47% 153M 1s +2024-04-29T04:26:47Z #15 2.241 61050K .......... .......... .......... .......... .......... 47% 185M 1s +2024-04-29T04:26:47Z #15 2.241 61100K .......... .......... .......... .......... .......... 47% 132M 1s +2024-04-29T04:26:47Z #15 2.241 61150K .......... .......... .......... .......... .......... 47% 133M 1s +2024-04-29T04:26:47Z #15 2.241 61200K .......... .......... .......... .......... .......... 47% 134M 1s +2024-04-29T04:26:47Z #15 2.241 61250K .......... .......... .......... .......... .......... 47% 155M 1s +2024-04-29T04:26:47Z #15 2.241 61300K .......... .......... .......... .......... .......... 48% 150M 1s +2024-04-29T04:26:47Z #15 2.241 61350K .......... .......... .......... .......... .......... 48% 170M 1s +2024-04-29T04:26:47Z #15 2.241 61400K .......... .......... .......... .......... .......... 48% 123M 1s +2024-04-29T04:26:47Z #15 2.241 61450K .......... .......... .......... .......... .......... 48% 147M 1s +2024-04-29T04:26:47Z #15 2.241 61500K .......... .......... .......... .......... .......... 48% 117M 1s +2024-04-29T04:26:47Z #15 2.241 61550K .......... .......... .......... .......... .......... 48% 167M 1s +2024-04-29T04:26:47Z #15 2.241 61600K .......... .......... .......... .......... .......... 48% 136M 1s +2024-04-29T04:26:47Z #15 2.241 61650K .......... .......... .......... .......... .......... 48% 167M 1s +2024-04-29T04:26:47Z #15 2.241 61700K .......... .......... .......... .......... .......... 48% 135M 1s +2024-04-29T04:26:47Z #15 2.241 61750K .......... .......... .......... .......... .......... 48% 143M 1s +2024-04-29T04:26:47Z #15 2.241 61800K .......... .......... .......... .......... .......... 48% 152M 1s +2024-04-29T04:26:47Z #15 2.241 61850K .......... .......... .......... .......... .......... 48% 162M 1s +2024-04-29T04:26:47Z #15 2.241 61900K .......... .......... .......... .......... .......... 48% 169M 1s +2024-04-29T04:26:47Z #15 2.241 61950K .......... .......... .......... .......... .......... 48% 157M 1s +2024-04-29T04:26:47Z #15 2.241 62000K .......... .......... .......... .......... .......... 48% 162M 1s +2024-04-29T04:26:47Z #15 2.241 62050K .......... .......... .......... .......... .......... 48% 244M 1s +2024-04-29T04:26:47Z #15 2.241 62100K .......... .......... .......... .......... .......... 48% 54.7M 1s +2024-04-29T04:26:47Z #15 2.241 62150K .......... .......... .......... .......... .......... 48% 35.0M 1s +2024-04-29T04:26:47Z #15 2.243 62200K .......... .......... .......... .......... .......... 48% 93.0M 1s +2024-04-29T04:26:47Z #15 2.243 62250K .......... .......... .......... .......... .......... 48% 126M 1s +2024-04-29T04:26:47Z #15 2.243 62300K .......... .......... .......... .......... .......... 48% 116M 1s +2024-04-29T04:26:47Z #15 2.244 62350K .......... .......... .......... .......... .......... 48% 130M 1s +2024-04-29T04:26:47Z #15 2.244 62400K .......... .......... .......... .......... .......... 48% 48.0M 1s +2024-04-29T04:26:47Z #15 2.245 62450K .......... .......... .......... .......... .......... 48% 53.1M 1s +2024-04-29T04:26:47Z #15 2.246 62500K .......... .......... .......... .......... .......... 48% 111M 1s +2024-04-29T04:26:47Z #15 2.247 62550K .......... .......... .......... .......... .......... 48% 112M 1s +2024-04-29T04:26:47Z #15 2.247 62600K .......... .......... .......... .......... .......... 49% 93.6M 1s +2024-04-29T04:26:47Z #15 2.248 62650K .......... .......... .......... .......... .......... 49% 133M 1s +2024-04-29T04:26:47Z #15 2.248 62700K .......... .......... .......... .......... .......... 49% 112M 1s +2024-04-29T04:26:47Z #15 2.249 62750K .......... .......... .......... .......... .......... 49% 51.9M 1s +2024-04-29T04:26:47Z #15 2.251 62800K .......... .......... .......... .......... .......... 49% 136M 1s +2024-04-29T04:26:47Z #15 2.251 62850K .......... .......... .......... .......... .......... 49% 174M 1s +2024-04-29T04:26:47Z #15 2.251 62900K .......... .......... .......... .......... .......... 49% 128M 1s +2024-04-29T04:26:47Z #15 2.251 62950K .......... .......... .......... .......... .......... 49% 141M 1s +2024-04-29T04:26:47Z #15 2.251 63000K .......... .......... .......... .......... .......... 49% 98.6M 1s +2024-04-29T04:26:47Z #15 2.252 63050K .......... .......... .......... .......... .......... 49% 80.4M 1s +2024-04-29T04:26:47Z #15 2.252 63100K .......... .......... .......... .......... .......... 49% 122M 1s +2024-04-29T04:26:47Z #15 2.252 63150K .......... .......... .......... .......... .......... 49% 75.3M 1s +2024-04-29T04:26:47Z #15 2.253 63200K .......... .......... .......... .......... .......... 49% 64.6M 1s +2024-04-29T04:26:47Z #15 2.254 63250K .......... .......... .......... .......... .......... 49% 82.4M 1s +2024-04-29T04:26:47Z #15 2.255 63300K .......... .......... .......... .......... .......... 49% 38.7M 1s +2024-04-29T04:26:47Z #15 2.256 63350K .......... .......... .......... .......... .......... 49% 46.2M 1s +2024-04-29T04:26:47Z #15 2.261 63400K .......... .......... .......... .......... .......... 49% 129M 1s +2024-04-29T04:26:47Z #15 2.261 63450K .......... .......... .......... .......... .......... 49% 179M 1s +2024-04-29T04:26:47Z #15 2.261 63500K .......... .......... .......... .......... .......... 49% 159M 1s +2024-04-29T04:26:47Z #15 2.261 63550K .......... .......... .......... .......... .......... 49% 128M 1s +2024-04-29T04:26:47Z #15 2.261 63600K .......... .......... .......... .......... .......... 49% 167M 1s +2024-04-29T04:26:47Z #15 2.261 63650K .......... .......... .......... .......... .......... 49% 135M 1s +2024-04-29T04:26:47Z #15 2.261 63700K .......... .......... .......... .......... .......... 49% 178M 1s +2024-04-29T04:26:47Z #15 2.261 63750K .......... .......... .......... .......... .......... 49% 134M 1s +2024-04-29T04:26:47Z #15 2.261 63800K .......... .......... .......... .......... .......... 49% 148M 1s +2024-04-29T04:26:47Z #15 2.261 63850K .......... .......... .......... .......... .......... 50% 152M 1s +2024-04-29T04:26:47Z #15 2.261 63900K .......... .......... .......... .......... .......... 50% 153M 1s +2024-04-29T04:26:47Z #15 2.261 63950K .......... .......... .......... .......... .......... 50% 131M 1s +2024-04-29T04:26:47Z #15 2.261 64000K .......... .......... .......... .......... .......... 50% 57.8M 1s +2024-04-29T04:26:47Z #15 2.262 64050K .......... .......... .......... .......... .......... 50% 72.8M 1s +2024-04-29T04:26:47Z #15 2.262 64100K .......... .......... .......... .......... .......... 50% 119M 1s +2024-04-29T04:26:47Z #15 2.262 64150K .......... .......... .......... .......... .......... 50% 109M 1s +2024-04-29T04:26:47Z #15 2.263 64200K .......... .......... .......... .......... .......... 50% 52.8M 1s +2024-04-29T04:26:47Z #15 2.264 64250K .......... .......... .......... .......... .......... 50% 47.8M 1s +2024-04-29T04:26:47Z #15 2.265 64300K .......... .......... .......... .......... .......... 50% 64.9M 1s +2024-04-29T04:26:47Z #15 2.266 64350K .......... .......... .......... .......... .......... 50% 101M 1s +2024-04-29T04:26:47Z #15 2.266 64400K .......... .......... .......... .......... .......... 50% 57.6M 1s +2024-04-29T04:26:47Z #15 2.269 64450K .......... .......... .......... .......... .......... 50% 172M 1s +2024-04-29T04:26:47Z #15 2.269 64500K .......... .......... .......... .......... .......... 50% 148M 1s +2024-04-29T04:26:47Z #15 2.269 64550K .......... .......... .......... .......... .......... 50% 151M 1s +2024-04-29T04:26:47Z #15 2.269 64600K .......... .......... .......... .......... .......... 50% 126M 1s +2024-04-29T04:26:47Z #15 2.269 64650K .......... .......... .......... .......... .......... 50% 181M 1s +2024-04-29T04:26:47Z #15 2.269 64700K .......... .......... .......... .......... .......... 50% 71.1M 1s +2024-04-29T04:26:47Z #15 2.270 64750K .......... .......... .......... .......... .......... 50% 103M 1s +2024-04-29T04:26:47Z #15 2.270 64800K .......... .......... .......... .......... .......... 50% 113M 1s +2024-04-29T04:26:47Z #15 2.270 64850K .......... .......... .......... .......... .......... 50% 115M 1s +2024-04-29T04:26:47Z #15 2.271 64900K .......... .......... .......... .......... .......... 50% 113M 1s +2024-04-29T04:26:47Z #15 2.271 64950K .......... .......... .......... .......... .......... 50% 100M 1s +2024-04-29T04:26:47Z #15 2.271 65000K .......... .......... .......... .......... .......... 50% 125M 1s +2024-04-29T04:26:47Z #15 2.272 65050K .......... .......... .......... .......... .......... 50% 116M 1s +2024-04-29T04:26:47Z #15 2.273 65100K .......... .......... .......... .......... .......... 50% 116M 1s +2024-04-29T04:26:47Z #15 2.273 65150K .......... .......... .......... .......... .......... 51% 105M 1s +2024-04-29T04:26:47Z #15 2.273 65200K .......... .......... .......... .......... .......... 51% 133M 1s +2024-04-29T04:26:47Z #15 2.274 65250K .......... .......... .......... .......... .......... 51% 116M 1s +2024-04-29T04:26:47Z #15 2.274 65300K .......... .......... .......... .......... .......... 51% 98.9M 1s +2024-04-29T04:26:47Z #15 2.275 65350K .......... .......... .......... .......... .......... 51% 119M 1s +2024-04-29T04:26:47Z #15 2.275 65400K .......... .......... .......... .......... .......... 51% 145M 1s +2024-04-29T04:26:47Z #15 2.275 65450K .......... .......... .......... .......... .......... 51% 128M 1s +2024-04-29T04:26:47Z #15 2.276 65500K .......... .......... .......... .......... .......... 51% 106M 1s +2024-04-29T04:26:47Z #15 2.276 65550K .......... .......... .......... .......... .......... 51% 145M 1s +2024-04-29T04:26:47Z #15 2.276 65600K .......... .......... .......... .......... .......... 51% 88.4M 1s +2024-04-29T04:26:47Z #15 2.281 65650K .......... .......... .......... .......... .......... 51% 66.1M 1s +2024-04-29T04:26:47Z #15 2.281 65700K .......... .......... .......... .......... .......... 51% 118M 1s +2024-04-29T04:26:47Z #15 2.281 65750K .......... .......... .......... .......... .......... 51% 175M 1s +2024-04-29T04:26:47Z #15 2.281 65800K .......... .......... .......... .......... .......... 51% 154M 1s +2024-04-29T04:26:47Z #15 2.281 65850K .......... .......... .......... .......... .......... 51% 136M 1s +2024-04-29T04:26:47Z #15 2.281 65900K .......... .......... .......... .......... .......... 51% 125M 1s +2024-04-29T04:26:47Z #15 2.281 65950K .......... .......... .......... .......... .......... 51% 165M 1s +2024-04-29T04:26:47Z #15 2.281 66000K .......... .......... .......... .......... .......... 51% 171M 1s +2024-04-29T04:26:47Z #15 2.281 66050K .......... .......... .......... .......... .......... 51% 151M 1s +2024-04-29T04:26:47Z #15 2.281 66100K .......... .......... .......... .......... .......... 51% 101M 1s +2024-04-29T04:26:47Z #15 2.281 66150K .......... .......... .......... .......... .......... 51% 56.9M 1s +2024-04-29T04:26:47Z #15 2.282 66200K .......... .......... .......... .......... .......... 51% 75.8M 1s +2024-04-29T04:26:47Z #15 2.282 66250K .......... .......... .......... .......... .......... 51% 79.1M 1s +2024-04-29T04:26:47Z #15 2.283 66300K .......... .......... .......... .......... .......... 51% 64.3M 1s +2024-04-29T04:26:47Z #15 2.284 66350K .......... .......... .......... .......... .......... 51% 67.8M 1s +2024-04-29T04:26:47Z #15 2.284 66400K .......... .......... .......... .......... .......... 51% 79.7M 1s +2024-04-29T04:26:47Z #15 2.285 66450K .......... .......... .......... .......... .......... 52% 78.0M 1s +2024-04-29T04:26:47Z #15 2.286 66500K .......... .......... .......... .......... .......... 52% 82.9M 1s +2024-04-29T04:26:47Z #15 2.287 66550K .......... .......... .......... .......... .......... 52% 87.7M 1s +2024-04-29T04:26:47Z #15 2.287 66600K .......... .......... .......... .......... .......... 52% 120M 1s +2024-04-29T04:26:47Z #15 2.287 66650K .......... .......... .......... .......... .......... 52% 107M 1s +2024-04-29T04:26:47Z #15 2.288 66700K .......... .......... .......... .......... .......... 52% 139M 1s +2024-04-29T04:26:47Z #15 2.288 66750K .......... .......... .......... .......... .......... 52% 121M 1s +2024-04-29T04:26:47Z #15 2.289 66800K .......... .......... .......... .......... .......... 52% 86.1M 1s +2024-04-29T04:26:47Z #15 2.289 66850K .......... .......... .......... .......... .......... 52% 99.1M 1s +2024-04-29T04:26:47Z #15 2.293 66900K .......... .......... .......... .......... .......... 52% 115M 1s +2024-04-29T04:26:47Z #15 2.293 66950K .......... .......... .......... .......... .......... 52% 162M 1s +2024-04-29T04:26:47Z #15 2.293 67000K .......... .......... .......... .......... .......... 52% 127M 1s +2024-04-29T04:26:47Z #15 2.293 67050K .......... .......... .......... .......... .......... 52% 162M 1s +2024-04-29T04:26:47Z #15 2.293 67100K .......... .......... .......... .......... .......... 52% 150M 1s +2024-04-29T04:26:47Z #15 2.293 67150K .......... .......... .......... .......... .......... 52% 126M 1s +2024-04-29T04:26:47Z #15 2.293 67200K .......... .......... .......... .......... .......... 52% 135M 1s +2024-04-29T04:26:47Z #15 2.293 67250K .......... .......... .......... .......... .......... 52% 163M 1s +2024-04-29T04:26:47Z #15 2.293 67300K .......... .......... .......... .......... .......... 52% 179M 1s +2024-04-29T04:26:47Z #15 2.293 67350K .......... .......... .......... .......... .......... 52% 91.3M 1s +2024-04-29T04:26:47Z #15 2.293 67400K .......... .......... .......... .......... .......... 52% 118M 1s +2024-04-29T04:26:47Z #15 2.293 67450K .......... .......... .......... .......... .......... 52% 139M 1s +2024-04-29T04:26:47Z #15 2.294 67500K .......... .......... .......... .......... .......... 52% 130M 1s +2024-04-29T04:26:47Z #15 2.294 67550K .......... .......... .......... .......... .......... 52% 124M 1s +2024-04-29T04:26:47Z #15 2.295 67600K .......... .......... .......... .......... .......... 52% 110M 1s +2024-04-29T04:26:47Z #15 2.295 67650K .......... .......... .......... .......... .......... 52% 125M 1s +2024-04-29T04:26:47Z #15 2.295 67700K .......... .......... .......... .......... .......... 53% 139M 1s +2024-04-29T04:26:47Z #15 2.296 67750K .......... .......... .......... .......... .......... 53% 121M 1s +2024-04-29T04:26:47Z #15 2.296 67800K .......... .......... .......... .......... .......... 53% 55.4M 1s +2024-04-29T04:26:47Z #15 2.301 67850K .......... .......... .......... .......... .......... 53% 122M 1s +2024-04-29T04:26:47Z #15 2.301 67900K .......... .......... .......... .......... .......... 53% 180M 1s +2024-04-29T04:26:47Z #15 2.301 67950K .......... .......... .......... .......... .......... 53% 132M 1s +2024-04-29T04:26:47Z #15 2.301 68000K .......... .......... .......... .......... .......... 53% 134M 1s +2024-04-29T04:26:47Z #15 2.301 68050K .......... .......... .......... .......... .......... 53% 137M 1s +2024-04-29T04:26:47Z #15 2.301 68100K .......... .......... .......... .......... .......... 53% 134M 1s +2024-04-29T04:26:47Z #15 2.301 68150K .......... .......... .......... .......... .......... 53% 168M 1s +2024-04-29T04:26:47Z #15 2.301 68200K .......... .......... .......... .......... .......... 53% 124M 1s +2024-04-29T04:26:47Z #15 2.301 68250K .......... .......... .......... .......... .......... 53% 160M 1s +2024-04-29T04:26:47Z #15 2.301 68300K .......... .......... .......... .......... .......... 53% 142M 1s +2024-04-29T04:26:47Z #15 2.301 68350K .......... .......... .......... .......... .......... 53% 99.6M 1s +2024-04-29T04:26:47Z #15 2.301 68400K .......... .......... .......... .......... .......... 53% 117M 1s +2024-04-29T04:26:47Z #15 2.301 68450K .......... .......... .......... .......... .......... 53% 88.6M 1s +2024-04-29T04:26:47Z #15 2.302 68500K .......... .......... .......... .......... .......... 53% 135M 1s +2024-04-29T04:26:47Z #15 2.302 68550K .......... .......... .......... .......... .......... 53% 131M 1s +2024-04-29T04:26:47Z #15 2.303 68600K .......... .......... .......... .......... .......... 53% 126M 1s +2024-04-29T04:26:47Z #15 2.303 68650K .......... .......... .......... .......... .......... 53% 93.0M 1s +2024-04-29T04:26:47Z #15 2.305 68700K .......... .......... .......... .......... .......... 53% 147M 1s +2024-04-29T04:26:47Z #15 2.305 68750K .......... .......... .......... .......... .......... 53% 121M 1s +2024-04-29T04:26:47Z #15 2.305 68800K .......... .......... .......... .......... .......... 53% 85.7M 1s +2024-04-29T04:26:47Z #15 2.305 68850K .......... .......... .......... .......... .......... 53% 120M 1s +2024-04-29T04:26:47Z #15 2.305 68900K .......... .......... .......... .......... .......... 53% 130M 1s +2024-04-29T04:26:47Z #15 2.306 68950K .......... .......... .......... .......... .......... 53% 117M 1s +2024-04-29T04:26:47Z #15 2.306 69000K .......... .......... .......... .......... .......... 54% 115M 1s +2024-04-29T04:26:47Z #15 2.307 69050K .......... .......... .......... .......... .......... 54% 87.2M 1s +2024-04-29T04:26:47Z #15 2.313 69100K .......... .......... .......... .......... .......... 54% 83.4M 1s +2024-04-29T04:26:47Z #15 2.313 69150K .......... .......... .......... .......... .......... 54% 90.8M 1s +2024-04-29T04:26:47Z #15 2.313 69200K .......... .......... .......... .......... .......... 54% 90.3M 1s +2024-04-29T04:26:47Z #15 2.313 69250K .......... .......... .......... .......... .......... 54% 80.9M 1s +2024-04-29T04:26:47Z #15 2.313 69300K .......... .......... .......... .......... .......... 54% 86.3M 1s +2024-04-29T04:26:47Z #15 2.313 69350K .......... .......... .......... .......... .......... 54% 88.7M 1s +2024-04-29T04:26:47Z #15 2.313 69400K .......... .......... .......... .......... .......... 54% 87.4M 1s +2024-04-29T04:26:47Z #15 2.313 69450K .......... .......... .......... .......... .......... 54% 72.6M 1s +2024-04-29T04:26:47Z #15 2.313 69500K .......... .......... .......... .......... .......... 54% 126M 1s +2024-04-29T04:26:47Z #15 2.313 69550K .......... .......... .......... .......... .......... 54% 142M 1s +2024-04-29T04:26:47Z #15 2.313 69600K .......... .......... .......... .......... .......... 54% 107M 1s +2024-04-29T04:26:47Z #15 2.315 69650K .......... .......... .......... .......... .......... 54% 69.2M 1s +2024-04-29T04:26:47Z #15 2.315 69700K .......... .......... .......... .......... .......... 54% 124M 1s +2024-04-29T04:26:47Z #15 2.315 69750K .......... .......... .......... .......... .......... 54% 109M 1s +2024-04-29T04:26:47Z #15 2.315 69800K .......... .......... .......... .......... .......... 54% 75.4M 1s +2024-04-29T04:26:47Z #15 2.315 69850K .......... .......... .......... .......... .......... 54% 124M 1s +2024-04-29T04:26:47Z #15 2.316 69900K .......... .......... .......... .......... .......... 54% 132M 1s +2024-04-29T04:26:47Z #15 2.316 69950K .......... .......... .......... .......... .......... 54% 109M 1s +2024-04-29T04:26:47Z #15 2.316 70000K .......... .......... .......... .......... .......... 54% 101M 1s +2024-04-29T04:26:47Z #15 2.317 70050K .......... .......... .......... .......... .......... 54% 133M 1s +2024-04-29T04:26:47Z #15 2.317 70100K .......... .......... .......... .......... .......... 54% 71.6M 1s +2024-04-29T04:26:47Z #15 2.318 70150K .......... .......... .......... .......... .......... 54% 101M 1s +2024-04-29T04:26:47Z #15 2.318 70200K .......... .......... .......... .......... .......... 54% 122M 1s +2024-04-29T04:26:47Z #15 2.319 70250K .......... .......... .......... .......... .......... 55% 103M 1s +2024-04-29T04:26:47Z #15 2.319 70300K .......... .......... .......... .......... .......... 55% 140M 1s +2024-04-29T04:26:47Z #15 2.320 70350K .......... .......... .......... .......... .......... 55% 115M 1s +2024-04-29T04:26:47Z #15 2.320 70400K .......... .......... .......... .......... .......... 55% 105M 1s +2024-04-29T04:26:47Z #15 2.320 70450K .......... .......... .......... .......... .......... 55% 87.8M 1s +2024-04-29T04:26:47Z #15 2.322 70500K .......... .......... .......... .......... .......... 55% 142M 1s +2024-04-29T04:26:47Z #15 2.322 70550K .......... .......... .......... .......... .......... 55% 128M 1s +2024-04-29T04:26:47Z #15 2.322 70600K .......... .......... .......... .......... .......... 55% 156M 1s +2024-04-29T04:26:47Z #15 2.322 70650K .......... .......... .......... .......... .......... 55% 150M 1s +2024-04-29T04:26:47Z #15 2.322 70700K .......... .......... .......... .......... .......... 55% 99.6M 1s +2024-04-29T04:26:47Z #15 2.323 70750K .......... .......... .......... .......... .......... 55% 127M 1s +2024-04-29T04:26:47Z #15 2.323 70800K .......... .......... .......... .......... .......... 55% 117M 1s +2024-04-29T04:26:47Z #15 2.324 70850K .......... .......... .......... .......... .......... 55% 123M 1s +2024-04-29T04:26:47Z #15 2.324 70900K .......... .......... .......... .......... .......... 55% 111M 1s +2024-04-29T04:26:47Z #15 2.325 70950K .......... .......... .......... .......... .......... 55% 82.2M 1s +2024-04-29T04:26:47Z #15 2.325 71000K .......... .......... .......... .......... .......... 55% 116M 1s +2024-04-29T04:26:47Z #15 2.326 71050K .......... .......... .......... .......... .......... 55% 116M 1s +2024-04-29T04:26:47Z #15 2.327 71100K .......... .......... .......... .......... .......... 55% 102M 1s +2024-04-29T04:26:47Z #15 2.327 71150K .......... .......... .......... .......... .......... 55% 154M 1s +2024-04-29T04:26:47Z #15 2.327 71200K .......... .......... .......... .......... .......... 55% 98.8M 1s +2024-04-29T04:26:47Z #15 2.327 71250K .......... .......... .......... .......... .......... 55% 127M 1s +2024-04-29T04:26:47Z #15 2.328 71300K .......... .......... .......... .......... .......... 55% 132M 1s +2024-04-29T04:26:47Z #15 2.328 71350K .......... .......... .......... .......... .......... 55% 140M 1s +2024-04-29T04:26:47Z #15 2.333 71400K .......... .......... .......... .......... .......... 55% 95.6M 1s +2024-04-29T04:26:47Z #15 2.333 71450K .......... .......... .......... .......... .......... 55% 159M 1s +2024-04-29T04:26:47Z #15 2.333 71500K .......... .......... .......... .......... .......... 55% 170M 1s +2024-04-29T04:26:47Z #15 2.333 71550K .......... .......... .......... .......... .......... 56% 139M 1s +2024-04-29T04:26:47Z #15 2.333 71600K .......... .......... .......... .......... .......... 56% 161M 1s +2024-04-29T04:26:47Z #15 2.333 71650K .......... .......... .......... .......... .......... 56% 133M 1s +2024-04-29T04:26:47Z #15 2.333 71700K .......... .......... .......... .......... .......... 56% 171M 1s +2024-04-29T04:26:47Z #15 2.333 71750K .......... .......... .......... .......... .......... 56% 136M 1s +2024-04-29T04:26:47Z #15 2.333 71800K .......... .......... .......... .......... .......... 56% 154M 1s +2024-04-29T04:26:47Z #15 2.333 71850K .......... .......... .......... .......... .......... 56% 154M 1s +2024-04-29T04:26:47Z #15 2.333 71900K .......... .......... .......... .......... .......... 56% 134M 1s +2024-04-29T04:26:47Z #15 2.333 71950K .......... .......... .......... .......... .......... 56% 157M 1s +2024-04-29T04:26:47Z #15 2.333 72000K .......... .......... .......... .......... .......... 56% 58.5M 1s +2024-04-29T04:26:47Z #15 2.333 72050K .......... .......... .......... .......... .......... 56% 101M 1s +2024-04-29T04:26:47Z #15 2.334 72100K .......... .......... .......... .......... .......... 56% 127M 1s +2024-04-29T04:26:47Z #15 2.334 72150K .......... .......... .......... .......... .......... 56% 132M 1s +2024-04-29T04:26:47Z #15 2.334 72200K .......... .......... .......... .......... .......... 56% 100M 1s +2024-04-29T04:26:47Z #15 2.335 72250K .......... .......... .......... .......... .......... 56% 108M 1s +2024-04-29T04:26:47Z #15 2.336 72300K .......... .......... .......... .......... .......... 56% 127M 1s +2024-04-29T04:26:47Z #15 2.336 72350K .......... .......... .......... .......... .......... 56% 120M 1s +2024-04-29T04:26:47Z #15 2.336 72400K .......... .......... .......... .......... .......... 56% 88.2M 1s +2024-04-29T04:26:47Z #15 2.337 72450K .......... .......... .......... .......... .......... 56% 82.8M 1s +2024-04-29T04:26:47Z #15 2.341 72500K .......... .......... .......... .......... .......... 56% 89.1M 1s +2024-04-29T04:26:47Z #15 2.341 72550K .......... .......... .......... .......... .......... 56% 170M 1s +2024-04-29T04:26:47Z #15 2.341 72600K .......... .......... .......... .......... .......... 56% 121M 1s +2024-04-29T04:26:47Z #15 2.341 72650K .......... .......... .......... .......... .......... 56% 154M 1s +2024-04-29T04:26:47Z #15 2.341 72700K .......... .......... .......... .......... .......... 56% 148M 1s +2024-04-29T04:26:47Z #15 2.341 72750K .......... .......... .......... .......... .......... 56% 155M 1s +2024-04-29T04:26:47Z #15 2.341 72800K .......... .......... .......... .......... .......... 57% 133M 1s +2024-04-29T04:26:47Z #15 2.341 72850K .......... .......... .......... .......... .......... 57% 152M 1s +2024-04-29T04:26:47Z #15 2.341 72900K .......... .......... .......... .......... .......... 57% 142M 1s +2024-04-29T04:26:47Z #15 2.341 72950K .......... .......... .......... .......... .......... 57% 52.7M 1s +2024-04-29T04:26:47Z #15 2.342 73000K .......... .......... .......... .......... .......... 57% 59.6M 1s +2024-04-29T04:26:47Z #15 2.342 73050K .......... .......... .......... .......... .......... 57% 72.5M 1s +2024-04-29T04:26:47Z #15 2.343 73100K .......... .......... .......... .......... .......... 57% 59.9M 1s +2024-04-29T04:26:47Z #15 2.344 73150K .......... .......... .......... .......... .......... 57% 66.8M 1s +2024-04-29T04:26:47Z #15 2.348 73200K .......... .......... .......... .......... .......... 57% 75.6M 1s +2024-04-29T04:26:47Z #15 2.348 73250K .......... .......... .......... .......... .......... 57% 101M 1s +2024-04-29T04:26:47Z #15 2.348 73300K .......... .......... .......... .......... .......... 57% 132M 1s +2024-04-29T04:26:47Z #15 2.348 73350K .......... .......... .......... .......... .......... 57% 102M 1s +2024-04-29T04:26:47Z #15 2.348 73400K .......... .......... .......... .......... .......... 57% 121M 1s +2024-04-29T04:26:47Z #15 2.348 73450K .......... .......... .......... .......... .......... 57% 114M 1s +2024-04-29T04:26:47Z #15 2.348 73500K .......... .......... .......... .......... .......... 57% 108M 1s +2024-04-29T04:26:47Z #15 2.348 73550K .......... .......... .......... .......... .......... 57% 75.7M 1s +2024-04-29T04:26:47Z #15 2.348 73600K .......... .......... .......... .......... .......... 57% 112M 1s +2024-04-29T04:26:47Z #15 2.349 73650K .......... .......... .......... .......... .......... 57% 89.8M 1s +2024-04-29T04:26:47Z #15 2.349 73700K .......... .......... .......... .......... .......... 57% 85.2M 1s +2024-04-29T04:26:47Z #15 2.350 73750K .......... .......... .......... .......... .......... 57% 103M 1s +2024-04-29T04:26:47Z #15 2.351 73800K .......... .......... .......... .......... .......... 57% 126M 1s +2024-04-29T04:26:47Z #15 2.352 73850K .......... .......... .......... .......... .......... 57% 130M 1s +2024-04-29T04:26:47Z #15 2.352 73900K .......... .......... .......... .......... .......... 57% 128M 1s +2024-04-29T04:26:47Z #15 2.352 73950K .......... .......... .......... .......... .......... 57% 111M 1s +2024-04-29T04:26:47Z #15 2.352 74000K .......... .......... .......... .......... .......... 57% 109M 1s +2024-04-29T04:26:47Z #15 2.357 74050K .......... .......... .......... .......... .......... 57% 98.6M 1s +2024-04-29T04:26:47Z #15 2.357 74100K .......... .......... .......... .......... .......... 58% 152M 1s +2024-04-29T04:26:47Z #15 2.357 74150K .......... .......... .......... .......... .......... 58% 159M 1s +2024-04-29T04:26:47Z #15 2.357 74200K .......... .......... .......... .......... .......... 58% 164M 1s +2024-04-29T04:26:47Z #15 2.357 74250K .......... .......... .......... .......... .......... 58% 129M 1s +2024-04-29T04:26:47Z #15 2.357 74300K .......... .......... .......... .......... .......... 58% 149M 1s +2024-04-29T04:26:47Z #15 2.357 74350K .......... .......... .......... .......... .......... 58% 149M 1s +2024-04-29T04:26:47Z #15 2.357 74400K .......... .......... .......... .......... .......... 58% 139M 1s +2024-04-29T04:26:47Z #15 2.357 74450K .......... .......... .......... .......... .......... 58% 153M 1s +2024-04-29T04:26:47Z #15 2.357 74500K .......... .......... .......... .......... .......... 58% 153M 1s +2024-04-29T04:26:47Z #15 2.357 74550K .......... .......... .......... .......... .......... 58% 158M 1s +2024-04-29T04:26:47Z #15 2.357 74600K .......... .......... .......... .......... .......... 58% 184M 1s +2024-04-29T04:26:47Z #15 2.357 74650K .......... .......... .......... .......... .......... 58% 78.8M 1s +2024-04-29T04:26:47Z #15 2.359 74700K .......... .......... .......... .......... .......... 58% 137M 1s +2024-04-29T04:26:47Z #15 2.359 74750K .......... .......... .......... .......... .......... 58% 122M 1s +2024-04-29T04:26:47Z #15 2.359 74800K .......... .......... .......... .......... .......... 58% 120M 1s +2024-04-29T04:26:47Z #15 2.359 74850K .......... .......... .......... .......... .......... 58% 106M 1s +2024-04-29T04:26:47Z #15 2.359 74900K .......... .......... .......... .......... .......... 58% 138M 1s +2024-04-29T04:26:47Z #15 2.359 74950K .......... .......... .......... .......... .......... 58% 122M 1s +2024-04-29T04:26:47Z #15 2.360 75000K .......... .......... .......... .......... .......... 58% 118M 1s +2024-04-29T04:26:47Z #15 2.360 75050K .......... .......... .......... .......... .......... 58% 100M 1s +2024-04-29T04:26:47Z #15 2.361 75100K .......... .......... .......... .......... .......... 58% 103M 1s +2024-04-29T04:26:47Z #15 2.361 75150K .......... .......... .......... .......... .......... 58% 41.3M 1s +2024-04-29T04:26:47Z #15 2.362 75200K .......... .......... .......... .......... .......... 58% 70.6M 1s +2024-04-29T04:26:47Z #15 2.363 75250K .......... .......... .......... .......... .......... 58% 61.6M 1s +2024-04-29T04:26:47Z #15 2.364 75300K .......... .......... .......... .......... .......... 58% 83.3M 1s +2024-04-29T04:26:47Z #15 2.364 75350K .......... .......... .......... .......... .......... 59% 5.74M 1s +2024-04-29T04:26:47Z #15 2.373 75400K .......... .......... .......... .......... .......... 59% 119M 1s +2024-04-29T04:26:47Z #15 2.373 75450K .......... .......... .......... .......... .......... 59% 131M 1s +2024-04-29T04:26:47Z #15 2.374 75500K .......... .......... .......... .......... .......... 59% 137M 1s +2024-04-29T04:26:47Z #15 2.374 75550K .......... .......... .......... .......... .......... 59% 116M 1s +2024-04-29T04:26:47Z #15 2.374 75600K .......... .......... .......... .......... .......... 59% 113M 1s +2024-04-29T04:26:47Z #15 2.375 75650K .......... .......... .......... .......... .......... 59% 127M 1s +2024-04-29T04:26:47Z #15 2.375 75700K .......... .......... .......... .......... .......... 59% 123M 1s +2024-04-29T04:26:47Z #15 2.377 75750K .......... .......... .......... .......... .......... 59% 141M 1s +2024-04-29T04:26:47Z #15 2.377 75800K .......... .......... .......... .......... .......... 59% 131M 1s +2024-04-29T04:26:47Z #15 2.377 75850K .......... .......... .......... .......... .......... 59% 133M 1s +2024-04-29T04:26:47Z #15 2.377 75900K .......... .......... .......... .......... .......... 59% 96.0M 1s +2024-04-29T04:26:47Z #15 2.377 75950K .......... .......... .......... .......... .......... 59% 125M 1s +2024-04-29T04:26:47Z #15 2.377 76000K .......... .......... .......... .......... .......... 59% 127M 1s +2024-04-29T04:26:47Z #15 2.378 76050K .......... .......... .......... .......... .......... 59% 122M 1s +2024-04-29T04:26:47Z #15 2.378 76100K .......... .......... .......... .......... .......... 59% 103M 1s +2024-04-29T04:26:47Z #15 2.379 76150K .......... .......... .......... .......... .......... 59% 128M 1s +2024-04-29T04:26:47Z #15 2.379 76200K .......... .......... .......... .......... .......... 59% 137M 1s +2024-04-29T04:26:47Z #15 2.380 76250K .......... .......... .......... .......... .......... 59% 144M 1s +2024-04-29T04:26:47Z #15 2.380 76300K .......... .......... .......... .......... .......... 59% 130M 1s +2024-04-29T04:26:47Z #15 2.380 76350K .......... .......... .......... .......... .......... 59% 10.9M 1s +2024-04-29T04:26:47Z #15 2.385 76400K .......... .......... .......... .......... .......... 59% 113M 1s +2024-04-29T04:26:47Z #15 2.385 76450K .......... .......... .......... .......... .......... 59% 121M 1s +2024-04-29T04:26:47Z #15 2.385 76500K .......... .......... .......... .......... .......... 59% 95.8M 1s +2024-04-29T04:26:47Z #15 2.386 76550K .......... .......... .......... .......... .......... 59% 142M 1s +2024-04-29T04:26:47Z #15 2.386 76600K .......... .......... .......... .......... .......... 59% 109M 1s +2024-04-29T04:26:47Z #15 2.387 76650K .......... .......... .......... .......... .......... 60% 119M 1s +2024-04-29T04:26:47Z #15 2.387 76700K .......... .......... .......... .......... .......... 60% 108M 1s +2024-04-29T04:26:47Z #15 2.388 76750K .......... .......... .......... .......... .......... 60% 128M 1s +2024-04-29T04:26:47Z #15 2.388 76800K .......... .......... .......... .......... .......... 60% 155M 1s +2024-04-29T04:26:47Z #15 2.388 76850K .......... .......... .......... .......... .......... 60% 119M 1s +2024-04-29T04:26:47Z #15 2.389 76900K .......... .......... .......... .......... .......... 60% 121M 1s +2024-04-29T04:26:47Z #15 2.389 76950K .......... .......... .......... .......... .......... 60% 105M 1s +2024-04-29T04:26:47Z #15 2.390 77000K .......... .......... .......... .......... .......... 60% 116M 1s +2024-04-29T04:26:47Z #15 2.390 77050K .......... .......... .......... .......... .......... 60% 105M 1s +2024-04-29T04:26:47Z #15 2.390 77100K .......... .......... .......... .......... .......... 60% 128M 1s +2024-04-29T04:26:47Z #15 2.391 77150K .......... .......... .......... .......... .......... 60% 119M 1s +2024-04-29T04:26:47Z #15 2.392 77200K .......... .......... .......... .......... .......... 60% 136M 1s +2024-04-29T04:26:47Z #15 2.392 77250K .......... .......... .......... .......... .......... 60% 127M 1s +2024-04-29T04:26:47Z #15 2.392 77300K .......... .......... .......... .......... .......... 60% 119M 1s +2024-04-29T04:26:47Z #15 2.392 77350K .......... .......... .......... .......... .......... 60% 38.4M 1s +2024-04-29T04:26:47Z #15 2.394 77400K .......... .......... .......... .......... .......... 60% 109M 1s +2024-04-29T04:26:47Z #15 2.394 77450K .......... .......... .......... .......... .......... 60% 108M 1s +2024-04-29T04:26:47Z #15 2.395 77500K .......... .......... .......... .......... .......... 60% 99.8M 1s +2024-04-29T04:26:47Z #15 2.395 77550K .......... .......... .......... .......... .......... 60% 111M 1s +2024-04-29T04:26:47Z #15 2.396 77600K .......... .......... .......... .......... .......... 60% 123M 1s +2024-04-29T04:26:47Z #15 2.396 77650K .......... .......... .......... .......... .......... 60% 118M 1s +2024-04-29T04:26:47Z #15 2.396 77700K .......... .......... .......... .......... .......... 60% 115M 1s +2024-04-29T04:26:47Z #15 2.398 77750K .......... .......... .......... .......... .......... 60% 157M 1s +2024-04-29T04:26:47Z #15 2.398 77800K .......... .......... .......... .......... .......... 60% 173M 1s +2024-04-29T04:26:47Z #15 2.398 77850K .......... .......... .......... .......... .......... 60% 6.40M 1s +2024-04-29T04:26:47Z #15 2.405 77900K .......... .......... .......... .......... .......... 60% 128M 1s +2024-04-29T04:26:47Z #15 2.406 77950K .......... .......... .......... .......... .......... 61% 114M 1s +2024-04-29T04:26:47Z #15 2.406 78000K .......... .......... .......... .......... .......... 61% 131M 1s +2024-04-29T04:26:47Z #15 2.406 78050K .......... .......... .......... .......... .......... 61% 110M 1s +2024-04-29T04:26:47Z #15 2.407 78100K .......... .......... .......... .......... .......... 61% 132M 1s +2024-04-29T04:26:47Z #15 2.407 78150K .......... .......... .......... .......... .......... 61% 122M 1s +2024-04-29T04:26:47Z #15 2.408 78200K .......... .......... .......... .......... .......... 61% 119M 1s +2024-04-29T04:26:47Z #15 2.409 78250K .......... .......... .......... .......... .......... 61% 133M 1s +2024-04-29T04:26:47Z #15 2.409 78300K .......... .......... .......... .......... .......... 61% 161M 1s +2024-04-29T04:26:47Z #15 2.409 78350K .......... .......... .......... .......... .......... 61% 107M 1s +2024-04-29T04:26:47Z #15 2.409 78400K .......... .......... .......... .......... .......... 61% 125M 1s +2024-04-29T04:26:47Z #15 2.409 78450K .......... .......... .......... .......... .......... 61% 125M 1s +2024-04-29T04:26:47Z #15 2.410 78500K .......... .......... .......... .......... .......... 61% 109M 1s +2024-04-29T04:26:47Z #15 2.410 78550K .......... .......... .......... .......... .......... 61% 124M 1s +2024-04-29T04:26:47Z #15 2.411 78600K .......... .......... .......... .......... .......... 61% 126M 1s +2024-04-29T04:26:47Z #15 2.411 78650K .......... .......... .......... .......... .......... 61% 110M 1s +2024-04-29T04:26:47Z #15 2.411 78700K .......... .......... .......... .......... .......... 61% 96.8M 1s +2024-04-29T04:26:47Z #15 2.412 78750K .......... .......... .......... .......... .......... 61% 115M 1s +2024-04-29T04:26:47Z #15 2.414 78800K .......... .......... .......... .......... .......... 61% 11.0M 1s +2024-04-29T04:26:47Z #15 2.417 78850K .......... .......... .......... .......... .......... 61% 131M 1s +2024-04-29T04:26:47Z #15 2.417 78900K .......... .......... .......... .......... .......... 61% 109M 1s +2024-04-29T04:26:47Z #15 2.417 78950K .......... .......... .......... .......... .......... 61% 125M 1s +2024-04-29T04:26:47Z #15 2.418 79000K .......... .......... .......... .......... .......... 61% 118M 1s +2024-04-29T04:26:47Z #15 2.418 79050K .......... .......... .......... .......... .......... 61% 119M 1s +2024-04-29T04:26:47Z #15 2.419 79100K .......... .......... .......... .......... .......... 61% 116M 1s +2024-04-29T04:26:47Z #15 2.419 79150K .......... .......... .......... .......... .......... 61% 129M 1s +2024-04-29T04:26:47Z #15 2.420 79200K .......... .......... .......... .......... .......... 62% 114M 1s +2024-04-29T04:26:47Z #15 2.420 79250K .......... .......... .......... .......... .......... 62% 133M 1s +2024-04-29T04:26:47Z #15 2.420 79300K .......... .......... .......... .......... .......... 62% 103M 1s +2024-04-29T04:26:47Z #15 2.422 79350K .......... .......... .......... .......... .......... 62% 162M 1s +2024-04-29T04:26:47Z #15 2.422 79400K .......... .......... .......... .......... .......... 62% 121M 1s +2024-04-29T04:26:47Z #15 2.422 79450K .......... .......... .......... .......... .......... 62% 129M 1s +2024-04-29T04:26:47Z #15 2.422 79500K .......... .......... .......... .......... .......... 62% 128M 1s +2024-04-29T04:26:47Z #15 2.423 79550K .......... .......... .......... .......... .......... 62% 121M 1s +2024-04-29T04:26:47Z #15 2.423 79600K .......... .......... .......... .......... .......... 62% 105M 1s +2024-04-29T04:26:47Z #15 2.423 79650K .......... .......... .......... .......... .......... 62% 117M 1s +2024-04-29T04:26:47Z #15 2.424 79700K .......... .......... .......... .......... .......... 62% 138M 1s +2024-04-29T04:26:47Z #15 2.426 79750K .......... .......... .......... .......... .......... 62% 122M 1s +2024-04-29T04:26:47Z #15 2.426 79800K .......... .......... .......... .......... .......... 62% 10.8M 1s +2024-04-29T04:26:47Z #15 2.429 79850K .......... .......... .......... .......... .......... 62% 116M 1s +2024-04-29T04:26:47Z #15 2.429 79900K .......... .......... .......... .......... .......... 62% 63.3M 1s +2024-04-29T04:26:47Z #15 2.430 79950K .......... .......... .......... .......... .......... 62% 44.8M 1s +2024-04-29T04:26:47Z #15 2.432 80000K .......... .......... .......... .......... .......... 62% 50.0M 1s +2024-04-29T04:26:47Z #15 2.437 80050K .......... .......... .......... .......... .......... 62% 115M 1s +2024-04-29T04:26:47Z #15 2.437 80100K .......... .......... .......... .......... .......... 62% 132M 1s +2024-04-29T04:26:47Z #15 2.437 80150K .......... .......... .......... .......... .......... 62% 133M 1s +2024-04-29T04:26:47Z #15 2.437 80200K .......... .......... .......... .......... .......... 62% 133M 1s +2024-04-29T04:26:47Z #15 2.437 80250K .......... .......... .......... .......... .......... 62% 116M 1s +2024-04-29T04:26:47Z #15 2.437 80300K .......... .......... .......... .......... .......... 62% 136M 1s +2024-04-29T04:26:47Z #15 2.437 80350K .......... .......... .......... .......... .......... 62% 94.6M 1s +2024-04-29T04:26:47Z #15 2.437 80400K .......... .......... .......... .......... .......... 62% 129M 1s +2024-04-29T04:26:47Z #15 2.437 80450K .......... .......... .......... .......... .......... 62% 112M 1s +2024-04-29T04:26:47Z #15 2.437 80500K .......... .......... .......... .......... .......... 63% 130M 1s +2024-04-29T04:26:47Z #15 2.437 80550K .......... .......... .......... .......... .......... 63% 134M 1s +2024-04-29T04:26:47Z #15 2.445 80600K .......... .......... .......... .......... .......... 63% 5.34M 1s +2024-04-29T04:26:47Z #15 2.446 80650K .......... .......... .......... .......... .......... 63% 53.0M 1s +2024-04-29T04:26:47Z #15 2.447 80700K .......... .......... .......... .......... .......... 63% 85.0M 1s +2024-04-29T04:26:47Z #15 2.457 80750K .......... .......... .......... .......... .......... 63% 182M 1s +2024-04-29T04:26:47Z #15 2.457 80800K .......... .......... .......... .......... .......... 63% 168M 1s +2024-04-29T04:26:47Z #15 2.457 80850K .......... .......... .......... .......... .......... 63% 131M 1s +2024-04-29T04:26:47Z #15 2.457 80900K .......... .......... .......... .......... .......... 63% 121M 1s +2024-04-29T04:26:47Z #15 2.457 80950K .......... .......... .......... .......... .......... 63% 111M 1s +2024-04-29T04:26:47Z #15 2.457 81000K .......... .......... .......... .......... .......... 63% 106M 1s +2024-04-29T04:26:47Z #15 2.457 81050K .......... .......... .......... .......... .......... 63% 127M 1s +2024-04-29T04:26:47Z #15 2.457 81100K .......... .......... .......... .......... .......... 63% 136M 1s +2024-04-29T04:26:47Z #15 2.457 81150K .......... .......... .......... .......... .......... 63% 121M 1s +2024-04-29T04:26:47Z #15 2.457 81200K .......... .......... .......... .......... .......... 63% 96.4M 1s +2024-04-29T04:26:47Z #15 2.457 81250K .......... .......... .......... .......... .......... 63% 130M 1s +2024-04-29T04:26:47Z #15 2.457 81300K .......... .......... .......... .......... .......... 63% 139M 1s +2024-04-29T04:26:47Z #15 2.457 81350K .......... .......... .......... .......... .......... 63% 124M 1s +2024-04-29T04:26:47Z #15 2.457 81400K .......... .......... .......... .......... .......... 63% 106M 1s +2024-04-29T04:26:47Z #15 2.457 81450K .......... .......... .......... .......... .......... 63% 144M 1s +2024-04-29T04:26:47Z #15 2.457 81500K .......... .......... .......... .......... .......... 63% 163M 1s +2024-04-29T04:26:47Z #15 2.457 81550K .......... .......... .......... .......... .......... 63% 177M 1s +2024-04-29T04:26:47Z #15 2.457 81600K .......... .......... .......... .......... .......... 63% 133M 1s +2024-04-29T04:26:47Z #15 2.457 81650K .......... .......... .......... .......... .......... 63% 139M 1s +2024-04-29T04:26:47Z #15 2.457 81700K .......... .......... .......... .......... .......... 63% 139M 1s +2024-04-29T04:26:47Z #15 2.457 81750K .......... .......... .......... .......... .......... 64% 152M 1s +2024-04-29T04:26:47Z #15 2.457 81800K .......... .......... .......... .......... .......... 64% 149M 1s +2024-04-29T04:26:47Z #15 2.457 81850K .......... .......... .......... .......... .......... 64% 173M 1s +2024-04-29T04:26:47Z #15 2.457 81900K .......... .......... .......... .......... .......... 64% 145M 1s +2024-04-29T04:26:47Z #15 2.457 81950K .......... .......... .......... .......... .......... 64% 165M 1s +2024-04-29T04:26:47Z #15 2.457 82000K .......... .......... .......... .......... .......... 64% 105M 1s +2024-04-29T04:26:47Z #15 2.457 82050K .......... .......... .......... .......... .......... 64% 135M 1s +2024-04-29T04:26:47Z #15 2.457 82100K .......... .......... .......... .......... .......... 64% 119M 1s +2024-04-29T04:26:47Z #15 2.458 82150K .......... .......... .......... .......... .......... 64% 141M 1s +2024-04-29T04:26:47Z #15 2.458 82200K .......... .......... .......... .......... .......... 64% 121M 1s +2024-04-29T04:26:47Z #15 2.458 82250K .......... .......... .......... .......... .......... 64% 127M 1s +2024-04-29T04:26:47Z #15 2.459 82300K .......... .......... .......... .......... .......... 64% 121M 1s +2024-04-29T04:26:47Z #15 2.459 82350K .......... .......... .......... .......... .......... 64% 116M 1s +2024-04-29T04:26:47Z #15 2.459 82400K .......... .......... .......... .......... .......... 64% 132M 1s +2024-04-29T04:26:47Z #15 2.460 82450K .......... .......... .......... .......... .......... 64% 120M 1s +2024-04-29T04:26:47Z #15 2.460 82500K .......... .......... .......... .......... .......... 64% 114M 1s +2024-04-29T04:26:47Z #15 2.461 82550K .......... .......... .......... .......... .......... 64% 101M 1s +2024-04-29T04:26:47Z #15 2.462 82600K .......... .......... .......... .......... .......... 64% 129M 1s +2024-04-29T04:26:47Z #15 2.462 82650K .......... .......... .......... .......... .......... 64% 155M 1s +2024-04-29T04:26:47Z #15 2.462 82700K .......... .......... .......... .......... .......... 64% 124M 1s +2024-04-29T04:26:47Z #15 2.462 82750K .......... .......... .......... .......... .......... 64% 96.2M 1s +2024-04-29T04:26:47Z #15 2.463 82800K .......... .......... .......... .......... .......... 64% 123M 1s +2024-04-29T04:26:47Z #15 2.463 82850K .......... .......... .......... .......... .......... 64% 126M 1s +2024-04-29T04:26:47Z #15 2.464 82900K .......... .......... .......... .......... .......... 64% 139M 1s +2024-04-29T04:26:47Z #15 2.464 82950K .......... .......... .......... .......... .......... 64% 118M 1s +2024-04-29T04:26:47Z #15 2.470 83000K .......... .......... .......... .......... .......... 64% 107M 1s +2024-04-29T04:26:47Z #15 2.470 83050K .......... .......... .......... .......... .......... 65% 92.7M 1s +2024-04-29T04:26:47Z #15 2.470 83100K .......... .......... .......... .......... .......... 65% 123M 1s +2024-04-29T04:26:47Z #15 2.470 83150K .......... .......... .......... .......... .......... 65% 120M 1s +2024-04-29T04:26:47Z #15 2.470 83200K .......... .......... .......... .......... .......... 65% 164M 1s +2024-04-29T04:26:47Z #15 2.470 83250K .......... .......... .......... .......... .......... 65% 155M 1s +2024-04-29T04:26:47Z #15 2.470 83300K .......... .......... .......... .......... .......... 65% 151M 1s +2024-04-29T04:26:47Z #15 2.470 83350K .......... .......... .......... .......... .......... 65% 140M 1s +2024-04-29T04:26:47Z #15 2.470 83400K .......... .......... .......... .......... .......... 65% 169M 1s +2024-04-29T04:26:47Z #15 2.470 83450K .......... .......... .......... .......... .......... 65% 144M 1s +2024-04-29T04:26:47Z #15 2.470 83500K .......... .......... .......... .......... .......... 65% 155M 1s +2024-04-29T04:26:47Z #15 2.470 83550K .......... .......... .......... .......... .......... 65% 133M 1s +2024-04-29T04:26:47Z #15 2.470 83600K .......... .......... .......... .......... .......... 65% 117M 1s +2024-04-29T04:26:47Z #15 2.470 83650K .......... .......... .......... .......... .......... 65% 123M 1s +2024-04-29T04:26:47Z #15 2.470 83700K .......... .......... .......... .......... .......... 65% 135M 1s +2024-04-29T04:26:47Z #15 2.470 83750K .......... .......... .......... .......... .......... 65% 111M 1s +2024-04-29T04:26:47Z #15 2.470 83800K .......... .......... .......... .......... .......... 65% 134M 1s +2024-04-29T04:26:47Z #15 2.471 83850K .......... .......... .......... .......... .......... 65% 134M 1s +2024-04-29T04:26:47Z #15 2.471 83900K .......... .......... .......... .......... .......... 65% 118M 1s +2024-04-29T04:26:47Z #15 2.471 83950K .......... .......... .......... .......... .......... 65% 118M 1s +2024-04-29T04:26:47Z #15 2.472 84000K .......... .......... .......... .......... .......... 65% 137M 1s +2024-04-29T04:26:47Z #15 2.472 84050K .......... .......... .......... .......... .......... 65% 120M 1s +2024-04-29T04:26:47Z #15 2.473 84100K .......... .......... .......... .......... .......... 65% 102M 1s +2024-04-29T04:26:47Z #15 2.477 84150K .......... .......... .......... .......... .......... 65% 92.8M 1s +2024-04-29T04:26:47Z #15 2.477 84200K .......... .......... .......... .......... .......... 65% 120M 1s +2024-04-29T04:26:47Z #15 2.477 84250K .......... .......... .......... .......... .......... 65% 147M 1s +2024-04-29T04:26:47Z #15 2.477 84300K .......... .......... .......... .......... .......... 66% 146M 1s +2024-04-29T04:26:47Z #15 2.477 84350K .......... .......... .......... .......... .......... 66% 159M 1s +2024-04-29T04:26:47Z #15 2.477 84400K .......... .......... .......... .......... .......... 66% 167M 1s +2024-04-29T04:26:47Z #15 2.477 84450K .......... .......... .......... .......... .......... 66% 138M 1s +2024-04-29T04:26:47Z #15 2.477 84500K .......... .......... .......... .......... .......... 66% 163M 1s +2024-04-29T04:26:47Z #15 2.477 84550K .......... .......... .......... .......... .......... 66% 150M 1s +2024-04-29T04:26:47Z #15 2.477 84600K .......... .......... .......... .......... .......... 66% 172M 1s +2024-04-29T04:26:47Z #15 2.477 84650K .......... .......... .......... .......... .......... 66% 95.2M 1s +2024-04-29T04:26:47Z #15 2.478 84700K .......... .......... .......... .......... .......... 66% 134M 1s +2024-04-29T04:26:47Z #15 2.478 84750K .......... .......... .......... .......... .......... 66% 132M 1s +2024-04-29T04:26:47Z #15 2.478 84800K .......... .......... .......... .......... .......... 66% 120M 1s +2024-04-29T04:26:47Z #15 2.478 84850K .......... .......... .......... .......... .......... 66% 125M 1s +2024-04-29T04:26:47Z #15 2.478 84900K .......... .......... .......... .......... .......... 66% 122M 1s +2024-04-29T04:26:47Z #15 2.479 84950K .......... .......... .......... .......... .......... 66% 122M 1s +2024-04-29T04:26:47Z #15 2.479 85000K .......... .......... .......... .......... .......... 66% 124M 1s +2024-04-29T04:26:47Z #15 2.480 85050K .......... .......... .......... .......... .......... 66% 126M 1s +2024-04-29T04:26:47Z #15 2.480 85100K .......... .......... .......... .......... .......... 66% 90.0M 1s +2024-04-29T04:26:47Z #15 2.481 85150K .......... .......... .......... .......... .......... 66% 130M 1s +2024-04-29T04:26:47Z #15 2.481 85200K .......... .......... .......... .......... .......... 66% 126M 1s +2024-04-29T04:26:47Z #15 2.485 85250K .......... .......... .......... .......... .......... 66% 94.5M 1s +2024-04-29T04:26:47Z #15 2.486 85300K .......... .......... .......... .......... .......... 66% 155M 1s +2024-04-29T04:26:47Z #15 2.486 85350K .......... .......... .......... .......... .......... 66% 135M 1s +2024-04-29T04:26:47Z #15 2.486 85400K .......... .......... .......... .......... .......... 66% 181M 1s +2024-04-29T04:26:47Z #15 2.486 85450K .......... .......... .......... .......... .......... 66% 137M 1s +2024-04-29T04:26:47Z #15 2.486 85500K .......... .......... .......... .......... .......... 66% 181M 1s +2024-04-29T04:26:47Z #15 2.486 85550K .......... .......... .......... .......... .......... 66% 138M 1s +2024-04-29T04:26:47Z #15 2.486 85600K .......... .......... .......... .......... .......... 67% 142M 1s +2024-04-29T04:26:47Z #15 2.486 85650K .......... .......... .......... .......... .......... 67% 163M 1s +2024-04-29T04:26:47Z #15 2.486 85700K .......... .......... .......... .......... .......... 67% 112M 1s +2024-04-29T04:26:47Z #15 2.486 85750K .......... .......... .......... .......... .......... 67% 115M 1s +2024-04-29T04:26:47Z #15 2.486 85800K .......... .......... .......... .......... .......... 67% 147M 1s +2024-04-29T04:26:47Z #15 2.486 85850K .......... .......... .......... .......... .......... 67% 138M 1s +2024-04-29T04:26:47Z #15 2.486 85900K .......... .......... .......... .......... .......... 67% 122M 1s +2024-04-29T04:26:47Z #15 2.487 85950K .......... .......... .......... .......... .......... 67% 118M 1s +2024-04-29T04:26:47Z #15 2.487 86000K .......... .......... .......... .......... .......... 67% 129M 1s +2024-04-29T04:26:47Z #15 2.487 86050K .......... .......... .......... .......... .......... 67% 127M 1s +2024-04-29T04:26:47Z #15 2.488 86100K .......... .......... .......... .......... .......... 67% 131M 1s +2024-04-29T04:26:47Z #15 2.488 86150K .......... .......... .......... .......... .......... 67% 122M 1s +2024-04-29T04:26:47Z #15 2.489 86200K .......... .......... .......... .......... .......... 67% 124M 1s +2024-04-29T04:26:47Z #15 2.489 86250K .......... .......... .......... .......... .......... 67% 110M 1s +2024-04-29T04:26:47Z #15 2.489 86300K .......... .......... .......... .......... .......... 67% 117M 1s +2024-04-29T04:26:47Z #15 2.490 86350K .......... .......... .......... .......... .......... 67% 131M 1s +2024-04-29T04:26:47Z #15 2.490 86400K .......... .......... .......... .......... .......... 67% 145M 1s +2024-04-29T04:26:47Z #15 2.490 86450K .......... .......... .......... .......... .......... 67% 106M 1s +2024-04-29T04:26:47Z #15 2.491 86500K .......... .......... .......... .......... .......... 67% 124M 1s +2024-04-29T04:26:47Z #15 2.492 86550K .......... .......... .......... .......... .......... 67% 118M 1s +2024-04-29T04:26:47Z #15 2.492 86600K .......... .......... .......... .......... .......... 67% 149M 1s +2024-04-29T04:26:47Z #15 2.492 86650K .......... .......... .......... .......... .......... 67% 109M 1s +2024-04-29T04:26:47Z #15 2.493 86700K .......... .......... .......... .......... .......... 67% 105M 1s +2024-04-29T04:26:47Z #15 2.493 86750K .......... .......... .......... .......... .......... 67% 125M 1s +2024-04-29T04:26:47Z #15 2.493 86800K .......... .......... .......... .......... .......... 67% 124M 1s +2024-04-29T04:26:47Z #15 2.494 86850K .......... .......... .......... .......... .......... 68% 135M 1s +2024-04-29T04:26:47Z #15 2.494 86900K .......... .......... .......... .......... .......... 68% 115M 1s +2024-04-29T04:26:47Z #15 2.495 86950K .......... .......... .......... .......... .......... 68% 135M 1s +2024-04-29T04:26:47Z #15 2.495 87000K .......... .......... .......... .......... .......... 68% 124M 1s +2024-04-29T04:26:47Z #15 2.495 87050K .......... .......... .......... .......... .......... 68% 99.7M 1s +2024-04-29T04:26:47Z #15 2.502 87100K .......... .......... .......... .......... .......... 68% 82.7M 1s +2024-04-29T04:26:47Z #15 2.502 87150K .......... .......... .......... .......... .......... 68% 85.7M 1s +2024-04-29T04:26:47Z #15 2.502 87200K .......... .......... .......... .......... .......... 68% 121M 1s +2024-04-29T04:26:47Z #15 2.502 87250K .......... .......... .......... .......... .......... 68% 180M 1s +2024-04-29T04:26:47Z #15 2.502 87300K .......... .......... .......... .......... .......... 68% 160M 1s +2024-04-29T04:26:47Z #15 2.502 87350K .......... .......... .......... .......... .......... 68% 163M 1s +2024-04-29T04:26:47Z #15 2.502 87400K .......... .......... .......... .......... .......... 68% 132M 1s +2024-04-29T04:26:47Z #15 2.502 87450K .......... .......... .......... .......... .......... 68% 159M 1s +2024-04-29T04:26:47Z #15 2.502 87500K .......... .......... .......... .......... .......... 68% 146M 1s +2024-04-29T04:26:47Z #15 2.502 87550K .......... .......... .......... .......... .......... 68% 162M 1s +2024-04-29T04:26:47Z #15 2.502 87600K .......... .......... .......... .......... .......... 68% 178M 1s +2024-04-29T04:26:47Z #15 2.502 87650K .......... .......... .......... .......... .......... 68% 132M 1s +2024-04-29T04:26:47Z #15 2.502 87700K .......... .......... .......... .......... .......... 68% 156M 1s +2024-04-29T04:26:47Z #15 2.502 87750K .......... .......... .......... .......... .......... 68% 118M 1s +2024-04-29T04:26:47Z #15 2.502 87800K .......... .......... .......... .......... .......... 68% 144M 1s +2024-04-29T04:26:47Z #15 2.502 87850K .......... .......... .......... .......... .......... 68% 110M 1s +2024-04-29T04:26:47Z #15 2.502 87900K .......... .......... .......... .......... .......... 68% 127M 1s +2024-04-29T04:26:47Z #15 2.503 87950K .......... .......... .......... .......... .......... 68% 126M 1s +2024-04-29T04:26:47Z #15 2.503 88000K .......... .......... .......... .......... .......... 68% 120M 1s +2024-04-29T04:26:47Z #15 2.503 88050K .......... .......... .......... .......... .......... 68% 122M 1s +2024-04-29T04:26:47Z #15 2.503 88100K .......... .......... .......... .......... .......... 68% 123M 1s +2024-04-29T04:26:47Z #15 2.504 88150K .......... .......... .......... .......... .......... 69% 120M 1s +2024-04-29T04:26:47Z #15 2.504 88200K .......... .......... .......... .......... .......... 69% 135M 1s +2024-04-29T04:26:47Z #15 2.505 88250K .......... .......... .......... .......... .......... 69% 113M 1s +2024-04-29T04:26:47Z #15 2.505 88300K .......... .......... .......... .......... .......... 69% 95.3M 1s +2024-04-29T04:26:47Z #15 2.510 88350K .......... .......... .......... .......... .......... 69% 140M 1s +2024-04-29T04:26:47Z #15 2.510 88400K .......... .......... .......... .......... .......... 69% 148M 1s +2024-04-29T04:26:47Z #15 2.510 88450K .......... .......... .......... .......... .......... 69% 91.4M 1s +2024-04-29T04:26:47Z #15 2.510 88500K .......... .......... .......... .......... .......... 69% 106M 1s +2024-04-29T04:26:47Z #15 2.510 88550K .......... .......... .......... .......... .......... 69% 168M 1s +2024-04-29T04:26:47Z #15 2.510 88600K .......... .......... .......... .......... .......... 69% 162M 1s +2024-04-29T04:26:47Z #15 2.510 88650K .......... .......... .......... .......... .......... 69% 162M 1s +2024-04-29T04:26:47Z #15 2.510 88700K .......... .......... .......... .......... .......... 69% 126M 1s +2024-04-29T04:26:47Z #15 2.510 88750K .......... .......... .......... .......... .......... 69% 157M 1s +2024-04-29T04:26:47Z #15 2.510 88800K .......... .......... .......... .......... .......... 69% 111M 1s +2024-04-29T04:26:47Z #15 2.510 88850K .......... .......... .......... .......... .......... 69% 144M 1s +2024-04-29T04:26:47Z #15 2.510 88900K .......... .......... .......... .......... .......... 69% 107M 1s +2024-04-29T04:26:47Z #15 2.510 88950K .......... .......... .......... .......... .......... 69% 112M 1s +2024-04-29T04:26:47Z #15 2.511 89000K .......... .......... .......... .......... .......... 69% 134M 0s +2024-04-29T04:26:47Z #15 2.511 89050K .......... .......... .......... .......... .......... 69% 130M 0s +2024-04-29T04:26:47Z #15 2.512 89100K .......... .......... .......... .......... .......... 69% 140M 0s +2024-04-29T04:26:47Z #15 2.512 89150K .......... .......... .......... .......... .......... 69% 86.2M 0s +2024-04-29T04:26:47Z #15 2.513 89200K .......... .......... .......... .......... .......... 69% 80.1M 0s +2024-04-29T04:26:47Z #15 2.513 89250K .......... .......... .......... .......... .......... 69% 97.2M 0s +2024-04-29T04:26:47Z #15 2.517 89300K .......... .......... .......... .......... .......... 69% 105M 0s +2024-04-29T04:26:47Z #15 2.517 89350K .......... .......... .......... .......... .......... 69% 121M 0s +2024-04-29T04:26:47Z #15 2.518 89400K .......... .......... .......... .......... .......... 69% 124M 0s +2024-04-29T04:26:47Z #15 2.518 89450K .......... .......... .......... .......... .......... 70% 173M 0s +2024-04-29T04:26:47Z #15 2.518 89500K .......... .......... .......... .......... .......... 70% 143M 0s +2024-04-29T04:26:47Z #15 2.518 89550K .......... .......... .......... .......... .......... 70% 151M 0s +2024-04-29T04:26:47Z #15 2.518 89600K .......... .......... .......... .......... .......... 70% 146M 0s +2024-04-29T04:26:47Z #15 2.518 89650K .......... .......... .......... .......... .......... 70% 154M 0s +2024-04-29T04:26:47Z #15 2.518 89700K .......... .......... .......... .......... .......... 70% 166M 0s +2024-04-29T04:26:47Z #15 2.518 89750K .......... .......... .......... .......... .......... 70% 149M 0s +2024-04-29T04:26:47Z #15 2.518 89800K .......... .......... .......... .......... .......... 70% 126M 0s +2024-04-29T04:26:47Z #15 2.518 89850K .......... .......... .......... .......... .......... 70% 102M 0s +2024-04-29T04:26:47Z #15 2.518 89900K .......... .......... .......... .......... .......... 70% 132M 0s +2024-04-29T04:26:47Z #15 2.518 89950K .......... .......... .......... .......... .......... 70% 128M 0s +2024-04-29T04:26:47Z #15 2.519 90000K .......... .......... .......... .......... .......... 70% 120M 0s +2024-04-29T04:26:47Z #15 2.519 90050K .......... .......... .......... .......... .......... 70% 128M 0s +2024-04-29T04:26:47Z #15 2.519 90100K .......... .......... .......... .......... .......... 70% 122M 0s +2024-04-29T04:26:47Z #15 2.519 90150K .......... .......... .......... .......... .......... 70% 105M 0s +2024-04-29T04:26:47Z #15 2.520 90200K .......... .......... .......... .......... .......... 70% 132M 0s +2024-04-29T04:26:47Z #15 2.520 90250K .......... .......... .......... .......... .......... 70% 163M 0s +2024-04-29T04:26:47Z #15 2.520 90300K .......... .......... .......... .......... .......... 70% 107M 0s +2024-04-29T04:26:47Z #15 2.521 90350K .......... .......... .......... .......... .......... 70% 101M 0s +2024-04-29T04:26:47Z #15 2.521 90400K .......... .......... .......... .......... .......... 70% 125M 0s +2024-04-29T04:26:47Z #15 2.522 90450K .......... .......... .......... .......... .......... 70% 142M 0s +2024-04-29T04:26:47Z #15 2.525 90500K .......... .......... .......... .......... .......... 70% 121M 0s +2024-04-29T04:26:47Z #15 2.525 90550K .......... .......... .......... .......... .......... 70% 86.8M 0s +2024-04-29T04:26:47Z #15 2.525 90600K .......... .......... .......... .......... .......... 70% 124M 0s +2024-04-29T04:26:47Z #15 2.525 90650K .......... .......... .......... .......... .......... 70% 106M 0s +2024-04-29T04:26:47Z #15 2.525 90700K .......... .......... .......... .......... .......... 71% 167M 0s +2024-04-29T04:26:47Z #15 2.525 90750K .......... .......... .......... .......... .......... 71% 113M 0s +2024-04-29T04:26:47Z #15 2.525 90800K .......... .......... .......... .......... .......... 71% 124M 0s +2024-04-29T04:26:47Z #15 2.525 90850K .......... .......... .......... .......... .......... 71% 105M 0s +2024-04-29T04:26:47Z #15 2.525 90900K .......... .......... .......... .......... .......... 71% 119M 0s +2024-04-29T04:26:47Z #15 2.526 90950K .......... .......... .......... .......... .......... 71% 126M 0s +2024-04-29T04:26:47Z #15 2.527 91000K .......... .......... .......... .......... .......... 71% 123M 0s +2024-04-29T04:26:47Z #15 2.527 91050K .......... .......... .......... .......... .......... 71% 91.4M 0s +2024-04-29T04:26:47Z #15 2.527 91100K .......... .......... .......... .......... .......... 71% 112M 0s +2024-04-29T04:26:47Z #15 2.528 91150K .......... .......... .......... .......... .......... 71% 120M 0s +2024-04-29T04:26:47Z #15 2.529 91200K .......... .......... .......... .......... .......... 71% 129M 0s +2024-04-29T04:26:47Z #15 2.530 91250K .......... .......... .......... .......... .......... 71% 10.8M 0s +2024-04-29T04:26:47Z #15 2.533 91300K .......... .......... .......... .......... .......... 71% 126M 0s +2024-04-29T04:26:47Z #15 2.533 91350K .......... .......... .......... .......... .......... 71% 107M 0s +2024-04-29T04:26:47Z #15 2.535 91400K .......... .......... .......... .......... .......... 71% 151M 0s +2024-04-29T04:26:47Z #15 2.535 91450K .......... .......... .......... .......... .......... 71% 120M 0s +2024-04-29T04:26:47Z #15 2.535 91500K .......... .......... .......... .......... .......... 71% 136M 0s +2024-04-29T04:26:47Z #15 2.535 91550K .......... .......... .......... .......... .......... 71% 102M 0s +2024-04-29T04:26:47Z #15 2.535 91600K .......... .......... .......... .......... .......... 71% 121M 0s +2024-04-29T04:26:47Z #15 2.536 91650K .......... .......... .......... .......... .......... 71% 137M 0s +2024-04-29T04:26:47Z #15 2.536 91700K .......... .......... .......... .......... .......... 71% 10.9M 0s +2024-04-29T04:26:47Z #15 2.541 91750K .......... .......... .......... .......... .......... 71% 118M 0s +2024-04-29T04:26:47Z #15 2.541 91800K .......... .......... .......... .......... .......... 71% 120M 0s +2024-04-29T04:26:47Z #15 2.541 91850K .......... .......... .......... .......... .......... 71% 115M 0s +2024-04-29T04:26:47Z #15 2.542 91900K .......... .......... .......... .......... .......... 71% 127M 0s +2024-04-29T04:26:47Z #15 2.542 91950K .......... .......... .......... .......... .......... 71% 136M 0s +2024-04-29T04:26:47Z #15 2.543 92000K .......... .......... .......... .......... .......... 72% 130M 0s +2024-04-29T04:26:47Z #15 2.544 92050K .......... .......... .......... .......... .......... 72% 106M 0s +2024-04-29T04:26:47Z #15 2.544 92100K .......... .......... .......... .......... .......... 72% 169M 0s +2024-04-29T04:26:47Z #15 2.544 92150K .......... .......... .......... .......... .......... 72% 133M 0s +2024-04-29T04:26:47Z #15 2.544 92200K .......... .......... .......... .......... .......... 72% 130M 0s +2024-04-29T04:26:47Z #15 2.544 92250K .......... .......... .......... .......... .......... 72% 21.0M 0s +2024-04-29T04:26:47Z #15 2.547 92300K .......... .......... .......... .......... .......... 72% 113M 0s +2024-04-29T04:26:47Z #15 2.547 92350K .......... .......... .......... .......... .......... 72% 111M 0s +2024-04-29T04:26:47Z #15 2.548 92400K .......... .......... .......... .......... .......... 72% 123M 0s +2024-04-29T04:26:47Z #15 2.548 92450K .......... .......... .......... .......... .......... 72% 138M 0s +2024-04-29T04:26:47Z #15 2.548 92500K .......... .......... .......... .......... .......... 72% 108M 0s +2024-04-29T04:26:47Z #15 2.550 92550K .......... .......... .......... .......... .......... 72% 185M 0s +2024-04-29T04:26:47Z #15 2.550 92600K .......... .......... .......... .......... .......... 72% 155M 0s +2024-04-29T04:26:47Z #15 2.550 92650K .......... .......... .......... .......... .......... 72% 125M 0s +2024-04-29T04:26:47Z #15 2.550 92700K .......... .......... .......... .......... .......... 72% 137M 0s +2024-04-29T04:26:47Z #15 2.550 92750K .......... .......... .......... .......... .......... 72% 145M 0s +2024-04-29T04:26:47Z #15 2.551 92800K .......... .......... .......... .......... .......... 72% 107M 0s +2024-04-29T04:26:47Z #15 2.551 92850K .......... .......... .......... .......... .......... 72% 145M 0s +2024-04-29T04:26:47Z #15 2.551 92900K .......... .......... .......... .......... .......... 72% 121M 0s +2024-04-29T04:26:47Z #15 2.552 92950K .......... .......... .......... .......... .......... 72% 133M 0s +2024-04-29T04:26:47Z #15 2.553 93000K .......... .......... .......... .......... .......... 72% 95.3M 0s +2024-04-29T04:26:47Z #15 2.553 93050K .......... .......... .......... .......... .......... 72% 158M 0s +2024-04-29T04:26:47Z #15 2.553 93100K .......... .......... .......... .......... .......... 72% 143M 0s +2024-04-29T04:26:47Z #15 2.553 93150K .......... .......... .......... .......... .......... 72% 118M 0s +2024-04-29T04:26:47Z #15 2.554 93200K .......... .......... .......... .......... .......... 72% 113M 0s +2024-04-29T04:26:47Z #15 2.554 93250K .......... .......... .......... .......... .......... 73% 129M 0s +2024-04-29T04:26:47Z #15 2.555 93300K .......... .......... .......... .......... .......... 73% 116M 0s +2024-04-29T04:26:47Z #15 2.555 93350K .......... .......... .......... .......... .......... 73% 130M 0s +2024-04-29T04:26:47Z #15 2.555 93400K .......... .......... .......... .......... .......... 73% 107M 0s +2024-04-29T04:26:47Z #15 2.556 93450K .......... .......... .......... .......... .......... 73% 122M 0s +2024-04-29T04:26:47Z #15 2.556 93500K .......... .......... .......... .......... .......... 73% 132M 0s +2024-04-29T04:26:47Z #15 2.558 93550K .......... .......... .......... .......... .......... 73% 5.77M 0s +2024-04-29T04:26:47Z #15 2.565 93600K .......... .......... .......... .......... .......... 73% 112M 0s +2024-04-29T04:26:47Z #15 2.565 93650K .......... .......... .......... .......... .......... 73% 121M 0s +2024-04-29T04:26:47Z #15 2.566 93700K .......... .......... .......... .......... .......... 73% 132M 0s +2024-04-29T04:26:47Z #15 2.566 93750K .......... .......... .......... .......... .......... 73% 128M 0s +2024-04-29T04:26:47Z #15 2.567 93800K .......... .......... .......... .......... .......... 73% 122M 0s +2024-04-29T04:26:47Z #15 2.568 93850K .......... .......... .......... .......... .......... 73% 127M 0s +2024-04-29T04:26:47Z #15 2.568 93900K .......... .......... .......... .......... .......... 73% 113M 0s +2024-04-29T04:26:47Z #15 2.568 93950K .......... .......... .......... .......... .......... 73% 132M 0s +2024-04-29T04:26:47Z #15 2.570 94000K .......... .......... .......... .......... .......... 73% 97.1M 0s +2024-04-29T04:26:47Z #15 2.570 94050K .......... .......... .......... .......... .......... 73% 123M 0s +2024-04-29T04:26:47Z #15 2.570 94100K .......... .......... .......... .......... .......... 73% 127M 0s +2024-04-29T04:26:47Z #15 2.570 94150K .......... .......... .......... .......... .......... 73% 165M 0s +2024-04-29T04:26:47Z #15 2.570 94200K .......... .......... .......... .......... .......... 73% 108M 0s +2024-04-29T04:26:47Z #15 2.570 94250K .......... .......... .......... .......... .......... 73% 125M 0s +2024-04-29T04:26:47Z #15 2.571 94300K .......... .......... .......... .......... .......... 73% 131M 0s +2024-04-29T04:26:47Z #15 2.571 94350K .......... .......... .......... .......... .......... 73% 110M 0s +2024-04-29T04:26:47Z #15 2.571 94400K .......... .......... .......... .......... .......... 73% 135M 0s +2024-04-29T04:26:47Z #15 2.572 94450K .......... .......... .......... .......... .......... 73% 123M 0s +2024-04-29T04:26:47Z #15 2.572 94500K .......... .......... .......... .......... .......... 73% 10.8M 0s +2024-04-29T04:26:47Z #15 2.577 94550K .......... .......... .......... .......... .......... 74% 117M 0s +2024-04-29T04:26:47Z #15 2.578 94600K .......... .......... .......... .......... .......... 74% 138M 0s +2024-04-29T04:26:47Z #15 2.578 94650K .......... .......... .......... .......... .......... 74% 134M 0s +2024-04-29T04:26:47Z #15 2.578 94700K .......... .......... .......... .......... .......... 74% 134M 0s +2024-04-29T04:26:47Z #15 2.578 94750K .......... .......... .......... .......... .......... 74% 121M 0s +2024-04-29T04:26:47Z #15 2.579 94800K .......... .......... .......... .......... .......... 74% 152M 0s +2024-04-29T04:26:47Z #15 2.579 94850K .......... .......... .......... .......... .......... 74% 134M 0s +2024-04-29T04:26:47Z #15 2.579 94900K .......... .......... .......... .......... .......... 74% 121M 0s +2024-04-29T04:26:47Z #15 2.580 94950K .......... .......... .......... .......... .......... 74% 166M 0s +2024-04-29T04:26:47Z #15 2.581 95000K .......... .......... .......... .......... .......... 74% 135M 0s +2024-04-29T04:26:47Z #15 2.581 95050K .......... .......... .......... .......... .......... 74% 137M 0s +2024-04-29T04:26:47Z #15 2.581 95100K .......... .......... .......... .......... .......... 74% 108M 0s +2024-04-29T04:26:47Z #15 2.581 95150K .......... .......... .......... .......... .......... 74% 121M 0s +2024-04-29T04:26:47Z #15 2.581 95200K .......... .......... .......... .......... .......... 74% 120M 0s +2024-04-29T04:26:47Z #15 2.583 95250K .......... .......... .......... .......... .......... 74% 157M 0s +2024-04-29T04:26:47Z #15 2.583 95300K .......... .......... .......... .......... .......... 74% 123M 0s +2024-04-29T04:26:47Z #15 2.583 95350K .......... .......... .......... .......... .......... 74% 112M 0s +2024-04-29T04:26:47Z #15 2.583 95400K .......... .......... .......... .......... .......... 74% 128M 0s +2024-04-29T04:26:47Z #15 2.583 95450K .......... .......... .......... .......... .......... 74% 121M 0s +2024-04-29T04:26:47Z #15 2.584 95500K .......... .......... .......... .......... .......... 74% 124M 0s +2024-04-29T04:26:47Z #15 2.584 95550K .......... .......... .......... .......... .......... 74% 5.80M 0s +2024-04-29T04:26:47Z #15 2.593 95600K .......... .......... .......... .......... .......... 74% 119M 0s +2024-04-29T04:26:47Z #15 2.593 95650K .......... .......... .......... .......... .......... 74% 110M 0s +2024-04-29T04:26:47Z #15 2.594 95700K .......... .......... .......... .......... .......... 74% 144M 0s +2024-04-29T04:26:47Z #15 2.594 95750K .......... .......... .......... .......... .......... 74% 122M 0s +2024-04-29T04:26:47Z #15 2.594 95800K .......... .......... .......... .......... .......... 75% 114M 0s +2024-04-29T04:26:47Z #15 2.595 95850K .......... .......... .......... .......... .......... 75% 107M 0s +2024-04-29T04:26:47Z #15 2.596 95900K .......... .......... .......... .......... .......... 75% 130M 0s +2024-04-29T04:26:47Z #15 2.596 95950K .......... .......... .......... .......... .......... 75% 147M 0s +2024-04-29T04:26:47Z #15 2.596 96000K .......... .......... .......... .......... .......... 75% 161M 0s +2024-04-29T04:26:47Z #15 2.596 96050K .......... .......... .......... .......... .......... 75% 95.4M 0s +2024-04-29T04:26:47Z #15 2.597 96100K .......... .......... .......... .......... .......... 75% 139M 0s +2024-04-29T04:26:47Z #15 2.597 96150K .......... .......... .......... .......... .......... 75% 99.7M 0s +2024-04-29T04:26:47Z #15 2.598 96200K .......... .......... .......... .......... .......... 75% 155M 0s +2024-04-29T04:26:47Z #15 2.598 96250K .......... .......... .......... .......... .......... 75% 128M 0s +2024-04-29T04:26:47Z #15 2.598 96300K .......... .......... .......... .......... .......... 75% 140M 0s +2024-04-29T04:26:47Z #15 2.599 96350K .......... .......... .......... .......... .......... 75% 128M 0s +2024-04-29T04:26:47Z #15 2.599 96400K .......... .......... .......... .......... .......... 75% 147M 0s +2024-04-29T04:26:47Z #15 2.600 96450K .......... .......... .......... .......... .......... 75% 142M 0s +2024-04-29T04:26:47Z #15 2.600 96500K .......... .......... .......... .......... .......... 75% 121M 0s +2024-04-29T04:26:47Z #15 2.600 96550K .......... .......... .......... .......... .......... 75% 129M 0s +2024-04-29T04:26:47Z #15 2.600 96600K .......... .......... .......... .......... .......... 75% 67.3M 0s +2024-04-29T04:26:47Z #15 2.601 96650K .......... .......... .......... .......... .......... 75% 146M 0s +2024-04-29T04:26:47Z #15 2.601 96700K .......... .......... .......... .......... .......... 75% 147M 0s +2024-04-29T04:26:47Z #15 2.602 96750K .......... .......... .......... .......... .......... 75% 129M 0s +2024-04-29T04:26:47Z #15 2.602 96800K .......... .......... .......... .......... .......... 75% 151M 0s +2024-04-29T04:26:47Z #15 2.602 96850K .......... .......... .......... .......... .......... 75% 137M 0s +2024-04-29T04:26:47Z #15 2.603 96900K .......... .......... .......... .......... .......... 75% 157M 0s +2024-04-29T04:26:47Z #15 2.604 96950K .......... .......... .......... .......... .......... 75% 142M 0s +2024-04-29T04:26:47Z #15 2.604 97000K .......... .......... .......... .......... .......... 75% 150M 0s +2024-04-29T04:26:47Z #15 2.604 97050K .......... .......... .......... .......... .......... 75% 138M 0s +2024-04-29T04:26:47Z #15 2.604 97100K .......... .......... .......... .......... .......... 76% 159M 0s +2024-04-29T04:26:47Z #15 2.604 97150K .......... .......... .......... .......... .......... 76% 11.1M 0s +2024-04-29T04:26:47Z #15 2.609 97200K .......... .......... .......... .......... .......... 76% 144M 0s +2024-04-29T04:26:47Z #15 2.609 97250K .......... .......... .......... .......... .......... 76% 149M 0s +2024-04-29T04:26:47Z #15 2.610 97300K .......... .......... .......... .......... .......... 76% 135M 0s +2024-04-29T04:26:47Z #15 2.610 97350K .......... .......... .......... .......... .......... 76% 170M 0s +2024-04-29T04:26:47Z #15 2.610 97400K .......... .......... .......... .......... .......... 76% 131M 0s +2024-04-29T04:26:47Z #15 2.610 97450K .......... .......... .......... .......... .......... 76% 149M 0s +2024-04-29T04:26:47Z #15 2.611 97500K .......... .......... .......... .......... .......... 76% 114M 0s +2024-04-29T04:26:47Z #15 2.612 97550K .......... .......... .......... .......... .......... 76% 147M 0s +2024-04-29T04:26:47Z #15 2.612 97600K .......... .......... .......... .......... .......... 76% 149M 0s +2024-04-29T04:26:47Z #15 2.612 97650K .......... .......... .......... .......... .......... 76% 142M 0s +2024-04-29T04:26:47Z #15 2.612 97700K .......... .......... .......... .......... .......... 76% 11.0M 0s +2024-04-29T04:26:47Z #15 2.625 97750K .......... .......... .......... .......... .......... 76% 138M 0s +2024-04-29T04:26:47Z #15 2.625 97800K .......... .......... .......... .......... .......... 76% 116M 0s +2024-04-29T04:26:47Z #15 2.625 97850K .......... .......... .......... .......... .......... 76% 84.6M 0s +2024-04-29T04:26:47Z #15 2.625 97900K .......... .......... .......... .......... .......... 76% 120M 0s +2024-04-29T04:26:47Z #15 2.625 97950K .......... .......... .......... .......... .......... 76% 141M 0s +2024-04-29T04:26:47Z #15 2.625 98000K .......... .......... .......... .......... .......... 76% 68.4M 0s +2024-04-29T04:26:47Z #15 2.625 98050K .......... .......... .......... .......... .......... 76% 174M 0s +2024-04-29T04:26:47Z #15 2.625 98100K .......... .......... .......... .......... .......... 76% 133M 0s +2024-04-29T04:26:47Z #15 2.625 98150K .......... .......... .......... .......... .......... 76% 172M 0s +2024-04-29T04:26:47Z #15 2.625 98200K .......... .......... .......... .......... .......... 76% 64.6M 0s +2024-04-29T04:26:47Z #15 2.625 98250K .......... .......... .......... .......... .......... 76% 126M 0s +2024-04-29T04:26:47Z #15 2.625 98300K .......... .......... .......... .......... .......... 76% 139M 0s +2024-04-29T04:26:47Z #15 2.625 98350K .......... .......... .......... .......... .......... 77% 138M 0s +2024-04-29T04:26:47Z #15 2.625 98400K .......... .......... .......... .......... .......... 77% 164M 0s +2024-04-29T04:26:47Z #15 2.625 98450K .......... .......... .......... .......... .......... 77% 180M 0s +2024-04-29T04:26:47Z #15 2.625 98500K .......... .......... .......... .......... .......... 77% 136M 0s +2024-04-29T04:26:47Z #15 2.625 98550K .......... .......... .......... .......... .......... 77% 174M 0s +2024-04-29T04:26:47Z #15 2.625 98600K .......... .......... .......... .......... .......... 77% 181M 0s +2024-04-29T04:26:47Z #15 2.625 98650K .......... .......... .......... .......... .......... 77% 5.53M 0s +2024-04-29T04:26:47Z #15 2.635 98700K .......... .......... .......... .......... .......... 77% 150M 0s +2024-04-29T04:26:47Z #15 2.635 98750K .......... .......... .......... .......... .......... 77% 177M 0s +2024-04-29T04:26:47Z #15 2.635 98800K .......... .......... .......... .......... .......... 77% 158M 0s +2024-04-29T04:26:47Z #15 2.635 98850K .......... .......... .......... .......... .......... 77% 158M 0s +2024-04-29T04:26:47Z #15 2.635 98900K .......... .......... .......... .......... .......... 77% 176M 0s +2024-04-29T04:26:47Z #15 2.635 98950K .......... .......... .......... .......... .......... 77% 163M 0s +2024-04-29T04:26:47Z #15 2.635 99000K .......... .......... .......... .......... .......... 77% 11.9M 0s +2024-04-29T04:26:47Z #15 2.645 99050K .......... .......... .......... .......... .......... 77% 146M 0s +2024-04-29T04:26:47Z #15 2.645 99100K .......... .......... .......... .......... .......... 77% 179M 0s +2024-04-29T04:26:47Z #15 2.645 99150K .......... .......... .......... .......... .......... 77% 153M 0s +2024-04-29T04:26:47Z #15 2.645 99200K .......... .......... .......... .......... .......... 77% 156M 0s +2024-04-29T04:26:47Z #15 2.645 99250K .......... .......... .......... .......... .......... 77% 90.2M 0s +2024-04-29T04:26:47Z #15 2.645 99300K .......... .......... .......... .......... .......... 77% 63.4M 0s +2024-04-29T04:26:47Z #15 2.645 99350K .......... .......... .......... .......... .......... 77% 176M 0s +2024-04-29T04:26:47Z #15 2.645 99400K .......... .......... .......... .......... .......... 77% 182M 0s +2024-04-29T04:26:47Z #15 2.645 99450K .......... .......... .......... .......... .......... 77% 153M 0s +2024-04-29T04:26:47Z #15 2.645 99500K .......... .......... .......... .......... .......... 77% 73.7M 0s +2024-04-29T04:26:47Z #15 2.645 99550K .......... .......... .......... .......... .......... 77% 98.5M 0s +2024-04-29T04:26:47Z #15 2.645 99600K .......... .......... .......... .......... .......... 77% 183M 0s +2024-04-29T04:26:47Z #15 2.645 99650K .......... .......... .......... .......... .......... 78% 136M 0s +2024-04-29T04:26:47Z #15 2.645 99700K .......... .......... .......... .......... .......... 78% 142M 0s +2024-04-29T04:26:47Z #15 2.645 99750K .......... .......... .......... .......... .......... 78% 174M 0s +2024-04-29T04:26:47Z #15 2.645 99800K .......... .......... .......... .......... .......... 78% 4.90M 0s +2024-04-29T04:26:47Z #15 2.657 99850K .......... .......... .......... .......... .......... 78% 169M 0s +2024-04-29T04:26:47Z #15 2.657 99900K .......... .......... .......... .......... .......... 78% 148M 0s +2024-04-29T04:26:47Z #15 2.657 99950K .......... .......... .......... .......... .......... 78% 163M 0s +2024-04-29T04:26:47Z #15 2.657 100000K .......... .......... .......... .......... .......... 78% 157M 0s +2024-04-29T04:26:47Z #15 2.657 100050K .......... .......... .......... .......... .......... 78% 81.5M 0s +2024-04-29T04:26:47Z #15 2.657 100100K .......... .......... .......... .......... .......... 78% 9.00M 0s +2024-04-29T04:26:47Z #15 2.665 100150K .......... .......... .......... .......... .......... 78% 181M 0s +2024-04-29T04:26:47Z #15 2.665 100200K .......... .......... .......... .......... .......... 78% 156M 0s +2024-04-29T04:26:47Z #15 2.665 100250K .......... .......... .......... .......... .......... 78% 100M 0s +2024-04-29T04:26:47Z #15 2.665 100300K .......... .......... .......... .......... .......... 78% 74.3M 0s +2024-04-29T04:26:47Z #15 2.665 100350K .......... .......... .......... .......... .......... 78% 183M 0s +2024-04-29T04:26:47Z #15 2.665 100400K .......... .......... .......... .......... .......... 78% 169M 0s +2024-04-29T04:26:47Z #15 2.665 100450K .......... .......... .......... .......... .......... 78% 179M 0s +2024-04-29T04:26:47Z #15 2.665 100500K .......... .......... .......... .......... .......... 78% 144M 0s +2024-04-29T04:26:47Z #15 2.665 100550K .......... .......... .......... .......... .......... 78% 8.63M 0s +2024-04-29T04:26:47Z #15 2.673 100600K .......... .......... .......... .......... .......... 78% 135M 0s +2024-04-29T04:26:47Z #15 2.673 100650K .......... .......... .......... .......... .......... 78% 155M 0s +2024-04-29T04:26:47Z #15 2.673 100700K .......... .......... .......... .......... .......... 78% 178M 0s +2024-04-29T04:26:47Z #15 2.673 100750K .......... .......... .......... .......... .......... 78% 159M 0s +2024-04-29T04:26:47Z #15 2.673 100800K .......... .......... .......... .......... .......... 78% 62.7M 0s +2024-04-29T04:26:47Z #15 2.673 100850K .......... .......... .......... .......... .......... 78% 168M 0s +2024-04-29T04:26:47Z #15 2.673 100900K .......... .......... .......... .......... .......... 78% 9.54M 0s +2024-04-29T04:26:47Z #15 2.681 100950K .......... .......... .......... .......... .......... 79% 159M 0s +2024-04-29T04:26:47Z #15 2.681 101000K .......... .......... .......... .......... .......... 79% 135M 0s +2024-04-29T04:26:47Z #15 2.681 101050K .......... .......... .......... .......... .......... 79% 166M 0s +2024-04-29T04:26:47Z #15 2.681 101100K .......... .......... .......... .......... .......... 79% 55.4M 0s +2024-04-29T04:26:47Z #15 2.681 101150K .......... .......... .......... .......... .......... 79% 141M 0s +2024-04-29T04:26:47Z #15 2.681 101200K .......... .......... .......... .......... .......... 79% 146M 0s +2024-04-29T04:26:47Z #15 2.681 101250K .......... .......... .......... .......... .......... 79% 187M 0s +2024-04-29T04:26:47Z #15 2.681 101300K .......... .......... .......... .......... .......... 79% 7.88M 0s +2024-04-29T04:26:47Z #15 2.689 101350K .......... .......... .......... .......... .......... 79% 142M 0s +2024-04-29T04:26:47Z #15 2.689 101400K .......... .......... .......... .......... .......... 79% 178M 0s +2024-04-29T04:26:47Z #15 2.689 101450K .......... .......... .......... .......... .......... 79% 175M 0s +2024-04-29T04:26:47Z #15 2.689 101500K .......... .......... .......... .......... .......... 79% 157M 0s +2024-04-29T04:26:47Z #15 2.689 101550K .......... .......... .......... .......... .......... 79% 156M 0s +2024-04-29T04:26:47Z #15 2.689 101600K .......... .......... .......... .......... .......... 79% 14.7M 0s +2024-04-29T04:26:47Z #15 2.693 101650K .......... .......... .......... .......... .......... 79% 112M 0s +2024-04-29T04:26:47Z #15 2.693 101700K .......... .......... .......... .......... .......... 79% 132M 0s +2024-04-29T04:26:47Z #15 2.693 101750K .......... .......... .......... .......... .......... 79% 122M 0s +2024-04-29T04:26:47Z #15 2.693 101800K .......... .......... .......... .......... .......... 79% 55.9M 0s +2024-04-29T04:26:47Z #15 2.693 101850K .......... .......... .......... .......... .......... 79% 120M 0s +2024-04-29T04:26:47Z #15 2.694 101900K .......... .......... .......... .......... .......... 79% 56.3M 0s +2024-04-29T04:26:47Z #15 2.695 101950K .......... .......... .......... .......... .......... 79% 108M 0s +2024-04-29T04:26:47Z #15 2.695 102000K .......... .......... .......... .......... .......... 79% 55.8M 0s +2024-04-29T04:26:47Z #15 2.696 102050K .......... .......... .......... .......... .......... 79% 45.0M 0s +2024-04-29T04:26:47Z #15 2.697 102100K .......... .......... .......... .......... .......... 79% 144M 0s +2024-04-29T04:26:47Z #15 2.698 102150K .......... .......... .......... .......... .......... 79% 125M 0s +2024-04-29T04:26:47Z #15 2.698 102200K .......... .......... .......... .......... .......... 80% 137M 0s +2024-04-29T04:26:47Z #15 2.698 102250K .......... .......... .......... .......... .......... 80% 39.8M 0s +2024-04-29T04:26:47Z #15 2.700 102300K .......... .......... .......... .......... .......... 80% 43.4M 0s +2024-04-29T04:26:47Z #15 2.701 102350K .......... .......... .......... .......... .......... 80% 54.7M 0s +2024-04-29T04:26:47Z #15 2.702 102400K .......... .......... .......... .......... .......... 80% 52.2M 0s +2024-04-29T04:26:47Z #15 2.703 102450K .......... .......... .......... .......... .......... 80% 44.4M 0s +2024-04-29T04:26:47Z #15 2.704 102500K .......... .......... .......... .......... .......... 80% 29.9M 0s +2024-04-29T04:26:47Z #15 2.705 102550K .......... .......... .......... .......... .......... 80% 41.1M 0s +2024-04-29T04:26:47Z #15 2.706 102600K .......... .......... .......... .......... .......... 80% 57.8M 0s +2024-04-29T04:26:47Z #15 2.708 102650K .......... .......... .......... .......... .......... 80% 50.3M 0s +2024-04-29T04:26:47Z #15 2.708 102700K .......... .......... .......... .......... .......... 80% 64.6M 0s +2024-04-29T04:26:47Z #15 2.709 102750K .......... .......... .......... .......... .......... 80% 15.0M 0s +2024-04-29T04:26:47Z #15 2.713 102800K .......... .......... .......... .......... .......... 80% 16.0M 0s +2024-04-29T04:26:47Z #15 2.715 102850K .......... .......... .......... .......... .......... 80% 36.5M 0s +2024-04-29T04:26:47Z #15 2.717 102900K .......... .......... .......... .......... .......... 80% 112M 0s +2024-04-29T04:26:47Z #15 2.717 102950K .......... .......... .......... .......... .......... 80% 123M 0s +2024-04-29T04:26:47Z #15 2.717 103000K .......... .......... .......... .......... .......... 80% 107M 0s +2024-04-29T04:26:47Z #15 2.718 103050K .......... .......... .......... .......... .......... 80% 66.1M 0s +2024-04-29T04:26:47Z #15 2.719 103100K .......... .......... .......... .......... .......... 80% 88.1M 0s +2024-04-29T04:26:47Z #15 2.719 103150K .......... .......... .......... .......... .......... 80% 128M 0s +2024-04-29T04:26:47Z #15 2.720 103200K .......... .......... .......... .......... .......... 80% 99.3M 0s +2024-04-29T04:26:47Z #15 2.720 103250K .......... .......... .......... .......... .......... 80% 74.1M 0s +2024-04-29T04:26:47Z #15 2.721 103300K .......... .......... .......... .......... .......... 80% 130M 0s +2024-04-29T04:26:47Z #15 2.721 103350K .......... .......... .......... .......... .......... 80% 150M 0s +2024-04-29T04:26:47Z #15 2.721 103400K .......... .......... .......... .......... .......... 80% 105M 0s +2024-04-29T04:26:47Z #15 2.722 103450K .......... .......... .......... .......... .......... 80% 64.5M 0s +2024-04-29T04:26:47Z #15 2.723 103500K .......... .......... .......... .......... .......... 81% 105M 0s +2024-04-29T04:26:47Z #15 2.723 103550K .......... .......... .......... .......... .......... 81% 145M 0s +2024-04-29T04:26:47Z #15 2.724 103600K .......... .......... .......... .......... .......... 81% 113M 0s +2024-04-29T04:26:47Z #15 2.724 103650K .......... .......... .......... .......... .......... 81% 61.7M 0s +2024-04-29T04:26:47Z #15 2.725 103700K .......... .......... .......... .......... .......... 81% 126M 0s +2024-04-29T04:26:47Z #15 2.725 103750K .......... .......... .......... .......... .......... 81% 112M 0s +2024-04-29T04:26:47Z #15 2.726 103800K .......... .......... .......... .......... .......... 81% 104M 0s +2024-04-29T04:26:47Z #15 2.726 103850K .......... .......... .......... .......... .......... 81% 148M 0s +2024-04-29T04:26:47Z #15 2.726 103900K .......... .......... .......... .......... .......... 81% 64.1M 0s +2024-04-29T04:26:47Z #15 2.727 103950K .......... .......... .......... .......... .......... 81% 99.1M 0s +2024-04-29T04:26:47Z #15 2.728 104000K .......... .......... .......... .......... .......... 81% 118M 0s +2024-04-29T04:26:47Z #15 2.728 104050K .......... .......... .......... .......... .......... 81% 117M 0s +2024-04-29T04:26:47Z #15 2.728 104100K .......... .......... .......... .......... .......... 81% 42.3M 0s +2024-04-29T04:26:47Z #15 2.730 104150K .......... .......... .......... .......... .......... 81% 74.7M 0s +2024-04-29T04:26:47Z #15 2.730 104200K .......... .......... .......... .......... .......... 81% 59.6M 0s +2024-04-29T04:26:47Z #15 2.731 104250K .......... .......... .......... .......... .......... 81% 54.9M 0s +2024-04-29T04:26:47Z #15 2.732 104300K .......... .......... .......... .......... .......... 81% 51.2M 0s +2024-04-29T04:26:47Z #15 2.736 104350K .......... .......... .......... .......... .......... 81% 99.5M 0s +2024-04-29T04:26:47Z #15 2.736 104400K .......... .......... .......... .......... .......... 81% 137M 0s +2024-04-29T04:26:47Z #15 2.736 104450K .......... .......... .......... .......... .......... 81% 128M 0s +2024-04-29T04:26:47Z #15 2.736 104500K .......... .......... .......... .......... .......... 81% 71.9M 0s +2024-04-29T04:26:47Z #15 2.736 104550K .......... .......... .......... .......... .......... 81% 111M 0s +2024-04-29T04:26:47Z #15 2.736 104600K .......... .......... .......... .......... .......... 81% 124M 0s +2024-04-29T04:26:47Z #15 2.736 104650K .......... .......... .......... .......... .......... 81% 132M 0s +2024-04-29T04:26:47Z #15 2.736 104700K .......... .......... .......... .......... .......... 81% 52.6M 0s +2024-04-29T04:26:47Z #15 2.740 104750K .......... .......... .......... .......... .......... 82% 101M 0s +2024-04-29T04:26:47Z #15 2.740 104800K .......... .......... .......... .......... .......... 82% 96.3M 0s +2024-04-29T04:26:47Z #15 2.740 104850K .......... .......... .......... .......... .......... 82% 138M 0s +2024-04-29T04:26:47Z #15 2.740 104900K .......... .......... .......... .......... .......... 82% 125M 0s +2024-04-29T04:26:47Z #15 2.740 104950K .......... .......... .......... .......... .......... 82% 78.9M 0s +2024-04-29T04:26:47Z #15 2.740 105000K .......... .......... .......... .......... .......... 82% 82.8M 0s +2024-04-29T04:26:47Z #15 2.740 105050K .......... .......... .......... .......... .......... 82% 127M 0s +2024-04-29T04:26:47Z #15 2.740 105100K .......... .......... .......... .......... .......... 82% 116M 0s +2024-04-29T04:26:47Z #15 2.741 105150K .......... .......... .......... .......... .......... 82% 67.0M 0s +2024-04-29T04:26:47Z #15 2.744 105200K .......... .......... .......... .......... .......... 82% 76.4M 0s +2024-04-29T04:26:47Z #15 2.744 105250K .......... .......... .......... .......... .......... 82% 129M 0s +2024-04-29T04:26:47Z #15 2.744 105300K .......... .......... .......... .......... .......... 82% 135M 0s +2024-04-29T04:26:47Z #15 2.744 105350K .......... .......... .......... .......... .......... 82% 111M 0s +2024-04-29T04:26:47Z #15 2.744 105400K .......... .......... .......... .......... .......... 82% 70.8M 0s +2024-04-29T04:26:47Z #15 2.744 105450K .......... .......... .......... .......... .......... 82% 133M 0s +2024-04-29T04:26:47Z #15 2.744 105500K .......... .......... .......... .......... .......... 82% 122M 0s +2024-04-29T04:26:47Z #15 2.745 105550K .......... .......... .......... .......... .......... 82% 125M 0s +2024-04-29T04:26:47Z #15 2.745 105600K .......... .......... .......... .......... .......... 82% 68.5M 0s +2024-04-29T04:26:47Z #15 2.746 105650K .......... .......... .......... .......... .......... 82% 123M 0s +2024-04-29T04:26:47Z #15 2.746 105700K .......... .......... .......... .......... .......... 82% 154M 0s +2024-04-29T04:26:47Z #15 2.746 105750K .......... .......... .......... .......... .......... 82% 128M 0s +2024-04-29T04:26:47Z #15 2.747 105800K .......... .......... .......... .......... .......... 82% 167M 0s +2024-04-29T04:26:47Z #15 2.747 105850K .......... .......... .......... .......... .......... 82% 54.5M 0s +2024-04-29T04:26:47Z #15 2.748 105900K .......... .......... .......... .......... .......... 82% 79.9M 0s +2024-04-29T04:26:47Z #15 2.749 105950K .......... .......... .......... .......... .......... 82% 49.4M 0s +2024-04-29T04:26:47Z #15 2.752 106000K .......... .......... .......... .......... .......... 82% 41.7M 0s +2024-04-29T04:26:47Z #15 2.752 106050K .......... .......... .......... .......... .......... 83% 53.7M 0s +2024-04-29T04:26:47Z #15 2.752 106100K .......... .......... .......... .......... .......... 83% 42.6M 0s +2024-04-29T04:26:47Z #15 2.753 106150K .......... .......... .......... .......... .......... 83% 89.6M 0s +2024-04-29T04:26:47Z #15 2.754 106200K .......... .......... .......... .......... .......... 83% 95.7M 0s +2024-04-29T04:26:47Z #15 2.754 106250K .......... .......... .......... .......... .......... 83% 83.7M 0s +2024-04-29T04:26:47Z #15 2.755 106300K .......... .......... .......... .......... .......... 83% 39.0M 0s +2024-04-29T04:26:47Z #15 2.756 106350K .......... .......... .......... .......... .......... 83% 59.7M 0s +2024-04-29T04:26:47Z #15 2.757 106400K .......... .......... .......... .......... .......... 83% 77.2M 0s +2024-04-29T04:26:47Z #15 2.758 106450K .......... .......... .......... .......... .......... 83% 106M 0s +2024-04-29T04:26:47Z #15 2.758 106500K .......... .......... .......... .......... .......... 83% 71.2M 0s +2024-04-29T04:26:47Z #15 2.758 106550K .......... .......... .......... .......... .......... 83% 39.2M 0s +2024-04-29T04:26:47Z #15 2.760 106600K .......... .......... .......... .......... .......... 83% 103M 0s +2024-04-29T04:26:47Z #15 2.761 106650K .......... .......... .......... .......... .......... 83% 84.9M 0s +2024-04-29T04:26:47Z #15 2.761 106700K .......... .......... .......... .......... .......... 83% 58.5M 0s +2024-04-29T04:26:47Z #15 2.761 106750K .......... .......... .......... .......... .......... 83% 36.9M 0s +2024-04-29T04:26:47Z #15 2.763 106800K .......... .......... .......... .......... .......... 83% 76.8M 0s +2024-04-29T04:26:47Z #15 2.764 106850K .......... .......... .......... .......... .......... 83% 109M 0s +2024-04-29T04:26:47Z #15 2.765 106900K .......... .......... .......... .......... .......... 83% 65.0M 0s +2024-04-29T04:26:47Z #15 2.765 106950K .......... .......... .......... .......... .......... 83% 47.8M 0s +2024-04-29T04:26:47Z #15 2.766 107000K .......... .......... .......... .......... .......... 83% 86.9M 0s +2024-04-29T04:26:47Z #15 2.766 107050K .......... .......... .......... .......... .......... 83% 72.6M 0s +2024-04-29T04:26:47Z #15 2.767 107100K .......... .......... .......... .......... .......... 83% 62.4M 0s +2024-04-29T04:26:47Z #15 2.768 107150K .......... .......... .......... .......... .......... 83% 37.2M 0s +2024-04-29T04:26:47Z #15 2.769 107200K .......... .......... .......... .......... .......... 83% 74.5M 0s +2024-04-29T04:26:47Z #15 2.770 107250K .......... .......... .......... .......... .......... 83% 74.3M 0s +2024-04-29T04:26:47Z #15 2.770 107300K .......... .......... .......... .......... .......... 84% 36.8M 0s +2024-04-29T04:26:47Z #15 2.772 107350K .......... .......... .......... .......... .......... 84% 74.5M 0s +2024-04-29T04:26:47Z #15 2.773 107400K .......... .......... .......... .......... .......... 84% 99.7M 0s +2024-04-29T04:26:47Z #15 2.773 107450K .......... .......... .......... .......... .......... 84% 82.9M 0s +2024-04-29T04:26:47Z #15 2.773 107500K .......... .......... .......... .......... .......... 84% 29.3M 0s +2024-04-29T04:26:47Z #15 2.776 107550K .......... .......... .......... .......... .......... 84% 85.8M 0s +2024-04-29T04:26:47Z #15 2.776 107600K .......... .......... .......... .......... .......... 84% 72.2M 0s +2024-04-29T04:26:47Z #15 2.776 107650K .......... .......... .......... .......... .......... 84% 62.6M 0s +2024-04-29T04:26:47Z #15 2.777 107700K .......... .......... .......... .......... .......... 84% 37.6M 0s +2024-04-29T04:26:47Z #15 2.778 107750K .......... .......... .......... .......... .......... 84% 64.5M 0s +2024-04-29T04:26:47Z #15 2.779 107800K .......... .......... .......... .......... .......... 84% 71.5M 0s +2024-04-29T04:26:47Z #15 2.780 107850K .......... .......... .......... .......... .......... 84% 57.5M 0s +2024-04-29T04:26:47Z #15 2.782 107900K .......... .......... .......... .......... .......... 84% 45.8M 0s +2024-04-29T04:26:47Z #15 2.782 107950K .......... .......... .......... .......... .......... 84% 82.3M 0s +2024-04-29T04:26:47Z #15 2.782 108000K .......... .......... .......... .......... .......... 84% 72.7M 0s +2024-04-29T04:26:47Z #15 2.783 108050K .......... .......... .......... .......... .......... 84% 69.7M 0s +2024-04-29T04:26:47Z #15 2.784 108100K .......... .......... .......... .......... .......... 84% 32.1M 0s +2024-04-29T04:26:47Z #15 2.785 108150K .......... .......... .......... .......... .......... 84% 81.8M 0s +2024-04-29T04:26:47Z #15 2.786 108200K .......... .......... .......... .......... .......... 84% 92.1M 0s +2024-04-29T04:26:47Z #15 2.786 108250K .......... .......... .......... .......... .......... 84% 69.5M 0s +2024-04-29T04:26:47Z #15 2.787 108300K .......... .......... .......... .......... .......... 84% 49.1M 0s +2024-04-29T04:26:47Z #15 2.788 108350K .......... .......... .......... .......... .......... 84% 67.3M 0s +2024-04-29T04:26:47Z #15 2.789 108400K .......... .......... .......... .......... .......... 84% 54.7M 0s +2024-04-29T04:26:47Z #15 2.790 108450K .......... .......... .......... .......... .......... 84% 81.6M 0s +2024-04-29T04:26:47Z #15 2.790 108500K .......... .......... .......... .......... .......... 84% 51.0M 0s +2024-04-29T04:26:47Z #15 2.791 108550K .......... .......... .......... .......... .......... 84% 68.4M 0s +2024-04-29T04:26:47Z #15 2.792 108600K .......... .......... .......... .......... .......... 85% 63.6M 0s +2024-04-29T04:26:47Z #15 2.793 108650K .......... .......... .......... .......... .......... 85% 63.4M 0s +2024-04-29T04:26:47Z #15 2.793 108700K .......... .......... .......... .......... .......... 85% 39.8M 0s +2024-04-29T04:26:47Z #15 2.795 108750K .......... .......... .......... .......... .......... 85% 147M 0s +2024-04-29T04:26:47Z #15 2.796 108800K .......... .......... .......... .......... .......... 85% 91.2M 0s +2024-04-29T04:26:47Z #15 2.796 108850K .......... .......... .......... .......... .......... 85% 79.8M 0s +2024-04-29T04:26:47Z #15 2.797 108900K .......... .......... .......... .......... .......... 85% 75.4M 0s +2024-04-29T04:26:47Z #15 2.797 108950K .......... .......... .......... .......... .......... 85% 34.4M 0s +2024-04-29T04:26:47Z #15 2.798 109000K .......... .......... .......... .......... .......... 85% 71.5M 0s +2024-04-29T04:26:47Z #15 2.799 109050K .......... .......... .......... .......... .......... 85% 110M 0s +2024-04-29T04:26:47Z #15 2.800 109100K .......... .......... .......... .......... .......... 85% 103M 0s +2024-04-29T04:26:47Z #15 2.800 109150K .......... .......... .......... .......... .......... 85% 74.1M 0s +2024-04-29T04:26:47Z #15 2.801 109200K .......... .......... .......... .......... .......... 85% 36.3M 0s +2024-04-29T04:26:47Z #15 2.802 109250K .......... .......... .......... .......... .......... 85% 63.1M 0s +2024-04-29T04:26:47Z #15 2.803 109300K .......... .......... .......... .......... .......... 85% 68.0M 0s +2024-04-29T04:26:47Z #15 2.803 109350K .......... .......... .......... .......... .......... 85% 93.3M 0s +2024-04-29T04:26:47Z #15 2.804 109400K .......... .......... .......... .......... .......... 85% 70.8M 0s +2024-04-29T04:26:47Z #15 2.805 109450K .......... .......... .......... .......... .......... 85% 34.8M 0s +2024-04-29T04:26:47Z #15 2.806 109500K .......... .......... .......... .......... .......... 85% 71.8M 0s +2024-04-29T04:26:47Z #15 2.807 109550K .......... .......... .......... .......... .......... 85% 85.9M 0s +2024-04-29T04:26:47Z #15 2.807 109600K .......... .......... .......... .......... .......... 85% 87.6M 0s +2024-04-29T04:26:47Z #15 2.808 109650K .......... .......... .......... .......... .......... 85% 63.3M 0s +2024-04-29T04:26:47Z #15 2.809 109700K .......... .......... .......... .......... .......... 85% 49.7M 0s +2024-04-29T04:26:47Z #15 2.810 109750K .......... .......... .......... .......... .......... 85% 60.9M 0s +2024-04-29T04:26:47Z #15 2.810 109800K .......... .......... .......... .......... .......... 85% 75.2M 0s +2024-04-29T04:26:47Z #15 2.811 109850K .......... .......... .......... .......... .......... 85% 75.0M 0s +2024-04-29T04:26:47Z #15 2.812 109900K .......... .......... .......... .......... .......... 86% 101M 0s +2024-04-29T04:26:47Z #15 2.812 109950K .......... .......... .......... .......... .......... 86% 71.7M 0s +2024-04-29T04:26:47Z #15 2.813 110000K .......... .......... .......... .......... .......... 86% 30.9M 0s +2024-04-29T04:26:47Z #15 2.814 110050K .......... .......... .......... .......... .......... 86% 88.3M 0s +2024-04-29T04:26:47Z #15 2.815 110100K .......... .......... .......... .......... .......... 86% 102M 0s +2024-04-29T04:26:47Z #15 2.816 110150K .......... .......... .......... .......... .......... 86% 79.0M 0s +2024-04-29T04:26:47Z #15 2.816 110200K .......... .......... .......... .......... .......... 86% 35.5M 0s +2024-04-29T04:26:47Z #15 2.818 110250K .......... .......... .......... .......... .......... 86% 70.9M 0s +2024-04-29T04:26:47Z #15 2.818 110300K .......... .......... .......... .......... .......... 86% 81.6M 0s +2024-04-29T04:26:47Z #15 2.819 110350K .......... .......... .......... .......... .......... 86% 116M 0s +2024-04-29T04:26:47Z #15 2.820 110400K .......... .......... .......... .......... .......... 86% 31.6M 0s +2024-04-29T04:26:47Z #15 2.821 110450K .......... .......... .......... .......... .......... 86% 82.7M 0s +2024-04-29T04:26:47Z #15 2.822 110500K .......... .......... .......... .......... .......... 86% 82.6M 0s +2024-04-29T04:26:47Z #15 2.822 110550K .......... .......... .......... .......... .......... 86% 68.0M 0s +2024-04-29T04:26:47Z #15 2.823 110600K .......... .......... .......... .......... .......... 86% 45.3M 0s +2024-04-29T04:26:47Z #15 2.824 110650K .......... .......... .......... .......... .......... 86% 73.6M 0s +2024-04-29T04:26:47Z #15 2.824 110700K .......... .......... .......... .......... .......... 86% 76.1M 0s +2024-04-29T04:26:47Z #15 2.825 110750K .......... .......... .......... .......... .......... 86% 39.0M 0s +2024-04-29T04:26:47Z #15 2.826 110800K .......... .......... .......... .......... .......... 86% 122M 0s +2024-04-29T04:26:47Z #15 2.827 110850K .......... .......... .......... .......... .......... 86% 89.8M 0s +2024-04-29T04:26:47Z #15 2.827 110900K .......... .......... .......... .......... .......... 86% 77.2M 0s +2024-04-29T04:26:47Z #15 2.828 110950K .......... .......... .......... .......... .......... 86% 40.9M 0s +2024-04-29T04:26:47Z #15 2.829 111000K .......... .......... .......... .......... .......... 86% 82.1M 0s +2024-04-29T04:26:47Z #15 2.830 111050K .......... .......... .......... .......... .......... 86% 81.1M 0s +2024-04-29T04:26:47Z #15 2.830 111100K .......... .......... .......... .......... .......... 86% 98.1M 0s +2024-04-29T04:26:47Z #15 2.831 111150K .......... .......... .......... .......... .......... 87% 48.9M 0s +2024-04-29T04:26:47Z #15 2.832 111200K .......... .......... .......... .......... .......... 87% 87.5M 0s +2024-04-29T04:26:47Z #15 2.832 111250K .......... .......... .......... .......... .......... 87% 85.5M 0s +2024-04-29T04:26:47Z #15 2.833 111300K .......... .......... .......... .......... .......... 87% 109M 0s +2024-04-29T04:26:47Z #15 2.834 111350K .......... .......... .......... .......... .......... 87% 57.9M 0s +2024-04-29T04:26:47Z #15 2.834 111400K .......... .......... .......... .......... .......... 87% 98.4M 0s +2024-04-29T04:26:47Z #15 2.835 111450K .......... .......... .......... .......... .......... 87% 135M 0s +2024-04-29T04:26:47Z #15 2.835 111500K .......... .......... .......... .......... .......... 87% 83.9M 0s +2024-04-29T04:26:47Z #15 2.836 111550K .......... .......... .......... .......... .......... 87% 67.5M 0s +2024-04-29T04:26:47Z #15 2.836 111600K .......... .......... .......... .......... .......... 87% 107M 0s +2024-04-29T04:26:47Z #15 2.838 111650K .......... .......... .......... .......... .......... 87% 118M 0s +2024-04-29T04:26:47Z #15 2.838 111700K .......... .......... .......... .......... .......... 87% 54.4M 0s +2024-04-29T04:26:47Z #15 2.839 111750K .......... .......... .......... .......... .......... 87% 123M 0s +2024-04-29T04:26:47Z #15 2.839 111800K .......... .......... .......... .......... .......... 87% 105M 0s +2024-04-29T04:26:47Z #15 2.839 111850K .......... .......... .......... .......... .......... 87% 103M 0s +2024-04-29T04:26:47Z #15 2.840 111900K .......... .......... .......... .......... .......... 87% 83.1M 0s +2024-04-29T04:26:47Z #15 2.840 111950K .......... .......... .......... .......... .......... 87% 67.0M 0s +2024-04-29T04:26:47Z #15 2.841 112000K .......... .......... .......... .......... .......... 87% 110M 0s +2024-04-29T04:26:47Z #15 2.841 112050K .......... .......... .......... .......... .......... 87% 96.9M 0s +2024-04-29T04:26:47Z #15 2.843 112100K .......... .......... .......... .......... .......... 87% 125M 0s +2024-04-29T04:26:47Z #15 2.843 112150K .......... .......... .......... .......... .......... 87% 73.9M 0s +2024-04-29T04:26:47Z #15 2.843 112200K .......... .......... .......... .......... .......... 87% 77.1M 0s +2024-04-29T04:26:47Z #15 2.844 112250K .......... .......... .......... .......... .......... 87% 136M 0s +2024-04-29T04:26:47Z #15 2.844 112300K .......... .......... .......... .......... .......... 87% 85.6M 0s +2024-04-29T04:26:47Z #15 2.848 112350K .......... .......... .......... .......... .......... 87% 38.2M 0s +2024-04-29T04:26:47Z #15 2.848 112400K .......... .......... .......... .......... .......... 87% 94.4M 0s +2024-04-29T04:26:47Z #15 2.848 112450K .......... .......... .......... .......... .......... 88% 141M 0s +2024-04-29T04:26:47Z #15 2.848 112500K .......... .......... .......... .......... .......... 88% 123M 0s +2024-04-29T04:26:47Z #15 2.848 112550K .......... .......... .......... .......... .......... 88% 70.8M 0s +2024-04-29T04:26:47Z #15 2.848 112600K .......... .......... .......... .......... .......... 88% 80.7M 0s +2024-04-29T04:26:47Z #15 2.848 112650K .......... .......... .......... .......... .......... 88% 127M 0s +2024-04-29T04:26:47Z #15 2.848 112700K .......... .......... .......... .......... .......... 88% 71.0M 0s +2024-04-29T04:26:47Z #15 2.850 112750K .......... .......... .......... .......... .......... 88% 6.35M 0s +2024-04-29T04:26:47Z #15 2.857 112800K .......... .......... .......... .......... .......... 88% 138M 0s +2024-04-29T04:26:47Z #15 2.857 112850K .......... .......... .......... .......... .......... 88% 165M 0s +2024-04-29T04:26:47Z #15 2.857 112900K .......... .......... .......... .......... .......... 88% 131M 0s +2024-04-29T04:26:47Z #15 2.858 112950K .......... .......... .......... .......... .......... 88% 163M 0s +2024-04-29T04:26:47Z #15 2.858 113000K .......... .......... .......... .......... .......... 88% 61.3M 0s +2024-04-29T04:26:47Z #15 2.859 113050K .......... .......... .......... .......... .......... 88% 159M 0s +2024-04-29T04:26:47Z #15 2.859 113100K .......... .......... .......... .......... .......... 88% 146M 0s +2024-04-29T04:26:47Z #15 2.860 113150K .......... .......... .......... .......... .......... 88% 169M 0s +2024-04-29T04:26:47Z #15 2.860 113200K .......... .......... .......... .......... .......... 88% 153M 0s +2024-04-29T04:26:47Z #15 2.860 113250K .......... .......... .......... .......... .......... 88% 60.3M 0s +2024-04-29T04:26:47Z #15 2.861 113300K .......... .......... .......... .......... .......... 88% 160M 0s +2024-04-29T04:26:47Z #15 2.861 113350K .......... .......... .......... .......... .......... 88% 145M 0s +2024-04-29T04:26:47Z #15 2.862 113400K .......... .......... .......... .......... .......... 88% 153M 0s +2024-04-29T04:26:47Z #15 2.862 113450K .......... .......... .......... .......... .......... 88% 165M 0s +2024-04-29T04:26:47Z #15 2.862 113500K .......... .......... .......... .......... .......... 88% 55.0M 0s +2024-04-29T04:26:47Z #15 2.863 113550K .......... .......... .......... .......... .......... 88% 136M 0s +2024-04-29T04:26:47Z #15 2.864 113600K .......... .......... .......... .......... .......... 88% 127M 0s +2024-04-29T04:26:47Z #15 2.864 113650K .......... .......... .......... .......... .......... 88% 152M 0s +2024-04-29T04:26:47Z #15 2.865 113700K .......... .......... .......... .......... .......... 89% 141M 0s +2024-04-29T04:26:47Z #15 2.865 113750K .......... .......... .......... .......... .......... 89% 57.1M 0s +2024-04-29T04:26:47Z #15 2.866 113800K .......... .......... .......... .......... .......... 89% 117M 0s +2024-04-29T04:26:47Z #15 2.866 113850K .......... .......... .......... .......... .......... 89% 138M 0s +2024-04-29T04:26:47Z #15 2.866 113900K .......... .......... .......... .......... .......... 89% 132M 0s +2024-04-29T04:26:47Z #15 2.867 113950K .......... .......... .......... .......... .......... 89% 74.2M 0s +2024-04-29T04:26:47Z #15 2.867 114000K .......... .......... .......... .......... .......... 89% 87.1M 0s +2024-04-29T04:26:47Z #15 2.868 114050K .......... .......... .......... .......... .......... 89% 138M 0s +2024-04-29T04:26:47Z #15 2.868 114100K .......... .......... .......... .......... .......... 89% 145M 0s +2024-04-29T04:26:47Z #15 2.870 114150K .......... .......... .......... .......... .......... 89% 5.77M 0s +2024-04-29T04:26:47Z #15 2.889 114200K .......... .......... .......... .......... .......... 89% 60.4M 0s +2024-04-29T04:26:47Z #15 2.889 114250K .......... .......... .......... .......... .......... 89% 129M 0s +2024-04-29T04:26:47Z #15 2.889 114300K .......... .......... .......... .......... .......... 89% 108M 0s +2024-04-29T04:26:47Z #15 2.889 114350K .......... .......... .......... .......... .......... 89% 122M 0s +2024-04-29T04:26:47Z #15 2.889 114400K .......... .......... .......... .......... .......... 89% 75.0M 0s +2024-04-29T04:26:47Z #15 2.889 114450K .......... .......... .......... .......... .......... 89% 81.7M 0s +2024-04-29T04:26:47Z #15 2.889 114500K .......... .......... .......... .......... .......... 89% 103M 0s +2024-04-29T04:26:47Z #15 2.889 114550K .......... .......... .......... .......... .......... 89% 176M 0s +2024-04-29T04:26:47Z #15 2.889 114600K .......... .......... .......... .......... .......... 89% 129M 0s +2024-04-29T04:26:47Z #15 2.889 114650K .......... .......... .......... .......... .......... 89% 126M 0s +2024-04-29T04:26:47Z #15 2.889 114700K .......... .......... .......... .......... .......... 89% 74.4M 0s +2024-04-29T04:26:47Z #15 2.889 114750K .......... .......... .......... .......... .......... 89% 164M 0s +2024-04-29T04:26:47Z #15 2.889 114800K .......... .......... .......... .......... .......... 89% 124M 0s +2024-04-29T04:26:47Z #15 2.889 114850K .......... .......... .......... .......... .......... 89% 155M 0s +2024-04-29T04:26:47Z #15 2.889 114900K .......... .......... .......... .......... .......... 89% 178M 0s +2024-04-29T04:26:47Z #15 2.889 114950K .......... .......... .......... .......... .......... 89% 63.9M 0s +2024-04-29T04:26:47Z #15 2.889 115000K .......... .......... .......... .......... .......... 90% 150M 0s +2024-04-29T04:26:47Z #15 2.889 115050K .......... .......... .......... .......... .......... 90% 100M 0s +2024-04-29T04:26:47Z #15 2.889 115100K .......... .......... .......... .......... .......... 90% 138M 0s +2024-04-29T04:26:47Z #15 2.889 115150K .......... .......... .......... .......... .......... 90% 185M 0s +2024-04-29T04:26:47Z #15 2.889 115200K .......... .......... .......... .......... .......... 90% 135M 0s +2024-04-29T04:26:47Z #15 2.889 115250K .......... .......... .......... .......... .......... 90% 54.4M 0s +2024-04-29T04:26:47Z #15 2.889 115300K .......... .......... .......... .......... .......... 90% 127M 0s +2024-04-29T04:26:47Z #15 2.889 115350K .......... .......... .......... .......... .......... 90% 162M 0s +2024-04-29T04:26:47Z #15 2.889 115400K .......... .......... .......... .......... .......... 90% 177M 0s +2024-04-29T04:26:47Z #15 2.889 115450K .......... .......... .......... .......... .......... 90% 189M 0s +2024-04-29T04:26:47Z #15 2.889 115500K .......... .......... .......... .......... .......... 90% 118M 0s +2024-04-29T04:26:47Z #15 2.889 115550K .......... .......... .......... .......... .......... 90% 61.3M 0s +2024-04-29T04:26:47Z #15 2.889 115600K .......... .......... .......... .......... .......... 90% 103M 0s +2024-04-29T04:26:47Z #15 2.890 115650K .......... .......... .......... .......... .......... 90% 132M 0s +2024-04-29T04:26:47Z #15 2.891 115700K .......... .......... .......... .......... .......... 90% 122M 0s +2024-04-29T04:26:47Z #15 2.891 115750K .......... .......... .......... .......... .......... 90% 118M 0s +2024-04-29T04:26:47Z #15 2.891 115800K .......... .......... .......... .......... .......... 90% 58.4M 0s +2024-04-29T04:26:47Z #15 2.893 115850K .......... .......... .......... .......... .......... 90% 77.2M 0s +2024-04-29T04:26:47Z #15 2.897 115900K .......... .......... .......... .......... .......... 90% 127M 0s +2024-04-29T04:26:47Z #15 2.897 115950K .......... .......... .......... .......... .......... 90% 126M 0s +2024-04-29T04:26:47Z #15 2.897 116000K .......... .......... .......... .......... .......... 90% 99.5M 0s +2024-04-29T04:26:47Z #15 2.897 116050K .......... .......... .......... .......... .......... 90% 61.4M 0s +2024-04-29T04:26:47Z #15 2.897 116100K .......... .......... .......... .......... .......... 90% 97.3M 0s +2024-04-29T04:26:47Z #15 2.897 116150K .......... .......... .......... .......... .......... 90% 134M 0s +2024-04-29T04:26:47Z #15 2.897 116200K .......... .......... .......... .......... .......... 90% 105M 0s +2024-04-29T04:26:47Z #15 2.897 116250K .......... .......... .......... .......... .......... 91% 113M 0s +2024-04-29T04:26:47Z #15 2.897 116300K .......... .......... .......... .......... .......... 91% 56.9M 0s +2024-04-29T04:26:47Z #15 2.901 116350K .......... .......... .......... .......... .......... 91% 124M 0s +2024-04-29T04:26:47Z #15 2.901 116400K .......... .......... .......... .......... .......... 91% 115M 0s +2024-04-29T04:26:47Z #15 2.901 116450K .......... .......... .......... .......... .......... 91% 126M 0s +2024-04-29T04:26:47Z #15 2.901 116500K .......... .......... .......... .......... .......... 91% 58.4M 0s +2024-04-29T04:26:47Z #15 2.901 116550K .......... .......... .......... .......... .......... 91% 130M 0s +2024-04-29T04:26:47Z #15 2.901 116600K .......... .......... .......... .......... .......... 91% 109M 0s +2024-04-29T04:26:47Z #15 2.901 116650K .......... .......... .......... .......... .......... 91% 88.5M 0s +2024-04-29T04:26:47Z #15 2.905 116700K .......... .......... .......... .......... .......... 91% 72.7M 0s +2024-04-29T04:26:47Z #15 2.905 116750K .......... .......... .......... .......... .......... 91% 97.8M 0s +2024-04-29T04:26:47Z #15 2.905 116800K .......... .......... .......... .......... .......... 91% 106M 0s +2024-04-29T04:26:47Z #15 2.905 116850K .......... .......... .......... .......... .......... 91% 112M 0s +2024-04-29T04:26:47Z #15 2.905 116900K .......... .......... .......... .......... .......... 91% 115M 0s +2024-04-29T04:26:47Z #15 2.905 116950K .......... .......... .......... .......... .......... 91% 133M 0s +2024-04-29T04:26:47Z #15 2.905 117000K .......... .......... .......... .......... .......... 91% 61.1M 0s +2024-04-29T04:26:47Z #15 2.905 117050K .......... .......... .......... .......... .......... 91% 88.4M 0s +2024-04-29T04:26:47Z #15 2.909 117100K .......... .......... .......... .......... .......... 91% 111M 0s +2024-04-29T04:26:47Z #15 2.909 117150K .......... .......... .......... .......... .......... 91% 124M 0s +2024-04-29T04:26:47Z #15 2.909 117200K .......... .......... .......... .......... .......... 91% 60.5M 0s +2024-04-29T04:26:47Z #15 2.909 117250K .......... .......... .......... .......... .......... 91% 107M 0s +2024-04-29T04:26:47Z #15 2.909 117300K .......... .......... .......... .......... .......... 91% 109M 0s +2024-04-29T04:26:47Z #15 2.909 117350K .......... .......... .......... .......... .......... 91% 118M 0s +2024-04-29T04:26:47Z #15 2.909 117400K .......... .......... .......... .......... .......... 91% 135M 0s +2024-04-29T04:26:47Z #15 2.913 117450K .......... .......... .......... .......... .......... 91% 61.9M 0s +2024-04-29T04:26:47Z #15 2.913 117500K .......... .......... .......... .......... .......... 91% 124M 0s +2024-04-29T04:26:47Z #15 2.913 117550K .......... .......... .......... .......... .......... 92% 111M 0s +2024-04-29T04:26:47Z #15 2.913 117600K .......... .......... .......... .......... .......... 92% 67.5M 0s +2024-04-29T04:26:47Z #15 2.913 117650K .......... .......... .......... .......... .......... 92% 86.0M 0s +2024-04-29T04:26:47Z #15 2.913 117700K .......... .......... .......... .......... .......... 92% 141M 0s +2024-04-29T04:26:47Z #15 2.913 117750K .......... .......... .......... .......... .......... 92% 126M 0s +2024-04-29T04:26:47Z #15 2.913 117800K .......... .......... .......... .......... .......... 92% 49.5M 0s +2024-04-29T04:26:47Z #15 2.917 117850K .......... .......... .......... .......... .......... 92% 90.8M 0s +2024-04-29T04:26:47Z #15 2.917 117900K .......... .......... .......... .......... .......... 92% 128M 0s +2024-04-29T04:26:47Z #15 2.917 117950K .......... .......... .......... .......... .......... 92% 139M 0s +2024-04-29T04:26:47Z #15 2.917 118000K .......... .......... .......... .......... .......... 92% 122M 0s +2024-04-29T04:26:47Z #15 2.917 118050K .......... .......... .......... .......... .......... 92% 74.0M 0s +2024-04-29T04:26:47Z #15 2.917 118100K .......... .......... .......... .......... .......... 92% 138M 0s +2024-04-29T04:26:47Z #15 2.917 118150K .......... .......... .......... .......... .......... 92% 130M 0s +2024-04-29T04:26:47Z #15 2.917 118200K .......... .......... .......... .......... .......... 92% 47.3M 0s +2024-04-29T04:26:47Z #15 2.920 118250K .......... .......... .......... .......... .......... 92% 110M 0s +2024-04-29T04:26:47Z #15 2.920 118300K .......... .......... .......... .......... .......... 92% 138M 0s +2024-04-29T04:26:47Z #15 2.920 118350K .......... .......... .......... .......... .......... 92% 139M 0s +2024-04-29T04:26:47Z #15 2.920 118400K .......... .......... .......... .......... .......... 92% 106M 0s +2024-04-29T04:26:47Z #15 2.920 118450K .......... .......... .......... .......... .......... 92% 56.1M 0s +2024-04-29T04:26:47Z #15 2.920 118500K .......... .......... .......... .......... .......... 92% 115M 0s +2024-04-29T04:26:47Z #15 2.920 118550K .......... .......... .......... .......... .......... 92% 150M 0s +2024-04-29T04:26:47Z #15 2.920 118600K .......... .......... .......... .......... .......... 92% 96.1M 0s +2024-04-29T04:26:47Z #15 2.921 118650K .......... .......... .......... .......... .......... 92% 52.3M 0s +2024-04-29T04:26:47Z #15 2.922 118700K .......... .......... .......... .......... .......... 92% 55.4M 0s +2024-04-29T04:26:47Z #15 2.924 118750K .......... .......... .......... .......... .......... 92% 153M 0s +2024-04-29T04:26:47Z #15 2.924 118800K .......... .......... .......... .......... .......... 93% 113M 0s +2024-04-29T04:26:47Z #15 2.924 118850K .......... .......... .......... .......... .......... 93% 126M 0s +2024-04-29T04:26:47Z #15 2.924 118900K .......... .......... .......... .......... .......... 93% 72.8M 0s +2024-04-29T04:26:47Z #15 2.924 118950K .......... .......... .......... .......... .......... 93% 66.1M 0s +2024-04-29T04:26:47Z #15 2.925 119000K .......... .......... .......... .......... .......... 93% 48.4M 0s +2024-04-29T04:26:47Z #15 2.926 119050K .......... .......... .......... .......... .......... 93% 69.9M 0s +2024-04-29T04:26:47Z #15 2.928 119100K .......... .......... .......... .......... .......... 93% 115M 0s +2024-04-29T04:26:47Z #15 2.928 119150K .......... .......... .......... .......... .......... 93% 73.7M 0s +2024-04-29T04:26:47Z #15 2.928 119200K .......... .......... .......... .......... .......... 93% 111M 0s +2024-04-29T04:26:47Z #15 2.928 119250K .......... .......... .......... .......... .......... 93% 57.5M 0s +2024-04-29T04:26:47Z #15 2.929 119300K .......... .......... .......... .......... .......... 93% 72.9M 0s +2024-04-29T04:26:47Z #15 2.933 119350K .......... .......... .......... .......... .......... 93% 163M 0s +2024-04-29T04:26:47Z #15 2.933 119400K .......... .......... .......... .......... .......... 93% 71.4M 0s +2024-04-29T04:26:47Z #15 2.933 119450K .......... .......... .......... .......... .......... 93% 102M 0s +2024-04-29T04:26:47Z #15 2.933 119500K .......... .......... .......... .......... .......... 93% 135M 0s +2024-04-29T04:26:47Z #15 2.933 119550K .......... .......... .......... .......... .......... 93% 126M 0s +2024-04-29T04:26:47Z #15 2.933 119600K .......... .......... .......... .......... .......... 93% 62.0M 0s +2024-04-29T04:26:47Z #15 2.936 119650K .......... .......... .......... .......... .......... 93% 164M 0s +2024-04-29T04:26:47Z #15 2.936 119700K .......... .......... .......... .......... .......... 93% 158M 0s +2024-04-29T04:26:47Z #15 2.936 119750K .......... .......... .......... .......... .......... 93% 121M 0s +2024-04-29T04:26:47Z #15 2.936 119800K .......... .......... .......... .......... .......... 93% 52.7M 0s +2024-04-29T04:26:47Z #15 2.936 119850K .......... .......... .......... .......... .......... 93% 125M 0s +2024-04-29T04:26:47Z #15 2.936 119900K .......... .......... .......... .......... .......... 93% 96.5M 0s +2024-04-29T04:26:47Z #15 2.936 119950K .......... .......... .......... .......... .......... 93% 132M 0s +2024-04-29T04:26:47Z #15 2.936 120000K .......... .......... .......... .......... .......... 93% 125M 0s +2024-04-29T04:26:47Z #15 2.936 120050K .......... .......... .......... .......... .......... 93% 45.7M 0s +2024-04-29T04:26:47Z #15 2.938 120100K .......... .......... .......... .......... .......... 94% 47.7M 0s +2024-04-29T04:26:47Z #15 2.938 120150K .......... .......... .......... .......... .......... 94% 76.8M 0s +2024-04-29T04:26:47Z #15 2.940 120200K .......... .......... .......... .......... .......... 94% 133M 0s +2024-04-29T04:26:47Z #15 2.940 120250K .......... .......... .......... .......... .......... 94% 56.6M 0s +2024-04-29T04:26:47Z #15 2.940 120300K .......... .......... .......... .......... .......... 94% 49.2M 0s +2024-04-29T04:26:47Z #15 2.941 120350K .......... .......... .......... .......... .......... 94% 55.4M 0s +2024-04-29T04:26:47Z #15 2.942 120400K .......... .......... .......... .......... .......... 94% 51.8M 0s +2024-04-29T04:26:47Z #15 2.944 120450K .......... .......... .......... .......... .......... 94% 146M 0s +2024-04-29T04:26:47Z #15 2.944 120500K .......... .......... .......... .......... .......... 94% 63.0M 0s +2024-04-29T04:26:47Z #15 2.944 120550K .......... .......... .......... .......... .......... 94% 123M 0s +2024-04-29T04:26:47Z #15 2.945 120600K .......... .......... .......... .......... .......... 94% 132M 0s +2024-04-29T04:26:47Z #15 2.946 120650K .......... .......... .......... .......... .......... 94% 139M 0s +2024-04-29T04:26:47Z #15 2.946 120700K .......... .......... .......... .......... .......... 94% 106M 0s +2024-04-29T04:26:47Z #15 2.946 120750K .......... .......... .......... .......... .......... 94% 74.5M 0s +2024-04-29T04:26:47Z #15 2.947 120800K .......... .......... .......... .......... .......... 94% 130M 0s +2024-04-29T04:26:47Z #15 2.947 120850K .......... .......... .......... .......... .......... 94% 108M 0s +2024-04-29T04:26:47Z #15 2.948 120900K .......... .......... .......... .......... .......... 94% 135M 0s +2024-04-29T04:26:47Z #15 2.948 120950K .......... .......... .......... .......... .......... 94% 61.5M 0s +2024-04-29T04:26:47Z #15 2.949 121000K .......... .......... .......... .......... .......... 94% 109M 0s +2024-04-29T04:26:47Z #15 2.949 121050K .......... .......... .......... .......... .......... 94% 108M 0s +2024-04-29T04:26:48Z #15 2.949 121100K .......... .......... .......... .......... .......... 94% 84.6M 0s +2024-04-29T04:26:48Z #15 2.958 121150K .......... .......... .......... .......... .......... 94% 123M 0s +2024-04-29T04:26:48Z #15 2.958 121200K .......... .......... .......... .......... .......... 94% 124M 0s +2024-04-29T04:26:48Z #15 2.958 121250K .......... .......... .......... .......... .......... 94% 176M 0s +2024-04-29T04:26:48Z #15 2.958 121300K .......... .......... .......... .......... .......... 94% 144M 0s +2024-04-29T04:26:48Z #15 2.958 121350K .......... .......... .......... .......... .......... 94% 183M 0s +2024-04-29T04:26:48Z #15 2.958 121400K .......... .......... .......... .......... .......... 95% 56.7M 0s +2024-04-29T04:26:48Z #15 2.958 121450K .......... .......... .......... .......... .......... 95% 119M 0s +2024-04-29T04:26:48Z #15 2.958 121500K .......... .......... .......... .......... .......... 95% 160M 0s +2024-04-29T04:26:48Z #15 2.958 121550K .......... .......... .......... .......... .......... 95% 177M 0s +2024-04-29T04:26:48Z #15 2.958 121600K .......... .......... .......... .......... .......... 95% 133M 0s +2024-04-29T04:26:48Z #15 2.958 121650K .......... .......... .......... .......... .......... 95% 65.0M 0s +2024-04-29T04:26:48Z #15 2.958 121700K .......... .......... .......... .......... .......... 95% 179M 0s +2024-04-29T04:26:48Z #15 2.958 121750K .......... .......... .......... .......... .......... 95% 121M 0s +2024-04-29T04:26:48Z #15 2.958 121800K .......... .......... .......... .......... .......... 95% 176M 0s +2024-04-29T04:26:48Z #15 2.958 121850K .......... .......... .......... .......... .......... 95% 158M 0s +2024-04-29T04:26:48Z #15 2.958 121900K .......... .......... .......... .......... .......... 95% 147M 0s +2024-04-29T04:26:48Z #15 2.958 121950K .......... .......... .......... .......... .......... 95% 52.9M 0s +2024-04-29T04:26:48Z #15 2.958 122000K .......... .......... .......... .......... .......... 95% 131M 0s +2024-04-29T04:26:48Z #15 2.958 122050K .......... .......... .......... .......... .......... 95% 114M 0s +2024-04-29T04:26:48Z #15 2.958 122100K .......... .......... .......... .......... .......... 95% 137M 0s +2024-04-29T04:26:48Z #15 2.959 122150K .......... .......... .......... .......... .......... 95% 121M 0s +2024-04-29T04:26:48Z #15 2.959 122200K .......... .......... .......... .......... .......... 95% 61.4M 0s +2024-04-29T04:26:48Z #15 2.960 122250K .......... .......... .......... .......... .......... 95% 81.1M 0s +2024-04-29T04:26:48Z #15 2.960 122300K .......... .......... .......... .......... .......... 95% 99.4M 0s +2024-04-29T04:26:48Z #15 2.961 122350K .......... .......... .......... .......... .......... 95% 106M 0s +2024-04-29T04:26:48Z #15 2.961 122400K .......... .......... .......... .......... .......... 95% 48.6M 0s +2024-04-29T04:26:48Z #15 2.965 122450K .......... .......... .......... .......... .......... 95% 116M 0s +2024-04-29T04:26:48Z #15 2.965 122500K .......... .......... .......... .......... .......... 95% 128M 0s +2024-04-29T04:26:48Z #15 2.965 122550K .......... .......... .......... .......... .......... 95% 122M 0s +2024-04-29T04:26:48Z #15 2.965 122600K .......... .......... .......... .......... .......... 95% 68.5M 0s +2024-04-29T04:26:48Z #15 2.965 122650K .......... .......... .......... .......... .......... 96% 102M 0s +2024-04-29T04:26:48Z #15 2.968 122700K .......... .......... .......... .......... .......... 96% 96.7M 0s +2024-04-29T04:26:48Z #15 2.968 122750K .......... .......... .......... .......... .......... 96% 116M 0s +2024-04-29T04:26:48Z #15 2.968 122800K .......... .......... .......... .......... .......... 96% 66.6M 0s +2024-04-29T04:26:48Z #15 2.968 122850K .......... .......... .......... .......... .......... 96% 123M 0s +2024-04-29T04:26:48Z #15 2.968 122900K .......... .......... .......... .......... .......... 96% 103M 0s +2024-04-29T04:26:48Z #15 2.968 122950K .......... .......... .......... .......... .......... 96% 103M 0s +2024-04-29T04:26:48Z #15 2.968 123000K .......... .......... .......... .......... .......... 96% 61.5M 0s +2024-04-29T04:26:48Z #15 2.968 123050K .......... .......... .......... .......... .......... 96% 90.7M 0s +2024-04-29T04:26:48Z #15 2.971 123100K .......... .......... .......... .......... .......... 96% 128M 0s +2024-04-29T04:26:48Z #15 2.971 123150K .......... .......... .......... .......... .......... 96% 99.7M 0s +2024-04-29T04:26:48Z #15 2.971 123200K .......... .......... .......... .......... .......... 96% 70.3M 0s +2024-04-29T04:26:48Z #15 2.971 123250K .......... .......... .......... .......... .......... 96% 89.9M 0s +2024-04-29T04:26:48Z #15 2.977 123300K .......... .......... .......... .......... .......... 96% 71.3M 0s +2024-04-29T04:26:48Z #15 2.977 123350K .......... .......... .......... .......... .......... 96% 106M 0s +2024-04-29T04:26:48Z #15 2.977 123400K .......... .......... .......... .......... .......... 96% 116M 0s +2024-04-29T04:26:48Z #15 2.977 123450K .......... .......... .......... .......... .......... 96% 68.3M 0s +2024-04-29T04:26:48Z #15 2.977 123500K .......... .......... .......... .......... .......... 96% 129M 0s +2024-04-29T04:26:48Z #15 2.977 123550K .......... .......... .......... .......... .......... 96% 113M 0s +2024-04-29T04:26:48Z #15 2.977 123600K .......... .......... .......... .......... .......... 96% 68.5M 0s +2024-04-29T04:26:48Z #15 2.977 123650K .......... .......... .......... .......... .......... 96% 93.8M 0s +2024-04-29T04:26:48Z #15 2.977 123700K .......... .......... .......... .......... .......... 96% 127M 0s +2024-04-29T04:26:48Z #15 2.977 123750K .......... .......... .......... .......... .......... 96% 125M 0s +2024-04-29T04:26:48Z #15 2.977 123800K .......... .......... .......... .......... .......... 96% 40.3M 0s +2024-04-29T04:26:48Z #15 2.978 123850K .......... .......... .......... .......... .......... 96% 63.4M 0s +2024-04-29T04:26:48Z #15 2.980 123900K .......... .......... .......... .......... .......... 96% 176M 0s +2024-04-29T04:26:48Z #15 2.980 123950K .......... .......... .......... .......... .......... 97% 135M 0s +2024-04-29T04:26:48Z #15 2.980 124000K .......... .......... .......... .......... .......... 97% 86.6M 0s +2024-04-29T04:26:48Z #15 2.980 124050K .......... .......... .......... .......... .......... 97% 98.8M 0s +2024-04-29T04:26:48Z #15 2.980 124100K .......... .......... .......... .......... .......... 97% 102M 0s +2024-04-29T04:26:48Z #15 2.980 124150K .......... .......... .......... .......... .......... 97% 150M 0s +2024-04-29T04:26:48Z #15 2.980 124200K .......... .......... .......... .......... .......... 97% 34.6M 0s +2024-04-29T04:26:48Z #15 2.982 124250K .......... .......... .......... .......... .......... 97% 59.9M 0s +2024-04-29T04:26:48Z #15 2.985 124300K .......... .......... .......... .......... .......... 97% 157M 0s +2024-04-29T04:26:48Z #15 2.985 124350K .......... .......... .......... .......... .......... 97% 170M 0s +2024-04-29T04:26:48Z #15 2.985 124400K .......... .......... .......... .......... .......... 97% 150M 0s +2024-04-29T04:26:48Z #15 2.985 124450K .......... .......... .......... .......... .......... 97% 57.2M 0s +2024-04-29T04:26:48Z #15 2.985 124500K .......... .......... .......... .......... .......... 97% 36.1M 0s +2024-04-29T04:26:48Z #15 2.986 124550K .......... .......... .......... .......... .......... 97% 132M 0s +2024-04-29T04:26:48Z #15 2.988 124600K .......... .......... .......... .......... .......... 97% 147M 0s +2024-04-29T04:26:48Z #15 2.988 124650K .......... .......... .......... .......... .......... 97% 117M 0s +2024-04-29T04:26:48Z #15 2.988 124700K .......... .......... .......... .......... .......... 97% 65.3M 0s +2024-04-29T04:26:48Z #15 2.988 124750K .......... .......... .......... .......... .......... 97% 92.9M 0s +2024-04-29T04:26:48Z #15 2.988 124800K .......... .......... .......... .......... .......... 97% 107M 0s +2024-04-29T04:26:48Z #15 2.989 124850K .......... .......... .......... .......... .......... 97% 12.7M 0s +2024-04-29T04:26:48Z #15 2.997 124900K .......... .......... .......... .......... .......... 97% 64.6M 0s +2024-04-29T04:26:48Z #15 2.997 124950K .......... .......... .......... .......... .......... 97% 126M 0s +2024-04-29T04:26:48Z #15 2.997 125000K .......... .......... .......... .......... .......... 97% 110M 0s +2024-04-29T04:26:48Z #15 2.997 125050K .......... .......... .......... .......... .......... 97% 138M 0s +2024-04-29T04:26:48Z #15 2.997 125100K .......... .......... .......... .......... .......... 97% 105M 0s +2024-04-29T04:26:48Z #15 2.997 125150K .......... .......... .......... .......... .......... 97% 64.7M 0s +2024-04-29T04:26:48Z #15 2.997 125200K .......... .......... .......... .......... .......... 98% 107M 0s +2024-04-29T04:26:48Z #15 2.997 125250K .......... .......... .......... .......... .......... 98% 28.3M 0s +2024-04-29T04:26:48Z #15 2.999 125300K .......... .......... .......... .......... .......... 98% 19.1M 0s +2024-04-29T04:26:48Z #15 3.005 125350K .......... .......... .......... .......... .......... 98% 49.8M 0s +2024-04-29T04:26:48Z #15 3.005 125400K .......... .......... .......... .......... .......... 98% 115M 0s +2024-04-29T04:26:48Z #15 3.005 125450K .......... .......... .......... .......... .......... 98% 110M 0s +2024-04-29T04:26:48Z #15 3.005 125500K .......... .......... .......... .......... .......... 98% 116M 0s +2024-04-29T04:26:48Z #15 3.005 125550K .......... .......... .......... .......... .......... 98% 91.6M 0s +2024-04-29T04:26:48Z #15 3.005 125600K .......... .......... .......... .......... .......... 98% 55.3M 0s +2024-04-29T04:26:48Z #15 3.005 125650K .......... .......... .......... .......... .......... 98% 135M 0s +2024-04-29T04:26:48Z #15 3.006 125700K .......... .......... .......... .......... .......... 98% 12.2M 0s +2024-04-29T04:26:48Z #15 3.012 125750K .......... .......... .......... .......... .......... 98% 101M 0s +2024-04-29T04:26:48Z #15 3.012 125800K .......... .......... .......... .......... .......... 98% 114M 0s +2024-04-29T04:26:48Z #15 3.012 125850K .......... .......... .......... .......... .......... 98% 59.5M 0s +2024-04-29T04:26:48Z #15 3.012 125900K .......... .......... .......... .......... .......... 98% 104M 0s +2024-04-29T04:26:48Z #15 3.012 125950K .......... .......... .......... .......... .......... 98% 123M 0s +2024-04-29T04:26:48Z #15 3.012 126000K .......... .......... .......... .......... .......... 98% 105M 0s +2024-04-29T04:26:48Z #15 3.012 126050K .......... .......... .......... .......... .......... 98% 83.3M 0s +2024-04-29T04:26:48Z #15 3.012 126100K .......... .......... .......... .......... .......... 98% 42.2M 0s +2024-04-29T04:26:48Z #15 3.014 126150K .......... .......... .......... .......... .......... 98% 47.1M 0s +2024-04-29T04:26:48Z #15 3.015 126200K .......... .......... .......... .......... .......... 98% 52.3M 0s +2024-04-29T04:26:48Z #15 3.016 126250K .......... .......... .......... .......... .......... 98% 33.0M 0s +2024-04-29T04:26:48Z #15 3.021 126300K .......... .......... .......... .......... .......... 98% 111M 0s +2024-04-29T04:26:48Z #15 3.021 126350K .......... .......... .......... .......... .......... 98% 133M 0s +2024-04-29T04:26:48Z #15 3.021 126400K .......... .......... .......... .......... .......... 98% 105M 0s +2024-04-29T04:26:48Z #15 3.021 126450K .......... .......... .......... .......... .......... 98% 115M 0s +2024-04-29T04:26:48Z #15 3.021 126500K .......... .......... .......... .......... .......... 99% 120M 0s +2024-04-29T04:26:48Z #15 3.021 126550K .......... .......... .......... .......... .......... 99% 113M 0s +2024-04-29T04:26:48Z #15 3.021 126600K .......... .......... .......... .......... .......... 99% 110M 0s +2024-04-29T04:26:48Z #15 3.021 126650K .......... .......... .......... .......... .......... 99% 125M 0s +2024-04-29T04:26:48Z #15 3.021 126700K .......... .......... .......... .......... .......... 99% 128M 0s +2024-04-29T04:26:48Z #15 3.022 126750K .......... .......... .......... .......... .......... 99% 20.5M 0s +2024-04-29T04:26:48Z #15 3.025 126800K .......... .......... .......... .......... .......... 99% 107M 0s +2024-04-29T04:26:48Z #15 3.025 126850K .......... .......... .......... .......... .......... 99% 122M 0s +2024-04-29T04:26:48Z #15 3.025 126900K .......... .......... .......... .......... .......... 99% 123M 0s +2024-04-29T04:26:48Z #15 3.025 126950K .......... .......... .......... .......... .......... 99% 27.4M 0s +2024-04-29T04:26:48Z #15 3.027 127000K .......... .......... .......... .......... .......... 99% 35.6M 0s +2024-04-29T04:26:48Z #15 3.029 127050K .......... .......... .......... .......... .......... 99% 130M 0s +2024-04-29T04:26:48Z #15 3.029 127100K .......... .......... .......... .......... .......... 99% 111M 0s +2024-04-29T04:26:48Z #15 3.029 127150K .......... .......... .......... .......... .......... 99% 127M 0s +2024-04-29T04:26:48Z #15 3.029 127200K .......... .......... .......... .......... .......... 99% 13.7M 0s +2024-04-29T04:26:48Z #15 3.037 127250K .......... .......... .......... .......... .......... 99% 110M 0s +2024-04-29T04:26:48Z #15 3.037 127300K .......... .......... .......... .......... .......... 99% 105M 0s +2024-04-29T04:26:48Z #15 3.037 127350K .......... .......... .......... .......... .......... 99% 128M 0s +2024-04-29T04:26:48Z #15 3.037 127400K .......... .......... .......... .......... .......... 99% 119M 0s +2024-04-29T04:26:48Z #15 3.037 127450K .......... .......... .......... .......... .......... 99% 124M 0s +2024-04-29T04:26:48Z #15 3.037 127500K .......... .......... .......... .......... .......... 99% 105M 0s +2024-04-29T04:26:48Z #15 3.037 127550K .......... .......... .......... .......... .......... 99% 132M 0s +2024-04-29T04:26:48Z #15 3.037 127600K .......... .......... .......... .......... .......... 99% 125M 0s +2024-04-29T04:26:48Z #15 3.037 127650K .......... .......... .......... .......... .......... 99% 104M 0s +2024-04-29T04:26:48Z #15 3.037 127700K .......... .......... .......... .......... .......... 99% 143M 0s +2024-04-29T04:26:48Z #15 3.037 127750K .......... .......... .......... .......... . 100% 23.2M=1.7s +2024-04-29T04:26:48Z #15 3.039 +2024-04-29T04:26:48Z #15 3.039 2024-04-29 04:26:47 (74.5 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [130857988/130857988] +2024-04-29T04:26:48Z #15 3.039 +2024-04-29T04:26:51Z #15 6.416 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.5/globusconnectpersonal' +2024-04-29T04:26:51Z #15 6.439 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-04-29T04:26:52Z #15 DONE 7.9s +2024-04-29T04:26:52Z +2024-04-29T04:26:52Z #16 exporting to image +2024-04-29T04:26:52Z #16 exporting layers +2024-04-29T04:29:36Z #16 exporting layers 163.7s done +2024-04-29T04:29:36Z #16 writing image sha256:3e4682dfa43dc69a49e9769ee5c17799737aee595bbf0195964d4f781a251abe done +2024-04-29T04:29:36Z #16 naming to docker.io/pavics/workflow-tests:py311-240428 done +2024-04-29T04:29:36Z #16 DONE 163.7s +2024-04-29T04:29:36Z Pushing index.docker.io/pavics/workflow-tests:py311-240428... +2024-04-29T04:37:34Z Done! +2024-04-29T04:37:34Z Build finished From 2632657d580fc5c0995190dc0101338084790e76 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 1 May 2024 13:24:30 -0400 Subject: [PATCH 081/104] docker: py311-240428: conda env export --- docker/saved_buildout/conda-env-export.yml | 267 ++++++++++----------- 1 file changed, 127 insertions(+), 140 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index ca453f3..61d471d 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -9,7 +9,7 @@ dependencies: - affine=2.4.0=pyhd8ed1ab_0 - aiobotocore=2.12.2=pyhd8ed1ab_0 - aiofiles=22.1.0=pyhd8ed1ab_0 - - aiohttp=3.9.3=py310h2372a71_1 + - aiohttp=3.9.5=py311h459d7ec_0 - aioitertools=0.11.0=pyhd8ed1ab_0 - aiosignal=1.3.1=pyhd8ed1ab_0 - aiosqlite=0.19.0=pyhd8ed1ab_0 @@ -21,12 +21,11 @@ dependencies: - aom=3.5.0=h27087fc_0 - appdirs=1.4.4=pyh9f0ad1d_0 - argon2-cffi=23.1.0=pyhd8ed1ab_0 - - argon2-cffi-bindings=21.2.0=py310h2372a71_4 + - argon2-cffi-bindings=21.2.0=py311h459d7ec_4 - arrow=1.3.0=pyhd8ed1ab_0 - arrow-cpp=11.0.0=ha770c72_14_cpu - asciitree=0.3.3=py_2 - asttokens=2.4.1=pyhd8ed1ab_0 - - async-timeout=4.0.3=pyhd8ed1ab_0 - async_generator=1.10=py_0 - attr=2.5.1=h166bdaf_1 - attrs=23.2.0=pyh71513ae_0 @@ -45,22 +44,22 @@ dependencies: - aws-sdk-cpp=1.10.57=h17c43bd_8 - azure-core-cpp=1.10.3=h22d5011_0 - babel=2.14.0=pyhd8ed1ab_0 - - bcrypt=4.1.2=py310hcb5633a_0 + - bcrypt=4.1.2=py311h46250e7_0 - beautifulsoup4=4.12.3=pyha770c72_0 - bias_correction=0.4=pyhd8ed1ab_0 - birdy=0.8.6=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - - blinker=1.7.0=pyhd8ed1ab_0 + - blinker=1.8.1=pyhd8ed1ab_0 - blosc=1.21.5=h0f2a231_0 - bokeh=3.4.1=pyhd8ed1ab_0 - boltons=24.0.0=pyhd8ed1ab_0 - boost-cpp=1.78.0=h5adbc97_2 - botocore=1.34.51=pyge310_1234567_0 - - bottleneck=1.3.8=py310h1f7b6fc_0 - - branca=0.7.1=pyhd8ed1ab_0 + - bottleneck=1.3.8=py311h1f0f07a_0 + - branca=0.7.2=pyhd8ed1ab_0 - brotli=1.0.9=h166bdaf_9 - brotli-bin=1.0.9=h166bdaf_9 - - brotli-python=1.0.9=py310hd8f1fbe_9 + - brotli-python=1.0.9=py311ha362b79_9 - brunsli=0.1=h9c3ff4c_0 - bzip2=1.0.8=hd590300_5 - c-ares=1.28.1=hd590300_0 @@ -70,19 +69,16 @@ dependencies: - cached_property=1.5.2=pyha770c72_1 - cachetools=5.3.3=pyhd8ed1ab_0 - cairo=1.16.0=ha61ee94_1014 - - cartopy=0.23.0=py310hcc13569_0 + - cartopy=0.23.0=py311h320fe9a_0 - cattrs=23.2.3=pyhd8ed1ab_0 - - cdat_info=8.2.1=pyhd8ed1ab_2 - - cdms2=3.1.5=py310h5f4584e_15 - - cdtime=3.1.4=py310h1a17f1e_7 - certifi=2024.2.2=pyhd8ed1ab_0 - certipy=0.1.3=py_0 - cf_xarray=0.9.0=pyhd8ed1ab_0 - - cffi=1.16.0=py310h2fee648_0 + - cffi=1.16.0=py311hb3a22ac_0 - cfgrib=0.9.11.0=pyhd8ed1ab_0 - cfgv=3.3.1=pyhd8ed1ab_0 - cfitsio=4.2.0=hd9d235c_0 - - cftime=1.6.3=py310h1f7b6fc_0 + - cftime=1.6.3=py311h1f0f07a_0 - charls=2.4.2=h59595ed_0 - charset-normalizer=3.3.2=pyhd8ed1ab_0 - click=8.1.7=unix_pyh707e725_0 @@ -95,29 +91,28 @@ dependencies: - colorcet=3.1.0=pyhd8ed1ab_0 - comm=0.2.2=pyhd8ed1ab_0 - configurable-http-proxy=4.5.4=he2f69ee_2 - - contourpy=1.2.1=py310hd41b1e2_0 - - coverage=7.4.4=py310h2372a71_0 - - cryptography=42.0.2=py310hb8475ec_0 + - contourpy=1.2.1=py311h9547e67_0 + - coverage=7.5.0=py311h331c9d8_0 + - cryptography=42.0.2=py311hcb13ee4_0 - curl=7.88.1=hdc1c0ab_1 - cycler=0.12.1=pyhd8ed1ab_0 - - cytoolz=0.12.3=py310h2372a71_0 + - cytoolz=0.12.3=py311h459d7ec_0 - dash=2.16.1=pyhd8ed1ab_0 - - dask=2024.4.1=pyhd8ed1ab_0 - - dask-core=2024.4.1=pyhd8ed1ab_0 - - dask-expr=1.0.11=pyhd8ed1ab_0 + - dask=2024.4.2=pyhd8ed1ab_0 + - dask-core=2024.4.2=pyhd8ed1ab_0 + - dask-expr=1.0.13=pyhd8ed1ab_0 - dask-labextension=6.2.0=pyhd8ed1ab_0 - dataclasses=0.8=pyhc8e2a94_3 - - datashader=0.16.0=pyhd8ed1ab_0 + - datashader=0.16.1=pyhd8ed1ab_0 - dav1d=1.2.1=hd590300_0 - dbus=1.13.6=h5008d03_3 - - debugpy=1.8.1=py310hc6cd4ac_0 + - debugpy=1.8.1=py311hb755f60_0 - decorator=5.1.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - descartes=1.1.0=py_4 - dill=0.3.8=pyhd8ed1ab_0 - - distarray=2.12.2=pyh050c7b8_4 - distlib=0.3.8=pyhd8ed1ab_0 - - distributed=2024.4.1=pyhd8ed1ab_0 + - distributed=2024.4.2=pyhd8ed1ab_0 - docopt=0.6.2=py_1 - docrep=0.3.2=pyh44b312d_0 - eccodes=2.28.0=h7513371_1 @@ -127,7 +122,7 @@ dependencies: - esgf-compute-api=2.3.9=0_h1234567_ - esgf-pyclient=0.3.1=pyhca7485f_3 - esmf=8.4.0=nompi_hdb2cfa9_4 - - esmpy=8.4.0=nompi_py310h4c636dd_2 + - esmpy=8.4.0=nompi_py311h8e2db7d_2 - et_xmlfile=1.1.0=pyhd8ed1ab_0 - exceptiongroup=1.2.0=pyhd8ed1ab_2 - execnet=2.1.1=pyhd8ed1ab_0 @@ -138,7 +133,7 @@ dependencies: - fftw=3.3.10=nompi_hc118613_108 - filelock=3.13.4=pyhd8ed1ab_0 - findlibs=0.0.5=pyhd8ed1ab_0 - - fiona=1.9.1=py310ha325b7b_0 + - fiona=1.9.1=py311h3f14cef_0 - flask=3.0.3=pyhd8ed1ab_0 - flox=0.9.6=pyhd8ed1ab_0 - fmt=10.2.1=h00ab1b0_0 @@ -150,22 +145,21 @@ dependencies: - fontconfig=2.14.2=h14ed4e7_0 - fonts-conda-ecosystem=1=0 - fonts-conda-forge=1=0 - - fonttools=4.51.0=py310h2372a71_0 + - fonttools=4.51.0=py311h459d7ec_0 - fqdn=1.5.1=pyhd8ed1ab_0 - freeglut=3.2.2=h9c3ff4c_1 - freetype=2.12.1=h267a509_2 - freexl=1.0.6=h166bdaf_1 - - frozenlist=1.4.1=py310h2372a71_0 + - frozenlist=1.4.1=py311h459d7ec_0 - fsspec=2024.3.1=pyhca7485f_0 - funcsigs=1.0.2=py_3 - future=1.0.0=pyhd8ed1ab_0 - - g2clib=1.8.0=ha770c72_6 - gcsfs=2024.3.1=pyhd8ed1ab_0 - - gdal=3.6.2=py310hc1b7723_6 + - gdal=3.6.2=py311hadb6153_6 - geckodriver=0.34.0=h2b8f863_0 - geographiclib=2.0=pyhd8ed1ab_0 - - geopandas=0.14.3=pyhd8ed1ab_0 - - geopandas-base=0.14.3=pyha770c72_0 + - geopandas=0.14.4=pyhd8ed1ab_0 + - geopandas-base=0.14.4=pyha770c72_0 - geopy=2.4.1=pyhd8ed1ab_1 - geos=3.11.1=h27087fc_0 - geotiff=1.7.1=h7a142b4_6 @@ -186,18 +180,18 @@ dependencies: - google-auth-oauthlib=1.2.0=pyhd8ed1ab_0 - google-cloud-core=2.4.1=pyhd8ed1ab_0 - google-cloud-storage=2.16.0=pyhca7485f_0 - - google-crc32c=1.1.2=py310hc5c09a0_5 + - google-crc32c=1.1.2=py311h9b08b9c_5 - google-resumable-media=2.7.0=pyhd8ed1ab_0 - googleapis-common-protos=1.63.0=pyhd8ed1ab_0 - graphite2=1.3.13=h59595ed_1003 - - greenlet=3.0.3=py310hc6cd4ac_0 - - grpcio=1.52.1=py310heca2aa9_1 + - greenlet=3.0.3=py311hb755f60_0 + - grpcio=1.52.1=py311hcafe171_1 - gst-plugins-base=1.22.0=h4243ec0_2 - gstreamer=1.22.0=h25f0c4b_2 - gstreamer-orc=0.4.38=hd590300_0 - h11=0.14.0=pyhd8ed1ab_0 - h5netcdf=1.3.0=pyhd8ed1ab_0 - - h5py=3.8.0=nompi_py310h0311031_100 + - h5py=3.8.0=nompi_py311h1db17ec_100 - harfbuzz=6.0.0=h8e241bc_0 - haversine=2.8.1=pyhd8ed1ab_0 - hdf4=4.2.15=h9772cbc_5 @@ -205,10 +199,10 @@ dependencies: - holoviews=1.18.3=pyhd8ed1ab_0 - hvplot=0.9.2=pyhd8ed1ab_0 - icu=70.1=h27087fc_0 - - identify=2.5.35=pyhd8ed1ab_0 + - identify=2.5.36=pyhd8ed1ab_0 - idna=3.7=pyhd8ed1ab_0 - - imagecodecs=2023.1.23=py310ha3ed6a1_0 - - imageio=2.34.0=pyh4b66e23_0 + - imagecodecs=2023.1.23=py311ha5a3c35_0 + - imageio=2.34.1=pyh4b66e23_0 - impi_rt=2021.12.0=ha770c72_535 - importlib-metadata=7.1.0=pyha770c72_0 - importlib_metadata=7.1.0=hd8ed1ab_0 @@ -220,7 +214,7 @@ dependencies: - intake-thredds=2024.3.1=pyhd8ed1ab_0 - intake-xarray=0.7.0=pyhd8ed1ab_0 - ipykernel=6.29.3=pyhd33586a_0 - - ipyleaflet=0.18.2=pyhd8ed1ab_0 + - ipyleaflet=0.19.0=pyhd8ed1ab_1 - ipython=8.22.2=pyh707e725_0 - ipython_genutils=0.2.0=py_1 - ipywidgets=8.1.2=pyhd8ed1ab_0 @@ -236,7 +230,7 @@ dependencies: - json-c=0.16=hc379101_0 - json5=0.9.25=pyhd8ed1ab_0 - jsonpickle=3.0.4=pyhd8ed1ab_0 - - jsonpointer=2.4=py310hff52083_3 + - jsonpointer=2.4=py311h38be061_3 - jsonschema=4.21.1=pyhd8ed1ab_0 - jsonschema-specifications=2023.12.1=pyhd8ed1ab_0 - jsonschema-with-format-nongpl=4.21.1=pyhd8ed1ab_0 @@ -248,8 +242,9 @@ dependencies: - jupyter_bokeh=3.0.7=pyhd8ed1ab_0 - jupyter_client=7.4.9=pyhd8ed1ab_0 - jupyter_console=6.6.3=pyhd8ed1ab_0 - - jupyter_core=5.7.2=py310hff52083_0 + - jupyter_core=5.7.2=py311h38be061_0 - jupyter_events=0.10.0=pyhd8ed1ab_0 + - jupyter_leaflet=0.19.0=pyhd8ed1ab_1 - jupyter_server=2.14.0=pyhd8ed1ab_0 - jupyter_server_fileid=0.9.1=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_0 @@ -263,19 +258,18 @@ dependencies: - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 - jupyterlab-topbar=0.6.1=pyhd8ed1ab_2 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - - jupyterlab_server=2.26.0=pyhd8ed1ab_0 + - jupyterlab_server=2.27.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - jupytext=1.16.1=pyhd8ed1ab_0 - jxrlib=1.1=hd590300_3 - kealib=1.5.0=ha7026e8_0 - keyutils=1.6.1=h166bdaf_0 - - kiwisolver=1.4.5=py310hd41b1e2_1 + - kiwisolver=1.4.5=py311h9547e67_1 - krb5=1.20.1=h81ceb04_0 - lame=3.100=h166bdaf_1003 - - lazy-object-proxy=1.10.0=py310h2372a71_0 - lazy_loader=0.4=pyhd8ed1ab_0 - lcms2=2.15=hfd0df8a_0 - - ld_impl_linux-64=2.40=h41732ed_0 + - ld_impl_linux-64=2.40=h55db66e_0 - lerc=4.0.0=h27087fc_0 - libabseil=20230125.0=cxx17_hcb278e6_1 - libaec=1.1.3=h59595ed_0 @@ -290,8 +284,6 @@ dependencies: - libbrotlienc=1.0.9=h166bdaf_9 - libcap=2.67=he9d0100_0 - libcblas=3.9.0=22_linux64_openblas - - libcdms=3.1.2=hf94f14b_119 - - libcf=1.0.3=py310hbc577d2_115 - libclang=15.0.7=default_h127d8a8_5 - libclang13=15.0.7=default_h5d6823c_5 - libcrc32c=1.1.2=h9c3ff4c_0 @@ -300,26 +292,24 @@ dependencies: - libdb=6.2.32=h9c3ff4c_0 - libdeflate=1.17=h0b41bf4_0 - libdrm=2.4.120=hd590300_0 - - libdrs=3.1.2=hf593df3_118 - - libdrs_f=3.1.2=h7e76ec7_114 - libedit=3.1.20191231=he28a2e2_2 - libev=4.33=hd590300_2 - libevent=2.1.10=h28343ad_4 - libexpat=2.6.2=h59595ed_0 - libffi=3.4.2=h7f98852_5 - libflac=1.4.3=h59595ed_0 - - libgcc-ng=13.2.0=h807b86a_5 + - libgcc-ng=13.2.0=hc881cc4_6 - libgcrypt=1.10.3=hd590300_0 - libgdal=3.6.2=h8c90c07_6 - libgettextpo=0.22.5=h59595ed_2 - libgettextpo-devel=0.22.5=h59595ed_2 - - libgfortran-ng=13.2.0=h69a702a_5 - - libgfortran5=13.2.0=ha4646dd_5 + - libgfortran-ng=13.2.0=h69a702a_6 + - libgfortran5=13.2.0=h43f5ff8_6 - libglib=2.78.1=hebfc3b9_0 - libglu=9.0.0=he1b5a44_1001 - - libgomp=13.2.0=h807b86a_5 + - libgomp=13.2.0=hc881cc4_6 - libgoogle-cloud=2.8.0=h0bc5f78_1 - - libgpg-error=1.48=h71f35ed_0 + - libgpg-error=1.49=h4f305b6_0 - libgrpc=1.52.1=hcf146ea_1 - libiconv=1.17=hd590300_2 - libidn2=2.3.7=hd590300_0 @@ -349,7 +339,7 @@ dependencies: - libspatialite=5.0.1=h221c8f1_23 - libsqlite=3.45.3=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libstdcxx-ng=13.2.0=h7e041cc_5 + - libstdcxx-ng=13.2.0=h95c4c6d_6 - libsystemd0=253=h8c4010b_1 - libtasn1=4.19.0=h166bdaf_0 - libthrift=0.18.1=h5e4af38_0 @@ -371,12 +361,12 @@ dependencies: - libzlib=1.2.13=hd590300_5 - libzopfli=1.0.3=h9c3ff4c_0 - linkify-it-py=2.0.3=pyhd8ed1ab_0 - - llvmlite=0.42.0=py310h1b8f574_1 + - llvmlite=0.42.0=py311ha6695c7_1 - lmoments3=1.0.6=pyhd8ed1ab_0 - locket=1.0.0=pyhd8ed1ab_0 - - loguru=0.7.2=py310hff52083_1 - - lxml=4.9.2=py310hbdc0903_0 - - lz4=4.3.3=py310h350c4a5_0 + - loguru=0.7.2=py311h38be061_1 + - lxml=4.9.2=py311h14a6109_0 + - lz4=4.3.3=py311h38e4bf4_0 - lz4-c=1.9.4=hcb278e6_0 - lzo=2.10=hd590300_1001 - mako=1.3.3=pyhd8ed1ab_0 @@ -384,9 +374,9 @@ dependencies: - mapclassify=2.6.1=pyhd8ed1ab_0 - markdown=3.6=pyhd8ed1ab_0 - markdown-it-py=3.0.0=pyhd8ed1ab_0 - - markupsafe=2.1.5=py310h2372a71_0 - - matplotlib=3.8.4=py310hff52083_0 - - matplotlib-base=3.8.4=py310h62c0568_0 + - markupsafe=2.1.5=py311h459d7ec_0 + - matplotlib=3.8.4=py311h38be061_0 + - matplotlib-base=3.8.4=py311h54ef318_0 - matplotlib-inline=0.1.7=pyhd8ed1ab_0 - mdit-py-plugins=0.4.0=pyhd8ed1ab_0 - mdurl=0.1.2=pyhd8ed1ab_0 @@ -396,11 +386,11 @@ dependencies: - mistune=3.0.2=pyhd8ed1ab_0 - mpg123=1.32.6=h59595ed_0 - mpi=1.0=impi - - mpi4py=3.1.6=py310h45b48a2_0 - - msgpack-python=1.0.7=py310hd41b1e2_0 - - multidict=6.0.5=py310h2372a71_0 + - mpi4py=3.1.6=py311he9ffdee_0 + - msgpack-python=1.0.7=py311h9547e67_0 + - multidict=6.0.5=py311h459d7ec_0 - multipledispatch=0.6.0=py_0 - - multiprocess=0.70.16=py310h2372a71_0 + - multiprocess=0.70.16=py311h459d7ec_0 - munch=4.0.0=pyhd8ed1ab_0 - munkres=1.1.4=pyh9f0ad1d_0 - myproxyclient=2.1.1=pyhd8ed1ab_0 @@ -417,12 +407,11 @@ dependencies: - nbresuse=0.4.0=pyhd8ed1ab_0 - nbval=0.11.0=pyhd8ed1ab_0 - nc-time-axis=1.4.1=pyhd8ed1ab_0 - - nceplibs-g2c=1.8.0=h4a0a8e2_6 - ncurses=6.4.20240210=h59595ed_0 - nest-asyncio=1.6.0=pyhd8ed1ab_0 - nested_dict=1.61=pyhd3deb0d_0 - netcdf-fortran=4.6.0=nompi_he1eeb6f_102 - - netcdf4=1.6.2=nompi_py310h55e1e36_100 + - netcdf4=1.6.2=nompi_py311hc6fcf29_100 - nettle=3.9.1=h7ab15ed_0 - networkx=3.3=pyhd8ed1ab_1 - nodeenv=1.8.0=pyhd8ed1ab_0 @@ -431,14 +420,13 @@ dependencies: - notebook-shim=0.2.4=pyhd8ed1ab_0 - nspr=4.35=h27087fc_0 - nss=3.98=h1d7d5a4_0 - - numba=0.59.1=py310h7dc5dd1_0 - - numcodecs=0.12.1=py310hc6cd4ac_0 - - numpy=1.24.4=py310ha4c1d20_0 - - numpy_groupies=0.10.2=pyhd8ed1ab_0 + - numba=0.59.1=py311h96b013e_0 + - numcodecs=0.12.1=py311hb755f60_0 + - numpy=1.24.4=py311h64a7726_0 + - numpy_groupies=0.11.1=pyhd8ed1ab_0 - oauthlib=3.2.2=pyhd8ed1ab_0 - - openblas=0.3.27=pthreads_h7a3da1a_0 - openjpeg=2.5.0=hfec8fc6_2 - - openpyxl=3.1.2=py310h2372a71_1 + - openpyxl=3.1.2=py311h459d7ec_1 - openssl=3.1.5=hd590300_0 - orc=1.8.3=h2f23424_1 - outcome=1.3.0.post0=pyhd8ed1ab_0 @@ -447,10 +435,10 @@ dependencies: - p11-kit=0.24.1=hc5aa10d_0 - packaging=24.0=pyhd8ed1ab_0 - pamela=1.1.0=pyh1a96a4e_0 - - pandas=2.1.4=py310hcc13569_0 + - pandas=2.1.4=py311h320fe9a_0 - pandoc=3.1.13=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - panel=1.4.1=pyhd8ed1ab_0 + - panel=1.4.2=pyhd8ed1ab_0 - param=2.1.0=pyhca7485f_0 - paramiko=3.4.0=pyhd8ed1ab_0 - parquet-cpp=1.5.1=2 @@ -462,14 +450,14 @@ dependencies: - pcre2=10.40=hc3806b6_0 - pexpect=4.9.0=pyhd8ed1ab_0 - pickleshare=0.7.5=py_1003 - - pillow=9.4.0=py310h023d228_1 + - pillow=9.4.0=py311h50def17_1 - pint=0.23=pyhd8ed1ab_0 - pip=24.0=pyhd8ed1ab_0 - pixman=0.43.2=h59595ed_0 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - - platformdirs=4.2.0=pyhd8ed1ab_0 + - platformdirs=4.2.1=pyhd8ed1ab_0 - plotly=5.21.0=pyhd8ed1ab_0 - - pluggy=1.4.0=pyhd8ed1ab_0 + - pluggy=1.5.0=pyhd8ed1ab_0 - ply=3.11=pyhd8ed1ab_2 - pooch=1.8.1=pyhd8ed1ab_0 - poppler=23.01.0=h091648b_0 @@ -484,68 +472,68 @@ dependencies: - prompt_toolkit=3.0.42=hd8ed1ab_0 - properscoring=0.1=py_0 - proto-plus=1.23.0=pyhd8ed1ab_0 - - protobuf=4.21.12=py310heca2aa9_0 + - protobuf=4.21.12=py311hcafe171_0 - pscript=0.7.7=pyhd8ed1ab_0 - - psutil=5.9.8=py310h2372a71_0 + - psutil=5.9.8=py311h459d7ec_0 - pthread-stubs=0.4=h36c2ea0_1001 - ptyprocess=0.7.0=pyhd3deb0d_0 - pulseaudio=16.1=hcb278e6_3 - pulseaudio-client=16.1=h5195f5e_3 - pulseaudio-daemon=16.1=ha8d29e2_3 - pure_eval=0.2.2=pyhd8ed1ab_0 - - pyarrow=11.0.0=py310h633f555_14_cpu + - pyarrow=11.0.0=py311hbdf6286_14_cpu - pyarrow-hotfix=0.6=pyhd8ed1ab_0 - pyasn1=0.6.0=pyhd8ed1ab_0 - pyasn1-modules=0.4.0=pyhd8ed1ab_0 - pycparser=2.22=pyhd8ed1ab_0 - pyct=0.5.0=pyhd8ed1ab_0 - - pycurl=7.45.1=py310h60f9ec7_3 - - pydantic=2.7.0=pyhd8ed1ab_0 - - pydantic-core=2.18.1=py310hcb5633a_0 + - pycurl=7.45.1=py311hae980a4_3 + - pydantic=2.7.1=pyhd8ed1ab_0 + - pydantic-core=2.18.2=py311h5ecf98a_0 - pydap=3.4.0=pyhd8ed1ab_0 - pydeck=0.8.0=pyhd8ed1ab_0 - pygments=2.17.2=pyhd8ed1ab_0 - pyjwt=2.8.0=pyhd8ed1ab_1 - - pykdtree=1.3.12=py310h8a78493_0 + - pykdtree=1.3.12=py311h7c22f60_0 - pymbolic=2022.2=pyhd8ed1ab_0 - pymetalink=6.4=pyhd8ed1ab_0 - - pynacl=1.5.0=py310h2372a71_3 - - pyogrio=0.5.1=py310ha325b7b_0 + - pynacl=1.5.0=py311h459d7ec_3 + - pyogrio=0.5.1=py311h3f14cef_0 - pyopenssl=24.0.0=pyhd8ed1ab_0 - pyparsing=3.1.2=pyhd8ed1ab_0 - - pyproj=3.5.0=py310h15e2413_0 - - pyqt=5.15.9=py310h04931ad_5 - - pyqt5-sip=12.12.2=py310hc6cd4ac_5 + - pyproj=3.5.0=py311h945b3ca_0 + - pyqt=5.15.9=py311hf0fb5b6_5 + - pyqt5-sip=12.12.2=py311hb755f60_5 - pyshp=2.3.1=pyhd8ed1ab_0 - pysocks=1.7.1=pyha2e5f31_6 - - pytest=8.1.1=pyhd8ed1ab_0 + - pytest=8.2.0=pyhd8ed1ab_0 - pytest-xdist=3.5.0=pyhd8ed1ab_0 - - python=3.10.13=hd12c33a_0_cpython + - python=3.11.6=hab00c5b_0_cpython - python-dateutil=2.9.0=pyhd8ed1ab_0 - - python-eccodes=1.5.1=py310h0a54255_0 + - python-eccodes=1.5.1=py311hcb2cf0a_0 - python-fastjsonschema=2.19.1=pyhd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-pptx=0.6.23=pyhd8ed1ab_0 - python-tzdata=2024.1=pyhd8ed1ab_0 - - python_abi=3.10=4_cp310 - - pytools=2024.1.1=pyhd8ed1ab_0 + - python_abi=3.11=4_cp311 + - pytools=2024.1.2=pyhd8ed1ab_0 - pytz=2024.1=pyhd8ed1ab_0 - pyu2f=0.1.5=pyhd8ed1ab_0 - pyviz_comms=2.3.2=pyhd8ed1ab_0 - - pywavelets=1.4.1=py310h1f7b6fc_1 - - pyyaml=6.0.1=py310h2372a71_1 - - pyzmq=24.0.1=py310h330234f_1 + - pywavelets=1.4.1=py311h1f0f07a_1 + - pyyaml=6.0.1=py311h459d7ec_1 + - pyzmq=24.0.1=py311ha4b6469_1 - qt-main=5.15.8=h5d23da1_6 - qtconsole-base=5.5.1=pyha770c72_0 - qtpy=2.4.1=pyhd8ed1ab_0 - - rasterio=1.3.6=py310h3e853a9_0 - - raven-hydro=0.2.4=py310hee4f699_0 - - ravenpy=0.13.0=py310hff52083_0 + - rasterio=1.3.6=py311h567e639_0 + - raven-hydro=0.2.4=py311h64a4d7b_0 + - ravenpy=0.13.0=py311h38be061_0 - rdma-core=51.0=hd3aeb46_0 - re2=2023.02.02=hcb278e6_0 - readline=8.2=h8228510_1 - rechunker=0.5.2=pyhd8ed1ab_1 - - referencing=0.34.0=pyhd8ed1ab_0 + - referencing=0.35.0=pyhd8ed1ab_0 - regionmask=0.12.1=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - requests-cache=1.2.0=pyhd8ed1ab_0 @@ -555,30 +543,30 @@ dependencies: - rfc3339-validator=0.1.4=pyhd8ed1ab_0 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rich=13.7.1=pyhd8ed1ab_0 - - rioxarray=0.15.4=pyhd8ed1ab_0 + - rioxarray=0.15.5=pyhd8ed1ab_0 - roocs-grids=0.1.2=pyhd8ed1ab_0 - - roocs-utils=0.6.7=pyhca7485f_0 - - rpds-py=0.18.0=py310hcb5633a_0 + - roocs-utils=0.6.8=pyhd8ed1ab_0 + - rpds-py=0.18.0=py311h46250e7_0 - rsa=4.9=pyhd8ed1ab_0 - - rtree=1.2.0=py310hbdcdc62_0 - - ruamel.yaml=0.18.6=py310h2372a71_0 - - ruamel.yaml.clib=0.2.8=py310h2372a71_0 + - rtree=1.2.0=py311h3bb2b0f_0 + - ruamel.yaml=0.18.6=py311h459d7ec_0 + - ruamel.yaml.clib=0.2.8=py311h459d7ec_0 - s2n=1.3.41=h3358134_0 - s3fs=2024.3.1=pyhd8ed1ab_0 - - salib=1.4.8=pyhd8ed1ab_0 - - scikit-image=0.22.0=py310hcc13569_2 - - scikit-learn=1.4.2=py310h1fdf081_0 - - scipy=1.13.0=py310hb13e2d6_0 + - salib=1.5.0=pyhd8ed1ab_0 + - scikit-image=0.22.0=py311h320fe9a_2 + - scikit-learn=1.4.2=py311hc009520_0 + - scipy=1.13.0=py311h64a7726_0 - scp=0.14.5=pyhd8ed1ab_0 - seaborn=0.13.2=hd8ed1ab_0 - seaborn-base=0.13.2=pyhd8ed1ab_0 - - selenium=4.19.0=pyhd8ed1ab_0 - - selenium-manager=4.19.0=he8a937b_0 + - selenium=4.20.0=pyhd8ed1ab_0 + - selenium-manager=4.20.0=he8a937b_0 - send2trash=1.8.3=pyh0d859eb_0 - setuptools=69.5.1=pyhd8ed1ab_0 - - shapely=2.0.1=py310h8b84c32_0 + - shapely=2.0.1=py311h0f577a2_0 - simpervisor=1.0.0=pyhd8ed1ab_0 - - sip=6.7.12=py310hc6cd4ac_0 + - sip=6.7.12=py311hb755f60_0 - siphon=0.9=pyhd8ed1ab_2 - six=1.16.0=pyh6c4a22f_0 - smmap=5.0.0=pyhd8ed1ab_0 @@ -588,12 +576,12 @@ dependencies: - sortedcontainers=2.4.0=pyhd8ed1ab_0 - soupsieve=2.5=pyhd8ed1ab_1 - sparse=0.15.1=pyhd8ed1ab_1 - - spdlog=1.12.0=hd2e6256_2 + - spdlog=1.13.0=hd2e6256_0 - spotpy=1.6.2=pyhd8ed1ab_0 - - sqlalchemy=2.0.29=py310h2372a71_0 + - sqlalchemy=2.0.29=py311h459d7ec_0 - sqlite=3.45.3=h2c6b66d_0 - stack_data=0.6.2=pyhd8ed1ab_0 - - statsmodels=0.14.1=py310h1f7b6fc_0 + - statsmodels=0.14.1=py311h1f0f07a_0 - streamlit=1.33.0=pyhd8ed1ab_1 - tblib=3.0.0=pyhd8ed1ab_0 - tenacity=8.2.3=pyhd8ed1ab_0 @@ -602,16 +590,16 @@ dependencies: - threddsclient=0.4.5=pyhca7485f_0 - tifffile=2023.8.12=pyhd8ed1ab_0 - tiledb=2.13.2=hd532e3d_0 - - tinycss2=1.2.1=pyhd8ed1ab_0 + - tinycss2=1.3.0=pyhd8ed1ab_0 - tk=8.6.13=noxft_h4845f30_101 - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.0.1=pyhd8ed1ab_0 - toolz=0.12.1=pyhd8ed1ab_0 - - tornado=6.4=py310h2372a71_0 + - tornado=6.4=py311h459d7ec_0 - tqdm=4.66.2=pyhd8ed1ab_0 - traitlets=5.14.3=pyhd8ed1ab_0 - traittypes=0.2.1=pyh9f0ad1d_2 - - trio=0.25.0=py310hff52083_0 + - trio=0.25.0=py311h38be061_0 - trio-websocket=0.11.1=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20240316=pyhd8ed1ab_0 - typing-extensions=4.11.0=hd8ed1ab_0 @@ -619,32 +607,31 @@ dependencies: - typing_utils=0.1.0=pyhd8ed1ab_0 - tzcode=2024a=h3f72095_0 - tzdata=2024a=h0c530f3_0 - - tzlocal=5.2=py310hff52083_0 + - tzlocal=5.2=py311h38be061_0 - uc-micro-py=1.0.3=pyhd8ed1ab_0 - ucx=1.14.1=h0aa22dc_2 - - ujson=5.9.0=py310hc6cd4ac_0 - - ukkonen=1.0.1=py310hd41b1e2_4 - - unicodedata2=15.1.0=py310h2372a71_0 + - ujson=5.9.0=py311hb755f60_0 + - ukkonen=1.0.1=py311h9547e67_4 - uri-template=1.3.0=pyhd8ed1ab_0 - uriparser=0.9.7=h59595ed_1 - url-normalize=1.4.3=pyhd8ed1ab_0 - urllib3=2.0.7=pyhd8ed1ab_0 - urlpath=1.2.0=pyhd8ed1ab_0 - validators=0.28.1=pyhd8ed1ab_0 - - virtualenv=20.25.3=pyhd8ed1ab_0 + - virtualenv=20.26.0=pyhd8ed1ab_0 - voila=0.5.6=pyhd8ed1ab_0 - - watchdog=4.0.0=py310hff52083_0 + - watchdog=4.0.0=py311h38be061_0 - wcwidth=0.2.13=pyhd8ed1ab_0 - webcolors=1.13=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_2 - webob=1.8.7=pyhd8ed1ab_0 - - websocket-client=1.7.0=pyhd8ed1ab_0 - - websockets=12.0=py310h2372a71_0 + - websocket-client=1.8.0=pyhd8ed1ab_0 + - websockets=12.0=py311h459d7ec_0 - werkzeug=3.0.2=pyhd8ed1ab_0 - wget=1.20.3=ha35d2d1_1 - wheel=0.43.0=pyhd8ed1ab_1 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 - - wrapt=1.16.0=py310h2372a71_0 + - wrapt=1.16.0=py311h459d7ec_0 - wsproto=1.2.0=pyhd8ed1ab_0 - xarray=2023.8.0=pyhd8ed1ab_0 - xcb-util=0.4.0=h516909a_0 @@ -652,11 +639,11 @@ dependencies: - xcb-util-keysyms=0.4.0=h516909a_0 - xcb-util-renderutil=0.3.9=h166bdaf_0 - xcb-util-wm=0.4.1=h516909a_0 - - xclim=0.47.0=py310hff52083_0 + - xclim=0.47.0=py311h38be061_0 - xerces-c=3.2.4=h55805fa_1 - xesmf=0.8.5=pyhd8ed1ab_0 - xeus=3.1.5=h06414e2_0 - - xeus-python=0.15.12=py310hd41b1e2_0 + - xeus-python=0.15.12=py311h9547e67_0 - xeus-python-shell=0.5.0=pyhd8ed1ab_0 - xeus-python-shell-raw=0.5.0=pyhd8ed1ab_0 - xeus-zmq=1.1.1=h6b5a882_1 @@ -691,10 +678,10 @@ dependencies: - xskillscore=0.0.26=pyhd8ed1ab_0 - xyzservices=2024.4.0=pyhd8ed1ab_0 - xz=5.2.6=h166bdaf_0 - - y-py=0.5.9=py310h4426083_0 + - y-py=0.5.9=py311hfe55011_0 - yamale=5.0.0=pyhca7485f_0 - yaml=0.2.5=h7f98852_2 - - yarl=1.9.4=py310h2372a71_0 + - yarl=1.9.4=py311h459d7ec_0 - ypy-websocket=0.8.2=pyhd8ed1ab_0 - zarr=2.17.2=pyhd8ed1ab_0 - zeromq=4.3.5=h59595ed_1 @@ -703,11 +690,11 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - zlib=1.2.13=hd590300_5 - zlib-ng=2.0.7=h0b41bf4_0 - - zstandard=0.22.0=py310h1275a96_0 + - zstandard=0.22.0=py311haa97af0_0 - zstd=1.5.5=hfc55251_0 - pip: - astunparse==1.6.3 - - cairocffi==1.6.1 + - cairocffi==1.7.0 - cairosvg==2.7.1 - colour==0.1.5 - cssselect2==0.7.0 From 2e96dd6d726e341edff04c3dc5ed17fa4e3829a5 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 1 May 2024 13:25:49 -0400 Subject: [PATCH 082/104] docker: py311-240428: initial jenkins, default nb --- .../jenkins-buildlogs-default.txt | 1687 +++++++++-------- 1 file changed, 912 insertions(+), 775 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index 2c81c85..0bcb019 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -1,5 +1,4 @@ Started by user Long Vu -Replayed #294 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -18,11 +17,11 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 +Obtained Jenkinsfile from 393fc67361048209d2e59114c1308bfdf275dca8 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -30,782 +29,920 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 (new-docker-build) -Commit message: "docker: py310-240419: conda env export" +Checking out Revision 393fc67361048209d2e59114c1308bfdf275dca8 (new-docker-build) +Commit message: "docker: document why cdms2 was disabled" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 > git config core.sparsecheckout # timeout=10 - > git checkout -f 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 # timeout=10 - > git rev-list --no-walk 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 # timeout=10 + > git checkout -f 393fc67361048209d2e59114c1308bfdf275dca8 # timeout=10 + > git rev-list --no-walk 393fc67361048209d2e59114c1308bfdf275dca8 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240419 ++ docker inspect -f . pavics/workflow-tests:py311-240428 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240419 cat -$ docker top 92c582eb50d564204deb33d83c67e8561be689fd8307b8e9cdc310bdb6b5aedb -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240428 cat +$ docker top 9fccafeff53ab545c26988df17cd6b63016f456cae3d32d0f7c21ea39092a689 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-20T17:31:51.999Z] Timeout set to expire in 2 hr 0 min +[2024-04-30T14:52:45.920Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-20T17:31:53.006Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-30T14:52:47.015Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-20T17:31:53.362Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-20T17:31:53.362Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-20T17:31:53.362Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-20T17:31:53.362Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-20T17:31:53.362Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-20T17:31:53.362Z] FINCH_BRANCH has been set to 'master' -[2024-04-20T17:31:53.362Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-20T17:31:53.362Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-20T17:31:53.362Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-20T17:31:53.362Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-20T17:31:53.362Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-20T17:31:53.362Z] RAVEN_BRANCH has been set to 'main' -[2024-04-20T17:31:53.362Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-20T17:31:53.362Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-20T17:31:53.362Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-20T17:31:53.362Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-20T17:31:53.362Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-20T17:31:53.362Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-20T17:31:53.363Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-20T17:31:53.363Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-20T17:31:53.363Z] + git clean -fdx -[2024-04-20T17:31:54.312Z] Removing PAVICS-landing-master/ -[2024-04-20T17:31:54.312Z] Removing RavenPy-master/ -[2024-04-20T17:31:54.312Z] Removing __pycache__/ -[2024-04-20T17:31:54.312Z] Removing esgf-compute-api-devel/ -[2024-04-20T17:31:54.312Z] Removing finch-master/ -[2024-04-20T17:31:54.312Z] Removing pavics-sdi-master/ -[2024-04-20T17:31:54.312Z] Removing raven-main/ -[2024-04-20T17:31:54.312Z] + ./downloadrepos -[2024-04-20T17:31:54.312Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-20T17:31:54.312Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-20T17:31:54.312Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-20T17:31:54.312Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-20T17:31:54.312Z] FINCH_BRANCH has been set to 'master' -[2024-04-20T17:31:54.312Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-20T17:31:54.312Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-20T17:31:54.312Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-20T17:31:54.312Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-20T17:31:54.312Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-20T17:31:54.312Z] RAVEN_BRANCH has been set to 'main' -[2024-04-20T17:31:54.312Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-20T17:31:54.312Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-20T17:31:54.312Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-20T17:31:54.312Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-20T17:31:54.312Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-20T17:31:54.312Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-20T17:31:54.312Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-20T17:31:54.312Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-20T17:31:54.312Z] + rm -rf pavics-sdi-* -[2024-04-20T17:31:54.312Z] + ls -[2024-04-20T17:31:54.312Z] + grep pavics-sdi -[2024-04-20T17:31:54.312Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:31:54.312Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-20T17:31:54.312Z] + shift -[2024-04-20T17:31:54.312Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:31:54.312Z] + shift -[2024-04-20T17:31:54.312Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-20T17:31:54.312Z] + tar xz -[2024-04-20T17:31:56.849Z] + ls -[2024-04-20T17:31:56.849Z] + grep pavics-sdi -[2024-04-20T17:31:56.849Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:31:56.849Z] + set +x -[2024-04-20T17:31:56.849Z] + rm -rf finch-* -[2024-04-20T17:31:56.849Z] + grep+ finch -[2024-04-20T17:31:56.849Z] ls -[2024-04-20T17:31:56.849Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-20T17:31:56.849Z] + github_repo=https://github.com/bird-house/finch -[2024-04-20T17:31:56.849Z] + shift -[2024-04-20T17:31:56.849Z] + branch=master -[2024-04-20T17:31:56.849Z] + shift -[2024-04-20T17:31:56.849Z] + tar xz -[2024-04-20T17:31:56.849Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-20T17:31:58.751Z] + grep finch -[2024-04-20T17:31:58.751Z] + ls -[2024-04-20T17:31:58.751Z] finch-master -[2024-04-20T17:31:58.751Z] + set +x -[2024-04-20T17:31:58.751Z] + rm -rf PAVICS-landing-* -[2024-04-20T17:31:58.751Z] + ls -[2024-04-20T17:31:58.751Z] + grep PAVICS-landing -[2024-04-20T17:31:58.751Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:31:58.751Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-20T17:31:58.751Z] + shift -[2024-04-20T17:31:58.751Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:31:58.751Z] + shift -[2024-04-20T17:31:58.751Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-20T17:31:58.751Z] + tar xz -[2024-04-20T17:32:08.713Z] + ls -[2024-04-20T17:32:08.713Z] + grep PAVICS-landing -[2024-04-20T17:32:08.713Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:32:08.713Z] + set +x -[2024-04-20T17:32:08.713Z] + rm -rf raven-* -[2024-04-20T17:32:08.713Z] + ls -[2024-04-20T17:32:08.713Z] + grep raven -[2024-04-20T17:32:08.713Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-20T17:32:08.713Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-20T17:32:08.713Z] + shift -[2024-04-20T17:32:08.713Z] + branch=main -[2024-04-20T17:32:08.713Z] + shift -[2024-04-20T17:32:08.713Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-20T17:32:08.713Z] + tar xz -[2024-04-20T17:32:10.083Z] + ls -[2024-04-20T17:32:10.083Z] + grep raven -[2024-04-20T17:32:10.083Z] raven-main -[2024-04-20T17:32:10.083Z] + set +x -[2024-04-20T17:32:10.083Z] + rm -rf RavenPy-* -[2024-04-20T17:32:10.083Z] + ls -[2024-04-20T17:32:10.083Z] + grep RavenPy -[2024-04-20T17:32:10.083Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-20T17:32:10.083Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-20T17:32:10.083Z] + shift -[2024-04-20T17:32:10.083Z] + branch=master -[2024-04-20T17:32:10.083Z] + shift -[2024-04-20T17:32:10.083Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-20T17:32:10.083Z] + tar xz -[2024-04-20T17:32:11.981Z] + ls -[2024-04-20T17:32:11.981Z] + grep RavenPy -[2024-04-20T17:32:11.981Z] RavenPy-master -[2024-04-20T17:32:11.981Z] + set +x -[2024-04-20T17:32:11.981Z] + rm -rf esgf-compute-api-* -[2024-04-20T17:32:11.981Z] + ls -[2024-04-20T17:32:11.981Z] + grep esgf-compute-api -[2024-04-20T17:32:11.981Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-20T17:32:11.981Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-20T17:32:11.981Z] + shift -[2024-04-20T17:32:11.981Z] + branch=devel -[2024-04-20T17:32:11.981Z] + shift -[2024-04-20T17:32:11.981Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-20T17:32:11.981Z] + tar xz -[2024-04-20T17:32:12.547Z] + ls -[2024-04-20T17:32:12.547Z] + grep esgf-compute-api -[2024-04-20T17:32:12.547Z] esgf-compute-api-devel -[2024-04-20T17:32:12.547Z] + set +x -[2024-04-20T17:32:12.547Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:32:12.547Z] + sed s@/@-@g -[2024-04-20T17:32:12.547Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:32:12.547Z] + echo Ouranosinc/pavics-sdi -[2024-04-20T17:32:12.547Z] + sed s@^.*/@@g -[2024-04-20T17:32:12.547Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-20T17:32:12.547Z] + echo master -[2024-04-20T17:32:12.547Z] + sed s@/@-@g -[2024-04-20T17:32:12.547Z] + FINCH_BRANCH=master -[2024-04-20T17:32:12.547Z] + echo bird-house/finch -[2024-04-20T17:32:12.547Z] + sed s@^.*/@@g -[2024-04-20T17:32:12.547Z] + FINCH_REPO_NAME=finch -[2024-04-20T17:32:12.547Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:32:12.547Z] + sed s@/@-@g -[2024-04-20T17:32:12.547Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:32:12.547Z] + + echo Ouranosinc/PAVICS-landing -[2024-04-20T17:32:12.547Z] sed s@^.*/@@g -[2024-04-20T17:32:12.547Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-20T17:32:12.547Z] + + echosed main s@/@-@g -[2024-04-20T17:32:12.547Z] -[2024-04-20T17:32:12.547Z] + RAVEN_BRANCH=main -[2024-04-20T17:32:12.547Z] + + sed s@^.*/@@g -[2024-04-20T17:32:12.547Z] echo Ouranosinc/raven -[2024-04-20T17:32:12.547Z] + RAVEN_REPO_NAME=raven -[2024-04-20T17:32:12.547Z] + sed s@/@-@g -[2024-04-20T17:32:12.547Z] + echo master -[2024-04-20T17:32:12.547Z] + RAVENPY_BRANCH=master -[2024-04-20T17:32:12.547Z] + sed s@^.*/@@g -[2024-04-20T17:32:12.547Z] + echo CSHS-CWRA/RavenPy -[2024-04-20T17:32:12.809Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-20T17:32:12.809Z] + sed+ s@/@-@g -[2024-04-20T17:32:12.810Z] echo devel -[2024-04-20T17:32:12.810Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-20T17:32:12.810Z] + echo ESGF/esgf-compute-api -[2024-04-20T17:32:12.810Z] + sed s@^.*/@@g -[2024-04-20T17:32:12.810Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-20T17:32:12.810Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-20T17:32:12.810Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:32:12.810Z] + echo finch-master -[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-20T17:32:12.810Z] + FINCH_DIR=finch-master -[2024-04-20T17:32:12.810Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-20T17:32:12.810Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-20T17:32:12.810Z] + echo raven-main -[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-20T17:32:12.810Z] + RAVEN_DIR=raven-main -[2024-04-20T17:32:12.810Z] + echo RavenPy-master -[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-20T17:32:12.810Z] + RAVENPY_DIR=RavenPy-master -[2024-04-20T17:32:12.810Z] + echo esgf-compute-api-devel -[2024-04-20T17:32:12.810Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-20T17:32:12.810Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-20T17:32:12.810Z] + echo true -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + VERIFY_SSL=true -[2024-04-20T17:32:12.810Z] + [ xtrue = xfalse ] -[2024-04-20T17:32:12.810Z] + rm -v finch-master/setup.cfg -[2024-04-20T17:32:12.810Z] removed 'finch-master/setup.cfg' -[2024-04-20T17:32:12.810Z] + rm -v raven-main/setup.cfg -[2024-04-20T17:32:12.810Z] removed 'raven-main/setup.cfg' -[2024-04-20T17:32:12.810Z] + rm -v raven-main/pyproject.toml -[2024-04-20T17:32:12.810Z] removed 'raven-main/pyproject.toml' -[2024-04-20T17:32:12.810Z] + rm -v RavenPy-master/setup.cfg -[2024-04-20T17:32:12.810Z] removed 'RavenPy-master/setup.cfg' -[2024-04-20T17:32:12.810Z] + rm -v RavenPy-master/tox.ini -[2024-04-20T17:32:12.810Z] removed 'RavenPy-master/tox.ini' -[2024-04-20T17:32:12.810Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-20T17:32:12.810Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-20T17:32:12.810Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-20T17:32:12.810Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-20T17:32:12.810Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-20T17:32:12.810Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-20T17:32:12.810Z] + echo false -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + TEST_MAGPIE_AUTH=false -[2024-04-20T17:32:12.810Z] + echo true -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + TEST_PAVICS_SDI_REPO=true -[2024-04-20T17:32:12.810Z] + echo false -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-20T17:32:12.810Z] + echo true -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + TEST_FINCH_REPO=true -[2024-04-20T17:32:12.810Z] + echo true -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + TEST_PAVICS_LANDING_REPO=true -[2024-04-20T17:32:12.810Z] + echo false -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + TEST_RAVEN_REPO=false -[2024-04-20T17:32:12.810Z] + echo false -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + TEST_RAVENPY_REPO=false -[2024-04-20T17:32:12.810Z] + echo false -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-20T17:32:12.810Z] + echo true -[2024-04-20T17:32:12.810Z] + tr [:upper:] [:lower:] -[2024-04-20T17:32:12.810Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-04-20T17:32:12.810Z] + NOTEBOOKS_TO_TEST= -[2024-04-20T17:32:12.810Z] + [ xfalse = xtrue ] -[2024-04-20T17:32:12.810Z] + [ xtrue = xtrue ] -[2024-04-20T17:32:12.810Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb -[2024-04-20T17:32:12.810Z] + [ xfalse = xtrue ] -[2024-04-20T17:32:12.810Z] + [ xtrue = xtrue ] -[2024-04-20T17:32:12.810Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-04-20T17:32:12.810Z] + [ xtrue = xtrue ] -[2024-04-20T17:32:12.810Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb -[2024-04-20T17:32:12.810Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-20T17:32:12.810Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-04-20T17:32:12.810Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-20T17:32:12.810Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-20T17:32:12.810Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-20T17:32:12.810Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-20T17:32:12.810Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators -[2024-04-20T17:32:12.810Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-20T17:32:12.810Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-20T17:32:12.810Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-04-20T17:32:12.810Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:12.810Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.071Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.072Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.072Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.333Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-20T17:32:13.593Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-04-20T17:32:13.593Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-04-20T17:32:13.593Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-04-20T17:32:13.593Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' -[2024-04-20T17:32:13.593Z] + [ xfalse = xtrue ] -[2024-04-20T17:32:13.593Z] + [ xfalse = xtrue ] -[2024-04-20T17:32:13.594Z] + [ xfalse = xtrue ] -[2024-04-20T17:32:13.594Z] + [ xtrue = xtrue ] -[2024-04-20T17:32:13.594Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-20T17:32:13.594Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-20T17:32:13.594Z] + [ -n ] -[2024-04-20T17:32:13.594Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-20T17:32:13.594Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-20T17:32:13.594Z] Will run notebooks against pavics.ouranos.ca -[2024-04-20T17:32:13.594Z] + [ -z ] -[2024-04-20T17:32:13.594Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-04-20T17:32:13.854Z] + git diff -[2024-04-20T17:32:13.854Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-20T17:32:13.854Z] + [ -n ] -[2024-04-20T17:32:13.855Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-04-20T17:32:15.764Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-20T17:32:15.764Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-20T17:32:16.342Z] ============================= test session starts ============================== -[2024-04-20T17:32:16.342Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-04-20T17:32:16.342Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-04-20T17:32:16.342Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-20T17:32:16.342Z] collected 220 items -[2024-04-20T17:32:16.342Z] -[2024-04-20T17:32:19.642Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] -[2024-04-20T17:32:50.242Z] ..... [ 2%] -[2024-04-20T17:32:52.779Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] -[2024-04-20T17:32:59.823Z] ...... [ 5%] -[2024-04-20T17:33:01.735Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] -[2024-04-20T17:33:08.564Z] ..... [ 8%] -[2024-04-20T17:33:09.505Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] -[2024-04-20T17:33:23.596Z] ....... [ 12%] -[2024-04-20T17:33:31.798Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] -[2024-04-20T17:36:17.031Z] ........... [ 17%] -[2024-04-20T17:36:17.031Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] -[2024-04-20T17:36:23.100Z] ............... [ 25%] -[2024-04-20T17:36:25.635Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] -[2024-04-20T17:36:30.654Z] .... [ 27%] -[2024-04-20T17:36:32.561Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] -[2024-04-20T17:36:37.632Z] ..... [ 30%] -[2024-04-20T17:36:45.738Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] -[2024-04-20T17:36:52.120Z] ..... [ 32%] -[2024-04-20T17:36:54.042Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] -[2024-04-20T17:36:58.710Z] ...... [ 35%] -[2024-04-20T17:37:00.079Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] -[2024-04-20T17:37:02.687Z] .... [ 38%] -[2024-04-20T17:37:20.794Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] -[2024-04-20T17:38:51.046Z] ........................... [ 50%] -[2024-04-20T17:38:51.046Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] -[2024-04-20T17:38:52.940Z] ... [ 52%] -[2024-04-20T17:38:53.877Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] -[2024-04-20T17:39:10.939Z] ........................ [ 64%] -[2024-04-20T17:39:14.350Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] -[2024-04-20T17:39:19.081Z] ..... [ 66%] -[2024-04-20T17:39:28.508Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] -[2024-04-20T17:39:36.803Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] -[2024-04-20T17:39:38.276Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] -[2024-04-20T17:39:41.065Z] ...... [ 77%] -[2024-04-20T17:39:46.338Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] -[2024-04-20T17:39:58.090Z] ............. [ 84%] -[2024-04-20T17:40:06.229Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-04-20T17:40:24.876Z] ....s [ 86%] -[2024-04-20T17:40:31.420Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] -[2024-04-20T17:40:52.790Z] .F. [ 88%] -[2024-04-20T17:41:05.009Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] -[2024-04-20T17:41:54.962Z] ...... [ 91%] -[2024-04-20T17:41:54.962Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-04-20T17:43:55.708Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-04-20T17:43:55.708Z] -[2024-04-20T17:43:55.708Z] =================================== FAILURES =================================== -[2024-04-20T17:43:55.708Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ -[2024-04-20T17:43:55.708Z] Notebook cell execution failed -[2024-04-20T17:43:55.708Z] Cell 2: Cell execution caused an exception -[2024-04-20T17:43:55.708Z] -[2024-04-20T17:43:55.708Z] Input: -[2024-04-20T17:43:55.708Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) -[2024-04-20T17:43:55.708Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) -[2024-04-20T17:43:55.708Z] -[2024-04-20T17:43:55.708Z] chng_f, pos_f = xens.change_significance( -[2024-04-20T17:43:55.708Z] fut.sel(time=fut["time.season"] == "JJA"), -[2024-04-20T17:43:55.708Z] ref.sel(time=ref["time.season"] == "JJA"), -[2024-04-20T17:43:55.708Z] test="ttest", -[2024-04-20T17:43:55.708Z] ) -[2024-04-20T17:43:55.708Z] plt.figure( -[2024-04-20T17:43:55.708Z] figsize=(15, 6), -[2024-04-20T17:43:55.708Z] ) -[2024-04-20T17:43:55.708Z] -[2024-04-20T17:43:55.708Z] plt.subplot(1, 2, 1) -[2024-04-20T17:43:55.708Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-20T17:43:55.708Z] -[2024-04-20T17:43:55.708Z] plt.title(chng_f.description.split(".")[0]) -[2024-04-20T17:43:55.708Z] -[2024-04-20T17:43:55.708Z] plt.subplot(1, 2, 2) -[2024-04-20T17:43:55.708Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-20T17:43:55.708Z] plt.title(pos_f.description.split(".")[0]) -[2024-04-20T17:43:55.708Z] -[2024-04-20T17:43:55.708Z] display() -[2024-04-20T17:43:55.708Z] -[2024-04-20T17:43:55.708Z] Traceback: -[2024-04-20T17:43:55.708Z] -[2024-04-20T17:43:55.708Z] --------------------------------------------------------------------------- -[2024-04-20T17:43:55.708Z] AttributeError Traceback (most recent call last) -[2024-04-20T17:43:55.708Z] Cell In[1], line 20 -[2024-04-20T17:43:55.708Z]  18 plt.subplot(1, 2, 2) -[2024-04-20T17:43:55.709Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-20T17:43:55.709Z] ---> 20 plt.title(pos_f.description.split(".")[0]) -[2024-04-20T17:43:55.709Z]  22 display() -[2024-04-20T17:43:55.709Z] -[2024-04-20T17:43:55.709Z] File /opt/conda/envs/birdy/lib/python3.10/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-04-20T17:43:55.709Z]  275 with suppress(KeyError): -[2024-04-20T17:43:55.709Z]  276 return source[name] -[2024-04-20T17:43:55.709Z] --> 277 raise AttributeError( -[2024-04-20T17:43:55.709Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-04-20T17:43:55.709Z]  279 ) -[2024-04-20T17:43:55.709Z] -[2024-04-20T17:43:55.709Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-04-20T17:43:55.709Z] -[2024-04-20T17:43:55.709Z] =========================== short test summary info ============================ -[2024-04-20T17:43:55.709Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-04-20T17:43:55.709Z] ============= 1 failed, 218 passed, 1 skipped in 693.59s (0:11:33) ============= -[2024-04-20T17:43:55.709Z] + EXIT_CODE=1 -[2024-04-20T17:43:55.709Z] + + echo truetr -[2024-04-20T17:43:55.709Z] [:upper:] [:lower:] -[2024-04-20T17:43:55.709Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-04-20T17:43:55.709Z] + [ xtrue = xtrue ] -[2024-04-20T17:43:55.709Z] + mkdir -p buildout -[2024-04-20T17:43:55.709Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-20T17:43:55.709Z] + filename=CaSR_basic.ipynb -[2024-04-20T17:43:55.709Z] + echo CaSR_basic.ipynb -[2024-04-20T17:43:55.709Z] + sed s/.ipynb$// -[2024-04-20T17:43:55.709Z] + filename=CaSR_basic -[2024-04-20T17:43:55.709Z] + [ -e buildout/CaSR_basic.output.ipynb ] -[2024-04-20T17:43:55.709Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-20T17:43:55.709Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook -[2024-04-20T17:44:27.811Z] [NbConvertApp] Writing 732953 bytes to buildout/CaSR_basic.output.ipynb -[2024-04-20T17:44:27.811Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-20T17:44:27.811Z] + filename=WCS_example.ipynb -[2024-04-20T17:44:27.811Z] + + echo WCS_example.ipynb -[2024-04-20T17:44:27.811Z] sed s/.ipynb$// -[2024-04-20T17:44:27.811Z] + filename=WCS_example -[2024-04-20T17:44:27.811Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-04-20T17:44:27.811Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-20T17:44:27.811Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-04-20T17:44:37.821Z] [NbConvertApp] Writing 144442 bytes to buildout/WCS_example.output.ipynb -[2024-04-20T17:44:37.821Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-20T17:44:37.821Z] + filename=WFS_example.ipynb -[2024-04-20T17:44:37.821Z] + echo WFS_example.ipynb -[2024-04-20T17:44:37.821Z] + sed s/.ipynb$// -[2024-04-20T17:44:37.821Z] + filename=WFS_example -[2024-04-20T17:44:37.821Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-04-20T17:44:37.821Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-20T17:44:38.391Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-04-20T17:44:48.436Z] [NbConvertApp] Writing 44573 bytes to buildout/WFS_example.output.ipynb -[2024-04-20T17:44:48.436Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-20T17:44:48.436Z] + filename=WMS_example.ipynb -[2024-04-20T17:44:48.436Z] + echo WMS_example.ipynb -[2024-04-20T17:44:48.437Z] + sed s/.ipynb$// -[2024-04-20T17:44:48.437Z] + filename=WMS_example -[2024-04-20T17:44:48.437Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-04-20T17:44:48.437Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-20T17:44:49.815Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-04-20T17:44:54.003Z] [NbConvertApp] Writing 46204 bytes to buildout/WMS_example.output.ipynb -[2024-04-20T17:44:54.263Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-20T17:44:54.263Z] + filename=climex.ipynb -[2024-04-20T17:44:54.263Z] + echo climex.ipynb -[2024-04-20T17:44:54.263Z] + sed s/.ipynb$// -[2024-04-20T17:44:54.263Z] + filename=climex -[2024-04-20T17:44:54.263Z] + [ -e buildout/climex.output.ipynb ] -[2024-04-20T17:44:54.263Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-20T17:44:56.171Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook -[2024-04-20T17:47:47.744Z] 2024-04-20 17:47:39,817 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat. -[2024-04-20T17:47:47.744Z] Traceback (most recent call last): -[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 225, in read -[2024-04-20T17:47:47.744Z] frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size) -[2024-04-20T17:47:47.744Z] tornado.iostream.StreamClosedError: Stream is closed -[2024-04-20T17:47:47.744Z] -[2024-04-20T17:47:47.744Z] The above exception was the direct cause of the following exception: -[2024-04-20T17:47:47.744Z] -[2024-04-20T17:47:47.744Z] Traceback (most recent call last): -[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/worker.py", line 1252, in heartbeat -[2024-04-20T17:47:47.744Z] response = await retry_operation( -[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 455, in retry_operation -[2024-04-20T17:47:47.744Z] return await retry( -[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/utils_comm.py", line 434, in retry -[2024-04-20T17:47:47.744Z] return await coro() -[2024-04-20T17:47:47.744Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1395, in send_recv_from_rpc -[2024-04-20T17:47:47.744Z] return await send_recv(comm=comm, op=key, **kwargs) -[2024-04-20T17:47:47.745Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/core.py", line 1154, in send_recv -[2024-04-20T17:47:47.745Z] response = await comm.read(deserializers=deserializers) -[2024-04-20T17:47:47.745Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 236, in read -[2024-04-20T17:47:47.745Z] convert_stream_closed_error(self, e) -[2024-04-20T17:47:47.745Z] File "/opt/conda/envs/birdy/lib/python3.10/site-packages/distributed/comm/tcp.py", line 142, in convert_stream_closed_error -[2024-04-20T17:47:47.745Z] raise CommClosedError(f"in {obj}: {exc}") from exc -[2024-04-20T17:47:47.745Z] distributed.comm.core.CommClosedError: in : Stream is closed -[2024-04-20T17:47:47.745Z] [NbConvertApp] Writing 1789387 bytes to buildout/climex.output.ipynb -[2024-04-20T17:47:47.745Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-20T17:47:47.745Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-04-20T17:47:47.745Z] + sed s/.ipynb$// -[2024-04-20T17:47:47.745Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-04-20T17:47:47.745Z] + filename=eccc-geoapi-climate-stations -[2024-04-20T17:47:47.745Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-04-20T17:47:47.745Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-20T17:47:47.745Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-04-20T17:47:57.730Z] [NbConvertApp] Writing 278775 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-04-20T17:47:57.730Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-20T17:47:57.730Z] + filename=eccc-geoapi-xclim.ipynb -[2024-04-20T17:47:57.730Z] + echo eccc-geoapi-xclim.ipynb -[2024-04-20T17:47:57.730Z] + sed s/.ipynb$// -[2024-04-20T17:47:57.730Z] + filename=eccc-geoapi-xclim -[2024-04-20T17:47:57.730Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-04-20T17:47:57.730Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-20T17:47:58.297Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-04-20T17:48:08.281Z] [NbConvertApp] Writing 108216 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-04-20T17:48:08.281Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-20T17:48:08.281Z] + filename=esgf-dap.ipynb -[2024-04-20T17:48:08.281Z] + echo esgf-dap.ipynb -[2024-04-20T17:48:08.281Z] + sed s/.ipynb$// -[2024-04-20T17:48:08.281Z] + filename=esgf-dap -[2024-04-20T17:48:08.281Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-04-20T17:48:08.281Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-20T17:48:09.222Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-04-20T17:48:17.352Z] [NbConvertApp] Writing 63632 bytes to buildout/esgf-dap.output.ipynb -[2024-04-20T17:48:17.352Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-20T17:48:17.352Z] + filename=forecasts.ipynb -[2024-04-20T17:48:17.352Z] + echo forecasts.ipynb -[2024-04-20T17:48:17.352Z] + sed s/.ipynb$// -[2024-04-20T17:48:17.352Z] + filename=forecasts -[2024-04-20T17:48:17.352Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-04-20T17:48:17.353Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-20T17:48:18.737Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook -[2024-04-20T17:48:36.833Z] [NbConvertApp] Writing 164981 bytes to buildout/forecasts.output.ipynb -[2024-04-20T17:48:36.833Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-20T17:48:36.833Z] + filename=jupyter_extensions.ipynb -[2024-04-20T17:48:36.833Z] + echo jupyter_extensions.ipynb -[2024-04-20T17:48:36.833Z] + sed s/.ipynb$// -[2024-04-20T17:48:36.833Z] + filename=jupyter_extensions -[2024-04-20T17:48:36.833Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-04-20T17:48:36.833Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-20T17:48:36.833Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-04-20T17:48:38.776Z] [NbConvertApp] Writing 7997 bytes to buildout/jupyter_extensions.output.ipynb -[2024-04-20T17:48:39.094Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-20T17:48:39.094Z] + filename=opendap.ipynb -[2024-04-20T17:48:39.094Z] + echo opendap.ipynb -[2024-04-20T17:48:39.094Z] + sed s/.ipynb$// -[2024-04-20T17:48:39.094Z] + filename=opendap -[2024-04-20T17:48:39.095Z] + [ -e buildout/opendap.output.ipynb ] -[2024-04-20T17:48:39.095Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-20T17:48:40.994Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook -[2024-04-20T17:48:49.125Z] [NbConvertApp] Writing 95160 bytes to buildout/opendap.output.ipynb -[2024-04-20T17:48:49.125Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-20T17:48:49.125Z] + filename=pavics_thredds.ipynb -[2024-04-20T17:48:49.125Z] + + echo pavics_thredds.ipynb -[2024-04-20T17:48:49.125Z] sed s/.ipynb$// -[2024-04-20T17:48:49.125Z] + filename=pavics_thredds -[2024-04-20T17:48:49.125Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-04-20T17:48:49.125Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-20T17:48:50.507Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-04-20T17:48:53.875Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-20T17:48:53.876Z] context: Access to service is forbidden. -[2024-04-20T17:48:53.876Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-20T17:48:53.876Z] context: Access to service is forbidden. -[2024-04-20T17:48:55.789Z] [NbConvertApp] Writing 90750 bytes to buildout/pavics_thredds.output.ipynb -[2024-04-20T17:48:56.049Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-20T17:48:56.049Z] + filename=regridding.ipynb -[2024-04-20T17:48:56.049Z] + echo regridding.ipynb -[2024-04-20T17:48:56.049Z] + sed s/.ipynb$// -[2024-04-20T17:48:56.049Z] + filename=regridding -[2024-04-20T17:48:56.049Z] + [ -e buildout/regridding.output.ipynb ] -[2024-04-20T17:48:56.049Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-20T17:48:57.960Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook -[2024-04-20T17:50:34.413Z] [NbConvertApp] Writing 1239619 bytes to buildout/regridding.output.ipynb -[2024-04-20T17:50:34.413Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-20T17:50:34.413Z] + filename=rendering.ipynb -[2024-04-20T17:50:34.413Z] + echo rendering.ipynb -[2024-04-20T17:50:34.413Z] + sed s/.ipynb$// -[2024-04-20T17:50:34.413Z] + filename=rendering -[2024-04-20T17:50:34.413Z] + [ -e buildout/rendering.output.ipynb ] -[2024-04-20T17:50:34.413Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-20T17:50:34.413Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook -[2024-04-20T17:50:36.947Z] [NbConvertApp] Writing 11801 bytes to buildout/rendering.output.ipynb -[2024-04-20T17:50:37.204Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-20T17:50:37.204Z] + filename=subset-user-input.ipynb -[2024-04-20T17:50:37.205Z] + echo subset-user-input.ipynb -[2024-04-20T17:50:37.205Z] + sed s/.ipynb$// -[2024-04-20T17:50:37.205Z] + filename=subset-user-input -[2024-04-20T17:50:37.205Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-04-20T17:50:37.205Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-20T17:50:39.112Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-04-20T17:51:01.052Z] [NbConvertApp] Writing 255279 bytes to buildout/subset-user-input.output.ipynb -[2024-04-20T17:51:01.053Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-20T17:51:01.053Z] + filename=subsetting.ipynb -[2024-04-20T17:51:01.053Z] + echo subsetting.ipynb -[2024-04-20T17:51:01.053Z] + sed s/.ipynb$// -[2024-04-20T17:51:01.053Z] + filename=subsetting -[2024-04-20T17:51:01.053Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-04-20T17:51:01.053Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-20T17:51:01.053Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook -[2024-04-20T17:51:11.040Z] [NbConvertApp] Writing 93312 bytes to buildout/subsetting.output.ipynb -[2024-04-20T17:51:11.040Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-20T17:51:11.040Z] + filename=dap_subset.ipynb -[2024-04-20T17:51:11.040Z] + echo dap_subset.ipynb -[2024-04-20T17:51:11.040Z] + sed s/.ipynb$// -[2024-04-20T17:51:11.040Z] + filename=dap_subset -[2024-04-20T17:51:11.040Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-04-20T17:51:11.040Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-20T17:51:12.422Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-04-20T17:51:22.405Z] [NbConvertApp] Writing 162914 bytes to buildout/dap_subset.output.ipynb -[2024-04-20T17:51:22.405Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-20T17:51:22.405Z] + filename=finch-usage.ipynb -[2024-04-20T17:51:22.405Z] + echo finch-usage.ipynb -[2024-04-20T17:51:22.405Z] + sed s/.ipynb$// -[2024-04-20T17:51:22.405Z] + filename=finch-usage -[2024-04-20T17:51:22.405Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-04-20T17:51:22.405Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-20T17:51:24.312Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-04-20T17:51:36.524Z] [NbConvertApp] Writing 65073 bytes to buildout/finch-usage.output.ipynb -[2024-04-20T17:51:36.524Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-20T17:51:36.524Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-20T17:51:36.524Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-20T17:51:36.524Z] + sed s/.ipynb$// -[2024-04-20T17:51:36.524Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-04-20T17:51:36.524Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-04-20T17:51:36.524Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-20T17:51:36.780Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-04-20T17:51:42.050Z] [NbConvertApp] Writing 173053 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-04-20T17:51:42.307Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-20T17:51:42.307Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-20T17:51:42.307Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-20T17:51:42.307Z] + sed s/.ipynb$// -[2024-04-20T17:51:42.307Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-04-20T17:51:42.307Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-04-20T17:51:42.307Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-20T17:51:44.211Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-04-20T17:52:02.301Z] [NbConvertApp] Writing 1481291 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-04-20T17:52:02.301Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-20T17:52:02.301Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-20T17:52:02.301Z] + + sed s/.ipynb$// -[2024-04-20T17:52:02.301Z] echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-20T17:52:02.301Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-04-20T17:52:02.301Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-04-20T17:52:02.301Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-20T17:52:03.693Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-04-20T18:01:10.464Z] [NbConvertApp] Writing 577400 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb -[2024-04-20T18:01:10.464Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-20T18:01:10.464Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-20T18:01:10.464Z] + + sed s/.ipynb$// -[2024-04-20T18:01:10.464Z] echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-20T18:01:10.464Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-04-20T18:01:10.464Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-04-20T18:01:10.464Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-20T18:01:10.464Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-04-20T18:01:32.434Z] [NbConvertApp] Writing 782792 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-04-20T18:01:32.434Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-20T18:01:32.434Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-20T18:01:32.434Z] + sed s/.ipynb$// -[2024-04-20T18:01:32.434Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-20T18:01:32.434Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-04-20T18:01:32.434Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-04-20T18:01:32.434Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-20T18:01:32.694Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-04-20T18:02:40.402Z] [NbConvertApp] Writing 1051937 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-04-20T18:02:40.402Z] + basename notebooks/hummingbird.ipynb -[2024-04-20T18:02:40.402Z] + filename=hummingbird.ipynb -[2024-04-20T18:02:40.402Z] + echo hummingbird.ipynb -[2024-04-20T18:02:40.402Z] + sed s/.ipynb$// -[2024-04-20T18:02:40.402Z] + filename=hummingbird -[2024-04-20T18:02:40.402Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-04-20T18:02:40.402Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-04-20T18:02:40.402Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-04-20T18:02:40.665Z] [NbConvertApp] Writing 15951 bytes to buildout/hummingbird.output.ipynb -[2024-04-20T18:02:40.665Z] + basename notebooks/stress-tests.ipynb -[2024-04-20T18:02:40.665Z] + filename=stress-tests.ipynb -[2024-04-20T18:02:40.665Z] + echo stress-tests.ipynb -[2024-04-20T18:02:40.665Z] + sed s/.ipynb$// -[2024-04-20T18:02:40.665Z] + filename=stress-tests -[2024-04-20T18:02:40.665Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-04-20T18:02:40.665Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-04-20T18:02:42.578Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-04-20T18:04:49.079Z] [NbConvertApp] Writing 428563 bytes to buildout/stress-tests.output.ipynb -[2024-04-20T18:04:49.079Z] + exit 1 -[2024-04-20T18:04:49.079Z] + EXIT_CODE=1 -[2024-04-20T18:04:49.079Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-04-20T18:04:49.079Z] + mkdir -p buildout/env-dump -[2024-04-20T18:04:49.079Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-04-20T18:04:49.079Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-04-20T18:04:49.079Z] + conda env export -n birdy -[2024-04-20T18:04:52.369Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-20T18:04:52.369Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-20T18:04:52.369Z] + conda list -n birdy --explicit -[2024-04-20T18:05:04.584Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-20T18:05:04.584Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-20T18:05:04.584Z] + pip freeze -[2024-04-20T18:05:04.584Z] + exit 1 +[2024-04-30T14:52:47.641Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-30T14:52:47.641Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-30T14:52:47.641Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-30T14:52:47.641Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-30T14:52:47.641Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-30T14:52:47.641Z] FINCH_BRANCH has been set to 'master' +[2024-04-30T14:52:47.641Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-30T14:52:47.641Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-30T14:52:47.641Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-30T14:52:47.641Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-30T14:52:47.641Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-30T14:52:47.641Z] RAVEN_BRANCH has been set to 'main' +[2024-04-30T14:52:47.641Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-30T14:52:47.641Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-30T14:52:47.641Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-30T14:52:47.641Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-30T14:52:47.641Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-30T14:52:47.641Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-30T14:52:47.641Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-30T14:52:47.641Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-30T14:52:47.641Z] + git clean -fdx +[2024-04-30T14:52:50.933Z] Removing .pytest_cache/ +[2024-04-30T14:52:50.933Z] Removing PAVICS-landing-master/ +[2024-04-30T14:52:50.933Z] Removing RavenPy-master/ +[2024-04-30T14:52:50.933Z] Removing __pycache__/ +[2024-04-30T14:52:50.933Z] Removing buildout/ +[2024-04-30T14:52:50.933Z] Removing esgf-compute-api-devel/ +[2024-04-30T14:52:50.933Z] Removing finch-master/ +[2024-04-30T14:52:50.933Z] Removing pavics-sdi-master/ +[2024-04-30T14:52:50.933Z] Removing raven-main/ +[2024-04-30T14:52:50.933Z] + ./downloadrepos +[2024-04-30T14:52:50.933Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-04-30T14:52:50.933Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-30T14:52:50.933Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-30T14:52:50.933Z] TEST_FINCH_REPO has been set to 'true' +[2024-04-30T14:52:50.933Z] FINCH_BRANCH has been set to 'master' +[2024-04-30T14:52:50.933Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-30T14:52:50.933Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-04-30T14:52:50.933Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-04-30T14:52:50.933Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-30T14:52:50.933Z] TEST_RAVEN_REPO has been set to 'false' +[2024-04-30T14:52:50.933Z] RAVEN_BRANCH has been set to 'main' +[2024-04-30T14:52:50.933Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-30T14:52:50.933Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-04-30T14:52:50.933Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-30T14:52:50.933Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-30T14:52:50.933Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-30T14:52:50.933Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-30T14:52:50.934Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-30T14:52:50.934Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-04-30T14:52:50.934Z] + rm -rf pavics-sdi-* +[2024-04-30T14:52:50.934Z] + ls +[2024-04-30T14:52:50.934Z] + grep pavics-sdi +[2024-04-30T14:52:50.934Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:52:50.934Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-30T14:52:50.934Z] + shift +[2024-04-30T14:52:50.934Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:52:50.934Z] + shift +[2024-04-30T14:52:50.934Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-30T14:52:50.934Z] + tar xz +[2024-04-30T14:52:54.223Z] + ls +[2024-04-30T14:52:54.223Z] + grep pavics-sdi +[2024-04-30T14:52:54.223Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:52:54.223Z] + set +x +[2024-04-30T14:52:54.223Z] + rm -rf finch-* +[2024-04-30T14:52:54.223Z] + ls +[2024-04-30T14:52:54.223Z] + grep finch +[2024-04-30T14:52:54.223Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-30T14:52:54.223Z] + github_repo=https://github.com/bird-house/finch +[2024-04-30T14:52:54.223Z] + shift +[2024-04-30T14:52:54.223Z] + branch=master +[2024-04-30T14:52:54.223Z] + shift +[2024-04-30T14:52:54.223Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-30T14:52:54.223Z] + tar xz +[2024-04-30T14:52:55.600Z] + ls +[2024-04-30T14:52:55.600Z] + grep finch +[2024-04-30T14:52:55.600Z] finch-master +[2024-04-30T14:52:55.600Z] + set +x +[2024-04-30T14:52:55.600Z] + rm -rf PAVICS-landing-* +[2024-04-30T14:52:55.600Z] + ls +[2024-04-30T14:52:55.600Z] + grep PAVICS-landing +[2024-04-30T14:52:55.600Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:52:55.600Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-30T14:52:55.600Z] + shift +[2024-04-30T14:52:55.600Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:52:55.600Z] + shift +[2024-04-30T14:52:55.600Z] + + tar xz +[2024-04-30T14:52:55.600Z] wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-04-30T14:53:05.559Z] + ls +[2024-04-30T14:53:05.559Z] + grep PAVICS-landing +[2024-04-30T14:53:05.559Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:53:05.559Z] + set +x +[2024-04-30T14:53:05.559Z] + rm -rf raven-* +[2024-04-30T14:53:05.559Z] + ls +[2024-04-30T14:53:05.559Z] + grep raven +[2024-04-30T14:53:05.559Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-30T14:53:05.559Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-30T14:53:05.559Z] + shift +[2024-04-30T14:53:05.559Z] + branch=main +[2024-04-30T14:53:05.559Z] + shift +[2024-04-30T14:53:05.559Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-30T14:53:05.559Z] + tar xz +[2024-04-30T14:53:05.821Z] + ls +[2024-04-30T14:53:05.821Z] + grep raven +[2024-04-30T14:53:05.821Z] raven-main +[2024-04-30T14:53:05.821Z] + set +x +[2024-04-30T14:53:05.821Z] + rm -rf RavenPy-* +[2024-04-30T14:53:05.821Z] + ls +[2024-04-30T14:53:05.821Z] + grep RavenPy +[2024-04-30T14:53:05.821Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-30T14:53:05.821Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-30T14:53:05.821Z] + shift +[2024-04-30T14:53:05.821Z] + branch=master +[2024-04-30T14:53:05.821Z] + shift +[2024-04-30T14:53:05.821Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-30T14:53:05.821Z] + tar xz +[2024-04-30T14:53:07.725Z] + ls +[2024-04-30T14:53:07.725Z] + grep RavenPy +[2024-04-30T14:53:07.725Z] RavenPy-master +[2024-04-30T14:53:07.725Z] + set +x +[2024-04-30T14:53:07.725Z] + rm -rf esgf-compute-api-* +[2024-04-30T14:53:07.725Z] + ls +[2024-04-30T14:53:07.725Z] + grep esgf-compute-api +[2024-04-30T14:53:07.725Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-30T14:53:07.725Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-30T14:53:07.725Z] + shift +[2024-04-30T14:53:07.725Z] + branch=devel +[2024-04-30T14:53:07.725Z] + shift +[2024-04-30T14:53:07.726Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-30T14:53:07.726Z] + tar xz +[2024-04-30T14:53:08.658Z] + ls +[2024-04-30T14:53:08.658Z] + grep esgf-compute-api +[2024-04-30T14:53:08.658Z] esgf-compute-api-devel +[2024-04-30T14:53:08.658Z] + set +x +[2024-04-30T14:53:08.658Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:53:08.658Z] + sed s@/@-@g +[2024-04-30T14:53:08.658Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:53:08.658Z] + echo Ouranosinc/pavics-sdi +[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g +[2024-04-30T14:53:08.658Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-30T14:53:08.658Z] + echo master +[2024-04-30T14:53:08.658Z] + sed s@/@-@g +[2024-04-30T14:53:08.658Z] + FINCH_BRANCH=master +[2024-04-30T14:53:08.658Z] + echo bird-house/finch +[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g +[2024-04-30T14:53:08.658Z] + FINCH_REPO_NAME=finch +[2024-04-30T14:53:08.658Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:53:08.658Z] + sed s@/@-@g +[2024-04-30T14:53:08.658Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:53:08.658Z] + echo Ouranosinc/PAVICS-landing +[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g +[2024-04-30T14:53:08.658Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-30T14:53:08.658Z] + echo main +[2024-04-30T14:53:08.658Z] + sed s@/@-@g +[2024-04-30T14:53:08.658Z] + RAVEN_BRANCH=main +[2024-04-30T14:53:08.658Z] + echo Ouranosinc/raven +[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g +[2024-04-30T14:53:08.658Z] + RAVEN_REPO_NAME=raven +[2024-04-30T14:53:08.658Z] + echo master +[2024-04-30T14:53:08.658Z] + sed s@/@-@g +[2024-04-30T14:53:08.658Z] + RAVENPY_BRANCH=master +[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g +[2024-04-30T14:53:08.658Z] + echo CSHS-CWRA/RavenPy +[2024-04-30T14:53:08.658Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-30T14:53:08.658Z] + echo devel +[2024-04-30T14:53:08.658Z] + sed s@/@-@g +[2024-04-30T14:53:08.658Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-30T14:53:08.658Z] + echo ESGF/esgf-compute-api +[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g +[2024-04-30T14:53:08.658Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-30T14:53:08.658Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:53:08.658Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:53:08.658Z] + echo finch-master +[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:53:08.658Z] + FINCH_DIR=finch-master +[2024-04-30T14:53:08.658Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:53:08.658Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-04-30T14:53:08.658Z] + echo raven-main +[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:53:08.658Z] + RAVEN_DIR=raven-main +[2024-04-30T14:53:08.658Z] + echo RavenPy-master +[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:53:08.658Z] + RAVENPY_DIR=RavenPy-master +[2024-04-30T14:53:08.658Z] + echo esgf-compute-api-devel +[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:53:08.658Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-30T14:53:08.658Z] + echo true +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + VERIFY_SSL=true +[2024-04-30T14:53:08.658Z] + [ xtrue = xfalse ] +[2024-04-30T14:53:08.658Z] + rm -v finch-master/setup.cfg +[2024-04-30T14:53:08.658Z] removed 'finch-master/setup.cfg' +[2024-04-30T14:53:08.658Z] + rm -v raven-main/setup.cfg +[2024-04-30T14:53:08.658Z] removed 'raven-main/setup.cfg' +[2024-04-30T14:53:08.658Z] + rm -v raven-main/pyproject.toml +[2024-04-30T14:53:08.658Z] removed 'raven-main/pyproject.toml' +[2024-04-30T14:53:08.658Z] + rm -v RavenPy-master/setup.cfg +[2024-04-30T14:53:08.658Z] removed 'RavenPy-master/setup.cfg' +[2024-04-30T14:53:08.658Z] + rm -v RavenPy-master/tox.ini +[2024-04-30T14:53:08.658Z] removed 'RavenPy-master/tox.ini' +[2024-04-30T14:53:08.658Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-30T14:53:08.658Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-30T14:53:08.658Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-30T14:53:08.658Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-30T14:53:08.658Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-30T14:53:08.658Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-30T14:53:08.658Z] + echo false +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + TEST_MAGPIE_AUTH=false +[2024-04-30T14:53:08.658Z] + echo true +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + TEST_PAVICS_SDI_REPO=true +[2024-04-30T14:53:08.658Z] + echo false +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-30T14:53:08.658Z] + echo true +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + TEST_FINCH_REPO=true +[2024-04-30T14:53:08.658Z] + echo true +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + TEST_PAVICS_LANDING_REPO=true +[2024-04-30T14:53:08.658Z] + echo false +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + TEST_RAVEN_REPO=false +[2024-04-30T14:53:08.658Z] + echo false +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + TEST_RAVENPY_REPO=false +[2024-04-30T14:53:08.658Z] + echo false +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-30T14:53:08.658Z] + echo true +[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] +[2024-04-30T14:53:08.658Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-04-30T14:53:08.658Z] + NOTEBOOKS_TO_TEST= +[2024-04-30T14:53:08.658Z] + [ xfalse = xtrue ] +[2024-04-30T14:53:08.658Z] + [ xtrue = xtrue ] +[2024-04-30T14:53:08.658Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb +[2024-04-30T14:53:08.658Z] + [ xfalse = xtrue ] +[2024-04-30T14:53:08.658Z] + [ xtrue = xtrue ] +[2024-04-30T14:53:08.658Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-04-30T14:53:08.658Z] + [ xtrue = xtrue ] +[2024-04-30T14:53:08.658Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb +[2024-04-30T14:53:08.658Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-30T14:53:08.658Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-04-30T14:53:08.658Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-30T14:53:08.658Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-30T14:53:08.658Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-30T14:53:08.658Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-04-30T14:53:08.658Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators +[2024-04-30T14:53:08.658Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-30T14:53:08.658Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-04-30T14:53:08.659Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-04-30T14:53:08.659Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:08.917Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-04-30T14:53:10.371Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-04-30T14:53:10.371Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-04-30T14:53:10.371Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-04-30T14:53:10.371Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' +[2024-04-30T14:53:10.371Z] + [ xfalse = xtrue ] +[2024-04-30T14:53:10.371Z] + [ xfalse = xtrue ] +[2024-04-30T14:53:10.371Z] + [ xfalse = xtrue ] +[2024-04-30T14:53:10.371Z] + [ xtrue = xtrue ] +[2024-04-30T14:53:10.371Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-30T14:53:10.371Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-04-30T14:53:10.371Z] + [ -n ] +[2024-04-30T14:53:10.371Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-30T14:53:10.371Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-30T14:53:10.371Z] Will run notebooks against pavics.ouranos.ca +[2024-04-30T14:53:10.371Z] + [ -z ] +[2024-04-30T14:53:10.371Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-04-30T14:53:10.371Z] + git diff +[2024-04-30T14:53:10.371Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-30T14:53:10.371Z] + [ -n ] +[2024-04-30T14:53:10.372Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-04-30T14:53:12.901Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-30T14:53:12.901Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-30T14:53:12.901Z] ============================= test session starts ============================== +[2024-04-30T14:53:12.901Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 +[2024-04-30T14:53:12.901Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +[2024-04-30T14:53:12.901Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-30T14:53:12.901Z] collected 220 items +[2024-04-30T14:53:12.901Z] +[2024-04-30T14:53:16.191Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-04-30T14:53:40.397Z] ..... [ 2%] +[2024-04-30T14:53:42.953Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-04-30T14:53:49.038Z] ...... [ 5%] +[2024-04-30T14:53:50.954Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-04-30T14:53:57.422Z] ..... [ 8%] +[2024-04-30T14:53:57.988Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-04-30T14:54:15.736Z] ....... [ 12%] +[2024-04-30T14:54:25.939Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] +[2024-04-30T14:56:55.134Z] ....F..F... [ 17%] +[2024-04-30T14:56:55.398Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-04-30T14:57:04.001Z] ............... [ 25%] +[2024-04-30T14:57:07.282Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-04-30T14:57:12.555Z] .... [ 27%] +[2024-04-30T14:57:14.453Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] +[2024-04-30T14:57:56.352Z] ..... [ 30%] +[2024-04-30T14:58:04.482Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-04-30T14:58:11.367Z] ..... [ 32%] +[2024-04-30T14:58:12.749Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] +[2024-04-30T14:58:15.824Z] ...... [ 35%] +[2024-04-30T14:58:16.754Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-04-30T14:58:21.680Z] .... [ 38%] +[2024-04-30T14:58:39.789Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-04-30T15:00:05.535Z] ........................... [ 50%] +[2024-04-30T15:00:05.535Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-04-30T15:00:06.755Z] ... [ 52%] +[2024-04-30T15:00:07.700Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-04-30T15:00:25.841Z] ........................ [ 64%] +[2024-04-30T15:00:29.122Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-04-30T15:00:33.541Z] ..... [ 66%] +[2024-04-30T15:00:42.016Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] +[2024-04-30T15:00:50.187Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-04-30T15:00:51.127Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-04-30T15:00:54.192Z] ...... [ 77%] +[2024-04-30T15:01:00.736Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] +[2024-04-30T15:01:12.254Z] ............. [ 84%] +[2024-04-30T15:01:24.443Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-04-30T15:01:42.335Z] .F..s [ 86%] +[2024-04-30T15:01:50.444Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-04-30T15:02:11.025Z] .F. [ 88%] +[2024-04-30T15:02:23.254Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-04-30T15:03:11.947Z] ...... [ 91%] +[2024-04-30T15:03:12.771Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-04-30T15:05:10.141Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] =================================== FAILURES =================================== +[2024-04-30T15:05:10.141Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb::Cell 5 _ +[2024-04-30T15:05:10.141Z] Notebook cell execution failed +[2024-04-30T15:05:10.141Z] Cell 5: Cell outputs differ +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] Input: +[2024-04-30T15:05:10.141Z] ds = xr.open_dataset( +[2024-04-30T15:05:10.141Z] url, chunks=dict(realization=1, time=365, rlat=50 * 3, rlon=50 * 3) +[2024-04-30T15:05:10.141Z] ) +[2024-04-30T15:05:10.141Z] xclim.set_options(check_missing="pct", missing_options={"pct": {"tolerance": 0.05}}) +[2024-04-30T15:05:10.141Z] sdii = xclim.atmos.daily_pr_intensity(pr=ds.pr.sel(time="2000")) +[2024-04-30T15:05:10.141Z] sdii +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] Traceback: +[2024-04-30T15:05:10.141Z] Missing output fields from running code: {'stderr'} +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb::Cell 8 _ +[2024-04-30T15:05:10.141Z] Notebook cell execution failed +[2024-04-30T15:05:10.141Z] Cell 8: Cell outputs differ +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] Input: +[2024-04-30T15:05:10.141Z] # Subset over the Montreal gridpoint +[2024-04-30T15:05:10.141Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) +[2024-04-30T15:05:10.141Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) +[2024-04-30T15:05:10.141Z] print("Input dataset for Montreal :") +[2024-04-30T15:05:10.141Z] display(pt) +[2024-04-30T15:05:10.141Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") +[2024-04-30T15:05:10.141Z] print("Maximim 1-day precipitation `lazy` output ..") +[2024-04-30T15:05:10.141Z] out +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] Traceback: +[2024-04-30T15:05:10.141Z] Missing output fields from running code: {'stderr'} +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 _ +[2024-04-30T15:05:10.141Z] Notebook cell execution failed +[2024-04-30T15:05:10.141Z] Cell 2: Cell outputs differ +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] Input: +[2024-04-30T15:05:10.141Z] import xclim +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] # Access some station data +[2024-04-30T15:05:10.141Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/dodsC/datasets/station_obs/ECCC_AHCCD_gen3_temperature.ncml" +[2024-04-30T15:05:10.141Z] ds_stat = xr.open_dataset(url, chunks=dict(station=1)) +[2024-04-30T15:05:10.141Z] istat = 115 +[2024-04-30T15:05:10.141Z] # Compare use of differernt percent tolerance levels (tolerance == 0.1) +[2024-04-30T15:05:10.141Z] plt.figure(figsize=(15, 10)) +[2024-04-30T15:05:10.141Z] color = ["blue", "green", "orange"] +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] for i, tol in enumerate([0.25, 0.1, 0.05]): +[2024-04-30T15:05:10.141Z] plt.subplot(3, 1, i + 1) +[2024-04-30T15:05:10.141Z] with xclim.set_options( +[2024-04-30T15:05:10.141Z] check_missing="pct", missing_options={"pct": {"tolerance": tol}} +[2024-04-30T15:05:10.141Z] ): +[2024-04-30T15:05:10.141Z] # compute yearly max tasmax +[2024-04-30T15:05:10.141Z] tx_mean = xclim.atmos.tx_mean( +[2024-04-30T15:05:10.141Z] tasmax=ds_stat.isel(station=istat).tasmax, freq="YS" +[2024-04-30T15:05:10.141Z] ) +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] tx_mean.plot( +[2024-04-30T15:05:10.141Z] marker="o", +[2024-04-30T15:05:10.141Z] color=color[i], +[2024-04-30T15:05:10.141Z] label=f"{len(tx_mean.dropna('time').values)} \ +[2024-04-30T15:05:10.141Z] valid years w/ <={tol*100}% missing data", +[2024-04-30T15:05:10.141Z] ) +[2024-04-30T15:05:10.141Z] plt.title("") +[2024-04-30T15:05:10.141Z] plt.xlabel("") +[2024-04-30T15:05:10.141Z] if i == 0: +[2024-04-30T15:05:10.141Z] name = str(ds_stat.isel(station=istat).station_name.values) +[2024-04-30T15:05:10.141Z] plt.title(f"{name.capitalize().replace('_',' ')} Station") +[2024-04-30T15:05:10.141Z] +[2024-04-30T15:05:10.141Z] elif i == 2: +[2024-04-30T15:05:10.142Z] plt.xlabel("time") +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] plt.legend(loc="lower right") +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] Traceback: +[2024-04-30T15:05:10.142Z] Missing output fields from running code: {'stderr'} +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ +[2024-04-30T15:05:10.142Z] Notebook cell execution failed +[2024-04-30T15:05:10.142Z] Cell 2: Cell execution caused an exception +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] Input: +[2024-04-30T15:05:10.142Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) +[2024-04-30T15:05:10.142Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] chng_f, pos_f = xens.change_significance( +[2024-04-30T15:05:10.142Z] fut.sel(time=fut["time.season"] == "JJA"), +[2024-04-30T15:05:10.142Z] ref.sel(time=ref["time.season"] == "JJA"), +[2024-04-30T15:05:10.142Z] test="ttest", +[2024-04-30T15:05:10.142Z] ) +[2024-04-30T15:05:10.142Z] plt.figure( +[2024-04-30T15:05:10.142Z] figsize=(15, 6), +[2024-04-30T15:05:10.142Z] ) +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] plt.subplot(1, 2, 1) +[2024-04-30T15:05:10.142Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] plt.title(chng_f.description.split(".")[0]) +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] plt.subplot(1, 2, 2) +[2024-04-30T15:05:10.142Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-30T15:05:10.142Z] plt.title(pos_f.description.split(".")[0]) +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] display() +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] Traceback: +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] --------------------------------------------------------------------------- +[2024-04-30T15:05:10.142Z] AttributeError Traceback (most recent call last) +[2024-04-30T15:05:10.142Z] Cell In[1], line 20 +[2024-04-30T15:05:10.142Z]  18 plt.subplot(1, 2, 2) +[2024-04-30T15:05:10.142Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) +[2024-04-30T15:05:10.142Z] ---> 20 plt.title(pos_f.description.split(".")[0]) +[2024-04-30T15:05:10.142Z]  22 display() +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) +[2024-04-30T15:05:10.142Z]  275 with suppress(KeyError): +[2024-04-30T15:05:10.142Z]  276 return source[name] +[2024-04-30T15:05:10.142Z] --> 277 raise AttributeError( +[2024-04-30T15:05:10.142Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" +[2024-04-30T15:05:10.142Z]  279 ) +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] AttributeError: 'Dataset' object has no attribute 'description' +[2024-04-30T15:05:10.142Z] +[2024-04-30T15:05:10.142Z] =========================== short test summary info ============================ +[2024-04-30T15:05:10.142Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb::Cell 5 +[2024-04-30T15:05:10.142Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb::Cell 8 +[2024-04-30T15:05:10.142Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 +[2024-04-30T15:05:10.142Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 +[2024-04-30T15:05:10.142Z] ============= 4 failed, 215 passed, 1 skipped in 713.97s (0:11:53) ============= +[2024-04-30T15:05:10.142Z] + EXIT_CODE=1 +[2024-04-30T15:05:10.142Z] + echo true +[2024-04-30T15:05:10.142Z] + tr [:upper:] [:lower:] +[2024-04-30T15:05:10.142Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-04-30T15:05:10.142Z] + [ xtrue = xtrue ] +[2024-04-30T15:05:10.142Z] + mkdir -p buildout +[2024-04-30T15:05:10.142Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-30T15:05:10.142Z] + filename=CaSR_basic.ipynb +[2024-04-30T15:05:10.142Z] + + sed s/.ipynb$// +[2024-04-30T15:05:10.142Z] echo CaSR_basic.ipynb +[2024-04-30T15:05:10.142Z] + filename=CaSR_basic +[2024-04-30T15:05:10.142Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-04-30T15:05:10.142Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-04-30T15:05:10.142Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-04-30T15:05:42.315Z] [NbConvertApp] Writing 732952 bytes to buildout/CaSR_basic.output.ipynb +[2024-04-30T15:05:42.315Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-30T15:05:42.315Z] + filename=WCS_example.ipynb +[2024-04-30T15:05:42.315Z] + + echo WCS_example.ipynb +[2024-04-30T15:05:42.315Z] sed s/.ipynb$// +[2024-04-30T15:05:42.315Z] + filename=WCS_example +[2024-04-30T15:05:42.315Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-04-30T15:05:42.315Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-04-30T15:05:43.261Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-04-30T15:05:44.648Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:05:44.648Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:05:44.648Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:05:44.648Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:05:54.628Z] [NbConvertApp] Writing 145745 bytes to buildout/WCS_example.output.ipynb +[2024-04-30T15:05:54.628Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-30T15:05:54.628Z] + filename=WFS_example.ipynb +[2024-04-30T15:05:54.628Z] + echo WFS_example.ipynb +[2024-04-30T15:05:54.628Z] + sed s/.ipynb$// +[2024-04-30T15:05:54.628Z] + filename=WFS_example +[2024-04-30T15:05:54.628Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-04-30T15:05:54.629Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-04-30T15:05:56.011Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-04-30T15:05:56.945Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:05:56.945Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:05:56.945Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:05:56.945Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:06:05.062Z] [NbConvertApp] Writing 44572 bytes to buildout/WFS_example.output.ipynb +[2024-04-30T15:06:05.326Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-30T15:06:05.326Z] + filename=WMS_example.ipynb +[2024-04-30T15:06:05.326Z] + sed s/.ipynb$// +[2024-04-30T15:06:05.326Z] + echo WMS_example.ipynb +[2024-04-30T15:06:05.326Z] + filename=WMS_example +[2024-04-30T15:06:05.326Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-04-30T15:06:05.326Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-04-30T15:06:07.215Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-04-30T15:06:07.783Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:06:07.783Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:06:07.783Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:06:07.783Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:06:13.058Z] [NbConvertApp] Writing 2048326 bytes to buildout/WMS_example.output.ipynb +[2024-04-30T15:06:13.319Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-30T15:06:13.319Z] + filename=climex.ipynb +[2024-04-30T15:06:13.319Z] + echo climex.ipynb +[2024-04-30T15:06:13.319Z] + sed s/.ipynb$// +[2024-04-30T15:06:13.319Z] + filename=climex +[2024-04-30T15:06:13.319Z] + [ -e buildout/climex.output.ipynb ] +[2024-04-30T15:06:13.319Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-04-30T15:06:15.222Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook +[2024-04-30T15:06:16.167Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:06:16.167Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:06:16.167Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:06:16.167Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:09:22.864Z] [NbConvertApp] Writing 1781462 bytes to buildout/climex.output.ipynb +[2024-04-30T15:09:22.864Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-30T15:09:22.864Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-04-30T15:09:22.864Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-04-30T15:09:22.864Z] + sed s/.ipynb$// +[2024-04-30T15:09:22.864Z] + filename=eccc-geoapi-climate-stations +[2024-04-30T15:09:22.864Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-04-30T15:09:22.864Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-04-30T15:09:22.864Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-04-30T15:09:22.864Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:09:22.864Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:09:22.864Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:09:22.864Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:09:30.985Z] [NbConvertApp] Writing 279199 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-04-30T15:09:30.985Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-30T15:09:30.985Z] + filename=eccc-geoapi-xclim.ipynb +[2024-04-30T15:09:30.985Z] + echo eccc-geoapi-xclim.ipynb +[2024-04-30T15:09:30.985Z] + sed s/.ipynb$// +[2024-04-30T15:09:30.985Z] + filename=eccc-geoapi-xclim +[2024-04-30T15:09:30.985Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-04-30T15:09:30.985Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-04-30T15:09:32.377Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-04-30T15:09:33.316Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:09:33.316Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:09:33.316Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:09:33.316Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:09:45.597Z] [NbConvertApp] Writing 108140 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-04-30T15:09:45.597Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-30T15:09:45.597Z] + filename=esgf-dap.ipynb +[2024-04-30T15:09:45.597Z] + sed s/.ipynb$// +[2024-04-30T15:09:45.597Z] + echo esgf-dap.ipynb +[2024-04-30T15:09:45.597Z] + filename=esgf-dap +[2024-04-30T15:09:45.597Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-04-30T15:09:45.597Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-04-30T15:09:45.597Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-04-30T15:09:46.535Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:09:46.535Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:09:46.535Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:09:46.535Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:09:53.091Z] [NbConvertApp] Writing 63631 bytes to buildout/esgf-dap.output.ipynb +[2024-04-30T15:09:53.091Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-30T15:09:53.091Z] + filename=forecasts.ipynb +[2024-04-30T15:09:53.091Z] + sed s/.ipynb$// +[2024-04-30T15:09:53.347Z] + echo forecasts.ipynb +[2024-04-30T15:09:53.347Z] + filename=forecasts +[2024-04-30T15:09:53.347Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-04-30T15:09:53.347Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-04-30T15:09:54.729Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook +[2024-04-30T15:09:56.114Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:09:56.114Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:09:56.114Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:09:56.114Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:10:14.198Z] [NbConvertApp] Writing 164988 bytes to buildout/forecasts.output.ipynb +[2024-04-30T15:10:14.198Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-30T15:10:14.198Z] + filename=jupyter_extensions.ipynb +[2024-04-30T15:10:14.198Z] + + echo jupyter_extensions.ipynb +[2024-04-30T15:10:14.198Z] sed s/.ipynb$// +[2024-04-30T15:10:14.198Z] + filename=jupyter_extensions +[2024-04-30T15:10:14.198Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-04-30T15:10:14.198Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-04-30T15:10:14.198Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-04-30T15:10:14.767Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:10:14.767Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:10:14.767Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:10:14.767Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:10:15.700Z] [NbConvertApp] Writing 7996 bytes to buildout/jupyter_extensions.output.ipynb +[2024-04-30T15:10:15.700Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-30T15:10:15.700Z] + filename=opendap.ipynb +[2024-04-30T15:10:15.700Z] + echo opendap.ipynb +[2024-04-30T15:10:15.700Z] + sed s/.ipynb$// +[2024-04-30T15:10:15.700Z] + filename=opendap +[2024-04-30T15:10:15.700Z] + [ -e buildout/opendap.output.ipynb ] +[2024-04-30T15:10:15.700Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-04-30T15:10:17.610Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook +[2024-04-30T15:10:18.548Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:10:18.548Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:10:18.548Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:10:18.548Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:10:22.733Z] [NbConvertApp] Writing 95159 bytes to buildout/opendap.output.ipynb +[2024-04-30T15:10:22.733Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-30T15:10:22.733Z] + filename=pavics_thredds.ipynb +[2024-04-30T15:10:22.733Z] + echo pavics_thredds.ipynb +[2024-04-30T15:10:22.733Z] + sed s/.ipynb$// +[2024-04-30T15:10:22.733Z] + filename=pavics_thredds +[2024-04-30T15:10:22.733Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-04-30T15:10:22.733Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-04-30T15:10:24.635Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-04-30T15:10:25.564Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:10:25.564Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:10:25.564Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:10:25.564Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:10:28.097Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-30T15:10:28.097Z] context: Access to service is forbidden. +[2024-04-30T15:10:28.097Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-04-30T15:10:28.097Z] context: Access to service is forbidden. +[2024-04-30T15:10:29.993Z] [NbConvertApp] Writing 90749 bytes to buildout/pavics_thredds.output.ipynb +[2024-04-30T15:10:30.253Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-30T15:10:30.253Z] + filename=regridding.ipynb +[2024-04-30T15:10:30.253Z] + echo regridding.ipynb +[2024-04-30T15:10:30.253Z] + sed s/.ipynb$// +[2024-04-30T15:10:30.253Z] + filename=regridding +[2024-04-30T15:10:30.253Z] + [ -e buildout/regridding.output.ipynb ] +[2024-04-30T15:10:30.253Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-04-30T15:10:32.151Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook +[2024-04-30T15:10:32.720Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:10:32.720Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:10:32.720Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:10:32.720Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:12:09.206Z] [NbConvertApp] Writing 1239615 bytes to buildout/regridding.output.ipynb +[2024-04-30T15:12:09.206Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-30T15:12:09.206Z] + filename=rendering.ipynb +[2024-04-30T15:12:09.206Z] + echo rendering.ipynb +[2024-04-30T15:12:09.206Z] + sed s/.ipynb$// +[2024-04-30T15:12:09.206Z] + filename=rendering +[2024-04-30T15:12:09.206Z] + [ -e buildout/rendering.output.ipynb ] +[2024-04-30T15:12:09.207Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-04-30T15:12:09.207Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook +[2024-04-30T15:12:09.207Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:12:09.207Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:12:09.207Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:12:09.207Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:12:09.466Z] [NbConvertApp] Writing 11800 bytes to buildout/rendering.output.ipynb +[2024-04-30T15:12:09.466Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-30T15:12:09.466Z] + filename=subset-user-input.ipynb +[2024-04-30T15:12:09.466Z] + + sed s/.ipynb$// +[2024-04-30T15:12:09.466Z] echo subset-user-input.ipynb +[2024-04-30T15:12:09.466Z] + filename=subset-user-input +[2024-04-30T15:12:09.466Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-04-30T15:12:09.466Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-04-30T15:12:11.369Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-04-30T15:12:12.368Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:12:12.368Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:12:12.368Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:12:12.368Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:12:34.297Z] [NbConvertApp] Writing 255278 bytes to buildout/subset-user-input.output.ipynb +[2024-04-30T15:12:34.297Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-30T15:12:34.297Z] + filename=subsetting.ipynb +[2024-04-30T15:12:34.297Z] + echo subsetting.ipynb +[2024-04-30T15:12:34.297Z] + sed s/.ipynb$// +[2024-04-30T15:12:34.297Z] + filename=subsetting +[2024-04-30T15:12:34.297Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-04-30T15:12:34.297Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-04-30T15:12:34.297Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook +[2024-04-30T15:12:34.297Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:12:34.297Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:12:34.298Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:12:34.298Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:12:42.428Z] [NbConvertApp] Writing 93311 bytes to buildout/subsetting.output.ipynb +[2024-04-30T15:12:42.428Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-30T15:12:42.428Z] + filename=dap_subset.ipynb +[2024-04-30T15:12:42.428Z] + echo dap_subset.ipynb +[2024-04-30T15:12:42.428Z] + sed s/.ipynb$// +[2024-04-30T15:12:42.428Z] + filename=dap_subset +[2024-04-30T15:12:42.428Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-04-30T15:12:42.428Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-04-30T15:12:43.804Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-04-30T15:12:44.375Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:12:44.375Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:12:44.375Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:12:44.375Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:12:54.364Z] [NbConvertApp] Writing 162913 bytes to buildout/dap_subset.output.ipynb +[2024-04-30T15:12:54.364Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-30T15:12:54.364Z] + filename=finch-usage.ipynb +[2024-04-30T15:12:54.364Z] + + sed s/.ipynb$// +[2024-04-30T15:12:54.364Z] echo finch-usage.ipynb +[2024-04-30T15:12:54.364Z] + filename=finch-usage +[2024-04-30T15:12:54.364Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-04-30T15:12:54.364Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-04-30T15:12:54.933Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-04-30T15:12:55.873Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:12:55.873Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:12:55.873Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:12:55.873Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:13:05.848Z] [NbConvertApp] Writing 65072 bytes to buildout/finch-usage.output.ipynb +[2024-04-30T15:13:05.848Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-30T15:13:05.848Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-30T15:13:05.848Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-30T15:13:05.848Z] + sed s/.ipynb$// +[2024-04-30T15:13:05.848Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-04-30T15:13:05.848Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-04-30T15:13:05.848Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-04-30T15:13:06.110Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-04-30T15:13:07.050Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:13:07.050Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:13:07.050Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:13:07.050Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:13:15.176Z] [NbConvertApp] Writing 173052 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-04-30T15:13:15.176Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-30T15:13:15.176Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-30T15:13:15.176Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-30T15:13:15.176Z] + sed s/.ipynb$// +[2024-04-30T15:13:15.176Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-04-30T15:13:15.176Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-04-30T15:13:15.176Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-04-30T15:13:15.440Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-04-30T15:13:16.815Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:13:16.815Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:13:16.815Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:13:16.815Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:13:34.908Z] [NbConvertApp] Writing 1481203 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-04-30T15:13:35.172Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-30T15:13:35.172Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-30T15:13:35.172Z] + sed s/.ipynb$// +[2024-04-30T15:13:35.172Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-30T15:13:35.172Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-04-30T15:13:35.172Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-04-30T15:13:35.172Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-04-30T15:13:37.088Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-04-30T15:21:59.106Z] [NbConvertApp] Writing 558914 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb +[2024-04-30T15:21:59.106Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-30T15:21:59.106Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-30T15:21:59.106Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-30T15:21:59.106Z] + sed s/.ipynb$// +[2024-04-30T15:21:59.106Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-04-30T15:21:59.106Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-04-30T15:21:59.106Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-04-30T15:21:59.106Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-04-30T15:22:21.037Z] [NbConvertApp] Writing 782791 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-04-30T15:22:21.037Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-30T15:22:21.037Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-30T15:22:21.037Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-30T15:22:21.037Z] + sed s/.ipynb$// +[2024-04-30T15:22:21.037Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-04-30T15:22:21.037Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-04-30T15:22:21.037Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-04-30T15:22:21.982Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-04-30T15:23:29.667Z] [NbConvertApp] Writing 1051936 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-04-30T15:23:29.667Z] + basename notebooks/hummingbird.ipynb +[2024-04-30T15:23:29.667Z] + filename=hummingbird.ipynb +[2024-04-30T15:23:29.667Z] + + sed s/.ipynb$// +[2024-04-30T15:23:29.667Z] echo hummingbird.ipynb +[2024-04-30T15:23:29.668Z] + filename=hummingbird +[2024-04-30T15:23:29.668Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-04-30T15:23:29.668Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-04-30T15:23:29.668Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-04-30T15:23:29.668Z] [NbConvertApp] Writing 16047 bytes to buildout/hummingbird.output.ipynb +[2024-04-30T15:23:29.668Z] + basename notebooks/stress-tests.ipynb +[2024-04-30T15:23:29.668Z] + filename=stress-tests.ipynb +[2024-04-30T15:23:29.668Z] + echo stress-tests.ipynb +[2024-04-30T15:23:29.668Z] + sed s/.ipynb$// +[2024-04-30T15:23:29.668Z] + filename=stress-tests +[2024-04-30T15:23:29.668Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-04-30T15:23:29.668Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-04-30T15:23:29.668Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-04-30T15:23:30.230Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:23:30.230Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:23:30.230Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:23:30.230Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:25:36.921Z] [NbConvertApp] Writing 429171 bytes to buildout/stress-tests.output.ipynb +[2024-04-30T15:25:36.921Z] + exit 1 +[2024-04-30T15:25:36.921Z] + EXIT_CODE=1 +[2024-04-30T15:25:36.921Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-04-30T15:25:36.921Z] + mkdir -p buildout/env-dump +[2024-04-30T15:25:36.921Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-04-30T15:25:36.921Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-04-30T15:25:36.921Z] + conda env export -n birdy +[2024-04-30T15:25:42.183Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-30T15:25:42.183Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-30T15:25:42.183Z] + conda list -n birdy --explicit +[2024-04-30T15:25:52.173Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-30T15:25:52.173Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-30T15:25:52.173Z] + pip freeze +[2024-04-30T15:25:52.742Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -815,41 +952,41 @@ $ docker top 92c582eb50d564204deb33d83c67e8561be689fd8307b8e9cdc310bdb6b5aedb -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-20T18:05:05.068Z] Archiving artifacts -[2024-04-20T18:05:05.090Z] Recording fingerprints +[2024-04-30T15:25:54.625Z] Archiving artifacts +[2024-04-30T15:25:54.711Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:05.135Z] Archiving artifacts -[2024-04-20T18:05:05.974Z] Recording fingerprints +[2024-04-30T15:25:54.970Z] Archiving artifacts +[2024-04-30T15:25:55.682Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:06.656Z] Archiving artifacts -[2024-04-20T18:05:06.669Z] Recording fingerprints +[2024-04-30T15:25:56.901Z] Archiving artifacts +[2024-04-30T15:25:56.983Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:06.794Z] Archiving artifacts -[2024-04-20T18:05:06.832Z] Recording fingerprints +[2024-04-30T15:25:57.098Z] Archiving artifacts +[2024-04-30T15:25:57.308Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:06.901Z] Archiving artifacts -[2024-04-20T18:05:06.990Z] Recording fingerprints +[2024-04-30T15:25:57.417Z] Archiving artifacts +[2024-04-30T15:25:57.440Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:07.010Z] Archiving artifacts -[2024-04-20T18:05:07.059Z] Recording fingerprints +[2024-04-30T15:25:57.693Z] Archiving artifacts +[2024-04-30T15:25:57.785Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:07.163Z] Archiving artifacts -[2024-04-20T18:05:07.177Z] Recording fingerprints +[2024-04-30T15:25:59.506Z] Archiving artifacts +[2024-04-30T15:25:59.521Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:07.227Z] Archiving artifacts -[2024-04-20T18:05:07.267Z] Recording fingerprints +[2024-04-30T15:25:59.680Z] Archiving artifacts +[2024-04-30T15:25:59.724Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:07.317Z] Archiving artifacts -[2024-04-20T18:05:07.759Z] Recording fingerprints +[2024-04-30T15:26:00.404Z] Archiving artifacts +[2024-04-30T15:26:00.786Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:08.006Z] Archiving artifacts -[2024-04-20T18:05:08.893Z] Recording fingerprints +[2024-04-30T15:26:01.515Z] Archiving artifacts +[2024-04-30T15:26:02.601Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-20T18:05:09.634Z] Archiving artifacts -[2024-04-20T18:05:09.830Z] Recording fingerprints +[2024-04-30T15:26:04.755Z] Archiving artifacts +[2024-04-30T15:26:04.779Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-04-20T18:05:09.993Z] Sending e-mails to: vu.long@ouranos.ca +[2024-04-30T15:26:05.467Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -859,8 +996,8 @@ $ docker top 92c582eb50d564204deb33d83c67e8561be689fd8307b8e9cdc310bdb6b5aedb -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 92c582eb50d564204deb33d83c67e8561be689fd8307b8e9cdc310bdb6b5aedb -$ docker rm -f 92c582eb50d564204deb33d83c67e8561be689fd8307b8e9cdc310bdb6b5aedb +$ docker stop --time=1 9fccafeff53ab545c26988df17cd6b63016f456cae3d32d0f7c21ea39092a689 +$ docker rm -f 9fccafeff53ab545c26988df17cd6b63016f456cae3d32d0f7c21ea39092a689 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 66d2646454c6c3b68a2f7174d68ee13253d283d3 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 1 May 2024 13:27:01 -0400 Subject: [PATCH 083/104] docker: py311-240428: initial jenkins, raven nb --- .../jenkins-buildlogs-raven.txt | 2419 ++++++++++++++--- 1 file changed, 2084 insertions(+), 335 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index 1eb4aef..683b77f 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -1,5 +1,4 @@ Started by user Long Vu -Replayed #296 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -18,7 +17,7 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 +Obtained Jenkinsfile from 393fc67361048209d2e59114c1308bfdf275dca8 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node @@ -30,343 +29,2091 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 (new-docker-build) -Commit message: "docker: py310-240419: conda env export" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision 393fc67361048209d2e59114c1308bfdf275dca8 (new-docker-build) +Commit message: "docker: document why cdms2 was disabled" > git config core.sparsecheckout # timeout=10 - > git checkout -f 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 # timeout=10 - > git rev-list --no-walk 2f8c4508aec402874bb0bbbd8f79c724d91c1ac8 # timeout=10 + > git checkout -f 393fc67361048209d2e59114c1308bfdf275dca8 # timeout=10 + > git rev-list --no-walk 393fc67361048209d2e59114c1308bfdf275dca8 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py310-240419 ++ docker inspect -f . pavics/workflow-tests:py311-240428 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py310-240419 cat -$ docker top 59443904e937c3fa8728663a0f071e6b663d69ce915a7ddd7e30debfbab698ac -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240428 cat +$ docker top ae24da1edc4a0194e9cb52ccec1a5c5e632c26abb05fdd192b5a4b435686a8c4 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-21T21:06:06.129Z] Timeout set to expire in 2 hr 0 min +[2024-04-30T14:54:02.144Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-21T21:06:07.486Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-04-30T14:54:03.674Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-21T21:06:08.293Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-21T21:06:08.293Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-21T21:06:08.293Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-21T21:06:08.293Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-21T21:06:08.293Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-21T21:06:08.293Z] FINCH_BRANCH has been set to 'master' -[2024-04-21T21:06:08.293Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-21T21:06:08.293Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-21T21:06:08.293Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-21T21:06:08.293Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-21T21:06:08.293Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-21T21:06:08.293Z] RAVEN_BRANCH has been set to 'main' -[2024-04-21T21:06:08.294Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-21T21:06:08.294Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-21T21:06:08.294Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-21T21:06:08.294Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-21T21:06:08.294Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-21T21:06:08.294Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-21T21:06:08.294Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-21T21:06:08.294Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-21T21:06:08.294Z] + git clean -fdx -[2024-04-21T21:06:08.552Z] Removing .pytest_cache/ -[2024-04-21T21:06:08.552Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/ -[2024-04-21T21:06:08.552Z] Removing RavenPy-master/ -[2024-04-21T21:06:08.552Z] Removing __pycache__/ -[2024-04-21T21:06:08.552Z] Removing buildout/ -[2024-04-21T21:06:08.552Z] Removing esgf-compute-api-devel/ -[2024-04-21T21:06:08.552Z] Removing finch-master/ -[2024-04-21T21:06:08.552Z] Removing pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/ -[2024-04-21T21:06:08.552Z] Removing raven-main/ -[2024-04-21T21:06:08.552Z] + ./downloadrepos -[2024-04-21T21:06:08.552Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-21T21:06:08.552Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-21T21:06:08.552Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-21T21:06:08.552Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-21T21:06:08.552Z] FINCH_BRANCH has been set to 'master' -[2024-04-21T21:06:08.552Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-21T21:06:08.552Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-21T21:06:08.552Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-21T21:06:08.552Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-21T21:06:08.552Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-21T21:06:08.552Z] RAVEN_BRANCH has been set to 'main' -[2024-04-21T21:06:08.552Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-21T21:06:08.552Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-21T21:06:08.552Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-21T21:06:08.552Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-21T21:06:08.552Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-21T21:06:08.552Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-21T21:06:08.552Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-21T21:06:08.552Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-21T21:06:08.552Z] + rm -rf pavics-sdi-* -[2024-04-21T21:06:08.552Z] + ls -[2024-04-21T21:06:08.552Z] + grep pavics-sdi -[2024-04-21T21:06:08.552Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-04-21T21:06:08.552Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-21T21:06:08.552Z] + shift -[2024-04-21T21:06:08.552Z] + branch=master -[2024-04-21T21:06:08.552Z] + shift -[2024-04-21T21:06:08.552Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-04-21T21:06:08.552Z] + tar xz -[2024-04-21T21:06:11.827Z] + ls -[2024-04-21T21:06:11.827Z] + grep pavics-sdi -[2024-04-21T21:06:11.827Z] pavics-sdi-master -[2024-04-21T21:06:11.827Z] + set +x -[2024-04-21T21:06:11.827Z] + rm -rf finch-* -[2024-04-21T21:06:11.827Z] + ls -[2024-04-21T21:06:11.827Z] + grep finch -[2024-04-21T21:06:11.827Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-21T21:06:11.827Z] + github_repo=https://github.com/bird-house/finch -[2024-04-21T21:06:11.827Z] + shift -[2024-04-21T21:06:11.827Z] + branch=master -[2024-04-21T21:06:11.827Z] + shift -[2024-04-21T21:06:11.827Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-21T21:06:11.827Z] + tar xz -[2024-04-21T21:06:13.206Z] + ls -[2024-04-21T21:06:13.206Z] + grep finch -[2024-04-21T21:06:13.206Z] finch-master -[2024-04-21T21:06:13.206Z] + set +x -[2024-04-21T21:06:13.206Z] + rm -rf PAVICS-landing-* -[2024-04-21T21:06:13.206Z] + + grep PAVICS-landing -[2024-04-21T21:06:13.206Z] ls -[2024-04-21T21:06:13.206Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-04-21T21:06:13.206Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-21T21:06:13.206Z] + shift -[2024-04-21T21:06:13.206Z] + branch=master -[2024-04-21T21:06:13.206Z] + shift -[2024-04-21T21:06:13.206Z] + + tar xz -[2024-04-21T21:06:13.206Z] wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-04-21T21:06:23.167Z] + ls -[2024-04-21T21:06:23.167Z] + grep PAVICS-landing -[2024-04-21T21:06:23.167Z] PAVICS-landing-master -[2024-04-21T21:06:23.167Z] + set +x -[2024-04-21T21:06:23.167Z] + rm -rf raven-* -[2024-04-21T21:06:23.167Z] + ls -[2024-04-21T21:06:23.167Z] + grep raven -[2024-04-21T21:06:23.167Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-21T21:06:23.167Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-21T21:06:23.167Z] + shift -[2024-04-21T21:06:23.167Z] + branch=main -[2024-04-21T21:06:23.167Z] + shift -[2024-04-21T21:06:23.167Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-21T21:06:23.167Z] + tar xz -[2024-04-21T21:06:23.733Z] + ls -[2024-04-21T21:06:23.733Z] + grep raven -[2024-04-21T21:06:23.733Z] raven-main -[2024-04-21T21:06:23.733Z] + set +x -[2024-04-21T21:06:23.733Z] + rm -rf RavenPy-* -[2024-04-21T21:06:23.733Z] + ls -[2024-04-21T21:06:23.733Z] + grep RavenPy -[2024-04-21T21:06:23.733Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-21T21:06:23.733Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-21T21:06:23.733Z] + shift -[2024-04-21T21:06:23.733Z] + branch=master -[2024-04-21T21:06:23.733Z] + shift -[2024-04-21T21:06:23.733Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-21T21:06:23.733Z] + tar xz -[2024-04-21T21:06:25.627Z] + ls -[2024-04-21T21:06:25.627Z] + grep RavenPy -[2024-04-21T21:06:25.627Z] RavenPy-master -[2024-04-21T21:06:25.627Z] + set +x -[2024-04-21T21:06:25.627Z] + rm -rf esgf-compute-api-* -[2024-04-21T21:06:25.628Z] + ls -[2024-04-21T21:06:25.628Z] + grep esgf-compute-api -[2024-04-21T21:06:25.628Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-21T21:06:25.628Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-21T21:06:25.628Z] + shift -[2024-04-21T21:06:25.628Z] + branch=devel -[2024-04-21T21:06:25.628Z] + shift -[2024-04-21T21:06:25.628Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-21T21:06:25.628Z] + tar xz -[2024-04-21T21:06:26.190Z] + + grep esgf-compute-api -[2024-04-21T21:06:26.190Z] ls -[2024-04-21T21:06:26.190Z] esgf-compute-api-devel -[2024-04-21T21:06:26.190Z] + set +x -[2024-04-21T21:06:26.190Z] + echo master -[2024-04-21T21:06:26.190Z] + sed s@/@-@g -[2024-04-21T21:06:26.190Z] + PAVICS_SDI_BRANCH=master -[2024-04-21T21:06:26.190Z] + echo Ouranosinc/pavics-sdi -[2024-04-21T21:06:26.190Z] + sed s@^.*/@@g -[2024-04-21T21:06:26.190Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-21T21:06:26.190Z] + echo master -[2024-04-21T21:06:26.190Z] + sed s@/@-@g -[2024-04-21T21:06:26.190Z] + FINCH_BRANCH=master -[2024-04-21T21:06:26.190Z] + echo bird-house/finch -[2024-04-21T21:06:26.190Z] + sed s@^.*/@@g -[2024-04-21T21:06:26.190Z] + FINCH_REPO_NAME=finch -[2024-04-21T21:06:26.190Z] + echo master -[2024-04-21T21:06:26.190Z] + sed s@/@-@g -[2024-04-21T21:06:26.190Z] + PAVICS_LANDING_BRANCH=master -[2024-04-21T21:06:26.190Z] + echo Ouranosinc/PAVICS-landing -[2024-04-21T21:06:26.190Z] + sed s@^.*/@@g -[2024-04-21T21:06:26.190Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-21T21:06:26.190Z] + echo main -[2024-04-21T21:06:26.190Z] + sed s@/@-@g -[2024-04-21T21:06:26.190Z] + RAVEN_BRANCH=main -[2024-04-21T21:06:26.190Z] + echo Ouranosinc/raven -[2024-04-21T21:06:26.190Z] + sed s@^.*/@@g -[2024-04-21T21:06:26.190Z] + RAVEN_REPO_NAME=raven -[2024-04-21T21:06:26.190Z] + echo master -[2024-04-21T21:06:26.190Z] + sed s@/@-@g -[2024-04-21T21:06:26.190Z] + RAVENPY_BRANCH=master -[2024-04-21T21:06:26.190Z] + echo CSHS-CWRA/RavenPy -[2024-04-21T21:06:26.191Z] + sed s@^.*/@@g -[2024-04-21T21:06:26.191Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-21T21:06:26.191Z] + echo devel -[2024-04-21T21:06:26.191Z] + sed s@/@-@g -[2024-04-21T21:06:26.191Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-21T21:06:26.191Z] + echo ESGF/esgf-compute-api -[2024-04-21T21:06:26.191Z] + sed s@^.*/@@g -[2024-04-21T21:06:26.191Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-21T21:06:26.191Z] + echo pavics-sdi-master -[2024-04-21T21:06:26.191Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-21T21:06:26.191Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-04-21T21:06:26.450Z] + echo finch-master -[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-21T21:06:26.450Z] + FINCH_DIR=finch-master -[2024-04-21T21:06:26.450Z] + echo PAVICS-landing-master -[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-21T21:06:26.450Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-04-21T21:06:26.450Z] + echo raven-main -[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-21T21:06:26.450Z] + RAVEN_DIR=raven-main -[2024-04-21T21:06:26.450Z] + echo RavenPy-master -[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-21T21:06:26.450Z] + RAVENPY_DIR=RavenPy-master -[2024-04-21T21:06:26.450Z] + echo esgf-compute-api-devel -[2024-04-21T21:06:26.450Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-21T21:06:26.450Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-21T21:06:26.450Z] + echo true -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + VERIFY_SSL=true -[2024-04-21T21:06:26.450Z] + [ xtrue = xfalse ] -[2024-04-21T21:06:26.450Z] + rm -v finch-master/setup.cfg -[2024-04-21T21:06:26.450Z] removed 'finch-master/setup.cfg' -[2024-04-21T21:06:26.450Z] + rm -v raven-main/setup.cfg -[2024-04-21T21:06:26.450Z] removed 'raven-main/setup.cfg' -[2024-04-21T21:06:26.450Z] + rm -v raven-main/pyproject.toml -[2024-04-21T21:06:26.450Z] removed 'raven-main/pyproject.toml' -[2024-04-21T21:06:26.450Z] + rm -v RavenPy-master/setup.cfg -[2024-04-21T21:06:26.450Z] removed 'RavenPy-master/setup.cfg' -[2024-04-21T21:06:26.450Z] + rm -v RavenPy-master/tox.ini -[2024-04-21T21:06:26.450Z] removed 'RavenPy-master/tox.ini' -[2024-04-21T21:06:26.450Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-21T21:06:26.450Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-21T21:06:26.450Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-21T21:06:26.450Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-21T21:06:26.450Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-21T21:06:26.450Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-21T21:06:26.450Z] + echo false -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + TEST_MAGPIE_AUTH=false -[2024-04-21T21:06:26.450Z] + echo false -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + TEST_PAVICS_SDI_REPO=false -[2024-04-21T21:06:26.450Z] + echo false -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-21T21:06:26.450Z] + echo false -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + TEST_FINCH_REPO=false -[2024-04-21T21:06:26.450Z] + echo false -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + TEST_PAVICS_LANDING_REPO=false -[2024-04-21T21:06:26.450Z] + echo true -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + TEST_RAVEN_REPO=true -[2024-04-21T21:06:26.450Z] + echo true -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + TEST_RAVENPY_REPO=true -[2024-04-21T21:06:26.450Z] + echo false -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-21T21:06:26.450Z] + echo false -[2024-04-21T21:06:26.450Z] + tr [:upper:] [:lower:] -[2024-04-21T21:06:26.450Z] + TEST_LOCAL_NOTEBOOKS=false -[2024-04-21T21:06:26.451Z] + NOTEBOOKS_TO_TEST= -[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] -[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] -[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] -[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] -[2024-04-21T21:06:26.451Z] + [ xtrue = xtrue ] -[2024-04-21T21:06:26.451Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-04-21T21:06:26.451Z] + [ xtrue = xtrue ] -[2024-04-21T21:06:26.451Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-04-21T21:06:26.451Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] -[2024-04-21T21:06:26.451Z] + [ xfalse = xtrue ] -[2024-04-21T21:06:26.451Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-21T21:06:26.451Z] + [ -n ] -[2024-04-21T21:06:26.451Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-21T21:06:26.451Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-21T21:06:26.451Z] Will run notebooks against pavics.ouranos.ca -[2024-04-21T21:06:26.451Z] + [ -z ] -[2024-04-21T21:06:26.451Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-21T21:06:26.451Z] + git diff -[2024-04-21T21:06:26.451Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-21T21:06:26.451Z] + [ -n ] -[2024-04-21T21:06:26.451Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-04-21T21:06:28.976Z] /opt/conda/envs/birdy/lib/python3.10/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-21T21:06:28.977Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-21T21:06:28.977Z] ============================= test session starts ============================== -[2024-04-21T21:06:28.977Z] platform linux -- Python 3.10.13, pytest-8.1.1, pluggy-1.4.0 -[2024-04-21T21:06:28.977Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-04-21T21:06:28.977Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-21T21:06:28.977Z] collected 242 items -[2024-04-21T21:06:28.977Z] -[2024-04-21T21:06:39.508Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-04-21T21:06:42.046Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] -[2024-04-21T21:06:54.526Z] ...... [ 6%] -[2024-04-21T21:06:56.435Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] -[2024-04-21T21:06:56.435Z] [ 9%] -[2024-04-21T21:06:58.605Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-04-21T21:07:06.708Z] .... [ 12%] -[2024-04-21T21:07:13.321Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] -[2024-04-21T21:07:20.424Z] ....F.FF..F.. [ 18%] -[2024-04-21T21:07:50.081Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] -[2024-04-21T21:09:09.227Z] .. [ 22%] -[2024-04-21T21:09:14.800Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] -[2024-04-21T21:09:24.081Z] ..FFFFFFFF....... [ 30%] -[2024-04-21T21:09:31.416Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] -[2024-04-21T21:09:43.048Z] ........... [ 36%] -[2024-04-21T21:09:52.078Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] -[2024-04-21T21:09:57.389Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] -[2024-04-21T21:10:03.553Z] ..... [ 41%] -[2024-04-21T21:10:04.936Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] -[2024-04-21T21:15:06.169Z] ................. [ 48%] -[2024-04-21T21:15:13.035Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] -[2024-04-21T21:15:20.659Z] .... [ 50%] -[2024-04-21T21:16:35.327Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] -[2024-04-21T21:50:13.236Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb Fx [ 54%] -[2024-04-21T21:50:13.236Z] xxxxxx [ 57%] -[2024-04-21T22:23:36.070Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb F [ 57%] -[2024-04-21T22:23:36.070Z] xxxxxxx [ 60%] -[2024-04-21T22:23:36.070Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] -[2024-04-21T22:57:13.993Z] Fxxx [ 64%] -[2024-04-21T23:06:06.131Z] Cancelling nested steps due to timeout -[2024-04-21T23:06:06.135Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb Sending interrupt signal to process -[2024-04-21T23:06:20.796Z] Terminated -[2024-04-21T23:06:20.800Z] script returned exit code 143 +[2024-04-30T14:54:04.189Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-04-30T14:54:04.189Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-30T14:54:04.189Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-30T14:54:04.189Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-30T14:54:04.189Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-30T14:54:04.189Z] FINCH_BRANCH has been set to 'master' +[2024-04-30T14:54:04.189Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-30T14:54:04.189Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-30T14:54:04.189Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-30T14:54:04.189Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-30T14:54:04.189Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-30T14:54:04.189Z] RAVEN_BRANCH has been set to 'main' +[2024-04-30T14:54:04.189Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-30T14:54:04.189Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-30T14:54:04.189Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-30T14:54:04.190Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-30T14:54:04.190Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-30T14:54:04.190Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-30T14:54:04.190Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-30T14:54:04.190Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-30T14:54:04.190Z] + git clean -fdx +[2024-04-30T14:54:04.446Z] Removing .pytest_cache/ +[2024-04-30T14:54:04.446Z] Removing PAVICS-landing-master/ +[2024-04-30T14:54:04.446Z] Removing RavenPy-master/ +[2024-04-30T14:54:04.446Z] Removing __pycache__/ +[2024-04-30T14:54:04.446Z] Removing buildout/ +[2024-04-30T14:54:04.446Z] Removing esgf-compute-api-devel/ +[2024-04-30T14:54:04.446Z] Removing finch-master/ +[2024-04-30T14:54:04.446Z] Removing pavics-sdi-master/ +[2024-04-30T14:54:04.446Z] Removing raven-main/ +[2024-04-30T14:54:04.446Z] + ./downloadrepos +[2024-04-30T14:54:04.446Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-04-30T14:54:04.446Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-04-30T14:54:04.446Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-04-30T14:54:04.446Z] TEST_FINCH_REPO has been set to 'false' +[2024-04-30T14:54:04.446Z] FINCH_BRANCH has been set to 'master' +[2024-04-30T14:54:04.446Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-04-30T14:54:04.446Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-04-30T14:54:04.446Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-04-30T14:54:04.446Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-04-30T14:54:04.446Z] TEST_RAVEN_REPO has been set to 'true' +[2024-04-30T14:54:04.446Z] RAVEN_BRANCH has been set to 'main' +[2024-04-30T14:54:04.446Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-04-30T14:54:04.446Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-04-30T14:54:04.446Z] RAVENPY_BRANCH has been set to 'master' +[2024-04-30T14:54:04.446Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-04-30T14:54:04.446Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-04-30T14:54:04.446Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-04-30T14:54:04.446Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-04-30T14:54:04.446Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-04-30T14:54:04.446Z] + rm -rf pavics-sdi-* +[2024-04-30T14:54:04.446Z] + grep pavics-sdi+ +[2024-04-30T14:54:04.446Z] ls +[2024-04-30T14:54:04.446Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-04-30T14:54:04.446Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-04-30T14:54:04.446Z] + shift +[2024-04-30T14:54:04.446Z] + branch=master +[2024-04-30T14:54:04.446Z] + shift +[2024-04-30T14:54:04.446Z] + tar xz +[2024-04-30T14:54:04.446Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-04-30T14:54:07.723Z] + ls +[2024-04-30T14:54:07.723Z] + grep pavics-sdi +[2024-04-30T14:54:07.723Z] pavics-sdi-master +[2024-04-30T14:54:07.723Z] + set +x +[2024-04-30T14:54:07.723Z] + rm -rf finch-* +[2024-04-30T14:54:07.723Z] + ls +[2024-04-30T14:54:07.723Z] + grep finch +[2024-04-30T14:54:07.723Z] + downloadrepos https://github.com/bird-house/finch master +[2024-04-30T14:54:07.723Z] + github_repo=https://github.com/bird-house/finch +[2024-04-30T14:54:07.723Z] + shift +[2024-04-30T14:54:07.723Z] + branch=master +[2024-04-30T14:54:07.723Z] + shift +[2024-04-30T14:54:07.723Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-04-30T14:54:07.723Z] + tar xz +[2024-04-30T14:54:09.090Z] + ls +[2024-04-30T14:54:09.090Z] + grep finch +[2024-04-30T14:54:09.090Z] finch-master +[2024-04-30T14:54:09.090Z] + set +x +[2024-04-30T14:54:09.090Z] + rm -rf PAVICS-landing-* +[2024-04-30T14:54:09.090Z] + ls +[2024-04-30T14:54:09.090Z] + grep PAVICS-landing +[2024-04-30T14:54:09.090Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-04-30T14:54:09.090Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-04-30T14:54:09.090Z] + shift +[2024-04-30T14:54:09.090Z] + branch=master +[2024-04-30T14:54:09.090Z] + shift +[2024-04-30T14:54:09.090Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-04-30T14:54:09.090Z] + tar xz +[2024-04-30T14:54:19.053Z] + ls +[2024-04-30T14:54:19.053Z] + grep PAVICS-landing +[2024-04-30T14:54:19.053Z] PAVICS-landing-master +[2024-04-30T14:54:19.053Z] + set +x +[2024-04-30T14:54:19.053Z] + rm -rf raven-* +[2024-04-30T14:54:19.053Z] + ls +[2024-04-30T14:54:19.053Z] + grep raven +[2024-04-30T14:54:19.053Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-04-30T14:54:19.053Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-04-30T14:54:19.053Z] + shift +[2024-04-30T14:54:19.053Z] + branch=main +[2024-04-30T14:54:19.053Z] + shift +[2024-04-30T14:54:19.053Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-04-30T14:54:19.053Z] + tar xz +[2024-04-30T14:54:19.311Z] + ls +[2024-04-30T14:54:19.312Z] + grep raven +[2024-04-30T14:54:19.312Z] raven-main +[2024-04-30T14:54:19.312Z] + set +x +[2024-04-30T14:54:19.567Z] + rm -rf RavenPy-* +[2024-04-30T14:54:19.567Z] + ls +[2024-04-30T14:54:19.567Z] + grep RavenPy +[2024-04-30T14:54:19.567Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-04-30T14:54:19.567Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-04-30T14:54:19.567Z] + shift +[2024-04-30T14:54:19.567Z] + branch=master +[2024-04-30T14:54:19.567Z] + shift +[2024-04-30T14:54:19.567Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-04-30T14:54:19.567Z] + tar xz +[2024-04-30T14:54:21.463Z] + ls +[2024-04-30T14:54:21.463Z] + grep RavenPy +[2024-04-30T14:54:21.463Z] RavenPy-master +[2024-04-30T14:54:21.463Z] + set +x +[2024-04-30T14:54:21.463Z] + rm -rf esgf-compute-api-* +[2024-04-30T14:54:21.463Z] + ls +[2024-04-30T14:54:21.463Z] + grep esgf-compute-api +[2024-04-30T14:54:21.463Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-04-30T14:54:21.463Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-04-30T14:54:21.463Z] + shift +[2024-04-30T14:54:21.463Z] + branch=devel +[2024-04-30T14:54:21.463Z] + shift +[2024-04-30T14:54:21.463Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-04-30T14:54:21.463Z] + tar xz +[2024-04-30T14:54:22.026Z] + ls +[2024-04-30T14:54:22.026Z] + grep esgf-compute-api +[2024-04-30T14:54:22.026Z] esgf-compute-api-devel +[2024-04-30T14:54:22.026Z] + set +x +[2024-04-30T14:54:22.026Z] + echo master +[2024-04-30T14:54:22.026Z] + sed s@/@-@g +[2024-04-30T14:54:22.026Z] + PAVICS_SDI_BRANCH=master +[2024-04-30T14:54:22.026Z] + echo Ouranosinc/pavics-sdi +[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g +[2024-04-30T14:54:22.026Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-04-30T14:54:22.026Z] + echo master +[2024-04-30T14:54:22.026Z] + sed s@/@-@g +[2024-04-30T14:54:22.026Z] + FINCH_BRANCH=master +[2024-04-30T14:54:22.026Z] + echo bird-house/finch +[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g +[2024-04-30T14:54:22.026Z] + FINCH_REPO_NAME=finch +[2024-04-30T14:54:22.026Z] + echo master +[2024-04-30T14:54:22.026Z] + sed s@/@-@g +[2024-04-30T14:54:22.026Z] + PAVICS_LANDING_BRANCH=master +[2024-04-30T14:54:22.026Z] + echo Ouranosinc/PAVICS-landing +[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g +[2024-04-30T14:54:22.026Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-04-30T14:54:22.026Z] + echo main +[2024-04-30T14:54:22.026Z] + sed s@/@-@g +[2024-04-30T14:54:22.026Z] + RAVEN_BRANCH=main +[2024-04-30T14:54:22.026Z] + echo Ouranosinc/raven +[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g +[2024-04-30T14:54:22.026Z] + RAVEN_REPO_NAME=raven +[2024-04-30T14:54:22.026Z] + echo master +[2024-04-30T14:54:22.026Z] + sed s@/@-@g +[2024-04-30T14:54:22.026Z] + RAVENPY_BRANCH=master +[2024-04-30T14:54:22.026Z] + echo CSHS-CWRA/RavenPy +[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g +[2024-04-30T14:54:22.026Z] + RAVENPY_REPO_NAME=RavenPy +[2024-04-30T14:54:22.026Z] + echo devel +[2024-04-30T14:54:22.026Z] + sed s@/@-@g +[2024-04-30T14:54:22.026Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-04-30T14:54:22.026Z] + echo ESGF/esgf-compute-api +[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g +[2024-04-30T14:54:22.026Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-04-30T14:54:22.026Z] + echo pavics-sdi-master +[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:54:22.026Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-04-30T14:54:22.026Z] + echo finch-master +[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:54:22.026Z] + FINCH_DIR=finch-master +[2024-04-30T14:54:22.026Z] + echo PAVICS-landing-master +[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:54:22.026Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-04-30T14:54:22.026Z] + echo raven-main +[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:54:22.026Z] + RAVEN_DIR=raven-main +[2024-04-30T14:54:22.026Z] + echo RavenPy-master +[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:54:22.026Z] + RAVENPY_DIR=RavenPy-master +[2024-04-30T14:54:22.026Z] + echo esgf-compute-api-devel +[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-04-30T14:54:22.026Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-04-30T14:54:22.026Z] + echo true +[2024-04-30T14:54:22.026Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.026Z] + VERIFY_SSL=true +[2024-04-30T14:54:22.026Z] + [ xtrue = xfalse ] +[2024-04-30T14:54:22.026Z] + rm -v finch-master/setup.cfg +[2024-04-30T14:54:22.026Z] removed 'finch-master/setup.cfg' +[2024-04-30T14:54:22.026Z] + rm -v raven-main/setup.cfg +[2024-04-30T14:54:22.026Z] removed 'raven-main/setup.cfg' +[2024-04-30T14:54:22.026Z] + rm -v raven-main/pyproject.toml +[2024-04-30T14:54:22.026Z] removed 'raven-main/pyproject.toml' +[2024-04-30T14:54:22.026Z] + rm -v RavenPy-master/setup.cfg +[2024-04-30T14:54:22.026Z] removed 'RavenPy-master/setup.cfg' +[2024-04-30T14:54:22.026Z] + rm -v RavenPy-master/tox.ini +[2024-04-30T14:54:22.026Z] removed 'RavenPy-master/tox.ini' +[2024-04-30T14:54:22.026Z] + rm -v RavenPy-master/pyproject.toml +[2024-04-30T14:54:22.026Z] removed 'RavenPy-master/pyproject.toml' +[2024-04-30T14:54:22.026Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-04-30T14:54:22.026Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-04-30T14:54:22.026Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-04-30T14:54:22.027Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-04-30T14:54:22.027Z] + echo false +[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.027Z] + TEST_MAGPIE_AUTH=false +[2024-04-30T14:54:22.027Z] + echo false +[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.027Z] + TEST_PAVICS_SDI_REPO=false +[2024-04-30T14:54:22.027Z] + echo false +[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.027Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-04-30T14:54:22.027Z] + echo false +[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.027Z] + TEST_FINCH_REPO=false +[2024-04-30T14:54:22.027Z] + echo false +[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.027Z] + TEST_PAVICS_LANDING_REPO=false +[2024-04-30T14:54:22.027Z] + echo true +[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.027Z] + TEST_RAVEN_REPO=true +[2024-04-30T14:54:22.027Z] + echo true +[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.027Z] + TEST_RAVENPY_REPO=true +[2024-04-30T14:54:22.027Z] + echo false +[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.027Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-04-30T14:54:22.027Z] + echo false +[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] +[2024-04-30T14:54:22.027Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-04-30T14:54:22.027Z] + NOTEBOOKS_TO_TEST= +[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] +[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] +[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] +[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] +[2024-04-30T14:54:22.027Z] + [ xtrue = xtrue ] +[2024-04-30T14:54:22.027Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-04-30T14:54:22.027Z] + [ xtrue = xtrue ] +[2024-04-30T14:54:22.027Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb +[2024-04-30T14:54:22.027Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] +[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] +[2024-04-30T14:54:22.027Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb +[2024-04-30T14:54:22.027Z] + [ -n ] +[2024-04-30T14:54:22.027Z] + [ ! -z pavics.ouranos.ca ] +[2024-04-30T14:54:22.027Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-04-30T14:54:22.027Z] Will run notebooks against pavics.ouranos.ca +[2024-04-30T14:54:22.027Z] + [ -z ] +[2024-04-30T14:54:22.027Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-30T14:54:22.524Z] + git diff +[2024-04-30T14:54:22.524Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-04-30T14:54:22.524Z] + [ -n ] +[2024-04-30T14:54:22.524Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-04-30T14:54:23.894Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-04-30T14:54:23.895Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-04-30T14:54:24.466Z] ============================= test session starts ============================== +[2024-04-30T14:54:24.466Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 +[2024-04-30T14:54:24.466Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-04-30T14:54:24.466Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-04-30T14:54:24.466Z] collected 242 items +[2024-04-30T14:54:24.466Z] +[2024-04-30T14:54:35.281Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-04-30T14:54:37.229Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-04-30T14:54:50.898Z] ...... [ 6%] +[2024-04-30T14:54:53.376Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] +[2024-04-30T14:54:53.376Z] [ 9%] +[2024-04-30T14:54:55.624Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] +[2024-04-30T14:55:04.048Z] .... [ 12%] +[2024-04-30T14:55:14.140Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-04-30T14:55:24.707Z] ....F.FF..F.. [ 18%] +[2024-04-30T14:55:56.462Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] +[2024-04-30T14:57:15.531Z] .. [ 22%] +[2024-04-30T14:57:15.531Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] +[2024-04-30T14:57:23.542Z] ..FFFFFFFF....... [ 30%] +[2024-04-30T14:57:29.636Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] +[2024-04-30T14:57:38.437Z] ........... [ 36%] +[2024-04-30T14:57:47.319Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] +[2024-04-30T14:57:52.594Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-04-30T14:57:57.583Z] ..... [ 41%] +[2024-04-30T14:57:58.958Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-04-30T15:02:10.664Z] ................. [ 48%] +[2024-04-30T15:02:15.917Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-04-30T15:02:22.639Z] .... [ 50%] +[2024-04-30T15:03:41.616Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] +[2024-04-30T15:03:44.900Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] +[2024-04-30T15:04:16.473Z] ...... [ 57%] +[2024-04-30T15:04:24.610Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] +[2024-04-30T15:04:33.503Z] ....... [ 60%] +[2024-04-30T15:04:40.966Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] +[2024-04-30T15:05:01.022Z] .... [ 64%] +[2024-04-30T15:05:09.132Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-04-30T15:05:30.526Z] ....... [ 67%] +[2024-04-30T15:05:33.897Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-04-30T15:06:02.023Z] ....... [ 70%] +[2024-04-30T15:06:02.963Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] +[2024-04-30T15:06:19.181Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] +[2024-04-30T15:06:26.111Z] .... [ 74%] +[2024-04-30T15:07:37.587Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] +[2024-04-30T15:08:07.733Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] +[2024-04-30T15:08:08.298Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-04-30T15:08:22.726Z] ............. [ 84%] +[2024-04-30T15:08:40.500Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] +[2024-04-30T15:08:48.422Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] +[2024-04-30T15:08:58.409Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-04-30T15:10:26.101Z] .........FFFFFFFFFFF [100%] +[2024-04-30T15:10:26.101Z] +[2024-04-30T15:10:26.101Z] =================================== FAILURES =================================== +[2024-04-30T15:10:26.101Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ +[2024-04-30T15:10:26.101Z] Notebook cell execution failed +[2024-04-30T15:10:26.101Z] Cell 5: Cell execution caused an exception +[2024-04-30T15:10:26.101Z] +[2024-04-30T15:10:26.102Z] Input: +[2024-04-30T15:10:26.102Z] features, statistics, raster = stats_resp.get(asobj=True) +[2024-04-30T15:10:26.102Z] grid = raster[0] +[2024-04-30T15:10:26.102Z] grid.plot() +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] Traceback: +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.102Z] ValueError Traceback (most recent call last) +[2024-04-30T15:10:26.102Z] Cell In[1], line 3 +[2024-04-30T15:10:26.102Z]  1 features, statistics, raster = stats_resp.get(asobj=True) +[2024-04-30T15:10:26.102Z]  2 grid = raster[0] +[2024-04-30T15:10:26.102Z] ----> 3 grid.plot() +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) +[2024-04-30T15:10:26.102Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: +[2024-04-30T15:10:26.102Z] --> 942 raise ValueError( +[2024-04-30T15:10:26.102Z]  943 "Dataset.plot cannot be called directly. Use " +[2024-04-30T15:10:26.102Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" +[2024-04-30T15:10:26.102Z]  945 ) +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ +[2024-04-30T15:10:26.102Z] Notebook cell execution failed +[2024-04-30T15:10:26.102Z] Cell 7: Cell execution caused an exception +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] Input: +[2024-04-30T15:10:26.102Z] unique, counts = np.unique(grid, return_counts=True) +[2024-04-30T15:10:26.102Z] print("The land-use categories available are: " + str(unique)) +[2024-04-30T15:10:26.102Z] print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] # Pixels values at '127' are NaN and can be ignored. +[2024-04-30T15:10:26.102Z] from matplotlib.colors import Normalize +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] norm = Normalize() +[2024-04-30T15:10:26.102Z] norm.autoscale(unique[:-1]) +[2024-04-30T15:10:26.102Z] cm = mpl.colormaps["tab20"] +[2024-04-30T15:10:26.102Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] # plt.bar(unique[:-1], counts[:-1]) +[2024-04-30T15:10:26.102Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) +[2024-04-30T15:10:26.102Z] plt.xlabel("Land-use categories") +[2024-04-30T15:10:26.102Z] plt.ylabel("Number of pixels") +[2024-04-30T15:10:26.102Z] plt.show() +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") +[2024-04-30T15:10:26.102Z] grid.name = "Land-use categories" +[2024-04-30T15:10:26.102Z] plt.show() +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] Traceback: +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.102Z] TypeError Traceback (most recent call last) +[2024-04-30T15:10:26.102Z] /tmp/ipykernel_348/750628277.py in ?() +[2024-04-30T15:10:26.102Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) +[2024-04-30T15:10:26.102Z]  2 print("The land-use categories available are: " + str(unique)) +[2024-04-30T15:10:26.102Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) +[2024-04-30T15:10:26.102Z]  4  +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] <__array_function__ internals> in ?(*args, **kwargs) +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) +[2024-04-30T15:10:26.102Z]  268 >>> np.repeat(values, counts) +[2024-04-30T15:10:26.102Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved +[2024-04-30T15:10:26.102Z]  270  +[2024-04-30T15:10:26.102Z]  271 """ +[2024-04-30T15:10:26.102Z] --> 272 ar = np.asanyarray(ar) +[2024-04-30T15:10:26.102Z]  273 if axis is None: +[2024-04-30T15:10:26.102Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, +[2024-04-30T15:10:26.102Z]  275 equal_nan=equal_nan) +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataset.py in ?(self, dtype) +[2024-04-30T15:10:26.102Z]  1472 def __array__(self, dtype=None): +[2024-04-30T15:10:26.102Z] -> 1473 raise TypeError( +[2024-04-30T15:10:26.102Z]  1474 "cannot directly convert an xarray.Dataset into a " +[2024-04-30T15:10:26.102Z]  1475 "numpy array. Instead, create an xarray.DataArray " +[2024-04-30T15:10:26.102Z]  1476 "first, either with indexing on the Dataset or by " +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ +[2024-04-30T15:10:26.102Z] Notebook cell execution failed +[2024-04-30T15:10:26.102Z] Cell 8: Cell execution caused an exception +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] Input: +[2024-04-30T15:10:26.102Z] import cartopy.crs as ccrs +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] # Set a CRS transformation: +[2024-04-30T15:10:26.102Z] crs = ccrs.LambertConformal( +[2024-04-30T15:10:26.102Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-30T15:10:26.102Z] ) +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] ax = plt.subplot(projection=crs) +[2024-04-30T15:10:26.102Z] grid.name = "Land-use categories" +[2024-04-30T15:10:26.102Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-04-30T15:10:26.102Z] plt.show() +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] Traceback: +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.102Z] AttributeError Traceback (most recent call last) +[2024-04-30T15:10:26.102Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-30T15:10:26.102Z]  304 try: +[2024-04-30T15:10:26.102Z] --> 305 object.__setattr__(self, name, value) +[2024-04-30T15:10:26.102Z]  306 except AttributeError as e: +[2024-04-30T15:10:26.102Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-04-30T15:10:26.102Z]  308 # DataArray.dims.setter +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.102Z] The above exception was the direct cause of the following exception: +[2024-04-30T15:10:26.102Z] +[2024-04-30T15:10:26.103Z] AttributeError Traceback (most recent call last) +[2024-04-30T15:10:26.103Z] Cell In[1], line 9 +[2024-04-30T15:10:26.103Z]  4 crs = ccrs.LambertConformal( +[2024-04-30T15:10:26.103Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-30T15:10:26.103Z]  6 ) +[2024-04-30T15:10:26.103Z]  8 ax = plt.subplot(projection=crs) +[2024-04-30T15:10:26.103Z] ----> 9 grid.name = "Land-use categories" +[2024-04-30T15:10:26.103Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") +[2024-04-30T15:10:26.103Z]  11 plt.show() +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-30T15:10:26.103Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-04-30T15:10:26.103Z]  310 raise +[2024-04-30T15:10:26.103Z] --> 311 raise AttributeError( +[2024-04-30T15:10:26.103Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-04-30T15:10:26.103Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-04-30T15:10:26.103Z]  314 ) from e +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ +[2024-04-30T15:10:26.103Z] Notebook cell execution failed +[2024-04-30T15:10:26.103Z] Cell 11: Cell execution caused an exception +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] Input: +[2024-04-30T15:10:26.103Z] crs = ccrs.LambertConformal( +[2024-04-30T15:10:26.103Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-30T15:10:26.103Z] ) +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] dem.name = "Elevation" +[2024-04-30T15:10:26.103Z] dem.attrs["units"] = "m" +[2024-04-30T15:10:26.103Z] ax = plt.subplot(projection=crs) +[2024-04-30T15:10:26.103Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") +[2024-04-30T15:10:26.103Z] plt.show() +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] Traceback: +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.103Z] AttributeError Traceback (most recent call last) +[2024-04-30T15:10:26.103Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-30T15:10:26.103Z]  304 try: +[2024-04-30T15:10:26.103Z] --> 305 object.__setattr__(self, name, value) +[2024-04-30T15:10:26.103Z]  306 except AttributeError as e: +[2024-04-30T15:10:26.103Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. +[2024-04-30T15:10:26.103Z]  308 # DataArray.dims.setter +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] AttributeError: 'Dataset' object has no attribute 'name' +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] The above exception was the direct cause of the following exception: +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] AttributeError Traceback (most recent call last) +[2024-04-30T15:10:26.103Z] Cell In[1], line 5 +[2024-04-30T15:10:26.103Z]  1 crs = ccrs.LambertConformal( +[2024-04-30T15:10:26.103Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) +[2024-04-30T15:10:26.103Z]  3 ) +[2024-04-30T15:10:26.103Z] ----> 5 dem.name = "Elevation" +[2024-04-30T15:10:26.103Z]  6 dem.attrs["units"] = "m" +[2024-04-30T15:10:26.103Z]  7 ax = plt.subplot(projection=crs) +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) +[2024-04-30T15:10:26.103Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": +[2024-04-30T15:10:26.103Z]  310 raise +[2024-04-30T15:10:26.103Z] --> 311 raise AttributeError( +[2024-04-30T15:10:26.103Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" +[2024-04-30T15:10:26.103Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." +[2024-04-30T15:10:26.103Z]  314 ) from e +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-04-30T15:10:26.103Z] Notebook cell execution failed +[2024-04-30T15:10:26.103Z] Cell 5: Cell execution caused an exception +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.103Z] Input: +[2024-04-30T15:10:26.103Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-04-30T15:10:26.103Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-04-30T15:10:26.103Z] from ravenpy import OutputReader +[2024-04-30T15:10:26.103Z] from ravenpy.ravenpy import run +[2024-04-30T15:10:26.103Z] +[2024-04-30T15:10:26.104Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-04-30T15:10:26.104Z] run_name = run_name +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-04-30T15:10:26.104Z] # subfolder called "outputs" +[2024-04-30T15:10:26.104Z] configdir = workdir +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-04-30T15:10:26.104Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] # Get the outputs using the Output Reader object. +[2024-04-30T15:10:26.104Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] Traceback: +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.104Z] RavenError Traceback (most recent call last) +[2024-04-30T15:10:26.104Z] Cell In[1], line 14 +[2024-04-30T15:10:26.104Z]  11 configdir = workdir +[2024-04-30T15:10:26.104Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-04-30T15:10:26.104Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-04-30T15:10:26.104Z]  16 # Get the outputs using the Output Reader object. +[2024-04-30T15:10:26.104Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-04-30T15:10:26.104Z]  320 warn(msg, category=RavenWarning) +[2024-04-30T15:10:26.104Z]  322 if messages["ERROR"]: +[2024-04-30T15:10:26.104Z] --> 323 raise RavenError( +[2024-04-30T15:10:26.104Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-04-30T15:10:26.104Z]  325 ) +[2024-04-30T15:10:26.104Z]  327 if returncode != 0: +[2024-04-30T15:10:26.104Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] RavenError: Config directory: /tmp/NB4uha5bukr +[2024-04-30T15:10:26.104Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-04-30T15:10:26.104Z] Notebook cell execution failed +[2024-04-30T15:10:26.104Z] Cell 6: Cell execution caused an exception +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] Input: +[2024-04-30T15:10:26.104Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-04-30T15:10:26.104Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-04-30T15:10:26.104Z] from ravenpy import Emulator +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] # Prepare the emulator by writing files on disk +[2024-04-30T15:10:26.104Z] e = Emulator(config=m) +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] # Run the model and get the outputs. +[2024-04-30T15:10:26.104Z] outputs = e.run() +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] Traceback: +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.104Z] RavenError Traceback (most recent call last) +[2024-04-30T15:10:26.104Z] Cell In[1], line 9 +[2024-04-30T15:10:26.104Z]  6 e = Emulator(config=m) +[2024-04-30T15:10:26.104Z]  8 # Run the model and get the outputs. +[2024-04-30T15:10:26.104Z] ----> 9 outputs = e.run() +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-04-30T15:10:26.104Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-04-30T15:10:26.104Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-04-30T15:10:26.104Z]  66 self.write_rv(overwrite=overwrite) +[2024-04-30T15:10:26.104Z] ---> 68 self._output_path = run( +[2024-04-30T15:10:26.104Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-04-30T15:10:26.104Z]  70 ) +[2024-04-30T15:10:26.104Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-04-30T15:10:26.104Z]  72 return self._output +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-04-30T15:10:26.104Z]  320 warn(msg, category=RavenWarning) +[2024-04-30T15:10:26.104Z]  322 if messages["ERROR"]: +[2024-04-30T15:10:26.104Z] --> 323 raise RavenError( +[2024-04-30T15:10:26.104Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-04-30T15:10:26.104Z]  325 ) +[2024-04-30T15:10:26.104Z]  327 if returncode != 0: +[2024-04-30T15:10:26.104Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] RavenError: Config directory: /tmp/tmpmhb7gijj +[2024-04-30T15:10:26.104Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-04-30T15:10:26.104Z] Notebook cell execution failed +[2024-04-30T15:10:26.104Z] Cell 7: Cell execution caused an exception +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] Input: +[2024-04-30T15:10:26.104Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-04-30T15:10:26.104Z] outputs.files +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] Traceback: +[2024-04-30T15:10:26.104Z] +[2024-04-30T15:10:26.104Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.104Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.104Z] Cell In[1], line 2 +[2024-04-30T15:10:26.104Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-04-30T15:10:26.105Z] ----> 2 outputs.files +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-04-30T15:10:26.105Z] Notebook cell execution failed +[2024-04-30T15:10:26.105Z] Cell 8: Cell execution caused an exception +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Input: +[2024-04-30T15:10:26.105Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-04-30T15:10:26.105Z] print("----------------HYDROGRAPH----------------") +[2024-04-30T15:10:26.105Z] display(outputs.hydrograph) +[2024-04-30T15:10:26.105Z] print("") +[2024-04-30T15:10:26.105Z] print("-----------------STORAGE------------------") +[2024-04-30T15:10:26.105Z] display(outputs.storage) +[2024-04-30T15:10:26.105Z] print("") +[2024-04-30T15:10:26.105Z] print("-----------------SOLUTION-----------------") +[2024-04-30T15:10:26.105Z] display(outputs.solution) +[2024-04-30T15:10:26.105Z] print("") +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Traceback: +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.105Z] Cell In[1], line 3 +[2024-04-30T15:10:26.105Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-04-30T15:10:26.105Z]  2 print("----------------HYDROGRAPH----------------") +[2024-04-30T15:10:26.105Z] ----> 3 display(outputs.hydrograph) +[2024-04-30T15:10:26.105Z]  4 print("") +[2024-04-30T15:10:26.105Z]  5 print("-----------------STORAGE------------------") +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-04-30T15:10:26.105Z] Notebook cell execution failed +[2024-04-30T15:10:26.105Z] Cell 9: Cell execution caused an exception +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Input: +[2024-04-30T15:10:26.105Z] # Import the graphing utility built to handle Raven model outputs +[2024-04-30T15:10:26.105Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] hydrograph_objects = outputs.hydrograph +[2024-04-30T15:10:26.105Z] hydrographs(hydrograph_objects) +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Traceback: +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.105Z] Cell In[1], line 4 +[2024-04-30T15:10:26.105Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-04-30T15:10:26.105Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-04-30T15:10:26.105Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-04-30T15:10:26.105Z]  5 hydrographs(hydrograph_objects) +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-04-30T15:10:26.105Z] Notebook cell execution failed +[2024-04-30T15:10:26.105Z] Cell 10: Cell execution caused an exception +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Input: +[2024-04-30T15:10:26.105Z] outputs.hydrograph.q_sim.plot() +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Traceback: +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.105Z] Cell In[1], line 1 +[2024-04-30T15:10:26.105Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-04-30T15:10:26.105Z] Notebook cell execution failed +[2024-04-30T15:10:26.105Z] Cell 11: Cell execution caused an exception +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Input: +[2024-04-30T15:10:26.105Z] print(list(outputs.storage.keys())) +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Traceback: +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.105Z] Cell In[1], line 1 +[2024-04-30T15:10:26.105Z] ----> 1 print(list(outputs.storage.keys())) +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-04-30T15:10:26.105Z] Notebook cell execution failed +[2024-04-30T15:10:26.105Z] Cell 12: Cell execution caused an exception +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Input: +[2024-04-30T15:10:26.105Z] # Plot the "Snow" variable +[2024-04-30T15:10:26.105Z] outputs.storage["Snow"].plot() +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Traceback: +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.105Z] Cell In[1], line 2 +[2024-04-30T15:10:26.105Z]  1 # Plot the "Snow" variable +[2024-04-30T15:10:26.105Z] ----> 2 outputs.storage["Snow"].plot() +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ +[2024-04-30T15:10:26.105Z] Notebook cell execution failed +[2024-04-30T15:10:26.105Z] Cell 0: Cell execution caused an exception +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Input: +[2024-04-30T15:10:26.105Z] import os +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] from hsclient import HydroShare, Token +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] # Authentication method using username and password +[2024-04-30T15:10:26.105Z] """ +[2024-04-30T15:10:26.105Z] username = 'XXXXX' +[2024-04-30T15:10:26.105Z] password = 'XXXXX' +[2024-04-30T15:10:26.105Z] hs = HydroShare(username=username, password=password) +[2024-04-30T15:10:26.105Z] """ +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-04-30T15:10:26.105Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] token = Token(access_token=access_token, token_type="bearer") +[2024-04-30T15:10:26.105Z] hs = HydroShare(client_id=client_id, token=token) +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] Traceback: +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.105Z] ValidationError Traceback (most recent call last) +[2024-04-30T15:10:26.105Z] Cell In[1], line 15 +[2024-04-30T15:10:26.105Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-04-30T15:10:26.105Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-04-30T15:10:26.105Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-04-30T15:10:26.105Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-04-30T15:10:26.105Z] +[2024-04-30T15:10:26.105Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/pydantic/main.py:176, in BaseModel.__init__(self, **data) +[2024-04-30T15:10:26.106Z]  174 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-04-30T15:10:26.106Z]  175 __tracebackhide__ = True +[2024-04-30T15:10:26.106Z] --> 176 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] ValidationError: 4 validation errors for Token +[2024-04-30T15:10:26.106Z] scope +[2024-04-30T15:10:26.106Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-04-30T15:10:26.106Z]  2 for r in results: +[2024-04-30T15:10:26.106Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] NameError: name 'hs' is not defined +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ +[2024-04-30T15:10:26.106Z] Notebook cell execution failed +[2024-04-30T15:10:26.106Z] Cell 2: Cell execution caused an exception +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] Input: +[2024-04-30T15:10:26.106Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-04-30T15:10:26.106Z] res.files() +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] Traceback: +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.106Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.106Z] Cell In[1], line 1 +[2024-04-30T15:10:26.106Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-04-30T15:10:26.106Z]  2 res.files() +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] NameError: name 'hs' is not defined +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ +[2024-04-30T15:10:26.106Z] Notebook cell execution failed +[2024-04-30T15:10:26.106Z] Cell 3: Cell execution caused an exception +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] Input: +[2024-04-30T15:10:26.106Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] Traceback: +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.106Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.106Z] Cell In[1], line 1 +[2024-04-30T15:10:26.106Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] NameError: name 'res' is not defined +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ +[2024-04-30T15:10:26.106Z] Notebook cell execution failed +[2024-04-30T15:10:26.106Z] Cell 10: Cell execution caused an exception +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] Input: +[2024-04-30T15:10:26.106Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. +[2024-04-30T15:10:26.106Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" +[2024-04-30T15:10:26.106Z] cat = intake.open_catalog(catalog_name) +[2024-04-30T15:10:26.106Z] ds = cat.era5_reanalysis_single_levels.to_dask() +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] """ +[2024-04-30T15:10:26.106Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, +[2024-04-30T15:10:26.106Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total +[2024-04-30T15:10:26.106Z] precipitation. +[2024-04-30T15:10:26.106Z] """ +[2024-04-30T15:10:26.106Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, +[2024-04-30T15:10:26.106Z] # such as units and variable names. +[2024-04-30T15:10:26.106Z] with xr.set_options(keep_attrs=True): +[2024-04-30T15:10:26.106Z] ERA5_reference = subset.subset_shape( +[2024-04-30T15:10:26.106Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour +[2024-04-30T15:10:26.106Z] ) +[2024-04-30T15:10:26.106Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) +[2024-04-30T15:10:26.106Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) +[2024-04-30T15:10:26.106Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] # Change the units +[2024-04-30T15:10:26.106Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C +[2024-04-30T15:10:26.106Z] ERA5_tmin.attrs["units"] = "degC" +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C +[2024-04-30T15:10:26.106Z] ERA5_tmax.attrs["units"] = "degC" +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] ERA5_pr = ERA5_pr * 1000 # m to mm +[2024-04-30T15:10:26.106Z] ERA5_pr.attrs["units"] = "mm" +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] # Average the variables spatially +[2024-04-30T15:10:26.106Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) +[2024-04-30T15:10:26.106Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) +[2024-04-30T15:10:26.106Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-04-30T15:10:26.106Z] ERA5_pr[ERA5_pr < 0] = 0 +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-04-30T15:10:26.106Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-04-30T15:10:26.106Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) +[2024-04-30T15:10:26.106Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the +[2024-04-30T15:10:26.106Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. +[2024-04-30T15:10:26.106Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) +[2024-04-30T15:10:26.106Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] Traceback: +[2024-04-30T15:10:26.106Z] +[2024-04-30T15:10:26.106Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.106Z] KeyError Traceback (most recent call last) +[2024-04-30T15:10:26.106Z] Cell In[1], line 37 +[2024-04-30T15:10:26.106Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) +[2024-04-30T15:10:26.107Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. +[2024-04-30T15:10:26.107Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 +[2024-04-30T15:10:26.107Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf +[2024-04-30T15:10:26.107Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) +[2024-04-30T15:10:26.107Z] +[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) +[2024-04-30T15:10:26.107Z]  851 self.coords[key] = value +[2024-04-30T15:10:26.107Z]  852 else: +[2024-04-30T15:10:26.107Z]  853 # Coordinates in key, value and self[key] should be consistent. +[2024-04-30T15:10:26.107Z]  854 # TODO Coordinate consistency in key is checked here, but it +[2024-04-30T15:10:26.107Z]  855 # causes unnecessary indexing. It should be optimized. +[2024-04-30T15:10:26.107Z] --> 856 obj = self[key] +[2024-04-30T15:10:26.107Z]  857 if isinstance(value, DataArray): +[2024-04-30T15:10:26.107Z]  858 assert_coordinate_consistent(value, obj.coords.variables) +[2024-04-30T15:10:26.107Z] +[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) +[2024-04-30T15:10:26.107Z]  844 return self._getitem_coord(key) +[2024-04-30T15:10:26.107Z]  845 else: +[2024-04-30T15:10:26.107Z]  846 # xarray-style array indexing +[2024-04-30T15:10:26.107Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) +[2024-04-30T15:10:26.107Z] +[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) +[2024-04-30T15:10:26.107Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") +[2024-04-30T15:10:26.107Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): +[2024-04-30T15:10:26.107Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( +[2024-04-30T15:10:26.107Z]  1446  indexers, drop=drop, missing_dims=missing_dims +[2024-04-30T15:10:26.107Z]  1447  ) +[2024-04-30T15:10:26.107Z]  1448 return self._from_temp_dataset(ds) +[2024-04-30T15:10:26.107Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional +[2024-04-30T15:10:26.107Z]  1451 # lists, or zero or one-dimensional np.ndarray's +[2024-04-30T15:10:26.107Z] +[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) +[2024-04-30T15:10:26.107Z]  2926 var_indexers = { +[2024-04-30T15:10:26.107Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims +[2024-04-30T15:10:26.107Z]  2928 } +[2024-04-30T15:10:26.107Z]  2929 if var_indexers: +[2024-04-30T15:10:26.107Z] -> 2930 new_var = var.isel(indexers=var_indexers) +[2024-04-30T15:10:26.107Z]  2931 # drop scalar coordinates +[2024-04-30T15:10:26.107Z]  2932 # https://github.com/pydata/xarray/issues/6554 +[2024-04-30T15:10:26.107Z]  2933 if name in self.coords and drop and new_var.ndim == 0: +[2024-04-30T15:10:26.107Z] +[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) +[2024-04-30T15:10:26.107Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) +[2024-04-30T15:10:26.107Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) +[2024-04-30T15:10:26.107Z] -> 1368 return self[key] +[2024-04-30T15:10:26.107Z] +[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) +[2024-04-30T15:10:26.107Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: +[2024-04-30T15:10:26.107Z]  879  """Return a new Variable object whose contents are consistent with +[2024-04-30T15:10:26.107Z]  880  getting the provided key from the underlying data. +[2024-04-30T15:10:26.107Z]  881 +[2024-04-30T15:10:26.107Z]  (...) +[2024-04-30T15:10:26.107Z]  889  array `x.values` directly. +[2024-04-30T15:10:26.107Z]  890  """ +[2024-04-30T15:10:26.107Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) +[2024-04-30T15:10:26.107Z]  892 data = as_indexable(self._data)[indexer] +[2024-04-30T15:10:26.107Z]  893 if new_order: +[2024-04-30T15:10:26.107Z] +[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) +[2024-04-30T15:10:26.107Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): +[2024-04-30T15:10:26.107Z]  722 return self._broadcast_indexes_basic(key) +[2024-04-30T15:10:26.107Z] --> 724 self._validate_indexers(key) +[2024-04-30T15:10:26.107Z]  725 # Detect it can be mapped as an outer indexer +[2024-04-30T15:10:26.107Z]  726 # If all key is unlabeled, or +[2024-04-30T15:10:26.107Z]  727 # key can be mapped as an OuterIndexer. +[2024-04-30T15:10:26.107Z]  728 if all(not isinstance(k, Variable) for k in key): +[2024-04-30T15:10:26.107Z] +[2024-04-30T15:10:26.108Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) +[2024-04-30T15:10:26.108Z]  771 raise IndexError( +[2024-04-30T15:10:26.108Z]  772 "{}-dimensional boolean indexing is " +[2024-04-30T15:10:26.108Z]  773 "not supported. ".format(k.ndim) +[2024-04-30T15:10:26.108Z]  774 ) +[2024-04-30T15:10:26.108Z]  775 if is_duck_dask_array(k.data): +[2024-04-30T15:10:26.108Z] --> 776 raise KeyError( +[2024-04-30T15:10:26.108Z]  777 "Indexing with a boolean dask array is not allowed. " +[2024-04-30T15:10:26.108Z]  778 "This will result in a dask array of unknown shape. " +[2024-04-30T15:10:26.108Z]  779 "Such arrays are unsupported by Xarray." +[2024-04-30T15:10:26.108Z]  780 "Please compute the indexer first using .compute()" +[2024-04-30T15:10:26.108Z]  781 ) +[2024-04-30T15:10:26.108Z]  782 if getattr(k, "dims", (dim,)) != (dim,): +[2024-04-30T15:10:26.108Z]  783 raise IndexError( +[2024-04-30T15:10:26.108Z]  784 "Boolean indexer should be unlabeled or on the " +[2024-04-30T15:10:26.108Z]  785 "same dimension to the indexed array. Indexer is " +[2024-04-30T15:10:26.108Z]  (...) +[2024-04-30T15:10:26.108Z]  788 ) +[2024-04-30T15:10:26.108Z]  789 ) +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ +[2024-04-30T15:10:26.108Z] Notebook cell execution failed +[2024-04-30T15:10:26.108Z] Cell 11: Cell execution caused an exception +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] Input: +[2024-04-30T15:10:26.108Z] # Climate model to use +[2024-04-30T15:10:26.108Z] climate_model = "MIROC6" +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. +[2024-04-30T15:10:26.108Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") +[2024-04-30T15:10:26.108Z] col = intake.open_esm_datastore( +[2024-04-30T15:10:26.108Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" +[2024-04-30T15:10:26.108Z] ) +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. +[2024-04-30T15:10:26.108Z] with xr.set_options(keep_attrs=True): +[2024-04-30T15:10:26.108Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. +[2024-04-30T15:10:26.108Z] out = {} +[2024-04-30T15:10:26.108Z] for exp in ["historical", "ssp585"]: +[2024-04-30T15:10:26.108Z] if exp == "historical": +[2024-04-30T15:10:26.108Z] period_start = reference_start_day +[2024-04-30T15:10:26.108Z] period_end = reference_end_day +[2024-04-30T15:10:26.108Z] else: +[2024-04-30T15:10:26.108Z] period_start = future_start_day +[2024-04-30T15:10:26.108Z] period_end = future_end_day +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] out[exp] = {} +[2024-04-30T15:10:26.108Z] for variable in ["tasmin", "tasmax", "pr"]: +[2024-04-30T15:10:26.108Z] print(exp, variable) +[2024-04-30T15:10:26.108Z] query = dict( +[2024-04-30T15:10:26.108Z] experiment_id=exp, +[2024-04-30T15:10:26.108Z] table_id="day", +[2024-04-30T15:10:26.108Z] variable_id=variable, +[2024-04-30T15:10:26.108Z] member_id="r1i1p1f1", +[2024-04-30T15:10:26.108Z] source_id=climate_model, +[2024-04-30T15:10:26.108Z] ) +[2024-04-30T15:10:26.108Z] col_subset = col.search(require_all_on=["source_id"], **query) +[2024-04-30T15:10:26.108Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. +[2024-04-30T15:10:26.108Z] if variable == "pr": +[2024-04-30T15:10:26.108Z] out[exp][variable] = average.average_shape( +[2024-04-30T15:10:26.108Z] xr.open_zarr(mapper, consolidated=True).sel( +[2024-04-30T15:10:26.108Z] time=slice(period_start, period_end) +[2024-04-30T15:10:26.108Z] )[variable], +[2024-04-30T15:10:26.108Z] basin_contour, +[2024-04-30T15:10:26.108Z] ).chunk(-1) +[2024-04-30T15:10:26.108Z] else: +[2024-04-30T15:10:26.108Z] out[exp][variable] = average.average_shape( +[2024-04-30T15:10:26.108Z] xr.open_zarr(mapper, consolidated=True) +[2024-04-30T15:10:26.108Z] .sel(time=slice(period_start, period_end)) +[2024-04-30T15:10:26.108Z] .reset_coords("height", drop=True)[variable], +[2024-04-30T15:10:26.108Z] basin_contour, +[2024-04-30T15:10:26.108Z] ).chunk(-1) +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] # We can now extract the variables that we will need later: +[2024-04-30T15:10:26.108Z] historical_tasmax = out["historical"]["tasmax"] +[2024-04-30T15:10:26.108Z] historical_tasmin = out["historical"]["tasmin"] +[2024-04-30T15:10:26.108Z] historical_pr = out["historical"]["pr"] +[2024-04-30T15:10:26.108Z] future_tasmax = out["ssp585"]["tasmax"] +[2024-04-30T15:10:26.108Z] future_tasmin = out["ssp585"]["tasmin"] +[2024-04-30T15:10:26.108Z] future_pr = out["ssp585"]["pr"] +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] Traceback: +[2024-04-30T15:10:26.108Z] +[2024-04-30T15:10:26.108Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.108Z] KeyError Traceback (most recent call last) +[2024-04-30T15:10:26.108Z] Cell In[1], line 44 +[2024-04-30T15:10:26.108Z]  37 out[exp][variable] = average.average_shape( +[2024-04-30T15:10:26.108Z]  38 xr.open_zarr(mapper, consolidated=True).sel( +[2024-04-30T15:10:26.108Z]  39 time=slice(period_start, period_end) +[2024-04-30T15:10:26.108Z]  40 )[variable], +[2024-04-30T15:10:26.108Z]  41 basin_contour, +[2024-04-30T15:10:26.108Z]  42 ).chunk(-1) +[2024-04-30T15:10:26.108Z]  43 else: +[2024-04-30T15:10:26.108Z] ---> 44 out[exp][variable] = average.average_shape( +[2024-04-30T15:10:26.108Z]  45  xr.open_zarr(mapper, consolidated=True) +[2024-04-30T15:10:26.108Z]  46  .sel(time=slice(period_start, period_end)) +[2024-04-30T15:10:26.108Z]  47  .reset_coords("height", drop=True)[variable], +[2024-04-30T15:10:26.108Z]  48  basin_contour, +[2024-04-30T15:10:26.109Z]  49  ).chunk(-1) +[2024-04-30T15:10:26.109Z]  51 # We can now extract the variables that we will need later: +[2024-04-30T15:10:26.109Z]  52 historical_tasmax = out["historical"]["tasmax"] +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) +[2024-04-30T15:10:26.109Z]  105 ds_sub = ds_copy.isel(indexer) +[2024-04-30T15:10:26.109Z]  107 # Compute the weights +[2024-04-30T15:10:26.109Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) +[2024-04-30T15:10:26.109Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. +[2024-04-30T15:10:26.109Z]  111 nonnull = ( +[2024-04-30T15:10:26.109Z]  112 savger.weights.data.nnz +[2024-04-30T15:10:26.109Z]  113 if isinstance(savger.weights, xr.DataArray) +[2024-04-30T15:10:26.109Z]  114 else savger.weights.nnz +[2024-04-30T15:10:26.109Z]  115 ) +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xesmf/frontend.py:1207, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) +[2024-04-30T15:10:26.109Z]  1204 if isinstance(ds_in, xr.DataArray): +[2024-04-30T15:10:26.109Z]  1205 ds_in = ds_in._to_temp_dataset() +[2024-04-30T15:10:26.109Z] -> 1207 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) +[2024-04-30T15:10:26.109Z]  1209 # Create an output locstream so that the regridder knows the output shape and coords. +[2024-04-30T15:10:26.109Z]  1210 # Latitude and longitude coordinates are the polygon centroid. +[2024-04-30T15:10:26.109Z]  1211 lon_out, lat_out = _get_lon_lat(ds_in) +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) +[2024-04-30T15:10:26.109Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) +[2024-04-30T15:10:26.109Z]  166 if need_bounds: +[2024-04-30T15:10:26.109Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) +[2024-04-30T15:10:26.109Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) +[2024-04-30T15:10:26.109Z]  169 add_corner(grid, lon_b.T, lat_b.T) +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) +[2024-04-30T15:10:26.109Z]  105 lat_bnds = ds.cf.get_bounds('latitude') +[2024-04-30T15:10:26.109Z]  107 # Convert from CF bounds to xESMF bounds. +[2024-04-30T15:10:26.109Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. +[2024-04-30T15:10:26.109Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) +[2024-04-30T15:10:26.109Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) +[2024-04-30T15:10:26.109Z]  111 return lon_b, lat_b +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) +[2024-04-30T15:10:26.109Z]  2400 filtered = [ +[2024-04-30T15:10:26.109Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs +[2024-04-30T15:10:26.109Z]  2402 ] +[2024-04-30T15:10:26.109Z]  2403 if len(filtered) > 1: +[2024-04-30T15:10:26.109Z] -> 2404 raise KeyError( +[2024-04-30T15:10:26.109Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " +[2024-04-30T15:10:26.109Z]  2406 ) +[2024-04-30T15:10:26.109Z]  2408 (crd_name,) = filtered +[2024-04-30T15:10:26.109Z]  2409 crd = variables[crd_name] +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ +[2024-04-30T15:10:26.109Z] Notebook cell execution failed +[2024-04-30T15:10:26.109Z] Cell 12: Cell execution caused an exception +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] Input: +[2024-04-30T15:10:26.109Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-04-30T15:10:26.109Z] # and make sure everything is consistent. +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] # Let's start with precipitation: +[2024-04-30T15:10:26.109Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-04-30T15:10:26.109Z] historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-04-30T15:10:26.109Z] future_pr = xclim.core.units.rate2amount(future_pr) +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] # Now we can actually convert units in absolute terms. +[2024-04-30T15:10:26.109Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") +[2024-04-30T15:10:26.109Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] # Now let's do temperature: +[2024-04-30T15:10:26.109Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") +[2024-04-30T15:10:26.109Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") +[2024-04-30T15:10:26.109Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") +[2024-04-30T15:10:26.109Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] Traceback: +[2024-04-30T15:10:26.109Z] +[2024-04-30T15:10:26.109Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.109Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.109Z] Cell In[1], line 6 +[2024-04-30T15:10:26.109Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units +[2024-04-30T15:10:26.109Z]  2 # and make sure everything is consistent. +[2024-04-30T15:10:26.109Z]  3 +[2024-04-30T15:10:26.110Z]  4 # Let's start with precipitation: +[2024-04-30T15:10:26.110Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: +[2024-04-30T15:10:26.110Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) +[2024-04-30T15:10:26.110Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) +[2024-04-30T15:10:26.110Z]  9 # Now we can actually convert units in absolute terms. +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] NameError: name 'historical_pr' is not defined +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ +[2024-04-30T15:10:26.110Z] Notebook cell execution failed +[2024-04-30T15:10:26.110Z] Cell 13: Cell execution caused an exception +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] Input: +[2024-04-30T15:10:26.110Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. +[2024-04-30T15:10:26.110Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-04-30T15:10:26.110Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-30T15:10:26.110Z] ref=ERA5_weather.pr, +[2024-04-30T15:10:26.110Z] hist=historical_pr, +[2024-04-30T15:10:26.110Z] nquantiles=50, +[2024-04-30T15:10:26.110Z] kind="+", +[2024-04-30T15:10:26.110Z] group=group_month_window, +[2024-04-30T15:10:26.110Z] ) +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Apply the correction factors on the reference period +[2024-04-30T15:10:26.110Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Apply the correction factors on the future period +[2024-04-30T15:10:26.110Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Ensure that the precipitation is non-negative, which can happen with some climate models +[2024-04-30T15:10:26.110Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) +[2024-04-30T15:10:26.110Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data +[2024-04-30T15:10:26.110Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-30T15:10:26.110Z] ref=ERA5_weather.tmax, +[2024-04-30T15:10:26.110Z] hist=historical_tasmax, +[2024-04-30T15:10:26.110Z] nquantiles=50, +[2024-04-30T15:10:26.110Z] kind="+", +[2024-04-30T15:10:26.110Z] group=group_month_window, +[2024-04-30T15:10:26.110Z] ) +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Apply the correction factors on the reference period +[2024-04-30T15:10:26.110Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Apply the correction factors on the future period +[2024-04-30T15:10:26.110Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data +[2024-04-30T15:10:26.110Z] Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-30T15:10:26.110Z] ref=ERA5_weather.tmin, +[2024-04-30T15:10:26.110Z] hist=historical_tasmin, +[2024-04-30T15:10:26.110Z] nquantiles=50, +[2024-04-30T15:10:26.110Z] kind="+", +[2024-04-30T15:10:26.110Z] group=group_month_window, +[2024-04-30T15:10:26.110Z] ) +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Apply the correction factors on the reference period +[2024-04-30T15:10:26.110Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Apply the correction factors on the future period +[2024-04-30T15:10:26.110Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] Traceback: +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.110Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.110Z] Cell In[1], line 6 +[2024-04-30T15:10:26.110Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) +[2024-04-30T15:10:26.110Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. +[2024-04-30T15:10:26.110Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( +[2024-04-30T15:10:26.110Z] ----> 6 ref=ERA5_weather.pr, +[2024-04-30T15:10:26.110Z]  7 hist=historical_pr, +[2024-04-30T15:10:26.110Z]  8 nquantiles=50, +[2024-04-30T15:10:26.110Z]  9 kind="+", +[2024-04-30T15:10:26.110Z]  10 group=group_month_window, +[2024-04-30T15:10:26.110Z]  11 ) +[2024-04-30T15:10:26.110Z]  13 # Apply the correction factors on the reference period +[2024-04-30T15:10:26.110Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] NameError: name 'ERA5_weather' is not defined +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ +[2024-04-30T15:10:26.110Z] Notebook cell execution failed +[2024-04-30T15:10:26.110Z] Cell 14: Cell execution caused an exception +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] Input: +[2024-04-30T15:10:26.110Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-04-30T15:10:26.110Z] ref_dataset = xr.merge( +[2024-04-30T15:10:26.110Z] [ +[2024-04-30T15:10:26.110Z] corrected_ref_precip.to_dataset(name="pr"), +[2024-04-30T15:10:26.110Z] corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-04-30T15:10:26.110Z] corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-04-30T15:10:26.110Z] ] +[2024-04-30T15:10:26.110Z] ) +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Write to temporary folder +[2024-04-30T15:10:26.110Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-04-30T15:10:26.110Z] ref_dataset.to_netcdf(fn_tmp_ref) +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Convert the future corrected data into netCDF file +[2024-04-30T15:10:26.110Z] fut_dataset = xr.merge( +[2024-04-30T15:10:26.110Z] [ +[2024-04-30T15:10:26.110Z] corrected_fut_precip.to_dataset(name="pr"), +[2024-04-30T15:10:26.110Z] corrected_fut_tasmax.to_dataset(name="tasmax"), +[2024-04-30T15:10:26.110Z] corrected_fut_tasmin.to_dataset(name="tasmin"), +[2024-04-30T15:10:26.110Z] ] +[2024-04-30T15:10:26.110Z] ) +[2024-04-30T15:10:26.110Z] # Write to temporary folder +[2024-04-30T15:10:26.110Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" +[2024-04-30T15:10:26.110Z] fut_dataset.to_netcdf(fn_tmp_fut) +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] # Write the data to disk to a temporary location for future use. +[2024-04-30T15:10:26.110Z] ref_dataset = xr.open_dataset(fn_tmp_ref) +[2024-04-30T15:10:26.110Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] fut_dataset = xr.open_dataset(fn_tmp_fut) +[2024-04-30T15:10:26.110Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] Traceback: +[2024-04-30T15:10:26.110Z] +[2024-04-30T15:10:26.110Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.110Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.110Z] Cell In[1], line 4 +[2024-04-30T15:10:26.110Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. +[2024-04-30T15:10:26.110Z]  2 ref_dataset = xr.merge( +[2024-04-30T15:10:26.110Z]  3 [ +[2024-04-30T15:10:26.110Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), +[2024-04-30T15:10:26.111Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), +[2024-04-30T15:10:26.111Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), +[2024-04-30T15:10:26.111Z]  7 ] +[2024-04-30T15:10:26.111Z]  8 ) +[2024-04-30T15:10:26.111Z]  10 # Write to temporary folder +[2024-04-30T15:10:26.111Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] NameError: name 'corrected_ref_precip' is not defined +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ +[2024-04-30T15:10:26.111Z] Notebook cell execution failed +[2024-04-30T15:10:26.111Z] Cell 15: Cell execution caused an exception +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] Input: +[2024-04-30T15:10:26.111Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to +[2024-04-30T15:10:26.111Z] # populate the fields for the HRU. +[2024-04-30T15:10:26.111Z] hru = {} +[2024-04-30T15:10:26.111Z] hru = dict( +[2024-04-30T15:10:26.111Z] area=all_properties["area"], +[2024-04-30T15:10:26.111Z] elevation=all_properties["elevation"], +[2024-04-30T15:10:26.111Z] latitude=all_properties["latitude"], +[2024-04-30T15:10:26.111Z] longitude=all_properties["longitude"], +[2024-04-30T15:10:26.111Z] hru_type="land", +[2024-04-30T15:10:26.111Z] ) +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator +[2024-04-30T15:10:26.111Z] # will simply execute the model which has been pre-configured to run on this period. +[2024-04-30T15:10:26.111Z] start_date = dt.datetime(1981, 1, 1) +[2024-04-30T15:10:26.111Z] end_date = dt.datetime(1985, 12, 31) +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. +[2024-04-30T15:10:26.111Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] # Alternative variable names as described in the tutorial. +[2024-04-30T15:10:26.111Z] alt_names = { +[2024-04-30T15:10:26.111Z] "TEMP_MIN": "tmin", +[2024-04-30T15:10:26.111Z] "TEMP_MAX": "tmax", +[2024-04-30T15:10:26.111Z] "PRECIP": "pr", +[2024-04-30T15:10:26.111Z] } +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here +[2024-04-30T15:10:26.111Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. +[2024-04-30T15:10:26.111Z] data_kwds = { +[2024-04-30T15:10:26.111Z] "ALL": { +[2024-04-30T15:10:26.111Z] "elevation": hru["elevation"], +[2024-04-30T15:10:26.111Z] "latitude": hru["latitude"], +[2024-04-30T15:10:26.111Z] "longitude": hru["longitude"], +[2024-04-30T15:10:26.111Z] } +[2024-04-30T15:10:26.111Z] } +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] # Give a name to the simulation +[2024-04-30T15:10:26.111Z] run_name = "Paper_example_simulation" +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] # Setup the gauge object that includes meteorological data from ERA5 +[2024-04-30T15:10:26.111Z] gauge = [ +[2024-04-30T15:10:26.111Z] rc.Gauge.from_nc( +[2024-04-30T15:10:26.111Z] tmp +[2024-04-30T15:10:26.111Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-04-30T15:10:26.111Z] data_type=data_type, # Note that this is the list of all the variables +[2024-04-30T15:10:26.111Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-04-30T15:10:26.111Z] data_kwds=data_kwds, +[2024-04-30T15:10:26.111Z] ) +[2024-04-30T15:10:26.111Z] ] +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] # Read the streamflow from the HYSETS catchment data for this basin +[2024-04-30T15:10:26.111Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, +[2024-04-30T15:10:26.111Z] # and the optimizer will read it directly to calibrate. +[2024-04-30T15:10:26.111Z] eval_metrics = ("NASH_SUTCLIFFE",) +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] # Build the model configuration according to user preferences and inputs +[2024-04-30T15:10:26.111Z] model_config = GR4JCN( +[2024-04-30T15:10:26.111Z] ObservationData=discharge_data, +[2024-04-30T15:10:26.111Z] Gauge=gauge, +[2024-04-30T15:10:26.111Z] HRUs=[hru], +[2024-04-30T15:10:26.111Z] StartDate=start_date, +[2024-04-30T15:10:26.111Z] EndDate=end_date, +[2024-04-30T15:10:26.111Z] RunName=run_name, +[2024-04-30T15:10:26.111Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. +[2024-04-30T15:10:26.111Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. +[2024-04-30T15:10:26.111Z] ) +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] Traceback: +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.111Z] ValueError Traceback (most recent call last) +[2024-04-30T15:10:26.111Z] Cell In[1], line 42 +[2024-04-30T15:10:26.111Z]  38 run_name = "Paper_example_simulation" +[2024-04-30T15:10:26.111Z]  40 # Setup the gauge object that includes meteorological data from ERA5 +[2024-04-30T15:10:26.111Z]  41 gauge = [ +[2024-04-30T15:10:26.111Z] ---> 42 rc.Gauge.from_nc( +[2024-04-30T15:10:26.111Z]  43  tmp +[2024-04-30T15:10:26.111Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables +[2024-04-30T15:10:26.111Z]  45  data_type=data_type, # Note that this is the list of all the variables +[2024-04-30T15:10:26.111Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. +[2024-04-30T15:10:26.111Z]  47  data_kwds=data_kwds, +[2024-04-30T15:10:26.111Z]  48  ) +[2024-04-30T15:10:26.111Z]  49 ] +[2024-04-30T15:10:26.111Z]  51 # Read the streamflow from the HYSETS catchment data for this basin +[2024-04-30T15:10:26.111Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-30T15:10:26.111Z]  751 forcings.difference_update(data) +[2024-04-30T15:10:26.111Z]  753 if len(data) == 0: +[2024-04-30T15:10:26.111Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-30T15:10:26.111Z]  756 # Default Gauge name +[2024-04-30T15:10:26.111Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] ValueError: No data found in netCDF files. +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ +[2024-04-30T15:10:26.111Z] Notebook cell execution failed +[2024-04-30T15:10:26.111Z] Cell 16: Cell execution caused an exception +[2024-04-30T15:10:26.111Z] +[2024-04-30T15:10:26.111Z] Input: +[2024-04-30T15:10:26.111Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, +[2024-04-30T15:10:26.112Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. +[2024-04-30T15:10:26.112Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) +[2024-04-30T15:10:26.112Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. +[2024-04-30T15:10:26.112Z] random_seed = 42 +[2024-04-30T15:10:26.112Z] np.random.seed(random_seed) +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Build the optimizer object +[2024-04-30T15:10:26.112Z] spot_setup = SpotSetup( +[2024-04-30T15:10:26.112Z] config=model_config, +[2024-04-30T15:10:26.112Z] low=low, +[2024-04-30T15:10:26.112Z] high=high, +[2024-04-30T15:10:26.112Z] ) +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-04-30T15:10:26.112Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-04-30T15:10:26.112Z] max_iterations = 200 +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer +[2024-04-30T15:10:26.112Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most +[2024-04-30T15:10:26.112Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation +[2024-04-30T15:10:26.112Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small +[2024-04-30T15:10:26.112Z] # evaluation budgets. For more details on DDS, see: +[2024-04-30T15:10:26.112Z] # +[2024-04-30T15:10:26.112Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water +[2024-04-30T15:10:26.112Z] # Resources Research, 43(1) +[2024-04-30T15:10:26.112Z] sampler = spotpy.algorithms.dds( +[2024-04-30T15:10:26.112Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False +[2024-04-30T15:10:26.112Z] ) +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and +[2024-04-30T15:10:26.112Z] # the best overall value from all trials is returned. +[2024-04-30T15:10:26.112Z] sampler.sample(max_iterations, trials=1) +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Get the model diagnostics +[2024-04-30T15:10:26.112Z] diag = spot_setup.diagnostics +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Get all the values of each iteration +[2024-04-30T15:10:26.112Z] results = sampler.getdata() +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Get the raw resutlts directly in an array +[2024-04-30T15:10:26.112Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( +[2024-04-30T15:10:26.112Z] results +[2024-04-30T15:10:26.112Z] ) # Want to get the MAX NSE (change for min for RMSE) +[2024-04-30T15:10:26.112Z] best_model_run = list( +[2024-04-30T15:10:26.112Z] results[bestindex][0] +[2024-04-30T15:10:26.112Z] ) # Get the parameter set returning the best NSE +[2024-04-30T15:10:26.112Z] optimized_parameters = best_model_run[ +[2024-04-30T15:10:26.112Z] 1:-1 +[2024-04-30T15:10:26.112Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Display the parameter set ready to use in a future run: +[2024-04-30T15:10:26.112Z] print(optimized_parameters) +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] Traceback: +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.112Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.112Z] Cell In[1], line 12 +[2024-04-30T15:10:26.112Z]  8 np.random.seed(random_seed) +[2024-04-30T15:10:26.112Z]  10 # Build the optimizer object +[2024-04-30T15:10:26.112Z]  11 spot_setup = SpotSetup( +[2024-04-30T15:10:26.112Z] ---> 12 config=model_config, +[2024-04-30T15:10:26.112Z]  13 low=low, +[2024-04-30T15:10:26.112Z]  14 high=high, +[2024-04-30T15:10:26.112Z]  15 ) +[2024-04-30T15:10:26.112Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, +[2024-04-30T15:10:26.112Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. +[2024-04-30T15:10:26.112Z]  19 max_iterations = 200 +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] NameError: name 'model_config' is not defined +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ +[2024-04-30T15:10:26.112Z] Notebook cell execution failed +[2024-04-30T15:10:26.112Z] Cell 17: Cell execution caused an exception +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] Input: +[2024-04-30T15:10:26.112Z] # Copy the configuration of the previous model that we will modify for our validation: +[2024-04-30T15:10:26.112Z] model_validation = model_config.duplicate( +[2024-04-30T15:10:26.112Z] params=optimized_parameters, +[2024-04-30T15:10:26.112Z] StartDate=dt.datetime(1986, 1, 1), +[2024-04-30T15:10:26.112Z] EndDate=dt.datetime(1990, 12, 31), +[2024-04-30T15:10:26.112Z] SuppressOutput=False, +[2024-04-30T15:10:26.112Z] ) +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] sim_output = Emulator(config=model_validation).run() +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Get validation NSE (note we are counting the first year without warm-up) +[2024-04-30T15:10:26.112Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Plot the model output +[2024-04-30T15:10:26.112Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") +[2024-04-30T15:10:26.112Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-04-30T15:10:26.112Z] plt.legend() +[2024-04-30T15:10:26.112Z] plt.title("Validation period - NSE=" + str(NSE[0])) +[2024-04-30T15:10:26.112Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-30T15:10:26.112Z] plt.grid() +[2024-04-30T15:10:26.112Z] plt.show() +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] Traceback: +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.112Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.112Z] Cell In[1], line 2 +[2024-04-30T15:10:26.112Z]  1 # Copy the configuration of the previous model that we will modify for our validation: +[2024-04-30T15:10:26.112Z] ----> 2 model_validation = model_config.duplicate( +[2024-04-30T15:10:26.112Z]  3 params=optimized_parameters, +[2024-04-30T15:10:26.112Z]  4 StartDate=dt.datetime(1986, 1, 1), +[2024-04-30T15:10:26.112Z]  5 EndDate=dt.datetime(1990, 12, 31), +[2024-04-30T15:10:26.112Z]  6 SuppressOutput=False, +[2024-04-30T15:10:26.112Z]  7 ) +[2024-04-30T15:10:26.112Z]  9 sim_output = Emulator(config=model_validation).run() +[2024-04-30T15:10:26.112Z]  11 # Get validation NSE (note we are counting the first year without warm-up) +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] NameError: name 'model_config' is not defined +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ +[2024-04-30T15:10:26.112Z] Notebook cell execution failed +[2024-04-30T15:10:26.112Z] Cell 18: Cell execution caused an exception +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] Input: +[2024-04-30T15:10:26.112Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-04-30T15:10:26.112Z] gauge_ref = [ +[2024-04-30T15:10:26.112Z] rc.Gauge.from_nc( +[2024-04-30T15:10:26.112Z] tmp +[2024-04-30T15:10:26.112Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-30T15:10:26.112Z] data_type=data_type, +[2024-04-30T15:10:26.112Z] alt_names=alt_names, +[2024-04-30T15:10:26.112Z] data_kwds=data_kwds, +[2024-04-30T15:10:26.112Z] ) +[2024-04-30T15:10:26.112Z] ] +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-30T15:10:26.112Z] model_config_reference = model_validation.duplicate( +[2024-04-30T15:10:26.112Z] Gauge=gauge_ref, +[2024-04-30T15:10:26.112Z] StartDate=reference_start_day +[2024-04-30T15:10:26.112Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-04-30T15:10:26.112Z] EndDate=reference_end_day, +[2024-04-30T15:10:26.112Z] ) +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.112Z] # Run the model from the configuration and get the outputs. +[2024-04-30T15:10:26.112Z] ref_output = Emulator(config=model_config_reference).run() +[2024-04-30T15:10:26.112Z] +[2024-04-30T15:10:26.113Z] # Plot the model output. Note that both simulations should have similar hydrological +[2024-04-30T15:10:26.113Z] # regime but day-to-day variability is not expected to match. +[2024-04-30T15:10:26.113Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") +[2024-04-30T15:10:26.113Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") +[2024-04-30T15:10:26.113Z] plt.legend() +[2024-04-30T15:10:26.113Z] plt.title("Reference period") +[2024-04-30T15:10:26.113Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-30T15:10:26.113Z] plt.grid() +[2024-04-30T15:10:26.113Z] plt.show() +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] Traceback: +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.113Z] ValueError Traceback (most recent call last) +[2024-04-30T15:10:26.113Z] Cell In[1], line 3 +[2024-04-30T15:10:26.113Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 +[2024-04-30T15:10:26.113Z]  2 gauge_ref = [ +[2024-04-30T15:10:26.113Z] ----> 3 rc.Gauge.from_nc( +[2024-04-30T15:10:26.113Z]  4  tmp +[2024-04-30T15:10:26.113Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-30T15:10:26.113Z]  6  data_type=data_type, +[2024-04-30T15:10:26.113Z]  7  alt_names=alt_names, +[2024-04-30T15:10:26.113Z]  8  data_kwds=data_kwds, +[2024-04-30T15:10:26.113Z]  9  ) +[2024-04-30T15:10:26.113Z]  10 ] +[2024-04-30T15:10:26.113Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-30T15:10:26.113Z]  13 model_config_reference = model_validation.duplicate( +[2024-04-30T15:10:26.113Z]  14 Gauge=gauge_ref, +[2024-04-30T15:10:26.113Z]  15 StartDate=reference_start_day +[2024-04-30T15:10:26.113Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 +[2024-04-30T15:10:26.113Z]  17 EndDate=reference_end_day, +[2024-04-30T15:10:26.113Z]  18 ) +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-30T15:10:26.113Z]  751 forcings.difference_update(data) +[2024-04-30T15:10:26.113Z]  753 if len(data) == 0: +[2024-04-30T15:10:26.113Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-30T15:10:26.113Z]  756 # Default Gauge name +[2024-04-30T15:10:26.113Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] ValueError: No data found in netCDF files. +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ +[2024-04-30T15:10:26.113Z] Notebook cell execution failed +[2024-04-30T15:10:26.113Z] Cell 19: Cell execution caused an exception +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] Input: +[2024-04-30T15:10:26.113Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-04-30T15:10:26.113Z] gauge_fut = [ +[2024-04-30T15:10:26.113Z] rc.Gauge.from_nc( +[2024-04-30T15:10:26.113Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-30T15:10:26.113Z] data_type=data_type, +[2024-04-30T15:10:26.113Z] alt_names=alt_names, +[2024-04-30T15:10:26.113Z] data_kwds=data_kwds, +[2024-04-30T15:10:26.113Z] ) +[2024-04-30T15:10:26.113Z] ] +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-30T15:10:26.113Z] model_config_future = model_validation.duplicate( +[2024-04-30T15:10:26.113Z] Gauge=gauge_fut, +[2024-04-30T15:10:26.113Z] StartDate=future_start_day + dt.timedelta(days=1), +[2024-04-30T15:10:26.113Z] EndDate=future_end_day, +[2024-04-30T15:10:26.113Z] ObservationData=None, # There are no observations for the future period. +[2024-04-30T15:10:26.113Z] ) +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] # Run the model and get the outputs and hydrographs. +[2024-04-30T15:10:26.113Z] fut_output = Emulator(config=model_config_future).run() +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] # Plot the model output +[2024-04-30T15:10:26.113Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") +[2024-04-30T15:10:26.113Z] plt.legend() +[2024-04-30T15:10:26.113Z] plt.title("Future period") +[2024-04-30T15:10:26.113Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-30T15:10:26.113Z] plt.grid() +[2024-04-30T15:10:26.113Z] plt.show() +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] Traceback: +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.113Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.113Z] ValueError Traceback (most recent call last) +[2024-04-30T15:10:26.113Z] Cell In[1], line 3 +[2024-04-30T15:10:26.113Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data +[2024-04-30T15:10:26.113Z]  2 gauge_fut = [ +[2024-04-30T15:10:26.113Z] ----> 3 rc.Gauge.from_nc( +[2024-04-30T15:10:26.113Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file +[2024-04-30T15:10:26.113Z]  5  data_type=data_type, +[2024-04-30T15:10:26.113Z]  6  alt_names=alt_names, +[2024-04-30T15:10:26.113Z]  7  data_kwds=data_kwds, +[2024-04-30T15:10:26.113Z]  8  ) +[2024-04-30T15:10:26.113Z]  9 ] +[2024-04-30T15:10:26.113Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. +[2024-04-30T15:10:26.113Z]  12 model_config_future = model_validation.duplicate( +[2024-04-30T15:10:26.113Z]  13 Gauge=gauge_fut, +[2024-04-30T15:10:26.113Z]  14 StartDate=future_start_day + dt.timedelta(days=1), +[2024-04-30T15:10:26.113Z]  15 EndDate=future_end_day, +[2024-04-30T15:10:26.113Z]  16 ObservationData=None, # There are no observations for the future period. +[2024-04-30T15:10:26.113Z]  17 ) +[2024-04-30T15:10:26.113Z] +[2024-04-30T15:10:26.114Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) +[2024-04-30T15:10:26.114Z]  751 forcings.difference_update(data) +[2024-04-30T15:10:26.114Z]  753 if len(data) == 0: +[2024-04-30T15:10:26.114Z] --> 754 raise ValueError("No data found in netCDF files.") +[2024-04-30T15:10:26.114Z]  756 # Default Gauge name +[2024-04-30T15:10:26.114Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") +[2024-04-30T15:10:26.114Z] +[2024-04-30T15:10:26.114Z] ValueError: No data found in netCDF files. +[2024-04-30T15:10:26.114Z] +[2024-04-30T15:10:26.114Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ +[2024-04-30T15:10:26.114Z] Notebook cell execution failed +[2024-04-30T15:10:26.114Z] Cell 20: Cell execution caused an exception +[2024-04-30T15:10:26.114Z] +[2024-04-30T15:10:26.114Z] Input: +[2024-04-30T15:10:26.114Z] # Extract the mean annual hydrograph for each simulation. +[2024-04-30T15:10:26.114Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-30T15:10:26.114Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-30T15:10:26.114Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-30T15:10:26.114Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-30T15:10:26.114Z] +[2024-04-30T15:10:26.114Z] # Plot the model output +[2024-04-30T15:10:26.114Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") +[2024-04-30T15:10:26.114Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") +[2024-04-30T15:10:26.114Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") +[2024-04-30T15:10:26.114Z] future_flows.plot(color="red", label="Future", x="dayofyear") +[2024-04-30T15:10:26.114Z] plt.legend() +[2024-04-30T15:10:26.114Z] plt.ylabel("Streamflow (m��/s)") +[2024-04-30T15:10:26.114Z] plt.xlabel("Day of year") +[2024-04-30T15:10:26.114Z] plt.xlim([0, 365]) +[2024-04-30T15:10:26.114Z] plt.title("Comparison of mean annual hydrographs") +[2024-04-30T15:10:26.114Z] plt.grid() +[2024-04-30T15:10:26.114Z] plt.show() +[2024-04-30T15:10:26.114Z] +[2024-04-30T15:10:26.114Z] Traceback: +[2024-04-30T15:10:26.114Z] +[2024-04-30T15:10:26.114Z] --------------------------------------------------------------------------- +[2024-04-30T15:10:26.114Z] NameError Traceback (most recent call last) +[2024-04-30T15:10:26.114Z] Cell In[1], line 2 +[2024-04-30T15:10:26.114Z]  1 # Extract the mean annual hydrograph for each simulation. +[2024-04-30T15:10:26.114Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-30T15:10:26.114Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() +[2024-04-30T15:10:26.114Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() +[2024-04-30T15:10:26.114Z] +[2024-04-30T15:10:26.114Z] NameError: name 'ref_output' is not defined +[2024-04-30T15:10:26.114Z] +[2024-04-30T15:10:26.114Z] =========================== short test summary info ============================ +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 +[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 +[2024-04-30T15:10:26.114Z] ================== 27 failed, 215 passed in 961.26s (0:16:01) ================== +[2024-04-30T15:10:26.114Z] + EXIT_CODE=1 +[2024-04-30T15:10:26.114Z] + echo true +[2024-04-30T15:10:26.114Z] + tr [:upper:] [:lower:] +[2024-04-30T15:10:26.114Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-04-30T15:10:26.114Z] + [ xtrue = xtrue ] +[2024-04-30T15:10:26.114Z] + mkdir -p buildout +[2024-04-30T15:10:26.114Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-04-30T15:10:26.114Z] + filename=Region_selection.ipynb +[2024-04-30T15:10:26.114Z] + echo Region_selection.ipynb +[2024-04-30T15:10:26.114Z] + sed s/.ipynb$// +[2024-04-30T15:10:26.114Z] + filename=Region_selection +[2024-04-30T15:10:26.114Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-04-30T15:10:26.114Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-04-30T15:10:27.047Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-04-30T15:10:28.432Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:10:28.432Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:10:28.432Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:10:28.432Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:10:43.292Z] [NbConvertApp] Writing 107223 bytes to buildout/Region_selection.output.ipynb +[2024-04-30T15:10:43.292Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-04-30T15:10:43.292Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-04-30T15:10:43.292Z] + sed s/.ipynb$// +[2024-04-30T15:10:43.292Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-04-30T15:10:43.292Z] + filename=Subset_climate_data_over_watershed +[2024-04-30T15:10:43.292Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-04-30T15:10:43.292Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-04-30T15:10:43.292Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-04-30T15:10:43.549Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:10:43.549Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:10:43.549Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:10:43.549Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:10:58.422Z] [NbConvertApp] Writing 97069 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-04-30T15:10:58.422Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-04-30T15:10:58.422Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-04-30T15:10:58.422Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-04-30T15:10:58.422Z] + sed s/.ipynb$// +[2024-04-30T15:10:58.422Z] + filename=00_Introduction_to_JupyterLab +[2024-04-30T15:10:58.422Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-04-30T15:10:58.422Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-04-30T15:10:59.802Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-04-30T15:11:00.375Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:11:00.375Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:11:00.376Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:11:00.376Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:11:05.639Z] [NbConvertApp] Writing 13178 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-04-30T15:11:05.639Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-04-30T15:11:05.639Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-04-30T15:11:05.639Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-04-30T15:11:05.639Z] + sed s/.ipynb$// +[2024-04-30T15:11:05.639Z] + filename=01_Getting_watershed_boundaries +[2024-04-30T15:11:05.639Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-04-30T15:11:05.639Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-04-30T15:11:07.020Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-04-30T15:11:07.960Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:11:07.960Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:11:07.960Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:11:07.960Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:11:17.945Z] [NbConvertApp] Writing 109426 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-04-30T15:11:17.945Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-04-30T15:11:17.945Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-04-30T15:11:17.945Z] + sed s/.ipynb$// +[2024-04-30T15:11:17.945Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-04-30T15:11:17.945Z] + filename=02_Extract_geographical_watershed_properties +[2024-04-30T15:11:17.945Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-04-30T15:11:17.945Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-04-30T15:11:19.843Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-04-30T15:11:20.780Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:11:20.780Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:11:20.780Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:11:20.780Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:11:35.673Z] [NbConvertApp] Writing 91030 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-04-30T15:11:35.673Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-04-30T15:11:35.673Z] + filename=03_Extracting_forcing_data.ipynb +[2024-04-30T15:11:35.673Z] + echo 03_Extracting_forcing_data.ipynb +[2024-04-30T15:11:35.673Z] + sed s/.ipynb$// +[2024-04-30T15:11:35.673Z] + filename=03_Extracting_forcing_data +[2024-04-30T15:11:35.673Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-04-30T15:11:35.673Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-04-30T15:11:35.673Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-04-30T15:11:36.617Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:11:36.617Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:11:36.617Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:11:36.617Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:13:28.118Z] [NbConvertApp] Writing 107673 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-04-30T15:13:28.118Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-04-30T15:13:28.118Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-04-30T15:13:28.119Z] + sed s/.ipynb$// +[2024-04-30T15:13:28.119Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-04-30T15:13:28.119Z] + filename=04_Emulating_hydrological_models +[2024-04-30T15:13:28.119Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-04-30T15:13:28.119Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-04-30T15:13:28.119Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-04-30T15:13:28.119Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:13:28.119Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:13:28.119Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:13:28.119Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:13:34.675Z] [NbConvertApp] Writing 137339 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-04-30T15:13:34.675Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-04-30T15:13:34.675Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-04-30T15:13:34.675Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-04-30T15:13:34.675Z] + sed s/.ipynb$// +[2024-04-30T15:13:34.675Z] + filename=05_Advanced_RavenPy_configuration +[2024-04-30T15:13:34.675Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-04-30T15:13:34.675Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-04-30T15:13:36.638Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-04-30T15:13:37.211Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:13:37.211Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:13:37.211Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:13:37.211Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:13:55.311Z] [NbConvertApp] Writing 313551 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-04-30T15:13:55.311Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-04-30T15:13:55.311Z] + filename=06_Raven_calibration.ipynb +[2024-04-30T15:13:55.311Z] + echo 06_Raven_calibration.ipynb +[2024-04-30T15:13:55.311Z] + sed s/.ipynb$// +[2024-04-30T15:13:55.311Z] + filename=06_Raven_calibration +[2024-04-30T15:13:55.311Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-04-30T15:13:55.311Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb +[2024-04-30T15:13:55.876Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-04-30T15:13:56.806Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:13:56.806Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:13:56.806Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:13:56.806Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:14:06.780Z] [NbConvertApp] Writing 16351 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-04-30T15:14:06.780Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-04-30T15:14:06.780Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-04-30T15:14:06.780Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-04-30T15:14:06.780Z] + sed s/.ipynb$// +[2024-04-30T15:14:06.780Z] + filename=07_Making_and_using_hotstart_files +[2024-04-30T15:14:06.780Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-04-30T15:14:06.780Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-04-30T15:14:07.730Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-04-30T15:14:08.763Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:14:08.763Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:14:08.763Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:14:08.763Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:14:21.012Z] [NbConvertApp] Writing 205512 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-04-30T15:14:21.012Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-30T15:14:21.012Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-30T15:14:21.012Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-30T15:14:21.012Z] + sed s/.ipynb$// +[2024-04-30T15:14:21.012Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-04-30T15:14:21.012Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-04-30T15:14:21.012Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-04-30T15:14:22.400Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-04-30T15:14:23.343Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:14:23.343Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:14:23.343Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:14:23.343Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:18:59.983Z] [NbConvertApp] Writing 249082 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-04-30T15:18:59.983Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-30T15:18:59.983Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-30T15:18:59.983Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-30T15:18:59.983Z] + sed s/.ipynb$// +[2024-04-30T15:18:59.983Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-04-30T15:18:59.983Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-04-30T15:18:59.983Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-04-30T15:18:59.983Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-04-30T15:18:59.983Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:18:59.983Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:18:59.983Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:18:59.983Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:19:02.529Z] [NbConvertApp] Writing 128174 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-04-30T15:19:02.529Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-04-30T15:19:02.529Z] + filename=10_Data_assimilation.ipynb +[2024-04-30T15:19:02.529Z] + echo 10_Data_assimilation.ipynb +[2024-04-30T15:19:02.529Z] + sed s/.ipynb$// +[2024-04-30T15:19:02.529Z] + filename=10_Data_assimilation +[2024-04-30T15:19:02.529Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-04-30T15:19:02.529Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb +[2024-04-30T15:19:03.912Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-04-30T15:19:05.313Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:19:05.313Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:19:05.313Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:19:05.313Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:20:26.838Z] [NbConvertApp] Writing 432765 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-04-30T15:20:26.838Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-04-30T15:20:26.838Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-04-30T15:20:26.838Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-04-30T15:20:26.838Z] + sed s/.ipynb$// +[2024-04-30T15:20:26.838Z] + filename=11_Climatological_ESP_forecasting +[2024-04-30T15:20:26.838Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-04-30T15:20:26.838Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-04-30T15:20:26.838Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-04-30T15:20:26.838Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:20:26.838Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:20:26.838Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:20:26.838Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:21:05.619Z] [NbConvertApp] Writing 176184 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-04-30T15:21:05.619Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-04-30T15:21:05.619Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-04-30T15:21:05.619Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-04-30T15:21:05.619Z] + sed s/.ipynb$// +[2024-04-30T15:21:05.619Z] + filename=12_Performing_hindcasting_experiments +[2024-04-30T15:21:05.619Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-04-30T15:21:05.619Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-04-30T15:21:05.620Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-04-30T15:21:05.620Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:21:05.620Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:21:05.620Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:21:05.620Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:21:23.732Z] [NbConvertApp] Writing 150539 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-04-30T15:21:23.732Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-04-30T15:21:23.732Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-04-30T15:21:23.732Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-04-30T15:21:23.732Z] + sed s/.ipynb$// +[2024-04-30T15:21:23.732Z] + filename=Assess_probabilistic_flood_risk +[2024-04-30T15:21:23.732Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-04-30T15:21:23.732Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-04-30T15:21:25.654Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-04-30T15:21:26.229Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:21:26.229Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:21:26.229Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:21:26.229Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:21:59.074Z] [NbConvertApp] Writing 163111 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-04-30T15:21:59.074Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-30T15:21:59.074Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-30T15:21:59.074Z] + + sed s/.ipynb$// +[2024-04-30T15:21:59.074Z] echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-30T15:21:59.074Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-04-30T15:21:59.074Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-04-30T15:21:59.074Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-04-30T15:21:59.074Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-04-30T15:21:59.336Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:21:59.336Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:21:59.336Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:21:59.336Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:22:38.063Z] [NbConvertApp] Writing 314030 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-04-30T15:22:38.063Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-04-30T15:22:38.063Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-04-30T15:22:38.063Z] + echo Distributed_hydrological_modelling.ipynb +[2024-04-30T15:22:38.063Z] + sed s/.ipynb$// +[2024-04-30T15:22:38.063Z] + filename=Distributed_hydrological_modelling +[2024-04-30T15:22:38.063Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-04-30T15:22:38.063Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-04-30T15:22:38.063Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-04-30T15:22:38.063Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:22:38.064Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:22:38.064Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:22:38.064Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:23:05.215Z] [NbConvertApp] Writing 102750 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-04-30T15:23:05.215Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-04-30T15:23:05.215Z] + filename=HydroShare_integration.ipynb +[2024-04-30T15:23:05.215Z] + echo HydroShare_integration.ipynb +[2024-04-30T15:23:05.215Z] + sed s/.ipynb$// +[2024-04-30T15:23:05.215Z] + filename=HydroShare_integration +[2024-04-30T15:23:05.216Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-04-30T15:23:05.216Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb +[2024-04-30T15:23:06.158Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-04-30T15:23:07.095Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:23:07.095Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:23:07.095Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:23:07.095Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:23:11.292Z] [NbConvertApp] Writing 11583 bytes to buildout/HydroShare_integration.output.ipynb +[2024-04-30T15:23:11.292Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-04-30T15:23:11.292Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-04-30T15:23:11.292Z] + + echo Hydrological_realtime_forecasting.ipynb +[2024-04-30T15:23:11.292Z] sed s/.ipynb$// +[2024-04-30T15:23:11.292Z] + filename=Hydrological_realtime_forecasting +[2024-04-30T15:23:11.292Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-04-30T15:23:11.292Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-04-30T15:23:12.669Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-04-30T15:23:13.231Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:23:13.231Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:23:13.231Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:23:13.232Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:23:35.265Z] [NbConvertApp] Writing 148533 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-04-30T15:23:35.265Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-04-30T15:23:35.265Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-04-30T15:23:35.265Z] + sed s/.ipynb$// +[2024-04-30T15:23:35.265Z] + echo Managing_Jupyter_Environments.ipynb +[2024-04-30T15:23:35.265Z] + filename=Managing_Jupyter_Environments +[2024-04-30T15:23:35.265Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-04-30T15:23:35.265Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-04-30T15:23:35.265Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-04-30T15:23:35.838Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:23:35.838Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:23:35.838Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:23:35.838Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:23:48.026Z] [NbConvertApp] Writing 8623 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-04-30T15:23:48.026Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-04-30T15:23:48.026Z] + filename=Perform_Regionalization.ipynb +[2024-04-30T15:23:48.026Z] + echo Perform_Regionalization.ipynb +[2024-04-30T15:23:48.026Z] + sed s/.ipynb$// +[2024-04-30T15:23:48.026Z] + filename=Perform_Regionalization +[2024-04-30T15:23:48.026Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-04-30T15:23:48.026Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb +[2024-04-30T15:23:48.285Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-04-30T15:23:49.222Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:23:49.223Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:23:49.223Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:23:49.223Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:24:15.777Z] [NbConvertApp] Writing 120886 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-04-30T15:24:15.777Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-30T15:24:15.777Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-30T15:24:15.777Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-30T15:24:15.777Z] + sed s/.ipynb$// +[2024-04-30T15:24:15.777Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-04-30T15:24:15.777Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-04-30T15:24:15.777Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-04-30T15:24:16.721Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-04-30T15:24:17.693Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:24:17.693Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:24:17.693Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:24:17.693Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:24:35.826Z] [NbConvertApp] Writing 100697 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-04-30T15:24:35.826Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-04-30T15:24:35.826Z] + filename=Sensitivity_analysis.ipynb +[2024-04-30T15:24:35.826Z] + echo Sensitivity_analysis.ipynb +[2024-04-30T15:24:35.826Z] + sed s/.ipynb$// +[2024-04-30T15:24:35.826Z] + filename=Sensitivity_analysis +[2024-04-30T15:24:35.826Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-04-30T15:24:35.827Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb +[2024-04-30T15:24:35.827Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-04-30T15:24:36.396Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:24:36.396Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:24:36.396Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:24:36.396Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:24:54.469Z] [NbConvertApp] Writing 28198 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-04-30T15:24:54.469Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-04-30T15:24:54.469Z] + filename=time_series_analysis.ipynb +[2024-04-30T15:24:54.469Z] + echo time_series_analysis.ipynb +[2024-04-30T15:24:54.469Z] + sed s/.ipynb$// +[2024-04-30T15:24:54.469Z] + filename=time_series_analysis +[2024-04-30T15:24:54.469Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-04-30T15:24:54.469Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb +[2024-04-30T15:24:54.469Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-04-30T15:24:55.406Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:24:55.406Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:24:55.406Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:24:55.406Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:25:05.402Z] [NbConvertApp] Writing 190846 bytes to buildout/time_series_analysis.output.ipynb +[2024-04-30T15:25:05.402Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-30T15:25:05.402Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-30T15:25:05.402Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-30T15:25:05.402Z] + sed s/.ipynb$// +[2024-04-30T15:25:05.402Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-04-30T15:25:05.402Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-04-30T15:25:05.402Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-04-30T15:25:06.353Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-04-30T15:25:07.728Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-04-30T15:25:07.728Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-04-30T15:25:07.728Z] 0.00s - to python to disable frozen modules. +[2024-04-30T15:25:07.728Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-04-30T15:26:44.264Z] [NbConvertApp] Writing 119908 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-04-30T15:26:44.264Z] + exit 1 +[2024-04-30T15:26:44.264Z] + EXIT_CODE=1 +[2024-04-30T15:26:44.264Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-04-30T15:26:44.264Z] + mkdir -p buildout/env-dump +[2024-04-30T15:26:44.264Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-04-30T15:26:44.264Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-04-30T15:26:44.264Z] + conda env export -n birdy +[2024-04-30T15:26:49.523Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-30T15:26:49.523Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-04-30T15:26:49.523Z] + conda list -n birdy --explicit +[2024-04-30T15:26:59.510Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-30T15:26:59.510Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-04-30T15:26:59.510Z] + pip freeze +[2024-04-30T15:27:00.073Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -376,39 +2123,41 @@ $ docker top 59443904e937c3fa8728663a0f071e6b663d69ce915a7ddd7e30debfbab698ac -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-21T23:06:23.702Z] Archiving artifacts -[2024-04-21T23:06:23.744Z] Recording fingerprints +[2024-04-30T15:27:02.434Z] Archiving artifacts +[2024-04-30T15:27:02.510Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:24.165Z] Archiving artifacts -[2024-04-21T23:06:26.785Z] Recording fingerprints +[2024-04-30T15:27:02.753Z] Archiving artifacts +[2024-04-30T15:27:05.152Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:28.222Z] Archiving artifacts -[2024-04-21T23:06:28.588Z] Recording fingerprints +[2024-04-30T15:27:06.085Z] Archiving artifacts +[2024-04-30T15:27:06.098Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:28.787Z] Archiving artifacts -[2024-04-21T23:06:28.807Z] Recording fingerprints +[2024-04-30T15:27:06.224Z] Archiving artifacts +[2024-04-30T15:27:06.283Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:28.943Z] Archiving artifacts -[2024-04-21T23:06:28.960Z] Recording fingerprints +[2024-04-30T15:27:06.696Z] Archiving artifacts +[2024-04-30T15:27:06.744Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:29.118Z] Archiving artifacts -[2024-04-21T23:06:29.249Z] Recording fingerprints +[2024-04-30T15:27:06.912Z] Archiving artifacts +[2024-04-30T15:27:06.949Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:31.087Z] Archiving artifacts -[2024-04-21T23:06:31.342Z] Recording fingerprints +[2024-04-30T15:27:07.748Z] Archiving artifacts +[2024-04-30T15:27:07.873Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:31.372Z] Archiving artifacts -[2024-04-21T23:06:31.507Z] Recording fingerprints +[2024-04-30T15:27:07.974Z] Archiving artifacts +[2024-04-30T15:27:08.020Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:32.344Z] Archiving artifacts -[2024-04-21T23:06:32.840Z] Recording fingerprints +[2024-04-30T15:27:08.366Z] Archiving artifacts +[2024-04-30T15:27:08.803Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:32.993Z] Archiving artifacts +[2024-04-30T15:27:09.047Z] Archiving artifacts +[2024-04-30T15:27:09.539Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-21T23:06:33.037Z] Archiving artifacts +[2024-04-30T15:27:13.698Z] Archiving artifacts +[2024-04-30T15:27:13.714Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-04-21T23:06:33.451Z] No mail will be sent out, as 'PAVICS-e2e-workflow-tests » new-docker-build #300' does not have a result yet. Please make sure you set a proper result in case of pipeline/build scripts. +[2024-04-30T15:27:14.160Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -418,13 +2167,13 @@ $ docker top 59443904e937c3fa8728663a0f071e6b663d69ce915a7ddd7e30debfbab698ac -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 59443904e937c3fa8728663a0f071e6b663d69ce915a7ddd7e30debfbab698ac -$ docker rm -f 59443904e937c3fa8728663a0f071e6b663d69ce915a7ddd7e30debfbab698ac +$ docker stop --time=1 ae24da1edc4a0194e9cb52ccec1a5c5e632c26abb05fdd192b5a4b435686a8c4 +$ docker rm -f ae24da1edc4a0194e9cb52ccec1a5c5e632c26abb05fdd192b5a4b435686a8c4 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] End of Pipeline -Timeout has been exceeded -Finished: ABORTED +ERROR: script returned exit code 1 +Finished: FAILURE From a21c3c129af31b5e967bc75e17e07623d275e88e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Fri, 3 May 2024 12:10:08 -0400 Subject: [PATCH 084/104] jenkins: add note that ESGF_COMPUTE_API_REPO do not work anymore Because csdm2 and vcs (from CDAT) are removed from the env because they block us from using newer version of Python. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a5cc206..78a6631 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -82,7 +82,7 @@ Requires 'weaver' component to be active on the target 'PAVICS_HOST' server string(name: 'RAVENPY_REPO', defaultValue: 'CSHS-CWRA/RavenPy', description: 'https://github.com/CSHS-CWRA/RavenPy repo or fork to test against.', trim: true) booleanParam(name: 'TEST_ESGF_COMPUTE_API_REPO', defaultValue: false, - description: 'Check the box to test esgf-compute-api repo.') + description: 'Check the box to test esgf-compute-api repo. Kept here for historical reasons only, not working anymore.') string(name: 'ESGF_COMPUTE_API_BRANCH', defaultValue: 'devel', description: 'ESGF_COMPUTE_API_REPO branch to test against.', trim: true) string(name: 'ESGF_COMPUTE_API_REPO', defaultValue: 'ESGF/esgf-compute-api', From f12f9179b392341ac1a0a3f496ccae0bea00797f Mon Sep 17 00:00:00 2001 From: Long Vu Date: Mon, 6 May 2024 12:40:53 -0400 Subject: [PATCH 085/104] release: update to use image pavics/workflow-tests:py311-240506 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 78a6631..c96ea81 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py311-240428" + image "pavics/workflow-tests:py311-240506" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 8acc0ca..14afbef 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py311-240428 +FROM pavics/workflow-tests:py311-240506 USER root diff --git a/launchcontainer b/launchcontainer index 0797ac1..2fbaf74 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py311-240428" + DOCKER_IMAGE="pavics/workflow-tests:py311-240506" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index 9df7f13..e120288 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py311-240428" + DOCKER_IMAGE="pavics/workflow-tests:py311-240506" fi if [ -z "$CONTAINER_NAME" ]; then From b81376901a3df4e786fb234eb1c50f96b084ab18 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Mon, 6 May 2024 14:33:18 -0400 Subject: [PATCH 086/104] docker: py311-240506: dockerhub build log --- docker/saved_buildout/docker-buildlogs.txt | 12633 ++++++++++--------- 1 file changed, 6331 insertions(+), 6302 deletions(-) diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index 5cce884..1f66413 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,6302 +1,6331 @@ -2024-04-29T04:04:22Z Building in Docker Cloud's infrastructure... -2024-04-29T04:04:22Z Cloning into '.'... -2024-04-29T04:04:23Z Warning: Permanently added the RSA host key for IP address '140.82.114.3' to the list of known hosts. -2024-04-29T04:04:25Z Switched to a new branch 'docker-py311-240428' -2024-04-29T04:04:25Z KernelVersion: 5.4.0-1068-aws -2024-04-29T04:04:25Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-04-29T04:04:25Z Arch: amd64 -2024-04-29T04:04:25Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-04-29T04:04:25Z ApiVersion: 1.41 -2024-04-29T04:04:25Z Platform: {u'Name': u'Docker Engine - Community'} -2024-04-29T04:04:25Z Version: 20.10.15 -2024-04-29T04:04:25Z MinAPIVersion: 1.12 -2024-04-29T04:04:25Z GitCommit: 4433bf6 -2024-04-29T04:04:25Z Os: linux -2024-04-29T04:04:25Z GoVersion: go1.17.9 -2024-04-29T04:04:25Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py311-240428... -2024-04-29T04:04:31Z #1 [internal] load build definition from Dockerfile -2024-04-29T04:04:31Z #1 transferring dockerfile: 6.99kB 0.0s done -2024-04-29T04:04:31Z #1 DONE 0.1s -2024-04-29T04:04:31Z -2024-04-29T04:04:31Z #2 [internal] load .dockerignore -2024-04-29T04:04:31Z #2 transferring context: 2B done -2024-04-29T04:04:31Z #2 DONE 0.1s -2024-04-29T04:04:31Z -2024-04-29T04:04:31Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-04-29T04:04:31Z #3 ... -2024-04-29T04:04:31Z -2024-04-29T04:04:31Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-04-29T04:04:31Z #4 DONE 0.0s -2024-04-29T04:04:31Z -2024-04-29T04:04:31Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-04-29T04:04:32Z #3 DONE 0.6s -2024-04-29T04:04:32Z -2024-04-29T04:04:32Z #5 [internal] load build context -2024-04-29T04:04:32Z #5 transferring context: 9.81kB done -2024-04-29T04:04:32Z #5 DONE 0.0s -2024-04-29T04:04:32Z -2024-04-29T04:04:32Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b -2024-04-29T04:04:32Z #6 resolve docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b done -2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 2.10MB / 50.08MB 0.2s -2024-04-29T04:04:32Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0B / 150.89MB 0.2s -2024-04-29T04:04:32Z #6 sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b 2.36kB / 2.36kB done -2024-04-29T04:04:32Z #6 sha256:2f63021fb73070c52ff804d164a9802b54e89ce9734eeb3c4236bddc57c75617 869B / 869B done -2024-04-29T04:04:32Z #6 sha256:1f702ef68adb9e4c2b71bdec2ef2cf775120cee7edc02a8e46c4388e259d431c 5.62kB / 5.62kB done -2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 6.29MB / 31.43MB 0.2s -2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.24MB / 50.08MB 0.3s -2024-04-29T04:04:32Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 8.39MB / 150.89MB 0.4s -2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 8.39MB / 31.43MB 0.4s -2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 12.89MB / 50.08MB 0.5s -2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 12.58MB / 31.43MB 0.5s -2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 15.73MB / 50.08MB 0.7s -2024-04-29T04:04:32Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 18.87MB / 50.08MB 0.8s -2024-04-29T04:04:32Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 18.87MB / 150.89MB 0.8s -2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 14.68MB / 31.43MB 0.8s -2024-04-29T04:04:32Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 19.92MB / 31.43MB 0.9s -2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 26.21MB / 50.08MB 1.1s -2024-04-29T04:04:33Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 26.21MB / 31.43MB 1.1s -2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 31.67MB / 50.08MB 1.3s -2024-04-29T04:04:33Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 30.41MB / 150.89MB 1.3s -2024-04-29T04:04:33Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.3s -2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 35.65MB / 50.08MB 1.4s -2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 40.89MB / 50.08MB 1.6s -2024-04-29T04:04:33Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 39.85MB / 150.89MB 1.6s -2024-04-29T04:04:33Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.6s done -2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 45.05MB / 50.08MB 1.8s -2024-04-29T04:04:33Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 2.0s -2024-04-29T04:04:34Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 48.10MB / 150.89MB 2.1s -2024-04-29T04:04:34Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 -2024-04-29T04:04:34Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 2.3s done -2024-04-29T04:04:34Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 61.87MB / 150.89MB 3.0s -2024-04-29T04:04:35Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 74.01MB / 150.89MB 3.6s -2024-04-29T04:04:35Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 83.46MB / 150.89MB 4.0s -2024-04-29T04:04:36Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 94.37MB / 150.89MB 4.5s -2024-04-29T04:04:37Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 104.85MB / 150.89MB 5.1s -2024-04-29T04:04:37Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 113.25MB / 150.89MB 5.6s -2024-04-29T04:04:37Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 122.68MB / 150.89MB 6.0s -2024-04-29T04:04:38Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 131.52MB / 150.89MB 6.5s -2024-04-29T04:04:38Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 141.14MB / 150.89MB 6.9s -2024-04-29T04:04:39Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 148.90MB / 150.89MB 7.1s -2024-04-29T04:04:39Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.1s -2024-04-29T04:04:40Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 150.89MB / 150.89MB 8.7s done -2024-04-29T04:04:41Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 7.0s done -2024-04-29T04:04:41Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 -2024-04-29T04:04:46Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.0s -2024-04-29T04:04:48Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 7.4s done -2024-04-29T04:04:49Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0.1s -2024-04-29T04:04:54Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 5.1s -2024-04-29T04:04:59Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.3s -2024-04-29T04:05:04Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 15.0s done -2024-04-29T04:05:04Z #6 DONE 32.8s -2024-04-29T04:05:04Z -2024-04-29T04:05:04Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-04-29T04:05:06Z #7 1.502 Channels: -2024-04-29T04:05:06Z #7 1.502 - defaults -2024-04-29T04:05:06Z #7 1.502 Platform: linux-64 -2024-04-29T04:05:10Z #7 1.502 Collecting package metadata (repodata.json): ...working... done -2024-04-29T04:05:10Z #7 5.991 Solving environment: ...working... done -2024-04-29T04:05:11Z #7 6.323 -2024-04-29T04:05:11Z #7 6.323 # All requested packages already installed. -2024-04-29T04:05:11Z #7 6.323 -2024-04-29T04:05:12Z #7 7.452 Channels: -2024-04-29T04:05:12Z #7 7.452 - conda-forge -2024-04-29T04:05:12Z #7 7.452 - defaults -2024-04-29T04:05:12Z #7 7.452 Platform: linux-64 -2024-04-29T04:05:39Z #7 7.452 Collecting package metadata (repodata.json): ...working... done -2024-04-29T04:05:41Z #7 34.56 Solving environment: ...working... done -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 ## Package Plan ## -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 environment location: /opt/conda -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 added / updated specs: -2024-04-29T04:05:41Z #7 36.89 - conda-pack -2024-04-29T04:05:41Z #7 36.89 - mamba -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 The following packages will be downloaded: -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 package | build -2024-04-29T04:05:41Z #7 36.89 ---------------------------|----------------- -2024-04-29T04:05:41Z #7 36.89 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 c-ares-1.28.1 | hd590300_0 165 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 conda-24.3.0 | py312h7900ff3_0 1.1 MB conda-forge -2024-04-29T04:05:41Z #7 36.89 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-04-29T04:05:41Z #7 36.89 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge -2024-04-29T04:05:41Z #7 36.89 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libcurl-8.7.1 | hca28451_0 389 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libexpat-2.5.0 | hcb278e6_1 76 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libgcc-ng-13.2.0 | hc881cc4_6 759 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libgomp-13.2.0 | hc881cc4_6 412 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge -2024-04-29T04:05:41Z #7 36.89 libmambapy-1.5.8 | py312hd9e9ff6_0 299 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libnsl-2.0.1 | hd590300_0 33 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libsqlite-3.45.3 | h2797004_0 840 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libssh2-1.11.0 | h0841786_0 265 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libstdcxx-ng-13.2.0 | h95c4c6d_6 3.7 MB conda-forge -2024-04-29T04:05:41Z #7 36.89 libuuid-2.38.1 | h0b41bf4_0 33 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libxcrypt-4.4.36 | hd590300_1 98 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libxml2-2.12.6 | h232c23b_2 688 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 lzo-2.10 | hd590300_1001 167 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 mamba-1.5.8 | py312h9460a1c_0 63 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 openssl-3.2.1 | hd590300_1 2.7 MB conda-forge -2024-04-29T04:05:41Z #7 36.89 python-3.12.2 |hab00c5b_0_cpython 30.8 MB conda-forge -2024-04-29T04:05:41Z #7 36.89 python_abi-3.12 | 4_cp312 6 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 tk-8.6.13 |noxft_h4845f30_101 3.2 MB conda-forge -2024-04-29T04:05:41Z #7 36.89 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-04-29T04:05:41Z #7 36.89 ------------------------------------------------------------ -2024-04-29T04:05:41Z #7 36.89 Total: 62.9 MB -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 The following NEW packages will be INSTALLED: -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 -2024-04-29T04:05:41Z #7 36.89 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 -2024-04-29T04:05:41Z #7 36.89 libexpat conda-forge/linux-64::libexpat-2.5.0-hcb278e6_1 -2024-04-29T04:05:41Z #7 36.89 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-04-29T04:05:41Z #7 36.89 libnsl conda-forge/linux-64::libnsl-2.0.1-hd590300_0 -2024-04-29T04:05:41Z #7 36.89 libsqlite conda-forge/linux-64::libsqlite-3.45.3-h2797004_0 -2024-04-29T04:05:41Z #7 36.89 libxcrypt conda-forge/linux-64::libxcrypt-4.4.36-hd590300_1 -2024-04-29T04:05:41Z #7 36.89 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-04-29T04:05:41Z #7 36.89 lzo conda-forge/linux-64::lzo-2.10-hd590300_1001 -2024-04-29T04:05:41Z #7 36.89 mamba conda-forge/linux-64::mamba-1.5.8-py312h9460a1c_0 -2024-04-29T04:05:41Z #7 36.89 python_abi conda-forge/linux-64::python_abi-3.12-4_cp312 -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 The following packages will be UPDATED: -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 -2024-04-29T04:05:41Z #7 36.89 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-04-29T04:05:41Z #7 36.89 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-04-29T04:05:41Z #7 36.89 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 -2024-04-29T04:05:41Z #7 36.89 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-04-29T04:05:41Z #7 36.89 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 -2024-04-29T04:05:41Z #7 36.89 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-hc881cc4_6 -2024-04-29T04:05:41Z #7 36.89 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-hc881cc4_6 -2024-04-29T04:05:41Z #7 36.89 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 -2024-04-29T04:05:41Z #7 36.89 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 -2024-04-29T04:05:41Z #7 36.89 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-h95c4c6d_6 -2024-04-29T04:05:41Z #7 36.89 libuuid pkgs/main::libuuid-1.41.5-h5eee18b_0 --> conda-forge::libuuid-2.38.1-h0b41bf4_0 -2024-04-29T04:05:41Z #7 36.89 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_2 -2024-04-29T04:05:41Z #7 36.89 openssl pkgs/main::openssl-3.0.13-h7f8727e_0 --> conda-forge::openssl-3.2.1-hd590300_1 -2024-04-29T04:05:41Z #7 36.89 tk pkgs/main::tk-8.6.12-h1ccaba5_0 --> conda-forge::tk-8.6.13-noxft_h4845f30_101 -2024-04-29T04:05:41Z #7 36.89 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 The following packages will be SUPERSEDED by a higher-priority channel: -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-04-29T04:05:41Z #7 36.89 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-04-29T04:05:41Z #7 36.89 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-04-29T04:05:41Z #7 36.89 conda pkgs/main::conda-24.3.0-py312h06a4308~ --> conda-forge::conda-24.3.0-py312h7900ff3_0 -2024-04-29T04:05:41Z #7 36.89 libmamba pkgs/main::libmamba-1.5.8-hfe524e5_1 --> conda-forge::libmamba-1.5.8-had39da4_0 -2024-04-29T04:05:41Z #7 36.89 libmambapy pkgs/main::libmambapy-1.5.8-py312h2da~ --> conda-forge::libmambapy-1.5.8-py312hd9e9ff6_0 -2024-04-29T04:05:41Z #7 36.89 python pkgs/main::python-3.12.2-h996f2a0_0 --> conda-forge::python-3.12.2-hab00c5b_0_cpython -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 -2024-04-29T04:05:41Z #7 36.89 Proceed ([y]/n)? -2024-04-29T04:05:46Z #7 42.04 -2024-04-29T04:05:46Z #7 42.04 Downloading and Extracting Packages: ...working... done -2024-04-29T04:05:47Z #7 42.04 Preparing transaction: ...working... done -2024-04-29T04:05:49Z #7 42.37 Verifying transaction: ...working... done -2024-04-29T04:06:16Z #7 44.39 Executing transaction: ...working... done -2024-04-29T04:06:19Z #7 74.59 Will remove 34 (62.9 MB) tarball(s). -2024-04-29T04:06:19Z #7 74.59 Will remove 1 index cache(s). -2024-04-29T04:06:19Z #7 74.59 Will remove 3 (120 KB) package(s). -2024-04-29T04:06:19Z #7 74.59 There are no tempfile(s) to remove. -2024-04-29T04:06:19Z #7 74.59 There are no logfile(s) to remove. -2024-04-29T04:06:20Z #7 76.11 bin/micromamba -2024-04-29T04:06:22Z #7 DONE 77.8s -2024-04-29T04:06:22Z -2024-04-29T04:06:22Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-04-29T04:06:23Z #8 0.556 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-04-29T04:06:23Z #8 0.584 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-04-29T04:06:23Z #8 0.584 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-04-29T04:06:23Z #8 0.719 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-04-29T04:06:23Z #8 0.951 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] -2024-04-29T04:06:24Z #8 1.625 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-04-29T04:06:25Z #8 3.225 Fetched 8565 kB in 3s (3196 kB/s) -2024-04-29T04:06:26Z #8 3.225 Reading package lists... -2024-04-29T04:06:28Z #8 4.366 Reading package lists... -2024-04-29T04:06:28Z #8 5.521 Building dependency tree... -2024-04-29T04:06:28Z #8 5.834 Reading state information... -2024-04-29T04:06:28Z #8 6.301 git is already the newest version (1:2.30.2-1+deb11u2). -2024-04-29T04:06:28Z #8 6.301 mercurial is already the newest version (5.6.1-4). -2024-04-29T04:06:28Z #8 6.301 The following additional packages will be installed: -2024-04-29T04:06:28Z #8 6.302 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-29T04:06:28Z #8 6.302 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-29T04:06:28Z #8 6.306 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-04-29T04:06:28Z #8 6.306 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-04-29T04:06:28Z #8 6.306 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-04-29T04:06:28Z #8 6.306 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-04-29T04:06:28Z #8 6.306 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-04-29T04:06:28Z #8 6.306 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-29T04:06:28Z #8 6.306 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-29T04:06:28Z #8 6.306 libc-dev-bin libc-devtools libc6 libc6-dev libcairo-gobject2 libcairo2 -2024-04-29T04:06:28Z #8 6.306 libcap2 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 -2024-04-29T04:06:28Z #8 6.306 libctf-nobfd0 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 -2024-04-29T04:06:28Z #8 6.306 libdbus-glib-1-2 libdconf1 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 -2024-04-29T04:06:28Z #8 6.306 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 -2024-04-29T04:06:28Z #8 6.306 libepoxy0 libevent-2.1-7 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 -2024-04-29T04:06:28Z #8 6.306 libgcc-10-dev libgd3 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin -2024-04-29T04:06:28Z #8 6.306 libgdk-pixbuf2.0-common libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 -2024-04-29T04:06:28Z #8 6.306 libglx-mesa0 libglx0 libgomp1 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin -2024-04-29T04:06:28Z #8 6.306 libgtk-3-common libharfbuzz0b libicu67 libigdgmm11 libip4tc2 libisl23 -2024-04-29T04:06:28Z #8 6.306 libitm1 libjbig0 libjpeg62-turbo libjson-c5 libjson-glib-1.0-0 -2024-04-29T04:06:28Z #8 6.306 libjson-glib-1.0-common libkmod2 liblcms2-2 libllvm11 liblsan0 libmfx1 -2024-04-29T04:06:28Z #8 6.306 libmp3lame0 libmpc3 libmpfr6 libnsl-dev libnss-systemd libnuma1 libogg0 -2024-04-29T04:06:28Z #8 6.306 libopenjp2-7 libopus0 libpam-systemd libpango-1.0-0 libpangocairo-1.0-0 -2024-04-29T04:06:28Z #8 6.306 libpangoft2-1.0-0 libpciaccess0 libpixman-1-0 libpng16-16 libproxy1v5 -2024-04-29T04:06:28Z #8 6.306 libquadmath0 librest-0.7-0 librsvg2-2 librsvg2-common libsensors-config -2024-04-29T04:06:28Z #8 6.306 libsensors5 libshine3 libsnappy1v5 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 -2024-04-29T04:06:28Z #8 6.306 libspeex1 libswresample3 libthai-data libthai0 libtheora0 libtiff5 -2024-04-29T04:06:28Z #8 6.306 libtirpc-dev libtsan0 libtwolame0 libubsan1 libva-drm2 libva-x11-2 libva2 -2024-04-29T04:06:28Z #8 6.306 libvdpau-va-gl1 libvdpau1 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 -2024-04-29T04:06:28Z #8 6.306 libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwebp6 -2024-04-29T04:06:28Z #8 6.306 libwebpmux3 libx11-xcb1 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 -2024-04-29T04:06:28Z #8 6.306 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 -2024-04-29T04:06:28Z #8 6.306 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcomposite1 -2024-04-29T04:06:28Z #8 6.306 libxcursor1 libxdamage1 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 -2024-04-29T04:06:28Z #8 6.306 libxkbfile1 libxml2 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 -2024-04-29T04:06:28Z #8 6.306 libxtst6 libxv1 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common -2024-04-29T04:06:28Z #8 6.306 libzvbi0 linux-libc-dev manpages manpages-dev mesa-va-drivers -2024-04-29T04:06:28Z #8 6.306 mesa-vdpau-drivers mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info -2024-04-29T04:06:28Z #8 6.306 systemd systemd-sysv systemd-timesyncd va-driver-all vdpau-driver-all -2024-04-29T04:06:28Z #8 6.306 xkb-data -2024-04-29T04:06:28Z #8 6.308 Suggested packages: -2024-04-29T04:06:28Z #8 6.309 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-04-29T04:06:28Z #8 6.309 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-04-29T04:06:28Z #8 6.310 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-04-29T04:06:28Z #8 6.315 libasound2-plugins alsa-utils glibc-doc libc-l10n locales colord cups-common -2024-04-29T04:06:28Z #8 6.315 libgd-tools gvfs liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors -2024-04-29T04:06:28Z #8 6.315 speex man-browser opencl-icd ed diffutils-doc systemd-container policykit-1 -2024-04-29T04:06:28Z #8 6.315 zip nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-04-29T04:06:28Z #8 6.315 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-04-29T04:06:28Z #8 6.315 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-04-29T04:06:28Z #8 6.315 Recommended packages: -2024-04-29T04:06:28Z #8 6.315 libnss-nis libnss-nisplus -2024-04-29T04:06:30Z #8 8.297 The following NEW packages will be installed: -2024-04-29T04:06:30Z #8 8.298 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-04-29T04:06:30Z #8 8.299 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-04-29T04:06:30Z #8 8.300 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-04-29T04:06:30Z #8 8.307 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-04-29T04:06:30Z #8 8.307 glib-networking glib-networking-common glib-networking-services -2024-04-29T04:06:30Z #8 8.307 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-04-29T04:06:30Z #8 8.307 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-04-29T04:06:30Z #8 8.307 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-04-29T04:06:30Z #8 8.307 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-04-29T04:06:30Z #8 8.307 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-04-29T04:06:30Z #8 8.307 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-04-29T04:06:30Z #8 8.307 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-04-29T04:06:30Z #8 8.307 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-04-29T04:06:30Z #8 8.307 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-04-29T04:06:30Z #8 8.307 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-04-29T04:06:30Z #8 8.307 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-04-29T04:06:30Z #8 8.307 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-04-29T04:06:30Z #8 8.307 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-04-29T04:06:30Z #8 8.307 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-04-29T04:06:30Z #8 8.307 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-04-29T04:06:30Z #8 8.307 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-04-29T04:06:30Z #8 8.307 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-04-29T04:06:30Z #8 8.307 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-04-29T04:06:31Z #8 8.307 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-04-29T04:06:31Z #8 8.307 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-04-29T04:06:31Z #8 8.307 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-04-29T04:06:31Z #8 8.307 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-04-29T04:06:31Z #8 8.307 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-04-29T04:06:31Z #8 8.307 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-04-29T04:06:31Z #8 8.307 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-04-29T04:06:31Z #8 8.307 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-04-29T04:06:31Z #8 8.307 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-04-29T04:06:31Z #8 8.307 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-04-29T04:06:31Z #8 8.307 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-04-29T04:06:31Z #8 8.307 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-04-29T04:06:31Z #8 8.307 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-04-29T04:06:31Z #8 8.307 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-04-29T04:06:31Z #8 8.307 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-04-29T04:06:31Z #8 8.307 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-04-29T04:06:31Z #8 8.307 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-04-29T04:06:31Z #8 8.307 x11-utils xkb-data -2024-04-29T04:06:31Z #8 8.307 The following packages will be upgraded: -2024-04-29T04:06:31Z #8 8.307 libc6 -2024-04-29T04:06:31Z #8 8.357 1 upgraded, 221 newly installed, 0 to remove and 1 not upgraded. -2024-04-29T04:06:31Z #8 8.357 Need to get 238 MB of archives. -2024-04-29T04:06:31Z #8 8.357 After this operation, 891 MB of additional disk space will be used. -2024-04-29T04:06:31Z #8 8.357 Get:1 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6 amd64 2.31-13+deb11u9 [2824 kB] -2024-04-29T04:06:31Z #8 8.441 Get:2 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-04-29T04:06:31Z #8 8.456 Get:3 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-04-29T04:06:31Z #8 8.462 Get:4 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-04-29T04:06:31Z #8 8.467 Get:5 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-04-29T04:06:31Z #8 8.471 Get:6 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-04-29T04:06:31Z #8 8.482 Get:7 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-04-29T04:06:31Z #8 8.485 Get:8 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-04-29T04:06:31Z #8 8.498 Get:9 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-04-29T04:06:31Z #8 8.501 Get:10 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-04-29T04:06:31Z #8 8.503 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-04-29T04:06:31Z #8 8.626 Get:12 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-04-29T04:06:31Z #8 8.628 Get:13 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-04-29T04:06:31Z #8 8.632 Get:14 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-04-29T04:06:31Z #8 8.636 Get:15 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-04-29T04:06:31Z #8 8.640 Get:16 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-04-29T04:06:31Z #8 8.644 Get:17 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-04-29T04:06:31Z #8 8.669 Get:18 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-04-29T04:06:31Z #8 8.673 Get:19 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-04-29T04:06:31Z #8 8.674 Get:20 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-04-29T04:06:31Z #8 8.680 Get:21 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-04-29T04:06:31Z #8 8.938 Get:22 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-04-29T04:06:31Z #8 8.949 Get:23 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-04-29T04:06:31Z #8 8.968 Get:24 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-04-29T04:06:31Z #8 8.971 Get:25 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-04-29T04:06:31Z #8 8.977 Get:26 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-04-29T04:06:31Z #8 8.989 Get:27 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-04-29T04:06:31Z #8 8.991 Get:28 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-04-29T04:06:31Z #8 8.996 Get:29 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-04-29T04:06:31Z #8 9.005 Get:30 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-04-29T04:06:31Z #8 9.009 Get:31 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-04-29T04:06:31Z #8 9.012 Get:32 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-04-29T04:06:31Z #8 9.348 Get:33 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-04-29T04:06:31Z #8 9.350 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-04-29T04:06:31Z #8 9.353 Get:35 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-04-29T04:06:31Z #8 9.362 Get:36 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-04-29T04:06:31Z #8 9.364 Get:37 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-04-29T04:06:31Z #8 9.366 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-04-29T04:06:31Z #8 9.369 Get:39 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-04-29T04:06:31Z #8 9.374 Get:40 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-04-29T04:06:31Z #8 9.377 Get:41 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-04-29T04:06:31Z #8 9.416 Get:42 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-04-29T04:06:32Z #8 9.432 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-04-29T04:06:32Z #8 9.461 Get:44 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-04-29T04:06:32Z #8 9.463 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-04-29T04:06:32Z #8 9.496 Get:46 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-04-29T04:06:32Z #8 9.501 Get:47 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-04-29T04:06:32Z #8 9.514 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-04-29T04:06:32Z #8 9.547 Get:49 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-04-29T04:06:32Z #8 9.552 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-04-29T04:06:32Z #8 9.800 Get:51 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-04-29T04:06:32Z #8 9.804 Get:52 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-04-29T04:06:32Z #8 9.808 Get:53 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-04-29T04:06:32Z #8 9.812 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-04-29T04:06:32Z #8 9.813 Get:55 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-04-29T04:06:32Z #8 9.815 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-04-29T04:06:32Z #8 9.818 Get:57 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-04-29T04:06:32Z #8 9.820 Get:58 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-04-29T04:06:32Z #8 9.827 Get:59 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-04-29T04:06:32Z #8 9.848 Get:60 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-04-29T04:06:32Z #8 9.853 Get:61 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-04-29T04:06:32Z #8 9.861 Get:62 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-04-29T04:06:32Z #8 9.873 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-04-29T04:06:32Z #8 9.894 Get:64 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-04-29T04:06:32Z #8 9.897 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-04-29T04:06:32Z #8 9.907 Get:66 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-04-29T04:06:32Z #8 9.916 Get:67 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-04-29T04:06:32Z #8 9.919 Get:68 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-04-29T04:06:32Z #8 9.923 Get:69 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-04-29T04:06:32Z #8 9.925 Get:70 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-04-29T04:06:32Z #8 9.929 Get:71 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-04-29T04:06:32Z #8 9.934 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-04-29T04:06:32Z #8 9.938 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-04-29T04:06:32Z #8 9.941 Get:74 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-04-29T04:06:32Z #8 9.945 Get:75 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-04-29T04:06:32Z #8 9.954 Get:76 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-04-29T04:06:32Z #8 9.958 Get:77 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-04-29T04:06:32Z #8 9.961 Get:78 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-04-29T04:06:32Z #8 9.963 Get:79 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-04-29T04:06:32Z #8 9.989 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-04-29T04:06:32Z #8 9.991 Get:81 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-04-29T04:06:32Z #8 9.993 Get:82 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-04-29T04:06:32Z #8 9.999 Get:83 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-04-29T04:06:32Z #8 10.00 Get:84 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-04-29T04:06:32Z #8 10.01 Get:85 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-04-29T04:06:32Z #8 10.01 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-04-29T04:06:32Z #8 10.03 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-04-29T04:06:32Z #8 10.03 Get:88 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-04-29T04:06:32Z #8 10.03 Get:89 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-04-29T04:06:32Z #8 10.03 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-04-29T04:06:32Z #8 10.04 Get:91 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-04-29T04:06:32Z #8 10.04 Get:92 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-04-29T04:06:32Z #8 10.05 Get:93 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-04-29T04:06:32Z #8 10.05 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-04-29T04:06:32Z #8 10.06 Get:95 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-04-29T04:06:32Z #8 10.06 Get:96 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-04-29T04:06:32Z #8 10.06 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-04-29T04:06:32Z #8 10.07 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-04-29T04:06:32Z #8 10.07 Get:99 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-04-29T04:06:32Z #8 10.07 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-04-29T04:06:32Z #8 10.08 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-04-29T04:06:32Z #8 10.08 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-04-29T04:06:32Z #8 10.09 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-04-29T04:06:32Z #8 10.09 Get:104 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-04-29T04:06:32Z #8 10.10 Get:105 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-04-29T04:06:32Z #8 10.11 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-04-29T04:06:32Z #8 10.14 Get:107 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-04-29T04:06:32Z #8 10.14 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-04-29T04:06:32Z #8 10.21 Get:109 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-04-29T04:06:32Z #8 10.26 Get:110 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-04-29T04:06:32Z #8 10.26 Get:111 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.10.0esr-1~deb11u1 [63.7 MB] -2024-04-29T04:06:34Z #8 11.66 Get:112 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-04-29T04:06:34Z #8 11.66 Get:113 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-04-29T04:06:34Z #8 11.66 Get:114 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-04-29T04:06:34Z #8 11.67 Get:115 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-04-29T04:06:34Z #8 11.67 Get:116 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-04-29T04:06:34Z #8 11.67 Get:117 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-04-29T04:06:34Z #8 11.70 Get:118 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-04-29T04:06:34Z #8 11.72 Get:119 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-04-29T04:06:34Z #8 11.76 Get:120 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-04-29T04:06:34Z #8 11.78 Get:121 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-04-29T04:06:34Z #8 11.79 Get:122 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-04-29T04:06:34Z #8 11.82 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-04-29T04:06:34Z #8 12.29 Get:124 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-04-29T04:06:34Z #8 12.29 Get:125 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-04-29T04:06:34Z #8 12.29 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-04-29T04:06:34Z #8 12.30 Get:127 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-04-29T04:06:34Z #8 12.30 Get:128 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-04-29T04:06:34Z #8 12.30 Get:129 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-04-29T04:06:34Z #8 12.30 Get:130 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-04-29T04:06:34Z #8 12.31 Get:131 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-04-29T04:06:34Z #8 12.31 Get:132 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-04-29T04:06:34Z #8 12.36 Get:133 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-04-29T04:06:35Z #8 12.40 Get:134 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-04-29T04:06:35Z #8 12.49 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-04-29T04:06:35Z #8 12.49 Get:136 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-04-29T04:06:35Z #8 12.49 Get:137 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-04-29T04:06:35Z #8 12.49 Get:138 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-04-29T04:06:35Z #8 12.50 Get:139 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-04-29T04:06:35Z #8 12.51 Get:140 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-04-29T04:06:35Z #8 12.72 Get:141 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-04-29T04:06:35Z #8 12.73 Get:142 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-04-29T04:06:35Z #8 12.73 Get:143 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-04-29T04:06:35Z #8 12.74 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-04-29T04:06:35Z #8 12.75 Get:145 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-04-29T04:06:35Z #8 12.75 Get:146 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-04-29T04:06:35Z #8 12.79 Get:147 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-04-29T04:06:35Z #8 12.79 Get:148 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-04-29T04:06:35Z #8 12.79 Get:149 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-04-29T04:06:35Z #8 12.79 Get:150 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-04-29T04:06:35Z #8 12.80 Get:151 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-04-29T04:06:35Z #8 12.80 Get:152 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-04-29T04:06:35Z #8 12.80 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-04-29T04:06:35Z #8 12.81 Get:154 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-04-29T04:06:35Z #8 12.82 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-04-29T04:06:35Z #8 12.82 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-04-29T04:06:35Z #8 12.82 Get:157 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-04-29T04:06:35Z #8 12.85 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-04-29T04:06:35Z #8 12.86 Get:159 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-04-29T04:06:35Z #8 12.86 Get:160 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-04-29T04:06:35Z #8 12.87 Get:161 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-04-29T04:06:35Z #8 12.88 Get:162 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-04-29T04:06:35Z #8 12.90 Get:163 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-04-29T04:06:35Z #8 12.90 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-04-29T04:06:35Z #8 12.91 Get:165 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-04-29T04:06:35Z #8 12.91 Get:166 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-04-29T04:06:35Z #8 13.04 Get:167 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-dev-bin amd64 2.31-13+deb11u9 [276 kB] -2024-04-29T04:06:35Z #8 13.05 Get:168 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-04-29T04:06:35Z #8 13.05 Get:169 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-04-29T04:06:35Z #8 13.06 Get:170 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-devtools amd64 2.31-13+deb11u9 [246 kB] -2024-04-29T04:06:35Z #8 13.06 Get:171 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-04-29T04:06:35Z #8 13.08 Get:172 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-04-29T04:06:35Z #8 13.09 Get:173 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-04-29T04:06:35Z #8 13.09 Get:174 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-04-29T04:06:35Z #8 13.09 Get:175 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6-dev amd64 2.31-13+deb11u9 [2360 kB] -2024-04-29T04:06:35Z #8 13.14 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-04-29T04:06:35Z #8 13.15 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-04-29T04:06:35Z #8 13.16 Get:178 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-04-29T04:06:35Z #8 13.16 Get:179 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-04-29T04:06:35Z #8 13.16 Get:180 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-04-29T04:06:35Z #8 13.16 Get:181 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-04-29T04:06:35Z #8 13.16 Get:182 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-04-29T04:06:35Z #8 13.17 Get:183 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-04-29T04:06:35Z #8 13.36 Get:184 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-04-29T04:06:36Z #8 13.88 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-04-29T04:06:36Z #8 13.88 Get:186 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-04-29T04:06:36Z #8 13.88 Get:187 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-04-29T04:06:36Z #8 13.89 Get:188 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-04-29T04:06:36Z #8 14.17 Get:189 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-04-29T04:06:36Z #8 14.17 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-04-29T04:06:36Z #8 14.18 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-04-29T04:06:36Z #8 14.18 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-04-29T04:06:36Z #8 14.18 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-04-29T04:06:36Z #8 14.19 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-04-29T04:06:36Z #8 14.19 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-04-29T04:06:36Z #8 14.20 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-04-29T04:06:36Z #8 14.20 Get:197 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-04-29T04:06:36Z #8 14.20 Get:198 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-04-29T04:06:36Z #8 14.21 Get:199 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-04-29T04:06:36Z #8 14.21 Get:200 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-04-29T04:06:36Z #8 14.21 Get:201 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-04-29T04:06:36Z #8 14.22 Get:202 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-04-29T04:06:36Z #8 14.22 Get:203 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-04-29T04:06:36Z #8 14.22 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-04-29T04:06:36Z #8 14.22 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-04-29T04:06:36Z #8 14.23 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-04-29T04:06:36Z #8 14.24 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-04-29T04:06:36Z #8 14.24 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-04-29T04:06:36Z #8 14.25 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-04-29T04:06:36Z #8 14.25 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-04-29T04:06:36Z #8 14.25 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-04-29T04:06:36Z #8 14.25 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-04-29T04:06:36Z #8 14.25 Get:213 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-04-29T04:06:36Z #8 14.26 Get:214 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-04-29T04:06:36Z #8 14.31 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-04-29T04:06:36Z #8 14.38 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-04-29T04:06:36Z #8 14.44 Get:217 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-04-29T04:06:37Z #8 14.54 Get:218 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-04-29T04:06:37Z #8 14.54 Get:219 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-04-29T04:06:37Z #8 14.55 Get:220 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-04-29T04:06:37Z #8 14.55 Get:221 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-04-29T04:06:37Z #8 14.55 Get:222 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-04-29T04:06:37Z #8 14.94 debconf: delaying package configuration, since apt-utils is not installed -2024-04-29T04:06:37Z #8 15.01 Fetched 238 MB in 6s (38.3 MB/s) -2024-04-29T04:06:37Z #8 15.07 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-04-29T04:06:37Z #8 15.10 Preparing to unpack .../libc6_2.31-13+deb11u9_amd64.deb ... -2024-04-29T04:06:38Z #8 15.38 Unpacking libc6:amd64 (2.31-13+deb11u9) over (2.31-13+deb11u8) ... -2024-04-29T04:06:39Z #8 17.29 Setting up libc6:amd64 (2.31-13+deb11u9) ... -2024-04-29T04:06:41Z #8 18.59 Selecting previously unselected package libapparmor1:amd64. -2024-04-29T04:06:41Z #8 18.59 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-04-29T04:06:41Z #8 18.62 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-04-29T04:06:41Z #8 18.62 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-04-29T04:06:41Z #8 18.68 Selecting previously unselected package libcap2:amd64. -2024-04-29T04:06:41Z #8 18.68 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-04-29T04:06:41Z #8 18.69 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-04-29T04:06:41Z #8 18.74 Selecting previously unselected package libargon2-1:amd64. -2024-04-29T04:06:41Z #8 18.75 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-04-29T04:06:41Z #8 18.75 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-29T04:06:41Z #8 18.80 Selecting previously unselected package dmsetup. -2024-04-29T04:06:41Z #8 18.80 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-04-29T04:06:41Z #8 18.81 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-04-29T04:06:41Z #8 18.87 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-04-29T04:06:41Z #8 18.87 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-04-29T04:06:41Z #8 18.88 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-29T04:06:41Z #8 18.95 Selecting previously unselected package libjson-c5:amd64. -2024-04-29T04:06:41Z #8 18.96 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-04-29T04:06:41Z #8 18.97 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-29T04:06:41Z #8 19.03 Selecting previously unselected package libcryptsetup12:amd64. -2024-04-29T04:06:41Z #8 19.03 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-04-29T04:06:41Z #8 19.04 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-29T04:06:41Z #8 19.14 Selecting previously unselected package libip4tc2:amd64. -2024-04-29T04:06:41Z #8 19.14 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-04-29T04:06:41Z #8 19.15 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-04-29T04:06:41Z #8 19.20 Selecting previously unselected package libkmod2:amd64. -2024-04-29T04:06:41Z #8 19.21 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-04-29T04:06:41Z #8 19.22 Unpacking libkmod2:amd64 (28-1) ... -2024-04-29T04:06:41Z #8 19.30 Selecting previously unselected package systemd. -2024-04-29T04:06:41Z #8 19.30 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-29T04:06:41Z #8 19.38 Unpacking systemd (247.3-7+deb11u4) ... -2024-04-29T04:06:42Z #8 20.45 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-04-29T04:06:43Z #8 20.47 Setting up libcap2:amd64 (1:2.44-1) ... -2024-04-29T04:06:43Z #8 20.48 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-04-29T04:06:43Z #8 20.54 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-04-29T04:06:43Z #8 20.56 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-04-29T04:06:43Z #8 20.57 Setting up libkmod2:amd64 (28-1) ... -2024-04-29T04:06:43Z #8 20.59 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-04-29T04:06:43Z #8 20.61 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-04-29T04:06:43Z #8 20.62 Setting up systemd (247.3-7+deb11u4) ... -2024-04-29T04:06:43Z #8 20.67 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-04-29T04:06:43Z #8 20.68 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-04-29T04:06:43Z #8 20.68 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-04-29T04:06:43Z #8 20.71 Initializing machine ID from KVM UUID. -2024-04-29T04:06:43Z #8 21.24 Setting up dmsetup (2:1.02.175-2.1) ... -2024-04-29T04:06:43Z #8 21.33 Selecting previously unselected package systemd-sysv. -2024-04-29T04:06:43Z #8 21.33 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-04-29T04:06:43Z #8 21.36 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-04-29T04:06:43Z #8 21.37 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-04-29T04:06:43Z #8 21.44 Selecting previously unselected package libdbus-1-3:amd64. -2024-04-29T04:06:43Z #8 21.44 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-04-29T04:06:44Z #8 21.45 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-29T04:06:44Z #8 21.58 Selecting previously unselected package dbus. -2024-04-29T04:06:44Z #8 21.58 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-04-29T04:06:44Z #8 21.59 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-04-29T04:06:44Z #8 21.72 Selecting previously unselected package libnss-systemd:amd64. -2024-04-29T04:06:44Z #8 21.73 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-29T04:06:44Z #8 21.73 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-29T04:06:44Z #8 21.85 Selecting previously unselected package libpam-systemd:amd64. -2024-04-29T04:06:44Z #8 21.85 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-04-29T04:06:44Z #8 21.86 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-29T04:06:44Z #8 21.95 Selecting previously unselected package manpages. -2024-04-29T04:06:44Z #8 21.95 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-04-29T04:06:44Z #8 21.96 Unpacking manpages (5.10-1) ... -2024-04-29T04:06:44Z #8 22.20 Selecting previously unselected package systemd-timesyncd. -2024-04-29T04:06:44Z #8 22.20 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-04-29T04:06:44Z #8 22.21 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-29T04:06:44Z #8 22.29 Selecting previously unselected package hicolor-icon-theme. -2024-04-29T04:06:44Z #8 22.29 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-04-29T04:06:44Z #8 22.30 Unpacking hicolor-icon-theme (0.17-2) ... -2024-04-29T04:06:45Z #8 22.40 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-04-29T04:06:45Z #8 22.41 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-04-29T04:06:45Z #8 22.41 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-29T04:06:45Z #8 22.53 Selecting previously unselected package libicu67:amd64. -2024-04-29T04:06:45Z #8 22.53 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-04-29T04:06:45Z #8 22.54 Unpacking libicu67:amd64 (67.1-7) ... -2024-04-29T04:06:46Z #8 24.30 Selecting previously unselected package libxml2:amd64. -2024-04-29T04:06:46Z #8 24.31 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-04-29T04:06:46Z #8 24.31 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-29T04:06:47Z #8 24.49 Selecting previously unselected package shared-mime-info. -2024-04-29T04:06:47Z #8 24.49 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-04-29T04:06:47Z #8 24.50 Unpacking shared-mime-info (2.0-1) ... -2024-04-29T04:06:47Z #8 24.72 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-04-29T04:06:47Z #8 24.72 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-04-29T04:06:47Z #8 24.73 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-29T04:06:47Z #8 24.81 Selecting previously unselected package libpng16-16:amd64. -2024-04-29T04:06:47Z #8 24.82 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-04-29T04:06:47Z #8 24.82 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-04-29T04:06:47Z #8 24.92 Selecting previously unselected package libdeflate0:amd64. -2024-04-29T04:06:47Z #8 24.92 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-04-29T04:06:47Z #8 24.94 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-04-29T04:06:47Z #8 25.00 Selecting previously unselected package libjbig0:amd64. -2024-04-29T04:06:47Z #8 25.00 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-04-29T04:06:47Z #8 25.01 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-29T04:06:47Z #8 25.06 Selecting previously unselected package libwebp6:amd64. -2024-04-29T04:06:47Z #8 25.07 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-29T04:06:47Z #8 25.07 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-29T04:06:47Z #8 25.17 Selecting previously unselected package libtiff5:amd64. -2024-04-29T04:06:47Z #8 25.17 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-04-29T04:06:47Z #8 25.18 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-29T04:06:47Z #8 25.27 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-04-29T04:06:47Z #8 25.28 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-29T04:06:47Z #8 25.28 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-29T04:06:47Z #8 25.37 Selecting previously unselected package gtk-update-icon-cache. -2024-04-29T04:06:48Z #8 25.37 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-04-29T04:06:48Z #8 25.38 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-29T04:06:48Z #8 25.47 Selecting previously unselected package adwaita-icon-theme. -2024-04-29T04:06:48Z #8 25.48 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-04-29T04:06:48Z #8 25.49 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-04-29T04:06:50Z #8 28.36 Selecting previously unselected package alsa-topology-conf. -2024-04-29T04:06:50Z #8 28.37 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-04-29T04:06:50Z #8 28.37 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-04-29T04:06:50Z #8 28.43 Selecting previously unselected package libasound2-data. -2024-04-29T04:06:51Z #8 28.43 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-04-29T04:06:51Z #8 28.44 Unpacking libasound2-data (1.2.4-1.1) ... -2024-04-29T04:06:51Z #8 28.52 Selecting previously unselected package libasound2:amd64. -2024-04-29T04:06:51Z #8 28.52 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-04-29T04:06:51Z #8 28.53 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-04-29T04:06:51Z #8 28.64 Selecting previously unselected package alsa-ucm-conf. -2024-04-29T04:06:51Z #8 28.65 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-04-29T04:06:51Z #8 28.65 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-04-29T04:06:51Z #8 28.75 Selecting previously unselected package libatspi2.0-0:amd64. -2024-04-29T04:06:51Z #8 28.76 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-04-29T04:06:51Z #8 28.77 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-29T04:06:51Z #8 28.84 Selecting previously unselected package libxi6:amd64. -2024-04-29T04:06:51Z #8 28.84 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-04-29T04:06:51Z #8 28.85 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-04-29T04:06:51Z #8 28.91 Selecting previously unselected package libxtst6:amd64. -2024-04-29T04:06:51Z #8 28.91 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-04-29T04:06:51Z #8 28.92 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-04-29T04:06:51Z #8 28.97 Selecting previously unselected package at-spi2-core. -2024-04-29T04:06:51Z #8 28.97 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-04-29T04:06:51Z #8 28.98 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-29T04:06:51Z #8 29.05 Selecting previously unselected package binutils-common:amd64. -2024-04-29T04:06:51Z #8 29.05 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-04-29T04:06:51Z #8 29.06 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-04-29T04:06:52Z #8 29.51 Selecting previously unselected package libbinutils:amd64. -2024-04-29T04:06:52Z #8 29.52 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-04-29T04:06:52Z #8 29.52 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-04-29T04:06:52Z #8 29.70 Selecting previously unselected package libctf-nobfd0:amd64. -2024-04-29T04:06:52Z #8 29.70 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-04-29T04:06:52Z #8 29.71 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-29T04:06:52Z #8 29.78 Selecting previously unselected package libctf0:amd64. -2024-04-29T04:06:52Z #8 29.78 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-04-29T04:06:52Z #8 29.79 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-04-29T04:06:52Z #8 29.84 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-04-29T04:06:52Z #8 29.85 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-04-29T04:06:52Z #8 29.86 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-29T04:06:53Z #8 30.35 Selecting previously unselected package binutils. -2024-04-29T04:06:53Z #8 30.35 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-04-29T04:06:53Z #8 30.37 Unpacking binutils (2.35.2-2) ... -2024-04-29T04:06:53Z #8 30.42 Selecting previously unselected package libisl23:amd64. -2024-04-29T04:06:53Z #8 30.43 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-04-29T04:06:53Z #8 30.43 Unpacking libisl23:amd64 (0.23-1) ... -2024-04-29T04:06:53Z #8 30.62 Selecting previously unselected package libmpfr6:amd64. -2024-04-29T04:06:53Z #8 30.62 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-04-29T04:06:53Z #8 30.63 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-04-29T04:06:53Z #8 30.88 Selecting previously unselected package libmpc3:amd64. -2024-04-29T04:06:53Z #8 30.89 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-04-29T04:06:53Z #8 30.90 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-04-29T04:06:53Z #8 30.94 Selecting previously unselected package cpp-10. -2024-04-29T04:06:53Z #8 30.95 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-04-29T04:06:53Z #8 30.95 Unpacking cpp-10 (10.2.1-6) ... -2024-04-29T04:06:55Z #8 32.66 Selecting previously unselected package cpp. -2024-04-29T04:06:55Z #8 32.67 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-04-29T04:06:55Z #8 32.67 Unpacking cpp (4:10.2.1-1) ... -2024-04-29T04:06:55Z #8 32.73 Selecting previously unselected package dbus-user-session. -2024-04-29T04:06:55Z #8 32.73 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-04-29T04:06:55Z #8 32.74 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-29T04:06:55Z #8 32.81 Selecting previously unselected package libdconf1:amd64. -2024-04-29T04:06:55Z #8 32.82 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-04-29T04:06:55Z #8 32.82 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-04-29T04:06:55Z #8 32.87 Selecting previously unselected package dconf-service. -2024-04-29T04:06:55Z #8 32.87 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-04-29T04:06:55Z #8 32.88 Unpacking dconf-service (0.38.0-2) ... -2024-04-29T04:06:55Z #8 32.92 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-04-29T04:06:55Z #8 32.93 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-04-29T04:06:55Z #8 32.94 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-29T04:06:55Z #8 32.98 Selecting previously unselected package libatk1.0-data. -2024-04-29T04:06:55Z #8 32.98 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-04-29T04:06:55Z #8 32.99 Unpacking libatk1.0-data (2.36.0-2) ... -2024-04-29T04:06:55Z #8 33.08 Selecting previously unselected package libatk1.0-0:amd64. -2024-04-29T04:06:55Z #8 33.08 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-04-29T04:06:55Z #8 33.09 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-29T04:06:55Z #8 33.15 Selecting previously unselected package libfreetype6:amd64. -2024-04-29T04:06:55Z #8 33.16 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-04-29T04:06:55Z #8 33.16 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-29T04:06:55Z #8 33.28 Selecting previously unselected package fonts-dejavu-core. -2024-04-29T04:06:55Z #8 33.28 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-04-29T04:06:55Z #8 33.30 Unpacking fonts-dejavu-core (2.37-2) ... -2024-04-29T04:06:56Z #8 33.56 Selecting previously unselected package fontconfig-config. -2024-04-29T04:06:56Z #8 33.56 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-04-29T04:06:56Z #8 33.74 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-04-29T04:06:56Z #8 33.83 Selecting previously unselected package libfontconfig1:amd64. -2024-04-29T04:06:56Z #8 33.84 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-04-29T04:06:56Z #8 33.84 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-29T04:06:56Z #8 33.92 Selecting previously unselected package libpixman-1-0:amd64. -2024-04-29T04:06:56Z #8 33.93 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-04-29T04:06:56Z #8 33.94 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-29T04:06:56Z #8 34.04 Selecting previously unselected package libxcb-render0:amd64. -2024-04-29T04:06:56Z #8 34.05 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-04-29T04:06:56Z #8 34.05 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-04-29T04:06:56Z #8 34.12 Selecting previously unselected package libxcb-shm0:amd64. -2024-04-29T04:06:56Z #8 34.12 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-04-29T04:06:56Z #8 34.13 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-04-29T04:06:56Z #8 34.20 Selecting previously unselected package libcairo2:amd64. -2024-04-29T04:06:56Z #8 34.20 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-04-29T04:06:56Z #8 34.21 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-04-29T04:06:56Z #8 34.36 Selecting previously unselected package libcairo-gobject2:amd64. -2024-04-29T04:06:56Z #8 34.36 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-04-29T04:06:56Z #8 34.37 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-29T04:06:56Z #8 34.43 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-04-29T04:06:56Z #8 34.44 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-04-29T04:06:56Z #8 34.44 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-29T04:06:57Z #8 34.52 Selecting previously unselected package libevent-2.1-7:amd64. -2024-04-29T04:06:57Z #8 34.52 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-04-29T04:06:57Z #8 34.53 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-29T04:06:57Z #8 34.60 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-04-29T04:06:57Z #8 34.61 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-04-29T04:06:57Z #8 34.61 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-29T04:06:57Z #8 34.67 Selecting previously unselected package liblcms2-2:amd64. -2024-04-29T04:06:57Z #8 34.68 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-04-29T04:06:57Z #8 34.68 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-29T04:06:57Z #8 34.76 Selecting previously unselected package libcolord2:amd64. -2024-04-29T04:06:57Z #8 34.76 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-04-29T04:06:57Z #8 34.77 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-04-29T04:06:57Z #8 34.85 Selecting previously unselected package libavahi-common-data:amd64. -2024-04-29T04:06:57Z #8 34.85 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-04-29T04:06:57Z #8 34.86 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-29T04:06:57Z #8 34.94 Selecting previously unselected package libavahi-common3:amd64. -2024-04-29T04:06:57Z #8 34.94 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-04-29T04:06:57Z #8 34.95 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-29T04:06:57Z #8 35.02 Selecting previously unselected package libavahi-client3:amd64. -2024-04-29T04:06:57Z #8 35.02 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-04-29T04:06:57Z #8 35.03 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-29T04:06:57Z #8 35.09 Selecting previously unselected package libcups2:amd64. -2024-04-29T04:06:57Z #8 35.10 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-04-29T04:06:57Z #8 35.11 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-29T04:06:57Z #8 35.22 Selecting previously unselected package libepoxy0:amd64. -2024-04-29T04:06:57Z #8 35.23 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-04-29T04:06:57Z #8 35.23 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-04-29T04:06:58Z #8 35.33 Selecting previously unselected package libfribidi0:amd64. -2024-04-29T04:06:58Z #8 35.34 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-04-29T04:06:58Z #8 35.35 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-29T04:06:58Z #8 35.42 Selecting previously unselected package libgraphite2-3:amd64. -2024-04-29T04:06:58Z #8 35.42 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-04-29T04:06:58Z #8 35.43 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-29T04:06:58Z #8 35.49 Selecting previously unselected package libharfbuzz0b:amd64. -2024-04-29T04:06:58Z #8 35.50 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-04-29T04:06:58Z #8 35.51 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-29T04:06:58Z #8 35.62 Selecting previously unselected package libjson-glib-1.0-common. -2024-04-29T04:06:58Z #8 35.63 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-04-29T04:06:58Z #8 35.63 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-04-29T04:06:58Z #8 35.71 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-04-29T04:06:58Z #8 35.71 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-04-29T04:06:58Z #8 35.72 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-29T04:06:58Z #8 35.77 Selecting previously unselected package fontconfig. -2024-04-29T04:06:58Z #8 35.78 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-04-29T04:06:58Z #8 35.78 Unpacking fontconfig (2.13.1-4.2) ... -2024-04-29T04:06:58Z #8 35.87 Selecting previously unselected package libthai-data. -2024-04-29T04:06:58Z #8 35.88 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-04-29T04:06:58Z #8 35.89 Unpacking libthai-data (0.1.28-3) ... -2024-04-29T04:06:58Z #8 35.97 Selecting previously unselected package libdatrie1:amd64. -2024-04-29T04:06:58Z #8 35.97 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-04-29T04:06:58Z #8 35.98 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-04-29T04:06:58Z #8 36.04 Selecting previously unselected package libthai0:amd64. -2024-04-29T04:06:58Z #8 36.05 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-04-29T04:06:58Z #8 36.05 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-04-29T04:06:58Z #8 36.10 Selecting previously unselected package libpango-1.0-0:amd64. -2024-04-29T04:06:58Z #8 36.11 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-04-29T04:06:58Z #8 36.12 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-29T04:06:58Z #8 36.21 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-04-29T04:06:58Z #8 36.21 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-04-29T04:06:58Z #8 36.22 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-29T04:06:58Z #8 36.27 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-04-29T04:06:58Z #8 36.27 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-04-29T04:06:58Z #8 36.28 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-29T04:06:59Z #8 36.33 Selecting previously unselected package libproxy1v5:amd64. -2024-04-29T04:06:59Z #8 36.34 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-04-29T04:06:59Z #8 36.34 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-04-29T04:06:59Z #8 36.40 Selecting previously unselected package glib-networking-common. -2024-04-29T04:06:59Z #8 36.41 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-04-29T04:06:59Z #8 36.41 Unpacking glib-networking-common (2.66.0-2) ... -2024-04-29T04:06:59Z #8 36.48 Selecting previously unselected package glib-networking-services. -2024-04-29T04:06:59Z #8 36.49 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-04-29T04:06:59Z #8 36.49 Unpacking glib-networking-services (2.66.0-2) ... -2024-04-29T04:06:59Z #8 36.54 Selecting previously unselected package gsettings-desktop-schemas. -2024-04-29T04:06:59Z #8 36.55 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-04-29T04:06:59Z #8 36.56 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-04-29T04:06:59Z #8 36.73 Selecting previously unselected package glib-networking:amd64. -2024-04-29T04:06:59Z #8 36.74 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-04-29T04:06:59Z #8 36.75 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-04-29T04:06:59Z #8 36.81 Selecting previously unselected package libsoup2.4-1:amd64. -2024-04-29T04:06:59Z #8 36.82 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-04-29T04:06:59Z #8 36.83 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-29T04:06:59Z #8 36.95 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-04-29T04:06:59Z #8 36.95 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-04-29T04:06:59Z #8 36.96 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-29T04:06:59Z #8 37.01 Selecting previously unselected package librest-0.7-0:amd64. -2024-04-29T04:06:59Z #8 37.02 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-04-29T04:06:59Z #8 37.02 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-29T04:06:59Z #8 37.08 Selecting previously unselected package libwayland-client0:amd64. -2024-04-29T04:06:59Z #8 37.09 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-29T04:06:59Z #8 37.09 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-29T04:06:59Z #8 37.14 Selecting previously unselected package libwayland-cursor0:amd64. -2024-04-29T04:06:59Z #8 37.15 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-04-29T04:06:59Z #8 37.16 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-29T04:06:59Z #8 37.22 Selecting previously unselected package libwayland-egl1:amd64. -2024-04-29T04:06:59Z #8 37.22 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-04-29T04:06:59Z #8 37.23 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-29T04:06:59Z #8 37.28 Selecting previously unselected package libxcomposite1:amd64. -2024-04-29T04:06:59Z #8 37.29 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-04-29T04:06:59Z #8 37.30 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-29T04:06:59Z #8 37.36 Selecting previously unselected package libxfixes3:amd64. -2024-04-29T04:06:59Z #8 37.36 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-04-29T04:06:59Z #8 37.37 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-29T04:07:00Z #8 37.42 Selecting previously unselected package libxcursor1:amd64. -2024-04-29T04:07:00Z #8 37.42 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-04-29T04:07:00Z #8 37.43 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-29T04:07:00Z #8 37.49 Selecting previously unselected package libxdamage1:amd64. -2024-04-29T04:07:00Z #8 37.50 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-04-29T04:07:00Z #8 37.51 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-29T04:07:00Z #8 37.57 Selecting previously unselected package libxinerama1:amd64. -2024-04-29T04:07:00Z #8 37.57 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-04-29T04:07:00Z #8 37.58 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-29T04:07:00Z #8 37.63 Selecting previously unselected package xkb-data. -2024-04-29T04:07:00Z #8 37.64 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-04-29T04:07:00Z #8 37.65 Unpacking xkb-data (2.29-2) ... -2024-04-29T04:07:00Z #8 37.92 Selecting previously unselected package libxkbcommon0:amd64. -2024-04-29T04:07:00Z #8 37.92 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-04-29T04:07:00Z #8 37.93 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-29T04:07:00Z #8 37.99 Selecting previously unselected package libxrandr2:amd64. -2024-04-29T04:07:00Z #8 38.00 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-04-29T04:07:00Z #8 38.01 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-29T04:07:00Z #8 38.06 Selecting previously unselected package libgtk-3-common. -2024-04-29T04:07:00Z #8 38.07 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-04-29T04:07:00Z #8 38.07 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-29T04:07:01Z #8 38.93 Selecting previously unselected package libgtk-3-0:amd64. -2024-04-29T04:07:01Z #8 38.94 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-04-29T04:07:01Z #8 38.95 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-29T04:07:02Z #8 39.52 Selecting previously unselected package libx11-xcb1:amd64. -2024-04-29T04:07:02Z #8 39.52 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-04-29T04:07:02Z #8 39.53 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-29T04:07:02Z #8 39.61 Selecting previously unselected package firefox-esr. -2024-04-29T04:07:02Z #8 39.61 Preparing to unpack .../099-firefox-esr_115.10.0esr-1~deb11u1_amd64.deb ... -2024-04-29T04:07:02Z #8 39.63 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-04-29T04:07:02Z #8 39.64 Unpacking firefox-esr (115.10.0esr-1~deb11u1) ... -2024-04-29T04:07:13Z #8 50.94 Selecting previously unselected package fonts-humor-sans. -2024-04-29T04:07:13Z #8 50.94 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-04-29T04:07:13Z #8 50.94 Unpacking fonts-humor-sans (1.0-4) ... -2024-04-29T04:07:13Z #8 50.98 Selecting previously unselected package libcc1-0:amd64. -2024-04-29T04:07:13Z #8 50.99 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-04-29T04:07:13Z #8 51.00 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-04-29T04:07:13Z #8 51.04 Selecting previously unselected package libgomp1:amd64. -2024-04-29T04:07:13Z #8 51.04 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-04-29T04:07:13Z #8 51.05 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-04-29T04:07:13Z #8 51.11 Selecting previously unselected package libitm1:amd64. -2024-04-29T04:07:13Z #8 51.12 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-04-29T04:07:13Z #8 51.13 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-04-29T04:07:13Z #8 51.20 Selecting previously unselected package libatomic1:amd64. -2024-04-29T04:07:13Z #8 51.21 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-04-29T04:07:13Z #8 51.21 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-04-29T04:07:13Z #8 51.27 Selecting previously unselected package libasan6:amd64. -2024-04-29T04:07:13Z #8 51.27 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-04-29T04:07:13Z #8 51.28 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-04-29T04:07:14Z #8 51.67 Selecting previously unselected package liblsan0:amd64. -2024-04-29T04:07:14Z #8 51.68 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-04-29T04:07:14Z #8 51.68 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-04-29T04:07:14Z #8 51.86 Selecting previously unselected package libtsan0:amd64. -2024-04-29T04:07:14Z #8 51.87 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-04-29T04:07:14Z #8 51.87 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-04-29T04:07:14Z #8 52.33 Selecting previously unselected package libubsan1:amd64. -2024-04-29T04:07:14Z #8 52.34 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-04-29T04:07:14Z #8 52.34 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-04-29T04:07:15Z #8 52.53 Selecting previously unselected package libquadmath0:amd64. -2024-04-29T04:07:15Z #8 52.53 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-04-29T04:07:15Z #8 52.54 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-04-29T04:07:15Z #8 52.60 Selecting previously unselected package libgcc-10-dev:amd64. -2024-04-29T04:07:15Z #8 52.60 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-04-29T04:07:15Z #8 52.61 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-29T04:07:15Z #8 53.02 Selecting previously unselected package gcc-10. -2024-04-29T04:07:15Z #8 53.02 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-04-29T04:07:15Z #8 53.03 Unpacking gcc-10 (10.2.1-6) ... -2024-04-29T04:07:18Z #8 55.66 Selecting previously unselected package gcc. -2024-04-29T04:07:18Z #8 55.66 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-04-29T04:07:18Z #8 55.67 Unpacking gcc (4:10.2.1-1) ... -2024-04-29T04:07:18Z #8 55.72 Selecting previously unselected package libva2:amd64. -2024-04-29T04:07:18Z #8 55.73 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-04-29T04:07:18Z #8 55.73 Unpacking libva2:amd64 (2.10.0-1) ... -2024-04-29T04:07:18Z #8 55.79 Selecting previously unselected package libdrm-common. -2024-04-29T04:07:18Z #8 55.79 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-04-29T04:07:18Z #8 55.80 Unpacking libdrm-common (2.4.104-1) ... -2024-04-29T04:07:18Z #8 55.85 Selecting previously unselected package libdrm2:amd64. -2024-04-29T04:07:18Z #8 55.85 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-04-29T04:07:18Z #8 55.85 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-04-29T04:07:18Z #8 55.91 Selecting previously unselected package libpciaccess0:amd64. -2024-04-29T04:07:18Z #8 55.91 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-04-29T04:07:18Z #8 55.91 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-04-29T04:07:18Z #8 55.97 Selecting previously unselected package libdrm-intel1:amd64. -2024-04-29T04:07:18Z #8 55.97 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-04-29T04:07:18Z #8 55.97 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-29T04:07:18Z #8 56.02 Selecting previously unselected package i965-va-driver:amd64. -2024-04-29T04:07:18Z #8 56.03 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-04-29T04:07:18Z #8 56.03 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-29T04:07:18Z #8 56.15 Selecting previously unselected package libigdgmm11:amd64. -2024-04-29T04:07:18Z #8 56.16 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-04-29T04:07:18Z #8 56.16 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-29T04:07:18Z #8 56.22 Selecting previously unselected package intel-media-va-driver:amd64. -2024-04-29T04:07:18Z #8 56.23 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-04-29T04:07:18Z #8 56.23 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-29T04:07:19Z #8 56.59 Selecting previously unselected package libaom0:amd64. -2024-04-29T04:07:19Z #8 56.60 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-04-29T04:07:19Z #8 56.60 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-29T04:07:19Z #8 56.83 Selecting previously unselected package libmfx1:amd64. -2024-04-29T04:07:19Z #8 56.83 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-04-29T04:07:19Z #8 56.84 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-04-29T04:07:20Z #8 57.56 Selecting previously unselected package libva-drm2:amd64. -2024-04-29T04:07:20Z #8 57.56 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-04-29T04:07:20Z #8 57.57 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-04-29T04:07:20Z #8 57.61 Selecting previously unselected package libva-x11-2:amd64. -2024-04-29T04:07:20Z #8 57.61 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-04-29T04:07:20Z #8 57.63 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-04-29T04:07:20Z #8 57.67 Selecting previously unselected package libvdpau1:amd64. -2024-04-29T04:07:20Z #8 57.67 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-04-29T04:07:20Z #8 57.68 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-04-29T04:07:20Z #8 57.73 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-04-29T04:07:20Z #8 57.73 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-04-29T04:07:20Z #8 57.73 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-29T04:07:20Z #8 57.79 Selecting previously unselected package libavutil56:amd64. -2024-04-29T04:07:20Z #8 57.79 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-29T04:07:20Z #8 57.79 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-29T04:07:20Z #8 57.89 Selecting previously unselected package libcodec2-0.9:amd64. -2024-04-29T04:07:20Z #8 57.89 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-04-29T04:07:20Z #8 57.89 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-29T04:07:21Z #8 58.99 Selecting previously unselected package libdav1d4:amd64. -2024-04-29T04:07:21Z #8 58.99 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-04-29T04:07:21Z #8 58.99 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-04-29T04:07:21Z #8 59.09 Selecting previously unselected package libgsm1:amd64. -2024-04-29T04:07:21Z #8 59.10 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-04-29T04:07:21Z #8 59.10 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-04-29T04:07:21Z #8 59.16 Selecting previously unselected package libmp3lame0:amd64. -2024-04-29T04:07:21Z #8 59.16 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-04-29T04:07:21Z #8 59.17 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-04-29T04:07:21Z #8 59.25 Selecting previously unselected package libopenjp2-7:amd64. -2024-04-29T04:07:21Z #8 59.25 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-04-29T04:07:21Z #8 59.26 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-29T04:07:21Z #8 59.32 Selecting previously unselected package libopus0:amd64. -2024-04-29T04:07:21Z #8 59.33 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-04-29T04:07:21Z #8 59.33 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-04-29T04:07:22Z #8 59.40 Selecting previously unselected package librsvg2-2:amd64. -2024-04-29T04:07:22Z #8 59.40 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-29T04:07:22Z #8 59.41 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-29T04:07:22Z #8 59.89 Selecting previously unselected package libshine3:amd64. -2024-04-29T04:07:22Z #8 59.89 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-04-29T04:07:22Z #8 59.89 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-04-29T04:07:22Z #8 59.94 Selecting previously unselected package libsnappy1v5:amd64. -2024-04-29T04:07:22Z #8 59.95 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-04-29T04:07:22Z #8 59.96 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-29T04:07:22Z #8 60.00 Selecting previously unselected package libspeex1:amd64. -2024-04-29T04:07:22Z #8 60.01 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-04-29T04:07:22Z #8 60.01 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-29T04:07:22Z #8 60.07 Selecting previously unselected package libsoxr0:amd64. -2024-04-29T04:07:22Z #8 60.07 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-04-29T04:07:22Z #8 60.08 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-04-29T04:07:22Z #8 60.14 Selecting previously unselected package libswresample3:amd64. -2024-04-29T04:07:22Z #8 60.14 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-29T04:07:22Z #8 60.15 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-29T04:07:22Z #8 60.21 Selecting previously unselected package libogg0:amd64. -2024-04-29T04:07:22Z #8 60.21 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-04-29T04:07:22Z #8 60.22 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-04-29T04:07:22Z #8 60.27 Selecting previously unselected package libtheora0:amd64. -2024-04-29T04:07:22Z #8 60.27 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-04-29T04:07:22Z #8 60.29 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-29T04:07:23Z #8 60.36 Selecting previously unselected package libtwolame0:amd64. -2024-04-29T04:07:23Z #8 60.36 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-04-29T04:07:23Z #8 60.37 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-04-29T04:07:23Z #8 60.43 Selecting previously unselected package libvorbis0a:amd64. -2024-04-29T04:07:23Z #8 60.43 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-04-29T04:07:23Z #8 60.44 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-04-29T04:07:23Z #8 60.50 Selecting previously unselected package libvorbisenc2:amd64. -2024-04-29T04:07:23Z #8 60.51 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-04-29T04:07:23Z #8 60.52 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-29T04:07:23Z #8 60.59 Selecting previously unselected package libvpx6:amd64. -2024-04-29T04:07:23Z #8 60.59 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-04-29T04:07:23Z #8 60.59 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-29T04:07:23Z #8 60.76 Selecting previously unselected package libwavpack1:amd64. -2024-04-29T04:07:23Z #8 60.77 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-04-29T04:07:23Z #8 60.77 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-04-29T04:07:23Z #8 60.83 Selecting previously unselected package libwebpmux3:amd64. -2024-04-29T04:07:23Z #8 60.83 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-04-29T04:07:23Z #8 60.83 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-29T04:07:23Z #8 60.89 Selecting previously unselected package libx264-160:amd64. -2024-04-29T04:07:23Z #8 60.90 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-04-29T04:07:23Z #8 60.91 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-29T04:07:23Z #8 61.08 Selecting previously unselected package libnuma1:amd64. -2024-04-29T04:07:23Z #8 61.08 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-04-29T04:07:23Z #8 61.09 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-29T04:07:23Z #8 61.13 Selecting previously unselected package libx265-192:amd64. -2024-04-29T04:07:23Z #8 61.14 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-04-29T04:07:23Z #8 61.14 Unpacking libx265-192:amd64 (3.4-2) ... -2024-04-29T04:07:24Z #8 61.46 Selecting previously unselected package libxvidcore4:amd64. -2024-04-29T04:07:24Z #8 61.46 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-04-29T04:07:24Z #8 61.47 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-29T04:07:24Z #8 61.54 Selecting previously unselected package libzvbi-common. -2024-04-29T04:07:24Z #8 61.55 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-04-29T04:07:24Z #8 61.56 Unpacking libzvbi-common (0.2.35-18) ... -2024-04-29T04:07:24Z #8 61.61 Selecting previously unselected package libzvbi0:amd64. -2024-04-29T04:07:24Z #8 61.62 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-04-29T04:07:24Z #8 61.62 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-04-29T04:07:24Z #8 61.85 Selecting previously unselected package libavcodec58:amd64. -2024-04-29T04:07:24Z #8 61.85 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-04-29T04:07:24Z #8 61.88 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-29T04:07:25Z #8 62.73 Selecting previously unselected package libc-dev-bin. -2024-04-29T04:07:25Z #8 62.73 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u9_amd64.deb ... -2024-04-29T04:07:25Z #8 62.74 Unpacking libc-dev-bin (2.31-13+deb11u9) ... -2024-04-29T04:07:25Z #8 62.80 Selecting previously unselected package libxpm4:amd64. -2024-04-29T04:07:25Z #8 62.80 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-04-29T04:07:25Z #8 62.81 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-29T04:07:25Z #8 62.87 Selecting previously unselected package libgd3:amd64. -2024-04-29T04:07:25Z #8 62.87 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-04-29T04:07:25Z #8 62.87 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-04-29T04:07:25Z #8 62.94 Selecting previously unselected package libc-devtools. -2024-04-29T04:07:25Z #8 62.94 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u9_amd64.deb ... -2024-04-29T04:07:25Z #8 62.94 Unpacking libc-devtools (2.31-13+deb11u9) ... -2024-04-29T04:07:25Z #8 63.00 Selecting previously unselected package linux-libc-dev:amd64. -2024-04-29T04:07:25Z #8 63.00 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-04-29T04:07:25Z #8 63.01 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-29T04:07:25Z #8 63.37 Selecting previously unselected package libcrypt-dev:amd64. -2024-04-29T04:07:25Z #8 63.37 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-04-29T04:07:25Z #8 63.38 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-29T04:07:25Z #8 63.43 Selecting previously unselected package libtirpc-dev:amd64. -2024-04-29T04:07:26Z #8 63.43 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-04-29T04:07:26Z #8 63.44 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-29T04:07:26Z #8 63.51 Selecting previously unselected package libnsl-dev:amd64. -2024-04-29T04:07:26Z #8 63.51 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-04-29T04:07:26Z #8 63.52 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-04-29T04:07:26Z #8 63.58 Selecting previously unselected package libc6-dev:amd64. -2024-04-29T04:07:26Z #8 63.58 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u9_amd64.deb ... -2024-04-29T04:07:26Z #8 63.59 Unpacking libc6-dev:amd64 (2.31-13+deb11u9) ... -2024-04-29T04:07:26Z #8 64.12 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-04-29T04:07:26Z #8 64.12 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-04-29T04:07:26Z #8 64.13 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-29T04:07:26Z #8 64.18 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-04-29T04:07:26Z #8 64.19 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-04-29T04:07:26Z #8 64.19 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-29T04:07:26Z #8 64.27 Selecting previously unselected package libdrm-radeon1:amd64. -2024-04-29T04:07:26Z #8 64.28 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-04-29T04:07:26Z #8 64.29 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-29T04:07:26Z #8 64.34 Selecting previously unselected package libelf1:amd64. -2024-04-29T04:07:26Z #8 64.34 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-04-29T04:07:26Z #8 64.35 Unpacking libelf1:amd64 (0.183-1) ... -2024-04-29T04:07:27Z #8 64.43 Selecting previously unselected package libfontenc1:amd64. -2024-04-29T04:07:27Z #8 64.43 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-04-29T04:07:27Z #8 64.44 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-29T04:07:27Z #8 64.48 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-04-29T04:07:27Z #8 64.48 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-04-29T04:07:27Z #8 64.49 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-29T04:07:27Z #8 64.54 Selecting previously unselected package libglapi-mesa:amd64. -2024-04-29T04:07:27Z #8 64.55 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-04-29T04:07:27Z #8 64.56 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-29T04:07:27Z #8 64.61 Selecting previously unselected package libz3-4:amd64. -2024-04-29T04:07:27Z #8 64.62 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-04-29T04:07:27Z #8 64.62 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-04-29T04:07:28Z #8 65.80 Selecting previously unselected package libllvm11:amd64. -2024-04-29T04:07:28Z #8 65.80 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-04-29T04:07:28Z #8 65.81 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-04-29T04:07:31Z #8 68.89 Selecting previously unselected package libsensors-config. -2024-04-29T04:07:31Z #8 68.90 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-04-29T04:07:31Z #8 68.90 Unpacking libsensors-config (1:3.6.0-7) ... -2024-04-29T04:07:31Z #8 68.95 Selecting previously unselected package libsensors5:amd64. -2024-04-29T04:07:31Z #8 68.95 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-04-29T04:07:31Z #8 69.00 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-04-29T04:07:31Z #8 69.05 Selecting previously unselected package libvulkan1:amd64. -2024-04-29T04:07:31Z #8 69.06 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-04-29T04:07:31Z #8 69.07 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-29T04:07:31Z #8 69.14 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-04-29T04:07:31Z #8 69.15 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-04-29T04:07:31Z #8 69.16 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-29T04:07:33Z #8 70.63 Selecting previously unselected package libglvnd0:amd64. -2024-04-29T04:07:33Z #8 70.64 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-04-29T04:07:33Z #8 70.64 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-04-29T04:07:33Z #8 70.70 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-04-29T04:07:33Z #8 70.71 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-04-29T04:07:33Z #8 70.71 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-29T04:07:33Z #8 70.76 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-04-29T04:07:33Z #8 70.77 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-04-29T04:07:33Z #8 70.78 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-29T04:07:33Z #8 70.83 Selecting previously unselected package libxcb-glx0:amd64. -2024-04-29T04:07:33Z #8 70.83 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-04-29T04:07:33Z #8 70.84 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-04-29T04:07:33Z #8 70.91 Selecting previously unselected package libxcb-present0:amd64. -2024-04-29T04:07:33Z #8 70.92 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-04-29T04:07:33Z #8 70.93 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-04-29T04:07:33Z #8 71.00 Selecting previously unselected package libxcb-sync1:amd64. -2024-04-29T04:07:33Z #8 71.01 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-04-29T04:07:33Z #8 71.02 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-04-29T04:07:33Z #8 71.07 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-04-29T04:07:33Z #8 71.07 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-04-29T04:07:33Z #8 71.08 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-29T04:07:33Z #8 71.13 Selecting previously unselected package libxshmfence1:amd64. -2024-04-29T04:07:33Z #8 71.14 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-04-29T04:07:33Z #8 71.14 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-04-29T04:07:33Z #8 71.19 Selecting previously unselected package libxxf86vm1:amd64. -2024-04-29T04:07:33Z #8 71.19 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-04-29T04:07:33Z #8 71.20 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-29T04:07:33Z #8 71.25 Selecting previously unselected package libglx-mesa0:amd64. -2024-04-29T04:07:33Z #8 71.25 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-04-29T04:07:33Z #8 71.26 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-29T04:07:33Z #8 71.33 Selecting previously unselected package libgtk-3-bin. -2024-04-29T04:07:33Z #8 71.34 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-04-29T04:07:34Z #8 71.35 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-29T04:07:34Z #8 71.42 Selecting previously unselected package librsvg2-common:amd64. -2024-04-29T04:07:34Z #8 71.42 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-04-29T04:07:34Z #8 71.43 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-29T04:07:34Z #8 71.49 Selecting previously unselected package libglx0:amd64. -2024-04-29T04:07:34Z #8 71.50 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-04-29T04:07:34Z #8 71.50 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-04-29T04:07:34Z #8 71.55 Selecting previously unselected package libgl1:amd64. -2024-04-29T04:07:34Z #8 71.56 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-04-29T04:07:34Z #8 71.56 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-04-29T04:07:34Z #8 71.62 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-04-29T04:07:34Z #8 71.63 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-04-29T04:07:34Z #8 71.63 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-29T04:07:34Z #8 71.69 Selecting previously unselected package libxt6:amd64. -2024-04-29T04:07:34Z #8 71.69 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-04-29T04:07:34Z #8 71.70 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-04-29T04:07:34Z #8 71.76 Selecting previously unselected package libxmu6:amd64. -2024-04-29T04:07:34Z #8 71.77 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-29T04:07:34Z #8 71.78 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-29T04:07:34Z #8 71.83 Selecting previously unselected package libxaw7:amd64. -2024-04-29T04:07:34Z #8 71.83 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-04-29T04:07:34Z #8 71.84 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-29T04:07:34Z #8 71.92 Selecting previously unselected package libxcb-randr0:amd64. -2024-04-29T04:07:34Z #8 71.93 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-04-29T04:07:34Z #8 71.94 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-04-29T04:07:34Z #8 72.00 Selecting previously unselected package libxcb-shape0:amd64. -2024-04-29T04:07:34Z #8 72.00 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-04-29T04:07:34Z #8 72.01 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-04-29T04:07:34Z #8 72.06 Selecting previously unselected package libxft2:amd64. -2024-04-29T04:07:34Z #8 72.07 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-04-29T04:07:34Z #8 72.07 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-04-29T04:07:34Z #8 72.12 Selecting previously unselected package libxkbfile1:amd64. -2024-04-29T04:07:34Z #8 72.13 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-04-29T04:07:34Z #8 72.13 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-29T04:07:34Z #8 72.35 Selecting previously unselected package libxmuu1:amd64. -2024-04-29T04:07:35Z #8 72.36 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-04-29T04:07:35Z #8 72.41 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-29T04:07:35Z #8 72.75 Selecting previously unselected package libxv1:amd64. -2024-04-29T04:07:35Z #8 72.75 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-04-29T04:07:35Z #8 72.79 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-04-29T04:07:35Z #8 72.83 Selecting previously unselected package libxxf86dga1:amd64. -2024-04-29T04:07:35Z #8 72.84 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-04-29T04:07:35Z #8 72.84 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-29T04:07:35Z #8 72.89 Selecting previously unselected package manpages-dev. -2024-04-29T04:07:35Z #8 72.90 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-04-29T04:07:35Z #8 72.90 Unpacking manpages-dev (5.10-1) ... -2024-04-29T04:07:36Z #8 73.33 Selecting previously unselected package mesa-va-drivers:amd64. -2024-04-29T04:07:36Z #8 73.34 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-04-29T04:07:36Z #8 73.34 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-29T04:07:36Z #8 73.80 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-04-29T04:07:36Z #8 73.80 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-04-29T04:07:36Z #8 73.81 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-29T04:07:36Z #8 74.30 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-04-29T04:07:36Z #8 74.30 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-04-29T04:07:36Z #8 74.31 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-29T04:07:37Z #8 75.05 Selecting previously unselected package patch. -2024-04-29T04:07:37Z #8 75.05 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-04-29T04:07:37Z #8 75.05 Unpacking patch (2.7.6-7) ... -2024-04-29T04:07:37Z #8 75.11 Selecting previously unselected package unzip. -2024-04-29T04:07:37Z #8 75.11 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-04-29T04:07:37Z #8 75.13 Unpacking unzip (6.0-26+deb11u1) ... -2024-04-29T04:07:37Z #8 75.19 Selecting previously unselected package va-driver-all:amd64. -2024-04-29T04:07:37Z #8 75.19 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-04-29T04:07:37Z #8 75.20 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-04-29T04:07:37Z #8 75.24 Selecting previously unselected package vdpau-driver-all:amd64. -2024-04-29T04:07:37Z #8 75.24 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-04-29T04:07:37Z #8 75.25 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-04-29T04:07:37Z #8 75.29 Selecting previously unselected package x11-utils. -2024-04-29T04:07:37Z #8 75.30 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-04-29T04:07:37Z #8 75.31 Unpacking x11-utils (7.7+5) ... -2024-04-29T04:07:38Z #8 75.41 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-04-29T04:07:38Z #8 75.43 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-04-29T04:07:38Z #8 75.44 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-04-29T04:07:38Z #8 75.45 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-04-29T04:07:38Z #8 75.47 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-04-29T04:07:38Z #8 75.49 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-04-29T04:07:38Z #8 75.50 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-04-29T04:07:38Z #8 75.52 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-04-29T04:07:38Z #8 75.53 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-04-29T04:07:38Z #8 75.55 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-04-29T04:07:38Z #8 75.56 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-04-29T04:07:38Z #8 75.58 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-04-29T04:07:38Z #8 75.60 Setting up libshine3:amd64 (3.1.1-2) ... -2024-04-29T04:07:38Z #8 75.61 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-04-29T04:07:38Z #8 75.63 Setting up hicolor-icon-theme (0.17-2) ... -2024-04-29T04:07:38Z #8 75.67 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-04-29T04:07:38Z #8 75.68 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-04-29T04:07:38Z #8 75.69 Setting up libicu67:amd64 (67.1-7) ... -2024-04-29T04:07:38Z #8 75.71 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-04-29T04:07:38Z #8 75.72 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-04-29T04:07:38Z #8 75.74 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-04-29T04:07:38Z #8 75.75 Setting up manpages (5.10-1) ... -2024-04-29T04:07:38Z #8 75.77 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-04-29T04:07:38Z #8 75.78 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-04-29T04:07:38Z #8 75.79 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-04-29T04:07:38Z #8 75.81 Setting up unzip (6.0-26+deb11u1) ... -2024-04-29T04:07:38Z #8 75.83 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-04-29T04:07:38Z #8 75.85 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-04-29T04:07:38Z #8 75.86 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-04-29T04:07:38Z #8 75.87 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-04-29T04:07:38Z #8 75.89 Setting up libsensors-config (1:3.6.0-7) ... -2024-04-29T04:07:38Z #8 75.92 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-04-29T04:07:38Z #8 75.93 Setting up libdeflate0:amd64 (1.7-1) ... -2024-04-29T04:07:38Z #8 75.94 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-04-29T04:07:38Z #8 75.96 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-04-29T04:07:38Z #8 75.97 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-29T04:07:38Z #8 75.98 First installation detected... -2024-04-29T04:07:38Z #8 75.99 Checking NSS setup... -2024-04-29T04:07:38Z #8 75.99 Setting up xkb-data (2.29-2) ... -2024-04-29T04:07:38Z #8 76.01 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-04-29T04:07:38Z #8 76.02 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-04-29T04:07:38Z #8 76.04 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-04-29T04:07:38Z #8 76.05 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-04-29T04:07:38Z #8 76.08 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-04-29T04:07:38Z #8 76.09 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-04-29T04:07:38Z #8 76.11 Setting up libasan6:amd64 (10.2.1-6) ... -2024-04-29T04:07:38Z #8 76.13 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-04-29T04:07:38Z #8 76.14 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-04-29T04:07:38Z #8 76.16 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-04-29T04:07:38Z #8 76.18 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-04-29T04:07:38Z #8 76.19 Setting up libasound2-data (1.2.4-1.1) ... -2024-04-29T04:07:38Z #8 76.21 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-04-29T04:07:38Z #8 76.23 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-04-29T04:07:38Z #8 76.25 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-04-29T04:07:38Z #8 76.26 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-04-29T04:07:38Z #8 76.28 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-04-29T04:07:38Z #8 76.30 Setting up libva2:amd64 (2.10.0-1) ... -2024-04-29T04:07:38Z #8 76.32 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-04-29T04:07:38Z #8 76.33 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-04-29T04:07:38Z #8 76.35 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-04-29T04:07:39Z #8 76.36 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-04-29T04:07:39Z #8 76.38 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-04-29T04:07:39Z #8 76.39 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-04-29T04:07:39Z #8 76.41 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-04-29T04:07:39Z #8 76.43 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-04-29T04:07:39Z #8 76.45 Setting up dbus (1.12.28-0+deb11u1) ... -2024-04-29T04:07:39Z #8 76.63 invoke-rc.d: could not determine current runlevel -2024-04-29T04:07:39Z #8 76.64 invoke-rc.d: policy-rc.d denied execution of start. -2024-04-29T04:07:39Z #8 76.65 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-04-29T04:07:39Z #8 76.66 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-04-29T04:07:39Z #8 76.68 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-04-29T04:07:39Z #8 76.69 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-04-29T04:07:39Z #8 76.71 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-04-29T04:07:39Z #8 76.72 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-04-29T04:07:39Z #8 76.74 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-04-29T04:07:39Z #8 76.76 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-04-29T04:07:39Z #8 76.78 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-04-29T04:07:39Z #8 77.15 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-29T04:07:39Z #8 77.15 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-04-29T04:07:39Z #8 77.16 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-04-29T04:07:39Z #8 77.18 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-04-29T04:07:39Z #8 77.19 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-04-29T04:07:39Z #8 77.21 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-04-29T04:07:39Z #8 77.23 Setting up patch (2.7.6-7) ... -2024-04-29T04:07:39Z #8 77.24 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-29T04:07:39Z #8 77.26 Setting up fonts-dejavu-core (2.37-2) ... -2024-04-29T04:07:40Z #8 77.40 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-04-29T04:07:40Z #8 77.42 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-04-29T04:07:40Z #8 77.43 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-04-29T04:07:40Z #8 77.45 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-04-29T04:07:40Z #8 77.47 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-04-29T04:07:40Z #8 77.49 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-04-29T04:07:40Z #8 77.51 Setting up libatk1.0-data (2.36.0-2) ... -2024-04-29T04:07:40Z #8 77.53 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-04-29T04:07:40Z #8 77.55 Setting up alsa-topology-conf (1.2.4-1) ... -2024-04-29T04:07:40Z #8 77.57 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-04-29T04:07:40Z #8 77.59 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-04-29T04:07:40Z #8 77.61 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-04-29T04:07:40Z #8 77.62 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-04-29T04:07:40Z #8 77.64 Setting up libvdpau1:amd64 (1.4-3) ... -2024-04-29T04:07:40Z #8 77.66 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-04-29T04:07:40Z #8 77.67 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-04-29T04:07:40Z #8 77.69 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-04-29T04:07:40Z #8 77.70 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-04-29T04:07:40Z #8 77.71 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-04-29T04:07:40Z #8 77.93 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-04-29T04:07:40Z #8 77.95 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-04-29T04:07:40Z #8 77.96 Setting up libthai-data (0.1.28-3) ... -2024-04-29T04:07:40Z #8 77.98 Setting up fonts-humor-sans (1.0-4) ... -2024-04-29T04:07:40Z #8 77.99 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-04-29T04:07:40Z #8 78.01 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-04-29T04:07:40Z #8 78.03 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-04-29T04:07:40Z #8 78.05 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-04-29T04:07:40Z #8 78.07 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-04-29T04:07:40Z #8 78.09 Setting up glib-networking-common (2.66.0-2) ... -2024-04-29T04:07:40Z #8 78.11 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-04-29T04:07:40Z #8 78.12 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-04-29T04:07:40Z #8 78.14 Setting up libisl23:amd64 (0.23-1) ... -2024-04-29T04:07:40Z #8 78.16 Setting up libc-dev-bin (2.31-13+deb11u9) ... -2024-04-29T04:07:40Z #8 78.18 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-04-29T04:07:40Z #8 78.20 Setting up libdrm-common (2.4.104-1) ... -2024-04-29T04:07:40Z #8 78.21 Setting up libelf1:amd64 (0.183-1) ... -2024-04-29T04:07:40Z #8 78.23 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-04-29T04:07:40Z #8 78.25 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-04-29T04:07:40Z #8 78.27 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-04-29T04:07:40Z #8 78.28 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-04-29T04:07:40Z #8 78.30 Setting up libzvbi-common (0.2.35-18) ... -2024-04-29T04:07:40Z #8 78.32 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-04-29T04:07:40Z #8 78.33 Setting up cpp-10 (10.2.1-6) ... -2024-04-29T04:07:40Z #8 78.35 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-04-29T04:07:40Z #8 78.36 Setting up libitm1:amd64 (10.2.1-6) ... -2024-04-29T04:07:41Z #8 78.39 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-04-29T04:07:41Z #8 78.41 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-04-29T04:07:41Z #8 78.43 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-04-29T04:07:41Z #8 78.45 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-04-29T04:07:41Z #8 78.46 Setting up libctf0:amd64 (2.35.2-2) ... -2024-04-29T04:07:41Z #8 78.49 Setting up glib-networking-services (2.66.0-2) ... -2024-04-29T04:07:41Z #8 78.50 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-04-29T04:07:41Z #8 78.53 Setting up manpages-dev (5.10-1) ... -2024-04-29T04:07:41Z #8 78.55 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-04-29T04:07:41Z #8 78.57 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-04-29T04:07:41Z #8 78.59 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-04-29T04:07:41Z #8 78.61 Setting up fontconfig-config (2.13.1-4.2) ... -2024-04-29T04:07:41Z #8 78.92 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-04-29T04:07:41Z #8 78.94 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-04-29T04:07:41Z #8 78.96 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-04-29T04:07:41Z #8 78.97 Setting up libx265-192:amd64 (3.4-2) ... -2024-04-29T04:07:41Z #8 78.99 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-04-29T04:07:41Z #8 79.01 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-04-29T04:07:41Z #8 79.03 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-04-29T04:07:41Z #8 79.04 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-04-29T04:07:41Z #8 79.06 Setting up libthai0:amd64 (0.1.28-3) ... -2024-04-29T04:07:41Z #8 79.07 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-04-29T04:07:41Z #8 79.10 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-04-29T04:07:41Z #8 79.11 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-04-29T04:07:41Z #8 79.13 Setting up shared-mime-info (2.0-1) ... -2024-04-29T04:07:44Z #8 81.87 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-04-29T04:07:44Z #8 81.88 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-04-29T04:07:44Z #8 81.90 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-04-29T04:07:44Z #8 81.93 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-04-29T04:07:44Z #8 81.94 Setting up cpp (4:10.2.1-1) ... -2024-04-29T04:07:44Z #8 81.96 Setting up libc6-dev:amd64 (2.31-13+deb11u9) ... -2024-04-29T04:07:44Z #8 81.98 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-04-29T04:07:44Z #8 81.99 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-29T04:07:44Z #8 82.04 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-04-29T04:07:44Z #8 82.07 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-04-29T04:07:44Z #8 82.08 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-04-29T04:07:44Z #8 82.09 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-04-29T04:07:44Z #8 82.11 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-04-29T04:07:44Z #8 82.13 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-04-29T04:07:44Z #8 82.14 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-04-29T04:07:44Z #8 82.15 Setting up fontconfig (2.13.1-4.2) ... -2024-04-29T04:07:46Z #8 82.17 Regenerating fonts cache... done. -2024-04-29T04:07:46Z #8 84.20 Setting up libxft2:amd64 (2.3.2-2) ... -2024-04-29T04:07:46Z #8 84.21 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-04-29T04:07:46Z #8 84.23 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-04-29T04:07:46Z #8 84.24 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-04-29T04:07:46Z #8 84.26 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-04-29T04:07:46Z #8 84.28 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-04-29T04:07:46Z #8 84.30 Setting up dconf-service (0.38.0-2) ... -2024-04-29T04:07:46Z #8 84.32 Setting up binutils (2.35.2-2) ... -2024-04-29T04:07:46Z #8 84.34 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-04-29T04:07:46Z #8 84.35 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-29T04:07:46Z #8 84.37 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-04-29T04:07:47Z #8 84.47 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-04-29T04:07:47Z #8 84.48 Setting up libgd3:amd64 (2.3.0-2) ... -2024-04-29T04:07:47Z #8 84.50 Setting up gcc-10 (10.2.1-6) ... -2024-04-29T04:07:47Z #8 84.51 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-04-29T04:07:47Z #8 84.53 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-04-29T04:07:47Z #8 84.55 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-04-29T04:07:47Z #8 84.56 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-04-29T04:07:47Z #8 84.58 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-04-29T04:07:47Z #8 84.59 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-04-29T04:07:47Z #8 84.61 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-04-29T04:07:47Z #8 84.62 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-04-29T04:07:47Z #8 84.64 Setting up libc-devtools (2.31-13+deb11u9) ... -2024-04-29T04:07:47Z #8 84.65 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-04-29T04:07:47Z #8 84.67 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-04-29T04:07:47Z #8 84.69 Setting up libglx0:amd64 (1.3.2-1) ... -2024-04-29T04:07:47Z #8 84.71 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-04-29T04:07:47Z #8 84.72 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-29T04:07:47Z #8 84.74 Setting up gcc (4:10.2.1-1) ... -2024-04-29T04:07:47Z #8 84.77 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-29T04:07:47Z #8 84.78 Setting up libgl1:amd64 (1.3.2-1) ... -2024-04-29T04:07:47Z #8 84.80 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-04-29T04:07:47Z #8 84.81 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-04-29T04:07:47Z #8 84.84 Setting up x11-utils (7.7+5) ... -2024-04-29T04:07:47Z #8 84.90 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-04-29T04:07:47Z #8 84.92 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-04-29T04:07:47Z #8 84.94 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-04-29T04:07:47Z #8 84.96 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-04-29T04:07:47Z #8 84.97 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-04-29T04:07:47Z #8 85.00 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-04-29T04:07:47Z #8 85.05 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-29T04:07:47Z #8 85.09 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-04-29T04:07:47Z #8 85.11 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-04-29T04:07:47Z #8 85.13 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-04-29T04:07:47Z #8 85.14 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-04-29T04:07:47Z #8 85.16 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-04-29T04:07:47Z #8 85.19 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-04-29T04:07:47Z #8 85.21 Setting up firefox-esr (115.10.0esr-1~deb11u1) ... -2024-04-29T04:07:47Z #8 85.23 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-04-29T04:07:47Z #8 85.23 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-04-29T04:07:47Z #8 85.24 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-04-29T04:07:47Z #8 85.24 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-04-29T04:07:47Z #8 85.25 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-04-29T04:07:47Z #8 85.30 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-04-29T04:07:49Z #8 DONE 87.1s -2024-04-29T04:07:49Z -2024-04-29T04:07:49Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-04-29T04:08:35Z #9 DONE 45.9s -2024-04-29T04:08:35Z -2024-04-29T04:08:35Z #10 [ 5/10] COPY environment.yml /environment.yml -2024-04-29T04:08:35Z #10 DONE 0.0s -2024-04-29T04:08:35Z -2024-04-29T04:08:35Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.11 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-04-29T04:11:08Z #11 152.6 Transaction -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 Prefix: /opt/conda/envs/birdy -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 Updating specs: -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 - xclim -2024-04-29T04:11:08Z #11 152.6 - ravenpy -2024-04-29T04:11:08Z #11 152.6 - python=3.11 -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 Package Version Build Channel Size -2024-04-29T04:11:08Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-29T04:11:08Z #11 152.6 Install: -2024-04-29T04:11:08Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-04-29T04:11:08Z #11 152.6 + python_abi 3.11 4_cp311 conda-forge 6kB -2024-04-29T04:11:08Z #11 152.6 + libstdcxx-ng 13.2.0 h95c4c6d_6 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB -2024-04-29T04:11:08Z #11 152.6 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB -2024-04-29T04:11:08Z #11 152.6 + ld_impl_linux-64 2.40 h55db66e_0 conda-forge 713kB -2024-04-29T04:11:08Z #11 152.6 + mpi 1.0 impi conda-forge 7kB -2024-04-29T04:11:08Z #11 152.6 + libgomp 13.2.0 hc881cc4_6 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + impi_rt 2021.12.0 ha770c72_535 conda-forge 37MB -2024-04-29T04:11:08Z #11 152.6 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-04-29T04:11:08Z #11 152.6 + libgcc-ng 13.2.0 hc881cc4_6 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-04-29T04:11:08Z #11 152.6 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-04-29T04:11:08Z #11 152.6 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-04-29T04:11:08Z #11 152.6 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-04-29T04:11:08Z #11 152.6 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-04-29T04:11:08Z #11 152.6 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-04-29T04:11:08Z #11 152.6 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-04-29T04:11:08Z #11 152.6 + libev 4.33 hd590300_2 conda-forge 113kB -2024-04-29T04:11:08Z #11 152.6 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-04-29T04:11:08Z #11 152.6 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-04-29T04:11:08Z #11 152.6 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-04-29T04:11:08Z #11 152.6 + aws-c-common 0.9.15 hd590300_0 conda-forge 227kB -2024-04-29T04:11:08Z #11 152.6 + libabseil 20240116.1 cxx17_h59595ed_2 conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-04-29T04:11:08Z #11 152.6 + c-ares 1.28.1 hd590300_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-04-29T04:11:08Z #11 152.6 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-04-29T04:11:08Z #11 152.6 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-04-29T04:11:08Z #11 152.6 + lzo 2.10 hd590300_1001 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-04-29T04:11:08Z #11 152.6 + giflib 5.2.2 hd590300_0 conda-forge 77kB -2024-04-29T04:11:08Z #11 152.6 + snappy 1.2.0 hdb0a2a9_1 conda-forge 42kB -2024-04-29T04:11:08Z #11 152.6 + libwebp-base 1.4.0 hd590300_0 conda-forge 439kB -2024-04-29T04:11:08Z #11 152.6 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-04-29T04:11:08Z #11 152.6 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-04-29T04:11:08Z #11 152.6 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + openssl 3.2.1 hd590300_1 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libxcrypt 4.4.36 hd590300_1 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-04-29T04:11:08Z #11 152.6 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-04-29T04:11:08Z #11 152.6 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-04-29T04:11:08Z #11 152.6 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-04-29T04:11:08Z #11 152.6 + icu 73.2 h59595ed_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-04-29T04:11:08Z #11 152.6 + libdeflate 1.20 hd590300_0 conda-forge 72kB -2024-04-29T04:11:08Z #11 152.6 + libaec 1.1.3 h59595ed_0 conda-forge 35kB -2024-04-29T04:11:08Z #11 152.6 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-04-29T04:11:08Z #11 152.6 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-04-29T04:11:08Z #11 152.6 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-04-29T04:11:08Z #11 152.6 + libgfortran5 13.2.0 h43f5ff8_6 conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-04-29T04:11:08Z #11 152.6 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB -2024-04-29T04:11:08Z #11 152.6 + libuuid 2.38.1 h0b41bf4_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libnsl 2.0.1 hd590300_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB -2024-04-29T04:11:08Z #11 152.6 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-04-29T04:11:08Z #11 152.6 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB -2024-04-29T04:11:08Z #11 152.6 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-04-29T04:11:08Z #11 152.6 + aws-c-compression 0.2.18 hce8ee76_3 conda-forge 19kB -2024-04-29T04:11:08Z #11 152.6 + aws-checksums 0.1.18 hce8ee76_3 conda-forge 50kB -2024-04-29T04:11:08Z #11 152.6 + aws-c-sdkutils 0.1.15 hce8ee76_3 conda-forge 55kB -2024-04-29T04:11:08Z #11 152.6 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-04-29T04:11:08Z #11 152.6 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-04-29T04:11:08Z #11 152.6 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-04-29T04:11:08Z #11 152.6 + spdlog 1.13.0 hd2e6256_0 conda-forge 188kB -2024-04-29T04:11:08Z #11 152.6 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-04-29T04:11:08Z #11 152.6 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-04-29T04:11:08Z #11 152.6 + s2n 1.4.12 h06160fa_0 conda-forge 347kB -2024-04-29T04:11:08Z #11 152.6 + aws-c-cal 0.6.11 heb1d5e4_0 conda-forge 46kB -2024-04-29T04:11:08Z #11 152.6 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB -2024-04-29T04:11:08Z #11 152.6 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-04-29T04:11:08Z #11 152.6 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-04-29T04:11:08Z #11 152.6 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-04-29T04:11:08Z #11 152.6 + libssh2 1.11.0 h0841786_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + tk 8.6.13 noxft_h4845f30_101 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + pcre2 10.43 hcad00b1_0 conda-forge 951kB -2024-04-29T04:11:08Z #11 152.6 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-04-29T04:11:08Z #11 152.6 + zstd 1.5.5 hfc55251_0 conda-forge 545kB -2024-04-29T04:11:08Z #11 152.6 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libsqlite 3.45.3 h2797004_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libgfortran-ng 13.2.0 h69a702a_6 conda-forge 24kB -2024-04-29T04:11:08Z #11 152.6 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-04-29T04:11:08Z #11 152.6 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-04-29T04:11:08Z #11 152.6 + readline 8.2 h8228510_1 conda-forge 281kB -2024-04-29T04:11:08Z #11 152.6 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-04-29T04:11:08Z #11 152.6 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-04-29T04:11:08Z #11 152.6 + expat 2.6.2 h59595ed_0 conda-forge 138kB -2024-04-29T04:11:08Z #11 152.6 + libxml2 2.12.6 h232c23b_2 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + ucx 1.15.0 ha691c75_8 conda-forge 7MB -2024-04-29T04:11:08Z #11 152.6 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-04-29T04:11:08Z #11 152.6 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-04-29T04:11:08Z #11 152.6 + xorg-libx11 1.8.9 h8ee46fc_0 conda-forge 828kB -2024-04-29T04:11:08Z #11 152.6 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-04-29T04:11:08Z #11 152.6 + aws-c-io 0.14.7 hbfbeace_6 conda-forge 158kB -2024-04-29T04:11:08Z #11 152.6 + libglib 2.80.0 hf2295e7_6 conda-forge 4MB -2024-04-29T04:11:08Z #11 152.6 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-04-29T04:11:08Z #11 152.6 + orc 2.0.0 h17fec99_1 conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-04-29T04:11:08Z #11 152.6 + blosc 1.21.5 hc2324a3_1 conda-forge 49kB -2024-04-29T04:11:08Z #11 152.6 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB -2024-04-29T04:11:08Z #11 152.6 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-04-29T04:11:08Z #11 152.6 + libopenblas 0.3.27 pthreads_h413a1c8_0 conda-forge 6MB -2024-04-29T04:11:08Z #11 152.6 + krb5 1.21.2 h659d440_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + sqlite 3.45.3 h2c6b66d_0 conda-forge 849kB -2024-04-29T04:11:08Z #11 152.6 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-04-29T04:11:08Z #11 152.6 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-04-29T04:11:08Z #11 152.6 + libgrpc 1.62.2 h15f2491_0 conda-forge 7MB -2024-04-29T04:11:08Z #11 152.6 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-04-29T04:11:08Z #11 152.6 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-04-29T04:11:08Z #11 152.6 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-04-29T04:11:08Z #11 152.6 + aws-c-http 0.8.1 hdb68c23_10 conda-forge 195kB -2024-04-29T04:11:08Z #11 152.6 + aws-c-event-stream 0.4.2 h01f5eca_8 conda-forge 54kB -2024-04-29T04:11:08Z #11 152.6 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-04-29T04:11:08Z #11 152.6 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-04-29T04:11:08Z #11 152.6 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-04-29T04:11:08Z #11 152.6 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-04-29T04:11:08Z #11 152.6 + libblas 3.9.0 22_linux64_openblas conda-forge 15kB -2024-04-29T04:11:08Z #11 152.6 + libpq 16.2 h33b98f1_1 conda-forge 3MB -2024-04-29T04:11:08Z #11 152.6 + libcurl 8.7.1 hca28451_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + aws-c-auth 0.7.17 he0b1f16_2 conda-forge 104kB -2024-04-29T04:11:08Z #11 152.6 + aws-c-mqtt 0.10.3 h50844eb_4 conda-forge 164kB -2024-04-29T04:11:08Z #11 152.6 + libcblas 3.9.0 22_linux64_openblas conda-forge 14kB -2024-04-29T04:11:08Z #11 152.6 + liblapack 3.9.0 22_linux64_openblas conda-forge 14kB -2024-04-29T04:11:08Z #11 152.6 + libgoogle-cloud 2.23.0 h9be4e54_1 conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB -2024-04-29T04:11:08Z #11 152.6 + cfitsio 4.4.0 hbdc6101_1 conda-forge 914kB -2024-04-29T04:11:08Z #11 152.6 + hdf5 1.14.3 nompi_h4f84152_100 conda-forge 4MB -2024-04-29T04:11:08Z #11 152.6 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-04-29T04:11:08Z #11 152.6 + proj 9.3.1 h1d62c97_0 conda-forge 3MB -2024-04-29T04:11:08Z #11 152.6 + aws-c-s3 0.5.7 hb7bd14b_1 conda-forge 108kB -2024-04-29T04:11:08Z #11 152.6 + libgoogle-cloud-storage 2.23.0 hc7a4891_1 conda-forge 753kB -2024-04-29T04:11:08Z #11 152.6 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB -2024-04-29T04:11:08Z #11 152.6 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-04-29T04:11:08Z #11 152.6 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-04-29T04:11:08Z #11 152.6 + libspatialite 5.1.0 h7bd4643_4 conda-forge 4MB -2024-04-29T04:11:08Z #11 152.6 + geotiff 1.7.1 h6b2125f_15 conda-forge 133kB -2024-04-29T04:11:08Z #11 152.6 + aws-crt-cpp 0.26.6 hf567797_4 conda-forge 335kB -2024-04-29T04:11:08Z #11 152.6 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB -2024-04-29T04:11:08Z #11 152.6 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-04-29T04:11:08Z #11 152.6 + aws-sdk-cpp 1.11.267 hbf3e495_6 conda-forge 4MB -2024-04-29T04:11:08Z #11 152.6 + esmf 8.6.1 nompi_h7b237b1_0 conda-forge 24MB -2024-04-29T04:11:08Z #11 152.6 + libarrow 15.0.2 h07fc4ce_5_cpu conda-forge 8MB -2024-04-29T04:11:08Z #11 152.6 + tiledb 2.21.2 h8cb5cbd_3 conda-forge 4MB -2024-04-29T04:11:08Z #11 152.6 + libparquet 15.0.2 hacf5a1f_5_cpu conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + libarrow-gandiva 15.0.2 hc1954e9_5_cpu conda-forge 898kB -2024-04-29T04:11:08Z #11 152.6 + libarrow-flight 15.0.2 hc4f8a93_5_cpu conda-forge 510kB -2024-04-29T04:11:08Z #11 152.6 + libarrow-acero 15.0.2 hbabe93e_5_cpu conda-forge 600kB -2024-04-29T04:11:08Z #11 152.6 + libarrow-flight-sql 15.0.2 he4f5ca8_5_cpu conda-forge 197kB -2024-04-29T04:11:08Z #11 152.6 + libarrow-dataset 15.0.2 hbabe93e_5_cpu conda-forge 588kB -2024-04-29T04:11:08Z #11 152.6 + libarrow-substrait 15.0.2 he4f5ca8_5_cpu conda-forge 522kB -2024-04-29T04:11:08Z #11 152.6 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-04-29T04:11:08Z #11 152.6 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-04-29T04:11:08Z #11 152.6 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-04-29T04:11:08Z #11 152.6 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-04-29T04:11:08Z #11 152.6 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-04-29T04:11:08Z #11 152.6 + font-ttf-ubuntu 0.83 h77eed37_1 conda-forge 2MB -2024-04-29T04:11:08Z #11 152.6 + fonts-conda-forge 1 0 conda-forge 4kB -2024-04-29T04:11:08Z #11 152.6 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-04-29T04:11:08Z #11 152.6 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB -2024-04-29T04:11:08Z #11 152.6 + python 3.11.9 hb806964_0_cpython conda-forge 31MB -2024-04-29T04:11:08Z #11 152.6 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-04-29T04:11:08Z #11 152.6 + poppler 24.03.0 h590f24d_0 conda-forge 2MB -2024-04-29T04:11:08Z #11 152.6 + libgdal 3.8.4 h7c88fdf_5 conda-forge 11MB -2024-04-29T04:11:08Z #11 152.6 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB -2024-04-29T04:11:08Z #11 152.6 + setuptools 69.5.1 pyhd8ed1ab_0 conda-forge 502kB -2024-04-29T04:11:08Z #11 152.6 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + threadpoolctl 3.4.0 pyhc1e730c_0 conda-forge 23kB -2024-04-29T04:11:08Z #11 152.6 + joblib 1.4.0 pyhd8ed1ab_0 conda-forge 220kB -2024-04-29T04:11:08Z #11 152.6 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB -2024-04-29T04:11:08Z #11 152.6 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB -2024-04-29T04:11:08Z #11 152.6 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-29T04:11:08Z #11 152.6 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-04-29T04:11:08Z #11 152.6 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-04-29T04:11:08Z #11 152.6 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-29T04:11:08Z #11 152.6 + networkx 3.3 pyhd8ed1ab_1 conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-04-29T04:11:08Z #11 152.6 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-04-29T04:11:08Z #11 152.6 + idna 3.7 pyhd8ed1ab_0 conda-forge 53kB -2024-04-29T04:11:08Z #11 152.6 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-04-29T04:11:08Z #11 152.6 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-04-29T04:11:08Z #11 152.6 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-04-29T04:11:08Z #11 152.6 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB -2024-04-29T04:11:08Z #11 152.6 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-04-29T04:11:08Z #11 152.6 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-04-29T04:11:08Z #11 152.6 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-04-29T04:11:08Z #11 152.6 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-04-29T04:11:08Z #11 152.6 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-04-29T04:11:08Z #11 152.6 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-04-29T04:11:08Z #11 152.6 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-04-29T04:11:08Z #11 152.6 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-04-29T04:11:08Z #11 152.6 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-04-29T04:11:08Z #11 152.6 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-04-29T04:11:08Z #11 152.6 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-04-29T04:11:08Z #11 152.6 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-04-29T04:11:08Z #11 152.6 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-04-29T04:11:08Z #11 152.6 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB -2024-04-29T04:11:08Z #11 152.6 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB -2024-04-29T04:11:08Z #11 152.6 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-04-29T04:11:08Z #11 152.6 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-04-29T04:11:08Z #11 152.6 + platformdirs 4.2.1 pyhd8ed1ab_0 conda-forge 20kB -2024-04-29T04:11:08Z #11 152.6 + typing_extensions 4.11.0 pyha770c72_0 conda-forge 38kB -2024-04-29T04:11:08Z #11 152.6 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-04-29T04:11:08Z #11 152.6 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB -2024-04-29T04:11:08Z #11 152.6 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB -2024-04-29T04:11:08Z #11 152.6 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-04-29T04:11:08Z #11 152.6 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-04-29T04:11:08Z #11 152.6 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-04-29T04:11:08Z #11 152.6 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-04-29T04:11:08Z #11 152.6 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-04-29T04:11:08Z #11 152.6 + pytools 2024.1.2 pyhd8ed1ab_0 conda-forge 72kB -2024-04-29T04:11:08Z #11 152.6 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-04-29T04:11:08Z #11 152.6 + typing-extensions 4.11.0 hd8ed1ab_0 conda-forge 10kB -2024-04-29T04:11:08Z #11 152.6 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB -2024-04-29T04:11:08Z #11 152.6 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB -2024-04-29T04:11:08Z #11 152.6 + jsonpickle 3.0.4 pyhd8ed1ab_0 conda-forge 39kB -2024-04-29T04:11:08Z #11 152.6 + mpi4py 3.1.6 py311he9ffdee_0 conda-forge 567kB -2024-04-29T04:11:08Z #11 152.6 + brotli-python 1.1.0 py311hb755f60_1 conda-forge 351kB -2024-04-29T04:11:08Z #11 152.6 + lz4 4.3.3 py311h38e4bf4_0 conda-forge 40kB -2024-04-29T04:11:08Z #11 152.6 + tornado 6.4 py311h459d7ec_0 conda-forge 853kB -2024-04-29T04:11:08Z #11 152.6 + psutil 5.9.8 py311h459d7ec_0 conda-forge 506kB -2024-04-29T04:11:08Z #11 152.6 + msgpack-python 1.0.7 py311h9547e67_0 conda-forge 204kB -2024-04-29T04:11:08Z #11 152.6 + markupsafe 2.1.5 py311h459d7ec_0 conda-forge 28kB -2024-04-29T04:11:08Z #11 152.6 + pillow 10.3.0 py311h18e6fac_0 conda-forge 43MB -2024-04-29T04:11:08Z #11 152.6 + kiwisolver 1.4.5 py311h9547e67_1 conda-forge 73kB -2024-04-29T04:11:08Z #11 152.6 + llvmlite 0.42.0 py311ha6695c7_1 conda-forge 3MB -2024-04-29T04:11:08Z #11 152.6 + rtree 1.2.0 py311h3bb2b0f_0 conda-forge 64kB -2024-04-29T04:11:08Z #11 152.6 + pyyaml 6.0.1 py311h459d7ec_1 conda-forge 201kB -2024-04-29T04:11:08Z #11 152.6 + raven-hydro 0.2.4 py311h14de304_1 conda-forge 786kB -2024-04-29T04:11:08Z #11 152.6 + numpy 1.26.4 py311h64a7726_0 conda-forge 8MB -2024-04-29T04:11:08Z #11 152.6 + lxml 5.2.1 py311hc0a218f_0 conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + multiprocess 0.70.16 py311h459d7ec_0 conda-forge 348kB -2024-04-29T04:11:08Z #11 152.6 + fonttools 4.51.0 py311h459d7ec_0 conda-forge 3MB -2024-04-29T04:11:08Z #11 152.6 + pyproj 3.6.1 py311hca0b8b9_5 conda-forge 552kB -2024-04-29T04:11:08Z #11 152.6 + cytoolz 0.12.3 py311h459d7ec_0 conda-forge 396kB -2024-04-29T04:11:08Z #11 152.6 + pydantic-core 2.18.2 py311h5ecf98a_0 conda-forge 2MB -2024-04-29T04:11:08Z #11 152.6 + pyarrow 15.0.2 py311hd5e4297_5_cpu conda-forge 5MB -2024-04-29T04:11:08Z #11 152.6 + contourpy 1.2.1 py311h9547e67_0 conda-forge 259kB -2024-04-29T04:11:08Z #11 152.6 + gdal 3.8.4 py311h8be719e_5 conda-forge 2MB -2024-04-29T04:11:08Z #11 152.6 + cftime 1.6.3 py311h1f0f07a_0 conda-forge 248kB -2024-04-29T04:11:08Z #11 152.6 + numba 0.59.1 py311h96b013e_0 conda-forge 6MB -2024-04-29T04:11:08Z #11 152.6 + bottleneck 1.3.8 py311h1f0f07a_0 conda-forge 143kB -2024-04-29T04:11:08Z #11 152.6 + h5py 3.11.0 nompi_py311hebc2b07_100 conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + pandas 2.2.2 py311h320fe9a_0 conda-forge 16MB -2024-04-29T04:11:08Z #11 152.6 + shapely 2.0.4 py311h2032efe_0 conda-forge 577kB -2024-04-29T04:11:08Z #11 152.6 + scipy 1.13.0 py311h64a7726_0 conda-forge 17MB -2024-04-29T04:11:08Z #11 152.6 + matplotlib-base 3.8.4 py311h54ef318_0 conda-forge 8MB -2024-04-29T04:11:08Z #11 152.6 + pyogrio 0.7.2 py311hf8e0aa6_1 conda-forge 663kB -2024-04-29T04:11:08Z #11 152.6 + netcdf4 1.6.5 nompi_py311he8ad708_100 conda-forge 556kB -2024-04-29T04:11:08Z #11 152.6 + fiona 1.9.6 py311hf8e0aa6_0 conda-forge 993kB -2024-04-29T04:11:08Z #11 152.6 + scikit-learn 1.4.2 py311hc009520_0 conda-forge 10MB -2024-04-29T04:11:08Z #11 152.6 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-04-29T04:11:08Z #11 152.6 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-04-29T04:11:08Z #11 152.6 + yamale 5.0.0 pyhca7485f_0 conda-forge 45kB -2024-04-29T04:11:08Z #11 152.6 + dask-core 2024.4.2 pyhd8ed1ab_0 conda-forge 881kB -2024-04-29T04:11:08Z #11 152.6 + esmpy 8.6.1 pyhc1e730c_0 conda-forge 2MB -2024-04-29T04:11:08Z #11 152.6 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-04-29T04:11:08Z #11 152.6 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-04-29T04:11:08Z #11 152.6 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-04-29T04:11:08Z #11 152.6 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-04-29T04:11:08Z #11 152.6 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-04-29T04:11:08Z #11 152.6 + pydantic 2.7.1 pyhd8ed1ab_0 conda-forge 282kB -2024-04-29T04:11:08Z #11 152.6 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-04-29T04:11:08Z #11 152.6 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB -2024-04-29T04:11:08Z #11 152.6 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB -2024-04-29T04:11:08Z #11 152.6 + geopandas-base 0.14.4 pyha770c72_0 conda-forge 1MB -2024-04-29T04:11:08Z #11 152.6 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-04-29T04:11:08Z #11 152.6 + properscoring 0.1 py_0 conda-forge 22kB -2024-04-29T04:11:08Z #11 152.6 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-04-29T04:11:08Z #11 152.6 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-04-29T04:11:08Z #11 152.6 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-04-29T04:11:08Z #11 152.6 + bokeh 3.4.1 pyhd8ed1ab_0 conda-forge 5MB -2024-04-29T04:11:08Z #11 152.6 + branca 0.7.2 pyhd8ed1ab_0 conda-forge 29kB -2024-04-29T04:11:08Z #11 152.6 + dask-expr 1.0.13 pyhd8ed1ab_0 conda-forge 151kB -2024-04-29T04:11:08Z #11 152.6 + distributed 2024.4.2 pyhd8ed1ab_0 conda-forge 795kB -2024-04-29T04:11:08Z #11 152.6 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-04-29T04:11:08Z #11 152.6 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-04-29T04:11:08Z #11 152.6 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-04-29T04:11:08Z #11 152.6 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-04-29T04:11:08Z #11 152.6 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-04-29T04:11:08Z #11 152.6 + dask 2024.4.2 pyhd8ed1ab_0 conda-forge 8kB -2024-04-29T04:11:08Z #11 152.6 + xesmf 0.8.5 pyhd8ed1ab_0 conda-forge 45kB -2024-04-29T04:11:08Z #11 152.6 + geopandas 0.14.4 pyhd8ed1ab_0 conda-forge 8kB -2024-04-29T04:11:08Z #11 152.6 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-04-29T04:11:08Z #11 152.6 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-04-29T04:11:08Z #11 152.6 + rasterio 1.3.9 py311ha38370a_2 conda-forge 8MB -2024-04-29T04:11:08Z #11 152.6 + statsmodels 0.14.1 py311h1f0f07a_0 conda-forge 12MB -2024-04-29T04:11:08Z #11 152.6 + rioxarray 0.15.5 pyhd8ed1ab_0 conda-forge 51kB -2024-04-29T04:11:08Z #11 152.6 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB -2024-04-29T04:11:08Z #11 152.6 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-04-29T04:11:08Z #11 152.6 + xclim 0.48.2 pyhd8ed1ab_0 conda-forge 683kB -2024-04-29T04:11:08Z #11 152.6 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-04-29T04:11:08Z #11 152.6 + ravenpy 0.14.0 pyhd8ed1ab_1 conda-forge 6MB -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 Summary: -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 Install: 298 packages -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 Total download: 485MB -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:11:08Z #11 152.6 -2024-04-29T04:12:44Z #11 248.8 -2024-04-29T04:12:44Z #11 248.8 Looking for: ['xclim', 'ravenpy', 'python=3.11'] -2024-04-29T04:12:44Z #11 248.8 -2024-04-29T04:12:44Z #11 248.8 -2024-04-29T04:12:44Z #11 248.8 Downloading and Extracting Packages: ...working... done -2024-04-29T04:12:48Z #11 248.8 Preparing transaction: ...working... done -2024-04-29T04:13:02Z #11 253.1 Verifying transaction: ...working... done -2024-04-29T04:13:44Z #11 267.2 Executing transaction: ...working... done -2024-04-29T04:13:44Z #11 309.2 -2024-04-29T04:13:44Z #11 309.2 To activate this environment, use -2024-04-29T04:13:44Z #11 309.2 -2024-04-29T04:13:44Z #11 309.2 $ mamba activate birdy -2024-04-29T04:13:44Z #11 309.2 -2024-04-29T04:13:44Z #11 309.2 To deactivate an active environment, use -2024-04-29T04:13:44Z #11 309.2 -2024-04-29T04:13:44Z #11 309.2 $ mamba deactivate -2024-04-29T04:13:44Z #11 309.2 -2024-04-29T04:13:48Z #11 312.8 Channels: -2024-04-29T04:13:48Z #11 312.8 - conda-forge -2024-04-29T04:13:48Z #11 312.8 - cdat -2024-04-29T04:13:48Z #11 312.8 - bokeh -2024-04-29T04:13:48Z #11 312.8 - pyviz/label/dev -2024-04-29T04:13:48Z #11 312.8 - defaults -2024-04-29T04:13:48Z #11 312.8 Platform: linux-64 -2024-04-29T04:14:25Z #11 312.8 Collecting package metadata (repodata.json): ...working... done -2024-04-29T04:15:26Z #11 350.1 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 410.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:15:26Z #11 411.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:22Z #11 466.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 467.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:23Z #11 468.1 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:25Z #11 469.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.4 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 470.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:16:26Z #11 471.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-04-29T04:20:05Z #11 689.5 done -2024-04-29T04:21:53Z #11 798.2 -2024-04-29T04:21:53Z #11 798.2 Downloading and Extracting Packages: ...working... done -2024-04-29T04:22:00Z #11 798.2 Preparing transaction: ...working... done -2024-04-29T04:22:23Z #11 805.1 Verifying transaction: ...working... done -2024-04-29T04:23:17Z #11 828.1 Executing transaction: ...working... /opt/conda/envs/birdy/lib/python3.11/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-04-29T04:23:17Z #11 881.6 given by the platformdirs library. To remove this warning and -2024-04-29T04:23:17Z #11 881.6 see the appropriate new directories, set the environment variable -2024-04-29T04:23:17Z #11 881.6 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-04-29T04:23:17Z #11 881.6 The use of platformdirs will be the default in `jupyter_core` v6 -2024-04-29T04:23:17Z #11 881.6 from . import paths -2024-04-29T04:23:17Z #11 881.6 Enabling: jupyterlab_git -2024-04-29T04:23:17Z #11 881.6 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-29T04:23:17Z #11 881.6 - Validating... -2024-04-29T04:23:17Z #11 881.6 jupyterlab_git OK -2024-04-29T04:23:17Z #11 881.6 -2024-04-29T04:23:17Z #11 881.6 done -2024-04-29T04:24:05Z #11 889.1 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-04-29T04:24:05Z #11 929.6 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.te84a3xj.requirements.txt', '--exists-action=b'] -2024-04-29T04:24:05Z #11 929.6 Pip subprocess output: -2024-04-29T04:24:05Z #11 929.6 Collecting xncml (from -r /condaenv.te84a3xj.requirements.txt (line 1)) -2024-04-29T04:24:05Z #11 929.6 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting hsclient (from -r /condaenv.te84a3xj.requirements.txt (line 2)) -2024-04-29T04:24:05Z #11 929.6 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting fstd2nc (from -r /condaenv.te84a3xj.requirements.txt (line 3)) -2024-04-29T04:24:05Z #11 929.6 Downloading fstd2nc-0.20240401.0.tar.gz (166 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 166.9/166.9 kB 10.5 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Installing build dependencies: started -2024-04-29T04:24:05Z #11 929.6 Installing build dependencies: finished with status 'done' -2024-04-29T04:24:05Z #11 929.6 Getting requirements to build wheel: started -2024-04-29T04:24:05Z #11 929.6 Getting requirements to build wheel: finished with status 'done' -2024-04-29T04:24:05Z #11 929.6 Installing backend dependencies: started -2024-04-29T04:24:05Z #11 929.6 Installing backend dependencies: finished with status 'done' -2024-04-29T04:24:05Z #11 929.6 Preparing metadata (pyproject.toml): started -2024-04-29T04:24:05Z #11 929.6 Preparing metadata (pyproject.toml): finished with status 'done' -2024-04-29T04:24:05Z #11 929.6 Collecting figanos (from -r /condaenv.te84a3xj.requirements.txt (line 4)) -2024-04-29T04:24:05Z #11 929.6 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting pixiedust (from -r /condaenv.te84a3xj.requirements.txt (line 5)) -2024-04-29T04:24:05Z #11 929.6 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 21.9 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Preparing metadata (setup.py): started -2024-04-29T04:24:05Z #11 929.6 Preparing metadata (setup.py): finished with status 'done' -2024-04-29T04:24:05Z #11 929.6 Collecting ipython_blocking (from -r /condaenv.te84a3xj.requirements.txt (line 6)) -2024-04-29T04:24:05Z #11 929.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting jupyternotify (from -r /condaenv.te84a3xj.requirements.txt (line 7)) -2024-04-29T04:24:05Z #11 929.6 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-04-29T04:24:05Z #11 929.6 Preparing metadata (setup.py): started -2024-04-29T04:24:05Z #11 929.6 Preparing metadata (setup.py): finished with status 'done' -2024-04-29T04:24:05Z #11 929.6 Collecting jupyterlab-logout (from -r /condaenv.te84a3xj.requirements.txt (line 8)) -2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.te84a3xj.requirements.txt (line 9)) -2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting pytest-tornasync (from -r /condaenv.te84a3xj.requirements.txt (line 10)) -2024-04-29T04:24:05Z #11 929.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting xmltodict (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) -2024-04-29T04:24:05Z #11 929.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting xsdata (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) -2024-04-29T04:24:05Z #11 929.6 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (2023.8.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (1.6.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (1.6.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (2024.4.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (5.9.8) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (69.5.1) -2024-04-29T04:24:05Z #11 929.6 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) -2024-04-29T04:24:05Z #11 929.6 Downloading hsmodels-1.0.0-py3-none-any.whl.metadata (714 bytes) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.31.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.0.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fstd2nc->-r /condaenv.te84a3xj.requirements.txt (line 3)) (1.24.4) -2024-04-29T04:24:05Z #11 929.6 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.te84a3xj.requirements.txt (line 3)) -2024-04-29T04:24:05Z #11 929.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.23.0) -2024-04-29T04:24:05Z #11 929.6 Collecting cairosvg (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) -2024-04-29T04:24:05Z #11 929.6 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.14.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.8.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.1.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (4.2.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (6.0.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.13.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.22.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.47.0) -2024-04-29T04:24:05Z #11 929.6 Collecting geojson (from pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) -2024-04-29T04:24:05Z #11 929.6 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting astunparse (from pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) -2024-04-29T04:24:05Z #11 929.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) (3.6) -2024-04-29T04:24:05Z #11 929.6 Collecting colour (from pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) -2024-04-29T04:24:05Z #11 929.6 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (8.22.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (8.1.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.7.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (1.0.0) -2024-04-29T04:24:05Z #11 929.6 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) -2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab-4.1.8-py3-none-any.whl.metadata (16 kB) -2024-04-29T04:24:05Z #11 929.6 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-04-29T04:24:05Z #11 929.6 Collecting jupyterlab-logout (from -r /condaenv.te84a3xj.requirements.txt (line 8)) -2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.6.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (3.6.7) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (24.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (6.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (5.7.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.27.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.14.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.2.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.8.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.0.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (6.5.6) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (3.1.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest-tornasync->-r /condaenv.te84a3xj.requirements.txt (line 10)) (8.2.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.te84a3xj.requirements.txt (line 3)) (2024.1) -2024-04-29T04:24:05Z #11 929.6 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) -2024-04-29T04:24:05Z #11 929.6 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pydantic==2.* in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.7.1) -2024-04-29T04:24:05Z #11 929.6 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) -2024-04-29T04:24:05Z #11 929.6 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (0.6.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pydantic-core==2.18.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.18.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.*->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (4.11.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.te84a3xj.requirements.txt (line 10)) (2.0.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pluggy<2.0,>=1.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.te84a3xj.requirements.txt (line 10)) (1.5.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (24.0.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.3.8) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.9.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (8.1.7) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.0.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.0.6) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.59.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.23) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.4.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.13.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.14.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (3.0.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (2024.3.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (1.4.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (0.12.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (7.1.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.9.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2024.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from astunparse->pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) (0.43.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from astunparse->pixiedust->-r /condaenv.te84a3xj.requirements.txt (line 5)) (1.16.0) -2024-04-29T04:24:05Z #11 929.6 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) -2024-04-29T04:24:05Z #11 929.6 Downloading cairocffi-1.7.0-py3-none-any.whl.metadata (3.3 kB) -2024-04-29T04:24:05Z #11 929.6 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) -2024-04-29T04:24:05Z #11 929.6 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.7.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (9.4.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.3.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.0.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyshp>=2.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.3.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyproj>=3.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.5.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.2.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.12.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (4.51.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.4.5) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.1.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.9.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (5.1.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.19.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.1.7) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (3.0.42) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (2.17.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.6.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (5.14.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (4.9.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.2.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (4.0.10) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (3.0.10) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (5.5.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (6.6.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (7.16.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (6.29.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (7.4.9) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (5.10.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (3.3.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (3.7) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2.0.7) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (2024.2.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests-oauthlib->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) (3.2.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.34.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2023.8.12) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (23.2.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.1.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.7.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (4.0.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (3.17.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.8.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.1.5) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (1.6.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (24.0.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (4.3.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: argon2-cffi>=21.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (23.1.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.10.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-server-terminals>=0.4.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.5.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: overrides>=5.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (7.7.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: prometheus-client>=0.9 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.20.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.8.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.18.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: websocket-client>=1.7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.8.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.9.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.8.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.5.9) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.14.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.9.25) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (4.21.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (4.12.3) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (6.1.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (0.3.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (3.0.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (1.5.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (2.19.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.11/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.2.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.2.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.11/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.te84a3xj.requirements.txt (line 1)) (1.0.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.7.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.11/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.2.13) -2024-04-29T04:24:05Z #11 929.6 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) -2024-04-29T04:24:05Z #11 929.6 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.4.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (3.4.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (1.16.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.5.1) -2024-04-29T04:24:05Z #11 929.6 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.te84a3xj.requirements.txt (line 2)) -2024-04-29T04:24:05Z #11 929.6 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (1.8.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.42.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (2.4.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (2.0.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (2.4.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.te84a3xj.requirements.txt (line 6)) (0.2.2) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (0.5.6) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.3.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.11/site-packages (from argon2-cffi>=21.1->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (21.2.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.te84a3xj.requirements.txt (line 4)) (2.22) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2023.12.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.35.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.18.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.0.7) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.1.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.1.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (22.1.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (0.19.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.te84a3xj.requirements.txt (line 7)) (2.5) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.5.1) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (20.11.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.4) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.3.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.13) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (1.3.0) -2024-04-29T04:24:05Z #11 929.6 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.te84a3xj.requirements.txt (line 8)) (2.9.0.20240316) -2024-04-29T04:24:05Z #11 929.6 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 47.7 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 10.3 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 38.5 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 7.2 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Downloading hsmodels-1.0.0-py3-none-any.whl (34 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 5.1 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading xsdata-24.4-py3-none-any.whl (229 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 27.7 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 27.5 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Downloading cairocffi-1.7.0-py3-none-any.whl (75 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.4/75.4 kB 10.8 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-04-29T04:24:05Z #11 929.6 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 30.2 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-04-29T04:24:05Z #11 929.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.7 MB/s eta 0:00:00 -2024-04-29T04:24:05Z #11 929.6 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify -2024-04-29T04:24:05Z #11 929.6 Building wheel for fstd2nc (pyproject.toml): started -2024-04-29T04:24:05Z #11 929.6 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-04-29T04:24:05Z #11 929.6 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.0-py3-none-any.whl size=169076 sha256=c3f63f9947f05d628a5cc287139fb99e667f6b3c02b89195514981278fb4f028 -2024-04-29T04:24:05Z #11 929.6 Stored in directory: /root/.cache/pip/wheels/a3/77/15/800093c84a9d638eae4a0deec59311ad878b67b156be30cae8 -2024-04-29T04:24:05Z #11 929.6 Building wheel for pixiedust (setup.py): started -2024-04-29T04:24:05Z #11 929.6 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-04-29T04:24:05Z #11 929.6 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=7f060aba45d275968f8513c41a29a63582d4154007bef0c455b14a34e1f16327 -2024-04-29T04:24:05Z #11 929.6 Stored in directory: /root/.cache/pip/wheels/95/07/18/a3e64aff394679af4a7ec0192ecae66f2725617c23dc8810fa -2024-04-29T04:24:05Z #11 929.6 Building wheel for jupyternotify (setup.py): started -2024-04-29T04:24:05Z #11 929.6 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-04-29T04:24:05Z #11 929.6 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=19c948dcba2377933e073dfd140e57a7f234cade372a46df8200f3d4c576e3dc -2024-04-29T04:24:05Z #11 929.6 Stored in directory: /root/.cache/pip/wheels/ed/19/e2/59939d0f3bcf11547b07e9af34df315f836561f0c2f59acc6c -2024-04-29T04:24:05Z #11 929.6 Successfully built fstd2nc pixiedust jupyternotify -2024-04-29T04:24:05Z #11 929.6 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-04-29T04:24:05Z #11 929.6 Successfully installed astunparse-1.6.3 cairocffi-1.7.0 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.0 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.0 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 -2024-04-29T04:24:05Z #11 929.6 -2024-04-29T04:24:05Z #11 929.6 done -2024-04-29T04:24:05Z #11 929.6 # -2024-04-29T04:24:05Z #11 929.6 # To activate this environment, use -2024-04-29T04:24:05Z #11 929.6 # -2024-04-29T04:24:05Z #11 929.6 # $ conda activate birdy -2024-04-29T04:24:05Z #11 929.6 # -2024-04-29T04:24:05Z #11 929.6 # To deactivate an active environment, use -2024-04-29T04:24:05Z #11 929.6 # -2024-04-29T04:24:05Z #11 929.6 # $ conda deactivate -2024-04-29T04:24:05Z #11 929.6 -2024-04-29T04:24:17Z #11 942.3 Will remove 772 (1.24 GB) tarball(s). -2024-04-29T04:24:17Z #11 942.3 Will remove 1 index cache(s). -2024-04-29T04:24:17Z #11 942.3 Will remove 147 (1.36 GB) package(s). -2024-04-29T04:24:17Z #11 942.3 There are no tempfile(s) to remove. -2024-04-29T04:24:17Z #11 942.3 There are no logfile(s) to remove. -2024-04-29T04:24:18Z #11 DONE 943.1s -2024-04-29T04:24:18Z -2024-04-29T04:24:18Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2024-04-29T04:24:20Z #12 1.268 0.00s - Debugger warning: It seems that frozen modules are being used, which may -2024-04-29T04:24:20Z #12 1.268 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -2024-04-29T04:24:20Z #12 1.268 0.00s - to python to disable frozen modules. -2024-04-29T04:24:20Z #12 1.268 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -2024-04-29T04:24:20Z #12 1.333 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-04-29T04:24:20Z #12 DONE 1.5s -2024-04-29T04:24:20Z -2024-04-29T04:24:20Z #13 [ 8/10] RUN jupyter lab build -2024-04-29T04:24:22Z #13 1.963 [LabBuildApp] JupyterLab 3.6.7 -2024-04-29T04:24:22Z #13 1.964 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2024-04-29T04:24:22Z #13 2.605 [LabBuildApp] Building jupyterlab assets (production, minimized) -2024-04-29T04:24:22Z #13 2.622 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. -2024-04-29T04:24:22Z #13 2.622 -2024-04-29T04:26:38Z #13 2.627 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/ -2024-04-29T04:26:38Z #13 DONE 138.0s -2024-04-29T04:26:38Z -2024-04-29T04:26:38Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-04-29T04:26:38Z #14 0.608 Enabling: voila -2024-04-29T04:26:38Z #14 0.608 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-29T04:26:38Z #14 0.610 - Validating... -2024-04-29T04:26:39Z #14 1.275 voila 0.5.6 OK -2024-04-29T04:26:39Z #14 1.648 Enabling: panel.io.jupyter_server_extension -2024-04-29T04:26:40Z #14 1.648 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-04-29T04:26:40Z #14 1.650 - Validating... -2024-04-29T04:26:41Z #14 3.251 panel.io.jupyter_server_extension OK -2024-04-29T04:26:42Z #14 3.739 - Validating... -2024-04-29T04:26:42Z #14 4.545 dask_labextension 6.2.0 OK -2024-04-29T04:26:42Z #14 4.545 - Validating... -2024-04-29T04:26:42Z #14 4.548 jupyter_archive 3.3.4 OK -2024-04-29T04:26:42Z #14 4.548 - Validating... -2024-04-29T04:26:42Z #14 4.548 jupyter_server_proxy 4.1.1-0.dev OK -2024-04-29T04:26:42Z #14 4.548 - Validating... -2024-04-29T04:26:43Z #14 4.675 jupyter_resource_usage 0.7.1 OK -2024-04-29T04:26:43Z #14 4.675 - Validating... -2024-04-29T04:26:43Z #14 4.764  X is jupyter_server_ydoc importable? -2024-04-29T04:26:43Z #14 4.764 - Validating... -2024-04-29T04:26:43Z #14 4.831 jupyterlab 3.6.7 OK -2024-04-29T04:26:43Z #14 4.831 - Validating... -2024-04-29T04:26:43Z #14 5.009 jupyterlab_jupytext OK -2024-04-29T04:26:43Z #14 5.009 - Validating... -2024-04-29T04:26:43Z #14 5.014 mamba_gator 5.2.1 OK -2024-04-29T04:26:43Z #14 5.014 - Validating... -2024-04-29T04:26:43Z #14 5.030 nbdime 4.0.1 OK -2024-04-29T04:26:43Z #14 5.030 - Validating... -2024-04-29T04:26:44Z #14 6.023 panel.io.jupyter_server_extension OK -2024-04-29T04:26:44Z #14 6.023 - Validating... -2024-04-29T04:26:44Z #14 6.087 nbresuse OK -2024-04-29T04:26:44Z #14 6.087 - Validating... -2024-04-29T04:26:44Z #14 6.253 voila.server_extension OK -2024-04-29T04:26:44Z #14 6.253 - Validating... -2024-04-29T04:26:44Z #14 6.255 jupyterlab_git OK -2024-04-29T04:26:44Z #14 6.255 - Validating... -2024-04-29T04:26:44Z #14 6.255 voila 0.5.6 OK -2024-04-29T04:26:44Z #14 6.256 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-04-29T04:26:44Z #14 6.256 dask_labextension  enabled  -2024-04-29T04:26:44Z #14 6.256 jupyter_archive  enabled  -2024-04-29T04:26:44Z #14 6.256 jupyter_server_proxy  enabled  -2024-04-29T04:26:44Z #14 6.256 jupyter_resource_usage  enabled  -2024-04-29T04:26:44Z #14 6.256 jupyter_server_ydoc  enabled  -2024-04-29T04:26:44Z #14 6.256 jupyterlab  enabled  -2024-04-29T04:26:44Z #14 6.256 jupyterlab_jupytext  enabled  -2024-04-29T04:26:44Z #14 6.256 mamba_gator  enabled  -2024-04-29T04:26:44Z #14 6.256 nbdime  enabled  -2024-04-29T04:26:44Z #14 6.256 panel.io.jupyter_server_extension  enabled  -2024-04-29T04:26:44Z #14 6.256 nbresuse  enabled  -2024-04-29T04:26:44Z #14 6.256 voila.server_extension  enabled  -2024-04-29T04:26:44Z #14 6.256 jupyterlab_git  enabled  -2024-04-29T04:26:44Z #14 6.256 voila  enabled  -2024-04-29T04:26:45Z #14 DONE 6.7s -2024-04-29T04:26:45Z -2024-04-29T04:26:45Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-04-29T04:26:45Z #15 0.443 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-04-29T04:26:45Z #15 0.467 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ... -2024-04-29T04:26:45Z #15 0.470 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-04-29T04:26:45Z #15 0.474 HTTP request sent, awaiting response... 200 OK -2024-04-29T04:26:45Z #15 0.588 Length: 9769 (9.5K) [text/plain] -2024-04-29T04:26:45Z #15 0.588 Saving to: ‘/usr/local/bin/start.sh’ -2024-04-29T04:26:45Z #15 0.588 -2024-04-29T04:26:45Z #15 0.588 0K ......... 100% 18.7M=0s -2024-04-29T04:26:45Z #15 0.590 -2024-04-29T04:26:45Z #15 0.590 2024-04-29 04:26:45 (18.7 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-04-29T04:26:45Z #15 0.590 -2024-04-29T04:26:45Z #15 0.593 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-04-29T04:26:45Z #15 0.618 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.110.133, 185.199.109.133, ... -2024-04-29T04:26:45Z #15 0.619 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-04-29T04:26:45Z #15 0.625 HTTP request sent, awaiting response... 200 OK -2024-04-29T04:26:45Z #15 0.686 Length: 359 [text/plain] -2024-04-29T04:26:45Z #15 0.686 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-04-29T04:26:45Z #15 0.686 -2024-04-29T04:26:45Z #15 0.686 0K 100% 18.7M=0s -2024-04-29T04:26:45Z #15 0.688 -2024-04-29T04:26:45Z #15 0.688 2024-04-29 04:26:45 (18.7 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-04-29T04:26:45Z #15 0.688 -2024-04-29T04:26:45Z #15 0.691 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-04-29T04:26:45Z #15 0.715 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.111.133, 185.199.110.133, ... -2024-04-29T04:26:45Z #15 0.716 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-04-29T04:26:45Z #15 0.720 HTTP request sent, awaiting response... 200 OK -2024-04-29T04:26:45Z #15 0.788 Length: 852 [text/plain] -2024-04-29T04:26:45Z #15 0.788 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-04-29T04:26:45Z #15 0.788 -2024-04-29T04:26:45Z #15 0.788 0K 100% 2.89M=0s -2024-04-29T04:26:45Z #15 0.790 -2024-04-29T04:26:45Z #15 0.791 2024-04-29 04:26:45 (2.89 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-04-29T04:26:45Z #15 0.791 -2024-04-29T04:26:45Z #15 0.795 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-04-29T04:26:45Z #15 0.819 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ... -2024-04-29T04:26:45Z #15 0.821 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-04-29T04:26:45Z #15 0.827 HTTP request sent, awaiting response... 200 OK -2024-04-29T04:26:45Z #15 0.914 Length: 1034 (1.0K) [text/plain] -2024-04-29T04:26:45Z #15 0.914 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-04-29T04:26:45Z #15 0.915 -2024-04-29T04:26:45Z #15 0.915 0K . 100% 45.5M=0s -2024-04-29T04:26:45Z #15 0.918 -2024-04-29T04:26:45Z #15 0.918 2024-04-29 04:26:45 (45.5 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-04-29T04:26:45Z #15 0.918 -2024-04-29T04:26:45Z #15 0.922 --2024-04-29 04:26:45-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-04-29T04:26:45Z #15 0.946 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.108.133, ... -2024-04-29T04:26:45Z #15 0.948 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-04-29T04:26:45Z #15 0.954 HTTP request sent, awaiting response... 200 OK -2024-04-29T04:26:46Z #15 1.027 Length: 1836 (1.8K) [text/plain] -2024-04-29T04:26:46Z #15 1.027 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-04-29T04:26:46Z #15 1.027 -2024-04-29T04:26:46Z #15 1.027 0K . 100% 11.7M=0s -2024-04-29T04:26:46Z #15 1.028 -2024-04-29T04:26:46Z #15 1.028 2024-04-29 04:26:45 (11.7 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-04-29T04:26:46Z #15 1.028 -2024-04-29T04:26:46Z #15 1.211 --2024-04-29 04:26:46-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-04-29T04:26:46Z #15 1.234 Resolving downloads.globus.org (downloads.globus.org)... 52.85.132.85, 52.85.132.76, 52.85.132.96, ... -2024-04-29T04:26:46Z #15 1.240 Connecting to downloads.globus.org (downloads.globus.org)|52.85.132.85|:443... connected. -2024-04-29T04:26:46Z #15 1.245 HTTP request sent, awaiting response... 200 OK -2024-04-29T04:26:46Z #15 1.363 Length: 130857988 (125M) [application/x-tar] -2024-04-29T04:26:46Z #15 1.363 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-04-29T04:26:46Z #15 1.363 -2024-04-29T04:26:46Z #15 1.363 0K .......... .......... .......... .......... .......... 0% 27.9M 4s -2024-04-29T04:26:46Z #15 1.365 50K .......... .......... .......... .......... .......... 0% 31.6M 4s -2024-04-29T04:26:46Z #15 1.366 100K .......... .......... .......... .......... .......... 0% 31.0M 4s -2024-04-29T04:26:46Z #15 1.368 150K .......... .......... .......... .......... .......... 0% 23.3M 4s -2024-04-29T04:26:46Z #15 1.370 200K .......... .......... .......... .......... .......... 0% 35.0M 4s -2024-04-29T04:26:46Z #15 1.371 250K .......... .......... .......... .......... .......... 0% 31.9M 4s -2024-04-29T04:26:46Z #15 1.373 300K .......... .......... .......... .......... .......... 0% 30.7M 4s -2024-04-29T04:26:46Z #15 1.374 350K .......... .......... .......... .......... .......... 0% 41.6M 4s -2024-04-29T04:26:46Z #15 1.376 400K .......... .......... .......... .......... .......... 0% 38.4M 4s -2024-04-29T04:26:46Z #15 1.377 450K .......... .......... .......... .......... .......... 0% 37.7M 4s -2024-04-29T04:26:46Z #15 1.378 500K .......... .......... .......... .......... .......... 0% 57.8M 4s -2024-04-29T04:26:46Z #15 1.379 550K .......... .......... .......... .......... .......... 0% 120M 3s -2024-04-29T04:26:46Z #15 1.380 600K .......... .......... .......... .......... .......... 0% 131M 3s -2024-04-29T04:26:46Z #15 1.380 650K .......... .......... .......... .......... .......... 0% 121M 3s -2024-04-29T04:26:46Z #15 1.381 700K .......... .......... .......... .......... .......... 0% 162M 3s -2024-04-29T04:26:46Z #15 1.381 750K .......... .......... .......... .......... .......... 0% 147M 3s -2024-04-29T04:26:46Z #15 1.381 800K .......... .......... .......... .......... .......... 0% 99.9M 3s -2024-04-29T04:26:46Z #15 1.382 850K .......... .......... .......... .......... .......... 0% 75.2M 3s -2024-04-29T04:26:46Z #15 1.382 900K .......... .......... .......... .......... .......... 0% 95.9M 3s -2024-04-29T04:26:46Z #15 1.383 950K .......... .......... .......... .......... .......... 0% 99.1M 3s -2024-04-29T04:26:46Z #15 1.384 1000K .......... .......... .......... .......... .......... 0% 76.0M 2s -2024-04-29T04:26:46Z #15 1.384 1050K .......... .......... .......... .......... .......... 0% 78.5M 2s -2024-04-29T04:26:46Z #15 1.384 1100K .......... .......... .......... .......... .......... 0% 71.9M 2s -2024-04-29T04:26:46Z #15 1.385 1150K .......... .......... .......... .......... .......... 0% 85.0M 2s -2024-04-29T04:26:46Z #15 1.386 1200K .......... .......... .......... .......... .......... 0% 64.7M 2s -2024-04-29T04:26:46Z #15 1.387 1250K .......... .......... .......... .......... .......... 1% 80.8M 2s -2024-04-29T04:26:46Z #15 1.387 1300K .......... .......... .......... .......... .......... 1% 81.5M 2s -2024-04-29T04:26:46Z #15 1.388 1350K .......... .......... .......... .......... .......... 1% 79.7M 2s -2024-04-29T04:26:46Z #15 1.388 1400K .......... .......... .......... .......... .......... 1% 56.9M 2s -2024-04-29T04:26:46Z #15 1.389 1450K .......... .......... .......... .......... .......... 1% 46.9M 2s -2024-04-29T04:26:46Z #15 1.390 1500K .......... .......... .......... .......... .......... 1% 64.6M 2s -2024-04-29T04:26:46Z #15 1.391 1550K .......... .......... .......... .......... .......... 1% 69.2M 2s -2024-04-29T04:26:46Z #15 1.391 1600K .......... .......... .......... .......... .......... 1% 70.3M 2s -2024-04-29T04:26:46Z #15 1.392 1650K .......... .......... .......... .......... .......... 1% 70.6M 2s -2024-04-29T04:26:46Z #15 1.393 1700K .......... .......... .......... .......... .......... 1% 67.5M 2s -2024-04-29T04:26:46Z #15 1.394 1750K .......... .......... .......... .......... .......... 1% 70.7M 2s -2024-04-29T04:26:46Z #15 1.394 1800K .......... .......... .......... .......... .......... 1% 65.7M 2s -2024-04-29T04:26:46Z #15 1.395 1850K .......... .......... .......... .......... .......... 1% 55.6M 2s -2024-04-29T04:26:46Z #15 1.396 1900K .......... .......... .......... .......... .......... 1% 72.6M 2s -2024-04-29T04:26:46Z #15 1.397 1950K .......... .......... .......... .......... .......... 1% 48.9M 2s -2024-04-29T04:26:46Z #15 1.397 2000K .......... .......... .......... .......... .......... 1% 64.9M 2s -2024-04-29T04:26:46Z #15 1.399 2050K .......... .......... .......... .......... .......... 1% 73.1M 2s -2024-04-29T04:26:46Z #15 1.399 2100K .......... .......... .......... .......... .......... 1% 52.8M 2s -2024-04-29T04:26:46Z #15 1.400 2150K .......... .......... .......... .......... .......... 1% 74.4M 2s -2024-04-29T04:26:46Z #15 1.401 2200K .......... .......... .......... .......... .......... 1% 61.1M 2s -2024-04-29T04:26:46Z #15 1.401 2250K .......... .......... .......... .......... .......... 1% 68.3M 2s -2024-04-29T04:26:46Z #15 1.402 2300K .......... .......... .......... .......... .......... 1% 55.0M 2s -2024-04-29T04:26:46Z #15 1.403 2350K .......... .......... .......... .......... .......... 1% 72.0M 2s -2024-04-29T04:26:46Z #15 1.404 2400K .......... .......... .......... .......... .......... 1% 86.3M 2s -2024-04-29T04:26:46Z #15 1.404 2450K .......... .......... .......... .......... .......... 1% 74.6M 2s -2024-04-29T04:26:46Z #15 1.405 2500K .......... .......... .......... .......... .......... 1% 69.8M 2s -2024-04-29T04:26:46Z #15 1.406 2550K .......... .......... .......... .......... .......... 2% 80.8M 2s -2024-04-29T04:26:46Z #15 1.407 2600K .......... .......... .......... .......... .......... 2% 80.4M 2s -2024-04-29T04:26:46Z #15 1.407 2650K .......... .......... .......... .......... .......... 2% 75.9M 2s -2024-04-29T04:26:46Z #15 1.407 2700K .......... .......... .......... .......... .......... 2% 83.3M 2s -2024-04-29T04:26:46Z #15 1.408 2750K .......... .......... .......... .......... .......... 2% 120M 2s -2024-04-29T04:26:46Z #15 1.408 2800K .......... .......... .......... .......... .......... 2% 93.7M 2s -2024-04-29T04:26:46Z #15 1.409 2850K .......... .......... .......... .......... .......... 2% 127M 2s -2024-04-29T04:26:46Z #15 1.409 2900K .......... .......... .......... .......... .......... 2% 128M 2s -2024-04-29T04:26:46Z #15 1.410 2950K .......... .......... .......... .......... .......... 2% 131M 2s -2024-04-29T04:26:46Z #15 1.410 3000K .......... .......... .......... .......... .......... 2% 103M 2s -2024-04-29T04:26:46Z #15 1.410 3050K .......... .......... .......... .......... .......... 2% 142M 2s -2024-04-29T04:26:46Z #15 1.411 3100K .......... .......... .......... .......... .......... 2% 139M 2s -2024-04-29T04:26:46Z #15 1.411 3150K .......... .......... .......... .......... .......... 2% 129M 2s -2024-04-29T04:26:46Z #15 1.411 3200K .......... .......... .......... .......... .......... 2% 84.6M 2s -2024-04-29T04:26:46Z #15 1.412 3250K .......... .......... .......... .......... .......... 2% 144M 2s -2024-04-29T04:26:46Z #15 1.412 3300K .......... .......... .......... .......... .......... 2% 107M 2s -2024-04-29T04:26:46Z #15 1.413 3350K .......... .......... .......... .......... .......... 2% 129M 2s -2024-04-29T04:26:46Z #15 1.413 3400K .......... .......... .......... .......... .......... 2% 85.3M 2s -2024-04-29T04:26:46Z #15 1.415 3450K .......... .......... .......... .......... .......... 2% 101M 2s -2024-04-29T04:26:46Z #15 1.415 3500K .......... .......... .......... .......... .......... 2% 70.7M 2s -2024-04-29T04:26:46Z #15 1.415 3550K .......... .......... .......... .......... .......... 2% 96.1M 2s -2024-04-29T04:26:46Z #15 1.416 3600K .......... .......... .......... .......... .......... 2% 127M 2s -2024-04-29T04:26:46Z #15 1.416 3650K .......... .......... .......... .......... .......... 2% 149M 2s -2024-04-29T04:26:46Z #15 1.417 3700K .......... .......... .......... .......... .......... 2% 135M 2s -2024-04-29T04:26:46Z #15 1.417 3750K .......... .......... .......... .......... .......... 2% 97.9M 2s -2024-04-29T04:26:46Z #15 1.417 3800K .......... .......... .......... .......... .......... 3% 152M 2s -2024-04-29T04:26:46Z #15 1.417 3850K .......... .......... .......... .......... .......... 3% 119M 2s -2024-04-29T04:26:46Z #15 1.418 3900K .......... .......... .......... .......... .......... 3% 97.5M 2s -2024-04-29T04:26:46Z #15 1.418 3950K .......... .......... .......... .......... .......... 3% 127M 2s -2024-04-29T04:26:46Z #15 1.419 4000K .......... .......... .......... .......... .......... 3% 120M 2s -2024-04-29T04:26:46Z #15 1.419 4050K .......... .......... .......... .......... .......... 3% 148M 2s -2024-04-29T04:26:46Z #15 1.419 4100K .......... .......... .......... .......... .......... 3% 151M 2s -2024-04-29T04:26:46Z #15 1.420 4150K .......... .......... .......... .......... .......... 3% 132M 2s -2024-04-29T04:26:46Z #15 1.421 4200K .......... .......... .......... .......... .......... 3% 148M 2s -2024-04-29T04:26:46Z #15 1.421 4250K .......... .......... .......... .......... .......... 3% 119M 2s -2024-04-29T04:26:46Z #15 1.421 4300K .......... .......... .......... .......... .......... 3% 139M 2s -2024-04-29T04:26:46Z #15 1.425 4350K .......... .......... .......... .......... .......... 3% 168M 2s -2024-04-29T04:26:46Z #15 1.425 4400K .......... .......... .......... .......... .......... 3% 137M 2s -2024-04-29T04:26:46Z #15 1.425 4450K .......... .......... .......... .......... .......... 3% 149M 2s -2024-04-29T04:26:46Z #15 1.425 4500K .......... .......... .......... .......... .......... 3% 170M 2s -2024-04-29T04:26:46Z #15 1.425 4550K .......... .......... .......... .......... .......... 3% 148M 2s -2024-04-29T04:26:46Z #15 1.425 4600K .......... .......... .......... .......... .......... 3% 147M 2s -2024-04-29T04:26:46Z #15 1.425 4650K .......... .......... .......... .......... .......... 3% 172M 2s -2024-04-29T04:26:46Z #15 1.425 4700K .......... .......... .......... .......... .......... 3% 146M 2s -2024-04-29T04:26:46Z #15 1.425 4750K .......... .......... .......... .......... .......... 3% 146M 2s -2024-04-29T04:26:46Z #15 1.425 4800K .......... .......... .......... .......... .......... 3% 133M 2s -2024-04-29T04:26:46Z #15 1.425 4850K .......... .......... .......... .......... .......... 3% 128M 2s -2024-04-29T04:26:46Z #15 1.425 4900K .......... .......... .......... .......... .......... 3% 144M 2s -2024-04-29T04:26:46Z #15 1.425 4950K .......... .......... .......... .......... .......... 3% 143M 2s -2024-04-29T04:26:46Z #15 1.425 5000K .......... .......... .......... .......... .......... 3% 133M 2s -2024-04-29T04:26:46Z #15 1.426 5050K .......... .......... .......... .......... .......... 3% 151M 2s -2024-04-29T04:26:46Z #15 1.426 5100K .......... .......... .......... .......... .......... 4% 132M 2s -2024-04-29T04:26:46Z #15 1.427 5150K .......... .......... .......... .......... .......... 4% 145M 2s -2024-04-29T04:26:46Z #15 1.427 5200K .......... .......... .......... .......... .......... 4% 122M 2s -2024-04-29T04:26:46Z #15 1.427 5250K .......... .......... .......... .......... .......... 4% 146M 1s -2024-04-29T04:26:46Z #15 1.428 5300K .......... .......... .......... .......... .......... 4% 124M 1s -2024-04-29T04:26:46Z #15 1.428 5350K .......... .......... .......... .......... .......... 4% 8.91M 2s -2024-04-29T04:26:46Z #15 1.434 5400K .......... .......... .......... .......... .......... 4% 20.5M 2s -2024-04-29T04:26:46Z #15 1.436 5450K .......... .......... .......... .......... .......... 4% 56.5M 2s -2024-04-29T04:26:46Z #15 1.437 5500K .......... .......... .......... .......... .......... 4% 64.6M 2s -2024-04-29T04:26:46Z #15 1.438 5550K .......... .......... .......... .......... .......... 4% 50.0M 2s -2024-04-29T04:26:46Z #15 1.439 5600K .......... .......... .......... .......... .......... 4% 110M 2s -2024-04-29T04:26:46Z #15 1.439 5650K .......... .......... .......... .......... .......... 4% 154M 2s -2024-04-29T04:26:46Z #15 1.440 5700K .......... .......... .......... .......... .......... 4% 20.0M 2s -2024-04-29T04:26:46Z #15 1.442 5750K .......... .......... .......... .......... .......... 4% 29.5M 2s -2024-04-29T04:26:46Z #15 1.444 5800K .......... .......... .......... .......... .......... 4% 40.1M 2s -2024-04-29T04:26:46Z #15 1.445 5850K .......... .......... .......... .......... .......... 4% 40.0M 2s -2024-04-29T04:26:46Z #15 1.446 5900K .......... .......... .......... .......... .......... 4% 50.4M 2s -2024-04-29T04:26:46Z #15 1.447 5950K .......... .......... .......... .......... .......... 4% 47.8M 2s -2024-04-29T04:26:46Z #15 1.448 6000K .......... .......... .......... .......... .......... 4% 50.9M 2s -2024-04-29T04:26:46Z #15 1.449 6050K .......... .......... .......... .......... .......... 4% 22.2M 2s -2024-04-29T04:26:46Z #15 1.451 6100K .......... .......... .......... .......... .......... 4% 41.0M 2s -2024-04-29T04:26:46Z #15 1.452 6150K .......... .......... .......... .......... .......... 4% 34.4M 2s -2024-04-29T04:26:46Z #15 1.454 6200K .......... .......... .......... .......... .......... 4% 55.3M 2s -2024-04-29T04:26:46Z #15 1.455 6250K .......... .......... .......... .......... .......... 4% 64.4M 2s -2024-04-29T04:26:46Z #15 1.456 6300K .......... .......... .......... .......... .......... 4% 67.5M 2s -2024-04-29T04:26:46Z #15 1.456 6350K .......... .......... .......... .......... .......... 5% 53.9M 2s -2024-04-29T04:26:46Z #15 1.458 6400K .......... .......... .......... .......... .......... 5% 106M 2s -2024-04-29T04:26:46Z #15 1.458 6450K .......... .......... .......... .......... .......... 5% 55.8M 2s -2024-04-29T04:26:46Z #15 1.459 6500K .......... .......... .......... .......... .......... 5% 50.0M 2s -2024-04-29T04:26:46Z #15 1.459 6550K .......... .......... .......... .......... .......... 5% 67.3M 2s -2024-04-29T04:26:46Z #15 1.460 6600K .......... .......... .......... .......... .......... 5% 61.6M 2s -2024-04-29T04:26:46Z #15 1.461 6650K .......... .......... .......... .......... .......... 5% 43.2M 2s -2024-04-29T04:26:46Z #15 1.465 6700K .......... .......... .......... .......... .......... 5% 54.3M 2s -2024-04-29T04:26:46Z #15 1.465 6750K .......... .......... .......... .......... .......... 5% 54.6M 2s -2024-04-29T04:26:46Z #15 1.465 6800K .......... .......... .......... .......... .......... 5% 51.3M 2s -2024-04-29T04:26:46Z #15 1.465 6850K .......... .......... .......... .......... .......... 5% 35.5M 2s -2024-04-29T04:26:46Z #15 1.467 6900K .......... .......... .......... .......... .......... 5% 16.3M 2s -2024-04-29T04:26:46Z #15 1.469 6950K .......... .......... .......... .......... .......... 5% 33.4M 2s -2024-04-29T04:26:46Z #15 1.471 7000K .......... .......... .......... .......... .......... 5% 40.8M 2s -2024-04-29T04:26:46Z #15 1.475 7050K .......... .......... .......... .......... .......... 5% 129M 2s -2024-04-29T04:26:46Z #15 1.475 7100K .......... .......... .......... .......... .......... 5% 170M 2s -2024-04-29T04:26:46Z #15 1.475 7150K .......... .......... .......... .......... .......... 5% 169M 2s -2024-04-29T04:26:46Z #15 1.475 7200K .......... .......... .......... .......... .......... 5% 133M 2s -2024-04-29T04:26:46Z #15 1.475 7250K .......... .......... .......... .......... .......... 5% 141M 2s -2024-04-29T04:26:46Z #15 1.475 7300K .......... .......... .......... .......... .......... 5% 147M 2s -2024-04-29T04:26:46Z #15 1.475 7350K .......... .......... .......... .......... .......... 5% 157M 2s -2024-04-29T04:26:46Z #15 1.475 7400K .......... .......... .......... .......... .......... 5% 146M 2s -2024-04-29T04:26:46Z #15 1.475 7450K .......... .......... .......... .......... .......... 5% 126M 2s -2024-04-29T04:26:46Z #15 1.475 7500K .......... .......... .......... .......... .......... 5% 154M 2s -2024-04-29T04:26:46Z #15 1.475 7550K .......... .......... .......... .......... .......... 5% 23.5M 2s -2024-04-29T04:26:46Z #15 1.477 7600K .......... .......... .......... .......... .......... 5% 29.9M 2s -2024-04-29T04:26:46Z #15 1.479 7650K .......... .......... .......... .......... .......... 6% 46.6M 2s -2024-04-29T04:26:46Z #15 1.480 7700K .......... .......... .......... .......... .......... 6% 91.6M 2s -2024-04-29T04:26:46Z #15 1.480 7750K .......... .......... .......... .......... .......... 6% 18.1M 2s -2024-04-29T04:26:46Z #15 1.483 7800K .......... .......... .......... .......... .......... 6% 37.1M 2s -2024-04-29T04:26:46Z #15 1.485 7850K .......... .......... .......... .......... .......... 6% 37.0M 2s -2024-04-29T04:26:46Z #15 1.486 7900K .......... .......... .......... .......... .......... 6% 44.0M 2s -2024-04-29T04:26:46Z #15 1.487 7950K .......... .......... .......... .......... .......... 6% 116M 2s -2024-04-29T04:26:46Z #15 1.488 8000K .......... .......... .......... .......... .......... 6% 21.6M 2s -2024-04-29T04:26:46Z #15 1.490 8050K .......... .......... .......... .......... .......... 6% 64.3M 2s -2024-04-29T04:26:46Z #15 1.490 8100K .......... .......... .......... .......... .......... 6% 30.9M 2s -2024-04-29T04:26:46Z #15 1.492 8150K .......... .......... .......... .......... .......... 6% 40.8M 2s -2024-04-29T04:26:46Z #15 1.493 8200K .......... .......... .......... .......... .......... 6% 56.8M 2s -2024-04-29T04:26:46Z #15 1.494 8250K .......... .......... .......... .......... .......... 6% 30.6M 2s -2024-04-29T04:26:46Z #15 1.495 8300K .......... .......... .......... .......... .......... 6% 40.8M 2s -2024-04-29T04:26:46Z #15 1.497 8350K .......... .......... .......... .......... .......... 6% 41.6M 2s -2024-04-29T04:26:46Z #15 1.498 8400K .......... .......... .......... .......... .......... 6% 37.6M 2s -2024-04-29T04:26:46Z #15 1.499 8450K .......... .......... .......... .......... .......... 6% 61.7M 2s -2024-04-29T04:26:46Z #15 1.500 8500K .......... .......... .......... .......... .......... 6% 41.9M 2s -2024-04-29T04:26:46Z #15 1.501 8550K .......... .......... .......... .......... .......... 6% 59.0M 2s -2024-04-29T04:26:46Z #15 1.502 8600K .......... .......... .......... .......... .......... 6% 42.1M 2s -2024-04-29T04:26:46Z #15 1.503 8650K .......... .......... .......... .......... .......... 6% 46.2M 2s -2024-04-29T04:26:46Z #15 1.504 8700K .......... .......... .......... .......... .......... 6% 22.7M 2s -2024-04-29T04:26:46Z #15 1.506 8750K .......... .......... .......... .......... .......... 6% 41.1M 2s -2024-04-29T04:26:46Z #15 1.508 8800K .......... .......... .......... .......... .......... 6% 29.7M 2s -2024-04-29T04:26:46Z #15 1.509 8850K .......... .......... .......... .......... .......... 6% 22.2M 2s -2024-04-29T04:26:46Z #15 1.511 8900K .......... .......... .......... .......... .......... 7% 46.0M 2s -2024-04-29T04:26:46Z #15 1.512 8950K .......... .......... .......... .......... .......... 7% 38.2M 2s -2024-04-29T04:26:46Z #15 1.514 9000K .......... .......... .......... .......... .......... 7% 33.8M 2s -2024-04-29T04:26:46Z #15 1.515 9050K .......... .......... .......... .......... .......... 7% 50.2M 2s -2024-04-29T04:26:46Z #15 1.516 9100K .......... .......... .......... .......... .......... 7% 44.8M 2s -2024-04-29T04:26:46Z #15 1.517 9150K .......... .......... .......... .......... .......... 7% 27.2M 2s -2024-04-29T04:26:46Z #15 1.519 9200K .......... .......... .......... .......... .......... 7% 38.1M 2s -2024-04-29T04:26:46Z #15 1.520 9250K .......... .......... .......... .......... .......... 7% 41.0M 2s -2024-04-29T04:26:46Z #15 1.521 9300K .......... .......... .......... .......... .......... 7% 48.9M 2s -2024-04-29T04:26:46Z #15 1.523 9350K .......... .......... .......... .......... .......... 7% 39.8M 2s -2024-04-29T04:26:46Z #15 1.524 9400K .......... .......... .......... .......... .......... 7% 48.5M 2s -2024-04-29T04:26:46Z #15 1.525 9450K .......... .......... .......... .......... .......... 7% 19.7M 2s -2024-04-29T04:26:46Z #15 1.532 9500K .......... .......... .......... .......... .......... 7% 116M 2s -2024-04-29T04:26:46Z #15 1.532 9550K .......... .......... .......... .......... .......... 7% 119M 2s -2024-04-29T04:26:46Z #15 1.532 9600K .......... .......... .......... .......... .......... 7% 115M 2s -2024-04-29T04:26:46Z #15 1.532 9650K .......... .......... .......... .......... .......... 7% 109M 2s -2024-04-29T04:26:46Z #15 1.532 9700K .......... .......... .......... .......... .......... 7% 128M 2s -2024-04-29T04:26:46Z #15 1.532 9750K .......... .......... .......... .......... .......... 7% 108M 2s -2024-04-29T04:26:46Z #15 1.532 9800K .......... .......... .......... .......... .......... 7% 125M 2s -2024-04-29T04:26:46Z #15 1.532 9850K .......... .......... .......... .......... .......... 7% 128M 2s -2024-04-29T04:26:46Z #15 1.532 9900K .......... .......... .......... .......... .......... 7% 142M 2s -2024-04-29T04:26:46Z #15 1.532 9950K .......... .......... .......... .......... .......... 7% 110M 2s -2024-04-29T04:26:46Z #15 1.532 10000K .......... .......... .......... .......... .......... 7% 127M 2s -2024-04-29T04:26:46Z #15 1.532 10050K .......... .......... .......... .......... .......... 7% 121M 2s -2024-04-29T04:26:46Z #15 1.532 10100K .......... .......... .......... .......... .......... 7% 129M 2s -2024-04-29T04:26:46Z #15 1.532 10150K .......... .......... .......... .......... .......... 7% 64.3M 2s -2024-04-29T04:26:46Z #15 1.537 10200K .......... .......... .......... .......... .......... 8% 149M 2s -2024-04-29T04:26:46Z #15 1.537 10250K .......... .......... .......... .......... .......... 8% 180M 2s -2024-04-29T04:26:46Z #15 1.537 10300K .......... .......... .......... .......... .......... 8% 180M 2s -2024-04-29T04:26:46Z #15 1.537 10350K .......... .......... .......... .......... .......... 8% 139M 2s -2024-04-29T04:26:46Z #15 1.537 10400K .......... .......... .......... .......... .......... 8% 169M 2s -2024-04-29T04:26:46Z #15 1.537 10450K .......... .......... .......... .......... .......... 8% 169M 2s -2024-04-29T04:26:46Z #15 1.537 10500K .......... .......... .......... .......... .......... 8% 157M 2s -2024-04-29T04:26:46Z #15 1.537 10550K .......... .......... .......... .......... .......... 8% 179M 2s -2024-04-29T04:26:46Z #15 1.537 10600K .......... .......... .......... .......... .......... 8% 140M 2s -2024-04-29T04:26:46Z #15 1.537 10650K .......... .......... .......... .......... .......... 8% 174M 2s -2024-04-29T04:26:46Z #15 1.537 10700K .......... .......... .......... .......... .......... 8% 174M 2s -2024-04-29T04:26:46Z #15 1.537 10750K .......... .......... .......... .......... .......... 8% 116M 2s -2024-04-29T04:26:46Z #15 1.537 10800K .......... .......... .......... .......... .......... 8% 151M 2s -2024-04-29T04:26:46Z #15 1.537 10850K .......... .......... .......... .......... .......... 8% 70.3M 2s -2024-04-29T04:26:46Z #15 1.538 10900K .......... .......... .......... .......... .......... 8% 127M 2s -2024-04-29T04:26:46Z #15 1.538 10950K .......... .......... .......... .......... .......... 8% 102M 2s -2024-04-29T04:26:46Z #15 1.539 11000K .......... .......... .......... .......... .......... 8% 129M 2s -2024-04-29T04:26:46Z #15 1.539 11050K .......... .......... .......... .......... .......... 8% 145M 2s -2024-04-29T04:26:46Z #15 1.540 11100K .......... .......... .......... .......... .......... 8% 111M 2s -2024-04-29T04:26:46Z #15 1.540 11150K .......... .......... .......... .......... .......... 8% 115M 2s -2024-04-29T04:26:46Z #15 1.541 11200K .......... .......... .......... .......... .......... 8% 89.3M 2s -2024-04-29T04:26:46Z #15 1.541 11250K .......... .......... .......... .......... .......... 8% 113M 2s -2024-04-29T04:26:46Z #15 1.541 11300K .......... .......... .......... .......... .......... 8% 127M 2s -2024-04-29T04:26:46Z #15 1.542 11350K .......... .......... .......... .......... .......... 8% 108M 2s -2024-04-29T04:26:46Z #15 1.542 11400K .......... .......... .......... .......... .......... 8% 102M 2s -2024-04-29T04:26:46Z #15 1.543 11450K .......... .......... .......... .......... .......... 8% 126M 2s -2024-04-29T04:26:46Z #15 1.543 11500K .......... .......... .......... .......... .......... 9% 122M 2s -2024-04-29T04:26:46Z #15 1.543 11550K .......... .......... .......... .......... .......... 9% 113M 2s -2024-04-29T04:26:46Z #15 1.549 11600K .......... .......... .......... .......... .......... 9% 81.5M 2s -2024-04-29T04:26:46Z #15 1.549 11650K .......... .......... .......... .......... .......... 9% 121M 2s -2024-04-29T04:26:46Z #15 1.549 11700K .......... .......... .......... .......... .......... 9% 142M 2s -2024-04-29T04:26:46Z #15 1.549 11750K .......... .......... .......... .......... .......... 9% 154M 2s -2024-04-29T04:26:46Z #15 1.549 11800K .......... .......... .......... .......... .......... 9% 127M 2s -2024-04-29T04:26:46Z #15 1.549 11850K .......... .......... .......... .......... .......... 9% 158M 2s -2024-04-29T04:26:46Z #15 1.549 11900K .......... .......... .......... .......... .......... 9% 149M 2s -2024-04-29T04:26:46Z #15 1.549 11950K .......... .......... .......... .......... .......... 9% 142M 2s -2024-04-29T04:26:46Z #15 1.549 12000K .......... .......... .......... .......... .......... 9% 136M 2s -2024-04-29T04:26:46Z #15 1.549 12050K .......... .......... .......... .......... .......... 9% 152M 2s -2024-04-29T04:26:46Z #15 1.549 12100K .......... .......... .......... .......... .......... 9% 161M 2s -2024-04-29T04:26:46Z #15 1.549 12150K .......... .......... .......... .......... .......... 9% 125M 2s -2024-04-29T04:26:46Z #15 1.549 12200K .......... .......... .......... .......... .......... 9% 143M 2s -2024-04-29T04:26:46Z #15 1.549 12250K .......... .......... .......... .......... .......... 9% 70.1M 2s -2024-04-29T04:26:46Z #15 1.549 12300K .......... .......... .......... .......... .......... 9% 118M 2s -2024-04-29T04:26:46Z #15 1.550 12350K .......... .......... .......... .......... .......... 9% 101M 2s -2024-04-29T04:26:46Z #15 1.550 12400K .......... .......... .......... .......... .......... 9% 123M 2s -2024-04-29T04:26:46Z #15 1.551 12450K .......... .......... .......... .......... .......... 9% 135M 2s -2024-04-29T04:26:46Z #15 1.551 12500K .......... .......... .......... .......... .......... 9% 119M 2s -2024-04-29T04:26:46Z #15 1.551 12550K .......... .......... .......... .......... .......... 9% 89.7M 2s -2024-04-29T04:26:46Z #15 1.552 12600K .......... .......... .......... .......... .......... 9% 113M 2s -2024-04-29T04:26:46Z #15 1.553 12650K .......... .......... .......... .......... .......... 9% 115M 2s -2024-04-29T04:26:46Z #15 1.553 12700K .......... .......... .......... .......... .......... 9% 94.9M 2s -2024-04-29T04:26:46Z #15 1.553 12750K .......... .......... .......... .......... .......... 10% 125M 2s -2024-04-29T04:26:46Z #15 1.554 12800K .......... .......... .......... .......... .......... 10% 111M 2s -2024-04-29T04:26:46Z #15 1.554 12850K .......... .......... .......... .......... .......... 10% 117M 2s -2024-04-29T04:26:46Z #15 1.554 12900K .......... .......... .......... .......... .......... 10% 115M 2s -2024-04-29T04:26:46Z #15 1.555 12950K .......... .......... .......... .......... .......... 10% 105M 2s -2024-04-29T04:26:46Z #15 1.555 13000K .......... .......... .......... .......... .......... 10% 105M 2s -2024-04-29T04:26:46Z #15 1.556 13050K .......... .......... .......... .......... .......... 10% 120M 2s -2024-04-29T04:26:46Z #15 1.556 13100K .......... .......... .......... .......... .......... 10% 97.6M 2s -2024-04-29T04:26:46Z #15 1.557 13150K .......... .......... .......... .......... .......... 10% 88.6M 2s -2024-04-29T04:26:46Z #15 1.557 13200K .......... .......... .......... .......... .......... 10% 114M 2s -2024-04-29T04:26:46Z #15 1.564 13250K .......... .......... .......... .......... .......... 10% 91.8M 2s -2024-04-29T04:26:46Z #15 1.564 13300K .......... .......... .......... .......... .......... 10% 81.7M 2s -2024-04-29T04:26:46Z #15 1.564 13350K .......... .......... .......... .......... .......... 10% 89.0M 2s -2024-04-29T04:26:46Z #15 1.564 13400K .......... .......... .......... .......... .......... 10% 173M 2s -2024-04-29T04:26:46Z #15 1.564 13450K .......... .......... .......... .......... .......... 10% 133M 2s -2024-04-29T04:26:46Z #15 1.564 13500K .......... .......... .......... .......... .......... 10% 175M 2s -2024-04-29T04:26:46Z #15 1.564 13550K .......... .......... .......... .......... .......... 10% 168M 2s -2024-04-29T04:26:46Z #15 1.564 13600K .......... .......... .......... .......... .......... 10% 151M 2s -2024-04-29T04:26:46Z #15 1.564 13650K .......... .......... .......... .......... .......... 10% 150M 2s -2024-04-29T04:26:46Z #15 1.564 13700K .......... .......... .......... .......... .......... 10% 177M 2s -2024-04-29T04:26:46Z #15 1.564 13750K .......... .......... .......... .......... .......... 10% 178M 2s -2024-04-29T04:26:46Z #15 1.564 13800K .......... .......... .......... .......... .......... 10% 164M 2s -2024-04-29T04:26:46Z #15 1.564 13850K .......... .......... .......... .......... .......... 10% 143M 2s -2024-04-29T04:26:46Z #15 1.564 13900K .......... .......... .......... .......... .......... 10% 154M 2s -2024-04-29T04:26:46Z #15 1.564 13950K .......... .......... .......... .......... .......... 10% 187M 2s -2024-04-29T04:26:46Z #15 1.564 14000K .......... .......... .......... .......... .......... 10% 177M 2s -2024-04-29T04:26:46Z #15 1.564 14050K .......... .......... .......... .......... .......... 11% 162M 2s -2024-04-29T04:26:46Z #15 1.564 14100K .......... .......... .......... .......... .......... 11% 14.9M 2s -2024-04-29T04:26:46Z #15 1.567 14150K .......... .......... .......... .......... .......... 11% 33.9M 2s -2024-04-29T04:26:46Z #15 1.569 14200K .......... .......... .......... .......... .......... 11% 18.9M 2s -2024-04-29T04:26:46Z #15 1.571 14250K .......... .......... .......... .......... .......... 11% 167M 2s -2024-04-29T04:26:46Z #15 1.571 14300K .......... .......... .......... .......... .......... 11% 44.6M 2s -2024-04-29T04:26:46Z #15 1.572 14350K .......... .......... .......... .......... .......... 11% 50.4M 2s -2024-04-29T04:26:46Z #15 1.573 14400K .......... .......... .......... .......... .......... 11% 38.1M 2s -2024-04-29T04:26:46Z #15 1.575 14450K .......... .......... .......... .......... .......... 11% 61.5M 2s -2024-04-29T04:26:46Z #15 1.575 14500K .......... .......... .......... .......... .......... 11% 35.4M 2s -2024-04-29T04:26:46Z #15 1.577 14550K .......... .......... .......... .......... .......... 11% 29.2M 2s -2024-04-29T04:26:46Z #15 1.579 14600K .......... .......... .......... .......... .......... 11% 39.5M 2s -2024-04-29T04:26:46Z #15 1.580 14650K .......... .......... .......... .......... .......... 11% 145M 2s -2024-04-29T04:26:46Z #15 1.580 14700K .......... .......... .......... .......... .......... 11% 27.2M 2s -2024-04-29T04:26:46Z #15 1.582 14750K .......... .......... .......... .......... .......... 11% 36.5M 2s -2024-04-29T04:26:46Z #15 1.583 14800K .......... .......... .......... .......... .......... 11% 45.5M 2s -2024-04-29T04:26:46Z #15 1.584 14850K .......... .......... .......... .......... .......... 11% 47.6M 2s -2024-04-29T04:26:46Z #15 1.585 14900K .......... .......... .......... .......... .......... 11% 43.1M 2s -2024-04-29T04:26:46Z #15 1.586 14950K .......... .......... .......... .......... .......... 11% 43.2M 2s -2024-04-29T04:26:46Z #15 1.588 15000K .......... .......... .......... .......... .......... 11% 48.4M 2s -2024-04-29T04:26:46Z #15 1.588 15050K .......... .......... .......... .......... .......... 11% 47.2M 2s -2024-04-29T04:26:46Z #15 1.589 15100K .......... .......... .......... .......... .......... 11% 50.1M 2s -2024-04-29T04:26:46Z #15 1.590 15150K .......... .......... .......... .......... .......... 11% 40.2M 2s -2024-04-29T04:26:46Z #15 1.592 15200K .......... .......... .......... .......... .......... 11% 47.5M 2s -2024-04-29T04:26:46Z #15 1.593 15250K .......... .......... .......... .......... .......... 11% 49.3M 2s -2024-04-29T04:26:46Z #15 1.594 15300K .......... .......... .......... .......... .......... 12% 39.7M 2s -2024-04-29T04:26:46Z #15 1.595 15350K .......... .......... .......... .......... .......... 12% 35.8M 2s -2024-04-29T04:26:46Z #15 1.596 15400K .......... .......... .......... .......... .......... 12% 38.3M 2s -2024-04-29T04:26:46Z #15 1.598 15450K .......... .......... .......... .......... .......... 12% 32.3M 2s -2024-04-29T04:26:46Z #15 1.601 15500K .......... .......... .......... .......... .......... 12% 53.7M 2s -2024-04-29T04:26:46Z #15 1.601 15550K .......... .......... .......... .......... .......... 12% 43.0M 2s -2024-04-29T04:26:46Z #15 1.602 15600K .......... .......... .......... .......... .......... 12% 74.2M 2s -2024-04-29T04:26:46Z #15 1.602 15650K .......... .......... .......... .......... .......... 12% 117M 2s -2024-04-29T04:26:46Z #15 1.602 15700K .......... .......... .......... .......... .......... 12% 46.2M 2s -2024-04-29T04:26:46Z #15 1.604 15750K .......... .......... .......... .......... .......... 12% 28.6M 2s -2024-04-29T04:26:46Z #15 1.605 15800K .......... .......... .......... .......... .......... 12% 32.6M 2s -2024-04-29T04:26:46Z #15 1.607 15850K .......... .......... .......... .......... .......... 12% 41.1M 2s -2024-04-29T04:26:46Z #15 1.608 15900K .......... .......... .......... .......... .......... 12% 46.4M 2s -2024-04-29T04:26:46Z #15 1.609 15950K .......... .......... .......... .......... .......... 12% 76.8M 2s -2024-04-29T04:26:46Z #15 1.610 16000K .......... .......... .......... .......... .......... 12% 142M 2s -2024-04-29T04:26:46Z #15 1.610 16050K .......... .......... .......... .......... .......... 12% 39.5M 2s -2024-04-29T04:26:46Z #15 1.611 16100K .......... .......... .......... .......... .......... 12% 61.5M 2s -2024-04-29T04:26:46Z #15 1.612 16150K .......... .......... .......... .......... .......... 12% 44.0M 2s -2024-04-29T04:26:46Z #15 1.617 16200K .......... .......... .......... .......... .......... 12% 114M 2s -2024-04-29T04:26:46Z #15 1.617 16250K .......... .......... .......... .......... .......... 12% 145M 2s -2024-04-29T04:26:46Z #15 1.617 16300K .......... .......... .......... .......... .......... 12% 109M 2s -2024-04-29T04:26:46Z #15 1.617 16350K .......... .......... .......... .......... .......... 12% 125M 2s -2024-04-29T04:26:46Z #15 1.617 16400K .......... .......... .......... .......... .......... 12% 113M 2s -2024-04-29T04:26:46Z #15 1.617 16450K .......... .......... .......... .......... .......... 12% 122M 2s -2024-04-29T04:26:46Z #15 1.617 16500K .......... .......... .......... .......... .......... 12% 113M 2s -2024-04-29T04:26:46Z #15 1.617 16550K .......... .......... .......... .......... .......... 12% 121M 2s -2024-04-29T04:26:46Z #15 1.617 16600K .......... .......... .......... .......... .......... 13% 107M 2s -2024-04-29T04:26:46Z #15 1.617 16650K .......... .......... .......... .......... .......... 13% 68.3M 2s -2024-04-29T04:26:46Z #15 1.628 16700K .......... .......... .......... .......... .......... 13% 147M 2s -2024-04-29T04:26:46Z #15 1.628 16750K .......... .......... .......... .......... .......... 13% 141M 2s -2024-04-29T04:26:46Z #15 1.628 16800K .......... .......... .......... .......... .......... 13% 118M 2s -2024-04-29T04:26:46Z #15 1.628 16850K .......... .......... .......... .......... .......... 13% 111M 2s -2024-04-29T04:26:46Z #15 1.628 16900K .......... .......... .......... .......... .......... 13% 120M 2s -2024-04-29T04:26:46Z #15 1.628 16950K .......... .......... .......... .......... .......... 13% 112M 2s -2024-04-29T04:26:46Z #15 1.628 17000K .......... .......... .......... .......... .......... 13% 126M 2s -2024-04-29T04:26:46Z #15 1.628 17050K .......... .......... .......... .......... .......... 13% 121M 2s -2024-04-29T04:26:46Z #15 1.628 17100K .......... .......... .......... .......... .......... 13% 85.3M 2s -2024-04-29T04:26:46Z #15 1.628 17150K .......... .......... .......... .......... .......... 13% 130M 2s -2024-04-29T04:26:46Z #15 1.628 17200K .......... .......... .......... .......... .......... 13% 66.3M 2s -2024-04-29T04:26:46Z #15 1.628 17250K .......... .......... .......... .......... .......... 13% 95.4M 2s -2024-04-29T04:26:46Z #15 1.628 17300K .......... .......... .......... .......... .......... 13% 124M 2s -2024-04-29T04:26:46Z #15 1.628 17350K .......... .......... .......... .......... .......... 13% 86.0M 2s -2024-04-29T04:26:46Z #15 1.628 17400K .......... .......... .......... .......... .......... 13% 98.6M 2s -2024-04-29T04:26:46Z #15 1.628 17450K .......... .......... .......... .......... .......... 13% 92.4M 2s -2024-04-29T04:26:46Z #15 1.628 17500K .......... .......... .......... .......... .......... 13% 130M 2s -2024-04-29T04:26:46Z #15 1.628 17550K .......... .......... .......... .......... .......... 13% 75.1M 2s -2024-04-29T04:26:46Z #15 1.628 17600K .......... .......... .......... .......... .......... 13% 108M 2s -2024-04-29T04:26:46Z #15 1.628 17650K .......... .......... .......... .......... .......... 13% 108M 2s -2024-04-29T04:26:46Z #15 1.628 17700K .......... .......... .......... .......... .......... 13% 73.2M 2s -2024-04-29T04:26:46Z #15 1.628 17750K .......... .......... .......... .......... .......... 13% 114M 2s -2024-04-29T04:26:46Z #15 1.628 17800K .......... .......... .......... .......... .......... 13% 128M 2s -2024-04-29T04:26:46Z #15 1.628 17850K .......... .......... .......... .......... .......... 14% 31.5M 2s -2024-04-29T04:26:46Z #15 1.629 17900K .......... .......... .......... .......... .......... 14% 35.1M 2s -2024-04-29T04:26:46Z #15 1.632 17950K .......... .......... .......... .......... .......... 14% 122M 2s -2024-04-29T04:26:46Z #15 1.632 18000K .......... .......... .......... .......... .......... 14% 134M 2s -2024-04-29T04:26:46Z #15 1.632 18050K .......... .......... .......... .......... .......... 14% 84.5M 2s -2024-04-29T04:26:46Z #15 1.632 18100K .......... .......... .......... .......... .......... 14% 117M 2s -2024-04-29T04:26:46Z #15 1.633 18150K .......... .......... .......... .......... .......... 14% 6.05M 2s -2024-04-29T04:26:46Z #15 1.641 18200K .......... .......... .......... .......... .......... 14% 131M 2s -2024-04-29T04:26:46Z #15 1.641 18250K .......... .......... .......... .......... .......... 14% 109M 2s -2024-04-29T04:26:46Z #15 1.641 18300K .......... .......... .......... .......... .......... 14% 82.3M 2s -2024-04-29T04:26:46Z #15 1.642 18350K .......... .......... .......... .......... .......... 14% 91.1M 2s -2024-04-29T04:26:46Z #15 1.643 18400K .......... .......... .......... .......... .......... 14% 128M 2s -2024-04-29T04:26:46Z #15 1.643 18450K .......... .......... .......... .......... .......... 14% 105M 2s -2024-04-29T04:26:46Z #15 1.644 18500K .......... .......... .......... .......... .......... 14% 53.0M 2s -2024-04-29T04:26:46Z #15 1.644 18550K .......... .......... .......... .......... .......... 14% 117M 2s -2024-04-29T04:26:46Z #15 1.645 18600K .......... .......... .......... .......... .......... 14% 116M 2s -2024-04-29T04:26:46Z #15 1.645 18650K .......... .......... .......... .......... .......... 14% 74.8M 2s -2024-04-29T04:26:46Z #15 1.646 18700K .......... .......... .......... .......... .......... 14% 85.2M 2s -2024-04-29T04:26:46Z #15 1.647 18750K .......... .......... .......... .......... .......... 14% 106M 2s -2024-04-29T04:26:46Z #15 1.647 18800K .......... .......... .......... .......... .......... 14% 86.0M 2s -2024-04-29T04:26:46Z #15 1.648 18850K .......... .......... .......... .......... .......... 14% 120M 2s -2024-04-29T04:26:46Z #15 1.648 18900K .......... .......... .......... .......... .......... 14% 77.7M 2s -2024-04-29T04:26:46Z #15 1.657 18950K .......... .......... .......... .......... .......... 14% 5.70M 2s -2024-04-29T04:26:46Z #15 1.657 19000K .......... .......... .......... .......... .......... 14% 128M 2s -2024-04-29T04:26:46Z #15 1.658 19050K .......... .......... .......... .......... .......... 14% 99.1M 2s -2024-04-29T04:26:46Z #15 1.658 19100K .......... .......... .......... .......... .......... 14% 72.1M 2s -2024-04-29T04:26:46Z #15 1.659 19150K .......... .......... .......... .......... .......... 15% 112M 2s -2024-04-29T04:26:46Z #15 1.659 19200K .......... .......... .......... .......... .......... 15% 87.7M 2s -2024-04-29T04:26:46Z #15 1.660 19250K .......... .......... .......... .......... .......... 15% 89.0M 2s -2024-04-29T04:26:46Z #15 1.660 19300K .......... .......... .......... .......... .......... 15% 120M 2s -2024-04-29T04:26:46Z #15 1.661 19350K .......... .......... .......... .......... .......... 15% 91.8M 2s -2024-04-29T04:26:46Z #15 1.661 19400K .......... .......... .......... .......... .......... 15% 74.5M 2s -2024-04-29T04:26:46Z #15 1.662 19450K .......... .......... .......... .......... .......... 15% 121M 2s -2024-04-29T04:26:46Z #15 1.662 19500K .......... .......... .......... .......... .......... 15% 101M 2s -2024-04-29T04:26:46Z #15 1.663 19550K .......... .......... .......... .......... .......... 15% 68.7M 2s -2024-04-29T04:26:46Z #15 1.663 19600K .......... .......... .......... .......... .......... 15% 127M 2s -2024-04-29T04:26:46Z #15 1.664 19650K .......... .......... .......... .......... .......... 15% 124M 2s -2024-04-29T04:26:46Z #15 1.664 19700K .......... .......... .......... .......... .......... 15% 80.3M 2s -2024-04-29T04:26:46Z #15 1.665 19750K .......... .......... .......... .......... .......... 15% 81.1M 2s -2024-04-29T04:26:46Z #15 1.665 19800K .......... .......... .......... .......... .......... 15% 128M 2s -2024-04-29T04:26:46Z #15 1.666 19850K .......... .......... .......... .......... .......... 15% 72.7M 2s -2024-04-29T04:26:46Z #15 1.667 19900K .......... .......... .......... .......... .......... 15% 89.7M 2s -2024-04-29T04:26:46Z #15 1.667 19950K .......... .......... .......... .......... .......... 15% 99.3M 2s -2024-04-29T04:26:46Z #15 1.668 20000K .......... .......... .......... .......... .......... 15% 86.1M 2s -2024-04-29T04:26:46Z #15 1.668 20050K .......... .......... .......... .......... .......... 15% 117M 2s -2024-04-29T04:26:46Z #15 1.669 20100K .......... .......... .......... .......... .......... 15% 99.1M 2s -2024-04-29T04:26:46Z #15 1.669 20150K .......... .......... .......... .......... .......... 15% 90.9M 2s -2024-04-29T04:26:46Z #15 1.670 20200K .......... .......... .......... .......... .......... 15% 105M 2s -2024-04-29T04:26:46Z #15 1.670 20250K .......... .......... .......... .......... .......... 15% 84.6M 2s -2024-04-29T04:26:46Z #15 1.671 20300K .......... .......... .......... .......... .......... 15% 80.6M 2s -2024-04-29T04:26:46Z #15 1.671 20350K .......... .......... .......... .......... .......... 15% 113M 2s -2024-04-29T04:26:46Z #15 1.672 20400K .......... .......... .......... .......... .......... 16% 123M 2s -2024-04-29T04:26:46Z #15 1.672 20450K .......... .......... .......... .......... .......... 16% 169M 2s -2024-04-29T04:26:46Z #15 1.672 20500K .......... .......... .......... .......... .......... 16% 64.2M 2s -2024-04-29T04:26:46Z #15 1.677 20550K .......... .......... .......... .......... .......... 16% 113M 2s -2024-04-29T04:26:46Z #15 1.677 20600K .......... .......... .......... .......... .......... 16% 147M 2s -2024-04-29T04:26:46Z #15 1.677 20650K .......... .......... .......... .......... .......... 16% 179M 2s -2024-04-29T04:26:46Z #15 1.677 20700K .......... .......... .......... .......... .......... 16% 70.5M 2s -2024-04-29T04:26:46Z #15 1.677 20750K .......... .......... .......... .......... .......... 16% 137M 2s -2024-04-29T04:26:46Z #15 1.677 20800K .......... .......... .......... .......... .......... 16% 145M 2s -2024-04-29T04:26:46Z #15 1.677 20850K .......... .......... .......... .......... .......... 16% 98.2M 2s -2024-04-29T04:26:46Z #15 1.677 20900K .......... .......... .......... .......... .......... 16% 108M 2s -2024-04-29T04:26:46Z #15 1.677 20950K .......... .......... .......... .......... .......... 16% 103M 2s -2024-04-29T04:26:46Z #15 1.677 21000K .......... .......... .......... .......... .......... 16% 162M 2s -2024-04-29T04:26:46Z #15 1.677 21050K .......... .......... .......... .......... .......... 16% 86.5M 2s -2024-04-29T04:26:46Z #15 1.681 21100K .......... .......... .......... .......... .......... 16% 158M 2s -2024-04-29T04:26:46Z #15 1.681 21150K .......... .......... .......... .......... .......... 16% 114M 2s -2024-04-29T04:26:46Z #15 1.681 21200K .......... .......... .......... .......... .......... 16% 64.0M 2s -2024-04-29T04:26:46Z #15 1.681 21250K .......... .......... .......... .......... .......... 16% 171M 2s -2024-04-29T04:26:46Z #15 1.681 21300K .......... .......... .......... .......... .......... 16% 145M 2s -2024-04-29T04:26:46Z #15 1.681 21350K .......... .......... .......... .......... .......... 16% 178M 2s -2024-04-29T04:26:46Z #15 1.681 21400K .......... .......... .......... .......... .......... 16% 57.2M 2s -2024-04-29T04:26:46Z #15 1.681 21450K .......... .......... .......... .......... .......... 16% 129M 2s -2024-04-29T04:26:46Z #15 1.681 21500K .......... .......... .......... .......... .......... 16% 150M 2s -2024-04-29T04:26:46Z #15 1.682 21550K .......... .......... .......... .......... .......... 16% 147M 2s -2024-04-29T04:26:46Z #15 1.682 21600K .......... .......... .......... .......... .......... 16% 57.0M 2s -2024-04-29T04:26:46Z #15 1.683 21650K .......... .......... .......... .......... .......... 16% 131M 2s -2024-04-29T04:26:46Z #15 1.683 21700K .......... .......... .......... .......... .......... 17% 120M 2s -2024-04-29T04:26:46Z #15 1.684 21750K .......... .......... .......... .......... .......... 17% 138M 2s -2024-04-29T04:26:46Z #15 1.684 21800K .......... .......... .......... .......... .......... 17% 5.68M 2s -2024-04-29T04:26:46Z #15 1.693 21850K .......... .......... .......... .......... .......... 17% 116M 2s -2024-04-29T04:26:46Z #15 1.693 21900K .......... .......... .......... .......... .......... 17% 138M 2s -2024-04-29T04:26:46Z #15 1.693 21950K .......... .......... .......... .......... .......... 17% 160M 2s -2024-04-29T04:26:46Z #15 1.694 22000K .......... .......... .......... .......... .......... 17% 55.3M 2s -2024-04-29T04:26:46Z #15 1.695 22050K .......... .......... .......... .......... .......... 17% 167M 2s -2024-04-29T04:26:46Z #15 1.695 22100K .......... .......... .......... .......... .......... 17% 122M 2s -2024-04-29T04:26:46Z #15 1.696 22150K .......... .......... .......... .......... .......... 17% 156M 2s -2024-04-29T04:26:46Z #15 1.696 22200K .......... .......... .......... .......... .......... 17% 69.7M 2s -2024-04-29T04:26:46Z #15 1.696 22250K .......... .......... .......... .......... .......... 17% 116M 2s -2024-04-29T04:26:46Z #15 1.697 22300K .......... .......... .......... .......... .......... 17% 142M 2s -2024-04-29T04:26:46Z #15 1.698 22350K .......... .......... .......... .......... .......... 17% 82.2M 2s -2024-04-29T04:26:46Z #15 1.698 22400K .......... .......... .......... .......... .......... 17% 102M 2s -2024-04-29T04:26:46Z #15 1.699 22450K .......... .......... .......... .......... .......... 17% 109M 2s -2024-04-29T04:26:46Z #15 1.699 22500K .......... .......... .......... .......... .......... 17% 84.7M 2s -2024-04-29T04:26:46Z #15 1.699 22550K .......... .......... .......... .......... .......... 17% 77.6M 2s -2024-04-29T04:26:46Z #15 1.700 22600K .......... .......... .......... .......... .......... 17% 155M 2s -2024-04-29T04:26:46Z #15 1.701 22650K .......... .......... .......... .......... .......... 17% 123M 2s -2024-04-29T04:26:46Z #15 1.701 22700K .......... .......... .......... .......... .......... 17% 8.85M 2s -2024-04-29T04:26:46Z #15 1.706 22750K .......... .......... .......... .......... .......... 17% 122M 2s -2024-04-29T04:26:46Z #15 1.707 22800K .......... .......... .......... .......... .......... 17% 125M 2s -2024-04-29T04:26:46Z #15 1.707 22850K .......... .......... .......... .......... .......... 17% 94.7M 2s -2024-04-29T04:26:46Z #15 1.707 22900K .......... .......... .......... .......... .......... 17% 85.3M 2s -2024-04-29T04:26:46Z #15 1.708 22950K .......... .......... .......... .......... .......... 17% 128M 2s -2024-04-29T04:26:46Z #15 1.708 23000K .......... .......... .......... .......... .......... 18% 45.5M 2s -2024-04-29T04:26:46Z #15 1.710 23050K .......... .......... .......... .......... .......... 18% 149M 2s -2024-04-29T04:26:46Z #15 1.710 23100K .......... .......... .......... .......... .......... 18% 116M 2s -2024-04-29T04:26:46Z #15 1.710 23150K .......... .......... .......... .......... .......... 18% 131M 2s -2024-04-29T04:26:46Z #15 1.711 23200K .......... .......... .......... .......... .......... 18% 124M 2s -2024-04-29T04:26:46Z #15 1.711 23250K .......... .......... .......... .......... .......... 18% 63.7M 2s -2024-04-29T04:26:46Z #15 1.712 23300K .......... .......... .......... .......... .......... 18% 90.4M 2s -2024-04-29T04:26:46Z #15 1.712 23350K .......... .......... .......... .......... .......... 18% 156M 2s -2024-04-29T04:26:46Z #15 1.713 23400K .......... .......... .......... .......... .......... 18% 102M 2s -2024-04-29T04:26:46Z #15 1.714 23450K .......... .......... .......... .......... .......... 18% 76.6M 2s -2024-04-29T04:26:46Z #15 1.714 23500K .......... .......... .......... .......... .......... 18% 116M 2s -2024-04-29T04:26:46Z #15 1.714 23550K .......... .......... .......... .......... .......... 18% 120M 2s -2024-04-29T04:26:46Z #15 1.715 23600K .......... .......... .......... .......... .......... 18% 84.9M 2s -2024-04-29T04:26:46Z #15 1.715 23650K .......... .......... .......... .......... .......... 18% 88.3M 2s -2024-04-29T04:26:46Z #15 1.716 23700K .......... .......... .......... .......... .......... 18% 133M 2s -2024-04-29T04:26:46Z #15 1.716 23750K .......... .......... .......... .......... .......... 18% 82.3M 2s -2024-04-29T04:26:46Z #15 1.717 23800K .......... .......... .......... .......... .......... 18% 96.9M 2s -2024-04-29T04:26:46Z #15 1.717 23850K .......... .......... .......... .......... .......... 18% 132M 2s -2024-04-29T04:26:46Z #15 1.717 23900K .......... .......... .......... .......... .......... 18% 134M 2s -2024-04-29T04:26:46Z #15 1.718 23950K .......... .......... .......... .......... .......... 18% 75.4M 2s -2024-04-29T04:26:46Z #15 1.719 24000K .......... .......... .......... .......... .......... 18% 107M 2s -2024-04-29T04:26:46Z #15 1.719 24050K .......... .......... .......... .......... .......... 18% 118M 2s -2024-04-29T04:26:46Z #15 1.720 24100K .......... .......... .......... .......... .......... 18% 80.5M 2s -2024-04-29T04:26:46Z #15 1.720 24150K .......... .......... .......... .......... .......... 18% 147M 2s -2024-04-29T04:26:46Z #15 1.721 24200K .......... .......... .......... .......... .......... 18% 79.9M 2s -2024-04-29T04:26:46Z #15 1.721 24250K .......... .......... .......... .......... .......... 19% 134M 2s -2024-04-29T04:26:46Z #15 1.722 24300K .......... .......... .......... .......... .......... 19% 132M 2s -2024-04-29T04:26:46Z #15 1.722 24350K .......... .......... .......... .......... .......... 19% 80.1M 2s -2024-04-29T04:26:46Z #15 1.723 24400K .......... .......... .......... .......... .......... 19% 105M 2s -2024-04-29T04:26:46Z #15 1.723 24450K .......... .......... .......... .......... .......... 19% 116M 2s -2024-04-29T04:26:46Z #15 1.723 24500K .......... .......... .......... .......... .......... 19% 84.2M 2s -2024-04-29T04:26:46Z #15 1.724 24550K .......... .......... .......... .......... .......... 19% 95.8M 2s -2024-04-29T04:26:46Z #15 1.725 24600K .......... .......... .......... .......... .......... 19% 132M 2s -2024-04-29T04:26:46Z #15 1.725 24650K .......... .......... .......... .......... .......... 19% 99.1M 2s -2024-04-29T04:26:46Z #15 1.725 24700K .......... .......... .......... .......... .......... 19% 81.0M 2s -2024-04-29T04:26:46Z #15 1.726 24750K .......... .......... .......... .......... .......... 19% 154M 2s -2024-04-29T04:26:46Z #15 1.726 24800K .......... .......... .......... .......... .......... 19% 131M 2s -2024-04-29T04:26:46Z #15 1.727 24850K .......... .......... .......... .......... .......... 19% 58.3M 2s -2024-04-29T04:26:46Z #15 1.727 24900K .......... .......... .......... .......... .......... 19% 112M 2s -2024-04-29T04:26:46Z #15 1.728 24950K .......... .......... .......... .......... .......... 19% 112M 2s -2024-04-29T04:26:46Z #15 1.728 25000K .......... .......... .......... .......... .......... 19% 86.3M 1s -2024-04-29T04:26:46Z #15 1.729 25050K .......... .......... .......... .......... .......... 19% 84.3M 1s -2024-04-29T04:26:46Z #15 1.729 25100K .......... .......... .......... .......... .......... 19% 109M 1s -2024-04-29T04:26:46Z #15 1.730 25150K .......... .......... .......... .......... .......... 19% 81.7M 1s -2024-04-29T04:26:46Z #15 1.730 25200K .......... .......... .......... .......... .......... 19% 98.0M 1s -2024-04-29T04:26:46Z #15 1.731 25250K .......... .......... .......... .......... .......... 19% 119M 1s -2024-04-29T04:26:46Z #15 1.731 25300K .......... .......... .......... .......... .......... 19% 71.1M 1s -2024-04-29T04:26:46Z #15 1.732 25350K .......... .......... .......... .......... .......... 19% 100M 1s -2024-04-29T04:26:46Z #15 1.732 25400K .......... .......... .......... .......... .......... 19% 72.1M 1s -2024-04-29T04:26:46Z #15 1.734 25450K .......... .......... .......... .......... .......... 19% 12.8M 1s -2024-04-29T04:26:46Z #15 1.745 25500K .......... .......... .......... .......... .......... 19% 152M 1s -2024-04-29T04:26:46Z #15 1.745 25550K .......... .......... .......... .......... .......... 20% 154M 1s -2024-04-29T04:26:46Z #15 1.745 25600K .......... .......... .......... .......... .......... 20% 133M 1s -2024-04-29T04:26:46Z #15 1.745 25650K .......... .......... .......... .......... .......... 20% 143M 1s -2024-04-29T04:26:46Z #15 1.745 25700K .......... .......... .......... .......... .......... 20% 168M 1s -2024-04-29T04:26:46Z #15 1.745 25750K .......... .......... .......... .......... .......... 20% 117M 1s -2024-04-29T04:26:46Z #15 1.745 25800K .......... .......... .......... .......... .......... 20% 160M 1s -2024-04-29T04:26:46Z #15 1.745 25850K .......... .......... .......... .......... .......... 20% 152M 1s -2024-04-29T04:26:46Z #15 1.745 25900K .......... .......... .......... .......... .......... 20% 156M 1s -2024-04-29T04:26:46Z #15 1.745 25950K .......... .......... .......... .......... .......... 20% 155M 1s -2024-04-29T04:26:46Z #15 1.745 26000K .......... .......... .......... .......... .......... 20% 150M 1s -2024-04-29T04:26:46Z #15 1.745 26050K .......... .......... .......... .......... .......... 20% 120M 1s -2024-04-29T04:26:46Z #15 1.745 26100K .......... .......... .......... .......... .......... 20% 145M 1s -2024-04-29T04:26:46Z #15 1.745 26150K .......... .......... .......... .......... .......... 20% 147M 1s -2024-04-29T04:26:46Z #15 1.745 26200K .......... .......... .......... .......... .......... 20% 146M 1s -2024-04-29T04:26:46Z #15 1.745 26250K .......... .......... .......... .......... .......... 20% 130M 1s -2024-04-29T04:26:46Z #15 1.745 26300K .......... .......... .......... .......... .......... 20% 141M 1s -2024-04-29T04:26:46Z #15 1.745 26350K .......... .......... .......... .......... .......... 20% 167M 1s -2024-04-29T04:26:46Z #15 1.745 26400K .......... .......... .......... .......... .......... 20% 154M 1s -2024-04-29T04:26:46Z #15 1.745 26450K .......... .......... .......... .......... .......... 20% 124M 1s -2024-04-29T04:26:46Z #15 1.745 26500K .......... .......... .......... .......... .......... 20% 153M 1s -2024-04-29T04:26:46Z #15 1.745 26550K .......... .......... .......... .......... .......... 20% 165M 1s -2024-04-29T04:26:46Z #15 1.745 26600K .......... .......... .......... .......... .......... 20% 153M 1s -2024-04-29T04:26:46Z #15 1.745 26650K .......... .......... .......... .......... .......... 20% 15.1M 1s -2024-04-29T04:26:46Z #15 1.748 26700K .......... .......... .......... .......... .......... 20% 23.8M 1s -2024-04-29T04:26:46Z #15 1.750 26750K .......... .......... .......... .......... .......... 20% 16.9M 1s -2024-04-29T04:26:46Z #15 1.753 26800K .......... .......... .......... .......... .......... 21% 17.8M 1s -2024-04-29T04:26:46Z #15 1.756 26850K .......... .......... .......... .......... .......... 21% 20.7M 1s -2024-04-29T04:26:46Z #15 1.758 26900K .......... .......... .......... .......... .......... 21% 19.9M 1s -2024-04-29T04:26:46Z #15 1.760 26950K .......... .......... .......... .......... .......... 21% 19.8M 1s -2024-04-29T04:26:46Z #15 1.763 27000K .......... .......... .......... .......... .......... 21% 22.2M 1s -2024-04-29T04:26:46Z #15 1.765 27050K .......... .......... .......... .......... .......... 21% 23.7M 2s -2024-04-29T04:26:46Z #15 1.767 27100K .......... .......... .......... .......... .......... 21% 31.0M 2s -2024-04-29T04:26:46Z #15 1.773 27150K .......... .......... .......... .......... .......... 21% 44.6M 2s -2024-04-29T04:26:46Z #15 1.773 27200K .......... .......... .......... .......... .......... 21% 46.0M 2s -2024-04-29T04:26:46Z #15 1.773 27250K .......... .......... .......... .......... .......... 21% 166M 2s -2024-04-29T04:26:46Z #15 1.773 27300K .......... .......... .......... .......... .......... 21% 144M 1s -2024-04-29T04:26:46Z #15 1.773 27350K .......... .......... .......... .......... .......... 21% 169M 1s -2024-04-29T04:26:46Z #15 1.773 27400K .......... .......... .......... .......... .......... 21% 149M 1s -2024-04-29T04:26:46Z #15 1.773 27450K .......... .......... .......... .......... .......... 21% 119M 1s -2024-04-29T04:26:46Z #15 1.773 27500K .......... .......... .......... .......... .......... 21% 72.0M 1s -2024-04-29T04:26:46Z #15 1.773 27550K .......... .......... .......... .......... .......... 21% 20.3M 1s -2024-04-29T04:26:46Z #15 1.776 27600K .......... .......... .......... .......... .......... 21% 20.7M 2s -2024-04-29T04:26:46Z #15 1.778 27650K .......... .......... .......... .......... .......... 21% 36.0M 2s -2024-04-29T04:26:46Z #15 1.779 27700K .......... .......... .......... .......... .......... 21% 30.4M 2s -2024-04-29T04:26:46Z #15 1.781 27750K .......... .......... .......... .......... .......... 21% 41.5M 2s -2024-04-29T04:26:46Z #15 1.782 27800K .......... .......... .......... .......... .......... 21% 38.5M 2s -2024-04-29T04:26:46Z #15 1.783 27850K .......... .......... .......... .......... .......... 21% 57.9M 2s -2024-04-29T04:26:46Z #15 1.785 27900K .......... .......... .......... .......... .......... 21% 168M 2s -2024-04-29T04:26:46Z #15 1.785 27950K .......... .......... .......... .......... .......... 21% 138M 2s -2024-04-29T04:26:46Z #15 1.785 28000K .......... .......... .......... .......... .......... 21% 20.5M 2s -2024-04-29T04:26:46Z #15 1.787 28050K .......... .......... .......... .......... .......... 21% 20.3M 2s -2024-04-29T04:26:46Z #15 1.789 28100K .......... .......... .......... .......... .......... 22% 27.7M 2s -2024-04-29T04:26:46Z #15 1.793 28150K .......... .......... .......... .......... .......... 22% 154M 2s -2024-04-29T04:26:46Z #15 1.793 28200K .......... .......... .......... .......... .......... 22% 158M 2s -2024-04-29T04:26:46Z #15 1.793 28250K .......... .......... .......... .......... .......... 22% 163M 2s -2024-04-29T04:26:46Z #15 1.793 28300K .......... .......... .......... .......... .......... 22% 143M 2s -2024-04-29T04:26:46Z #15 1.793 28350K .......... .......... .......... .......... .......... 22% 29.0M 2s -2024-04-29T04:26:46Z #15 1.794 28400K .......... .......... .......... .......... .......... 22% 21.4M 2s -2024-04-29T04:26:46Z #15 1.797 28450K .......... .......... .......... .......... .......... 22% 23.8M 2s -2024-04-29T04:26:46Z #15 1.799 28500K .......... .......... .......... .......... .......... 22% 23.2M 2s -2024-04-29T04:26:46Z #15 1.801 28550K .......... .......... .......... .......... .......... 22% 36.5M 2s -2024-04-29T04:26:46Z #15 1.802 28600K .......... .......... .......... .......... .......... 22% 59.1M 2s -2024-04-29T04:26:46Z #15 1.803 28650K .......... .......... .......... .......... .......... 22% 47.5M 2s -2024-04-29T04:26:46Z #15 1.804 28700K .......... .......... .......... .......... .......... 22% 17.0M 2s -2024-04-29T04:26:46Z #15 1.807 28750K .......... .......... .......... .......... .......... 22% 38.0M 2s -2024-04-29T04:26:46Z #15 1.808 28800K .......... .......... .......... .......... .......... 22% 32.5M 2s -2024-04-29T04:26:46Z #15 1.810 28850K .......... .......... .......... .......... .......... 22% 31.3M 2s -2024-04-29T04:26:46Z #15 1.811 28900K .......... .......... .......... .......... .......... 22% 44.9M 2s -2024-04-29T04:26:46Z #15 1.812 28950K .......... .......... .......... .......... .......... 22% 58.0M 2s -2024-04-29T04:26:46Z #15 1.817 29000K .......... .......... .......... .......... .......... 22% 64.5M 2s -2024-04-29T04:26:46Z #15 1.817 29050K .......... .......... .......... .......... .......... 22% 89.5M 2s -2024-04-29T04:26:46Z #15 1.817 29100K .......... .......... .......... .......... .......... 22% 131M 2s -2024-04-29T04:26:46Z #15 1.817 29150K .......... .......... .......... .......... .......... 22% 64.8M 2s -2024-04-29T04:26:46Z #15 1.817 29200K .......... .......... .......... .......... .......... 22% 111M 2s -2024-04-29T04:26:46Z #15 1.817 29250K .......... .......... .......... .......... .......... 22% 115M 2s -2024-04-29T04:26:46Z #15 1.817 29300K .......... .......... .......... .......... .......... 22% 48.7M 2s -2024-04-29T04:26:46Z #15 1.821 29350K .......... .......... .......... .......... .......... 23% 99.6M 2s -2024-04-29T04:26:46Z #15 1.821 29400K .......... .......... .......... .......... .......... 23% 123M 2s -2024-04-29T04:26:46Z #15 1.821 29450K .......... .......... .......... .......... .......... 23% 69.7M 2s -2024-04-29T04:26:46Z #15 1.821 29500K .......... .......... .......... .......... .......... 23% 98.2M 2s -2024-04-29T04:26:46Z #15 1.821 29550K .......... .......... .......... .......... .......... 23% 85.8M 2s -2024-04-29T04:26:46Z #15 1.821 29600K .......... .......... .......... .......... .......... 23% 113M 2s -2024-04-29T04:26:46Z #15 1.821 29650K .......... .......... .......... .......... .......... 23% 15.5M 2s -2024-04-29T04:26:46Z #15 1.824 29700K .......... .......... .......... .......... .......... 23% 154M 2s -2024-04-29T04:26:46Z #15 1.824 29750K .......... .......... .......... .......... .......... 23% 137M 2s -2024-04-29T04:26:46Z #15 1.824 29800K .......... .......... .......... .......... .......... 23% 69.0M 2s -2024-04-29T04:26:46Z #15 1.825 29850K .......... .......... .......... .......... .......... 23% 99.1M 2s -2024-04-29T04:26:46Z #15 1.826 29900K .......... .......... .......... .......... .......... 23% 131M 2s -2024-04-29T04:26:46Z #15 1.826 29950K .......... .......... .......... .......... .......... 23% 77.5M 2s -2024-04-29T04:26:46Z #15 1.827 30000K .......... .......... .......... .......... .......... 23% 89.5M 2s -2024-04-29T04:26:46Z #15 1.827 30050K .......... .......... .......... .......... .......... 23% 122M 2s -2024-04-29T04:26:46Z #15 1.827 30100K .......... .......... .......... .......... .......... 23% 141M 2s -2024-04-29T04:26:46Z #15 1.828 30150K .......... .......... .......... .......... .......... 23% 88.6M 2s -2024-04-29T04:26:46Z #15 1.828 30200K .......... .......... .......... .......... .......... 23% 99.3M 2s -2024-04-29T04:26:46Z #15 1.829 30250K .......... .......... .......... .......... .......... 23% 118M 1s -2024-04-29T04:26:46Z #15 1.829 30300K .......... .......... .......... .......... .......... 23% 80.6M 1s -2024-04-29T04:26:46Z #15 1.830 30350K .......... .......... .......... .......... .......... 23% 89.4M 1s -2024-04-29T04:26:46Z #15 1.830 30400K .......... .......... .......... .......... .......... 23% 144M 1s -2024-04-29T04:26:46Z #15 1.831 30450K .......... .......... .......... .......... .......... 23% 134M 1s -2024-04-29T04:26:46Z #15 1.831 30500K .......... .......... .......... .......... .......... 23% 119M 1s -2024-04-29T04:26:46Z #15 1.832 30550K .......... .......... .......... .......... .......... 23% 72.3M 1s -2024-04-29T04:26:46Z #15 1.832 30600K .......... .......... .......... .......... .......... 23% 120M 1s -2024-04-29T04:26:46Z #15 1.832 30650K .......... .......... .......... .......... .......... 24% 109M 1s -2024-04-29T04:26:46Z #15 1.833 30700K .......... .......... .......... .......... .......... 24% 70.2M 1s -2024-04-29T04:26:46Z #15 1.834 30750K .......... .......... .......... .......... .......... 24% 6.60M 2s -2024-04-29T04:26:46Z #15 1.841 30800K .......... .......... .......... .......... .......... 24% 101M 2s -2024-04-29T04:26:46Z #15 1.842 30850K .......... .......... .......... .......... .......... 24% 135M 2s -2024-04-29T04:26:46Z #15 1.842 30900K .......... .......... .......... .......... .......... 24% 67.1M 2s -2024-04-29T04:26:46Z #15 1.843 30950K .......... .......... .......... .......... .......... 24% 94.0M 1s -2024-04-29T04:26:46Z #15 1.843 31000K .......... .......... .......... .......... .......... 24% 104M 1s -2024-04-29T04:26:46Z #15 1.844 31050K .......... .......... .......... .......... .......... 24% 132M 1s -2024-04-29T04:26:46Z #15 1.844 31100K .......... .......... .......... .......... .......... 24% 81.3M 1s -2024-04-29T04:26:46Z #15 1.845 31150K .......... .......... .......... .......... .......... 24% 108M 1s -2024-04-29T04:26:46Z #15 1.845 31200K .......... .......... .......... .......... .......... 24% 129M 1s -2024-04-29T04:26:46Z #15 1.846 31250K .......... .......... .......... .......... .......... 24% 77.2M 1s -2024-04-29T04:26:46Z #15 1.846 31300K .......... .......... .......... .......... .......... 24% 95.0M 1s -2024-04-29T04:26:46Z #15 1.847 31350K .......... .......... .......... .......... .......... 24% 91.5M 1s -2024-04-29T04:26:46Z #15 1.847 31400K .......... .......... .......... .......... .......... 24% 120M 1s -2024-04-29T04:26:46Z #15 1.847 31450K .......... .......... .......... .......... .......... 24% 132M 1s -2024-04-29T04:26:46Z #15 1.848 31500K .......... .......... .......... .......... .......... 24% 71.1M 1s -2024-04-29T04:26:46Z #15 1.848 31550K .......... .......... .......... .......... .......... 24% 110M 1s -2024-04-29T04:26:46Z #15 1.849 31600K .......... .......... .......... .......... .......... 24% 105M 1s -2024-04-29T04:26:46Z #15 1.850 31650K .......... .......... .......... .......... .......... 24% 89.4M 1s -2024-04-29T04:26:46Z #15 1.850 31700K .......... .......... .......... .......... .......... 24% 73.2M 1s -2024-04-29T04:26:46Z #15 1.851 31750K .......... .......... .......... .......... .......... 24% 138M 1s -2024-04-29T04:26:46Z #15 1.851 31800K .......... .......... .......... .......... .......... 24% 111M 1s -2024-04-29T04:26:46Z #15 1.851 31850K .......... .......... .......... .......... .......... 24% 134M 1s -2024-04-29T04:26:46Z #15 1.852 31900K .......... .......... .......... .......... .......... 25% 112M 1s -2024-04-29T04:26:46Z #15 1.852 31950K .......... .......... .......... .......... .......... 25% 5.65M 1s -2024-04-29T04:26:46Z #15 1.861 32000K .......... .......... .......... .......... .......... 25% 128M 1s -2024-04-29T04:26:46Z #15 1.861 32050K .......... .......... .......... .......... .......... 25% 75.3M 1s -2024-04-29T04:26:46Z #15 1.862 32100K .......... .......... .......... .......... .......... 25% 127M 1s -2024-04-29T04:26:46Z #15 1.862 32150K .......... .......... .......... .......... .......... 25% 115M 1s -2024-04-29T04:26:46Z #15 1.863 32200K .......... .......... .......... .......... .......... 25% 74.9M 1s -2024-04-29T04:26:46Z #15 1.864 32250K .......... .......... .......... .......... .......... 25% 85.9M 1s -2024-04-29T04:26:46Z #15 1.864 32300K .......... .......... .......... .......... .......... 25% 99.9M 1s -2024-04-29T04:26:46Z #15 1.865 32350K .......... .......... .......... .......... .......... 25% 128M 1s -2024-04-29T04:26:46Z #15 1.865 32400K .......... .......... .......... .......... .......... 25% 69.5M 1s -2024-04-29T04:26:46Z #15 1.866 32450K .......... .......... .......... .......... .......... 25% 102M 1s -2024-04-29T04:26:46Z #15 1.866 32500K .......... .......... .......... .......... .......... 25% 115M 1s -2024-04-29T04:26:46Z #15 1.867 32550K .......... .......... .......... .......... .......... 25% 91.3M 1s -2024-04-29T04:26:46Z #15 1.867 32600K .......... .......... .......... .......... .......... 25% 61.2M 1s -2024-04-29T04:26:46Z #15 1.868 32650K .......... .......... .......... .......... .......... 25% 145M 1s -2024-04-29T04:26:46Z #15 1.868 32700K .......... .......... .......... .......... .......... 25% 98.9M 1s -2024-04-29T04:26:46Z #15 1.869 32750K .......... .......... .......... .......... .......... 25% 73.4M 1s -2024-04-29T04:26:46Z #15 1.869 32800K .......... .......... .......... .......... .......... 25% 113M 1s -2024-04-29T04:26:46Z #15 1.870 32850K .......... .......... .......... .......... .......... 25% 112M 1s -2024-04-29T04:26:46Z #15 1.870 32900K .......... .......... .......... .......... .......... 25% 61.4M 1s -2024-04-29T04:26:46Z #15 1.871 32950K .......... .......... .......... .......... .......... 25% 118M 1s -2024-04-29T04:26:46Z #15 1.871 33000K .......... .......... .......... .......... .......... 25% 108M 1s -2024-04-29T04:26:46Z #15 1.872 33050K .......... .......... .......... .......... .......... 25% 65.6M 1s -2024-04-29T04:26:46Z #15 1.873 33100K .......... .......... .......... .......... .......... 25% 85.3M 1s -2024-04-29T04:26:46Z #15 1.873 33150K .......... .......... .......... .......... .......... 25% 134M 1s -2024-04-29T04:26:46Z #15 1.874 33200K .......... .......... .......... .......... .......... 26% 125M 1s -2024-04-29T04:26:46Z #15 1.874 33250K .......... .......... .......... .......... .......... 26% 72.1M 1s -2024-04-29T04:26:46Z #15 1.874 33300K .......... .......... .......... .......... .......... 26% 92.0M 1s -2024-04-29T04:26:46Z #15 1.875 33350K .......... .......... .......... .......... .......... 26% 123M 1s -2024-04-29T04:26:46Z #15 1.875 33400K .......... .......... .......... .......... .......... 26% 114M 1s -2024-04-29T04:26:46Z #15 1.876 33450K .......... .......... .......... .......... .......... 26% 70.4M 1s -2024-04-29T04:26:46Z #15 1.876 33500K .......... .......... .......... .......... .......... 26% 6.08M 1s -2024-04-29T04:26:46Z #15 1.885 33550K .......... .......... .......... .......... .......... 26% 124M 1s -2024-04-29T04:26:46Z #15 1.885 33600K .......... .......... .......... .......... .......... 26% 120M 1s -2024-04-29T04:26:46Z #15 1.886 33650K .......... .......... .......... .......... .......... 26% 61.3M 1s -2024-04-29T04:26:46Z #15 1.886 33700K .......... .......... .......... .......... .......... 26% 95.8M 1s -2024-04-29T04:26:46Z #15 1.887 33750K .......... .......... .......... .......... .......... 26% 138M 1s -2024-04-29T04:26:46Z #15 1.887 33800K .......... .......... .......... .......... .......... 26% 59.1M 1s -2024-04-29T04:26:46Z #15 1.888 33850K .......... .......... .......... .......... .......... 26% 129M 1s -2024-04-29T04:26:46Z #15 1.888 33900K .......... .......... .......... .......... .......... 26% 105M 1s -2024-04-29T04:26:46Z #15 1.889 33950K .......... .......... .......... .......... .......... 26% 74.4M 1s -2024-04-29T04:26:46Z #15 1.890 34000K .......... .......... .......... .......... .......... 26% 118M 1s -2024-04-29T04:26:46Z #15 1.890 34050K .......... .......... .......... .......... .......... 26% 104M 1s -2024-04-29T04:26:46Z #15 1.891 34100K .......... .......... .......... .......... .......... 26% 98.2M 1s -2024-04-29T04:26:46Z #15 1.891 34150K .......... .......... .......... .......... .......... 26% 140M 1s -2024-04-29T04:26:46Z #15 1.891 34200K .......... .......... .......... .......... .......... 26% 66.6M 1s -2024-04-29T04:26:46Z #15 1.892 34250K .......... .......... .......... .......... .......... 26% 136M 1s -2024-04-29T04:26:46Z #15 1.893 34300K .......... .......... .......... .......... .......... 26% 136M 1s -2024-04-29T04:26:46Z #15 1.893 34350K .......... .......... .......... .......... .......... 26% 62.6M 1s -2024-04-29T04:26:46Z #15 1.893 34400K .......... .......... .......... .......... .......... 26% 131M 1s -2024-04-29T04:26:46Z #15 1.894 34450K .......... .......... .......... .......... .......... 26% 124M 1s -2024-04-29T04:26:46Z #15 1.894 34500K .......... .......... .......... .......... .......... 27% 69.7M 1s -2024-04-29T04:26:46Z #15 1.895 34550K .......... .......... .......... .......... .......... 27% 105M 1s -2024-04-29T04:26:46Z #15 1.896 34600K .......... .......... .......... .......... .......... 27% 131M 1s -2024-04-29T04:26:46Z #15 1.896 34650K .......... .......... .......... .......... .......... 27% 129M 1s -2024-04-29T04:26:46Z #15 1.896 34700K .......... .......... .......... .......... .......... 27% 64.4M 1s -2024-04-29T04:26:46Z #15 1.897 34750K .......... .......... .......... .......... .......... 27% 115M 1s -2024-04-29T04:26:46Z #15 1.897 34800K .......... .......... .......... .......... .......... 27% 118M 1s -2024-04-29T04:26:46Z #15 1.898 34850K .......... .......... .......... .......... .......... 27% 128M 1s -2024-04-29T04:26:46Z #15 1.898 34900K .......... .......... .......... .......... .......... 27% 72.6M 1s -2024-04-29T04:26:46Z #15 1.899 34950K .......... .......... .......... .......... .......... 27% 91.1M 1s -2024-04-29T04:26:46Z #15 1.900 35000K .......... .......... .......... .......... .......... 27% 146M 1s -2024-04-29T04:26:46Z #15 1.900 35050K .......... .......... .......... .......... .......... 27% 60.0M 1s -2024-04-29T04:26:46Z #15 1.901 35100K .......... .......... .......... .......... .......... 27% 113M 1s -2024-04-29T04:26:46Z #15 1.901 35150K .......... .......... .......... .......... .......... 27% 115M 1s -2024-04-29T04:26:46Z #15 1.901 35200K .......... .......... .......... .......... .......... 27% 80.1M 1s -2024-04-29T04:26:46Z #15 1.902 35250K .......... .......... .......... .......... .......... 27% 111M 1s -2024-04-29T04:26:46Z #15 1.903 35300K .......... .......... .......... .......... .......... 27% 128M 1s -2024-04-29T04:26:46Z #15 1.903 35350K .......... .......... .......... .......... .......... 27% 78.2M 1s -2024-04-29T04:26:46Z #15 1.904 35400K .......... .......... .......... .......... .......... 27% 84.4M 1s -2024-04-29T04:26:46Z #15 1.904 35450K .......... .......... .......... .......... .......... 27% 128M 1s -2024-04-29T04:26:46Z #15 1.905 35500K .......... .......... .......... .......... .......... 27% 82.0M 1s -2024-04-29T04:26:46Z #15 1.905 35550K .......... .......... .......... .......... .......... 27% 102M 1s -2024-04-29T04:26:46Z #15 1.906 35600K .......... .......... .......... .......... .......... 27% 115M 1s -2024-04-29T04:26:46Z #15 1.906 35650K .......... .......... .......... .......... .......... 27% 121M 1s -2024-04-29T04:26:46Z #15 1.906 35700K .......... .......... .......... .......... .......... 27% 73.1M 1s -2024-04-29T04:26:46Z #15 1.907 35750K .......... .......... .......... .......... .......... 28% 133M 1s -2024-04-29T04:26:46Z #15 1.907 35800K .......... .......... .......... .......... .......... 28% 75.5M 1s -2024-04-29T04:26:46Z #15 1.908 35850K .......... .......... .......... .......... .......... 28% 120M 1s -2024-04-29T04:26:46Z #15 1.908 35900K .......... .......... .......... .......... .......... 28% 142M 1s -2024-04-29T04:26:46Z #15 1.909 35950K .......... .......... .......... .......... .......... 28% 89.0M 1s -2024-04-29T04:26:46Z #15 1.909 36000K .......... .......... .......... .......... .......... 28% 72.4M 1s -2024-04-29T04:26:46Z #15 1.910 36050K .......... .......... .......... .......... .......... 28% 137M 1s -2024-04-29T04:26:46Z #15 1.910 36100K .......... .......... .......... .......... .......... 28% 129M 1s -2024-04-29T04:26:46Z #15 1.910 36150K .......... .......... .......... .......... .......... 28% 78.1M 1s -2024-04-29T04:26:46Z #15 1.912 36200K .......... .......... .......... .......... .......... 28% 98.5M 1s -2024-04-29T04:26:46Z #15 1.912 36250K .......... .......... .......... .......... .......... 28% 89.8M 1s -2024-04-29T04:26:46Z #15 1.913 36300K .......... .......... .......... .......... .......... 28% 95.5M 1s -2024-04-29T04:26:46Z #15 1.913 36350K .......... .......... .......... .......... .......... 28% 125M 1s -2024-04-29T04:26:46Z #15 1.913 36400K .......... .......... .......... .......... .......... 28% 111M 1s -2024-04-29T04:26:46Z #15 1.914 36450K .......... .......... .......... .......... .......... 28% 68.3M 1s -2024-04-29T04:26:46Z #15 1.914 36500K .......... .......... .......... .......... .......... 28% 126M 1s -2024-04-29T04:26:46Z #15 1.915 36550K .......... .......... .......... .......... .......... 28% 127M 1s -2024-04-29T04:26:46Z #15 1.915 36600K .......... .......... .......... .......... .......... 28% 134M 1s -2024-04-29T04:26:46Z #15 1.916 36650K .......... .......... .......... .......... .......... 28% 132M 1s -2024-04-29T04:26:46Z #15 1.916 36700K .......... .......... .......... .......... .......... 28% 39.7M 1s -2024-04-29T04:26:46Z #15 1.917 36750K .......... .......... .......... .......... .......... 28% 148M 1s -2024-04-29T04:26:46Z #15 1.917 36800K .......... .......... .......... .......... .......... 28% 132M 1s -2024-04-29T04:26:46Z #15 1.918 36850K .......... .......... .......... .......... .......... 28% 92.8M 1s -2024-04-29T04:26:46Z #15 1.918 36900K .......... .......... .......... .......... .......... 28% 98.3M 1s -2024-04-29T04:26:46Z #15 1.919 36950K .......... .......... .......... .......... .......... 28% 67.7M 1s -2024-04-29T04:26:46Z #15 1.920 37000K .......... .......... .......... .......... .......... 28% 106M 1s -2024-04-29T04:26:46Z #15 1.920 37050K .......... .......... .......... .......... .......... 29% 112M 1s -2024-04-29T04:26:46Z #15 1.921 37100K .......... .......... .......... .......... .......... 29% 94.8M 1s -2024-04-29T04:26:46Z #15 1.921 37150K .......... .......... .......... .......... .......... 29% 126M 1s -2024-04-29T04:26:46Z #15 1.921 37200K .......... .......... .......... .......... .......... 29% 74.1M 1s -2024-04-29T04:26:46Z #15 1.922 37250K .......... .......... .......... .......... .......... 29% 105M 1s -2024-04-29T04:26:46Z #15 1.923 37300K .......... .......... .......... .......... .......... 29% 123M 1s -2024-04-29T04:26:46Z #15 1.923 37350K .......... .......... .......... .......... .......... 29% 112M 1s -2024-04-29T04:26:46Z #15 1.924 37400K .......... .......... .......... .......... .......... 29% 51.1M 1s -2024-04-29T04:26:46Z #15 1.924 37450K .......... .......... .......... .......... .......... 29% 108M 1s -2024-04-29T04:26:46Z #15 1.925 37500K .......... .......... .......... .......... .......... 29% 68.6M 1s -2024-04-29T04:26:46Z #15 1.925 37550K .......... .......... .......... .......... .......... 29% 90.6M 1s -2024-04-29T04:26:46Z #15 1.926 37600K .......... .......... .......... .......... .......... 29% 120M 1s -2024-04-29T04:26:46Z #15 1.926 37650K .......... .......... .......... .......... .......... 29% 74.5M 1s -2024-04-29T04:26:46Z #15 1.927 37700K .......... .......... .......... .......... .......... 29% 52.8M 1s -2024-04-29T04:26:46Z #15 1.928 37750K .......... .......... .......... .......... .......... 29% 140M 1s -2024-04-29T04:26:46Z #15 1.928 37800K .......... .......... .......... .......... .......... 29% 141M 1s -2024-04-29T04:26:46Z #15 1.929 37850K .......... .......... .......... .......... .......... 29% 73.9M 1s -2024-04-29T04:26:46Z #15 1.930 37900K .......... .......... .......... .......... .......... 29% 81.3M 1s -2024-04-29T04:26:46Z #15 1.930 37950K .......... .......... .......... .......... .......... 29% 131M 1s -2024-04-29T04:26:46Z #15 1.930 38000K .......... .......... .......... .......... .......... 29% 78.4M 1s -2024-04-29T04:26:46Z #15 1.931 38050K .......... .......... .......... .......... .......... 29% 136M 1s -2024-04-29T04:26:46Z #15 1.931 38100K .......... .......... .......... .......... .......... 29% 131M 1s -2024-04-29T04:26:46Z #15 1.931 38150K .......... .......... .......... .......... .......... 29% 63.8M 1s -2024-04-29T04:26:46Z #15 1.932 38200K .......... .......... .......... .......... .......... 29% 106M 1s -2024-04-29T04:26:46Z #15 1.933 38250K .......... .......... .......... .......... .......... 29% 145M 1s -2024-04-29T04:26:46Z #15 1.934 38300K .......... .......... .......... .......... .......... 30% 63.6M 1s -2024-04-29T04:26:46Z #15 1.935 38350K .......... .......... .......... .......... .......... 30% 6.74M 1s -2024-04-29T04:26:46Z #15 1.941 38400K .......... .......... .......... .......... .......... 30% 90.1M 1s -2024-04-29T04:26:46Z #15 1.942 38450K .......... .......... .......... .......... .......... 30% 67.3M 1s -2024-04-29T04:26:46Z #15 1.943 38500K .......... .......... .......... .......... .......... 30% 103M 1s -2024-04-29T04:26:46Z #15 1.943 38550K .......... .......... .......... .......... .......... 30% 132M 1s -2024-04-29T04:26:46Z #15 1.943 38600K .......... .......... .......... .......... .......... 30% 65.5M 1s -2024-04-29T04:26:46Z #15 1.944 38650K .......... .......... .......... .......... .......... 30% 134M 1s -2024-04-29T04:26:46Z #15 1.944 38700K .......... .......... .......... .......... .......... 30% 105M 1s -2024-04-29T04:26:46Z #15 1.945 38750K .......... .......... .......... .......... .......... 30% 104M 1s -2024-04-29T04:26:46Z #15 1.946 38800K .......... .......... .......... .......... .......... 30% 110M 1s -2024-04-29T04:26:46Z #15 1.946 38850K .......... .......... .......... .......... .......... 30% 84.4M 1s -2024-04-29T04:26:46Z #15 1.947 38900K .......... .......... .......... .......... .......... 30% 97.9M 1s -2024-04-29T04:26:46Z #15 1.947 38950K .......... .......... .......... .......... .......... 30% 90.7M 1s -2024-04-29T04:26:46Z #15 1.947 39000K .......... .......... .......... .......... .......... 30% 81.2M 1s -2024-04-29T04:26:46Z #15 1.948 39050K .......... .......... .......... .......... .......... 30% 127M 1s -2024-04-29T04:26:46Z #15 1.948 39100K .......... .......... .......... .......... .......... 30% 95.1M 1s -2024-04-29T04:26:46Z #15 1.949 39150K .......... .......... .......... .......... .......... 30% 83.5M 1s -2024-04-29T04:26:46Z #15 1.949 39200K .......... .......... .......... .......... .......... 30% 121M 1s -2024-04-29T04:26:46Z #15 1.950 39250K .......... .......... .......... .......... .......... 30% 154M 1s -2024-04-29T04:26:46Z #15 1.950 39300K .......... .......... .......... .......... .......... 30% 60.5M 1s -2024-04-29T04:26:46Z #15 1.951 39350K .......... .......... .......... .......... .......... 30% 125M 1s -2024-04-29T04:26:46Z #15 1.951 39400K .......... .......... .......... .......... .......... 30% 8.73M 1s -2024-04-29T04:26:46Z #15 1.957 39450K .......... .......... .......... .......... .......... 30% 82.5M 1s -2024-04-29T04:26:46Z #15 1.958 39500K .......... .......... .......... .......... .......... 30% 134M 1s -2024-04-29T04:26:46Z #15 1.958 39550K .......... .......... .......... .......... .......... 30% 129M 1s -2024-04-29T04:26:46Z #15 1.959 39600K .......... .......... .......... .......... .......... 31% 53.9M 1s -2024-04-29T04:26:46Z #15 1.959 39650K .......... .......... .......... .......... .......... 31% 128M 1s -2024-04-29T04:26:46Z #15 1.960 39700K .......... .......... .......... .......... .......... 31% 131M 1s -2024-04-29T04:26:46Z #15 1.960 39750K .......... .......... .......... .......... .......... 31% 114M 1s -2024-04-29T04:26:46Z #15 1.960 39800K .......... .......... .......... .......... .......... 31% 76.3M 1s -2024-04-29T04:26:46Z #15 1.961 39850K .......... .......... .......... .......... .......... 31% 126M 1s -2024-04-29T04:26:46Z #15 1.961 39900K .......... .......... .......... .......... .......... 31% 92.9M 1s -2024-04-29T04:26:46Z #15 1.962 39950K .......... .......... .......... .......... .......... 31% 114M 1s -2024-04-29T04:26:46Z #15 1.962 40000K .......... .......... .......... .......... .......... 31% 78.8M 1s -2024-04-29T04:26:46Z #15 1.963 40050K .......... .......... .......... .......... .......... 31% 89.0M 1s -2024-04-29T04:26:46Z #15 1.964 40100K .......... .......... .......... .......... .......... 31% 104M 1s -2024-04-29T04:26:46Z #15 1.964 40150K .......... .......... .......... .......... .......... 31% 108M 1s -2024-04-29T04:26:46Z #15 1.965 40200K .......... .......... .......... .......... .......... 31% 5.79M 1s -2024-04-29T04:26:46Z #15 1.973 40250K .......... .......... .......... .......... .......... 31% 133M 1s -2024-04-29T04:26:46Z #15 1.973 40300K .......... .......... .......... .......... .......... 31% 119M 1s -2024-04-29T04:26:46Z #15 1.974 40350K .......... .......... .......... .......... .......... 31% 67.3M 1s -2024-04-29T04:26:46Z #15 1.974 40400K .......... .......... .......... .......... .......... 31% 112M 1s -2024-04-29T04:26:46Z #15 1.975 40450K .......... .......... .......... .......... .......... 31% 82.0M 1s -2024-04-29T04:26:46Z #15 1.975 40500K .......... .......... .......... .......... .......... 31% 83.7M 1s -2024-04-29T04:26:47Z #15 1.976 40550K .......... .......... .......... .......... .......... 31% 114M 1s -2024-04-29T04:26:47Z #15 1.976 40600K .......... .......... .......... .......... .......... 31% 115M 1s -2024-04-29T04:26:47Z #15 1.977 40650K .......... .......... .......... .......... .......... 31% 60.0M 1s -2024-04-29T04:26:47Z #15 1.978 40700K .......... .......... .......... .......... .......... 31% 137M 1s -2024-04-29T04:26:47Z #15 1.978 40750K .......... .......... .......... .......... .......... 31% 135M 1s -2024-04-29T04:26:47Z #15 1.978 40800K .......... .......... .......... .......... .......... 31% 107M 1s -2024-04-29T04:26:47Z #15 1.979 40850K .......... .......... .......... .......... .......... 32% 74.5M 1s -2024-04-29T04:26:47Z #15 1.980 40900K .......... .......... .......... .......... .......... 32% 88.0M 1s -2024-04-29T04:26:47Z #15 1.980 40950K .......... .......... .......... .......... .......... 32% 96.1M 1s -2024-04-29T04:26:47Z #15 1.981 41000K .......... .......... .......... .......... .......... 32% 99.2M 1s -2024-04-29T04:26:47Z #15 1.981 41050K .......... .......... .......... .......... .......... 32% 119M 1s -2024-04-29T04:26:47Z #15 1.981 41100K .......... .......... .......... .......... .......... 32% 67.3M 1s -2024-04-29T04:26:47Z #15 1.982 41150K .......... .......... .......... .......... .......... 32% 107M 1s -2024-04-29T04:26:47Z #15 1.983 41200K .......... .......... .......... .......... .......... 32% 119M 1s -2024-04-29T04:26:47Z #15 1.983 41250K .......... .......... .......... .......... .......... 32% 75.1M 1s -2024-04-29T04:26:47Z #15 1.983 41300K .......... .......... .......... .......... .......... 32% 107M 1s -2024-04-29T04:26:47Z #15 1.984 41350K .......... .......... .......... .......... .......... 32% 97.4M 1s -2024-04-29T04:26:47Z #15 1.985 41400K .......... .......... .......... .......... .......... 32% 64.2M 1s -2024-04-29T04:26:47Z #15 1.985 41450K .......... .......... .......... .......... .......... 32% 93.2M 1s -2024-04-29T04:26:47Z #15 1.986 41500K .......... .......... .......... .......... .......... 32% 126M 1s -2024-04-29T04:26:47Z #15 1.986 41550K .......... .......... .......... .......... .......... 32% 112M 1s -2024-04-29T04:26:47Z #15 1.987 41600K .......... .......... .......... .......... .......... 32% 56.2M 1s -2024-04-29T04:26:47Z #15 1.988 41650K .......... .......... .......... .......... .......... 32% 103M 1s -2024-04-29T04:26:47Z #15 1.988 41700K .......... .......... .......... .......... .......... 32% 111M 1s -2024-04-29T04:26:47Z #15 1.989 41750K .......... .......... .......... .......... .......... 32% 5.76M 1s -2024-04-29T04:26:47Z #15 1.997 41800K .......... .......... .......... .......... .......... 32% 156M 1s -2024-04-29T04:26:47Z #15 1.998 41850K .......... .......... .......... .......... .......... 32% 117M 1s -2024-04-29T04:26:47Z #15 1.998 41900K .......... .......... .......... .......... .......... 32% 92.0M 1s -2024-04-29T04:26:47Z #15 1.998 41950K .......... .......... .......... .......... .......... 32% 84.0M 1s -2024-04-29T04:26:47Z #15 1.999 42000K .......... .......... .......... .......... .......... 32% 129M 1s -2024-04-29T04:26:47Z #15 1.999 42050K .......... .......... .......... .......... .......... 32% 112M 1s -2024-04-29T04:26:47Z #15 2.000 42100K .......... .......... .......... .......... .......... 32% 80.3M 1s -2024-04-29T04:26:47Z #15 2.001 42150K .......... .......... .......... .......... .......... 33% 78.6M 1s -2024-04-29T04:26:47Z #15 2.001 42200K .......... .......... .......... .......... .......... 33% 169M 1s -2024-04-29T04:26:47Z #15 2.002 42250K .......... .......... .......... .......... .......... 33% 118M 1s -2024-04-29T04:26:47Z #15 2.002 42300K .......... .......... .......... .......... .......... 33% 101M 1s -2024-04-29T04:26:47Z #15 2.002 42350K .......... .......... .......... .......... .......... 33% 80.2M 1s -2024-04-29T04:26:47Z #15 2.003 42400K .......... .......... .......... .......... .......... 33% 140M 1s -2024-04-29T04:26:47Z #15 2.003 42450K .......... .......... .......... .......... .......... 33% 113M 1s -2024-04-29T04:26:47Z #15 2.004 42500K .......... .......... .......... .......... .......... 33% 66.7M 1s -2024-04-29T04:26:47Z #15 2.004 42550K .......... .......... .......... .......... .......... 33% 134M 1s -2024-04-29T04:26:47Z #15 2.005 42600K .......... .......... .......... .......... .......... 33% 11.0M 1s -2024-04-29T04:26:47Z #15 2.021 42650K .......... .......... .......... .......... .......... 33% 141M 1s -2024-04-29T04:26:47Z #15 2.021 42700K .......... .......... .......... .......... .......... 33% 153M 1s -2024-04-29T04:26:47Z #15 2.021 42750K .......... .......... .......... .......... .......... 33% 160M 1s -2024-04-29T04:26:47Z #15 2.021 42800K .......... .......... .......... .......... .......... 33% 130M 1s -2024-04-29T04:26:47Z #15 2.021 42850K .......... .......... .......... .......... .......... 33% 130M 1s -2024-04-29T04:26:47Z #15 2.021 42900K .......... .......... .......... .......... .......... 33% 152M 1s -2024-04-29T04:26:47Z #15 2.021 42950K .......... .......... .......... .......... .......... 33% 157M 1s -2024-04-29T04:26:47Z #15 2.021 43000K .......... .......... .......... .......... .......... 33% 231M 1s -2024-04-29T04:26:47Z #15 2.021 43050K .......... .......... .......... .......... .......... 33% 143M 1s -2024-04-29T04:26:47Z #15 2.021 43100K .......... .......... .......... .......... .......... 33% 165M 1s -2024-04-29T04:26:47Z #15 2.021 43150K .......... .......... .......... .......... .......... 33% 183M 1s -2024-04-29T04:26:47Z #15 2.021 43200K .......... .......... .......... .......... .......... 33% 131M 1s -2024-04-29T04:26:47Z #15 2.021 43250K .......... .......... .......... .......... .......... 33% 96.3M 1s -2024-04-29T04:26:47Z #15 2.021 43300K .......... .......... .......... .......... .......... 33% 119M 1s -2024-04-29T04:26:47Z #15 2.021 43350K .......... .......... .......... .......... .......... 33% 126M 1s -2024-04-29T04:26:47Z #15 2.021 43400K .......... .......... .......... .......... .......... 34% 114M 1s -2024-04-29T04:26:47Z #15 2.021 43450K .......... .......... .......... .......... .......... 34% 106M 1s -2024-04-29T04:26:47Z #15 2.021 43500K .......... .......... .......... .......... .......... 34% 114M 1s -2024-04-29T04:26:47Z #15 2.021 43550K .......... .......... .......... .......... .......... 34% 110M 1s -2024-04-29T04:26:47Z #15 2.021 43600K .......... .......... .......... .......... .......... 34% 123M 1s -2024-04-29T04:26:47Z #15 2.021 43650K .......... .......... .......... .......... .......... 34% 101M 1s -2024-04-29T04:26:47Z #15 2.021 43700K .......... .......... .......... .......... .......... 34% 128M 1s -2024-04-29T04:26:47Z #15 2.021 43750K .......... .......... .......... .......... .......... 34% 119M 1s -2024-04-29T04:26:47Z #15 2.021 43800K .......... .......... .......... .......... .......... 34% 118M 1s -2024-04-29T04:26:47Z #15 2.021 43850K .......... .......... .......... .......... .......... 34% 107M 1s -2024-04-29T04:26:47Z #15 2.021 43900K .......... .......... .......... .......... .......... 34% 102M 1s -2024-04-29T04:26:47Z #15 2.021 43950K .......... .......... .......... .......... .......... 34% 120M 1s -2024-04-29T04:26:47Z #15 2.021 44000K .......... .......... .......... .......... .......... 34% 112M 1s -2024-04-29T04:26:47Z #15 2.021 44050K .......... .......... .......... .......... .......... 34% 95.8M 1s -2024-04-29T04:26:47Z #15 2.021 44100K .......... .......... .......... .......... .......... 34% 46.9M 1s -2024-04-29T04:26:47Z #15 2.021 44150K .......... .......... .......... .......... .......... 34% 59.3M 1s -2024-04-29T04:26:47Z #15 2.024 44200K .......... .......... .......... .......... .......... 34% 116M 1s -2024-04-29T04:26:47Z #15 2.024 44250K .......... .......... .......... .......... .......... 34% 120M 1s -2024-04-29T04:26:47Z #15 2.024 44300K .......... .......... .......... .......... .......... 34% 129M 1s -2024-04-29T04:26:47Z #15 2.024 44350K .......... .......... .......... .......... .......... 34% 111M 1s -2024-04-29T04:26:47Z #15 2.024 44400K .......... .......... .......... .......... .......... 34% 107M 1s -2024-04-29T04:26:47Z #15 2.024 44450K .......... .......... .......... .......... .......... 34% 127M 1s -2024-04-29T04:26:47Z #15 2.027 44500K .......... .......... .......... .......... .......... 34% 67.7M 1s -2024-04-29T04:26:47Z #15 2.027 44550K .......... .......... .......... .......... .......... 34% 124M 1s -2024-04-29T04:26:47Z #15 2.027 44600K .......... .......... .......... .......... .......... 34% 122M 1s -2024-04-29T04:26:47Z #15 2.027 44650K .......... .......... .......... .......... .......... 34% 95.3M 1s -2024-04-29T04:26:47Z #15 2.027 44700K .......... .......... .......... .......... .......... 35% 104M 1s -2024-04-29T04:26:47Z #15 2.028 44750K .......... .......... .......... .......... .......... 35% 126M 1s -2024-04-29T04:26:47Z #15 2.028 44800K .......... .......... .......... .......... .......... 35% 104M 1s -2024-04-29T04:26:47Z #15 2.028 44850K .......... .......... .......... .......... .......... 35% 147M 1s -2024-04-29T04:26:47Z #15 2.028 44900K .......... .......... .......... .......... .......... 35% 97.0M 1s -2024-04-29T04:26:47Z #15 2.032 44950K .......... .......... .......... .......... .......... 35% 135M 1s -2024-04-29T04:26:47Z #15 2.032 45000K .......... .......... .......... .......... .......... 35% 111M 1s -2024-04-29T04:26:47Z #15 2.032 45050K .......... .......... .......... .......... .......... 35% 126M 1s -2024-04-29T04:26:47Z #15 2.032 45100K .......... .......... .......... .......... .......... 35% 126M 1s -2024-04-29T04:26:47Z #15 2.032 45150K .......... .......... .......... .......... .......... 35% 119M 1s -2024-04-29T04:26:47Z #15 2.032 45200K .......... .......... .......... .......... .......... 35% 126M 1s -2024-04-29T04:26:47Z #15 2.032 45250K .......... .......... .......... .......... .......... 35% 118M 1s -2024-04-29T04:26:47Z #15 2.032 45300K .......... .......... .......... .......... .......... 35% 119M 1s -2024-04-29T04:26:47Z #15 2.032 45350K .......... .......... .......... .......... .......... 35% 127M 1s -2024-04-29T04:26:47Z #15 2.033 45400K .......... .......... .......... .......... .......... 35% 86.2M 1s -2024-04-29T04:26:47Z #15 2.034 45450K .......... .......... .......... .......... .......... 35% 122M 1s -2024-04-29T04:26:47Z #15 2.034 45500K .......... .......... .......... .......... .......... 35% 121M 1s -2024-04-29T04:26:47Z #15 2.034 45550K .......... .......... .......... .......... .......... 35% 132M 1s -2024-04-29T04:26:47Z #15 2.034 45600K .......... .......... .......... .......... .......... 35% 112M 1s -2024-04-29T04:26:47Z #15 2.041 45650K .......... .......... .......... .......... .......... 35% 135M 1s -2024-04-29T04:26:47Z #15 2.041 45700K .......... .......... .......... .......... .......... 35% 159M 1s -2024-04-29T04:26:47Z #15 2.041 45750K .......... .......... .......... .......... .......... 35% 156M 1s -2024-04-29T04:26:47Z #15 2.041 45800K .......... .......... .......... .......... .......... 35% 158M 1s -2024-04-29T04:26:47Z #15 2.041 45850K .......... .......... .......... .......... .......... 35% 137M 1s -2024-04-29T04:26:47Z #15 2.041 45900K .......... .......... .......... .......... .......... 35% 172M 1s -2024-04-29T04:26:47Z #15 2.041 45950K .......... .......... .......... .......... .......... 35% 114M 1s -2024-04-29T04:26:47Z #15 2.041 46000K .......... .......... .......... .......... .......... 36% 139M 1s -2024-04-29T04:26:47Z #15 2.041 46050K .......... .......... .......... .......... .......... 36% 147M 1s -2024-04-29T04:26:47Z #15 2.041 46100K .......... .......... .......... .......... .......... 36% 158M 1s -2024-04-29T04:26:47Z #15 2.041 46150K .......... .......... .......... .......... .......... 36% 144M 1s -2024-04-29T04:26:47Z #15 2.041 46200K .......... .......... .......... .......... .......... 36% 143M 1s -2024-04-29T04:26:47Z #15 2.041 46250K .......... .......... .......... .......... .......... 36% 155M 1s -2024-04-29T04:26:47Z #15 2.041 46300K .......... .......... .......... .......... .......... 36% 132M 1s -2024-04-29T04:26:47Z #15 2.041 46350K .......... .......... .......... .......... .......... 36% 152M 1s -2024-04-29T04:26:47Z #15 2.041 46400K .......... .......... .......... .......... .......... 36% 163M 1s -2024-04-29T04:26:47Z #15 2.041 46450K .......... .......... .......... .......... .......... 36% 153M 1s -2024-04-29T04:26:47Z #15 2.041 46500K .......... .......... .......... .......... .......... 36% 152M 1s -2024-04-29T04:26:47Z #15 2.041 46550K .......... .......... .......... .......... .......... 36% 68.2M 1s -2024-04-29T04:26:47Z #15 2.041 46600K .......... .......... .......... .......... .......... 36% 99.7M 1s -2024-04-29T04:26:47Z #15 2.042 46650K .......... .......... .......... .......... .......... 36% 129M 1s -2024-04-29T04:26:47Z #15 2.042 46700K .......... .......... .......... .......... .......... 36% 127M 1s -2024-04-29T04:26:47Z #15 2.043 46750K .......... .......... .......... .......... .......... 36% 102M 1s -2024-04-29T04:26:47Z #15 2.043 46800K .......... .......... .......... .......... .......... 36% 108M 1s -2024-04-29T04:26:47Z #15 2.043 46850K .......... .......... .......... .......... .......... 36% 125M 1s -2024-04-29T04:26:47Z #15 2.044 46900K .......... .......... .......... .......... .......... 36% 133M 1s -2024-04-29T04:26:47Z #15 2.044 46950K .......... .......... .......... .......... .......... 36% 143M 1s -2024-04-29T04:26:47Z #15 2.045 47000K .......... .......... .......... .......... .......... 36% 82.3M 1s -2024-04-29T04:26:47Z #15 2.045 47050K .......... .......... .......... .......... .......... 36% 121M 1s -2024-04-29T04:26:47Z #15 2.046 47100K .......... .......... .......... .......... .......... 36% 114M 1s -2024-04-29T04:26:47Z #15 2.046 47150K .......... .......... .......... .......... .......... 36% 118M 1s -2024-04-29T04:26:47Z #15 2.047 47200K .......... .......... .......... .......... .......... 36% 110M 1s -2024-04-29T04:26:47Z #15 2.047 47250K .......... .......... .......... .......... .......... 37% 123M 1s -2024-04-29T04:26:47Z #15 2.047 47300K .......... .......... .......... .......... .......... 37% 118M 1s -2024-04-29T04:26:47Z #15 2.048 47350K .......... .......... .......... .......... .......... 37% 135M 1s -2024-04-29T04:26:47Z #15 2.048 47400K .......... .......... .......... .......... .......... 37% 92.2M 1s -2024-04-29T04:26:47Z #15 2.049 47450K .......... .......... .......... .......... .......... 37% 107M 1s -2024-04-29T04:26:47Z #15 2.049 47500K .......... .......... .......... .......... .......... 37% 116M 1s -2024-04-29T04:26:47Z #15 2.050 47550K .......... .......... .......... .......... .......... 37% 142M 1s -2024-04-29T04:26:47Z #15 2.050 47600K .......... .......... .......... .......... .......... 37% 106M 1s -2024-04-29T04:26:47Z #15 2.050 47650K .......... .......... .......... .......... .......... 37% 107M 1s -2024-04-29T04:26:47Z #15 2.057 47700K .......... .......... .......... .......... .......... 37% 131M 1s -2024-04-29T04:26:47Z #15 2.057 47750K .......... .......... .......... .......... .......... 37% 138M 1s -2024-04-29T04:26:47Z #15 2.057 47800K .......... .......... .......... .......... .......... 37% 154M 1s -2024-04-29T04:26:47Z #15 2.057 47850K .......... .......... .......... .......... .......... 37% 160M 1s -2024-04-29T04:26:47Z #15 2.057 47900K .......... .......... .......... .......... .......... 37% 140M 1s -2024-04-29T04:26:47Z #15 2.057 47950K .......... .......... .......... .......... .......... 37% 116M 1s -2024-04-29T04:26:47Z #15 2.057 48000K .......... .......... .......... .......... .......... 37% 150M 1s -2024-04-29T04:26:47Z #15 2.057 48050K .......... .......... .......... .......... .......... 37% 138M 1s -2024-04-29T04:26:47Z #15 2.057 48100K .......... .......... .......... .......... .......... 37% 142M 1s -2024-04-29T04:26:47Z #15 2.057 48150K .......... .......... .......... .......... .......... 37% 153M 1s -2024-04-29T04:26:47Z #15 2.057 48200K .......... .......... .......... .......... .......... 37% 155M 1s -2024-04-29T04:26:47Z #15 2.057 48250K .......... .......... .......... .......... .......... 37% 136M 1s -2024-04-29T04:26:47Z #15 2.057 48300K .......... .......... .......... .......... .......... 37% 132M 1s -2024-04-29T04:26:47Z #15 2.057 48350K .......... .......... .......... .......... .......... 37% 142M 1s -2024-04-29T04:26:47Z #15 2.057 48400K .......... .......... .......... .......... .......... 37% 150M 1s -2024-04-29T04:26:47Z #15 2.057 48450K .......... .......... .......... .......... .......... 37% 148M 1s -2024-04-29T04:26:47Z #15 2.057 48500K .......... .......... .......... .......... .......... 37% 151M 1s -2024-04-29T04:26:47Z #15 2.057 48550K .......... .......... .......... .......... .......... 38% 65.2M 1s -2024-04-29T04:26:47Z #15 2.057 48600K .......... .......... .......... .......... .......... 38% 135M 1s -2024-04-29T04:26:47Z #15 2.058 48650K .......... .......... .......... .......... .......... 38% 131M 1s -2024-04-29T04:26:47Z #15 2.058 48700K .......... .......... .......... .......... .......... 38% 142M 1s -2024-04-29T04:26:47Z #15 2.058 48750K .......... .......... .......... .......... .......... 38% 110M 1s -2024-04-29T04:26:47Z #15 2.059 48800K .......... .......... .......... .......... .......... 38% 122M 1s -2024-04-29T04:26:47Z #15 2.059 48850K .......... .......... .......... .......... .......... 38% 102M 1s -2024-04-29T04:26:47Z #15 2.060 48900K .......... .......... .......... .......... .......... 38% 115M 1s -2024-04-29T04:26:47Z #15 2.060 48950K .......... .......... .......... .......... .......... 38% 114M 1s -2024-04-29T04:26:47Z #15 2.060 49000K .......... .......... .......... .......... .......... 38% 95.7M 1s -2024-04-29T04:26:47Z #15 2.064 49050K .......... .......... .......... .......... .......... 38% 135M 1s -2024-04-29T04:26:47Z #15 2.064 49100K .......... .......... .......... .......... .......... 38% 134M 1s -2024-04-29T04:26:47Z #15 2.064 49150K .......... .......... .......... .......... .......... 38% 103M 1s -2024-04-29T04:26:47Z #15 2.064 49200K .......... .......... .......... .......... .......... 38% 113M 1s -2024-04-29T04:26:47Z #15 2.064 49250K .......... .......... .......... .......... .......... 38% 115M 1s -2024-04-29T04:26:47Z #15 2.064 49300K .......... .......... .......... .......... .......... 38% 105M 1s -2024-04-29T04:26:47Z #15 2.064 49350K .......... .......... .......... .......... .......... 38% 108M 1s -2024-04-29T04:26:47Z #15 2.064 49400K .......... .......... .......... .......... .......... 38% 128M 1s -2024-04-29T04:26:47Z #15 2.064 49450K .......... .......... .......... .......... .......... 38% 66.4M 1s -2024-04-29T04:26:47Z #15 2.066 49500K .......... .......... .......... .......... .......... 38% 108M 1s -2024-04-29T04:26:47Z #15 2.066 49550K .......... .......... .......... .......... .......... 38% 76.1M 1s -2024-04-29T04:26:47Z #15 2.067 49600K .......... .......... .......... .......... .......... 38% 139M 1s -2024-04-29T04:26:47Z #15 2.067 49650K .......... .......... .......... .......... .......... 38% 86.2M 1s -2024-04-29T04:26:47Z #15 2.068 49700K .......... .......... .......... .......... .......... 38% 99.9M 1s -2024-04-29T04:26:47Z #15 2.068 49750K .......... .......... .......... .......... .......... 38% 122M 1s -2024-04-29T04:26:47Z #15 2.068 49800K .......... .......... .......... .......... .......... 39% 61.3M 1s -2024-04-29T04:26:47Z #15 2.070 49850K .......... .......... .......... .......... .......... 39% 115M 1s -2024-04-29T04:26:47Z #15 2.070 49900K .......... .......... .......... .......... .......... 39% 96.4M 1s -2024-04-29T04:26:47Z #15 2.070 49950K .......... .......... .......... .......... .......... 39% 138M 1s -2024-04-29T04:26:47Z #15 2.070 50000K .......... .......... .......... .......... .......... 39% 135M 1s -2024-04-29T04:26:47Z #15 2.070 50050K .......... .......... .......... .......... .......... 39% 69.4M 1s -2024-04-29T04:26:47Z #15 2.071 50100K .......... .......... .......... .......... .......... 39% 108M 1s -2024-04-29T04:26:47Z #15 2.072 50150K .......... .......... .......... .......... .......... 39% 133M 1s -2024-04-29T04:26:47Z #15 2.072 50200K .......... .......... .......... .......... .......... 39% 133M 1s -2024-04-29T04:26:47Z #15 2.072 50250K .......... .......... .......... .......... .......... 39% 11.1M 1s -2024-04-29T04:26:47Z #15 2.077 50300K .......... .......... .......... .......... .......... 39% 96.3M 1s -2024-04-29T04:26:47Z #15 2.077 50350K .......... .......... .......... .......... .......... 39% 127M 1s -2024-04-29T04:26:47Z #15 2.078 50400K .......... .......... .......... .......... .......... 39% 147M 1s -2024-04-29T04:26:47Z #15 2.079 50450K .......... .......... .......... .......... .......... 39% 97.0M 1s -2024-04-29T04:26:47Z #15 2.079 50500K .......... .......... .......... .......... .......... 39% 118M 1s -2024-04-29T04:26:47Z #15 2.079 50550K .......... .......... .......... .......... .......... 39% 122M 1s -2024-04-29T04:26:47Z #15 2.080 50600K .......... .......... .......... .......... .......... 39% 137M 1s -2024-04-29T04:26:47Z #15 2.080 50650K .......... .......... .......... .......... .......... 39% 122M 1s -2024-04-29T04:26:47Z #15 2.080 50700K .......... .......... .......... .......... .......... 39% 140M 1s -2024-04-29T04:26:47Z #15 2.081 50750K .......... .......... .......... .......... .......... 39% 113M 1s -2024-04-29T04:26:47Z #15 2.081 50800K .......... .......... .......... .......... .......... 39% 115M 1s -2024-04-29T04:26:47Z #15 2.081 50850K .......... .......... .......... .......... .......... 39% 117M 1s -2024-04-29T04:26:47Z #15 2.082 50900K .......... .......... .......... .......... .......... 39% 117M 1s -2024-04-29T04:26:47Z #15 2.082 50950K .......... .......... .......... .......... .......... 39% 123M 1s -2024-04-29T04:26:47Z #15 2.083 51000K .......... .......... .......... .......... .......... 39% 122M 1s -2024-04-29T04:26:47Z #15 2.083 51050K .......... .......... .......... .......... .......... 39% 107M 1s -2024-04-29T04:26:47Z #15 2.084 51100K .......... .......... .......... .......... .......... 40% 117M 1s -2024-04-29T04:26:47Z #15 2.084 51150K .......... .......... .......... .......... .......... 40% 145M 1s -2024-04-29T04:26:47Z #15 2.084 51200K .......... .......... .......... .......... .......... 40% 124M 1s -2024-04-29T04:26:47Z #15 2.084 51250K .......... .......... .......... .......... .......... 40% 11.0M 1s -2024-04-29T04:26:47Z #15 2.098 51300K .......... .......... .......... .......... .......... 40% 99.4M 1s -2024-04-29T04:26:47Z #15 2.098 51350K .......... .......... .......... .......... .......... 40% 92.0M 1s -2024-04-29T04:26:47Z #15 2.098 51400K .......... .......... .......... .......... .......... 40% 115M 1s -2024-04-29T04:26:47Z #15 2.098 51450K .......... .......... .......... .......... .......... 40% 147M 1s -2024-04-29T04:26:47Z #15 2.098 51500K .......... .......... .......... .......... .......... 40% 87.1M 1s -2024-04-29T04:26:47Z #15 2.098 51550K .......... .......... .......... .......... .......... 40% 114M 1s -2024-04-29T04:26:47Z #15 2.098 51600K .......... .......... .......... .......... .......... 40% 132M 1s -2024-04-29T04:26:47Z #15 2.098 51650K .......... .......... .......... .......... .......... 40% 181M 1s -2024-04-29T04:26:47Z #15 2.098 51700K .......... .......... .......... .......... .......... 40% 94.0M 1s -2024-04-29T04:26:47Z #15 2.098 51750K .......... .......... .......... .......... .......... 40% 97.8M 1s -2024-04-29T04:26:47Z #15 2.098 51800K .......... .......... .......... .......... .......... 40% 156M 1s -2024-04-29T04:26:47Z #15 2.098 51850K .......... .......... .......... .......... .......... 40% 182M 1s -2024-04-29T04:26:47Z #15 2.098 51900K .......... .......... .......... .......... .......... 40% 68.8M 1s -2024-04-29T04:26:47Z #15 2.098 51950K .......... .......... .......... .......... .......... 40% 131M 1s -2024-04-29T04:26:47Z #15 2.098 52000K .......... .......... .......... .......... .......... 40% 104M 1s -2024-04-29T04:26:47Z #15 2.098 52050K .......... .......... .......... .......... .......... 40% 87.3M 1s -2024-04-29T04:26:47Z #15 2.098 52100K .......... .......... .......... .......... .......... 40% 133M 1s -2024-04-29T04:26:47Z #15 2.098 52150K .......... .......... .......... .......... .......... 40% 10.8M 1s -2024-04-29T04:26:47Z #15 2.105 52200K .......... .......... .......... .......... .......... 40% 170M 1s -2024-04-29T04:26:47Z #15 2.105 52250K .......... .......... .......... .......... .......... 40% 157M 1s -2024-04-29T04:26:47Z #15 2.105 52300K .......... .......... .......... .......... .......... 40% 90.7M 1s -2024-04-29T04:26:47Z #15 2.105 52350K .......... .......... .......... .......... .......... 41% 126M 1s -2024-04-29T04:26:47Z #15 2.105 52400K .......... .......... .......... .......... .......... 41% 202M 1s -2024-04-29T04:26:47Z #15 2.105 52450K .......... .......... .......... .......... .......... 41% 253M 1s -2024-04-29T04:26:47Z #15 2.105 52500K .......... .......... .......... .......... .......... 41% 186M 1s -2024-04-29T04:26:47Z #15 2.105 52550K .......... .......... .......... .......... .......... 41% 253M 1s -2024-04-29T04:26:47Z #15 2.105 52600K .......... .......... .......... .......... .......... 41% 99.4M 1s -2024-04-29T04:26:47Z #15 2.105 52650K .......... .......... .......... .......... .......... 41% 105M 1s -2024-04-29T04:26:47Z #15 2.105 52700K .......... .......... .......... .......... .......... 41% 222M 1s -2024-04-29T04:26:47Z #15 2.105 52750K .......... .......... .......... .......... .......... 41% 121M 1s -2024-04-29T04:26:47Z #15 2.105 52800K .......... .......... .......... .......... .......... 41% 30.7M 1s -2024-04-29T04:26:47Z #15 2.107 52850K .......... .......... .......... .......... .......... 41% 70.9M 1s -2024-04-29T04:26:47Z #15 2.107 52900K .......... .......... .......... .......... .......... 41% 54.6M 1s -2024-04-29T04:26:47Z #15 2.108 52950K .......... .......... .......... .......... .......... 41% 37.4M 1s -2024-04-29T04:26:47Z #15 2.110 53000K .......... .......... .......... .......... .......... 41% 64.5M 1s -2024-04-29T04:26:47Z #15 2.110 53050K .......... .......... .......... .......... .......... 41% 82.6M 1s -2024-04-29T04:26:47Z #15 2.111 53100K .......... .......... .......... .......... .......... 41% 77.2M 1s -2024-04-29T04:26:47Z #15 2.111 53150K .......... .......... .......... .......... .......... 41% 104M 1s -2024-04-29T04:26:47Z #15 2.112 53200K .......... .......... .......... .......... .......... 41% 102M 1s -2024-04-29T04:26:47Z #15 2.112 53250K .......... .......... .......... .......... .......... 41% 46.4M 1s -2024-04-29T04:26:47Z #15 2.113 53300K .......... .......... .......... .......... .......... 41% 51.8M 1s -2024-04-29T04:26:47Z #15 2.116 53350K .......... .......... .......... .......... .......... 41% 121M 1s -2024-04-29T04:26:47Z #15 2.116 53400K .......... .......... .......... .......... .......... 41% 123M 1s -2024-04-29T04:26:47Z #15 2.116 53450K .......... .......... .......... .......... .......... 41% 77.8M 1s -2024-04-29T04:26:47Z #15 2.116 53500K .......... .......... .......... .......... .......... 41% 111M 1s -2024-04-29T04:26:47Z #15 2.116 53550K .......... .......... .......... .......... .......... 41% 83.8M 1s -2024-04-29T04:26:47Z #15 2.117 53600K .......... .......... .......... .......... .......... 41% 69.3M 1s -2024-04-29T04:26:47Z #15 2.118 53650K .......... .......... .......... .......... .......... 42% 44.3M 1s -2024-04-29T04:26:47Z #15 2.118 53700K .......... .......... .......... .......... .......... 42% 102M 1s -2024-04-29T04:26:47Z #15 2.120 53750K .......... .......... .......... .......... .......... 42% 91.8M 1s -2024-04-29T04:26:47Z #15 2.120 53800K .......... .......... .......... .......... .......... 42% 116M 1s -2024-04-29T04:26:47Z #15 2.120 53850K .......... .......... .......... .......... .......... 42% 62.1M 1s -2024-04-29T04:26:47Z #15 2.121 53900K .......... .......... .......... .......... .......... 42% 93.5M 1s -2024-04-29T04:26:47Z #15 2.121 53950K .......... .......... .......... .......... .......... 42% 113M 1s -2024-04-29T04:26:47Z #15 2.122 54000K .......... .......... .......... .......... .......... 42% 126M 1s -2024-04-29T04:26:47Z #15 2.122 54050K .......... .......... .......... .......... .......... 42% 75.5M 1s -2024-04-29T04:26:47Z #15 2.123 54100K .......... .......... .......... .......... .......... 42% 130M 1s -2024-04-29T04:26:47Z #15 2.123 54150K .......... .......... .......... .......... .......... 42% 128M 1s -2024-04-29T04:26:47Z #15 2.124 54200K .......... .......... .......... .......... .......... 42% 59.1M 1s -2024-04-29T04:26:47Z #15 2.124 54250K .......... .......... .......... .......... .......... 42% 134M 1s -2024-04-29T04:26:47Z #15 2.125 54300K .......... .......... .......... .......... .......... 42% 122M 1s -2024-04-29T04:26:47Z #15 2.125 54350K .......... .......... .......... .......... .......... 42% 96.4M 1s -2024-04-29T04:26:47Z #15 2.126 54400K .......... .......... .......... .......... .......... 42% 87.1M 1s -2024-04-29T04:26:47Z #15 2.126 54450K .......... .......... .......... .......... .......... 42% 104M 1s -2024-04-29T04:26:47Z #15 2.127 54500K .......... .......... .......... .......... .......... 42% 123M 1s -2024-04-29T04:26:47Z #15 2.127 54550K .......... .......... .......... .......... .......... 42% 74.3M 1s -2024-04-29T04:26:47Z #15 2.128 54600K .......... .......... .......... .......... .......... 42% 80.6M 1s -2024-04-29T04:26:47Z #15 2.128 54650K .......... .......... .......... .......... .......... 42% 110M 1s -2024-04-29T04:26:47Z #15 2.129 54700K .......... .......... .......... .......... .......... 42% 92.8M 1s -2024-04-29T04:26:47Z #15 2.130 54750K .......... .......... .......... .......... .......... 42% 142M 1s -2024-04-29T04:26:47Z #15 2.130 54800K .......... .......... .......... .......... .......... 42% 153M 1s -2024-04-29T04:26:47Z #15 2.131 54850K .......... .......... .......... .......... .......... 42% 64.3M 1s -2024-04-29T04:26:47Z #15 2.131 54900K .......... .......... .......... .......... .......... 42% 137M 1s -2024-04-29T04:26:47Z #15 2.131 54950K .......... .......... .......... .......... .......... 43% 64.1M 1s -2024-04-29T04:26:47Z #15 2.132 55000K .......... .......... .......... .......... .......... 43% 109M 1s -2024-04-29T04:26:47Z #15 2.133 55050K .......... .......... .......... .......... .......... 43% 164M 1s -2024-04-29T04:26:47Z #15 2.133 55100K .......... .......... .......... .......... .......... 43% 90.2M 1s -2024-04-29T04:26:47Z #15 2.133 55150K .......... .......... .......... .......... .......... 43% 116M 1s -2024-04-29T04:26:47Z #15 2.134 55200K .......... .......... .......... .......... .......... 43% 59.0M 1s -2024-04-29T04:26:47Z #15 2.135 55250K .......... .......... .......... .......... .......... 43% 107M 1s -2024-04-29T04:26:47Z #15 2.139 55300K .......... .......... .......... .......... .......... 43% 177M 1s -2024-04-29T04:26:47Z #15 2.139 55350K .......... .......... .......... .......... .......... 43% 153M 1s -2024-04-29T04:26:47Z #15 2.139 55400K .......... .......... .......... .......... .......... 43% 77.7M 1s -2024-04-29T04:26:47Z #15 2.139 55450K .......... .......... .......... .......... .......... 43% 78.6M 1s -2024-04-29T04:26:47Z #15 2.139 55500K .......... .......... .......... .......... .......... 43% 131M 1s -2024-04-29T04:26:47Z #15 2.139 55550K .......... .......... .......... .......... .......... 43% 67.4M 1s -2024-04-29T04:26:47Z #15 2.139 55600K .......... .......... .......... .......... .......... 43% 79.4M 1s -2024-04-29T04:26:47Z #15 2.139 55650K .......... .......... .......... .......... .......... 43% 109M 1s -2024-04-29T04:26:47Z #15 2.139 55700K .......... .......... .......... .......... .......... 43% 126M 1s -2024-04-29T04:26:47Z #15 2.139 55750K .......... .......... .......... .......... .......... 43% 78.0M 1s -2024-04-29T04:26:47Z #15 2.140 55800K .......... .......... .......... .......... .......... 43% 127M 1s -2024-04-29T04:26:47Z #15 2.141 55850K .......... .......... .......... .......... .......... 43% 145M 1s -2024-04-29T04:26:47Z #15 2.141 55900K .......... .......... .......... .......... .......... 43% 63.3M 1s -2024-04-29T04:26:47Z #15 2.142 55950K .......... .......... .......... .......... .......... 43% 110M 1s -2024-04-29T04:26:47Z #15 2.142 56000K .......... .......... .......... .......... .......... 43% 80.0M 1s -2024-04-29T04:26:47Z #15 2.143 56050K .......... .......... .......... .......... .......... 43% 69.8M 1s -2024-04-29T04:26:47Z #15 2.144 56100K .......... .......... .......... .......... .......... 43% 147M 1s -2024-04-29T04:26:47Z #15 2.144 56150K .......... .......... .......... .......... .......... 43% 110M 1s -2024-04-29T04:26:47Z #15 2.144 56200K .......... .......... .......... .......... .......... 44% 99.1M 1s -2024-04-29T04:26:47Z #15 2.145 56250K .......... .......... .......... .......... .......... 44% 81.3M 1s -2024-04-29T04:26:47Z #15 2.145 56300K .......... .......... .......... .......... .......... 44% 170M 1s -2024-04-29T04:26:47Z #15 2.145 56350K .......... .......... .......... .......... .......... 44% 62.9M 1s -2024-04-29T04:26:47Z #15 2.146 56400K .......... .......... .......... .......... .......... 44% 201M 1s -2024-04-29T04:26:47Z #15 2.146 56450K .......... .......... .......... .......... .......... 44% 147M 1s -2024-04-29T04:26:47Z #15 2.147 56500K .......... .......... .......... .......... .......... 44% 58.9M 1s -2024-04-29T04:26:47Z #15 2.178 56550K .......... .......... .......... .......... .......... 44% 132M 1s -2024-04-29T04:26:47Z #15 2.178 56600K .......... .......... .......... .......... .......... 44% 108M 1s -2024-04-29T04:26:47Z #15 2.178 56650K .......... .......... .......... .......... .......... 44% 109M 1s -2024-04-29T04:26:47Z #15 2.178 56700K .......... .......... .......... .......... .......... 44% 66.2M 1s -2024-04-29T04:26:47Z #15 2.178 56750K .......... .......... .......... .......... .......... 44% 106M 1s -2024-04-29T04:26:47Z #15 2.178 56800K .......... .......... .......... .......... .......... 44% 127M 1s -2024-04-29T04:26:47Z #15 2.178 56850K .......... .......... .......... .......... .......... 44% 115M 1s -2024-04-29T04:26:47Z #15 2.178 56900K .......... .......... .......... .......... .......... 44% 59.8M 1s -2024-04-29T04:26:47Z #15 2.178 56950K .......... .......... .......... .......... .......... 44% 109M 1s -2024-04-29T04:26:47Z #15 2.178 57000K .......... .......... .......... .......... .......... 44% 113M 1s -2024-04-29T04:26:47Z #15 2.178 57050K .......... .......... .......... .......... .......... 44% 5.65M 1s -2024-04-29T04:26:47Z #15 2.178 57100K .......... .......... .......... .......... .......... 44% 120M 1s -2024-04-29T04:26:47Z #15 2.178 57150K .......... .......... .......... .......... .......... 44% 99.3M 1s -2024-04-29T04:26:47Z #15 2.178 57200K .......... .......... .......... .......... .......... 44% 83.0M 1s -2024-04-29T04:26:47Z #15 2.178 57250K .......... .......... .......... .......... .......... 44% 75.8M 1s -2024-04-29T04:26:47Z #15 2.178 57300K .......... .......... .......... .......... .......... 44% 130M 1s -2024-04-29T04:26:47Z #15 2.178 57350K .......... .......... .......... .......... .......... 44% 120M 1s -2024-04-29T04:26:47Z #15 2.178 57400K .......... .......... .......... .......... .......... 44% 81.3M 1s -2024-04-29T04:26:47Z #15 2.178 57450K .......... .......... .......... .......... .......... 44% 74.3M 1s -2024-04-29T04:26:47Z #15 2.178 57500K .......... .......... .......... .......... .......... 45% 122M 1s -2024-04-29T04:26:47Z #15 2.178 57550K .......... .......... .......... .......... .......... 45% 91.6M 1s -2024-04-29T04:26:47Z #15 2.178 57600K .......... .......... .......... .......... .......... 45% 85.6M 1s -2024-04-29T04:26:47Z #15 2.178 57650K .......... .......... .......... .......... .......... 45% 124M 1s -2024-04-29T04:26:47Z #15 2.178 57700K .......... .......... .......... .......... .......... 45% 82.4M 1s -2024-04-29T04:26:47Z #15 2.178 57750K .......... .......... .......... .......... .......... 45% 92.0M 1s -2024-04-29T04:26:47Z #15 2.178 57800K .......... .......... .......... .......... .......... 45% 135M 1s -2024-04-29T04:26:47Z #15 2.178 57850K .......... .......... .......... .......... .......... 45% 11.0M 1s -2024-04-29T04:26:47Z #15 2.178 57900K .......... .......... .......... .......... .......... 45% 62.6M 1s -2024-04-29T04:26:47Z #15 2.178 57950K .......... .......... .......... .......... .......... 45% 109M 1s -2024-04-29T04:26:47Z #15 2.178 58000K .......... .......... .......... .......... .......... 45% 134M 1s -2024-04-29T04:26:47Z #15 2.178 58050K .......... .......... .......... .......... .......... 45% 101M 1s -2024-04-29T04:26:47Z #15 2.178 58100K .......... .......... .......... .......... .......... 45% 62.9M 1s -2024-04-29T04:26:47Z #15 2.178 58150K .......... .......... .......... .......... .......... 45% 106M 1s -2024-04-29T04:26:47Z #15 2.178 58200K .......... .......... .......... .......... .......... 45% 128M 1s -2024-04-29T04:26:47Z #15 2.178 58250K .......... .......... .......... .......... .......... 45% 139M 1s -2024-04-29T04:26:47Z #15 2.178 58300K .......... .......... .......... .......... .......... 45% 100M 1s -2024-04-29T04:26:47Z #15 2.178 58350K .......... .......... .......... .......... .......... 45% 11.2M 1s -2024-04-29T04:26:47Z #15 2.194 58400K .......... .......... .......... .......... .......... 45% 121M 1s -2024-04-29T04:26:47Z #15 2.194 58450K .......... .......... .......... .......... .......... 45% 102M 1s -2024-04-29T04:26:47Z #15 2.194 58500K .......... .......... .......... .......... .......... 45% 87.5M 1s -2024-04-29T04:26:47Z #15 2.194 58550K .......... .......... .......... .......... .......... 45% 102M 1s -2024-04-29T04:26:47Z #15 2.194 58600K .......... .......... .......... .......... .......... 45% 125M 1s -2024-04-29T04:26:47Z #15 2.194 58650K .......... .......... .......... .......... .......... 45% 68.3M 1s -2024-04-29T04:26:47Z #15 2.194 58700K .......... .......... .......... .......... .......... 45% 109M 1s -2024-04-29T04:26:47Z #15 2.194 58750K .......... .......... .......... .......... .......... 46% 97.2M 1s -2024-04-29T04:26:47Z #15 2.194 58800K .......... .......... .......... .......... .......... 46% 85.6M 1s -2024-04-29T04:26:47Z #15 2.194 58850K .......... .......... .......... .......... .......... 46% 111M 1s -2024-04-29T04:26:47Z #15 2.194 58900K .......... .......... .......... .......... .......... 46% 128M 1s -2024-04-29T04:26:47Z #15 2.194 58950K .......... .......... .......... .......... .......... 46% 79.3M 1s -2024-04-29T04:26:47Z #15 2.194 59000K .......... .......... .......... .......... .......... 46% 86.4M 1s -2024-04-29T04:26:47Z #15 2.194 59050K .......... .......... .......... .......... .......... 46% 110M 1s -2024-04-29T04:26:47Z #15 2.194 59100K .......... .......... .......... .......... .......... 46% 112M 1s -2024-04-29T04:26:47Z #15 2.194 59150K .......... .......... .......... .......... .......... 46% 97.6M 1s -2024-04-29T04:26:47Z #15 2.194 59200K .......... .......... .......... .......... .......... 46% 93.0M 1s -2024-04-29T04:26:47Z #15 2.194 59250K .......... .......... .......... .......... .......... 46% 74.3M 1s -2024-04-29T04:26:47Z #15 2.194 59300K .......... .......... .......... .......... .......... 46% 127M 1s -2024-04-29T04:26:47Z #15 2.194 59350K .......... .......... .......... .......... .......... 46% 92.4M 1s -2024-04-29T04:26:47Z #15 2.194 59400K .......... .......... .......... .......... .......... 46% 105M 1s -2024-04-29T04:26:47Z #15 2.194 59450K .......... .......... .......... .......... .......... 46% 5.63M 1s -2024-04-29T04:26:47Z #15 2.201 59500K .......... .......... .......... .......... .......... 46% 102M 1s -2024-04-29T04:26:47Z #15 2.201 59550K .......... .......... .......... .......... .......... 46% 80.2M 1s -2024-04-29T04:26:47Z #15 2.202 59600K .......... .......... .......... .......... .......... 46% 123M 1s -2024-04-29T04:26:47Z #15 2.202 59650K .......... .......... .......... .......... .......... 46% 118M 1s -2024-04-29T04:26:47Z #15 2.203 59700K .......... .......... .......... .......... .......... 46% 73.0M 1s -2024-04-29T04:26:47Z #15 2.204 59750K .......... .......... .......... .......... .......... 46% 89.5M 1s -2024-04-29T04:26:47Z #15 2.204 59800K .......... .......... .......... .......... .......... 46% 129M 1s -2024-04-29T04:26:47Z #15 2.212 59850K .......... .......... .......... .......... .......... 46% 5.55M 1s -2024-04-29T04:26:47Z #15 2.213 59900K .......... .......... .......... .......... .......... 46% 88.5M 1s -2024-04-29T04:26:47Z #15 2.214 59950K .......... .......... .......... .......... .......... 46% 110M 1s -2024-04-29T04:26:47Z #15 2.214 60000K .......... .......... .......... .......... .......... 46% 69.4M 1s -2024-04-29T04:26:47Z #15 2.215 60050K .......... .......... .......... .......... .......... 47% 106M 1s -2024-04-29T04:26:47Z #15 2.215 60100K .......... .......... .......... .......... .......... 47% 109M 1s -2024-04-29T04:26:47Z #15 2.216 60150K .......... .......... .......... .......... .......... 47% 56.6M 1s -2024-04-29T04:26:47Z #15 2.217 60200K .......... .......... .......... .......... .......... 47% 119M 1s -2024-04-29T04:26:47Z #15 2.217 60250K .......... .......... .......... .......... .......... 47% 101M 1s -2024-04-29T04:26:47Z #15 2.218 60300K .......... .......... .......... .......... .......... 47% 63.9M 1s -2024-04-29T04:26:47Z #15 2.218 60350K .......... .......... .......... .......... .......... 47% 102M 1s -2024-04-29T04:26:47Z #15 2.219 60400K .......... .......... .......... .......... .......... 47% 113M 1s -2024-04-29T04:26:47Z #15 2.219 60450K .......... .......... .......... .......... .......... 47% 71.2M 1s -2024-04-29T04:26:47Z #15 2.220 60500K .......... .......... .......... .......... .......... 47% 78.7M 1s -2024-04-29T04:26:47Z #15 2.221 60550K .......... .......... .......... .......... .......... 47% 127M 1s -2024-04-29T04:26:47Z #15 2.221 60600K .......... .......... .......... .......... .......... 47% 121M 1s -2024-04-29T04:26:47Z #15 2.221 60650K .......... .......... .......... .......... .......... 47% 61.7M 1s -2024-04-29T04:26:47Z #15 2.222 60700K .......... .......... .......... .......... .......... 47% 97.1M 1s -2024-04-29T04:26:47Z #15 2.223 60750K .......... .......... .......... .......... .......... 47% 74.4M 1s -2024-04-29T04:26:47Z #15 2.223 60800K .......... .......... .......... .......... .......... 47% 83.3M 1s -2024-04-29T04:26:47Z #15 2.224 60850K .......... .......... .......... .......... .......... 47% 123M 1s -2024-04-29T04:26:47Z #15 2.224 60900K .......... .......... .......... .......... .......... 47% 5.77M 1s -2024-04-29T04:26:47Z #15 2.241 60950K .......... .......... .......... .......... .......... 47% 154M 1s -2024-04-29T04:26:47Z #15 2.241 61000K .......... .......... .......... .......... .......... 47% 153M 1s -2024-04-29T04:26:47Z #15 2.241 61050K .......... .......... .......... .......... .......... 47% 185M 1s -2024-04-29T04:26:47Z #15 2.241 61100K .......... .......... .......... .......... .......... 47% 132M 1s -2024-04-29T04:26:47Z #15 2.241 61150K .......... .......... .......... .......... .......... 47% 133M 1s -2024-04-29T04:26:47Z #15 2.241 61200K .......... .......... .......... .......... .......... 47% 134M 1s -2024-04-29T04:26:47Z #15 2.241 61250K .......... .......... .......... .......... .......... 47% 155M 1s -2024-04-29T04:26:47Z #15 2.241 61300K .......... .......... .......... .......... .......... 48% 150M 1s -2024-04-29T04:26:47Z #15 2.241 61350K .......... .......... .......... .......... .......... 48% 170M 1s -2024-04-29T04:26:47Z #15 2.241 61400K .......... .......... .......... .......... .......... 48% 123M 1s -2024-04-29T04:26:47Z #15 2.241 61450K .......... .......... .......... .......... .......... 48% 147M 1s -2024-04-29T04:26:47Z #15 2.241 61500K .......... .......... .......... .......... .......... 48% 117M 1s -2024-04-29T04:26:47Z #15 2.241 61550K .......... .......... .......... .......... .......... 48% 167M 1s -2024-04-29T04:26:47Z #15 2.241 61600K .......... .......... .......... .......... .......... 48% 136M 1s -2024-04-29T04:26:47Z #15 2.241 61650K .......... .......... .......... .......... .......... 48% 167M 1s -2024-04-29T04:26:47Z #15 2.241 61700K .......... .......... .......... .......... .......... 48% 135M 1s -2024-04-29T04:26:47Z #15 2.241 61750K .......... .......... .......... .......... .......... 48% 143M 1s -2024-04-29T04:26:47Z #15 2.241 61800K .......... .......... .......... .......... .......... 48% 152M 1s -2024-04-29T04:26:47Z #15 2.241 61850K .......... .......... .......... .......... .......... 48% 162M 1s -2024-04-29T04:26:47Z #15 2.241 61900K .......... .......... .......... .......... .......... 48% 169M 1s -2024-04-29T04:26:47Z #15 2.241 61950K .......... .......... .......... .......... .......... 48% 157M 1s -2024-04-29T04:26:47Z #15 2.241 62000K .......... .......... .......... .......... .......... 48% 162M 1s -2024-04-29T04:26:47Z #15 2.241 62050K .......... .......... .......... .......... .......... 48% 244M 1s -2024-04-29T04:26:47Z #15 2.241 62100K .......... .......... .......... .......... .......... 48% 54.7M 1s -2024-04-29T04:26:47Z #15 2.241 62150K .......... .......... .......... .......... .......... 48% 35.0M 1s -2024-04-29T04:26:47Z #15 2.243 62200K .......... .......... .......... .......... .......... 48% 93.0M 1s -2024-04-29T04:26:47Z #15 2.243 62250K .......... .......... .......... .......... .......... 48% 126M 1s -2024-04-29T04:26:47Z #15 2.243 62300K .......... .......... .......... .......... .......... 48% 116M 1s -2024-04-29T04:26:47Z #15 2.244 62350K .......... .......... .......... .......... .......... 48% 130M 1s -2024-04-29T04:26:47Z #15 2.244 62400K .......... .......... .......... .......... .......... 48% 48.0M 1s -2024-04-29T04:26:47Z #15 2.245 62450K .......... .......... .......... .......... .......... 48% 53.1M 1s -2024-04-29T04:26:47Z #15 2.246 62500K .......... .......... .......... .......... .......... 48% 111M 1s -2024-04-29T04:26:47Z #15 2.247 62550K .......... .......... .......... .......... .......... 48% 112M 1s -2024-04-29T04:26:47Z #15 2.247 62600K .......... .......... .......... .......... .......... 49% 93.6M 1s -2024-04-29T04:26:47Z #15 2.248 62650K .......... .......... .......... .......... .......... 49% 133M 1s -2024-04-29T04:26:47Z #15 2.248 62700K .......... .......... .......... .......... .......... 49% 112M 1s -2024-04-29T04:26:47Z #15 2.249 62750K .......... .......... .......... .......... .......... 49% 51.9M 1s -2024-04-29T04:26:47Z #15 2.251 62800K .......... .......... .......... .......... .......... 49% 136M 1s -2024-04-29T04:26:47Z #15 2.251 62850K .......... .......... .......... .......... .......... 49% 174M 1s -2024-04-29T04:26:47Z #15 2.251 62900K .......... .......... .......... .......... .......... 49% 128M 1s -2024-04-29T04:26:47Z #15 2.251 62950K .......... .......... .......... .......... .......... 49% 141M 1s -2024-04-29T04:26:47Z #15 2.251 63000K .......... .......... .......... .......... .......... 49% 98.6M 1s -2024-04-29T04:26:47Z #15 2.252 63050K .......... .......... .......... .......... .......... 49% 80.4M 1s -2024-04-29T04:26:47Z #15 2.252 63100K .......... .......... .......... .......... .......... 49% 122M 1s -2024-04-29T04:26:47Z #15 2.252 63150K .......... .......... .......... .......... .......... 49% 75.3M 1s -2024-04-29T04:26:47Z #15 2.253 63200K .......... .......... .......... .......... .......... 49% 64.6M 1s -2024-04-29T04:26:47Z #15 2.254 63250K .......... .......... .......... .......... .......... 49% 82.4M 1s -2024-04-29T04:26:47Z #15 2.255 63300K .......... .......... .......... .......... .......... 49% 38.7M 1s -2024-04-29T04:26:47Z #15 2.256 63350K .......... .......... .......... .......... .......... 49% 46.2M 1s -2024-04-29T04:26:47Z #15 2.261 63400K .......... .......... .......... .......... .......... 49% 129M 1s -2024-04-29T04:26:47Z #15 2.261 63450K .......... .......... .......... .......... .......... 49% 179M 1s -2024-04-29T04:26:47Z #15 2.261 63500K .......... .......... .......... .......... .......... 49% 159M 1s -2024-04-29T04:26:47Z #15 2.261 63550K .......... .......... .......... .......... .......... 49% 128M 1s -2024-04-29T04:26:47Z #15 2.261 63600K .......... .......... .......... .......... .......... 49% 167M 1s -2024-04-29T04:26:47Z #15 2.261 63650K .......... .......... .......... .......... .......... 49% 135M 1s -2024-04-29T04:26:47Z #15 2.261 63700K .......... .......... .......... .......... .......... 49% 178M 1s -2024-04-29T04:26:47Z #15 2.261 63750K .......... .......... .......... .......... .......... 49% 134M 1s -2024-04-29T04:26:47Z #15 2.261 63800K .......... .......... .......... .......... .......... 49% 148M 1s -2024-04-29T04:26:47Z #15 2.261 63850K .......... .......... .......... .......... .......... 50% 152M 1s -2024-04-29T04:26:47Z #15 2.261 63900K .......... .......... .......... .......... .......... 50% 153M 1s -2024-04-29T04:26:47Z #15 2.261 63950K .......... .......... .......... .......... .......... 50% 131M 1s -2024-04-29T04:26:47Z #15 2.261 64000K .......... .......... .......... .......... .......... 50% 57.8M 1s -2024-04-29T04:26:47Z #15 2.262 64050K .......... .......... .......... .......... .......... 50% 72.8M 1s -2024-04-29T04:26:47Z #15 2.262 64100K .......... .......... .......... .......... .......... 50% 119M 1s -2024-04-29T04:26:47Z #15 2.262 64150K .......... .......... .......... .......... .......... 50% 109M 1s -2024-04-29T04:26:47Z #15 2.263 64200K .......... .......... .......... .......... .......... 50% 52.8M 1s -2024-04-29T04:26:47Z #15 2.264 64250K .......... .......... .......... .......... .......... 50% 47.8M 1s -2024-04-29T04:26:47Z #15 2.265 64300K .......... .......... .......... .......... .......... 50% 64.9M 1s -2024-04-29T04:26:47Z #15 2.266 64350K .......... .......... .......... .......... .......... 50% 101M 1s -2024-04-29T04:26:47Z #15 2.266 64400K .......... .......... .......... .......... .......... 50% 57.6M 1s -2024-04-29T04:26:47Z #15 2.269 64450K .......... .......... .......... .......... .......... 50% 172M 1s -2024-04-29T04:26:47Z #15 2.269 64500K .......... .......... .......... .......... .......... 50% 148M 1s -2024-04-29T04:26:47Z #15 2.269 64550K .......... .......... .......... .......... .......... 50% 151M 1s -2024-04-29T04:26:47Z #15 2.269 64600K .......... .......... .......... .......... .......... 50% 126M 1s -2024-04-29T04:26:47Z #15 2.269 64650K .......... .......... .......... .......... .......... 50% 181M 1s -2024-04-29T04:26:47Z #15 2.269 64700K .......... .......... .......... .......... .......... 50% 71.1M 1s -2024-04-29T04:26:47Z #15 2.270 64750K .......... .......... .......... .......... .......... 50% 103M 1s -2024-04-29T04:26:47Z #15 2.270 64800K .......... .......... .......... .......... .......... 50% 113M 1s -2024-04-29T04:26:47Z #15 2.270 64850K .......... .......... .......... .......... .......... 50% 115M 1s -2024-04-29T04:26:47Z #15 2.271 64900K .......... .......... .......... .......... .......... 50% 113M 1s -2024-04-29T04:26:47Z #15 2.271 64950K .......... .......... .......... .......... .......... 50% 100M 1s -2024-04-29T04:26:47Z #15 2.271 65000K .......... .......... .......... .......... .......... 50% 125M 1s -2024-04-29T04:26:47Z #15 2.272 65050K .......... .......... .......... .......... .......... 50% 116M 1s -2024-04-29T04:26:47Z #15 2.273 65100K .......... .......... .......... .......... .......... 50% 116M 1s -2024-04-29T04:26:47Z #15 2.273 65150K .......... .......... .......... .......... .......... 51% 105M 1s -2024-04-29T04:26:47Z #15 2.273 65200K .......... .......... .......... .......... .......... 51% 133M 1s -2024-04-29T04:26:47Z #15 2.274 65250K .......... .......... .......... .......... .......... 51% 116M 1s -2024-04-29T04:26:47Z #15 2.274 65300K .......... .......... .......... .......... .......... 51% 98.9M 1s -2024-04-29T04:26:47Z #15 2.275 65350K .......... .......... .......... .......... .......... 51% 119M 1s -2024-04-29T04:26:47Z #15 2.275 65400K .......... .......... .......... .......... .......... 51% 145M 1s -2024-04-29T04:26:47Z #15 2.275 65450K .......... .......... .......... .......... .......... 51% 128M 1s -2024-04-29T04:26:47Z #15 2.276 65500K .......... .......... .......... .......... .......... 51% 106M 1s -2024-04-29T04:26:47Z #15 2.276 65550K .......... .......... .......... .......... .......... 51% 145M 1s -2024-04-29T04:26:47Z #15 2.276 65600K .......... .......... .......... .......... .......... 51% 88.4M 1s -2024-04-29T04:26:47Z #15 2.281 65650K .......... .......... .......... .......... .......... 51% 66.1M 1s -2024-04-29T04:26:47Z #15 2.281 65700K .......... .......... .......... .......... .......... 51% 118M 1s -2024-04-29T04:26:47Z #15 2.281 65750K .......... .......... .......... .......... .......... 51% 175M 1s -2024-04-29T04:26:47Z #15 2.281 65800K .......... .......... .......... .......... .......... 51% 154M 1s -2024-04-29T04:26:47Z #15 2.281 65850K .......... .......... .......... .......... .......... 51% 136M 1s -2024-04-29T04:26:47Z #15 2.281 65900K .......... .......... .......... .......... .......... 51% 125M 1s -2024-04-29T04:26:47Z #15 2.281 65950K .......... .......... .......... .......... .......... 51% 165M 1s -2024-04-29T04:26:47Z #15 2.281 66000K .......... .......... .......... .......... .......... 51% 171M 1s -2024-04-29T04:26:47Z #15 2.281 66050K .......... .......... .......... .......... .......... 51% 151M 1s -2024-04-29T04:26:47Z #15 2.281 66100K .......... .......... .......... .......... .......... 51% 101M 1s -2024-04-29T04:26:47Z #15 2.281 66150K .......... .......... .......... .......... .......... 51% 56.9M 1s -2024-04-29T04:26:47Z #15 2.282 66200K .......... .......... .......... .......... .......... 51% 75.8M 1s -2024-04-29T04:26:47Z #15 2.282 66250K .......... .......... .......... .......... .......... 51% 79.1M 1s -2024-04-29T04:26:47Z #15 2.283 66300K .......... .......... .......... .......... .......... 51% 64.3M 1s -2024-04-29T04:26:47Z #15 2.284 66350K .......... .......... .......... .......... .......... 51% 67.8M 1s -2024-04-29T04:26:47Z #15 2.284 66400K .......... .......... .......... .......... .......... 51% 79.7M 1s -2024-04-29T04:26:47Z #15 2.285 66450K .......... .......... .......... .......... .......... 52% 78.0M 1s -2024-04-29T04:26:47Z #15 2.286 66500K .......... .......... .......... .......... .......... 52% 82.9M 1s -2024-04-29T04:26:47Z #15 2.287 66550K .......... .......... .......... .......... .......... 52% 87.7M 1s -2024-04-29T04:26:47Z #15 2.287 66600K .......... .......... .......... .......... .......... 52% 120M 1s -2024-04-29T04:26:47Z #15 2.287 66650K .......... .......... .......... .......... .......... 52% 107M 1s -2024-04-29T04:26:47Z #15 2.288 66700K .......... .......... .......... .......... .......... 52% 139M 1s -2024-04-29T04:26:47Z #15 2.288 66750K .......... .......... .......... .......... .......... 52% 121M 1s -2024-04-29T04:26:47Z #15 2.289 66800K .......... .......... .......... .......... .......... 52% 86.1M 1s -2024-04-29T04:26:47Z #15 2.289 66850K .......... .......... .......... .......... .......... 52% 99.1M 1s -2024-04-29T04:26:47Z #15 2.293 66900K .......... .......... .......... .......... .......... 52% 115M 1s -2024-04-29T04:26:47Z #15 2.293 66950K .......... .......... .......... .......... .......... 52% 162M 1s -2024-04-29T04:26:47Z #15 2.293 67000K .......... .......... .......... .......... .......... 52% 127M 1s -2024-04-29T04:26:47Z #15 2.293 67050K .......... .......... .......... .......... .......... 52% 162M 1s -2024-04-29T04:26:47Z #15 2.293 67100K .......... .......... .......... .......... .......... 52% 150M 1s -2024-04-29T04:26:47Z #15 2.293 67150K .......... .......... .......... .......... .......... 52% 126M 1s -2024-04-29T04:26:47Z #15 2.293 67200K .......... .......... .......... .......... .......... 52% 135M 1s -2024-04-29T04:26:47Z #15 2.293 67250K .......... .......... .......... .......... .......... 52% 163M 1s -2024-04-29T04:26:47Z #15 2.293 67300K .......... .......... .......... .......... .......... 52% 179M 1s -2024-04-29T04:26:47Z #15 2.293 67350K .......... .......... .......... .......... .......... 52% 91.3M 1s -2024-04-29T04:26:47Z #15 2.293 67400K .......... .......... .......... .......... .......... 52% 118M 1s -2024-04-29T04:26:47Z #15 2.293 67450K .......... .......... .......... .......... .......... 52% 139M 1s -2024-04-29T04:26:47Z #15 2.294 67500K .......... .......... .......... .......... .......... 52% 130M 1s -2024-04-29T04:26:47Z #15 2.294 67550K .......... .......... .......... .......... .......... 52% 124M 1s -2024-04-29T04:26:47Z #15 2.295 67600K .......... .......... .......... .......... .......... 52% 110M 1s -2024-04-29T04:26:47Z #15 2.295 67650K .......... .......... .......... .......... .......... 52% 125M 1s -2024-04-29T04:26:47Z #15 2.295 67700K .......... .......... .......... .......... .......... 53% 139M 1s -2024-04-29T04:26:47Z #15 2.296 67750K .......... .......... .......... .......... .......... 53% 121M 1s -2024-04-29T04:26:47Z #15 2.296 67800K .......... .......... .......... .......... .......... 53% 55.4M 1s -2024-04-29T04:26:47Z #15 2.301 67850K .......... .......... .......... .......... .......... 53% 122M 1s -2024-04-29T04:26:47Z #15 2.301 67900K .......... .......... .......... .......... .......... 53% 180M 1s -2024-04-29T04:26:47Z #15 2.301 67950K .......... .......... .......... .......... .......... 53% 132M 1s -2024-04-29T04:26:47Z #15 2.301 68000K .......... .......... .......... .......... .......... 53% 134M 1s -2024-04-29T04:26:47Z #15 2.301 68050K .......... .......... .......... .......... .......... 53% 137M 1s -2024-04-29T04:26:47Z #15 2.301 68100K .......... .......... .......... .......... .......... 53% 134M 1s -2024-04-29T04:26:47Z #15 2.301 68150K .......... .......... .......... .......... .......... 53% 168M 1s -2024-04-29T04:26:47Z #15 2.301 68200K .......... .......... .......... .......... .......... 53% 124M 1s -2024-04-29T04:26:47Z #15 2.301 68250K .......... .......... .......... .......... .......... 53% 160M 1s -2024-04-29T04:26:47Z #15 2.301 68300K .......... .......... .......... .......... .......... 53% 142M 1s -2024-04-29T04:26:47Z #15 2.301 68350K .......... .......... .......... .......... .......... 53% 99.6M 1s -2024-04-29T04:26:47Z #15 2.301 68400K .......... .......... .......... .......... .......... 53% 117M 1s -2024-04-29T04:26:47Z #15 2.301 68450K .......... .......... .......... .......... .......... 53% 88.6M 1s -2024-04-29T04:26:47Z #15 2.302 68500K .......... .......... .......... .......... .......... 53% 135M 1s -2024-04-29T04:26:47Z #15 2.302 68550K .......... .......... .......... .......... .......... 53% 131M 1s -2024-04-29T04:26:47Z #15 2.303 68600K .......... .......... .......... .......... .......... 53% 126M 1s -2024-04-29T04:26:47Z #15 2.303 68650K .......... .......... .......... .......... .......... 53% 93.0M 1s -2024-04-29T04:26:47Z #15 2.305 68700K .......... .......... .......... .......... .......... 53% 147M 1s -2024-04-29T04:26:47Z #15 2.305 68750K .......... .......... .......... .......... .......... 53% 121M 1s -2024-04-29T04:26:47Z #15 2.305 68800K .......... .......... .......... .......... .......... 53% 85.7M 1s -2024-04-29T04:26:47Z #15 2.305 68850K .......... .......... .......... .......... .......... 53% 120M 1s -2024-04-29T04:26:47Z #15 2.305 68900K .......... .......... .......... .......... .......... 53% 130M 1s -2024-04-29T04:26:47Z #15 2.306 68950K .......... .......... .......... .......... .......... 53% 117M 1s -2024-04-29T04:26:47Z #15 2.306 69000K .......... .......... .......... .......... .......... 54% 115M 1s -2024-04-29T04:26:47Z #15 2.307 69050K .......... .......... .......... .......... .......... 54% 87.2M 1s -2024-04-29T04:26:47Z #15 2.313 69100K .......... .......... .......... .......... .......... 54% 83.4M 1s -2024-04-29T04:26:47Z #15 2.313 69150K .......... .......... .......... .......... .......... 54% 90.8M 1s -2024-04-29T04:26:47Z #15 2.313 69200K .......... .......... .......... .......... .......... 54% 90.3M 1s -2024-04-29T04:26:47Z #15 2.313 69250K .......... .......... .......... .......... .......... 54% 80.9M 1s -2024-04-29T04:26:47Z #15 2.313 69300K .......... .......... .......... .......... .......... 54% 86.3M 1s -2024-04-29T04:26:47Z #15 2.313 69350K .......... .......... .......... .......... .......... 54% 88.7M 1s -2024-04-29T04:26:47Z #15 2.313 69400K .......... .......... .......... .......... .......... 54% 87.4M 1s -2024-04-29T04:26:47Z #15 2.313 69450K .......... .......... .......... .......... .......... 54% 72.6M 1s -2024-04-29T04:26:47Z #15 2.313 69500K .......... .......... .......... .......... .......... 54% 126M 1s -2024-04-29T04:26:47Z #15 2.313 69550K .......... .......... .......... .......... .......... 54% 142M 1s -2024-04-29T04:26:47Z #15 2.313 69600K .......... .......... .......... .......... .......... 54% 107M 1s -2024-04-29T04:26:47Z #15 2.315 69650K .......... .......... .......... .......... .......... 54% 69.2M 1s -2024-04-29T04:26:47Z #15 2.315 69700K .......... .......... .......... .......... .......... 54% 124M 1s -2024-04-29T04:26:47Z #15 2.315 69750K .......... .......... .......... .......... .......... 54% 109M 1s -2024-04-29T04:26:47Z #15 2.315 69800K .......... .......... .......... .......... .......... 54% 75.4M 1s -2024-04-29T04:26:47Z #15 2.315 69850K .......... .......... .......... .......... .......... 54% 124M 1s -2024-04-29T04:26:47Z #15 2.316 69900K .......... .......... .......... .......... .......... 54% 132M 1s -2024-04-29T04:26:47Z #15 2.316 69950K .......... .......... .......... .......... .......... 54% 109M 1s -2024-04-29T04:26:47Z #15 2.316 70000K .......... .......... .......... .......... .......... 54% 101M 1s -2024-04-29T04:26:47Z #15 2.317 70050K .......... .......... .......... .......... .......... 54% 133M 1s -2024-04-29T04:26:47Z #15 2.317 70100K .......... .......... .......... .......... .......... 54% 71.6M 1s -2024-04-29T04:26:47Z #15 2.318 70150K .......... .......... .......... .......... .......... 54% 101M 1s -2024-04-29T04:26:47Z #15 2.318 70200K .......... .......... .......... .......... .......... 54% 122M 1s -2024-04-29T04:26:47Z #15 2.319 70250K .......... .......... .......... .......... .......... 55% 103M 1s -2024-04-29T04:26:47Z #15 2.319 70300K .......... .......... .......... .......... .......... 55% 140M 1s -2024-04-29T04:26:47Z #15 2.320 70350K .......... .......... .......... .......... .......... 55% 115M 1s -2024-04-29T04:26:47Z #15 2.320 70400K .......... .......... .......... .......... .......... 55% 105M 1s -2024-04-29T04:26:47Z #15 2.320 70450K .......... .......... .......... .......... .......... 55% 87.8M 1s -2024-04-29T04:26:47Z #15 2.322 70500K .......... .......... .......... .......... .......... 55% 142M 1s -2024-04-29T04:26:47Z #15 2.322 70550K .......... .......... .......... .......... .......... 55% 128M 1s -2024-04-29T04:26:47Z #15 2.322 70600K .......... .......... .......... .......... .......... 55% 156M 1s -2024-04-29T04:26:47Z #15 2.322 70650K .......... .......... .......... .......... .......... 55% 150M 1s -2024-04-29T04:26:47Z #15 2.322 70700K .......... .......... .......... .......... .......... 55% 99.6M 1s -2024-04-29T04:26:47Z #15 2.323 70750K .......... .......... .......... .......... .......... 55% 127M 1s -2024-04-29T04:26:47Z #15 2.323 70800K .......... .......... .......... .......... .......... 55% 117M 1s -2024-04-29T04:26:47Z #15 2.324 70850K .......... .......... .......... .......... .......... 55% 123M 1s -2024-04-29T04:26:47Z #15 2.324 70900K .......... .......... .......... .......... .......... 55% 111M 1s -2024-04-29T04:26:47Z #15 2.325 70950K .......... .......... .......... .......... .......... 55% 82.2M 1s -2024-04-29T04:26:47Z #15 2.325 71000K .......... .......... .......... .......... .......... 55% 116M 1s -2024-04-29T04:26:47Z #15 2.326 71050K .......... .......... .......... .......... .......... 55% 116M 1s -2024-04-29T04:26:47Z #15 2.327 71100K .......... .......... .......... .......... .......... 55% 102M 1s -2024-04-29T04:26:47Z #15 2.327 71150K .......... .......... .......... .......... .......... 55% 154M 1s -2024-04-29T04:26:47Z #15 2.327 71200K .......... .......... .......... .......... .......... 55% 98.8M 1s -2024-04-29T04:26:47Z #15 2.327 71250K .......... .......... .......... .......... .......... 55% 127M 1s -2024-04-29T04:26:47Z #15 2.328 71300K .......... .......... .......... .......... .......... 55% 132M 1s -2024-04-29T04:26:47Z #15 2.328 71350K .......... .......... .......... .......... .......... 55% 140M 1s -2024-04-29T04:26:47Z #15 2.333 71400K .......... .......... .......... .......... .......... 55% 95.6M 1s -2024-04-29T04:26:47Z #15 2.333 71450K .......... .......... .......... .......... .......... 55% 159M 1s -2024-04-29T04:26:47Z #15 2.333 71500K .......... .......... .......... .......... .......... 55% 170M 1s -2024-04-29T04:26:47Z #15 2.333 71550K .......... .......... .......... .......... .......... 56% 139M 1s -2024-04-29T04:26:47Z #15 2.333 71600K .......... .......... .......... .......... .......... 56% 161M 1s -2024-04-29T04:26:47Z #15 2.333 71650K .......... .......... .......... .......... .......... 56% 133M 1s -2024-04-29T04:26:47Z #15 2.333 71700K .......... .......... .......... .......... .......... 56% 171M 1s -2024-04-29T04:26:47Z #15 2.333 71750K .......... .......... .......... .......... .......... 56% 136M 1s -2024-04-29T04:26:47Z #15 2.333 71800K .......... .......... .......... .......... .......... 56% 154M 1s -2024-04-29T04:26:47Z #15 2.333 71850K .......... .......... .......... .......... .......... 56% 154M 1s -2024-04-29T04:26:47Z #15 2.333 71900K .......... .......... .......... .......... .......... 56% 134M 1s -2024-04-29T04:26:47Z #15 2.333 71950K .......... .......... .......... .......... .......... 56% 157M 1s -2024-04-29T04:26:47Z #15 2.333 72000K .......... .......... .......... .......... .......... 56% 58.5M 1s -2024-04-29T04:26:47Z #15 2.333 72050K .......... .......... .......... .......... .......... 56% 101M 1s -2024-04-29T04:26:47Z #15 2.334 72100K .......... .......... .......... .......... .......... 56% 127M 1s -2024-04-29T04:26:47Z #15 2.334 72150K .......... .......... .......... .......... .......... 56% 132M 1s -2024-04-29T04:26:47Z #15 2.334 72200K .......... .......... .......... .......... .......... 56% 100M 1s -2024-04-29T04:26:47Z #15 2.335 72250K .......... .......... .......... .......... .......... 56% 108M 1s -2024-04-29T04:26:47Z #15 2.336 72300K .......... .......... .......... .......... .......... 56% 127M 1s -2024-04-29T04:26:47Z #15 2.336 72350K .......... .......... .......... .......... .......... 56% 120M 1s -2024-04-29T04:26:47Z #15 2.336 72400K .......... .......... .......... .......... .......... 56% 88.2M 1s -2024-04-29T04:26:47Z #15 2.337 72450K .......... .......... .......... .......... .......... 56% 82.8M 1s -2024-04-29T04:26:47Z #15 2.341 72500K .......... .......... .......... .......... .......... 56% 89.1M 1s -2024-04-29T04:26:47Z #15 2.341 72550K .......... .......... .......... .......... .......... 56% 170M 1s -2024-04-29T04:26:47Z #15 2.341 72600K .......... .......... .......... .......... .......... 56% 121M 1s -2024-04-29T04:26:47Z #15 2.341 72650K .......... .......... .......... .......... .......... 56% 154M 1s -2024-04-29T04:26:47Z #15 2.341 72700K .......... .......... .......... .......... .......... 56% 148M 1s -2024-04-29T04:26:47Z #15 2.341 72750K .......... .......... .......... .......... .......... 56% 155M 1s -2024-04-29T04:26:47Z #15 2.341 72800K .......... .......... .......... .......... .......... 57% 133M 1s -2024-04-29T04:26:47Z #15 2.341 72850K .......... .......... .......... .......... .......... 57% 152M 1s -2024-04-29T04:26:47Z #15 2.341 72900K .......... .......... .......... .......... .......... 57% 142M 1s -2024-04-29T04:26:47Z #15 2.341 72950K .......... .......... .......... .......... .......... 57% 52.7M 1s -2024-04-29T04:26:47Z #15 2.342 73000K .......... .......... .......... .......... .......... 57% 59.6M 1s -2024-04-29T04:26:47Z #15 2.342 73050K .......... .......... .......... .......... .......... 57% 72.5M 1s -2024-04-29T04:26:47Z #15 2.343 73100K .......... .......... .......... .......... .......... 57% 59.9M 1s -2024-04-29T04:26:47Z #15 2.344 73150K .......... .......... .......... .......... .......... 57% 66.8M 1s -2024-04-29T04:26:47Z #15 2.348 73200K .......... .......... .......... .......... .......... 57% 75.6M 1s -2024-04-29T04:26:47Z #15 2.348 73250K .......... .......... .......... .......... .......... 57% 101M 1s -2024-04-29T04:26:47Z #15 2.348 73300K .......... .......... .......... .......... .......... 57% 132M 1s -2024-04-29T04:26:47Z #15 2.348 73350K .......... .......... .......... .......... .......... 57% 102M 1s -2024-04-29T04:26:47Z #15 2.348 73400K .......... .......... .......... .......... .......... 57% 121M 1s -2024-04-29T04:26:47Z #15 2.348 73450K .......... .......... .......... .......... .......... 57% 114M 1s -2024-04-29T04:26:47Z #15 2.348 73500K .......... .......... .......... .......... .......... 57% 108M 1s -2024-04-29T04:26:47Z #15 2.348 73550K .......... .......... .......... .......... .......... 57% 75.7M 1s -2024-04-29T04:26:47Z #15 2.348 73600K .......... .......... .......... .......... .......... 57% 112M 1s -2024-04-29T04:26:47Z #15 2.349 73650K .......... .......... .......... .......... .......... 57% 89.8M 1s -2024-04-29T04:26:47Z #15 2.349 73700K .......... .......... .......... .......... .......... 57% 85.2M 1s -2024-04-29T04:26:47Z #15 2.350 73750K .......... .......... .......... .......... .......... 57% 103M 1s -2024-04-29T04:26:47Z #15 2.351 73800K .......... .......... .......... .......... .......... 57% 126M 1s -2024-04-29T04:26:47Z #15 2.352 73850K .......... .......... .......... .......... .......... 57% 130M 1s -2024-04-29T04:26:47Z #15 2.352 73900K .......... .......... .......... .......... .......... 57% 128M 1s -2024-04-29T04:26:47Z #15 2.352 73950K .......... .......... .......... .......... .......... 57% 111M 1s -2024-04-29T04:26:47Z #15 2.352 74000K .......... .......... .......... .......... .......... 57% 109M 1s -2024-04-29T04:26:47Z #15 2.357 74050K .......... .......... .......... .......... .......... 57% 98.6M 1s -2024-04-29T04:26:47Z #15 2.357 74100K .......... .......... .......... .......... .......... 58% 152M 1s -2024-04-29T04:26:47Z #15 2.357 74150K .......... .......... .......... .......... .......... 58% 159M 1s -2024-04-29T04:26:47Z #15 2.357 74200K .......... .......... .......... .......... .......... 58% 164M 1s -2024-04-29T04:26:47Z #15 2.357 74250K .......... .......... .......... .......... .......... 58% 129M 1s -2024-04-29T04:26:47Z #15 2.357 74300K .......... .......... .......... .......... .......... 58% 149M 1s -2024-04-29T04:26:47Z #15 2.357 74350K .......... .......... .......... .......... .......... 58% 149M 1s -2024-04-29T04:26:47Z #15 2.357 74400K .......... .......... .......... .......... .......... 58% 139M 1s -2024-04-29T04:26:47Z #15 2.357 74450K .......... .......... .......... .......... .......... 58% 153M 1s -2024-04-29T04:26:47Z #15 2.357 74500K .......... .......... .......... .......... .......... 58% 153M 1s -2024-04-29T04:26:47Z #15 2.357 74550K .......... .......... .......... .......... .......... 58% 158M 1s -2024-04-29T04:26:47Z #15 2.357 74600K .......... .......... .......... .......... .......... 58% 184M 1s -2024-04-29T04:26:47Z #15 2.357 74650K .......... .......... .......... .......... .......... 58% 78.8M 1s -2024-04-29T04:26:47Z #15 2.359 74700K .......... .......... .......... .......... .......... 58% 137M 1s -2024-04-29T04:26:47Z #15 2.359 74750K .......... .......... .......... .......... .......... 58% 122M 1s -2024-04-29T04:26:47Z #15 2.359 74800K .......... .......... .......... .......... .......... 58% 120M 1s -2024-04-29T04:26:47Z #15 2.359 74850K .......... .......... .......... .......... .......... 58% 106M 1s -2024-04-29T04:26:47Z #15 2.359 74900K .......... .......... .......... .......... .......... 58% 138M 1s -2024-04-29T04:26:47Z #15 2.359 74950K .......... .......... .......... .......... .......... 58% 122M 1s -2024-04-29T04:26:47Z #15 2.360 75000K .......... .......... .......... .......... .......... 58% 118M 1s -2024-04-29T04:26:47Z #15 2.360 75050K .......... .......... .......... .......... .......... 58% 100M 1s -2024-04-29T04:26:47Z #15 2.361 75100K .......... .......... .......... .......... .......... 58% 103M 1s -2024-04-29T04:26:47Z #15 2.361 75150K .......... .......... .......... .......... .......... 58% 41.3M 1s -2024-04-29T04:26:47Z #15 2.362 75200K .......... .......... .......... .......... .......... 58% 70.6M 1s -2024-04-29T04:26:47Z #15 2.363 75250K .......... .......... .......... .......... .......... 58% 61.6M 1s -2024-04-29T04:26:47Z #15 2.364 75300K .......... .......... .......... .......... .......... 58% 83.3M 1s -2024-04-29T04:26:47Z #15 2.364 75350K .......... .......... .......... .......... .......... 59% 5.74M 1s -2024-04-29T04:26:47Z #15 2.373 75400K .......... .......... .......... .......... .......... 59% 119M 1s -2024-04-29T04:26:47Z #15 2.373 75450K .......... .......... .......... .......... .......... 59% 131M 1s -2024-04-29T04:26:47Z #15 2.374 75500K .......... .......... .......... .......... .......... 59% 137M 1s -2024-04-29T04:26:47Z #15 2.374 75550K .......... .......... .......... .......... .......... 59% 116M 1s -2024-04-29T04:26:47Z #15 2.374 75600K .......... .......... .......... .......... .......... 59% 113M 1s -2024-04-29T04:26:47Z #15 2.375 75650K .......... .......... .......... .......... .......... 59% 127M 1s -2024-04-29T04:26:47Z #15 2.375 75700K .......... .......... .......... .......... .......... 59% 123M 1s -2024-04-29T04:26:47Z #15 2.377 75750K .......... .......... .......... .......... .......... 59% 141M 1s -2024-04-29T04:26:47Z #15 2.377 75800K .......... .......... .......... .......... .......... 59% 131M 1s -2024-04-29T04:26:47Z #15 2.377 75850K .......... .......... .......... .......... .......... 59% 133M 1s -2024-04-29T04:26:47Z #15 2.377 75900K .......... .......... .......... .......... .......... 59% 96.0M 1s -2024-04-29T04:26:47Z #15 2.377 75950K .......... .......... .......... .......... .......... 59% 125M 1s -2024-04-29T04:26:47Z #15 2.377 76000K .......... .......... .......... .......... .......... 59% 127M 1s -2024-04-29T04:26:47Z #15 2.378 76050K .......... .......... .......... .......... .......... 59% 122M 1s -2024-04-29T04:26:47Z #15 2.378 76100K .......... .......... .......... .......... .......... 59% 103M 1s -2024-04-29T04:26:47Z #15 2.379 76150K .......... .......... .......... .......... .......... 59% 128M 1s -2024-04-29T04:26:47Z #15 2.379 76200K .......... .......... .......... .......... .......... 59% 137M 1s -2024-04-29T04:26:47Z #15 2.380 76250K .......... .......... .......... .......... .......... 59% 144M 1s -2024-04-29T04:26:47Z #15 2.380 76300K .......... .......... .......... .......... .......... 59% 130M 1s -2024-04-29T04:26:47Z #15 2.380 76350K .......... .......... .......... .......... .......... 59% 10.9M 1s -2024-04-29T04:26:47Z #15 2.385 76400K .......... .......... .......... .......... .......... 59% 113M 1s -2024-04-29T04:26:47Z #15 2.385 76450K .......... .......... .......... .......... .......... 59% 121M 1s -2024-04-29T04:26:47Z #15 2.385 76500K .......... .......... .......... .......... .......... 59% 95.8M 1s -2024-04-29T04:26:47Z #15 2.386 76550K .......... .......... .......... .......... .......... 59% 142M 1s -2024-04-29T04:26:47Z #15 2.386 76600K .......... .......... .......... .......... .......... 59% 109M 1s -2024-04-29T04:26:47Z #15 2.387 76650K .......... .......... .......... .......... .......... 60% 119M 1s -2024-04-29T04:26:47Z #15 2.387 76700K .......... .......... .......... .......... .......... 60% 108M 1s -2024-04-29T04:26:47Z #15 2.388 76750K .......... .......... .......... .......... .......... 60% 128M 1s -2024-04-29T04:26:47Z #15 2.388 76800K .......... .......... .......... .......... .......... 60% 155M 1s -2024-04-29T04:26:47Z #15 2.388 76850K .......... .......... .......... .......... .......... 60% 119M 1s -2024-04-29T04:26:47Z #15 2.389 76900K .......... .......... .......... .......... .......... 60% 121M 1s -2024-04-29T04:26:47Z #15 2.389 76950K .......... .......... .......... .......... .......... 60% 105M 1s -2024-04-29T04:26:47Z #15 2.390 77000K .......... .......... .......... .......... .......... 60% 116M 1s -2024-04-29T04:26:47Z #15 2.390 77050K .......... .......... .......... .......... .......... 60% 105M 1s -2024-04-29T04:26:47Z #15 2.390 77100K .......... .......... .......... .......... .......... 60% 128M 1s -2024-04-29T04:26:47Z #15 2.391 77150K .......... .......... .......... .......... .......... 60% 119M 1s -2024-04-29T04:26:47Z #15 2.392 77200K .......... .......... .......... .......... .......... 60% 136M 1s -2024-04-29T04:26:47Z #15 2.392 77250K .......... .......... .......... .......... .......... 60% 127M 1s -2024-04-29T04:26:47Z #15 2.392 77300K .......... .......... .......... .......... .......... 60% 119M 1s -2024-04-29T04:26:47Z #15 2.392 77350K .......... .......... .......... .......... .......... 60% 38.4M 1s -2024-04-29T04:26:47Z #15 2.394 77400K .......... .......... .......... .......... .......... 60% 109M 1s -2024-04-29T04:26:47Z #15 2.394 77450K .......... .......... .......... .......... .......... 60% 108M 1s -2024-04-29T04:26:47Z #15 2.395 77500K .......... .......... .......... .......... .......... 60% 99.8M 1s -2024-04-29T04:26:47Z #15 2.395 77550K .......... .......... .......... .......... .......... 60% 111M 1s -2024-04-29T04:26:47Z #15 2.396 77600K .......... .......... .......... .......... .......... 60% 123M 1s -2024-04-29T04:26:47Z #15 2.396 77650K .......... .......... .......... .......... .......... 60% 118M 1s -2024-04-29T04:26:47Z #15 2.396 77700K .......... .......... .......... .......... .......... 60% 115M 1s -2024-04-29T04:26:47Z #15 2.398 77750K .......... .......... .......... .......... .......... 60% 157M 1s -2024-04-29T04:26:47Z #15 2.398 77800K .......... .......... .......... .......... .......... 60% 173M 1s -2024-04-29T04:26:47Z #15 2.398 77850K .......... .......... .......... .......... .......... 60% 6.40M 1s -2024-04-29T04:26:47Z #15 2.405 77900K .......... .......... .......... .......... .......... 60% 128M 1s -2024-04-29T04:26:47Z #15 2.406 77950K .......... .......... .......... .......... .......... 61% 114M 1s -2024-04-29T04:26:47Z #15 2.406 78000K .......... .......... .......... .......... .......... 61% 131M 1s -2024-04-29T04:26:47Z #15 2.406 78050K .......... .......... .......... .......... .......... 61% 110M 1s -2024-04-29T04:26:47Z #15 2.407 78100K .......... .......... .......... .......... .......... 61% 132M 1s -2024-04-29T04:26:47Z #15 2.407 78150K .......... .......... .......... .......... .......... 61% 122M 1s -2024-04-29T04:26:47Z #15 2.408 78200K .......... .......... .......... .......... .......... 61% 119M 1s -2024-04-29T04:26:47Z #15 2.409 78250K .......... .......... .......... .......... .......... 61% 133M 1s -2024-04-29T04:26:47Z #15 2.409 78300K .......... .......... .......... .......... .......... 61% 161M 1s -2024-04-29T04:26:47Z #15 2.409 78350K .......... .......... .......... .......... .......... 61% 107M 1s -2024-04-29T04:26:47Z #15 2.409 78400K .......... .......... .......... .......... .......... 61% 125M 1s -2024-04-29T04:26:47Z #15 2.409 78450K .......... .......... .......... .......... .......... 61% 125M 1s -2024-04-29T04:26:47Z #15 2.410 78500K .......... .......... .......... .......... .......... 61% 109M 1s -2024-04-29T04:26:47Z #15 2.410 78550K .......... .......... .......... .......... .......... 61% 124M 1s -2024-04-29T04:26:47Z #15 2.411 78600K .......... .......... .......... .......... .......... 61% 126M 1s -2024-04-29T04:26:47Z #15 2.411 78650K .......... .......... .......... .......... .......... 61% 110M 1s -2024-04-29T04:26:47Z #15 2.411 78700K .......... .......... .......... .......... .......... 61% 96.8M 1s -2024-04-29T04:26:47Z #15 2.412 78750K .......... .......... .......... .......... .......... 61% 115M 1s -2024-04-29T04:26:47Z #15 2.414 78800K .......... .......... .......... .......... .......... 61% 11.0M 1s -2024-04-29T04:26:47Z #15 2.417 78850K .......... .......... .......... .......... .......... 61% 131M 1s -2024-04-29T04:26:47Z #15 2.417 78900K .......... .......... .......... .......... .......... 61% 109M 1s -2024-04-29T04:26:47Z #15 2.417 78950K .......... .......... .......... .......... .......... 61% 125M 1s -2024-04-29T04:26:47Z #15 2.418 79000K .......... .......... .......... .......... .......... 61% 118M 1s -2024-04-29T04:26:47Z #15 2.418 79050K .......... .......... .......... .......... .......... 61% 119M 1s -2024-04-29T04:26:47Z #15 2.419 79100K .......... .......... .......... .......... .......... 61% 116M 1s -2024-04-29T04:26:47Z #15 2.419 79150K .......... .......... .......... .......... .......... 61% 129M 1s -2024-04-29T04:26:47Z #15 2.420 79200K .......... .......... .......... .......... .......... 62% 114M 1s -2024-04-29T04:26:47Z #15 2.420 79250K .......... .......... .......... .......... .......... 62% 133M 1s -2024-04-29T04:26:47Z #15 2.420 79300K .......... .......... .......... .......... .......... 62% 103M 1s -2024-04-29T04:26:47Z #15 2.422 79350K .......... .......... .......... .......... .......... 62% 162M 1s -2024-04-29T04:26:47Z #15 2.422 79400K .......... .......... .......... .......... .......... 62% 121M 1s -2024-04-29T04:26:47Z #15 2.422 79450K .......... .......... .......... .......... .......... 62% 129M 1s -2024-04-29T04:26:47Z #15 2.422 79500K .......... .......... .......... .......... .......... 62% 128M 1s -2024-04-29T04:26:47Z #15 2.423 79550K .......... .......... .......... .......... .......... 62% 121M 1s -2024-04-29T04:26:47Z #15 2.423 79600K .......... .......... .......... .......... .......... 62% 105M 1s -2024-04-29T04:26:47Z #15 2.423 79650K .......... .......... .......... .......... .......... 62% 117M 1s -2024-04-29T04:26:47Z #15 2.424 79700K .......... .......... .......... .......... .......... 62% 138M 1s -2024-04-29T04:26:47Z #15 2.426 79750K .......... .......... .......... .......... .......... 62% 122M 1s -2024-04-29T04:26:47Z #15 2.426 79800K .......... .......... .......... .......... .......... 62% 10.8M 1s -2024-04-29T04:26:47Z #15 2.429 79850K .......... .......... .......... .......... .......... 62% 116M 1s -2024-04-29T04:26:47Z #15 2.429 79900K .......... .......... .......... .......... .......... 62% 63.3M 1s -2024-04-29T04:26:47Z #15 2.430 79950K .......... .......... .......... .......... .......... 62% 44.8M 1s -2024-04-29T04:26:47Z #15 2.432 80000K .......... .......... .......... .......... .......... 62% 50.0M 1s -2024-04-29T04:26:47Z #15 2.437 80050K .......... .......... .......... .......... .......... 62% 115M 1s -2024-04-29T04:26:47Z #15 2.437 80100K .......... .......... .......... .......... .......... 62% 132M 1s -2024-04-29T04:26:47Z #15 2.437 80150K .......... .......... .......... .......... .......... 62% 133M 1s -2024-04-29T04:26:47Z #15 2.437 80200K .......... .......... .......... .......... .......... 62% 133M 1s -2024-04-29T04:26:47Z #15 2.437 80250K .......... .......... .......... .......... .......... 62% 116M 1s -2024-04-29T04:26:47Z #15 2.437 80300K .......... .......... .......... .......... .......... 62% 136M 1s -2024-04-29T04:26:47Z #15 2.437 80350K .......... .......... .......... .......... .......... 62% 94.6M 1s -2024-04-29T04:26:47Z #15 2.437 80400K .......... .......... .......... .......... .......... 62% 129M 1s -2024-04-29T04:26:47Z #15 2.437 80450K .......... .......... .......... .......... .......... 62% 112M 1s -2024-04-29T04:26:47Z #15 2.437 80500K .......... .......... .......... .......... .......... 63% 130M 1s -2024-04-29T04:26:47Z #15 2.437 80550K .......... .......... .......... .......... .......... 63% 134M 1s -2024-04-29T04:26:47Z #15 2.445 80600K .......... .......... .......... .......... .......... 63% 5.34M 1s -2024-04-29T04:26:47Z #15 2.446 80650K .......... .......... .......... .......... .......... 63% 53.0M 1s -2024-04-29T04:26:47Z #15 2.447 80700K .......... .......... .......... .......... .......... 63% 85.0M 1s -2024-04-29T04:26:47Z #15 2.457 80750K .......... .......... .......... .......... .......... 63% 182M 1s -2024-04-29T04:26:47Z #15 2.457 80800K .......... .......... .......... .......... .......... 63% 168M 1s -2024-04-29T04:26:47Z #15 2.457 80850K .......... .......... .......... .......... .......... 63% 131M 1s -2024-04-29T04:26:47Z #15 2.457 80900K .......... .......... .......... .......... .......... 63% 121M 1s -2024-04-29T04:26:47Z #15 2.457 80950K .......... .......... .......... .......... .......... 63% 111M 1s -2024-04-29T04:26:47Z #15 2.457 81000K .......... .......... .......... .......... .......... 63% 106M 1s -2024-04-29T04:26:47Z #15 2.457 81050K .......... .......... .......... .......... .......... 63% 127M 1s -2024-04-29T04:26:47Z #15 2.457 81100K .......... .......... .......... .......... .......... 63% 136M 1s -2024-04-29T04:26:47Z #15 2.457 81150K .......... .......... .......... .......... .......... 63% 121M 1s -2024-04-29T04:26:47Z #15 2.457 81200K .......... .......... .......... .......... .......... 63% 96.4M 1s -2024-04-29T04:26:47Z #15 2.457 81250K .......... .......... .......... .......... .......... 63% 130M 1s -2024-04-29T04:26:47Z #15 2.457 81300K .......... .......... .......... .......... .......... 63% 139M 1s -2024-04-29T04:26:47Z #15 2.457 81350K .......... .......... .......... .......... .......... 63% 124M 1s -2024-04-29T04:26:47Z #15 2.457 81400K .......... .......... .......... .......... .......... 63% 106M 1s -2024-04-29T04:26:47Z #15 2.457 81450K .......... .......... .......... .......... .......... 63% 144M 1s -2024-04-29T04:26:47Z #15 2.457 81500K .......... .......... .......... .......... .......... 63% 163M 1s -2024-04-29T04:26:47Z #15 2.457 81550K .......... .......... .......... .......... .......... 63% 177M 1s -2024-04-29T04:26:47Z #15 2.457 81600K .......... .......... .......... .......... .......... 63% 133M 1s -2024-04-29T04:26:47Z #15 2.457 81650K .......... .......... .......... .......... .......... 63% 139M 1s -2024-04-29T04:26:47Z #15 2.457 81700K .......... .......... .......... .......... .......... 63% 139M 1s -2024-04-29T04:26:47Z #15 2.457 81750K .......... .......... .......... .......... .......... 64% 152M 1s -2024-04-29T04:26:47Z #15 2.457 81800K .......... .......... .......... .......... .......... 64% 149M 1s -2024-04-29T04:26:47Z #15 2.457 81850K .......... .......... .......... .......... .......... 64% 173M 1s -2024-04-29T04:26:47Z #15 2.457 81900K .......... .......... .......... .......... .......... 64% 145M 1s -2024-04-29T04:26:47Z #15 2.457 81950K .......... .......... .......... .......... .......... 64% 165M 1s -2024-04-29T04:26:47Z #15 2.457 82000K .......... .......... .......... .......... .......... 64% 105M 1s -2024-04-29T04:26:47Z #15 2.457 82050K .......... .......... .......... .......... .......... 64% 135M 1s -2024-04-29T04:26:47Z #15 2.457 82100K .......... .......... .......... .......... .......... 64% 119M 1s -2024-04-29T04:26:47Z #15 2.458 82150K .......... .......... .......... .......... .......... 64% 141M 1s -2024-04-29T04:26:47Z #15 2.458 82200K .......... .......... .......... .......... .......... 64% 121M 1s -2024-04-29T04:26:47Z #15 2.458 82250K .......... .......... .......... .......... .......... 64% 127M 1s -2024-04-29T04:26:47Z #15 2.459 82300K .......... .......... .......... .......... .......... 64% 121M 1s -2024-04-29T04:26:47Z #15 2.459 82350K .......... .......... .......... .......... .......... 64% 116M 1s -2024-04-29T04:26:47Z #15 2.459 82400K .......... .......... .......... .......... .......... 64% 132M 1s -2024-04-29T04:26:47Z #15 2.460 82450K .......... .......... .......... .......... .......... 64% 120M 1s -2024-04-29T04:26:47Z #15 2.460 82500K .......... .......... .......... .......... .......... 64% 114M 1s -2024-04-29T04:26:47Z #15 2.461 82550K .......... .......... .......... .......... .......... 64% 101M 1s -2024-04-29T04:26:47Z #15 2.462 82600K .......... .......... .......... .......... .......... 64% 129M 1s -2024-04-29T04:26:47Z #15 2.462 82650K .......... .......... .......... .......... .......... 64% 155M 1s -2024-04-29T04:26:47Z #15 2.462 82700K .......... .......... .......... .......... .......... 64% 124M 1s -2024-04-29T04:26:47Z #15 2.462 82750K .......... .......... .......... .......... .......... 64% 96.2M 1s -2024-04-29T04:26:47Z #15 2.463 82800K .......... .......... .......... .......... .......... 64% 123M 1s -2024-04-29T04:26:47Z #15 2.463 82850K .......... .......... .......... .......... .......... 64% 126M 1s -2024-04-29T04:26:47Z #15 2.464 82900K .......... .......... .......... .......... .......... 64% 139M 1s -2024-04-29T04:26:47Z #15 2.464 82950K .......... .......... .......... .......... .......... 64% 118M 1s -2024-04-29T04:26:47Z #15 2.470 83000K .......... .......... .......... .......... .......... 64% 107M 1s -2024-04-29T04:26:47Z #15 2.470 83050K .......... .......... .......... .......... .......... 65% 92.7M 1s -2024-04-29T04:26:47Z #15 2.470 83100K .......... .......... .......... .......... .......... 65% 123M 1s -2024-04-29T04:26:47Z #15 2.470 83150K .......... .......... .......... .......... .......... 65% 120M 1s -2024-04-29T04:26:47Z #15 2.470 83200K .......... .......... .......... .......... .......... 65% 164M 1s -2024-04-29T04:26:47Z #15 2.470 83250K .......... .......... .......... .......... .......... 65% 155M 1s -2024-04-29T04:26:47Z #15 2.470 83300K .......... .......... .......... .......... .......... 65% 151M 1s -2024-04-29T04:26:47Z #15 2.470 83350K .......... .......... .......... .......... .......... 65% 140M 1s -2024-04-29T04:26:47Z #15 2.470 83400K .......... .......... .......... .......... .......... 65% 169M 1s -2024-04-29T04:26:47Z #15 2.470 83450K .......... .......... .......... .......... .......... 65% 144M 1s -2024-04-29T04:26:47Z #15 2.470 83500K .......... .......... .......... .......... .......... 65% 155M 1s -2024-04-29T04:26:47Z #15 2.470 83550K .......... .......... .......... .......... .......... 65% 133M 1s -2024-04-29T04:26:47Z #15 2.470 83600K .......... .......... .......... .......... .......... 65% 117M 1s -2024-04-29T04:26:47Z #15 2.470 83650K .......... .......... .......... .......... .......... 65% 123M 1s -2024-04-29T04:26:47Z #15 2.470 83700K .......... .......... .......... .......... .......... 65% 135M 1s -2024-04-29T04:26:47Z #15 2.470 83750K .......... .......... .......... .......... .......... 65% 111M 1s -2024-04-29T04:26:47Z #15 2.470 83800K .......... .......... .......... .......... .......... 65% 134M 1s -2024-04-29T04:26:47Z #15 2.471 83850K .......... .......... .......... .......... .......... 65% 134M 1s -2024-04-29T04:26:47Z #15 2.471 83900K .......... .......... .......... .......... .......... 65% 118M 1s -2024-04-29T04:26:47Z #15 2.471 83950K .......... .......... .......... .......... .......... 65% 118M 1s -2024-04-29T04:26:47Z #15 2.472 84000K .......... .......... .......... .......... .......... 65% 137M 1s -2024-04-29T04:26:47Z #15 2.472 84050K .......... .......... .......... .......... .......... 65% 120M 1s -2024-04-29T04:26:47Z #15 2.473 84100K .......... .......... .......... .......... .......... 65% 102M 1s -2024-04-29T04:26:47Z #15 2.477 84150K .......... .......... .......... .......... .......... 65% 92.8M 1s -2024-04-29T04:26:47Z #15 2.477 84200K .......... .......... .......... .......... .......... 65% 120M 1s -2024-04-29T04:26:47Z #15 2.477 84250K .......... .......... .......... .......... .......... 65% 147M 1s -2024-04-29T04:26:47Z #15 2.477 84300K .......... .......... .......... .......... .......... 66% 146M 1s -2024-04-29T04:26:47Z #15 2.477 84350K .......... .......... .......... .......... .......... 66% 159M 1s -2024-04-29T04:26:47Z #15 2.477 84400K .......... .......... .......... .......... .......... 66% 167M 1s -2024-04-29T04:26:47Z #15 2.477 84450K .......... .......... .......... .......... .......... 66% 138M 1s -2024-04-29T04:26:47Z #15 2.477 84500K .......... .......... .......... .......... .......... 66% 163M 1s -2024-04-29T04:26:47Z #15 2.477 84550K .......... .......... .......... .......... .......... 66% 150M 1s -2024-04-29T04:26:47Z #15 2.477 84600K .......... .......... .......... .......... .......... 66% 172M 1s -2024-04-29T04:26:47Z #15 2.477 84650K .......... .......... .......... .......... .......... 66% 95.2M 1s -2024-04-29T04:26:47Z #15 2.478 84700K .......... .......... .......... .......... .......... 66% 134M 1s -2024-04-29T04:26:47Z #15 2.478 84750K .......... .......... .......... .......... .......... 66% 132M 1s -2024-04-29T04:26:47Z #15 2.478 84800K .......... .......... .......... .......... .......... 66% 120M 1s -2024-04-29T04:26:47Z #15 2.478 84850K .......... .......... .......... .......... .......... 66% 125M 1s -2024-04-29T04:26:47Z #15 2.478 84900K .......... .......... .......... .......... .......... 66% 122M 1s -2024-04-29T04:26:47Z #15 2.479 84950K .......... .......... .......... .......... .......... 66% 122M 1s -2024-04-29T04:26:47Z #15 2.479 85000K .......... .......... .......... .......... .......... 66% 124M 1s -2024-04-29T04:26:47Z #15 2.480 85050K .......... .......... .......... .......... .......... 66% 126M 1s -2024-04-29T04:26:47Z #15 2.480 85100K .......... .......... .......... .......... .......... 66% 90.0M 1s -2024-04-29T04:26:47Z #15 2.481 85150K .......... .......... .......... .......... .......... 66% 130M 1s -2024-04-29T04:26:47Z #15 2.481 85200K .......... .......... .......... .......... .......... 66% 126M 1s -2024-04-29T04:26:47Z #15 2.485 85250K .......... .......... .......... .......... .......... 66% 94.5M 1s -2024-04-29T04:26:47Z #15 2.486 85300K .......... .......... .......... .......... .......... 66% 155M 1s -2024-04-29T04:26:47Z #15 2.486 85350K .......... .......... .......... .......... .......... 66% 135M 1s -2024-04-29T04:26:47Z #15 2.486 85400K .......... .......... .......... .......... .......... 66% 181M 1s -2024-04-29T04:26:47Z #15 2.486 85450K .......... .......... .......... .......... .......... 66% 137M 1s -2024-04-29T04:26:47Z #15 2.486 85500K .......... .......... .......... .......... .......... 66% 181M 1s -2024-04-29T04:26:47Z #15 2.486 85550K .......... .......... .......... .......... .......... 66% 138M 1s -2024-04-29T04:26:47Z #15 2.486 85600K .......... .......... .......... .......... .......... 67% 142M 1s -2024-04-29T04:26:47Z #15 2.486 85650K .......... .......... .......... .......... .......... 67% 163M 1s -2024-04-29T04:26:47Z #15 2.486 85700K .......... .......... .......... .......... .......... 67% 112M 1s -2024-04-29T04:26:47Z #15 2.486 85750K .......... .......... .......... .......... .......... 67% 115M 1s -2024-04-29T04:26:47Z #15 2.486 85800K .......... .......... .......... .......... .......... 67% 147M 1s -2024-04-29T04:26:47Z #15 2.486 85850K .......... .......... .......... .......... .......... 67% 138M 1s -2024-04-29T04:26:47Z #15 2.486 85900K .......... .......... .......... .......... .......... 67% 122M 1s -2024-04-29T04:26:47Z #15 2.487 85950K .......... .......... .......... .......... .......... 67% 118M 1s -2024-04-29T04:26:47Z #15 2.487 86000K .......... .......... .......... .......... .......... 67% 129M 1s -2024-04-29T04:26:47Z #15 2.487 86050K .......... .......... .......... .......... .......... 67% 127M 1s -2024-04-29T04:26:47Z #15 2.488 86100K .......... .......... .......... .......... .......... 67% 131M 1s -2024-04-29T04:26:47Z #15 2.488 86150K .......... .......... .......... .......... .......... 67% 122M 1s -2024-04-29T04:26:47Z #15 2.489 86200K .......... .......... .......... .......... .......... 67% 124M 1s -2024-04-29T04:26:47Z #15 2.489 86250K .......... .......... .......... .......... .......... 67% 110M 1s -2024-04-29T04:26:47Z #15 2.489 86300K .......... .......... .......... .......... .......... 67% 117M 1s -2024-04-29T04:26:47Z #15 2.490 86350K .......... .......... .......... .......... .......... 67% 131M 1s -2024-04-29T04:26:47Z #15 2.490 86400K .......... .......... .......... .......... .......... 67% 145M 1s -2024-04-29T04:26:47Z #15 2.490 86450K .......... .......... .......... .......... .......... 67% 106M 1s -2024-04-29T04:26:47Z #15 2.491 86500K .......... .......... .......... .......... .......... 67% 124M 1s -2024-04-29T04:26:47Z #15 2.492 86550K .......... .......... .......... .......... .......... 67% 118M 1s -2024-04-29T04:26:47Z #15 2.492 86600K .......... .......... .......... .......... .......... 67% 149M 1s -2024-04-29T04:26:47Z #15 2.492 86650K .......... .......... .......... .......... .......... 67% 109M 1s -2024-04-29T04:26:47Z #15 2.493 86700K .......... .......... .......... .......... .......... 67% 105M 1s -2024-04-29T04:26:47Z #15 2.493 86750K .......... .......... .......... .......... .......... 67% 125M 1s -2024-04-29T04:26:47Z #15 2.493 86800K .......... .......... .......... .......... .......... 67% 124M 1s -2024-04-29T04:26:47Z #15 2.494 86850K .......... .......... .......... .......... .......... 68% 135M 1s -2024-04-29T04:26:47Z #15 2.494 86900K .......... .......... .......... .......... .......... 68% 115M 1s -2024-04-29T04:26:47Z #15 2.495 86950K .......... .......... .......... .......... .......... 68% 135M 1s -2024-04-29T04:26:47Z #15 2.495 87000K .......... .......... .......... .......... .......... 68% 124M 1s -2024-04-29T04:26:47Z #15 2.495 87050K .......... .......... .......... .......... .......... 68% 99.7M 1s -2024-04-29T04:26:47Z #15 2.502 87100K .......... .......... .......... .......... .......... 68% 82.7M 1s -2024-04-29T04:26:47Z #15 2.502 87150K .......... .......... .......... .......... .......... 68% 85.7M 1s -2024-04-29T04:26:47Z #15 2.502 87200K .......... .......... .......... .......... .......... 68% 121M 1s -2024-04-29T04:26:47Z #15 2.502 87250K .......... .......... .......... .......... .......... 68% 180M 1s -2024-04-29T04:26:47Z #15 2.502 87300K .......... .......... .......... .......... .......... 68% 160M 1s -2024-04-29T04:26:47Z #15 2.502 87350K .......... .......... .......... .......... .......... 68% 163M 1s -2024-04-29T04:26:47Z #15 2.502 87400K .......... .......... .......... .......... .......... 68% 132M 1s -2024-04-29T04:26:47Z #15 2.502 87450K .......... .......... .......... .......... .......... 68% 159M 1s -2024-04-29T04:26:47Z #15 2.502 87500K .......... .......... .......... .......... .......... 68% 146M 1s -2024-04-29T04:26:47Z #15 2.502 87550K .......... .......... .......... .......... .......... 68% 162M 1s -2024-04-29T04:26:47Z #15 2.502 87600K .......... .......... .......... .......... .......... 68% 178M 1s -2024-04-29T04:26:47Z #15 2.502 87650K .......... .......... .......... .......... .......... 68% 132M 1s -2024-04-29T04:26:47Z #15 2.502 87700K .......... .......... .......... .......... .......... 68% 156M 1s -2024-04-29T04:26:47Z #15 2.502 87750K .......... .......... .......... .......... .......... 68% 118M 1s -2024-04-29T04:26:47Z #15 2.502 87800K .......... .......... .......... .......... .......... 68% 144M 1s -2024-04-29T04:26:47Z #15 2.502 87850K .......... .......... .......... .......... .......... 68% 110M 1s -2024-04-29T04:26:47Z #15 2.502 87900K .......... .......... .......... .......... .......... 68% 127M 1s -2024-04-29T04:26:47Z #15 2.503 87950K .......... .......... .......... .......... .......... 68% 126M 1s -2024-04-29T04:26:47Z #15 2.503 88000K .......... .......... .......... .......... .......... 68% 120M 1s -2024-04-29T04:26:47Z #15 2.503 88050K .......... .......... .......... .......... .......... 68% 122M 1s -2024-04-29T04:26:47Z #15 2.503 88100K .......... .......... .......... .......... .......... 68% 123M 1s -2024-04-29T04:26:47Z #15 2.504 88150K .......... .......... .......... .......... .......... 69% 120M 1s -2024-04-29T04:26:47Z #15 2.504 88200K .......... .......... .......... .......... .......... 69% 135M 1s -2024-04-29T04:26:47Z #15 2.505 88250K .......... .......... .......... .......... .......... 69% 113M 1s -2024-04-29T04:26:47Z #15 2.505 88300K .......... .......... .......... .......... .......... 69% 95.3M 1s -2024-04-29T04:26:47Z #15 2.510 88350K .......... .......... .......... .......... .......... 69% 140M 1s -2024-04-29T04:26:47Z #15 2.510 88400K .......... .......... .......... .......... .......... 69% 148M 1s -2024-04-29T04:26:47Z #15 2.510 88450K .......... .......... .......... .......... .......... 69% 91.4M 1s -2024-04-29T04:26:47Z #15 2.510 88500K .......... .......... .......... .......... .......... 69% 106M 1s -2024-04-29T04:26:47Z #15 2.510 88550K .......... .......... .......... .......... .......... 69% 168M 1s -2024-04-29T04:26:47Z #15 2.510 88600K .......... .......... .......... .......... .......... 69% 162M 1s -2024-04-29T04:26:47Z #15 2.510 88650K .......... .......... .......... .......... .......... 69% 162M 1s -2024-04-29T04:26:47Z #15 2.510 88700K .......... .......... .......... .......... .......... 69% 126M 1s -2024-04-29T04:26:47Z #15 2.510 88750K .......... .......... .......... .......... .......... 69% 157M 1s -2024-04-29T04:26:47Z #15 2.510 88800K .......... .......... .......... .......... .......... 69% 111M 1s -2024-04-29T04:26:47Z #15 2.510 88850K .......... .......... .......... .......... .......... 69% 144M 1s -2024-04-29T04:26:47Z #15 2.510 88900K .......... .......... .......... .......... .......... 69% 107M 1s -2024-04-29T04:26:47Z #15 2.510 88950K .......... .......... .......... .......... .......... 69% 112M 1s -2024-04-29T04:26:47Z #15 2.511 89000K .......... .......... .......... .......... .......... 69% 134M 0s -2024-04-29T04:26:47Z #15 2.511 89050K .......... .......... .......... .......... .......... 69% 130M 0s -2024-04-29T04:26:47Z #15 2.512 89100K .......... .......... .......... .......... .......... 69% 140M 0s -2024-04-29T04:26:47Z #15 2.512 89150K .......... .......... .......... .......... .......... 69% 86.2M 0s -2024-04-29T04:26:47Z #15 2.513 89200K .......... .......... .......... .......... .......... 69% 80.1M 0s -2024-04-29T04:26:47Z #15 2.513 89250K .......... .......... .......... .......... .......... 69% 97.2M 0s -2024-04-29T04:26:47Z #15 2.517 89300K .......... .......... .......... .......... .......... 69% 105M 0s -2024-04-29T04:26:47Z #15 2.517 89350K .......... .......... .......... .......... .......... 69% 121M 0s -2024-04-29T04:26:47Z #15 2.518 89400K .......... .......... .......... .......... .......... 69% 124M 0s -2024-04-29T04:26:47Z #15 2.518 89450K .......... .......... .......... .......... .......... 70% 173M 0s -2024-04-29T04:26:47Z #15 2.518 89500K .......... .......... .......... .......... .......... 70% 143M 0s -2024-04-29T04:26:47Z #15 2.518 89550K .......... .......... .......... .......... .......... 70% 151M 0s -2024-04-29T04:26:47Z #15 2.518 89600K .......... .......... .......... .......... .......... 70% 146M 0s -2024-04-29T04:26:47Z #15 2.518 89650K .......... .......... .......... .......... .......... 70% 154M 0s -2024-04-29T04:26:47Z #15 2.518 89700K .......... .......... .......... .......... .......... 70% 166M 0s -2024-04-29T04:26:47Z #15 2.518 89750K .......... .......... .......... .......... .......... 70% 149M 0s -2024-04-29T04:26:47Z #15 2.518 89800K .......... .......... .......... .......... .......... 70% 126M 0s -2024-04-29T04:26:47Z #15 2.518 89850K .......... .......... .......... .......... .......... 70% 102M 0s -2024-04-29T04:26:47Z #15 2.518 89900K .......... .......... .......... .......... .......... 70% 132M 0s -2024-04-29T04:26:47Z #15 2.518 89950K .......... .......... .......... .......... .......... 70% 128M 0s -2024-04-29T04:26:47Z #15 2.519 90000K .......... .......... .......... .......... .......... 70% 120M 0s -2024-04-29T04:26:47Z #15 2.519 90050K .......... .......... .......... .......... .......... 70% 128M 0s -2024-04-29T04:26:47Z #15 2.519 90100K .......... .......... .......... .......... .......... 70% 122M 0s -2024-04-29T04:26:47Z #15 2.519 90150K .......... .......... .......... .......... .......... 70% 105M 0s -2024-04-29T04:26:47Z #15 2.520 90200K .......... .......... .......... .......... .......... 70% 132M 0s -2024-04-29T04:26:47Z #15 2.520 90250K .......... .......... .......... .......... .......... 70% 163M 0s -2024-04-29T04:26:47Z #15 2.520 90300K .......... .......... .......... .......... .......... 70% 107M 0s -2024-04-29T04:26:47Z #15 2.521 90350K .......... .......... .......... .......... .......... 70% 101M 0s -2024-04-29T04:26:47Z #15 2.521 90400K .......... .......... .......... .......... .......... 70% 125M 0s -2024-04-29T04:26:47Z #15 2.522 90450K .......... .......... .......... .......... .......... 70% 142M 0s -2024-04-29T04:26:47Z #15 2.525 90500K .......... .......... .......... .......... .......... 70% 121M 0s -2024-04-29T04:26:47Z #15 2.525 90550K .......... .......... .......... .......... .......... 70% 86.8M 0s -2024-04-29T04:26:47Z #15 2.525 90600K .......... .......... .......... .......... .......... 70% 124M 0s -2024-04-29T04:26:47Z #15 2.525 90650K .......... .......... .......... .......... .......... 70% 106M 0s -2024-04-29T04:26:47Z #15 2.525 90700K .......... .......... .......... .......... .......... 71% 167M 0s -2024-04-29T04:26:47Z #15 2.525 90750K .......... .......... .......... .......... .......... 71% 113M 0s -2024-04-29T04:26:47Z #15 2.525 90800K .......... .......... .......... .......... .......... 71% 124M 0s -2024-04-29T04:26:47Z #15 2.525 90850K .......... .......... .......... .......... .......... 71% 105M 0s -2024-04-29T04:26:47Z #15 2.525 90900K .......... .......... .......... .......... .......... 71% 119M 0s -2024-04-29T04:26:47Z #15 2.526 90950K .......... .......... .......... .......... .......... 71% 126M 0s -2024-04-29T04:26:47Z #15 2.527 91000K .......... .......... .......... .......... .......... 71% 123M 0s -2024-04-29T04:26:47Z #15 2.527 91050K .......... .......... .......... .......... .......... 71% 91.4M 0s -2024-04-29T04:26:47Z #15 2.527 91100K .......... .......... .......... .......... .......... 71% 112M 0s -2024-04-29T04:26:47Z #15 2.528 91150K .......... .......... .......... .......... .......... 71% 120M 0s -2024-04-29T04:26:47Z #15 2.529 91200K .......... .......... .......... .......... .......... 71% 129M 0s -2024-04-29T04:26:47Z #15 2.530 91250K .......... .......... .......... .......... .......... 71% 10.8M 0s -2024-04-29T04:26:47Z #15 2.533 91300K .......... .......... .......... .......... .......... 71% 126M 0s -2024-04-29T04:26:47Z #15 2.533 91350K .......... .......... .......... .......... .......... 71% 107M 0s -2024-04-29T04:26:47Z #15 2.535 91400K .......... .......... .......... .......... .......... 71% 151M 0s -2024-04-29T04:26:47Z #15 2.535 91450K .......... .......... .......... .......... .......... 71% 120M 0s -2024-04-29T04:26:47Z #15 2.535 91500K .......... .......... .......... .......... .......... 71% 136M 0s -2024-04-29T04:26:47Z #15 2.535 91550K .......... .......... .......... .......... .......... 71% 102M 0s -2024-04-29T04:26:47Z #15 2.535 91600K .......... .......... .......... .......... .......... 71% 121M 0s -2024-04-29T04:26:47Z #15 2.536 91650K .......... .......... .......... .......... .......... 71% 137M 0s -2024-04-29T04:26:47Z #15 2.536 91700K .......... .......... .......... .......... .......... 71% 10.9M 0s -2024-04-29T04:26:47Z #15 2.541 91750K .......... .......... .......... .......... .......... 71% 118M 0s -2024-04-29T04:26:47Z #15 2.541 91800K .......... .......... .......... .......... .......... 71% 120M 0s -2024-04-29T04:26:47Z #15 2.541 91850K .......... .......... .......... .......... .......... 71% 115M 0s -2024-04-29T04:26:47Z #15 2.542 91900K .......... .......... .......... .......... .......... 71% 127M 0s -2024-04-29T04:26:47Z #15 2.542 91950K .......... .......... .......... .......... .......... 71% 136M 0s -2024-04-29T04:26:47Z #15 2.543 92000K .......... .......... .......... .......... .......... 72% 130M 0s -2024-04-29T04:26:47Z #15 2.544 92050K .......... .......... .......... .......... .......... 72% 106M 0s -2024-04-29T04:26:47Z #15 2.544 92100K .......... .......... .......... .......... .......... 72% 169M 0s -2024-04-29T04:26:47Z #15 2.544 92150K .......... .......... .......... .......... .......... 72% 133M 0s -2024-04-29T04:26:47Z #15 2.544 92200K .......... .......... .......... .......... .......... 72% 130M 0s -2024-04-29T04:26:47Z #15 2.544 92250K .......... .......... .......... .......... .......... 72% 21.0M 0s -2024-04-29T04:26:47Z #15 2.547 92300K .......... .......... .......... .......... .......... 72% 113M 0s -2024-04-29T04:26:47Z #15 2.547 92350K .......... .......... .......... .......... .......... 72% 111M 0s -2024-04-29T04:26:47Z #15 2.548 92400K .......... .......... .......... .......... .......... 72% 123M 0s -2024-04-29T04:26:47Z #15 2.548 92450K .......... .......... .......... .......... .......... 72% 138M 0s -2024-04-29T04:26:47Z #15 2.548 92500K .......... .......... .......... .......... .......... 72% 108M 0s -2024-04-29T04:26:47Z #15 2.550 92550K .......... .......... .......... .......... .......... 72% 185M 0s -2024-04-29T04:26:47Z #15 2.550 92600K .......... .......... .......... .......... .......... 72% 155M 0s -2024-04-29T04:26:47Z #15 2.550 92650K .......... .......... .......... .......... .......... 72% 125M 0s -2024-04-29T04:26:47Z #15 2.550 92700K .......... .......... .......... .......... .......... 72% 137M 0s -2024-04-29T04:26:47Z #15 2.550 92750K .......... .......... .......... .......... .......... 72% 145M 0s -2024-04-29T04:26:47Z #15 2.551 92800K .......... .......... .......... .......... .......... 72% 107M 0s -2024-04-29T04:26:47Z #15 2.551 92850K .......... .......... .......... .......... .......... 72% 145M 0s -2024-04-29T04:26:47Z #15 2.551 92900K .......... .......... .......... .......... .......... 72% 121M 0s -2024-04-29T04:26:47Z #15 2.552 92950K .......... .......... .......... .......... .......... 72% 133M 0s -2024-04-29T04:26:47Z #15 2.553 93000K .......... .......... .......... .......... .......... 72% 95.3M 0s -2024-04-29T04:26:47Z #15 2.553 93050K .......... .......... .......... .......... .......... 72% 158M 0s -2024-04-29T04:26:47Z #15 2.553 93100K .......... .......... .......... .......... .......... 72% 143M 0s -2024-04-29T04:26:47Z #15 2.553 93150K .......... .......... .......... .......... .......... 72% 118M 0s -2024-04-29T04:26:47Z #15 2.554 93200K .......... .......... .......... .......... .......... 72% 113M 0s -2024-04-29T04:26:47Z #15 2.554 93250K .......... .......... .......... .......... .......... 73% 129M 0s -2024-04-29T04:26:47Z #15 2.555 93300K .......... .......... .......... .......... .......... 73% 116M 0s -2024-04-29T04:26:47Z #15 2.555 93350K .......... .......... .......... .......... .......... 73% 130M 0s -2024-04-29T04:26:47Z #15 2.555 93400K .......... .......... .......... .......... .......... 73% 107M 0s -2024-04-29T04:26:47Z #15 2.556 93450K .......... .......... .......... .......... .......... 73% 122M 0s -2024-04-29T04:26:47Z #15 2.556 93500K .......... .......... .......... .......... .......... 73% 132M 0s -2024-04-29T04:26:47Z #15 2.558 93550K .......... .......... .......... .......... .......... 73% 5.77M 0s -2024-04-29T04:26:47Z #15 2.565 93600K .......... .......... .......... .......... .......... 73% 112M 0s -2024-04-29T04:26:47Z #15 2.565 93650K .......... .......... .......... .......... .......... 73% 121M 0s -2024-04-29T04:26:47Z #15 2.566 93700K .......... .......... .......... .......... .......... 73% 132M 0s -2024-04-29T04:26:47Z #15 2.566 93750K .......... .......... .......... .......... .......... 73% 128M 0s -2024-04-29T04:26:47Z #15 2.567 93800K .......... .......... .......... .......... .......... 73% 122M 0s -2024-04-29T04:26:47Z #15 2.568 93850K .......... .......... .......... .......... .......... 73% 127M 0s -2024-04-29T04:26:47Z #15 2.568 93900K .......... .......... .......... .......... .......... 73% 113M 0s -2024-04-29T04:26:47Z #15 2.568 93950K .......... .......... .......... .......... .......... 73% 132M 0s -2024-04-29T04:26:47Z #15 2.570 94000K .......... .......... .......... .......... .......... 73% 97.1M 0s -2024-04-29T04:26:47Z #15 2.570 94050K .......... .......... .......... .......... .......... 73% 123M 0s -2024-04-29T04:26:47Z #15 2.570 94100K .......... .......... .......... .......... .......... 73% 127M 0s -2024-04-29T04:26:47Z #15 2.570 94150K .......... .......... .......... .......... .......... 73% 165M 0s -2024-04-29T04:26:47Z #15 2.570 94200K .......... .......... .......... .......... .......... 73% 108M 0s -2024-04-29T04:26:47Z #15 2.570 94250K .......... .......... .......... .......... .......... 73% 125M 0s -2024-04-29T04:26:47Z #15 2.571 94300K .......... .......... .......... .......... .......... 73% 131M 0s -2024-04-29T04:26:47Z #15 2.571 94350K .......... .......... .......... .......... .......... 73% 110M 0s -2024-04-29T04:26:47Z #15 2.571 94400K .......... .......... .......... .......... .......... 73% 135M 0s -2024-04-29T04:26:47Z #15 2.572 94450K .......... .......... .......... .......... .......... 73% 123M 0s -2024-04-29T04:26:47Z #15 2.572 94500K .......... .......... .......... .......... .......... 73% 10.8M 0s -2024-04-29T04:26:47Z #15 2.577 94550K .......... .......... .......... .......... .......... 74% 117M 0s -2024-04-29T04:26:47Z #15 2.578 94600K .......... .......... .......... .......... .......... 74% 138M 0s -2024-04-29T04:26:47Z #15 2.578 94650K .......... .......... .......... .......... .......... 74% 134M 0s -2024-04-29T04:26:47Z #15 2.578 94700K .......... .......... .......... .......... .......... 74% 134M 0s -2024-04-29T04:26:47Z #15 2.578 94750K .......... .......... .......... .......... .......... 74% 121M 0s -2024-04-29T04:26:47Z #15 2.579 94800K .......... .......... .......... .......... .......... 74% 152M 0s -2024-04-29T04:26:47Z #15 2.579 94850K .......... .......... .......... .......... .......... 74% 134M 0s -2024-04-29T04:26:47Z #15 2.579 94900K .......... .......... .......... .......... .......... 74% 121M 0s -2024-04-29T04:26:47Z #15 2.580 94950K .......... .......... .......... .......... .......... 74% 166M 0s -2024-04-29T04:26:47Z #15 2.581 95000K .......... .......... .......... .......... .......... 74% 135M 0s -2024-04-29T04:26:47Z #15 2.581 95050K .......... .......... .......... .......... .......... 74% 137M 0s -2024-04-29T04:26:47Z #15 2.581 95100K .......... .......... .......... .......... .......... 74% 108M 0s -2024-04-29T04:26:47Z #15 2.581 95150K .......... .......... .......... .......... .......... 74% 121M 0s -2024-04-29T04:26:47Z #15 2.581 95200K .......... .......... .......... .......... .......... 74% 120M 0s -2024-04-29T04:26:47Z #15 2.583 95250K .......... .......... .......... .......... .......... 74% 157M 0s -2024-04-29T04:26:47Z #15 2.583 95300K .......... .......... .......... .......... .......... 74% 123M 0s -2024-04-29T04:26:47Z #15 2.583 95350K .......... .......... .......... .......... .......... 74% 112M 0s -2024-04-29T04:26:47Z #15 2.583 95400K .......... .......... .......... .......... .......... 74% 128M 0s -2024-04-29T04:26:47Z #15 2.583 95450K .......... .......... .......... .......... .......... 74% 121M 0s -2024-04-29T04:26:47Z #15 2.584 95500K .......... .......... .......... .......... .......... 74% 124M 0s -2024-04-29T04:26:47Z #15 2.584 95550K .......... .......... .......... .......... .......... 74% 5.80M 0s -2024-04-29T04:26:47Z #15 2.593 95600K .......... .......... .......... .......... .......... 74% 119M 0s -2024-04-29T04:26:47Z #15 2.593 95650K .......... .......... .......... .......... .......... 74% 110M 0s -2024-04-29T04:26:47Z #15 2.594 95700K .......... .......... .......... .......... .......... 74% 144M 0s -2024-04-29T04:26:47Z #15 2.594 95750K .......... .......... .......... .......... .......... 74% 122M 0s -2024-04-29T04:26:47Z #15 2.594 95800K .......... .......... .......... .......... .......... 75% 114M 0s -2024-04-29T04:26:47Z #15 2.595 95850K .......... .......... .......... .......... .......... 75% 107M 0s -2024-04-29T04:26:47Z #15 2.596 95900K .......... .......... .......... .......... .......... 75% 130M 0s -2024-04-29T04:26:47Z #15 2.596 95950K .......... .......... .......... .......... .......... 75% 147M 0s -2024-04-29T04:26:47Z #15 2.596 96000K .......... .......... .......... .......... .......... 75% 161M 0s -2024-04-29T04:26:47Z #15 2.596 96050K .......... .......... .......... .......... .......... 75% 95.4M 0s -2024-04-29T04:26:47Z #15 2.597 96100K .......... .......... .......... .......... .......... 75% 139M 0s -2024-04-29T04:26:47Z #15 2.597 96150K .......... .......... .......... .......... .......... 75% 99.7M 0s -2024-04-29T04:26:47Z #15 2.598 96200K .......... .......... .......... .......... .......... 75% 155M 0s -2024-04-29T04:26:47Z #15 2.598 96250K .......... .......... .......... .......... .......... 75% 128M 0s -2024-04-29T04:26:47Z #15 2.598 96300K .......... .......... .......... .......... .......... 75% 140M 0s -2024-04-29T04:26:47Z #15 2.599 96350K .......... .......... .......... .......... .......... 75% 128M 0s -2024-04-29T04:26:47Z #15 2.599 96400K .......... .......... .......... .......... .......... 75% 147M 0s -2024-04-29T04:26:47Z #15 2.600 96450K .......... .......... .......... .......... .......... 75% 142M 0s -2024-04-29T04:26:47Z #15 2.600 96500K .......... .......... .......... .......... .......... 75% 121M 0s -2024-04-29T04:26:47Z #15 2.600 96550K .......... .......... .......... .......... .......... 75% 129M 0s -2024-04-29T04:26:47Z #15 2.600 96600K .......... .......... .......... .......... .......... 75% 67.3M 0s -2024-04-29T04:26:47Z #15 2.601 96650K .......... .......... .......... .......... .......... 75% 146M 0s -2024-04-29T04:26:47Z #15 2.601 96700K .......... .......... .......... .......... .......... 75% 147M 0s -2024-04-29T04:26:47Z #15 2.602 96750K .......... .......... .......... .......... .......... 75% 129M 0s -2024-04-29T04:26:47Z #15 2.602 96800K .......... .......... .......... .......... .......... 75% 151M 0s -2024-04-29T04:26:47Z #15 2.602 96850K .......... .......... .......... .......... .......... 75% 137M 0s -2024-04-29T04:26:47Z #15 2.603 96900K .......... .......... .......... .......... .......... 75% 157M 0s -2024-04-29T04:26:47Z #15 2.604 96950K .......... .......... .......... .......... .......... 75% 142M 0s -2024-04-29T04:26:47Z #15 2.604 97000K .......... .......... .......... .......... .......... 75% 150M 0s -2024-04-29T04:26:47Z #15 2.604 97050K .......... .......... .......... .......... .......... 75% 138M 0s -2024-04-29T04:26:47Z #15 2.604 97100K .......... .......... .......... .......... .......... 76% 159M 0s -2024-04-29T04:26:47Z #15 2.604 97150K .......... .......... .......... .......... .......... 76% 11.1M 0s -2024-04-29T04:26:47Z #15 2.609 97200K .......... .......... .......... .......... .......... 76% 144M 0s -2024-04-29T04:26:47Z #15 2.609 97250K .......... .......... .......... .......... .......... 76% 149M 0s -2024-04-29T04:26:47Z #15 2.610 97300K .......... .......... .......... .......... .......... 76% 135M 0s -2024-04-29T04:26:47Z #15 2.610 97350K .......... .......... .......... .......... .......... 76% 170M 0s -2024-04-29T04:26:47Z #15 2.610 97400K .......... .......... .......... .......... .......... 76% 131M 0s -2024-04-29T04:26:47Z #15 2.610 97450K .......... .......... .......... .......... .......... 76% 149M 0s -2024-04-29T04:26:47Z #15 2.611 97500K .......... .......... .......... .......... .......... 76% 114M 0s -2024-04-29T04:26:47Z #15 2.612 97550K .......... .......... .......... .......... .......... 76% 147M 0s -2024-04-29T04:26:47Z #15 2.612 97600K .......... .......... .......... .......... .......... 76% 149M 0s -2024-04-29T04:26:47Z #15 2.612 97650K .......... .......... .......... .......... .......... 76% 142M 0s -2024-04-29T04:26:47Z #15 2.612 97700K .......... .......... .......... .......... .......... 76% 11.0M 0s -2024-04-29T04:26:47Z #15 2.625 97750K .......... .......... .......... .......... .......... 76% 138M 0s -2024-04-29T04:26:47Z #15 2.625 97800K .......... .......... .......... .......... .......... 76% 116M 0s -2024-04-29T04:26:47Z #15 2.625 97850K .......... .......... .......... .......... .......... 76% 84.6M 0s -2024-04-29T04:26:47Z #15 2.625 97900K .......... .......... .......... .......... .......... 76% 120M 0s -2024-04-29T04:26:47Z #15 2.625 97950K .......... .......... .......... .......... .......... 76% 141M 0s -2024-04-29T04:26:47Z #15 2.625 98000K .......... .......... .......... .......... .......... 76% 68.4M 0s -2024-04-29T04:26:47Z #15 2.625 98050K .......... .......... .......... .......... .......... 76% 174M 0s -2024-04-29T04:26:47Z #15 2.625 98100K .......... .......... .......... .......... .......... 76% 133M 0s -2024-04-29T04:26:47Z #15 2.625 98150K .......... .......... .......... .......... .......... 76% 172M 0s -2024-04-29T04:26:47Z #15 2.625 98200K .......... .......... .......... .......... .......... 76% 64.6M 0s -2024-04-29T04:26:47Z #15 2.625 98250K .......... .......... .......... .......... .......... 76% 126M 0s -2024-04-29T04:26:47Z #15 2.625 98300K .......... .......... .......... .......... .......... 76% 139M 0s -2024-04-29T04:26:47Z #15 2.625 98350K .......... .......... .......... .......... .......... 77% 138M 0s -2024-04-29T04:26:47Z #15 2.625 98400K .......... .......... .......... .......... .......... 77% 164M 0s -2024-04-29T04:26:47Z #15 2.625 98450K .......... .......... .......... .......... .......... 77% 180M 0s -2024-04-29T04:26:47Z #15 2.625 98500K .......... .......... .......... .......... .......... 77% 136M 0s -2024-04-29T04:26:47Z #15 2.625 98550K .......... .......... .......... .......... .......... 77% 174M 0s -2024-04-29T04:26:47Z #15 2.625 98600K .......... .......... .......... .......... .......... 77% 181M 0s -2024-04-29T04:26:47Z #15 2.625 98650K .......... .......... .......... .......... .......... 77% 5.53M 0s -2024-04-29T04:26:47Z #15 2.635 98700K .......... .......... .......... .......... .......... 77% 150M 0s -2024-04-29T04:26:47Z #15 2.635 98750K .......... .......... .......... .......... .......... 77% 177M 0s -2024-04-29T04:26:47Z #15 2.635 98800K .......... .......... .......... .......... .......... 77% 158M 0s -2024-04-29T04:26:47Z #15 2.635 98850K .......... .......... .......... .......... .......... 77% 158M 0s -2024-04-29T04:26:47Z #15 2.635 98900K .......... .......... .......... .......... .......... 77% 176M 0s -2024-04-29T04:26:47Z #15 2.635 98950K .......... .......... .......... .......... .......... 77% 163M 0s -2024-04-29T04:26:47Z #15 2.635 99000K .......... .......... .......... .......... .......... 77% 11.9M 0s -2024-04-29T04:26:47Z #15 2.645 99050K .......... .......... .......... .......... .......... 77% 146M 0s -2024-04-29T04:26:47Z #15 2.645 99100K .......... .......... .......... .......... .......... 77% 179M 0s -2024-04-29T04:26:47Z #15 2.645 99150K .......... .......... .......... .......... .......... 77% 153M 0s -2024-04-29T04:26:47Z #15 2.645 99200K .......... .......... .......... .......... .......... 77% 156M 0s -2024-04-29T04:26:47Z #15 2.645 99250K .......... .......... .......... .......... .......... 77% 90.2M 0s -2024-04-29T04:26:47Z #15 2.645 99300K .......... .......... .......... .......... .......... 77% 63.4M 0s -2024-04-29T04:26:47Z #15 2.645 99350K .......... .......... .......... .......... .......... 77% 176M 0s -2024-04-29T04:26:47Z #15 2.645 99400K .......... .......... .......... .......... .......... 77% 182M 0s -2024-04-29T04:26:47Z #15 2.645 99450K .......... .......... .......... .......... .......... 77% 153M 0s -2024-04-29T04:26:47Z #15 2.645 99500K .......... .......... .......... .......... .......... 77% 73.7M 0s -2024-04-29T04:26:47Z #15 2.645 99550K .......... .......... .......... .......... .......... 77% 98.5M 0s -2024-04-29T04:26:47Z #15 2.645 99600K .......... .......... .......... .......... .......... 77% 183M 0s -2024-04-29T04:26:47Z #15 2.645 99650K .......... .......... .......... .......... .......... 78% 136M 0s -2024-04-29T04:26:47Z #15 2.645 99700K .......... .......... .......... .......... .......... 78% 142M 0s -2024-04-29T04:26:47Z #15 2.645 99750K .......... .......... .......... .......... .......... 78% 174M 0s -2024-04-29T04:26:47Z #15 2.645 99800K .......... .......... .......... .......... .......... 78% 4.90M 0s -2024-04-29T04:26:47Z #15 2.657 99850K .......... .......... .......... .......... .......... 78% 169M 0s -2024-04-29T04:26:47Z #15 2.657 99900K .......... .......... .......... .......... .......... 78% 148M 0s -2024-04-29T04:26:47Z #15 2.657 99950K .......... .......... .......... .......... .......... 78% 163M 0s -2024-04-29T04:26:47Z #15 2.657 100000K .......... .......... .......... .......... .......... 78% 157M 0s -2024-04-29T04:26:47Z #15 2.657 100050K .......... .......... .......... .......... .......... 78% 81.5M 0s -2024-04-29T04:26:47Z #15 2.657 100100K .......... .......... .......... .......... .......... 78% 9.00M 0s -2024-04-29T04:26:47Z #15 2.665 100150K .......... .......... .......... .......... .......... 78% 181M 0s -2024-04-29T04:26:47Z #15 2.665 100200K .......... .......... .......... .......... .......... 78% 156M 0s -2024-04-29T04:26:47Z #15 2.665 100250K .......... .......... .......... .......... .......... 78% 100M 0s -2024-04-29T04:26:47Z #15 2.665 100300K .......... .......... .......... .......... .......... 78% 74.3M 0s -2024-04-29T04:26:47Z #15 2.665 100350K .......... .......... .......... .......... .......... 78% 183M 0s -2024-04-29T04:26:47Z #15 2.665 100400K .......... .......... .......... .......... .......... 78% 169M 0s -2024-04-29T04:26:47Z #15 2.665 100450K .......... .......... .......... .......... .......... 78% 179M 0s -2024-04-29T04:26:47Z #15 2.665 100500K .......... .......... .......... .......... .......... 78% 144M 0s -2024-04-29T04:26:47Z #15 2.665 100550K .......... .......... .......... .......... .......... 78% 8.63M 0s -2024-04-29T04:26:47Z #15 2.673 100600K .......... .......... .......... .......... .......... 78% 135M 0s -2024-04-29T04:26:47Z #15 2.673 100650K .......... .......... .......... .......... .......... 78% 155M 0s -2024-04-29T04:26:47Z #15 2.673 100700K .......... .......... .......... .......... .......... 78% 178M 0s -2024-04-29T04:26:47Z #15 2.673 100750K .......... .......... .......... .......... .......... 78% 159M 0s -2024-04-29T04:26:47Z #15 2.673 100800K .......... .......... .......... .......... .......... 78% 62.7M 0s -2024-04-29T04:26:47Z #15 2.673 100850K .......... .......... .......... .......... .......... 78% 168M 0s -2024-04-29T04:26:47Z #15 2.673 100900K .......... .......... .......... .......... .......... 78% 9.54M 0s -2024-04-29T04:26:47Z #15 2.681 100950K .......... .......... .......... .......... .......... 79% 159M 0s -2024-04-29T04:26:47Z #15 2.681 101000K .......... .......... .......... .......... .......... 79% 135M 0s -2024-04-29T04:26:47Z #15 2.681 101050K .......... .......... .......... .......... .......... 79% 166M 0s -2024-04-29T04:26:47Z #15 2.681 101100K .......... .......... .......... .......... .......... 79% 55.4M 0s -2024-04-29T04:26:47Z #15 2.681 101150K .......... .......... .......... .......... .......... 79% 141M 0s -2024-04-29T04:26:47Z #15 2.681 101200K .......... .......... .......... .......... .......... 79% 146M 0s -2024-04-29T04:26:47Z #15 2.681 101250K .......... .......... .......... .......... .......... 79% 187M 0s -2024-04-29T04:26:47Z #15 2.681 101300K .......... .......... .......... .......... .......... 79% 7.88M 0s -2024-04-29T04:26:47Z #15 2.689 101350K .......... .......... .......... .......... .......... 79% 142M 0s -2024-04-29T04:26:47Z #15 2.689 101400K .......... .......... .......... .......... .......... 79% 178M 0s -2024-04-29T04:26:47Z #15 2.689 101450K .......... .......... .......... .......... .......... 79% 175M 0s -2024-04-29T04:26:47Z #15 2.689 101500K .......... .......... .......... .......... .......... 79% 157M 0s -2024-04-29T04:26:47Z #15 2.689 101550K .......... .......... .......... .......... .......... 79% 156M 0s -2024-04-29T04:26:47Z #15 2.689 101600K .......... .......... .......... .......... .......... 79% 14.7M 0s -2024-04-29T04:26:47Z #15 2.693 101650K .......... .......... .......... .......... .......... 79% 112M 0s -2024-04-29T04:26:47Z #15 2.693 101700K .......... .......... .......... .......... .......... 79% 132M 0s -2024-04-29T04:26:47Z #15 2.693 101750K .......... .......... .......... .......... .......... 79% 122M 0s -2024-04-29T04:26:47Z #15 2.693 101800K .......... .......... .......... .......... .......... 79% 55.9M 0s -2024-04-29T04:26:47Z #15 2.693 101850K .......... .......... .......... .......... .......... 79% 120M 0s -2024-04-29T04:26:47Z #15 2.694 101900K .......... .......... .......... .......... .......... 79% 56.3M 0s -2024-04-29T04:26:47Z #15 2.695 101950K .......... .......... .......... .......... .......... 79% 108M 0s -2024-04-29T04:26:47Z #15 2.695 102000K .......... .......... .......... .......... .......... 79% 55.8M 0s -2024-04-29T04:26:47Z #15 2.696 102050K .......... .......... .......... .......... .......... 79% 45.0M 0s -2024-04-29T04:26:47Z #15 2.697 102100K .......... .......... .......... .......... .......... 79% 144M 0s -2024-04-29T04:26:47Z #15 2.698 102150K .......... .......... .......... .......... .......... 79% 125M 0s -2024-04-29T04:26:47Z #15 2.698 102200K .......... .......... .......... .......... .......... 80% 137M 0s -2024-04-29T04:26:47Z #15 2.698 102250K .......... .......... .......... .......... .......... 80% 39.8M 0s -2024-04-29T04:26:47Z #15 2.700 102300K .......... .......... .......... .......... .......... 80% 43.4M 0s -2024-04-29T04:26:47Z #15 2.701 102350K .......... .......... .......... .......... .......... 80% 54.7M 0s -2024-04-29T04:26:47Z #15 2.702 102400K .......... .......... .......... .......... .......... 80% 52.2M 0s -2024-04-29T04:26:47Z #15 2.703 102450K .......... .......... .......... .......... .......... 80% 44.4M 0s -2024-04-29T04:26:47Z #15 2.704 102500K .......... .......... .......... .......... .......... 80% 29.9M 0s -2024-04-29T04:26:47Z #15 2.705 102550K .......... .......... .......... .......... .......... 80% 41.1M 0s -2024-04-29T04:26:47Z #15 2.706 102600K .......... .......... .......... .......... .......... 80% 57.8M 0s -2024-04-29T04:26:47Z #15 2.708 102650K .......... .......... .......... .......... .......... 80% 50.3M 0s -2024-04-29T04:26:47Z #15 2.708 102700K .......... .......... .......... .......... .......... 80% 64.6M 0s -2024-04-29T04:26:47Z #15 2.709 102750K .......... .......... .......... .......... .......... 80% 15.0M 0s -2024-04-29T04:26:47Z #15 2.713 102800K .......... .......... .......... .......... .......... 80% 16.0M 0s -2024-04-29T04:26:47Z #15 2.715 102850K .......... .......... .......... .......... .......... 80% 36.5M 0s -2024-04-29T04:26:47Z #15 2.717 102900K .......... .......... .......... .......... .......... 80% 112M 0s -2024-04-29T04:26:47Z #15 2.717 102950K .......... .......... .......... .......... .......... 80% 123M 0s -2024-04-29T04:26:47Z #15 2.717 103000K .......... .......... .......... .......... .......... 80% 107M 0s -2024-04-29T04:26:47Z #15 2.718 103050K .......... .......... .......... .......... .......... 80% 66.1M 0s -2024-04-29T04:26:47Z #15 2.719 103100K .......... .......... .......... .......... .......... 80% 88.1M 0s -2024-04-29T04:26:47Z #15 2.719 103150K .......... .......... .......... .......... .......... 80% 128M 0s -2024-04-29T04:26:47Z #15 2.720 103200K .......... .......... .......... .......... .......... 80% 99.3M 0s -2024-04-29T04:26:47Z #15 2.720 103250K .......... .......... .......... .......... .......... 80% 74.1M 0s -2024-04-29T04:26:47Z #15 2.721 103300K .......... .......... .......... .......... .......... 80% 130M 0s -2024-04-29T04:26:47Z #15 2.721 103350K .......... .......... .......... .......... .......... 80% 150M 0s -2024-04-29T04:26:47Z #15 2.721 103400K .......... .......... .......... .......... .......... 80% 105M 0s -2024-04-29T04:26:47Z #15 2.722 103450K .......... .......... .......... .......... .......... 80% 64.5M 0s -2024-04-29T04:26:47Z #15 2.723 103500K .......... .......... .......... .......... .......... 81% 105M 0s -2024-04-29T04:26:47Z #15 2.723 103550K .......... .......... .......... .......... .......... 81% 145M 0s -2024-04-29T04:26:47Z #15 2.724 103600K .......... .......... .......... .......... .......... 81% 113M 0s -2024-04-29T04:26:47Z #15 2.724 103650K .......... .......... .......... .......... .......... 81% 61.7M 0s -2024-04-29T04:26:47Z #15 2.725 103700K .......... .......... .......... .......... .......... 81% 126M 0s -2024-04-29T04:26:47Z #15 2.725 103750K .......... .......... .......... .......... .......... 81% 112M 0s -2024-04-29T04:26:47Z #15 2.726 103800K .......... .......... .......... .......... .......... 81% 104M 0s -2024-04-29T04:26:47Z #15 2.726 103850K .......... .......... .......... .......... .......... 81% 148M 0s -2024-04-29T04:26:47Z #15 2.726 103900K .......... .......... .......... .......... .......... 81% 64.1M 0s -2024-04-29T04:26:47Z #15 2.727 103950K .......... .......... .......... .......... .......... 81% 99.1M 0s -2024-04-29T04:26:47Z #15 2.728 104000K .......... .......... .......... .......... .......... 81% 118M 0s -2024-04-29T04:26:47Z #15 2.728 104050K .......... .......... .......... .......... .......... 81% 117M 0s -2024-04-29T04:26:47Z #15 2.728 104100K .......... .......... .......... .......... .......... 81% 42.3M 0s -2024-04-29T04:26:47Z #15 2.730 104150K .......... .......... .......... .......... .......... 81% 74.7M 0s -2024-04-29T04:26:47Z #15 2.730 104200K .......... .......... .......... .......... .......... 81% 59.6M 0s -2024-04-29T04:26:47Z #15 2.731 104250K .......... .......... .......... .......... .......... 81% 54.9M 0s -2024-04-29T04:26:47Z #15 2.732 104300K .......... .......... .......... .......... .......... 81% 51.2M 0s -2024-04-29T04:26:47Z #15 2.736 104350K .......... .......... .......... .......... .......... 81% 99.5M 0s -2024-04-29T04:26:47Z #15 2.736 104400K .......... .......... .......... .......... .......... 81% 137M 0s -2024-04-29T04:26:47Z #15 2.736 104450K .......... .......... .......... .......... .......... 81% 128M 0s -2024-04-29T04:26:47Z #15 2.736 104500K .......... .......... .......... .......... .......... 81% 71.9M 0s -2024-04-29T04:26:47Z #15 2.736 104550K .......... .......... .......... .......... .......... 81% 111M 0s -2024-04-29T04:26:47Z #15 2.736 104600K .......... .......... .......... .......... .......... 81% 124M 0s -2024-04-29T04:26:47Z #15 2.736 104650K .......... .......... .......... .......... .......... 81% 132M 0s -2024-04-29T04:26:47Z #15 2.736 104700K .......... .......... .......... .......... .......... 81% 52.6M 0s -2024-04-29T04:26:47Z #15 2.740 104750K .......... .......... .......... .......... .......... 82% 101M 0s -2024-04-29T04:26:47Z #15 2.740 104800K .......... .......... .......... .......... .......... 82% 96.3M 0s -2024-04-29T04:26:47Z #15 2.740 104850K .......... .......... .......... .......... .......... 82% 138M 0s -2024-04-29T04:26:47Z #15 2.740 104900K .......... .......... .......... .......... .......... 82% 125M 0s -2024-04-29T04:26:47Z #15 2.740 104950K .......... .......... .......... .......... .......... 82% 78.9M 0s -2024-04-29T04:26:47Z #15 2.740 105000K .......... .......... .......... .......... .......... 82% 82.8M 0s -2024-04-29T04:26:47Z #15 2.740 105050K .......... .......... .......... .......... .......... 82% 127M 0s -2024-04-29T04:26:47Z #15 2.740 105100K .......... .......... .......... .......... .......... 82% 116M 0s -2024-04-29T04:26:47Z #15 2.741 105150K .......... .......... .......... .......... .......... 82% 67.0M 0s -2024-04-29T04:26:47Z #15 2.744 105200K .......... .......... .......... .......... .......... 82% 76.4M 0s -2024-04-29T04:26:47Z #15 2.744 105250K .......... .......... .......... .......... .......... 82% 129M 0s -2024-04-29T04:26:47Z #15 2.744 105300K .......... .......... .......... .......... .......... 82% 135M 0s -2024-04-29T04:26:47Z #15 2.744 105350K .......... .......... .......... .......... .......... 82% 111M 0s -2024-04-29T04:26:47Z #15 2.744 105400K .......... .......... .......... .......... .......... 82% 70.8M 0s -2024-04-29T04:26:47Z #15 2.744 105450K .......... .......... .......... .......... .......... 82% 133M 0s -2024-04-29T04:26:47Z #15 2.744 105500K .......... .......... .......... .......... .......... 82% 122M 0s -2024-04-29T04:26:47Z #15 2.745 105550K .......... .......... .......... .......... .......... 82% 125M 0s -2024-04-29T04:26:47Z #15 2.745 105600K .......... .......... .......... .......... .......... 82% 68.5M 0s -2024-04-29T04:26:47Z #15 2.746 105650K .......... .......... .......... .......... .......... 82% 123M 0s -2024-04-29T04:26:47Z #15 2.746 105700K .......... .......... .......... .......... .......... 82% 154M 0s -2024-04-29T04:26:47Z #15 2.746 105750K .......... .......... .......... .......... .......... 82% 128M 0s -2024-04-29T04:26:47Z #15 2.747 105800K .......... .......... .......... .......... .......... 82% 167M 0s -2024-04-29T04:26:47Z #15 2.747 105850K .......... .......... .......... .......... .......... 82% 54.5M 0s -2024-04-29T04:26:47Z #15 2.748 105900K .......... .......... .......... .......... .......... 82% 79.9M 0s -2024-04-29T04:26:47Z #15 2.749 105950K .......... .......... .......... .......... .......... 82% 49.4M 0s -2024-04-29T04:26:47Z #15 2.752 106000K .......... .......... .......... .......... .......... 82% 41.7M 0s -2024-04-29T04:26:47Z #15 2.752 106050K .......... .......... .......... .......... .......... 83% 53.7M 0s -2024-04-29T04:26:47Z #15 2.752 106100K .......... .......... .......... .......... .......... 83% 42.6M 0s -2024-04-29T04:26:47Z #15 2.753 106150K .......... .......... .......... .......... .......... 83% 89.6M 0s -2024-04-29T04:26:47Z #15 2.754 106200K .......... .......... .......... .......... .......... 83% 95.7M 0s -2024-04-29T04:26:47Z #15 2.754 106250K .......... .......... .......... .......... .......... 83% 83.7M 0s -2024-04-29T04:26:47Z #15 2.755 106300K .......... .......... .......... .......... .......... 83% 39.0M 0s -2024-04-29T04:26:47Z #15 2.756 106350K .......... .......... .......... .......... .......... 83% 59.7M 0s -2024-04-29T04:26:47Z #15 2.757 106400K .......... .......... .......... .......... .......... 83% 77.2M 0s -2024-04-29T04:26:47Z #15 2.758 106450K .......... .......... .......... .......... .......... 83% 106M 0s -2024-04-29T04:26:47Z #15 2.758 106500K .......... .......... .......... .......... .......... 83% 71.2M 0s -2024-04-29T04:26:47Z #15 2.758 106550K .......... .......... .......... .......... .......... 83% 39.2M 0s -2024-04-29T04:26:47Z #15 2.760 106600K .......... .......... .......... .......... .......... 83% 103M 0s -2024-04-29T04:26:47Z #15 2.761 106650K .......... .......... .......... .......... .......... 83% 84.9M 0s -2024-04-29T04:26:47Z #15 2.761 106700K .......... .......... .......... .......... .......... 83% 58.5M 0s -2024-04-29T04:26:47Z #15 2.761 106750K .......... .......... .......... .......... .......... 83% 36.9M 0s -2024-04-29T04:26:47Z #15 2.763 106800K .......... .......... .......... .......... .......... 83% 76.8M 0s -2024-04-29T04:26:47Z #15 2.764 106850K .......... .......... .......... .......... .......... 83% 109M 0s -2024-04-29T04:26:47Z #15 2.765 106900K .......... .......... .......... .......... .......... 83% 65.0M 0s -2024-04-29T04:26:47Z #15 2.765 106950K .......... .......... .......... .......... .......... 83% 47.8M 0s -2024-04-29T04:26:47Z #15 2.766 107000K .......... .......... .......... .......... .......... 83% 86.9M 0s -2024-04-29T04:26:47Z #15 2.766 107050K .......... .......... .......... .......... .......... 83% 72.6M 0s -2024-04-29T04:26:47Z #15 2.767 107100K .......... .......... .......... .......... .......... 83% 62.4M 0s -2024-04-29T04:26:47Z #15 2.768 107150K .......... .......... .......... .......... .......... 83% 37.2M 0s -2024-04-29T04:26:47Z #15 2.769 107200K .......... .......... .......... .......... .......... 83% 74.5M 0s -2024-04-29T04:26:47Z #15 2.770 107250K .......... .......... .......... .......... .......... 83% 74.3M 0s -2024-04-29T04:26:47Z #15 2.770 107300K .......... .......... .......... .......... .......... 84% 36.8M 0s -2024-04-29T04:26:47Z #15 2.772 107350K .......... .......... .......... .......... .......... 84% 74.5M 0s -2024-04-29T04:26:47Z #15 2.773 107400K .......... .......... .......... .......... .......... 84% 99.7M 0s -2024-04-29T04:26:47Z #15 2.773 107450K .......... .......... .......... .......... .......... 84% 82.9M 0s -2024-04-29T04:26:47Z #15 2.773 107500K .......... .......... .......... .......... .......... 84% 29.3M 0s -2024-04-29T04:26:47Z #15 2.776 107550K .......... .......... .......... .......... .......... 84% 85.8M 0s -2024-04-29T04:26:47Z #15 2.776 107600K .......... .......... .......... .......... .......... 84% 72.2M 0s -2024-04-29T04:26:47Z #15 2.776 107650K .......... .......... .......... .......... .......... 84% 62.6M 0s -2024-04-29T04:26:47Z #15 2.777 107700K .......... .......... .......... .......... .......... 84% 37.6M 0s -2024-04-29T04:26:47Z #15 2.778 107750K .......... .......... .......... .......... .......... 84% 64.5M 0s -2024-04-29T04:26:47Z #15 2.779 107800K .......... .......... .......... .......... .......... 84% 71.5M 0s -2024-04-29T04:26:47Z #15 2.780 107850K .......... .......... .......... .......... .......... 84% 57.5M 0s -2024-04-29T04:26:47Z #15 2.782 107900K .......... .......... .......... .......... .......... 84% 45.8M 0s -2024-04-29T04:26:47Z #15 2.782 107950K .......... .......... .......... .......... .......... 84% 82.3M 0s -2024-04-29T04:26:47Z #15 2.782 108000K .......... .......... .......... .......... .......... 84% 72.7M 0s -2024-04-29T04:26:47Z #15 2.783 108050K .......... .......... .......... .......... .......... 84% 69.7M 0s -2024-04-29T04:26:47Z #15 2.784 108100K .......... .......... .......... .......... .......... 84% 32.1M 0s -2024-04-29T04:26:47Z #15 2.785 108150K .......... .......... .......... .......... .......... 84% 81.8M 0s -2024-04-29T04:26:47Z #15 2.786 108200K .......... .......... .......... .......... .......... 84% 92.1M 0s -2024-04-29T04:26:47Z #15 2.786 108250K .......... .......... .......... .......... .......... 84% 69.5M 0s -2024-04-29T04:26:47Z #15 2.787 108300K .......... .......... .......... .......... .......... 84% 49.1M 0s -2024-04-29T04:26:47Z #15 2.788 108350K .......... .......... .......... .......... .......... 84% 67.3M 0s -2024-04-29T04:26:47Z #15 2.789 108400K .......... .......... .......... .......... .......... 84% 54.7M 0s -2024-04-29T04:26:47Z #15 2.790 108450K .......... .......... .......... .......... .......... 84% 81.6M 0s -2024-04-29T04:26:47Z #15 2.790 108500K .......... .......... .......... .......... .......... 84% 51.0M 0s -2024-04-29T04:26:47Z #15 2.791 108550K .......... .......... .......... .......... .......... 84% 68.4M 0s -2024-04-29T04:26:47Z #15 2.792 108600K .......... .......... .......... .......... .......... 85% 63.6M 0s -2024-04-29T04:26:47Z #15 2.793 108650K .......... .......... .......... .......... .......... 85% 63.4M 0s -2024-04-29T04:26:47Z #15 2.793 108700K .......... .......... .......... .......... .......... 85% 39.8M 0s -2024-04-29T04:26:47Z #15 2.795 108750K .......... .......... .......... .......... .......... 85% 147M 0s -2024-04-29T04:26:47Z #15 2.796 108800K .......... .......... .......... .......... .......... 85% 91.2M 0s -2024-04-29T04:26:47Z #15 2.796 108850K .......... .......... .......... .......... .......... 85% 79.8M 0s -2024-04-29T04:26:47Z #15 2.797 108900K .......... .......... .......... .......... .......... 85% 75.4M 0s -2024-04-29T04:26:47Z #15 2.797 108950K .......... .......... .......... .......... .......... 85% 34.4M 0s -2024-04-29T04:26:47Z #15 2.798 109000K .......... .......... .......... .......... .......... 85% 71.5M 0s -2024-04-29T04:26:47Z #15 2.799 109050K .......... .......... .......... .......... .......... 85% 110M 0s -2024-04-29T04:26:47Z #15 2.800 109100K .......... .......... .......... .......... .......... 85% 103M 0s -2024-04-29T04:26:47Z #15 2.800 109150K .......... .......... .......... .......... .......... 85% 74.1M 0s -2024-04-29T04:26:47Z #15 2.801 109200K .......... .......... .......... .......... .......... 85% 36.3M 0s -2024-04-29T04:26:47Z #15 2.802 109250K .......... .......... .......... .......... .......... 85% 63.1M 0s -2024-04-29T04:26:47Z #15 2.803 109300K .......... .......... .......... .......... .......... 85% 68.0M 0s -2024-04-29T04:26:47Z #15 2.803 109350K .......... .......... .......... .......... .......... 85% 93.3M 0s -2024-04-29T04:26:47Z #15 2.804 109400K .......... .......... .......... .......... .......... 85% 70.8M 0s -2024-04-29T04:26:47Z #15 2.805 109450K .......... .......... .......... .......... .......... 85% 34.8M 0s -2024-04-29T04:26:47Z #15 2.806 109500K .......... .......... .......... .......... .......... 85% 71.8M 0s -2024-04-29T04:26:47Z #15 2.807 109550K .......... .......... .......... .......... .......... 85% 85.9M 0s -2024-04-29T04:26:47Z #15 2.807 109600K .......... .......... .......... .......... .......... 85% 87.6M 0s -2024-04-29T04:26:47Z #15 2.808 109650K .......... .......... .......... .......... .......... 85% 63.3M 0s -2024-04-29T04:26:47Z #15 2.809 109700K .......... .......... .......... .......... .......... 85% 49.7M 0s -2024-04-29T04:26:47Z #15 2.810 109750K .......... .......... .......... .......... .......... 85% 60.9M 0s -2024-04-29T04:26:47Z #15 2.810 109800K .......... .......... .......... .......... .......... 85% 75.2M 0s -2024-04-29T04:26:47Z #15 2.811 109850K .......... .......... .......... .......... .......... 85% 75.0M 0s -2024-04-29T04:26:47Z #15 2.812 109900K .......... .......... .......... .......... .......... 86% 101M 0s -2024-04-29T04:26:47Z #15 2.812 109950K .......... .......... .......... .......... .......... 86% 71.7M 0s -2024-04-29T04:26:47Z #15 2.813 110000K .......... .......... .......... .......... .......... 86% 30.9M 0s -2024-04-29T04:26:47Z #15 2.814 110050K .......... .......... .......... .......... .......... 86% 88.3M 0s -2024-04-29T04:26:47Z #15 2.815 110100K .......... .......... .......... .......... .......... 86% 102M 0s -2024-04-29T04:26:47Z #15 2.816 110150K .......... .......... .......... .......... .......... 86% 79.0M 0s -2024-04-29T04:26:47Z #15 2.816 110200K .......... .......... .......... .......... .......... 86% 35.5M 0s -2024-04-29T04:26:47Z #15 2.818 110250K .......... .......... .......... .......... .......... 86% 70.9M 0s -2024-04-29T04:26:47Z #15 2.818 110300K .......... .......... .......... .......... .......... 86% 81.6M 0s -2024-04-29T04:26:47Z #15 2.819 110350K .......... .......... .......... .......... .......... 86% 116M 0s -2024-04-29T04:26:47Z #15 2.820 110400K .......... .......... .......... .......... .......... 86% 31.6M 0s -2024-04-29T04:26:47Z #15 2.821 110450K .......... .......... .......... .......... .......... 86% 82.7M 0s -2024-04-29T04:26:47Z #15 2.822 110500K .......... .......... .......... .......... .......... 86% 82.6M 0s -2024-04-29T04:26:47Z #15 2.822 110550K .......... .......... .......... .......... .......... 86% 68.0M 0s -2024-04-29T04:26:47Z #15 2.823 110600K .......... .......... .......... .......... .......... 86% 45.3M 0s -2024-04-29T04:26:47Z #15 2.824 110650K .......... .......... .......... .......... .......... 86% 73.6M 0s -2024-04-29T04:26:47Z #15 2.824 110700K .......... .......... .......... .......... .......... 86% 76.1M 0s -2024-04-29T04:26:47Z #15 2.825 110750K .......... .......... .......... .......... .......... 86% 39.0M 0s -2024-04-29T04:26:47Z #15 2.826 110800K .......... .......... .......... .......... .......... 86% 122M 0s -2024-04-29T04:26:47Z #15 2.827 110850K .......... .......... .......... .......... .......... 86% 89.8M 0s -2024-04-29T04:26:47Z #15 2.827 110900K .......... .......... .......... .......... .......... 86% 77.2M 0s -2024-04-29T04:26:47Z #15 2.828 110950K .......... .......... .......... .......... .......... 86% 40.9M 0s -2024-04-29T04:26:47Z #15 2.829 111000K .......... .......... .......... .......... .......... 86% 82.1M 0s -2024-04-29T04:26:47Z #15 2.830 111050K .......... .......... .......... .......... .......... 86% 81.1M 0s -2024-04-29T04:26:47Z #15 2.830 111100K .......... .......... .......... .......... .......... 86% 98.1M 0s -2024-04-29T04:26:47Z #15 2.831 111150K .......... .......... .......... .......... .......... 87% 48.9M 0s -2024-04-29T04:26:47Z #15 2.832 111200K .......... .......... .......... .......... .......... 87% 87.5M 0s -2024-04-29T04:26:47Z #15 2.832 111250K .......... .......... .......... .......... .......... 87% 85.5M 0s -2024-04-29T04:26:47Z #15 2.833 111300K .......... .......... .......... .......... .......... 87% 109M 0s -2024-04-29T04:26:47Z #15 2.834 111350K .......... .......... .......... .......... .......... 87% 57.9M 0s -2024-04-29T04:26:47Z #15 2.834 111400K .......... .......... .......... .......... .......... 87% 98.4M 0s -2024-04-29T04:26:47Z #15 2.835 111450K .......... .......... .......... .......... .......... 87% 135M 0s -2024-04-29T04:26:47Z #15 2.835 111500K .......... .......... .......... .......... .......... 87% 83.9M 0s -2024-04-29T04:26:47Z #15 2.836 111550K .......... .......... .......... .......... .......... 87% 67.5M 0s -2024-04-29T04:26:47Z #15 2.836 111600K .......... .......... .......... .......... .......... 87% 107M 0s -2024-04-29T04:26:47Z #15 2.838 111650K .......... .......... .......... .......... .......... 87% 118M 0s -2024-04-29T04:26:47Z #15 2.838 111700K .......... .......... .......... .......... .......... 87% 54.4M 0s -2024-04-29T04:26:47Z #15 2.839 111750K .......... .......... .......... .......... .......... 87% 123M 0s -2024-04-29T04:26:47Z #15 2.839 111800K .......... .......... .......... .......... .......... 87% 105M 0s -2024-04-29T04:26:47Z #15 2.839 111850K .......... .......... .......... .......... .......... 87% 103M 0s -2024-04-29T04:26:47Z #15 2.840 111900K .......... .......... .......... .......... .......... 87% 83.1M 0s -2024-04-29T04:26:47Z #15 2.840 111950K .......... .......... .......... .......... .......... 87% 67.0M 0s -2024-04-29T04:26:47Z #15 2.841 112000K .......... .......... .......... .......... .......... 87% 110M 0s -2024-04-29T04:26:47Z #15 2.841 112050K .......... .......... .......... .......... .......... 87% 96.9M 0s -2024-04-29T04:26:47Z #15 2.843 112100K .......... .......... .......... .......... .......... 87% 125M 0s -2024-04-29T04:26:47Z #15 2.843 112150K .......... .......... .......... .......... .......... 87% 73.9M 0s -2024-04-29T04:26:47Z #15 2.843 112200K .......... .......... .......... .......... .......... 87% 77.1M 0s -2024-04-29T04:26:47Z #15 2.844 112250K .......... .......... .......... .......... .......... 87% 136M 0s -2024-04-29T04:26:47Z #15 2.844 112300K .......... .......... .......... .......... .......... 87% 85.6M 0s -2024-04-29T04:26:47Z #15 2.848 112350K .......... .......... .......... .......... .......... 87% 38.2M 0s -2024-04-29T04:26:47Z #15 2.848 112400K .......... .......... .......... .......... .......... 87% 94.4M 0s -2024-04-29T04:26:47Z #15 2.848 112450K .......... .......... .......... .......... .......... 88% 141M 0s -2024-04-29T04:26:47Z #15 2.848 112500K .......... .......... .......... .......... .......... 88% 123M 0s -2024-04-29T04:26:47Z #15 2.848 112550K .......... .......... .......... .......... .......... 88% 70.8M 0s -2024-04-29T04:26:47Z #15 2.848 112600K .......... .......... .......... .......... .......... 88% 80.7M 0s -2024-04-29T04:26:47Z #15 2.848 112650K .......... .......... .......... .......... .......... 88% 127M 0s -2024-04-29T04:26:47Z #15 2.848 112700K .......... .......... .......... .......... .......... 88% 71.0M 0s -2024-04-29T04:26:47Z #15 2.850 112750K .......... .......... .......... .......... .......... 88% 6.35M 0s -2024-04-29T04:26:47Z #15 2.857 112800K .......... .......... .......... .......... .......... 88% 138M 0s -2024-04-29T04:26:47Z #15 2.857 112850K .......... .......... .......... .......... .......... 88% 165M 0s -2024-04-29T04:26:47Z #15 2.857 112900K .......... .......... .......... .......... .......... 88% 131M 0s -2024-04-29T04:26:47Z #15 2.858 112950K .......... .......... .......... .......... .......... 88% 163M 0s -2024-04-29T04:26:47Z #15 2.858 113000K .......... .......... .......... .......... .......... 88% 61.3M 0s -2024-04-29T04:26:47Z #15 2.859 113050K .......... .......... .......... .......... .......... 88% 159M 0s -2024-04-29T04:26:47Z #15 2.859 113100K .......... .......... .......... .......... .......... 88% 146M 0s -2024-04-29T04:26:47Z #15 2.860 113150K .......... .......... .......... .......... .......... 88% 169M 0s -2024-04-29T04:26:47Z #15 2.860 113200K .......... .......... .......... .......... .......... 88% 153M 0s -2024-04-29T04:26:47Z #15 2.860 113250K .......... .......... .......... .......... .......... 88% 60.3M 0s -2024-04-29T04:26:47Z #15 2.861 113300K .......... .......... .......... .......... .......... 88% 160M 0s -2024-04-29T04:26:47Z #15 2.861 113350K .......... .......... .......... .......... .......... 88% 145M 0s -2024-04-29T04:26:47Z #15 2.862 113400K .......... .......... .......... .......... .......... 88% 153M 0s -2024-04-29T04:26:47Z #15 2.862 113450K .......... .......... .......... .......... .......... 88% 165M 0s -2024-04-29T04:26:47Z #15 2.862 113500K .......... .......... .......... .......... .......... 88% 55.0M 0s -2024-04-29T04:26:47Z #15 2.863 113550K .......... .......... .......... .......... .......... 88% 136M 0s -2024-04-29T04:26:47Z #15 2.864 113600K .......... .......... .......... .......... .......... 88% 127M 0s -2024-04-29T04:26:47Z #15 2.864 113650K .......... .......... .......... .......... .......... 88% 152M 0s -2024-04-29T04:26:47Z #15 2.865 113700K .......... .......... .......... .......... .......... 89% 141M 0s -2024-04-29T04:26:47Z #15 2.865 113750K .......... .......... .......... .......... .......... 89% 57.1M 0s -2024-04-29T04:26:47Z #15 2.866 113800K .......... .......... .......... .......... .......... 89% 117M 0s -2024-04-29T04:26:47Z #15 2.866 113850K .......... .......... .......... .......... .......... 89% 138M 0s -2024-04-29T04:26:47Z #15 2.866 113900K .......... .......... .......... .......... .......... 89% 132M 0s -2024-04-29T04:26:47Z #15 2.867 113950K .......... .......... .......... .......... .......... 89% 74.2M 0s -2024-04-29T04:26:47Z #15 2.867 114000K .......... .......... .......... .......... .......... 89% 87.1M 0s -2024-04-29T04:26:47Z #15 2.868 114050K .......... .......... .......... .......... .......... 89% 138M 0s -2024-04-29T04:26:47Z #15 2.868 114100K .......... .......... .......... .......... .......... 89% 145M 0s -2024-04-29T04:26:47Z #15 2.870 114150K .......... .......... .......... .......... .......... 89% 5.77M 0s -2024-04-29T04:26:47Z #15 2.889 114200K .......... .......... .......... .......... .......... 89% 60.4M 0s -2024-04-29T04:26:47Z #15 2.889 114250K .......... .......... .......... .......... .......... 89% 129M 0s -2024-04-29T04:26:47Z #15 2.889 114300K .......... .......... .......... .......... .......... 89% 108M 0s -2024-04-29T04:26:47Z #15 2.889 114350K .......... .......... .......... .......... .......... 89% 122M 0s -2024-04-29T04:26:47Z #15 2.889 114400K .......... .......... .......... .......... .......... 89% 75.0M 0s -2024-04-29T04:26:47Z #15 2.889 114450K .......... .......... .......... .......... .......... 89% 81.7M 0s -2024-04-29T04:26:47Z #15 2.889 114500K .......... .......... .......... .......... .......... 89% 103M 0s -2024-04-29T04:26:47Z #15 2.889 114550K .......... .......... .......... .......... .......... 89% 176M 0s -2024-04-29T04:26:47Z #15 2.889 114600K .......... .......... .......... .......... .......... 89% 129M 0s -2024-04-29T04:26:47Z #15 2.889 114650K .......... .......... .......... .......... .......... 89% 126M 0s -2024-04-29T04:26:47Z #15 2.889 114700K .......... .......... .......... .......... .......... 89% 74.4M 0s -2024-04-29T04:26:47Z #15 2.889 114750K .......... .......... .......... .......... .......... 89% 164M 0s -2024-04-29T04:26:47Z #15 2.889 114800K .......... .......... .......... .......... .......... 89% 124M 0s -2024-04-29T04:26:47Z #15 2.889 114850K .......... .......... .......... .......... .......... 89% 155M 0s -2024-04-29T04:26:47Z #15 2.889 114900K .......... .......... .......... .......... .......... 89% 178M 0s -2024-04-29T04:26:47Z #15 2.889 114950K .......... .......... .......... .......... .......... 89% 63.9M 0s -2024-04-29T04:26:47Z #15 2.889 115000K .......... .......... .......... .......... .......... 90% 150M 0s -2024-04-29T04:26:47Z #15 2.889 115050K .......... .......... .......... .......... .......... 90% 100M 0s -2024-04-29T04:26:47Z #15 2.889 115100K .......... .......... .......... .......... .......... 90% 138M 0s -2024-04-29T04:26:47Z #15 2.889 115150K .......... .......... .......... .......... .......... 90% 185M 0s -2024-04-29T04:26:47Z #15 2.889 115200K .......... .......... .......... .......... .......... 90% 135M 0s -2024-04-29T04:26:47Z #15 2.889 115250K .......... .......... .......... .......... .......... 90% 54.4M 0s -2024-04-29T04:26:47Z #15 2.889 115300K .......... .......... .......... .......... .......... 90% 127M 0s -2024-04-29T04:26:47Z #15 2.889 115350K .......... .......... .......... .......... .......... 90% 162M 0s -2024-04-29T04:26:47Z #15 2.889 115400K .......... .......... .......... .......... .......... 90% 177M 0s -2024-04-29T04:26:47Z #15 2.889 115450K .......... .......... .......... .......... .......... 90% 189M 0s -2024-04-29T04:26:47Z #15 2.889 115500K .......... .......... .......... .......... .......... 90% 118M 0s -2024-04-29T04:26:47Z #15 2.889 115550K .......... .......... .......... .......... .......... 90% 61.3M 0s -2024-04-29T04:26:47Z #15 2.889 115600K .......... .......... .......... .......... .......... 90% 103M 0s -2024-04-29T04:26:47Z #15 2.890 115650K .......... .......... .......... .......... .......... 90% 132M 0s -2024-04-29T04:26:47Z #15 2.891 115700K .......... .......... .......... .......... .......... 90% 122M 0s -2024-04-29T04:26:47Z #15 2.891 115750K .......... .......... .......... .......... .......... 90% 118M 0s -2024-04-29T04:26:47Z #15 2.891 115800K .......... .......... .......... .......... .......... 90% 58.4M 0s -2024-04-29T04:26:47Z #15 2.893 115850K .......... .......... .......... .......... .......... 90% 77.2M 0s -2024-04-29T04:26:47Z #15 2.897 115900K .......... .......... .......... .......... .......... 90% 127M 0s -2024-04-29T04:26:47Z #15 2.897 115950K .......... .......... .......... .......... .......... 90% 126M 0s -2024-04-29T04:26:47Z #15 2.897 116000K .......... .......... .......... .......... .......... 90% 99.5M 0s -2024-04-29T04:26:47Z #15 2.897 116050K .......... .......... .......... .......... .......... 90% 61.4M 0s -2024-04-29T04:26:47Z #15 2.897 116100K .......... .......... .......... .......... .......... 90% 97.3M 0s -2024-04-29T04:26:47Z #15 2.897 116150K .......... .......... .......... .......... .......... 90% 134M 0s -2024-04-29T04:26:47Z #15 2.897 116200K .......... .......... .......... .......... .......... 90% 105M 0s -2024-04-29T04:26:47Z #15 2.897 116250K .......... .......... .......... .......... .......... 91% 113M 0s -2024-04-29T04:26:47Z #15 2.897 116300K .......... .......... .......... .......... .......... 91% 56.9M 0s -2024-04-29T04:26:47Z #15 2.901 116350K .......... .......... .......... .......... .......... 91% 124M 0s -2024-04-29T04:26:47Z #15 2.901 116400K .......... .......... .......... .......... .......... 91% 115M 0s -2024-04-29T04:26:47Z #15 2.901 116450K .......... .......... .......... .......... .......... 91% 126M 0s -2024-04-29T04:26:47Z #15 2.901 116500K .......... .......... .......... .......... .......... 91% 58.4M 0s -2024-04-29T04:26:47Z #15 2.901 116550K .......... .......... .......... .......... .......... 91% 130M 0s -2024-04-29T04:26:47Z #15 2.901 116600K .......... .......... .......... .......... .......... 91% 109M 0s -2024-04-29T04:26:47Z #15 2.901 116650K .......... .......... .......... .......... .......... 91% 88.5M 0s -2024-04-29T04:26:47Z #15 2.905 116700K .......... .......... .......... .......... .......... 91% 72.7M 0s -2024-04-29T04:26:47Z #15 2.905 116750K .......... .......... .......... .......... .......... 91% 97.8M 0s -2024-04-29T04:26:47Z #15 2.905 116800K .......... .......... .......... .......... .......... 91% 106M 0s -2024-04-29T04:26:47Z #15 2.905 116850K .......... .......... .......... .......... .......... 91% 112M 0s -2024-04-29T04:26:47Z #15 2.905 116900K .......... .......... .......... .......... .......... 91% 115M 0s -2024-04-29T04:26:47Z #15 2.905 116950K .......... .......... .......... .......... .......... 91% 133M 0s -2024-04-29T04:26:47Z #15 2.905 117000K .......... .......... .......... .......... .......... 91% 61.1M 0s -2024-04-29T04:26:47Z #15 2.905 117050K .......... .......... .......... .......... .......... 91% 88.4M 0s -2024-04-29T04:26:47Z #15 2.909 117100K .......... .......... .......... .......... .......... 91% 111M 0s -2024-04-29T04:26:47Z #15 2.909 117150K .......... .......... .......... .......... .......... 91% 124M 0s -2024-04-29T04:26:47Z #15 2.909 117200K .......... .......... .......... .......... .......... 91% 60.5M 0s -2024-04-29T04:26:47Z #15 2.909 117250K .......... .......... .......... .......... .......... 91% 107M 0s -2024-04-29T04:26:47Z #15 2.909 117300K .......... .......... .......... .......... .......... 91% 109M 0s -2024-04-29T04:26:47Z #15 2.909 117350K .......... .......... .......... .......... .......... 91% 118M 0s -2024-04-29T04:26:47Z #15 2.909 117400K .......... .......... .......... .......... .......... 91% 135M 0s -2024-04-29T04:26:47Z #15 2.913 117450K .......... .......... .......... .......... .......... 91% 61.9M 0s -2024-04-29T04:26:47Z #15 2.913 117500K .......... .......... .......... .......... .......... 91% 124M 0s -2024-04-29T04:26:47Z #15 2.913 117550K .......... .......... .......... .......... .......... 92% 111M 0s -2024-04-29T04:26:47Z #15 2.913 117600K .......... .......... .......... .......... .......... 92% 67.5M 0s -2024-04-29T04:26:47Z #15 2.913 117650K .......... .......... .......... .......... .......... 92% 86.0M 0s -2024-04-29T04:26:47Z #15 2.913 117700K .......... .......... .......... .......... .......... 92% 141M 0s -2024-04-29T04:26:47Z #15 2.913 117750K .......... .......... .......... .......... .......... 92% 126M 0s -2024-04-29T04:26:47Z #15 2.913 117800K .......... .......... .......... .......... .......... 92% 49.5M 0s -2024-04-29T04:26:47Z #15 2.917 117850K .......... .......... .......... .......... .......... 92% 90.8M 0s -2024-04-29T04:26:47Z #15 2.917 117900K .......... .......... .......... .......... .......... 92% 128M 0s -2024-04-29T04:26:47Z #15 2.917 117950K .......... .......... .......... .......... .......... 92% 139M 0s -2024-04-29T04:26:47Z #15 2.917 118000K .......... .......... .......... .......... .......... 92% 122M 0s -2024-04-29T04:26:47Z #15 2.917 118050K .......... .......... .......... .......... .......... 92% 74.0M 0s -2024-04-29T04:26:47Z #15 2.917 118100K .......... .......... .......... .......... .......... 92% 138M 0s -2024-04-29T04:26:47Z #15 2.917 118150K .......... .......... .......... .......... .......... 92% 130M 0s -2024-04-29T04:26:47Z #15 2.917 118200K .......... .......... .......... .......... .......... 92% 47.3M 0s -2024-04-29T04:26:47Z #15 2.920 118250K .......... .......... .......... .......... .......... 92% 110M 0s -2024-04-29T04:26:47Z #15 2.920 118300K .......... .......... .......... .......... .......... 92% 138M 0s -2024-04-29T04:26:47Z #15 2.920 118350K .......... .......... .......... .......... .......... 92% 139M 0s -2024-04-29T04:26:47Z #15 2.920 118400K .......... .......... .......... .......... .......... 92% 106M 0s -2024-04-29T04:26:47Z #15 2.920 118450K .......... .......... .......... .......... .......... 92% 56.1M 0s -2024-04-29T04:26:47Z #15 2.920 118500K .......... .......... .......... .......... .......... 92% 115M 0s -2024-04-29T04:26:47Z #15 2.920 118550K .......... .......... .......... .......... .......... 92% 150M 0s -2024-04-29T04:26:47Z #15 2.920 118600K .......... .......... .......... .......... .......... 92% 96.1M 0s -2024-04-29T04:26:47Z #15 2.921 118650K .......... .......... .......... .......... .......... 92% 52.3M 0s -2024-04-29T04:26:47Z #15 2.922 118700K .......... .......... .......... .......... .......... 92% 55.4M 0s -2024-04-29T04:26:47Z #15 2.924 118750K .......... .......... .......... .......... .......... 92% 153M 0s -2024-04-29T04:26:47Z #15 2.924 118800K .......... .......... .......... .......... .......... 93% 113M 0s -2024-04-29T04:26:47Z #15 2.924 118850K .......... .......... .......... .......... .......... 93% 126M 0s -2024-04-29T04:26:47Z #15 2.924 118900K .......... .......... .......... .......... .......... 93% 72.8M 0s -2024-04-29T04:26:47Z #15 2.924 118950K .......... .......... .......... .......... .......... 93% 66.1M 0s -2024-04-29T04:26:47Z #15 2.925 119000K .......... .......... .......... .......... .......... 93% 48.4M 0s -2024-04-29T04:26:47Z #15 2.926 119050K .......... .......... .......... .......... .......... 93% 69.9M 0s -2024-04-29T04:26:47Z #15 2.928 119100K .......... .......... .......... .......... .......... 93% 115M 0s -2024-04-29T04:26:47Z #15 2.928 119150K .......... .......... .......... .......... .......... 93% 73.7M 0s -2024-04-29T04:26:47Z #15 2.928 119200K .......... .......... .......... .......... .......... 93% 111M 0s -2024-04-29T04:26:47Z #15 2.928 119250K .......... .......... .......... .......... .......... 93% 57.5M 0s -2024-04-29T04:26:47Z #15 2.929 119300K .......... .......... .......... .......... .......... 93% 72.9M 0s -2024-04-29T04:26:47Z #15 2.933 119350K .......... .......... .......... .......... .......... 93% 163M 0s -2024-04-29T04:26:47Z #15 2.933 119400K .......... .......... .......... .......... .......... 93% 71.4M 0s -2024-04-29T04:26:47Z #15 2.933 119450K .......... .......... .......... .......... .......... 93% 102M 0s -2024-04-29T04:26:47Z #15 2.933 119500K .......... .......... .......... .......... .......... 93% 135M 0s -2024-04-29T04:26:47Z #15 2.933 119550K .......... .......... .......... .......... .......... 93% 126M 0s -2024-04-29T04:26:47Z #15 2.933 119600K .......... .......... .......... .......... .......... 93% 62.0M 0s -2024-04-29T04:26:47Z #15 2.936 119650K .......... .......... .......... .......... .......... 93% 164M 0s -2024-04-29T04:26:47Z #15 2.936 119700K .......... .......... .......... .......... .......... 93% 158M 0s -2024-04-29T04:26:47Z #15 2.936 119750K .......... .......... .......... .......... .......... 93% 121M 0s -2024-04-29T04:26:47Z #15 2.936 119800K .......... .......... .......... .......... .......... 93% 52.7M 0s -2024-04-29T04:26:47Z #15 2.936 119850K .......... .......... .......... .......... .......... 93% 125M 0s -2024-04-29T04:26:47Z #15 2.936 119900K .......... .......... .......... .......... .......... 93% 96.5M 0s -2024-04-29T04:26:47Z #15 2.936 119950K .......... .......... .......... .......... .......... 93% 132M 0s -2024-04-29T04:26:47Z #15 2.936 120000K .......... .......... .......... .......... .......... 93% 125M 0s -2024-04-29T04:26:47Z #15 2.936 120050K .......... .......... .......... .......... .......... 93% 45.7M 0s -2024-04-29T04:26:47Z #15 2.938 120100K .......... .......... .......... .......... .......... 94% 47.7M 0s -2024-04-29T04:26:47Z #15 2.938 120150K .......... .......... .......... .......... .......... 94% 76.8M 0s -2024-04-29T04:26:47Z #15 2.940 120200K .......... .......... .......... .......... .......... 94% 133M 0s -2024-04-29T04:26:47Z #15 2.940 120250K .......... .......... .......... .......... .......... 94% 56.6M 0s -2024-04-29T04:26:47Z #15 2.940 120300K .......... .......... .......... .......... .......... 94% 49.2M 0s -2024-04-29T04:26:47Z #15 2.941 120350K .......... .......... .......... .......... .......... 94% 55.4M 0s -2024-04-29T04:26:47Z #15 2.942 120400K .......... .......... .......... .......... .......... 94% 51.8M 0s -2024-04-29T04:26:47Z #15 2.944 120450K .......... .......... .......... .......... .......... 94% 146M 0s -2024-04-29T04:26:47Z #15 2.944 120500K .......... .......... .......... .......... .......... 94% 63.0M 0s -2024-04-29T04:26:47Z #15 2.944 120550K .......... .......... .......... .......... .......... 94% 123M 0s -2024-04-29T04:26:47Z #15 2.945 120600K .......... .......... .......... .......... .......... 94% 132M 0s -2024-04-29T04:26:47Z #15 2.946 120650K .......... .......... .......... .......... .......... 94% 139M 0s -2024-04-29T04:26:47Z #15 2.946 120700K .......... .......... .......... .......... .......... 94% 106M 0s -2024-04-29T04:26:47Z #15 2.946 120750K .......... .......... .......... .......... .......... 94% 74.5M 0s -2024-04-29T04:26:47Z #15 2.947 120800K .......... .......... .......... .......... .......... 94% 130M 0s -2024-04-29T04:26:47Z #15 2.947 120850K .......... .......... .......... .......... .......... 94% 108M 0s -2024-04-29T04:26:47Z #15 2.948 120900K .......... .......... .......... .......... .......... 94% 135M 0s -2024-04-29T04:26:47Z #15 2.948 120950K .......... .......... .......... .......... .......... 94% 61.5M 0s -2024-04-29T04:26:47Z #15 2.949 121000K .......... .......... .......... .......... .......... 94% 109M 0s -2024-04-29T04:26:47Z #15 2.949 121050K .......... .......... .......... .......... .......... 94% 108M 0s -2024-04-29T04:26:48Z #15 2.949 121100K .......... .......... .......... .......... .......... 94% 84.6M 0s -2024-04-29T04:26:48Z #15 2.958 121150K .......... .......... .......... .......... .......... 94% 123M 0s -2024-04-29T04:26:48Z #15 2.958 121200K .......... .......... .......... .......... .......... 94% 124M 0s -2024-04-29T04:26:48Z #15 2.958 121250K .......... .......... .......... .......... .......... 94% 176M 0s -2024-04-29T04:26:48Z #15 2.958 121300K .......... .......... .......... .......... .......... 94% 144M 0s -2024-04-29T04:26:48Z #15 2.958 121350K .......... .......... .......... .......... .......... 94% 183M 0s -2024-04-29T04:26:48Z #15 2.958 121400K .......... .......... .......... .......... .......... 95% 56.7M 0s -2024-04-29T04:26:48Z #15 2.958 121450K .......... .......... .......... .......... .......... 95% 119M 0s -2024-04-29T04:26:48Z #15 2.958 121500K .......... .......... .......... .......... .......... 95% 160M 0s -2024-04-29T04:26:48Z #15 2.958 121550K .......... .......... .......... .......... .......... 95% 177M 0s -2024-04-29T04:26:48Z #15 2.958 121600K .......... .......... .......... .......... .......... 95% 133M 0s -2024-04-29T04:26:48Z #15 2.958 121650K .......... .......... .......... .......... .......... 95% 65.0M 0s -2024-04-29T04:26:48Z #15 2.958 121700K .......... .......... .......... .......... .......... 95% 179M 0s -2024-04-29T04:26:48Z #15 2.958 121750K .......... .......... .......... .......... .......... 95% 121M 0s -2024-04-29T04:26:48Z #15 2.958 121800K .......... .......... .......... .......... .......... 95% 176M 0s -2024-04-29T04:26:48Z #15 2.958 121850K .......... .......... .......... .......... .......... 95% 158M 0s -2024-04-29T04:26:48Z #15 2.958 121900K .......... .......... .......... .......... .......... 95% 147M 0s -2024-04-29T04:26:48Z #15 2.958 121950K .......... .......... .......... .......... .......... 95% 52.9M 0s -2024-04-29T04:26:48Z #15 2.958 122000K .......... .......... .......... .......... .......... 95% 131M 0s -2024-04-29T04:26:48Z #15 2.958 122050K .......... .......... .......... .......... .......... 95% 114M 0s -2024-04-29T04:26:48Z #15 2.958 122100K .......... .......... .......... .......... .......... 95% 137M 0s -2024-04-29T04:26:48Z #15 2.959 122150K .......... .......... .......... .......... .......... 95% 121M 0s -2024-04-29T04:26:48Z #15 2.959 122200K .......... .......... .......... .......... .......... 95% 61.4M 0s -2024-04-29T04:26:48Z #15 2.960 122250K .......... .......... .......... .......... .......... 95% 81.1M 0s -2024-04-29T04:26:48Z #15 2.960 122300K .......... .......... .......... .......... .......... 95% 99.4M 0s -2024-04-29T04:26:48Z #15 2.961 122350K .......... .......... .......... .......... .......... 95% 106M 0s -2024-04-29T04:26:48Z #15 2.961 122400K .......... .......... .......... .......... .......... 95% 48.6M 0s -2024-04-29T04:26:48Z #15 2.965 122450K .......... .......... .......... .......... .......... 95% 116M 0s -2024-04-29T04:26:48Z #15 2.965 122500K .......... .......... .......... .......... .......... 95% 128M 0s -2024-04-29T04:26:48Z #15 2.965 122550K .......... .......... .......... .......... .......... 95% 122M 0s -2024-04-29T04:26:48Z #15 2.965 122600K .......... .......... .......... .......... .......... 95% 68.5M 0s -2024-04-29T04:26:48Z #15 2.965 122650K .......... .......... .......... .......... .......... 96% 102M 0s -2024-04-29T04:26:48Z #15 2.968 122700K .......... .......... .......... .......... .......... 96% 96.7M 0s -2024-04-29T04:26:48Z #15 2.968 122750K .......... .......... .......... .......... .......... 96% 116M 0s -2024-04-29T04:26:48Z #15 2.968 122800K .......... .......... .......... .......... .......... 96% 66.6M 0s -2024-04-29T04:26:48Z #15 2.968 122850K .......... .......... .......... .......... .......... 96% 123M 0s -2024-04-29T04:26:48Z #15 2.968 122900K .......... .......... .......... .......... .......... 96% 103M 0s -2024-04-29T04:26:48Z #15 2.968 122950K .......... .......... .......... .......... .......... 96% 103M 0s -2024-04-29T04:26:48Z #15 2.968 123000K .......... .......... .......... .......... .......... 96% 61.5M 0s -2024-04-29T04:26:48Z #15 2.968 123050K .......... .......... .......... .......... .......... 96% 90.7M 0s -2024-04-29T04:26:48Z #15 2.971 123100K .......... .......... .......... .......... .......... 96% 128M 0s -2024-04-29T04:26:48Z #15 2.971 123150K .......... .......... .......... .......... .......... 96% 99.7M 0s -2024-04-29T04:26:48Z #15 2.971 123200K .......... .......... .......... .......... .......... 96% 70.3M 0s -2024-04-29T04:26:48Z #15 2.971 123250K .......... .......... .......... .......... .......... 96% 89.9M 0s -2024-04-29T04:26:48Z #15 2.977 123300K .......... .......... .......... .......... .......... 96% 71.3M 0s -2024-04-29T04:26:48Z #15 2.977 123350K .......... .......... .......... .......... .......... 96% 106M 0s -2024-04-29T04:26:48Z #15 2.977 123400K .......... .......... .......... .......... .......... 96% 116M 0s -2024-04-29T04:26:48Z #15 2.977 123450K .......... .......... .......... .......... .......... 96% 68.3M 0s -2024-04-29T04:26:48Z #15 2.977 123500K .......... .......... .......... .......... .......... 96% 129M 0s -2024-04-29T04:26:48Z #15 2.977 123550K .......... .......... .......... .......... .......... 96% 113M 0s -2024-04-29T04:26:48Z #15 2.977 123600K .......... .......... .......... .......... .......... 96% 68.5M 0s -2024-04-29T04:26:48Z #15 2.977 123650K .......... .......... .......... .......... .......... 96% 93.8M 0s -2024-04-29T04:26:48Z #15 2.977 123700K .......... .......... .......... .......... .......... 96% 127M 0s -2024-04-29T04:26:48Z #15 2.977 123750K .......... .......... .......... .......... .......... 96% 125M 0s -2024-04-29T04:26:48Z #15 2.977 123800K .......... .......... .......... .......... .......... 96% 40.3M 0s -2024-04-29T04:26:48Z #15 2.978 123850K .......... .......... .......... .......... .......... 96% 63.4M 0s -2024-04-29T04:26:48Z #15 2.980 123900K .......... .......... .......... .......... .......... 96% 176M 0s -2024-04-29T04:26:48Z #15 2.980 123950K .......... .......... .......... .......... .......... 97% 135M 0s -2024-04-29T04:26:48Z #15 2.980 124000K .......... .......... .......... .......... .......... 97% 86.6M 0s -2024-04-29T04:26:48Z #15 2.980 124050K .......... .......... .......... .......... .......... 97% 98.8M 0s -2024-04-29T04:26:48Z #15 2.980 124100K .......... .......... .......... .......... .......... 97% 102M 0s -2024-04-29T04:26:48Z #15 2.980 124150K .......... .......... .......... .......... .......... 97% 150M 0s -2024-04-29T04:26:48Z #15 2.980 124200K .......... .......... .......... .......... .......... 97% 34.6M 0s -2024-04-29T04:26:48Z #15 2.982 124250K .......... .......... .......... .......... .......... 97% 59.9M 0s -2024-04-29T04:26:48Z #15 2.985 124300K .......... .......... .......... .......... .......... 97% 157M 0s -2024-04-29T04:26:48Z #15 2.985 124350K .......... .......... .......... .......... .......... 97% 170M 0s -2024-04-29T04:26:48Z #15 2.985 124400K .......... .......... .......... .......... .......... 97% 150M 0s -2024-04-29T04:26:48Z #15 2.985 124450K .......... .......... .......... .......... .......... 97% 57.2M 0s -2024-04-29T04:26:48Z #15 2.985 124500K .......... .......... .......... .......... .......... 97% 36.1M 0s -2024-04-29T04:26:48Z #15 2.986 124550K .......... .......... .......... .......... .......... 97% 132M 0s -2024-04-29T04:26:48Z #15 2.988 124600K .......... .......... .......... .......... .......... 97% 147M 0s -2024-04-29T04:26:48Z #15 2.988 124650K .......... .......... .......... .......... .......... 97% 117M 0s -2024-04-29T04:26:48Z #15 2.988 124700K .......... .......... .......... .......... .......... 97% 65.3M 0s -2024-04-29T04:26:48Z #15 2.988 124750K .......... .......... .......... .......... .......... 97% 92.9M 0s -2024-04-29T04:26:48Z #15 2.988 124800K .......... .......... .......... .......... .......... 97% 107M 0s -2024-04-29T04:26:48Z #15 2.989 124850K .......... .......... .......... .......... .......... 97% 12.7M 0s -2024-04-29T04:26:48Z #15 2.997 124900K .......... .......... .......... .......... .......... 97% 64.6M 0s -2024-04-29T04:26:48Z #15 2.997 124950K .......... .......... .......... .......... .......... 97% 126M 0s -2024-04-29T04:26:48Z #15 2.997 125000K .......... .......... .......... .......... .......... 97% 110M 0s -2024-04-29T04:26:48Z #15 2.997 125050K .......... .......... .......... .......... .......... 97% 138M 0s -2024-04-29T04:26:48Z #15 2.997 125100K .......... .......... .......... .......... .......... 97% 105M 0s -2024-04-29T04:26:48Z #15 2.997 125150K .......... .......... .......... .......... .......... 97% 64.7M 0s -2024-04-29T04:26:48Z #15 2.997 125200K .......... .......... .......... .......... .......... 98% 107M 0s -2024-04-29T04:26:48Z #15 2.997 125250K .......... .......... .......... .......... .......... 98% 28.3M 0s -2024-04-29T04:26:48Z #15 2.999 125300K .......... .......... .......... .......... .......... 98% 19.1M 0s -2024-04-29T04:26:48Z #15 3.005 125350K .......... .......... .......... .......... .......... 98% 49.8M 0s -2024-04-29T04:26:48Z #15 3.005 125400K .......... .......... .......... .......... .......... 98% 115M 0s -2024-04-29T04:26:48Z #15 3.005 125450K .......... .......... .......... .......... .......... 98% 110M 0s -2024-04-29T04:26:48Z #15 3.005 125500K .......... .......... .......... .......... .......... 98% 116M 0s -2024-04-29T04:26:48Z #15 3.005 125550K .......... .......... .......... .......... .......... 98% 91.6M 0s -2024-04-29T04:26:48Z #15 3.005 125600K .......... .......... .......... .......... .......... 98% 55.3M 0s -2024-04-29T04:26:48Z #15 3.005 125650K .......... .......... .......... .......... .......... 98% 135M 0s -2024-04-29T04:26:48Z #15 3.006 125700K .......... .......... .......... .......... .......... 98% 12.2M 0s -2024-04-29T04:26:48Z #15 3.012 125750K .......... .......... .......... .......... .......... 98% 101M 0s -2024-04-29T04:26:48Z #15 3.012 125800K .......... .......... .......... .......... .......... 98% 114M 0s -2024-04-29T04:26:48Z #15 3.012 125850K .......... .......... .......... .......... .......... 98% 59.5M 0s -2024-04-29T04:26:48Z #15 3.012 125900K .......... .......... .......... .......... .......... 98% 104M 0s -2024-04-29T04:26:48Z #15 3.012 125950K .......... .......... .......... .......... .......... 98% 123M 0s -2024-04-29T04:26:48Z #15 3.012 126000K .......... .......... .......... .......... .......... 98% 105M 0s -2024-04-29T04:26:48Z #15 3.012 126050K .......... .......... .......... .......... .......... 98% 83.3M 0s -2024-04-29T04:26:48Z #15 3.012 126100K .......... .......... .......... .......... .......... 98% 42.2M 0s -2024-04-29T04:26:48Z #15 3.014 126150K .......... .......... .......... .......... .......... 98% 47.1M 0s -2024-04-29T04:26:48Z #15 3.015 126200K .......... .......... .......... .......... .......... 98% 52.3M 0s -2024-04-29T04:26:48Z #15 3.016 126250K .......... .......... .......... .......... .......... 98% 33.0M 0s -2024-04-29T04:26:48Z #15 3.021 126300K .......... .......... .......... .......... .......... 98% 111M 0s -2024-04-29T04:26:48Z #15 3.021 126350K .......... .......... .......... .......... .......... 98% 133M 0s -2024-04-29T04:26:48Z #15 3.021 126400K .......... .......... .......... .......... .......... 98% 105M 0s -2024-04-29T04:26:48Z #15 3.021 126450K .......... .......... .......... .......... .......... 98% 115M 0s -2024-04-29T04:26:48Z #15 3.021 126500K .......... .......... .......... .......... .......... 99% 120M 0s -2024-04-29T04:26:48Z #15 3.021 126550K .......... .......... .......... .......... .......... 99% 113M 0s -2024-04-29T04:26:48Z #15 3.021 126600K .......... .......... .......... .......... .......... 99% 110M 0s -2024-04-29T04:26:48Z #15 3.021 126650K .......... .......... .......... .......... .......... 99% 125M 0s -2024-04-29T04:26:48Z #15 3.021 126700K .......... .......... .......... .......... .......... 99% 128M 0s -2024-04-29T04:26:48Z #15 3.022 126750K .......... .......... .......... .......... .......... 99% 20.5M 0s -2024-04-29T04:26:48Z #15 3.025 126800K .......... .......... .......... .......... .......... 99% 107M 0s -2024-04-29T04:26:48Z #15 3.025 126850K .......... .......... .......... .......... .......... 99% 122M 0s -2024-04-29T04:26:48Z #15 3.025 126900K .......... .......... .......... .......... .......... 99% 123M 0s -2024-04-29T04:26:48Z #15 3.025 126950K .......... .......... .......... .......... .......... 99% 27.4M 0s -2024-04-29T04:26:48Z #15 3.027 127000K .......... .......... .......... .......... .......... 99% 35.6M 0s -2024-04-29T04:26:48Z #15 3.029 127050K .......... .......... .......... .......... .......... 99% 130M 0s -2024-04-29T04:26:48Z #15 3.029 127100K .......... .......... .......... .......... .......... 99% 111M 0s -2024-04-29T04:26:48Z #15 3.029 127150K .......... .......... .......... .......... .......... 99% 127M 0s -2024-04-29T04:26:48Z #15 3.029 127200K .......... .......... .......... .......... .......... 99% 13.7M 0s -2024-04-29T04:26:48Z #15 3.037 127250K .......... .......... .......... .......... .......... 99% 110M 0s -2024-04-29T04:26:48Z #15 3.037 127300K .......... .......... .......... .......... .......... 99% 105M 0s -2024-04-29T04:26:48Z #15 3.037 127350K .......... .......... .......... .......... .......... 99% 128M 0s -2024-04-29T04:26:48Z #15 3.037 127400K .......... .......... .......... .......... .......... 99% 119M 0s -2024-04-29T04:26:48Z #15 3.037 127450K .......... .......... .......... .......... .......... 99% 124M 0s -2024-04-29T04:26:48Z #15 3.037 127500K .......... .......... .......... .......... .......... 99% 105M 0s -2024-04-29T04:26:48Z #15 3.037 127550K .......... .......... .......... .......... .......... 99% 132M 0s -2024-04-29T04:26:48Z #15 3.037 127600K .......... .......... .......... .......... .......... 99% 125M 0s -2024-04-29T04:26:48Z #15 3.037 127650K .......... .......... .......... .......... .......... 99% 104M 0s -2024-04-29T04:26:48Z #15 3.037 127700K .......... .......... .......... .......... .......... 99% 143M 0s -2024-04-29T04:26:48Z #15 3.037 127750K .......... .......... .......... .......... . 100% 23.2M=1.7s -2024-04-29T04:26:48Z #15 3.039 -2024-04-29T04:26:48Z #15 3.039 2024-04-29 04:26:47 (74.5 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [130857988/130857988] -2024-04-29T04:26:48Z #15 3.039 -2024-04-29T04:26:51Z #15 6.416 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.5/globusconnectpersonal' -2024-04-29T04:26:51Z #15 6.439 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-04-29T04:26:52Z #15 DONE 7.9s -2024-04-29T04:26:52Z -2024-04-29T04:26:52Z #16 exporting to image -2024-04-29T04:26:52Z #16 exporting layers -2024-04-29T04:29:36Z #16 exporting layers 163.7s done -2024-04-29T04:29:36Z #16 writing image sha256:3e4682dfa43dc69a49e9769ee5c17799737aee595bbf0195964d4f781a251abe done -2024-04-29T04:29:36Z #16 naming to docker.io/pavics/workflow-tests:py311-240428 done -2024-04-29T04:29:36Z #16 DONE 163.7s -2024-04-29T04:29:36Z Pushing index.docker.io/pavics/workflow-tests:py311-240428... -2024-04-29T04:37:34Z Done! -2024-04-29T04:37:34Z Build finished +2024-05-06T16:42:54Z Building in Docker Cloud's infrastructure... +2024-05-06T16:42:54Z Cloning into '.'... +2024-05-06T16:42:55Z Warning: Permanently added the RSA host key for IP address '140.82.114.4' to the list of known hosts. +2024-05-06T16:42:56Z Switched to a new branch 'docker-py311-240506' +2024-05-06T16:42:56Z KernelVersion: 5.4.0-1068-aws +2024-05-06T16:42:56Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-05-06T16:42:56Z Arch: amd64 +2024-05-06T16:42:56Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-05-06T16:42:56Z ApiVersion: 1.41 +2024-05-06T16:42:56Z Platform: {u'Name': u'Docker Engine - Community'} +2024-05-06T16:42:56Z Version: 20.10.15 +2024-05-06T16:42:56Z MinAPIVersion: 1.12 +2024-05-06T16:42:56Z GitCommit: 4433bf6 +2024-05-06T16:42:56Z Os: linux +2024-05-06T16:42:56Z GoVersion: go1.17.9 +2024-05-06T16:42:56Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py311-240506... +2024-05-06T16:43:02Z #1 [internal] load build definition from Dockerfile +2024-05-06T16:43:02Z #1 transferring dockerfile: 6.99kB done +2024-05-06T16:43:02Z #1 DONE 0.1s +2024-05-06T16:43:02Z +2024-05-06T16:43:02Z #2 [internal] load .dockerignore +2024-05-06T16:43:02Z #2 transferring context: 2B done +2024-05-06T16:43:02Z #2 DONE 0.1s +2024-05-06T16:43:03Z +2024-05-06T16:43:03Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-05-06T16:43:03Z #3 ... +2024-05-06T16:43:03Z +2024-05-06T16:43:03Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io +2024-05-06T16:43:03Z #4 DONE 0.0s +2024-05-06T16:43:03Z +2024-05-06T16:43:03Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest +2024-05-06T16:43:03Z #3 DONE 0.9s +2024-05-06T16:43:03Z +2024-05-06T16:43:03Z #5 [internal] load build context +2024-05-06T16:43:03Z #5 transferring context: 9.89kB done +2024-05-06T16:43:03Z #5 DONE 0.0s +2024-05-06T16:43:03Z +2024-05-06T16:43:03Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b +2024-05-06T16:43:03Z #6 resolve docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b done +2024-05-06T16:43:03Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 0B / 50.08MB 0.1s +2024-05-06T16:43:03Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0B / 150.89MB 0.1s +2024-05-06T16:43:03Z #6 sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b 2.36kB / 2.36kB done +2024-05-06T16:43:03Z #6 sha256:2f63021fb73070c52ff804d164a9802b54e89ce9734eeb3c4236bddc57c75617 869B / 869B done +2024-05-06T16:43:04Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.24MB / 50.08MB 0.2s +2024-05-06T16:43:04Z #6 sha256:1f702ef68adb9e4c2b71bdec2ef2cf775120cee7edc02a8e46c4388e259d431c 5.62kB / 5.62kB done +2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 2.10MB / 31.43MB 0.2s +2024-05-06T16:43:04Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 8.39MB / 50.08MB 0.4s +2024-05-06T16:43:04Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 9.44MB / 150.89MB 0.4s +2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.24MB / 31.43MB 0.4s +2024-05-06T16:43:04Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 15.73MB / 50.08MB 0.6s +2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 9.44MB / 31.43MB 0.6s +2024-05-06T16:43:04Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 17.83MB / 150.89MB 0.7s +2024-05-06T16:43:04Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 22.02MB / 50.08MB 0.9s +2024-05-06T16:43:04Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 26.21MB / 150.89MB 0.9s +2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 13.65MB / 31.43MB 0.9s +2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 16.38MB / 31.43MB 1.0s +2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 26.21MB / 50.08MB 1.1s +2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 34.60MB / 150.89MB 1.1s +2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 29.36MB / 50.08MB 1.3s +2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 42.99MB / 150.89MB 1.3s +2024-05-06T16:43:05Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 20.97MB / 31.43MB 1.3s +2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 36.70MB / 50.08MB 1.6s +2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 52.43MB / 150.89MB 1.6s +2024-05-06T16:43:05Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.6s +2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 39.85MB / 50.08MB 1.7s +2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 1.9s +2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 65.01MB / 150.89MB 1.9s +2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 74.45MB / 150.89MB 2.0s +2024-05-06T16:43:06Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 85.98MB / 150.89MB 2.2s +2024-05-06T16:43:06Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 2.0s done +2024-05-06T16:43:06Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 +2024-05-06T16:43:06Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 2.6s done +2024-05-06T16:43:06Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 94.37MB / 150.89MB 2.7s +2024-05-06T16:43:06Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 102.76MB / 150.89MB 3.0s +2024-05-06T16:43:07Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 112.20MB / 150.89MB 3.3s +2024-05-06T16:43:07Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 120.74MB / 150.89MB 3.8s +2024-05-06T16:43:08Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 128.97MB / 150.89MB 4.3s +2024-05-06T16:43:08Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 137.36MB / 150.89MB 4.6s +2024-05-06T16:43:08Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 146.80MB / 150.89MB 4.9s +2024-05-06T16:43:09Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 150.89MB / 150.89MB 5.8s done +2024-05-06T16:43:11Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 4.9s done +2024-05-06T16:43:11Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 +2024-05-06T16:43:16Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.1s +2024-05-06T16:43:17Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 6.1s done +2024-05-06T16:43:17Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc +2024-05-06T16:43:22Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 5.1s +2024-05-06T16:43:27Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.2s +2024-05-06T16:43:31Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 14.1s done +2024-05-06T16:43:32Z #6 DONE 28.4s +2024-05-06T16:43:32Z +2024-05-06T16:43:32Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba +2024-05-06T16:43:33Z #7 1.472 Channels: +2024-05-06T16:43:33Z #7 1.472 - defaults +2024-05-06T16:43:33Z #7 1.472 Platform: linux-64 +2024-05-06T16:43:38Z #7 1.472 Collecting package metadata (repodata.json): ...working... done +2024-05-06T16:43:38Z #7 5.839 Solving environment: ...working... done +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 ## Package Plan ## +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 environment location: /opt/conda +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 added / updated specs: +2024-05-06T16:43:38Z #7 6.177 - conda +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 The following packages will be downloaded: +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 package | build +2024-05-06T16:43:38Z #7 6.177 ---------------------------|----------------- +2024-05-06T16:43:38Z #7 6.177 conda-24.4.0 | py312h06a4308_0 1.2 MB +2024-05-06T16:43:38Z #7 6.177 openssl-3.0.13 | h7f8727e_1 5.2 MB +2024-05-06T16:43:38Z #7 6.177 ------------------------------------------------------------ +2024-05-06T16:43:38Z #7 6.177 Total: 6.4 MB +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 The following packages will be UPDATED: +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 conda 24.3.0-py312h06a4308_0 --> 24.4.0-py312h06a4308_0 +2024-05-06T16:43:38Z #7 6.177 openssl 3.0.13-h7f8727e_0 --> 3.0.13-h7f8727e_1 +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 +2024-05-06T16:43:38Z #7 6.177 Proceed ([y]/n)? +2024-05-06T16:43:39Z #7 6.824 +2024-05-06T16:43:39Z #7 6.824 Downloading and Extracting Packages: ...working... done +2024-05-06T16:43:39Z #7 6.824 Preparing transaction: ...working... done +2024-05-06T16:43:39Z #7 6.865 Verifying transaction: ...working... done +2024-05-06T16:43:46Z #7 7.292 Executing transaction: ...working... done +2024-05-06T16:43:48Z #7 16.29 Channels: +2024-05-06T16:43:48Z #7 16.29 - conda-forge +2024-05-06T16:43:48Z #7 16.29 - defaults +2024-05-06T16:43:48Z #7 16.29 Platform: linux-64 +2024-05-06T16:44:15Z #7 16.29 Collecting package metadata (repodata.json): ...working... done +2024-05-06T16:44:17Z #7 42.86 Solving environment: ...working... done +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 ## Package Plan ## +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 environment location: /opt/conda +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 added / updated specs: +2024-05-06T16:44:17Z #7 45.19 - conda-pack +2024-05-06T16:44:17Z #7 45.19 - mamba +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 The following packages will be downloaded: +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 package | build +2024-05-06T16:44:17Z #7 45.19 ---------------------------|----------------- +2024-05-06T16:44:17Z #7 45.19 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 c-ares-1.28.1 | hd590300_0 165 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 conda-24.4.0 | py312h7900ff3_0 1.1 MB conda-forge +2024-05-06T16:44:17Z #7 45.19 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 icu-73.2 | h59595ed_0 11.5 MB conda-forge +2024-05-06T16:44:17Z #7 45.19 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge +2024-05-06T16:44:17Z #7 45.19 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libcurl-8.7.1 | hca28451_0 389 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libexpat-2.5.0 | hcb278e6_1 76 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libgcc-ng-13.2.0 | h77fa898_6 759 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libgomp-13.2.0 | h77fa898_6 410 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libiconv-1.17 | hd590300_2 689 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge +2024-05-06T16:44:17Z #7 45.19 libmambapy-1.5.8 | py312hd9e9ff6_0 299 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libnsl-2.0.1 | hd590300_0 33 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libsqlite-3.45.3 | h2797004_0 840 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libssh2-1.11.0 | h0841786_0 265 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libstdcxx-ng-13.2.0 | hc0a3c3a_6 3.7 MB conda-forge +2024-05-06T16:44:17Z #7 45.19 libuuid-2.38.1 | h0b41bf4_0 33 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libxcrypt-4.4.36 | hd590300_1 98 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libxml2-2.12.6 | h232c23b_2 688 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 libzlib-1.2.13 | hd590300_5 60 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 lzo-2.10 | hd590300_1001 167 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 mamba-1.5.8 | py312h9460a1c_0 63 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 openssl-3.3.0 | hd590300_0 2.8 MB conda-forge +2024-05-06T16:44:17Z #7 45.19 python-3.12.2 |hab00c5b_0_cpython 30.8 MB conda-forge +2024-05-06T16:44:17Z #7 45.19 python_abi-3.12 | 4_cp312 6 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 tk-8.6.13 |noxft_h4845f30_101 3.2 MB conda-forge +2024-05-06T16:44:17Z #7 45.19 zlib-1.2.13 | hd590300_5 91 KB conda-forge +2024-05-06T16:44:17Z #7 45.19 ------------------------------------------------------------ +2024-05-06T16:44:17Z #7 45.19 Total: 62.9 MB +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 The following NEW packages will be INSTALLED: +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 +2024-05-06T16:44:17Z #7 45.19 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 +2024-05-06T16:44:17Z #7 45.19 libexpat conda-forge/linux-64::libexpat-2.5.0-hcb278e6_1 +2024-05-06T16:44:17Z #7 45.19 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 +2024-05-06T16:44:17Z #7 45.19 libnsl conda-forge/linux-64::libnsl-2.0.1-hd590300_0 +2024-05-06T16:44:17Z #7 45.19 libsqlite conda-forge/linux-64::libsqlite-3.45.3-h2797004_0 +2024-05-06T16:44:17Z #7 45.19 libxcrypt conda-forge/linux-64::libxcrypt-4.4.36-hd590300_1 +2024-05-06T16:44:17Z #7 45.19 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 +2024-05-06T16:44:17Z #7 45.19 lzo conda-forge/linux-64::lzo-2.10-hd590300_1001 +2024-05-06T16:44:17Z #7 45.19 mamba conda-forge/linux-64::mamba-1.5.8-py312h9460a1c_0 +2024-05-06T16:44:17Z #7 45.19 python_abi conda-forge/linux-64::python_abi-3.12-4_cp312 +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 The following packages will be UPDATED: +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 +2024-05-06T16:44:17Z #7 45.19 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 +2024-05-06T16:44:17Z #7 45.19 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 +2024-05-06T16:44:17Z #7 45.19 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 +2024-05-06T16:44:17Z #7 45.19 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 +2024-05-06T16:44:17Z #7 45.19 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 +2024-05-06T16:44:17Z #7 45.19 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h77fa898_6 +2024-05-06T16:44:17Z #7 45.19 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h77fa898_6 +2024-05-06T16:44:17Z #7 45.19 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 +2024-05-06T16:44:17Z #7 45.19 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 +2024-05-06T16:44:17Z #7 45.19 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-hc0a3c3a_6 +2024-05-06T16:44:17Z #7 45.19 libuuid pkgs/main::libuuid-1.41.5-h5eee18b_0 --> conda-forge::libuuid-2.38.1-h0b41bf4_0 +2024-05-06T16:44:17Z #7 45.19 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_2 +2024-05-06T16:44:17Z #7 45.19 openssl pkgs/main::openssl-3.0.13-h7f8727e_1 --> conda-forge::openssl-3.3.0-hd590300_0 +2024-05-06T16:44:17Z #7 45.19 tk pkgs/main::tk-8.6.12-h1ccaba5_0 --> conda-forge::tk-8.6.13-noxft_h4845f30_101 +2024-05-06T16:44:17Z #7 45.19 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 The following packages will be SUPERSEDED by a higher-priority channel: +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge +2024-05-06T16:44:17Z #7 45.19 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu +2024-05-06T16:44:17Z #7 45.19 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 +2024-05-06T16:44:17Z #7 45.19 conda pkgs/main::conda-24.4.0-py312h06a4308~ --> conda-forge::conda-24.4.0-py312h7900ff3_0 +2024-05-06T16:44:17Z #7 45.19 libmamba pkgs/main::libmamba-1.5.8-hfe524e5_1 --> conda-forge::libmamba-1.5.8-had39da4_0 +2024-05-06T16:44:17Z #7 45.19 libmambapy pkgs/main::libmambapy-1.5.8-py312h2da~ --> conda-forge::libmambapy-1.5.8-py312hd9e9ff6_0 +2024-05-06T16:44:17Z #7 45.19 python pkgs/main::python-3.12.2-h996f2a0_0 --> conda-forge::python-3.12.2-hab00c5b_0_cpython +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 +2024-05-06T16:44:17Z #7 45.19 Proceed ([y]/n)? +2024-05-06T16:44:22Z #7 50.03 +2024-05-06T16:44:22Z #7 50.03 Downloading and Extracting Packages: ...working... done +2024-05-06T16:44:22Z #7 50.03 Preparing transaction: ...working... done +2024-05-06T16:44:24Z #7 50.34 Verifying transaction: ...working... done +2024-05-06T16:44:46Z #7 52.15 Executing transaction: ...working... done +2024-05-06T16:44:49Z #7 77.64 Will remove 36 (69.3 MB) tarball(s). +2024-05-06T16:44:49Z #7 77.64 Will remove 1 index cache(s). +2024-05-06T16:44:49Z #7 77.64 Will remove 5 (25.6 MB) package(s). +2024-05-06T16:44:49Z #7 77.64 There are no tempfile(s) to remove. +2024-05-06T16:44:49Z #7 77.64 There are no logfile(s) to remove. +2024-05-06T16:44:51Z #7 79.33 bin/micromamba +2024-05-06T16:44:53Z #7 DONE 81.5s +2024-05-06T16:44:53Z +2024-05-06T16:44:53Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean +2024-05-06T16:44:54Z #8 0.520 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] +2024-05-06T16:44:54Z #8 0.542 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] +2024-05-06T16:44:54Z #8 0.543 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] +2024-05-06T16:44:54Z #8 0.712 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] +2024-05-06T16:44:54Z #8 1.006 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] +2024-05-06T16:44:55Z #8 1.641 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] +2024-05-06T16:44:57Z #8 3.251 Fetched 8566 kB in 3s (3132 kB/s) +2024-05-06T16:44:58Z #8 3.251 Reading package lists... +2024-05-06T16:44:59Z #8 4.361 Reading package lists... +2024-05-06T16:44:59Z #8 5.432 Building dependency tree... +2024-05-06T16:44:59Z #8 5.699 Reading state information... +2024-05-06T16:44:59Z #8 6.126 git is already the newest version (1:2.30.2-1+deb11u2). +2024-05-06T16:44:59Z #8 6.126 mercurial is already the newest version (5.6.1-4). +2024-05-06T16:44:59Z #8 6.126 The following additional packages will be installed: +2024-05-06T16:44:59Z #8 6.128 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-05-06T16:44:59Z #8 6.128 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-05-06T16:44:59Z #8 6.129 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config +2024-05-06T16:44:59Z #8 6.129 fonts-dejavu-core gcc-10 glib-networking glib-networking-common +2024-05-06T16:44:59Z #8 6.130 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache +2024-05-06T16:44:59Z #8 6.130 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 +2024-05-06T16:44:59Z #8 6.131 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 +2024-05-06T16:44:59Z #8 6.139 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-05-06T16:44:59Z #8 6.139 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-05-06T16:44:59Z #8 6.139 libc-dev-bin libc-devtools libc6 libc6-dev libcairo-gobject2 libcairo2 +2024-05-06T16:44:59Z #8 6.139 libcap2 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 +2024-05-06T16:44:59Z #8 6.139 libctf-nobfd0 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 +2024-05-06T16:44:59Z #8 6.139 libdbus-glib-1-2 libdconf1 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 +2024-05-06T16:44:59Z #8 6.139 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 +2024-05-06T16:44:59Z #8 6.139 libepoxy0 libevent-2.1-7 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 +2024-05-06T16:44:59Z #8 6.139 libgcc-10-dev libgd3 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin +2024-05-06T16:44:59Z #8 6.139 libgdk-pixbuf2.0-common libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 +2024-05-06T16:44:59Z #8 6.139 libglx-mesa0 libglx0 libgomp1 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin +2024-05-06T16:44:59Z #8 6.139 libgtk-3-common libharfbuzz0b libicu67 libigdgmm11 libip4tc2 libisl23 +2024-05-06T16:44:59Z #8 6.139 libitm1 libjbig0 libjpeg62-turbo libjson-c5 libjson-glib-1.0-0 +2024-05-06T16:44:59Z #8 6.139 libjson-glib-1.0-common libkmod2 liblcms2-2 libllvm11 liblsan0 libmfx1 +2024-05-06T16:44:59Z #8 6.139 libmp3lame0 libmpc3 libmpfr6 libnsl-dev libnss-systemd libnuma1 libogg0 +2024-05-06T16:44:59Z #8 6.139 libopenjp2-7 libopus0 libpam-systemd libpango-1.0-0 libpangocairo-1.0-0 +2024-05-06T16:44:59Z #8 6.139 libpangoft2-1.0-0 libpciaccess0 libpixman-1-0 libpng16-16 libproxy1v5 +2024-05-06T16:44:59Z #8 6.139 libquadmath0 librest-0.7-0 librsvg2-2 librsvg2-common libsensors-config +2024-05-06T16:44:59Z #8 6.139 libsensors5 libshine3 libsnappy1v5 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 +2024-05-06T16:44:59Z #8 6.139 libspeex1 libswresample3 libthai-data libthai0 libtheora0 libtiff5 +2024-05-06T16:44:59Z #8 6.139 libtirpc-dev libtsan0 libtwolame0 libubsan1 libva-drm2 libva-x11-2 libva2 +2024-05-06T16:44:59Z #8 6.139 libvdpau-va-gl1 libvdpau1 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 +2024-05-06T16:45:00Z #8 6.139 libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwebp6 +2024-05-06T16:45:00Z #8 6.139 libwebpmux3 libx11-xcb1 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 +2024-05-06T16:45:00Z #8 6.139 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 +2024-05-06T16:45:00Z #8 6.139 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcomposite1 +2024-05-06T16:45:00Z #8 6.139 libxcursor1 libxdamage1 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 +2024-05-06T16:45:00Z #8 6.139 libxkbfile1 libxml2 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 +2024-05-06T16:45:00Z #8 6.139 libxtst6 libxv1 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common +2024-05-06T16:45:00Z #8 6.139 libzvbi0 linux-libc-dev manpages manpages-dev mesa-va-drivers +2024-05-06T16:45:00Z #8 6.139 mesa-vdpau-drivers mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info +2024-05-06T16:45:00Z #8 6.139 systemd systemd-sysv systemd-timesyncd va-driver-all vdpau-driver-all +2024-05-06T16:45:00Z #8 6.139 xkb-data +2024-05-06T16:45:00Z #8 6.139 Suggested packages: +2024-05-06T16:45:00Z #8 6.139 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern +2024-05-06T16:45:00Z #8 6.139 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex +2024-05-06T16:45:00Z #8 6.139 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders +2024-05-06T16:45:00Z #8 6.139 libasound2-plugins alsa-utils glibc-doc libc-l10n locales colord cups-common +2024-05-06T16:45:00Z #8 6.139 libgd-tools gvfs liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors +2024-05-06T16:45:00Z #8 6.139 speex man-browser opencl-icd ed diffutils-doc systemd-container policykit-1 +2024-05-06T16:45:00Z #8 6.139 zip nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver +2024-05-06T16:45:00Z #8 6.139 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver +2024-05-06T16:45:00Z #8 6.139 nvidia-legacy-340xx-vdpau-driver mesa-utils +2024-05-06T16:45:00Z #8 6.139 Recommended packages: +2024-05-06T16:45:00Z #8 6.139 libnss-nis libnss-nisplus +2024-05-06T16:45:01Z #8 7.993 The following NEW packages will be installed: +2024-05-06T16:45:01Z #8 7.994 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils +2024-05-06T16:45:01Z #8 7.995 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session +2024-05-06T16:45:01Z #8 7.995 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig +2024-05-06T16:45:01Z #8 7.996 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 +2024-05-06T16:45:01Z #8 7.996 glib-networking glib-networking-common glib-networking-services +2024-05-06T16:45:01Z #8 8.003 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme +2024-05-06T16:45:01Z #8 8.003 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 +2024-05-06T16:45:01Z #8 8.003 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 +2024-05-06T16:45:01Z #8 8.003 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 +2024-05-06T16:45:01Z #8 8.003 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils +2024-05-06T16:45:01Z #8 8.003 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 +2024-05-06T16:45:01Z #8 8.003 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 +2024-05-06T16:45:01Z #8 8.003 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 +2024-05-06T16:45:01Z #8 8.003 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 +2024-05-06T16:45:01Z #8 8.003 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 +2024-05-06T16:45:01Z #8 8.003 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 +2024-05-06T16:45:01Z #8 8.003 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 +2024-05-06T16:45:01Z #8 8.003 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 +2024-05-06T16:45:01Z #8 8.003 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b +2024-05-06T16:45:01Z #8 8.003 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo +2024-05-06T16:45:01Z #8 8.003 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 +2024-05-06T16:45:01Z #8 8.003 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev +2024-05-06T16:45:01Z #8 8.003 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd +2024-05-06T16:45:01Z #8 8.003 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 +2024-05-06T16:45:01Z #8 8.003 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 +2024-05-06T16:45:01Z #8 8.003 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 +2024-05-06T16:45:01Z #8 8.003 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 +2024-05-06T16:45:01Z #8 8.003 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 +2024-05-06T16:45:01Z #8 8.003 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 +2024-05-06T16:45:01Z #8 8.003 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 +2024-05-06T16:45:01Z #8 8.003 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 +2024-05-06T16:45:01Z #8 8.003 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 +2024-05-06T16:45:01Z #8 8.003 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 +2024-05-06T16:45:01Z #8 8.003 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 +2024-05-06T16:45:01Z #8 8.003 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 +2024-05-06T16:45:01Z #8 8.003 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 +2024-05-06T16:45:01Z #8 8.003 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 +2024-05-06T16:45:01Z #8 8.003 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers +2024-05-06T16:45:01Z #8 8.003 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd +2024-05-06T16:45:01Z #8 8.003 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all +2024-05-06T16:45:01Z #8 8.003 x11-utils xkb-data +2024-05-06T16:45:01Z #8 8.003 The following packages will be upgraded: +2024-05-06T16:45:01Z #8 8.003 libc6 +2024-05-06T16:45:01Z #8 8.043 1 upgraded, 221 newly installed, 0 to remove and 1 not upgraded. +2024-05-06T16:45:01Z #8 8.043 Need to get 238 MB of archives. +2024-05-06T16:45:01Z #8 8.043 After this operation, 891 MB of additional disk space will be used. +2024-05-06T16:45:01Z #8 8.043 Get:1 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6 amd64 2.31-13+deb11u10 [2825 kB] +2024-05-06T16:45:01Z #8 8.138 Get:2 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] +2024-05-06T16:45:01Z #8 8.141 Get:3 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] +2024-05-06T16:45:01Z #8 8.142 Get:4 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] +2024-05-06T16:45:01Z #8 8.144 Get:5 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] +2024-05-06T16:45:01Z #8 8.149 Get:6 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] +2024-05-06T16:45:01Z #8 8.153 Get:7 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] +2024-05-06T16:45:01Z #8 8.155 Get:8 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] +2024-05-06T16:45:01Z #8 8.162 Get:9 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] +2024-05-06T16:45:01Z #8 8.165 Get:10 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] +2024-05-06T16:45:01Z #8 8.168 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] +2024-05-06T16:45:01Z #8 8.269 Get:12 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] +2024-05-06T16:45:02Z #8 8.274 Get:13 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] +2024-05-06T16:45:02Z #8 8.278 Get:14 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] +2024-05-06T16:45:02Z #8 8.282 Get:15 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] +2024-05-06T16:45:02Z #8 8.286 Get:16 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] +2024-05-06T16:45:02Z #8 8.297 Get:17 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] +2024-05-06T16:45:02Z #8 8.316 Get:18 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] +2024-05-06T16:45:02Z #8 8.320 Get:19 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] +2024-05-06T16:45:02Z #8 8.330 Get:20 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] +2024-05-06T16:45:02Z #8 8.338 Get:21 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] +2024-05-06T16:45:02Z #8 8.618 Get:22 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] +2024-05-06T16:45:02Z #8 8.630 Get:23 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] +2024-05-06T16:45:02Z #8 8.644 Get:24 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] +2024-05-06T16:45:02Z #8 8.668 Get:25 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] +2024-05-06T16:45:02Z #8 8.675 Get:26 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] +2024-05-06T16:45:02Z #8 8.681 Get:27 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] +2024-05-06T16:45:02Z #8 8.684 Get:28 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] +2024-05-06T16:45:02Z #8 8.690 Get:29 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] +2024-05-06T16:45:02Z #8 8.695 Get:30 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] +2024-05-06T16:45:02Z #8 8.700 Get:31 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] +2024-05-06T16:45:02Z #8 8.703 Get:32 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] +2024-05-06T16:45:02Z #8 9.050 Get:33 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] +2024-05-06T16:45:02Z #8 9.052 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] +2024-05-06T16:45:02Z #8 9.054 Get:35 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] +2024-05-06T16:45:02Z #8 9.062 Get:36 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] +2024-05-06T16:45:02Z #8 9.065 Get:37 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] +2024-05-06T16:45:02Z #8 9.069 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] +2024-05-06T16:45:02Z #8 9.071 Get:39 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] +2024-05-06T16:45:02Z #8 9.072 Get:40 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] +2024-05-06T16:45:02Z #8 9.074 Get:41 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] +2024-05-06T16:45:02Z #8 9.108 Get:42 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] +2024-05-06T16:45:02Z #8 9.122 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] +2024-05-06T16:45:02Z #8 9.126 Get:44 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] +2024-05-06T16:45:02Z #8 9.139 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] +2024-05-06T16:45:02Z #8 9.165 Get:46 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] +2024-05-06T16:45:02Z #8 9.167 Get:47 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] +2024-05-06T16:45:02Z #8 9.179 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] +2024-05-06T16:45:02Z #8 9.213 Get:49 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] +2024-05-06T16:45:03Z #8 9.218 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] +2024-05-06T16:45:03Z #8 9.447 Get:51 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] +2024-05-06T16:45:03Z #8 9.450 Get:52 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] +2024-05-06T16:45:03Z #8 9.454 Get:53 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] +2024-05-06T16:45:03Z #8 9.457 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] +2024-05-06T16:45:03Z #8 9.458 Get:55 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] +2024-05-06T16:45:03Z #8 9.460 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] +2024-05-06T16:45:03Z #8 9.464 Get:57 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] +2024-05-06T16:45:03Z #8 9.470 Get:58 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] +2024-05-06T16:45:03Z #8 9.480 Get:59 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] +2024-05-06T16:45:03Z #8 9.498 Get:60 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] +2024-05-06T16:45:03Z #8 9.505 Get:61 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] +2024-05-06T16:45:03Z #8 9.512 Get:62 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] +2024-05-06T16:45:03Z #8 9.534 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] +2024-05-06T16:45:03Z #8 9.537 Get:64 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] +2024-05-06T16:45:03Z #8 9.539 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] +2024-05-06T16:45:03Z #8 9.549 Get:66 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] +2024-05-06T16:45:03Z #8 9.551 Get:67 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] +2024-05-06T16:45:03Z #8 9.554 Get:68 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] +2024-05-06T16:45:03Z #8 9.557 Get:69 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] +2024-05-06T16:45:03Z #8 9.559 Get:70 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] +2024-05-06T16:45:03Z #8 9.562 Get:71 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] +2024-05-06T16:45:03Z #8 9.566 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] +2024-05-06T16:45:03Z #8 9.577 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] +2024-05-06T16:45:03Z #8 9.581 Get:74 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] +2024-05-06T16:45:03Z #8 9.584 Get:75 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] +2024-05-06T16:45:03Z #8 9.590 Get:76 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] +2024-05-06T16:45:03Z #8 9.593 Get:77 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] +2024-05-06T16:45:03Z #8 9.595 Get:78 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] +2024-05-06T16:45:03Z #8 9.597 Get:79 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] +2024-05-06T16:45:03Z #8 9.620 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] +2024-05-06T16:45:03Z #8 9.622 Get:81 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] +2024-05-06T16:45:03Z #8 9.637 Get:82 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] +2024-05-06T16:45:03Z #8 9.647 Get:83 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] +2024-05-06T16:45:03Z #8 9.650 Get:84 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] +2024-05-06T16:45:03Z #8 9.653 Get:85 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] +2024-05-06T16:45:03Z #8 9.654 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] +2024-05-06T16:45:03Z #8 9.658 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] +2024-05-06T16:45:03Z #8 9.660 Get:88 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] +2024-05-06T16:45:03Z #8 9.662 Get:89 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] +2024-05-06T16:45:03Z #8 9.665 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] +2024-05-06T16:45:03Z #8 9.668 Get:91 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] +2024-05-06T16:45:03Z #8 9.680 Get:92 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] +2024-05-06T16:45:03Z #8 9.689 Get:93 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] +2024-05-06T16:45:03Z #8 9.691 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] +2024-05-06T16:45:03Z #8 9.695 Get:95 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] +2024-05-06T16:45:03Z #8 9.697 Get:96 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] +2024-05-06T16:45:03Z #8 9.698 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] +2024-05-06T16:45:03Z #8 9.700 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] +2024-05-06T16:45:03Z #8 9.702 Get:99 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] +2024-05-06T16:45:03Z #8 9.704 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] +2024-05-06T16:45:03Z #8 9.705 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] +2024-05-06T16:45:03Z #8 9.706 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] +2024-05-06T16:45:03Z #8 9.708 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] +2024-05-06T16:45:03Z #8 9.710 Get:104 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] +2024-05-06T16:45:03Z #8 9.712 Get:105 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] +2024-05-06T16:45:03Z #8 9.721 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] +2024-05-06T16:45:03Z #8 9.723 Get:107 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] +2024-05-06T16:45:03Z #8 9.725 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] +2024-05-06T16:45:03Z #8 9.810 Get:109 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] +2024-05-06T16:45:03Z #8 9.861 Get:110 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] +2024-05-06T16:45:03Z #8 9.867 Get:111 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.10.0esr-1~deb11u1 [63.7 MB] +2024-05-06T16:45:05Z #8 11.35 Get:112 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] +2024-05-06T16:45:05Z #8 11.35 Get:113 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] +2024-05-06T16:45:05Z #8 11.35 Get:114 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] +2024-05-06T16:45:05Z #8 11.36 Get:115 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] +2024-05-06T16:45:05Z #8 11.36 Get:116 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] +2024-05-06T16:45:05Z #8 11.36 Get:117 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] +2024-05-06T16:45:05Z #8 11.39 Get:118 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] +2024-05-06T16:45:05Z #8 11.42 Get:119 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] +2024-05-06T16:45:05Z #8 11.45 Get:120 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] +2024-05-06T16:45:05Z #8 11.46 Get:121 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] +2024-05-06T16:45:05Z #8 11.46 Get:122 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] +2024-05-06T16:45:05Z #8 11.50 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] +2024-05-06T16:45:05Z #8 11.90 Get:124 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] +2024-05-06T16:45:05Z #8 11.90 Get:125 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] +2024-05-06T16:45:05Z #8 11.90 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] +2024-05-06T16:45:05Z #8 11.90 Get:127 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] +2024-05-06T16:45:05Z #8 11.90 Get:128 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] +2024-05-06T16:45:05Z #8 11.91 Get:129 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] +2024-05-06T16:45:05Z #8 11.91 Get:130 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] +2024-05-06T16:45:05Z #8 11.92 Get:131 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] +2024-05-06T16:45:05Z #8 11.92 Get:132 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] +2024-05-06T16:45:05Z #8 11.95 Get:133 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] +2024-05-06T16:45:05Z #8 11.98 Get:134 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] +2024-05-06T16:45:05Z #8 12.07 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] +2024-05-06T16:45:05Z #8 12.07 Get:136 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] +2024-05-06T16:45:05Z #8 12.07 Get:137 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] +2024-05-06T16:45:05Z #8 12.08 Get:138 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] +2024-05-06T16:45:05Z #8 12.08 Get:139 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] +2024-05-06T16:45:05Z #8 12.08 Get:140 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] +2024-05-06T16:45:05Z #8 12.28 Get:141 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] +2024-05-06T16:45:06Z #8 12.29 Get:142 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] +2024-05-06T16:45:06Z #8 12.29 Get:143 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] +2024-05-06T16:45:06Z #8 12.30 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] +2024-05-06T16:45:06Z #8 12.31 Get:145 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] +2024-05-06T16:45:06Z #8 12.31 Get:146 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] +2024-05-06T16:45:06Z #8 12.37 Get:147 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] +2024-05-06T16:45:06Z #8 12.37 Get:148 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] +2024-05-06T16:45:06Z #8 12.38 Get:149 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] +2024-05-06T16:45:06Z #8 12.38 Get:150 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] +2024-05-06T16:45:06Z #8 12.39 Get:151 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] +2024-05-06T16:45:06Z #8 12.39 Get:152 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] +2024-05-06T16:45:06Z #8 12.40 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] +2024-05-06T16:45:06Z #8 12.40 Get:154 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] +2024-05-06T16:45:06Z #8 12.40 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] +2024-05-06T16:45:06Z #8 12.41 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] +2024-05-06T16:45:06Z #8 12.41 Get:157 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] +2024-05-06T16:45:06Z #8 12.43 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] +2024-05-06T16:45:06Z #8 12.43 Get:159 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] +2024-05-06T16:45:06Z #8 12.43 Get:160 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] +2024-05-06T16:45:06Z #8 12.45 Get:161 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] +2024-05-06T16:45:06Z #8 12.45 Get:162 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] +2024-05-06T16:45:06Z #8 12.46 Get:163 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] +2024-05-06T16:45:06Z #8 12.47 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] +2024-05-06T16:45:06Z #8 12.47 Get:165 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] +2024-05-06T16:45:06Z #8 12.48 Get:166 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] +2024-05-06T16:45:06Z #8 12.58 Get:167 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-dev-bin amd64 2.31-13+deb11u10 [276 kB] +2024-05-06T16:45:06Z #8 12.58 Get:168 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] +2024-05-06T16:45:06Z #8 12.58 Get:169 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] +2024-05-06T16:45:06Z #8 12.59 Get:170 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-devtools amd64 2.31-13+deb11u10 [246 kB] +2024-05-06T16:45:06Z #8 12.59 Get:171 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] +2024-05-06T16:45:06Z #8 12.61 Get:172 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] +2024-05-06T16:45:06Z #8 12.62 Get:173 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] +2024-05-06T16:45:06Z #8 12.62 Get:174 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] +2024-05-06T16:45:06Z #8 12.62 Get:175 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6-dev amd64 2.31-13+deb11u10 [2362 kB] +2024-05-06T16:45:06Z #8 12.67 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] +2024-05-06T16:45:06Z #8 12.68 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] +2024-05-06T16:45:06Z #8 12.68 Get:178 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] +2024-05-06T16:45:06Z #8 12.68 Get:179 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] +2024-05-06T16:45:06Z #8 12.68 Get:180 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] +2024-05-06T16:45:06Z #8 12.69 Get:181 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] +2024-05-06T16:45:06Z #8 12.69 Get:182 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] +2024-05-06T16:45:06Z #8 12.69 Get:183 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] +2024-05-06T16:45:06Z #8 12.86 Get:184 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] +2024-05-06T16:45:06Z #8 13.26 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] +2024-05-06T16:45:07Z #8 13.26 Get:186 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] +2024-05-06T16:45:07Z #8 13.27 Get:187 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] +2024-05-06T16:45:07Z #8 13.27 Get:188 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] +2024-05-06T16:45:07Z #8 13.50 Get:189 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] +2024-05-06T16:45:07Z #8 13.50 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] +2024-05-06T16:45:07Z #8 13.50 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] +2024-05-06T16:45:07Z #8 13.50 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] +2024-05-06T16:45:07Z #8 13.51 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] +2024-05-06T16:45:07Z #8 13.51 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] +2024-05-06T16:45:07Z #8 13.52 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] +2024-05-06T16:45:07Z #8 13.52 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] +2024-05-06T16:45:07Z #8 13.52 Get:197 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] +2024-05-06T16:45:07Z #8 13.52 Get:198 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] +2024-05-06T16:45:07Z #8 13.53 Get:199 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] +2024-05-06T16:45:07Z #8 13.53 Get:200 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] +2024-05-06T16:45:07Z #8 13.53 Get:201 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] +2024-05-06T16:45:07Z #8 13.53 Get:202 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] +2024-05-06T16:45:07Z #8 13.54 Get:203 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] +2024-05-06T16:45:07Z #8 13.54 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] +2024-05-06T16:45:07Z #8 13.54 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] +2024-05-06T16:45:07Z #8 13.55 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] +2024-05-06T16:45:07Z #8 13.55 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] +2024-05-06T16:45:07Z #8 13.55 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] +2024-05-06T16:45:07Z #8 13.56 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] +2024-05-06T16:45:07Z #8 13.56 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] +2024-05-06T16:45:07Z #8 13.56 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] +2024-05-06T16:45:07Z #8 13.56 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] +2024-05-06T16:45:07Z #8 13.56 Get:213 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] +2024-05-06T16:45:07Z #8 13.56 Get:214 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] +2024-05-06T16:45:07Z #8 13.59 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] +2024-05-06T16:45:07Z #8 13.65 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] +2024-05-06T16:45:07Z #8 13.70 Get:217 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] +2024-05-06T16:45:07Z #8 13.78 Get:218 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] +2024-05-06T16:45:07Z #8 13.78 Get:219 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] +2024-05-06T16:45:07Z #8 13.79 Get:220 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] +2024-05-06T16:45:07Z #8 13.79 Get:221 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] +2024-05-06T16:45:07Z #8 13.79 Get:222 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] +2024-05-06T16:45:07Z #8 14.13 debconf: delaying package configuration, since apt-utils is not installed +2024-05-06T16:45:07Z #8 14.19 Fetched 238 MB in 6s (41.4 MB/s) +2024-05-06T16:45:08Z #8 14.24 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-05-06T16:45:08Z #8 14.26 Preparing to unpack .../libc6_2.31-13+deb11u10_amd64.deb ... +2024-05-06T16:45:08Z #8 14.49 Unpacking libc6:amd64 (2.31-13+deb11u10) over (2.31-13+deb11u8) ... +2024-05-06T16:45:09Z #8 16.13 Setting up libc6:amd64 (2.31-13+deb11u10) ... +2024-05-06T16:45:11Z #8 17.35 Selecting previously unselected package libapparmor1:amd64. +2024-05-06T16:45:11Z #8 17.35 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) +2024-05-06T16:45:11Z #8 17.37 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... +2024-05-06T16:45:11Z #8 17.37 Unpacking libapparmor1:amd64 (2.13.6-10) ... +2024-05-06T16:45:11Z #8 17.42 Selecting previously unselected package libcap2:amd64. +2024-05-06T16:45:11Z #8 17.42 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... +2024-05-06T16:45:11Z #8 17.43 Unpacking libcap2:amd64 (1:2.44-1) ... +2024-05-06T16:45:11Z #8 17.48 Selecting previously unselected package libargon2-1:amd64. +2024-05-06T16:45:11Z #8 17.48 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... +2024-05-06T16:45:11Z #8 17.49 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... +2024-05-06T16:45:11Z #8 17.52 Selecting previously unselected package dmsetup. +2024-05-06T16:45:11Z #8 17.53 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... +2024-05-06T16:45:11Z #8 17.53 Unpacking dmsetup (2:1.02.175-2.1) ... +2024-05-06T16:45:11Z #8 17.59 Selecting previously unselected package libdevmapper1.02.1:amd64. +2024-05-06T16:45:11Z #8 17.59 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... +2024-05-06T16:45:11Z #8 17.59 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-05-06T16:45:11Z #8 17.65 Selecting previously unselected package libjson-c5:amd64. +2024-05-06T16:45:11Z #8 17.65 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... +2024-05-06T16:45:11Z #8 17.66 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-05-06T16:45:11Z #8 17.70 Selecting previously unselected package libcryptsetup12:amd64. +2024-05-06T16:45:11Z #8 17.70 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... +2024-05-06T16:45:11Z #8 17.71 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-05-06T16:45:11Z #8 17.78 Selecting previously unselected package libip4tc2:amd64. +2024-05-06T16:45:11Z #8 17.79 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... +2024-05-06T16:45:11Z #8 17.80 Unpacking libip4tc2:amd64 (1.8.7-1) ... +2024-05-06T16:45:11Z #8 17.84 Selecting previously unselected package libkmod2:amd64. +2024-05-06T16:45:11Z #8 17.84 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... +2024-05-06T16:45:11Z #8 17.85 Unpacking libkmod2:amd64 (28-1) ... +2024-05-06T16:45:11Z #8 17.90 Selecting previously unselected package systemd. +2024-05-06T16:45:11Z #8 17.91 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... +2024-05-06T16:45:11Z #8 17.97 Unpacking systemd (247.3-7+deb11u4) ... +2024-05-06T16:45:12Z #8 18.93 Setting up libapparmor1:amd64 (2.13.6-10) ... +2024-05-06T16:45:12Z #8 18.94 Setting up libcap2:amd64 (1:2.44-1) ... +2024-05-06T16:45:12Z #8 18.99 Setting up libargon2-1:amd64 (0~20171227-0.2) ... +2024-05-06T16:45:12Z #8 19.01 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... +2024-05-06T16:45:12Z #8 19.02 Setting up libip4tc2:amd64 (1.8.7-1) ... +2024-05-06T16:45:12Z #8 19.03 Setting up libkmod2:amd64 (28-1) ... +2024-05-06T16:45:12Z #8 19.04 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... +2024-05-06T16:45:12Z #8 19.05 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... +2024-05-06T16:45:12Z #8 19.06 Setting up systemd (247.3-7+deb11u4) ... +2024-05-06T16:45:12Z #8 19.10 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. +2024-05-06T16:45:12Z #8 19.11 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. +2024-05-06T16:45:12Z #8 19.11 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. +2024-05-06T16:45:12Z #8 19.13 Initializing machine ID from KVM UUID. +2024-05-06T16:45:13Z #8 19.57 Setting up dmsetup (2:1.02.175-2.1) ... +2024-05-06T16:45:13Z #8 19.64 Selecting previously unselected package systemd-sysv. +2024-05-06T16:45:13Z #8 19.64 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) +2024-05-06T16:45:13Z #8 19.67 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... +2024-05-06T16:45:13Z #8 19.67 Unpacking systemd-sysv (247.3-7+deb11u4) ... +2024-05-06T16:45:13Z #8 19.73 Selecting previously unselected package libdbus-1-3:amd64. +2024-05-06T16:45:13Z #8 19.74 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... +2024-05-06T16:45:13Z #8 19.74 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-05-06T16:45:13Z #8 19.82 Selecting previously unselected package dbus. +2024-05-06T16:45:13Z #8 19.82 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... +2024-05-06T16:45:13Z #8 19.83 Unpacking dbus (1.12.28-0+deb11u1) ... +2024-05-06T16:45:13Z #8 19.93 Selecting previously unselected package libnss-systemd:amd64. +2024-05-06T16:45:13Z #8 19.93 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... +2024-05-06T16:45:13Z #8 19.93 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-05-06T16:45:13Z #8 19.99 Selecting previously unselected package libpam-systemd:amd64. +2024-05-06T16:45:13Z #8 20.00 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... +2024-05-06T16:45:13Z #8 20.00 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-05-06T16:45:13Z #8 20.08 Selecting previously unselected package manpages. +2024-05-06T16:45:13Z #8 20.08 Preparing to unpack .../005-manpages_5.10-1_all.deb ... +2024-05-06T16:45:13Z #8 20.09 Unpacking manpages (5.10-1) ... +2024-05-06T16:45:14Z #8 20.31 Selecting previously unselected package systemd-timesyncd. +2024-05-06T16:45:14Z #8 20.32 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... +2024-05-06T16:45:14Z #8 20.32 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... +2024-05-06T16:45:14Z #8 20.38 Selecting previously unselected package hicolor-icon-theme. +2024-05-06T16:45:14Z #8 20.38 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... +2024-05-06T16:45:14Z #8 20.38 Unpacking hicolor-icon-theme (0.17-2) ... +2024-05-06T16:45:14Z #8 20.48 Selecting previously unselected package libgdk-pixbuf2.0-common. +2024-05-06T16:45:14Z #8 20.48 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... +2024-05-06T16:45:14Z #8 20.49 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-05-06T16:45:14Z #8 20.61 Selecting previously unselected package libicu67:amd64. +2024-05-06T16:45:14Z #8 20.61 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... +2024-05-06T16:45:14Z #8 20.61 Unpacking libicu67:amd64 (67.1-7) ... +2024-05-06T16:45:16Z #8 22.30 Selecting previously unselected package libxml2:amd64. +2024-05-06T16:45:16Z #8 22.30 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... +2024-05-06T16:45:16Z #8 22.31 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-05-06T16:45:16Z #8 22.45 Selecting previously unselected package shared-mime-info. +2024-05-06T16:45:16Z #8 22.45 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... +2024-05-06T16:45:16Z #8 22.45 Unpacking shared-mime-info (2.0-1) ... +2024-05-06T16:45:16Z #8 22.65 Selecting previously unselected package libjpeg62-turbo:amd64. +2024-05-06T16:45:16Z #8 22.65 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... +2024-05-06T16:45:16Z #8 22.65 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-05-06T16:45:16Z #8 22.72 Selecting previously unselected package libpng16-16:amd64. +2024-05-06T16:45:16Z #8 22.72 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... +2024-05-06T16:45:16Z #8 22.73 Unpacking libpng16-16:amd64 (1.6.37-3) ... +2024-05-06T16:45:16Z #8 22.81 Selecting previously unselected package libdeflate0:amd64. +2024-05-06T16:45:16Z #8 22.81 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... +2024-05-06T16:45:16Z #8 22.82 Unpacking libdeflate0:amd64 (1.7-1) ... +2024-05-06T16:45:16Z #8 22.87 Selecting previously unselected package libjbig0:amd64. +2024-05-06T16:45:16Z #8 22.87 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... +2024-05-06T16:45:16Z #8 22.87 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... +2024-05-06T16:45:16Z #8 22.92 Selecting previously unselected package libwebp6:amd64. +2024-05-06T16:45:16Z #8 22.92 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... +2024-05-06T16:45:16Z #8 22.93 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-05-06T16:45:16Z #8 23.01 Selecting previously unselected package libtiff5:amd64. +2024-05-06T16:45:16Z #8 23.01 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... +2024-05-06T16:45:16Z #8 23.01 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-05-06T16:45:16Z #8 23.09 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +2024-05-06T16:45:16Z #8 23.09 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-05-06T16:45:16Z #8 23.10 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-05-06T16:45:16Z #8 23.17 Selecting previously unselected package gtk-update-icon-cache. +2024-05-06T16:45:16Z #8 23.17 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... +2024-05-06T16:45:16Z #8 23.17 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-05-06T16:45:17Z #8 23.26 Selecting previously unselected package adwaita-icon-theme. +2024-05-06T16:45:17Z #8 23.26 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... +2024-05-06T16:45:17Z #8 23.26 Unpacking adwaita-icon-theme (3.38.0-1) ... +2024-05-06T16:45:19Z #8 26.00 Selecting previously unselected package alsa-topology-conf. +2024-05-06T16:45:19Z #8 26.00 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... +2024-05-06T16:45:19Z #8 26.01 Unpacking alsa-topology-conf (1.2.4-1) ... +2024-05-06T16:45:19Z #8 26.04 Selecting previously unselected package libasound2-data. +2024-05-06T16:45:19Z #8 26.04 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... +2024-05-06T16:45:19Z #8 26.05 Unpacking libasound2-data (1.2.4-1.1) ... +2024-05-06T16:45:19Z #8 26.10 Selecting previously unselected package libasound2:amd64. +2024-05-06T16:45:19Z #8 26.10 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... +2024-05-06T16:45:19Z #8 26.11 Unpacking libasound2:amd64 (1.2.4-1.1) ... +2024-05-06T16:45:19Z #8 26.21 Selecting previously unselected package alsa-ucm-conf. +2024-05-06T16:45:19Z #8 26.21 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... +2024-05-06T16:45:19Z #8 26.21 Unpacking alsa-ucm-conf (1.2.4-2) ... +2024-05-06T16:45:19Z #8 26.28 Selecting previously unselected package libatspi2.0-0:amd64. +2024-05-06T16:45:19Z #8 26.29 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... +2024-05-06T16:45:19Z #8 26.29 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-05-06T16:45:20Z #8 26.34 Selecting previously unselected package libxi6:amd64. +2024-05-06T16:45:20Z #8 26.34 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... +2024-05-06T16:45:20Z #8 26.35 Unpacking libxi6:amd64 (2:1.7.10-1) ... +2024-05-06T16:45:20Z #8 26.39 Selecting previously unselected package libxtst6:amd64. +2024-05-06T16:45:20Z #8 26.40 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... +2024-05-06T16:45:20Z #8 26.40 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +2024-05-06T16:45:20Z #8 26.44 Selecting previously unselected package at-spi2-core. +2024-05-06T16:45:20Z #8 26.44 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... +2024-05-06T16:45:20Z #8 26.45 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... +2024-05-06T16:45:20Z #8 26.50 Selecting previously unselected package binutils-common:amd64. +2024-05-06T16:45:20Z #8 26.50 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... +2024-05-06T16:45:20Z #8 26.51 Unpacking binutils-common:amd64 (2.35.2-2) ... +2024-05-06T16:45:20Z #8 26.89 Selecting previously unselected package libbinutils:amd64. +2024-05-06T16:45:20Z #8 26.89 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... +2024-05-06T16:45:20Z #8 26.91 Unpacking libbinutils:amd64 (2.35.2-2) ... +2024-05-06T16:45:20Z #8 27.07 Selecting previously unselected package libctf-nobfd0:amd64. +2024-05-06T16:45:20Z #8 27.07 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... +2024-05-06T16:45:20Z #8 27.08 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... +2024-05-06T16:45:20Z #8 27.13 Selecting previously unselected package libctf0:amd64. +2024-05-06T16:45:20Z #8 27.13 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... +2024-05-06T16:45:20Z #8 27.14 Unpacking libctf0:amd64 (2.35.2-2) ... +2024-05-06T16:45:21Z #8 27.17 Selecting previously unselected package binutils-x86-64-linux-gnu. +2024-05-06T16:45:21Z #8 27.18 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... +2024-05-06T16:45:21Z #8 27.18 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-05-06T16:45:21Z #8 27.60 Selecting previously unselected package binutils. +2024-05-06T16:45:21Z #8 27.60 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... +2024-05-06T16:45:21Z #8 27.61 Unpacking binutils (2.35.2-2) ... +2024-05-06T16:45:21Z #8 27.67 Selecting previously unselected package libisl23:amd64. +2024-05-06T16:45:21Z #8 27.67 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... +2024-05-06T16:45:21Z #8 27.68 Unpacking libisl23:amd64 (0.23-1) ... +2024-05-06T16:45:21Z #8 27.90 Selecting previously unselected package libmpfr6:amd64. +2024-05-06T16:45:21Z #8 27.91 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... +2024-05-06T16:45:21Z #8 27.91 Unpacking libmpfr6:amd64 (4.1.0-3) ... +2024-05-06T16:45:21Z #8 28.15 Selecting previously unselected package libmpc3:amd64. +2024-05-06T16:45:21Z #8 28.15 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... +2024-05-06T16:45:22Z #8 28.15 Unpacking libmpc3:amd64 (1.2.0-1) ... +2024-05-06T16:45:22Z #8 28.20 Selecting previously unselected package cpp-10. +2024-05-06T16:45:22Z #8 28.20 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... +2024-05-06T16:45:22Z #8 28.21 Unpacking cpp-10 (10.2.1-6) ... +2024-05-06T16:45:23Z #8 29.58 Selecting previously unselected package cpp. +2024-05-06T16:45:23Z #8 29.59 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... +2024-05-06T16:45:23Z #8 29.59 Unpacking cpp (4:10.2.1-1) ... +2024-05-06T16:45:23Z #8 29.62 Selecting previously unselected package dbus-user-session. +2024-05-06T16:45:23Z #8 29.63 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... +2024-05-06T16:45:23Z #8 29.63 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... +2024-05-06T16:45:23Z #8 29.68 Selecting previously unselected package libdconf1:amd64. +2024-05-06T16:45:23Z #8 29.68 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... +2024-05-06T16:45:23Z #8 29.69 Unpacking libdconf1:amd64 (0.38.0-2) ... +2024-05-06T16:45:23Z #8 29.72 Selecting previously unselected package dconf-service. +2024-05-06T16:45:23Z #8 29.72 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... +2024-05-06T16:45:23Z #8 29.73 Unpacking dconf-service (0.38.0-2) ... +2024-05-06T16:45:23Z #8 29.76 Selecting previously unselected package dconf-gsettings-backend:amd64. +2024-05-06T16:45:23Z #8 29.77 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... +2024-05-06T16:45:23Z #8 29.77 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-05-06T16:45:23Z #8 29.81 Selecting previously unselected package libatk1.0-data. +2024-05-06T16:45:23Z #8 29.81 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... +2024-05-06T16:45:23Z #8 29.81 Unpacking libatk1.0-data (2.36.0-2) ... +2024-05-06T16:45:23Z #8 29.90 Selecting previously unselected package libatk1.0-0:amd64. +2024-05-06T16:45:23Z #8 29.90 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... +2024-05-06T16:45:23Z #8 29.91 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... +2024-05-06T16:45:23Z #8 29.95 Selecting previously unselected package libfreetype6:amd64. +2024-05-06T16:45:23Z #8 29.95 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... +2024-05-06T16:45:23Z #8 29.96 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-05-06T16:45:23Z #8 30.05 Selecting previously unselected package fonts-dejavu-core. +2024-05-06T16:45:23Z #8 30.05 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... +2024-05-06T16:45:23Z #8 30.06 Unpacking fonts-dejavu-core (2.37-2) ... +2024-05-06T16:45:24Z #8 30.27 Selecting previously unselected package fontconfig-config. +2024-05-06T16:45:24Z #8 30.27 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... +2024-05-06T16:45:24Z #8 30.45 Unpacking fontconfig-config (2.13.1-4.2) ... +2024-05-06T16:45:24Z #8 30.52 Selecting previously unselected package libfontconfig1:amd64. +2024-05-06T16:45:24Z #8 30.52 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... +2024-05-06T16:45:24Z #8 30.53 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... +2024-05-06T16:45:24Z #8 30.59 Selecting previously unselected package libpixman-1-0:amd64. +2024-05-06T16:45:24Z #8 30.59 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... +2024-05-06T16:45:24Z #8 30.60 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-05-06T16:45:24Z #8 30.68 Selecting previously unselected package libxcb-render0:amd64. +2024-05-06T16:45:24Z #8 30.69 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... +2024-05-06T16:45:24Z #8 30.69 Unpacking libxcb-render0:amd64 (1.14-3) ... +2024-05-06T16:45:24Z #8 30.75 Selecting previously unselected package libxcb-shm0:amd64. +2024-05-06T16:45:24Z #8 30.75 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... +2024-05-06T16:45:24Z #8 30.76 Unpacking libxcb-shm0:amd64 (1.14-3) ... +2024-05-06T16:45:24Z #8 30.81 Selecting previously unselected package libcairo2:amd64. +2024-05-06T16:45:24Z #8 30.81 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... +2024-05-06T16:45:24Z #8 30.82 Unpacking libcairo2:amd64 (1.16.0-5) ... +2024-05-06T16:45:24Z #8 30.94 Selecting previously unselected package libcairo-gobject2:amd64. +2024-05-06T16:45:24Z #8 30.95 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... +2024-05-06T16:45:24Z #8 30.95 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... +2024-05-06T16:45:24Z #8 31.00 Selecting previously unselected package libdbus-glib-1-2:amd64. +2024-05-06T16:45:24Z #8 31.01 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... +2024-05-06T16:45:24Z #8 31.01 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... +2024-05-06T16:45:24Z #8 31.06 Selecting previously unselected package libevent-2.1-7:amd64. +2024-05-06T16:45:24Z #8 31.06 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... +2024-05-06T16:45:24Z #8 31.07 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-05-06T16:45:24Z #8 31.13 Selecting previously unselected package libatk-bridge2.0-0:amd64. +2024-05-06T16:45:24Z #8 31.13 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... +2024-05-06T16:45:24Z #8 31.14 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-05-06T16:45:24Z #8 31.18 Selecting previously unselected package liblcms2-2:amd64. +2024-05-06T16:45:25Z #8 31.19 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... +2024-05-06T16:45:25Z #8 31.19 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... +2024-05-06T16:45:25Z #8 31.25 Selecting previously unselected package libcolord2:amd64. +2024-05-06T16:45:25Z #8 31.26 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... +2024-05-06T16:45:25Z #8 31.26 Unpacking libcolord2:amd64 (1.4.5-3) ... +2024-05-06T16:45:25Z #8 31.31 Selecting previously unselected package libavahi-common-data:amd64. +2024-05-06T16:45:25Z #8 31.31 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... +2024-05-06T16:45:25Z #8 31.32 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-05-06T16:45:25Z #8 31.38 Selecting previously unselected package libavahi-common3:amd64. +2024-05-06T16:45:25Z #8 31.38 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... +2024-05-06T16:45:25Z #8 31.38 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-05-06T16:45:25Z #8 31.42 Selecting previously unselected package libavahi-client3:amd64. +2024-05-06T16:45:25Z #8 31.43 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... +2024-05-06T16:45:25Z #8 31.43 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-05-06T16:45:25Z #8 31.48 Selecting previously unselected package libcups2:amd64. +2024-05-06T16:45:25Z #8 31.48 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... +2024-05-06T16:45:25Z #8 31.48 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-05-06T16:45:25Z #8 31.60 Selecting previously unselected package libepoxy0:amd64. +2024-05-06T16:45:25Z #8 31.61 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... +2024-05-06T16:45:25Z #8 31.61 Unpacking libepoxy0:amd64 (1.5.5-1) ... +2024-05-06T16:45:25Z #8 31.68 Selecting previously unselected package libfribidi0:amd64. +2024-05-06T16:45:25Z #8 31.68 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... +2024-05-06T16:45:25Z #8 31.69 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-05-06T16:45:25Z #8 31.73 Selecting previously unselected package libgraphite2-3:amd64. +2024-05-06T16:45:25Z #8 31.73 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... +2024-05-06T16:45:25Z #8 31.74 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... +2024-05-06T16:45:25Z #8 31.78 Selecting previously unselected package libharfbuzz0b:amd64. +2024-05-06T16:45:25Z #8 31.79 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... +2024-05-06T16:45:25Z #8 31.79 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... +2024-05-06T16:45:25Z #8 31.89 Selecting previously unselected package libjson-glib-1.0-common. +2024-05-06T16:45:25Z #8 31.89 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... +2024-05-06T16:45:25Z #8 31.89 Unpacking libjson-glib-1.0-common (1.6.2-1) ... +2024-05-06T16:45:25Z #8 31.95 Selecting previously unselected package libjson-glib-1.0-0:amd64. +2024-05-06T16:45:25Z #8 31.95 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... +2024-05-06T16:45:25Z #8 31.95 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-05-06T16:45:25Z #8 32.00 Selecting previously unselected package fontconfig. +2024-05-06T16:45:25Z #8 32.00 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... +2024-05-06T16:45:25Z #8 32.01 Unpacking fontconfig (2.13.1-4.2) ... +2024-05-06T16:45:25Z #8 32.07 Selecting previously unselected package libthai-data. +2024-05-06T16:45:25Z #8 32.07 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... +2024-05-06T16:45:25Z #8 32.07 Unpacking libthai-data (0.1.28-3) ... +2024-05-06T16:45:25Z #8 32.14 Selecting previously unselected package libdatrie1:amd64. +2024-05-06T16:45:25Z #8 32.15 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... +2024-05-06T16:45:25Z #8 32.15 Unpacking libdatrie1:amd64 (0.2.13-1) ... +2024-05-06T16:45:25Z #8 32.20 Selecting previously unselected package libthai0:amd64. +2024-05-06T16:45:25Z #8 32.20 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... +2024-05-06T16:45:25Z #8 32.20 Unpacking libthai0:amd64 (0.1.28-3) ... +2024-05-06T16:45:25Z #8 32.25 Selecting previously unselected package libpango-1.0-0:amd64. +2024-05-06T16:45:26Z #8 32.25 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... +2024-05-06T16:45:26Z #8 32.25 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... +2024-05-06T16:45:26Z #8 32.32 Selecting previously unselected package libpangoft2-1.0-0:amd64. +2024-05-06T16:45:26Z #8 32.32 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... +2024-05-06T16:45:26Z #8 32.32 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-05-06T16:45:26Z #8 32.37 Selecting previously unselected package libpangocairo-1.0-0:amd64. +2024-05-06T16:45:26Z #8 32.38 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... +2024-05-06T16:45:26Z #8 32.38 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-05-06T16:45:26Z #8 32.43 Selecting previously unselected package libproxy1v5:amd64. +2024-05-06T16:45:26Z #8 32.43 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... +2024-05-06T16:45:26Z #8 32.43 Unpacking libproxy1v5:amd64 (0.4.17-1) ... +2024-05-06T16:45:26Z #8 32.48 Selecting previously unselected package glib-networking-common. +2024-05-06T16:45:26Z #8 32.49 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... +2024-05-06T16:45:26Z #8 32.49 Unpacking glib-networking-common (2.66.0-2) ... +2024-05-06T16:45:26Z #8 32.55 Selecting previously unselected package glib-networking-services. +2024-05-06T16:45:26Z #8 32.55 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... +2024-05-06T16:45:26Z #8 32.55 Unpacking glib-networking-services (2.66.0-2) ... +2024-05-06T16:45:26Z #8 32.59 Selecting previously unselected package gsettings-desktop-schemas. +2024-05-06T16:45:26Z #8 32.59 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... +2024-05-06T16:45:26Z #8 32.60 Unpacking gsettings-desktop-schemas (3.38.0-2) ... +2024-05-06T16:45:26Z #8 32.75 Selecting previously unselected package glib-networking:amd64. +2024-05-06T16:45:26Z #8 32.76 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... +2024-05-06T16:45:26Z #8 32.76 Unpacking glib-networking:amd64 (2.66.0-2) ... +2024-05-06T16:45:26Z #8 32.82 Selecting previously unselected package libsoup2.4-1:amd64. +2024-05-06T16:45:26Z #8 32.82 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... +2024-05-06T16:45:26Z #8 32.82 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... +2024-05-06T16:45:26Z #8 32.91 Selecting previously unselected package libsoup-gnome2.4-1:amd64. +2024-05-06T16:45:26Z #8 32.92 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... +2024-05-06T16:45:26Z #8 32.92 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-05-06T16:45:26Z #8 32.96 Selecting previously unselected package librest-0.7-0:amd64. +2024-05-06T16:45:26Z #8 32.97 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... +2024-05-06T16:45:26Z #8 32.97 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-05-06T16:45:26Z #8 33.01 Selecting previously unselected package libwayland-client0:amd64. +2024-05-06T16:45:26Z #8 33.02 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... +2024-05-06T16:45:26Z #8 33.02 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-05-06T16:45:26Z #8 33.06 Selecting previously unselected package libwayland-cursor0:amd64. +2024-05-06T16:45:26Z #8 33.07 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... +2024-05-06T16:45:26Z #8 33.07 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-05-06T16:45:26Z #8 33.11 Selecting previously unselected package libwayland-egl1:amd64. +2024-05-06T16:45:26Z #8 33.12 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... +2024-05-06T16:45:26Z #8 33.13 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-05-06T16:45:26Z #8 33.16 Selecting previously unselected package libxcomposite1:amd64. +2024-05-06T16:45:26Z #8 33.16 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +2024-05-06T16:45:26Z #8 33.17 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +2024-05-06T16:45:26Z #8 33.20 Selecting previously unselected package libxfixes3:amd64. +2024-05-06T16:45:26Z #8 33.21 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... +2024-05-06T16:45:27Z #8 33.22 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +2024-05-06T16:45:27Z #8 33.26 Selecting previously unselected package libxcursor1:amd64. +2024-05-06T16:45:27Z #8 33.26 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... +2024-05-06T16:45:27Z #8 33.27 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +2024-05-06T16:45:27Z #8 33.31 Selecting previously unselected package libxdamage1:amd64. +2024-05-06T16:45:27Z #8 33.31 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... +2024-05-06T16:45:27Z #8 33.31 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... +2024-05-06T16:45:27Z #8 33.36 Selecting previously unselected package libxinerama1:amd64. +2024-05-06T16:45:27Z #8 33.37 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... +2024-05-06T16:45:27Z #8 33.37 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +2024-05-06T16:45:27Z #8 33.41 Selecting previously unselected package xkb-data. +2024-05-06T16:45:27Z #8 33.41 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... +2024-05-06T16:45:27Z #8 33.42 Unpacking xkb-data (2.29-2) ... +2024-05-06T16:45:27Z #8 33.63 Selecting previously unselected package libxkbcommon0:amd64. +2024-05-06T16:45:27Z #8 33.63 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... +2024-05-06T16:45:27Z #8 33.64 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... +2024-05-06T16:45:27Z #8 33.70 Selecting previously unselected package libxrandr2:amd64. +2024-05-06T16:45:27Z #8 33.71 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... +2024-05-06T16:45:27Z #8 33.71 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... +2024-05-06T16:45:27Z #8 33.76 Selecting previously unselected package libgtk-3-common. +2024-05-06T16:45:27Z #8 33.76 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... +2024-05-06T16:45:27Z #8 33.77 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... +2024-05-06T16:45:28Z #8 34.46 Selecting previously unselected package libgtk-3-0:amd64. +2024-05-06T16:45:28Z #8 34.47 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... +2024-05-06T16:45:28Z #8 34.47 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-05-06T16:45:28Z #8 34.95 Selecting previously unselected package libx11-xcb1:amd64. +2024-05-06T16:45:28Z #8 34.95 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... +2024-05-06T16:45:28Z #8 34.97 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-05-06T16:45:28Z #8 35.03 Selecting previously unselected package firefox-esr. +2024-05-06T16:45:28Z #8 35.03 Preparing to unpack .../099-firefox-esr_115.10.0esr-1~deb11u1_amd64.deb ... +2024-05-06T16:45:28Z #8 35.05 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' +2024-05-06T16:45:28Z #8 35.06 Unpacking firefox-esr (115.10.0esr-1~deb11u1) ... +2024-05-06T16:45:38Z #8 44.77 Selecting previously unselected package fonts-humor-sans. +2024-05-06T16:45:38Z #8 44.77 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... +2024-05-06T16:45:38Z #8 44.78 Unpacking fonts-humor-sans (1.0-4) ... +2024-05-06T16:45:38Z #8 44.82 Selecting previously unselected package libcc1-0:amd64. +2024-05-06T16:45:38Z #8 44.82 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... +2024-05-06T16:45:38Z #8 44.83 Unpacking libcc1-0:amd64 (10.2.1-6) ... +2024-05-06T16:45:38Z #8 44.87 Selecting previously unselected package libgomp1:amd64. +2024-05-06T16:45:38Z #8 44.88 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... +2024-05-06T16:45:38Z #8 44.88 Unpacking libgomp1:amd64 (10.2.1-6) ... +2024-05-06T16:45:38Z #8 44.93 Selecting previously unselected package libitm1:amd64. +2024-05-06T16:45:38Z #8 44.93 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... +2024-05-06T16:45:38Z #8 44.94 Unpacking libitm1:amd64 (10.2.1-6) ... +2024-05-06T16:45:38Z #8 44.98 Selecting previously unselected package libatomic1:amd64. +2024-05-06T16:45:38Z #8 44.98 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... +2024-05-06T16:45:38Z #8 44.99 Unpacking libatomic1:amd64 (10.2.1-6) ... +2024-05-06T16:45:38Z #8 45.03 Selecting previously unselected package libasan6:amd64. +2024-05-06T16:45:38Z #8 45.03 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... +2024-05-06T16:45:38Z #8 45.04 Unpacking libasan6:amd64 (10.2.1-6) ... +2024-05-06T16:45:39Z #8 45.42 Selecting previously unselected package liblsan0:amd64. +2024-05-06T16:45:39Z #8 45.42 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... +2024-05-06T16:45:39Z #8 45.43 Unpacking liblsan0:amd64 (10.2.1-6) ... +2024-05-06T16:45:39Z #8 45.60 Selecting previously unselected package libtsan0:amd64. +2024-05-06T16:45:39Z #8 45.60 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... +2024-05-06T16:45:39Z #8 45.60 Unpacking libtsan0:amd64 (10.2.1-6) ... +2024-05-06T16:45:39Z #8 45.98 Selecting previously unselected package libubsan1:amd64. +2024-05-06T16:45:39Z #8 45.99 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... +2024-05-06T16:45:39Z #8 45.99 Unpacking libubsan1:amd64 (10.2.1-6) ... +2024-05-06T16:45:39Z #8 46.15 Selecting previously unselected package libquadmath0:amd64. +2024-05-06T16:45:39Z #8 46.15 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... +2024-05-06T16:45:39Z #8 46.16 Unpacking libquadmath0:amd64 (10.2.1-6) ... +2024-05-06T16:45:39Z #8 46.21 Selecting previously unselected package libgcc-10-dev:amd64. +2024-05-06T16:45:39Z #8 46.21 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... +2024-05-06T16:45:39Z #8 46.22 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... +2024-05-06T16:45:40Z #8 46.63 Selecting previously unselected package gcc-10. +2024-05-06T16:45:40Z #8 46.63 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... +2024-05-06T16:45:40Z #8 46.64 Unpacking gcc-10 (10.2.1-6) ... +2024-05-06T16:45:42Z #8 49.10 Selecting previously unselected package gcc. +2024-05-06T16:45:42Z #8 49.11 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... +2024-05-06T16:45:42Z #8 49.11 Unpacking gcc (4:10.2.1-1) ... +2024-05-06T16:45:42Z #8 49.15 Selecting previously unselected package libva2:amd64. +2024-05-06T16:45:42Z #8 49.16 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... +2024-05-06T16:45:42Z #8 49.16 Unpacking libva2:amd64 (2.10.0-1) ... +2024-05-06T16:45:42Z #8 49.20 Selecting previously unselected package libdrm-common. +2024-05-06T16:45:43Z #8 49.21 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... +2024-05-06T16:45:43Z #8 49.21 Unpacking libdrm-common (2.4.104-1) ... +2024-05-06T16:45:43Z #8 49.25 Selecting previously unselected package libdrm2:amd64. +2024-05-06T16:45:43Z #8 49.26 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... +2024-05-06T16:45:43Z #8 49.26 Unpacking libdrm2:amd64 (2.4.104-1) ... +2024-05-06T16:45:43Z #8 49.34 Selecting previously unselected package libpciaccess0:amd64. +2024-05-06T16:45:43Z #8 49.34 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... +2024-05-06T16:45:43Z #8 49.35 Unpacking libpciaccess0:amd64 (0.16-1) ... +2024-05-06T16:45:43Z #8 49.40 Selecting previously unselected package libdrm-intel1:amd64. +2024-05-06T16:45:43Z #8 49.41 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... +2024-05-06T16:45:43Z #8 49.41 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... +2024-05-06T16:45:43Z #8 49.46 Selecting previously unselected package i965-va-driver:amd64. +2024-05-06T16:45:43Z #8 49.46 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... +2024-05-06T16:45:43Z #8 49.47 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-05-06T16:45:43Z #8 49.55 Selecting previously unselected package libigdgmm11:amd64. +2024-05-06T16:45:43Z #8 49.55 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... +2024-05-06T16:45:43Z #8 49.56 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-05-06T16:45:43Z #8 49.61 Selecting previously unselected package intel-media-va-driver:amd64. +2024-05-06T16:45:43Z #8 49.61 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... +2024-05-06T16:45:43Z #8 49.61 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-05-06T16:45:43Z #8 49.94 Selecting previously unselected package libaom0:amd64. +2024-05-06T16:45:43Z #8 49.95 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... +2024-05-06T16:45:43Z #8 49.95 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-05-06T16:45:43Z #8 50.15 Selecting previously unselected package libmfx1:amd64. +2024-05-06T16:45:43Z #8 50.16 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... +2024-05-06T16:45:44Z #8 50.16 Unpacking libmfx1:amd64 (21.1.0-1) ... +2024-05-06T16:45:44Z #8 50.86 Selecting previously unselected package libva-drm2:amd64. +2024-05-06T16:45:44Z #8 50.86 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... +2024-05-06T16:45:44Z #8 50.87 Unpacking libva-drm2:amd64 (2.10.0-1) ... +2024-05-06T16:45:44Z #8 50.90 Selecting previously unselected package libva-x11-2:amd64. +2024-05-06T16:45:44Z #8 50.91 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... +2024-05-06T16:45:44Z #8 50.91 Unpacking libva-x11-2:amd64 (2.10.0-1) ... +2024-05-06T16:45:44Z #8 50.95 Selecting previously unselected package libvdpau1:amd64. +2024-05-06T16:45:44Z #8 50.95 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... +2024-05-06T16:45:44Z #8 50.96 Unpacking libvdpau1:amd64 (1.4-3) ... +2024-05-06T16:45:44Z #8 51.00 Selecting previously unselected package ocl-icd-libopencl1:amd64. +2024-05-06T16:45:44Z #8 51.01 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... +2024-05-06T16:45:44Z #8 51.01 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-05-06T16:45:44Z #8 51.06 Selecting previously unselected package libavutil56:amd64. +2024-05-06T16:45:44Z #8 51.06 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-05-06T16:45:44Z #8 51.06 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-05-06T16:45:44Z #8 51.15 Selecting previously unselected package libcodec2-0.9:amd64. +2024-05-06T16:45:44Z #8 51.15 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... +2024-05-06T16:45:44Z #8 51.15 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... +2024-05-06T16:45:46Z #8 52.24 Selecting previously unselected package libdav1d4:amd64. +2024-05-06T16:45:46Z #8 52.25 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... +2024-05-06T16:45:46Z #8 52.25 Unpacking libdav1d4:amd64 (0.7.1-3) ... +2024-05-06T16:45:46Z #8 52.34 Selecting previously unselected package libgsm1:amd64. +2024-05-06T16:45:46Z #8 52.35 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... +2024-05-06T16:45:46Z #8 52.35 Unpacking libgsm1:amd64 (1.0.18-2) ... +2024-05-06T16:45:46Z #8 52.39 Selecting previously unselected package libmp3lame0:amd64. +2024-05-06T16:45:46Z #8 52.40 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... +2024-05-06T16:45:46Z #8 52.40 Unpacking libmp3lame0:amd64 (3.100-3) ... +2024-05-06T16:45:46Z #8 52.47 Selecting previously unselected package libopenjp2-7:amd64. +2024-05-06T16:45:46Z #8 52.48 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... +2024-05-06T16:45:46Z #8 52.48 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... +2024-05-06T16:45:46Z #8 52.55 Selecting previously unselected package libopus0:amd64. +2024-05-06T16:45:46Z #8 52.55 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... +2024-05-06T16:45:46Z #8 52.56 Unpacking libopus0:amd64 (1.3.1-0.1) ... +2024-05-06T16:45:46Z #8 52.63 Selecting previously unselected package librsvg2-2:amd64. +2024-05-06T16:45:46Z #8 52.63 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-05-06T16:45:46Z #8 52.64 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-05-06T16:45:46Z #8 53.13 Selecting previously unselected package libshine3:amd64. +2024-05-06T16:45:46Z #8 53.13 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... +2024-05-06T16:45:46Z #8 53.14 Unpacking libshine3:amd64 (3.1.1-2) ... +2024-05-06T16:45:46Z #8 53.18 Selecting previously unselected package libsnappy1v5:amd64. +2024-05-06T16:45:46Z #8 53.18 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... +2024-05-06T16:45:46Z #8 53.18 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... +2024-05-06T16:45:46Z #8 53.22 Selecting previously unselected package libspeex1:amd64. +2024-05-06T16:45:46Z #8 53.23 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... +2024-05-06T16:45:46Z #8 53.23 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-05-06T16:45:46Z #8 53.27 Selecting previously unselected package libsoxr0:amd64. +2024-05-06T16:45:47Z #8 53.28 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... +2024-05-06T16:45:47Z #8 53.29 Unpacking libsoxr0:amd64 (0.1.3-4) ... +2024-05-06T16:45:47Z #8 53.34 Selecting previously unselected package libswresample3:amd64. +2024-05-06T16:45:47Z #8 53.35 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-05-06T16:45:47Z #8 53.35 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-05-06T16:45:47Z #8 53.40 Selecting previously unselected package libogg0:amd64. +2024-05-06T16:45:47Z #8 53.41 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... +2024-05-06T16:45:47Z #8 53.41 Unpacking libogg0:amd64 (1.3.4-0.1) ... +2024-05-06T16:45:47Z #8 53.46 Selecting previously unselected package libtheora0:amd64. +2024-05-06T16:45:47Z #8 53.46 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... +2024-05-06T16:45:47Z #8 53.46 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-05-06T16:45:47Z #8 53.54 Selecting previously unselected package libtwolame0:amd64. +2024-05-06T16:45:47Z #8 53.54 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... +2024-05-06T16:45:47Z #8 53.55 Unpacking libtwolame0:amd64 (0.4.0-2) ... +2024-05-06T16:45:47Z #8 53.59 Selecting previously unselected package libvorbis0a:amd64. +2024-05-06T16:45:47Z #8 53.60 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... +2024-05-06T16:45:47Z #8 53.60 Unpacking libvorbis0a:amd64 (1.3.7-1) ... +2024-05-06T16:45:47Z #8 53.65 Selecting previously unselected package libvorbisenc2:amd64. +2024-05-06T16:45:47Z #8 53.66 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... +2024-05-06T16:45:47Z #8 53.67 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... +2024-05-06T16:45:47Z #8 53.71 Selecting previously unselected package libvpx6:amd64. +2024-05-06T16:45:47Z #8 53.72 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... +2024-05-06T16:45:47Z #8 53.72 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-05-06T16:45:47Z #8 53.88 Selecting previously unselected package libwavpack1:amd64. +2024-05-06T16:45:47Z #8 53.88 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... +2024-05-06T16:45:47Z #8 53.89 Unpacking libwavpack1:amd64 (5.4.0-1) ... +2024-05-06T16:45:47Z #8 53.93 Selecting previously unselected package libwebpmux3:amd64. +2024-05-06T16:45:47Z #8 53.94 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... +2024-05-06T16:45:47Z #8 53.94 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-05-06T16:45:47Z #8 54.00 Selecting previously unselected package libx264-160:amd64. +2024-05-06T16:45:47Z #8 54.00 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... +2024-05-06T16:45:47Z #8 54.01 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-05-06T16:45:47Z #8 54.13 Selecting previously unselected package libnuma1:amd64. +2024-05-06T16:45:47Z #8 54.13 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... +2024-05-06T16:45:47Z #8 54.14 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... +2024-05-06T16:45:47Z #8 54.18 Selecting previously unselected package libx265-192:amd64. +2024-05-06T16:45:47Z #8 54.18 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... +2024-05-06T16:45:47Z #8 54.19 Unpacking libx265-192:amd64 (3.4-2) ... +2024-05-06T16:45:48Z #8 54.49 Selecting previously unselected package libxvidcore4:amd64. +2024-05-06T16:45:48Z #8 54.50 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +2024-05-06T16:45:48Z #8 54.50 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +2024-05-06T16:45:48Z #8 54.57 Selecting previously unselected package libzvbi-common. +2024-05-06T16:45:48Z #8 54.57 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... +2024-05-06T16:45:48Z #8 54.57 Unpacking libzvbi-common (0.2.35-18) ... +2024-05-06T16:45:48Z #8 54.62 Selecting previously unselected package libzvbi0:amd64. +2024-05-06T16:45:48Z #8 54.62 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... +2024-05-06T16:45:48Z #8 54.63 Unpacking libzvbi0:amd64 (0.2.35-18) ... +2024-05-06T16:45:48Z #8 54.71 Selecting previously unselected package libavcodec58:amd64. +2024-05-06T16:45:48Z #8 54.71 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... +2024-05-06T16:45:48Z #8 54.71 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-05-06T16:45:49Z #8 55.47 Selecting previously unselected package libc-dev-bin. +2024-05-06T16:45:49Z #8 55.48 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u10_amd64.deb ... +2024-05-06T16:45:49Z #8 55.48 Unpacking libc-dev-bin (2.31-13+deb11u10) ... +2024-05-06T16:45:49Z #8 55.53 Selecting previously unselected package libxpm4:amd64. +2024-05-06T16:45:49Z #8 55.53 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... +2024-05-06T16:45:49Z #8 55.53 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-05-06T16:45:49Z #8 55.58 Selecting previously unselected package libgd3:amd64. +2024-05-06T16:45:49Z #8 55.58 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... +2024-05-06T16:45:49Z #8 55.59 Unpacking libgd3:amd64 (2.3.0-2) ... +2024-05-06T16:45:49Z #8 55.64 Selecting previously unselected package libc-devtools. +2024-05-06T16:45:49Z #8 55.64 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u10_amd64.deb ... +2024-05-06T16:45:49Z #8 55.65 Unpacking libc-devtools (2.31-13+deb11u10) ... +2024-05-06T16:45:49Z #8 55.70 Selecting previously unselected package linux-libc-dev:amd64. +2024-05-06T16:45:49Z #8 55.70 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... +2024-05-06T16:45:49Z #8 55.71 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... +2024-05-06T16:45:49Z #8 56.07 Selecting previously unselected package libcrypt-dev:amd64. +2024-05-06T16:45:49Z #8 56.07 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... +2024-05-06T16:45:49Z #8 56.08 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-05-06T16:45:49Z #8 56.12 Selecting previously unselected package libtirpc-dev:amd64. +2024-05-06T16:45:49Z #8 56.13 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... +2024-05-06T16:45:49Z #8 56.13 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-05-06T16:45:49Z #8 56.21 Selecting previously unselected package libnsl-dev:amd64. +2024-05-06T16:45:49Z #8 56.21 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... +2024-05-06T16:45:49Z #8 56.21 Unpacking libnsl-dev:amd64 (1.3.0-2) ... +2024-05-06T16:45:50Z #8 56.26 Selecting previously unselected package libc6-dev:amd64. +2024-05-06T16:45:50Z #8 56.27 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u10_amd64.deb ... +2024-05-06T16:45:50Z #8 56.27 Unpacking libc6-dev:amd64 (2.31-13+deb11u10) ... +2024-05-06T16:45:50Z #8 56.79 Selecting previously unselected package libdrm-amdgpu1:amd64. +2024-05-06T16:45:50Z #8 56.79 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... +2024-05-06T16:45:50Z #8 56.80 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-05-06T16:45:50Z #8 56.84 Selecting previously unselected package libdrm-nouveau2:amd64. +2024-05-06T16:45:50Z #8 56.84 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... +2024-05-06T16:45:50Z #8 56.85 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-05-06T16:45:50Z #8 56.96 Selecting previously unselected package libdrm-radeon1:amd64. +2024-05-06T16:45:50Z #8 56.96 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... +2024-05-06T16:45:50Z #8 56.99 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... +2024-05-06T16:45:50Z #8 57.10 Selecting previously unselected package libelf1:amd64. +2024-05-06T16:45:50Z #8 57.10 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... +2024-05-06T16:45:50Z #8 57.11 Unpacking libelf1:amd64 (0.183-1) ... +2024-05-06T16:45:50Z #8 57.20 Selecting previously unselected package libfontenc1:amd64. +2024-05-06T16:45:51Z #8 57.21 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... +2024-05-06T16:45:51Z #8 57.21 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... +2024-05-06T16:45:51Z #8 57.25 Selecting previously unselected package libgdk-pixbuf2.0-bin. +2024-05-06T16:45:51Z #8 57.25 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... +2024-05-06T16:45:51Z #8 57.25 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-05-06T16:45:51Z #8 57.29 Selecting previously unselected package libglapi-mesa:amd64. +2024-05-06T16:45:51Z #8 57.30 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... +2024-05-06T16:45:51Z #8 57.30 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... +2024-05-06T16:45:51Z #8 57.35 Selecting previously unselected package libz3-4:amd64. +2024-05-06T16:45:51Z #8 57.35 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... +2024-05-06T16:45:51Z #8 57.36 Unpacking libz3-4:amd64 (4.8.10-1) ... +2024-05-06T16:45:52Z #8 58.42 Selecting previously unselected package libllvm11:amd64. +2024-05-06T16:45:52Z #8 58.42 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... +2024-05-06T16:45:52Z #8 58.42 Unpacking libllvm11:amd64 (1:11.0.1-2) ... +2024-05-06T16:45:55Z #8 61.35 Selecting previously unselected package libsensors-config. +2024-05-06T16:45:55Z #8 61.35 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... +2024-05-06T16:45:55Z #8 61.36 Unpacking libsensors-config (1:3.6.0-7) ... +2024-05-06T16:45:55Z #8 61.40 Selecting previously unselected package libsensors5:amd64. +2024-05-06T16:45:55Z #8 61.40 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... +2024-05-06T16:45:55Z #8 61.44 Unpacking libsensors5:amd64 (1:3.6.0-7) ... +2024-05-06T16:45:55Z #8 61.49 Selecting previously unselected package libvulkan1:amd64. +2024-05-06T16:45:55Z #8 61.50 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... +2024-05-06T16:45:55Z #8 61.50 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... +2024-05-06T16:45:55Z #8 61.56 Selecting previously unselected package libgl1-mesa-dri:amd64. +2024-05-06T16:45:55Z #8 61.56 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... +2024-05-06T16:45:55Z #8 61.57 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-05-06T16:45:56Z #8 63.07 Selecting previously unselected package libglvnd0:amd64. +2024-05-06T16:45:56Z #8 63.07 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... +2024-05-06T16:45:56Z #8 63.08 Unpacking libglvnd0:amd64 (1.3.2-1) ... +2024-05-06T16:45:56Z #8 63.13 Selecting previously unselected package libxcb-dri2-0:amd64. +2024-05-06T16:45:56Z #8 63.14 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... +2024-05-06T16:45:56Z #8 63.14 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... +2024-05-06T16:45:56Z #8 63.19 Selecting previously unselected package libxcb-dri3-0:amd64. +2024-05-06T16:45:56Z #8 63.19 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... +2024-05-06T16:45:56Z #8 63.20 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... +2024-05-06T16:45:57Z #8 63.25 Selecting previously unselected package libxcb-glx0:amd64. +2024-05-06T16:45:57Z #8 63.26 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... +2024-05-06T16:45:57Z #8 63.26 Unpacking libxcb-glx0:amd64 (1.14-3) ... +2024-05-06T16:45:57Z #8 63.32 Selecting previously unselected package libxcb-present0:amd64. +2024-05-06T16:45:57Z #8 63.32 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... +2024-05-06T16:45:57Z #8 63.33 Unpacking libxcb-present0:amd64 (1.14-3) ... +2024-05-06T16:45:57Z #8 63.37 Selecting previously unselected package libxcb-sync1:amd64. +2024-05-06T16:45:57Z #8 63.38 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... +2024-05-06T16:45:57Z #8 63.38 Unpacking libxcb-sync1:amd64 (1.14-3) ... +2024-05-06T16:45:57Z #8 63.43 Selecting previously unselected package libxcb-xfixes0:amd64. +2024-05-06T16:45:57Z #8 63.44 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... +2024-05-06T16:45:57Z #8 63.44 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... +2024-05-06T16:45:57Z #8 63.49 Selecting previously unselected package libxshmfence1:amd64. +2024-05-06T16:45:57Z #8 63.50 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... +2024-05-06T16:45:57Z #8 63.50 Unpacking libxshmfence1:amd64 (1.3-1) ... +2024-05-06T16:45:57Z #8 63.54 Selecting previously unselected package libxxf86vm1:amd64. +2024-05-06T16:45:57Z #8 63.55 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... +2024-05-06T16:45:57Z #8 63.55 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-05-06T16:45:57Z #8 63.59 Selecting previously unselected package libglx-mesa0:amd64. +2024-05-06T16:45:57Z #8 63.60 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... +2024-05-06T16:45:57Z #8 63.61 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... +2024-05-06T16:45:57Z #8 63.66 Selecting previously unselected package libgtk-3-bin. +2024-05-06T16:45:57Z #8 63.67 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... +2024-05-06T16:45:57Z #8 63.67 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-05-06T16:45:57Z #8 63.72 Selecting previously unselected package librsvg2-common:amd64. +2024-05-06T16:45:57Z #8 63.73 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... +2024-05-06T16:45:57Z #8 63.73 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-05-06T16:45:57Z #8 63.78 Selecting previously unselected package libglx0:amd64. +2024-05-06T16:45:57Z #8 63.78 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... +2024-05-06T16:45:57Z #8 63.78 Unpacking libglx0:amd64 (1.3.2-1) ... +2024-05-06T16:45:57Z #8 63.84 Selecting previously unselected package libgl1:amd64. +2024-05-06T16:45:57Z #8 63.84 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... +2024-05-06T16:45:57Z #8 63.85 Unpacking libgl1:amd64 (1.3.2-1) ... +2024-05-06T16:45:57Z #8 63.90 Selecting previously unselected package libvdpau-va-gl1:amd64. +2024-05-06T16:45:57Z #8 63.90 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... +2024-05-06T16:45:57Z #8 63.91 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-05-06T16:45:57Z #8 63.96 Selecting previously unselected package libxt6:amd64. +2024-05-06T16:45:57Z #8 63.97 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... +2024-05-06T16:45:57Z #8 63.97 Unpacking libxt6:amd64 (1:1.2.0-1) ... +2024-05-06T16:45:57Z #8 64.03 Selecting previously unselected package libxmu6:amd64. +2024-05-06T16:45:57Z #8 64.03 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... +2024-05-06T16:45:57Z #8 64.04 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-05-06T16:45:57Z #8 64.09 Selecting previously unselected package libxaw7:amd64. +2024-05-06T16:45:57Z #8 64.09 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... +2024-05-06T16:45:57Z #8 64.10 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... +2024-05-06T16:45:57Z #8 64.16 Selecting previously unselected package libxcb-randr0:amd64. +2024-05-06T16:45:57Z #8 64.16 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... +2024-05-06T16:45:57Z #8 64.17 Unpacking libxcb-randr0:amd64 (1.14-3) ... +2024-05-06T16:45:57Z #8 64.22 Selecting previously unselected package libxcb-shape0:amd64. +2024-05-06T16:45:58Z #8 64.23 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... +2024-05-06T16:45:58Z #8 64.23 Unpacking libxcb-shape0:amd64 (1.14-3) ... +2024-05-06T16:45:58Z #8 64.28 Selecting previously unselected package libxft2:amd64. +2024-05-06T16:45:58Z #8 64.28 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... +2024-05-06T16:45:58Z #8 64.28 Unpacking libxft2:amd64 (2.3.2-2) ... +2024-05-06T16:45:58Z #8 64.33 Selecting previously unselected package libxkbfile1:amd64. +2024-05-06T16:45:58Z #8 64.33 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +2024-05-06T16:45:58Z #8 64.33 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +2024-05-06T16:45:58Z #8 64.39 Selecting previously unselected package libxmuu1:amd64. +2024-05-06T16:45:58Z #8 64.39 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... +2024-05-06T16:45:58Z #8 64.39 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-05-06T16:45:58Z #8 64.43 Selecting previously unselected package libxv1:amd64. +2024-05-06T16:45:58Z #8 64.44 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... +2024-05-06T16:45:58Z #8 64.44 Unpacking libxv1:amd64 (2:1.0.11-1) ... +2024-05-06T16:45:58Z #8 64.48 Selecting previously unselected package libxxf86dga1:amd64. +2024-05-06T16:45:58Z #8 64.48 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... +2024-05-06T16:45:58Z #8 64.49 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-05-06T16:45:58Z #8 64.53 Selecting previously unselected package manpages-dev. +2024-05-06T16:45:58Z #8 64.53 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... +2024-05-06T16:45:58Z #8 64.53 Unpacking manpages-dev (5.10-1) ... +2024-05-06T16:45:58Z #8 64.99 Selecting previously unselected package mesa-va-drivers:amd64. +2024-05-06T16:45:58Z #8 64.99 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... +2024-05-06T16:45:58Z #8 65.00 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... +2024-05-06T16:45:59Z #8 65.44 Selecting previously unselected package mesa-vdpau-drivers:amd64. +2024-05-06T16:45:59Z #8 65.44 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... +2024-05-06T16:45:59Z #8 65.45 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-05-06T16:45:59Z #8 65.89 Selecting previously unselected package mesa-vulkan-drivers:amd64. +2024-05-06T16:45:59Z #8 65.90 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... +2024-05-06T16:45:59Z #8 65.90 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-05-06T16:46:00Z #8 66.60 Selecting previously unselected package patch. +2024-05-06T16:46:00Z #8 66.60 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... +2024-05-06T16:46:00Z #8 66.60 Unpacking patch (2.7.6-7) ... +2024-05-06T16:46:00Z #8 66.66 Selecting previously unselected package unzip. +2024-05-06T16:46:00Z #8 66.66 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... +2024-05-06T16:46:00Z #8 66.66 Unpacking unzip (6.0-26+deb11u1) ... +2024-05-06T16:46:00Z #8 66.72 Selecting previously unselected package va-driver-all:amd64. +2024-05-06T16:46:00Z #8 66.73 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... +2024-05-06T16:46:00Z #8 66.73 Unpacking va-driver-all:amd64 (2.10.0-1) ... +2024-05-06T16:46:00Z #8 66.77 Selecting previously unselected package vdpau-driver-all:amd64. +2024-05-06T16:46:00Z #8 66.77 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... +2024-05-06T16:46:00Z #8 66.78 Unpacking vdpau-driver-all:amd64 (1.4-3) ... +2024-05-06T16:46:00Z #8 66.81 Selecting previously unselected package x11-utils. +2024-05-06T16:46:00Z #8 66.82 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... +2024-05-06T16:46:00Z #8 66.82 Unpacking x11-utils (7.7+5) ... +2024-05-06T16:46:00Z #8 66.94 Setting up libgraphite2-3:amd64 (1.3.14-1) ... +2024-05-06T16:46:00Z #8 66.95 Setting up libxcb-dri3-0:amd64 (1.14-3) ... +2024-05-06T16:46:00Z #8 66.96 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... +2024-05-06T16:46:00Z #8 66.97 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... +2024-05-06T16:46:00Z #8 66.98 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... +2024-05-06T16:46:00Z #8 66.99 Setting up libpciaccess0:amd64 (0.16-1) ... +2024-05-06T16:46:00Z #8 67.00 Setting up systemd-sysv (247.3-7+deb11u4) ... +2024-05-06T16:46:00Z #8 67.02 Setting up libproxy1v5:amd64 (0.4.17-1) ... +2024-05-06T16:46:00Z #8 67.03 Setting up libxdamage1:amd64 (1:1.1.5-2) ... +2024-05-06T16:46:00Z #8 67.04 Setting up libxcb-xfixes0:amd64 (1.14-3) ... +2024-05-06T16:46:00Z #8 67.05 Setting up libogg0:amd64 (1.3.4-0.1) ... +2024-05-06T16:46:00Z #8 67.06 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... +2024-05-06T16:46:00Z #8 67.07 Setting up libshine3:amd64 (3.1.1-2) ... +2024-05-06T16:46:00Z #8 67.08 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... +2024-05-06T16:46:00Z #8 67.09 Setting up hicolor-icon-theme (0.17-2) ... +2024-05-06T16:46:00Z #8 67.12 Setting up libxi6:amd64 (2:1.7.10-1) ... +2024-05-06T16:46:00Z #8 67.13 Setting up libtwolame0:amd64 (0.4.0-2) ... +2024-05-06T16:46:00Z #8 67.14 Setting up libicu67:amd64 (67.1-7) ... +2024-05-06T16:46:00Z #8 67.15 Setting up libdatrie1:amd64 (0.2.13-1) ... +2024-05-06T16:46:00Z #8 67.16 Setting up libgsm1:amd64 (1.0.18-2) ... +2024-05-06T16:46:00Z #8 67.17 Setting up libxcb-render0:amd64 (1.14-3) ... +2024-05-06T16:46:00Z #8 67.18 Setting up manpages (5.10-1) ... +2024-05-06T16:46:00Z #8 67.19 Setting up libglvnd0:amd64 (1.3.2-1) ... +2024-05-06T16:46:00Z #8 67.21 Setting up libxtst6:amd64 (2:1.2.3-1) ... +2024-05-06T16:46:00Z #8 67.22 Setting up libxcb-glx0:amd64 (1.14-3) ... +2024-05-06T16:46:00Z #8 67.23 Setting up unzip (6.0-26+deb11u1) ... +2024-05-06T16:46:01Z #8 67.24 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... +2024-05-06T16:46:01Z #8 67.26 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... +2024-05-06T16:46:01Z #8 67.27 Setting up libxcb-shape0:amd64 (1.14-3) ... +2024-05-06T16:46:01Z #8 67.28 Setting up binutils-common:amd64 (2.35.2-2) ... +2024-05-06T16:46:01Z #8 67.29 Setting up libsensors-config (1:3.6.0-7) ... +2024-05-06T16:46:01Z #8 67.31 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... +2024-05-06T16:46:01Z #8 67.32 Setting up libdeflate0:amd64 (1.7-1) ... +2024-05-06T16:46:01Z #8 67.33 Setting up linux-libc-dev:amd64 (5.10.209-2) ... +2024-05-06T16:46:01Z #8 67.35 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... +2024-05-06T16:46:01Z #8 67.36 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... +2024-05-06T16:46:01Z #8 67.37 First installation detected... +2024-05-06T16:46:01Z #8 67.37 Checking NSS setup... +2024-05-06T16:46:01Z #8 67.38 Setting up xkb-data (2.29-2) ... +2024-05-06T16:46:01Z #8 67.39 Setting up libxcb-shm0:amd64 (1.14-3) ... +2024-05-06T16:46:01Z #8 67.40 Setting up libgomp1:amd64 (10.2.1-6) ... +2024-05-06T16:46:01Z #8 67.42 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +2024-05-06T16:46:01Z #8 67.43 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... +2024-05-06T16:46:01Z #8 67.44 Setting up libjbig0:amd64 (2.1-3.1+b2) ... +2024-05-06T16:46:01Z #8 67.45 Setting up libcolord2:amd64 (1.4.5-3) ... +2024-05-06T16:46:01Z #8 67.46 Setting up libasan6:amd64 (10.2.1-6) ... +2024-05-06T16:46:01Z #8 67.47 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... +2024-05-06T16:46:01Z #8 67.49 Setting up libsnappy1v5:amd64 (1.1.8-1) ... +2024-05-06T16:46:01Z #8 67.50 Setting up libxcb-present0:amd64 (1.14-3) ... +2024-05-06T16:46:01Z #8 67.51 Setting up libdconf1:amd64 (0.38.0-2) ... +2024-05-06T16:46:01Z #8 67.52 Setting up libasound2-data (1.2.4-1.1) ... +2024-05-06T16:46:01Z #8 67.54 Setting up libfontenc1:amd64 (1:1.1.4-1) ... +2024-05-06T16:46:01Z #8 67.55 Setting up libz3-4:amd64 (4.8.10-1) ... +2024-05-06T16:46:01Z #8 67.56 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... +2024-05-06T16:46:01Z #8 67.57 Setting up libllvm11:amd64 (1:11.0.1-2) ... +2024-05-06T16:46:01Z #8 67.59 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... +2024-05-06T16:46:01Z #8 67.60 Setting up libva2:amd64 (2.10.0-1) ... +2024-05-06T16:46:01Z #8 67.61 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... +2024-05-06T16:46:01Z #8 67.62 Setting up libepoxy0:amd64 (1.5.5-1) ... +2024-05-06T16:46:01Z #8 67.63 Setting up libmpfr6:amd64 (4.1.0-3) ... +2024-05-06T16:46:01Z #8 67.64 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +2024-05-06T16:46:01Z #8 67.65 Setting up libxcb-sync1:amd64 (1.14-3) ... +2024-05-06T16:46:01Z #8 67.66 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... +2024-05-06T16:46:01Z #8 67.68 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... +2024-05-06T16:46:01Z #8 67.69 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... +2024-05-06T16:46:01Z #8 67.70 Setting up dbus (1.12.28-0+deb11u1) ... +2024-05-06T16:46:01Z #8 67.85 invoke-rc.d: could not determine current runlevel +2024-05-06T16:46:01Z #8 67.85 invoke-rc.d: policy-rc.d denied execution of start. +2024-05-06T16:46:01Z #8 67.86 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... +2024-05-06T16:46:01Z #8 67.87 Setting up libopus0:amd64 (1.3.1-0.1) ... +2024-05-06T16:46:01Z #8 67.88 Setting up libquadmath0:amd64 (10.2.1-6) ... +2024-05-06T16:46:01Z #8 67.90 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +2024-05-06T16:46:01Z #8 67.91 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... +2024-05-06T16:46:01Z #8 67.92 Setting up libxv1:amd64 (2:1.0.11-1) ... +2024-05-06T16:46:01Z #8 67.93 Setting up libpng16-16:amd64 (1.6.37-3) ... +2024-05-06T16:46:01Z #8 67.95 Setting up libmpc3:amd64 (1.2.0-1) ... +2024-05-06T16:46:01Z #8 67.96 Setting up systemd-timesyncd (247.3-7+deb11u4) ... +2024-05-06T16:46:03Z #8 70.08 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. +2024-05-06T16:46:03Z #8 70.08 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. +2024-05-06T16:46:04Z #8 70.29 Setting up libatomic1:amd64 (10.2.1-6) ... +2024-05-06T16:46:04Z #8 70.40 Setting up libvorbis0a:amd64 (1.3.7-1) ... +2024-05-06T16:46:04Z #8 70.41 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... +2024-05-06T16:46:04Z #8 70.42 Setting up libxrandr2:amd64 (2:1.5.1-1) ... +2024-05-06T16:46:04Z #8 70.43 Setting up patch (2.7.6-7) ... +2024-05-06T16:46:04Z #8 70.44 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... +2024-05-06T16:46:04Z #8 70.46 Setting up fonts-dejavu-core (2.37-2) ... +2024-05-06T16:46:04Z #8 70.57 Setting up libsensors5:amd64 (1:3.6.0-7) ... +2024-05-06T16:46:04Z #8 70.58 Setting up libxt6:amd64 (1:1.2.0-1) ... +2024-05-06T16:46:04Z #8 70.59 Setting up libglapi-mesa:amd64 (20.3.5-1) ... +2024-05-06T16:46:04Z #8 70.60 Setting up libvulkan1:amd64 (1.2.162.0-1) ... +2024-05-06T16:46:04Z #8 70.61 Setting up libubsan1:amd64 (10.2.1-6) ... +2024-05-06T16:46:04Z #8 70.62 Setting up libxcb-dri2-0:amd64 (1.14-3) ... +2024-05-06T16:46:04Z #8 70.63 Setting up libatk1.0-data (2.36.0-2) ... +2024-05-06T16:46:04Z #8 70.64 Setting up libnuma1:amd64 (2.0.12-1+b1) ... +2024-05-06T16:46:04Z #8 70.66 Setting up alsa-topology-conf (1.2.4-1) ... +2024-05-06T16:46:04Z #8 70.67 Setting up libnsl-dev:amd64 (1.3.0-2) ... +2024-05-06T16:46:04Z #8 70.68 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... +2024-05-06T16:46:04Z #8 70.69 Setting up libxshmfence1:amd64 (1.3-1) ... +2024-05-06T16:46:04Z #8 70.71 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... +2024-05-06T16:46:04Z #8 70.72 Setting up libvdpau1:amd64 (1.4-3) ... +2024-05-06T16:46:04Z #8 70.73 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... +2024-05-06T16:46:04Z #8 70.74 Setting up libwavpack1:amd64 (5.4.0-1) ... +2024-05-06T16:46:04Z #8 70.75 Setting up libxcb-randr0:amd64 (1.14-3) ... +2024-05-06T16:46:04Z #8 70.77 Setting up libasound2:amd64 (1.2.4-1.1) ... +2024-05-06T16:46:04Z #8 70.78 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... +2024-05-06T16:46:04Z #8 71.00 Setting up libdav1d4:amd64 (0.7.1-3) ... +2024-05-06T16:46:04Z #8 71.02 Setting up libopenjp2-7:amd64 (2.4.0-3) ... +2024-05-06T16:46:04Z #8 71.03 Setting up libthai-data (0.1.28-3) ... +2024-05-06T16:46:04Z #8 71.04 Setting up fonts-humor-sans (1.0-4) ... +2024-05-06T16:46:04Z #8 71.05 Setting up libjson-glib-1.0-common (1.6.2-1) ... +2024-05-06T16:46:04Z #8 71.06 Setting up libatk1.0-0:amd64 (2.36.0-2) ... +2024-05-06T16:46:04Z #8 71.07 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... +2024-05-06T16:46:04Z #8 71.08 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... +2024-05-06T16:46:04Z #8 71.09 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +2024-05-06T16:46:04Z #8 71.10 Setting up glib-networking-common (2.66.0-2) ... +2024-05-06T16:46:04Z #8 71.11 Setting up libbinutils:amd64 (2.35.2-2) ... +2024-05-06T16:46:04Z #8 71.12 Setting up libmfx1:amd64 (21.1.0-1) ... +2024-05-06T16:46:04Z #8 71.14 Setting up libisl23:amd64 (0.23-1) ... +2024-05-06T16:46:04Z #8 71.15 Setting up libc-dev-bin (2.31-13+deb11u10) ... +2024-05-06T16:46:04Z #8 71.16 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... +2024-05-06T16:46:04Z #8 71.17 Setting up libdrm-common (2.4.104-1) ... +2024-05-06T16:46:04Z #8 71.18 Setting up libelf1:amd64 (0.183-1) ... +2024-05-06T16:46:04Z #8 71.19 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +2024-05-06T16:46:04Z #8 71.20 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... +2024-05-06T16:46:04Z #8 71.21 Setting up libcc1-0:amd64 (10.2.1-6) ... +2024-05-06T16:46:04Z #8 71.22 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... +2024-05-06T16:46:05Z #8 71.23 Setting up libzvbi-common (0.2.35-18) ... +2024-05-06T16:46:05Z #8 71.24 Setting up liblsan0:amd64 (10.2.1-6) ... +2024-05-06T16:46:05Z #8 71.26 Setting up cpp-10 (10.2.1-6) ... +2024-05-06T16:46:05Z #8 71.27 Setting up libmp3lame0:amd64 (3.100-3) ... +2024-05-06T16:46:05Z #8 71.28 Setting up libitm1:amd64 (10.2.1-6) ... +2024-05-06T16:46:05Z #8 71.29 Setting up libvorbisenc2:amd64 (1.3.7-1) ... +2024-05-06T16:46:05Z #8 71.30 Setting up libtsan0:amd64 (10.2.1-6) ... +2024-05-06T16:46:05Z #8 71.31 Setting up libxkbcommon0:amd64 (1.0.3-2) ... +2024-05-06T16:46:05Z #8 71.32 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... +2024-05-06T16:46:05Z #8 71.33 Setting up libctf0:amd64 (2.35.2-2) ... +2024-05-06T16:46:05Z #8 71.35 Setting up glib-networking-services (2.66.0-2) ... +2024-05-06T16:46:05Z #8 71.36 Setting up libzvbi0:amd64 (0.2.35-18) ... +2024-05-06T16:46:05Z #8 71.37 Setting up manpages-dev (5.10-1) ... +2024-05-06T16:46:05Z #8 71.38 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... +2024-05-06T16:46:05Z #8 71.39 Setting up alsa-ucm-conf (1.2.4-2) ... +2024-05-06T16:46:05Z #8 71.40 Setting up libsoxr0:amd64 (0.1.3-4) ... +2024-05-06T16:46:05Z #8 71.41 Setting up fontconfig-config (2.13.1-4.2) ... +2024-05-06T16:46:05Z #8 71.73 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... +2024-05-06T16:46:05Z #8 71.74 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +2024-05-06T16:46:05Z #8 71.76 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... +2024-05-06T16:46:05Z #8 71.77 Setting up libx265-192:amd64 (3.4-2) ... +2024-05-06T16:46:05Z #8 71.78 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... +2024-05-06T16:46:05Z #8 71.79 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... +2024-05-06T16:46:05Z #8 71.80 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... +2024-05-06T16:46:05Z #8 71.81 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... +2024-05-06T16:46:05Z #8 71.83 Setting up libthai0:amd64 (0.1.28-3) ... +2024-05-06T16:46:05Z #8 71.84 Setting up dbus-user-session (1.12.28-0+deb11u1) ... +2024-05-06T16:46:05Z #8 71.85 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... +2024-05-06T16:46:05Z #8 71.86 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... +2024-05-06T16:46:05Z #8 71.88 Setting up shared-mime-info (2.0-1) ... +2024-05-06T16:46:08Z #8 74.22 Setting up libdrm2:amd64 (2.4.104-1) ... +2024-05-06T16:46:08Z #8 74.23 Setting up libva-drm2:amd64 (2.10.0-1) ... +2024-05-06T16:46:08Z #8 74.24 Setting up at-spi2-core (2.38.0-4+deb11u1) ... +2024-05-06T16:46:08Z #8 74.26 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... +2024-05-06T16:46:08Z #8 74.27 Setting up cpp (4:10.2.1-1) ... +2024-05-06T16:46:08Z #8 74.29 Setting up libc6-dev:amd64 (2.31-13+deb11u10) ... +2024-05-06T16:46:08Z #8 74.30 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... +2024-05-06T16:46:08Z #8 74.31 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-05-06T16:46:08Z #8 74.34 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... +2024-05-06T16:46:08Z #8 74.41 Setting up libva-x11-2:amd64 (2.10.0-1) ... +2024-05-06T16:46:08Z #8 74.42 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... +2024-05-06T16:46:08Z #8 74.43 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... +2024-05-06T16:46:08Z #8 74.44 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... +2024-05-06T16:46:08Z #8 74.46 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... +2024-05-06T16:46:08Z #8 74.47 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... +2024-05-06T16:46:08Z #8 74.48 Setting up fontconfig (2.13.1-4.2) ... +2024-05-06T16:46:10Z #8 74.49 Regenerating fonts cache... done. +2024-05-06T16:46:10Z #8 76.53 Setting up libxft2:amd64 (2.3.2-2) ... +2024-05-06T16:46:10Z #8 76.54 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... +2024-05-06T16:46:10Z #8 76.55 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... +2024-05-06T16:46:10Z #8 76.56 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... +2024-05-06T16:46:10Z #8 76.57 Setting up libdrm-intel1:amd64 (2.4.104-1) ... +2024-05-06T16:46:10Z #8 76.58 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... +2024-05-06T16:46:10Z #8 76.60 Setting up dconf-service (0.38.0-2) ... +2024-05-06T16:46:10Z #8 76.61 Setting up binutils (2.35.2-2) ... +2024-05-06T16:46:10Z #8 76.62 Setting up libcairo2:amd64 (1.16.0-5) ... +2024-05-06T16:46:10Z #8 76.63 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... +2024-05-06T16:46:10Z #8 76.64 Setting up adwaita-icon-theme (3.38.0-1) ... +2024-05-06T16:46:10Z #8 76.73 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode +2024-05-06T16:46:10Z #8 76.74 Setting up libgd3:amd64 (2.3.0-2) ... +2024-05-06T16:46:10Z #8 76.75 Setting up gcc-10 (10.2.1-6) ... +2024-05-06T16:46:10Z #8 76.76 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... +2024-05-06T16:46:10Z #8 76.77 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... +2024-05-06T16:46:10Z #8 76.78 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... +2024-05-06T16:46:10Z #8 76.79 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... +2024-05-06T16:46:10Z #8 76.80 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... +2024-05-06T16:46:10Z #8 76.82 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... +2024-05-06T16:46:10Z #8 76.83 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... +2024-05-06T16:46:10Z #8 76.84 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... +2024-05-06T16:46:10Z #8 76.85 Setting up libc-devtools (2.31-13+deb11u10) ... +2024-05-06T16:46:10Z #8 76.86 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... +2024-05-06T16:46:10Z #8 76.87 Setting up libglx-mesa0:amd64 (20.3.5-1) ... +2024-05-06T16:46:10Z #8 76.89 Setting up libglx0:amd64 (1.3.2-1) ... +2024-05-06T16:46:10Z #8 76.90 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... +2024-05-06T16:46:10Z #8 76.91 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... +2024-05-06T16:46:10Z #8 76.92 Setting up gcc (4:10.2.1-1) ... +2024-05-06T16:46:10Z #8 76.94 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-05-06T16:46:10Z #8 76.95 Setting up libgl1:amd64 (1.3.2-1) ... +2024-05-06T16:46:10Z #8 76.97 Setting up va-driver-all:amd64 (2.10.0-1) ... +2024-05-06T16:46:10Z #8 76.98 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... +2024-05-06T16:46:10Z #8 77.00 Setting up x11-utils (7.7+5) ... +2024-05-06T16:46:10Z #8 77.03 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... +2024-05-06T16:46:10Z #8 77.04 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... +2024-05-06T16:46:10Z #8 77.06 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... +2024-05-06T16:46:10Z #8 77.08 Setting up gsettings-desktop-schemas (3.38.0-2) ... +2024-05-06T16:46:10Z #8 77.09 Setting up vdpau-driver-all:amd64 (1.4-3) ... +2024-05-06T16:46:10Z #8 77.11 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... +2024-05-06T16:46:10Z #8 77.14 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-05-06T16:46:10Z #8 77.18 Setting up glib-networking:amd64 (2.66.0-2) ... +2024-05-06T16:46:10Z #8 77.19 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... +2024-05-06T16:46:10Z #8 77.21 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... +2024-05-06T16:46:10Z #8 77.23 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... +2024-05-06T16:46:10Z #8 77.24 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... +2024-05-06T16:46:10Z #8 77.27 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... +2024-05-06T16:46:11Z #8 77.28 Setting up firefox-esr (115.10.0esr-1~deb11u1) ... +2024-05-06T16:46:11Z #8 77.30 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode +2024-05-06T16:46:11Z #8 77.30 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist +2024-05-06T16:46:11Z #8 77.31 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode +2024-05-06T16:46:11Z #8 77.31 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist +2024-05-06T16:46:11Z #8 77.32 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... +2024-05-06T16:46:11Z #8 77.35 Processing triggers for libc-bin (2.31-13+deb11u8) ... +2024-05-06T16:46:15Z #8 DONE 81.6s +2024-05-06T16:46:15Z +2024-05-06T16:46:15Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda +2024-05-06T16:47:04Z #9 DONE 48.8s +2024-05-06T16:47:04Z +2024-05-06T16:47:04Z #10 [ 5/10] COPY environment.yml /environment.yml +2024-05-06T16:47:04Z #10 DONE 0.1s +2024-05-06T16:47:04Z +2024-05-06T16:47:04Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.11 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes +2024-05-06T16:49:35Z #11 151.8 Transaction +2024-05-06T16:49:35Z #11 151.8 +2024-05-06T16:49:35Z #11 151.8 Prefix: /opt/conda/envs/birdy +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 Updating specs: +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 - xclim +2024-05-06T16:49:36Z #11 151.8 - ravenpy +2024-05-06T16:49:36Z #11 151.8 - python=3.11 +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 Package Version Build Channel Size +2024-05-06T16:49:36Z #11 151.8 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-05-06T16:49:36Z #11 151.8 Install: +2024-05-06T16:49:36Z #11 151.8 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB +2024-05-06T16:49:36Z #11 151.8 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB +2024-05-06T16:49:36Z #11 151.8 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB +2024-05-06T16:49:36Z #11 151.8 + font-ttf-ubuntu 0.83 h77eed37_2 conda-forge 2MB +2024-05-06T16:49:36Z #11 151.8 + tzdata 2024a h0c530f3_0 conda-forge 120kB +2024-05-06T16:49:36Z #11 151.8 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB +2024-05-06T16:49:36Z #11 151.8 + fonts-conda-forge 1 0 conda-forge 4kB +2024-05-06T16:49:36Z #11 151.8 + fonts-conda-ecosystem 1 0 conda-forge 4kB +2024-05-06T16:49:36Z #11 151.8 + python_abi 3.11 4_cp311 conda-forge 6kB +2024-05-06T16:49:36Z #11 151.8 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB +2024-05-06T16:49:36Z #11 151.8 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB +2024-05-06T16:49:36Z #11 151.8 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB +2024-05-06T16:49:36Z #11 151.8 + libstdcxx-ng 13.2.0 hc0a3c3a_6 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + ld_impl_linux-64 2.40 h55db66e_0 conda-forge 713kB +2024-05-06T16:49:36Z #11 151.8 + mpi 1.0 impi conda-forge 7kB +2024-05-06T16:49:36Z #11 151.8 + libgomp 13.2.0 h77fa898_6 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + impi_rt 2021.12.0 ha770c72_535 conda-forge 37MB +2024-05-06T16:49:36Z #11 151.8 + _openmp_mutex 4.5 2_gnu conda-forge 24kB +2024-05-06T16:49:36Z #11 151.8 + libgcc-ng 13.2.0 h77fa898_6 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libnl 3.9.0 hd590300_0 conda-forge 733kB +2024-05-06T16:49:36Z #11 151.8 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB +2024-05-06T16:49:36Z #11 151.8 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB +2024-05-06T16:49:36Z #11 151.8 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB +2024-05-06T16:49:36Z #11 151.8 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB +2024-05-06T16:49:36Z #11 151.8 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB +2024-05-06T16:49:36Z #11 151.8 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB +2024-05-06T16:49:36Z #11 151.8 + libev 4.33 hd590300_2 conda-forge 113kB +2024-05-06T16:49:36Z #11 151.8 + tzcode 2024a h3f72095_0 conda-forge 70kB +2024-05-06T16:49:36Z #11 151.8 + pixman 0.43.2 h59595ed_0 conda-forge 387kB +2024-05-06T16:49:36Z #11 151.8 + lzo 2.10 hd590300_1001 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB +2024-05-06T16:49:36Z #11 151.8 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB +2024-05-06T16:49:36Z #11 151.8 + aws-c-common 0.9.15 hd590300_0 conda-forge 227kB +2024-05-06T16:49:36Z #11 151.8 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB +2024-05-06T16:49:36Z #11 151.8 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB +2024-05-06T16:49:36Z #11 151.8 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB +2024-05-06T16:49:36Z #11 151.8 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB +2024-05-06T16:49:36Z #11 151.8 + libiconv 1.17 hd590300_2 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + openssl 3.3.0 hd590300_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libxcrypt 4.4.36 hd590300_1 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libffi 3.4.2 h7f98852_5 conda-forge 58kB +2024-05-06T16:49:36Z #11 151.8 + bzip2 1.0.8 hd590300_5 conda-forge 254kB +2024-05-06T16:49:36Z #11 151.8 + yaml 0.2.5 h7f98852_2 conda-forge 89kB +2024-05-06T16:49:36Z #11 151.8 + libzlib 1.2.13 hd590300_5 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB +2024-05-06T16:49:36Z #11 151.8 + libgfortran5 13.2.0 h43f5ff8_6 conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB +2024-05-06T16:49:36Z #11 151.8 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB +2024-05-06T16:49:36Z #11 151.8 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + icu 73.2 h59595ed_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + nspr 4.35 h27087fc_0 conda-forge 227kB +2024-05-06T16:49:36Z #11 151.8 + libwebp-base 1.4.0 hd590300_0 conda-forge 439kB +2024-05-06T16:49:36Z #11 151.8 + libdeflate 1.20 hd590300_0 conda-forge 72kB +2024-05-06T16:49:36Z #11 151.8 + libaec 1.1.3 h59595ed_0 conda-forge 35kB +2024-05-06T16:49:36Z #11 151.8 + json-c 0.17 h7ab15ed_0 conda-forge 83kB +2024-05-06T16:49:36Z #11 151.8 + giflib 5.2.2 hd590300_0 conda-forge 77kB +2024-05-06T16:49:36Z #11 151.8 + geos 3.12.1 h59595ed_0 conda-forge 2MB +2024-05-06T16:49:36Z #11 151.8 + lerc 4.0.0 h27087fc_0 conda-forge 282kB +2024-05-06T16:49:36Z #11 151.8 + c-ares 1.28.1 hd590300_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + snappy 1.2.0 hdb0a2a9_1 conda-forge 42kB +2024-05-06T16:49:36Z #11 151.8 + libabseil 20240116.2 cxx17_h59595ed_0 conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB +2024-05-06T16:49:36Z #11 151.8 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB +2024-05-06T16:49:36Z #11 151.8 + libuuid 2.38.1 h0b41bf4_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libnsl 2.0.1 hd590300_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB +2024-05-06T16:49:36Z #11 151.8 + xz 5.2.6 h166bdaf_0 conda-forge 418kB +2024-05-06T16:49:36Z #11 151.8 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB +2024-05-06T16:49:36Z #11 151.8 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB +2024-05-06T16:49:36Z #11 151.8 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB +2024-05-06T16:49:36Z #11 151.8 + aws-c-compression 0.2.18 hce8ee76_3 conda-forge 19kB +2024-05-06T16:49:36Z #11 151.8 + aws-c-sdkutils 0.1.15 hce8ee76_3 conda-forge 55kB +2024-05-06T16:49:36Z #11 151.8 + aws-checksums 0.1.18 hce8ee76_3 conda-forge 50kB +2024-05-06T16:49:36Z #11 151.8 + spdlog 1.13.0 hd2e6256_0 conda-forge 188kB +2024-05-06T16:49:36Z #11 151.8 + glog 0.7.0 hed5481d_0 conda-forge 144kB +2024-05-06T16:49:36Z #11 151.8 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB +2024-05-06T16:49:36Z #11 151.8 + libevent 2.1.12 hf998b51_1 conda-forge 427kB +2024-05-06T16:49:36Z #11 151.8 + s2n 1.4.12 h06160fa_0 conda-forge 347kB +2024-05-06T16:49:36Z #11 151.8 + aws-c-cal 0.6.11 heb1d5e4_0 conda-forge 46kB +2024-05-06T16:49:36Z #11 151.8 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB +2024-05-06T16:49:36Z #11 151.8 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB +2024-05-06T16:49:36Z #11 151.8 + zstd 1.5.6 ha6fb4c9_0 conda-forge 555kB +2024-05-06T16:49:36Z #11 151.8 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB +2024-05-06T16:49:36Z #11 151.8 + tk 8.6.13 noxft_h4845f30_101 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + zlib 1.2.13 hd590300_5 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libssh2 1.11.0 h0841786_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + pcre2 10.43 hcad00b1_0 conda-forge 951kB +2024-05-06T16:49:36Z #11 151.8 + libpng 1.6.43 h2797004_0 conda-forge 288kB +2024-05-06T16:49:36Z #11 151.8 + libsqlite 3.45.3 h2797004_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libgfortran-ng 13.2.0 h69a702a_6 conda-forge 24kB +2024-05-06T16:49:36Z #11 151.8 + librttopo 1.1.0 h8917695_15 conda-forge 233kB +2024-05-06T16:49:36Z #11 151.8 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB +2024-05-06T16:49:36Z #11 151.8 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB +2024-05-06T16:49:36Z #11 151.8 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB +2024-05-06T16:49:36Z #11 151.8 + readline 8.2 h8228510_1 conda-forge 281kB +2024-05-06T16:49:36Z #11 151.8 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB +2024-05-06T16:49:36Z #11 151.8 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB +2024-05-06T16:49:36Z #11 151.8 + expat 2.6.2 h59595ed_0 conda-forge 138kB +2024-05-06T16:49:36Z #11 151.8 + libxml2 2.12.6 h232c23b_2 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + ucx 1.15.0 ha691c75_8 conda-forge 7MB +2024-05-06T16:49:36Z #11 151.8 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB +2024-05-06T16:49:36Z #11 151.8 + xorg-libx11 1.8.9 h8ee46fc_0 conda-forge 828kB +2024-05-06T16:49:36Z #11 151.8 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB +2024-05-06T16:49:36Z #11 151.8 + aws-c-io 0.14.7 hbfbeace_6 conda-forge 158kB +2024-05-06T16:49:36Z #11 151.8 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB +2024-05-06T16:49:36Z #11 151.8 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB +2024-05-06T16:49:36Z #11 151.8 + blosc 1.21.5 hc2324a3_1 conda-forge 49kB +2024-05-06T16:49:36Z #11 151.8 + libglib 2.80.0 hf2295e7_6 conda-forge 4MB +2024-05-06T16:49:36Z #11 151.8 + freetype 2.12.1 h267a509_2 conda-forge 635kB +2024-05-06T16:49:36Z #11 151.8 + nss 3.98 h1d7d5a4_0 conda-forge 2MB +2024-05-06T16:49:36Z #11 151.8 + libopenblas 0.3.27 pthreads_h413a1c8_0 conda-forge 6MB +2024-05-06T16:49:36Z #11 151.8 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB +2024-05-06T16:49:36Z #11 151.8 + orc 2.0.0 h17fec99_1 conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + krb5 1.21.2 h659d440_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + sqlite 3.45.3 h2c6b66d_0 conda-forge 849kB +2024-05-06T16:49:36Z #11 151.8 + python 3.11.9 hb806964_0_cpython conda-forge 31MB +2024-05-06T16:49:36Z #11 151.8 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB +2024-05-06T16:49:36Z #11 151.8 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB +2024-05-06T16:49:36Z #11 151.8 + brotli 1.1.0 hd590300_1 conda-forge 19kB +2024-05-06T16:49:36Z #11 151.8 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB +2024-05-06T16:49:36Z #11 151.8 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB +2024-05-06T16:49:36Z #11 151.8 + aws-c-http 0.8.1 hdb68c23_10 conda-forge 195kB +2024-05-06T16:49:36Z #11 151.8 + aws-c-event-stream 0.4.2 h01f5eca_8 conda-forge 54kB +2024-05-06T16:49:36Z #11 151.8 + freexl 2.0.0 h743c826_0 conda-forge 60kB +2024-05-06T16:49:36Z #11 151.8 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB +2024-05-06T16:49:36Z #11 151.8 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB +2024-05-06T16:49:36Z #11 151.8 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB +2024-05-06T16:49:36Z #11 151.8 + libblas 3.9.0 22_linux64_openblas conda-forge 15kB +2024-05-06T16:49:36Z #11 151.8 + libgrpc 1.62.2 h15f2491_0 conda-forge 7MB +2024-05-06T16:49:36Z #11 151.8 + libpq 16.2 h33b98f1_1 conda-forge 3MB +2024-05-06T16:49:36Z #11 151.8 + libcurl 8.7.1 hca28451_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + aws-c-auth 0.7.18 he0b1f16_0 conda-forge 105kB +2024-05-06T16:49:36Z #11 151.8 + aws-c-mqtt 0.10.4 h50844eb_0 conda-forge 163kB +2024-05-06T16:49:36Z #11 151.8 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB +2024-05-06T16:49:36Z #11 151.8 + libcblas 3.9.0 22_linux64_openblas conda-forge 14kB +2024-05-06T16:49:36Z #11 151.8 + liblapack 3.9.0 22_linux64_openblas conda-forge 14kB +2024-05-06T16:49:36Z #11 151.8 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB +2024-05-06T16:49:36Z #11 151.8 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB +2024-05-06T16:49:36Z #11 151.8 + libgoogle-cloud 2.23.0 h9be4e54_1 conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + cfitsio 4.4.0 hbdc6101_1 conda-forge 914kB +2024-05-06T16:49:36Z #11 151.8 + hdf5 1.14.3 nompi_h4f84152_101 conda-forge 4MB +2024-05-06T16:49:36Z #11 151.8 + proj 9.4.0 h1d62c97_1 conda-forge 3MB +2024-05-06T16:49:36Z #11 151.8 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB +2024-05-06T16:49:36Z #11 151.8 + aws-c-s3 0.5.7 h6be9164_2 conda-forge 108kB +2024-05-06T16:49:36Z #11 151.8 + poppler 24.04.0 hb6cd0d7_0 conda-forge 2MB +2024-05-06T16:49:36Z #11 151.8 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB +2024-05-06T16:49:36Z #11 151.8 + azure-identity-cpp 1.6.0 hf1915f5_1 conda-forge 191kB +2024-05-06T16:49:36Z #11 151.8 + libgoogle-cloud-storage 2.23.0 hc7a4891_1 conda-forge 753kB +2024-05-06T16:49:36Z #11 151.8 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB +2024-05-06T16:49:36Z #11 151.8 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB +2024-05-06T16:49:36Z #11 151.8 + libspatialite 5.1.0 h6f065fc_5 conda-forge 4MB +2024-05-06T16:49:36Z #11 151.8 + geotiff 1.7.1 h6cf1f90_16 conda-forge 134kB +2024-05-06T16:49:36Z #11 151.8 + aws-crt-cpp 0.26.8 h2150271_2 conda-forge 340kB +2024-05-06T16:49:36Z #11 151.8 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB +2024-05-06T16:49:36Z #11 151.8 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB +2024-05-06T16:49:36Z #11 151.8 + aws-sdk-cpp 1.11.267 hddb5a97_7 conda-forge 4MB +2024-05-06T16:49:36Z #11 151.8 + esmf 8.6.1 nompi_h7b237b1_0 conda-forge 24MB +2024-05-06T16:49:36Z #11 151.8 + tiledb 2.22.0 h27f064a_3 conda-forge 4MB +2024-05-06T16:49:36Z #11 151.8 + libarrow 15.0.2 hefa796f_6_cpu conda-forge 8MB +2024-05-06T16:49:36Z #11 151.8 + libgdal 3.8.5 hf9625ee_2 conda-forge 11MB +2024-05-06T16:49:36Z #11 151.8 + libparquet 15.0.2 hacf5a1f_6_cpu conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + libarrow-gandiva 15.0.2 hc1954e9_6_cpu conda-forge 898kB +2024-05-06T16:49:36Z #11 151.8 + libarrow-flight 15.0.2 hc4f8a93_6_cpu conda-forge 509kB +2024-05-06T16:49:36Z #11 151.8 + libarrow-acero 15.0.2 hbabe93e_6_cpu conda-forge 601kB +2024-05-06T16:49:36Z #11 151.8 + libarrow-flight-sql 15.0.2 he4f5ca8_6_cpu conda-forge 197kB +2024-05-06T16:49:36Z #11 151.8 + libarrow-dataset 15.0.2 hbabe93e_6_cpu conda-forge 588kB +2024-05-06T16:49:36Z #11 151.8 + libarrow-substrait 15.0.2 he4f5ca8_6_cpu conda-forge 521kB +2024-05-06T16:49:36Z #11 151.8 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB +2024-05-06T16:49:36Z #11 151.8 + setuptools 69.5.1 pyhd8ed1ab_0 conda-forge 502kB +2024-05-06T16:49:36Z #11 151.8 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB +2024-05-06T16:49:36Z #11 151.8 + networkx 3.3 pyhd8ed1ab_1 conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB +2024-05-06T16:49:36Z #11 151.8 + idna 3.7 pyhd8ed1ab_0 conda-forge 53kB +2024-05-06T16:49:36Z #11 151.8 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB +2024-05-06T16:49:36Z #11 151.8 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB +2024-05-06T16:49:36Z #11 151.8 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB +2024-05-06T16:49:36Z #11 151.8 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB +2024-05-06T16:49:36Z #11 151.8 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB +2024-05-06T16:49:36Z #11 151.8 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB +2024-05-06T16:49:36Z #11 151.8 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB +2024-05-06T16:49:36Z #11 151.8 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB +2024-05-06T16:49:36Z #11 151.8 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB +2024-05-06T16:49:36Z #11 151.8 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached +2024-05-06T16:49:36Z #11 151.8 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB +2024-05-06T16:49:36Z #11 151.8 + threadpoolctl 3.5.0 pyhc1e730c_0 conda-forge 24kB +2024-05-06T16:49:36Z #11 151.8 + joblib 1.4.2 pyhd8ed1ab_0 conda-forge 220kB +2024-05-06T16:49:36Z #11 151.8 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB +2024-05-06T16:49:36Z #11 151.8 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB +2024-05-06T16:49:36Z #11 151.8 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB +2024-05-06T16:49:36Z #11 151.8 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB +2024-05-06T16:49:36Z #11 151.8 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB +2024-05-06T16:49:36Z #11 151.8 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB +2024-05-06T16:49:36Z #11 151.8 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB +2024-05-06T16:49:36Z #11 151.8 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB +2024-05-06T16:49:36Z #11 151.8 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB +2024-05-06T16:49:36Z #11 151.8 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB +2024-05-06T16:49:36Z #11 151.8 + platformdirs 4.2.1 pyhd8ed1ab_0 conda-forge 20kB +2024-05-06T16:49:36Z #11 151.8 + typing_extensions 4.11.0 pyha770c72_0 conda-forge 38kB +2024-05-06T16:49:36Z #11 151.8 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB +2024-05-06T16:49:36Z #11 151.8 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB +2024-05-06T16:49:36Z #11 151.8 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB +2024-05-06T16:49:36Z #11 151.8 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB +2024-05-06T16:49:36Z #11 151.8 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB +2024-05-06T16:49:36Z #11 151.8 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB +2024-05-06T16:49:36Z #11 151.8 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB +2024-05-06T16:49:36Z #11 151.8 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB +2024-05-06T16:49:36Z #11 151.8 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB +2024-05-06T16:49:36Z #11 151.8 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB +2024-05-06T16:49:36Z #11 151.8 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB +2024-05-06T16:49:36Z #11 151.8 + pytools 2024.1.2 pyhd8ed1ab_0 conda-forge 72kB +2024-05-06T16:49:36Z #11 151.8 + typing-extensions 4.11.0 hd8ed1ab_0 conda-forge 10kB +2024-05-06T16:49:36Z #11 151.8 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB +2024-05-06T16:49:36Z #11 151.8 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB +2024-05-06T16:49:36Z #11 151.8 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB +2024-05-06T16:49:36Z #11 151.8 + click-plugins 1.1.1 py_0 conda-forge 9kB +2024-05-06T16:49:36Z #11 151.8 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB +2024-05-06T16:49:36Z #11 151.8 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB +2024-05-06T16:49:36Z #11 151.8 + jsonpickle 3.0.4 pyhd8ed1ab_0 conda-forge 39kB +2024-05-06T16:49:36Z #11 151.8 + mpi4py 3.1.6 py311he9ffdee_0 conda-forge 567kB +2024-05-06T16:49:36Z #11 151.8 + markupsafe 2.1.5 py311h459d7ec_0 conda-forge 28kB +2024-05-06T16:49:36Z #11 151.8 + brotli-python 1.1.0 py311hb755f60_1 conda-forge 351kB +2024-05-06T16:49:36Z #11 151.8 + kiwisolver 1.4.5 py311h9547e67_1 conda-forge 73kB +2024-05-06T16:49:36Z #11 151.8 + llvmlite 0.42.0 py311ha6695c7_1 conda-forge 3MB +2024-05-06T16:49:36Z #11 151.8 + pillow 10.3.0 py311h18e6fac_0 conda-forge 43MB +2024-05-06T16:49:36Z #11 151.8 + lz4 4.3.3 py311h38e4bf4_0 conda-forge 40kB +2024-05-06T16:49:36Z #11 151.8 + tornado 6.4 py311h459d7ec_0 conda-forge 853kB +2024-05-06T16:49:36Z #11 151.8 + psutil 5.9.8 py311h459d7ec_0 conda-forge 506kB +2024-05-06T16:49:36Z #11 151.8 + msgpack-python 1.0.7 py311h9547e67_0 conda-forge 204kB +2024-05-06T16:49:36Z #11 151.8 + rtree 1.2.0 py311h3bb2b0f_0 conda-forge 64kB +2024-05-06T16:49:36Z #11 151.8 + raven-hydro 0.2.4 py311h14de304_1 conda-forge 786kB +2024-05-06T16:49:36Z #11 151.8 + lxml 5.2.1 py311hc0a218f_0 conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + pyyaml 6.0.1 py311h459d7ec_1 conda-forge 201kB +2024-05-06T16:49:36Z #11 151.8 + numpy 1.26.4 py311h64a7726_0 conda-forge 8MB +2024-05-06T16:49:36Z #11 151.8 + multiprocess 0.70.16 py311h459d7ec_0 conda-forge 348kB +2024-05-06T16:49:36Z #11 151.8 + fonttools 4.51.0 py311h459d7ec_0 conda-forge 3MB +2024-05-06T16:49:36Z #11 151.8 + pyproj 3.6.1 py311hb3a3e68_6 conda-forge 553kB +2024-05-06T16:49:36Z #11 151.8 + cytoolz 0.12.3 py311h459d7ec_0 conda-forge 396kB +2024-05-06T16:49:36Z #11 151.8 + pydantic-core 2.18.2 py311h5ecf98a_0 conda-forge 2MB +2024-05-06T16:49:36Z #11 151.8 + contourpy 1.2.1 py311h9547e67_0 conda-forge 259kB +2024-05-06T16:49:36Z #11 151.8 + h5py 3.11.0 nompi_py311hebc2b07_100 conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + shapely 2.0.4 py311h2032efe_0 conda-forge 577kB +2024-05-06T16:49:36Z #11 151.8 + gdal 3.8.5 py311hd032c08_2 conda-forge 2MB +2024-05-06T16:49:36Z #11 151.8 + pandas 2.2.2 py311h320fe9a_0 conda-forge 16MB +2024-05-06T16:49:36Z #11 151.8 + scipy 1.13.0 py311h517d4fd_1 conda-forge 17MB +2024-05-06T16:49:36Z #11 151.8 + pyarrow 15.0.2 py311hd5e4297_6_cpu conda-forge 5MB +2024-05-06T16:49:36Z #11 151.8 + numba 0.59.1 py311h96b013e_0 conda-forge 6MB +2024-05-06T16:49:36Z #11 151.8 + cftime 1.6.3 py311h1f0f07a_0 conda-forge 248kB +2024-05-06T16:49:36Z #11 151.8 + bottleneck 1.3.8 py311h1f0f07a_0 conda-forge 143kB +2024-05-06T16:49:36Z #11 151.8 + matplotlib-base 3.8.4 py311h54ef318_0 conda-forge 8MB +2024-05-06T16:49:36Z #11 151.8 + fiona 1.9.6 py311hf8e0aa6_0 conda-forge 993kB +2024-05-06T16:49:36Z #11 151.8 + pyogrio 0.7.2 py311hf8e0aa6_1 conda-forge 663kB +2024-05-06T16:49:36Z #11 151.8 + scikit-learn 1.4.2 py311hc009520_0 conda-forge 10MB +2024-05-06T16:49:36Z #11 151.8 + netcdf4 1.6.5 nompi_py311he8ad708_100 conda-forge 556kB +2024-05-06T16:49:36Z #11 151.8 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB +2024-05-06T16:49:36Z #11 151.8 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB +2024-05-06T16:49:36Z #11 151.8 + yamale 5.0.0 pyhca7485f_0 conda-forge 45kB +2024-05-06T16:49:36Z #11 151.8 + dask-core 2024.5.0 pyhd8ed1ab_0 conda-forge 881kB +2024-05-06T16:49:36Z #11 151.8 + esmpy 8.6.1 pyhc1e730c_0 conda-forge 2MB +2024-05-06T16:49:36Z #11 151.8 + snuggs 1.4.7 py_0 conda-forge 8kB +2024-05-06T16:49:36Z #11 151.8 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB +2024-05-06T16:49:36Z #11 151.8 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB +2024-05-06T16:49:36Z #11 151.8 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB +2024-05-06T16:49:36Z #11 151.8 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB +2024-05-06T16:49:36Z #11 151.8 + pydantic 2.7.1 pyhd8ed1ab_0 conda-forge 282kB +2024-05-06T16:49:36Z #11 151.8 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB +2024-05-06T16:49:36Z #11 151.8 + geopandas-base 0.14.4 pyha770c72_0 conda-forge 1MB +2024-05-06T16:49:36Z #11 151.8 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB +2024-05-06T16:49:36Z #11 151.8 + properscoring 0.1 py_0 conda-forge 22kB +2024-05-06T16:49:36Z #11 151.8 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB +2024-05-06T16:49:36Z #11 151.8 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB +2024-05-06T16:49:36Z #11 151.8 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB +2024-05-06T16:49:36Z #11 151.8 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB +2024-05-06T16:49:36Z #11 151.8 + bokeh 3.4.1 pyhd8ed1ab_0 conda-forge 5MB +2024-05-06T16:49:36Z #11 151.8 + branca 0.7.2 pyhd8ed1ab_0 conda-forge 29kB +2024-05-06T16:49:36Z #11 151.8 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB +2024-05-06T16:49:36Z #11 151.8 + distributed 2024.5.0 pyhd8ed1ab_0 conda-forge 795kB +2024-05-06T16:49:36Z #11 151.8 + dask-expr 1.1.0 pyhd8ed1ab_0 conda-forge 158kB +2024-05-06T16:49:36Z #11 151.8 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB +2024-05-06T16:49:36Z #11 151.8 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB +2024-05-06T16:49:36Z #11 151.8 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB +2024-05-06T16:49:36Z #11 151.8 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB +2024-05-06T16:49:36Z #11 151.8 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB +2024-05-06T16:49:36Z #11 151.8 + dask 2024.5.0 pyhd8ed1ab_0 conda-forge 8kB +2024-05-06T16:49:36Z #11 151.8 + xesmf 0.8.5 pyhd8ed1ab_0 conda-forge 45kB +2024-05-06T16:49:36Z #11 151.8 + geopandas 0.14.4 pyhd8ed1ab_0 conda-forge 8kB +2024-05-06T16:49:36Z #11 151.8 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB +2024-05-06T16:49:36Z #11 151.8 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB +2024-05-06T16:49:36Z #11 151.8 + rasterio 1.3.10 py311h375a7ea_0 conda-forge 7MB +2024-05-06T16:49:36Z #11 151.8 + statsmodels 0.14.1 py311h1f0f07a_0 conda-forge 12MB +2024-05-06T16:49:36Z #11 151.8 + rioxarray 0.15.5 pyhd8ed1ab_0 conda-forge 51kB +2024-05-06T16:49:36Z #11 151.8 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB +2024-05-06T16:49:36Z #11 151.8 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB +2024-05-06T16:49:36Z #11 151.8 + xclim 0.49.0 pyhd8ed1ab_0 conda-forge 692kB +2024-05-06T16:49:36Z #11 151.8 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB +2024-05-06T16:49:36Z #11 151.8 + ravenpy 0.14.0 pyhd8ed1ab_1 conda-forge 6MB +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 Summary: +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 Install: 299 packages +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 Total download: 485MB +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 ────────────────────────────────────────────────────────────────────────────────────────────── +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:49:36Z #11 151.8 +2024-05-06T16:51:12Z #11 247.7 +2024-05-06T16:51:12Z #11 247.7 Looking for: ['xclim', 'ravenpy', 'python=3.11'] +2024-05-06T16:51:12Z #11 247.7 +2024-05-06T16:51:12Z #11 247.7 +2024-05-06T16:51:12Z #11 247.7 Downloading and Extracting Packages: ...working... done +2024-05-06T16:51:16Z #11 247.7 Preparing transaction: ...working... done +2024-05-06T16:51:30Z #11 252.1 Verifying transaction: ...working... done +2024-05-06T16:52:05Z #11 266.6 Executing transaction: ...working... done +2024-05-06T16:52:05Z #11 300.9 +2024-05-06T16:52:05Z #11 300.9 To activate this environment, use +2024-05-06T16:52:05Z #11 300.9 +2024-05-06T16:52:05Z #11 300.9 $ mamba activate birdy +2024-05-06T16:52:05Z #11 300.9 +2024-05-06T16:52:05Z #11 300.9 To deactivate an active environment, use +2024-05-06T16:52:05Z #11 300.9 +2024-05-06T16:52:05Z #11 300.9 $ mamba deactivate +2024-05-06T16:52:05Z #11 300.9 +2024-05-06T16:52:08Z #11 304.4 Channels: +2024-05-06T16:52:08Z #11 304.4 - conda-forge +2024-05-06T16:52:08Z #11 304.4 - cdat +2024-05-06T16:52:08Z #11 304.4 - bokeh +2024-05-06T16:52:08Z #11 304.4 - pyviz/label/dev +2024-05-06T16:52:08Z #11 304.4 - defaults +2024-05-06T16:52:08Z #11 304.4 Platform: linux-64 +2024-05-06T16:53:11Z #11 304.4 Collecting package metadata (repodata.json): ...working... Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='conda.anaconda.org', port=443): Read timed out. (read timeout=60.0)")': /pyviz/label/dev/noarch/repodata.json.zst +2024-05-06T16:53:11Z #11 367.5 +2024-05-06T16:53:36Z #11 392.7 done +2024-05-06T16:54:39Z #11 392.7 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:39Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:39Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:39Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:39Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY +2024-05-06T17:01:55Z #11 891.1 done +2024-05-06T17:03:38Z #11 994.3 +2024-05-06T17:03:38Z #11 994.3 Downloading and Extracting Packages: ...working... done +2024-05-06T17:03:45Z #11 994.3 Preparing transaction: ...working... done +2024-05-06T17:04:08Z #11 1001.3 Verifying transaction: ...working... done +2024-05-06T17:05:02Z #11 1024.5 Executing transaction: ...working... /opt/conda/envs/birdy/lib/python3.11/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs +2024-05-06T17:05:02Z #11 1078.6 given by the platformdirs library. To remove this warning and +2024-05-06T17:05:02Z #11 1078.6 see the appropriate new directories, set the environment variable +2024-05-06T17:05:02Z #11 1078.6 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. +2024-05-06T17:05:02Z #11 1078.6 The use of platformdirs will be the default in `jupyter_core` v6 +2024-05-06T17:05:02Z #11 1078.6 from . import paths +2024-05-06T17:05:02Z #11 1078.6 Enabling: jupyterlab_git +2024-05-06T17:05:02Z #11 1078.6 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-05-06T17:05:02Z #11 1078.6 - Validating... +2024-05-06T17:05:02Z #11 1078.6 jupyterlab_git OK +2024-05-06T17:05:02Z #11 1078.6 +2024-05-06T17:05:02Z #11 1078.6 done +2024-05-06T17:05:51Z #11 1086.1 Installing pip dependencies: ...working... Ran pip subprocess with arguments: +2024-05-06T17:05:51Z #11 1127.2 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.51lssouf.requirements.txt', '--exists-action=b'] +2024-05-06T17:05:51Z #11 1127.2 Pip subprocess output: +2024-05-06T17:05:51Z #11 1127.2 Collecting xncml (from -r /condaenv.51lssouf.requirements.txt (line 1)) +2024-05-06T17:05:51Z #11 1127.2 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting hsclient (from -r /condaenv.51lssouf.requirements.txt (line 2)) +2024-05-06T17:05:51Z #11 1127.2 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting fstd2nc (from -r /condaenv.51lssouf.requirements.txt (line 3)) +2024-05-06T17:05:51Z #11 1127.2 Downloading fstd2nc-0.20240401.1.tar.gz (168 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 168.0/168.0 kB 8.2 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Installing build dependencies: started +2024-05-06T17:05:51Z #11 1127.2 Installing build dependencies: finished with status 'done' +2024-05-06T17:05:51Z #11 1127.2 Getting requirements to build wheel: started +2024-05-06T17:05:51Z #11 1127.2 Getting requirements to build wheel: finished with status 'done' +2024-05-06T17:05:51Z #11 1127.2 Installing backend dependencies: started +2024-05-06T17:05:51Z #11 1127.2 Installing backend dependencies: finished with status 'done' +2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (pyproject.toml): started +2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (pyproject.toml): finished with status 'done' +2024-05-06T17:05:51Z #11 1127.2 Collecting figanos (from -r /condaenv.51lssouf.requirements.txt (line 4)) +2024-05-06T17:05:51Z #11 1127.2 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting pixiedust (from -r /condaenv.51lssouf.requirements.txt (line 5)) +2024-05-06T17:05:51Z #11 1127.2 Downloading pixiedust-1.1.19.tar.gz (197 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 25.1 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (setup.py): started +2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (setup.py): finished with status 'done' +2024-05-06T17:05:51Z #11 1127.2 Collecting ipython_blocking (from -r /condaenv.51lssouf.requirements.txt (line 6)) +2024-05-06T17:05:51Z #11 1127.2 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting jupyternotify (from -r /condaenv.51lssouf.requirements.txt (line 7)) +2024-05-06T17:05:51Z #11 1127.2 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) +2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (setup.py): started +2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (setup.py): finished with status 'done' +2024-05-06T17:05:51Z #11 1127.2 Collecting jupyterlab-logout (from -r /condaenv.51lssouf.requirements.txt (line 8)) +2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.51lssouf.requirements.txt (line 9)) +2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting pytest-tornasync (from -r /condaenv.51lssouf.requirements.txt (line 10)) +2024-05-06T17:05:51Z #11 1127.2 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting xmltodict (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) +2024-05-06T17:05:51Z #11 1127.2 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting xsdata (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) +2024-05-06T17:05:51Z #11 1127.2 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (2023.8.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (1.6.3) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (1.6.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (2024.5.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (5.9.8) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (69.5.1) +2024-05-06T17:05:51Z #11 1127.2 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) +2024-05-06T17:05:51Z #11 1127.2 Downloading hsmodels-1.0.3-py3-none-any.whl.metadata (716 bytes) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.31.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.0.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fstd2nc->-r /condaenv.51lssouf.requirements.txt (line 3)) (1.24.4) +2024-05-06T17:05:51Z #11 1127.2 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.51lssouf.requirements.txt (line 3)) +2024-05-06T17:05:51Z #11 1127.2 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.23.0) +2024-05-06T17:05:51Z #11 1127.2 Collecting cairosvg (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) +2024-05-06T17:05:51Z #11 1127.2 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.14.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.8.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.1.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (4.2.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (6.0.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.13.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.22.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.47.0) +2024-05-06T17:05:51Z #11 1127.2 Collecting geojson (from pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) +2024-05-06T17:05:51Z #11 1127.2 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting astunparse (from pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) +2024-05-06T17:05:51Z #11 1127.2 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) (3.6) +2024-05-06T17:05:51Z #11 1127.2 Collecting colour (from pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) +2024-05-06T17:05:51Z #11 1127.2 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (8.22.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (8.1.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.7.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (1.0.0) +2024-05-06T17:05:51Z #11 1127.2 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) +2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab-4.2.0-py3-none-any.whl.metadata (16 kB) +2024-05-06T17:05:51Z #11 1127.2 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. +2024-05-06T17:05:51Z #11 1127.2 Collecting jupyterlab-logout (from -r /condaenv.51lssouf.requirements.txt (line 8)) +2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.6.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (3.6.7) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (24.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (6.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (5.7.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.27.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.14.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.2.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.8.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.0.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (6.5.6) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (3.1.3) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest-tornasync->-r /condaenv.51lssouf.requirements.txt (line 10)) (8.2.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.51lssouf.requirements.txt (line 3)) (2024.1) +2024-05-06T17:05:51Z #11 1127.2 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) +2024-05-06T17:05:51Z #11 1127.2 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pydantic==2.7.* in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.7.1) +2024-05-06T17:05:51Z #11 1127.2 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) +2024-05-06T17:05:51Z #11 1127.2 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.7.*->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (0.6.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pydantic-core==2.18.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.7.*->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.18.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.7.*->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (4.11.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.51lssouf.requirements.txt (line 10)) (2.0.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pluggy<2.0,>=1.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.51lssouf.requirements.txt (line 10)) (1.5.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (24.0.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.3.8) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.9.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (8.1.7) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.0.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.0.6) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.59.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.23) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.4.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.13.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.14.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (3.0.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (2024.3.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (1.4.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (0.12.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (7.1.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.9.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2024.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from astunparse->pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) (0.43.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from astunparse->pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) (1.16.0) +2024-05-06T17:05:51Z #11 1127.2 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) +2024-05-06T17:05:51Z #11 1127.2 Downloading cairocffi-1.7.0-py3-none-any.whl.metadata (3.3 kB) +2024-05-06T17:05:51Z #11 1127.2 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) +2024-05-06T17:05:51Z #11 1127.2 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.7.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (9.4.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.3.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.0.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyshp>=2.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.3.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyproj>=3.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.5.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.2.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.12.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (4.51.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.4.5) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.1.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.9.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (5.1.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.19.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.1.7) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (3.0.42) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (2.18.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.6.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (5.14.3) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (4.9.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.2.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (4.0.10) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (3.0.10) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (5.5.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (6.6.3) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (7.16.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (6.29.3) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (7.4.9) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (5.10.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (3.3.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (3.7) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.0.7) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2024.2.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests-oauthlib->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (3.2.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.3) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.34.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2023.8.12) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (23.2.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.1.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.7.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (4.0.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (3.17.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.8.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.1.5) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (1.6.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (24.0.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (4.3.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: argon2-cffi>=21.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (23.1.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.10.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-server-terminals>=0.4.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.5.3) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: overrides>=5.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (7.7.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: prometheus-client>=0.9 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.20.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.8.3) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.18.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: websocket-client>=1.7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.8.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.9.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.8.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.5.9) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.14.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.9.25) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (4.22.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (4.12.3) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (6.1.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (0.3.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (3.0.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (1.5.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (2.19.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.11/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.2.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.2.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.11/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (1.0.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.7.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.11/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.2.13) +2024-05-06T17:05:51Z #11 1127.2 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) +2024-05-06T17:05:51Z #11 1127.2 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.4.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.5.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.16.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.5.1) +2024-05-06T17:05:51Z #11 1127.2 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) +2024-05-06T17:05:51Z #11 1127.2 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (1.8.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.42.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (2.4.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (2.0.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (2.4.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.2.2) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.5.6) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.3.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.11/site-packages (from argon2-cffi>=21.1->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (21.2.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.22) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2023.12.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.35.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.18.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.0.7) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.1.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.1.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (22.1.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.19.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (2.5) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.5.1) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (20.11.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.4) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.3.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.13) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.3.0) +2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.9.0.20240316) +2024-05-06T17:05:51Z #11 1127.2 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 43.5 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 12.9 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 36.2 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 67.0 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Downloading hsmodels-1.0.3-py3-none-any.whl (34 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 6.0 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading xsdata-24.4-py3-none-any.whl (229 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 28.5 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 30.1 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Downloading cairocffi-1.7.0-py3-none-any.whl (75 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.4/75.4 kB 11.4 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) +2024-05-06T17:05:51Z #11 1127.2 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 28.9 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) +2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.7 MB/s eta 0:00:00 +2024-05-06T17:05:51Z #11 1127.2 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify +2024-05-06T17:05:51Z #11 1127.2 Building wheel for fstd2nc (pyproject.toml): started +2024-05-06T17:05:51Z #11 1127.2 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' +2024-05-06T17:05:51Z #11 1127.2 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.1-py3-none-any.whl size=169974 sha256=60eb3e9aa6704c8b20c9842182bcda22f08ff47ceb11aea34a2c6e1edbfd6a63 +2024-05-06T17:05:51Z #11 1127.2 Stored in directory: /root/.cache/pip/wheels/52/b1/d1/19426a76db1cc2cdf24ac5663fd82aad9b4824f44bd48ddd80 +2024-05-06T17:05:51Z #11 1127.2 Building wheel for pixiedust (setup.py): started +2024-05-06T17:05:51Z #11 1127.2 Building wheel for pixiedust (setup.py): finished with status 'done' +2024-05-06T17:05:51Z #11 1127.2 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=7fb5dbd7483fc2af9104522acd74158db7f103cc0887aed57fd543a51e242244 +2024-05-06T17:05:51Z #11 1127.2 Stored in directory: /root/.cache/pip/wheels/95/07/18/a3e64aff394679af4a7ec0192ecae66f2725617c23dc8810fa +2024-05-06T17:05:51Z #11 1127.2 Building wheel for jupyternotify (setup.py): started +2024-05-06T17:05:51Z #11 1127.2 Building wheel for jupyternotify (setup.py): finished with status 'done' +2024-05-06T17:05:51Z #11 1127.2 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=69372593d84aa40731d5b9e7bf3f756dc6121cfbc225b54fdd86c5b5c2c5e7da +2024-05-06T17:05:51Z #11 1127.2 Stored in directory: /root/.cache/pip/wheels/ed/19/e2/59939d0f3bcf11547b07e9af34df315f836561f0c2f59acc6c +2024-05-06T17:05:51Z #11 1127.2 Successfully built fstd2nc pixiedust jupyternotify +2024-05-06T17:05:51Z #11 1127.2 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout +2024-05-06T17:05:51Z #11 1127.2 Successfully installed astunparse-1.6.3 cairocffi-1.7.0 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.1 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.3 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 +2024-05-06T17:05:51Z #11 1127.2 +2024-05-06T17:05:51Z #11 1127.2 done +2024-05-06T17:05:51Z #11 1127.2 # +2024-05-06T17:05:51Z #11 1127.2 # To activate this environment, use +2024-05-06T17:05:51Z #11 1127.2 # +2024-05-06T17:05:51Z #11 1127.2 # $ conda activate birdy +2024-05-06T17:05:51Z #11 1127.2 # +2024-05-06T17:05:51Z #11 1127.2 # To deactivate an active environment, use +2024-05-06T17:05:51Z #11 1127.2 # +2024-05-06T17:05:51Z #11 1127.2 # $ conda deactivate +2024-05-06T17:05:51Z #11 1127.2 +2024-05-06T17:06:03Z #11 1139.5 Will remove 774 (1.24 GB) tarball(s). +2024-05-06T17:06:03Z #11 1139.5 Will remove 1 index cache(s). +2024-05-06T17:06:03Z #11 1139.5 Will remove 148 (1.36 GB) package(s). +2024-05-06T17:06:03Z #11 1139.5 There are no tempfile(s) to remove. +2024-05-06T17:06:03Z #11 1139.5 There are no logfile(s) to remove. +2024-05-06T17:06:04Z #11 DONE 1140.3s +2024-05-06T17:06:04Z +2024-05-06T17:06:04Z #12 [ 7/10] RUN python -m ipykernel install --name birdy +2024-05-06T17:06:05Z #12 1.168 0.00s - Debugger warning: It seems that frozen modules are being used, which may +2024-05-06T17:06:05Z #12 1.168 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +2024-05-06T17:06:05Z #12 1.168 0.00s - to python to disable frozen modules. +2024-05-06T17:06:05Z #12 1.168 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +2024-05-06T17:06:05Z #12 1.236 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy +2024-05-06T17:06:05Z #12 DONE 1.4s +2024-05-06T17:06:05Z +2024-05-06T17:06:05Z #13 [ 8/10] RUN jupyter lab build +2024-05-06T17:06:08Z #13 1.964 [LabBuildApp] JupyterLab 3.6.7 +2024-05-06T17:06:08Z #13 1.965 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab +2024-05-06T17:06:08Z #13 2.624 [LabBuildApp] Building jupyterlab assets (production, minimized) +2024-05-06T17:06:08Z #13 2.643 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. +2024-05-06T17:06:08Z #13 2.643 +2024-05-06T17:08:25Z #13 2.647 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ +2024-05-06T17:08:25Z #13 DONE 139.2s +2024-05-06T17:08:25Z +2024-05-06T17:08:25Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list +2024-05-06T17:08:25Z #14 0.643 Enabling: voila +2024-05-06T17:08:25Z #14 0.643 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-05-06T17:08:25Z #14 0.645 - Validating... +2024-05-06T17:08:26Z #14 1.309 voila 0.5.6 OK +2024-05-06T17:08:26Z #14 1.686 Enabling: panel.io.jupyter_server_extension +2024-05-06T17:08:26Z #14 1.686 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-05-06T17:08:26Z #14 1.688 - Validating... +2024-05-06T17:08:28Z #14 3.343 panel.io.jupyter_server_extension OK +2024-05-06T17:08:28Z #14 3.834 - Validating... +2024-05-06T17:08:29Z #14 4.664 dask_labextension 6.2.0 OK +2024-05-06T17:08:29Z #14 4.664 - Validating... +2024-05-06T17:08:29Z #14 4.667 jupyter_archive 3.3.4 OK +2024-05-06T17:08:29Z #14 4.667 - Validating... +2024-05-06T17:08:29Z #14 4.667 jupyter_server_proxy 4.1.1-0.dev OK +2024-05-06T17:08:29Z #14 4.667 - Validating... +2024-05-06T17:08:29Z #14 4.794 jupyter_resource_usage 0.7.1 OK +2024-05-06T17:08:29Z #14 4.794 - Validating... +2024-05-06T17:08:29Z #14 4.883  X is jupyter_server_ydoc importable? +2024-05-06T17:08:30Z #14 4.884 - Validating... +2024-05-06T17:08:30Z #14 4.952 jupyterlab 3.6.7 OK +2024-05-06T17:08:30Z #14 4.953 - Validating... +2024-05-06T17:08:30Z #14 5.126 jupyterlab_jupytext OK +2024-05-06T17:08:30Z #14 5.126 - Validating... +2024-05-06T17:08:30Z #14 5.130 mamba_gator 5.2.1 OK +2024-05-06T17:08:30Z #14 5.130 - Validating... +2024-05-06T17:08:30Z #14 5.146 nbdime 4.0.1 OK +2024-05-06T17:08:30Z #14 5.146 - Validating... +2024-05-06T17:08:31Z #14 6.145 panel.io.jupyter_server_extension OK +2024-05-06T17:08:31Z #14 6.145 - Validating... +2024-05-06T17:08:31Z #14 6.211 nbresuse OK +2024-05-06T17:08:31Z #14 6.211 - Validating... +2024-05-06T17:08:31Z #14 6.378 voila.server_extension OK +2024-05-06T17:08:31Z #14 6.378 - Validating... +2024-05-06T17:08:31Z #14 6.380 jupyterlab_git OK +2024-05-06T17:08:31Z #14 6.380 - Validating... +2024-05-06T17:08:31Z #14 6.380 voila 0.5.6 OK +2024-05-06T17:08:31Z #14 6.381 config dir: /opt/conda/envs/birdy/etc/jupyter +2024-05-06T17:08:31Z #14 6.381 dask_labextension  enabled  +2024-05-06T17:08:31Z #14 6.381 jupyter_archive  enabled  +2024-05-06T17:08:31Z #14 6.381 jupyter_server_proxy  enabled  +2024-05-06T17:08:31Z #14 6.381 jupyter_resource_usage  enabled  +2024-05-06T17:08:31Z #14 6.381 jupyter_server_ydoc  enabled  +2024-05-06T17:08:31Z #14 6.381 jupyterlab  enabled  +2024-05-06T17:08:31Z #14 6.381 jupyterlab_jupytext  enabled  +2024-05-06T17:08:31Z #14 6.381 mamba_gator  enabled  +2024-05-06T17:08:31Z #14 6.381 nbdime  enabled  +2024-05-06T17:08:31Z #14 6.381 panel.io.jupyter_server_extension  enabled  +2024-05-06T17:08:31Z #14 6.381 nbresuse  enabled  +2024-05-06T17:08:31Z #14 6.381 voila.server_extension  enabled  +2024-05-06T17:08:31Z #14 6.381 jupyterlab_git  enabled  +2024-05-06T17:08:31Z #14 6.381 voila  enabled  +2024-05-06T17:08:32Z #14 DONE 6.8s +2024-05-06T17:08:32Z +2024-05-06T17:08:32Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz +2024-05-06T17:08:32Z #15 0.455 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh +2024-05-06T17:08:32Z #15 0.481 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.110.133, 185.199.108.133, ... +2024-05-06T17:08:32Z #15 0.484 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-05-06T17:08:32Z #15 0.491 HTTP request sent, awaiting response... 200 OK +2024-05-06T17:08:32Z #15 0.591 Length: 9769 (9.5K) [text/plain] +2024-05-06T17:08:32Z #15 0.591 Saving to: ‘/usr/local/bin/start.sh’ +2024-05-06T17:08:32Z #15 0.595 +2024-05-06T17:08:32Z #15 0.595 0K ......... 100% 4.91M=0.002s +2024-05-06T17:08:32Z #15 0.595 +2024-05-06T17:08:32Z #15 0.595 2024-05-06 17:08:32 (4.91 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] +2024-05-06T17:08:32Z #15 0.595 +2024-05-06T17:08:32Z #15 0.597 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh +2024-05-06T17:08:32Z #15 0.621 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.108.133, 185.199.110.133, ... +2024-05-06T17:08:32Z #15 0.622 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. +2024-05-06T17:08:32Z #15 0.628 HTTP request sent, awaiting response... 200 OK +2024-05-06T17:08:32Z #15 0.704 Length: 359 [text/plain] +2024-05-06T17:08:32Z #15 0.704 Saving to: ‘/usr/local/bin/start-singleuser.sh’ +2024-05-06T17:08:32Z #15 0.704 +2024-05-06T17:08:32Z #15 0.704 0K 100% 18.6M=0s +2024-05-06T17:08:32Z #15 0.705 +2024-05-06T17:08:32Z #15 0.705 2024-05-06 17:08:32 (18.6 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] +2024-05-06T17:08:32Z #15 0.705 +2024-05-06T17:08:32Z #15 0.709 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh +2024-05-06T17:08:32Z #15 0.733 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.111.133, 185.199.108.133, ... +2024-05-06T17:08:32Z #15 0.734 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. +2024-05-06T17:08:32Z #15 0.749 HTTP request sent, awaiting response... 200 OK +2024-05-06T17:08:32Z #15 0.842 Length: 852 [text/plain] +2024-05-06T17:08:32Z #15 0.842 Saving to: ‘/usr/local/bin/start-notebook.sh’ +2024-05-06T17:08:32Z #15 0.842 +2024-05-06T17:08:32Z #15 0.842 0K 100% 40.0M=0s +2024-05-06T17:08:32Z #15 0.842 +2024-05-06T17:08:32Z #15 0.842 2024-05-06 17:08:32 (40.0 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] +2024-05-06T17:08:32Z #15 0.842 +2024-05-06T17:08:32Z #15 0.846 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions +2024-05-06T17:08:32Z #15 0.871 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.111.133, ... +2024-05-06T17:08:32Z #15 0.872 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. +2024-05-06T17:08:32Z #15 0.879 HTTP request sent, awaiting response... 200 OK +2024-05-06T17:08:32Z #15 0.963 Length: 1034 (1.0K) [text/plain] +2024-05-06T17:08:33Z #15 0.963 Saving to: ‘/usr/local/bin/fix-permissions’ +2024-05-06T17:08:33Z #15 0.963 +2024-05-06T17:08:33Z #15 0.963 0K . 100% 15.0M=0s +2024-05-06T17:08:33Z #15 0.965 +2024-05-06T17:08:33Z #15 0.965 2024-05-06 17:08:32 (15.0 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] +2024-05-06T17:08:33Z #15 0.965 +2024-05-06T17:08:33Z #15 0.970 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py +2024-05-06T17:08:33Z #15 0.994 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.110.133, 185.199.109.133, ... +2024-05-06T17:08:33Z #15 0.995 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. +2024-05-06T17:08:33Z #15 1.002 HTTP request sent, awaiting response... 200 OK +2024-05-06T17:08:33Z #15 1.133 Length: 1836 (1.8K) [text/plain] +2024-05-06T17:08:33Z #15 1.133 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ +2024-05-06T17:08:33Z #15 1.133 +2024-05-06T17:08:33Z #15 1.133 0K . 100% 2.71M=0.001s +2024-05-06T17:08:33Z #15 1.136 +2024-05-06T17:08:33Z #15 1.136 2024-05-06 17:08:33 (2.71 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] +2024-05-06T17:08:33Z #15 1.136 +2024-05-06T17:08:33Z #15 1.308 --2024-05-06 17:08:33-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz +2024-05-06T17:08:33Z #15 1.333 Resolving downloads.globus.org (downloads.globus.org)... 18.67.65.101, 18.67.65.35, 18.67.65.105, ... +2024-05-06T17:08:33Z #15 1.342 Connecting to downloads.globus.org (downloads.globus.org)|18.67.65.101|:443... connected. +2024-05-06T17:08:33Z #15 1.347 HTTP request sent, awaiting response... 200 OK +2024-05-06T17:08:33Z #15 1.508 Length: 130857988 (125M) [application/x-tar] +2024-05-06T17:08:33Z #15 1.508 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ +2024-05-06T17:08:33Z #15 1.509 +2024-05-06T17:08:33Z #15 1.509 0K .......... .......... .......... .......... .......... 0% 22.7M 5s +2024-05-06T17:08:33Z #15 1.511 50K .......... .......... .......... .......... .......... 0% 16.9M 6s +2024-05-06T17:08:33Z #15 1.514 100K .......... .......... .......... .......... .......... 0% 19.2M 6s +2024-05-06T17:08:33Z #15 1.517 150K .......... .......... .......... .......... .......... 0% 21.5M 6s +2024-05-06T17:08:33Z #15 1.518 200K .......... .......... .......... .......... .......... 0% 16.4M 7s +2024-05-06T17:08:33Z #15 1.522 250K .......... .......... .......... .......... .......... 0% 43.1M 6s +2024-05-06T17:08:33Z #15 1.523 300K .......... .......... .......... .......... .......... 0% 22.7M 6s +2024-05-06T17:08:33Z #15 1.525 350K .......... .......... .......... .......... .......... 0% 37.2M 6s +2024-05-06T17:08:33Z #15 1.526 400K .......... .......... .......... .......... .......... 0% 125M 5s +2024-05-06T17:08:33Z #15 1.526 450K .......... .......... .......... .......... .......... 0% 130M 5s +2024-05-06T17:08:33Z #15 1.527 500K .......... .......... .......... .......... .......... 0% 134M 4s +2024-05-06T17:08:33Z #15 1.527 550K .......... .......... .......... .......... .......... 0% 123M 4s +2024-05-06T17:08:33Z #15 1.527 600K .......... .......... .......... .......... .......... 0% 114M 4s +2024-05-06T17:08:33Z #15 1.528 650K .......... .......... .......... .......... .......... 0% 110M 4s +2024-05-06T17:08:33Z #15 1.528 700K .......... .......... .......... .......... .......... 0% 144M 3s +2024-05-06T17:08:33Z #15 1.529 750K .......... .......... .......... .......... .......... 0% 112M 3s +2024-05-06T17:08:33Z #15 1.529 800K .......... .......... .......... .......... .......... 0% 136M 3s +2024-05-06T17:08:33Z #15 1.529 850K .......... .......... .......... .......... .......... 0% 112M 3s +2024-05-06T17:08:33Z #15 1.530 900K .......... .......... .......... .......... .......... 0% 120M 3s +2024-05-06T17:08:33Z #15 1.530 950K .......... .......... .......... .......... .......... 0% 108M 3s +2024-05-06T17:08:33Z #15 1.531 1000K .......... .......... .......... .......... .......... 0% 35.0M 3s +2024-05-06T17:08:33Z #15 1.532 1050K .......... .......... .......... .......... .......... 0% 52.0M 3s +2024-05-06T17:08:33Z #15 1.533 1100K .......... .......... .......... .......... .......... 0% 12.5M 3s +2024-05-06T17:08:33Z #15 1.537 1150K .......... .......... .......... .......... .......... 0% 20.2M 3s +2024-05-06T17:08:33Z #15 1.539 1200K .......... .......... .......... .......... .......... 0% 49.8M 3s +2024-05-06T17:08:33Z #15 1.540 1250K .......... .......... .......... .......... .......... 1% 45.7M 3s +2024-05-06T17:08:33Z #15 1.541 1300K .......... .......... .......... .......... .......... 1% 54.8M 3s +2024-05-06T17:08:33Z #15 1.542 1350K .......... .......... .......... .......... .......... 1% 90.5M 3s +2024-05-06T17:08:33Z #15 1.543 1400K .......... .......... .......... .......... .......... 1% 49.1M 3s +2024-05-06T17:08:33Z #15 1.544 1450K .......... .......... .......... .......... .......... 1% 51.1M 3s +2024-05-06T17:08:33Z #15 1.545 1500K .......... .......... .......... .......... .......... 1% 98.3M 3s +2024-05-06T17:08:33Z #15 1.545 1550K .......... .......... .......... .......... .......... 1% 63.7M 3s +2024-05-06T17:08:33Z #15 1.546 1600K .......... .......... .......... .......... .......... 1% 115M 3s +2024-05-06T17:08:33Z #15 1.546 1650K .......... .......... .......... .......... .......... 1% 117M 3s +2024-05-06T17:08:33Z #15 1.547 1700K .......... .......... .......... .......... .......... 1% 64.1M 3s +2024-05-06T17:08:33Z #15 1.548 1750K .......... .......... .......... .......... .......... 1% 84.7M 3s +2024-05-06T17:08:33Z #15 1.548 1800K .......... .......... .......... .......... .......... 1% 39.6M 3s +2024-05-06T17:08:33Z #15 1.549 1850K .......... .......... .......... .......... .......... 1% 60.2M 3s +2024-05-06T17:08:33Z #15 1.550 1900K .......... .......... .......... .......... .......... 1% 52.1M 3s +2024-05-06T17:08:33Z #15 1.551 1950K .......... .......... .......... .......... .......... 1% 126M 3s +2024-05-06T17:08:33Z #15 1.551 2000K .......... .......... .......... .......... .......... 1% 73.7M 3s +2024-05-06T17:08:33Z #15 1.552 2050K .......... .......... .......... .......... .......... 1% 131M 3s +2024-05-06T17:08:33Z #15 1.553 2100K .......... .......... .......... .......... .......... 1% 85.2M 3s +2024-05-06T17:08:33Z #15 1.553 2150K .......... .......... .......... .......... .......... 1% 141M 3s +2024-05-06T17:08:33Z #15 1.553 2200K .......... .......... .......... .......... .......... 1% 119M 3s +2024-05-06T17:08:33Z #15 1.554 2250K .......... .......... .......... .......... .......... 1% 142M 3s +2024-05-06T17:08:33Z #15 1.554 2300K .......... .......... .......... .......... .......... 1% 135M 2s +2024-05-06T17:08:33Z #15 1.555 2350K .......... .......... .......... .......... .......... 1% 60.4M 2s +2024-05-06T17:08:33Z #15 1.556 2400K .......... .......... .......... .......... .......... 1% 42.8M 2s +2024-05-06T17:08:33Z #15 1.556 2450K .......... .......... .......... .......... .......... 1% 138M 2s +2024-05-06T17:08:33Z #15 1.557 2500K .......... .......... .......... .......... .......... 1% 148M 2s +2024-05-06T17:08:33Z #15 1.557 2550K .......... .......... .......... .......... .......... 2% 106M 2s +2024-05-06T17:08:33Z #15 1.558 2600K .......... .......... .......... .......... .......... 2% 156M 2s +2024-05-06T17:08:33Z #15 1.558 2650K .......... .......... .......... .......... .......... 2% 135M 2s +2024-05-06T17:08:33Z #15 1.558 2700K .......... .......... .......... .......... .......... 2% 145M 2s +2024-05-06T17:08:33Z #15 1.559 2750K .......... .......... .......... .......... .......... 2% 83.0M 2s +2024-05-06T17:08:33Z #15 1.559 2800K .......... .......... .......... .......... .......... 2% 40.0M 2s +2024-05-06T17:08:33Z #15 1.561 2850K .......... .......... .......... .......... .......... 2% 52.0M 2s +2024-05-06T17:08:33Z #15 1.561 2900K .......... .......... .......... .......... .......... 2% 68.9M 2s +2024-05-06T17:08:33Z #15 1.562 2950K .......... .......... .......... .......... .......... 2% 35.5M 2s +2024-05-06T17:08:33Z #15 1.564 3000K .......... .......... .......... .......... .......... 2% 70.3M 2s +2024-05-06T17:08:33Z #15 1.564 3050K .......... .......... .......... .......... .......... 2% 40.9M 2s +2024-05-06T17:08:33Z #15 1.566 3100K .......... .......... .......... .......... .......... 2% 76.8M 2s +2024-05-06T17:08:33Z #15 1.566 3150K .......... .......... .......... .......... .......... 2% 124M 2s +2024-05-06T17:08:33Z #15 1.566 3200K .......... .......... .......... .......... .......... 2% 124M 2s +2024-05-06T17:08:33Z #15 1.567 3250K .......... .......... .......... .......... .......... 2% 132M 2s +2024-05-06T17:08:33Z #15 1.567 3300K .......... .......... .......... .......... .......... 2% 146M 2s +2024-05-06T17:08:33Z #15 1.568 3350K .......... .......... .......... .......... .......... 2% 95.8M 2s +2024-05-06T17:08:33Z #15 1.568 3400K .......... .......... .......... .......... .......... 2% 118M 2s +2024-05-06T17:08:33Z #15 1.569 3450K .......... .......... .......... .......... .......... 2% 132M 2s +2024-05-06T17:08:33Z #15 1.569 3500K .......... .......... .......... .......... .......... 2% 127M 2s +2024-05-06T17:08:33Z #15 1.569 3550K .......... .......... .......... .......... .......... 2% 99.9M 2s +2024-05-06T17:08:33Z #15 1.570 3600K .......... .......... .......... .......... .......... 2% 118M 2s +2024-05-06T17:08:33Z #15 1.570 3650K .......... .......... .......... .......... .......... 2% 136M 2s +2024-05-06T17:08:33Z #15 1.570 3700K .......... .......... .......... .......... .......... 2% 123M 2s +2024-05-06T17:08:33Z #15 1.571 3750K .......... .......... .......... .......... .......... 2% 26.1M 2s +2024-05-06T17:08:33Z #15 1.573 3800K .......... .......... .......... .......... .......... 3% 139M 2s +2024-05-06T17:08:33Z #15 1.573 3850K .......... .......... .......... .......... .......... 3% 153M 2s +2024-05-06T17:08:33Z #15 1.573 3900K .......... .......... .......... .......... .......... 3% 138M 2s +2024-05-06T17:08:33Z #15 1.574 3950K .......... .......... .......... .......... .......... 3% 109M 2s +2024-05-06T17:08:33Z #15 1.574 4000K .......... .......... .......... .......... .......... 3% 137M 2s +2024-05-06T17:08:33Z #15 1.575 4050K .......... .......... .......... .......... .......... 3% 146M 2s +2024-05-06T17:08:33Z #15 1.575 4100K .......... .......... .......... .......... .......... 3% 51.0M 2s +2024-05-06T17:08:33Z #15 1.576 4150K .......... .......... .......... .......... .......... 3% 42.3M 2s +2024-05-06T17:08:33Z #15 1.577 4200K .......... .......... .......... .......... .......... 3% 53.8M 2s +2024-05-06T17:08:33Z #15 1.578 4250K .......... .......... .......... .......... .......... 3% 50.9M 2s +2024-05-06T17:08:33Z #15 1.579 4300K .......... .......... .......... .......... .......... 3% 49.7M 2s +2024-05-06T17:08:33Z #15 1.580 4350K .......... .......... .......... .......... .......... 3% 46.1M 2s +2024-05-06T17:08:33Z #15 1.581 4400K .......... .......... .......... .......... .......... 3% 52.7M 2s +2024-05-06T17:08:33Z #15 1.582 4450K .......... .......... .......... .......... .......... 3% 105M 2s +2024-05-06T17:08:33Z #15 1.582 4500K .......... .......... .......... .......... .......... 3% 129M 2s +2024-05-06T17:08:33Z #15 1.583 4550K .......... .......... .......... .......... .......... 3% 64.7M 2s +2024-05-06T17:08:33Z #15 1.584 4600K .......... .......... .......... .......... .......... 3% 50.3M 2s +2024-05-06T17:08:33Z #15 1.585 4650K .......... .......... .......... .......... .......... 3% 51.5M 2s +2024-05-06T17:08:33Z #15 1.586 4700K .......... .......... .......... .......... .......... 3% 82.9M 2s +2024-05-06T17:08:33Z #15 1.586 4750K .......... .......... .......... .......... .......... 3% 99.4M 2s +2024-05-06T17:08:33Z #15 1.587 4800K .......... .......... .......... .......... .......... 3% 87.0M 2s +2024-05-06T17:08:33Z #15 1.587 4850K .......... .......... .......... .......... .......... 3% 146M 2s +2024-05-06T17:08:33Z #15 1.588 4900K .......... .......... .......... .......... .......... 3% 115M 2s +2024-05-06T17:08:33Z #15 1.588 4950K .......... .......... .......... .......... .......... 3% 117M 2s +2024-05-06T17:08:33Z #15 1.588 5000K .......... .......... .......... .......... .......... 3% 124M 2s +2024-05-06T17:08:33Z #15 1.589 5050K .......... .......... .......... .......... .......... 3% 125M 2s +2024-05-06T17:08:33Z #15 1.589 5100K .......... .......... .......... .......... .......... 4% 135M 2s +2024-05-06T17:08:33Z #15 1.589 5150K .......... .......... .......... .......... .......... 4% 137M 2s +2024-05-06T17:08:33Z #15 1.590 5200K .......... .......... .......... .......... .......... 4% 135M 2s +2024-05-06T17:08:33Z #15 1.590 5250K .......... .......... .......... .......... .......... 4% 157M 2s +2024-05-06T17:08:33Z #15 1.591 5300K .......... .......... .......... .......... .......... 4% 104M 2s +2024-05-06T17:08:33Z #15 1.591 5350K .......... .......... .......... .......... .......... 4% 124M 2s +2024-05-06T17:08:33Z #15 1.592 5400K .......... .......... .......... .......... .......... 4% 129M 2s +2024-05-06T17:08:33Z #15 1.592 5450K .......... .......... .......... .......... .......... 4% 111M 2s +2024-05-06T17:08:33Z #15 1.592 5500K .......... .......... .......... .......... .......... 4% 132M 2s +2024-05-06T17:08:33Z #15 1.592 5550K .......... .......... .......... .......... .......... 4% 123M 2s +2024-05-06T17:08:33Z #15 1.593 5600K .......... .......... .......... .......... .......... 4% 140M 2s +2024-05-06T17:08:33Z #15 1.593 5650K .......... .......... .......... .......... .......... 4% 131M 2s +2024-05-06T17:08:33Z #15 1.594 5700K .......... .......... .......... .......... .......... 4% 160M 2s +2024-05-06T17:08:33Z #15 1.594 5750K .......... .......... .......... .......... .......... 4% 127M 2s +2024-05-06T17:08:33Z #15 1.595 5800K .......... .......... .......... .......... .......... 4% 98.2M 2s +2024-05-06T17:08:33Z #15 1.595 5850K .......... .......... .......... .......... .......... 4% 114M 2s +2024-05-06T17:08:33Z #15 1.595 5900K .......... .......... .......... .......... .......... 4% 48.7M 2s +2024-05-06T17:08:33Z #15 1.599 5950K .......... .......... .......... .......... .......... 4% 105M 2s +2024-05-06T17:08:33Z #15 1.599 6000K .......... .......... .......... .......... .......... 4% 128M 2s +2024-05-06T17:08:33Z #15 1.599 6050K .......... .......... .......... .......... .......... 4% 121M 2s +2024-05-06T17:08:33Z #15 1.599 6100K .......... .......... .......... .......... .......... 4% 136M 2s +2024-05-06T17:08:33Z #15 1.599 6150K .......... .......... .......... .......... .......... 4% 98.5M 2s +2024-05-06T17:08:33Z #15 1.599 6200K .......... .......... .......... .......... .......... 4% 134M 2s +2024-05-06T17:08:33Z #15 1.599 6250K .......... .......... .......... .......... .......... 4% 83.1M 2s +2024-05-06T17:08:33Z #15 1.603 6300K .......... .......... .......... .......... .......... 4% 111M 2s +2024-05-06T17:08:33Z #15 1.603 6350K .......... .......... .......... .......... .......... 5% 115M 2s +2024-05-06T17:08:33Z #15 1.603 6400K .......... .......... .......... .......... .......... 5% 109M 2s +2024-05-06T17:08:33Z #15 1.603 6450K .......... .......... .......... .......... .......... 5% 118M 2s +2024-05-06T17:08:33Z #15 1.603 6500K .......... .......... .......... .......... .......... 5% 114M 2s +2024-05-06T17:08:33Z #15 1.603 6550K .......... .......... .......... .......... .......... 5% 110M 2s +2024-05-06T17:08:33Z #15 1.603 6600K .......... .......... .......... .......... .......... 5% 99.4M 2s +2024-05-06T17:08:33Z #15 1.603 6650K .......... .......... .......... .......... .......... 5% 128M 2s +2024-05-06T17:08:33Z #15 1.603 6700K .......... .......... .......... .......... .......... 5% 38.2M 2s +2024-05-06T17:08:33Z #15 1.607 6750K .......... .......... .......... .......... .......... 5% 112M 2s +2024-05-06T17:08:33Z #15 1.607 6800K .......... .......... .......... .......... .......... 5% 138M 2s +2024-05-06T17:08:33Z #15 1.607 6850K .......... .......... .......... .......... .......... 5% 111M 2s +2024-05-06T17:08:33Z #15 1.607 6900K .......... .......... .......... .......... .......... 5% 124M 2s +2024-05-06T17:08:33Z #15 1.607 6950K .......... .......... .......... .......... .......... 5% 105M 2s +2024-05-06T17:08:33Z #15 1.607 7000K .......... .......... .......... .......... .......... 5% 113M 2s +2024-05-06T17:08:33Z #15 1.607 7050K .......... .......... .......... .......... .......... 5% 131M 2s +2024-05-06T17:08:33Z #15 1.607 7100K .......... .......... .......... .......... .......... 5% 52.6M 2s +2024-05-06T17:08:33Z #15 1.608 7150K .......... .......... .......... .......... .......... 5% 46.1M 2s +2024-05-06T17:08:33Z #15 1.609 7200K .......... .......... .......... .......... .......... 5% 50.5M 2s +2024-05-06T17:08:33Z #15 1.610 7250K .......... .......... .......... .......... .......... 5% 99.7M 2s +2024-05-06T17:08:33Z #15 1.615 7300K .......... .......... .......... .......... .......... 5% 129M 2s +2024-05-06T17:08:33Z #15 1.615 7350K .......... .......... .......... .......... .......... 5% 89.4M 2s +2024-05-06T17:08:33Z #15 1.615 7400K .......... .......... .......... .......... .......... 5% 106M 2s +2024-05-06T17:08:33Z #15 1.615 7450K .......... .......... .......... .......... .......... 5% 131M 2s +2024-05-06T17:08:33Z #15 1.615 7500K .......... .......... .......... .......... .......... 5% 127M 2s +2024-05-06T17:08:33Z #15 1.615 7550K .......... .......... .......... .......... .......... 5% 113M 2s +2024-05-06T17:08:33Z #15 1.615 7600K .......... .......... .......... .......... .......... 5% 125M 2s +2024-05-06T17:08:33Z #15 1.615 7650K .......... .......... .......... .......... .......... 6% 122M 2s +2024-05-06T17:08:33Z #15 1.615 7700K .......... .......... .......... .......... .......... 6% 120M 2s +2024-05-06T17:08:33Z #15 1.615 7750K .......... .......... .......... .......... .......... 6% 99.6M 2s +2024-05-06T17:08:33Z #15 1.615 7800K .......... .......... .......... .......... .......... 6% 107M 2s +2024-05-06T17:08:33Z #15 1.615 7850K .......... .......... .......... .......... .......... 6% 47.4M 2s +2024-05-06T17:08:33Z #15 1.617 7900K .......... .......... .......... .......... .......... 6% 6.32M 2s +2024-05-06T17:08:33Z #15 1.636 7950K .......... .......... .......... .......... .......... 6% 134M 2s +2024-05-06T17:08:33Z #15 1.636 8000K .......... .......... .......... .......... .......... 6% 121M 2s +2024-05-06T17:08:33Z #15 1.636 8050K .......... .......... .......... .......... .......... 6% 116M 2s +2024-05-06T17:08:33Z #15 1.636 8100K .......... .......... .......... .......... .......... 6% 134M 2s +2024-05-06T17:08:33Z #15 1.636 8150K .......... .......... .......... .......... .......... 6% 102M 2s +2024-05-06T17:08:33Z #15 1.636 8200K .......... .......... .......... .......... .......... 6% 123M 2s +2024-05-06T17:08:33Z #15 1.636 8250K .......... .......... .......... .......... .......... 6% 126M 2s +2024-05-06T17:08:33Z #15 1.636 8300K .......... .......... .......... .......... .......... 6% 108M 2s +2024-05-06T17:08:33Z #15 1.636 8350K .......... .......... .......... .......... .......... 6% 48.3M 2s +2024-05-06T17:08:33Z #15 1.636 8400K .......... .......... .......... .......... .......... 6% 118M 2s +2024-05-06T17:08:33Z #15 1.636 8450K .......... .......... .......... .......... .......... 6% 169M 2s +2024-05-06T17:08:33Z #15 1.636 8500K .......... .......... .......... .......... .......... 6% 170M 2s +2024-05-06T17:08:33Z #15 1.636 8550K .......... .......... .......... .......... .......... 6% 143M 2s +2024-05-06T17:08:33Z #15 1.636 8600K .......... .......... .......... .......... .......... 6% 151M 2s +2024-05-06T17:08:33Z #15 1.636 8650K .......... .......... .......... .......... .......... 6% 171M 2s +2024-05-06T17:08:33Z #15 1.636 8700K .......... .......... .......... .......... .......... 6% 184M 2s +2024-05-06T17:08:33Z #15 1.636 8750K .......... .......... .......... .......... .......... 6% 150M 2s +2024-05-06T17:08:33Z #15 1.636 8800K .......... .......... .......... .......... .......... 6% 170M 2s +2024-05-06T17:08:33Z #15 1.636 8850K .......... .......... .......... .......... .......... 6% 63.5M 2s +2024-05-06T17:08:33Z #15 1.636 8900K .......... .......... .......... .......... .......... 7% 156M 2s +2024-05-06T17:08:33Z #15 1.636 8950K .......... .......... .......... .......... .......... 7% 115M 2s +2024-05-06T17:08:33Z #15 1.636 9000K .......... .......... .......... .......... .......... 7% 159M 2s +2024-05-06T17:08:33Z #15 1.636 9050K .......... .......... .......... .......... .......... 7% 157M 2s +2024-05-06T17:08:33Z #15 1.636 9100K .......... .......... .......... .......... .......... 7% 143M 2s +2024-05-06T17:08:33Z #15 1.636 9150K .......... .......... .......... .......... .......... 7% 143M 2s +2024-05-06T17:08:33Z #15 1.636 9200K .......... .......... .......... .......... .......... 7% 161M 2s +2024-05-06T17:08:33Z #15 1.636 9250K .......... .......... .......... .......... .......... 7% 123M 2s +2024-05-06T17:08:33Z #15 1.636 9300K .......... .......... .......... .......... .......... 7% 140M 2s +2024-05-06T17:08:33Z #15 1.636 9350K .......... .......... .......... .......... .......... 7% 115M 2s +2024-05-06T17:08:33Z #15 1.637 9400K .......... .......... .......... .......... .......... 7% 131M 2s +2024-05-06T17:08:33Z #15 1.637 9450K .......... .......... .......... .......... .......... 7% 144M 2s +2024-05-06T17:08:33Z #15 1.637 9500K .......... .......... .......... .......... .......... 7% 128M 2s +2024-05-06T17:08:33Z #15 1.637 9550K .......... .......... .......... .......... .......... 7% 97.4M 2s +2024-05-06T17:08:33Z #15 1.639 9600K .......... .......... .......... .......... .......... 7% 113M 2s +2024-05-06T17:08:33Z #15 1.639 9650K .......... .......... .......... .......... .......... 7% 122M 2s +2024-05-06T17:08:33Z #15 1.639 9700K .......... .......... .......... .......... .......... 7% 121M 2s +2024-05-06T17:08:33Z #15 1.639 9750K .......... .......... .......... .......... .......... 7% 90.6M 2s +2024-05-06T17:08:33Z #15 1.639 9800K .......... .......... .......... .......... .......... 7% 110M 2s +2024-05-06T17:08:33Z #15 1.643 9850K .......... .......... .......... .......... .......... 7% 88.4M 2s +2024-05-06T17:08:33Z #15 1.643 9900K .......... .......... .......... .......... .......... 7% 127M 2s +2024-05-06T17:08:33Z #15 1.643 9950K .......... .......... .......... .......... .......... 7% 102M 2s +2024-05-06T17:08:33Z #15 1.643 10000K .......... .......... .......... .......... .......... 7% 160M 2s +2024-05-06T17:08:33Z #15 1.643 10050K .......... .......... .......... .......... .......... 7% 114M 2s +2024-05-06T17:08:33Z #15 1.643 10100K .......... .......... .......... .......... .......... 7% 128M 2s +2024-05-06T17:08:33Z #15 1.643 10150K .......... .......... .......... .......... .......... 7% 99.8M 2s +2024-05-06T17:08:33Z #15 1.643 10200K .......... .......... .......... .......... .......... 8% 114M 2s +2024-05-06T17:08:33Z #15 1.643 10250K .......... .......... .......... .......... .......... 8% 130M 2s +2024-05-06T17:08:33Z #15 1.643 10300K .......... .......... .......... .......... .......... 8% 20.8M 2s +2024-05-06T17:08:33Z #15 1.647 10350K .......... .......... .......... .......... .......... 8% 111M 2s +2024-05-06T17:08:33Z #15 1.647 10400K .......... .......... .......... .......... .......... 8% 110M 2s +2024-05-06T17:08:33Z #15 1.647 10450K .......... .......... .......... .......... .......... 8% 123M 2s +2024-05-06T17:08:33Z #15 1.647 10500K .......... .......... .......... .......... .......... 8% 108M 2s +2024-05-06T17:08:33Z #15 1.647 10550K .......... .......... .......... .......... .......... 8% 19.1M 2s +2024-05-06T17:08:33Z #15 1.651 10600K .......... .......... .......... .......... .......... 8% 89.4M 2s +2024-05-06T17:08:33Z #15 1.651 10650K .......... .......... .......... .......... .......... 8% 119M 2s +2024-05-06T17:08:33Z #15 1.651 10700K .......... .......... .......... .......... .......... 8% 119M 2s +2024-05-06T17:08:33Z #15 1.651 10750K .......... .......... .......... .......... .......... 8% 17.6M 2s +2024-05-06T17:08:33Z #15 1.654 10800K .......... .......... .......... .......... .......... 8% 39.9M 2s +2024-05-06T17:08:33Z #15 1.655 10850K .......... .......... .......... .......... .......... 8% 38.4M 2s +2024-05-06T17:08:33Z #15 1.659 10900K .......... .......... .......... .......... .......... 8% 124M 2s +2024-05-06T17:08:33Z #15 1.659 10950K .......... .......... .......... .......... .......... 8% 119M 2s +2024-05-06T17:08:33Z #15 1.659 11000K .......... .......... .......... .......... .......... 8% 82.7M 2s +2024-05-06T17:08:33Z #15 1.659 11050K .......... .......... .......... .......... .......... 8% 113M 2s +2024-05-06T17:08:33Z #15 1.659 11100K .......... .......... .......... .......... .......... 8% 102M 2s +2024-05-06T17:08:33Z #15 1.659 11150K .......... .......... .......... .......... .......... 8% 111M 2s +2024-05-06T17:08:33Z #15 1.659 11200K .......... .......... .......... .......... .......... 8% 14.2M 2s +2024-05-06T17:08:33Z #15 1.663 11250K .......... .......... .......... .......... .......... 8% 131M 2s +2024-05-06T17:08:33Z #15 1.663 11300K .......... .......... .......... .......... .......... 8% 77.3M 2s +2024-05-06T17:08:33Z #15 1.663 11350K .......... .......... .......... .......... .......... 8% 21.5M 2s +2024-05-06T17:08:33Z #15 1.667 11400K .......... .......... .......... .......... .......... 8% 97.5M 2s +2024-05-06T17:08:33Z #15 1.667 11450K .......... .......... .......... .......... .......... 8% 127M 2s +2024-05-06T17:08:33Z #15 1.667 11500K .......... .......... .......... .......... .......... 9% 103M 2s +2024-05-06T17:08:33Z #15 1.667 11550K .......... .......... .......... .......... .......... 9% 11.0M 2s +2024-05-06T17:08:33Z #15 1.675 11600K .......... .......... .......... .......... .......... 9% 88.6M 2s +2024-05-06T17:08:33Z #15 1.675 11650K .......... .......... .......... .......... .......... 9% 121M 2s +2024-05-06T17:08:33Z #15 1.675 11700K .......... .......... .......... .......... .......... 9% 133M 2s +2024-05-06T17:08:33Z #15 1.675 11750K .......... .......... .......... .......... .......... 9% 130M 2s +2024-05-06T17:08:33Z #15 1.675 11800K .......... .......... .......... .......... .......... 9% 89.9M 2s +2024-05-06T17:08:33Z #15 1.675 11850K .......... .......... .......... .......... .......... 9% 109M 2s +2024-05-06T17:08:33Z #15 1.675 11900K .......... .......... .......... .......... .......... 9% 105M 2s +2024-05-06T17:08:33Z #15 1.675 11950K .......... .......... .......... .......... .......... 9% 109M 2s +2024-05-06T17:08:33Z #15 1.679 12000K .......... .......... .......... .......... .......... 9% 5.51M 2s +2024-05-06T17:08:33Z #15 1.687 12050K .......... .......... .......... .......... .......... 9% 110M 2s +2024-05-06T17:08:33Z #15 1.687 12100K .......... .......... .......... .......... .......... 9% 130M 2s +2024-05-06T17:08:33Z #15 1.687 12150K .......... .......... .......... .......... .......... 9% 100M 2s +2024-05-06T17:08:33Z #15 1.687 12200K .......... .......... .......... .......... .......... 9% 95.5M 2s +2024-05-06T17:08:33Z #15 1.687 12250K .......... .......... .......... .......... .......... 9% 110M 2s +2024-05-06T17:08:33Z #15 1.687 12300K .......... .......... .......... .......... .......... 9% 104M 2s +2024-05-06T17:08:33Z #15 1.687 12350K .......... .......... .......... .......... .......... 9% 49.4M 2s +2024-05-06T17:08:33Z #15 1.691 12400K .......... .......... .......... .......... .......... 9% 6.54M 2s +2024-05-06T17:08:33Z #15 1.699 12450K .......... .......... .......... .......... .......... 9% 132M 2s +2024-05-06T17:08:33Z #15 1.699 12500K .......... .......... .......... .......... .......... 9% 108M 2s +2024-05-06T17:08:33Z #15 1.699 12550K .......... .......... .......... .......... .......... 9% 114M 2s +2024-05-06T17:08:33Z #15 1.699 12600K .......... .......... .......... .......... .......... 9% 107M 2s +2024-05-06T17:08:33Z #15 1.699 12650K .......... .......... .......... .......... .......... 9% 120M 2s +2024-05-06T17:08:33Z #15 1.699 12700K .......... .......... .......... .......... .......... 9% 122M 2s +2024-05-06T17:08:33Z #15 1.699 12750K .......... .......... .......... .......... .......... 10% 127M 2s +2024-05-06T17:08:33Z #15 1.699 12800K .......... .......... .......... .......... .......... 10% 101M 2s +2024-05-06T17:08:33Z #15 1.699 12850K .......... .......... .......... .......... .......... 10% 104M 2s +2024-05-06T17:08:33Z #15 1.699 12900K .......... .......... .......... .......... .......... 10% 22.0M 2s +2024-05-06T17:08:33Z #15 1.702 12950K .......... .......... .......... .......... .......... 10% 21.6M 2s +2024-05-06T17:08:33Z #15 1.704 13000K .......... .......... .......... .......... .......... 10% 88.6M 2s +2024-05-06T17:08:33Z #15 1.704 13050K .......... .......... .......... .......... .......... 10% 107M 2s +2024-05-06T17:08:33Z #15 1.704 13100K .......... .......... .......... .......... .......... 10% 18.9M 2s +2024-05-06T17:08:33Z #15 1.711 13150K .......... .......... .......... .......... .......... 10% 111M 2s +2024-05-06T17:08:33Z #15 1.711 13200K .......... .......... .......... .......... .......... 10% 116M 2s +2024-05-06T17:08:33Z #15 1.711 13250K .......... .......... .......... .......... .......... 10% 108M 2s +2024-05-06T17:08:33Z #15 1.711 13300K .......... .......... .......... .......... .......... 10% 142M 2s +2024-05-06T17:08:33Z #15 1.711 13350K .......... .......... .......... .......... .......... 10% 144M 2s +2024-05-06T17:08:33Z #15 1.711 13400K .......... .......... .......... .......... .......... 10% 113M 2s +2024-05-06T17:08:33Z #15 1.711 13450K .......... .......... .......... .......... .......... 10% 130M 2s +2024-05-06T17:08:33Z #15 1.711 13500K .......... .......... .......... .......... .......... 10% 142M 2s +2024-05-06T17:08:33Z #15 1.711 13550K .......... .......... .......... .......... .......... 10% 133M 2s +2024-05-06T17:08:33Z #15 1.711 13600K .......... .......... .......... .......... .......... 10% 103M 2s +2024-05-06T17:08:33Z #15 1.711 13650K .......... .......... .......... .......... .......... 10% 13.3M 2s +2024-05-06T17:08:33Z #15 1.715 13700K .......... .......... .......... .......... .......... 10% 27.9M 2s +2024-05-06T17:08:33Z #15 1.719 13750K .......... .......... .......... .......... .......... 10% 124M 2s +2024-05-06T17:08:33Z #15 1.719 13800K .......... .......... .......... .......... .......... 10% 90.1M 2s +2024-05-06T17:08:33Z #15 1.719 13850K .......... .......... .......... .......... .......... 10% 120M 2s +2024-05-06T17:08:33Z #15 1.719 13900K .......... .......... .......... .......... .......... 10% 110M 2s +2024-05-06T17:08:33Z #15 1.719 13950K .......... .......... .......... .......... .......... 10% 117M 2s +2024-05-06T17:08:33Z #15 1.719 14000K .......... .......... .......... .......... .......... 10% 28.8M 2s +2024-05-06T17:08:33Z #15 1.721 14050K .......... .......... .......... .......... .......... 11% 18.4M 2s +2024-05-06T17:08:33Z #15 1.727 14100K .......... .......... .......... .......... .......... 11% 96.1M 2s +2024-05-06T17:08:33Z #15 1.727 14150K .......... .......... .......... .......... .......... 11% 109M 2s +2024-05-06T17:08:33Z #15 1.727 14200K .......... .......... .......... .......... .......... 11% 87.8M 2s +2024-05-06T17:08:33Z #15 1.727 14250K .......... .......... .......... .......... .......... 11% 107M 2s +2024-05-06T17:08:33Z #15 1.727 14300K .......... .......... .......... .......... .......... 11% 115M 2s +2024-05-06T17:08:33Z #15 1.727 14350K .......... .......... .......... .......... .......... 11% 100M 2s +2024-05-06T17:08:33Z #15 1.727 14400K .......... .......... .......... .......... .......... 11% 94.3M 2s +2024-05-06T17:08:33Z #15 1.727 14450K .......... .......... .......... .......... .......... 11% 121M 2s +2024-05-06T17:08:33Z #15 1.727 14500K .......... .......... .......... .......... .......... 11% 17.7M 2s +2024-05-06T17:08:33Z #15 1.730 14550K .......... .......... .......... .......... .......... 11% 33.4M 2s +2024-05-06T17:08:33Z #15 1.735 14600K .......... .......... .......... .......... .......... 11% 93.4M 2s +2024-05-06T17:08:33Z #15 1.735 14650K .......... .......... .......... .......... .......... 11% 118M 2s +2024-05-06T17:08:33Z #15 1.735 14700K .......... .......... .......... .......... .......... 11% 111M 2s +2024-05-06T17:08:33Z #15 1.735 14750K .......... .......... .......... .......... .......... 11% 113M 2s +2024-05-06T17:08:33Z #15 1.735 14800K .......... .......... .......... .......... .......... 11% 99.1M 2s +2024-05-06T17:08:33Z #15 1.735 14850K .......... .......... .......... .......... .......... 11% 120M 2s +2024-05-06T17:08:33Z #15 1.735 14900K .......... .......... .......... .......... .......... 11% 110M 2s +2024-05-06T17:08:33Z #15 1.735 14950K .......... .......... .......... .......... .......... 11% 113M 2s +2024-05-06T17:08:33Z #15 1.735 15000K .......... .......... .......... .......... .......... 11% 29.9M 2s +2024-05-06T17:08:33Z #15 1.737 15050K .......... .......... .......... .......... .......... 11% 14.1M 2s +2024-05-06T17:08:33Z #15 1.742 15100K .......... .......... .......... .......... .......... 11% 121M 2s +2024-05-06T17:08:33Z #15 1.742 15150K .......... .......... .......... .......... .......... 11% 139M 2s +2024-05-06T17:08:33Z #15 1.742 15200K .......... .......... .......... .......... .......... 11% 106M 2s +2024-05-06T17:08:33Z #15 1.742 15250K .......... .......... .......... .......... .......... 11% 100M 2s +2024-05-06T17:08:33Z #15 1.742 15300K .......... .......... .......... .......... .......... 12% 12.4M 2s +2024-05-06T17:08:33Z #15 1.751 15350K .......... .......... .......... .......... .......... 12% 120M 2s +2024-05-06T17:08:33Z #15 1.751 15400K .......... .......... .......... .......... .......... 12% 109M 2s +2024-05-06T17:08:33Z #15 1.751 15450K .......... .......... .......... .......... .......... 12% 111M 2s +2024-05-06T17:08:33Z #15 1.751 15500K .......... .......... .......... .......... .......... 12% 122M 2s +2024-05-06T17:08:33Z #15 1.751 15550K .......... .......... .......... .......... .......... 12% 107M 2s +2024-05-06T17:08:33Z #15 1.751 15600K .......... .......... .......... .......... .......... 12% 93.7M 2s +2024-05-06T17:08:33Z #15 1.751 15650K .......... .......... .......... .......... .......... 12% 120M 2s +2024-05-06T17:08:33Z #15 1.751 15700K .......... .......... .......... .......... .......... 12% 110M 2s +2024-05-06T17:08:33Z #15 1.751 15750K .......... .......... .......... .......... .......... 12% 140M 2s +2024-05-06T17:08:33Z #15 1.751 15800K .......... .......... .......... .......... .......... 12% 101M 2s +2024-05-06T17:08:33Z #15 1.751 15850K .......... .......... .......... .......... .......... 12% 118M 2s +2024-05-06T17:08:33Z #15 1.751 15900K .......... .......... .......... .......... .......... 12% 154M 2s +2024-05-06T17:08:33Z #15 1.751 15950K .......... .......... .......... .......... .......... 12% 106M 2s +2024-05-06T17:08:33Z #15 1.751 16000K .......... .......... .......... .......... .......... 12% 44.6M 2s +2024-05-06T17:08:33Z #15 1.755 16050K .......... .......... .......... .......... .......... 12% 130M 2s +2024-05-06T17:08:33Z #15 1.755 16100K .......... .......... .......... .......... .......... 12% 146M 2s +2024-05-06T17:08:33Z #15 1.755 16150K .......... .......... .......... .......... .......... 12% 128M 2s +2024-05-06T17:08:33Z #15 1.755 16200K .......... .......... .......... .......... .......... 12% 97.7M 2s +2024-05-06T17:08:33Z #15 1.755 16250K .......... .......... .......... .......... .......... 12% 125M 2s +2024-05-06T17:08:33Z #15 1.755 16300K .......... .......... .......... .......... .......... 12% 127M 2s +2024-05-06T17:08:33Z #15 1.755 16350K .......... .......... .......... .......... .......... 12% 133M 2s +2024-05-06T17:08:33Z #15 1.755 16400K .......... .......... .......... .......... .......... 12% 95.9M 2s +2024-05-06T17:08:33Z #15 1.755 16450K .......... .......... .......... .......... .......... 12% 30.1M 2s +2024-05-06T17:08:33Z #15 1.757 16500K .......... .......... .......... .......... .......... 12% 100M 2s +2024-05-06T17:08:33Z #15 1.757 16550K .......... .......... .......... .......... .......... 12% 46.6M 2s +2024-05-06T17:08:33Z #15 1.759 16600K .......... .......... .......... .......... .......... 13% 14.0M 2s +2024-05-06T17:08:33Z #15 1.762 16650K .......... .......... .......... .......... .......... 13% 26.5M 2s +2024-05-06T17:08:33Z #15 1.764 16700K .......... .......... .......... .......... .......... 13% 41.4M 2s +2024-05-06T17:08:33Z #15 1.767 16750K .......... .......... .......... .......... .......... 13% 105M 2s +2024-05-06T17:08:33Z #15 1.767 16800K .......... .......... .......... .......... .......... 13% 97.2M 2s +2024-05-06T17:08:33Z #15 1.767 16850K .......... .......... .......... .......... .......... 13% 119M 2s +2024-05-06T17:08:33Z #15 1.767 16900K .......... .......... .......... .......... .......... 13% 117M 2s +2024-05-06T17:08:33Z #15 1.767 16950K .......... .......... .......... .......... .......... 13% 88.3M 2s +2024-05-06T17:08:33Z #15 1.767 17000K .......... .......... .......... .......... .......... 13% 14.5M 2s +2024-05-06T17:08:33Z #15 1.771 17050K .......... .......... .......... .......... .......... 13% 56.6M 2s +2024-05-06T17:08:33Z #15 1.772 17100K .......... .......... .......... .......... .......... 13% 37.4M 2s +2024-05-06T17:08:33Z #15 1.773 17150K .......... .......... .......... .......... .......... 13% 37.6M 2s +2024-05-06T17:08:33Z #15 1.774 17200K .......... .......... .......... .......... .......... 13% 26.3M 2s +2024-05-06T17:08:33Z #15 1.779 17250K .......... .......... .......... .......... .......... 13% 114M 2s +2024-05-06T17:08:33Z #15 1.779 17300K .......... .......... .......... .......... .......... 13% 110M 2s +2024-05-06T17:08:33Z #15 1.779 17350K .......... .......... .......... .......... .......... 13% 114M 2s +2024-05-06T17:08:33Z #15 1.779 17400K .......... .......... .......... .......... .......... 13% 97.6M 2s +2024-05-06T17:08:33Z #15 1.779 17450K .......... .......... .......... .......... .......... 13% 115M 2s +2024-05-06T17:08:33Z #15 1.779 17500K .......... .......... .......... .......... .......... 13% 108M 2s +2024-05-06T17:08:33Z #15 1.779 17550K .......... .......... .......... .......... .......... 13% 118M 2s +2024-05-06T17:08:33Z #15 1.779 17600K .......... .......... .......... .......... .......... 13% 11.8M 2s +2024-05-06T17:08:33Z #15 1.787 17650K .......... .......... .......... .......... .......... 13% 142M 2s +2024-05-06T17:08:33Z #15 1.787 17700K .......... .......... .......... .......... .......... 13% 110M 2s +2024-05-06T17:08:33Z #15 1.787 17750K .......... .......... .......... .......... .......... 13% 130M 2s +2024-05-06T17:08:33Z #15 1.787 17800K .......... .......... .......... .......... .......... 13% 102M 2s +2024-05-06T17:08:33Z #15 1.787 17850K .......... .......... .......... .......... .......... 14% 157M 2s +2024-05-06T17:08:33Z #15 1.787 17900K .......... .......... .......... .......... .......... 14% 111M 2s +2024-05-06T17:08:33Z #15 1.787 17950K .......... .......... .......... .......... .......... 14% 147M 2s +2024-05-06T17:08:33Z #15 1.787 18000K .......... .......... .......... .......... .......... 14% 108M 2s +2024-05-06T17:08:33Z #15 1.787 18050K .......... .......... .......... .......... .......... 14% 115M 2s +2024-05-06T17:08:33Z #15 1.787 18100K .......... .......... .......... .......... .......... 14% 45.7M 2s +2024-05-06T17:08:33Z #15 1.789 18150K .......... .......... .......... .......... .......... 14% 15.4M 2s +2024-05-06T17:08:33Z #15 1.791 18200K .......... .......... .......... .......... .......... 14% 49.8M 2s +2024-05-06T17:08:33Z #15 1.795 18250K .......... .......... .......... .......... .......... 14% 111M 2s +2024-05-06T17:08:33Z #15 1.795 18300K .......... .......... .......... .......... .......... 14% 116M 2s +2024-05-06T17:08:33Z #15 1.795 18350K .......... .......... .......... .......... .......... 14% 145M 2s +2024-05-06T17:08:33Z #15 1.795 18400K .......... .......... .......... .......... .......... 14% 107M 2s +2024-05-06T17:08:33Z #15 1.795 18450K .......... .......... .......... .......... .......... 14% 118M 2s +2024-05-06T17:08:33Z #15 1.795 18500K .......... .......... .......... .......... .......... 14% 114M 2s +2024-05-06T17:08:33Z #15 1.795 18550K .......... .......... .......... .......... .......... 14% 111M 2s +2024-05-06T17:08:33Z #15 1.795 18600K .......... .......... .......... .......... .......... 14% 25.0M 2s +2024-05-06T17:08:33Z #15 1.799 18650K .......... .......... .......... .......... .......... 14% 119M 2s +2024-05-06T17:08:33Z #15 1.799 18700K .......... .......... .......... .......... .......... 14% 131M 2s +2024-05-06T17:08:33Z #15 1.799 18750K .......... .......... .......... .......... .......... 14% 116M 2s +2024-05-06T17:08:33Z #15 1.799 18800K .......... .......... .......... .......... .......... 14% 119M 2s +2024-05-06T17:08:33Z #15 1.799 18850K .......... .......... .......... .......... .......... 14% 119M 2s +2024-05-06T17:08:33Z #15 1.799 18900K .......... .......... .......... .......... .......... 14% 105M 2s +2024-05-06T17:08:33Z #15 1.803 18950K .......... .......... .......... .......... .......... 14% 115M 2s +2024-05-06T17:08:33Z #15 1.803 19000K .......... .......... .......... .......... .......... 14% 89.4M 2s +2024-05-06T17:08:33Z #15 1.803 19050K .......... .......... .......... .......... .......... 14% 125M 2s +2024-05-06T17:08:33Z #15 1.803 19100K .......... .......... .......... .......... .......... 14% 105M 2s +2024-05-06T17:08:33Z #15 1.803 19150K .......... .......... .......... .......... .......... 15% 107M 2s +2024-05-06T17:08:33Z #15 1.803 19200K .......... .......... .......... .......... .......... 15% 108M 2s +2024-05-06T17:08:33Z #15 1.803 19250K .......... .......... .......... .......... .......... 15% 110M 2s +2024-05-06T17:08:33Z #15 1.803 19300K .......... .......... .......... .......... .......... 15% 148M 2s +2024-05-06T17:08:33Z #15 1.803 19350K .......... .......... .......... .......... .......... 15% 101M 2s +2024-05-06T17:08:33Z #15 1.807 19400K .......... .......... .......... .......... .......... 15% 96.1M 2s +2024-05-06T17:08:33Z #15 1.807 19450K .......... .......... .......... .......... .......... 15% 116M 2s +2024-05-06T17:08:33Z #15 1.807 19500K .......... .......... .......... .......... .......... 15% 126M 2s +2024-05-06T17:08:33Z #15 1.807 19550K .......... .......... .......... .......... .......... 15% 105M 2s +2024-05-06T17:08:33Z #15 1.807 19600K .......... .......... .......... .......... .......... 15% 116M 2s +2024-05-06T17:08:33Z #15 1.807 19650K .......... .......... .......... .......... .......... 15% 123M 2s +2024-05-06T17:08:33Z #15 1.807 19700K .......... .......... .......... .......... .......... 15% 122M 2s +2024-05-06T17:08:33Z #15 1.807 19750K .......... .......... .......... .......... .......... 15% 115M 2s +2024-05-06T17:08:33Z #15 1.807 19800K .......... .......... .......... .......... .......... 15% 58.6M 2s +2024-05-06T17:08:33Z #15 1.808 19850K .......... .......... .......... .......... .......... 15% 42.4M 2s +2024-05-06T17:08:33Z #15 1.809 19900K .......... .......... .......... .......... .......... 15% 47.3M 2s +2024-05-06T17:08:33Z #15 1.811 19950K .......... .......... .......... .......... .......... 15% 51.2M 2s +2024-05-06T17:08:33Z #15 1.811 20000K .......... .......... .......... .......... .......... 15% 42.2M 2s +2024-05-06T17:08:33Z #15 1.812 20050K .......... .......... .......... .......... .......... 15% 45.9M 2s +2024-05-06T17:08:33Z #15 1.813 20100K .......... .......... .......... .......... .......... 15% 45.9M 2s +2024-05-06T17:08:33Z #15 1.814 20150K .......... .......... .......... .......... .......... 15% 52.0M 2s +2024-05-06T17:08:33Z #15 1.815 20200K .......... .......... .......... .......... .......... 15% 41.2M 2s +2024-05-06T17:08:33Z #15 1.816 20250K .......... .......... .......... .......... .......... 15% 46.4M 2s +2024-05-06T17:08:33Z #15 1.817 20300K .......... .......... .......... .......... .......... 15% 50.3M 2s +2024-05-06T17:08:33Z #15 1.818 20350K .......... .......... .......... .......... .......... 15% 45.0M 2s +2024-05-06T17:08:33Z #15 1.820 20400K .......... .......... .......... .......... .......... 16% 42.7M 2s +2024-05-06T17:08:33Z #15 1.820 20450K .......... .......... .......... .......... .......... 16% 44.7M 2s +2024-05-06T17:08:33Z #15 1.823 20500K .......... .......... .......... .......... .......... 16% 122M 2s +2024-05-06T17:08:33Z #15 1.823 20550K .......... .......... .......... .......... .......... 16% 133M 2s +2024-05-06T17:08:33Z #15 1.823 20600K .......... .......... .......... .......... .......... 16% 99.6M 2s +2024-05-06T17:08:33Z #15 1.823 20650K .......... .......... .......... .......... .......... 16% 51.9M 2s +2024-05-06T17:08:33Z #15 1.827 20700K .......... .......... .......... .......... .......... 16% 112M 2s +2024-05-06T17:08:33Z #15 1.827 20750K .......... .......... .......... .......... .......... 16% 113M 2s +2024-05-06T17:08:33Z #15 1.827 20800K .......... .......... .......... .......... .......... 16% 106M 2s +2024-05-06T17:08:33Z #15 1.827 20850K .......... .......... .......... .......... .......... 16% 109M 2s +2024-05-06T17:08:33Z #15 1.827 20900K .......... .......... .......... .......... .......... 16% 97.6M 2s +2024-05-06T17:08:33Z #15 1.827 20950K .......... .......... .......... .......... .......... 16% 102M 2s +2024-05-06T17:08:33Z #15 1.827 21000K .......... .......... .......... .......... .......... 16% 88.1M 2s +2024-05-06T17:08:33Z #15 1.827 21050K .......... .......... .......... .......... .......... 16% 93.3M 2s +2024-05-06T17:08:33Z #15 1.831 21100K .......... .......... .......... .......... .......... 16% 107M 2s +2024-05-06T17:08:33Z #15 1.831 21150K .......... .......... .......... .......... .......... 16% 108M 2s +2024-05-06T17:08:33Z #15 1.831 21200K .......... .......... .......... .......... .......... 16% 106M 2s +2024-05-06T17:08:33Z #15 1.831 21250K .......... .......... .......... .......... .......... 16% 109M 2s +2024-05-06T17:08:33Z #15 1.831 21300K .......... .......... .......... .......... .......... 16% 119M 2s +2024-05-06T17:08:33Z #15 1.831 21350K .......... .......... .......... .......... .......... 16% 115M 2s +2024-05-06T17:08:33Z #15 1.831 21400K .......... .......... .......... .......... .......... 16% 83.0M 2s +2024-05-06T17:08:33Z #15 1.831 21450K .......... .......... .......... .......... .......... 16% 77.2M 2s +2024-05-06T17:08:33Z #15 1.831 21500K .......... .......... .......... .......... .......... 16% 41.1M 2s +2024-05-06T17:08:33Z #15 1.834 21550K .......... .......... .......... .......... .......... 16% 113M 2s +2024-05-06T17:08:33Z #15 1.834 21600K .......... .......... .......... .......... .......... 16% 95.9M 2s +2024-05-06T17:08:33Z #15 1.834 21650K .......... .......... .......... .......... .......... 16% 54.6M 2s +2024-05-06T17:08:33Z #15 1.834 21700K .......... .......... .......... .......... .......... 17% 39.9M 2s +2024-05-06T17:08:33Z #15 1.839 21750K .......... .......... .......... .......... .......... 17% 138M 2s +2024-05-06T17:08:33Z #15 1.839 21800K .......... .......... .......... .......... .......... 17% 122M 2s +2024-05-06T17:08:33Z #15 1.839 21850K .......... .......... .......... .......... .......... 17% 133M 2s +2024-05-06T17:08:33Z #15 1.839 21900K .......... .......... .......... .......... .......... 17% 148M 2s +2024-05-06T17:08:33Z #15 1.839 21950K .......... .......... .......... .......... .......... 17% 132M 2s +2024-05-06T17:08:33Z #15 1.839 22000K .......... .......... .......... .......... .......... 17% 125M 2s +2024-05-06T17:08:33Z #15 1.839 22050K .......... .......... .......... .......... .......... 17% 136M 2s +2024-05-06T17:08:33Z #15 1.839 22100K .......... .......... .......... .......... .......... 17% 135M 2s +2024-05-06T17:08:33Z #15 1.839 22150K .......... .......... .......... .......... .......... 17% 131M 2s +2024-05-06T17:08:33Z #15 1.839 22200K .......... .......... .......... .......... .......... 17% 26.6M 2s +2024-05-06T17:08:33Z #15 1.841 22250K .......... .......... .......... .......... .......... 17% 32.6M 2s +2024-05-06T17:08:33Z #15 1.847 22300K .......... .......... .......... .......... .......... 17% 158M 2s +2024-05-06T17:08:33Z #15 1.847 22350K .......... .......... .......... .......... .......... 17% 140M 2s +2024-05-06T17:08:33Z #15 1.847 22400K .......... .......... .......... .......... .......... 17% 122M 2s +2024-05-06T17:08:33Z #15 1.847 22450K .......... .......... .......... .......... .......... 17% 128M 2s +2024-05-06T17:08:33Z #15 1.847 22500K .......... .......... .......... .......... .......... 17% 146M 2s +2024-05-06T17:08:33Z #15 1.847 22550K .......... .......... .......... .......... .......... 17% 155M 2s +2024-05-06T17:08:33Z #15 1.847 22600K .......... .......... .......... .......... .......... 17% 123M 2s +2024-05-06T17:08:34Z #15 1.847 22650K .......... .......... .......... .......... .......... 17% 140M 2s +2024-05-06T17:08:34Z #15 1.847 22700K .......... .......... .......... .......... .......... 17% 147M 2s +2024-05-06T17:08:34Z #15 1.847 22750K .......... .......... .......... .......... .......... 17% 168M 2s +2024-05-06T17:08:34Z #15 1.847 22800K .......... .......... .......... .......... .......... 17% 109M 2s +2024-05-06T17:08:34Z #15 1.847 22850K .......... .......... .......... .......... .......... 17% 159M 2s +2024-05-06T17:08:34Z #15 1.847 22900K .......... .......... .......... .......... .......... 17% 135M 2s +2024-05-06T17:08:34Z #15 1.847 22950K .......... .......... .......... .......... .......... 17% 61.0M 2s +2024-05-06T17:08:34Z #15 1.848 23000K .......... .......... .......... .......... .......... 18% 16.2M 2s +2024-05-06T17:08:34Z #15 1.855 23050K .......... .......... .......... .......... .......... 18% 154M 2s +2024-05-06T17:08:34Z #15 1.855 23100K .......... .......... .......... .......... .......... 18% 139M 2s +2024-05-06T17:08:34Z #15 1.855 23150K .......... .......... .......... .......... .......... 18% 142M 2s +2024-05-06T17:08:34Z #15 1.855 23200K .......... .......... .......... .......... .......... 18% 127M 2s +2024-05-06T17:08:34Z #15 1.855 23250K .......... .......... .......... .......... .......... 18% 133M 2s +2024-05-06T17:08:34Z #15 1.855 23300K .......... .......... .......... .......... .......... 18% 144M 2s +2024-05-06T17:08:34Z #15 1.855 23350K .......... .......... .......... .......... .......... 18% 127M 2s +2024-05-06T17:08:34Z #15 1.855 23400K .......... .......... .......... .......... .......... 18% 128M 2s +2024-05-06T17:08:34Z #15 1.855 23450K .......... .......... .......... .......... .......... 18% 139M 2s +2024-05-06T17:08:34Z #15 1.855 23500K .......... .......... .......... .......... .......... 18% 128M 2s +2024-05-06T17:08:34Z #15 1.855 23550K .......... .......... .......... .......... .......... 18% 139M 2s +2024-05-06T17:08:34Z #15 1.855 23600K .......... .......... .......... .......... .......... 18% 114M 2s +2024-05-06T17:08:34Z #15 1.855 23650K .......... .......... .......... .......... .......... 18% 27.6M 2s +2024-05-06T17:08:34Z #15 1.857 23700K .......... .......... .......... .......... .......... 18% 31.5M 2s +2024-05-06T17:08:34Z #15 1.858 23750K .......... .......... .......... .......... .......... 18% 52.4M 2s +2024-05-06T17:08:34Z #15 1.863 23800K .......... .......... .......... .......... .......... 18% 119M 2s +2024-05-06T17:08:34Z #15 1.863 23850K .......... .......... .......... .......... .......... 18% 131M 2s +2024-05-06T17:08:34Z #15 1.863 23900K .......... .......... .......... .......... .......... 18% 146M 2s +2024-05-06T17:08:34Z #15 1.863 23950K .......... .......... .......... .......... .......... 18% 166M 2s +2024-05-06T17:08:34Z #15 1.863 24000K .......... .......... .......... .......... .......... 18% 127M 2s +2024-05-06T17:08:34Z #15 1.863 24050K .......... .......... .......... .......... .......... 18% 149M 2s +2024-05-06T17:08:34Z #15 1.863 24100K .......... .......... .......... .......... .......... 18% 145M 2s +2024-05-06T17:08:34Z #15 1.863 24150K .......... .......... .......... .......... .......... 18% 165M 2s +2024-05-06T17:08:34Z #15 1.863 24200K .......... .......... .......... .......... .......... 18% 107M 2s +2024-05-06T17:08:34Z #15 1.863 24250K .......... .......... .......... .......... .......... 19% 162M 2s +2024-05-06T17:08:34Z #15 1.863 24300K .......... .......... .......... .......... .......... 19% 29.7M 2s +2024-05-06T17:08:34Z #15 1.865 24350K .......... .......... .......... .......... .......... 19% 9.92M 2s +2024-05-06T17:08:34Z #15 1.871 24400K .......... .......... .......... .......... .......... 19% 121M 2s +2024-05-06T17:08:34Z #15 1.871 24450K .......... .......... .......... .......... .......... 19% 167M 2s +2024-05-06T17:08:34Z #15 1.871 24500K .......... .......... .......... .......... .......... 19% 139M 2s +2024-05-06T17:08:34Z #15 1.871 24550K .......... .......... .......... .......... .......... 19% 139M 2s +2024-05-06T17:08:34Z #15 1.871 24600K .......... .......... .......... .......... .......... 19% 13.3M 2s +2024-05-06T17:08:34Z #15 1.879 24650K .......... .......... .......... .......... .......... 19% 42.7M 2s +2024-05-06T17:08:34Z #15 1.879 24700K .......... .......... .......... .......... .......... 19% 142M 2s +2024-05-06T17:08:34Z #15 1.879 24750K .......... .......... .......... .......... .......... 19% 151M 2s +2024-05-06T17:08:34Z #15 1.879 24800K .......... .......... .......... .......... .......... 19% 152M 2s +2024-05-06T17:08:34Z #15 1.879 24850K .......... .......... .......... .......... .......... 19% 128M 2s +2024-05-06T17:08:34Z #15 1.879 24900K .......... .......... .......... .......... .......... 19% 138M 2s +2024-05-06T17:08:34Z #15 1.879 24950K .......... .......... .......... .......... .......... 19% 139M 2s +2024-05-06T17:08:34Z #15 1.879 25000K .......... .......... .......... .......... .......... 19% 127M 2s +2024-05-06T17:08:34Z #15 1.879 25050K .......... .......... .......... .......... .......... 19% 136M 2s +2024-05-06T17:08:34Z #15 1.879 25100K .......... .......... .......... .......... .......... 19% 146M 2s +2024-05-06T17:08:34Z #15 1.879 25150K .......... .......... .......... .......... .......... 19% 13.6M 2s +2024-05-06T17:08:34Z #15 1.887 25200K .......... .......... .......... .......... .......... 19% 23.2M 2s +2024-05-06T17:08:34Z #15 1.887 25250K .......... .......... .......... .......... .......... 19% 147M 2s +2024-05-06T17:08:34Z #15 1.887 25300K .......... .......... .......... .......... .......... 19% 170M 2s +2024-05-06T17:08:34Z #15 1.887 25350K .......... .......... .......... .......... .......... 19% 149M 2s +2024-05-06T17:08:34Z #15 1.887 25400K .......... .......... .......... .......... .......... 19% 116M 2s +2024-05-06T17:08:34Z #15 1.887 25450K .......... .......... .......... .......... .......... 19% 114M 2s +2024-05-06T17:08:34Z #15 1.887 25500K .......... .......... .......... .......... .......... 19% 149M 2s +2024-05-06T17:08:34Z #15 1.887 25550K .......... .......... .......... .......... .......... 20% 134M 2s +2024-05-06T17:08:34Z #15 1.887 25600K .......... .......... .......... .......... .......... 20% 36.7M 2s +2024-05-06T17:08:34Z #15 1.895 25650K .......... .......... .......... .......... .......... 20% 49.0M 2s +2024-05-06T17:08:34Z #15 1.895 25700K .......... .......... .......... .......... .......... 20% 115M 2s +2024-05-06T17:08:34Z #15 1.895 25750K .......... .......... .......... .......... .......... 20% 116M 2s +2024-05-06T17:08:34Z #15 1.895 25800K .......... .......... .......... .......... .......... 20% 97.0M 2s +2024-05-06T17:08:34Z #15 1.895 25850K .......... .......... .......... .......... .......... 20% 118M 2s +2024-05-06T17:08:34Z #15 1.895 25900K .......... .......... .......... .......... .......... 20% 108M 2s +2024-05-06T17:08:34Z #15 1.895 25950K .......... .......... .......... .......... .......... 20% 116M 2s +2024-05-06T17:08:34Z #15 1.895 26000K .......... .......... .......... .......... .......... 20% 98.8M 1s +2024-05-06T17:08:34Z #15 1.895 26050K .......... .......... .......... .......... .......... 20% 143M 1s +2024-05-06T17:08:34Z #15 1.895 26100K .......... .......... .......... .......... .......... 20% 123M 1s +2024-05-06T17:08:34Z #15 1.895 26150K .......... .......... .......... .......... .......... 20% 122M 1s +2024-05-06T17:08:34Z #15 1.895 26200K .......... .......... .......... .......... .......... 20% 97.8M 1s +2024-05-06T17:08:34Z #15 1.895 26250K .......... .......... .......... .......... .......... 20% 123M 1s +2024-05-06T17:08:34Z #15 1.895 26300K .......... .......... .......... .......... .......... 20% 128M 1s +2024-05-06T17:08:34Z #15 1.895 26350K .......... .......... .......... .......... .......... 20% 35.6M 1s +2024-05-06T17:08:34Z #15 1.896 26400K .......... .......... .......... .......... .......... 20% 44.6M 1s +2024-05-06T17:08:34Z #15 1.897 26450K .......... .......... .......... .......... .......... 20% 146M 1s +2024-05-06T17:08:34Z #15 1.898 26500K .......... .......... .......... .......... .......... 20% 147M 1s +2024-05-06T17:08:34Z #15 1.898 26550K .......... .......... .......... .......... .......... 20% 145M 1s +2024-05-06T17:08:34Z #15 1.898 26600K .......... .......... .......... .......... .......... 20% 41.7M 1s +2024-05-06T17:08:34Z #15 1.899 26650K .......... .......... .......... .......... .......... 20% 33.1M 1s +2024-05-06T17:08:34Z #15 1.901 26700K .......... .......... .......... .......... .......... 20% 106M 1s +2024-05-06T17:08:34Z #15 1.901 26750K .......... .......... .......... .......... .......... 20% 64.6M 1s +2024-05-06T17:08:34Z #15 1.902 26800K .......... .......... .......... .......... .......... 21% 34.1M 1s +2024-05-06T17:08:34Z #15 1.904 26850K .......... .......... .......... .......... .......... 21% 72.0M 1s +2024-05-06T17:08:34Z #15 1.904 26900K .......... .......... .......... .......... .......... 21% 155M 1s +2024-05-06T17:08:34Z #15 1.904 26950K .......... .......... .......... .......... .......... 21% 132M 1s +2024-05-06T17:08:34Z #15 1.905 27000K .......... .......... .......... .......... .......... 21% 110M 1s +2024-05-06T17:08:34Z #15 1.905 27050K .......... .......... .......... .......... .......... 21% 128M 1s +2024-05-06T17:08:34Z #15 1.906 27100K .......... .......... .......... .......... .......... 21% 138M 1s +2024-05-06T17:08:34Z #15 1.906 27150K .......... .......... .......... .......... .......... 21% 135M 1s +2024-05-06T17:08:34Z #15 1.906 27200K .......... .......... .......... .......... .......... 21% 122M 1s +2024-05-06T17:08:34Z #15 1.907 27250K .......... .......... .......... .......... .......... 21% 116M 1s +2024-05-06T17:08:34Z #15 1.907 27300K .......... .......... .......... .......... .......... 21% 136M 1s +2024-05-06T17:08:34Z #15 1.908 27350K .......... .......... .......... .......... .......... 21% 141M 1s +2024-05-06T17:08:34Z #15 1.910 27400K .......... .......... .......... .......... .......... 21% 110M 1s +2024-05-06T17:08:34Z #15 1.910 27450K .......... .......... .......... .......... .......... 21% 172M 1s +2024-05-06T17:08:34Z #15 1.910 27500K .......... .......... .......... .......... .......... 21% 142M 1s +2024-05-06T17:08:34Z #15 1.910 27550K .......... .......... .......... .......... .......... 21% 138M 1s +2024-05-06T17:08:34Z #15 1.910 27600K .......... .......... .......... .......... .......... 21% 125M 1s +2024-05-06T17:08:34Z #15 1.910 27650K .......... .......... .......... .......... .......... 21% 133M 1s +2024-05-06T17:08:34Z #15 1.911 27700K .......... .......... .......... .......... .......... 21% 140M 1s +2024-05-06T17:08:34Z #15 1.911 27750K .......... .......... .......... .......... .......... 21% 130M 1s +2024-05-06T17:08:34Z #15 1.911 27800K .......... .......... .......... .......... .......... 21% 43.5M 1s +2024-05-06T17:08:34Z #15 1.912 27850K .......... .......... .......... .......... .......... 21% 83.1M 1s +2024-05-06T17:08:34Z #15 1.913 27900K .......... .......... .......... .......... .......... 21% 138M 1s +2024-05-06T17:08:34Z #15 1.913 27950K .......... .......... .......... .......... .......... 21% 72.1M 1s +2024-05-06T17:08:34Z #15 1.914 28000K .......... .......... .......... .......... .......... 21% 122M 1s +2024-05-06T17:08:34Z #15 1.914 28050K .......... .......... .......... .......... .......... 21% 154M 1s +2024-05-06T17:08:34Z #15 1.914 28100K .......... .......... .......... .......... .......... 22% 137M 1s +2024-05-06T17:08:34Z #15 1.915 28150K .......... .......... .......... .......... .......... 22% 81.2M 1s +2024-05-06T17:08:34Z #15 1.920 28200K .......... .......... .......... .......... .......... 22% 108M 1s +2024-05-06T17:08:34Z #15 1.920 28250K .......... .......... .......... .......... .......... 22% 153M 1s +2024-05-06T17:08:34Z #15 1.920 28300K .......... .......... .......... .......... .......... 22% 129M 1s +2024-05-06T17:08:34Z #15 1.920 28350K .......... .......... .......... .......... .......... 22% 141M 1s +2024-05-06T17:08:34Z #15 1.920 28400K .......... .......... .......... .......... .......... 22% 117M 1s +2024-05-06T17:08:34Z #15 1.920 28450K .......... .......... .......... .......... .......... 22% 147M 1s +2024-05-06T17:08:34Z #15 1.920 28500K .......... .......... .......... .......... .......... 22% 134M 1s +2024-05-06T17:08:34Z #15 1.920 28550K .......... .......... .......... .......... .......... 22% 142M 1s +2024-05-06T17:08:34Z #15 1.920 28600K .......... .......... .......... .......... .......... 22% 123M 1s +2024-05-06T17:08:34Z #15 1.920 28650K .......... .......... .......... .......... .......... 22% 170M 1s +2024-05-06T17:08:34Z #15 1.920 28700K .......... .......... .......... .......... .......... 22% 126M 1s +2024-05-06T17:08:34Z #15 1.920 28750K .......... .......... .......... .......... .......... 22% 96.6M 1s +2024-05-06T17:08:34Z #15 1.920 28800K .......... .......... .......... .......... .......... 22% 69.7M 1s +2024-05-06T17:08:34Z #15 1.921 28850K .......... .......... .......... .......... .......... 22% 99.2M 1s +2024-05-06T17:08:34Z #15 1.921 28900K .......... .......... .......... .......... .......... 22% 139M 1s +2024-05-06T17:08:34Z #15 1.921 28950K .......... .......... .......... .......... .......... 22% 167M 1s +2024-05-06T17:08:34Z #15 1.922 29000K .......... .......... .......... .......... .......... 22% 126M 1s +2024-05-06T17:08:34Z #15 1.922 29050K .......... .......... .......... .......... .......... 22% 142M 1s +2024-05-06T17:08:34Z #15 1.922 29100K .......... .......... .......... .......... .......... 22% 137M 1s +2024-05-06T17:08:34Z #15 1.923 29150K .......... .......... .......... .......... .......... 22% 35.8M 1s +2024-05-06T17:08:34Z #15 1.924 29200K .......... .......... .......... .......... .......... 22% 72.5M 1s +2024-05-06T17:08:34Z #15 1.925 29250K .......... .......... .......... .......... .......... 22% 120M 1s +2024-05-06T17:08:34Z #15 1.925 29300K .......... .......... .......... .......... .......... 22% 165M 1s +2024-05-06T17:08:34Z #15 1.926 29350K .......... .......... .......... .......... .......... 23% 133M 1s +2024-05-06T17:08:34Z #15 1.926 29400K .......... .......... .......... .......... .......... 23% 123M 1s +2024-05-06T17:08:34Z #15 1.926 29450K .......... .......... .......... .......... .......... 23% 140M 1s +2024-05-06T17:08:34Z #15 1.927 29500K .......... .......... .......... .......... .......... 23% 142M 1s +2024-05-06T17:08:34Z #15 1.927 29550K .......... .......... .......... .......... .......... 23% 53.4M 1s +2024-05-06T17:08:34Z #15 1.928 29600K .......... .......... .......... .......... .......... 23% 74.9M 1s +2024-05-06T17:08:34Z #15 1.929 29650K .......... .......... .......... .......... .......... 23% 98.5M 1s +2024-05-06T17:08:34Z #15 1.929 29700K .......... .......... .......... .......... .......... 23% 57.4M 1s +2024-05-06T17:08:34Z #15 1.930 29750K .......... .......... .......... .......... .......... 23% 105M 1s +2024-05-06T17:08:34Z #15 1.930 29800K .......... .......... .......... .......... .......... 23% 87.0M 1s +2024-05-06T17:08:34Z #15 1.931 29850K .......... .......... .......... .......... .......... 23% 69.9M 1s +2024-05-06T17:08:34Z #15 1.932 29900K .......... .......... .......... .......... .......... 23% 76.0M 1s +2024-05-06T17:08:34Z #15 1.932 29950K .......... .......... .......... .......... .......... 23% 87.8M 1s +2024-05-06T17:08:34Z #15 1.933 30000K .......... .......... .......... .......... .......... 23% 120M 1s +2024-05-06T17:08:34Z #15 1.933 30050K .......... .......... .......... .......... .......... 23% 144M 1s +2024-05-06T17:08:34Z #15 1.934 30100K .......... .......... .......... .......... .......... 23% 140M 1s +2024-05-06T17:08:34Z #15 1.939 30150K .......... .......... .......... .......... .......... 23% 157M 1s +2024-05-06T17:08:34Z #15 1.939 30200K .......... .......... .......... .......... .......... 23% 123M 1s +2024-05-06T17:08:34Z #15 1.939 30250K .......... .......... .......... .......... .......... 23% 138M 1s +2024-05-06T17:08:34Z #15 1.939 30300K .......... .......... .......... .......... .......... 23% 78.0M 1s +2024-05-06T17:08:34Z #15 1.939 30350K .......... .......... .......... .......... .......... 23% 128M 1s +2024-05-06T17:08:34Z #15 1.939 30400K .......... .......... .......... .......... .......... 23% 138M 1s +2024-05-06T17:08:34Z #15 1.939 30450K .......... .......... .......... .......... .......... 23% 144M 1s +2024-05-06T17:08:34Z #15 1.939 30500K .......... .......... .......... .......... .......... 23% 157M 1s +2024-05-06T17:08:34Z #15 1.939 30550K .......... .......... .......... .......... .......... 23% 126M 1s +2024-05-06T17:08:34Z #15 1.939 30600K .......... .......... .......... .......... .......... 23% 120M 1s +2024-05-06T17:08:34Z #15 1.939 30650K .......... .......... .......... .......... .......... 24% 119M 1s +2024-05-06T17:08:34Z #15 1.939 30700K .......... .......... .......... .......... .......... 24% 156M 1s +2024-05-06T17:08:34Z #15 1.939 30750K .......... .......... .......... .......... .......... 24% 147M 1s +2024-05-06T17:08:34Z #15 1.939 30800K .......... .......... .......... .......... .......... 24% 40.5M 1s +2024-05-06T17:08:34Z #15 1.940 30850K .......... .......... .......... .......... .......... 24% 13.6M 1s +2024-05-06T17:08:34Z #15 1.944 30900K .......... .......... .......... .......... .......... 24% 21.9M 1s +2024-05-06T17:08:34Z #15 1.946 30950K .......... .......... .......... .......... .......... 24% 26.1M 1s +2024-05-06T17:08:34Z #15 1.951 31000K .......... .......... .......... .......... .......... 24% 99.1M 1s +2024-05-06T17:08:34Z #15 1.951 31050K .......... .......... .......... .......... .......... 24% 147M 1s +2024-05-06T17:08:34Z #15 1.951 31100K .......... .......... .......... .......... .......... 24% 130M 1s +2024-05-06T17:08:34Z #15 1.951 31150K .......... .......... .......... .......... .......... 24% 170M 1s +2024-05-06T17:08:34Z #15 1.951 31200K .......... .......... .......... .......... .......... 24% 126M 1s +2024-05-06T17:08:34Z #15 1.951 31250K .......... .......... .......... .......... .......... 24% 136M 1s +2024-05-06T17:08:34Z #15 1.951 31300K .......... .......... .......... .......... .......... 24% 129M 1s +2024-05-06T17:08:34Z #15 1.951 31350K .......... .......... .......... .......... .......... 24% 171M 1s +2024-05-06T17:08:34Z #15 1.951 31400K .......... .......... .......... .......... .......... 24% 120M 1s +2024-05-06T17:08:34Z #15 1.951 31450K .......... .......... .......... .......... .......... 24% 27.0M 1s +2024-05-06T17:08:34Z #15 1.953 31500K .......... .......... .......... .......... .......... 24% 38.3M 1s +2024-05-06T17:08:34Z #15 1.959 31550K .......... .......... .......... .......... .......... 24% 124M 1s +2024-05-06T17:08:34Z #15 1.959 31600K .......... .......... .......... .......... .......... 24% 119M 1s +2024-05-06T17:08:34Z #15 1.959 31650K .......... .......... .......... .......... .......... 24% 112M 1s +2024-05-06T17:08:34Z #15 1.959 31700K .......... .......... .......... .......... .......... 24% 116M 1s +2024-05-06T17:08:34Z #15 1.959 31750K .......... .......... .......... .......... .......... 24% 119M 1s +2024-05-06T17:08:34Z #15 1.959 31800K .......... .......... .......... .......... .......... 24% 103M 1s +2024-05-06T17:08:34Z #15 1.959 31850K .......... .......... .......... .......... .......... 24% 122M 1s +2024-05-06T17:08:34Z #15 1.959 31900K .......... .......... .......... .......... .......... 25% 118M 1s +2024-05-06T17:08:34Z #15 1.959 31950K .......... .......... .......... .......... .......... 25% 124M 1s +2024-05-06T17:08:34Z #15 1.959 32000K .......... .......... .......... .......... .......... 25% 130M 1s +2024-05-06T17:08:34Z #15 1.959 32050K .......... .......... .......... .......... .......... 25% 116M 1s +2024-05-06T17:08:34Z #15 1.959 32100K .......... .......... .......... .......... .......... 25% 136M 1s +2024-05-06T17:08:34Z #15 1.959 32150K .......... .......... .......... .......... .......... 25% 19.8M 1s +2024-05-06T17:08:34Z #15 1.962 32200K .......... .......... .......... .......... .......... 25% 56.2M 1s +2024-05-06T17:08:34Z #15 1.962 32250K .......... .......... .......... .......... .......... 25% 120M 1s +2024-05-06T17:08:34Z #15 1.967 32300K .......... .......... .......... .......... .......... 25% 113M 1s +2024-05-06T17:08:34Z #15 1.967 32350K .......... .......... .......... .......... .......... 25% 100M 1s +2024-05-06T17:08:34Z #15 1.967 32400K .......... .......... .......... .......... .......... 25% 89.5M 1s +2024-05-06T17:08:34Z #15 1.967 32450K .......... .......... .......... .......... .......... 25% 128M 1s +2024-05-06T17:08:34Z #15 1.967 32500K .......... .......... .......... .......... .......... 25% 108M 1s +2024-05-06T17:08:34Z #15 1.967 32550K .......... .......... .......... .......... .......... 25% 110M 1s +2024-05-06T17:08:34Z #15 1.967 32600K .......... .......... .......... .......... .......... 25% 113M 1s +2024-05-06T17:08:34Z #15 1.967 32650K .......... .......... .......... .......... .......... 25% 96.1M 1s +2024-05-06T17:08:34Z #15 1.967 32700K .......... .......... .......... .......... .......... 25% 120M 1s +2024-05-06T17:08:34Z #15 1.967 32750K .......... .......... .......... .......... .......... 25% 60.7M 1s +2024-05-06T17:08:34Z #15 1.971 32800K .......... .......... .......... .......... .......... 25% 114M 1s +2024-05-06T17:08:34Z #15 1.971 32850K .......... .......... .......... .......... .......... 25% 116M 1s +2024-05-06T17:08:34Z #15 1.971 32900K .......... .......... .......... .......... .......... 25% 118M 1s +2024-05-06T17:08:34Z #15 1.971 32950K .......... .......... .......... .......... .......... 25% 115M 1s +2024-05-06T17:08:34Z #15 1.971 33000K .......... .......... .......... .......... .......... 25% 111M 1s +2024-05-06T17:08:34Z #15 1.971 33050K .......... .......... .......... .......... .......... 25% 120M 1s +2024-05-06T17:08:34Z #15 1.971 33100K .......... .......... .......... .......... .......... 25% 115M 1s +2024-05-06T17:08:34Z #15 1.971 33150K .......... .......... .......... .......... .......... 25% 105M 1s +2024-05-06T17:08:34Z #15 1.971 33200K .......... .......... .......... .......... .......... 26% 51.4M 1s +2024-05-06T17:08:34Z #15 1.975 33250K .......... .......... .......... .......... .......... 26% 112M 1s +2024-05-06T17:08:34Z #15 1.975 33300K .......... .......... .......... .......... .......... 26% 117M 1s +2024-05-06T17:08:34Z #15 1.975 33350K .......... .......... .......... .......... .......... 26% 107M 1s +2024-05-06T17:08:34Z #15 1.975 33400K .......... .......... .......... .......... .......... 26% 110M 1s +2024-05-06T17:08:34Z #15 1.975 33450K .......... .......... .......... .......... .......... 26% 110M 1s +2024-05-06T17:08:34Z #15 1.975 33500K .......... .......... .......... .......... .......... 26% 114M 1s +2024-05-06T17:08:34Z #15 1.975 33550K .......... .......... .......... .......... .......... 26% 72.9M 1s +2024-05-06T17:08:34Z #15 1.975 33600K .......... .......... .......... .......... .......... 26% 52.3M 1s +2024-05-06T17:08:34Z #15 1.979 33650K .......... .......... .......... .......... .......... 26% 136M 1s +2024-05-06T17:08:34Z #15 1.979 33700K .......... .......... .......... .......... .......... 26% 105M 1s +2024-05-06T17:08:34Z #15 1.979 33750K .......... .......... .......... .......... .......... 26% 114M 1s +2024-05-06T17:08:34Z #15 1.979 33800K .......... .......... .......... .......... .......... 26% 97.9M 1s +2024-05-06T17:08:34Z #15 1.979 33850K .......... .......... .......... .......... .......... 26% 110M 1s +2024-05-06T17:08:34Z #15 1.979 33900K .......... .......... .......... .......... .......... 26% 119M 1s +2024-05-06T17:08:34Z #15 1.979 33950K .......... .......... .......... .......... .......... 26% 58.0M 1s +2024-05-06T17:08:34Z #15 1.980 34000K .......... .......... .......... .......... .......... 26% 44.5M 1s +2024-05-06T17:08:34Z #15 1.981 34050K .......... .......... .......... .......... .......... 26% 47.1M 1s +2024-05-06T17:08:34Z #15 1.982 34100K .......... .......... .......... .......... .......... 26% 80.1M 1s +2024-05-06T17:08:34Z #15 1.987 34150K .......... .......... .......... .......... .......... 26% 142M 1s +2024-05-06T17:08:34Z #15 1.987 34200K .......... .......... .......... .......... .......... 26% 106M 1s +2024-05-06T17:08:34Z #15 1.987 34250K .......... .......... .......... .......... .......... 26% 136M 1s +2024-05-06T17:08:34Z #15 1.987 34300K .......... .......... .......... .......... .......... 26% 128M 1s +2024-05-06T17:08:34Z #15 1.987 34350K .......... .......... .......... .......... .......... 26% 110M 1s +2024-05-06T17:08:34Z #15 1.987 34400K .......... .......... .......... .......... .......... 26% 104M 1s +2024-05-06T17:08:34Z #15 1.987 34450K .......... .......... .......... .......... .......... 26% 152M 1s +2024-05-06T17:08:34Z #15 1.987 34500K .......... .......... .......... .......... .......... 27% 112M 1s +2024-05-06T17:08:34Z #15 1.987 34550K .......... .......... .......... .......... .......... 27% 130M 1s +2024-05-06T17:08:34Z #15 1.987 34600K .......... .......... .......... .......... .......... 27% 103M 1s +2024-05-06T17:08:34Z #15 1.987 34650K .......... .......... .......... .......... .......... 27% 110M 1s +2024-05-06T17:08:34Z #15 1.987 34700K .......... .......... .......... .......... .......... 27% 65.4M 1s +2024-05-06T17:08:34Z #15 1.991 34750K .......... .......... .......... .......... .......... 27% 121M 1s +2024-05-06T17:08:34Z #15 1.991 34800K .......... .......... .......... .......... .......... 27% 109M 1s +2024-05-06T17:08:34Z #15 1.991 34850K .......... .......... .......... .......... .......... 27% 103M 1s +2024-05-06T17:08:34Z #15 1.991 34900K .......... .......... .......... .......... .......... 27% 117M 1s +2024-05-06T17:08:34Z #15 1.991 34950K .......... .......... .......... .......... .......... 27% 124M 1s +2024-05-06T17:08:34Z #15 1.991 35000K .......... .......... .......... .......... .......... 27% 95.1M 1s +2024-05-06T17:08:34Z #15 1.991 35050K .......... .......... .......... .......... .......... 27% 111M 1s +2024-05-06T17:08:34Z #15 1.991 35100K .......... .......... .......... .......... .......... 27% 74.5M 1s +2024-05-06T17:08:34Z #15 1.991 35150K .......... .......... .......... .......... .......... 27% 92.3M 1s +2024-05-06T17:08:34Z #15 1.995 35200K .......... .......... .......... .......... .......... 27% 115M 1s +2024-05-06T17:08:34Z #15 1.995 35250K .......... .......... .......... .......... .......... 27% 130M 1s +2024-05-06T17:08:34Z #15 1.995 35300K .......... .......... .......... .......... .......... 27% 140M 1s +2024-05-06T17:08:34Z #15 1.995 35350K .......... .......... .......... .......... .......... 27% 126M 1s +2024-05-06T17:08:34Z #15 1.995 35400K .......... .......... .......... .......... .......... 27% 111M 1s +2024-05-06T17:08:34Z #15 1.995 35450K .......... .......... .......... .......... .......... 27% 108M 1s +2024-05-06T17:08:34Z #15 1.995 35500K .......... .......... .......... .......... .......... 27% 133M 1s +2024-05-06T17:08:34Z #15 1.995 35550K .......... .......... .......... .......... .......... 27% 70.1M 1s +2024-05-06T17:08:34Z #15 1.995 35600K .......... .......... .......... .......... .......... 27% 65.1M 1s +2024-05-06T17:08:34Z #15 1.999 35650K .......... .......... .......... .......... .......... 27% 143M 1s +2024-05-06T17:08:34Z #15 1.999 35700K .......... .......... .......... .......... .......... 27% 143M 1s +2024-05-06T17:08:34Z #15 1.999 35750K .......... .......... .......... .......... .......... 28% 150M 1s +2024-05-06T17:08:34Z #15 1.999 35800K .......... .......... .......... .......... .......... 28% 82.4M 1s +2024-05-06T17:08:34Z #15 1.999 35850K .......... .......... .......... .......... .......... 28% 130M 1s +2024-05-06T17:08:34Z #15 1.999 35900K .......... .......... .......... .......... .......... 28% 107M 1s +2024-05-06T17:08:34Z #15 1.999 35950K .......... .......... .......... .......... .......... 28% 140M 1s +2024-05-06T17:08:34Z #15 1.999 36000K .......... .......... .......... .......... .......... 28% 43.8M 1s +2024-05-06T17:08:34Z #15 2.003 36050K .......... .......... .......... .......... .......... 28% 121M 1s +2024-05-06T17:08:34Z #15 2.003 36100K .......... .......... .......... .......... .......... 28% 110M 1s +2024-05-06T17:08:34Z #15 2.003 36150K .......... .......... .......... .......... .......... 28% 113M 1s +2024-05-06T17:08:34Z #15 2.003 36200K .......... .......... .......... .......... .......... 28% 102M 1s +2024-05-06T17:08:34Z #15 2.003 36250K .......... .......... .......... .......... .......... 28% 111M 1s +2024-05-06T17:08:34Z #15 2.003 36300K .......... .......... .......... .......... .......... 28% 108M 1s +2024-05-06T17:08:34Z #15 2.003 36350K .......... .......... .......... .......... .......... 28% 72.8M 1s +2024-05-06T17:08:34Z #15 2.003 36400K .......... .......... .......... .......... .......... 28% 53.9M 1s +2024-05-06T17:08:34Z #15 2.007 36450K .......... .......... .......... .......... .......... 28% 135M 1s +2024-05-06T17:08:34Z #15 2.007 36500K .......... .......... .......... .......... .......... 28% 103M 1s +2024-05-06T17:08:34Z #15 2.007 36550K .......... .......... .......... .......... .......... 28% 117M 1s +2024-05-06T17:08:34Z #15 2.007 36600K .......... .......... .......... .......... .......... 28% 98.3M 1s +2024-05-06T17:08:34Z #15 2.007 36650K .......... .......... .......... .......... .......... 28% 121M 1s +2024-05-06T17:08:34Z #15 2.007 36700K .......... .......... .......... .......... .......... 28% 118M 1s +2024-05-06T17:08:34Z #15 2.007 36750K .......... .......... .......... .......... .......... 28% 65.0M 1s +2024-05-06T17:08:34Z #15 2.011 36800K .......... .......... .......... .......... .......... 28% 125M 1s +2024-05-06T17:08:34Z #15 2.011 36850K .......... .......... .......... .......... .......... 28% 104M 1s +2024-05-06T17:08:34Z #15 2.011 36900K .......... .......... .......... .......... .......... 28% 117M 1s +2024-05-06T17:08:34Z #15 2.011 36950K .......... .......... .......... .......... .......... 28% 119M 1s +2024-05-06T17:08:34Z #15 2.011 37000K .......... .......... .......... .......... .......... 28% 105M 1s +2024-05-06T17:08:34Z #15 2.011 37050K .......... .......... .......... .......... .......... 29% 119M 1s +2024-05-06T17:08:34Z #15 2.011 37100K .......... .......... .......... .......... .......... 29% 131M 1s +2024-05-06T17:08:34Z #15 2.011 37150K .......... .......... .......... .......... .......... 29% 117M 1s +2024-05-06T17:08:34Z #15 2.011 37200K .......... .......... .......... .......... .......... 29% 58.7M 1s +2024-05-06T17:08:34Z #15 2.015 37250K .......... .......... .......... .......... .......... 29% 125M 1s +2024-05-06T17:08:34Z #15 2.015 37300K .......... .......... .......... .......... .......... 29% 118M 1s +2024-05-06T17:08:34Z #15 2.015 37350K .......... .......... .......... .......... .......... 29% 118M 1s +2024-05-06T17:08:34Z #15 2.015 37400K .......... .......... .......... .......... .......... 29% 102M 1s +2024-05-06T17:08:34Z #15 2.015 37450K .......... .......... .......... .......... .......... 29% 126M 1s +2024-05-06T17:08:34Z #15 2.015 37500K .......... .......... .......... .......... .......... 29% 134M 1s +2024-05-06T17:08:34Z #15 2.015 37550K .......... .......... .......... .......... .......... 29% 145M 1s +2024-05-06T17:08:34Z #15 2.015 37600K .......... .......... .......... .......... .......... 29% 80.3M 1s +2024-05-06T17:08:34Z #15 2.015 37650K .......... .......... .......... .......... .......... 29% 50.6M 1s +2024-05-06T17:08:34Z #15 2.016 37700K .......... .......... .......... .......... .......... 29% 21.4M 1s +2024-05-06T17:08:34Z #15 2.019 37750K .......... .......... .......... .......... .......... 29% 73.4M 1s +2024-05-06T17:08:34Z #15 2.019 37800K .......... .......... .......... .......... .......... 29% 40.7M 1s +2024-05-06T17:08:34Z #15 2.020 37850K .......... .......... .......... .......... .......... 29% 28.0M 1s +2024-05-06T17:08:34Z #15 2.022 37900K .......... .......... .......... .......... .......... 29% 28.7M 1s +2024-05-06T17:08:34Z #15 2.024 37950K .......... .......... .......... .......... .......... 29% 28.1M 1s +2024-05-06T17:08:34Z #15 2.026 38000K .......... .......... .......... .......... .......... 29% 26.6M 1s +2024-05-06T17:08:34Z #15 2.027 38050K .......... .......... .......... .......... .......... 29% 28.4M 1s +2024-05-06T17:08:34Z #15 2.029 38100K .......... .......... .......... .......... .......... 29% 28.5M 1s +2024-05-06T17:08:34Z #15 2.031 38150K .......... .......... .......... .......... .......... 29% 26.8M 1s +2024-05-06T17:08:34Z #15 2.033 38200K .......... .......... .......... .......... .......... 29% 24.9M 1s +2024-05-06T17:08:34Z #15 2.035 38250K .......... .......... .......... .......... .......... 29% 28.4M 1s +2024-05-06T17:08:34Z #15 2.037 38300K .......... .......... .......... .......... .......... 30% 30.2M 1s +2024-05-06T17:08:34Z #15 2.038 38350K .......... .......... .......... .......... .......... 30% 27.9M 1s +2024-05-06T17:08:34Z #15 2.040 38400K .......... .......... .......... .......... .......... 30% 26.6M 1s +2024-05-06T17:08:34Z #15 2.042 38450K .......... .......... .......... .......... .......... 30% 26.7M 1s +2024-05-06T17:08:34Z #15 2.043 38500K .......... .......... .......... .......... .......... 30% 33.7M 1s +2024-05-06T17:08:34Z #15 2.045 38550K .......... .......... .......... .......... .......... 30% 29.8M 1s +2024-05-06T17:08:34Z #15 2.047 38600K .......... .......... .......... .......... .......... 30% 25.2M 1s +2024-05-06T17:08:34Z #15 2.048 38650K .......... .......... .......... .......... .......... 30% 27.8M 1s +2024-05-06T17:08:34Z #15 2.050 38700K .......... .......... .......... .......... .......... 30% 37.5M 1s +2024-05-06T17:08:34Z #15 2.051 38750K .......... .......... .......... .......... .......... 30% 28.8M 1s +2024-05-06T17:08:34Z #15 2.053 38800K .......... .......... .......... .......... .......... 30% 28.9M 1s +2024-05-06T17:08:34Z #15 2.055 38850K .......... .......... .......... .......... .......... 30% 31.3M 1s +2024-05-06T17:08:34Z #15 2.056 38900K .......... .......... .......... .......... .......... 30% 29.2M 1s +2024-05-06T17:08:34Z #15 2.058 38950K .......... .......... .......... .......... .......... 30% 31.1M 1s +2024-05-06T17:08:34Z #15 2.060 39000K .......... .......... .......... .......... .......... 30% 33.2M 1s +2024-05-06T17:08:34Z #15 2.061 39050K .......... .......... .......... .......... .......... 30% 29.8M 1s +2024-05-06T17:08:34Z #15 2.063 39100K .......... .......... .......... .......... .......... 30% 29.0M 1s +2024-05-06T17:08:34Z #15 2.064 39150K .......... .......... .......... .......... .......... 30% 29.7M 1s +2024-05-06T17:08:34Z #15 2.066 39200K .......... .......... .......... .......... .......... 30% 25.5M 1s +2024-05-06T17:08:34Z #15 2.068 39250K .......... .......... .......... .......... .......... 30% 28.8M 1s +2024-05-06T17:08:34Z #15 2.070 39300K .......... .......... .......... .......... .......... 30% 28.6M 1s +2024-05-06T17:08:34Z #15 2.071 39350K .......... .......... .......... .......... .......... 30% 26.6M 1s +2024-05-06T17:08:34Z #15 2.073 39400K .......... .......... .......... .......... .......... 30% 26.1M 1s +2024-05-06T17:08:34Z #15 2.075 39450K .......... .......... .......... .......... .......... 30% 29.6M 1s +2024-05-06T17:08:34Z #15 2.077 39500K .......... .......... .......... .......... .......... 30% 29.4M 1s +2024-05-06T17:08:34Z #15 2.078 39550K .......... .......... .......... .......... .......... 30% 29.7M 1s +2024-05-06T17:08:34Z #15 2.080 39600K .......... .......... .......... .......... .......... 31% 26.1M 1s +2024-05-06T17:08:34Z #15 2.082 39650K .......... .......... .......... .......... .......... 31% 26.8M 1s +2024-05-06T17:08:34Z #15 2.084 39700K .......... .......... .......... .......... .......... 31% 29.3M 1s +2024-05-06T17:08:34Z #15 2.085 39750K .......... .......... .......... .......... .......... 31% 28.1M 1s +2024-05-06T17:08:34Z #15 2.087 39800K .......... .......... .......... .......... .......... 31% 24.5M 1s +2024-05-06T17:08:34Z #15 2.089 39850K .......... .......... .......... .......... .......... 31% 27.9M 1s +2024-05-06T17:08:34Z #15 2.091 39900K .......... .......... .......... .......... .......... 31% 28.0M 1s +2024-05-06T17:08:34Z #15 2.093 39950K .......... .......... .......... .......... .......... 31% 29.0M 1s +2024-05-06T17:08:34Z #15 2.094 40000K .......... .......... .......... .......... .......... 31% 25.2M 1s +2024-05-06T17:08:34Z #15 2.096 40050K .......... .......... .......... .......... .......... 31% 28.5M 1s +2024-05-06T17:08:34Z #15 2.098 40100K .......... .......... .......... .......... .......... 31% 28.8M 1s +2024-05-06T17:08:34Z #15 2.100 40150K .......... .......... .......... .......... .......... 31% 28.2M 1s +2024-05-06T17:08:34Z #15 2.101 40200K .......... .......... .......... .......... .......... 31% 23.5M 1s +2024-05-06T17:08:34Z #15 2.104 40250K .......... .......... .......... .......... .......... 31% 19.5M 1s +2024-05-06T17:08:34Z #15 2.106 40300K .......... .......... .......... .......... .......... 31% 14.8M 1s +2024-05-06T17:08:34Z #15 2.109 40350K .......... .......... .......... .......... .......... 31% 21.2M 1s +2024-05-06T17:08:34Z #15 2.112 40400K .......... .......... .......... .......... .......... 31% 15.8M 1s +2024-05-06T17:08:34Z #15 2.115 40450K .......... .......... .......... .......... .......... 31% 27.7M 1s +2024-05-06T17:08:34Z #15 2.116 40500K .......... .......... .......... .......... .......... 31% 26.4M 1s +2024-05-06T17:08:34Z #15 2.118 40550K .......... .......... .......... .......... .......... 31% 27.0M 1s +2024-05-06T17:08:34Z #15 2.120 40600K .......... .......... .......... .......... .......... 31% 22.4M 1s +2024-05-06T17:08:34Z #15 2.123 40650K .......... .......... .......... .......... .......... 31% 30.2M 1s +2024-05-06T17:08:34Z #15 2.124 40700K .......... .......... .......... .......... .......... 31% 28.8M 1s +2024-05-06T17:08:34Z #15 2.126 40750K .......... .......... .......... .......... .......... 31% 30.1M 1s +2024-05-06T17:08:34Z #15 2.127 40800K .......... .......... .......... .......... .......... 31% 26.1M 1s +2024-05-06T17:08:34Z #15 2.130 40850K .......... .......... .......... .......... .......... 32% 33.0M 1s +2024-05-06T17:08:34Z #15 2.131 40900K .......... .......... .......... .......... .......... 32% 38.1M 1s +2024-05-06T17:08:34Z #15 2.132 40950K .......... .......... .......... .......... .......... 32% 32.4M 1s +2024-05-06T17:08:34Z #15 2.134 41000K .......... .......... .......... .......... .......... 32% 26.3M 1s +2024-05-06T17:08:34Z #15 2.135 41050K .......... .......... .......... .......... .......... 32% 29.8M 1s +2024-05-06T17:08:34Z #15 2.137 41100K .......... .......... .......... .......... .......... 32% 37.6M 1s +2024-05-06T17:08:34Z #15 2.138 41150K .......... .......... .......... .......... .......... 32% 38.6M 1s +2024-05-06T17:08:34Z #15 2.143 41200K .......... .......... .......... .......... .......... 32% 35.1M 1s +2024-05-06T17:08:34Z #15 2.143 41250K .......... .......... .......... .......... .......... 32% 41.1M 1s +2024-05-06T17:08:34Z #15 2.143 41300K .......... .......... .......... .......... .......... 32% 40.2M 1s +2024-05-06T17:08:34Z #15 2.147 41350K .......... .......... .......... .......... .......... 32% 129M 1s +2024-05-06T17:08:34Z #15 2.147 41400K .......... .......... .......... .......... .......... 32% 115M 1s +2024-05-06T17:08:34Z #15 2.147 41450K .......... .......... .......... .......... .......... 32% 157M 1s +2024-05-06T17:08:34Z #15 2.147 41500K .......... .......... .......... .......... .......... 32% 139M 1s +2024-05-06T17:08:34Z #15 2.147 41550K .......... .......... .......... .......... .......... 32% 160M 1s +2024-05-06T17:08:34Z #15 2.147 41600K .......... .......... .......... .......... .......... 32% 136M 1s +2024-05-06T17:08:34Z #15 2.147 41650K .......... .......... .......... .......... .......... 32% 127M 1s +2024-05-06T17:08:34Z #15 2.147 41700K .......... .......... .......... .......... .......... 32% 157M 1s +2024-05-06T17:08:34Z #15 2.147 41750K .......... .......... .......... .......... .......... 32% 148M 1s +2024-05-06T17:08:34Z #15 2.147 41800K .......... .......... .......... .......... .......... 32% 136M 1s +2024-05-06T17:08:34Z #15 2.147 41850K .......... .......... .......... .......... .......... 32% 150M 1s +2024-05-06T17:08:34Z #15 2.147 41900K .......... .......... .......... .......... .......... 32% 42.8M 1s +2024-05-06T17:08:34Z #15 2.148 41950K .......... .......... .......... .......... .......... 32% 38.8M 1s +2024-05-06T17:08:34Z #15 2.149 42000K .......... .......... .......... .......... .......... 32% 35.9M 1s +2024-05-06T17:08:34Z #15 2.151 42050K .......... .......... .......... .......... .......... 32% 40.6M 1s +2024-05-06T17:08:34Z #15 2.152 42100K .......... .......... .......... .......... .......... 32% 40.8M 1s +2024-05-06T17:08:34Z #15 2.159 42150K .......... .......... .......... .......... .......... 33% 39.9M 1s +2024-05-06T17:08:34Z #15 2.159 42200K .......... .......... .......... .......... .......... 33% 36.9M 1s +2024-05-06T17:08:34Z #15 2.159 42250K .......... .......... .......... .......... .......... 33% 41.3M 1s +2024-05-06T17:08:34Z #15 2.159 42300K .......... .......... .......... .......... .......... 33% 35.5M 1s +2024-05-06T17:08:34Z #15 2.159 42350K .......... .......... .......... .......... .......... 33% 31.0M 1s +2024-05-06T17:08:34Z #15 2.160 42400K .......... .......... .......... .......... .......... 33% 32.8M 1s +2024-05-06T17:08:34Z #15 2.161 42450K .......... .......... .......... .......... .......... 33% 39.0M 1s +2024-05-06T17:08:34Z #15 2.163 42500K .......... .......... .......... .......... .......... 33% 48.6M 1s +2024-05-06T17:08:34Z #15 2.164 42550K .......... .......... .......... .......... .......... 33% 50.4M 1s +2024-05-06T17:08:34Z #15 2.165 42600K .......... .......... .......... .......... .......... 33% 99.1M 1s +2024-05-06T17:08:34Z #15 2.165 42650K .......... .......... .......... .......... .......... 33% 53.3M 1s +2024-05-06T17:08:34Z #15 2.166 42700K .......... .......... .......... .......... .......... 33% 9.28M 1s +2024-05-06T17:08:34Z #15 2.171 42750K .......... .......... .......... .......... .......... 33% 119M 1s +2024-05-06T17:08:34Z #15 2.171 42800K .......... .......... .......... .......... .......... 33% 99.3M 1s +2024-05-06T17:08:34Z #15 2.172 42850K .......... .......... .......... .......... .......... 33% 138M 1s +2024-05-06T17:08:34Z #15 2.173 42900K .......... .......... .......... .......... .......... 33% 127M 1s +2024-05-06T17:08:34Z #15 2.173 42950K .......... .......... .......... .......... .......... 33% 133M 1s +2024-05-06T17:08:34Z #15 2.173 43000K .......... .......... .......... .......... .......... 33% 110M 1s +2024-05-06T17:08:34Z #15 2.174 43050K .......... .......... .......... .......... .......... 33% 156M 1s +2024-05-06T17:08:34Z #15 2.174 43100K .......... .......... .......... .......... .......... 33% 127M 1s +2024-05-06T17:08:34Z #15 2.178 43150K .......... .......... .......... .......... .......... 33% 167M 1s +2024-05-06T17:08:34Z #15 2.178 43200K .......... .......... .......... .......... .......... 33% 148M 1s +2024-05-06T17:08:34Z #15 2.178 43250K .......... .......... .......... .......... .......... 33% 15.9M 1s +2024-05-06T17:08:34Z #15 2.178 43300K .......... .......... .......... .......... .......... 33% 139M 1s +2024-05-06T17:08:34Z #15 2.178 43350K .......... .......... .......... .......... .......... 33% 156M 1s +2024-05-06T17:08:34Z #15 2.179 43400K .......... .......... .......... .......... .......... 34% 113M 1s +2024-05-06T17:08:34Z #15 2.179 43450K .......... .......... .......... .......... .......... 34% 124M 1s +2024-05-06T17:08:34Z #15 2.180 43500K .......... .......... .......... .......... .......... 34% 123M 1s +2024-05-06T17:08:34Z #15 2.181 43550K .......... .......... .......... .......... .......... 34% 126M 1s +2024-05-06T17:08:34Z #15 2.181 43600K .......... .......... .......... .......... .......... 34% 121M 1s +2024-05-06T17:08:34Z #15 2.181 43650K .......... .......... .......... .......... .......... 34% 137M 1s +2024-05-06T17:08:34Z #15 2.181 43700K .......... .......... .......... .......... .......... 34% 115M 1s +2024-05-06T17:08:34Z #15 2.182 43750K .......... .......... .......... .......... .......... 34% 115M 1s +2024-05-06T17:08:34Z #15 2.182 43800K .......... .......... .......... .......... .......... 34% 101M 1s +2024-05-06T17:08:34Z #15 2.183 43850K .......... .......... .......... .......... .......... 34% 118M 1s +2024-05-06T17:08:34Z #15 2.183 43900K .......... .......... .......... .......... .......... 34% 86.3M 1s +2024-05-06T17:08:34Z #15 2.184 43950K .......... .......... .......... .......... .......... 34% 101M 1s +2024-05-06T17:08:34Z #15 2.184 44000K .......... .......... .......... .......... .......... 34% 127M 1s +2024-05-06T17:08:34Z #15 2.184 44050K .......... .......... .......... .......... .......... 34% 109M 1s +2024-05-06T17:08:34Z #15 2.186 44100K .......... .......... .......... .......... .......... 34% 101M 1s +2024-05-06T17:08:34Z #15 2.186 44150K .......... .......... .......... .......... .......... 34% 112M 1s +2024-05-06T17:08:34Z #15 2.186 44200K .......... .......... .......... .......... .......... 34% 95.0M 1s +2024-05-06T17:08:34Z #15 2.186 44250K .......... .......... .......... .......... .......... 34% 102M 1s +2024-05-06T17:08:34Z #15 2.187 44300K .......... .......... .......... .......... .......... 34% 118M 1s +2024-05-06T17:08:34Z #15 2.190 44350K .......... .......... .......... .......... .......... 34% 20.8M 1s +2024-05-06T17:08:34Z #15 2.190 44400K .......... .......... .......... .......... .......... 34% 101M 1s +2024-05-06T17:08:34Z #15 2.190 44450K .......... .......... .......... .......... .......... 34% 117M 1s +2024-05-06T17:08:34Z #15 2.190 44500K .......... .......... .......... .......... .......... 34% 36.8M 1s +2024-05-06T17:08:34Z #15 2.194 44550K .......... .......... .......... .......... .......... 34% 120M 1s +2024-05-06T17:08:34Z #15 2.194 44600K .......... .......... .......... .......... .......... 34% 95.6M 1s +2024-05-06T17:08:34Z #15 2.194 44650K .......... .......... .......... .......... .......... 34% 114M 1s +2024-05-06T17:08:34Z #15 2.194 44700K .......... .......... .......... .......... .......... 35% 153M 1s +2024-05-06T17:08:34Z #15 2.194 44750K .......... .......... .......... .......... .......... 35% 101M 1s +2024-05-06T17:08:34Z #15 2.195 44800K .......... .......... .......... .......... .......... 35% 26.2M 1s +2024-05-06T17:08:34Z #15 2.195 44850K .......... .......... .......... .......... .......... 35% 110M 1s +2024-05-06T17:08:34Z #15 2.196 44900K .......... .......... .......... .......... .......... 35% 118M 1s +2024-05-06T17:08:34Z #15 2.196 44950K .......... .......... .......... .......... .......... 35% 32.7M 1s +2024-05-06T17:08:34Z #15 2.198 45000K .......... .......... .......... .......... .......... 35% 98.8M 1s +2024-05-06T17:08:34Z #15 2.199 45050K .......... .......... .......... .......... .......... 35% 144M 1s +2024-05-06T17:08:34Z #15 2.199 45100K .......... .......... .......... .......... .......... 35% 111M 1s +2024-05-06T17:08:34Z #15 2.199 45150K .......... .......... .......... .......... .......... 35% 118M 1s +2024-05-06T17:08:34Z #15 2.200 45200K .......... .......... .......... .......... .......... 35% 108M 1s +2024-05-06T17:08:34Z #15 2.200 45250K .......... .......... .......... .......... .......... 35% 114M 1s +2024-05-06T17:08:34Z #15 2.200 45300K .......... .......... .......... .......... .......... 35% 97.4M 1s +2024-05-06T17:08:34Z #15 2.201 45350K .......... .......... .......... .......... .......... 35% 158M 1s +2024-05-06T17:08:34Z #15 2.201 45400K .......... .......... .......... .......... .......... 35% 95.3M 1s +2024-05-06T17:08:34Z #15 2.202 45450K .......... .......... .......... .......... .......... 35% 100M 1s +2024-05-06T17:08:34Z #15 2.202 45500K .......... .......... .......... .......... .......... 35% 100M 1s +2024-05-06T17:08:34Z #15 2.204 45550K .......... .......... .......... .......... .......... 35% 12.3M 1s +2024-05-06T17:08:34Z #15 2.209 45600K .......... .......... .......... .......... .......... 35% 100M 1s +2024-05-06T17:08:34Z #15 2.209 45650K .......... .......... .......... .......... .......... 35% 114M 1s +2024-05-06T17:08:34Z #15 2.209 45700K .......... .......... .......... .......... .......... 35% 130M 1s +2024-05-06T17:08:34Z #15 2.209 45750K .......... .......... .......... .......... .......... 35% 120M 1s +2024-05-06T17:08:34Z #15 2.209 45800K .......... .......... .......... .......... .......... 35% 101M 1s +2024-05-06T17:08:34Z #15 2.209 45850K .......... .......... .......... .......... .......... 35% 108M 1s +2024-05-06T17:08:34Z #15 2.209 45900K .......... .......... .......... .......... .......... 35% 119M 1s +2024-05-06T17:08:34Z #15 2.210 45950K .......... .......... .......... .......... .......... 35% 119M 1s +2024-05-06T17:08:34Z #15 2.210 46000K .......... .......... .......... .......... .......... 36% 117M 1s +2024-05-06T17:08:34Z #15 2.211 46050K .......... .......... .......... .......... .......... 36% 14.6M 1s +2024-05-06T17:08:34Z #15 2.214 46100K .......... .......... .......... .......... .......... 36% 59.6M 1s +2024-05-06T17:08:34Z #15 2.215 46150K .......... .......... .......... .......... .......... 36% 123M 1s +2024-05-06T17:08:34Z #15 2.215 46200K .......... .......... .......... .......... .......... 36% 98.2M 1s +2024-05-06T17:08:34Z #15 2.216 46250K .......... .......... .......... .......... .......... 36% 111M 1s +2024-05-06T17:08:34Z #15 2.216 46300K .......... .......... .......... .......... .......... 36% 140M 1s +2024-05-06T17:08:34Z #15 2.216 46350K .......... .......... .......... .......... .......... 36% 119M 1s +2024-05-06T17:08:34Z #15 2.221 46400K .......... .......... .......... .......... .......... 36% 121M 1s +2024-05-06T17:08:34Z #15 2.221 46450K .......... .......... .......... .......... .......... 36% 113M 1s +2024-05-06T17:08:34Z #15 2.221 46500K .......... .......... .......... .......... .......... 36% 114M 1s +2024-05-06T17:08:34Z #15 2.221 46550K .......... .......... .......... .......... .......... 36% 127M 1s +2024-05-06T17:08:34Z #15 2.221 46600K .......... .......... .......... .......... .......... 36% 103M 1s +2024-05-06T17:08:34Z #15 2.222 46650K .......... .......... .......... .......... .......... 36% 15.2M 1s +2024-05-06T17:08:34Z #15 2.222 46700K .......... .......... .......... .......... .......... 36% 114M 1s +2024-05-06T17:08:34Z #15 2.223 46750K .......... .......... .......... .......... .......... 36% 115M 1s +2024-05-06T17:08:34Z #15 2.224 46800K .......... .......... .......... .......... .......... 36% 116M 1s +2024-05-06T17:08:34Z #15 2.224 46850K .......... .......... .......... .......... .......... 36% 105M 1s +2024-05-06T17:08:34Z #15 2.225 46900K .......... .......... .......... .......... .......... 36% 167M 1s +2024-05-06T17:08:34Z #15 2.225 46950K .......... .......... .......... .......... .......... 36% 156M 1s +2024-05-06T17:08:34Z #15 2.225 47000K .......... .......... .......... .......... .......... 36% 93.6M 1s +2024-05-06T17:08:34Z #15 2.225 47050K .......... .......... .......... .......... .......... 36% 111M 1s +2024-05-06T17:08:34Z #15 2.226 47100K .......... .......... .......... .......... .......... 36% 110M 1s +2024-05-06T17:08:34Z #15 2.226 47150K .......... .......... .......... .......... .......... 36% 99.5M 1s +2024-05-06T17:08:34Z #15 2.227 47200K .......... .......... .......... .......... .......... 36% 111M 1s +2024-05-06T17:08:34Z #15 2.228 47250K .......... .......... .......... .......... .......... 37% 10.2M 1s +2024-05-06T17:08:34Z #15 2.233 47300K .......... .......... .......... .......... .......... 37% 48.8M 1s +2024-05-06T17:08:34Z #15 2.233 47350K .......... .......... .......... .......... .......... 37% 42.5M 1s +2024-05-06T17:08:34Z #15 2.234 47400K .......... .......... .......... .......... .......... 37% 39.1M 1s +2024-05-06T17:08:34Z #15 2.251 47450K .......... .......... .......... .......... .......... 37% 112M 1s +2024-05-06T17:08:34Z #15 2.251 47500K .......... .......... .......... .......... .......... 37% 74.1M 1s +2024-05-06T17:08:34Z #15 2.251 47550K .......... .......... .......... .......... .......... 37% 89.8M 1s +2024-05-06T17:08:34Z #15 2.251 47600K .......... .......... .......... .......... .......... 37% 140M 1s +2024-05-06T17:08:34Z #15 2.251 47650K .......... .......... .......... .......... .......... 37% 156M 1s +2024-05-06T17:08:34Z #15 2.251 47700K .......... .......... .......... .......... .......... 37% 180M 1s +2024-05-06T17:08:34Z #15 2.251 47750K .......... .......... .......... .......... .......... 37% 48.1M 1s +2024-05-06T17:08:34Z #15 2.251 47800K .......... .......... .......... .......... .......... 37% 152M 1s +2024-05-06T17:08:34Z #15 2.251 47850K .......... .......... .......... .......... .......... 37% 175M 1s +2024-05-06T17:08:34Z #15 2.251 47900K .......... .......... .......... .......... .......... 37% 186M 1s +2024-05-06T17:08:34Z #15 2.251 47950K .......... .......... .......... .......... .......... 37% 145M 1s +2024-05-06T17:08:34Z #15 2.251 48000K .......... .......... .......... .......... .......... 37% 120M 1s +2024-05-06T17:08:34Z #15 2.251 48050K .......... .......... .......... .......... .......... 37% 28.2M 1s +2024-05-06T17:08:34Z #15 2.251 48100K .......... .......... .......... .......... .......... 37% 136M 1s +2024-05-06T17:08:34Z #15 2.251 48150K .......... .......... .......... .......... .......... 37% 123M 1s +2024-05-06T17:08:34Z #15 2.251 48200K .......... .......... .......... .......... .......... 37% 39.2M 1s +2024-05-06T17:08:34Z #15 2.251 48250K .......... .......... .......... .......... .......... 37% 124M 1s +2024-05-06T17:08:34Z #15 2.251 48300K .......... .......... .......... .......... .......... 37% 111M 1s +2024-05-06T17:08:34Z #15 2.251 48350K .......... .......... .......... .......... .......... 37% 111M 1s +2024-05-06T17:08:34Z #15 2.251 48400K .......... .......... .......... .......... .......... 37% 24.8M 1s +2024-05-06T17:08:34Z #15 2.251 48450K .......... .......... .......... .......... .......... 37% 56.3M 1s +2024-05-06T17:08:34Z #15 2.251 48500K .......... .......... .......... .......... .......... 37% 60.7M 1s +2024-05-06T17:08:34Z #15 2.251 48550K .......... .......... .......... .......... .......... 38% 42.0M 1s +2024-05-06T17:08:34Z #15 2.251 48600K .......... .......... .......... .......... .......... 38% 30.2M 1s +2024-05-06T17:08:34Z #15 2.252 48650K .......... .......... .......... .......... .......... 38% 50.2M 1s +2024-05-06T17:08:34Z #15 2.253 48700K .......... .......... .......... .......... .......... 38% 47.0M 1s +2024-05-06T17:08:34Z #15 2.256 48750K .......... .......... .......... .......... .......... 38% 144M 1s +2024-05-06T17:08:34Z #15 2.256 48800K .......... .......... .......... .......... .......... 38% 164M 1s +2024-05-06T17:08:34Z #15 2.256 48850K .......... .......... .......... .......... .......... 38% 55.4M 1s +2024-05-06T17:08:34Z #15 2.256 48900K .......... .......... .......... .......... .......... 38% 112M 1s +2024-05-06T17:08:34Z #15 2.256 48950K .......... .......... .......... .......... .......... 38% 57.4M 1s +2024-05-06T17:08:34Z #15 2.256 49000K .......... .......... .......... .......... .......... 38% 63.7M 1s +2024-05-06T17:08:34Z #15 2.257 49050K .......... .......... .......... .......... .......... 38% 108M 1s +2024-05-06T17:08:34Z #15 2.258 49100K .......... .......... .......... .......... .......... 38% 116M 1s +2024-05-06T17:08:34Z #15 2.258 49150K .......... .......... .......... .......... .......... 38% 31.5M 1s +2024-05-06T17:08:34Z #15 2.260 49200K .......... .......... .......... .......... .......... 38% 91.4M 1s +2024-05-06T17:08:34Z #15 2.260 49250K .......... .......... .......... .......... .......... 38% 113M 1s +2024-05-06T17:08:34Z #15 2.261 49300K .......... .......... .......... .......... .......... 38% 108M 1s +2024-05-06T17:08:34Z #15 2.261 49350K .......... .......... .......... .......... .......... 38% 110M 1s +2024-05-06T17:08:34Z #15 2.262 49400K .......... .......... .......... .......... .......... 38% 123M 1s +2024-05-06T17:08:34Z #15 2.262 49450K .......... .......... .......... .......... .......... 38% 113M 1s +2024-05-06T17:08:34Z #15 2.262 49500K .......... .......... .......... .......... .......... 38% 115M 1s +2024-05-06T17:08:34Z #15 2.263 49550K .......... .......... .......... .......... .......... 38% 16.7M 1s +2024-05-06T17:08:34Z #15 2.266 49600K .......... .......... .......... .......... .......... 38% 32.2M 1s +2024-05-06T17:08:34Z #15 2.267 49650K .......... .......... .......... .......... .......... 38% 47.2M 1s +2024-05-06T17:08:34Z #15 2.268 49700K .......... .......... .......... .......... .......... 38% 35.6M 1s +2024-05-06T17:08:34Z #15 2.270 49750K .......... .......... .......... .......... .......... 38% 46.9M 1s +2024-05-06T17:08:34Z #15 2.271 49800K .......... .......... .......... .......... .......... 39% 92.3M 1s +2024-05-06T17:08:34Z #15 2.271 49850K .......... .......... .......... .......... .......... 39% 110M 1s +2024-05-06T17:08:34Z #15 2.272 49900K .......... .......... .......... .......... .......... 39% 123M 1s +2024-05-06T17:08:34Z #15 2.272 49950K .......... .......... .......... .......... .......... 39% 119M 1s +2024-05-06T17:08:34Z #15 2.272 50000K .......... .......... .......... .......... .......... 39% 113M 1s +2024-05-06T17:08:34Z #15 2.273 50050K .......... .......... .......... .......... .......... 39% 105M 1s +2024-05-06T17:08:34Z #15 2.273 50100K .......... .......... .......... .......... .......... 39% 115M 1s +2024-05-06T17:08:34Z #15 2.274 50150K .......... .......... .......... .......... .......... 39% 114M 1s +2024-05-06T17:08:34Z #15 2.274 50200K .......... .......... .......... .......... .......... 39% 89.0M 1s +2024-05-06T17:08:34Z #15 2.275 50250K .......... .......... .......... .......... .......... 39% 10.9M 1s +2024-05-06T17:08:34Z #15 2.279 50300K .......... .......... .......... .......... .......... 39% 135M 1s +2024-05-06T17:08:34Z #15 2.280 50350K .......... .......... .......... .......... .......... 39% 109M 1s +2024-05-06T17:08:34Z #15 2.280 50400K .......... .......... .......... .......... .......... 39% 93.0M 1s +2024-05-06T17:08:34Z #15 2.281 50450K .......... .......... .......... .......... .......... 39% 118M 1s +2024-05-06T17:08:34Z #15 2.281 50500K .......... .......... .......... .......... .......... 39% 111M 1s +2024-05-06T17:08:34Z #15 2.281 50550K .......... .......... .......... .......... .......... 39% 110M 1s +2024-05-06T17:08:34Z #15 2.282 50600K .......... .......... .......... .......... .......... 39% 88.7M 1s +2024-05-06T17:08:34Z #15 2.282 50650K .......... .......... .......... .......... .......... 39% 107M 1s +2024-05-06T17:08:34Z #15 2.284 50700K .......... .......... .......... .......... .......... 39% 19.2M 1s +2024-05-06T17:08:34Z #15 2.285 50750K .......... .......... .......... .......... .......... 39% 100M 1s +2024-05-06T17:08:34Z #15 2.286 50800K .......... .......... .......... .......... .......... 39% 111M 1s +2024-05-06T17:08:34Z #15 2.286 50850K .......... .......... .......... .......... .......... 39% 115M 1s +2024-05-06T17:08:34Z #15 2.287 50900K .......... .......... .......... .......... .......... 39% 94.0M 1s +2024-05-06T17:08:34Z #15 2.287 50950K .......... .......... .......... .......... .......... 39% 110M 1s +2024-05-06T17:08:34Z #15 2.288 51000K .......... .......... .......... .......... .......... 39% 101M 1s +2024-05-06T17:08:34Z #15 2.288 51050K .......... .......... .......... .......... .......... 39% 106M 1s +2024-05-06T17:08:34Z #15 2.289 51100K .......... .......... .......... .......... .......... 40% 130M 1s +2024-05-06T17:08:34Z #15 2.289 51150K .......... .......... .......... .......... .......... 40% 117M 1s +2024-05-06T17:08:34Z #15 2.290 51200K .......... .......... .......... .......... .......... 40% 123M 1s +2024-05-06T17:08:34Z #15 2.290 51250K .......... .......... .......... .......... .......... 40% 126M 1s +2024-05-06T17:08:34Z #15 2.290 51300K .......... .......... .......... .......... .......... 40% 132M 1s +2024-05-06T17:08:34Z #15 2.291 51350K .......... .......... .......... .......... .......... 40% 11.0M 1s +2024-05-06T17:08:34Z #15 2.295 51400K .......... .......... .......... .......... .......... 40% 121M 1s +2024-05-06T17:08:34Z #15 2.295 51450K .......... .......... .......... .......... .......... 40% 137M 1s +2024-05-06T17:08:34Z #15 2.296 51500K .......... .......... .......... .......... .......... 40% 126M 1s +2024-05-06T17:08:34Z #15 2.296 51550K .......... .......... .......... .......... .......... 40% 144M 1s +2024-05-06T17:08:34Z #15 2.297 51600K .......... .......... .......... .......... .......... 40% 127M 1s +2024-05-06T17:08:34Z #15 2.297 51650K .......... .......... .......... .......... .......... 40% 129M 1s +2024-05-06T17:08:34Z #15 2.297 51700K .......... .......... .......... .......... .......... 40% 151M 1s +2024-05-06T17:08:34Z #15 2.298 51750K .......... .......... .......... .......... .......... 40% 129M 1s +2024-05-06T17:08:34Z #15 2.298 51800K .......... .......... .......... .......... .......... 40% 127M 1s +2024-05-06T17:08:34Z #15 2.300 51850K .......... .......... .......... .......... .......... 40% 129M 1s +2024-05-06T17:08:34Z #15 2.300 51900K .......... .......... .......... .......... .......... 40% 128M 1s +2024-05-06T17:08:34Z #15 2.300 51950K .......... .......... .......... .......... .......... 40% 134M 1s +2024-05-06T17:08:34Z #15 2.300 52000K .......... .......... .......... .......... .......... 40% 112M 1s +2024-05-06T17:08:34Z #15 2.300 52050K .......... .......... .......... .......... .......... 40% 149M 1s +2024-05-06T17:08:34Z #15 2.300 52100K .......... .......... .......... .......... .......... 40% 129M 1s +2024-05-06T17:08:34Z #15 2.301 52150K .......... .......... .......... .......... .......... 40% 144M 1s +2024-05-06T17:08:34Z #15 2.301 52200K .......... .......... .......... .......... .......... 40% 95.4M 1s +2024-05-06T17:08:34Z #15 2.301 52250K .......... .......... .......... .......... .......... 40% 149M 1s +2024-05-06T17:08:34Z #15 2.302 52300K .......... .......... .......... .......... .......... 40% 133M 1s +2024-05-06T17:08:34Z #15 2.302 52350K .......... .......... .......... .......... .......... 41% 165M 1s +2024-05-06T17:08:34Z #15 2.302 52400K .......... .......... .......... .......... .......... 41% 131M 1s +2024-05-06T17:08:34Z #15 2.303 52450K .......... .......... .......... .......... .......... 41% 135M 1s +2024-05-06T17:08:34Z #15 2.303 52500K .......... .......... .......... .......... .......... 41% 112M 1s +2024-05-06T17:08:34Z #15 2.304 52550K .......... .......... .......... .......... .......... 41% 133M 1s +2024-05-06T17:08:34Z #15 2.305 52600K .......... .......... .......... .......... .......... 41% 123M 1s +2024-05-06T17:08:34Z #15 2.305 52650K .......... .......... .......... .......... .......... 41% 140M 1s +2024-05-06T17:08:34Z #15 2.305 52700K .......... .......... .......... .......... .......... 41% 121M 1s +2024-05-06T17:08:34Z #15 2.305 52750K .......... .......... .......... .......... .......... 41% 150M 1s +2024-05-06T17:08:34Z #15 2.306 52800K .......... .......... .......... .......... .......... 41% 124M 1s +2024-05-06T17:08:34Z #15 2.306 52850K .......... .......... .......... .......... .......... 41% 157M 1s +2024-05-06T17:08:34Z #15 2.306 52900K .......... .......... .......... .......... .......... 41% 131M 1s +2024-05-06T17:08:34Z #15 2.307 52950K .......... .......... .......... .......... .......... 41% 162M 1s +2024-05-06T17:08:34Z #15 2.308 53000K .......... .......... .......... .......... .......... 41% 10.9M 1s +2024-05-06T17:08:34Z #15 2.311 53050K .......... .......... .......... .......... .......... 41% 155M 1s +2024-05-06T17:08:34Z #15 2.312 53100K .......... .......... .......... .......... .......... 41% 140M 1s +2024-05-06T17:08:34Z #15 2.312 53150K .......... .......... .......... .......... .......... 41% 148M 1s +2024-05-06T17:08:34Z #15 2.312 53200K .......... .......... .......... .......... .......... 41% 144M 1s +2024-05-06T17:08:34Z #15 2.313 53250K .......... .......... .......... .......... .......... 41% 129M 1s +2024-05-06T17:08:34Z #15 2.313 53300K .......... .......... .......... .......... .......... 41% 127M 1s +2024-05-06T17:08:34Z #15 2.314 53350K .......... .......... .......... .......... .......... 41% 125M 1s +2024-05-06T17:08:34Z #15 2.314 53400K .......... .......... .......... .......... .......... 41% 113M 1s +2024-05-06T17:08:34Z #15 2.314 53450K .......... .......... .......... .......... .......... 41% 141M 1s +2024-05-06T17:08:34Z #15 2.315 53500K .......... .......... .......... .......... .......... 41% 160M 1s +2024-05-06T17:08:34Z #15 2.315 53550K .......... .......... .......... .......... .......... 41% 110M 1s +2024-05-06T17:08:34Z #15 2.315 53600K .......... .......... .......... .......... .......... 41% 134M 1s +2024-05-06T17:08:34Z #15 2.316 53650K .......... .......... .......... .......... .......... 42% 119M 1s +2024-05-06T17:08:34Z #15 2.316 53700K .......... .......... .......... .......... .......... 42% 156M 1s +2024-05-06T17:08:34Z #15 2.317 53750K .......... .......... .......... .......... .......... 42% 144M 1s +2024-05-06T17:08:34Z #15 2.317 53800K .......... .......... .......... .......... .......... 42% 137M 1s +2024-05-06T17:08:34Z #15 2.317 53850K .......... .......... .......... .......... .......... 42% 131M 1s +2024-05-06T17:08:34Z #15 2.317 53900K .......... .......... .......... .......... .......... 42% 151M 1s +2024-05-06T17:08:34Z #15 2.318 53950K .......... .......... .......... .......... .......... 42% 124M 1s +2024-05-06T17:08:34Z #15 2.318 54000K .......... .......... .......... .......... .......... 42% 134M 1s +2024-05-06T17:08:34Z #15 2.319 54050K .......... .......... .......... .......... .......... 42% 110M 1s +2024-05-06T17:08:34Z #15 2.320 54100K .......... .......... .......... .......... .......... 42% 144M 1s +2024-05-06T17:08:34Z #15 2.320 54150K .......... .......... .......... .......... .......... 42% 147M 1s +2024-05-06T17:08:34Z #15 2.320 54200K .......... .......... .......... .......... .......... 42% 116M 1s +2024-05-06T17:08:34Z #15 2.320 54250K .......... .......... .......... .......... .......... 42% 149M 1s +2024-05-06T17:08:34Z #15 2.320 54300K .......... .......... .......... .......... .......... 42% 134M 1s +2024-05-06T17:08:34Z #15 2.321 54350K .......... .......... .......... .......... .......... 42% 144M 1s +2024-05-06T17:08:34Z #15 2.322 54400K .......... .......... .......... .......... .......... 42% 116M 1s +2024-05-06T17:08:34Z #15 2.322 54450K .......... .......... .......... .......... .......... 42% 159M 1s +2024-05-06T17:08:34Z #15 2.322 54500K .......... .......... .......... .......... .......... 42% 153M 1s +2024-05-06T17:08:34Z #15 2.322 54550K .......... .......... .......... .......... .......... 42% 122M 1s +2024-05-06T17:08:34Z #15 2.323 54600K .......... .......... .......... .......... .......... 42% 11.0M 1s +2024-05-06T17:08:34Z #15 2.327 54650K .......... .......... .......... .......... .......... 42% 144M 1s +2024-05-06T17:08:34Z #15 2.327 54700K .......... .......... .......... .......... .......... 42% 137M 1s +2024-05-06T17:08:34Z #15 2.328 54750K .......... .......... .......... .......... .......... 42% 148M 1s +2024-05-06T17:08:34Z #15 2.328 54800K .......... .......... .......... .......... .......... 42% 118M 1s +2024-05-06T17:08:34Z #15 2.328 54850K .......... .......... .......... .......... .......... 42% 154M 1s +2024-05-06T17:08:34Z #15 2.329 54900K .......... .......... .......... .......... .......... 42% 157M 1s +2024-05-06T17:08:34Z #15 2.329 54950K .......... .......... .......... .......... .......... 43% 128M 1s +2024-05-06T17:08:34Z #15 2.329 55000K .......... .......... .......... .......... .......... 43% 139M 1s +2024-05-06T17:08:34Z #15 2.330 55050K .......... .......... .......... .......... .......... 43% 125M 1s +2024-05-06T17:08:34Z #15 2.330 55100K .......... .......... .......... .......... .......... 43% 142M 1s +2024-05-06T17:08:34Z #15 2.331 55150K .......... .......... .......... .......... .......... 43% 136M 1s +2024-05-06T17:08:34Z #15 2.331 55200K .......... .......... .......... .......... .......... 43% 101M 1s +2024-05-06T17:08:34Z #15 2.332 55250K .......... .......... .......... .......... .......... 43% 146M 1s +2024-05-06T17:08:34Z #15 2.332 55300K .......... .......... .......... .......... .......... 43% 143M 1s +2024-05-06T17:08:34Z #15 2.332 55350K .......... .......... .......... .......... .......... 43% 143M 1s +2024-05-06T17:08:34Z #15 2.332 55400K .......... .......... .......... .......... .......... 43% 109M 1s +2024-05-06T17:08:34Z #15 2.333 55450K .......... .......... .......... .......... .......... 43% 148M 1s +2024-05-06T17:08:34Z #15 2.333 55500K .......... .......... .......... .......... .......... 43% 152M 1s +2024-05-06T17:08:34Z #15 2.334 55550K .......... .......... .......... .......... .......... 43% 140M 1s +2024-05-06T17:08:34Z #15 2.334 55600K .......... .......... .......... .......... .......... 43% 121M 1s +2024-05-06T17:08:34Z #15 2.334 55650K .......... .......... .......... .......... .......... 43% 151M 1s +2024-05-06T17:08:34Z #15 2.335 55700K .......... .......... .......... .......... .......... 43% 116M 1s +2024-05-06T17:08:34Z #15 2.335 55750K .......... .......... .......... .......... .......... 43% 134M 1s +2024-05-06T17:08:34Z #15 2.336 55800K .......... .......... .......... .......... .......... 43% 108M 1s +2024-05-06T17:08:34Z #15 2.336 55850K .......... .......... .......... .......... .......... 43% 128M 1s +2024-05-06T17:08:34Z #15 2.336 55900K .......... .......... .......... .......... .......... 43% 156M 1s +2024-05-06T17:08:34Z #15 2.337 55950K .......... .......... .......... .......... .......... 43% 149M 1s +2024-05-06T17:08:34Z #15 2.337 56000K .......... .......... .......... .......... .......... 43% 139M 1s +2024-05-06T17:08:34Z #15 2.337 56050K .......... .......... .......... .......... .......... 43% 132M 1s +2024-05-06T17:08:34Z #15 2.338 56100K .......... .......... .......... .......... .......... 43% 131M 1s +2024-05-06T17:08:34Z #15 2.338 56150K .......... .......... .......... .......... .......... 43% 141M 1s +2024-05-06T17:08:34Z #15 2.338 56200K .......... .......... .......... .......... .......... 44% 122M 1s +2024-05-06T17:08:34Z #15 2.339 56250K .......... .......... .......... .......... .......... 44% 10.9M 1s +2024-05-06T17:08:34Z #15 2.343 56300K .......... .......... .......... .......... .......... 44% 130M 1s +2024-05-06T17:08:34Z #15 2.344 56350K .......... .......... .......... .......... .......... 44% 138M 1s +2024-05-06T17:08:34Z #15 2.344 56400K .......... .......... .......... .......... .......... 44% 136M 1s +2024-05-06T17:08:34Z #15 2.344 56450K .......... .......... .......... .......... .......... 44% 165M 1s +2024-05-06T17:08:34Z #15 2.345 56500K .......... .......... .......... .......... .......... 44% 120M 1s +2024-05-06T17:08:34Z #15 2.345 56550K .......... .......... .......... .......... .......... 44% 158M 1s +2024-05-06T17:08:34Z #15 2.346 56600K .......... .......... .......... .......... .......... 44% 109M 1s +2024-05-06T17:08:34Z #15 2.346 56650K .......... .......... .......... .......... .......... 44% 152M 1s +2024-05-06T17:08:34Z #15 2.346 56700K .......... .......... .......... .......... .......... 44% 141M 1s +2024-05-06T17:08:34Z #15 2.346 56750K .......... .......... .......... .......... .......... 44% 161M 1s +2024-05-06T17:08:34Z #15 2.347 56800K .......... .......... .......... .......... .......... 44% 50.4M 1s +2024-05-06T17:08:34Z #15 2.348 56850K .......... .......... .......... .......... .......... 44% 149M 1s +2024-05-06T17:08:34Z #15 2.348 56900K .......... .......... .......... .......... .......... 44% 150M 1s +2024-05-06T17:08:34Z #15 2.348 56950K .......... .......... .......... .......... .......... 44% 153M 1s +2024-05-06T17:08:34Z #15 2.349 57000K .......... .......... .......... .......... .......... 44% 110M 1s +2024-05-06T17:08:34Z #15 2.349 57050K .......... .......... .......... .......... .......... 44% 147M 1s +2024-05-06T17:08:34Z #15 2.350 57100K .......... .......... .......... .......... .......... 44% 125M 1s +2024-05-06T17:08:34Z #15 2.350 57150K .......... .......... .......... .......... .......... 44% 157M 1s +2024-05-06T17:08:34Z #15 2.350 57200K .......... .......... .......... .......... .......... 44% 119M 1s +2024-05-06T17:08:34Z #15 2.350 57250K .......... .......... .......... .......... .......... 44% 142M 1s +2024-05-06T17:08:34Z #15 2.351 57300K .......... .......... .......... .......... .......... 44% 10.9M 1s +2024-05-06T17:08:34Z #15 2.355 57350K .......... .......... .......... .......... .......... 44% 112M 1s +2024-05-06T17:08:34Z #15 2.356 57400K .......... .......... .......... .......... .......... 44% 97.7M 1s +2024-05-06T17:08:34Z #15 2.357 57450K .......... .......... .......... .......... .......... 44% 122M 1s +2024-05-06T17:08:34Z #15 2.357 57500K .......... .......... .......... .......... .......... 45% 148M 1s +2024-05-06T17:08:34Z #15 2.357 57550K .......... .......... .......... .......... .......... 45% 134M 1s +2024-05-06T17:08:34Z #15 2.357 57600K .......... .......... .......... .......... .......... 45% 93.5M 1s +2024-05-06T17:08:34Z #15 2.358 57650K .......... .......... .......... .......... .......... 45% 118M 1s +2024-05-06T17:08:34Z #15 2.363 57700K .......... .......... .......... .......... .......... 45% 9.68M 1s +2024-05-06T17:08:34Z #15 2.363 57750K .......... .......... .......... .......... .......... 45% 123M 1s +2024-05-06T17:08:34Z #15 2.364 57800K .......... .......... .......... .......... .......... 45% 103M 1s +2024-05-06T17:08:34Z #15 2.364 57850K .......... .......... .......... .......... .......... 45% 130M 1s +2024-05-06T17:08:34Z #15 2.365 57900K .......... .......... .......... .......... .......... 45% 141M 1s +2024-05-06T17:08:34Z #15 2.365 57950K .......... .......... .......... .......... .......... 45% 111M 1s +2024-05-06T17:08:34Z #15 2.365 58000K .......... .......... .......... .......... .......... 45% 115M 1s +2024-05-06T17:08:34Z #15 2.366 58050K .......... .......... .......... .......... .......... 45% 139M 1s +2024-05-06T17:08:34Z #15 2.366 58100K .......... .......... .......... .......... .......... 45% 131M 1s +2024-05-06T17:08:34Z #15 2.367 58150K .......... .......... .......... .......... .......... 45% 130M 1s +2024-05-06T17:08:34Z #15 2.367 58200K .......... .......... .......... .......... .......... 45% 102M 1s +2024-05-06T17:08:34Z #15 2.368 58250K .......... .......... .......... .......... .......... 45% 125M 1s +2024-05-06T17:08:34Z #15 2.368 58300K .......... .......... .......... .......... .......... 45% 110M 1s +2024-05-06T17:08:34Z #15 2.368 58350K .......... .......... .......... .......... .......... 45% 135M 1s +2024-05-06T17:08:34Z #15 2.369 58400K .......... .......... .......... .......... .......... 45% 125M 1s +2024-05-06T17:08:34Z #15 2.369 58450K .......... .......... .......... .......... .......... 45% 137M 1s +2024-05-06T17:08:34Z #15 2.369 58500K .......... .......... .......... .......... .......... 45% 124M 1s +2024-05-06T17:08:34Z #15 2.370 58550K .......... .......... .......... .......... .......... 45% 133M 1s +2024-05-06T17:08:34Z #15 2.370 58600K .......... .......... .......... .......... .......... 45% 107M 1s +2024-05-06T17:08:34Z #15 2.371 58650K .......... .......... .......... .......... .......... 45% 163M 1s +2024-05-06T17:08:34Z #15 2.371 58700K .......... .......... .......... .......... .......... 45% 109M 1s +2024-05-06T17:08:34Z #15 2.371 58750K .......... .......... .......... .......... .......... 46% 128M 1s +2024-05-06T17:08:34Z #15 2.373 58800K .......... .......... .......... .......... .......... 46% 96.9M 1s +2024-05-06T17:08:34Z #15 2.373 58850K .......... .......... .......... .......... .......... 46% 136M 1s +2024-05-06T17:08:34Z #15 2.373 58900K .......... .......... .......... .......... .......... 46% 143M 1s +2024-05-06T17:08:34Z #15 2.373 58950K .......... .......... .......... .......... .......... 46% 133M 1s +2024-05-06T17:08:34Z #15 2.373 59000K .......... .......... .......... .......... .......... 46% 104M 1s +2024-05-06T17:08:34Z #15 2.374 59050K .......... .......... .......... .......... .......... 46% 117M 1s +2024-05-06T17:08:34Z #15 2.375 59100K .......... .......... .......... .......... .......... 46% 121M 1s +2024-05-06T17:08:34Z #15 2.375 59150K .......... .......... .......... .......... .......... 46% 99.0M 1s +2024-05-06T17:08:34Z #15 2.375 59200K .......... .......... .......... .......... .......... 46% 98.0M 1s +2024-05-06T17:08:34Z #15 2.376 59250K .......... .......... .......... .......... .......... 46% 127M 1s +2024-05-06T17:08:34Z #15 2.376 59300K .......... .......... .......... .......... .......... 46% 144M 1s +2024-05-06T17:08:34Z #15 2.377 59350K .......... .......... .......... .......... .......... 46% 129M 1s +2024-05-06T17:08:34Z #15 2.377 59400K .......... .......... .......... .......... .......... 46% 133M 1s +2024-05-06T17:08:34Z #15 2.377 59450K .......... .......... .......... .......... .......... 46% 128M 1s +2024-05-06T17:08:34Z #15 2.377 59500K .......... .......... .......... .......... .......... 46% 148M 1s +2024-05-06T17:08:34Z #15 2.378 59550K .......... .......... .......... .......... .......... 46% 141M 1s +2024-05-06T17:08:34Z #15 2.378 59600K .......... .......... .......... .......... .......... 46% 123M 1s +2024-05-06T17:08:34Z #15 2.378 59650K .......... .......... .......... .......... .......... 46% 133M 1s +2024-05-06T17:08:34Z #15 2.380 59700K .......... .......... .......... .......... .......... 46% 11.1M 1s +2024-05-06T17:08:34Z #15 2.383 59750K .......... .......... .......... .......... .......... 46% 137M 1s +2024-05-06T17:08:34Z #15 2.384 59800K .......... .......... .......... .......... .......... 46% 121M 1s +2024-05-06T17:08:34Z #15 2.384 59850K .......... .......... .......... .......... .......... 46% 130M 1s +2024-05-06T17:08:34Z #15 2.384 59900K .......... .......... .......... .......... .......... 46% 140M 1s +2024-05-06T17:08:34Z #15 2.385 59950K .......... .......... .......... .......... .......... 46% 126M 1s +2024-05-06T17:08:34Z #15 2.385 60000K .......... .......... .......... .......... .......... 46% 134M 1s +2024-05-06T17:08:34Z #15 2.386 60050K .......... .......... .......... .......... .......... 47% 135M 1s +2024-05-06T17:08:34Z #15 2.386 60100K .......... .......... .......... .......... .......... 47% 138M 1s +2024-05-06T17:08:34Z #15 2.386 60150K .......... .......... .......... .......... .......... 47% 141M 1s +2024-05-06T17:08:34Z #15 2.387 60200K .......... .......... .......... .......... .......... 47% 107M 1s +2024-05-06T17:08:34Z #15 2.387 60250K .......... .......... .......... .......... .......... 47% 144M 1s +2024-05-06T17:08:34Z #15 2.388 60300K .......... .......... .......... .......... .......... 47% 133M 1s +2024-05-06T17:08:34Z #15 2.388 60350K .......... .......... .......... .......... .......... 47% 152M 1s +2024-05-06T17:08:34Z #15 2.388 60400K .......... .......... .......... .......... .......... 47% 142M 1s +2024-05-06T17:08:34Z #15 2.389 60450K .......... .......... .......... .......... .......... 47% 120M 1s +2024-05-06T17:08:34Z #15 2.389 60500K .......... .......... .......... .......... .......... 47% 153M 1s +2024-05-06T17:08:34Z #15 2.389 60550K .......... .......... .......... .......... .......... 47% 116M 1s +2024-05-06T17:08:34Z #15 2.390 60600K .......... .......... .......... .......... .......... 47% 135M 1s +2024-05-06T17:08:34Z #15 2.390 60650K .......... .......... .......... .......... .......... 47% 137M 1s +2024-05-06T17:08:34Z #15 2.390 60700K .......... .......... .......... .......... .......... 47% 148M 1s +2024-05-06T17:08:34Z #15 2.391 60750K .......... .......... .......... .......... .......... 47% 113M 1s +2024-05-06T17:08:34Z #15 2.391 60800K .......... .......... .......... .......... .......... 47% 140M 1s +2024-05-06T17:08:34Z #15 2.392 60850K .......... .......... .......... .......... .......... 47% 125M 1s +2024-05-06T17:08:34Z #15 2.392 60900K .......... .......... .......... .......... .......... 47% 164M 1s +2024-05-06T17:08:34Z #15 2.392 60950K .......... .......... .......... .......... .......... 47% 119M 1s +2024-05-06T17:08:34Z #15 2.392 61000K .......... .......... .......... .......... .......... 47% 126M 1s +2024-05-06T17:08:34Z #15 2.393 61050K .......... .......... .......... .......... .......... 47% 120M 1s +2024-05-06T17:08:34Z #15 2.393 61100K .......... .......... .......... .......... .......... 47% 156M 1s +2024-05-06T17:08:34Z #15 2.394 61150K .......... .......... .......... .......... .......... 47% 131M 1s +2024-05-06T17:08:34Z #15 2.394 61200K .......... .......... .......... .......... .......... 47% 123M 1s +2024-05-06T17:08:34Z #15 2.394 61250K .......... .......... .......... .......... .......... 47% 141M 1s +2024-05-06T17:08:34Z #15 2.395 61300K .......... .......... .......... .......... .......... 48% 11.2M 1s +2024-05-06T17:08:34Z #15 2.399 61350K .......... .......... .......... .......... .......... 48% 144M 1s +2024-05-06T17:08:34Z #15 2.399 61400K .......... .......... .......... .......... .......... 48% 118M 1s +2024-05-06T17:08:34Z #15 2.400 61450K .......... .......... .......... .......... .......... 48% 146M 1s +2024-05-06T17:08:34Z #15 2.400 61500K .......... .......... .......... .......... .......... 48% 145M 1s +2024-05-06T17:08:34Z #15 2.401 61550K .......... .......... .......... .......... .......... 48% 136M 1s +2024-05-06T17:08:34Z #15 2.401 61600K .......... .......... .......... .......... .......... 48% 130M 1s +2024-05-06T17:08:34Z #15 2.401 61650K .......... .......... .......... .......... .......... 48% 154M 1s +2024-05-06T17:08:34Z #15 2.402 61700K .......... .......... .......... .......... .......... 48% 155M 1s +2024-05-06T17:08:34Z #15 2.402 61750K .......... .......... .......... .......... .......... 48% 136M 1s +2024-05-06T17:08:34Z #15 2.403 61800K .......... .......... .......... .......... .......... 48% 125M 1s +2024-05-06T17:08:34Z #15 2.403 61850K .......... .......... .......... .......... .......... 48% 120M 1s +2024-05-06T17:08:34Z #15 2.403 61900K .......... .......... .......... .......... .......... 48% 118M 1s +2024-05-06T17:08:34Z #15 2.403 61950K .......... .......... .......... .......... .......... 48% 137M 1s +2024-05-06T17:08:34Z #15 2.404 62000K .......... .......... .......... .......... .......... 48% 112M 1s +2024-05-06T17:08:34Z #15 2.404 62050K .......... .......... .......... .......... .......... 48% 110M 1s +2024-05-06T17:08:34Z #15 2.405 62100K .......... .......... .......... .......... .......... 48% 138M 1s +2024-05-06T17:08:34Z #15 2.405 62150K .......... .......... .......... .......... .......... 48% 144M 1s +2024-05-06T17:08:34Z #15 2.406 62200K .......... .......... .......... .......... .......... 48% 124M 1s +2024-05-06T17:08:34Z #15 2.406 62250K .......... .......... .......... .......... .......... 48% 130M 1s +2024-05-06T17:08:34Z #15 2.406 62300K .......... .......... .......... .......... .......... 48% 153M 1s +2024-05-06T17:08:34Z #15 2.407 62350K .......... .......... .......... .......... .......... 48% 168M 1s +2024-05-06T17:08:34Z #15 2.407 62400K .......... .......... .......... .......... .......... 48% 10.8M 1s +2024-05-06T17:08:34Z #15 2.411 62450K .......... .......... .......... .......... .......... 48% 148M 1s +2024-05-06T17:08:34Z #15 2.412 62500K .......... .......... .......... .......... .......... 48% 144M 1s +2024-05-06T17:08:34Z #15 2.412 62550K .......... .......... .......... .......... .......... 48% 158M 1s +2024-05-06T17:08:34Z #15 2.412 62600K .......... .......... .......... .......... .......... 49% 114M 1s +2024-05-06T17:08:34Z #15 2.413 62650K .......... .......... .......... .......... .......... 49% 137M 1s +2024-05-06T17:08:34Z #15 2.413 62700K .......... .......... .......... .......... .......... 49% 148M 1s +2024-05-06T17:08:34Z #15 2.413 62750K .......... .......... .......... .......... .......... 49% 115M 1s +2024-05-06T17:08:34Z #15 2.414 62800K .......... .......... .......... .......... .......... 49% 106M 1s +2024-05-06T17:08:34Z #15 2.414 62850K .......... .......... .......... .......... .......... 49% 157M 1s +2024-05-06T17:08:34Z #15 2.415 62900K .......... .......... .......... .......... .......... 49% 128M 1s +2024-05-06T17:08:34Z #15 2.418 62950K .......... .......... .......... .......... .......... 49% 33.3M 1s +2024-05-06T17:08:34Z #15 2.418 63000K .......... .......... .......... .......... .......... 49% 54.5M 1s +2024-05-06T17:08:34Z #15 2.418 63050K .......... .......... .......... .......... .......... 49% 147M 1s +2024-05-06T17:08:34Z #15 2.418 63100K .......... .......... .......... .......... .......... 49% 163M 1s +2024-05-06T17:08:34Z #15 2.418 63150K .......... .......... .......... .......... .......... 49% 169M 1s +2024-05-06T17:08:34Z #15 2.418 63200K .......... .......... .......... .......... .......... 49% 122M 1s +2024-05-06T17:08:34Z #15 2.419 63250K .......... .......... .......... .......... .......... 49% 145M 1s +2024-05-06T17:08:34Z #15 2.419 63300K .......... .......... .......... .......... .......... 49% 132M 1s +2024-05-06T17:08:34Z #15 2.419 63350K .......... .......... .......... .......... .......... 49% 140M 1s +2024-05-06T17:08:34Z #15 2.420 63400K .......... .......... .......... .......... .......... 49% 119M 1s +2024-05-06T17:08:34Z #15 2.420 63450K .......... .......... .......... .......... .......... 49% 144M 1s +2024-05-06T17:08:34Z #15 2.421 63500K .......... .......... .......... .......... .......... 49% 136M 1s +2024-05-06T17:08:34Z #15 2.421 63550K .......... .......... .......... .......... .......... 49% 136M 1s +2024-05-06T17:08:34Z #15 2.421 63600K .......... .......... .......... .......... .......... 49% 121M 1s +2024-05-06T17:08:34Z #15 2.422 63650K .......... .......... .......... .......... .......... 49% 148M 1s +2024-05-06T17:08:34Z #15 2.422 63700K .......... .......... .......... .......... .......... 49% 137M 1s +2024-05-06T17:08:34Z #15 2.422 63750K .......... .......... .......... .......... .......... 49% 138M 1s +2024-05-06T17:08:34Z #15 2.423 63800K .......... .......... .......... .......... .......... 49% 10.9M 1s +2024-05-06T17:08:34Z #15 2.427 63850K .......... .......... .......... .......... .......... 50% 128M 1s +2024-05-06T17:08:34Z #15 2.427 63900K .......... .......... .......... .......... .......... 50% 121M 1s +2024-05-06T17:08:34Z #15 2.428 63950K .......... .......... .......... .......... .......... 50% 121M 1s +2024-05-06T17:08:34Z #15 2.429 64000K .......... .......... .......... .......... .......... 50% 133M 1s +2024-05-06T17:08:34Z #15 2.430 64050K .......... .......... .......... .......... .......... 50% 168M 1s +2024-05-06T17:08:34Z #15 2.430 64100K .......... .......... .......... .......... .......... 50% 137M 1s +2024-05-06T17:08:34Z #15 2.430 64150K .......... .......... .......... .......... .......... 50% 120M 1s +2024-05-06T17:08:34Z #15 2.430 64200K .......... .......... .......... .......... .......... 50% 102M 1s +2024-05-06T17:08:34Z #15 2.430 64250K .......... .......... .......... .......... .......... 50% 109M 1s +2024-05-06T17:08:34Z #15 2.432 64300K .......... .......... .......... .......... .......... 50% 112M 1s +2024-05-06T17:08:34Z #15 2.432 64350K .......... .......... .......... .......... .......... 50% 119M 1s +2024-05-06T17:08:34Z #15 2.432 64400K .......... .......... .......... .......... .......... 50% 116M 1s +2024-05-06T17:08:34Z #15 2.432 64450K .......... .......... .......... .......... .......... 50% 118M 1s +2024-05-06T17:08:34Z #15 2.432 64500K .......... .......... .......... .......... .......... 50% 112M 1s +2024-05-06T17:08:34Z #15 2.433 64550K .......... .......... .......... .......... .......... 50% 124M 1s +2024-05-06T17:08:34Z #15 2.433 64600K .......... .......... .......... .......... .......... 50% 93.8M 1s +2024-05-06T17:08:34Z #15 2.434 64650K .......... .......... .......... .......... .......... 50% 127M 1s +2024-05-06T17:08:34Z #15 2.434 64700K .......... .......... .......... .......... .......... 50% 127M 1s +2024-05-06T17:08:34Z #15 2.434 64750K .......... .......... .......... .......... .......... 50% 129M 1s +2024-05-06T17:08:34Z #15 2.435 64800K .......... .......... .......... .......... .......... 50% 85.8M 1s +2024-05-06T17:08:34Z #15 2.435 64850K .......... .......... .......... .......... .......... 50% 122M 1s +2024-05-06T17:08:34Z #15 2.436 64900K .......... .......... .......... .......... .......... 50% 104M 1s +2024-05-06T17:08:34Z #15 2.437 64950K .......... .......... .......... .......... .......... 50% 138M 1s +2024-05-06T17:08:34Z #15 2.437 65000K .......... .......... .......... .......... .......... 50% 104M 1s +2024-05-06T17:08:34Z #15 2.437 65050K .......... .......... .......... .......... .......... 50% 113M 1s +2024-05-06T17:08:34Z #15 2.438 65100K .......... .......... .......... .......... .......... 50% 127M 1s +2024-05-06T17:08:34Z #15 2.438 65150K .......... .......... .......... .......... .......... 51% 129M 1s +2024-05-06T17:08:34Z #15 2.438 65200K .......... .......... .......... .......... .......... 51% 106M 1s +2024-05-06T17:08:34Z #15 2.439 65250K .......... .......... .......... .......... .......... 51% 10.8M 1s +2024-05-06T17:08:34Z #15 2.443 65300K .......... .......... .......... .......... .......... 51% 122M 1s +2024-05-06T17:08:34Z #15 2.444 65350K .......... .......... .......... .......... .......... 51% 110M 1s +2024-05-06T17:08:34Z #15 2.445 65400K .......... .......... .......... .......... .......... 51% 117M 1s +2024-05-06T17:08:34Z #15 2.445 65450K .......... .......... .......... .......... .......... 51% 120M 1s +2024-05-06T17:08:34Z #15 2.446 65500K .......... .......... .......... .......... .......... 51% 121M 1s +2024-05-06T17:08:34Z #15 2.446 65550K .......... .......... .......... .......... .......... 51% 129M 1s +2024-05-06T17:08:34Z #15 2.446 65600K .......... .......... .......... .......... .......... 51% 120M 1s +2024-05-06T17:08:34Z #15 2.446 65650K .......... .......... .......... .......... .......... 51% 127M 1s +2024-05-06T17:08:34Z #15 2.447 65700K .......... .......... .......... .......... .......... 51% 116M 1s +2024-05-06T17:08:34Z #15 2.448 65750K .......... .......... .......... .......... .......... 51% 114M 1s +2024-05-06T17:08:34Z #15 2.448 65800K .......... .......... .......... .......... .......... 51% 103M 1s +2024-05-06T17:08:34Z #15 2.449 65850K .......... .......... .......... .......... .......... 51% 124M 1s +2024-05-06T17:08:34Z #15 2.449 65900K .......... .......... .......... .......... .......... 51% 119M 1s +2024-05-06T17:08:34Z #15 2.449 65950K .......... .......... .......... .......... .......... 51% 127M 1s +2024-05-06T17:08:34Z #15 2.450 66000K .......... .......... .......... .......... .......... 51% 107M 1s +2024-05-06T17:08:34Z #15 2.451 66050K .......... .......... .......... .......... .......... 51% 117M 1s +2024-05-06T17:08:34Z #15 2.451 66100K .......... .......... .......... .......... .......... 51% 123M 1s +2024-05-06T17:08:34Z #15 2.451 66150K .......... .......... .......... .......... .......... 51% 125M 1s +2024-05-06T17:08:34Z #15 2.451 66200K .......... .......... .......... .......... .......... 51% 97.5M 1s +2024-05-06T17:08:34Z #15 2.451 66250K .......... .......... .......... .......... .......... 51% 113M 1s +2024-05-06T17:08:34Z #15 2.452 66300K .......... .......... .......... .......... .......... 51% 130M 1s +2024-05-06T17:08:34Z #15 2.453 66350K .......... .......... .......... .......... .......... 51% 148M 1s +2024-05-06T17:08:34Z #15 2.453 66400K .......... .......... .......... .......... .......... 51% 100M 1s +2024-05-06T17:08:34Z #15 2.453 66450K .......... .......... .......... .......... .......... 52% 126M 1s +2024-05-06T17:08:34Z #15 2.453 66500K .......... .......... .......... .......... .......... 52% 136M 1s +2024-05-06T17:08:34Z #15 2.455 66550K .......... .......... .......... .......... .......... 52% 143M 1s +2024-05-06T17:08:34Z #15 2.455 66600K .......... .......... .......... .......... .......... 52% 95.1M 1s +2024-05-06T17:08:34Z #15 2.455 66650K .......... .......... .......... .......... .......... 52% 134M 1s +2024-05-06T17:08:34Z #15 2.455 66700K .......... .......... .......... .......... .......... 52% 5.76M 1s +2024-05-06T17:08:34Z #15 2.463 66750K .......... .......... .......... .......... .......... 52% 107M 1s +2024-05-06T17:08:34Z #15 2.464 66800K .......... .......... .......... .......... .......... 52% 112M 1s +2024-05-06T17:08:34Z #15 2.465 66850K .......... .......... .......... .......... .......... 52% 125M 1s +2024-05-06T17:08:34Z #15 2.465 66900K .......... .......... .......... .......... .......... 52% 144M 1s +2024-05-06T17:08:34Z #15 2.465 66950K .......... .......... .......... .......... .......... 52% 128M 1s +2024-05-06T17:08:34Z #15 2.465 67000K .......... .......... .......... .......... .......... 52% 109M 1s +2024-05-06T17:08:34Z #15 2.466 67050K .......... .......... .......... .......... .......... 52% 109M 1s +2024-05-06T17:08:34Z #15 2.467 67100K .......... .......... .......... .......... .......... 52% 139M 1s +2024-05-06T17:08:34Z #15 2.468 67150K .......... .......... .......... .......... .......... 52% 129M 1s +2024-05-06T17:08:34Z #15 2.468 67200K .......... .......... .......... .......... .......... 52% 115M 1s +2024-05-06T17:08:34Z #15 2.468 67250K .......... .......... .......... .......... .......... 52% 131M 1s +2024-05-06T17:08:34Z #15 2.468 67300K .......... .......... .......... .......... .......... 52% 126M 1s +2024-05-06T17:08:34Z #15 2.468 67350K .......... .......... .......... .......... .......... 52% 114M 1s +2024-05-06T17:08:34Z #15 2.469 67400K .......... .......... .......... .......... .......... 52% 108M 1s +2024-05-06T17:08:34Z #15 2.469 67450K .......... .......... .......... .......... .......... 52% 143M 1s +2024-05-06T17:08:34Z #15 2.469 67500K .......... .......... .......... .......... .......... 52% 130M 1s +2024-05-06T17:08:34Z #15 2.470 67550K .......... .......... .......... .......... .......... 52% 117M 1s +2024-05-06T17:08:34Z #15 2.470 67600K .......... .......... .......... .......... .......... 52% 108M 1s +2024-05-06T17:08:34Z #15 2.471 67650K .......... .......... .......... .......... .......... 52% 107M 1s +2024-05-06T17:08:34Z #15 2.471 67700K .......... .......... .......... .......... .......... 53% 105M 1s +2024-05-06T17:08:34Z #15 2.472 67750K .......... .......... .......... .......... .......... 53% 112M 1s +2024-05-06T17:08:34Z #15 2.472 67800K .......... .......... .......... .......... .......... 53% 122M 1s +2024-05-06T17:08:34Z #15 2.473 67850K .......... .......... .......... .......... .......... 53% 129M 1s +2024-05-06T17:08:34Z #15 2.473 67900K .......... .......... .......... .......... .......... 53% 113M 1s +2024-05-06T17:08:34Z #15 2.473 67950K .......... .......... .......... .......... .......... 53% 129M 1s +2024-05-06T17:08:34Z #15 2.473 68000K .......... .......... .......... .......... .......... 53% 112M 1s +2024-05-06T17:08:34Z #15 2.474 68050K .......... .......... .......... .......... .......... 53% 139M 1s +2024-05-06T17:08:34Z #15 2.475 68100K .......... .......... .......... .......... .......... 53% 144M 1s +2024-05-06T17:08:34Z #15 2.475 68150K .......... .......... .......... .......... .......... 53% 111M 1s +2024-05-06T17:08:34Z #15 2.475 68200K .......... .......... .......... .......... .......... 53% 105M 1s +2024-05-06T17:08:34Z #15 2.476 68250K .......... .......... .......... .......... .......... 53% 118M 1s +2024-05-06T17:08:34Z #15 2.476 68300K .......... .......... .......... .......... .......... 53% 118M 1s +2024-05-06T17:08:34Z #15 2.476 68350K .......... .......... .......... .......... .......... 53% 108M 1s +2024-05-06T17:08:34Z #15 2.477 68400K .......... .......... .......... .......... .......... 53% 107M 1s +2024-05-06T17:08:34Z #15 2.478 68450K .......... .......... .......... .......... .......... 53% 157M 1s +2024-05-06T17:08:34Z #15 2.478 68500K .......... .......... .......... .......... .......... 53% 160M 1s +2024-05-06T17:08:34Z #15 2.478 68550K .......... .......... .......... .......... .......... 53% 120M 1s +2024-05-06T17:08:34Z #15 2.479 68600K .......... .......... .......... .......... .......... 53% 100M 1s +2024-05-06T17:08:34Z #15 2.479 68650K .......... .......... .......... .......... .......... 53% 5.75M 1s +2024-05-06T17:08:34Z #15 2.487 68700K .......... .......... .......... .......... .......... 53% 117M 1s +2024-05-06T17:08:34Z #15 2.488 68750K .......... .......... .......... .......... .......... 53% 124M 1s +2024-05-06T17:08:34Z #15 2.488 68800K .......... .......... .......... .......... .......... 53% 114M 1s +2024-05-06T17:08:34Z #15 2.488 68850K .......... .......... .......... .......... .......... 53% 108M 1s +2024-05-06T17:08:34Z #15 2.491 68900K .......... .......... .......... .......... .......... 53% 130M 1s +2024-05-06T17:08:34Z #15 2.491 68950K .......... .......... .......... .......... .......... 53% 123M 1s +2024-05-06T17:08:34Z #15 2.491 69000K .......... .......... .......... .......... .......... 54% 120M 1s +2024-05-06T17:08:34Z #15 2.491 69050K .......... .......... .......... .......... .......... 54% 135M 1s +2024-05-06T17:08:34Z #15 2.491 69100K .......... .......... .......... .......... .......... 54% 134M 1s +2024-05-06T17:08:34Z #15 2.491 69150K .......... .......... .......... .......... .......... 54% 110M 1s +2024-05-06T17:08:34Z #15 2.491 69200K .......... .......... .......... .......... .......... 54% 91.8M 1s +2024-05-06T17:08:34Z #15 2.492 69250K .......... .......... .......... .......... .......... 54% 111M 1s +2024-05-06T17:08:34Z #15 2.492 69300K .......... .......... .......... .......... .......... 54% 116M 1s +2024-05-06T17:08:34Z #15 2.493 69350K .......... .......... .......... .......... .......... 54% 125M 1s +2024-05-06T17:08:34Z #15 2.493 69400K .......... .......... .......... .......... .......... 54% 101M 1s +2024-05-06T17:08:34Z #15 2.494 69450K .......... .......... .......... .......... .......... 54% 121M 1s +2024-05-06T17:08:34Z #15 2.494 69500K .......... .......... .......... .......... .......... 54% 112M 1s +2024-05-06T17:08:34Z #15 2.496 69550K .......... .......... .......... .......... .......... 54% 119M 1s +2024-05-06T17:08:34Z #15 2.496 69600K .......... .......... .......... .......... .......... 54% 108M 1s +2024-05-06T17:08:34Z #15 2.496 69650K .......... .......... .......... .......... .......... 54% 122M 1s +2024-05-06T17:08:34Z #15 2.496 69700K .......... .......... .......... .......... .......... 54% 131M 1s +2024-05-06T17:08:34Z #15 2.497 69750K .......... .......... .......... .......... .......... 54% 134M 1s +2024-05-06T17:08:34Z #15 2.499 69800K .......... .......... .......... .......... .......... 54% 106M 1s +2024-05-06T17:08:34Z #15 2.499 69850K .......... .......... .......... .......... .......... 54% 140M 1s +2024-05-06T17:08:34Z #15 2.499 69900K .......... .......... .......... .......... .......... 54% 154M 1s +2024-05-06T17:08:34Z #15 2.499 69950K .......... .......... .......... .......... .......... 54% 128M 1s +2024-05-06T17:08:34Z #15 2.499 70000K .......... .......... .......... .......... .......... 54% 110M 1s +2024-05-06T17:08:34Z #15 2.499 70050K .......... .......... .......... .......... .......... 54% 150M 1s +2024-05-06T17:08:34Z #15 2.499 70100K .......... .......... .......... .......... .......... 54% 10.6M 1s +2024-05-06T17:08:34Z #15 2.503 70150K .......... .......... .......... .......... .......... 54% 116M 1s +2024-05-06T17:08:34Z #15 2.504 70200K .......... .......... .......... .......... .......... 54% 94.4M 1s +2024-05-06T17:08:34Z #15 2.504 70250K .......... .......... .......... .......... .......... 55% 116M 1s +2024-05-06T17:08:34Z #15 2.505 70300K .......... .......... .......... .......... .......... 55% 139M 1s +2024-05-06T17:08:34Z #15 2.505 70350K .......... .......... .......... .......... .......... 55% 126M 1s +2024-05-06T17:08:34Z #15 2.505 70400K .......... .......... .......... .......... .......... 55% 97.8M 1s +2024-05-06T17:08:34Z #15 2.507 70450K .......... .......... .......... .......... .......... 55% 142M 1s +2024-05-06T17:08:34Z #15 2.507 70500K .......... .......... .......... .......... .......... 55% 120M 1s +2024-05-06T17:08:34Z #15 2.507 70550K .......... .......... .......... .......... .......... 55% 145M 1s +2024-05-06T17:08:34Z #15 2.507 70600K .......... .......... .......... .......... .......... 55% 88.3M 1s +2024-05-06T17:08:34Z #15 2.508 70650K .......... .......... .......... .......... .......... 55% 91.5M 1s +2024-05-06T17:08:34Z #15 2.508 70700K .......... .......... .......... .......... .......... 55% 116M 1s +2024-05-06T17:08:34Z #15 2.509 70750K .......... .......... .......... .......... .......... 55% 134M 1s +2024-05-06T17:08:34Z #15 2.509 70800K .......... .......... .......... .......... .......... 55% 115M 1s +2024-05-06T17:08:34Z #15 2.509 70850K .......... .......... .......... .......... .......... 55% 124M 1s +2024-05-06T17:08:34Z #15 2.510 70900K .......... .......... .......... .......... .......... 55% 124M 1s +2024-05-06T17:08:34Z #15 2.510 70950K .......... .......... .......... .......... .......... 55% 106M 1s +2024-05-06T17:08:34Z #15 2.510 71000K .......... .......... .......... .......... .......... 55% 95.0M 1s +2024-05-06T17:08:34Z #15 2.511 71050K .......... .......... .......... .......... .......... 55% 131M 1s +2024-05-06T17:08:34Z #15 2.512 71100K .......... .......... .......... .......... .......... 55% 12.6M 1s +2024-05-06T17:08:34Z #15 2.515 71150K .......... .......... .......... .......... .......... 55% 136M 1s +2024-05-06T17:08:34Z #15 2.516 71200K .......... .......... .......... .......... .......... 55% 89.8M 1s +2024-05-06T17:08:34Z #15 2.516 71250K .......... .......... .......... .......... .......... 55% 123M 1s +2024-05-06T17:08:34Z #15 2.517 71300K .......... .......... .......... .......... .......... 55% 102M 1s +2024-05-06T17:08:34Z #15 2.518 71350K .......... .......... .......... .......... .......... 55% 142M 1s +2024-05-06T17:08:34Z #15 2.518 71400K .......... .......... .......... .......... .......... 55% 105M 1s +2024-05-06T17:08:34Z #15 2.518 71450K .......... .......... .......... .......... .......... 55% 117M 1s +2024-05-06T17:08:34Z #15 2.518 71500K .......... .......... .......... .......... .......... 55% 95.3M 1s +2024-05-06T17:08:34Z #15 2.519 71550K .......... .......... .......... .......... .......... 56% 109M 1s +2024-05-06T17:08:34Z #15 2.519 71600K .......... .......... .......... .......... .......... 56% 96.9M 1s +2024-05-06T17:08:34Z #15 2.520 71650K .......... .......... .......... .......... .......... 56% 113M 1s +2024-05-06T17:08:34Z #15 2.520 71700K .......... .......... .......... .......... .......... 56% 111M 1s +2024-05-06T17:08:34Z #15 2.522 71750K .......... .......... .......... .......... .......... 56% 169M 1s +2024-05-06T17:08:34Z #15 2.522 71800K .......... .......... .......... .......... .......... 56% 115M 1s +2024-05-06T17:08:34Z #15 2.522 71850K .......... .......... .......... .......... .......... 56% 37.9M 1s +2024-05-06T17:08:34Z #15 2.523 71900K .......... .......... .......... .......... .......... 56% 58.0M 1s +2024-05-06T17:08:34Z #15 2.523 71950K .......... .......... .......... .......... .......... 56% 105M 1s +2024-05-06T17:08:34Z #15 2.524 72000K .......... .......... .......... .......... .......... 56% 114M 1s +2024-05-06T17:08:34Z #15 2.524 72050K .......... .......... .......... .......... .......... 56% 110M 1s +2024-05-06T17:08:34Z #15 2.525 72100K .......... .......... .......... .......... .......... 56% 89.1M 1s +2024-05-06T17:08:34Z #15 2.525 72150K .......... .......... .......... .......... .......... 56% 117M 1s +2024-05-06T17:08:34Z #15 2.526 72200K .......... .......... .......... .......... .......... 56% 92.6M 1s +2024-05-06T17:08:34Z #15 2.527 72250K .......... .......... .......... .......... .......... 56% 128M 1s +2024-05-06T17:08:34Z #15 2.527 72300K .......... .......... .......... .......... .......... 56% 11.1M 1s +2024-05-06T17:08:34Z #15 2.531 72350K .......... .......... .......... .......... .......... 56% 94.7M 1s +2024-05-06T17:08:34Z #15 2.532 72400K .......... .......... .......... .......... .......... 56% 100M 1s +2024-05-06T17:08:34Z #15 2.533 72450K .......... .......... .......... .......... .......... 56% 149M 1s +2024-05-06T17:08:34Z #15 2.533 72500K .......... .......... .......... .......... .......... 56% 147M 1s +2024-05-06T17:08:34Z #15 2.533 72550K .......... .......... .......... .......... .......... 56% 146M 1s +2024-05-06T17:08:34Z #15 2.533 72600K .......... .......... .......... .......... .......... 56% 103M 1s +2024-05-06T17:08:34Z #15 2.534 72650K .......... .......... .......... .......... .......... 56% 112M 1s +2024-05-06T17:08:34Z #15 2.534 72700K .......... .......... .......... .......... .......... 56% 122M 1s +2024-05-06T17:08:34Z #15 2.534 72750K .......... .......... .......... .......... .......... 56% 132M 1s +2024-05-06T17:08:34Z #15 2.536 72800K .......... .......... .......... .......... .......... 57% 89.3M 1s +2024-05-06T17:08:34Z #15 2.536 72850K .......... .......... .......... .......... .......... 57% 99.5M 1s +2024-05-06T17:08:34Z #15 2.536 72900K .......... .......... .......... .......... .......... 57% 117M 1s +2024-05-06T17:08:34Z #15 2.537 72950K .......... .......... .......... .......... .......... 57% 138M 1s +2024-05-06T17:08:34Z #15 2.537 73000K .......... .......... .......... .......... .......... 57% 117M 1s +2024-05-06T17:08:34Z #15 2.537 73050K .......... .......... .......... .......... .......... 57% 102M 1s +2024-05-06T17:08:34Z #15 2.537 73100K .......... .......... .......... .......... .......... 57% 117M 1s +2024-05-06T17:08:34Z #15 2.538 73150K .......... .......... .......... .......... .......... 57% 110M 1s +2024-05-06T17:08:34Z #15 2.538 73200K .......... .......... .......... .......... .......... 57% 100M 1s +2024-05-06T17:08:34Z #15 2.539 73250K .......... .......... .......... .......... .......... 57% 10.9M 1s +2024-05-06T17:08:34Z #15 2.543 73300K .......... .......... .......... .......... .......... 57% 121M 1s +2024-05-06T17:08:34Z #15 2.544 73350K .......... .......... .......... .......... .......... 57% 125M 1s +2024-05-06T17:08:34Z #15 2.545 73400K .......... .......... .......... .......... .......... 57% 94.2M 1s +2024-05-06T17:08:34Z #15 2.545 73450K .......... .......... .......... .......... .......... 57% 127M 1s +2024-05-06T17:08:34Z #15 2.545 73500K .......... .......... .......... .......... .......... 57% 115M 1s +2024-05-06T17:08:34Z #15 2.546 73550K .......... .......... .......... .......... .......... 57% 138M 1s +2024-05-06T17:08:34Z #15 2.546 73600K .......... .......... .......... .......... .......... 57% 108M 1s +2024-05-06T17:08:34Z #15 2.546 73650K .......... .......... .......... .......... .......... 57% 131M 1s +2024-05-06T17:08:34Z #15 2.547 73700K .......... .......... .......... .......... .......... 57% 127M 1s +2024-05-06T17:08:34Z #15 2.547 73750K .......... .......... .......... .......... .......... 57% 122M 1s +2024-05-06T17:08:34Z #15 2.547 73800K .......... .......... .......... .......... .......... 57% 87.0M 1s +2024-05-06T17:08:34Z #15 2.548 73850K .......... .......... .......... .......... .......... 57% 112M 1s +2024-05-06T17:08:34Z #15 2.548 73900K .......... .......... .......... .......... .......... 57% 112M 1s +2024-05-06T17:08:34Z #15 2.549 73950K .......... .......... .......... .......... .......... 57% 123M 1s +2024-05-06T17:08:34Z #15 2.549 74000K .......... .......... .......... .......... .......... 57% 98.0M 1s +2024-05-06T17:08:34Z #15 2.550 74050K .......... .......... .......... .......... .......... 57% 114M 1s +2024-05-06T17:08:34Z #15 2.550 74100K .......... .......... .......... .......... .......... 58% 120M 1s +2024-05-06T17:08:34Z #15 2.551 74150K .......... .......... .......... .......... .......... 58% 123M 1s +2024-05-06T17:08:34Z #15 2.553 74200K .......... .......... .......... .......... .......... 58% 17.6M 1s +2024-05-06T17:08:34Z #15 2.554 74250K .......... .......... .......... .......... .......... 58% 117M 1s +2024-05-06T17:08:34Z #15 2.554 74300K .......... .......... .......... .......... .......... 58% 122M 1s +2024-05-06T17:08:34Z #15 2.555 74350K .......... .......... .......... .......... .......... 58% 126M 1s +2024-05-06T17:08:34Z #15 2.555 74400K .......... .......... .......... .......... .......... 58% 104M 1s +2024-05-06T17:08:34Z #15 2.556 74450K .......... .......... .......... .......... .......... 58% 122M 1s +2024-05-06T17:08:34Z #15 2.556 74500K .......... .......... .......... .......... .......... 58% 130M 1s +2024-05-06T17:08:34Z #15 2.556 74550K .......... .......... .......... .......... .......... 58% 121M 1s +2024-05-06T17:08:34Z #15 2.557 74600K .......... .......... .......... .......... .......... 58% 100M 1s +2024-05-06T17:08:34Z #15 2.557 74650K .......... .......... .......... .......... .......... 58% 114M 1s +2024-05-06T17:08:34Z #15 2.559 74700K .......... .......... .......... .......... .......... 58% 121M 1s +2024-05-06T17:08:34Z #15 2.559 74750K .......... .......... .......... .......... .......... 58% 131M 1s +2024-05-06T17:08:34Z #15 2.560 74800K .......... .......... .......... .......... .......... 58% 131M 1s +2024-05-06T17:08:34Z #15 2.560 74850K .......... .......... .......... .......... .......... 58% 157M 1s +2024-05-06T17:08:34Z #15 2.560 74900K .......... .......... .......... .......... .......... 58% 5.78M 1s +2024-05-06T17:08:34Z #15 2.567 74950K .......... .......... .......... .......... .......... 58% 110M 1s +2024-05-06T17:08:34Z #15 2.568 75000K .......... .......... .......... .......... .......... 58% 111M 1s +2024-05-06T17:08:34Z #15 2.568 75050K .......... .......... .......... .......... .......... 58% 116M 1s +2024-05-06T17:08:34Z #15 2.569 75100K .......... .......... .......... .......... .......... 58% 125M 1s +2024-05-06T17:08:34Z #15 2.570 75150K .......... .......... .......... .......... .......... 58% 139M 1s +2024-05-06T17:08:34Z #15 2.570 75200K .......... .......... .......... .......... .......... 58% 124M 1s +2024-05-06T17:08:34Z #15 2.570 75250K .......... .......... .......... .......... .......... 58% 126M 1s +2024-05-06T17:08:34Z #15 2.570 75300K .......... .......... .......... .......... .......... 58% 121M 1s +2024-05-06T17:08:34Z #15 2.571 75350K .......... .......... .......... .......... .......... 59% 116M 1s +2024-05-06T17:08:34Z #15 2.571 75400K .......... .......... .......... .......... .......... 59% 101M 1s +2024-05-06T17:08:34Z #15 2.573 75450K .......... .......... .......... .......... .......... 59% 126M 1s +2024-05-06T17:08:34Z #15 2.573 75500K .......... .......... .......... .......... .......... 59% 147M 1s +2024-05-06T17:08:34Z #15 2.573 75550K .......... .......... .......... .......... .......... 59% 116M 1s +2024-05-06T17:08:34Z #15 2.573 75600K .......... .......... .......... .......... .......... 59% 119M 1s +2024-05-06T17:08:34Z #15 2.574 75650K .......... .......... .......... .......... .......... 59% 132M 1s +2024-05-06T17:08:34Z #15 2.574 75700K .......... .......... .......... .......... .......... 59% 136M 1s +2024-05-06T17:08:34Z #15 2.575 75750K .......... .......... .......... .......... .......... 59% 128M 1s +2024-05-06T17:08:34Z #15 2.575 75800K .......... .......... .......... .......... .......... 59% 107M 1s +2024-05-06T17:08:34Z #15 2.575 75850K .......... .......... .......... .......... .......... 59% 107M 1s +2024-05-06T17:08:34Z #15 2.575 75900K .......... .......... .......... .......... .......... 59% 143M 1s +2024-05-06T17:08:34Z #15 2.575 75950K .......... .......... .......... .......... .......... 59% 126M 1s +2024-05-06T17:08:34Z #15 2.576 76000K .......... .......... .......... .......... .......... 59% 114M 1s +2024-05-06T17:08:34Z #15 2.576 76050K .......... .......... .......... .......... .......... 59% 145M 1s +2024-05-06T17:08:34Z #15 2.578 76100K .......... .......... .......... .......... .......... 59% 146M 1s +2024-05-06T17:08:34Z #15 2.578 76150K .......... .......... .......... .......... .......... 59% 124M 1s +2024-05-06T17:08:34Z #15 2.578 76200K .......... .......... .......... .......... .......... 59% 112M 1s +2024-05-06T17:08:34Z #15 2.578 76250K .......... .......... .......... .......... .......... 59% 141M 1s +2024-05-06T17:08:34Z #15 2.578 76300K .......... .......... .......... .......... .......... 59% 112M 1s +2024-05-06T17:08:34Z #15 2.579 76350K .......... .......... .......... .......... .......... 59% 127M 1s +2024-05-06T17:08:34Z #15 2.579 76400K .......... .......... .......... .......... .......... 59% 105M 1s +2024-05-06T17:08:34Z #15 2.580 76450K .......... .......... .......... .......... .......... 59% 133M 1s +2024-05-06T17:08:34Z #15 2.580 76500K .......... .......... .......... .......... .......... 59% 118M 1s +2024-05-06T17:08:34Z #15 2.581 76550K .......... .......... .......... .......... .......... 59% 123M 1s +2024-05-06T17:08:34Z #15 2.581 76600K .......... .......... .......... .......... .......... 59% 109M 1s +2024-05-06T17:08:34Z #15 2.581 76650K .......... .......... .......... .......... .......... 60% 115M 1s +2024-05-06T17:08:34Z #15 2.582 76700K .......... .......... .......... .......... .......... 60% 131M 1s +2024-05-06T17:08:34Z #15 2.582 76750K .......... .......... .......... .......... .......... 60% 120M 1s +2024-05-06T17:08:34Z #15 2.583 76800K .......... .......... .......... .......... .......... 60% 109M 1s +2024-05-06T17:08:34Z #15 2.584 76850K .......... .......... .......... .......... .......... 60% 11.1M 1s +2024-05-06T17:08:34Z #15 2.587 76900K .......... .......... .......... .......... .......... 60% 100M 1s +2024-05-06T17:08:34Z #15 2.588 76950K .......... .......... .......... .......... .......... 60% 147M 1s +2024-05-06T17:08:34Z #15 2.588 77000K .......... .......... .......... .......... .......... 60% 108M 1s +2024-05-06T17:08:34Z #15 2.589 77050K .......... .......... .......... .......... .......... 60% 127M 1s +2024-05-06T17:08:34Z #15 2.589 77100K .......... .......... .......... .......... .......... 60% 113M 1s +2024-05-06T17:08:34Z #15 2.589 77150K .......... .......... .......... .......... .......... 60% 141M 1s +2024-05-06T17:08:34Z #15 2.590 77200K .......... .......... .......... .......... .......... 60% 111M 1s +2024-05-06T17:08:34Z #15 2.590 77250K .......... .......... .......... .......... .......... 60% 157M 1s +2024-05-06T17:08:34Z #15 2.590 77300K .......... .......... .......... .......... .......... 60% 115M 1s +2024-05-06T17:08:34Z #15 2.591 77350K .......... .......... .......... .......... .......... 60% 114M 1s +2024-05-06T17:08:34Z #15 2.592 77400K .......... .......... .......... .......... .......... 60% 97.4M 1s +2024-05-06T17:08:34Z #15 2.592 77450K .......... .......... .......... .......... .......... 60% 140M 1s +2024-05-06T17:08:34Z #15 2.593 77500K .......... .......... .......... .......... .......... 60% 128M 1s +2024-05-06T17:08:34Z #15 2.593 77550K .......... .......... .......... .......... .......... 60% 142M 1s +2024-05-06T17:08:34Z #15 2.594 77600K .......... .......... .......... .......... .......... 60% 98.6M 1s +2024-05-06T17:08:34Z #15 2.594 77650K .......... .......... .......... .......... .......... 60% 144M 1s +2024-05-06T17:08:34Z #15 2.594 77700K .......... .......... .......... .......... .......... 60% 130M 1s +2024-05-06T17:08:34Z #15 2.594 77750K .......... .......... .......... .......... .......... 60% 109M 1s +2024-05-06T17:08:34Z #15 2.594 77800K .......... .......... .......... .......... .......... 60% 116M 1s +2024-05-06T17:08:34Z #15 2.597 77850K .......... .......... .......... .......... .......... 60% 5.77M 1s +2024-05-06T17:08:34Z #15 2.604 77900K .......... .......... .......... .......... .......... 60% 120M 1s +2024-05-06T17:08:34Z #15 2.605 77950K .......... .......... .......... .......... .......... 61% 122M 1s +2024-05-06T17:08:34Z #15 2.605 78000K .......... .......... .......... .......... .......... 61% 124M 1s +2024-05-06T17:08:34Z #15 2.606 78050K .......... .......... .......... .......... .......... 61% 124M 1s +2024-05-06T17:08:34Z #15 2.606 78100K .......... .......... .......... .......... .......... 61% 109M 1s +2024-05-06T17:08:34Z #15 2.607 78150K .......... .......... .......... .......... .......... 61% 132M 1s +2024-05-06T17:08:34Z #15 2.607 78200K .......... .......... .......... .......... .......... 61% 108M 1s +2024-05-06T17:08:34Z #15 2.607 78250K .......... .......... .......... .......... .......... 61% 149M 1s +2024-05-06T17:08:34Z #15 2.607 78300K .......... .......... .......... .......... .......... 61% 124M 1s +2024-05-06T17:08:34Z #15 2.608 78350K .......... .......... .......... .......... .......... 61% 132M 1s +2024-05-06T17:08:34Z #15 2.608 78400K .......... .......... .......... .......... .......... 61% 108M 1s +2024-05-06T17:08:34Z #15 2.609 78450K .......... .......... .......... .......... .......... 61% 146M 1s +2024-05-06T17:08:34Z #15 2.609 78500K .......... .......... .......... .......... .......... 61% 138M 1s +2024-05-06T17:08:34Z #15 2.610 78550K .......... .......... .......... .......... .......... 61% 118M 1s +2024-05-06T17:08:34Z #15 2.610 78600K .......... .......... .......... .......... .......... 61% 110M 1s +2024-05-06T17:08:34Z #15 2.610 78650K .......... .......... .......... .......... .......... 61% 136M 1s +2024-05-06T17:08:34Z #15 2.610 78700K .......... .......... .......... .......... .......... 61% 112M 1s +2024-05-06T17:08:34Z #15 2.611 78750K .......... .......... .......... .......... .......... 61% 150M 1s +2024-05-06T17:08:34Z #15 2.612 78800K .......... .......... .......... .......... .......... 61% 119M 1s +2024-05-06T17:08:34Z #15 2.612 78850K .......... .......... .......... .......... .......... 61% 126M 1s +2024-05-06T17:08:34Z #15 2.612 78900K .......... .......... .......... .......... .......... 61% 131M 1s +2024-05-06T17:08:34Z #15 2.613 78950K .......... .......... .......... .......... .......... 61% 123M 1s +2024-05-06T17:08:34Z #15 2.613 79000K .......... .......... .......... .......... .......... 61% 110M 1s +2024-05-06T17:08:34Z #15 2.614 79050K .......... .......... .......... .......... .......... 61% 138M 1s +2024-05-06T17:08:34Z #15 2.614 79100K .......... .......... .......... .......... .......... 61% 122M 1s +2024-05-06T17:08:34Z #15 2.614 79150K .......... .......... .......... .......... .......... 61% 121M 1s +2024-05-06T17:08:34Z #15 2.614 79200K .......... .......... .......... .......... .......... 62% 130M 1s +2024-05-06T17:08:34Z #15 2.614 79250K .......... .......... .......... .......... .......... 62% 130M 1s +2024-05-06T17:08:34Z #15 2.614 79300K .......... .......... .......... .......... .......... 62% 139M 1s +2024-05-06T17:08:34Z #15 2.615 79350K .......... .......... .......... .......... .......... 62% 103M 1s +2024-05-06T17:08:34Z #15 2.616 79400K .......... .......... .......... .......... .......... 62% 122M 1s +2024-05-06T17:08:34Z #15 2.616 79450K .......... .......... .......... .......... .......... 62% 131M 1s +2024-05-06T17:08:34Z #15 2.616 79500K .......... .......... .......... .......... .......... 62% 120M 1s +2024-05-06T17:08:34Z #15 2.617 79550K .......... .......... .......... .......... .......... 62% 128M 1s +2024-05-06T17:08:34Z #15 2.618 79600K .......... .......... .......... .......... .......... 62% 117M 1s +2024-05-06T17:08:34Z #15 2.618 79650K .......... .......... .......... .......... .......... 62% 137M 1s +2024-05-06T17:08:34Z #15 2.618 79700K .......... .......... .......... .......... .......... 62% 132M 1s +2024-05-06T17:08:34Z #15 2.619 79750K .......... .......... .......... .......... .......... 62% 143M 1s +2024-05-06T17:08:34Z #15 2.619 79800K .......... .......... .......... .......... .......... 62% 100M 1s +2024-05-06T17:08:34Z #15 2.620 79850K .......... .......... .......... .......... .......... 62% 129M 1s +2024-05-06T17:08:34Z #15 2.620 79900K .......... .......... .......... .......... .......... 62% 10.9M 1s +2024-05-06T17:08:34Z #15 2.624 79950K .......... .......... .......... .......... .......... 62% 126M 1s +2024-05-06T17:08:34Z #15 2.624 80000K .......... .......... .......... .......... .......... 62% 111M 1s +2024-05-06T17:08:34Z #15 2.624 80050K .......... .......... .......... .......... .......... 62% 115M 1s +2024-05-06T17:08:34Z #15 2.625 80100K .......... .......... .......... .......... .......... 62% 126M 1s +2024-05-06T17:08:34Z #15 2.626 80150K .......... .......... .......... .......... .......... 62% 140M 1s +2024-05-06T17:08:34Z #15 2.626 80200K .......... .......... .......... .......... .......... 62% 116M 1s +2024-05-06T17:08:34Z #15 2.626 80250K .......... .......... .......... .......... .......... 62% 118M 1s +2024-05-06T17:08:34Z #15 2.627 80300K .......... .......... .......... .......... .......... 62% 135M 1s +2024-05-06T17:08:34Z #15 2.627 80350K .......... .......... .......... .......... .......... 62% 146M 1s +2024-05-06T17:08:34Z #15 2.627 80400K .......... .......... .......... .......... .......... 62% 91.2M 1s +2024-05-06T17:08:34Z #15 2.628 80450K .......... .......... .......... .......... .......... 62% 137M 1s +2024-05-06T17:08:34Z #15 2.628 80500K .......... .......... .......... .......... .......... 63% 131M 1s +2024-05-06T17:08:34Z #15 2.629 80550K .......... .......... .......... .......... .......... 63% 127M 1s +2024-05-06T17:08:34Z #15 2.629 80600K .......... .......... .......... .......... .......... 63% 118M 1s +2024-05-06T17:08:34Z #15 2.629 80650K .......... .......... .......... .......... .......... 63% 146M 1s +2024-05-06T17:08:34Z #15 2.629 80700K .......... .......... .......... .......... .......... 63% 105M 1s +2024-05-06T17:08:34Z #15 2.630 80750K .......... .......... .......... .......... .......... 63% 144M 1s +2024-05-06T17:08:34Z #15 2.630 80800K .......... .......... .......... .......... .......... 63% 99.1M 1s +2024-05-06T17:08:34Z #15 2.631 80850K .......... .......... .......... .......... .......... 63% 129M 1s +2024-05-06T17:08:34Z #15 2.635 80900K .......... .......... .......... .......... .......... 63% 10.9M 1s +2024-05-06T17:08:34Z #15 2.635 80950K .......... .......... .......... .......... .......... 63% 120M 1s +2024-05-06T17:08:34Z #15 2.636 81000K .......... .......... .......... .......... .......... 63% 107M 1s +2024-05-06T17:08:34Z #15 2.636 81050K .......... .......... .......... .......... .......... 63% 122M 1s +2024-05-06T17:08:34Z #15 2.637 81100K .......... .......... .......... .......... .......... 63% 120M 1s +2024-05-06T17:08:34Z #15 2.638 81150K .......... .......... .......... .......... .......... 63% 177M 1s +2024-05-06T17:08:34Z #15 2.638 81200K .......... .......... .......... .......... .......... 63% 138M 1s +2024-05-06T17:08:34Z #15 2.638 81250K .......... .......... .......... .......... .......... 63% 123M 1s +2024-05-06T17:08:34Z #15 2.638 81300K .......... .......... .......... .......... .......... 63% 114M 1s +2024-05-06T17:08:34Z #15 2.639 81350K .......... .......... .......... .......... .......... 63% 131M 1s +2024-05-06T17:08:34Z #15 2.639 81400K .......... .......... .......... .......... .......... 63% 50.4M 1s +2024-05-06T17:08:34Z #15 2.640 81450K .......... .......... .......... .......... .......... 63% 123M 1s +2024-05-06T17:08:34Z #15 2.642 81500K .......... .......... .......... .......... .......... 63% 61.6M 1s +2024-05-06T17:08:34Z #15 2.642 81550K .......... .......... .......... .......... .......... 63% 115M 1s +2024-05-06T17:08:34Z #15 2.642 81600K .......... .......... .......... .......... .......... 63% 106M 1s +2024-05-06T17:08:34Z #15 2.642 81650K .......... .......... .......... .......... .......... 63% 147M 1s +2024-05-06T17:08:34Z #15 2.642 81700K .......... .......... .......... .......... .......... 63% 116M 1s +2024-05-06T17:08:34Z #15 2.643 81750K .......... .......... .......... .......... .......... 64% 121M 1s +2024-05-06T17:08:34Z #15 2.643 81800K .......... .......... .......... .......... .......... 64% 112M 1s +2024-05-06T17:08:34Z #15 2.644 81850K .......... .......... .......... .......... .......... 64% 119M 1s +2024-05-06T17:08:34Z #15 2.644 81900K .......... .......... .......... .......... .......... 64% 154M 1s +2024-05-06T17:08:34Z #15 2.644 81950K .......... .......... .......... .......... .......... 64% 121M 1s +2024-05-06T17:08:34Z #15 2.645 82000K .......... .......... .......... .......... .......... 64% 111M 1s +2024-05-06T17:08:34Z #15 2.646 82050K .......... .......... .......... .......... .......... 64% 129M 1s +2024-05-06T17:08:34Z #15 2.646 82100K .......... .......... .......... .......... .......... 64% 99.3M 1s +2024-05-06T17:08:34Z #15 2.647 82150K .......... .......... .......... .......... .......... 64% 124M 1s +2024-05-06T17:08:34Z #15 2.647 82200K .......... .......... .......... .......... .......... 64% 117M 1s +2024-05-06T17:08:34Z #15 2.647 82250K .......... .......... .......... .......... .......... 64% 11.9M 1s +2024-05-06T17:08:34Z #15 2.652 82300K .......... .......... .......... .......... .......... 64% 111M 1s +2024-05-06T17:08:34Z #15 2.652 82350K .......... .......... .......... .......... .......... 64% 127M 1s +2024-05-06T17:08:34Z #15 2.652 82400K .......... .......... .......... .......... .......... 64% 107M 1s +2024-05-06T17:08:34Z #15 2.652 82450K .......... .......... .......... .......... .......... 64% 128M 1s +2024-05-06T17:08:34Z #15 2.653 82500K .......... .......... .......... .......... .......... 64% 141M 1s +2024-05-06T17:08:34Z #15 2.653 82550K .......... .......... .......... .......... .......... 64% 144M 1s +2024-05-06T17:08:34Z #15 2.654 82600K .......... .......... .......... .......... .......... 64% 112M 1s +2024-05-06T17:08:34Z #15 2.654 82650K .......... .......... .......... .......... .......... 64% 140M 1s +2024-05-06T17:08:34Z #15 2.654 82700K .......... .......... .......... .......... .......... 64% 151M 1s +2024-05-06T17:08:34Z #15 2.655 82750K .......... .......... .......... .......... .......... 64% 109M 1s +2024-05-06T17:08:34Z #15 2.655 82800K .......... .......... .......... .......... .......... 64% 10.8M 1s +2024-05-06T17:08:34Z #15 2.660 82850K .......... .......... .......... .......... .......... 64% 122M 1s +2024-05-06T17:08:34Z #15 2.660 82900K .......... .......... .......... .......... .......... 64% 116M 1s +2024-05-06T17:08:34Z #15 2.660 82950K .......... .......... .......... .......... .......... 64% 137M 1s +2024-05-06T17:08:34Z #15 2.661 83000K .......... .......... .......... .......... .......... 64% 123M 1s +2024-05-06T17:08:34Z #15 2.661 83050K .......... .......... .......... .......... .......... 65% 117M 1s +2024-05-06T17:08:34Z #15 2.662 83100K .......... .......... .......... .......... .......... 65% 137M 1s +2024-05-06T17:08:34Z #15 2.662 83150K .......... .......... .......... .......... .......... 65% 106M 1s +2024-05-06T17:08:34Z #15 2.663 83200K .......... .......... .......... .......... .......... 65% 111M 1s +2024-05-06T17:08:34Z #15 2.663 83250K .......... .......... .......... .......... .......... 65% 105M 1s +2024-05-06T17:08:34Z #15 2.664 83300K .......... .......... .......... .......... .......... 65% 125M 1s +2024-05-06T17:08:34Z #15 2.664 83350K .......... .......... .......... .......... .......... 65% 117M 1s +2024-05-06T17:08:34Z #15 2.664 83400K .......... .......... .......... .......... .......... 65% 104M 1s +2024-05-06T17:08:34Z #15 2.665 83450K .......... .......... .......... .......... .......... 65% 111M 1s +2024-05-06T17:08:34Z #15 2.665 83500K .......... .......... .......... .......... .......... 65% 119M 1s +2024-05-06T17:08:34Z #15 2.665 83550K .......... .......... .......... .......... .......... 65% 124M 1s +2024-05-06T17:08:34Z #15 2.666 83600K .......... .......... .......... .......... .......... 65% 108M 1s +2024-05-06T17:08:34Z #15 2.667 83650K .......... .......... .......... .......... .......... 65% 141M 1s +2024-05-06T17:08:34Z #15 2.667 83700K .......... .......... .......... .......... .......... 65% 111M 1s +2024-05-06T17:08:34Z #15 2.667 83750K .......... .......... .......... .......... .......... 65% 128M 1s +2024-05-06T17:08:34Z #15 2.668 83800K .......... .......... .......... .......... .......... 65% 103M 1s +2024-05-06T17:08:34Z #15 2.668 83850K .......... .......... .......... .......... .......... 65% 124M 1s +2024-05-06T17:08:34Z #15 2.668 83900K .......... .......... .......... .......... .......... 65% 114M 1s +2024-05-06T17:08:34Z #15 2.669 83950K .......... .......... .......... .......... .......... 65% 127M 1s +2024-05-06T17:08:34Z #15 2.669 84000K .......... .......... .......... .......... .......... 65% 104M 1s +2024-05-06T17:08:34Z #15 2.670 84050K .......... .......... .......... .......... .......... 65% 120M 1s +2024-05-06T17:08:34Z #15 2.670 84100K .......... .......... .......... .......... .......... 65% 117M 1s +2024-05-06T17:08:34Z #15 2.670 84150K .......... .......... .......... .......... .......... 65% 122M 1s +2024-05-06T17:08:34Z #15 2.671 84200K .......... .......... .......... .......... .......... 65% 5.79M 1s +2024-05-06T17:08:34Z #15 2.679 84250K .......... .......... .......... .......... .......... 65% 110M 1s +2024-05-06T17:08:34Z #15 2.680 84300K .......... .......... .......... .......... .......... 66% 106M 1s +2024-05-06T17:08:34Z #15 2.680 84350K .......... .......... .......... .......... .......... 66% 128M 1s +2024-05-06T17:08:34Z #15 2.681 84400K .......... .......... .......... .......... .......... 66% 101M 1s +2024-05-06T17:08:34Z #15 2.682 84450K .......... .......... .......... .......... .......... 66% 111M 1s +2024-05-06T17:08:34Z #15 2.683 84500K .......... .......... .......... .......... .......... 66% 161M 1s +2024-05-06T17:08:34Z #15 2.683 84550K .......... .......... .......... .......... .......... 66% 118M 1s +2024-05-06T17:08:34Z #15 2.683 84600K .......... .......... .......... .......... .......... 66% 124M 1s +2024-05-06T17:08:34Z #15 2.683 84650K .......... .......... .......... .......... .......... 66% 100M 1s +2024-05-06T17:08:34Z #15 2.683 84700K .......... .......... .......... .......... .......... 66% 139M 1s +2024-05-06T17:08:34Z #15 2.684 84750K .......... .......... .......... .......... .......... 66% 108M 1s +2024-05-06T17:08:34Z #15 2.685 84800K .......... .......... .......... .......... .......... 66% 124M 1s +2024-05-06T17:08:34Z #15 2.685 84850K .......... .......... .......... .......... .......... 66% 118M 1s +2024-05-06T17:08:34Z #15 2.685 84900K .......... .......... .......... .......... .......... 66% 144M 1s +2024-05-06T17:08:34Z #15 2.686 84950K .......... .......... .......... .......... .......... 66% 118M 1s +2024-05-06T17:08:34Z #15 2.686 85000K .......... .......... .......... .......... .......... 66% 129M 1s +2024-05-06T17:08:34Z #15 2.687 85050K .......... .......... .......... .......... .......... 66% 115M 1s +2024-05-06T17:08:34Z #15 2.687 85100K .......... .......... .......... .......... .......... 66% 156M 1s +2024-05-06T17:08:34Z #15 2.687 85150K .......... .......... .......... .......... .......... 66% 131M 1s +2024-05-06T17:08:34Z #15 2.687 85200K .......... .......... .......... .......... .......... 66% 109M 1s +2024-05-06T17:08:34Z #15 2.688 85250K .......... .......... .......... .......... .......... 66% 111M 1s +2024-05-06T17:08:34Z #15 2.688 85300K .......... .......... .......... .......... .......... 66% 154M 1s +2024-05-06T17:08:34Z #15 2.688 85350K .......... .......... .......... .......... .......... 66% 127M 1s +2024-05-06T17:08:34Z #15 2.688 85400K .......... .......... .......... .......... .......... 66% 130M 1s +2024-05-06T17:08:34Z #15 2.689 85450K .......... .......... .......... .......... .......... 66% 108M 1s +2024-05-06T17:08:34Z #15 2.689 85500K .......... .......... .......... .......... .......... 66% 147M 1s +2024-05-06T17:08:34Z #15 2.690 85550K .......... .......... .......... .......... .......... 66% 115M 1s +2024-05-06T17:08:34Z #15 2.690 85600K .......... .......... .......... .......... .......... 67% 127M 1s +2024-05-06T17:08:34Z #15 2.691 85650K .......... .......... .......... .......... .......... 67% 119M 1s +2024-05-06T17:08:34Z #15 2.691 85700K .......... .......... .......... .......... .......... 67% 32.3M 1s +2024-05-06T17:08:34Z #15 2.693 85750K .......... .......... .......... .......... .......... 67% 114M 1s +2024-05-06T17:08:34Z #15 2.693 85800K .......... .......... .......... .......... .......... 67% 108M 1s +2024-05-06T17:08:34Z #15 2.694 85850K .......... .......... .......... .......... .......... 67% 133M 1s +2024-05-06T17:08:34Z #15 2.694 85900K .......... .......... .......... .......... .......... 67% 123M 1s +2024-05-06T17:08:34Z #15 2.695 85950K .......... .......... .......... .......... .......... 67% 141M 1s +2024-05-06T17:08:34Z #15 2.695 86000K .......... .......... .......... .......... .......... 67% 96.0M 1s +2024-05-06T17:08:34Z #15 2.696 86050K .......... .......... .......... .......... .......... 67% 130M 1s +2024-05-06T17:08:34Z #15 2.696 86100K .......... .......... .......... .......... .......... 67% 110M 1s +2024-05-06T17:08:34Z #15 2.696 86150K .......... .......... .......... .......... .......... 67% 123M 1s +2024-05-06T17:08:34Z #15 2.698 86200K .......... .......... .......... .......... .......... 67% 110M 1s +2024-05-06T17:08:34Z #15 2.698 86250K .......... .......... .......... .......... .......... 67% 139M 1s +2024-05-06T17:08:34Z #15 2.698 86300K .......... .......... .......... .......... .......... 67% 116M 1s +2024-05-06T17:08:34Z #15 2.698 86350K .......... .......... .......... .......... .......... 67% 135M 1s +2024-05-06T17:08:34Z #15 2.698 86400K .......... .......... .......... .......... .......... 67% 103M 1s +2024-05-06T17:08:34Z #15 2.698 86450K .......... .......... .......... .......... .......... 67% 124M 1s +2024-05-06T17:08:34Z #15 2.698 86500K .......... .......... .......... .......... .......... 67% 126M 1s +2024-05-06T17:08:34Z #15 2.699 86550K .......... .......... .......... .......... .......... 67% 10.9M 1s +2024-05-06T17:08:34Z #15 2.704 86600K .......... .......... .......... .......... .......... 67% 120M 1s +2024-05-06T17:08:34Z #15 2.704 86650K .......... .......... .......... .......... .......... 67% 113M 1s +2024-05-06T17:08:34Z #15 2.704 86700K .......... .......... .......... .......... .......... 67% 131M 1s +2024-05-06T17:08:34Z #15 2.704 86750K .......... .......... .......... .......... .......... 67% 130M 1s +2024-05-06T17:08:34Z #15 2.705 86800K .......... .......... .......... .......... .......... 67% 105M 1s +2024-05-06T17:08:34Z #15 2.706 86850K .......... .......... .......... .......... .......... 68% 128M 1s +2024-05-06T17:08:34Z #15 2.706 86900K .......... .......... .......... .......... .......... 68% 123M 1s +2024-05-06T17:08:34Z #15 2.706 86950K .......... .......... .......... .......... .......... 68% 116M 1s +2024-05-06T17:08:34Z #15 2.706 87000K .......... .......... .......... .......... .......... 68% 94.5M 1s +2024-05-06T17:08:34Z #15 2.707 87050K .......... .......... .......... .......... .......... 68% 29.4M 1s +2024-05-06T17:08:34Z #15 2.709 87100K .......... .......... .......... .......... .......... 68% 123M 1s +2024-05-06T17:08:34Z #15 2.709 87150K .......... .......... .......... .......... .......... 68% 117M 1s +2024-05-06T17:08:34Z #15 2.709 87200K .......... .......... .......... .......... .......... 68% 97.7M 1s +2024-05-06T17:08:34Z #15 2.711 87250K .......... .......... .......... .......... .......... 68% 136M 1s +2024-05-06T17:08:34Z #15 2.711 87300K .......... .......... .......... .......... .......... 68% 120M 1s +2024-05-06T17:08:34Z #15 2.711 87350K .......... .......... .......... .......... .......... 68% 129M 1s +2024-05-06T17:08:34Z #15 2.711 87400K .......... .......... .......... .......... .......... 68% 109M 1s +2024-05-06T17:08:34Z #15 2.711 87450K .......... .......... .......... .......... .......... 68% 115M 1s +2024-05-06T17:08:34Z #15 2.712 87500K .......... .......... .......... .......... .......... 68% 125M 1s +2024-05-06T17:08:34Z #15 2.712 87550K .......... .......... .......... .......... .......... 68% 124M 1s +2024-05-06T17:08:34Z #15 2.713 87600K .......... .......... .......... .......... .......... 68% 122M 1s +2024-05-06T17:08:34Z #15 2.713 87650K .......... .......... .......... .......... .......... 68% 129M 1s +2024-05-06T17:08:34Z #15 2.715 87700K .......... .......... .......... .......... .......... 68% 117M 1s +2024-05-06T17:08:34Z #15 2.715 87750K .......... .......... .......... .......... .......... 68% 134M 1s +2024-05-06T17:08:34Z #15 2.715 87800K .......... .......... .......... .......... .......... 68% 130M 1s +2024-05-06T17:08:34Z #15 2.715 87850K .......... .......... .......... .......... .......... 68% 5.72M 1s +2024-05-06T17:08:34Z #15 2.723 87900K .......... .......... .......... .......... .......... 68% 128M 1s +2024-05-06T17:08:34Z #15 2.724 87950K .......... .......... .......... .......... .......... 68% 125M 1s +2024-05-06T17:08:34Z #15 2.724 88000K .......... .......... .......... .......... .......... 68% 126M 1s +2024-05-06T17:08:34Z #15 2.725 88050K .......... .......... .......... .......... .......... 68% 121M 1s +2024-05-06T17:08:34Z #15 2.725 88100K .......... .......... .......... .......... .......... 68% 124M 1s +2024-05-06T17:08:34Z #15 2.726 88150K .......... .......... .......... .......... .......... 69% 116M 1s +2024-05-06T17:08:34Z #15 2.726 88200K .......... .......... .......... .......... .......... 69% 106M 1s +2024-05-06T17:08:34Z #15 2.727 88250K .......... .......... .......... .......... .......... 69% 161M 1s +2024-05-06T17:08:34Z #15 2.727 88300K .......... .......... .......... .......... .......... 69% 126M 1s +2024-05-06T17:08:34Z #15 2.728 88350K .......... .......... .......... .......... .......... 69% 121M 1s +2024-05-06T17:08:34Z #15 2.729 88400K .......... .......... .......... .......... .......... 69% 106M 1s +2024-05-06T17:08:34Z #15 2.729 88450K .......... .......... .......... .......... .......... 69% 145M 1s +2024-05-06T17:08:34Z #15 2.729 88500K .......... .......... .......... .......... .......... 69% 113M 1s +2024-05-06T17:08:34Z #15 2.730 88550K .......... .......... .......... .......... .......... 69% 129M 1s +2024-05-06T17:08:34Z #15 2.730 88600K .......... .......... .......... .......... .......... 69% 114M 1s +2024-05-06T17:08:34Z #15 2.731 88650K .......... .......... .......... .......... .......... 69% 151M 1s +2024-05-06T17:08:34Z #15 2.731 88700K .......... .......... .......... .......... .......... 69% 118M 1s +2024-05-06T17:08:34Z #15 2.731 88750K .......... .......... .......... .......... .......... 69% 121M 1s +2024-05-06T17:08:34Z #15 2.731 88800K .......... .......... .......... .......... .......... 69% 98.4M 1s +2024-05-06T17:08:35Z #15 2.731 88850K .......... .......... .......... .......... .......... 69% 113M 1s +2024-05-06T17:08:35Z #15 2.732 88900K .......... .......... .......... .......... .......... 69% 127M 1s +2024-05-06T17:08:35Z #15 2.732 88950K .......... .......... .......... .......... .......... 69% 147M 1s +2024-05-06T17:08:35Z #15 2.733 89000K .......... .......... .......... .......... .......... 69% 107M 1s +2024-05-06T17:08:35Z #15 2.733 89050K .......... .......... .......... .......... .......... 69% 132M 1s +2024-05-06T17:08:35Z #15 2.733 89100K .......... .......... .......... .......... .......... 69% 136M 1s +2024-05-06T17:08:35Z #15 2.734 89150K .......... .......... .......... .......... .......... 69% 129M 1s +2024-05-06T17:08:35Z #15 2.734 89200K .......... .......... .......... .......... .......... 69% 99.6M 1s +2024-05-06T17:08:35Z #15 2.736 89250K .......... .......... .......... .......... .......... 69% 128M 1s +2024-05-06T17:08:35Z #15 2.736 89300K .......... .......... .......... .......... .......... 69% 137M 1s +2024-05-06T17:08:35Z #15 2.736 89350K .......... .......... .......... .......... .......... 69% 103M 1s +2024-05-06T17:08:35Z #15 2.737 89400K .......... .......... .......... .......... .......... 69% 126M 1s +2024-05-06T17:08:35Z #15 2.737 89450K .......... .......... .......... .......... .......... 70% 144M 1s +2024-05-06T17:08:35Z #15 2.737 89500K .......... .......... .......... .......... .......... 70% 113M 1s +2024-05-06T17:08:35Z #15 2.737 89550K .......... .......... .......... .......... .......... 70% 128M 1s +2024-05-06T17:08:35Z #15 2.737 89600K .......... .......... .......... .......... .......... 70% 95.0M 1s +2024-05-06T17:08:35Z #15 2.738 89650K .......... .......... .......... .......... .......... 70% 134M 1s +2024-05-06T17:08:35Z #15 2.738 89700K .......... .......... .......... .......... .......... 70% 114M 1s +2024-05-06T17:08:35Z #15 2.740 89750K .......... .......... .......... .......... .......... 70% 127M 1s +2024-05-06T17:08:35Z #15 2.740 89800K .......... .......... .......... .......... .......... 70% 119M 1s +2024-05-06T17:08:35Z #15 2.740 89850K .......... .......... .......... .......... .......... 70% 11.1M 1s +2024-05-06T17:08:35Z #15 2.743 89900K .......... .......... .......... .......... .......... 70% 106M 1s +2024-05-06T17:08:35Z #15 2.744 89950K .......... .......... .......... .......... .......... 70% 121M 1s +2024-05-06T17:08:35Z #15 2.744 90000K .......... .......... .......... .......... .......... 70% 92.2M 1s +2024-05-06T17:08:35Z #15 2.745 90050K .......... .......... .......... .......... .......... 70% 134M 1s +2024-05-06T17:08:35Z #15 2.745 90100K .......... .......... .......... .......... .......... 70% 95.6M 1s +2024-05-06T17:08:35Z #15 2.746 90150K .......... .......... .......... .......... .......... 70% 100M 1s +2024-05-06T17:08:35Z #15 2.747 90200K .......... .......... .......... .......... .......... 70% 116M 1s +2024-05-06T17:08:35Z #15 2.747 90250K .......... .......... .......... .......... .......... 70% 113M 1s +2024-05-06T17:08:35Z #15 2.747 90300K .......... .......... .......... .......... .......... 70% 122M 1s +2024-05-06T17:08:35Z #15 2.747 90350K .......... .......... .......... .......... .......... 70% 99.0M 1s +2024-05-06T17:08:35Z #15 2.748 90400K .......... .......... .......... .......... .......... 70% 121M 1s +2024-05-06T17:08:35Z #15 2.748 90450K .......... .......... .......... .......... .......... 70% 113M 1s +2024-05-06T17:08:35Z #15 2.749 90500K .......... .......... .......... .......... .......... 70% 123M 1s +2024-05-06T17:08:35Z #15 2.750 90550K .......... .......... .......... .......... .......... 70% 106M 1s +2024-05-06T17:08:35Z #15 2.750 90600K .......... .......... .......... .......... .......... 70% 146M 1s +2024-05-06T17:08:35Z #15 2.750 90650K .......... .......... .......... .......... .......... 70% 122M 1s +2024-05-06T17:08:35Z #15 2.752 90700K .......... .......... .......... .......... .......... 71% 106M 1s +2024-05-06T17:08:35Z #15 2.752 90750K .......... .......... .......... .......... .......... 71% 15.2M 1s +2024-05-06T17:08:35Z #15 2.754 90800K .......... .......... .......... .......... .......... 71% 132M 1s +2024-05-06T17:08:35Z #15 2.755 90850K .......... .......... .......... .......... .......... 71% 124M 1s +2024-05-06T17:08:35Z #15 2.755 90900K .......... .......... .......... .......... .......... 71% 151M 1s +2024-05-06T17:08:35Z #15 2.756 90950K .......... .......... .......... .......... .......... 71% 103M 1s +2024-05-06T17:08:35Z #15 2.757 91000K .......... .......... .......... .......... .......... 71% 125M 1s +2024-05-06T17:08:35Z #15 2.757 91050K .......... .......... .......... .......... .......... 71% 110M 1s +2024-05-06T17:08:35Z #15 2.757 91100K .......... .......... .......... .......... .......... 71% 140M 1s +2024-05-06T17:08:35Z #15 2.757 91150K .......... .......... .......... .......... .......... 71% 118M 1s +2024-05-06T17:08:35Z #15 2.757 91200K .......... .......... .......... .......... .......... 71% 123M 1s +2024-05-06T17:08:35Z #15 2.759 91250K .......... .......... .......... .......... .......... 71% 115M 0s +2024-05-06T17:08:35Z #15 2.759 91300K .......... .......... .......... .......... .......... 71% 9.06M 1s +2024-05-06T17:08:35Z #15 2.764 91350K .......... .......... .......... .......... .......... 71% 106M 0s +2024-05-06T17:08:35Z #15 2.764 91400K .......... .......... .......... .......... .......... 71% 133M 0s +2024-05-06T17:08:35Z #15 2.765 91450K .......... .......... .......... .......... .......... 71% 122M 0s +2024-05-06T17:08:35Z #15 2.765 91500K .......... .......... .......... .......... .......... 71% 131M 0s +2024-05-06T17:08:35Z #15 2.765 91550K .......... .......... .......... .......... .......... 71% 109M 0s +2024-05-06T17:08:35Z #15 2.766 91600K .......... .......... .......... .......... .......... 71% 136M 0s +2024-05-06T17:08:35Z #15 2.766 91650K .......... .......... .......... .......... .......... 71% 114M 0s +2024-05-06T17:08:35Z #15 2.766 91700K .......... .......... .......... .......... .......... 71% 114M 0s +2024-05-06T17:08:35Z #15 2.767 91750K .......... .......... .......... .......... .......... 71% 93.6M 0s +2024-05-06T17:08:35Z #15 2.768 91800K .......... .......... .......... .......... .......... 71% 126M 0s +2024-05-06T17:08:35Z #15 2.768 91850K .......... .......... .......... .......... .......... 71% 104M 0s +2024-05-06T17:08:35Z #15 2.768 91900K .......... .......... .......... .......... .......... 71% 110M 0s +2024-05-06T17:08:35Z #15 2.771 91950K .......... .......... .......... .......... .......... 71% 104M 0s +2024-05-06T17:08:35Z #15 2.771 92000K .......... .......... .......... .......... .......... 72% 120M 0s +2024-05-06T17:08:35Z #15 2.771 92050K .......... .......... .......... .......... .......... 72% 112M 0s +2024-05-06T17:08:35Z #15 2.771 92100K .......... .......... .......... .......... .......... 72% 115M 0s +2024-05-06T17:08:35Z #15 2.771 92150K .......... .......... .......... .......... .......... 72% 103M 0s +2024-05-06T17:08:35Z #15 2.771 92200K .......... .......... .......... .......... .......... 72% 127M 0s +2024-05-06T17:08:35Z #15 2.771 92250K .......... .......... .......... .......... .......... 72% 15.3M 0s +2024-05-06T17:08:35Z #15 2.774 92300K .......... .......... .......... .......... .......... 72% 112M 0s +2024-05-06T17:08:35Z #15 2.775 92350K .......... .......... .......... .......... .......... 72% 117M 0s +2024-05-06T17:08:35Z #15 2.775 92400K .......... .......... .......... .......... .......... 72% 111M 0s +2024-05-06T17:08:35Z #15 2.776 92450K .......... .......... .......... .......... .......... 72% 133M 0s +2024-05-06T17:08:35Z #15 2.777 92500K .......... .......... .......... .......... .......... 72% 134M 0s +2024-05-06T17:08:35Z #15 2.777 92550K .......... .......... .......... .......... .......... 72% 95.0M 0s +2024-05-06T17:08:35Z #15 2.777 92600K .......... .......... .......... .......... .......... 72% 119M 0s +2024-05-06T17:08:35Z #15 2.777 92650K .......... .......... .......... .......... .......... 72% 116M 0s +2024-05-06T17:08:35Z #15 2.778 92700K .......... .......... .......... .......... .......... 72% 118M 0s +2024-05-06T17:08:35Z #15 2.778 92750K .......... .......... .......... .......... .......... 72% 112M 0s +2024-05-06T17:08:35Z #15 2.780 92800K .......... .......... .......... .......... .......... 72% 101M 0s +2024-05-06T17:08:35Z #15 2.780 92850K .......... .......... .......... .......... .......... 72% 10.9M 0s +2024-05-06T17:08:35Z #15 2.783 92900K .......... .......... .......... .......... .......... 72% 117M 0s +2024-05-06T17:08:35Z #15 2.784 92950K .......... .......... .......... .......... .......... 72% 101M 0s +2024-05-06T17:08:35Z #15 2.784 93000K .......... .......... .......... .......... .......... 72% 125M 0s +2024-05-06T17:08:35Z #15 2.785 93050K .......... .......... .......... .......... .......... 72% 152M 0s +2024-05-06T17:08:35Z #15 2.786 93100K .......... .......... .......... .......... .......... 72% 115M 0s +2024-05-06T17:08:35Z #15 2.786 93150K .......... .......... .......... .......... .......... 72% 129M 0s +2024-05-06T17:08:35Z #15 2.786 93200K .......... .......... .......... .......... .......... 72% 107M 0s +2024-05-06T17:08:35Z #15 2.786 93250K .......... .......... .......... .......... .......... 73% 144M 0s +2024-05-06T17:08:35Z #15 2.787 93300K .......... .......... .......... .......... .......... 73% 106M 0s +2024-05-06T17:08:35Z #15 2.787 93350K .......... .......... .......... .......... .......... 73% 99.5M 0s +2024-05-06T17:08:35Z #15 2.788 93400K .......... .......... .......... .......... .......... 73% 117M 0s +2024-05-06T17:08:35Z #15 2.788 93450K .......... .......... .......... .......... .......... 73% 120M 0s +2024-05-06T17:08:35Z #15 2.789 93500K .......... .......... .......... .......... .......... 73% 122M 0s +2024-05-06T17:08:35Z #15 2.789 93550K .......... .......... .......... .......... .......... 73% 106M 0s +2024-05-06T17:08:35Z #15 2.790 93600K .......... .......... .......... .......... .......... 73% 113M 0s +2024-05-06T17:08:35Z #15 2.790 93650K .......... .......... .......... .......... .......... 73% 126M 0s +2024-05-06T17:08:35Z #15 2.790 93700K .......... .......... .......... .......... .......... 73% 123M 0s +2024-05-06T17:08:35Z #15 2.791 93750K .......... .......... .......... .......... .......... 73% 97.1M 0s +2024-05-06T17:08:35Z #15 2.791 93800K .......... .......... .......... .......... .......... 73% 39.7M 0s +2024-05-06T17:08:35Z #15 2.792 93850K .......... .......... .......... .......... .......... 73% 117M 0s +2024-05-06T17:08:35Z #15 2.793 93900K .......... .......... .......... .......... .......... 73% 137M 0s +2024-05-06T17:08:35Z #15 2.793 93950K .......... .......... .......... .......... .......... 73% 99.8M 0s +2024-05-06T17:08:35Z #15 2.794 94000K .......... .......... .......... .......... .......... 73% 117M 0s +2024-05-06T17:08:35Z #15 2.795 94050K .......... .......... .......... .......... .......... 73% 127M 0s +2024-05-06T17:08:35Z #15 2.795 94100K .......... .......... .......... .......... .......... 73% 112M 0s +2024-05-06T17:08:35Z #15 2.795 94150K .......... .......... .......... .......... .......... 73% 10.6M 0s +2024-05-06T17:08:35Z #15 2.799 94200K .......... .......... .......... .......... .......... 73% 117M 0s +2024-05-06T17:08:35Z #15 2.800 94250K .......... .......... .......... .......... .......... 73% 116M 0s +2024-05-06T17:08:35Z #15 2.800 94300K .......... .......... .......... .......... .......... 73% 133M 0s +2024-05-06T17:08:35Z #15 2.801 94350K .......... .......... .......... .......... .......... 73% 116M 0s +2024-05-06T17:08:35Z #15 2.801 94400K .......... .......... .......... .......... .......... 73% 120M 0s +2024-05-06T17:08:35Z #15 2.802 94450K .......... .......... .......... .......... .......... 73% 135M 0s +2024-05-06T17:08:35Z #15 2.802 94500K .......... .......... .......... .......... .......... 73% 112M 0s +2024-05-06T17:08:35Z #15 2.802 94550K .......... .......... .......... .......... .......... 74% 107M 0s +2024-05-06T17:08:35Z #15 2.803 94600K .......... .......... .......... .......... .......... 74% 124M 0s +2024-05-06T17:08:35Z #15 2.803 94650K .......... .......... .......... .......... .......... 74% 94.7M 0s +2024-05-06T17:08:35Z #15 2.803 94700K .......... .......... .......... .......... .......... 74% 119M 0s +2024-05-06T17:08:35Z #15 2.804 94750K .......... .......... .......... .......... .......... 74% 129M 0s +2024-05-06T17:08:35Z #15 2.804 94800K .......... .......... .......... .......... .......... 74% 123M 0s +2024-05-06T17:08:35Z #15 2.805 94850K .......... .......... .......... .......... .......... 74% 134M 0s +2024-05-06T17:08:35Z #15 2.805 94900K .......... .......... .......... .......... .......... 74% 114M 0s +2024-05-06T17:08:35Z #15 2.805 94950K .......... .......... .......... .......... .......... 74% 115M 0s +2024-05-06T17:08:35Z #15 2.806 95000K .......... .......... .......... .......... .......... 74% 130M 0s +2024-05-06T17:08:35Z #15 2.806 95050K .......... .......... .......... .......... .......... 74% 120M 0s +2024-05-06T17:08:35Z #15 2.807 95100K .......... .......... .......... .......... .......... 74% 94.4M 0s +2024-05-06T17:08:35Z #15 2.807 95150K .......... .......... .......... .......... .......... 74% 122M 0s +2024-05-06T17:08:35Z #15 2.811 95200K .......... .......... .......... .......... .......... 74% 12.9M 0s +2024-05-06T17:08:35Z #15 2.815 95250K .......... .......... .......... .......... .......... 74% 146M 0s +2024-05-06T17:08:35Z #15 2.815 95300K .......... .......... .......... .......... .......... 74% 99.0M 0s +2024-05-06T17:08:35Z #15 2.815 95350K .......... .......... .......... .......... .......... 74% 116M 0s +2024-05-06T17:08:35Z #15 2.815 95400K .......... .......... .......... .......... .......... 74% 117M 0s +2024-05-06T17:08:35Z #15 2.815 95450K .......... .......... .......... .......... .......... 74% 129M 0s +2024-05-06T17:08:35Z #15 2.815 95500K .......... .......... .......... .......... .......... 74% 93.1M 0s +2024-05-06T17:08:35Z #15 2.815 95550K .......... .......... .......... .......... .......... 74% 128M 0s +2024-05-06T17:08:35Z #15 2.815 95600K .......... .......... .......... .......... .......... 74% 122M 0s +2024-05-06T17:08:35Z #15 2.815 95650K .......... .......... .......... .......... .......... 74% 89.0M 0s +2024-05-06T17:08:35Z #15 2.815 95700K .......... .......... .......... .......... .......... 74% 95.8M 0s +2024-05-06T17:08:35Z #15 2.816 95750K .......... .......... .......... .......... .......... 74% 132M 0s +2024-05-06T17:08:35Z #15 2.816 95800K .......... .......... .......... .......... .......... 75% 137M 0s +2024-05-06T17:08:35Z #15 2.817 95850K .......... .......... .......... .......... .......... 75% 132M 0s +2024-05-06T17:08:35Z #15 2.817 95900K .......... .......... .......... .......... .......... 75% 109M 0s +2024-05-06T17:08:35Z #15 2.817 95950K .......... .......... .......... .......... .......... 75% 128M 0s +2024-05-06T17:08:35Z #15 2.818 96000K .......... .......... .......... .......... .......... 75% 125M 0s +2024-05-06T17:08:35Z #15 2.818 96050K .......... .......... .......... .......... .......... 75% 125M 0s +2024-05-06T17:08:35Z #15 2.823 96100K .......... .......... .......... .......... .......... 75% 112M 0s +2024-05-06T17:08:35Z #15 2.823 96150K .......... .......... .......... .......... .......... 75% 10.6M 0s +2024-05-06T17:08:35Z #15 2.827 96200K .......... .......... .......... .......... .......... 75% 128M 0s +2024-05-06T17:08:35Z #15 2.827 96250K .......... .......... .......... .......... .......... 75% 124M 0s +2024-05-06T17:08:35Z #15 2.827 96300K .......... .......... .......... .......... .......... 75% 96.7M 0s +2024-05-06T17:08:35Z #15 2.827 96350K .......... .......... .......... .......... .......... 75% 132M 0s +2024-05-06T17:08:35Z #15 2.827 96400K .......... .......... .......... .......... .......... 75% 114M 0s +2024-05-06T17:08:35Z #15 2.827 96450K .......... .......... .......... .......... .......... 75% 114M 0s +2024-05-06T17:08:35Z #15 2.827 96500K .......... .......... .......... .......... .......... 75% 102M 0s +2024-05-06T17:08:35Z #15 2.827 96550K .......... .......... .......... .......... .......... 75% 115M 0s +2024-05-06T17:08:35Z #15 2.831 96600K .......... .......... .......... .......... .......... 75% 90.8M 0s +2024-05-06T17:08:35Z #15 2.831 96650K .......... .......... .......... .......... .......... 75% 127M 0s +2024-05-06T17:08:35Z #15 2.831 96700K .......... .......... .......... .......... .......... 75% 93.1M 0s +2024-05-06T17:08:35Z #15 2.831 96750K .......... .......... .......... .......... .......... 75% 134M 0s +2024-05-06T17:08:35Z #15 2.831 96800K .......... .......... .......... .......... .......... 75% 122M 0s +2024-05-06T17:08:35Z #15 2.831 96850K .......... .......... .......... .......... .......... 75% 118M 0s +2024-05-06T17:08:35Z #15 2.831 96900K .......... .......... .......... .......... .......... 75% 117M 0s +2024-05-06T17:08:35Z #15 2.831 96950K .......... .......... .......... .......... .......... 75% 118M 0s +2024-05-06T17:08:35Z #15 2.831 97000K .......... .......... .......... .......... .......... 75% 127M 0s +2024-05-06T17:08:35Z #15 2.831 97050K .......... .......... .......... .......... .......... 75% 10.3M 0s +2024-05-06T17:08:35Z #15 2.836 97100K .......... .......... .......... .......... .......... 76% 113M 0s +2024-05-06T17:08:35Z #15 2.837 97150K .......... .......... .......... .......... .......... 76% 138M 0s +2024-05-06T17:08:35Z #15 2.838 97200K .......... .......... .......... .......... .......... 76% 138M 0s +2024-05-06T17:08:35Z #15 2.838 97250K .......... .......... .......... .......... .......... 76% 122M 0s +2024-05-06T17:08:35Z #15 2.838 97300K .......... .......... .......... .......... .......... 76% 130M 0s +2024-05-06T17:08:35Z #15 2.838 97350K .......... .......... .......... .......... .......... 76% 112M 0s +2024-05-06T17:08:35Z #15 2.839 97400K .......... .......... .......... .......... .......... 76% 111M 0s +2024-05-06T17:08:35Z #15 2.839 97450K .......... .......... .......... .......... .......... 76% 137M 0s +2024-05-06T17:08:35Z #15 2.840 97500K .......... .......... .......... .......... .......... 76% 112M 0s +2024-05-06T17:08:35Z #15 2.840 97550K .......... .......... .......... .......... .......... 76% 129M 0s +2024-05-06T17:08:35Z #15 2.840 97600K .......... .......... .......... .......... .......... 76% 121M 0s +2024-05-06T17:08:35Z #15 2.840 97650K .......... .......... .......... .......... .......... 76% 125M 0s +2024-05-06T17:08:35Z #15 2.841 97700K .......... .......... .......... .......... .......... 76% 113M 0s +2024-05-06T17:08:35Z #15 2.841 97750K .......... .......... .......... .......... .......... 76% 117M 0s +2024-05-06T17:08:35Z #15 2.842 97800K .......... .......... .......... .......... .......... 76% 117M 0s +2024-05-06T17:08:35Z #15 2.842 97850K .......... .......... .......... .......... .......... 76% 135M 0s +2024-05-06T17:08:35Z #15 2.842 97900K .......... .......... .......... .......... .......... 76% 114M 0s +2024-05-06T17:08:35Z #15 2.843 97950K .......... .......... .......... .......... .......... 76% 133M 0s +2024-05-06T17:08:35Z #15 2.843 98000K .......... .......... .......... .......... .......... 76% 10.8M 0s +2024-05-06T17:08:35Z #15 2.847 98050K .......... .......... .......... .......... .......... 76% 119M 0s +2024-05-06T17:08:35Z #15 2.848 98100K .......... .......... .......... .......... .......... 76% 105M 0s +2024-05-06T17:08:35Z #15 2.848 98150K .......... .......... .......... .......... .......... 76% 120M 0s +2024-05-06T17:08:35Z #15 2.848 98200K .......... .......... .......... .......... .......... 76% 131M 0s +2024-05-06T17:08:35Z #15 2.850 98250K .......... .......... .......... .......... .......... 76% 145M 0s +2024-05-06T17:08:35Z #15 2.850 98300K .......... .......... .......... .......... .......... 76% 125M 0s +2024-05-06T17:08:35Z #15 2.850 98350K .......... .......... .......... .......... .......... 77% 102M 0s +2024-05-06T17:08:35Z #15 2.850 98400K .......... .......... .......... .......... .......... 77% 118M 0s +2024-05-06T17:08:35Z #15 2.850 98450K .......... .......... .......... .......... .......... 77% 125M 0s +2024-05-06T17:08:35Z #15 2.851 98500K .......... .......... .......... .......... .......... 77% 102M 0s +2024-05-06T17:08:35Z #15 2.851 98550K .......... .......... .......... .......... .......... 77% 130M 0s +2024-05-06T17:08:35Z #15 2.852 98600K .......... .......... .......... .......... .......... 77% 129M 0s +2024-05-06T17:08:35Z #15 2.852 98650K .......... .......... .......... .......... .......... 77% 116M 0s +2024-05-06T17:08:35Z #15 2.853 98700K .......... .......... .......... .......... .......... 77% 102M 0s +2024-05-06T17:08:35Z #15 2.854 98750K .......... .......... .......... .......... .......... 77% 135M 0s +2024-05-06T17:08:35Z #15 2.854 98800K .......... .......... .......... .......... .......... 77% 143M 0s +2024-05-06T17:08:35Z #15 2.854 98850K .......... .......... .......... .......... .......... 77% 116M 0s +2024-05-06T17:08:35Z #15 2.854 98900K .......... .......... .......... .......... .......... 77% 110M 0s +2024-05-06T17:08:35Z #15 2.854 98950K .......... .......... .......... .......... .......... 77% 122M 0s +2024-05-06T17:08:35Z #15 2.863 99000K .......... .......... .......... .......... .......... 77% 10.8M 0s +2024-05-06T17:08:35Z #15 2.863 99050K .......... .......... .......... .......... .......... 77% 121M 0s +2024-05-06T17:08:35Z #15 2.863 99100K .......... .......... .......... .......... .......... 77% 95.5M 0s +2024-05-06T17:08:35Z #15 2.863 99150K .......... .......... .......... .......... .......... 77% 124M 0s +2024-05-06T17:08:35Z #15 2.863 99200K .......... .......... .......... .......... .......... 77% 104M 0s +2024-05-06T17:08:35Z #15 2.863 99250K .......... .......... .......... .......... .......... 77% 129M 0s +2024-05-06T17:08:35Z #15 2.863 99300K .......... .......... .......... .......... .......... 77% 102M 0s +2024-05-06T17:08:35Z #15 2.863 99350K .......... .......... .......... .......... .......... 77% 125M 0s +2024-05-06T17:08:35Z #15 2.863 99400K .......... .......... .......... .......... .......... 77% 106M 0s +2024-05-06T17:08:35Z #15 2.875 99450K .......... .......... .......... .......... .......... 77% 102M 0s +2024-05-06T17:08:35Z #15 2.875 99500K .......... .......... .......... .......... .......... 77% 111M 0s +2024-05-06T17:08:35Z #15 2.875 99550K .......... .......... .......... .......... .......... 77% 134M 0s +2024-05-06T17:08:35Z #15 2.875 99600K .......... .......... .......... .......... .......... 77% 135M 0s +2024-05-06T17:08:35Z #15 2.875 99650K .......... .......... .......... .......... .......... 78% 151M 0s +2024-05-06T17:08:35Z #15 2.875 99700K .......... .......... .......... .......... .......... 78% 120M 0s +2024-05-06T17:08:35Z #15 2.875 99750K .......... .......... .......... .......... .......... 78% 169M 0s +2024-05-06T17:08:35Z #15 2.875 99800K .......... .......... .......... .......... .......... 78% 129M 0s +2024-05-06T17:08:35Z #15 2.875 99850K .......... .......... .......... .......... .......... 78% 138M 0s +2024-05-06T17:08:35Z #15 2.875 99900K .......... .......... .......... .......... .......... 78% 114M 0s +2024-05-06T17:08:35Z #15 2.875 99950K .......... .......... .......... .......... .......... 78% 120M 0s +2024-05-06T17:08:35Z #15 2.875 100000K .......... .......... .......... .......... .......... 78% 135M 0s +2024-05-06T17:08:35Z #15 2.875 100050K .......... .......... .......... .......... .......... 78% 151M 0s +2024-05-06T17:08:35Z #15 2.875 100100K .......... .......... .......... .......... .......... 78% 123M 0s +2024-05-06T17:08:35Z #15 2.875 100150K .......... .......... .......... .......... .......... 78% 152M 0s +2024-05-06T17:08:35Z #15 2.875 100200K .......... .......... .......... .......... .......... 78% 147M 0s +2024-05-06T17:08:35Z #15 2.875 100250K .......... .......... .......... .......... .......... 78% 124M 0s +2024-05-06T17:08:35Z #15 2.875 100300K .......... .......... .......... .......... .......... 78% 125M 0s +2024-05-06T17:08:35Z #15 2.875 100350K .......... .......... .......... .......... .......... 78% 141M 0s +2024-05-06T17:08:35Z #15 2.875 100400K .......... .......... .......... .......... .......... 78% 156M 0s +2024-05-06T17:08:35Z #15 2.875 100450K .......... .......... .......... .......... .......... 78% 175M 0s +2024-05-06T17:08:35Z #15 2.875 100500K .......... .......... .......... .......... .......... 78% 106M 0s +2024-05-06T17:08:35Z #15 2.875 100550K .......... .......... .......... .......... .......... 78% 137M 0s +2024-05-06T17:08:35Z #15 2.875 100600K .......... .......... .......... .......... .......... 78% 119M 0s +2024-05-06T17:08:35Z #15 2.875 100650K .......... .......... .......... .......... .......... 78% 126M 0s +2024-05-06T17:08:35Z #15 2.875 100700K .......... .......... .......... .......... .......... 78% 93.3M 0s +2024-05-06T17:08:35Z #15 2.875 100750K .......... .......... .......... .......... .......... 78% 121M 0s +2024-05-06T17:08:35Z #15 2.875 100800K .......... .......... .......... .......... .......... 78% 134M 0s +2024-05-06T17:08:35Z #15 2.875 100850K .......... .......... .......... .......... .......... 78% 110M 0s +2024-05-06T17:08:35Z #15 2.875 100900K .......... .......... .......... .......... .......... 78% 104M 0s +2024-05-06T17:08:35Z #15 2.875 100950K .......... .......... .......... .......... .......... 79% 131M 0s +2024-05-06T17:08:35Z #15 2.875 101000K .......... .......... .......... .......... .......... 79% 39.0M 0s +2024-05-06T17:08:35Z #15 2.876 101050K .......... .......... .......... .......... .......... 79% 71.4M 0s +2024-05-06T17:08:35Z #15 2.877 101100K .......... .......... .......... .......... .......... 79% 57.5M 0s +2024-05-06T17:08:35Z #15 2.878 101150K .......... .......... .......... .......... .......... 79% 121M 0s +2024-05-06T17:08:35Z #15 2.878 101200K .......... .......... .......... .......... .......... 79% 124M 0s +2024-05-06T17:08:35Z #15 2.878 101250K .......... .......... .......... .......... .......... 79% 70.2M 0s +2024-05-06T17:08:35Z #15 2.880 101300K .......... .......... .......... .......... .......... 79% 71.8M 0s +2024-05-06T17:08:35Z #15 2.880 101350K .......... .......... .......... .......... .......... 79% 68.8M 0s +2024-05-06T17:08:35Z #15 2.881 101400K .......... .......... .......... .......... .......... 79% 102M 0s +2024-05-06T17:08:35Z #15 2.881 101450K .......... .......... .......... .......... .......... 79% 68.1M 0s +2024-05-06T17:08:35Z #15 2.888 101500K .......... .......... .......... .......... .......... 79% 62.6M 0s +2024-05-06T17:08:35Z #15 2.888 101550K .......... .......... .......... .......... .......... 79% 124M 0s +2024-05-06T17:08:35Z #15 2.888 101600K .......... .......... .......... .......... .......... 79% 110M 0s +2024-05-06T17:08:35Z #15 2.888 101650K .......... .......... .......... .......... .......... 79% 107M 0s +2024-05-06T17:08:35Z #15 2.888 101700K .......... .......... .......... .......... .......... 79% 116M 0s +2024-05-06T17:08:35Z #15 2.888 101750K .......... .......... .......... .......... .......... 79% 127M 0s +2024-05-06T17:08:35Z #15 2.888 101800K .......... .......... .......... .......... .......... 79% 120M 0s +2024-05-06T17:08:35Z #15 2.888 101850K .......... .......... .......... .......... .......... 79% 131M 0s +2024-05-06T17:08:35Z #15 2.888 101900K .......... .......... .......... .......... .......... 79% 95.7M 0s +2024-05-06T17:08:35Z #15 2.888 101950K .......... .......... .......... .......... .......... 79% 116M 0s +2024-05-06T17:08:35Z #15 2.888 102000K .......... .......... .......... .......... .......... 79% 128M 0s +2024-05-06T17:08:35Z #15 2.888 102050K .......... .......... .......... .......... .......... 79% 91.8M 0s +2024-05-06T17:08:35Z #15 2.888 102100K .......... .......... .......... .......... .......... 79% 97.9M 0s +2024-05-06T17:08:35Z #15 2.888 102150K .......... .......... .......... .......... .......... 79% 119M 0s +2024-05-06T17:08:35Z #15 2.889 102200K .......... .......... .......... .......... .......... 80% 106M 0s +2024-05-06T17:08:35Z #15 2.890 102250K .......... .......... .......... .......... .......... 80% 129M 0s +2024-05-06T17:08:35Z #15 2.890 102300K .......... .......... .......... .......... .......... 80% 86.7M 0s +2024-05-06T17:08:35Z #15 2.890 102350K .......... .......... .......... .......... .......... 80% 122M 0s +2024-05-06T17:08:35Z #15 2.891 102400K .......... .......... .......... .......... .......... 80% 114M 0s +2024-05-06T17:08:35Z #15 2.891 102450K .......... .......... .......... .......... .......... 80% 113M 0s +2024-05-06T17:08:35Z #15 2.891 102500K .......... .......... .......... .......... .......... 80% 85.1M 0s +2024-05-06T17:08:35Z #15 2.891 102550K .......... .......... .......... .......... .......... 80% 114M 0s +2024-05-06T17:08:35Z #15 2.892 102600K .......... .......... .......... .......... .......... 80% 104M 0s +2024-05-06T17:08:35Z #15 2.892 102650K .......... .......... .......... .......... .......... 80% 127M 0s +2024-05-06T17:08:35Z #15 2.893 102700K .......... .......... .......... .......... .......... 80% 81.8M 0s +2024-05-06T17:08:35Z #15 2.893 102750K .......... .......... .......... .......... .......... 80% 104M 0s +2024-05-06T17:08:35Z #15 2.894 102800K .......... .......... .......... .......... .......... 80% 108M 0s +2024-05-06T17:08:35Z #15 2.894 102850K .......... .......... .......... .......... .......... 80% 118M 0s +2024-05-06T17:08:35Z #15 2.895 102900K .......... .......... .......... .......... .......... 80% 87.2M 0s +2024-05-06T17:08:35Z #15 2.895 102950K .......... .......... .......... .......... .......... 80% 115M 0s +2024-05-06T17:08:35Z #15 2.896 103000K .......... .......... .......... .......... .......... 80% 108M 0s +2024-05-06T17:08:35Z #15 2.896 103050K .......... .......... .......... .......... .......... 80% 113M 0s +2024-05-06T17:08:35Z #15 2.897 103100K .......... .......... .......... .......... .......... 80% 88.6M 0s +2024-05-06T17:08:35Z #15 2.897 103150K .......... .......... .......... .......... .......... 80% 110M 0s +2024-05-06T17:08:35Z #15 2.898 103200K .......... .......... .......... .......... .......... 80% 111M 0s +2024-05-06T17:08:35Z #15 2.898 103250K .......... .......... .......... .......... .......... 80% 109M 0s +2024-05-06T17:08:35Z #15 2.904 103300K .......... .......... .......... .......... .......... 80% 106M 0s +2024-05-06T17:08:35Z #15 2.904 103350K .......... .......... .......... .......... .......... 80% 126M 0s +2024-05-06T17:08:35Z #15 2.904 103400K .......... .......... .......... .......... .......... 80% 128M 0s +2024-05-06T17:08:35Z #15 2.904 103450K .......... .......... .......... .......... .......... 80% 117M 0s +2024-05-06T17:08:35Z #15 2.904 103500K .......... .......... .......... .......... .......... 81% 71.5M 0s +2024-05-06T17:08:35Z #15 2.904 103550K .......... .......... .......... .......... .......... 81% 96.6M 0s +2024-05-06T17:08:35Z #15 2.904 103600K .......... .......... .......... .......... .......... 81% 100M 0s +2024-05-06T17:08:35Z #15 2.904 103650K .......... .......... .......... .......... .......... 81% 90.3M 0s +2024-05-06T17:08:35Z #15 2.904 103700K .......... .......... .......... .......... .......... 81% 75.9M 0s +2024-05-06T17:08:35Z #15 2.904 103750K .......... .......... .......... .......... .......... 81% 106M 0s +2024-05-06T17:08:35Z #15 2.904 103800K .......... .......... .......... .......... .......... 81% 81.4M 0s +2024-05-06T17:08:35Z #15 2.904 103850K .......... .......... .......... .......... .......... 81% 108M 0s +2024-05-06T17:08:35Z #15 2.904 103900K .......... .......... .......... .......... .......... 81% 86.4M 0s +2024-05-06T17:08:35Z #15 2.905 103950K .......... .......... .......... .......... .......... 81% 113M 0s +2024-05-06T17:08:35Z #15 2.905 104000K .......... .......... .......... .......... .......... 81% 113M 0s +2024-05-06T17:08:35Z #15 2.906 104050K .......... .......... .......... .......... .......... 81% 110M 0s +2024-05-06T17:08:35Z #15 2.906 104100K .......... .......... .......... .......... .......... 81% 97.0M 0s +2024-05-06T17:08:35Z #15 2.907 104150K .......... .......... .......... .......... .......... 81% 99.9M 0s +2024-05-06T17:08:35Z #15 2.911 104200K .......... .......... .......... .......... .......... 81% 162M 0s +2024-05-06T17:08:35Z #15 2.911 104250K .......... .......... .......... .......... .......... 81% 114M 0s +2024-05-06T17:08:35Z #15 2.911 104300K .......... .......... .......... .......... .......... 81% 105M 0s +2024-05-06T17:08:35Z #15 2.911 104350K .......... .......... .......... .......... .......... 81% 122M 0s +2024-05-06T17:08:35Z #15 2.911 104400K .......... .......... .......... .......... .......... 81% 111M 0s +2024-05-06T17:08:35Z #15 2.911 104450K .......... .......... .......... .......... .......... 81% 110M 0s +2024-05-06T17:08:35Z #15 2.911 104500K .......... .......... .......... .......... .......... 81% 103M 0s +2024-05-06T17:08:35Z #15 2.911 104550K .......... .......... .......... .......... .......... 81% 119M 0s +2024-05-06T17:08:35Z #15 2.911 104600K .......... .......... .......... .......... .......... 81% 90.2M 0s +2024-05-06T17:08:35Z #15 2.911 104650K .......... .......... .......... .......... .......... 81% 97.7M 0s +2024-05-06T17:08:35Z #15 2.912 104700K .......... .......... .......... .......... .......... 81% 104M 0s +2024-05-06T17:08:35Z #15 2.912 104750K .......... .......... .......... .......... .......... 82% 101M 0s +2024-05-06T17:08:35Z #15 2.913 104800K .......... .......... .......... .......... .......... 82% 121M 0s +2024-05-06T17:08:35Z #15 2.913 104850K .......... .......... .......... .......... .......... 82% 136M 0s +2024-05-06T17:08:35Z #15 2.913 104900K .......... .......... .......... .......... .......... 82% 98.0M 0s +2024-05-06T17:08:35Z #15 2.914 104950K .......... .......... .......... .......... .......... 82% 120M 0s +2024-05-06T17:08:35Z #15 2.914 105000K .......... .......... .......... .......... .......... 82% 119M 0s +2024-05-06T17:08:35Z #15 2.915 105050K .......... .......... .......... .......... .......... 82% 92.5M 0s +2024-05-06T17:08:35Z #15 2.916 105100K .......... .......... .......... .......... .......... 82% 105M 0s +2024-05-06T17:08:35Z #15 2.917 105150K .......... .......... .......... .......... .......... 82% 146M 0s +2024-05-06T17:08:35Z #15 2.917 105200K .......... .......... .......... .......... .......... 82% 131M 0s +2024-05-06T17:08:35Z #15 2.917 105250K .......... .......... .......... .......... .......... 82% 119M 0s +2024-05-06T17:08:35Z #15 2.917 105300K .......... .......... .......... .......... .......... 82% 111M 0s +2024-05-06T17:08:35Z #15 2.917 105350K .......... .......... .......... .......... .......... 82% 120M 0s +2024-05-06T17:08:35Z #15 2.919 105400K .......... .......... .......... .......... .......... 82% 124M 0s +2024-05-06T17:08:35Z #15 2.919 105450K .......... .......... .......... .......... .......... 82% 108M 0s +2024-05-06T17:08:35Z #15 2.919 105500K .......... .......... .......... .......... .......... 82% 110M 0s +2024-05-06T17:08:35Z #15 2.920 105550K .......... .......... .......... .......... .......... 82% 119M 0s +2024-05-06T17:08:35Z #15 2.921 105600K .......... .......... .......... .......... .......... 82% 108M 0s +2024-05-06T17:08:35Z #15 2.921 105650K .......... .......... .......... .......... .......... 82% 135M 0s +2024-05-06T17:08:35Z #15 2.921 105700K .......... .......... .......... .......... .......... 82% 123M 0s +2024-05-06T17:08:35Z #15 2.921 105750K .......... .......... .......... .......... .......... 82% 131M 0s +2024-05-06T17:08:35Z #15 2.921 105800K .......... .......... .......... .......... .......... 82% 124M 0s +2024-05-06T17:08:35Z #15 2.922 105850K .......... .......... .......... .......... .......... 82% 129M 0s +2024-05-06T17:08:35Z #15 2.922 105900K .......... .......... .......... .......... .......... 82% 90.1M 0s +2024-05-06T17:08:35Z #15 2.923 105950K .......... .......... .......... .......... .......... 82% 117M 0s +2024-05-06T17:08:35Z #15 2.923 106000K .......... .......... .......... .......... .......... 82% 73.3M 0s +2024-05-06T17:08:35Z #15 2.924 106050K .......... .......... .......... .......... .......... 83% 35.8M 0s +2024-05-06T17:08:35Z #15 2.925 106100K .......... .......... .......... .......... .......... 83% 65.8M 0s +2024-05-06T17:08:35Z #15 2.925 106150K .......... .......... .......... .......... .......... 83% 36.6M 0s +2024-05-06T17:08:35Z #15 2.928 106200K .......... .......... .......... .......... .......... 83% 29.4M 0s +2024-05-06T17:08:35Z #15 2.929 106250K .......... .......... .......... .......... .......... 83% 41.1M 0s +2024-05-06T17:08:35Z #15 2.931 106300K .......... .......... .......... .......... .......... 83% 43.8M 0s +2024-05-06T17:08:35Z #15 2.931 106350K .......... .......... .......... .......... .......... 83% 91.3M 0s +2024-05-06T17:08:35Z #15 2.931 106400K .......... .......... .......... .......... .......... 83% 120M 0s +2024-05-06T17:08:35Z #15 2.932 106450K .......... .......... .......... .......... .......... 83% 118M 0s +2024-05-06T17:08:35Z #15 2.932 106500K .......... .......... .......... .......... .......... 83% 106M 0s +2024-05-06T17:08:35Z #15 2.933 106550K .......... .......... .......... .......... .......... 83% 107M 0s +2024-05-06T17:08:35Z #15 2.933 106600K .......... .......... .......... .......... .......... 83% 109M 0s +2024-05-06T17:08:35Z #15 2.933 106650K .......... .......... .......... .......... .......... 83% 94.0M 0s +2024-05-06T17:08:35Z #15 2.934 106700K .......... .......... .......... .......... .......... 83% 90.1M 0s +2024-05-06T17:08:35Z #15 2.935 106750K .......... .......... .......... .......... .......... 83% 112M 0s +2024-05-06T17:08:35Z #15 2.935 106800K .......... .......... .......... .......... .......... 83% 71.3M 0s +2024-05-06T17:08:35Z #15 2.940 106850K .......... .......... .......... .......... .......... 83% 74.0M 0s +2024-05-06T17:08:35Z #15 2.940 106900K .......... .......... .......... .......... .......... 83% 52.8M 0s +2024-05-06T17:08:35Z #15 2.940 106950K .......... .......... .......... .......... .......... 83% 51.8M 0s +2024-05-06T17:08:35Z #15 2.940 107000K .......... .......... .......... .......... .......... 83% 71.4M 0s +2024-05-06T17:08:35Z #15 2.940 107050K .......... .......... .......... .......... .......... 83% 74.9M 0s +2024-05-06T17:08:35Z #15 2.940 107100K .......... .......... .......... .......... .......... 83% 26.0M 0s +2024-05-06T17:08:35Z #15 2.941 107150K .......... .......... .......... .......... .......... 83% 34.1M 0s +2024-05-06T17:08:35Z #15 2.943 107200K .......... .......... .......... .......... .......... 83% 22.1M 0s +2024-05-06T17:08:35Z #15 2.945 107250K .......... .......... .......... .......... .......... 83% 44.6M 0s +2024-05-06T17:08:35Z #15 2.946 107300K .......... .......... .......... .......... .......... 84% 37.0M 0s +2024-05-06T17:08:35Z #15 2.949 107350K .......... .......... .......... .......... .......... 84% 130M 0s +2024-05-06T17:08:35Z #15 2.949 107400K .......... .......... .......... .......... .......... 84% 106M 0s +2024-05-06T17:08:35Z #15 2.949 107450K .......... .......... .......... .......... .......... 84% 112M 0s +2024-05-06T17:08:35Z #15 2.949 107500K .......... .......... .......... .......... .......... 84% 20.5M 0s +2024-05-06T17:08:35Z #15 2.951 107550K .......... .......... .......... .......... .......... 84% 25.8M 0s +2024-05-06T17:08:35Z #15 2.953 107600K .......... .......... .......... .......... .......... 84% 22.1M 0s +2024-05-06T17:08:35Z #15 2.956 107650K .......... .......... .......... .......... .......... 84% 66.2M 0s +2024-05-06T17:08:35Z #15 2.956 107700K .......... .......... .......... .......... .......... 84% 22.2M 0s +2024-05-06T17:08:35Z #15 2.958 107750K .......... .......... .......... .......... .......... 84% 37.8M 0s +2024-05-06T17:08:35Z #15 2.960 107800K .......... .......... .......... .......... .......... 84% 64.4M 0s +2024-05-06T17:08:35Z #15 2.960 107850K .......... .......... .......... .......... .......... 84% 105M 0s +2024-05-06T17:08:35Z #15 2.961 107900K .......... .......... .......... .......... .......... 84% 86.5M 0s +2024-05-06T17:08:35Z #15 2.961 107950K .......... .......... .......... .......... .......... 84% 116M 0s +2024-05-06T17:08:35Z #15 2.962 108000K .......... .......... .......... .......... .......... 84% 106M 0s +2024-05-06T17:08:35Z #15 2.963 108050K .......... .......... .......... .......... .......... 84% 122M 0s +2024-05-06T17:08:35Z #15 2.963 108100K .......... .......... .......... .......... .......... 84% 53.8M 0s +2024-05-06T17:08:35Z #15 2.963 108150K .......... .......... .......... .......... .......... 84% 37.7M 0s +2024-05-06T17:08:35Z #15 2.965 108200K .......... .......... .......... .......... .......... 84% 106M 0s +2024-05-06T17:08:35Z #15 2.965 108250K .......... .......... .......... .......... .......... 84% 112M 0s +2024-05-06T17:08:35Z #15 2.966 108300K .......... .......... .......... .......... .......... 84% 93.0M 0s +2024-05-06T17:08:35Z #15 2.967 108350K .......... .......... .......... .......... .......... 84% 158M 0s +2024-05-06T17:08:35Z #15 2.967 108400K .......... .......... .......... .......... .......... 84% 57.4M 0s +2024-05-06T17:08:35Z #15 2.968 108450K .......... .......... .......... .......... .......... 84% 114M 0s +2024-05-06T17:08:35Z #15 2.968 108500K .......... .......... .......... .......... .......... 84% 65.7M 0s +2024-05-06T17:08:35Z #15 2.969 108550K .......... .......... .......... .......... .......... 84% 114M 0s +2024-05-06T17:08:35Z #15 2.969 108600K .......... .......... .......... .......... .......... 85% 56.7M 0s +2024-05-06T17:08:35Z #15 2.970 108650K .......... .......... .......... .......... .......... 85% 58.4M 0s +2024-05-06T17:08:35Z #15 2.970 108700K .......... .......... .......... .......... .......... 85% 89.1M 0s +2024-05-06T17:08:35Z #15 2.971 108750K .......... .......... .......... .......... .......... 85% 92.4M 0s +2024-05-06T17:08:35Z #15 2.972 108800K .......... .......... .......... .......... .......... 85% 157M 0s +2024-05-06T17:08:35Z #15 2.972 108850K .......... .......... .......... .......... .......... 85% 133M 0s +2024-05-06T17:08:35Z #15 2.972 108900K .......... .......... .......... .......... .......... 85% 92.3M 0s +2024-05-06T17:08:35Z #15 2.973 108950K .......... .......... .......... .......... .......... 85% 81.6M 0s +2024-05-06T17:08:35Z #15 2.973 109000K .......... .......... .......... .......... .......... 85% 74.0M 0s +2024-05-06T17:08:35Z #15 2.974 109050K .......... .......... .......... .......... .......... 85% 80.6M 0s +2024-05-06T17:08:35Z #15 2.979 109100K .......... .......... .......... .......... .......... 85% 60.8M 0s +2024-05-06T17:08:35Z #15 2.979 109150K .......... .......... .......... .......... .......... 85% 78.9M 0s +2024-05-06T17:08:35Z #15 2.979 109200K .......... .......... .......... .......... .......... 85% 57.7M 0s +2024-05-06T17:08:35Z #15 2.979 109250K .......... .......... .......... .......... .......... 85% 77.8M 0s +2024-05-06T17:08:35Z #15 2.979 109300K .......... .......... .......... .......... .......... 85% 96.7M 0s +2024-05-06T17:08:35Z #15 2.979 109350K .......... .......... .......... .......... .......... 85% 118M 0s +2024-05-06T17:08:35Z #15 2.979 109400K .......... .......... .......... .......... .......... 85% 109M 0s +2024-05-06T17:08:35Z #15 2.979 109450K .......... .......... .......... .......... .......... 85% 45.5M 0s +2024-05-06T17:08:35Z #15 2.980 109500K .......... .......... .......... .......... .......... 85% 36.9M 0s +2024-05-06T17:08:35Z #15 2.981 109550K .......... .......... .......... .......... .......... 85% 36.1M 0s +2024-05-06T17:08:35Z #15 2.984 109600K .......... .......... .......... .......... .......... 85% 129M 0s +2024-05-06T17:08:35Z #15 2.984 109650K .......... .......... .......... .......... .......... 85% 114M 0s +2024-05-06T17:08:35Z #15 2.984 109700K .......... .......... .......... .......... .......... 85% 65.2M 0s +2024-05-06T17:08:35Z #15 2.984 109750K .......... .......... .......... .......... .......... 85% 34.7M 0s +2024-05-06T17:08:35Z #15 2.986 109800K .......... .......... .......... .......... .......... 85% 23.9M 0s +2024-05-06T17:08:35Z #15 2.988 109850K .......... .......... .......... .......... .......... 85% 81.5M 0s +2024-05-06T17:08:35Z #15 2.988 109900K .......... .......... .......... .......... .......... 86% 37.7M 0s +2024-05-06T17:08:35Z #15 2.990 109950K .......... .......... .......... .......... .......... 86% 29.8M 0s +2024-05-06T17:08:35Z #15 2.992 110000K .......... .......... .......... .......... .......... 86% 41.3M 0s +2024-05-06T17:08:35Z #15 2.993 110050K .......... .......... .......... .......... .......... 86% 104M 0s +2024-05-06T17:08:35Z #15 2.993 110100K .......... .......... .......... .......... .......... 86% 114M 0s +2024-05-06T17:08:35Z #15 2.993 110150K .......... .......... .......... .......... .......... 86% 34.2M 0s +2024-05-06T17:08:35Z #15 2.995 110200K .......... .......... .......... .......... .......... 86% 25.1M 0s +2024-05-06T17:08:35Z #15 2.997 110250K .......... .......... .......... .......... .......... 86% 74.1M 0s +2024-05-06T17:08:35Z #15 2.997 110300K .......... .......... .......... .......... .......... 86% 38.0M 0s +2024-05-06T17:08:35Z #15 2.999 110350K .......... .......... .......... .......... .......... 86% 116M 0s +2024-05-06T17:08:35Z #15 2.999 110400K .......... .......... .......... .......... .......... 86% 35.8M 0s +2024-05-06T17:08:35Z #15 3.001 110450K .......... .......... .......... .......... .......... 86% 120M 0s +2024-05-06T17:08:35Z #15 3.001 110500K .......... .......... .......... .......... .......... 86% 25.2M 0s +2024-05-06T17:08:35Z #15 3.003 110550K .......... .......... .......... .......... .......... 86% 49.9M 0s +2024-05-06T17:08:35Z #15 3.004 110600K .......... .......... .......... .......... .......... 86% 49.6M 0s +2024-05-06T17:08:35Z #15 3.005 110650K .......... .......... .......... .......... .......... 86% 41.6M 0s +2024-05-06T17:08:35Z #15 3.006 110700K .......... .......... .......... .......... .......... 86% 35.5M 0s +2024-05-06T17:08:35Z #15 3.007 110750K .......... .......... .......... .......... .......... 86% 25.3M 0s +2024-05-06T17:08:35Z #15 3.009 110800K .......... .......... .......... .......... .......... 86% 40.8M 0s +2024-05-06T17:08:35Z #15 3.010 110850K .......... .......... .......... .......... .......... 86% 31.2M 0s +2024-05-06T17:08:35Z #15 3.013 110900K .......... .......... .......... .......... .......... 86% 101M 0s +2024-05-06T17:08:35Z #15 3.013 110950K .......... .......... .......... .......... .......... 86% 51.3M 0s +2024-05-06T17:08:35Z #15 3.014 111000K .......... .......... .......... .......... .......... 86% 16.2M 0s +2024-05-06T17:08:35Z #15 3.017 111050K .......... .......... .......... .......... .......... 86% 47.9M 0s +2024-05-06T17:08:35Z #15 3.017 111100K .......... .......... .......... .......... .......... 86% 31.7M 0s +2024-05-06T17:08:35Z #15 3.020 111150K .......... .......... .......... .......... .......... 87% 51.7M 0s +2024-05-06T17:08:35Z #15 3.020 111200K .......... .......... .......... .......... .......... 87% 25.1M 0s +2024-05-06T17:08:35Z #15 3.022 111250K .......... .......... .......... .......... .......... 87% 40.4M 0s +2024-05-06T17:08:35Z #15 3.024 111300K .......... .......... .......... .......... .......... 87% 77.3M 0s +2024-05-06T17:08:35Z #15 3.024 111350K .......... .......... .......... .......... .......... 87% 26.3M 0s +2024-05-06T17:08:35Z #15 3.026 111400K .......... .......... .......... .......... .......... 87% 53.3M 0s +2024-05-06T17:08:35Z #15 3.027 111450K .......... .......... .......... .......... .......... 87% 48.3M 0s +2024-05-06T17:08:35Z #15 3.028 111500K .......... .......... .......... .......... .......... 87% 32.1M 0s +2024-05-06T17:08:35Z #15 3.029 111550K .......... .......... .......... .......... .......... 87% 55.6M 0s +2024-05-06T17:08:35Z #15 3.030 111600K .......... .......... .......... .......... .......... 87% 32.1M 0s +2024-05-06T17:08:35Z #15 3.032 111650K .......... .......... .......... .......... .......... 87% 41.4M 0s +2024-05-06T17:08:35Z #15 3.033 111700K .......... .......... .......... .......... .......... 87% 36.4M 0s +2024-05-06T17:08:35Z #15 3.034 111750K .......... .......... .......... .......... .......... 87% 30.7M 0s +2024-05-06T17:08:35Z #15 3.036 111800K .......... .......... .......... .......... .......... 87% 39.9M 0s +2024-05-06T17:08:35Z #15 3.037 111850K .......... .......... .......... .......... .......... 87% 50.9M 0s +2024-05-06T17:08:35Z #15 3.038 111900K .......... .......... .......... .......... .......... 87% 101M 0s +2024-05-06T17:08:35Z #15 3.038 111950K .......... .......... .......... .......... .......... 87% 106M 0s +2024-05-06T17:08:35Z #15 3.039 112000K .......... .......... .......... .......... .......... 87% 85.4M 0s +2024-05-06T17:08:35Z #15 3.039 112050K .......... .......... .......... .......... .......... 87% 64.6M 0s +2024-05-06T17:08:35Z #15 3.040 112100K .......... .......... .......... .......... .......... 87% 60.5M 0s +2024-05-06T17:08:35Z #15 3.041 112150K .......... .......... .......... .......... .......... 87% 36.9M 0s +2024-05-06T17:08:35Z #15 3.042 112200K .......... .......... .......... .......... .......... 87% 28.7M 0s +2024-05-06T17:08:35Z #15 3.044 112250K .......... .......... .......... .......... .......... 87% 61.0M 0s +2024-05-06T17:08:35Z #15 3.045 112300K .......... .......... .......... .......... .......... 87% 44.6M 0s +2024-05-06T17:08:35Z #15 3.046 112350K .......... .......... .......... .......... .......... 87% 47.5M 0s +2024-05-06T17:08:35Z #15 3.047 112400K .......... .......... .......... .......... .......... 87% 52.2M 0s +2024-05-06T17:08:35Z #15 3.048 112450K .......... .......... .......... .......... .......... 88% 82.3M 0s +2024-05-06T17:08:35Z #15 3.048 112500K .......... .......... .......... .......... .......... 88% 44.3M 0s +2024-05-06T17:08:35Z #15 3.050 112550K .......... .......... .......... .......... .......... 88% 52.0M 0s +2024-05-06T17:08:35Z #15 3.050 112600K .......... .......... .......... .......... .......... 88% 29.1M 0s +2024-05-06T17:08:35Z #15 3.052 112650K .......... .......... .......... .......... .......... 88% 40.0M 0s +2024-05-06T17:08:35Z #15 3.054 112700K .......... .......... .......... .......... .......... 88% 43.0M 0s +2024-05-06T17:08:35Z #15 3.055 112750K .......... .......... .......... .......... .......... 88% 57.4M 0s +2024-05-06T17:08:35Z #15 3.056 112800K .......... .......... .......... .......... .......... 88% 65.8M 0s +2024-05-06T17:08:35Z #15 3.056 112850K .......... .......... .......... .......... .......... 88% 36.7M 0s +2024-05-06T17:08:35Z #15 3.057 112900K .......... .......... .......... .......... .......... 88% 68.4M 0s +2024-05-06T17:08:35Z #15 3.058 112950K .......... .......... .......... .......... .......... 88% 74.6M 0s +2024-05-06T17:08:35Z #15 3.059 113000K .......... .......... .......... .......... .......... 88% 74.2M 0s +2024-05-06T17:08:35Z #15 3.059 113050K .......... .......... .......... .......... .......... 88% 66.7M 0s +2024-05-06T17:08:35Z #15 3.060 113100K .......... .......... .......... .......... .......... 88% 58.0M 0s +2024-05-06T17:08:35Z #15 3.063 113150K .......... .......... .......... .......... .......... 88% 110M 0s +2024-05-06T17:08:35Z #15 3.063 113200K .......... .......... .......... .......... .......... 88% 148M 0s +2024-05-06T17:08:35Z #15 3.063 113250K .......... .......... .......... .......... .......... 88% 125M 0s +2024-05-06T17:08:35Z #15 3.063 113300K .......... .......... .......... .......... .......... 88% 98.3M 0s +2024-05-06T17:08:35Z #15 3.063 113350K .......... .......... .......... .......... .......... 88% 111M 0s +2024-05-06T17:08:35Z #15 3.063 113400K .......... .......... .......... .......... .......... 88% 76.9M 0s +2024-05-06T17:08:35Z #15 3.064 113450K .......... .......... .......... .......... .......... 88% 63.3M 0s +2024-05-06T17:08:35Z #15 3.064 113500K .......... .......... .......... .......... .......... 88% 61.3M 0s +2024-05-06T17:08:35Z #15 3.065 113550K .......... .......... .......... .......... .......... 88% 70.7M 0s +2024-05-06T17:08:35Z #15 3.071 113600K .......... .......... .......... .......... .......... 88% 110M 0s +2024-05-06T17:08:35Z #15 3.071 113650K .......... .......... .......... .......... .......... 88% 127M 0s +2024-05-06T17:08:35Z #15 3.071 113700K .......... .......... .......... .......... .......... 89% 104M 0s +2024-05-06T17:08:35Z #15 3.071 113750K .......... .......... .......... .......... .......... 89% 106M 0s +2024-05-06T17:08:35Z #15 3.071 113800K .......... .......... .......... .......... .......... 89% 128M 0s +2024-05-06T17:08:35Z #15 3.071 113850K .......... .......... .......... .......... .......... 89% 107M 0s +2024-05-06T17:08:35Z #15 3.071 113900K .......... .......... .......... .......... .......... 89% 95.6M 0s +2024-05-06T17:08:35Z #15 3.071 113950K .......... .......... .......... .......... .......... 89% 112M 0s +2024-05-06T17:08:35Z #15 3.071 114000K .......... .......... .......... .......... .......... 89% 119M 0s +2024-05-06T17:08:35Z #15 3.071 114050K .......... .......... .......... .......... .......... 89% 155M 0s +2024-05-06T17:08:35Z #15 3.071 114100K .......... .......... .......... .......... .......... 89% 93.7M 0s +2024-05-06T17:08:35Z #15 3.071 114150K .......... .......... .......... .......... .......... 89% 124M 0s +2024-05-06T17:08:35Z #15 3.071 114200K .......... .......... .......... .......... .......... 89% 107M 0s +2024-05-06T17:08:35Z #15 3.072 114250K .......... .......... .......... .......... .......... 89% 109M 0s +2024-05-06T17:08:35Z #15 3.072 114300K .......... .......... .......... .......... .......... 89% 88.8M 0s +2024-05-06T17:08:35Z #15 3.072 114350K .......... .......... .......... .......... .......... 89% 107M 0s +2024-05-06T17:08:35Z #15 3.073 114400K .......... .......... .......... .......... .......... 89% 114M 0s +2024-05-06T17:08:35Z #15 3.073 114450K .......... .......... .......... .......... .......... 89% 110M 0s +2024-05-06T17:08:35Z #15 3.074 114500K .......... .......... .......... .......... .......... 89% 115M 0s +2024-05-06T17:08:35Z #15 3.074 114550K .......... .......... .......... .......... .......... 89% 113M 0s +2024-05-06T17:08:35Z #15 3.075 114600K .......... .......... .......... .......... .......... 89% 104M 0s +2024-05-06T17:08:35Z #15 3.075 114650K .......... .......... .......... .......... .......... 89% 119M 0s +2024-05-06T17:08:35Z #15 3.076 114700K .......... .......... .......... .......... .......... 89% 89.9M 0s +2024-05-06T17:08:35Z #15 3.076 114750K .......... .......... .......... .......... .......... 89% 108M 0s +2024-05-06T17:08:35Z #15 3.077 114800K .......... .......... .......... .......... .......... 89% 107M 0s +2024-05-06T17:08:35Z #15 3.078 114850K .......... .......... .......... .......... .......... 89% 144M 0s +2024-05-06T17:08:35Z #15 3.078 114900K .......... .......... .......... .......... .......... 89% 124M 0s +2024-05-06T17:08:35Z #15 3.078 114950K .......... .......... .......... .......... .......... 89% 113M 0s +2024-05-06T17:08:35Z #15 3.079 115000K .......... .......... .......... .......... .......... 90% 128M 0s +2024-05-06T17:08:35Z #15 3.079 115050K .......... .......... .......... .......... .......... 90% 158M 0s +2024-05-06T17:08:35Z #15 3.079 115100K .......... .......... .......... .......... .......... 90% 85.0M 0s +2024-05-06T17:08:35Z #15 3.079 115150K .......... .......... .......... .......... .......... 90% 100M 0s +2024-05-06T17:08:35Z #15 3.080 115200K .......... .......... .......... .......... .......... 90% 112M 0s +2024-05-06T17:08:35Z #15 3.080 115250K .......... .......... .......... .......... .......... 90% 130M 0s +2024-05-06T17:08:35Z #15 3.081 115300K .......... .......... .......... .......... .......... 90% 99.2M 0s +2024-05-06T17:08:35Z #15 3.081 115350K .......... .......... .......... .......... .......... 90% 109M 0s +2024-05-06T17:08:35Z #15 3.084 115400K .......... .......... .......... .......... .......... 90% 134M 0s +2024-05-06T17:08:35Z #15 3.084 115450K .......... .......... .......... .......... .......... 90% 181M 0s +2024-05-06T17:08:35Z #15 3.084 115500K .......... .......... .......... .......... .......... 90% 130M 0s +2024-05-06T17:08:35Z #15 3.084 115550K .......... .......... .......... .......... .......... 90% 140M 0s +2024-05-06T17:08:35Z #15 3.084 115600K .......... .......... .......... .......... .......... 90% 148M 0s +2024-05-06T17:08:35Z #15 3.084 115650K .......... .......... .......... .......... .......... 90% 133M 0s +2024-05-06T17:08:35Z #15 3.084 115700K .......... .......... .......... .......... .......... 90% 132M 0s +2024-05-06T17:08:35Z #15 3.084 115750K .......... .......... .......... .......... .......... 90% 109M 0s +2024-05-06T17:08:35Z #15 3.085 115800K .......... .......... .......... .......... .......... 90% 109M 0s +2024-05-06T17:08:35Z #15 3.085 115850K .......... .......... .......... .......... .......... 90% 115M 0s +2024-05-06T17:08:35Z #15 3.086 115900K .......... .......... .......... .......... .......... 90% 86.2M 0s +2024-05-06T17:08:35Z #15 3.086 115950K .......... .......... .......... .......... .......... 90% 106M 0s +2024-05-06T17:08:35Z #15 3.086 116000K .......... .......... .......... .......... .......... 90% 114M 0s +2024-05-06T17:08:35Z #15 3.087 116050K .......... .......... .......... .......... .......... 90% 10.7M 0s +2024-05-06T17:08:35Z #15 3.092 116100K .......... .......... .......... .......... .......... 90% 98.2M 0s +2024-05-06T17:08:35Z #15 3.092 116150K .......... .......... .......... .......... .......... 90% 123M 0s +2024-05-06T17:08:35Z #15 3.092 116200K .......... .......... .......... .......... .......... 90% 120M 0s +2024-05-06T17:08:35Z #15 3.093 116250K .......... .......... .......... .......... .......... 91% 131M 0s +2024-05-06T17:08:35Z #15 3.093 116300K .......... .......... .......... .......... .......... 91% 93.1M 0s +2024-05-06T17:08:35Z #15 3.094 116350K .......... .......... .......... .......... .......... 91% 111M 0s +2024-05-06T17:08:35Z #15 3.096 116400K .......... .......... .......... .......... .......... 91% 128M 0s +2024-05-06T17:08:35Z #15 3.096 116450K .......... .......... .......... .......... .......... 91% 169M 0s +2024-05-06T17:08:35Z #15 3.096 116500K .......... .......... .......... .......... .......... 91% 11.0M 0s +2024-05-06T17:08:35Z #15 3.099 116550K .......... .......... .......... .......... .......... 91% 125M 0s +2024-05-06T17:08:35Z #15 3.099 116600K .......... .......... .......... .......... .......... 91% 112M 0s +2024-05-06T17:08:35Z #15 3.100 116650K .......... .......... .......... .......... .......... 91% 129M 0s +2024-05-06T17:08:35Z #15 3.100 116700K .......... .......... .......... .......... .......... 91% 90.3M 0s +2024-05-06T17:08:35Z #15 3.101 116750K .......... .......... .......... .......... .......... 91% 126M 0s +2024-05-06T17:08:35Z #15 3.101 116800K .......... .......... .......... .......... .......... 91% 140M 0s +2024-05-06T17:08:35Z #15 3.102 116850K .......... .......... .......... .......... .......... 91% 116M 0s +2024-05-06T17:08:35Z #15 3.103 116900K .......... .......... .......... .......... .......... 91% 107M 0s +2024-05-06T17:08:35Z #15 3.103 116950K .......... .......... .......... .......... .......... 91% 117M 0s +2024-05-06T17:08:35Z #15 3.103 117000K .......... .......... .......... .......... .......... 91% 105M 0s +2024-05-06T17:08:35Z #15 3.104 117050K .......... .......... .......... .......... .......... 91% 108M 0s +2024-05-06T17:08:35Z #15 3.104 117100K .......... .......... .......... .......... .......... 91% 107M 0s +2024-05-06T17:08:35Z #15 3.105 117150K .......... .......... .......... .......... .......... 91% 124M 0s +2024-05-06T17:08:35Z #15 3.105 117200K .......... .......... .......... .......... .......... 91% 133M 0s +2024-05-06T17:08:35Z #15 3.105 117250K .......... .......... .......... .......... .......... 91% 121M 0s +2024-05-06T17:08:35Z #15 3.106 117300K .......... .......... .......... .......... .......... 91% 107M 0s +2024-05-06T17:08:35Z #15 3.106 117350K .......... .......... .......... .......... .......... 91% 125M 0s +2024-05-06T17:08:35Z #15 3.107 117400K .......... .......... .......... .......... .......... 91% 124M 0s +2024-05-06T17:08:35Z #15 3.107 117450K .......... .......... .......... .......... .......... 91% 10.8M 0s +2024-05-06T17:08:35Z #15 3.116 117500K .......... .......... .......... .......... .......... 91% 129M 0s +2024-05-06T17:08:35Z #15 3.116 117550K .......... .......... .......... .......... .......... 92% 168M 0s +2024-05-06T17:08:35Z #15 3.116 117600K .......... .......... .......... .......... .......... 92% 163M 0s +2024-05-06T17:08:35Z #15 3.116 117650K .......... .......... .......... .......... .......... 92% 96.0M 0s +2024-05-06T17:08:35Z #15 3.116 117700K .......... .......... .......... .......... .......... 92% 77.3M 0s +2024-05-06T17:08:35Z #15 3.116 117750K .......... .......... .......... .......... .......... 92% 116M 0s +2024-05-06T17:08:35Z #15 3.116 117800K .......... .......... .......... .......... .......... 92% 152M 0s +2024-05-06T17:08:35Z #15 3.116 117850K .......... .......... .......... .......... .......... 92% 161M 0s +2024-05-06T17:08:35Z #15 3.116 117900K .......... .......... .......... .......... .......... 92% 107M 0s +2024-05-06T17:08:35Z #15 3.116 117950K .......... .......... .......... .......... .......... 92% 16.3M 0s +2024-05-06T17:08:35Z #15 3.119 118000K .......... .......... .......... .......... .......... 92% 60.4M 0s +2024-05-06T17:08:35Z #15 3.119 118050K .......... .......... .......... .......... .......... 92% 62.3M 0s +2024-05-06T17:08:35Z #15 3.120 118100K .......... .......... .......... .......... .......... 92% 28.8M 0s +2024-05-06T17:08:35Z #15 3.123 118150K .......... .......... .......... .......... .......... 92% 53.2M 0s +2024-05-06T17:08:35Z #15 3.123 118200K .......... .......... .......... .......... .......... 92% 39.5M 0s +2024-05-06T17:08:35Z #15 3.124 118250K .......... .......... .......... .......... .......... 92% 69.0M 0s +2024-05-06T17:08:35Z #15 3.124 118300K .......... .......... .......... .......... .......... 92% 70.4M 0s +2024-05-06T17:08:35Z #15 3.127 118350K .......... .......... .......... .......... .......... 92% 37.8M 0s +2024-05-06T17:08:35Z #15 3.127 118400K .......... .......... .......... .......... .......... 92% 52.2M 0s +2024-05-06T17:08:35Z #15 3.129 118450K .......... .......... .......... .......... .......... 92% 13.7M 0s +2024-05-06T17:08:35Z #15 3.135 118500K .......... .......... .......... .......... .......... 92% 36.5M 0s +2024-05-06T17:08:35Z #15 3.135 118550K .......... .......... .......... .......... .......... 92% 32.9M 0s +2024-05-06T17:08:35Z #15 3.135 118600K .......... .......... .......... .......... .......... 92% 38.8M 0s +2024-05-06T17:08:35Z #15 3.135 118650K .......... .......... .......... .......... .......... 92% 66.9M 0s +2024-05-06T17:08:35Z #15 3.136 118700K .......... .......... .......... .......... .......... 92% 129M 0s +2024-05-06T17:08:35Z #15 3.136 118750K .......... .......... .......... .......... .......... 92% 25.8M 0s +2024-05-06T17:08:35Z #15 3.139 118800K .......... .......... .......... .......... .......... 93% 56.9M 0s +2024-05-06T17:08:35Z #15 3.139 118850K .......... .......... .......... .......... .......... 93% 53.4M 0s +2024-05-06T17:08:35Z #15 3.139 118900K .......... .......... .......... .......... .......... 93% 48.9M 0s +2024-05-06T17:08:35Z #15 3.143 118950K .......... .......... .......... .......... .......... 93% 141M 0s +2024-05-06T17:08:35Z #15 3.143 119000K .......... .......... .......... .......... .......... 93% 31.2M 0s +2024-05-06T17:08:35Z #15 3.143 119050K .......... .......... .......... .......... .......... 93% 28.1M 0s +2024-05-06T17:08:35Z #15 3.144 119100K .......... .......... .......... .......... .......... 93% 42.7M 0s +2024-05-06T17:08:35Z #15 3.145 119150K .......... .......... .......... .......... .......... 93% 45.3M 0s +2024-05-06T17:08:35Z #15 3.147 119200K .......... .......... .......... .......... .......... 93% 112M 0s +2024-05-06T17:08:35Z #15 3.147 119250K .......... .......... .......... .......... .......... 93% 37.7M 0s +2024-05-06T17:08:35Z #15 3.148 119300K .......... .......... .......... .......... .......... 93% 25.4M 0s +2024-05-06T17:08:35Z #15 3.150 119350K .......... .......... .......... .......... .......... 93% 165M 0s +2024-05-06T17:08:35Z #15 3.150 119400K .......... .......... .......... .......... .......... 93% 22.5M 0s +2024-05-06T17:08:35Z #15 3.155 119450K .......... .......... .......... .......... .......... 93% 29.3M 0s +2024-05-06T17:08:35Z #15 3.155 119500K .......... .......... .......... .......... .......... 93% 44.6M 0s +2024-05-06T17:08:35Z #15 3.156 119550K .......... .......... .......... .......... .......... 93% 158M 0s +2024-05-06T17:08:35Z #15 3.156 119600K .......... .......... .......... .......... .......... 93% 37.7M 0s +2024-05-06T17:08:35Z #15 3.157 119650K .......... .......... .......... .......... .......... 93% 23.5M 0s +2024-05-06T17:08:35Z #15 3.159 119700K .......... .......... .......... .......... .......... 93% 26.3M 0s +2024-05-06T17:08:35Z #15 3.163 119750K .......... .......... .......... .......... .......... 93% 28.0M 0s +2024-05-06T17:08:35Z #15 3.163 119800K .......... .......... .......... .......... .......... 93% 55.3M 0s +2024-05-06T17:08:35Z #15 3.164 119850K .......... .......... .......... .......... .......... 93% 150M 0s +2024-05-06T17:08:35Z #15 3.164 119900K .......... .......... .......... .......... .......... 93% 46.3M 0s +2024-05-06T17:08:35Z #15 3.165 119950K .......... .......... .......... .......... .......... 93% 53.8M 0s +2024-05-06T17:08:35Z #15 3.166 120000K .......... .......... .......... .......... .......... 93% 38.0M 0s +2024-05-06T17:08:35Z #15 3.167 120050K .......... .......... .......... .......... .......... 93% 86.2M 0s +2024-05-06T17:08:35Z #15 3.168 120100K .......... .......... .......... .......... .......... 94% 132M 0s +2024-05-06T17:08:35Z #15 3.168 120150K .......... .......... .......... .......... .......... 94% 25.0M 0s +2024-05-06T17:08:35Z #15 3.170 120200K .......... .......... .......... .......... .......... 94% 33.6M 0s +2024-05-06T17:08:35Z #15 3.171 120250K .......... .......... .......... .......... .......... 94% 46.1M 0s +2024-05-06T17:08:35Z #15 3.172 120300K .......... .......... .......... .......... .......... 94% 27.9M 0s +2024-05-06T17:08:35Z #15 3.174 120350K .......... .......... .......... .......... .......... 94% 23.6M 0s +2024-05-06T17:08:35Z #15 3.176 120400K .......... .......... .......... .......... .......... 94% 40.0M 0s +2024-05-06T17:08:35Z #15 3.177 120450K .......... .......... .......... .......... .......... 94% 47.4M 0s +2024-05-06T17:08:35Z #15 3.179 120500K .......... .......... .......... .......... .......... 94% 38.8M 0s +2024-05-06T17:08:35Z #15 3.180 120550K .......... .......... .......... .......... .......... 94% 50.7M 0s +2024-05-06T17:08:35Z #15 3.181 120600K .......... .......... .......... .......... .......... 94% 51.7M 0s +2024-05-06T17:08:35Z #15 3.182 120650K .......... .......... .......... .......... .......... 94% 92.4M 0s +2024-05-06T17:08:35Z #15 3.182 120700K .......... .......... .......... .......... .......... 94% 51.5M 0s +2024-05-06T17:08:35Z #15 3.183 120750K .......... .......... .......... .......... .......... 94% 35.9M 0s +2024-05-06T17:08:35Z #15 3.184 120800K .......... .......... .......... .......... .......... 94% 48.0M 0s +2024-05-06T17:08:35Z #15 3.185 120850K .......... .......... .......... .......... .......... 94% 44.5M 0s +2024-05-06T17:08:35Z #15 3.187 120900K .......... .......... .......... .......... .......... 94% 40.9M 0s +2024-05-06T17:08:35Z #15 3.188 120950K .......... .......... .......... .......... .......... 94% 45.2M 0s +2024-05-06T17:08:35Z #15 3.189 121000K .......... .......... .......... .......... .......... 94% 32.6M 0s +2024-05-06T17:08:35Z #15 3.191 121050K .......... .......... .......... .......... .......... 94% 110M 0s +2024-05-06T17:08:35Z #15 3.191 121100K .......... .......... .......... .......... .......... 94% 15.2M 0s +2024-05-06T17:08:35Z #15 3.194 121150K .......... .......... .......... .......... .......... 94% 37.9M 0s +2024-05-06T17:08:35Z #15 3.196 121200K .......... .......... .......... .......... .......... 94% 83.7M 0s +2024-05-06T17:08:35Z #15 3.196 121250K .......... .......... .......... .......... .......... 94% 45.2M 0s +2024-05-06T17:08:35Z #15 3.197 121300K .......... .......... .......... .......... .......... 94% 39.0M 0s +2024-05-06T17:08:35Z #15 3.199 121350K .......... .......... .......... .......... .......... 94% 51.0M 0s +2024-05-06T17:08:35Z #15 3.200 121400K .......... .......... .......... .......... .......... 95% 115M 0s +2024-05-06T17:08:35Z #15 3.200 121450K .......... .......... .......... .......... .......... 95% 34.8M 0s +2024-05-06T17:08:35Z #15 3.202 121500K .......... .......... .......... .......... .......... 95% 19.3M 0s +2024-05-06T17:08:35Z #15 3.204 121550K .......... .......... .......... .......... .......... 95% 26.4M 0s +2024-05-06T17:08:35Z #15 3.206 121600K .......... .......... .......... .......... .......... 95% 31.6M 0s +2024-05-06T17:08:35Z #15 3.207 121650K .......... .......... .......... .......... .......... 95% 29.4M 0s +2024-05-06T17:08:35Z #15 3.209 121700K .......... .......... .......... .......... .......... 95% 31.9M 0s +2024-05-06T17:08:35Z #15 3.210 121750K .......... .......... .......... .......... .......... 95% 26.7M 0s +2024-05-06T17:08:35Z #15 3.213 121800K .......... .......... .......... .......... .......... 95% 35.3M 0s +2024-05-06T17:08:35Z #15 3.214 121850K .......... .......... .......... .......... .......... 95% 111M 0s +2024-05-06T17:08:35Z #15 3.214 121900K .......... .......... .......... .......... .......... 95% 17.3M 0s +2024-05-06T17:08:35Z #15 3.218 121950K .......... .......... .......... .......... .......... 95% 53.9M 0s +2024-05-06T17:08:35Z #15 3.218 122000K .......... .......... .......... .......... .......... 95% 23.6M 0s +2024-05-06T17:08:35Z #15 3.220 122050K .......... .......... .......... .......... .......... 95% 36.6M 0s +2024-05-06T17:08:35Z #15 3.222 122100K .......... .......... .......... .......... .......... 95% 98.1M 0s +2024-05-06T17:08:35Z #15 3.222 122150K .......... .......... .......... .......... .......... 95% 87.3M 0s +2024-05-06T17:08:35Z #15 3.222 122200K .......... .......... .......... .......... .......... 95% 11.8M 0s +2024-05-06T17:08:35Z #15 3.226 122250K .......... .......... .......... .......... .......... 95% 47.5M 0s +2024-05-06T17:08:35Z #15 3.228 122300K .......... .......... .......... .......... .......... 95% 25.8M 0s +2024-05-06T17:08:35Z #15 3.229 122350K .......... .......... .......... .......... .......... 95% 37.7M 0s +2024-05-06T17:08:35Z #15 3.231 122400K .......... .......... .......... .......... .......... 95% 26.9M 0s +2024-05-06T17:08:35Z #15 3.232 122450K .......... .......... .......... .......... .......... 95% 30.2M 0s +2024-05-06T17:08:35Z #15 3.234 122500K .......... .......... .......... .......... .......... 95% 39.2M 0s +2024-05-06T17:08:35Z #15 3.235 122550K .......... .......... .......... .......... .......... 95% 25.5M 0s +2024-05-06T17:08:35Z #15 3.237 122600K .......... .......... .......... .......... .......... 95% 23.6M 0s +2024-05-06T17:08:35Z #15 3.239 122650K .......... .......... .......... .......... .......... 96% 30.0M 0s +2024-05-06T17:08:35Z #15 3.241 122700K .......... .......... .......... .......... .......... 96% 43.7M 0s +2024-05-06T17:08:35Z #15 3.242 122750K .......... .......... .......... .......... .......... 96% 22.0M 0s +2024-05-06T17:08:35Z #15 3.244 122800K .......... .......... .......... .......... .......... 96% 16.2M 0s +2024-05-06T17:08:35Z #15 3.247 122850K .......... .......... .......... .......... .......... 96% 52.0M 0s +2024-05-06T17:08:35Z #15 3.248 122900K .......... .......... .......... .......... .......... 96% 117M 0s +2024-05-06T17:08:35Z #15 3.248 122950K .......... .......... .......... .......... .......... 96% 14.6M 0s +2024-05-06T17:08:35Z #15 3.252 123000K .......... .......... .......... .......... .......... 96% 132M 0s +2024-05-06T17:08:35Z #15 3.252 123050K .......... .......... .......... .......... .......... 96% 18.0M 0s +2024-05-06T17:08:35Z #15 3.255 123100K .......... .......... .......... .......... .......... 96% 33.5M 0s +2024-05-06T17:08:35Z #15 3.256 123150K .......... .......... .......... .......... .......... 96% 40.4M 0s +2024-05-06T17:08:35Z #15 3.257 123200K .......... .......... .......... .......... .......... 96% 22.3M 0s +2024-05-06T17:08:35Z #15 3.260 123250K .......... .......... .......... .......... .......... 96% 58.5M 0s +2024-05-06T17:08:35Z #15 3.260 123300K .......... .......... .......... .......... .......... 96% 40.9M 0s +2024-05-06T17:08:35Z #15 3.262 123350K .......... .......... .......... .......... .......... 96% 22.6M 0s +2024-05-06T17:08:35Z #15 3.264 123400K .......... .......... .......... .......... .......... 96% 21.3M 0s +2024-05-06T17:08:35Z #15 3.267 123450K .......... .......... .......... .......... .......... 96% 60.7M 0s +2024-05-06T17:08:35Z #15 3.267 123500K .......... .......... .......... .......... .......... 96% 42.4M 0s +2024-05-06T17:08:35Z #15 3.268 123550K .......... .......... .......... .......... .......... 96% 97.5M 0s +2024-05-06T17:08:35Z #15 3.268 123600K .......... .......... .......... .......... .......... 96% 115M 0s +2024-05-06T17:08:35Z #15 3.269 123650K .......... .......... .......... .......... .......... 96% 116M 0s +2024-05-06T17:08:35Z #15 3.269 123700K .......... .......... .......... .......... .......... 96% 102M 0s +2024-05-06T17:08:35Z #15 3.270 123750K .......... .......... .......... .......... .......... 96% 44.9M 0s +2024-05-06T17:08:35Z #15 3.271 123800K .......... .......... .......... .......... .......... 96% 63.0M 0s +2024-05-06T17:08:35Z #15 3.272 123850K .......... .......... .......... .......... .......... 96% 98.3M 0s +2024-05-06T17:08:35Z #15 3.272 123900K .......... .......... .......... .......... .......... 96% 58.0M 0s +2024-05-06T17:08:35Z #15 3.273 123950K .......... .......... .......... .......... .......... 97% 35.2M 0s +2024-05-06T17:08:35Z #15 3.275 124000K .......... .......... .......... .......... .......... 97% 56.1M 0s +2024-05-06T17:08:35Z #15 3.275 124050K .......... .......... .......... .......... .......... 97% 46.0M 0s +2024-05-06T17:08:35Z #15 3.276 124100K .......... .......... .......... .......... .......... 97% 29.4M 0s +2024-05-06T17:08:35Z #15 3.278 124150K .......... .......... .......... .......... .......... 97% 56.3M 0s +2024-05-06T17:08:35Z #15 3.279 124200K .......... .......... .......... .......... .......... 97% 72.7M 0s +2024-05-06T17:08:35Z #15 3.283 124250K .......... .......... .......... .......... .......... 97% 88.2M 0s +2024-05-06T17:08:35Z #15 3.283 124300K .......... .......... .......... .......... .......... 97% 138M 0s +2024-05-06T17:08:35Z #15 3.283 124350K .......... .......... .......... .......... .......... 97% 104M 0s +2024-05-06T17:08:35Z #15 3.283 124400K .......... .......... .......... .......... .......... 97% 120M 0s +2024-05-06T17:08:35Z #15 3.283 124450K .......... .......... .......... .......... .......... 97% 107M 0s +2024-05-06T17:08:35Z #15 3.283 124500K .......... .......... .......... .......... .......... 97% 106M 0s +2024-05-06T17:08:35Z #15 3.283 124550K .......... .......... .......... .......... .......... 97% 98.7M 0s +2024-05-06T17:08:35Z #15 3.283 124600K .......... .......... .......... .......... .......... 97% 69.5M 0s +2024-05-06T17:08:35Z #15 3.283 124650K .......... .......... .......... .......... .......... 97% 53.8M 0s +2024-05-06T17:08:35Z #15 3.284 124700K .......... .......... .......... .......... .......... 97% 48.4M 0s +2024-05-06T17:08:35Z #15 3.285 124750K .......... .......... .......... .......... .......... 97% 70.7M 0s +2024-05-06T17:08:35Z #15 3.286 124800K .......... .......... .......... .......... .......... 97% 65.5M 0s +2024-05-06T17:08:35Z #15 3.287 124850K .......... .......... .......... .......... .......... 97% 59.1M 0s +2024-05-06T17:08:35Z #15 3.288 124900K .......... .......... .......... .......... .......... 97% 160M 0s +2024-05-06T17:08:35Z #15 3.288 124950K .......... .......... .......... .......... .......... 97% 41.3M 0s +2024-05-06T17:08:35Z #15 3.289 125000K .......... .......... .......... .......... .......... 97% 74.6M 0s +2024-05-06T17:08:35Z #15 3.290 125050K .......... .......... .......... .......... .......... 97% 55.1M 0s +2024-05-06T17:08:35Z #15 3.291 125100K .......... .......... .......... .......... .......... 97% 47.8M 0s +2024-05-06T17:08:35Z #15 3.292 125150K .......... .......... .......... .......... .......... 97% 37.5M 0s +2024-05-06T17:08:35Z #15 3.293 125200K .......... .......... .......... .......... .......... 98% 114M 0s +2024-05-06T17:08:35Z #15 3.293 125250K .......... .......... .......... .......... .......... 98% 99.6M 0s +2024-05-06T17:08:35Z #15 3.294 125300K .......... .......... .......... .......... .......... 98% 107M 0s +2024-05-06T17:08:35Z #15 3.294 125350K .......... .......... .......... .......... .......... 98% 104M 0s +2024-05-06T17:08:35Z #15 3.296 125400K .......... .......... .......... .......... .......... 98% 95.8M 0s +2024-05-06T17:08:35Z #15 3.296 125450K .......... .......... .......... .......... .......... 98% 64.3M 0s +2024-05-06T17:08:35Z #15 3.297 125500K .......... .......... .......... .......... .......... 98% 67.3M 0s +2024-05-06T17:08:35Z #15 3.297 125550K .......... .......... .......... .......... .......... 98% 77.5M 0s +2024-05-06T17:08:35Z #15 3.298 125600K .......... .......... .......... .......... .......... 98% 57.5M 0s +2024-05-06T17:08:35Z #15 3.298 125650K .......... .......... .......... .......... .......... 98% 54.0M 0s +2024-05-06T17:08:35Z #15 3.299 125700K .......... .......... .......... .......... .......... 98% 64.3M 0s +2024-05-06T17:08:35Z #15 3.300 125750K .......... .......... .......... .......... .......... 98% 101M 0s +2024-05-06T17:08:35Z #15 3.300 125800K .......... .......... .......... .......... .......... 98% 135M 0s +2024-05-06T17:08:35Z #15 3.301 125850K .......... .......... .......... .......... .......... 98% 117M 0s +2024-05-06T17:08:35Z #15 3.301 125900K .......... .......... .......... .......... .......... 98% 135M 0s +2024-05-06T17:08:35Z #15 3.302 125950K .......... .......... .......... .......... .......... 98% 106M 0s +2024-05-06T17:08:35Z #15 3.302 126000K .......... .......... .......... .......... .......... 98% 122M 0s +2024-05-06T17:08:35Z #15 3.302 126050K .......... .......... .......... .......... .......... 98% 124M 0s +2024-05-06T17:08:35Z #15 3.303 126100K .......... .......... .......... .......... .......... 98% 103M 0s +2024-05-06T17:08:35Z #15 3.308 126150K .......... .......... .......... .......... .......... 98% 63.3M 0s +2024-05-06T17:08:35Z #15 3.308 126200K .......... .......... .......... .......... .......... 98% 107M 0s +2024-05-06T17:08:35Z #15 3.308 126250K .......... .......... .......... .......... .......... 98% 90.7M 0s +2024-05-06T17:08:35Z #15 3.308 126300K .......... .......... .......... .......... .......... 98% 109M 0s +2024-05-06T17:08:35Z #15 3.308 126350K .......... .......... .......... .......... .......... 98% 77.4M 0s +2024-05-06T17:08:35Z #15 3.308 126400K .......... .......... .......... .......... .......... 98% 101M 0s +2024-05-06T17:08:35Z #15 3.308 126450K .......... .......... .......... .......... .......... 98% 85.4M 0s +2024-05-06T17:08:35Z #15 3.308 126500K .......... .......... .......... .......... .......... 99% 93.0M 0s +2024-05-06T17:08:35Z #15 3.308 126550K .......... .......... .......... .......... .......... 99% 106M 0s +2024-05-06T17:08:35Z #15 3.308 126600K .......... .......... .......... .......... .......... 99% 123M 0s +2024-05-06T17:08:35Z #15 3.309 126650K .......... .......... .......... .......... .......... 99% 116M 0s +2024-05-06T17:08:35Z #15 3.309 126700K .......... .......... .......... .......... .......... 99% 121M 0s +2024-05-06T17:08:35Z #15 3.309 126750K .......... .......... .......... .......... .......... 99% 109M 0s +2024-05-06T17:08:35Z #15 3.310 126800K .......... .......... .......... .......... .......... 99% 109M 0s +2024-05-06T17:08:35Z #15 3.310 126850K .......... .......... .......... .......... .......... 99% 121M 0s +2024-05-06T17:08:35Z #15 3.311 126900K .......... .......... .......... .......... .......... 99% 89.6M 0s +2024-05-06T17:08:35Z #15 3.311 126950K .......... .......... .......... .......... .......... 99% 95.0M 0s +2024-05-06T17:08:35Z #15 3.312 127000K .......... .......... .......... .......... .......... 99% 112M 0s +2024-05-06T17:08:35Z #15 3.312 127050K .......... .......... .......... .......... .......... 99% 117M 0s +2024-05-06T17:08:35Z #15 3.312 127100K .......... .......... .......... .......... .......... 99% 121M 0s +2024-05-06T17:08:35Z #15 3.313 127150K .......... .......... .......... .......... .......... 99% 109M 0s +2024-05-06T17:08:35Z #15 3.313 127200K .......... .......... .......... .......... .......... 99% 109M 0s +2024-05-06T17:08:35Z #15 3.314 127250K .......... .......... .......... .......... .......... 99% 129M 0s +2024-05-06T17:08:35Z #15 3.314 127300K .......... .......... .......... .......... .......... 99% 117M 0s +2024-05-06T17:08:35Z #15 3.315 127350K .......... .......... .......... .......... .......... 99% 5.73M 0s +2024-05-06T17:08:35Z #15 3.323 127400K .......... .......... .......... .......... .......... 99% 118M 0s +2024-05-06T17:08:35Z #15 3.324 127450K .......... .......... .......... .......... .......... 99% 127M 0s +2024-05-06T17:08:35Z #15 3.324 127500K .......... .......... .......... .......... .......... 99% 121M 0s +2024-05-06T17:08:35Z #15 3.324 127550K .......... .......... .......... .......... .......... 99% 134M 0s +2024-05-06T17:08:35Z #15 3.325 127600K .......... .......... .......... .......... .......... 99% 122M 0s +2024-05-06T17:08:35Z #15 3.325 127650K .......... .......... .......... .......... .......... 99% 132M 0s +2024-05-06T17:08:35Z #15 3.325 127700K .......... .......... .......... .......... .......... 99% 128M 0s +2024-05-06T17:08:35Z #15 3.326 127750K .......... .......... .......... .......... . 100% 108M=1.8s +2024-05-06T17:08:35Z #15 3.326 +2024-05-06T17:08:35Z #15 3.326 2024-05-06 17:08:35 (68.7 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [130857988/130857988] +2024-05-06T17:08:35Z #15 3.326 +2024-05-06T17:08:38Z #15 6.694 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.5/globusconnectpersonal' +2024-05-06T17:08:38Z #15 6.717 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' +2024-05-06T17:08:40Z #15 DONE 8.2s +2024-05-06T17:08:40Z +2024-05-06T17:08:40Z #16 exporting to image +2024-05-06T17:08:40Z #16 exporting layers +2024-05-06T17:11:18Z #16 exporting layers 158.2s done +2024-05-06T17:11:18Z #16 writing image sha256:a3f70e8faafb7f43f614ecb6de243945dfbfc5bbc8232cb3119687a1fd107366 done +2024-05-06T17:11:18Z #16 naming to docker.io/pavics/workflow-tests:py311-240506 done +2024-05-06T17:11:18Z #16 DONE 158.2s +2024-05-06T17:11:18Z Pushing index.docker.io/pavics/workflow-tests:py311-240506... +2024-05-06T17:19:28Z Done! +2024-05-06T17:19:28Z Build finished From 936e3442bc9b0c3634510f8bf38ab91894db2bf1 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Mon, 6 May 2024 14:40:21 -0400 Subject: [PATCH 087/104] docker: py311-240506: conda env export --- docker/saved_buildout/conda-env-export.yml | 79 +++++++++++----------- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index 61d471d..aa9c5e8 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -43,6 +43,7 @@ dependencies: - aws-crt-cpp=0.19.8=hf7fbfca_12 - aws-sdk-cpp=1.10.57=h17c43bd_8 - azure-core-cpp=1.10.3=h22d5011_0 + - azure-identity-cpp=1.6.0=hf1915f5_0 - babel=2.14.0=pyhd8ed1ab_0 - bcrypt=4.1.2=py311h46250e7_0 - beautifulsoup4=4.12.3=pyha770c72_0 @@ -92,15 +93,15 @@ dependencies: - comm=0.2.2=pyhd8ed1ab_0 - configurable-http-proxy=4.5.4=he2f69ee_2 - contourpy=1.2.1=py311h9547e67_0 - - coverage=7.5.0=py311h331c9d8_0 + - coverage=7.5.1=py311h331c9d8_0 - cryptography=42.0.2=py311hcb13ee4_0 - curl=7.88.1=hdc1c0ab_1 - cycler=0.12.1=pyhd8ed1ab_0 - cytoolz=0.12.3=py311h459d7ec_0 - - dash=2.16.1=pyhd8ed1ab_0 - - dask=2024.4.2=pyhd8ed1ab_0 - - dask-core=2024.4.2=pyhd8ed1ab_0 - - dask-expr=1.0.13=pyhd8ed1ab_0 + - dash=2.17.0=pyhd8ed1ab_0 + - dask=2024.5.0=pyhd8ed1ab_0 + - dask-core=2024.5.0=pyhd8ed1ab_0 + - dask-expr=1.1.0=pyhd8ed1ab_0 - dask-labextension=6.2.0=pyhd8ed1ab_0 - dataclasses=0.8=pyhc8e2a94_3 - datashader=0.16.1=pyhd8ed1ab_0 @@ -112,7 +113,7 @@ dependencies: - descartes=1.1.0=py_4 - dill=0.3.8=pyhd8ed1ab_0 - distlib=0.3.8=pyhd8ed1ab_0 - - distributed=2024.4.2=pyhd8ed1ab_0 + - distributed=2024.5.0=pyhd8ed1ab_0 - docopt=0.6.2=py_1 - docrep=0.3.2=pyh44b312d_0 - eccodes=2.28.0=h7513371_1 @@ -131,7 +132,7 @@ dependencies: - fasteners=0.17.3=pyhd8ed1ab_0 - fastprogress=1.0.3=pyhd8ed1ab_0 - fftw=3.3.10=nompi_hc118613_108 - - filelock=3.13.4=pyhd8ed1ab_0 + - filelock=3.14.0=pyhd8ed1ab_0 - findlibs=0.0.5=pyhd8ed1ab_0 - fiona=1.9.1=py311h3f14cef_0 - flask=3.0.3=pyhd8ed1ab_0 @@ -141,7 +142,7 @@ dependencies: - font-ttf-dejavu-sans-mono=2.37=hab24e00_0 - font-ttf-inconsolata=3.000=h77eed37_0 - font-ttf-source-code-pro=2.038=h77eed37_0 - - font-ttf-ubuntu=0.83=h77eed37_1 + - font-ttf-ubuntu=0.83=h77eed37_2 - fontconfig=2.14.2=h14ed4e7_0 - fonts-conda-ecosystem=1=0 - fonts-conda-forge=1=0 @@ -175,7 +176,7 @@ dependencies: - glib-tools=2.78.1=hfc55251_0 - glog=0.6.0=h6f12383_0 - gnutls=3.7.9=hb077bed_0 - - google-api-core=2.18.0=pyhd8ed1ab_0 + - google-api-core=2.19.0=pyhd8ed1ab_0 - google-auth=2.29.0=pyhca7485f_0 - google-auth-oauthlib=1.2.0=pyhd8ed1ab_0 - google-cloud-core=2.4.1=pyhd8ed1ab_0 @@ -225,15 +226,15 @@ dependencies: - jedi=0.19.1=pyhd8ed1ab_0 - jinja2=3.1.3=pyhd8ed1ab_0 - jmespath=1.0.1=pyhd8ed1ab_0 - - joblib=1.4.0=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_0 - jpeg=9e=h166bdaf_2 - json-c=0.16=hc379101_0 - json5=0.9.25=pyhd8ed1ab_0 - jsonpickle=3.0.4=pyhd8ed1ab_0 - jsonpointer=2.4=py311h38be061_3 - - jsonschema=4.21.1=pyhd8ed1ab_0 + - jsonschema=4.22.0=pyhd8ed1ab_0 - jsonschema-specifications=2023.12.1=pyhd8ed1ab_0 - - jsonschema-with-format-nongpl=4.21.1=pyhd8ed1ab_0 + - jsonschema-with-format-nongpl=4.22.0=pyhd8ed1ab_0 - jupyter=1.0.0=pyhd8ed1ab_10 - jupyter-archive=3.3.4=pyhd8ed1ab_1 - jupyter-resource-usage=0.7.1=pyhd8ed1ab_0 @@ -246,7 +247,7 @@ dependencies: - jupyter_events=0.10.0=pyhd8ed1ab_0 - jupyter_leaflet=0.19.0=pyhd8ed1ab_1 - jupyter_server=2.14.0=pyhd8ed1ab_0 - - jupyter_server_fileid=0.9.1=pyhd8ed1ab_0 + - jupyter_server_fileid=0.9.2=pyhd8ed1ab_0 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_0 - jupyter_server_ydoc=0.8.0=pyhd8ed1ab_0 - jupyter_telemetry=0.1.0=pyhd8ed1ab_1 @@ -260,7 +261,7 @@ dependencies: - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 - jupyterlab_server=2.27.1=pyhd8ed1ab_0 - jupyterlab_widgets=3.0.10=pyhd8ed1ab_0 - - jupytext=1.16.1=pyhd8ed1ab_0 + - jupytext=1.16.2=pyhd8ed1ab_0 - jxrlib=1.1=hd590300_3 - kealib=1.5.0=ha7026e8_0 - keyutils=1.6.1=h166bdaf_0 @@ -298,7 +299,7 @@ dependencies: - libexpat=2.6.2=h59595ed_0 - libffi=3.4.2=h7f98852_5 - libflac=1.4.3=h59595ed_0 - - libgcc-ng=13.2.0=hc881cc4_6 + - libgcc-ng=13.2.0=h77fa898_6 - libgcrypt=1.10.3=hd590300_0 - libgdal=3.6.2=h8c90c07_6 - libgettextpo=0.22.5=h59595ed_2 @@ -307,7 +308,7 @@ dependencies: - libgfortran5=13.2.0=h43f5ff8_6 - libglib=2.78.1=hebfc3b9_0 - libglu=9.0.0=he1b5a44_1001 - - libgomp=13.2.0=hc881cc4_6 + - libgomp=13.2.0=h77fa898_6 - libgoogle-cloud=2.8.0=h0bc5f78_1 - libgpg-error=1.49=h4f305b6_0 - libgrpc=1.52.1=hcf146ea_1 @@ -324,7 +325,7 @@ dependencies: - libnghttp2=1.58.0=h47da74e_0 - libnl=3.9.0=hd590300_0 - libnsl=2.0.1=hd590300_0 - - libnuma=2.0.18=hd590300_0 + - libnuma=2.0.18=h4ab18f5_2 - libogg=1.3.4=h7f98852_1 - libopenblas=0.3.27=pthreads_h413a1c8_0 - libopus=1.3.1=h7f98852_1 @@ -339,7 +340,7 @@ dependencies: - libspatialite=5.0.1=h221c8f1_23 - libsqlite=3.45.3=h2797004_0 - libssh2=1.11.0=h0841786_0 - - libstdcxx-ng=13.2.0=h95c4c6d_6 + - libstdcxx-ng=13.2.0=hc0a3c3a_6 - libsystemd0=253=h8c4010b_1 - libtasn1=4.19.0=h166bdaf_0 - libthrift=0.18.1=h5e4af38_0 @@ -399,9 +400,9 @@ dependencies: - mysql-libs=8.0.33=hca2cd23_6 - nbclassic=1.0.0=pyhb4ecaf3_1 - nbclient=0.7.4=pyhd8ed1ab_0 - - nbconvert=7.16.3=hd8ed1ab_1 - - nbconvert-core=7.16.3=pyhd8ed1ab_1 - - nbconvert-pandoc=7.16.3=hd8ed1ab_1 + - nbconvert=7.16.4=hd8ed1ab_0 + - nbconvert-core=7.16.4=pyhd8ed1ab_0 + - nbconvert-pandoc=7.16.4=hd8ed1ab_0 - nbdime=4.0.1=pyhd8ed1ab_0 - nbformat=5.10.4=pyhd8ed1ab_0 - nbresuse=0.4.0=pyhd8ed1ab_0 @@ -456,7 +457,7 @@ dependencies: - pixman=0.43.2=h59595ed_0 - pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 - platformdirs=4.2.1=pyhd8ed1ab_0 - - plotly=5.21.0=pyhd8ed1ab_0 + - plotly=5.22.0=pyhd8ed1ab_0 - pluggy=1.5.0=pyhd8ed1ab_0 - ply=3.11=pyhd8ed1ab_2 - pooch=1.8.1=pyhd8ed1ab_0 @@ -492,7 +493,7 @@ dependencies: - pydantic-core=2.18.2=py311h5ecf98a_0 - pydap=3.4.0=pyhd8ed1ab_0 - pydeck=0.8.0=pyhd8ed1ab_0 - - pygments=2.17.2=pyhd8ed1ab_0 + - pygments=2.18.0=pyhd8ed1ab_0 - pyjwt=2.8.0=pyhd8ed1ab_1 - pykdtree=1.3.12=py311h7c22f60_0 - pymbolic=2022.2=pyhd8ed1ab_0 @@ -524,7 +525,7 @@ dependencies: - pyyaml=6.0.1=py311h459d7ec_1 - pyzmq=24.0.1=py311ha4b6469_1 - qt-main=5.15.8=h5d23da1_6 - - qtconsole-base=5.5.1=pyha770c72_0 + - qtconsole-base=5.5.2=pyha770c72_0 - qtpy=2.4.1=pyhd8ed1ab_0 - rasterio=1.3.6=py311h567e639_0 - raven-hydro=0.2.4=py311h64a4d7b_0 @@ -533,10 +534,10 @@ dependencies: - re2=2023.02.02=hcb278e6_0 - readline=8.2=h8228510_1 - rechunker=0.5.2=pyhd8ed1ab_1 - - referencing=0.35.0=pyhd8ed1ab_0 + - referencing=0.35.1=pyhd8ed1ab_0 - regionmask=0.12.1=pyhd8ed1ab_0 - requests=2.31.0=pyhd8ed1ab_0 - - requests-cache=1.2.0=pyhd8ed1ab_0 + - requests-cache=1.2.0=pyhd8ed1ab_1 - requests-magpie=0.2.0=pyhd8ed1ab_0 - requests-oauthlib=2.0.0=pyhd8ed1ab_0 - retrying=1.3.3=py_2 @@ -556,10 +557,10 @@ dependencies: - salib=1.5.0=pyhd8ed1ab_0 - scikit-image=0.22.0=py311h320fe9a_2 - scikit-learn=1.4.2=py311hc009520_0 - - scipy=1.13.0=py311h64a7726_0 + - scipy=1.13.0=py311h517d4fd_1 - scp=0.14.5=pyhd8ed1ab_0 - - seaborn=0.13.2=hd8ed1ab_0 - - seaborn-base=0.13.2=pyhd8ed1ab_0 + - seaborn=0.13.2=hd8ed1ab_2 + - seaborn-base=0.13.2=pyhd8ed1ab_2 - selenium=4.20.0=pyhd8ed1ab_0 - selenium-manager=4.20.0=he8a937b_0 - send2trash=1.8.3=pyh0d859eb_0 @@ -578,15 +579,15 @@ dependencies: - sparse=0.15.1=pyhd8ed1ab_1 - spdlog=1.13.0=hd2e6256_0 - spotpy=1.6.2=pyhd8ed1ab_0 - - sqlalchemy=2.0.29=py311h459d7ec_0 + - sqlalchemy=2.0.30=py311h331c9d8_0 - sqlite=3.45.3=h2c6b66d_0 - stack_data=0.6.2=pyhd8ed1ab_0 - statsmodels=0.14.1=py311h1f0f07a_0 - - streamlit=1.33.0=pyhd8ed1ab_1 + - streamlit=1.34.0=pyhd8ed1ab_0 - tblib=3.0.0=pyhd8ed1ab_0 - tenacity=8.2.3=pyhd8ed1ab_0 - terminado=0.18.1=pyh0d859eb_0 - - threadpoolctl=3.4.0=pyhc1e730c_0 + - threadpoolctl=3.5.0=pyhc1e730c_0 - threddsclient=0.4.5=pyhca7485f_0 - tifffile=2023.8.12=pyhd8ed1ab_0 - tiledb=2.13.2=hd532e3d_0 @@ -596,7 +597,7 @@ dependencies: - tomli=2.0.1=pyhd8ed1ab_0 - toolz=0.12.1=pyhd8ed1ab_0 - tornado=6.4=py311h459d7ec_0 - - tqdm=4.66.2=pyhd8ed1ab_0 + - tqdm=4.66.4=pyhd8ed1ab_0 - traitlets=5.14.3=pyhd8ed1ab_0 - traittypes=0.2.1=pyh9f0ad1d_2 - trio=0.25.0=py311h38be061_0 @@ -618,7 +619,7 @@ dependencies: - urllib3=2.0.7=pyhd8ed1ab_0 - urlpath=1.2.0=pyhd8ed1ab_0 - validators=0.28.1=pyhd8ed1ab_0 - - virtualenv=20.26.0=pyhd8ed1ab_0 + - virtualenv=20.26.1=pyhd8ed1ab_0 - voila=0.5.6=pyhd8ed1ab_0 - watchdog=4.0.0=py311h38be061_0 - wcwidth=0.2.13=pyhd8ed1ab_0 @@ -627,7 +628,7 @@ dependencies: - webob=1.8.7=pyhd8ed1ab_0 - websocket-client=1.8.0=pyhd8ed1ab_0 - websockets=12.0=py311h459d7ec_0 - - werkzeug=3.0.2=pyhd8ed1ab_0 + - werkzeug=3.0.3=pyhd8ed1ab_0 - wget=1.20.3=ha35d2d1_1 - wheel=0.43.0=pyhd8ed1ab_1 - widgetsnbextension=4.0.10=pyhd8ed1ab_0 @@ -690,8 +691,8 @@ dependencies: - zipp=3.17.0=pyhd8ed1ab_0 - zlib=1.2.13=hd590300_5 - zlib-ng=2.0.7=h0b41bf4_0 - - zstandard=0.22.0=py311haa97af0_0 - - zstd=1.5.5=hfc55251_0 + - zstandard=0.19.0=py311hd4cff14_0 + - zstd=1.5.6=ha6fb4c9_0 - pip: - astunparse==1.6.3 - cairocffi==1.7.0 @@ -701,11 +702,11 @@ dependencies: - dnspython==2.6.1 - email-validator==2.1.1 - figanos==0.3.0 - - fstd2nc==0.20240401.0 + - fstd2nc==0.20240401.1 - fstd2nc-deps==0.20200304.6 - geojson==3.1.0 - hsclient==1.0.0 - - hsmodels==1.0.0 + - hsmodels==1.0.3 - ipython-blocking==0.3.1 - isodate==0.6.1 - jupyterlab-logout==0.5.0 From f390690f7afe1c364e841462e696bd5500fecf4f Mon Sep 17 00:00:00 2001 From: Long Vu Date: Mon, 6 May 2024 14:44:14 -0400 Subject: [PATCH 088/104] jenkins: fix nbval --sanitize-with deprecation warning ``` /opt/conda/envs/birdy/lib/python3.11/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) ``` --- runtest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtest b/runtest index 8936b1f..5256553 100755 --- a/runtest +++ b/runtest @@ -50,7 +50,7 @@ if [ -n "$CONFIG_OVERRIDE_SCRIPT_URL" ]; then . "$TMP_CONF_OVERRIDE" fi -py.test --nbval $NOTEBOOKS --sanitize-with notebooks/output-sanitize.cfg $PYTEST_EXTRA_OPTS +py.test --nbval $NOTEBOOKS --nbval-sanitize-with notebooks/output-sanitize.cfg $PYTEST_EXTRA_OPTS EXIT_CODE="$?" # lowercase SAVE_RESULTING_NOTEBOOK string From 54698f17a9ebcb5054a12ab2dbdd43fb5d0c9f3e Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 7 May 2024 09:46:28 -0400 Subject: [PATCH 089/104] docker: py311-240506: working jenkins, default nb --- .../jenkins-buildlogs-default.txt | 1698 ++++++++--------- 1 file changed, 782 insertions(+), 916 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index 0bcb019..1c9eb78 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -17,11 +17,11 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from 393fc67361048209d2e59114c1308bfdf275dca8 +Obtained Jenkinsfile from b81376901a3df4e786fb234eb1c50f96b084ab18 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -29,920 +29,790 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision 393fc67361048209d2e59114c1308bfdf275dca8 (new-docker-build) -Commit message: "docker: document why cdms2 was disabled" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision b81376901a3df4e786fb234eb1c50f96b084ab18 (new-docker-build) +Commit message: "docker: py311-240506: dockerhub build log" > git config core.sparsecheckout # timeout=10 - > git checkout -f 393fc67361048209d2e59114c1308bfdf275dca8 # timeout=10 - > git rev-list --no-walk 393fc67361048209d2e59114c1308bfdf275dca8 # timeout=10 + > git checkout -f b81376901a3df4e786fb234eb1c50f96b084ab18 # timeout=10 + > git rev-list --no-walk f12f9179b392341ac1a0a3f496ccae0bea00797f # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py311-240428 ++ docker inspect -f . pavics/workflow-tests:py311-240506 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240428 cat -$ docker top 9fccafeff53ab545c26988df17cd6b63016f456cae3d32d0f7c21ea39092a689 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240506 cat +$ docker top 3e373716f2b2bbbf0530ef594f7112c08b675b075d030f3a0aafce0c30376af0 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-30T14:52:45.920Z] Timeout set to expire in 2 hr 0 min +[2024-05-06T18:38:34.472Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-30T14:52:47.015Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-05-06T18:38:34.703Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-30T14:52:47.641Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-30T14:52:47.641Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-30T14:52:47.641Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-30T14:52:47.641Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-30T14:52:47.641Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-30T14:52:47.641Z] FINCH_BRANCH has been set to 'master' -[2024-04-30T14:52:47.641Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-30T14:52:47.641Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-30T14:52:47.641Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-30T14:52:47.641Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-30T14:52:47.641Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-30T14:52:47.641Z] RAVEN_BRANCH has been set to 'main' -[2024-04-30T14:52:47.641Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-30T14:52:47.641Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-30T14:52:47.641Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-30T14:52:47.641Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-30T14:52:47.641Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-30T14:52:47.641Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-30T14:52:47.641Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-30T14:52:47.641Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-30T14:52:47.641Z] + git clean -fdx -[2024-04-30T14:52:50.933Z] Removing .pytest_cache/ -[2024-04-30T14:52:50.933Z] Removing PAVICS-landing-master/ -[2024-04-30T14:52:50.933Z] Removing RavenPy-master/ -[2024-04-30T14:52:50.933Z] Removing __pycache__/ -[2024-04-30T14:52:50.933Z] Removing buildout/ -[2024-04-30T14:52:50.933Z] Removing esgf-compute-api-devel/ -[2024-04-30T14:52:50.933Z] Removing finch-master/ -[2024-04-30T14:52:50.933Z] Removing pavics-sdi-master/ -[2024-04-30T14:52:50.933Z] Removing raven-main/ -[2024-04-30T14:52:50.933Z] + ./downloadrepos -[2024-04-30T14:52:50.933Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-04-30T14:52:50.933Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-30T14:52:50.933Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-30T14:52:50.933Z] TEST_FINCH_REPO has been set to 'true' -[2024-04-30T14:52:50.933Z] FINCH_BRANCH has been set to 'master' -[2024-04-30T14:52:50.933Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-30T14:52:50.933Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-04-30T14:52:50.933Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-04-30T14:52:50.933Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-30T14:52:50.933Z] TEST_RAVEN_REPO has been set to 'false' -[2024-04-30T14:52:50.933Z] RAVEN_BRANCH has been set to 'main' -[2024-04-30T14:52:50.933Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-30T14:52:50.933Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-04-30T14:52:50.933Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-30T14:52:50.933Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-30T14:52:50.933Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-30T14:52:50.933Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-30T14:52:50.934Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-30T14:52:50.934Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-04-30T14:52:50.934Z] + rm -rf pavics-sdi-* -[2024-04-30T14:52:50.934Z] + ls -[2024-04-30T14:52:50.934Z] + grep pavics-sdi -[2024-04-30T14:52:50.934Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:52:50.934Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-30T14:52:50.934Z] + shift -[2024-04-30T14:52:50.934Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:52:50.934Z] + shift -[2024-04-30T14:52:50.934Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-30T14:52:50.934Z] + tar xz -[2024-04-30T14:52:54.223Z] + ls -[2024-04-30T14:52:54.223Z] + grep pavics-sdi -[2024-04-30T14:52:54.223Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:52:54.223Z] + set +x -[2024-04-30T14:52:54.223Z] + rm -rf finch-* -[2024-04-30T14:52:54.223Z] + ls -[2024-04-30T14:52:54.223Z] + grep finch -[2024-04-30T14:52:54.223Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-30T14:52:54.223Z] + github_repo=https://github.com/bird-house/finch -[2024-04-30T14:52:54.223Z] + shift -[2024-04-30T14:52:54.223Z] + branch=master -[2024-04-30T14:52:54.223Z] + shift -[2024-04-30T14:52:54.223Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-30T14:52:54.223Z] + tar xz -[2024-04-30T14:52:55.600Z] + ls -[2024-04-30T14:52:55.600Z] + grep finch -[2024-04-30T14:52:55.600Z] finch-master -[2024-04-30T14:52:55.600Z] + set +x -[2024-04-30T14:52:55.600Z] + rm -rf PAVICS-landing-* -[2024-04-30T14:52:55.600Z] + ls -[2024-04-30T14:52:55.600Z] + grep PAVICS-landing -[2024-04-30T14:52:55.600Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:52:55.600Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-30T14:52:55.600Z] + shift -[2024-04-30T14:52:55.600Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:52:55.600Z] + shift -[2024-04-30T14:52:55.600Z] + + tar xz -[2024-04-30T14:52:55.600Z] wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-04-30T14:53:05.559Z] + ls -[2024-04-30T14:53:05.559Z] + grep PAVICS-landing -[2024-04-30T14:53:05.559Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:53:05.559Z] + set +x -[2024-04-30T14:53:05.559Z] + rm -rf raven-* -[2024-04-30T14:53:05.559Z] + ls -[2024-04-30T14:53:05.559Z] + grep raven -[2024-04-30T14:53:05.559Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-30T14:53:05.559Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-30T14:53:05.559Z] + shift -[2024-04-30T14:53:05.559Z] + branch=main -[2024-04-30T14:53:05.559Z] + shift -[2024-04-30T14:53:05.559Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-30T14:53:05.559Z] + tar xz -[2024-04-30T14:53:05.821Z] + ls -[2024-04-30T14:53:05.821Z] + grep raven -[2024-04-30T14:53:05.821Z] raven-main -[2024-04-30T14:53:05.821Z] + set +x -[2024-04-30T14:53:05.821Z] + rm -rf RavenPy-* -[2024-04-30T14:53:05.821Z] + ls -[2024-04-30T14:53:05.821Z] + grep RavenPy -[2024-04-30T14:53:05.821Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-30T14:53:05.821Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-30T14:53:05.821Z] + shift -[2024-04-30T14:53:05.821Z] + branch=master -[2024-04-30T14:53:05.821Z] + shift -[2024-04-30T14:53:05.821Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-30T14:53:05.821Z] + tar xz -[2024-04-30T14:53:07.725Z] + ls -[2024-04-30T14:53:07.725Z] + grep RavenPy -[2024-04-30T14:53:07.725Z] RavenPy-master -[2024-04-30T14:53:07.725Z] + set +x -[2024-04-30T14:53:07.725Z] + rm -rf esgf-compute-api-* -[2024-04-30T14:53:07.725Z] + ls -[2024-04-30T14:53:07.725Z] + grep esgf-compute-api -[2024-04-30T14:53:07.725Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-30T14:53:07.725Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-30T14:53:07.725Z] + shift -[2024-04-30T14:53:07.725Z] + branch=devel -[2024-04-30T14:53:07.725Z] + shift -[2024-04-30T14:53:07.726Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-30T14:53:07.726Z] + tar xz -[2024-04-30T14:53:08.658Z] + ls -[2024-04-30T14:53:08.658Z] + grep esgf-compute-api -[2024-04-30T14:53:08.658Z] esgf-compute-api-devel -[2024-04-30T14:53:08.658Z] + set +x -[2024-04-30T14:53:08.658Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:53:08.658Z] + sed s@/@-@g -[2024-04-30T14:53:08.658Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:53:08.658Z] + echo Ouranosinc/pavics-sdi -[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g -[2024-04-30T14:53:08.658Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-30T14:53:08.658Z] + echo master -[2024-04-30T14:53:08.658Z] + sed s@/@-@g -[2024-04-30T14:53:08.658Z] + FINCH_BRANCH=master -[2024-04-30T14:53:08.658Z] + echo bird-house/finch -[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g -[2024-04-30T14:53:08.658Z] + FINCH_REPO_NAME=finch -[2024-04-30T14:53:08.658Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:53:08.658Z] + sed s@/@-@g -[2024-04-30T14:53:08.658Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:53:08.658Z] + echo Ouranosinc/PAVICS-landing -[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g -[2024-04-30T14:53:08.658Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-30T14:53:08.658Z] + echo main -[2024-04-30T14:53:08.658Z] + sed s@/@-@g -[2024-04-30T14:53:08.658Z] + RAVEN_BRANCH=main -[2024-04-30T14:53:08.658Z] + echo Ouranosinc/raven -[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g -[2024-04-30T14:53:08.658Z] + RAVEN_REPO_NAME=raven -[2024-04-30T14:53:08.658Z] + echo master -[2024-04-30T14:53:08.658Z] + sed s@/@-@g -[2024-04-30T14:53:08.658Z] + RAVENPY_BRANCH=master -[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g -[2024-04-30T14:53:08.658Z] + echo CSHS-CWRA/RavenPy -[2024-04-30T14:53:08.658Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-30T14:53:08.658Z] + echo devel -[2024-04-30T14:53:08.658Z] + sed s@/@-@g -[2024-04-30T14:53:08.658Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-30T14:53:08.658Z] + echo ESGF/esgf-compute-api -[2024-04-30T14:53:08.658Z] + sed s@^.*/@@g -[2024-04-30T14:53:08.658Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-30T14:53:08.658Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:53:08.658Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:53:08.658Z] + echo finch-master -[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:53:08.658Z] + FINCH_DIR=finch-master -[2024-04-30T14:53:08.658Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:53:08.658Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-04-30T14:53:08.658Z] + echo raven-main -[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:53:08.658Z] + RAVEN_DIR=raven-main -[2024-04-30T14:53:08.658Z] + echo RavenPy-master -[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:53:08.658Z] + RAVENPY_DIR=RavenPy-master -[2024-04-30T14:53:08.658Z] + echo esgf-compute-api-devel -[2024-04-30T14:53:08.658Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:53:08.658Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-30T14:53:08.658Z] + echo true -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + VERIFY_SSL=true -[2024-04-30T14:53:08.658Z] + [ xtrue = xfalse ] -[2024-04-30T14:53:08.658Z] + rm -v finch-master/setup.cfg -[2024-04-30T14:53:08.658Z] removed 'finch-master/setup.cfg' -[2024-04-30T14:53:08.658Z] + rm -v raven-main/setup.cfg -[2024-04-30T14:53:08.658Z] removed 'raven-main/setup.cfg' -[2024-04-30T14:53:08.658Z] + rm -v raven-main/pyproject.toml -[2024-04-30T14:53:08.658Z] removed 'raven-main/pyproject.toml' -[2024-04-30T14:53:08.658Z] + rm -v RavenPy-master/setup.cfg -[2024-04-30T14:53:08.658Z] removed 'RavenPy-master/setup.cfg' -[2024-04-30T14:53:08.658Z] + rm -v RavenPy-master/tox.ini -[2024-04-30T14:53:08.658Z] removed 'RavenPy-master/tox.ini' -[2024-04-30T14:53:08.658Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-30T14:53:08.658Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-30T14:53:08.658Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-30T14:53:08.658Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-30T14:53:08.658Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-30T14:53:08.658Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-30T14:53:08.658Z] + echo false -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + TEST_MAGPIE_AUTH=false -[2024-04-30T14:53:08.658Z] + echo true -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + TEST_PAVICS_SDI_REPO=true -[2024-04-30T14:53:08.658Z] + echo false -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-30T14:53:08.658Z] + echo true -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + TEST_FINCH_REPO=true -[2024-04-30T14:53:08.658Z] + echo true -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + TEST_PAVICS_LANDING_REPO=true -[2024-04-30T14:53:08.658Z] + echo false -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + TEST_RAVEN_REPO=false -[2024-04-30T14:53:08.658Z] + echo false -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + TEST_RAVENPY_REPO=false -[2024-04-30T14:53:08.658Z] + echo false -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-30T14:53:08.658Z] + echo true -[2024-04-30T14:53:08.658Z] + tr [:upper:] [:lower:] -[2024-04-30T14:53:08.658Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-04-30T14:53:08.658Z] + NOTEBOOKS_TO_TEST= -[2024-04-30T14:53:08.658Z] + [ xfalse = xtrue ] -[2024-04-30T14:53:08.658Z] + [ xtrue = xtrue ] -[2024-04-30T14:53:08.658Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb -[2024-04-30T14:53:08.658Z] + [ xfalse = xtrue ] -[2024-04-30T14:53:08.658Z] + [ xtrue = xtrue ] -[2024-04-30T14:53:08.658Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-04-30T14:53:08.658Z] + [ xtrue = xtrue ] -[2024-04-30T14:53:08.658Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb -[2024-04-30T14:53:08.658Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-30T14:53:08.658Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-04-30T14:53:08.658Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-30T14:53:08.658Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-30T14:53:08.658Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-30T14:53:08.658Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-04-30T14:53:08.658Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators -[2024-04-30T14:53:08.658Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-30T14:53:08.658Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-04-30T14:53:08.659Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-04-30T14:53:08.659Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.659Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:08.917Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:09.856Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.114Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.370Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-04-30T14:53:10.371Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-04-30T14:53:10.371Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-04-30T14:53:10.371Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-04-30T14:53:10.371Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' -[2024-04-30T14:53:10.371Z] + [ xfalse = xtrue ] -[2024-04-30T14:53:10.371Z] + [ xfalse = xtrue ] -[2024-04-30T14:53:10.371Z] + [ xfalse = xtrue ] -[2024-04-30T14:53:10.371Z] + [ xtrue = xtrue ] -[2024-04-30T14:53:10.371Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-30T14:53:10.371Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-04-30T14:53:10.371Z] + [ -n ] -[2024-04-30T14:53:10.371Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-30T14:53:10.371Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-30T14:53:10.371Z] Will run notebooks against pavics.ouranos.ca -[2024-04-30T14:53:10.371Z] + [ -z ] -[2024-04-30T14:53:10.371Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-04-30T14:53:10.371Z] + git diff -[2024-04-30T14:53:10.371Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-30T14:53:10.371Z] + [ -n ] -[2024-04-30T14:53:10.372Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-04-30T14:53:12.901Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-30T14:53:12.901Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-30T14:53:12.901Z] ============================= test session starts ============================== -[2024-04-30T14:53:12.901Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 -[2024-04-30T14:53:12.901Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build -[2024-04-30T14:53:12.901Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-30T14:53:12.901Z] collected 220 items -[2024-04-30T14:53:12.901Z] -[2024-04-30T14:53:16.191Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] -[2024-04-30T14:53:40.397Z] ..... [ 2%] -[2024-04-30T14:53:42.953Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] -[2024-04-30T14:53:49.038Z] ...... [ 5%] -[2024-04-30T14:53:50.954Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] -[2024-04-30T14:53:57.422Z] ..... [ 8%] -[2024-04-30T14:53:57.988Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] -[2024-04-30T14:54:15.736Z] ....... [ 12%] -[2024-04-30T14:54:25.939Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] -[2024-04-30T14:56:55.134Z] ....F..F... [ 17%] -[2024-04-30T14:56:55.398Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] -[2024-04-30T14:57:04.001Z] ............... [ 25%] -[2024-04-30T14:57:07.282Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] -[2024-04-30T14:57:12.555Z] .... [ 27%] -[2024-04-30T14:57:14.453Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] -[2024-04-30T14:57:56.352Z] ..... [ 30%] -[2024-04-30T14:58:04.482Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] -[2024-04-30T14:58:11.367Z] ..... [ 32%] -[2024-04-30T14:58:12.749Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] -[2024-04-30T14:58:15.824Z] ...... [ 35%] -[2024-04-30T14:58:16.754Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] -[2024-04-30T14:58:21.680Z] .... [ 38%] -[2024-04-30T14:58:39.789Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] -[2024-04-30T15:00:05.535Z] ........................... [ 50%] -[2024-04-30T15:00:05.535Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] -[2024-04-30T15:00:06.755Z] ... [ 52%] -[2024-04-30T15:00:07.700Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] -[2024-04-30T15:00:25.841Z] ........................ [ 64%] -[2024-04-30T15:00:29.122Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] -[2024-04-30T15:00:33.541Z] ..... [ 66%] -[2024-04-30T15:00:42.016Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 71%] -[2024-04-30T15:00:50.187Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] -[2024-04-30T15:00:51.127Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] -[2024-04-30T15:00:54.192Z] ...... [ 77%] -[2024-04-30T15:01:00.736Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] -[2024-04-30T15:01:12.254Z] ............. [ 84%] -[2024-04-30T15:01:24.443Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-04-30T15:01:42.335Z] .F..s [ 86%] -[2024-04-30T15:01:50.444Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] -[2024-04-30T15:02:11.025Z] .F. [ 88%] -[2024-04-30T15:02:23.254Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] -[2024-04-30T15:03:11.947Z] ...... [ 91%] -[2024-04-30T15:03:12.771Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-04-30T15:05:10.141Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] =================================== FAILURES =================================== -[2024-04-30T15:05:10.141Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb::Cell 5 _ -[2024-04-30T15:05:10.141Z] Notebook cell execution failed -[2024-04-30T15:05:10.141Z] Cell 5: Cell outputs differ -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] Input: -[2024-04-30T15:05:10.141Z] ds = xr.open_dataset( -[2024-04-30T15:05:10.141Z] url, chunks=dict(realization=1, time=365, rlat=50 * 3, rlon=50 * 3) -[2024-04-30T15:05:10.141Z] ) -[2024-04-30T15:05:10.141Z] xclim.set_options(check_missing="pct", missing_options={"pct": {"tolerance": 0.05}}) -[2024-04-30T15:05:10.141Z] sdii = xclim.atmos.daily_pr_intensity(pr=ds.pr.sel(time="2000")) -[2024-04-30T15:05:10.141Z] sdii -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] Traceback: -[2024-04-30T15:05:10.141Z] Missing output fields from running code: {'stderr'} -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] _ pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb::Cell 8 _ -[2024-04-30T15:05:10.141Z] Notebook cell execution failed -[2024-04-30T15:05:10.141Z] Cell 8: Cell outputs differ -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] Input: -[2024-04-30T15:05:10.141Z] # Subset over the Montreal gridpoint -[2024-04-30T15:05:10.141Z] ds = xr.open_dataset(url, chunks=dict(realization=1, time=365 * 50, rlon=25, rlat=25)) -[2024-04-30T15:05:10.141Z] pt = subset_gridpoint(ds, lon=-73.69, lat=45.50) -[2024-04-30T15:05:10.141Z] print("Input dataset for Montreal :") -[2024-04-30T15:05:10.141Z] display(pt) -[2024-04-30T15:05:10.141Z] out = xclim.atmos.max_1day_precipitation_amount(pr=pt.pr, freq="YS") -[2024-04-30T15:05:10.141Z] print("Maximim 1-day precipitation `lazy` output ..") -[2024-04-30T15:05:10.141Z] out -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] Traceback: -[2024-04-30T15:05:10.141Z] Missing output fields from running code: {'stderr'} -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 _ -[2024-04-30T15:05:10.141Z] Notebook cell execution failed -[2024-04-30T15:05:10.141Z] Cell 2: Cell outputs differ -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] Input: -[2024-04-30T15:05:10.141Z] import xclim -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] # Access some station data -[2024-04-30T15:05:10.141Z] url = "https://pavics.ouranos.ca/twitcher/ows/proxy/thredds/dodsC/datasets/station_obs/ECCC_AHCCD_gen3_temperature.ncml" -[2024-04-30T15:05:10.141Z] ds_stat = xr.open_dataset(url, chunks=dict(station=1)) -[2024-04-30T15:05:10.141Z] istat = 115 -[2024-04-30T15:05:10.141Z] # Compare use of differernt percent tolerance levels (tolerance == 0.1) -[2024-04-30T15:05:10.141Z] plt.figure(figsize=(15, 10)) -[2024-04-30T15:05:10.141Z] color = ["blue", "green", "orange"] -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] for i, tol in enumerate([0.25, 0.1, 0.05]): -[2024-04-30T15:05:10.141Z] plt.subplot(3, 1, i + 1) -[2024-04-30T15:05:10.141Z] with xclim.set_options( -[2024-04-30T15:05:10.141Z] check_missing="pct", missing_options={"pct": {"tolerance": tol}} -[2024-04-30T15:05:10.141Z] ): -[2024-04-30T15:05:10.141Z] # compute yearly max tasmax -[2024-04-30T15:05:10.141Z] tx_mean = xclim.atmos.tx_mean( -[2024-04-30T15:05:10.141Z] tasmax=ds_stat.isel(station=istat).tasmax, freq="YS" -[2024-04-30T15:05:10.141Z] ) -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] tx_mean.plot( -[2024-04-30T15:05:10.141Z] marker="o", -[2024-04-30T15:05:10.141Z] color=color[i], -[2024-04-30T15:05:10.141Z] label=f"{len(tx_mean.dropna('time').values)} \ -[2024-04-30T15:05:10.141Z] valid years w/ <={tol*100}% missing data", -[2024-04-30T15:05:10.141Z] ) -[2024-04-30T15:05:10.141Z] plt.title("") -[2024-04-30T15:05:10.141Z] plt.xlabel("") -[2024-04-30T15:05:10.141Z] if i == 0: -[2024-04-30T15:05:10.141Z] name = str(ds_stat.isel(station=istat).station_name.values) -[2024-04-30T15:05:10.141Z] plt.title(f"{name.capitalize().replace('_',' ')} Station") -[2024-04-30T15:05:10.141Z] -[2024-04-30T15:05:10.141Z] elif i == 2: -[2024-04-30T15:05:10.142Z] plt.xlabel("time") -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] plt.legend(loc="lower right") -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] Traceback: -[2024-04-30T15:05:10.142Z] Missing output fields from running code: {'stderr'} -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] _ PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 _ -[2024-04-30T15:05:10.142Z] Notebook cell execution failed -[2024-04-30T15:05:10.142Z] Cell 2: Cell execution caused an exception -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] Input: -[2024-04-30T15:05:10.142Z] fut = ds_ens.sel(time=slice("2071", "2100")).chunk(dict(realization=-1)) -[2024-04-30T15:05:10.142Z] ref = ds_ens.sel(time=slice("1981", "2010")).chunk(dict(realization=-1)) -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] chng_f, pos_f = xens.change_significance( -[2024-04-30T15:05:10.142Z] fut.sel(time=fut["time.season"] == "JJA"), -[2024-04-30T15:05:10.142Z] ref.sel(time=ref["time.season"] == "JJA"), -[2024-04-30T15:05:10.142Z] test="ttest", -[2024-04-30T15:05:10.142Z] ) -[2024-04-30T15:05:10.142Z] plt.figure( -[2024-04-30T15:05:10.142Z] figsize=(15, 6), -[2024-04-30T15:05:10.142Z] ) -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] plt.subplot(1, 2, 1) -[2024-04-30T15:05:10.142Z] chng_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] plt.title(chng_f.description.split(".")[0]) -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] plt.subplot(1, 2, 2) -[2024-04-30T15:05:10.142Z] pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-30T15:05:10.142Z] plt.title(pos_f.description.split(".")[0]) -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] display() -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] Traceback: -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] --------------------------------------------------------------------------- -[2024-04-30T15:05:10.142Z] AttributeError Traceback (most recent call last) -[2024-04-30T15:05:10.142Z] Cell In[1], line 20 -[2024-04-30T15:05:10.142Z]  18 plt.subplot(1, 2, 2) -[2024-04-30T15:05:10.142Z]  19 pos_f.tx_days_above.plot(cmap="RdBu_r", vmin=0, vmax=1) -[2024-04-30T15:05:10.142Z] ---> 20 plt.title(pos_f.description.split(".")[0]) -[2024-04-30T15:05:10.142Z]  22 display() -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:277, in AttrAccessMixin.__getattr__(self, name) -[2024-04-30T15:05:10.142Z]  275 with suppress(KeyError): -[2024-04-30T15:05:10.142Z]  276 return source[name] -[2024-04-30T15:05:10.142Z] --> 277 raise AttributeError( -[2024-04-30T15:05:10.142Z]  278 f"{type(self).__name__!r} object has no attribute {name!r}" -[2024-04-30T15:05:10.142Z]  279 ) -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] AttributeError: 'Dataset' object has no attribute 'description' -[2024-04-30T15:05:10.142Z] -[2024-04-30T15:05:10.142Z] =========================== short test summary info ============================ -[2024-04-30T15:05:10.142Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb::Cell 5 -[2024-04-30T15:05:10.142Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb::Cell 8 -[2024-04-30T15:05:10.142Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb::Cell 2 -[2024-04-30T15:05:10.142Z] FAILED PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb::Cell 2 -[2024-04-30T15:05:10.142Z] ============= 4 failed, 215 passed, 1 skipped in 713.97s (0:11:53) ============= -[2024-04-30T15:05:10.142Z] + EXIT_CODE=1 -[2024-04-30T15:05:10.142Z] + echo true -[2024-04-30T15:05:10.142Z] + tr [:upper:] [:lower:] -[2024-04-30T15:05:10.142Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-04-30T15:05:10.142Z] + [ xtrue = xtrue ] -[2024-04-30T15:05:10.142Z] + mkdir -p buildout -[2024-04-30T15:05:10.142Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-30T15:05:10.142Z] + filename=CaSR_basic.ipynb -[2024-04-30T15:05:10.142Z] + + sed s/.ipynb$// -[2024-04-30T15:05:10.142Z] echo CaSR_basic.ipynb -[2024-04-30T15:05:10.142Z] + filename=CaSR_basic -[2024-04-30T15:05:10.142Z] + [ -e buildout/CaSR_basic.output.ipynb ] -[2024-04-30T15:05:10.142Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-04-30T15:05:10.142Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook -[2024-04-30T15:05:42.315Z] [NbConvertApp] Writing 732952 bytes to buildout/CaSR_basic.output.ipynb -[2024-04-30T15:05:42.315Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-30T15:05:42.315Z] + filename=WCS_example.ipynb -[2024-04-30T15:05:42.315Z] + + echo WCS_example.ipynb -[2024-04-30T15:05:42.315Z] sed s/.ipynb$// -[2024-04-30T15:05:42.315Z] + filename=WCS_example -[2024-04-30T15:05:42.315Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-04-30T15:05:42.315Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-04-30T15:05:43.261Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-04-30T15:05:44.648Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:05:44.648Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:05:44.648Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:05:44.648Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:05:54.628Z] [NbConvertApp] Writing 145745 bytes to buildout/WCS_example.output.ipynb -[2024-04-30T15:05:54.628Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-30T15:05:54.628Z] + filename=WFS_example.ipynb -[2024-04-30T15:05:54.628Z] + echo WFS_example.ipynb -[2024-04-30T15:05:54.628Z] + sed s/.ipynb$// -[2024-04-30T15:05:54.628Z] + filename=WFS_example -[2024-04-30T15:05:54.628Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-04-30T15:05:54.629Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-04-30T15:05:56.011Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-04-30T15:05:56.945Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:05:56.945Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:05:56.945Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:05:56.945Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:06:05.062Z] [NbConvertApp] Writing 44572 bytes to buildout/WFS_example.output.ipynb -[2024-04-30T15:06:05.326Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-30T15:06:05.326Z] + filename=WMS_example.ipynb -[2024-04-30T15:06:05.326Z] + sed s/.ipynb$// -[2024-04-30T15:06:05.326Z] + echo WMS_example.ipynb -[2024-04-30T15:06:05.326Z] + filename=WMS_example -[2024-04-30T15:06:05.326Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-04-30T15:06:05.326Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-04-30T15:06:07.215Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-04-30T15:06:07.783Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:06:07.783Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:06:07.783Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:06:07.783Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:06:13.058Z] [NbConvertApp] Writing 2048326 bytes to buildout/WMS_example.output.ipynb -[2024-04-30T15:06:13.319Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-30T15:06:13.319Z] + filename=climex.ipynb -[2024-04-30T15:06:13.319Z] + echo climex.ipynb -[2024-04-30T15:06:13.319Z] + sed s/.ipynb$// -[2024-04-30T15:06:13.319Z] + filename=climex -[2024-04-30T15:06:13.319Z] + [ -e buildout/climex.output.ipynb ] -[2024-04-30T15:06:13.319Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-04-30T15:06:15.222Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook -[2024-04-30T15:06:16.167Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:06:16.167Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:06:16.167Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:06:16.167Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:09:22.864Z] [NbConvertApp] Writing 1781462 bytes to buildout/climex.output.ipynb -[2024-04-30T15:09:22.864Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-30T15:09:22.864Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-04-30T15:09:22.864Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-04-30T15:09:22.864Z] + sed s/.ipynb$// -[2024-04-30T15:09:22.864Z] + filename=eccc-geoapi-climate-stations -[2024-04-30T15:09:22.864Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-04-30T15:09:22.864Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-04-30T15:09:22.864Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-04-30T15:09:22.864Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:09:22.864Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:09:22.864Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:09:22.864Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:09:30.985Z] [NbConvertApp] Writing 279199 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-04-30T15:09:30.985Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-30T15:09:30.985Z] + filename=eccc-geoapi-xclim.ipynb -[2024-04-30T15:09:30.985Z] + echo eccc-geoapi-xclim.ipynb -[2024-04-30T15:09:30.985Z] + sed s/.ipynb$// -[2024-04-30T15:09:30.985Z] + filename=eccc-geoapi-xclim -[2024-04-30T15:09:30.985Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-04-30T15:09:30.985Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-04-30T15:09:32.377Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-04-30T15:09:33.316Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:09:33.316Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:09:33.316Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:09:33.316Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:09:45.597Z] [NbConvertApp] Writing 108140 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-04-30T15:09:45.597Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-30T15:09:45.597Z] + filename=esgf-dap.ipynb -[2024-04-30T15:09:45.597Z] + sed s/.ipynb$// -[2024-04-30T15:09:45.597Z] + echo esgf-dap.ipynb -[2024-04-30T15:09:45.597Z] + filename=esgf-dap -[2024-04-30T15:09:45.597Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-04-30T15:09:45.597Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-04-30T15:09:45.597Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-04-30T15:09:46.535Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:09:46.535Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:09:46.535Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:09:46.535Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:09:53.091Z] [NbConvertApp] Writing 63631 bytes to buildout/esgf-dap.output.ipynb -[2024-04-30T15:09:53.091Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-30T15:09:53.091Z] + filename=forecasts.ipynb -[2024-04-30T15:09:53.091Z] + sed s/.ipynb$// -[2024-04-30T15:09:53.347Z] + echo forecasts.ipynb -[2024-04-30T15:09:53.347Z] + filename=forecasts -[2024-04-30T15:09:53.347Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-04-30T15:09:53.347Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-04-30T15:09:54.729Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook -[2024-04-30T15:09:56.114Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:09:56.114Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:09:56.114Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:09:56.114Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:10:14.198Z] [NbConvertApp] Writing 164988 bytes to buildout/forecasts.output.ipynb -[2024-04-30T15:10:14.198Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-30T15:10:14.198Z] + filename=jupyter_extensions.ipynb -[2024-04-30T15:10:14.198Z] + + echo jupyter_extensions.ipynb -[2024-04-30T15:10:14.198Z] sed s/.ipynb$// -[2024-04-30T15:10:14.198Z] + filename=jupyter_extensions -[2024-04-30T15:10:14.198Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-04-30T15:10:14.198Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-04-30T15:10:14.198Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-04-30T15:10:14.767Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:10:14.767Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:10:14.767Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:10:14.767Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:10:15.700Z] [NbConvertApp] Writing 7996 bytes to buildout/jupyter_extensions.output.ipynb -[2024-04-30T15:10:15.700Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-30T15:10:15.700Z] + filename=opendap.ipynb -[2024-04-30T15:10:15.700Z] + echo opendap.ipynb -[2024-04-30T15:10:15.700Z] + sed s/.ipynb$// -[2024-04-30T15:10:15.700Z] + filename=opendap -[2024-04-30T15:10:15.700Z] + [ -e buildout/opendap.output.ipynb ] -[2024-04-30T15:10:15.700Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-04-30T15:10:17.610Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook -[2024-04-30T15:10:18.548Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:10:18.548Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:10:18.548Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:10:18.548Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:10:22.733Z] [NbConvertApp] Writing 95159 bytes to buildout/opendap.output.ipynb -[2024-04-30T15:10:22.733Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-30T15:10:22.733Z] + filename=pavics_thredds.ipynb -[2024-04-30T15:10:22.733Z] + echo pavics_thredds.ipynb -[2024-04-30T15:10:22.733Z] + sed s/.ipynb$// -[2024-04-30T15:10:22.733Z] + filename=pavics_thredds -[2024-04-30T15:10:22.733Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-04-30T15:10:22.733Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-04-30T15:10:24.635Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-04-30T15:10:25.564Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:10:25.564Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:10:25.564Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:10:25.564Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:10:28.097Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-30T15:10:28.097Z] context: Access to service is forbidden. -[2024-04-30T15:10:28.097Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-04-30T15:10:28.097Z] context: Access to service is forbidden. -[2024-04-30T15:10:29.993Z] [NbConvertApp] Writing 90749 bytes to buildout/pavics_thredds.output.ipynb -[2024-04-30T15:10:30.253Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-30T15:10:30.253Z] + filename=regridding.ipynb -[2024-04-30T15:10:30.253Z] + echo regridding.ipynb -[2024-04-30T15:10:30.253Z] + sed s/.ipynb$// -[2024-04-30T15:10:30.253Z] + filename=regridding -[2024-04-30T15:10:30.253Z] + [ -e buildout/regridding.output.ipynb ] -[2024-04-30T15:10:30.253Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-04-30T15:10:32.151Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook -[2024-04-30T15:10:32.720Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:10:32.720Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:10:32.720Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:10:32.720Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:12:09.206Z] [NbConvertApp] Writing 1239615 bytes to buildout/regridding.output.ipynb -[2024-04-30T15:12:09.206Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-30T15:12:09.206Z] + filename=rendering.ipynb -[2024-04-30T15:12:09.206Z] + echo rendering.ipynb -[2024-04-30T15:12:09.206Z] + sed s/.ipynb$// -[2024-04-30T15:12:09.206Z] + filename=rendering -[2024-04-30T15:12:09.206Z] + [ -e buildout/rendering.output.ipynb ] -[2024-04-30T15:12:09.207Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-04-30T15:12:09.207Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook -[2024-04-30T15:12:09.207Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:12:09.207Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:12:09.207Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:12:09.207Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:12:09.466Z] [NbConvertApp] Writing 11800 bytes to buildout/rendering.output.ipynb -[2024-04-30T15:12:09.466Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-30T15:12:09.466Z] + filename=subset-user-input.ipynb -[2024-04-30T15:12:09.466Z] + + sed s/.ipynb$// -[2024-04-30T15:12:09.466Z] echo subset-user-input.ipynb -[2024-04-30T15:12:09.466Z] + filename=subset-user-input -[2024-04-30T15:12:09.466Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-04-30T15:12:09.466Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-04-30T15:12:11.369Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-04-30T15:12:12.368Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:12:12.368Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:12:12.368Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:12:12.368Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:12:34.297Z] [NbConvertApp] Writing 255278 bytes to buildout/subset-user-input.output.ipynb -[2024-04-30T15:12:34.297Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-30T15:12:34.297Z] + filename=subsetting.ipynb -[2024-04-30T15:12:34.297Z] + echo subsetting.ipynb -[2024-04-30T15:12:34.297Z] + sed s/.ipynb$// -[2024-04-30T15:12:34.297Z] + filename=subsetting -[2024-04-30T15:12:34.297Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-04-30T15:12:34.297Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-04-30T15:12:34.297Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook -[2024-04-30T15:12:34.297Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:12:34.297Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:12:34.298Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:12:34.298Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:12:42.428Z] [NbConvertApp] Writing 93311 bytes to buildout/subsetting.output.ipynb -[2024-04-30T15:12:42.428Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-30T15:12:42.428Z] + filename=dap_subset.ipynb -[2024-04-30T15:12:42.428Z] + echo dap_subset.ipynb -[2024-04-30T15:12:42.428Z] + sed s/.ipynb$// -[2024-04-30T15:12:42.428Z] + filename=dap_subset -[2024-04-30T15:12:42.428Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-04-30T15:12:42.428Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-04-30T15:12:43.804Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-04-30T15:12:44.375Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:12:44.375Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:12:44.375Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:12:44.375Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:12:54.364Z] [NbConvertApp] Writing 162913 bytes to buildout/dap_subset.output.ipynb -[2024-04-30T15:12:54.364Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-30T15:12:54.364Z] + filename=finch-usage.ipynb -[2024-04-30T15:12:54.364Z] + + sed s/.ipynb$// -[2024-04-30T15:12:54.364Z] echo finch-usage.ipynb -[2024-04-30T15:12:54.364Z] + filename=finch-usage -[2024-04-30T15:12:54.364Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-04-30T15:12:54.364Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-04-30T15:12:54.933Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-04-30T15:12:55.873Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:12:55.873Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:12:55.873Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:12:55.873Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:13:05.848Z] [NbConvertApp] Writing 65072 bytes to buildout/finch-usage.output.ipynb -[2024-04-30T15:13:05.848Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-30T15:13:05.848Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-30T15:13:05.848Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-30T15:13:05.848Z] + sed s/.ipynb$// -[2024-04-30T15:13:05.848Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-04-30T15:13:05.848Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-04-30T15:13:05.848Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-04-30T15:13:06.110Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-04-30T15:13:07.050Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:13:07.050Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:13:07.050Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:13:07.050Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:13:15.176Z] [NbConvertApp] Writing 173052 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-04-30T15:13:15.176Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-30T15:13:15.176Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-30T15:13:15.176Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-30T15:13:15.176Z] + sed s/.ipynb$// -[2024-04-30T15:13:15.176Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-04-30T15:13:15.176Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-04-30T15:13:15.176Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-04-30T15:13:15.440Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-04-30T15:13:16.815Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:13:16.815Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:13:16.815Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:13:16.815Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:13:34.908Z] [NbConvertApp] Writing 1481203 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-04-30T15:13:35.172Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-30T15:13:35.172Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-30T15:13:35.172Z] + sed s/.ipynb$// -[2024-04-30T15:13:35.172Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-30T15:13:35.172Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-04-30T15:13:35.172Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-04-30T15:13:35.172Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-04-30T15:13:37.088Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-04-30T15:21:59.106Z] [NbConvertApp] Writing 558914 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb -[2024-04-30T15:21:59.106Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-30T15:21:59.106Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-30T15:21:59.106Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-30T15:21:59.106Z] + sed s/.ipynb$// -[2024-04-30T15:21:59.106Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-04-30T15:21:59.106Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-04-30T15:21:59.106Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-04-30T15:21:59.106Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-04-30T15:22:21.037Z] [NbConvertApp] Writing 782791 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-04-30T15:22:21.037Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-30T15:22:21.037Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-30T15:22:21.037Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-30T15:22:21.037Z] + sed s/.ipynb$// -[2024-04-30T15:22:21.037Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-04-30T15:22:21.037Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-04-30T15:22:21.037Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-04-30T15:22:21.982Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-04-30T15:23:29.667Z] [NbConvertApp] Writing 1051936 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-04-30T15:23:29.667Z] + basename notebooks/hummingbird.ipynb -[2024-04-30T15:23:29.667Z] + filename=hummingbird.ipynb -[2024-04-30T15:23:29.667Z] + + sed s/.ipynb$// -[2024-04-30T15:23:29.667Z] echo hummingbird.ipynb -[2024-04-30T15:23:29.668Z] + filename=hummingbird -[2024-04-30T15:23:29.668Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-04-30T15:23:29.668Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-04-30T15:23:29.668Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-04-30T15:23:29.668Z] [NbConvertApp] Writing 16047 bytes to buildout/hummingbird.output.ipynb -[2024-04-30T15:23:29.668Z] + basename notebooks/stress-tests.ipynb -[2024-04-30T15:23:29.668Z] + filename=stress-tests.ipynb -[2024-04-30T15:23:29.668Z] + echo stress-tests.ipynb -[2024-04-30T15:23:29.668Z] + sed s/.ipynb$// -[2024-04-30T15:23:29.668Z] + filename=stress-tests -[2024-04-30T15:23:29.668Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-04-30T15:23:29.668Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-04-30T15:23:29.668Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-04-30T15:23:30.230Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:23:30.230Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:23:30.230Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:23:30.230Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:25:36.921Z] [NbConvertApp] Writing 429171 bytes to buildout/stress-tests.output.ipynb -[2024-04-30T15:25:36.921Z] + exit 1 -[2024-04-30T15:25:36.921Z] + EXIT_CODE=1 -[2024-04-30T15:25:36.921Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-04-30T15:25:36.921Z] + mkdir -p buildout/env-dump -[2024-04-30T15:25:36.921Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-04-30T15:25:36.921Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-04-30T15:25:36.921Z] + conda env export -n birdy -[2024-04-30T15:25:42.183Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-30T15:25:42.183Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-30T15:25:42.183Z] + conda list -n birdy --explicit -[2024-04-30T15:25:52.173Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-30T15:25:52.173Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-30T15:25:52.173Z] + pip freeze -[2024-04-30T15:25:52.742Z] + exit 1 +[2024-05-06T18:38:35.177Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-05-06T18:38:35.177Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-06T18:38:35.177Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-05-06T18:38:35.177Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-06T18:38:35.177Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-06T18:38:35.177Z] FINCH_BRANCH has been set to 'master' +[2024-05-06T18:38:35.177Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-06T18:38:35.177Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-06T18:38:35.177Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-05-06T18:38:35.177Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-06T18:38:35.177Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-06T18:38:35.177Z] RAVEN_BRANCH has been set to 'main' +[2024-05-06T18:38:35.177Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-06T18:38:35.177Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-06T18:38:35.177Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-06T18:38:35.177Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-06T18:38:35.177Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-06T18:38:35.177Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-06T18:38:35.177Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-06T18:38:35.177Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-06T18:38:35.177Z] + git clean -fdx +[2024-05-06T18:38:35.745Z] Removing .pytest_cache/ +[2024-05-06T18:38:35.745Z] Removing PAVICS-landing-master/ +[2024-05-06T18:38:35.745Z] Removing RavenPy-master/ +[2024-05-06T18:38:35.745Z] Removing __pycache__/ +[2024-05-06T18:38:35.745Z] Removing buildout/ +[2024-05-06T18:38:35.745Z] Removing esgf-compute-api-devel/ +[2024-05-06T18:38:35.745Z] Removing finch-master/ +[2024-05-06T18:38:35.745Z] Removing pavics-sdi-master/ +[2024-05-06T18:38:35.745Z] Removing raven-main/ +[2024-05-06T18:38:35.745Z] + ./downloadrepos +[2024-05-06T18:38:35.745Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-06T18:38:35.745Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-05-06T18:38:35.745Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-06T18:38:35.745Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-06T18:38:35.745Z] FINCH_BRANCH has been set to 'master' +[2024-05-06T18:38:35.745Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-06T18:38:35.745Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-06T18:38:35.745Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' +[2024-05-06T18:38:35.745Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-06T18:38:35.745Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-06T18:38:35.745Z] RAVEN_BRANCH has been set to 'main' +[2024-05-06T18:38:35.745Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-06T18:38:35.745Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-06T18:38:35.745Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-06T18:38:35.745Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-06T18:38:35.745Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-06T18:38:35.745Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-06T18:38:35.745Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-06T18:38:35.745Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-06T18:38:35.745Z] + rm -rf pavics-sdi-* +[2024-05-06T18:38:35.745Z] + ls +[2024-05-06T18:38:35.745Z] + grep pavics-sdi +[2024-05-06T18:38:35.745Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:35.745Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-05-06T18:38:35.745Z] + shift +[2024-05-06T18:38:35.745Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:35.745Z] + shift +[2024-05-06T18:38:35.745Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-05-06T18:38:35.745Z] + tar xz +[2024-05-06T18:38:38.264Z] + ls +[2024-05-06T18:38:38.264Z] + grep pavics-sdi +[2024-05-06T18:38:38.264Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:38.264Z] + set +x +[2024-05-06T18:38:38.264Z] + rm -rf finch-* +[2024-05-06T18:38:38.264Z] + ls +[2024-05-06T18:38:38.264Z] + grep finch +[2024-05-06T18:38:38.264Z] + downloadrepos https://github.com/bird-house/finch master +[2024-05-06T18:38:38.264Z] + github_repo=https://github.com/bird-house/finch +[2024-05-06T18:38:38.264Z] + shift +[2024-05-06T18:38:38.264Z] + branch=master +[2024-05-06T18:38:38.264Z] + shift +[2024-05-06T18:38:38.264Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-05-06T18:38:38.264Z] + tar xz +[2024-05-06T18:38:39.632Z] + ls +[2024-05-06T18:38:39.632Z] + grep finch +[2024-05-06T18:38:39.632Z] finch-master +[2024-05-06T18:38:39.632Z] + set +x +[2024-05-06T18:38:39.632Z] + rm -rf PAVICS-landing-* +[2024-05-06T18:38:39.632Z] + ls +[2024-05-06T18:38:39.632Z] + grep PAVICS-landing +[2024-05-06T18:38:39.632Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:39.632Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-05-06T18:38:39.632Z] + shift +[2024-05-06T18:38:39.632Z] + branch=fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:39.632Z] + shift +[2024-05-06T18:38:39.632Z] + wget+ --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz +[2024-05-06T18:38:39.632Z] tar xz +[2024-05-06T18:38:49.573Z] + ls +[2024-05-06T18:38:49.573Z] + grep PAVICS-landing +[2024-05-06T18:38:49.573Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:49.573Z] + set +x +[2024-05-06T18:38:49.573Z] + rm -rf raven-* +[2024-05-06T18:38:49.573Z] + ls +[2024-05-06T18:38:49.573Z] + grep raven +[2024-05-06T18:38:49.573Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-05-06T18:38:49.573Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-05-06T18:38:49.573Z] + shift +[2024-05-06T18:38:49.573Z] + branch=main +[2024-05-06T18:38:49.573Z] + shift +[2024-05-06T18:38:49.573Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-05-06T18:38:49.573Z] + tar xz +[2024-05-06T18:38:50.938Z] + ls +[2024-05-06T18:38:50.938Z] + grep raven +[2024-05-06T18:38:50.938Z] raven-main +[2024-05-06T18:38:50.938Z] + set +x +[2024-05-06T18:38:50.938Z] + rm -rf RavenPy-* +[2024-05-06T18:38:50.938Z] + ls +[2024-05-06T18:38:50.938Z] + grep RavenPy +[2024-05-06T18:38:50.938Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-05-06T18:38:50.938Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-05-06T18:38:50.938Z] + shift +[2024-05-06T18:38:50.938Z] + branch=master +[2024-05-06T18:38:50.938Z] + shift +[2024-05-06T18:38:50.938Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-05-06T18:38:50.938Z] + tar xz +[2024-05-06T18:38:52.827Z] + ls +[2024-05-06T18:38:52.827Z] + grep RavenPy +[2024-05-06T18:38:52.827Z] RavenPy-master +[2024-05-06T18:38:52.827Z] + set +x +[2024-05-06T18:38:52.827Z] + rm -rf esgf-compute-api-* +[2024-05-06T18:38:52.827Z] + ls +[2024-05-06T18:38:52.827Z] + grep esgf-compute-api +[2024-05-06T18:38:52.827Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-05-06T18:38:52.827Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-05-06T18:38:52.827Z] + shift +[2024-05-06T18:38:52.827Z] + branch=devel +[2024-05-06T18:38:52.827Z] + shift +[2024-05-06T18:38:52.827Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-05-06T18:38:52.827Z] + tar xz +[2024-05-06T18:38:53.757Z] + ls +[2024-05-06T18:38:53.757Z] + grep esgf-compute-api +[2024-05-06T18:38:53.757Z] esgf-compute-api-devel +[2024-05-06T18:38:53.757Z] + set +x +[2024-05-06T18:38:53.757Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:53.757Z] + sed s@/@-@g +[2024-05-06T18:38:53.757Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:53.757Z] + echo Ouranosinc/pavics-sdi +[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g +[2024-05-06T18:38:53.757Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-05-06T18:38:53.757Z] + echo master +[2024-05-06T18:38:53.757Z] + sed s@/@-@g +[2024-05-06T18:38:53.757Z] + FINCH_BRANCH=master +[2024-05-06T18:38:53.757Z] + echo bird-house/finch +[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g +[2024-05-06T18:38:53.757Z] + FINCH_REPO_NAME=finch +[2024-05-06T18:38:53.757Z] + echo fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:53.757Z] + sed s@/@-@g +[2024-05-06T18:38:53.757Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:53.757Z] + echo Ouranosinc/PAVICS-landing +[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g +[2024-05-06T18:38:53.757Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-05-06T18:38:53.757Z] + echo main +[2024-05-06T18:38:53.757Z] + sed s@/@-@g +[2024-05-06T18:38:53.757Z] + RAVEN_BRANCH=main +[2024-05-06T18:38:53.757Z] + echo Ouranosinc/raven +[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g +[2024-05-06T18:38:53.757Z] + RAVEN_REPO_NAME=raven +[2024-05-06T18:38:53.757Z] + echo master +[2024-05-06T18:38:53.757Z] + sed s@/@-@g +[2024-05-06T18:38:53.757Z] + RAVENPY_BRANCH=master +[2024-05-06T18:38:53.757Z] + echo CSHS-CWRA/RavenPy +[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g +[2024-05-06T18:38:53.757Z] + RAVENPY_REPO_NAME=RavenPy +[2024-05-06T18:38:53.757Z] + echo devel +[2024-05-06T18:38:53.757Z] + sed s@/@-@g +[2024-05-06T18:38:53.757Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-05-06T18:38:53.757Z] + echo ESGF/esgf-compute-api +[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g +[2024-05-06T18:38:53.757Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-05-06T18:38:53.757Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:53.757Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-06T18:38:53.757Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:53.757Z] + echo finch-master +[2024-05-06T18:38:53.757Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-06T18:38:53.757Z] + FINCH_DIR=finch-master +[2024-05-06T18:38:53.757Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:53.757Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-06T18:38:54.017Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output +[2024-05-06T18:38:54.017Z] + echo raven-main +[2024-05-06T18:38:54.017Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-06T18:38:54.017Z] + RAVEN_DIR=raven-main +[2024-05-06T18:38:54.017Z] + echo RavenPy-master +[2024-05-06T18:38:54.017Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-06T18:38:54.017Z] + RAVENPY_DIR=RavenPy-master +[2024-05-06T18:38:54.017Z] + echo esgf-compute-api-devel +[2024-05-06T18:38:54.017Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-06T18:38:54.017Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-05-06T18:38:54.017Z] + echo true +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + VERIFY_SSL=true +[2024-05-06T18:38:54.017Z] + [ xtrue = xfalse ] +[2024-05-06T18:38:54.017Z] + rm -v finch-master/setup.cfg +[2024-05-06T18:38:54.017Z] removed 'finch-master/setup.cfg' +[2024-05-06T18:38:54.017Z] + rm -v raven-main/setup.cfg +[2024-05-06T18:38:54.017Z] removed 'raven-main/setup.cfg' +[2024-05-06T18:38:54.017Z] + rm -v raven-main/pyproject.toml +[2024-05-06T18:38:54.017Z] removed 'raven-main/pyproject.toml' +[2024-05-06T18:38:54.017Z] + rm -v RavenPy-master/setup.cfg +[2024-05-06T18:38:54.017Z] removed 'RavenPy-master/setup.cfg' +[2024-05-06T18:38:54.017Z] + rm -v RavenPy-master/tox.ini +[2024-05-06T18:38:54.017Z] removed 'RavenPy-master/tox.ini' +[2024-05-06T18:38:54.017Z] + rm -v RavenPy-master/pyproject.toml +[2024-05-06T18:38:54.017Z] removed 'RavenPy-master/pyproject.toml' +[2024-05-06T18:38:54.017Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-05-06T18:38:54.017Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-05-06T18:38:54.017Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-05-06T18:38:54.017Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-05-06T18:38:54.017Z] + echo false +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + TEST_MAGPIE_AUTH=false +[2024-05-06T18:38:54.017Z] + echo true +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + TEST_PAVICS_SDI_REPO=true +[2024-05-06T18:38:54.017Z] + echo false +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-05-06T18:38:54.017Z] + echo true +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + TEST_FINCH_REPO=true +[2024-05-06T18:38:54.017Z] + echo true +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + TEST_PAVICS_LANDING_REPO=true +[2024-05-06T18:38:54.017Z] + echo false +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + TEST_RAVEN_REPO=false +[2024-05-06T18:38:54.017Z] + echo false +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + TEST_RAVENPY_REPO=false +[2024-05-06T18:38:54.017Z] + echo false +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-05-06T18:38:54.017Z] + echo true +[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] +[2024-05-06T18:38:54.017Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-05-06T18:38:54.017Z] + NOTEBOOKS_TO_TEST= +[2024-05-06T18:38:54.017Z] + [ xfalse = xtrue ] +[2024-05-06T18:38:54.017Z] + [ xtrue = xtrue ] +[2024-05-06T18:38:54.017Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb +[2024-05-06T18:38:54.017Z] + [ xfalse = xtrue ] +[2024-05-06T18:38:54.017Z] + [ xtrue = xtrue ] +[2024-05-06T18:38:54.017Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-05-06T18:38:54.017Z] + [ xtrue = xtrue ] +[2024-05-06T18:38:54.017Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb +[2024-05-06T18:38:54.017Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-06T18:38:54.017Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-05-06T18:38:54.017Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-06T18:38:54.017Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-06T18:38:54.017Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-06T18:38:54.017Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-06T18:38:54.017Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators +[2024-05-06T18:38:54.017Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-05-06T18:38:54.017Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-05-06T18:38:54.017Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-05-06T18:38:54.017Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip +[2024-05-06T18:38:54.017Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.017Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.017Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.017Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-06T18:38:54.805Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-05-06T18:38:54.805Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-05-06T18:38:54.805Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-05-06T18:38:54.805Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' +[2024-05-06T18:38:54.805Z] + [ xfalse = xtrue ] +[2024-05-06T18:38:54.805Z] + [ xfalse = xtrue ] +[2024-05-06T18:38:54.805Z] + [ xfalse = xtrue ] +[2024-05-06T18:38:54.805Z] + [ xtrue = xtrue ] +[2024-05-06T18:38:54.805Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-05-06T18:38:54.805Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-05-06T18:38:54.805Z] + [ -n ] +[2024-05-06T18:38:54.805Z] + [ ! -z pavics.ouranos.ca ] +[2024-05-06T18:38:54.805Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-05-06T18:38:54.805Z] Will run notebooks against pavics.ouranos.ca +[2024-05-06T18:38:54.805Z] + [ -z ] +[2024-05-06T18:38:54.806Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-05-06T18:38:55.068Z] + git diff +[2024-05-06T18:38:55.068Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-05-06T18:38:55.068Z] + [ -n ] +[2024-05-06T18:38:55.069Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-05-06T18:38:56.974Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-05-06T18:38:56.974Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-05-06T18:38:57.554Z] ============================= test session starts ============================== +[2024-05-06T18:38:57.554Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 +[2024-05-06T18:38:57.554Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +[2024-05-06T18:38:57.554Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-05-06T18:38:57.554Z] collected 219 items +[2024-05-06T18:38:57.554Z] +[2024-05-06T18:39:00.228Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-05-06T18:39:28.363Z] ..... [ 2%] +[2024-05-06T18:39:30.250Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-05-06T18:39:36.300Z] ...... [ 5%] +[2024-05-06T18:39:38.209Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-05-06T18:39:44.679Z] ..... [ 8%] +[2024-05-06T18:39:45.251Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-05-06T18:39:50.660Z] ....... [ 12%] +[2024-05-06T18:40:00.636Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] +[2024-05-06T18:43:09.441Z] ........... [ 17%] +[2024-05-06T18:43:09.441Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-05-06T18:43:09.441Z] ............... [ 25%] +[2024-05-06T18:43:11.360Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-05-06T18:43:16.973Z] .... [ 27%] +[2024-05-06T18:43:18.885Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] +[2024-05-06T18:43:23.608Z] ..... [ 30%] +[2024-05-06T18:43:31.726Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-05-06T18:43:39.852Z] ..... [ 32%] +[2024-05-06T18:43:41.225Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] +[2024-05-06T18:43:45.525Z] ...... [ 36%] +[2024-05-06T18:43:46.891Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-05-06T18:43:51.352Z] .... [ 38%] +[2024-05-06T18:44:09.462Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-05-06T18:45:46.875Z] ........................... [ 51%] +[2024-05-06T18:45:46.875Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-05-06T18:45:47.137Z] ... [ 52%] +[2024-05-06T18:45:48.085Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-05-06T18:46:07.688Z] ........................ [ 64%] +[2024-05-06T18:46:10.978Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-05-06T18:46:16.397Z] ..... [ 67%] +[2024-05-06T18:46:26.135Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 72%] +[2024-05-06T18:46:35.394Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-05-06T18:46:36.760Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-05-06T18:46:39.814Z] ...... [ 78%] +[2024-05-06T18:46:47.946Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] +[2024-05-06T18:47:03.149Z] ............. [ 84%] +[2024-05-06T18:47:11.240Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-05-06T18:47:45.481Z] ....s [ 87%] +[2024-05-06T18:47:53.613Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-05-06T18:48:05.555Z] .. [ 88%] +[2024-05-06T18:48:17.772Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-05-06T18:49:05.831Z] ...... [ 91%] +[2024-05-06T18:49:05.831Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-05-06T18:51:38.530Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-05-06T18:51:38.530Z] +[2024-05-06T18:51:38.530Z] ================== 218 passed, 1 skipped in 753.79s (0:12:33) ================== +[2024-05-06T18:51:38.530Z] + EXIT_CODE=0 +[2024-05-06T18:51:38.530Z] + echo true +[2024-05-06T18:51:38.530Z] + tr [:upper:] [:lower:] +[2024-05-06T18:51:38.530Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-05-06T18:51:38.530Z] + [ xtrue = xtrue ] +[2024-05-06T18:51:38.530Z] + mkdir -p buildout +[2024-05-06T18:51:38.530Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-05-06T18:51:38.530Z] + filename=CaSR_basic.ipynb +[2024-05-06T18:51:38.530Z] + sed+ s/.ipynb$// +[2024-05-06T18:51:38.530Z] echo CaSR_basic.ipynb +[2024-05-06T18:51:38.530Z] + filename=CaSR_basic +[2024-05-06T18:51:38.530Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-05-06T18:51:38.530Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb +[2024-05-06T18:51:38.530Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-05-06T18:52:17.299Z] [NbConvertApp] Writing 732952 bytes to buildout/CaSR_basic.output.ipynb +[2024-05-06T18:52:17.299Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-05-06T18:52:17.299Z] + filename=WCS_example.ipynb +[2024-05-06T18:52:17.299Z] + sed s/.ipynb$// +[2024-05-06T18:52:17.299Z] + echo WCS_example.ipynb +[2024-05-06T18:52:17.299Z] + filename=WCS_example +[2024-05-06T18:52:17.299Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-05-06T18:52:17.299Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb +[2024-05-06T18:52:17.299Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-05-06T18:52:17.299Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:52:17.299Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:52:17.299Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:52:17.300Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:52:27.323Z] [NbConvertApp] Writing 145025 bytes to buildout/WCS_example.output.ipynb +[2024-05-06T18:52:27.323Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-05-06T18:52:27.323Z] + filename=WFS_example.ipynb +[2024-05-06T18:52:27.323Z] + + sed s/.ipynb$// +[2024-05-06T18:52:27.323Z] echo WFS_example.ipynb +[2024-05-06T18:52:27.323Z] + filename=WFS_example +[2024-05-06T18:52:27.323Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-05-06T18:52:27.323Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb +[2024-05-06T18:52:28.261Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-05-06T18:52:29.205Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:52:29.205Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:52:29.205Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:52:29.205Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:52:37.334Z] [NbConvertApp] Writing 44572 bytes to buildout/WFS_example.output.ipynb +[2024-05-06T18:52:37.599Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-05-06T18:52:37.599Z] + filename=WMS_example.ipynb +[2024-05-06T18:52:37.599Z] + echo WMS_example.ipynb +[2024-05-06T18:52:37.599Z] + sed s/.ipynb$// +[2024-05-06T18:52:37.599Z] + filename=WMS_example +[2024-05-06T18:52:37.599Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-05-06T18:52:37.599Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb +[2024-05-06T18:52:39.512Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-05-06T18:52:40.082Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:52:40.082Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:52:40.082Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:52:40.082Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:52:46.668Z] [NbConvertApp] Writing 2048326 bytes to buildout/WMS_example.output.ipynb +[2024-05-06T18:52:46.668Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-05-06T18:52:46.668Z] + filename=climex.ipynb +[2024-05-06T18:52:46.668Z] + sed s/.ipynb$// +[2024-05-06T18:52:46.668Z] + echo climex.ipynb +[2024-05-06T18:52:46.668Z] + filename=climex +[2024-05-06T18:52:46.668Z] + [ -e buildout/climex.output.ipynb ] +[2024-05-06T18:52:46.668Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb +[2024-05-06T18:52:48.050Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook +[2024-05-06T18:52:48.985Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:52:48.985Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:52:48.985Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:52:48.985Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:55:55.650Z] [NbConvertApp] Writing 1781814 bytes to buildout/climex.output.ipynb +[2024-05-06T18:55:55.650Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-05-06T18:55:55.650Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-05-06T18:55:55.650Z] + sed s/.ipynb$// +[2024-05-06T18:55:55.650Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-05-06T18:55:55.650Z] + filename=eccc-geoapi-climate-stations +[2024-05-06T18:55:55.650Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-05-06T18:55:55.650Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-05-06T18:55:55.650Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-05-06T18:55:55.650Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:55:55.650Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:55:55.650Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:55:55.650Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:56:00.933Z] [NbConvertApp] Writing 278703 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-05-06T18:56:00.933Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-05-06T18:56:00.933Z] + filename=eccc-geoapi-xclim.ipynb +[2024-05-06T18:56:00.933Z] + echo eccc-geoapi-xclim.ipynb +[2024-05-06T18:56:00.933Z] + sed s/.ipynb$// +[2024-05-06T18:56:00.933Z] + filename=eccc-geoapi-xclim +[2024-05-06T18:56:00.933Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-05-06T18:56:00.933Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-05-06T18:56:02.323Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-05-06T18:56:03.269Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:56:03.270Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:56:03.270Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:56:03.270Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:56:13.252Z] [NbConvertApp] Writing 108041 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-05-06T18:56:13.252Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-05-06T18:56:13.252Z] + filename=esgf-dap.ipynb +[2024-05-06T18:56:13.252Z] + sed s/.ipynb$// +[2024-05-06T18:56:13.252Z] + echo esgf-dap.ipynb +[2024-05-06T18:56:13.252Z] + filename=esgf-dap +[2024-05-06T18:56:13.252Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-05-06T18:56:13.252Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb +[2024-05-06T18:56:13.517Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-05-06T18:56:14.465Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:56:14.465Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:56:14.465Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:56:14.465Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:56:22.631Z] [NbConvertApp] Writing 63631 bytes to buildout/esgf-dap.output.ipynb +[2024-05-06T18:56:22.631Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-05-06T18:56:22.631Z] + filename=forecasts.ipynb +[2024-05-06T18:56:22.631Z] + sed s/.ipynb$// +[2024-05-06T18:56:22.631Z] + echo forecasts.ipynb +[2024-05-06T18:56:22.631Z] + filename=forecasts +[2024-05-06T18:56:22.631Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-05-06T18:56:22.631Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb +[2024-05-06T18:56:23.201Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook +[2024-05-06T18:56:24.137Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:56:24.137Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:56:24.137Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:56:24.137Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:56:42.244Z] [NbConvertApp] Writing 164984 bytes to buildout/forecasts.output.ipynb +[2024-05-06T18:56:42.244Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-05-06T18:56:42.244Z] + filename=jupyter_extensions.ipynb +[2024-05-06T18:56:42.244Z] + echo jupyter_extensions.ipynb +[2024-05-06T18:56:42.245Z] + sed s/.ipynb$// +[2024-05-06T18:56:42.245Z] + filename=jupyter_extensions +[2024-05-06T18:56:42.245Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-05-06T18:56:42.245Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb +[2024-05-06T18:56:42.511Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-05-06T18:56:43.456Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:56:43.456Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:56:43.456Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:56:43.456Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:56:47.694Z] [NbConvertApp] Writing 7996 bytes to buildout/jupyter_extensions.output.ipynb +[2024-05-06T18:56:47.694Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-05-06T18:56:47.694Z] + filename=opendap.ipynb +[2024-05-06T18:56:47.694Z] + sed s/.ipynb$// +[2024-05-06T18:56:47.694Z] + echo opendap.ipynb +[2024-05-06T18:56:47.694Z] + filename=opendap +[2024-05-06T18:56:47.694Z] + [ -e buildout/opendap.output.ipynb ] +[2024-05-06T18:56:47.694Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb +[2024-05-06T18:56:49.081Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook +[2024-05-06T18:56:51.635Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:56:51.635Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:56:51.635Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:56:51.635Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:56:58.220Z] [NbConvertApp] Writing 95159 bytes to buildout/opendap.output.ipynb +[2024-05-06T18:56:58.220Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-05-06T18:56:58.220Z] + filename=pavics_thredds.ipynb +[2024-05-06T18:56:58.220Z] + echo pavics_thredds.ipynb +[2024-05-06T18:56:58.220Z] + sed s/.ipynb$// +[2024-05-06T18:56:58.220Z] + filename=pavics_thredds +[2024-05-06T18:56:58.220Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-05-06T18:56:58.220Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb +[2024-05-06T18:56:59.168Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-05-06T18:57:00.104Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:57:00.104Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:57:00.104Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:57:00.104Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:57:02.637Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-05-06T18:57:02.637Z] context: Access to service is forbidden. +[2024-05-06T18:57:02.637Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-05-06T18:57:02.638Z] context: Access to service is forbidden. +[2024-05-06T18:57:05.165Z] [NbConvertApp] Writing 90749 bytes to buildout/pavics_thredds.output.ipynb +[2024-05-06T18:57:05.165Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-05-06T18:57:05.165Z] + filename=regridding.ipynb +[2024-05-06T18:57:05.165Z] + sed s/.ipynb$// +[2024-05-06T18:57:05.165Z] + echo regridding.ipynb +[2024-05-06T18:57:05.165Z] + filename=regridding +[2024-05-06T18:57:05.165Z] + [ -e buildout/regridding.output.ipynb ] +[2024-05-06T18:57:05.165Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb +[2024-05-06T18:57:07.068Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook +[2024-05-06T18:57:07.999Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:57:07.999Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:57:07.999Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:57:07.999Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:58:44.519Z] [NbConvertApp] Writing 1239616 bytes to buildout/regridding.output.ipynb +[2024-05-06T18:58:44.519Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-05-06T18:58:44.519Z] + filename=rendering.ipynb +[2024-05-06T18:58:44.519Z] + sed s/.ipynb$// +[2024-05-06T18:58:44.519Z] + echo rendering.ipynb +[2024-05-06T18:58:44.519Z] + filename=rendering +[2024-05-06T18:58:44.519Z] + [ -e buildout/rendering.output.ipynb ] +[2024-05-06T18:58:44.519Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb +[2024-05-06T18:58:44.519Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook +[2024-05-06T18:58:44.519Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:58:44.519Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:58:44.519Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:58:44.519Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:58:45.905Z] [NbConvertApp] Writing 11800 bytes to buildout/rendering.output.ipynb +[2024-05-06T18:58:46.170Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-05-06T18:58:46.170Z] + filename=subset-user-input.ipynb +[2024-05-06T18:58:46.170Z] + echo subset-user-input.ipynb +[2024-05-06T18:58:46.171Z] + sed s/.ipynb$// +[2024-05-06T18:58:46.171Z] + filename=subset-user-input +[2024-05-06T18:58:46.171Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-05-06T18:58:46.171Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb +[2024-05-06T18:58:48.087Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-05-06T18:58:49.501Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:58:49.501Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:58:49.501Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:58:49.501Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:59:11.438Z] [NbConvertApp] Writing 255278 bytes to buildout/subset-user-input.output.ipynb +[2024-05-06T18:59:11.438Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-05-06T18:59:11.438Z] + filename=subsetting.ipynb +[2024-05-06T18:59:11.438Z] + echo subsetting.ipynb +[2024-05-06T18:59:11.438Z] + sed s/.ipynb$// +[2024-05-06T18:59:11.438Z] + filename=subsetting +[2024-05-06T18:59:11.438Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-05-06T18:59:11.438Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb +[2024-05-06T18:59:11.439Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook +[2024-05-06T18:59:11.700Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:59:11.700Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:59:11.700Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:59:11.700Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:59:21.682Z] [NbConvertApp] Writing 93311 bytes to buildout/subsetting.output.ipynb +[2024-05-06T18:59:21.682Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-05-06T18:59:21.682Z] + filename=dap_subset.ipynb +[2024-05-06T18:59:21.682Z] + echo dap_subset.ipynb +[2024-05-06T18:59:21.682Z] + sed s/.ipynb$// +[2024-05-06T18:59:21.682Z] + filename=dap_subset +[2024-05-06T18:59:21.682Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-05-06T18:59:21.682Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-05-06T18:59:22.252Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-05-06T18:59:23.192Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:59:23.192Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:59:23.192Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:59:23.192Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:59:33.252Z] [NbConvertApp] Writing 162913 bytes to buildout/dap_subset.output.ipynb +[2024-05-06T18:59:33.252Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-05-06T18:59:33.252Z] + filename=finch-usage.ipynb +[2024-05-06T18:59:33.252Z] + echo finch-usage.ipynb +[2024-05-06T18:59:33.252Z] + sed s/.ipynb$// +[2024-05-06T18:59:33.252Z] + filename=finch-usage +[2024-05-06T18:59:33.252Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-05-06T18:59:33.252Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-05-06T18:59:34.183Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-05-06T18:59:35.122Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:59:35.122Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:59:35.122Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:59:35.122Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:59:45.118Z] [NbConvertApp] Writing 65072 bytes to buildout/finch-usage.output.ipynb +[2024-05-06T18:59:45.118Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-06T18:59:45.118Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-06T18:59:45.118Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-06T18:59:45.118Z] + sed s/.ipynb$// +[2024-05-06T18:59:45.118Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-05-06T18:59:45.118Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-05-06T18:59:45.118Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-06T18:59:46.061Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-05-06T18:59:47.005Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:59:47.005Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:59:47.005Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:59:47.005Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T18:59:52.275Z] [NbConvertApp] Writing 173052 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-05-06T18:59:52.275Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-06T18:59:52.275Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-06T18:59:52.275Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-06T18:59:52.275Z] + sed s/.ipynb$// +[2024-05-06T18:59:52.275Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-05-06T18:59:52.275Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-05-06T18:59:52.275Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-06T18:59:53.653Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-05-06T18:59:54.592Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T18:59:54.592Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T18:59:54.592Z] 0.00s - to python to disable frozen modules. +[2024-05-06T18:59:54.592Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T19:00:16.552Z] [NbConvertApp] Writing 1481203 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-05-06T19:00:16.552Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-06T19:00:16.552Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-06T19:00:16.552Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-06T19:00:16.552Z] + sed s/.ipynb$// +[2024-05-06T19:00:16.552Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-05-06T19:00:16.552Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-05-06T19:00:16.552Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-06T19:00:16.552Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-05-06T19:10:38.495Z] [NbConvertApp] Writing 576745 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb +[2024-05-06T19:10:38.495Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-06T19:10:38.495Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-06T19:10:38.495Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-06T19:10:38.495Z] + sed s/.ipynb$// +[2024-05-06T19:10:38.495Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-05-06T19:10:38.495Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-05-06T19:10:38.495Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-06T19:10:38.495Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-05-06T19:11:00.437Z] [NbConvertApp] Writing 785209 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-05-06T19:11:00.437Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-06T19:11:00.437Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-06T19:11:00.437Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-06T19:11:00.437Z] + sed s/.ipynb$// +[2024-05-06T19:11:00.437Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-05-06T19:11:00.437Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-05-06T19:11:00.437Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-06T19:11:00.437Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-05-06T19:12:08.146Z] [NbConvertApp] Writing 1051936 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-05-06T19:12:08.146Z] + basename notebooks/hummingbird.ipynb +[2024-05-06T19:12:08.146Z] + filename=hummingbird.ipynb +[2024-05-06T19:12:08.146Z] + + sed s/.ipynb$// +[2024-05-06T19:12:08.146Z] echo hummingbird.ipynb +[2024-05-06T19:12:08.146Z] + filename=hummingbird +[2024-05-06T19:12:08.146Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-05-06T19:12:08.147Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-05-06T19:12:08.147Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-05-06T19:12:08.147Z] [NbConvertApp] Writing 15960 bytes to buildout/hummingbird.output.ipynb +[2024-05-06T19:12:08.407Z] + basename notebooks/stress-tests.ipynb +[2024-05-06T19:12:08.407Z] + filename=stress-tests.ipynb +[2024-05-06T19:12:08.407Z] + echo stress-tests.ipynb +[2024-05-06T19:12:08.407Z] + sed s/.ipynb$// +[2024-05-06T19:12:08.407Z] + filename=stress-tests +[2024-05-06T19:12:08.407Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-05-06T19:12:08.407Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-05-06T19:12:10.318Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-05-06T19:12:10.887Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-06T19:12:10.887Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-06T19:12:10.887Z] 0.00s - to python to disable frozen modules. +[2024-05-06T19:12:10.887Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-06T19:14:32.404Z] [NbConvertApp] Writing 428562 bytes to buildout/stress-tests.output.ipynb +[2024-05-06T19:14:32.404Z] + exit 0 +[2024-05-06T19:14:32.404Z] + EXIT_CODE=0 +[2024-05-06T19:14:32.404Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-05-06T19:14:32.404Z] + mkdir -p buildout/env-dump +[2024-05-06T19:14:32.404Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-05-06T19:14:32.404Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-05-06T19:14:32.404Z] + conda env export -n birdy +[2024-05-06T19:14:47.312Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-06T19:14:47.312Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-06T19:14:47.312Z] + conda list -n birdy --explicit +[2024-05-06T19:14:57.315Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-06T19:14:57.315Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-06T19:14:57.315Z] + pip freeze +[2024-05-06T19:14:57.315Z] + exit 0 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -952,41 +822,38 @@ $ docker top 9fccafeff53ab545c26988df17cd6b63016f456cae3d32d0f7c21ea39092a689 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-30T15:25:54.625Z] Archiving artifacts -[2024-04-30T15:25:54.711Z] Recording fingerprints +[2024-05-06T19:14:58.089Z] Archiving artifacts +[2024-05-06T19:14:58.119Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:25:54.970Z] Archiving artifacts -[2024-04-30T15:25:55.682Z] Recording fingerprints +[2024-05-06T19:14:58.441Z] Archiving artifacts +[2024-05-06T19:14:59.270Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:25:56.901Z] Archiving artifacts -[2024-04-30T15:25:56.983Z] Recording fingerprints +[2024-05-06T19:15:00.226Z] Archiving artifacts +[2024-05-06T19:15:00.463Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:25:57.098Z] Archiving artifacts -[2024-04-30T15:25:57.308Z] Recording fingerprints +[2024-05-06T19:15:00.569Z] Archiving artifacts +[2024-05-06T19:15:00.621Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:25:57.417Z] Archiving artifacts -[2024-04-30T15:25:57.440Z] Recording fingerprints +[2024-05-06T19:15:00.644Z] Archiving artifacts +[2024-05-06T19:15:00.911Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:25:57.693Z] Archiving artifacts -[2024-04-30T15:25:57.785Z] Recording fingerprints +[2024-05-06T19:15:00.952Z] Archiving artifacts +[2024-05-06T19:15:00.994Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:25:59.506Z] Archiving artifacts -[2024-04-30T15:25:59.521Z] Recording fingerprints +[2024-05-06T19:15:02.107Z] Archiving artifacts +[2024-05-06T19:15:02.122Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:25:59.680Z] Archiving artifacts -[2024-04-30T15:25:59.724Z] Recording fingerprints +[2024-05-06T19:15:02.141Z] Archiving artifacts +[2024-05-06T19:15:02.181Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:26:00.404Z] Archiving artifacts -[2024-04-30T15:26:00.786Z] Recording fingerprints +[2024-05-06T19:15:02.443Z] Archiving artifacts +[2024-05-06T19:15:02.891Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:26:01.515Z] Archiving artifacts -[2024-04-30T15:26:02.601Z] Recording fingerprints +[2024-05-06T19:15:02.982Z] Archiving artifacts +[2024-05-06T19:15:04.240Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:26:04.755Z] Archiving artifacts -[2024-04-30T15:26:04.779Z] Recording fingerprints -[Pipeline] emailextrecipients -[Pipeline] step -[2024-04-30T15:26:05.467Z] Sending e-mails to: vu.long@ouranos.ca +[2024-05-06T19:15:04.455Z] Archiving artifacts +[2024-05-06T19:15:04.475Z] Recording fingerprints [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -996,13 +863,12 @@ $ docker top 9fccafeff53ab545c26988df17cd6b63016f456cae3d32d0f7c21ea39092a689 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 9fccafeff53ab545c26988df17cd6b63016f456cae3d32d0f7c21ea39092a689 -$ docker rm -f 9fccafeff53ab545c26988df17cd6b63016f456cae3d32d0f7c21ea39092a689 +$ docker stop --time=1 3e373716f2b2bbbf0530ef594f7112c08b675b075d030f3a0aafce0c30376af0 +$ docker rm -f 3e373716f2b2bbbf0530ef594f7112c08b675b075d030f3a0aafce0c30376af0 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] End of Pipeline -ERROR: script returned exit code 1 -Finished: FAILURE +Finished: SUCCESS From f8297b45368db951e37b72f64cca9c9bb34e8aca Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 7 May 2024 11:16:00 -0400 Subject: [PATCH 090/104] docker: py311-240506: initial jenkins, raven nb, only 04_Emulating ... Only 04_Emulating_hydrological_models.ipynb, hydroshare nb already known to break. --- .../jenkins-buildlogs-raven.txt | 3128 ++++++----------- 1 file changed, 1045 insertions(+), 2083 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index 683b77f..f319653 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -1,4 +1,5 @@ Started by user Long Vu +Replayed #327 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -17,11 +18,11 @@ Seen branch in repository origin/new-docker-build Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook Seen 9 remote branches -Obtained Jenkinsfile from 393fc67361048209d2e59114c1308bfdf275dca8 +Obtained Jenkinsfile from 54698f17a9ebcb5054a12ab2dbdd43fb5d0c9f3e Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -34,2086 +35,1047 @@ Fetching without tags Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision 393fc67361048209d2e59114c1308bfdf275dca8 (new-docker-build) -Commit message: "docker: document why cdms2 was disabled" +Checking out Revision b81376901a3df4e786fb234eb1c50f96b084ab18 (new-docker-build) +Commit message: "docker: py311-240506: dockerhub build log" > git config core.sparsecheckout # timeout=10 - > git checkout -f 393fc67361048209d2e59114c1308bfdf275dca8 # timeout=10 - > git rev-list --no-walk 393fc67361048209d2e59114c1308bfdf275dca8 # timeout=10 + > git checkout -f b81376901a3df4e786fb234eb1c50f96b084ab18 # timeout=10 + > git rev-list --no-walk b81376901a3df4e786fb234eb1c50f96b084ab18 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py311-240428 ++ docker inspect -f . pavics/workflow-tests:py311-240506 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240428 cat -$ docker top ae24da1edc4a0194e9cb52ccec1a5c5e632c26abb05fdd192b5a4b435686a8c4 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240506 cat +$ docker top 8f2a7bfc267b19242a9dc42bf8abcee78073955e0fdf9521c0c7665da96d5f01 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-04-30T14:54:02.144Z] Timeout set to expire in 2 hr 0 min +[2024-05-07T14:15:09.238Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-04-30T14:54:03.674Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-05-07T14:15:10.491Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-04-30T14:54:04.189Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-04-30T14:54:04.189Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-30T14:54:04.189Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-30T14:54:04.189Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-30T14:54:04.189Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-30T14:54:04.189Z] FINCH_BRANCH has been set to 'master' -[2024-04-30T14:54:04.189Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-30T14:54:04.189Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-30T14:54:04.189Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-30T14:54:04.189Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-30T14:54:04.189Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-30T14:54:04.189Z] RAVEN_BRANCH has been set to 'main' -[2024-04-30T14:54:04.189Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-30T14:54:04.189Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-30T14:54:04.189Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-30T14:54:04.190Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-30T14:54:04.190Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-30T14:54:04.190Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-30T14:54:04.190Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-30T14:54:04.190Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-30T14:54:04.190Z] + git clean -fdx -[2024-04-30T14:54:04.446Z] Removing .pytest_cache/ -[2024-04-30T14:54:04.446Z] Removing PAVICS-landing-master/ -[2024-04-30T14:54:04.446Z] Removing RavenPy-master/ -[2024-04-30T14:54:04.446Z] Removing __pycache__/ -[2024-04-30T14:54:04.446Z] Removing buildout/ -[2024-04-30T14:54:04.446Z] Removing esgf-compute-api-devel/ -[2024-04-30T14:54:04.446Z] Removing finch-master/ -[2024-04-30T14:54:04.446Z] Removing pavics-sdi-master/ -[2024-04-30T14:54:04.446Z] Removing raven-main/ -[2024-04-30T14:54:04.446Z] + ./downloadrepos -[2024-04-30T14:54:04.446Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-04-30T14:54:04.446Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-04-30T14:54:04.446Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-04-30T14:54:04.446Z] TEST_FINCH_REPO has been set to 'false' -[2024-04-30T14:54:04.446Z] FINCH_BRANCH has been set to 'master' -[2024-04-30T14:54:04.446Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-04-30T14:54:04.446Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-04-30T14:54:04.446Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-04-30T14:54:04.446Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-04-30T14:54:04.446Z] TEST_RAVEN_REPO has been set to 'true' -[2024-04-30T14:54:04.446Z] RAVEN_BRANCH has been set to 'main' -[2024-04-30T14:54:04.446Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-04-30T14:54:04.446Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-04-30T14:54:04.446Z] RAVENPY_BRANCH has been set to 'master' -[2024-04-30T14:54:04.446Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-04-30T14:54:04.446Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-04-30T14:54:04.446Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-04-30T14:54:04.446Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-04-30T14:54:04.446Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-04-30T14:54:04.446Z] + rm -rf pavics-sdi-* -[2024-04-30T14:54:04.446Z] + grep pavics-sdi+ -[2024-04-30T14:54:04.446Z] ls -[2024-04-30T14:54:04.446Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-04-30T14:54:04.446Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-04-30T14:54:04.446Z] + shift -[2024-04-30T14:54:04.446Z] + branch=master -[2024-04-30T14:54:04.446Z] + shift -[2024-04-30T14:54:04.446Z] + tar xz -[2024-04-30T14:54:04.446Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-04-30T14:54:07.723Z] + ls -[2024-04-30T14:54:07.723Z] + grep pavics-sdi -[2024-04-30T14:54:07.723Z] pavics-sdi-master -[2024-04-30T14:54:07.723Z] + set +x -[2024-04-30T14:54:07.723Z] + rm -rf finch-* -[2024-04-30T14:54:07.723Z] + ls -[2024-04-30T14:54:07.723Z] + grep finch -[2024-04-30T14:54:07.723Z] + downloadrepos https://github.com/bird-house/finch master -[2024-04-30T14:54:07.723Z] + github_repo=https://github.com/bird-house/finch -[2024-04-30T14:54:07.723Z] + shift -[2024-04-30T14:54:07.723Z] + branch=master -[2024-04-30T14:54:07.723Z] + shift -[2024-04-30T14:54:07.723Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-04-30T14:54:07.723Z] + tar xz -[2024-04-30T14:54:09.090Z] + ls -[2024-04-30T14:54:09.090Z] + grep finch -[2024-04-30T14:54:09.090Z] finch-master -[2024-04-30T14:54:09.090Z] + set +x -[2024-04-30T14:54:09.090Z] + rm -rf PAVICS-landing-* -[2024-04-30T14:54:09.090Z] + ls -[2024-04-30T14:54:09.090Z] + grep PAVICS-landing -[2024-04-30T14:54:09.090Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-04-30T14:54:09.090Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-04-30T14:54:09.090Z] + shift -[2024-04-30T14:54:09.090Z] + branch=master -[2024-04-30T14:54:09.090Z] + shift -[2024-04-30T14:54:09.090Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-04-30T14:54:09.090Z] + tar xz -[2024-04-30T14:54:19.053Z] + ls -[2024-04-30T14:54:19.053Z] + grep PAVICS-landing -[2024-04-30T14:54:19.053Z] PAVICS-landing-master -[2024-04-30T14:54:19.053Z] + set +x -[2024-04-30T14:54:19.053Z] + rm -rf raven-* -[2024-04-30T14:54:19.053Z] + ls -[2024-04-30T14:54:19.053Z] + grep raven -[2024-04-30T14:54:19.053Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-04-30T14:54:19.053Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-04-30T14:54:19.053Z] + shift -[2024-04-30T14:54:19.053Z] + branch=main -[2024-04-30T14:54:19.053Z] + shift -[2024-04-30T14:54:19.053Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-04-30T14:54:19.053Z] + tar xz -[2024-04-30T14:54:19.311Z] + ls -[2024-04-30T14:54:19.312Z] + grep raven -[2024-04-30T14:54:19.312Z] raven-main -[2024-04-30T14:54:19.312Z] + set +x -[2024-04-30T14:54:19.567Z] + rm -rf RavenPy-* -[2024-04-30T14:54:19.567Z] + ls -[2024-04-30T14:54:19.567Z] + grep RavenPy -[2024-04-30T14:54:19.567Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-04-30T14:54:19.567Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-04-30T14:54:19.567Z] + shift -[2024-04-30T14:54:19.567Z] + branch=master -[2024-04-30T14:54:19.567Z] + shift -[2024-04-30T14:54:19.567Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-04-30T14:54:19.567Z] + tar xz -[2024-04-30T14:54:21.463Z] + ls -[2024-04-30T14:54:21.463Z] + grep RavenPy -[2024-04-30T14:54:21.463Z] RavenPy-master -[2024-04-30T14:54:21.463Z] + set +x -[2024-04-30T14:54:21.463Z] + rm -rf esgf-compute-api-* -[2024-04-30T14:54:21.463Z] + ls -[2024-04-30T14:54:21.463Z] + grep esgf-compute-api -[2024-04-30T14:54:21.463Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-04-30T14:54:21.463Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-04-30T14:54:21.463Z] + shift -[2024-04-30T14:54:21.463Z] + branch=devel -[2024-04-30T14:54:21.463Z] + shift -[2024-04-30T14:54:21.463Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-04-30T14:54:21.463Z] + tar xz -[2024-04-30T14:54:22.026Z] + ls -[2024-04-30T14:54:22.026Z] + grep esgf-compute-api -[2024-04-30T14:54:22.026Z] esgf-compute-api-devel -[2024-04-30T14:54:22.026Z] + set +x -[2024-04-30T14:54:22.026Z] + echo master -[2024-04-30T14:54:22.026Z] + sed s@/@-@g -[2024-04-30T14:54:22.026Z] + PAVICS_SDI_BRANCH=master -[2024-04-30T14:54:22.026Z] + echo Ouranosinc/pavics-sdi -[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g -[2024-04-30T14:54:22.026Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-04-30T14:54:22.026Z] + echo master -[2024-04-30T14:54:22.026Z] + sed s@/@-@g -[2024-04-30T14:54:22.026Z] + FINCH_BRANCH=master -[2024-04-30T14:54:22.026Z] + echo bird-house/finch -[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g -[2024-04-30T14:54:22.026Z] + FINCH_REPO_NAME=finch -[2024-04-30T14:54:22.026Z] + echo master -[2024-04-30T14:54:22.026Z] + sed s@/@-@g -[2024-04-30T14:54:22.026Z] + PAVICS_LANDING_BRANCH=master -[2024-04-30T14:54:22.026Z] + echo Ouranosinc/PAVICS-landing -[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g -[2024-04-30T14:54:22.026Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-04-30T14:54:22.026Z] + echo main -[2024-04-30T14:54:22.026Z] + sed s@/@-@g -[2024-04-30T14:54:22.026Z] + RAVEN_BRANCH=main -[2024-04-30T14:54:22.026Z] + echo Ouranosinc/raven -[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g -[2024-04-30T14:54:22.026Z] + RAVEN_REPO_NAME=raven -[2024-04-30T14:54:22.026Z] + echo master -[2024-04-30T14:54:22.026Z] + sed s@/@-@g -[2024-04-30T14:54:22.026Z] + RAVENPY_BRANCH=master -[2024-04-30T14:54:22.026Z] + echo CSHS-CWRA/RavenPy -[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g -[2024-04-30T14:54:22.026Z] + RAVENPY_REPO_NAME=RavenPy -[2024-04-30T14:54:22.026Z] + echo devel -[2024-04-30T14:54:22.026Z] + sed s@/@-@g -[2024-04-30T14:54:22.026Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-04-30T14:54:22.026Z] + echo ESGF/esgf-compute-api -[2024-04-30T14:54:22.026Z] + sed s@^.*/@@g -[2024-04-30T14:54:22.026Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-04-30T14:54:22.026Z] + echo pavics-sdi-master -[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:54:22.026Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-04-30T14:54:22.026Z] + echo finch-master -[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:54:22.026Z] + FINCH_DIR=finch-master -[2024-04-30T14:54:22.026Z] + echo PAVICS-landing-master -[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:54:22.026Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-04-30T14:54:22.026Z] + echo raven-main -[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:54:22.026Z] + RAVEN_DIR=raven-main -[2024-04-30T14:54:22.026Z] + echo RavenPy-master -[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:54:22.026Z] + RAVENPY_DIR=RavenPy-master -[2024-04-30T14:54:22.026Z] + echo esgf-compute-api-devel -[2024-04-30T14:54:22.026Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-04-30T14:54:22.026Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-04-30T14:54:22.026Z] + echo true -[2024-04-30T14:54:22.026Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.026Z] + VERIFY_SSL=true -[2024-04-30T14:54:22.026Z] + [ xtrue = xfalse ] -[2024-04-30T14:54:22.026Z] + rm -v finch-master/setup.cfg -[2024-04-30T14:54:22.026Z] removed 'finch-master/setup.cfg' -[2024-04-30T14:54:22.026Z] + rm -v raven-main/setup.cfg -[2024-04-30T14:54:22.026Z] removed 'raven-main/setup.cfg' -[2024-04-30T14:54:22.026Z] + rm -v raven-main/pyproject.toml -[2024-04-30T14:54:22.026Z] removed 'raven-main/pyproject.toml' -[2024-04-30T14:54:22.026Z] + rm -v RavenPy-master/setup.cfg -[2024-04-30T14:54:22.026Z] removed 'RavenPy-master/setup.cfg' -[2024-04-30T14:54:22.026Z] + rm -v RavenPy-master/tox.ini -[2024-04-30T14:54:22.026Z] removed 'RavenPy-master/tox.ini' -[2024-04-30T14:54:22.026Z] + rm -v RavenPy-master/pyproject.toml -[2024-04-30T14:54:22.026Z] removed 'RavenPy-master/pyproject.toml' -[2024-04-30T14:54:22.026Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-04-30T14:54:22.026Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-04-30T14:54:22.026Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-04-30T14:54:22.027Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-04-30T14:54:22.027Z] + echo false -[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.027Z] + TEST_MAGPIE_AUTH=false -[2024-04-30T14:54:22.027Z] + echo false -[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.027Z] + TEST_PAVICS_SDI_REPO=false -[2024-04-30T14:54:22.027Z] + echo false -[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.027Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-04-30T14:54:22.027Z] + echo false -[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.027Z] + TEST_FINCH_REPO=false -[2024-04-30T14:54:22.027Z] + echo false -[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.027Z] + TEST_PAVICS_LANDING_REPO=false -[2024-04-30T14:54:22.027Z] + echo true -[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.027Z] + TEST_RAVEN_REPO=true -[2024-04-30T14:54:22.027Z] + echo true -[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.027Z] + TEST_RAVENPY_REPO=true -[2024-04-30T14:54:22.027Z] + echo false -[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.027Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-04-30T14:54:22.027Z] + echo false -[2024-04-30T14:54:22.027Z] + tr [:upper:] [:lower:] -[2024-04-30T14:54:22.027Z] + TEST_LOCAL_NOTEBOOKS=false -[2024-04-30T14:54:22.027Z] + NOTEBOOKS_TO_TEST= -[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] -[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] -[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] -[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] -[2024-04-30T14:54:22.027Z] + [ xtrue = xtrue ] -[2024-04-30T14:54:22.027Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-04-30T14:54:22.027Z] + [ xtrue = xtrue ] -[2024-04-30T14:54:22.027Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb -[2024-04-30T14:54:22.027Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] -[2024-04-30T14:54:22.027Z] + [ xfalse = xtrue ] -[2024-04-30T14:54:22.027Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-master/docs/notebooks/*.ipynb RavenPy-master/docs/notebooks/paper/*.ipynb -[2024-04-30T14:54:22.027Z] + [ -n ] -[2024-04-30T14:54:22.027Z] + [ ! -z pavics.ouranos.ca ] -[2024-04-30T14:54:22.027Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-04-30T14:54:22.027Z] Will run notebooks against pavics.ouranos.ca -[2024-04-30T14:54:22.027Z] + [ -z ] -[2024-04-30T14:54:22.027Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-30T14:54:22.524Z] + git diff -[2024-04-30T14:54:22.524Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-04-30T14:54:22.524Z] + [ -n ] -[2024-04-30T14:54:22.524Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-04-30T14:54:23.894Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-04-30T14:54:23.895Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-04-30T14:54:24.466Z] ============================= test session starts ============================== -[2024-04-30T14:54:24.466Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 -[2024-04-30T14:54:24.466Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-04-30T14:54:24.466Z] plugins: anyio-4.3.0, dash-2.16.1, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-04-30T14:54:24.466Z] collected 242 items -[2024-04-30T14:54:24.466Z] -[2024-04-30T14:54:35.281Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-04-30T14:54:37.229Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] -[2024-04-30T14:54:50.898Z] ...... [ 6%] -[2024-04-30T14:54:53.376Z] RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb ...... [ 9%] -[2024-04-30T14:54:53.376Z] [ 9%] -[2024-04-30T14:54:55.624Z] RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb .... [ 10%] -[2024-04-30T14:55:04.048Z] .... [ 12%] -[2024-04-30T14:55:14.140Z] RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] -[2024-04-30T14:55:24.707Z] ....F.FF..F.. [ 18%] -[2024-04-30T14:55:56.462Z] RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb ......... [ 21%] -[2024-04-30T14:57:15.531Z] .. [ 22%] -[2024-04-30T14:57:15.531Z] RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb ... [ 23%] -[2024-04-30T14:57:23.542Z] ..FFFFFFFF....... [ 30%] -[2024-04-30T14:57:29.636Z] RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb .. [ 31%] -[2024-04-30T14:57:38.437Z] ........... [ 36%] -[2024-04-30T14:57:47.319Z] RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb ...... [ 38%] -[2024-04-30T14:57:52.594Z] RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] -[2024-04-30T14:57:57.583Z] ..... [ 41%] -[2024-04-30T14:57:58.958Z] RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] -[2024-04-30T15:02:10.664Z] ................. [ 48%] -[2024-04-30T15:02:15.917Z] RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] -[2024-04-30T15:02:22.639Z] .... [ 50%] -[2024-04-30T15:03:41.616Z] RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb ........ [ 54%] -[2024-04-30T15:03:44.900Z] RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb .. [ 54%] -[2024-04-30T15:04:16.473Z] ...... [ 57%] -[2024-04-30T15:04:24.610Z] RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 57%] -[2024-04-30T15:04:33.503Z] ....... [ 60%] -[2024-04-30T15:04:40.966Z] RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb .... [ 62%] -[2024-04-30T15:05:01.022Z] .... [ 64%] -[2024-04-30T15:05:09.132Z] RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] -[2024-04-30T15:05:30.526Z] ....... [ 67%] -[2024-04-30T15:05:33.897Z] RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] -[2024-04-30T15:06:02.023Z] ....... [ 70%] -[2024-04-30T15:06:02.963Z] RavenPy-master/docs/notebooks/HydroShare_integration.ipynb FFFF [ 72%] -[2024-04-30T15:06:19.181Z] RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb .. [ 73%] -[2024-04-30T15:06:26.111Z] .... [ 74%] -[2024-04-30T15:07:37.587Z] RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb ... [ 76%] -[2024-04-30T15:08:07.733Z] RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb ....... [ 78%] -[2024-04-30T15:08:08.298Z] RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] -[2024-04-30T15:08:22.726Z] ............. [ 84%] -[2024-04-30T15:08:40.500Z] RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb ..... [ 86%] -[2024-04-30T15:08:48.422Z] RavenPy-master/docs/notebooks/time_series_analysis.ipynb ........... [ 91%] -[2024-04-30T15:08:58.409Z] RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] -[2024-04-30T15:10:26.101Z] .........FFFFFFFFFFF [100%] -[2024-04-30T15:10:26.101Z] -[2024-04-30T15:10:26.101Z] =================================== FAILURES =================================== -[2024-04-30T15:10:26.101Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 _ -[2024-04-30T15:10:26.101Z] Notebook cell execution failed -[2024-04-30T15:10:26.101Z] Cell 5: Cell execution caused an exception -[2024-04-30T15:10:26.101Z] -[2024-04-30T15:10:26.102Z] Input: -[2024-04-30T15:10:26.102Z] features, statistics, raster = stats_resp.get(asobj=True) -[2024-04-30T15:10:26.102Z] grid = raster[0] -[2024-04-30T15:10:26.102Z] grid.plot() -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] Traceback: -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.102Z] ValueError Traceback (most recent call last) -[2024-04-30T15:10:26.102Z] Cell In[1], line 3 -[2024-04-30T15:10:26.102Z]  1 features, statistics, raster = stats_resp.get(asobj=True) -[2024-04-30T15:10:26.102Z]  2 grid = raster[0] -[2024-04-30T15:10:26.102Z] ----> 3 grid.plot() -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/plot/accessor.py:942, in DatasetPlotAccessor.__call__(self, *args, **kwargs) -[2024-04-30T15:10:26.102Z]  941 def __call__(self, *args, **kwargs) -> NoReturn: -[2024-04-30T15:10:26.102Z] --> 942 raise ValueError( -[2024-04-30T15:10:26.102Z]  943 "Dataset.plot cannot be called directly. Use " -[2024-04-30T15:10:26.102Z]  944 "an explicit plot method, e.g. ds.plot.scatter(...)" -[2024-04-30T15:10:26.102Z]  945 ) -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] ValueError: Dataset.plot cannot be called directly. Use an explicit plot method, e.g. ds.plot.scatter(...) -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 _ -[2024-04-30T15:10:26.102Z] Notebook cell execution failed -[2024-04-30T15:10:26.102Z] Cell 7: Cell execution caused an exception -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] Input: -[2024-04-30T15:10:26.102Z] unique, counts = np.unique(grid, return_counts=True) -[2024-04-30T15:10:26.102Z] print("The land-use categories available are: " + str(unique)) -[2024-04-30T15:10:26.102Z] print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] # Pixels values at '127' are NaN and can be ignored. -[2024-04-30T15:10:26.102Z] from matplotlib.colors import Normalize -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] norm = Normalize() -[2024-04-30T15:10:26.102Z] norm.autoscale(unique[:-1]) -[2024-04-30T15:10:26.102Z] cm = mpl.colormaps["tab20"] -[2024-04-30T15:10:26.102Z] plt.bar(unique[:-1], counts[:-1], color=cm(norm(unique[:-1]))) -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] # plt.bar(unique[:-1], counts[:-1]) -[2024-04-30T15:10:26.102Z] plt.xticks(np.arange(min(unique[:-1]), max(unique[:-1]) + 1, 1.0)) -[2024-04-30T15:10:26.102Z] plt.xlabel("Land-use categories") -[2024-04-30T15:10:26.102Z] plt.ylabel("Number of pixels") -[2024-04-30T15:10:26.102Z] plt.show() -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] grid.where(grid != 127).sel(band=1).plot.imshow(cmap="tab20") -[2024-04-30T15:10:26.102Z] grid.name = "Land-use categories" -[2024-04-30T15:10:26.102Z] plt.show() -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] Traceback: -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.102Z] TypeError Traceback (most recent call last) -[2024-04-30T15:10:26.102Z] /tmp/ipykernel_348/750628277.py in ?() -[2024-04-30T15:10:26.102Z] ----> 1 unique, counts = np.unique(grid, return_counts=True) -[2024-04-30T15:10:26.102Z]  2 print("The land-use categories available are: " + str(unique)) -[2024-04-30T15:10:26.102Z]  3 print("The number of occurrences of each land-use category is: " + str(counts)) -[2024-04-30T15:10:26.102Z]  4  -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] <__array_function__ internals> in ?(*args, **kwargs) -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/numpy/lib/arraysetops.py in ?(ar, return_index, return_inverse, return_counts, axis, equal_nan) -[2024-04-30T15:10:26.102Z]  268 >>> np.repeat(values, counts) -[2024-04-30T15:10:26.102Z]  269 array([1, 2, 2, 2, 3, 4, 6]) # original order not preserved -[2024-04-30T15:10:26.102Z]  270  -[2024-04-30T15:10:26.102Z]  271 """ -[2024-04-30T15:10:26.102Z] --> 272 ar = np.asanyarray(ar) -[2024-04-30T15:10:26.102Z]  273 if axis is None: -[2024-04-30T15:10:26.102Z]  274 ret = _unique1d(ar, return_index, return_inverse, return_counts, -[2024-04-30T15:10:26.102Z]  275 equal_nan=equal_nan) -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataset.py in ?(self, dtype) -[2024-04-30T15:10:26.102Z]  1472 def __array__(self, dtype=None): -[2024-04-30T15:10:26.102Z] -> 1473 raise TypeError( -[2024-04-30T15:10:26.102Z]  1474 "cannot directly convert an xarray.Dataset into a " -[2024-04-30T15:10:26.102Z]  1475 "numpy array. Instead, create an xarray.DataArray " -[2024-04-30T15:10:26.102Z]  1476 "first, either with indexing on the Dataset or by " -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] TypeError: cannot directly convert an xarray.Dataset into a numpy array. Instead, create an xarray.DataArray first, either with indexing on the Dataset or by invoking the `to_array()` method. -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 _ -[2024-04-30T15:10:26.102Z] Notebook cell execution failed -[2024-04-30T15:10:26.102Z] Cell 8: Cell execution caused an exception -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] Input: -[2024-04-30T15:10:26.102Z] import cartopy.crs as ccrs -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] # Set a CRS transformation: -[2024-04-30T15:10:26.102Z] crs = ccrs.LambertConformal( -[2024-04-30T15:10:26.102Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-30T15:10:26.102Z] ) -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] ax = plt.subplot(projection=crs) -[2024-04-30T15:10:26.102Z] grid.name = "Land-use categories" -[2024-04-30T15:10:26.102Z] grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-04-30T15:10:26.102Z] plt.show() -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] Traceback: -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.102Z] AttributeError Traceback (most recent call last) -[2024-04-30T15:10:26.102Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-30T15:10:26.102Z]  304 try: -[2024-04-30T15:10:26.102Z] --> 305 object.__setattr__(self, name, value) -[2024-04-30T15:10:26.102Z]  306 except AttributeError as e: -[2024-04-30T15:10:26.102Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-04-30T15:10:26.102Z]  308 # DataArray.dims.setter -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.102Z] The above exception was the direct cause of the following exception: -[2024-04-30T15:10:26.102Z] -[2024-04-30T15:10:26.103Z] AttributeError Traceback (most recent call last) -[2024-04-30T15:10:26.103Z] Cell In[1], line 9 -[2024-04-30T15:10:26.103Z]  4 crs = ccrs.LambertConformal( -[2024-04-30T15:10:26.103Z]  5 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-30T15:10:26.103Z]  6 ) -[2024-04-30T15:10:26.103Z]  8 ax = plt.subplot(projection=crs) -[2024-04-30T15:10:26.103Z] ----> 9 grid.name = "Land-use categories" -[2024-04-30T15:10:26.103Z]  10 grid.where(grid != 127).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="tab20") -[2024-04-30T15:10:26.103Z]  11 plt.show() -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-30T15:10:26.103Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-04-30T15:10:26.103Z]  310 raise -[2024-04-30T15:10:26.103Z] --> 311 raise AttributeError( -[2024-04-30T15:10:26.103Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-04-30T15:10:26.103Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-04-30T15:10:26.103Z]  314 ) from e -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] _ RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 _ -[2024-04-30T15:10:26.103Z] Notebook cell execution failed -[2024-04-30T15:10:26.103Z] Cell 11: Cell execution caused an exception -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] Input: -[2024-04-30T15:10:26.103Z] crs = ccrs.LambertConformal( -[2024-04-30T15:10:26.103Z] central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-30T15:10:26.103Z] ) -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] dem.name = "Elevation" -[2024-04-30T15:10:26.103Z] dem.attrs["units"] = "m" -[2024-04-30T15:10:26.103Z] ax = plt.subplot(projection=crs) -[2024-04-30T15:10:26.103Z] dem.where(dem != -32768).sel(band=1).plot.imshow(ax=ax, transform=crs, cmap="gnuplot") -[2024-04-30T15:10:26.103Z] plt.show() -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] Traceback: -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.103Z] AttributeError Traceback (most recent call last) -[2024-04-30T15:10:26.103Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:305, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-30T15:10:26.103Z]  304 try: -[2024-04-30T15:10:26.103Z] --> 305 object.__setattr__(self, name, value) -[2024-04-30T15:10:26.103Z]  306 except AttributeError as e: -[2024-04-30T15:10:26.103Z]  307 # Don't accidentally shadow custom AttributeErrors, e.g. -[2024-04-30T15:10:26.103Z]  308 # DataArray.dims.setter -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] AttributeError: 'Dataset' object has no attribute 'name' -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] The above exception was the direct cause of the following exception: -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] AttributeError Traceback (most recent call last) -[2024-04-30T15:10:26.103Z] Cell In[1], line 5 -[2024-04-30T15:10:26.103Z]  1 crs = ccrs.LambertConformal( -[2024-04-30T15:10:26.103Z]  2 central_latitude=49, central_longitude=-95, standard_parallels=(49, 77) -[2024-04-30T15:10:26.103Z]  3 ) -[2024-04-30T15:10:26.103Z] ----> 5 dem.name = "Elevation" -[2024-04-30T15:10:26.103Z]  6 dem.attrs["units"] = "m" -[2024-04-30T15:10:26.103Z]  7 ax = plt.subplot(projection=crs) -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/common.py:311, in AttrAccessMixin.__setattr__(self, name, value) -[2024-04-30T15:10:26.103Z]  309 if str(e) != f"{type(self).__name__!r} object has no attribute {name!r}": -[2024-04-30T15:10:26.103Z]  310 raise -[2024-04-30T15:10:26.103Z] --> 311 raise AttributeError( -[2024-04-30T15:10:26.103Z]  312 f"cannot set attribute {name!r} on a {type(self).__name__!r} object. Use __setitem__ style" -[2024-04-30T15:10:26.103Z]  313 "assignment (e.g., `ds['name'] = ...`) instead of assigning variables." -[2024-04-30T15:10:26.103Z]  314 ) from e -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] AttributeError: cannot set attribute 'name' on a 'Dataset' object. Use __setitem__ styleassignment (e.g., `ds['name'] = ...`) instead of assigning variables. -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-04-30T15:10:26.103Z] Notebook cell execution failed -[2024-04-30T15:10:26.103Z] Cell 5: Cell execution caused an exception -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.103Z] Input: -[2024-04-30T15:10:26.103Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-04-30T15:10:26.103Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-04-30T15:10:26.103Z] from ravenpy import OutputReader -[2024-04-30T15:10:26.103Z] from ravenpy.ravenpy import run -[2024-04-30T15:10:26.103Z] -[2024-04-30T15:10:26.104Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-04-30T15:10:26.104Z] run_name = run_name -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-04-30T15:10:26.104Z] # subfolder called "outputs" -[2024-04-30T15:10:26.104Z] configdir = workdir -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-04-30T15:10:26.104Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] # Get the outputs using the Output Reader object. -[2024-04-30T15:10:26.104Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] Traceback: -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.104Z] RavenError Traceback (most recent call last) -[2024-04-30T15:10:26.104Z] Cell In[1], line 14 -[2024-04-30T15:10:26.104Z]  11 configdir = workdir -[2024-04-30T15:10:26.104Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-04-30T15:10:26.104Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-04-30T15:10:26.104Z]  16 # Get the outputs using the Output Reader object. -[2024-04-30T15:10:26.104Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-04-30T15:10:26.104Z]  320 warn(msg, category=RavenWarning) -[2024-04-30T15:10:26.104Z]  322 if messages["ERROR"]: -[2024-04-30T15:10:26.104Z] --> 323 raise RavenError( -[2024-04-30T15:10:26.104Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-04-30T15:10:26.104Z]  325 ) -[2024-04-30T15:10:26.104Z]  327 if returncode != 0: -[2024-04-30T15:10:26.104Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] RavenError: Config directory: /tmp/NB4uha5bukr -[2024-04-30T15:10:26.104Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-04-30T15:10:26.104Z] Notebook cell execution failed -[2024-04-30T15:10:26.104Z] Cell 6: Cell execution caused an exception -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] Input: -[2024-04-30T15:10:26.104Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-04-30T15:10:26.104Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-04-30T15:10:26.104Z] from ravenpy import Emulator -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] # Prepare the emulator by writing files on disk -[2024-04-30T15:10:26.104Z] e = Emulator(config=m) -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] # Run the model and get the outputs. -[2024-04-30T15:10:26.104Z] outputs = e.run() -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] Traceback: -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.104Z] RavenError Traceback (most recent call last) -[2024-04-30T15:10:26.104Z] Cell In[1], line 9 -[2024-04-30T15:10:26.104Z]  6 e = Emulator(config=m) -[2024-04-30T15:10:26.104Z]  8 # Run the model and get the outputs. -[2024-04-30T15:10:26.104Z] ----> 9 outputs = e.run() -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-04-30T15:10:26.104Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-04-30T15:10:26.104Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-04-30T15:10:26.104Z]  66 self.write_rv(overwrite=overwrite) -[2024-04-30T15:10:26.104Z] ---> 68 self._output_path = run( -[2024-04-30T15:10:26.104Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-04-30T15:10:26.104Z]  70 ) -[2024-04-30T15:10:26.104Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-04-30T15:10:26.104Z]  72 return self._output -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-04-30T15:10:26.104Z]  320 warn(msg, category=RavenWarning) -[2024-04-30T15:10:26.104Z]  322 if messages["ERROR"]: -[2024-04-30T15:10:26.104Z] --> 323 raise RavenError( -[2024-04-30T15:10:26.104Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-04-30T15:10:26.104Z]  325 ) -[2024-04-30T15:10:26.104Z]  327 if returncode != 0: -[2024-04-30T15:10:26.104Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] RavenError: Config directory: /tmp/tmpmhb7gijj -[2024-04-30T15:10:26.104Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-04-30T15:10:26.104Z] Notebook cell execution failed -[2024-04-30T15:10:26.104Z] Cell 7: Cell execution caused an exception -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] Input: -[2024-04-30T15:10:26.104Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-04-30T15:10:26.104Z] outputs.files -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] Traceback: -[2024-04-30T15:10:26.104Z] -[2024-04-30T15:10:26.104Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.104Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.104Z] Cell In[1], line 2 -[2024-04-30T15:10:26.104Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-04-30T15:10:26.105Z] ----> 2 outputs.files -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-04-30T15:10:26.105Z] Notebook cell execution failed -[2024-04-30T15:10:26.105Z] Cell 8: Cell execution caused an exception -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Input: -[2024-04-30T15:10:26.105Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-04-30T15:10:26.105Z] print("----------------HYDROGRAPH----------------") -[2024-04-30T15:10:26.105Z] display(outputs.hydrograph) -[2024-04-30T15:10:26.105Z] print("") -[2024-04-30T15:10:26.105Z] print("-----------------STORAGE------------------") -[2024-04-30T15:10:26.105Z] display(outputs.storage) -[2024-04-30T15:10:26.105Z] print("") -[2024-04-30T15:10:26.105Z] print("-----------------SOLUTION-----------------") -[2024-04-30T15:10:26.105Z] display(outputs.solution) -[2024-04-30T15:10:26.105Z] print("") -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Traceback: -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.105Z] Cell In[1], line 3 -[2024-04-30T15:10:26.105Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-04-30T15:10:26.105Z]  2 print("----------------HYDROGRAPH----------------") -[2024-04-30T15:10:26.105Z] ----> 3 display(outputs.hydrograph) -[2024-04-30T15:10:26.105Z]  4 print("") -[2024-04-30T15:10:26.105Z]  5 print("-----------------STORAGE------------------") -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-04-30T15:10:26.105Z] Notebook cell execution failed -[2024-04-30T15:10:26.105Z] Cell 9: Cell execution caused an exception -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Input: -[2024-04-30T15:10:26.105Z] # Import the graphing utility built to handle Raven model outputs -[2024-04-30T15:10:26.105Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] hydrograph_objects = outputs.hydrograph -[2024-04-30T15:10:26.105Z] hydrographs(hydrograph_objects) -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Traceback: -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.105Z] Cell In[1], line 4 -[2024-04-30T15:10:26.105Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-04-30T15:10:26.105Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-04-30T15:10:26.105Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-04-30T15:10:26.105Z]  5 hydrographs(hydrograph_objects) -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-04-30T15:10:26.105Z] Notebook cell execution failed -[2024-04-30T15:10:26.105Z] Cell 10: Cell execution caused an exception -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Input: -[2024-04-30T15:10:26.105Z] outputs.hydrograph.q_sim.plot() -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Traceback: -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.105Z] Cell In[1], line 1 -[2024-04-30T15:10:26.105Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-04-30T15:10:26.105Z] Notebook cell execution failed -[2024-04-30T15:10:26.105Z] Cell 11: Cell execution caused an exception -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Input: -[2024-04-30T15:10:26.105Z] print(list(outputs.storage.keys())) -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Traceback: -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.105Z] Cell In[1], line 1 -[2024-04-30T15:10:26.105Z] ----> 1 print(list(outputs.storage.keys())) -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] _ RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-04-30T15:10:26.105Z] Notebook cell execution failed -[2024-04-30T15:10:26.105Z] Cell 12: Cell execution caused an exception -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Input: -[2024-04-30T15:10:26.105Z] # Plot the "Snow" variable -[2024-04-30T15:10:26.105Z] outputs.storage["Snow"].plot() -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Traceback: -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.105Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.105Z] Cell In[1], line 2 -[2024-04-30T15:10:26.105Z]  1 # Plot the "Snow" variable -[2024-04-30T15:10:26.105Z] ----> 2 outputs.storage["Snow"].plot() -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] NameError: name 'outputs' is not defined -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 ______ -[2024-04-30T15:10:26.105Z] Notebook cell execution failed -[2024-04-30T15:10:26.105Z] Cell 0: Cell execution caused an exception -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Input: -[2024-04-30T15:10:26.105Z] import os -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] from hsclient import HydroShare, Token -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] # Authentication method using username and password -[2024-04-30T15:10:26.105Z] """ -[2024-04-30T15:10:26.105Z] username = 'XXXXX' -[2024-04-30T15:10:26.105Z] password = 'XXXXX' -[2024-04-30T15:10:26.105Z] hs = HydroShare(username=username, password=password) -[2024-04-30T15:10:26.105Z] """ -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-04-30T15:10:26.105Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] token = Token(access_token=access_token, token_type="bearer") -[2024-04-30T15:10:26.105Z] hs = HydroShare(client_id=client_id, token=token) -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] Traceback: -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.105Z] ValidationError Traceback (most recent call last) -[2024-04-30T15:10:26.105Z] Cell In[1], line 15 -[2024-04-30T15:10:26.105Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-04-30T15:10:26.105Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-04-30T15:10:26.105Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") -[2024-04-30T15:10:26.105Z]  16 hs = HydroShare(client_id=client_id, token=token) -[2024-04-30T15:10:26.105Z] -[2024-04-30T15:10:26.105Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/pydantic/main.py:176, in BaseModel.__init__(self, **data) -[2024-04-30T15:10:26.106Z]  174 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks -[2024-04-30T15:10:26.106Z]  175 __tracebackhide__ = True -[2024-04-30T15:10:26.106Z] --> 176 self.__pydantic_validator__.validate_python(data, self_instance=self) -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] ValidationError: 4 validation errors for Token -[2024-04-30T15:10:26.106Z] scope -[2024-04-30T15:10:26.106Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) -[2024-04-30T15:10:26.106Z]  2 for r in results: -[2024-04-30T15:10:26.106Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] NameError: name 'hs' is not defined -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 ______ -[2024-04-30T15:10:26.106Z] Notebook cell execution failed -[2024-04-30T15:10:26.106Z] Cell 2: Cell execution caused an exception -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] Input: -[2024-04-30T15:10:26.106Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-04-30T15:10:26.106Z] res.files() -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] Traceback: -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.106Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.106Z] Cell In[1], line 1 -[2024-04-30T15:10:26.106Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-04-30T15:10:26.106Z]  2 res.files() -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] NameError: name 'hs' is not defined -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] ______ RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 ______ -[2024-04-30T15:10:26.106Z] Notebook cell execution failed -[2024-04-30T15:10:26.106Z] Cell 3: Cell execution caused an exception -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] Input: -[2024-04-30T15:10:26.106Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] Traceback: -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.106Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.106Z] Cell In[1], line 1 -[2024-04-30T15:10:26.106Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] NameError: name 'res' is not defined -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 _ -[2024-04-30T15:10:26.106Z] Notebook cell execution failed -[2024-04-30T15:10:26.106Z] Cell 10: Cell execution caused an exception -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] Input: -[2024-04-30T15:10:26.106Z] # Get the ERA5 data from the Wasabi/Amazon S3 server. -[2024-04-30T15:10:26.106Z] catalog_name = "https://raw.githubusercontent.com/hydrocloudservices/catalogs/main/catalogs/atmosphere.yaml" -[2024-04-30T15:10:26.106Z] cat = intake.open_catalog(catalog_name) -[2024-04-30T15:10:26.106Z] ds = cat.era5_reanalysis_single_levels.to_dask() -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] """ -[2024-04-30T15:10:26.106Z] Get the ERA5 data. We will rechunk it to a single chunck to make it compatible with other codes on the platform, -[2024-04-30T15:10:26.106Z] especially bias-correction. We are also taking the daily min and max temperatures as well as the daily total -[2024-04-30T15:10:26.106Z] precipitation. -[2024-04-30T15:10:26.106Z] """ -[2024-04-30T15:10:26.106Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, -[2024-04-30T15:10:26.106Z] # such as units and variable names. -[2024-04-30T15:10:26.106Z] with xr.set_options(keep_attrs=True): -[2024-04-30T15:10:26.106Z] ERA5_reference = subset.subset_shape( -[2024-04-30T15:10:26.106Z] ds.sel(time=slice(reference_start_day, reference_end_day)), basin_contour -[2024-04-30T15:10:26.106Z] ) -[2024-04-30T15:10:26.106Z] ERA5_tmin = ERA5_reference["t2m"].resample(time="1D").min().chunk(-1, -1, -1) -[2024-04-30T15:10:26.106Z] ERA5_tmax = ERA5_reference["t2m"].resample(time="1D").max().chunk(-1, -1, -1) -[2024-04-30T15:10:26.106Z] ERA5_pr = ERA5_reference["tp"].resample(time="1D").sum().chunk(-1, -1, -1) -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] # Change the units -[2024-04-30T15:10:26.106Z] ERA5_tmin = ERA5_tmin - 273.15 # K to ��C -[2024-04-30T15:10:26.106Z] ERA5_tmin.attrs["units"] = "degC" -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] ERA5_tmax = ERA5_tmax - 273.15 # K to ��C -[2024-04-30T15:10:26.106Z] ERA5_tmax.attrs["units"] = "degC" -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] ERA5_pr = ERA5_pr * 1000 # m to mm -[2024-04-30T15:10:26.106Z] ERA5_pr.attrs["units"] = "mm" -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] # Average the variables spatially -[2024-04-30T15:10:26.106Z] ERA5_tmin = ERA5_tmin.mean({"latitude", "longitude"}) -[2024-04-30T15:10:26.106Z] ERA5_tmax = ERA5_tmax.mean({"latitude", "longitude"}) -[2024-04-30T15:10:26.106Z] ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-04-30T15:10:26.106Z] ERA5_pr[ERA5_pr < 0] = 0 -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-04-30T15:10:26.106Z] ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-04-30T15:10:26.106Z] ERA5_tmax = ERA5_tmax.to_dataset(name="tmax", promote_attrs=True) -[2024-04-30T15:10:26.106Z] ERA5_pr = ERA5_pr.to_dataset(name="pr", promote_attrs=True) -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] # Write to disk. Here is where we write to disk and where the notebook will fail if running it from the -[2024-04-30T15:10:26.106Z] # original location on the server (which is read-only). Please move the notebooks to your writable-workspace. -[2024-04-30T15:10:26.106Z] ERA5_weather = xr.merge([ERA5_tmin, ERA5_tmax, ERA5_pr]) -[2024-04-30T15:10:26.106Z] ERA5_weather.to_netcdf(tmp / "ERA5_meteo_data.nc") -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] Traceback: -[2024-04-30T15:10:26.106Z] -[2024-04-30T15:10:26.106Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.106Z] KeyError Traceback (most recent call last) -[2024-04-30T15:10:26.106Z] Cell In[1], line 37 -[2024-04-30T15:10:26.106Z]  34 ERA5_pr = ERA5_pr.mean({"latitude", "longitude"}) -[2024-04-30T15:10:26.107Z]  36 # Ensure that the precipitation is non-negative, which can happen with some reanalysis models. -[2024-04-30T15:10:26.107Z] ---> 37 ERA5_pr[ERA5_pr < 0] = 0 -[2024-04-30T15:10:26.107Z]  39 # Transform them to a dataset such that they can be written with attributes to netcdf -[2024-04-30T15:10:26.107Z]  40 ERA5_tmin = ERA5_tmin.to_dataset(name="tmin", promote_attrs=True) -[2024-04-30T15:10:26.107Z] -[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataarray.py:856, in DataArray.__setitem__(self, key, value) -[2024-04-30T15:10:26.107Z]  851 self.coords[key] = value -[2024-04-30T15:10:26.107Z]  852 else: -[2024-04-30T15:10:26.107Z]  853 # Coordinates in key, value and self[key] should be consistent. -[2024-04-30T15:10:26.107Z]  854 # TODO Coordinate consistency in key is checked here, but it -[2024-04-30T15:10:26.107Z]  855 # causes unnecessary indexing. It should be optimized. -[2024-04-30T15:10:26.107Z] --> 856 obj = self[key] -[2024-04-30T15:10:26.107Z]  857 if isinstance(value, DataArray): -[2024-04-30T15:10:26.107Z]  858 assert_coordinate_consistent(value, obj.coords.variables) -[2024-04-30T15:10:26.107Z] -[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataarray.py:847, in DataArray.__getitem__(self, key) -[2024-04-30T15:10:26.107Z]  844 return self._getitem_coord(key) -[2024-04-30T15:10:26.107Z]  845 else: -[2024-04-30T15:10:26.107Z]  846 # xarray-style array indexing -[2024-04-30T15:10:26.107Z] --> 847 return self.isel(indexers=self._item_key_to_dict(key)) -[2024-04-30T15:10:26.107Z] -[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataarray.py:1445, in DataArray.isel(self, indexers, drop, missing_dims, **indexers_kwargs) -[2024-04-30T15:10:26.107Z]  1442 indexers = either_dict_or_kwargs(indexers, indexers_kwargs, "isel") -[2024-04-30T15:10:26.107Z]  1444 if any(is_fancy_indexer(idx) for idx in indexers.values()): -[2024-04-30T15:10:26.107Z] -> 1445 ds = self._to_temp_dataset()._isel_fancy( -[2024-04-30T15:10:26.107Z]  1446  indexers, drop=drop, missing_dims=missing_dims -[2024-04-30T15:10:26.107Z]  1447  ) -[2024-04-30T15:10:26.107Z]  1448 return self._from_temp_dataset(ds) -[2024-04-30T15:10:26.107Z]  1450 # Much faster algorithm for when all indexers are ints, slices, one-dimensional -[2024-04-30T15:10:26.107Z]  1451 # lists, or zero or one-dimensional np.ndarray's -[2024-04-30T15:10:26.107Z] -[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/dataset.py:2930, in Dataset._isel_fancy(self, indexers, drop, missing_dims) -[2024-04-30T15:10:26.107Z]  2926 var_indexers = { -[2024-04-30T15:10:26.107Z]  2927 k: v for k, v in valid_indexers.items() if k in var.dims -[2024-04-30T15:10:26.107Z]  2928 } -[2024-04-30T15:10:26.107Z]  2929 if var_indexers: -[2024-04-30T15:10:26.107Z] -> 2930 new_var = var.isel(indexers=var_indexers) -[2024-04-30T15:10:26.107Z]  2931 # drop scalar coordinates -[2024-04-30T15:10:26.107Z]  2932 # https://github.com/pydata/xarray/issues/6554 -[2024-04-30T15:10:26.107Z]  2933 if name in self.coords and drop and new_var.ndim == 0: -[2024-04-30T15:10:26.107Z] -[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/variable.py:1368, in Variable.isel(self, indexers, missing_dims, **indexers_kwargs) -[2024-04-30T15:10:26.107Z]  1365 indexers = drop_dims_from_indexers(indexers, self.dims, missing_dims) -[2024-04-30T15:10:26.107Z]  1367 key = tuple(indexers.get(dim, slice(None)) for dim in self.dims) -[2024-04-30T15:10:26.107Z] -> 1368 return self[key] -[2024-04-30T15:10:26.107Z] -[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/variable.py:891, in Variable.__getitem__(self, key) -[2024-04-30T15:10:26.107Z]  878 def __getitem__(self: T_Variable, key) -> T_Variable: -[2024-04-30T15:10:26.107Z]  879  """Return a new Variable object whose contents are consistent with -[2024-04-30T15:10:26.107Z]  880  getting the provided key from the underlying data. -[2024-04-30T15:10:26.107Z]  881 -[2024-04-30T15:10:26.107Z]  (...) -[2024-04-30T15:10:26.107Z]  889  array `x.values` directly. -[2024-04-30T15:10:26.107Z]  890  """ -[2024-04-30T15:10:26.107Z] --> 891 dims, indexer, new_order = self._broadcast_indexes(key) -[2024-04-30T15:10:26.107Z]  892 data = as_indexable(self._data)[indexer] -[2024-04-30T15:10:26.107Z]  893 if new_order: -[2024-04-30T15:10:26.107Z] -[2024-04-30T15:10:26.107Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/variable.py:724, in Variable._broadcast_indexes(self, key) -[2024-04-30T15:10:26.107Z]  721 if all(isinstance(k, BASIC_INDEXING_TYPES) for k in key): -[2024-04-30T15:10:26.107Z]  722 return self._broadcast_indexes_basic(key) -[2024-04-30T15:10:26.107Z] --> 724 self._validate_indexers(key) -[2024-04-30T15:10:26.107Z]  725 # Detect it can be mapped as an outer indexer -[2024-04-30T15:10:26.107Z]  726 # If all key is unlabeled, or -[2024-04-30T15:10:26.107Z]  727 # key can be mapped as an OuterIndexer. -[2024-04-30T15:10:26.107Z]  728 if all(not isinstance(k, Variable) for k in key): -[2024-04-30T15:10:26.107Z] -[2024-04-30T15:10:26.108Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xarray/core/variable.py:776, in Variable._validate_indexers(self, key) -[2024-04-30T15:10:26.108Z]  771 raise IndexError( -[2024-04-30T15:10:26.108Z]  772 "{}-dimensional boolean indexing is " -[2024-04-30T15:10:26.108Z]  773 "not supported. ".format(k.ndim) -[2024-04-30T15:10:26.108Z]  774 ) -[2024-04-30T15:10:26.108Z]  775 if is_duck_dask_array(k.data): -[2024-04-30T15:10:26.108Z] --> 776 raise KeyError( -[2024-04-30T15:10:26.108Z]  777 "Indexing with a boolean dask array is not allowed. " -[2024-04-30T15:10:26.108Z]  778 "This will result in a dask array of unknown shape. " -[2024-04-30T15:10:26.108Z]  779 "Such arrays are unsupported by Xarray." -[2024-04-30T15:10:26.108Z]  780 "Please compute the indexer first using .compute()" -[2024-04-30T15:10:26.108Z]  781 ) -[2024-04-30T15:10:26.108Z]  782 if getattr(k, "dims", (dim,)) != (dim,): -[2024-04-30T15:10:26.108Z]  783 raise IndexError( -[2024-04-30T15:10:26.108Z]  784 "Boolean indexer should be unlabeled or on the " -[2024-04-30T15:10:26.108Z]  785 "same dimension to the indexed array. Indexer is " -[2024-04-30T15:10:26.108Z]  (...) -[2024-04-30T15:10:26.108Z]  788 ) -[2024-04-30T15:10:26.108Z]  789 ) -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] KeyError: 'Indexing with a boolean dask array is not allowed. This will result in a dask array of unknown shape. Such arrays are unsupported by Xarray.Please compute the indexer first using .compute()' -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 _ -[2024-04-30T15:10:26.108Z] Notebook cell execution failed -[2024-04-30T15:10:26.108Z] Cell 11: Cell execution caused an exception -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] Input: -[2024-04-30T15:10:26.108Z] # Climate model to use -[2024-04-30T15:10:26.108Z] climate_model = "MIROC6" -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] # Get the catalog info from the pangeo dataset, which basically is a list of links to the various products. -[2024-04-30T15:10:26.108Z] fsCMIP = gcsfs.GCSFileSystem(token="anon", access="read_only") -[2024-04-30T15:10:26.108Z] col = intake.open_esm_datastore( -[2024-04-30T15:10:26.108Z] "https://storage.googleapis.com/cmip6/pangeo-cmip6.json" -[2024-04-30T15:10:26.108Z] ) -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] # We will add a wrapper to ensure that the following operations will preserve the original data attributes, such as units and variable names. -[2024-04-30T15:10:26.108Z] with xr.set_options(keep_attrs=True): -[2024-04-30T15:10:26.108Z] # Load the files from the PanGEO catalogs, for reference and future variables of temperature and precipitation. -[2024-04-30T15:10:26.108Z] out = {} -[2024-04-30T15:10:26.108Z] for exp in ["historical", "ssp585"]: -[2024-04-30T15:10:26.108Z] if exp == "historical": -[2024-04-30T15:10:26.108Z] period_start = reference_start_day -[2024-04-30T15:10:26.108Z] period_end = reference_end_day -[2024-04-30T15:10:26.108Z] else: -[2024-04-30T15:10:26.108Z] period_start = future_start_day -[2024-04-30T15:10:26.108Z] period_end = future_end_day -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] out[exp] = {} -[2024-04-30T15:10:26.108Z] for variable in ["tasmin", "tasmax", "pr"]: -[2024-04-30T15:10:26.108Z] print(exp, variable) -[2024-04-30T15:10:26.108Z] query = dict( -[2024-04-30T15:10:26.108Z] experiment_id=exp, -[2024-04-30T15:10:26.108Z] table_id="day", -[2024-04-30T15:10:26.108Z] variable_id=variable, -[2024-04-30T15:10:26.108Z] member_id="r1i1p1f1", -[2024-04-30T15:10:26.108Z] source_id=climate_model, -[2024-04-30T15:10:26.108Z] ) -[2024-04-30T15:10:26.108Z] col_subset = col.search(require_all_on=["source_id"], **query) -[2024-04-30T15:10:26.108Z] mapper = fsCMIP.get_mapper(col_subset.df.zstore[0]) -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] # special case for precipitation, which does not have the "height" variable that we need to discard as for tasmax and tasmin. -[2024-04-30T15:10:26.108Z] if variable == "pr": -[2024-04-30T15:10:26.108Z] out[exp][variable] = average.average_shape( -[2024-04-30T15:10:26.108Z] xr.open_zarr(mapper, consolidated=True).sel( -[2024-04-30T15:10:26.108Z] time=slice(period_start, period_end) -[2024-04-30T15:10:26.108Z] )[variable], -[2024-04-30T15:10:26.108Z] basin_contour, -[2024-04-30T15:10:26.108Z] ).chunk(-1) -[2024-04-30T15:10:26.108Z] else: -[2024-04-30T15:10:26.108Z] out[exp][variable] = average.average_shape( -[2024-04-30T15:10:26.108Z] xr.open_zarr(mapper, consolidated=True) -[2024-04-30T15:10:26.108Z] .sel(time=slice(period_start, period_end)) -[2024-04-30T15:10:26.108Z] .reset_coords("height", drop=True)[variable], -[2024-04-30T15:10:26.108Z] basin_contour, -[2024-04-30T15:10:26.108Z] ).chunk(-1) -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] # We can now extract the variables that we will need later: -[2024-04-30T15:10:26.108Z] historical_tasmax = out["historical"]["tasmax"] -[2024-04-30T15:10:26.108Z] historical_tasmin = out["historical"]["tasmin"] -[2024-04-30T15:10:26.108Z] historical_pr = out["historical"]["pr"] -[2024-04-30T15:10:26.108Z] future_tasmax = out["ssp585"]["tasmax"] -[2024-04-30T15:10:26.108Z] future_tasmin = out["ssp585"]["tasmin"] -[2024-04-30T15:10:26.108Z] future_pr = out["ssp585"]["pr"] -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] Traceback: -[2024-04-30T15:10:26.108Z] -[2024-04-30T15:10:26.108Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.108Z] KeyError Traceback (most recent call last) -[2024-04-30T15:10:26.108Z] Cell In[1], line 44 -[2024-04-30T15:10:26.108Z]  37 out[exp][variable] = average.average_shape( -[2024-04-30T15:10:26.108Z]  38 xr.open_zarr(mapper, consolidated=True).sel( -[2024-04-30T15:10:26.108Z]  39 time=slice(period_start, period_end) -[2024-04-30T15:10:26.108Z]  40 )[variable], -[2024-04-30T15:10:26.108Z]  41 basin_contour, -[2024-04-30T15:10:26.108Z]  42 ).chunk(-1) -[2024-04-30T15:10:26.108Z]  43 else: -[2024-04-30T15:10:26.108Z] ---> 44 out[exp][variable] = average.average_shape( -[2024-04-30T15:10:26.108Z]  45  xr.open_zarr(mapper, consolidated=True) -[2024-04-30T15:10:26.108Z]  46  .sel(time=slice(period_start, period_end)) -[2024-04-30T15:10:26.108Z]  47  .reset_coords("height", drop=True)[variable], -[2024-04-30T15:10:26.108Z]  48  basin_contour, -[2024-04-30T15:10:26.109Z]  49  ).chunk(-1) -[2024-04-30T15:10:26.109Z]  51 # We can now extract the variables that we will need later: -[2024-04-30T15:10:26.109Z]  52 historical_tasmax = out["historical"]["tasmax"] -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/clisops/core/average.py:108, in average_shape(ds, shape, variable) -[2024-04-30T15:10:26.109Z]  105 ds_sub = ds_copy.isel(indexer) -[2024-04-30T15:10:26.109Z]  107 # Compute the weights -[2024-04-30T15:10:26.109Z] --> 108 savger = SpatialAverager(ds_sub, poly.geometry) -[2024-04-30T15:10:26.109Z]  110 # Check that some weights are not null. Handle both sparse and scipy weights. -[2024-04-30T15:10:26.109Z]  111 nonnull = ( -[2024-04-30T15:10:26.109Z]  112 savger.weights.data.nnz -[2024-04-30T15:10:26.109Z]  113 if isinstance(savger.weights, xr.DataArray) -[2024-04-30T15:10:26.109Z]  114 else savger.weights.nnz -[2024-04-30T15:10:26.109Z]  115 ) -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xesmf/frontend.py:1207, in SpatialAverager.__init__(self, ds_in, polys, ignore_holes, periodic, filename, reuse_weights, weights, ignore_degenerate, geom_dim_name) -[2024-04-30T15:10:26.109Z]  1204 if isinstance(ds_in, xr.DataArray): -[2024-04-30T15:10:26.109Z]  1205 ds_in = ds_in._to_temp_dataset() -[2024-04-30T15:10:26.109Z] -> 1207 grid_in, shape_in, input_dims = ds_to_ESMFgrid(ds_in, need_bounds=True, periodic=periodic) -[2024-04-30T15:10:26.109Z]  1209 # Create an output locstream so that the regridder knows the output shape and coords. -[2024-04-30T15:10:26.109Z]  1210 # Latitude and longitude coordinates are the polygon centroid. -[2024-04-30T15:10:26.109Z]  1211 lon_out, lat_out = _get_lon_lat(ds_in) -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xesmf/frontend.py:167, in ds_to_ESMFgrid(ds, need_bounds, periodic, append) -[2024-04-30T15:10:26.109Z]  164 grid = Grid.from_xarray(lon.T, lat.T, periodic=periodic, mask=None) -[2024-04-30T15:10:26.109Z]  166 if need_bounds: -[2024-04-30T15:10:26.109Z] --> 167 lon_b, lat_b = _get_lon_lat_bounds(ds) -[2024-04-30T15:10:26.109Z]  168 lon_b, lat_b = as_2d_mesh(np.asarray(lon_b), np.asarray(lat_b)) -[2024-04-30T15:10:26.109Z]  169 add_corner(grid, lon_b.T, lat_b.T) -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/xesmf/frontend.py:109, in _get_lon_lat_bounds(ds) -[2024-04-30T15:10:26.109Z]  105 lat_bnds = ds.cf.get_bounds('latitude') -[2024-04-30T15:10:26.109Z]  107 # Convert from CF bounds to xESMF bounds. -[2024-04-30T15:10:26.109Z]  108 # order=None is because we don't want to assume the dimension order for 2D bounds. -[2024-04-30T15:10:26.109Z] --> 109 lon_b = cfxr.bounds_to_vertices(lon_bnds, ds.cf.get_bounds_dim_name('longitude'), order=None) -[2024-04-30T15:10:26.109Z]  110 lat_b = cfxr.bounds_to_vertices(lat_bnds, ds.cf.get_bounds_dim_name('latitude'), order=None) -[2024-04-30T15:10:26.109Z]  111 return lon_b, lat_b -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/cf_xarray/accessor.py:2404, in CFDatasetAccessor.get_bounds_dim_name(self, key) -[2024-04-30T15:10:26.109Z]  2400 filtered = [ -[2024-04-30T15:10:26.109Z]  2401 crd_name for crd_name in crd_names if "bounds" in variables[crd_name].attrs -[2024-04-30T15:10:26.109Z]  2402 ] -[2024-04-30T15:10:26.109Z]  2403 if len(filtered) > 1: -[2024-04-30T15:10:26.109Z] -> 2404 raise KeyError( -[2024-04-30T15:10:26.109Z]  2405 f"Received multiple matches for {key!r} that have a bounds attribute: {filtered!r} " -[2024-04-30T15:10:26.109Z]  2406 ) -[2024-04-30T15:10:26.109Z]  2408 (crd_name,) = filtered -[2024-04-30T15:10:26.109Z]  2409 crd = variables[crd_name] -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] KeyError: "Received multiple matches for 'longitude' that have a bounds attribute: ['lon_bounds', 'lon'] " -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 _ -[2024-04-30T15:10:26.109Z] Notebook cell execution failed -[2024-04-30T15:10:26.109Z] Cell 12: Cell execution caused an exception -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] Input: -[2024-04-30T15:10:26.109Z] # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-04-30T15:10:26.109Z] # and make sure everything is consistent. -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] # Let's start with precipitation: -[2024-04-30T15:10:26.109Z] # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-04-30T15:10:26.109Z] historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-04-30T15:10:26.109Z] future_pr = xclim.core.units.rate2amount(future_pr) -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] # Now we can actually convert units in absolute terms. -[2024-04-30T15:10:26.109Z] historical_pr = xclim.core.units.convert_units_to(historical_pr, "mm", context="hydro") -[2024-04-30T15:10:26.109Z] future_pr = xclim.core.units.convert_units_to(future_pr, "mm", context="hydro") -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] # Now let's do temperature: -[2024-04-30T15:10:26.109Z] historical_tasmin = xclim.core.units.convert_units_to(historical_tasmin, "degC") -[2024-04-30T15:10:26.109Z] historical_tasmax = xclim.core.units.convert_units_to(historical_tasmax, "degC") -[2024-04-30T15:10:26.109Z] future_tasmin = xclim.core.units.convert_units_to(future_tasmin, "degC") -[2024-04-30T15:10:26.109Z] future_tasmax = xclim.core.units.convert_units_to(future_tasmax, "degC") -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] Traceback: -[2024-04-30T15:10:26.109Z] -[2024-04-30T15:10:26.109Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.109Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.109Z] Cell In[1], line 6 -[2024-04-30T15:10:26.109Z]  1 # Here we need to make sure that our units are all in the correct format. You can play around with the tools we've seen thus far to explore the units -[2024-04-30T15:10:26.109Z]  2 # and make sure everything is consistent. -[2024-04-30T15:10:26.109Z]  3 -[2024-04-30T15:10:26.110Z]  4 # Let's start with precipitation: -[2024-04-30T15:10:26.110Z]  5 # The CMIP data is a rate rather than an absolute value, so let's get the absolute values: -[2024-04-30T15:10:26.110Z] ----> 6 historical_pr = xclim.core.units.rate2amount(historical_pr) -[2024-04-30T15:10:26.110Z]  7 future_pr = xclim.core.units.rate2amount(future_pr) -[2024-04-30T15:10:26.110Z]  9 # Now we can actually convert units in absolute terms. -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] NameError: name 'historical_pr' is not defined -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 _ -[2024-04-30T15:10:26.110Z] Notebook cell execution failed -[2024-04-30T15:10:26.110Z] Cell 13: Cell execution caused an exception -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] Input: -[2024-04-30T15:10:26.110Z] # Use xclim utilities (sbda) to give information on the type of window used for the bias correction. -[2024-04-30T15:10:26.110Z] group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-04-30T15:10:26.110Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-30T15:10:26.110Z] ref=ERA5_weather.pr, -[2024-04-30T15:10:26.110Z] hist=historical_pr, -[2024-04-30T15:10:26.110Z] nquantiles=50, -[2024-04-30T15:10:26.110Z] kind="+", -[2024-04-30T15:10:26.110Z] group=group_month_window, -[2024-04-30T15:10:26.110Z] ) -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Apply the correction factors on the reference period -[2024-04-30T15:10:26.110Z] corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Apply the correction factors on the future period -[2024-04-30T15:10:26.110Z] corrected_fut_precip = Adjustment.adjust(future_pr, interp="linear") -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Ensure that the precipitation is non-negative, which can happen with some climate models -[2024-04-30T15:10:26.110Z] corrected_ref_precip = corrected_ref_precip.where(corrected_ref_precip > 0, 0) -[2024-04-30T15:10:26.110Z] corrected_fut_precip = corrected_fut_precip.where(corrected_fut_precip > 0, 0) -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Train the model to find the correction factors for the maximum temperature (tasmax) data -[2024-04-30T15:10:26.110Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-30T15:10:26.110Z] ref=ERA5_weather.tmax, -[2024-04-30T15:10:26.110Z] hist=historical_tasmax, -[2024-04-30T15:10:26.110Z] nquantiles=50, -[2024-04-30T15:10:26.110Z] kind="+", -[2024-04-30T15:10:26.110Z] group=group_month_window, -[2024-04-30T15:10:26.110Z] ) -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Apply the correction factors on the reference period -[2024-04-30T15:10:26.110Z] corrected_ref_tasmax = Adjustment.adjust(historical_tasmax, interp="linear") -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Apply the correction factors on the future period -[2024-04-30T15:10:26.110Z] corrected_fut_tasmax = Adjustment.adjust(future_tasmax, interp="linear") -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Train the model to find the correction factors for the minimum temperature (tasmin) data -[2024-04-30T15:10:26.110Z] Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-30T15:10:26.110Z] ref=ERA5_weather.tmin, -[2024-04-30T15:10:26.110Z] hist=historical_tasmin, -[2024-04-30T15:10:26.110Z] nquantiles=50, -[2024-04-30T15:10:26.110Z] kind="+", -[2024-04-30T15:10:26.110Z] group=group_month_window, -[2024-04-30T15:10:26.110Z] ) -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Apply the correction factors on the reference period -[2024-04-30T15:10:26.110Z] corrected_ref_tasmin = Adjustment.adjust(historical_tasmin, interp="linear") -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Apply the correction factors on the future period -[2024-04-30T15:10:26.110Z] corrected_fut_tasmin = Adjustment.adjust(future_tasmin, interp="linear") -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] Traceback: -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.110Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.110Z] Cell In[1], line 6 -[2024-04-30T15:10:26.110Z]  2 group_month_window = sdba.utils.Grouper("time.dayofyear", window=15) -[2024-04-30T15:10:26.110Z]  4 # This is an adjusting function. It builds the tool that will perform the corrections. -[2024-04-30T15:10:26.110Z]  5 Adjustment = sdba.DetrendedQuantileMapping.train( -[2024-04-30T15:10:26.110Z] ----> 6 ref=ERA5_weather.pr, -[2024-04-30T15:10:26.110Z]  7 hist=historical_pr, -[2024-04-30T15:10:26.110Z]  8 nquantiles=50, -[2024-04-30T15:10:26.110Z]  9 kind="+", -[2024-04-30T15:10:26.110Z]  10 group=group_month_window, -[2024-04-30T15:10:26.110Z]  11 ) -[2024-04-30T15:10:26.110Z]  13 # Apply the correction factors on the reference period -[2024-04-30T15:10:26.110Z]  14 corrected_ref_precip = Adjustment.adjust(historical_pr, interp="linear") -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] NameError: name 'ERA5_weather' is not defined -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 _ -[2024-04-30T15:10:26.110Z] Notebook cell execution failed -[2024-04-30T15:10:26.110Z] Cell 14: Cell execution caused an exception -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] Input: -[2024-04-30T15:10:26.110Z] # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-04-30T15:10:26.110Z] ref_dataset = xr.merge( -[2024-04-30T15:10:26.110Z] [ -[2024-04-30T15:10:26.110Z] corrected_ref_precip.to_dataset(name="pr"), -[2024-04-30T15:10:26.110Z] corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-04-30T15:10:26.110Z] corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-04-30T15:10:26.110Z] ] -[2024-04-30T15:10:26.110Z] ) -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Write to temporary folder -[2024-04-30T15:10:26.110Z] fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-04-30T15:10:26.110Z] ref_dataset.to_netcdf(fn_tmp_ref) -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Convert the future corrected data into netCDF file -[2024-04-30T15:10:26.110Z] fut_dataset = xr.merge( -[2024-04-30T15:10:26.110Z] [ -[2024-04-30T15:10:26.110Z] corrected_fut_precip.to_dataset(name="pr"), -[2024-04-30T15:10:26.110Z] corrected_fut_tasmax.to_dataset(name="tasmax"), -[2024-04-30T15:10:26.110Z] corrected_fut_tasmin.to_dataset(name="tasmin"), -[2024-04-30T15:10:26.110Z] ] -[2024-04-30T15:10:26.110Z] ) -[2024-04-30T15:10:26.110Z] # Write to temporary folder -[2024-04-30T15:10:26.110Z] fn_tmp_fut = tmp / "future_dataset_tmp.nc" -[2024-04-30T15:10:26.110Z] fut_dataset.to_netcdf(fn_tmp_fut) -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] # Write the data to disk to a temporary location for future use. -[2024-04-30T15:10:26.110Z] ref_dataset = xr.open_dataset(fn_tmp_ref) -[2024-04-30T15:10:26.110Z] ref_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "reference_dataset.nc") -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] fut_dataset = xr.open_dataset(fn_tmp_fut) -[2024-04-30T15:10:26.110Z] fut_dataset.isel(geom=0).squeeze().to_netcdf(tmp / "future_dataset.nc") -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] Traceback: -[2024-04-30T15:10:26.110Z] -[2024-04-30T15:10:26.110Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.110Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.110Z] Cell In[1], line 4 -[2024-04-30T15:10:26.110Z]  1 # Convert the reference corrected data into netCDF file. We will then apply a special code to remove a dimension in the dataset to make it applicable to the RAVEN models. -[2024-04-30T15:10:26.110Z]  2 ref_dataset = xr.merge( -[2024-04-30T15:10:26.110Z]  3 [ -[2024-04-30T15:10:26.110Z] ----> 4 corrected_ref_precip.to_dataset(name="pr"), -[2024-04-30T15:10:26.111Z]  5 corrected_ref_tasmax.to_dataset(name="tasmax"), -[2024-04-30T15:10:26.111Z]  6 corrected_ref_tasmin.to_dataset(name="tasmin"), -[2024-04-30T15:10:26.111Z]  7 ] -[2024-04-30T15:10:26.111Z]  8 ) -[2024-04-30T15:10:26.111Z]  10 # Write to temporary folder -[2024-04-30T15:10:26.111Z]  11 fn_tmp_ref = tmp / "reference_dataset_tmp.nc" -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] NameError: name 'corrected_ref_precip' is not defined -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 _ -[2024-04-30T15:10:26.111Z] Notebook cell execution failed -[2024-04-30T15:10:26.111Z] Cell 15: Cell execution caused an exception -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] Input: -[2024-04-30T15:10:26.111Z] # Define the hydrological response unit. We can use the geographic information we gathered previously to -[2024-04-30T15:10:26.111Z] # populate the fields for the HRU. -[2024-04-30T15:10:26.111Z] hru = {} -[2024-04-30T15:10:26.111Z] hru = dict( -[2024-04-30T15:10:26.111Z] area=all_properties["area"], -[2024-04-30T15:10:26.111Z] elevation=all_properties["elevation"], -[2024-04-30T15:10:26.111Z] latitude=all_properties["latitude"], -[2024-04-30T15:10:26.111Z] longitude=all_properties["longitude"], -[2024-04-30T15:10:26.111Z] hru_type="land", -[2024-04-30T15:10:26.111Z] ) -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] # Establish the start date for the calibration. This is set in the model configuration, so the calibrator -[2024-04-30T15:10:26.111Z] # will simply execute the model which has been pre-configured to run on this period. -[2024-04-30T15:10:26.111Z] start_date = dt.datetime(1981, 1, 1) -[2024-04-30T15:10:26.111Z] end_date = dt.datetime(1985, 12, 31) -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] # The data types available in the forcing netcdf file from ERA5, as per the tutorials. -[2024-04-30T15:10:26.111Z] data_type = ["TEMP_MAX", "TEMP_MIN", "PRECIP"] -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] # Alternative variable names as described in the tutorial. -[2024-04-30T15:10:26.111Z] alt_names = { -[2024-04-30T15:10:26.111Z] "TEMP_MIN": "tmin", -[2024-04-30T15:10:26.111Z] "TEMP_MAX": "tmax", -[2024-04-30T15:10:26.111Z] "PRECIP": "pr", -[2024-04-30T15:10:26.111Z] } -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] # The data keywords necessary to indicate the elevation, latitude and longitude of the ERA5 forcing data. Here -[2024-04-30T15:10:26.111Z] # we use the information for the basin average as the ERA5 data is averaged on the watershed. -[2024-04-30T15:10:26.111Z] data_kwds = { -[2024-04-30T15:10:26.111Z] "ALL": { -[2024-04-30T15:10:26.111Z] "elevation": hru["elevation"], -[2024-04-30T15:10:26.111Z] "latitude": hru["latitude"], -[2024-04-30T15:10:26.111Z] "longitude": hru["longitude"], -[2024-04-30T15:10:26.111Z] } -[2024-04-30T15:10:26.111Z] } -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] # Give a name to the simulation -[2024-04-30T15:10:26.111Z] run_name = "Paper_example_simulation" -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] # Setup the gauge object that includes meteorological data from ERA5 -[2024-04-30T15:10:26.111Z] gauge = [ -[2024-04-30T15:10:26.111Z] rc.Gauge.from_nc( -[2024-04-30T15:10:26.111Z] tmp -[2024-04-30T15:10:26.111Z] / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-04-30T15:10:26.111Z] data_type=data_type, # Note that this is the list of all the variables -[2024-04-30T15:10:26.111Z] alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-04-30T15:10:26.111Z] data_kwds=data_kwds, -[2024-04-30T15:10:26.111Z] ) -[2024-04-30T15:10:26.111Z] ] -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] # Read the streamflow from the HYSETS catchment data for this basin -[2024-04-30T15:10:26.111Z] discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] # Which evaluation metric do we want to use for calibration. Raven will return this by default after each run, -[2024-04-30T15:10:26.111Z] # and the optimizer will read it directly to calibrate. -[2024-04-30T15:10:26.111Z] eval_metrics = ("NASH_SUTCLIFFE",) -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] # Build the model configuration according to user preferences and inputs -[2024-04-30T15:10:26.111Z] model_config = GR4JCN( -[2024-04-30T15:10:26.111Z] ObservationData=discharge_data, -[2024-04-30T15:10:26.111Z] Gauge=gauge, -[2024-04-30T15:10:26.111Z] HRUs=[hru], -[2024-04-30T15:10:26.111Z] StartDate=start_date, -[2024-04-30T15:10:26.111Z] EndDate=end_date, -[2024-04-30T15:10:26.111Z] RunName=run_name, -[2024-04-30T15:10:26.111Z] EvaluationMetrics=eval_metrics, # We add this code to tell Raven which objective function we want to pass. -[2024-04-30T15:10:26.111Z] SuppressOutput=True, # This stops Raven from generating the output .nc files at each iteration. -[2024-04-30T15:10:26.111Z] ) -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] Traceback: -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.111Z] ValueError Traceback (most recent call last) -[2024-04-30T15:10:26.111Z] Cell In[1], line 42 -[2024-04-30T15:10:26.111Z]  38 run_name = "Paper_example_simulation" -[2024-04-30T15:10:26.111Z]  40 # Setup the gauge object that includes meteorological data from ERA5 -[2024-04-30T15:10:26.111Z]  41 gauge = [ -[2024-04-30T15:10:26.111Z] ---> 42 rc.Gauge.from_nc( -[2024-04-30T15:10:26.111Z]  43  tmp -[2024-04-30T15:10:26.111Z]  44  / "ERA5_meteo_data.nc", # Path to the ERA5 file containing all three meteorological variables -[2024-04-30T15:10:26.111Z]  45  data_type=data_type, # Note that this is the list of all the variables -[2024-04-30T15:10:26.111Z]  46  alt_names=alt_names, # Note that all variables here are mapped to their names in the netcdf file. -[2024-04-30T15:10:26.111Z]  47  data_kwds=data_kwds, -[2024-04-30T15:10:26.111Z]  48  ) -[2024-04-30T15:10:26.111Z]  49 ] -[2024-04-30T15:10:26.111Z]  51 # Read the streamflow from the HYSETS catchment data for this basin -[2024-04-30T15:10:26.111Z]  52 discharge_data = [rc.ObservationData.from_nc(streamflow_file, alt_names="discharge")] -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-30T15:10:26.111Z]  751 forcings.difference_update(data) -[2024-04-30T15:10:26.111Z]  753 if len(data) == 0: -[2024-04-30T15:10:26.111Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-30T15:10:26.111Z]  756 # Default Gauge name -[2024-04-30T15:10:26.111Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] ValueError: No data found in netCDF files. -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 _ -[2024-04-30T15:10:26.111Z] Notebook cell execution failed -[2024-04-30T15:10:26.111Z] Cell 16: Cell execution caused an exception -[2024-04-30T15:10:26.111Z] -[2024-04-30T15:10:26.111Z] Input: -[2024-04-30T15:10:26.111Z] # In order to calibrate your model, you need to give the lower and higher bounds of the model. In this case, -[2024-04-30T15:10:26.112Z] # we are passing the boundaries for a GR4JCN, but it's important to change them, if you are using another model. -[2024-04-30T15:10:26.112Z] low = (0.01, -15.0, 10.0, 0.0, 1.0, 0.0) -[2024-04-30T15:10:26.112Z] high = (2.5, 10.0, 700.0, 7.0, 30.0, 1.0) -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Random seed. We will provide one for consistency purposes, but operationnaly this should not be provided. -[2024-04-30T15:10:26.112Z] random_seed = 42 -[2024-04-30T15:10:26.112Z] np.random.seed(random_seed) -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Build the optimizer object -[2024-04-30T15:10:26.112Z] spot_setup = SpotSetup( -[2024-04-30T15:10:26.112Z] config=model_config, -[2024-04-30T15:10:26.112Z] low=low, -[2024-04-30T15:10:26.112Z] high=high, -[2024-04-30T15:10:26.112Z] ) -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-04-30T15:10:26.112Z] # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-04-30T15:10:26.112Z] max_iterations = 200 -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Setup the spotpy sampler with the method, the setup configuration, a run name and other options. Please refer -[2024-04-30T15:10:26.112Z] # to the spotpy documentation for more options. We recommend sticking to this format for efficiency of most -[2024-04-30T15:10:26.112Z] # applications. Here we use DDS as the optimization algorithm. More are available: see the Spotpy documentation -[2024-04-30T15:10:26.112Z] # for more information. Here, DDS is used as it is powerful and particularly useful for optimizations with small -[2024-04-30T15:10:26.112Z] # evaluation budgets. For more details on DDS, see: -[2024-04-30T15:10:26.112Z] # -[2024-04-30T15:10:26.112Z] # Tolson, B.A. and Shoemaker, C.A., 2007. Dynamically dimensioned search algorithm for computationally efficient watershed model calibration. Water -[2024-04-30T15:10:26.112Z] # Resources Research, 43(1) -[2024-04-30T15:10:26.112Z] sampler = spotpy.algorithms.dds( -[2024-04-30T15:10:26.112Z] spot_setup, dbname="RAVEN_model_run", dbformat="ram", save_sim=False -[2024-04-30T15:10:26.112Z] ) -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Launch the actual optimization. Multiple trials can be launched, where the entire process is repeated and -[2024-04-30T15:10:26.112Z] # the best overall value from all trials is returned. -[2024-04-30T15:10:26.112Z] sampler.sample(max_iterations, trials=1) -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Get the model diagnostics -[2024-04-30T15:10:26.112Z] diag = spot_setup.diagnostics -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Get all the values of each iteration -[2024-04-30T15:10:26.112Z] results = sampler.getdata() -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Get the raw resutlts directly in an array -[2024-04-30T15:10:26.112Z] bestindex, bestobjfun = spotpy.analyser.get_maxlikeindex( -[2024-04-30T15:10:26.112Z] results -[2024-04-30T15:10:26.112Z] ) # Want to get the MAX NSE (change for min for RMSE) -[2024-04-30T15:10:26.112Z] best_model_run = list( -[2024-04-30T15:10:26.112Z] results[bestindex][0] -[2024-04-30T15:10:26.112Z] ) # Get the parameter set returning the best NSE -[2024-04-30T15:10:26.112Z] optimized_parameters = best_model_run[ -[2024-04-30T15:10:26.112Z] 1:-1 -[2024-04-30T15:10:26.112Z] ] # Remove the NSE value (position 0) and the ID at the last position to get the actual parameter set. -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Display the parameter set ready to use in a future run: -[2024-04-30T15:10:26.112Z] print(optimized_parameters) -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] Traceback: -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.112Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.112Z] Cell In[1], line 12 -[2024-04-30T15:10:26.112Z]  8 np.random.seed(random_seed) -[2024-04-30T15:10:26.112Z]  10 # Build the optimizer object -[2024-04-30T15:10:26.112Z]  11 spot_setup = SpotSetup( -[2024-04-30T15:10:26.112Z] ---> 12 config=model_config, -[2024-04-30T15:10:26.112Z]  13 low=low, -[2024-04-30T15:10:26.112Z]  14 high=high, -[2024-04-30T15:10:26.112Z]  15 ) -[2024-04-30T15:10:26.112Z]  17 # Maximum number of model evaluations. We only use 200 here to keep the computation time as low as possible, -[2024-04-30T15:10:26.112Z]  18 # but you will want to increase this for operational use, perhaps to 2000-5000 depending on the model. -[2024-04-30T15:10:26.112Z]  19 max_iterations = 200 -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] NameError: name 'model_config' is not defined -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 _ -[2024-04-30T15:10:26.112Z] Notebook cell execution failed -[2024-04-30T15:10:26.112Z] Cell 17: Cell execution caused an exception -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] Input: -[2024-04-30T15:10:26.112Z] # Copy the configuration of the previous model that we will modify for our validation: -[2024-04-30T15:10:26.112Z] model_validation = model_config.duplicate( -[2024-04-30T15:10:26.112Z] params=optimized_parameters, -[2024-04-30T15:10:26.112Z] StartDate=dt.datetime(1986, 1, 1), -[2024-04-30T15:10:26.112Z] EndDate=dt.datetime(1990, 12, 31), -[2024-04-30T15:10:26.112Z] SuppressOutput=False, -[2024-04-30T15:10:26.112Z] ) -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] sim_output = Emulator(config=model_validation).run() -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Get validation NSE (note we are counting the first year without warm-up) -[2024-04-30T15:10:26.112Z] NSE = sim_output.diagnostics["DIAG_NASH_SUTCLIFFE"] -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Plot the model output -[2024-04-30T15:10:26.112Z] sim_output.hydrograph.q_sim.plot(color="blue", label="Simulation") -[2024-04-30T15:10:26.112Z] sim_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-04-30T15:10:26.112Z] plt.legend() -[2024-04-30T15:10:26.112Z] plt.title("Validation period - NSE=" + str(NSE[0])) -[2024-04-30T15:10:26.112Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-30T15:10:26.112Z] plt.grid() -[2024-04-30T15:10:26.112Z] plt.show() -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] Traceback: -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.112Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.112Z] Cell In[1], line 2 -[2024-04-30T15:10:26.112Z]  1 # Copy the configuration of the previous model that we will modify for our validation: -[2024-04-30T15:10:26.112Z] ----> 2 model_validation = model_config.duplicate( -[2024-04-30T15:10:26.112Z]  3 params=optimized_parameters, -[2024-04-30T15:10:26.112Z]  4 StartDate=dt.datetime(1986, 1, 1), -[2024-04-30T15:10:26.112Z]  5 EndDate=dt.datetime(1990, 12, 31), -[2024-04-30T15:10:26.112Z]  6 SuppressOutput=False, -[2024-04-30T15:10:26.112Z]  7 ) -[2024-04-30T15:10:26.112Z]  9 sim_output = Emulator(config=model_validation).run() -[2024-04-30T15:10:26.112Z]  11 # Get validation NSE (note we are counting the first year without warm-up) -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] NameError: name 'model_config' is not defined -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 _ -[2024-04-30T15:10:26.112Z] Notebook cell execution failed -[2024-04-30T15:10:26.112Z] Cell 18: Cell execution caused an exception -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] Input: -[2024-04-30T15:10:26.112Z] # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-04-30T15:10:26.112Z] gauge_ref = [ -[2024-04-30T15:10:26.112Z] rc.Gauge.from_nc( -[2024-04-30T15:10:26.112Z] tmp -[2024-04-30T15:10:26.112Z] / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-30T15:10:26.112Z] data_type=data_type, -[2024-04-30T15:10:26.112Z] alt_names=alt_names, -[2024-04-30T15:10:26.112Z] data_kwds=data_kwds, -[2024-04-30T15:10:26.112Z] ) -[2024-04-30T15:10:26.112Z] ] -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-30T15:10:26.112Z] model_config_reference = model_validation.duplicate( -[2024-04-30T15:10:26.112Z] Gauge=gauge_ref, -[2024-04-30T15:10:26.112Z] StartDate=reference_start_day -[2024-04-30T15:10:26.112Z] + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-04-30T15:10:26.112Z] EndDate=reference_end_day, -[2024-04-30T15:10:26.112Z] ) -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.112Z] # Run the model from the configuration and get the outputs. -[2024-04-30T15:10:26.112Z] ref_output = Emulator(config=model_config_reference).run() -[2024-04-30T15:10:26.112Z] -[2024-04-30T15:10:26.113Z] # Plot the model output. Note that both simulations should have similar hydrological -[2024-04-30T15:10:26.113Z] # regime but day-to-day variability is not expected to match. -[2024-04-30T15:10:26.113Z] ref_output.hydrograph.q_sim.plot(color="blue", label="Reference period simulation") -[2024-04-30T15:10:26.113Z] ref_output.hydrograph.q_obs.plot(color="black", label="Observation") -[2024-04-30T15:10:26.113Z] plt.legend() -[2024-04-30T15:10:26.113Z] plt.title("Reference period") -[2024-04-30T15:10:26.113Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-30T15:10:26.113Z] plt.grid() -[2024-04-30T15:10:26.113Z] plt.show() -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] Traceback: -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.113Z] ValueError Traceback (most recent call last) -[2024-04-30T15:10:26.113Z] Cell In[1], line 3 -[2024-04-30T15:10:26.113Z]  1 # Setup a gauge for Raven to read-in the reference climate data, just like for ERA5 -[2024-04-30T15:10:26.113Z]  2 gauge_ref = [ -[2024-04-30T15:10:26.113Z] ----> 3 rc.Gauge.from_nc( -[2024-04-30T15:10:26.113Z]  4  tmp -[2024-04-30T15:10:26.113Z]  5  / "reference_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-30T15:10:26.113Z]  6  data_type=data_type, -[2024-04-30T15:10:26.113Z]  7  alt_names=alt_names, -[2024-04-30T15:10:26.113Z]  8  data_kwds=data_kwds, -[2024-04-30T15:10:26.113Z]  9  ) -[2024-04-30T15:10:26.113Z]  10 ] -[2024-04-30T15:10:26.113Z]  12 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-30T15:10:26.113Z]  13 model_config_reference = model_validation.duplicate( -[2024-04-30T15:10:26.113Z]  14 Gauge=gauge_ref, -[2024-04-30T15:10:26.113Z]  15 StartDate=reference_start_day -[2024-04-30T15:10:26.113Z]  16 + dt.timedelta(days=1), # Add a day here to account for the UTC lag in ERA5 -[2024-04-30T15:10:26.113Z]  17 EndDate=reference_end_day, -[2024-04-30T15:10:26.113Z]  18 ) -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-30T15:10:26.113Z]  751 forcings.difference_update(data) -[2024-04-30T15:10:26.113Z]  753 if len(data) == 0: -[2024-04-30T15:10:26.113Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-30T15:10:26.113Z]  756 # Default Gauge name -[2024-04-30T15:10:26.113Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] ValueError: No data found in netCDF files. -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 _ -[2024-04-30T15:10:26.113Z] Notebook cell execution failed -[2024-04-30T15:10:26.113Z] Cell 19: Cell execution caused an exception -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] Input: -[2024-04-30T15:10:26.113Z] # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-04-30T15:10:26.113Z] gauge_fut = [ -[2024-04-30T15:10:26.113Z] rc.Gauge.from_nc( -[2024-04-30T15:10:26.113Z] tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-30T15:10:26.113Z] data_type=data_type, -[2024-04-30T15:10:26.113Z] alt_names=alt_names, -[2024-04-30T15:10:26.113Z] data_kwds=data_kwds, -[2024-04-30T15:10:26.113Z] ) -[2024-04-30T15:10:26.113Z] ] -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-30T15:10:26.113Z] model_config_future = model_validation.duplicate( -[2024-04-30T15:10:26.113Z] Gauge=gauge_fut, -[2024-04-30T15:10:26.113Z] StartDate=future_start_day + dt.timedelta(days=1), -[2024-04-30T15:10:26.113Z] EndDate=future_end_day, -[2024-04-30T15:10:26.113Z] ObservationData=None, # There are no observations for the future period. -[2024-04-30T15:10:26.113Z] ) -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] # Run the model and get the outputs and hydrographs. -[2024-04-30T15:10:26.113Z] fut_output = Emulator(config=model_config_future).run() -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] # Plot the model output -[2024-04-30T15:10:26.113Z] fut_output.hydrograph.q_sim.plot(color="blue", label="Future simulation") -[2024-04-30T15:10:26.113Z] plt.legend() -[2024-04-30T15:10:26.113Z] plt.title("Future period") -[2024-04-30T15:10:26.113Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-30T15:10:26.113Z] plt.grid() -[2024-04-30T15:10:26.113Z] plt.show() -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] Traceback: -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.113Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.113Z] ValueError Traceback (most recent call last) -[2024-04-30T15:10:26.113Z] Cell In[1], line 3 -[2024-04-30T15:10:26.113Z]  1 # Setup a gauge for Raven to read-in the future climate data, just like for the reference data -[2024-04-30T15:10:26.113Z]  2 gauge_fut = [ -[2024-04-30T15:10:26.113Z] ----> 3 rc.Gauge.from_nc( -[2024-04-30T15:10:26.113Z]  4  tmp / "future_dataset.nc", # Path to the CMIP6 model reference data netcdf file -[2024-04-30T15:10:26.113Z]  5  data_type=data_type, -[2024-04-30T15:10:26.113Z]  6  alt_names=alt_names, -[2024-04-30T15:10:26.113Z]  7  data_kwds=data_kwds, -[2024-04-30T15:10:26.113Z]  8  ) -[2024-04-30T15:10:26.113Z]  9 ] -[2024-04-30T15:10:26.113Z]  11 # Copy the configuration of the previous model that we will modify for our simulation on the reference period. -[2024-04-30T15:10:26.113Z]  12 model_config_future = model_validation.duplicate( -[2024-04-30T15:10:26.113Z]  13 Gauge=gauge_fut, -[2024-04-30T15:10:26.113Z]  14 StartDate=future_start_day + dt.timedelta(days=1), -[2024-04-30T15:10:26.113Z]  15 EndDate=future_end_day, -[2024-04-30T15:10:26.113Z]  16 ObservationData=None, # There are no observations for the future period. -[2024-04-30T15:10:26.113Z]  17 ) -[2024-04-30T15:10:26.113Z] -[2024-04-30T15:10:26.114Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/config/commands.py:754, in Gauge.from_nc(cls, fn, data_type, station_idx, alt_names, mon_ave, data_kwds, **kwds) -[2024-04-30T15:10:26.114Z]  751 forcings.difference_update(data) -[2024-04-30T15:10:26.114Z]  753 if len(data) == 0: -[2024-04-30T15:10:26.114Z] --> 754 raise ValueError("No data found in netCDF files.") -[2024-04-30T15:10:26.114Z]  756 # Default Gauge name -[2024-04-30T15:10:26.114Z]  757 attrs["name"] = attrs.get("name", f"Gauge_{idx}") -[2024-04-30T15:10:26.114Z] -[2024-04-30T15:10:26.114Z] ValueError: No data found in netCDF files. -[2024-04-30T15:10:26.114Z] -[2024-04-30T15:10:26.114Z] _ RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 _ -[2024-04-30T15:10:26.114Z] Notebook cell execution failed -[2024-04-30T15:10:26.114Z] Cell 20: Cell execution caused an exception -[2024-04-30T15:10:26.114Z] -[2024-04-30T15:10:26.114Z] Input: -[2024-04-30T15:10:26.114Z] # Extract the mean annual hydrograph for each simulation. -[2024-04-30T15:10:26.114Z] observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-30T15:10:26.114Z] simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-30T15:10:26.114Z] reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-30T15:10:26.114Z] future_flows = fut_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-30T15:10:26.114Z] -[2024-04-30T15:10:26.114Z] # Plot the model output -[2024-04-30T15:10:26.114Z] observed_flows.plot(color="black", label="Observation", x="dayofyear") -[2024-04-30T15:10:26.114Z] simulated_flows.plot(color="green", label="Simulation", x="dayofyear") -[2024-04-30T15:10:26.114Z] reference_flows.plot(color="blue", label="Reference", x="dayofyear") -[2024-04-30T15:10:26.114Z] future_flows.plot(color="red", label="Future", x="dayofyear") -[2024-04-30T15:10:26.114Z] plt.legend() -[2024-04-30T15:10:26.114Z] plt.ylabel("Streamflow (m��/s)") -[2024-04-30T15:10:26.114Z] plt.xlabel("Day of year") -[2024-04-30T15:10:26.114Z] plt.xlim([0, 365]) -[2024-04-30T15:10:26.114Z] plt.title("Comparison of mean annual hydrographs") -[2024-04-30T15:10:26.114Z] plt.grid() -[2024-04-30T15:10:26.114Z] plt.show() -[2024-04-30T15:10:26.114Z] -[2024-04-30T15:10:26.114Z] Traceback: -[2024-04-30T15:10:26.114Z] -[2024-04-30T15:10:26.114Z] --------------------------------------------------------------------------- -[2024-04-30T15:10:26.114Z] NameError Traceback (most recent call last) -[2024-04-30T15:10:26.114Z] Cell In[1], line 2 -[2024-04-30T15:10:26.114Z]  1 # Extract the mean annual hydrograph for each simulation. -[2024-04-30T15:10:26.114Z] ----> 2 observed_flows = ref_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-30T15:10:26.114Z]  3 simulated_flows = sim_output.hydrograph.q_obs.groupby("time.dayofyear").mean() -[2024-04-30T15:10:26.114Z]  4 reference_flows = ref_output.hydrograph.q_sim.groupby("time.dayofyear").mean() -[2024-04-30T15:10:26.114Z] -[2024-04-30T15:10:26.114Z] NameError: name 'ref_output' is not defined -[2024-04-30T15:10:26.114Z] -[2024-04-30T15:10:26.114Z] =========================== short test summary info ============================ -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 5 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 7 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 8 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb::Cell 11 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 10 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 11 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 12 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 13 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 14 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 15 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 16 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 17 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 18 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 19 -[2024-04-30T15:10:26.114Z] FAILED RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb::Cell 20 -[2024-04-30T15:10:26.114Z] ================== 27 failed, 215 passed in 961.26s (0:16:01) ================== -[2024-04-30T15:10:26.114Z] + EXIT_CODE=1 -[2024-04-30T15:10:26.114Z] + echo true -[2024-04-30T15:10:26.114Z] + tr [:upper:] [:lower:] -[2024-04-30T15:10:26.114Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-04-30T15:10:26.114Z] + [ xtrue = xtrue ] -[2024-04-30T15:10:26.114Z] + mkdir -p buildout -[2024-04-30T15:10:26.114Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-04-30T15:10:26.114Z] + filename=Region_selection.ipynb -[2024-04-30T15:10:26.114Z] + echo Region_selection.ipynb -[2024-04-30T15:10:26.114Z] + sed s/.ipynb$// -[2024-04-30T15:10:26.114Z] + filename=Region_selection -[2024-04-30T15:10:26.114Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-04-30T15:10:26.114Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-04-30T15:10:27.047Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-04-30T15:10:28.432Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:10:28.432Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:10:28.432Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:10:28.432Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:10:43.292Z] [NbConvertApp] Writing 107223 bytes to buildout/Region_selection.output.ipynb -[2024-04-30T15:10:43.292Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-04-30T15:10:43.292Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-04-30T15:10:43.292Z] + sed s/.ipynb$// -[2024-04-30T15:10:43.292Z] + echo Subset_climate_data_over_watershed.ipynb -[2024-04-30T15:10:43.292Z] + filename=Subset_climate_data_over_watershed -[2024-04-30T15:10:43.292Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-04-30T15:10:43.292Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-04-30T15:10:43.292Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-04-30T15:10:43.549Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:10:43.549Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:10:43.549Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:10:43.549Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:10:58.422Z] [NbConvertApp] Writing 97069 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-04-30T15:10:58.422Z] + basename RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-04-30T15:10:58.422Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-04-30T15:10:58.422Z] + echo 00_Introduction_to_JupyterLab.ipynb -[2024-04-30T15:10:58.422Z] + sed s/.ipynb$// -[2024-04-30T15:10:58.422Z] + filename=00_Introduction_to_JupyterLab -[2024-04-30T15:10:58.422Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-04-30T15:10:58.422Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-04-30T15:10:59.802Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-04-30T15:11:00.375Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:11:00.375Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:11:00.376Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:11:00.376Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:11:05.639Z] [NbConvertApp] Writing 13178 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-04-30T15:11:05.639Z] + basename RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-04-30T15:11:05.639Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-04-30T15:11:05.639Z] + echo 01_Getting_watershed_boundaries.ipynb -[2024-04-30T15:11:05.639Z] + sed s/.ipynb$// -[2024-04-30T15:11:05.639Z] + filename=01_Getting_watershed_boundaries -[2024-04-30T15:11:05.639Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-04-30T15:11:05.639Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-04-30T15:11:07.020Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-04-30T15:11:07.960Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:11:07.960Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:11:07.960Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:11:07.960Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:11:17.945Z] [NbConvertApp] Writing 109426 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-04-30T15:11:17.945Z] + basename RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-04-30T15:11:17.945Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-04-30T15:11:17.945Z] + sed s/.ipynb$// -[2024-04-30T15:11:17.945Z] + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-04-30T15:11:17.945Z] + filename=02_Extract_geographical_watershed_properties -[2024-04-30T15:11:17.945Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-04-30T15:11:17.945Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-04-30T15:11:19.843Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-04-30T15:11:20.780Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:11:20.780Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:11:20.780Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:11:20.780Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:11:35.673Z] [NbConvertApp] Writing 91030 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-04-30T15:11:35.673Z] + basename RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-04-30T15:11:35.673Z] + filename=03_Extracting_forcing_data.ipynb -[2024-04-30T15:11:35.673Z] + echo 03_Extracting_forcing_data.ipynb -[2024-04-30T15:11:35.673Z] + sed s/.ipynb$// -[2024-04-30T15:11:35.673Z] + filename=03_Extracting_forcing_data -[2024-04-30T15:11:35.673Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-04-30T15:11:35.673Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-04-30T15:11:35.673Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-04-30T15:11:36.617Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:11:36.617Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:11:36.617Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:11:36.617Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:13:28.118Z] [NbConvertApp] Writing 107673 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-04-30T15:13:28.118Z] + basename RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-04-30T15:13:28.118Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-04-30T15:13:28.119Z] + sed s/.ipynb$// -[2024-04-30T15:13:28.119Z] + echo 04_Emulating_hydrological_models.ipynb -[2024-04-30T15:13:28.119Z] + filename=04_Emulating_hydrological_models -[2024-04-30T15:13:28.119Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-04-30T15:13:28.119Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-04-30T15:13:28.119Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-04-30T15:13:28.119Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:13:28.119Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:13:28.119Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:13:28.119Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:13:34.675Z] [NbConvertApp] Writing 137339 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-04-30T15:13:34.675Z] + basename RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-04-30T15:13:34.675Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-04-30T15:13:34.675Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-04-30T15:13:34.675Z] + sed s/.ipynb$// -[2024-04-30T15:13:34.675Z] + filename=05_Advanced_RavenPy_configuration -[2024-04-30T15:13:34.675Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-04-30T15:13:34.675Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-04-30T15:13:36.638Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-04-30T15:13:37.211Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:13:37.211Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:13:37.211Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:13:37.211Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:13:55.311Z] [NbConvertApp] Writing 313551 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-04-30T15:13:55.311Z] + basename RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-04-30T15:13:55.311Z] + filename=06_Raven_calibration.ipynb -[2024-04-30T15:13:55.311Z] + echo 06_Raven_calibration.ipynb -[2024-04-30T15:13:55.311Z] + sed s/.ipynb$// -[2024-04-30T15:13:55.311Z] + filename=06_Raven_calibration -[2024-04-30T15:13:55.311Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-04-30T15:13:55.311Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb -[2024-04-30T15:13:55.876Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-04-30T15:13:56.806Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:13:56.806Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:13:56.806Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:13:56.806Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:14:06.780Z] [NbConvertApp] Writing 16351 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-04-30T15:14:06.780Z] + basename RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-04-30T15:14:06.780Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-04-30T15:14:06.780Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-04-30T15:14:06.780Z] + sed s/.ipynb$// -[2024-04-30T15:14:06.780Z] + filename=07_Making_and_using_hotstart_files -[2024-04-30T15:14:06.780Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-04-30T15:14:06.780Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-04-30T15:14:07.730Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-04-30T15:14:08.763Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:14:08.763Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:14:08.763Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:14:08.763Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:14:21.012Z] [NbConvertApp] Writing 205512 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-04-30T15:14:21.012Z] + basename RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-30T15:14:21.012Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-30T15:14:21.012Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-30T15:14:21.012Z] + sed s/.ipynb$// -[2024-04-30T15:14:21.012Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-04-30T15:14:21.012Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-04-30T15:14:21.012Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-04-30T15:14:22.400Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-04-30T15:14:23.343Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:14:23.343Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:14:23.343Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:14:23.343Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:18:59.983Z] [NbConvertApp] Writing 249082 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb -[2024-04-30T15:18:59.983Z] + basename RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-30T15:18:59.983Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-30T15:18:59.983Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-30T15:18:59.983Z] + sed s/.ipynb$// -[2024-04-30T15:18:59.983Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-04-30T15:18:59.983Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-04-30T15:18:59.983Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-04-30T15:18:59.983Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-04-30T15:18:59.983Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:18:59.983Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:18:59.983Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:18:59.983Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:19:02.529Z] [NbConvertApp] Writing 128174 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-04-30T15:19:02.529Z] + basename RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-04-30T15:19:02.529Z] + filename=10_Data_assimilation.ipynb -[2024-04-30T15:19:02.529Z] + echo 10_Data_assimilation.ipynb -[2024-04-30T15:19:02.529Z] + sed s/.ipynb$// -[2024-04-30T15:19:02.529Z] + filename=10_Data_assimilation -[2024-04-30T15:19:02.529Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-04-30T15:19:02.529Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb -[2024-04-30T15:19:03.912Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-04-30T15:19:05.313Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:19:05.313Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:19:05.313Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:19:05.313Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:20:26.838Z] [NbConvertApp] Writing 432765 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-04-30T15:20:26.838Z] + basename RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-04-30T15:20:26.838Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-04-30T15:20:26.838Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-04-30T15:20:26.838Z] + sed s/.ipynb$// -[2024-04-30T15:20:26.838Z] + filename=11_Climatological_ESP_forecasting -[2024-04-30T15:20:26.838Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-04-30T15:20:26.838Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-04-30T15:20:26.838Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-04-30T15:20:26.838Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:20:26.838Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:20:26.838Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:20:26.838Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:21:05.619Z] [NbConvertApp] Writing 176184 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-04-30T15:21:05.619Z] + basename RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-04-30T15:21:05.619Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-04-30T15:21:05.619Z] + echo 12_Performing_hindcasting_experiments.ipynb -[2024-04-30T15:21:05.619Z] + sed s/.ipynb$// -[2024-04-30T15:21:05.619Z] + filename=12_Performing_hindcasting_experiments -[2024-04-30T15:21:05.619Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-04-30T15:21:05.619Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-04-30T15:21:05.620Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-04-30T15:21:05.620Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:21:05.620Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:21:05.620Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:21:05.620Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:21:23.732Z] [NbConvertApp] Writing 150539 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-04-30T15:21:23.732Z] + basename RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-04-30T15:21:23.732Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-04-30T15:21:23.732Z] + echo Assess_probabilistic_flood_risk.ipynb -[2024-04-30T15:21:23.732Z] + sed s/.ipynb$// -[2024-04-30T15:21:23.732Z] + filename=Assess_probabilistic_flood_risk -[2024-04-30T15:21:23.732Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-04-30T15:21:23.732Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-04-30T15:21:25.654Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-04-30T15:21:26.229Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:21:26.229Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:21:26.229Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:21:26.229Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:21:59.074Z] [NbConvertApp] Writing 163111 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-04-30T15:21:59.074Z] + basename RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-30T15:21:59.074Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-30T15:21:59.074Z] + + sed s/.ipynb$// -[2024-04-30T15:21:59.074Z] echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-30T15:21:59.074Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-04-30T15:21:59.074Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-04-30T15:21:59.074Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-04-30T15:21:59.074Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-04-30T15:21:59.336Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:21:59.336Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:21:59.336Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:21:59.336Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:22:38.063Z] [NbConvertApp] Writing 314030 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-04-30T15:22:38.063Z] + basename RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-04-30T15:22:38.063Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-04-30T15:22:38.063Z] + echo Distributed_hydrological_modelling.ipynb -[2024-04-30T15:22:38.063Z] + sed s/.ipynb$// -[2024-04-30T15:22:38.063Z] + filename=Distributed_hydrological_modelling -[2024-04-30T15:22:38.063Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-04-30T15:22:38.063Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-04-30T15:22:38.063Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-04-30T15:22:38.063Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:22:38.064Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:22:38.064Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:22:38.064Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:23:05.215Z] [NbConvertApp] Writing 102750 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-04-30T15:23:05.215Z] + basename RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-04-30T15:23:05.215Z] + filename=HydroShare_integration.ipynb -[2024-04-30T15:23:05.215Z] + echo HydroShare_integration.ipynb -[2024-04-30T15:23:05.215Z] + sed s/.ipynb$// -[2024-04-30T15:23:05.215Z] + filename=HydroShare_integration -[2024-04-30T15:23:05.216Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-04-30T15:23:05.216Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-master/docs/notebooks/HydroShare_integration.ipynb -[2024-04-30T15:23:06.158Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-04-30T15:23:07.095Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:23:07.095Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:23:07.095Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:23:07.095Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:23:11.292Z] [NbConvertApp] Writing 11583 bytes to buildout/HydroShare_integration.output.ipynb -[2024-04-30T15:23:11.292Z] + basename RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-04-30T15:23:11.292Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-04-30T15:23:11.292Z] + + echo Hydrological_realtime_forecasting.ipynb -[2024-04-30T15:23:11.292Z] sed s/.ipynb$// -[2024-04-30T15:23:11.292Z] + filename=Hydrological_realtime_forecasting -[2024-04-30T15:23:11.292Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-04-30T15:23:11.292Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-04-30T15:23:12.669Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-04-30T15:23:13.231Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:23:13.231Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:23:13.231Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:23:13.232Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:23:35.265Z] [NbConvertApp] Writing 148533 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-04-30T15:23:35.265Z] + basename RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-04-30T15:23:35.265Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-04-30T15:23:35.265Z] + sed s/.ipynb$// -[2024-04-30T15:23:35.265Z] + echo Managing_Jupyter_Environments.ipynb -[2024-04-30T15:23:35.265Z] + filename=Managing_Jupyter_Environments -[2024-04-30T15:23:35.265Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-04-30T15:23:35.265Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-04-30T15:23:35.265Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-04-30T15:23:35.838Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:23:35.838Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:23:35.838Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:23:35.838Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:23:48.026Z] [NbConvertApp] Writing 8623 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-04-30T15:23:48.026Z] + basename RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-04-30T15:23:48.026Z] + filename=Perform_Regionalization.ipynb -[2024-04-30T15:23:48.026Z] + echo Perform_Regionalization.ipynb -[2024-04-30T15:23:48.026Z] + sed s/.ipynb$// -[2024-04-30T15:23:48.026Z] + filename=Perform_Regionalization -[2024-04-30T15:23:48.026Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-04-30T15:23:48.026Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb -[2024-04-30T15:23:48.285Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-04-30T15:23:49.222Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:23:49.223Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:23:49.223Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:23:49.223Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:24:15.777Z] [NbConvertApp] Writing 120886 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-04-30T15:24:15.777Z] + basename RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-30T15:24:15.777Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-30T15:24:15.777Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-30T15:24:15.777Z] + sed s/.ipynb$// -[2024-04-30T15:24:15.777Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-04-30T15:24:15.777Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-04-30T15:24:15.777Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-04-30T15:24:16.721Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-04-30T15:24:17.693Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:24:17.693Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:24:17.693Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:24:17.693Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:24:35.826Z] [NbConvertApp] Writing 100697 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-04-30T15:24:35.826Z] + basename RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-04-30T15:24:35.826Z] + filename=Sensitivity_analysis.ipynb -[2024-04-30T15:24:35.826Z] + echo Sensitivity_analysis.ipynb -[2024-04-30T15:24:35.826Z] + sed s/.ipynb$// -[2024-04-30T15:24:35.826Z] + filename=Sensitivity_analysis -[2024-04-30T15:24:35.826Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-04-30T15:24:35.827Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb -[2024-04-30T15:24:35.827Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-04-30T15:24:36.396Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:24:36.396Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:24:36.396Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:24:36.396Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:24:54.469Z] [NbConvertApp] Writing 28198 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-04-30T15:24:54.469Z] + basename RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-04-30T15:24:54.469Z] + filename=time_series_analysis.ipynb -[2024-04-30T15:24:54.469Z] + echo time_series_analysis.ipynb -[2024-04-30T15:24:54.469Z] + sed s/.ipynb$// -[2024-04-30T15:24:54.469Z] + filename=time_series_analysis -[2024-04-30T15:24:54.469Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-04-30T15:24:54.469Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-master/docs/notebooks/time_series_analysis.ipynb -[2024-04-30T15:24:54.469Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-04-30T15:24:55.406Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:24:55.406Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:24:55.406Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:24:55.406Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:25:05.402Z] [NbConvertApp] Writing 190846 bytes to buildout/time_series_analysis.output.ipynb -[2024-04-30T15:25:05.402Z] + basename RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-30T15:25:05.402Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-30T15:25:05.402Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-30T15:25:05.402Z] + sed s/.ipynb$// -[2024-04-30T15:25:05.402Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-04-30T15:25:05.402Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-04-30T15:25:05.402Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-04-30T15:25:06.353Z] [NbConvertApp] Converting notebook RavenPy-master/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-04-30T15:25:07.728Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-04-30T15:25:07.728Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-04-30T15:25:07.728Z] 0.00s - to python to disable frozen modules. -[2024-04-30T15:25:07.728Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-04-30T15:26:44.264Z] [NbConvertApp] Writing 119908 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-04-30T15:26:44.264Z] + exit 1 -[2024-04-30T15:26:44.264Z] + EXIT_CODE=1 -[2024-04-30T15:26:44.264Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-04-30T15:26:44.264Z] + mkdir -p buildout/env-dump -[2024-04-30T15:26:44.264Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-04-30T15:26:44.264Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-04-30T15:26:44.264Z] + conda env export -n birdy -[2024-04-30T15:26:49.523Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-30T15:26:49.523Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-04-30T15:26:49.523Z] + conda list -n birdy --explicit -[2024-04-30T15:26:59.510Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-30T15:26:59.510Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-04-30T15:26:59.510Z] + pip freeze -[2024-04-30T15:27:00.073Z] + exit 1 +[2024-05-07T14:15:11.173Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-05-07T14:15:11.449Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-05-07T14:15:11.449Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-05-07T14:15:11.449Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-07T14:15:11.449Z] TEST_FINCH_REPO has been set to 'false' +[2024-05-07T14:15:11.449Z] FINCH_BRANCH has been set to 'master' +[2024-05-07T14:15:11.449Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-07T14:15:11.449Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-05-07T14:15:11.449Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-05-07T14:15:11.449Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-07T14:15:11.449Z] TEST_RAVEN_REPO has been set to 'true' +[2024-05-07T14:15:11.449Z] RAVEN_BRANCH has been set to 'main' +[2024-05-07T14:15:11.449Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-07T14:15:11.449Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-05-07T14:15:11.449Z] RAVENPY_BRANCH has been set to 'fixnbs_pavics_betaimage' +[2024-05-07T14:15:11.449Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-07T14:15:11.449Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-07T14:15:11.449Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-07T14:15:11.449Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-07T14:15:11.449Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-05-07T14:15:11.449Z] + git clean -fdx +[2024-05-07T14:15:14.019Z] Removing .pytest_cache/ +[2024-05-07T14:15:14.019Z] Removing PAVICS-landing-master/ +[2024-05-07T14:15:14.019Z] Removing RavenPy-fixnbs_pavics_betaimage/ +[2024-05-07T14:15:14.019Z] Removing __pycache__/ +[2024-05-07T14:15:14.019Z] Removing buildout/ +[2024-05-07T14:15:14.019Z] Removing esgf-compute-api-devel/ +[2024-05-07T14:15:14.019Z] Removing finch-master/ +[2024-05-07T14:15:14.019Z] Removing pavics-sdi-master/ +[2024-05-07T14:15:14.019Z] Removing raven-main/ +[2024-05-07T14:15:14.019Z] + ./downloadrepos +[2024-05-07T14:15:14.019Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-05-07T14:15:14.019Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-05-07T14:15:14.019Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-07T14:15:14.019Z] TEST_FINCH_REPO has been set to 'false' +[2024-05-07T14:15:14.019Z] FINCH_BRANCH has been set to 'master' +[2024-05-07T14:15:14.019Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-07T14:15:14.019Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-05-07T14:15:14.019Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-05-07T14:15:14.019Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-07T14:15:14.019Z] TEST_RAVEN_REPO has been set to 'true' +[2024-05-07T14:15:14.019Z] RAVEN_BRANCH has been set to 'main' +[2024-05-07T14:15:14.019Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-07T14:15:14.019Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-05-07T14:15:14.019Z] RAVENPY_BRANCH has been set to 'fixnbs_pavics_betaimage' +[2024-05-07T14:15:14.019Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-07T14:15:14.020Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-07T14:15:14.020Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-07T14:15:14.020Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-07T14:15:14.020Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-05-07T14:15:14.020Z] + rm -rf pavics-sdi-* +[2024-05-07T14:15:14.020Z] + + grep pavics-sdi +[2024-05-07T14:15:14.020Z] ls +[2024-05-07T14:15:14.020Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-05-07T14:15:14.020Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-05-07T14:15:14.020Z] + shift +[2024-05-07T14:15:14.020Z] + branch=master +[2024-05-07T14:15:14.020Z] + shift +[2024-05-07T14:15:14.020Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-05-07T14:15:14.020Z] + tar xz +[2024-05-07T14:15:36.105Z] + ls +[2024-05-07T14:15:36.105Z] + grep pavics-sdi +[2024-05-07T14:15:36.105Z] pavics-sdi-master +[2024-05-07T14:15:36.105Z] + set +x +[2024-05-07T14:15:36.105Z] + rm -rf finch-* +[2024-05-07T14:15:36.105Z] + ls +[2024-05-07T14:15:36.105Z] + grep finch +[2024-05-07T14:15:36.105Z] + downloadrepos https://github.com/bird-house/finch master +[2024-05-07T14:15:36.105Z] + github_repo=https://github.com/bird-house/finch +[2024-05-07T14:15:36.105Z] + shift +[2024-05-07T14:15:36.105Z] + branch=master +[2024-05-07T14:15:36.105Z] + shift +[2024-05-07T14:15:36.105Z] + tar xz +[2024-05-07T14:15:36.105Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-05-07T14:15:37.519Z] + ls +[2024-05-07T14:15:37.519Z] + grep finch +[2024-05-07T14:15:37.519Z] finch-master +[2024-05-07T14:15:37.519Z] + set +x +[2024-05-07T14:15:37.519Z] + rm -rf PAVICS-landing-* +[2024-05-07T14:15:37.519Z] + + grep PAVICS-landingls +[2024-05-07T14:15:37.519Z] +[2024-05-07T14:15:37.519Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-05-07T14:15:37.519Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-05-07T14:15:37.519Z] + shift +[2024-05-07T14:15:37.519Z] + branch=master +[2024-05-07T14:15:37.519Z] + shift +[2024-05-07T14:15:37.519Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz +[2024-05-07T14:15:37.519Z] + tar xz +[2024-05-07T14:16:04.121Z] + ls +[2024-05-07T14:16:04.121Z] + grep PAVICS-landing +[2024-05-07T14:16:04.121Z] PAVICS-landing-master +[2024-05-07T14:16:04.121Z] + set +x +[2024-05-07T14:16:04.121Z] + rm -rf raven-* +[2024-05-07T14:16:04.121Z] + ls +[2024-05-07T14:16:04.121Z] + grep raven +[2024-05-07T14:16:04.121Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-05-07T14:16:04.121Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-05-07T14:16:04.121Z] + shift +[2024-05-07T14:16:04.121Z] + branch=main +[2024-05-07T14:16:04.121Z] + shift +[2024-05-07T14:16:04.121Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-05-07T14:16:04.121Z] + tar xz +[2024-05-07T14:16:04.121Z] + ls +[2024-05-07T14:16:04.121Z] + grep raven +[2024-05-07T14:16:04.121Z] raven-main +[2024-05-07T14:16:04.121Z] + set +x +[2024-05-07T14:16:04.121Z] + rm -rf RavenPy-* +[2024-05-07T14:16:04.121Z] + ls +[2024-05-07T14:16:04.121Z] + grep RavenPy +[2024-05-07T14:16:04.121Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy fixnbs_pavics_betaimage +[2024-05-07T14:16:04.121Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-05-07T14:16:04.121Z] + shift +[2024-05-07T14:16:04.121Z] + branch=fixnbs_pavics_betaimage +[2024-05-07T14:16:04.121Z] + shift +[2024-05-07T14:16:04.121Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/fixnbs_pavics_betaimage.tar.gz +[2024-05-07T14:16:04.121Z] + tar xz +[2024-05-07T14:16:04.121Z] + grep RavenPy +[2024-05-07T14:16:04.121Z] + ls +[2024-05-07T14:16:04.121Z] RavenPy-fixnbs_pavics_betaimage +[2024-05-07T14:16:04.121Z] + set +x +[2024-05-07T14:16:04.121Z] + rm -rf esgf-compute-api-* +[2024-05-07T14:16:04.121Z] + grep esgf-compute-api +[2024-05-07T14:16:04.121Z] + ls +[2024-05-07T14:16:04.121Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-05-07T14:16:04.121Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-05-07T14:16:04.121Z] + shift +[2024-05-07T14:16:04.121Z] + branch=devel +[2024-05-07T14:16:04.121Z] + shift +[2024-05-07T14:16:04.121Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-05-07T14:16:04.121Z] + tar xz +[2024-05-07T14:16:05.086Z] + ls +[2024-05-07T14:16:05.086Z] + grep esgf-compute-api +[2024-05-07T14:16:05.086Z] esgf-compute-api-devel +[2024-05-07T14:16:05.086Z] + set +x +[2024-05-07T14:16:05.086Z] + echo master +[2024-05-07T14:16:05.086Z] + sed s@/@-@g +[2024-05-07T14:16:05.086Z] + PAVICS_SDI_BRANCH=master +[2024-05-07T14:16:05.086Z] + echo Ouranosinc/pavics-sdi +[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g +[2024-05-07T14:16:05.086Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-05-07T14:16:05.086Z] + sed s@/@-@g +[2024-05-07T14:16:05.086Z] + echo master +[2024-05-07T14:16:05.086Z] + FINCH_BRANCH=master +[2024-05-07T14:16:05.086Z] + echo bird-house/finch +[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g +[2024-05-07T14:16:05.086Z] + FINCH_REPO_NAME=finch +[2024-05-07T14:16:05.086Z] + echo master +[2024-05-07T14:16:05.086Z] + sed s@/@-@g +[2024-05-07T14:16:05.086Z] + PAVICS_LANDING_BRANCH=master +[2024-05-07T14:16:05.086Z] + echo Ouranosinc/PAVICS-landing +[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g +[2024-05-07T14:16:05.086Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-05-07T14:16:05.086Z] + sed s@/@-@g +[2024-05-07T14:16:05.086Z] + echo main +[2024-05-07T14:16:05.086Z] + RAVEN_BRANCH=main +[2024-05-07T14:16:05.086Z] + echo Ouranosinc/raven +[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g +[2024-05-07T14:16:05.086Z] + RAVEN_REPO_NAME=raven +[2024-05-07T14:16:05.086Z] + echo fixnbs_pavics_betaimage +[2024-05-07T14:16:05.086Z] + sed s@/@-@g +[2024-05-07T14:16:05.086Z] + RAVENPY_BRANCH=fixnbs_pavics_betaimage +[2024-05-07T14:16:05.086Z] + echo CSHS-CWRA/RavenPy +[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g +[2024-05-07T14:16:05.086Z] + RAVENPY_REPO_NAME=RavenPy +[2024-05-07T14:16:05.086Z] + echo devel +[2024-05-07T14:16:05.086Z] + sed s@/@-@g +[2024-05-07T14:16:05.086Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g +[2024-05-07T14:16:05.086Z] + echo ESGF/esgf-compute-api +[2024-05-07T14:16:05.086Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-05-07T14:16:05.086Z] + echo pavics-sdi-master +[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-07T14:16:05.086Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-05-07T14:16:05.086Z] + + echo finch-master +[2024-05-07T14:16:05.086Z] sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-07T14:16:05.086Z] + FINCH_DIR=finch-master +[2024-05-07T14:16:05.086Z] + echo PAVICS-landing-master +[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-07T14:16:05.086Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-05-07T14:16:05.086Z] + echo raven-main +[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-07T14:16:05.086Z] + RAVEN_DIR=raven-main +[2024-05-07T14:16:05.086Z] + echo RavenPy-fixnbs_pavics_betaimage +[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-07T14:16:05.086Z] + RAVENPY_DIR=RavenPy-fixnbs_pavics_betaimage +[2024-05-07T14:16:05.086Z] + echo esgf-compute-api-devel +[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-07T14:16:05.086Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-05-07T14:16:05.086Z] + echo true +[2024-05-07T14:16:05.086Z] + tr [:upper:] [:lower:] +[2024-05-07T14:16:05.086Z] + VERIFY_SSL=true +[2024-05-07T14:16:05.086Z] + [ xtrue = xfalse ] +[2024-05-07T14:16:05.086Z] + rm -v finch-master/setup.cfg +[2024-05-07T14:16:05.086Z] removed 'finch-master/setup.cfg' +[2024-05-07T14:16:05.086Z] + rm -v raven-main/setup.cfg +[2024-05-07T14:16:05.086Z] removed 'raven-main/setup.cfg' +[2024-05-07T14:16:05.086Z] + rm -v raven-main/pyproject.toml +[2024-05-07T14:16:05.086Z] removed 'raven-main/pyproject.toml' +[2024-05-07T14:16:05.086Z] + rm -v RavenPy-fixnbs_pavics_betaimage/setup.cfg +[2024-05-07T14:16:05.086Z] removed 'RavenPy-fixnbs_pavics_betaimage/setup.cfg' +[2024-05-07T14:16:05.087Z] + rm -v RavenPy-fixnbs_pavics_betaimage/tox.ini +[2024-05-07T14:16:05.087Z] removed 'RavenPy-fixnbs_pavics_betaimage/tox.ini' +[2024-05-07T14:16:05.087Z] + rm -v RavenPy-fixnbs_pavics_betaimage/pyproject.toml +[2024-05-07T14:16:05.087Z] removed 'RavenPy-fixnbs_pavics_betaimage/pyproject.toml' +[2024-05-07T14:16:05.087Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-05-07T14:16:05.087Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-05-07T14:16:05.087Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-05-07T14:16:05.087Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] +[2024-05-07T14:16:05.087Z] + echo false +[2024-05-07T14:16:05.087Z] + TEST_MAGPIE_AUTH=false +[2024-05-07T14:16:05.087Z] + echo false +[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] +[2024-05-07T14:16:05.087Z] + TEST_PAVICS_SDI_REPO=false +[2024-05-07T14:16:05.087Z] + echo false +[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] +[2024-05-07T14:16:05.087Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-05-07T14:16:05.087Z] + + echo false +[2024-05-07T14:16:05.087Z] tr [:upper:] [:lower:] +[2024-05-07T14:16:05.087Z] + TEST_FINCH_REPO=false +[2024-05-07T14:16:05.087Z] + echo false +[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] +[2024-05-07T14:16:05.087Z] + TEST_PAVICS_LANDING_REPO=false +[2024-05-07T14:16:05.087Z] + echo true +[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] +[2024-05-07T14:16:05.087Z] + TEST_RAVEN_REPO=true +[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] +[2024-05-07T14:16:05.087Z] + echo true +[2024-05-07T14:16:05.087Z] + TEST_RAVENPY_REPO=true +[2024-05-07T14:16:05.087Z] + echo false +[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] +[2024-05-07T14:16:05.087Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] +[2024-05-07T14:16:05.087Z] + echo false +[2024-05-07T14:16:05.087Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-05-07T14:16:05.087Z] + NOTEBOOKS_TO_TEST= +[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] +[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] +[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] +[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] +[2024-05-07T14:16:05.087Z] + [ xtrue = xtrue ] +[2024-05-07T14:16:05.087Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-05-07T14:16:05.087Z] + [ xtrue = xtrue ] +[2024-05-07T14:16:05.087Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb +[2024-05-07T14:16:05.087Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/*.ipynb +[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] +[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] +[2024-05-07T14:16:05.087Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/*.ipynb +[2024-05-07T14:16:05.370Z] + [ -n ] +[2024-05-07T14:16:05.370Z] + [ ! -z pavics.ouranos.ca ] +[2024-05-07T14:16:05.370Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-05-07T14:16:05.370Z] Will run notebooks against pavics.ouranos.ca +[2024-05-07T14:16:05.370Z] + [ -z ] +[2024-05-07T14:16:05.370Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-07T14:16:05.370Z] + git diff +[2024-05-07T14:16:05.370Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-05-07T14:16:05.370Z] + [ -n ] +[2024-05-07T14:16:05.370Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-05-07T14:16:07.922Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with +[2024-05-07T14:16:07.922Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) +[2024-05-07T14:16:07.922Z] ============================= test session starts ============================== +[2024-05-07T14:16:07.922Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 +[2024-05-07T14:16:07.922Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 +[2024-05-07T14:16:07.922Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-05-07T14:16:07.922Z] collected 243 items +[2024-05-07T14:16:07.922Z] +[2024-05-07T14:16:20.900Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-05-07T14:16:24.282Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-05-07T14:16:40.324Z] ...... [ 6%] +[2024-05-07T14:16:44.571Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb . [ 6%] +[2024-05-07T14:16:44.571Z] ..... [ 9%] +[2024-05-07T14:16:47.265Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb . [ 9%] +[2024-05-07T14:16:57.556Z] ....... [ 12%] +[2024-05-07T14:17:04.440Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-05-07T14:17:13.891Z] .............. [ 18%] +[2024-05-07T14:17:24.221Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb . [ 18%] +[2024-05-07T14:19:07.724Z] .......... [ 23%] +[2024-05-07T14:19:07.724Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb . [ 23%] +[2024-05-07T14:19:16.722Z] ....FFFFFFFF....... [ 31%] +[2024-05-07T14:19:21.998Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb . [ 31%] +[2024-05-07T14:19:33.358Z] ............ [ 36%] +[2024-05-07T14:19:37.700Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb . [ 37%] +[2024-05-07T14:19:41.923Z] ..... [ 39%] +[2024-05-07T14:19:47.216Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-05-07T14:19:52.418Z] ..... [ 41%] +[2024-05-07T14:19:53.800Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-05-07T14:23:55.062Z] ................. [ 48%] +[2024-05-07T14:24:00.314Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-05-07T14:24:07.257Z] .... [ 51%] +[2024-05-07T14:24:08.631Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb . [ 51%] +[2024-05-07T14:25:11.218Z] ....... [ 54%] +[2024-05-07T14:25:19.308Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb . [ 54%] +[2024-05-07T14:25:50.052Z] ....... [ 57%] +[2024-05-07T14:25:58.195Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 58%] +[2024-05-07T14:26:06.497Z] ....... [ 60%] +[2024-05-07T14:26:07.869Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb . [ 61%] +[2024-05-07T14:26:31.052Z] ....... [ 64%] +[2024-05-07T14:26:39.168Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-05-07T14:27:01.672Z] ....... [ 67%] +[2024-05-07T14:27:04.941Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-05-07T14:27:33.059Z] ....... [ 70%] +[2024-05-07T14:27:35.600Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb F [ 71%] +[2024-05-07T14:27:35.600Z] FFF [ 72%] +[2024-05-07T14:27:43.705Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb . [ 72%] +[2024-05-07T14:27:53.789Z] ..... [ 74%] +[2024-05-07T14:27:55.157Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb . [ 75%] +[2024-05-07T14:28:41.820Z] .. [ 76%] +[2024-05-07T14:28:42.077Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb . [ 76%] +[2024-05-07T14:29:06.636Z] ...... [ 79%] +[2024-05-07T14:29:06.636Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-05-07T14:29:17.939Z] ............. [ 84%] +[2024-05-07T14:29:23.186Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb . [ 85%] +[2024-05-07T14:29:35.368Z] .... [ 86%] +[2024-05-07T14:29:40.639Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb . [ 87%] +[2024-05-07T14:29:42.283Z] .......... [ 91%] +[2024-05-07T14:29:52.259Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-05-07T14:34:14.492Z] .................... [100%] +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] =================================== FAILURES =================================== +[2024-05-07T14:34:14.492Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ +[2024-05-07T14:34:14.492Z] Notebook cell execution failed +[2024-05-07T14:34:14.492Z] Cell 5: Cell execution caused an exception +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] Input: +[2024-05-07T14:34:14.492Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them +[2024-05-07T14:34:14.492Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. +[2024-05-07T14:34:14.492Z] from ravenpy import OutputReader +[2024-05-07T14:34:14.492Z] from ravenpy.ravenpy import run +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files +[2024-05-07T14:34:14.492Z] run_name = run_name +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a +[2024-05-07T14:34:14.492Z] # subfolder called "outputs" +[2024-05-07T14:34:14.492Z] configdir = workdir +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-05-07T14:34:14.492Z] outputs_path = run(modelname=run_name, configdir=configdir) +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] # Get the outputs using the Output Reader object. +[2024-05-07T14:34:14.492Z] outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] Traceback: +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.492Z] RavenError Traceback (most recent call last) +[2024-05-07T14:34:14.492Z] Cell In[1], line 14 +[2024-05-07T14:34:14.492Z]  11 configdir = workdir +[2024-05-07T14:34:14.492Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. +[2024-05-07T14:34:14.492Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) +[2024-05-07T14:34:14.492Z]  16 # Get the outputs using the Output Reader object. +[2024-05-07T14:34:14.492Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-05-07T14:34:14.492Z]  320 warn(msg, category=RavenWarning) +[2024-05-07T14:34:14.492Z]  322 if messages["ERROR"]: +[2024-05-07T14:34:14.492Z] --> 323 raise RavenError( +[2024-05-07T14:34:14.492Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-05-07T14:34:14.492Z]  325 ) +[2024-05-07T14:34:14.492Z]  327 if returncode != 0: +[2024-05-07T14:34:14.492Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] RavenError: Config directory: /tmp/NB457mm4g63 +[2024-05-07T14:34:14.492Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ +[2024-05-07T14:34:14.492Z] Notebook cell execution failed +[2024-05-07T14:34:14.492Z] Cell 6: Cell execution caused an exception +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] Input: +[2024-05-07T14:34:14.492Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), +[2024-05-07T14:34:14.492Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly +[2024-05-07T14:34:14.492Z] from ravenpy import Emulator +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] # Prepare the emulator by writing files on disk +[2024-05-07T14:34:14.492Z] e = Emulator(config=m) +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] # Run the model and get the outputs. +[2024-05-07T14:34:14.492Z] outputs = e.run() +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] Traceback: +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.492Z] RavenError Traceback (most recent call last) +[2024-05-07T14:34:14.492Z] Cell In[1], line 9 +[2024-05-07T14:34:14.492Z]  6 e = Emulator(config=m) +[2024-05-07T14:34:14.492Z]  8 # Run the model and get the outputs. +[2024-05-07T14:34:14.492Z] ----> 9 outputs = e.run() +[2024-05-07T14:34:14.492Z] +[2024-05-07T14:34:14.492Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) +[2024-05-07T14:34:14.492Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): +[2024-05-07T14:34:14.492Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] +[2024-05-07T14:34:14.493Z]  66 self.write_rv(overwrite=overwrite) +[2024-05-07T14:34:14.493Z] ---> 68 self._output_path = run( +[2024-05-07T14:34:14.493Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite +[2024-05-07T14:34:14.493Z]  70 ) +[2024-05-07T14:34:14.493Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) +[2024-05-07T14:34:14.493Z]  72 return self._output +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) +[2024-05-07T14:34:14.493Z]  320 warn(msg, category=RavenWarning) +[2024-05-07T14:34:14.493Z]  322 if messages["ERROR"]: +[2024-05-07T14:34:14.493Z] --> 323 raise RavenError( +[2024-05-07T14:34:14.493Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) +[2024-05-07T14:34:14.493Z]  325 ) +[2024-05-07T14:34:14.493Z]  327 if returncode != 0: +[2024-05-07T14:34:14.493Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] RavenError: Config directory: /tmp/tmppo6gsqmq +[2024-05-07T14:34:14.493Z] :CustomOutput command: Unrecognized custom output temporal aggregation method +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ +[2024-05-07T14:34:14.493Z] Notebook cell execution failed +[2024-05-07T14:34:14.493Z] Cell 7: Cell execution caused an exception +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] Input: +[2024-05-07T14:34:14.493Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-05-07T14:34:14.493Z] outputs.files +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] Traceback: +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.493Z] NameError Traceback (most recent call last) +[2024-05-07T14:34:14.493Z] Cell In[1], line 2 +[2024-05-07T14:34:14.493Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. +[2024-05-07T14:34:14.493Z] ----> 2 outputs.files +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] NameError: name 'outputs' is not defined +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ +[2024-05-07T14:34:14.493Z] Notebook cell execution failed +[2024-05-07T14:34:14.493Z] Cell 8: Cell execution caused an exception +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] Input: +[2024-05-07T14:34:14.493Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-05-07T14:34:14.493Z] print("----------------HYDROGRAPH----------------") +[2024-05-07T14:34:14.493Z] display(outputs.hydrograph) +[2024-05-07T14:34:14.493Z] print("") +[2024-05-07T14:34:14.493Z] print("-----------------STORAGE------------------") +[2024-05-07T14:34:14.493Z] display(outputs.storage) +[2024-05-07T14:34:14.493Z] print("") +[2024-05-07T14:34:14.493Z] print("-----------------SOLUTION-----------------") +[2024-05-07T14:34:14.493Z] display(outputs.solution) +[2024-05-07T14:34:14.493Z] print("") +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] Traceback: +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.493Z] NameError Traceback (most recent call last) +[2024-05-07T14:34:14.493Z] Cell In[1], line 3 +[2024-05-07T14:34:14.493Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. +[2024-05-07T14:34:14.493Z]  2 print("----------------HYDROGRAPH----------------") +[2024-05-07T14:34:14.493Z] ----> 3 display(outputs.hydrograph) +[2024-05-07T14:34:14.493Z]  4 print("") +[2024-05-07T14:34:14.493Z]  5 print("-----------------STORAGE------------------") +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] NameError: name 'outputs' is not defined +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ +[2024-05-07T14:34:14.493Z] Notebook cell execution failed +[2024-05-07T14:34:14.493Z] Cell 9: Cell execution caused an exception +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] Input: +[2024-05-07T14:34:14.493Z] # Import the graphing utility built to handle Raven model outputs +[2024-05-07T14:34:14.493Z] from ravenpy.utilities.nb_graphs import hydrographs +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] hydrograph_objects = outputs.hydrograph +[2024-05-07T14:34:14.493Z] hydrographs(hydrograph_objects) +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] Traceback: +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.493Z] NameError Traceback (most recent call last) +[2024-05-07T14:34:14.493Z] Cell In[1], line 4 +[2024-05-07T14:34:14.493Z]  1 # Import the graphing utility built to handle Raven model outputs +[2024-05-07T14:34:14.493Z]  2 from ravenpy.utilities.nb_graphs import hydrographs +[2024-05-07T14:34:14.493Z] ----> 4 hydrograph_objects = outputs.hydrograph +[2024-05-07T14:34:14.493Z]  5 hydrographs(hydrograph_objects) +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] NameError: name 'outputs' is not defined +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ +[2024-05-07T14:34:14.493Z] Notebook cell execution failed +[2024-05-07T14:34:14.493Z] Cell 10: Cell execution caused an exception +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] Input: +[2024-05-07T14:34:14.493Z] outputs.hydrograph.q_sim.plot() +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] Traceback: +[2024-05-07T14:34:14.493Z] +[2024-05-07T14:34:14.493Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.494Z] NameError Traceback (most recent call last) +[2024-05-07T14:34:14.494Z] Cell In[1], line 1 +[2024-05-07T14:34:14.494Z] ----> 1 outputs.hydrograph.q_sim.plot() +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] NameError: name 'outputs' is not defined +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ +[2024-05-07T14:34:14.494Z] Notebook cell execution failed +[2024-05-07T14:34:14.494Z] Cell 11: Cell execution caused an exception +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] Input: +[2024-05-07T14:34:14.494Z] print(list(outputs.storage.keys())) +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] Traceback: +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.494Z] NameError Traceback (most recent call last) +[2024-05-07T14:34:14.494Z] Cell In[1], line 1 +[2024-05-07T14:34:14.494Z] ----> 1 print(list(outputs.storage.keys())) +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] NameError: name 'outputs' is not defined +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ +[2024-05-07T14:34:14.494Z] Notebook cell execution failed +[2024-05-07T14:34:14.494Z] Cell 12: Cell execution caused an exception +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] Input: +[2024-05-07T14:34:14.494Z] # Plot the "Snow" variable +[2024-05-07T14:34:14.494Z] outputs.storage["Snow"].plot() +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] Traceback: +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.494Z] NameError Traceback (most recent call last) +[2024-05-07T14:34:14.494Z] Cell In[1], line 2 +[2024-05-07T14:34:14.494Z]  1 # Plot the "Snow" variable +[2024-05-07T14:34:14.494Z] ----> 2 outputs.storage["Snow"].plot() +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] NameError: name 'outputs' is not defined +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 0 _ +[2024-05-07T14:34:14.494Z] Notebook cell execution failed +[2024-05-07T14:34:14.494Z] Cell 0: Cell execution caused an exception +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] Input: +[2024-05-07T14:34:14.494Z] import os +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] from hsclient import HydroShare, Token +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] # Authentication method using username and password +[2024-05-07T14:34:14.494Z] """ +[2024-05-07T14:34:14.494Z] username = 'XXXXX' +[2024-05-07T14:34:14.494Z] password = 'XXXXX' +[2024-05-07T14:34:14.494Z] hs = HydroShare(username=username, password=password) +[2024-05-07T14:34:14.494Z] """ +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-05-07T14:34:14.494Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] token = Token(access_token=access_token, token_type="bearer") +[2024-05-07T14:34:14.494Z] hs = HydroShare(client_id=client_id, token=token) +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] Traceback: +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.494Z] ValidationError Traceback (most recent call last) +[2024-05-07T14:34:14.494Z] Cell In[1], line 15 +[2024-05-07T14:34:14.494Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-05-07T14:34:14.494Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-05-07T14:34:14.494Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-05-07T14:34:14.494Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/pydantic/main.py:176, in BaseModel.__init__(self, **data) +[2024-05-07T14:34:14.494Z]  174 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-05-07T14:34:14.494Z]  175 __tracebackhide__ = True +[2024-05-07T14:34:14.494Z] --> 176 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-05-07T14:34:14.494Z] +[2024-05-07T14:34:14.494Z] ValidationError: 4 validation errors for Token +[2024-05-07T14:34:14.494Z] scope +[2024-05-07T14:34:14.494Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-05-07T14:34:14.495Z]  2 for r in results: +[2024-05-07T14:34:14.495Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.495Z] NameError: name 'hs' is not defined +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.495Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 2 _ +[2024-05-07T14:34:14.495Z] Notebook cell execution failed +[2024-05-07T14:34:14.495Z] Cell 2: Cell execution caused an exception +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.495Z] Input: +[2024-05-07T14:34:14.495Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-05-07T14:34:14.495Z] res.files() +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.495Z] Traceback: +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.495Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.495Z] NameError Traceback (most recent call last) +[2024-05-07T14:34:14.495Z] Cell In[1], line 1 +[2024-05-07T14:34:14.495Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-05-07T14:34:14.495Z]  2 res.files() +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.495Z] NameError: name 'hs' is not defined +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.495Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 3 _ +[2024-05-07T14:34:14.495Z] Notebook cell execution failed +[2024-05-07T14:34:14.495Z] Cell 3: Cell execution caused an exception +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.495Z] Input: +[2024-05-07T14:34:14.495Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.495Z] Traceback: +[2024-05-07T14:34:14.495Z] +[2024-05-07T14:34:14.496Z] --------------------------------------------------------------------------- +[2024-05-07T14:34:14.496Z] NameError Traceback (most recent call last) +[2024-05-07T14:34:14.496Z] Cell In[1], line 1 +[2024-05-07T14:34:14.496Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-05-07T14:34:14.496Z] +[2024-05-07T14:34:14.496Z] NameError: name 'res' is not defined +[2024-05-07T14:34:14.496Z] +[2024-05-07T14:34:14.496Z] =========================== short test summary info ============================ +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-05-07T14:34:14.496Z] ================= 12 failed, 231 passed in 1087.06s (0:18:07) ================== +[2024-05-07T14:34:14.758Z] + EXIT_CODE=1 +[2024-05-07T14:34:14.758Z] + echo true +[2024-05-07T14:34:14.758Z] + tr [:upper:] [:lower:] +[2024-05-07T14:34:14.758Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-05-07T14:34:14.758Z] + [ xtrue = xtrue ] +[2024-05-07T14:34:14.758Z] + mkdir -p buildout +[2024-05-07T14:34:14.758Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-05-07T14:34:14.758Z] + filename=Region_selection.ipynb +[2024-05-07T14:34:14.758Z] + echo Region_selection.ipynb +[2024-05-07T14:34:14.758Z] + sed s/.ipynb$// +[2024-05-07T14:34:14.758Z] + filename=Region_selection +[2024-05-07T14:34:14.758Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-05-07T14:34:14.759Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-05-07T14:34:16.726Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-05-07T14:34:17.662Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:34:17.662Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:34:17.662Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:34:17.662Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:34:29.877Z] [NbConvertApp] Writing 107223 bytes to buildout/Region_selection.output.ipynb +[2024-05-07T14:34:29.877Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-05-07T14:34:29.877Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-05-07T14:34:29.877Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-05-07T14:34:29.877Z] + sed s/.ipynb$// +[2024-05-07T14:34:29.877Z] + filename=Subset_climate_data_over_watershed +[2024-05-07T14:34:29.877Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-05-07T14:34:29.877Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-05-07T14:34:31.261Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-05-07T14:34:31.835Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:34:31.835Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:34:31.835Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:34:31.835Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:34:49.941Z] [NbConvertApp] Writing 97069 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-05-07T14:34:49.941Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-05-07T14:34:49.941Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-05-07T14:34:49.941Z] + + echo 00_Introduction_to_JupyterLab.ipynb +[2024-05-07T14:34:49.941Z] sed s/.ipynb$// +[2024-05-07T14:34:49.941Z] + filename=00_Introduction_to_JupyterLab +[2024-05-07T14:34:49.941Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-05-07T14:34:49.941Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-05-07T14:34:49.941Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-05-07T14:34:50.874Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:34:50.874Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:34:50.874Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:34:50.874Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:34:52.771Z] [NbConvertApp] Writing 13178 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-05-07T14:34:52.771Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-05-07T14:34:52.771Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-05-07T14:34:52.771Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-05-07T14:34:52.771Z] + sed s/.ipynb$// +[2024-05-07T14:34:52.771Z] + filename=01_Getting_watershed_boundaries +[2024-05-07T14:34:52.771Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-05-07T14:34:52.771Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-05-07T14:34:54.670Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-05-07T14:34:55.681Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:34:55.681Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:34:55.681Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:34:55.681Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:35:07.873Z] [NbConvertApp] Writing 109426 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-05-07T14:35:07.873Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-05-07T14:35:07.873Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-05-07T14:35:07.873Z] + sed s/.ipynb$// +[2024-05-07T14:35:07.873Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-05-07T14:35:07.873Z] + filename=02_Extract_geographical_watershed_properties +[2024-05-07T14:35:07.873Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-05-07T14:35:07.873Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-05-07T14:35:09.240Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-05-07T14:35:10.168Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:35:10.168Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:35:10.168Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:35:10.168Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:35:25.030Z] [NbConvertApp] Writing 278051 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-05-07T14:35:25.030Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-05-07T14:35:25.030Z] + filename=03_Extracting_forcing_data.ipynb +[2024-05-07T14:35:25.030Z] + echo 03_Extracting_forcing_data.ipynb +[2024-05-07T14:35:25.030Z] + sed s/.ipynb$// +[2024-05-07T14:35:25.030Z] + filename=03_Extracting_forcing_data +[2024-05-07T14:35:25.030Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-05-07T14:35:25.030Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-05-07T14:35:25.969Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-05-07T14:35:27.343Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:35:27.343Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:35:27.343Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:35:27.343Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:37:03.769Z] [NbConvertApp] Writing 107673 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-05-07T14:37:04.027Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-05-07T14:37:04.027Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-05-07T14:37:04.027Z] + sed s/.ipynb$// +[2024-05-07T14:37:04.027Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-05-07T14:37:04.027Z] + filename=04_Emulating_hydrological_models +[2024-05-07T14:37:04.027Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-05-07T14:37:04.027Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-05-07T14:37:05.935Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-05-07T14:37:06.868Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:37:06.868Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:37:06.868Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:37:06.868Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:37:21.730Z] [NbConvertApp] Writing 137339 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-05-07T14:37:21.730Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-05-07T14:37:21.730Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-05-07T14:37:21.730Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-05-07T14:37:21.730Z] + sed s/.ipynb$// +[2024-05-07T14:37:21.730Z] + filename=05_Advanced_RavenPy_configuration +[2024-05-07T14:37:21.730Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-05-07T14:37:21.730Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-05-07T14:37:22.301Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-05-07T14:37:23.231Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:37:23.231Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:37:23.231Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:37:23.231Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:37:41.290Z] [NbConvertApp] Writing 313551 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-05-07T14:37:41.290Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb +[2024-05-07T14:37:41.290Z] + filename=06_Raven_calibration.ipynb +[2024-05-07T14:37:41.290Z] + echo 06_Raven_calibration.ipynb +[2024-05-07T14:37:41.290Z] + sed s/.ipynb$// +[2024-05-07T14:37:41.290Z] + filename=06_Raven_calibration +[2024-05-07T14:37:41.290Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-05-07T14:37:41.290Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb +[2024-05-07T14:37:41.548Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-05-07T14:37:42.598Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:37:42.598Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:37:42.598Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:37:42.598Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:37:52.559Z] [NbConvertApp] Writing 16340 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-05-07T14:37:52.559Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-05-07T14:37:52.559Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-05-07T14:37:52.559Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-05-07T14:37:52.559Z] + sed s/.ipynb$// +[2024-05-07T14:37:52.559Z] + filename=07_Making_and_using_hotstart_files +[2024-05-07T14:37:52.559Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-05-07T14:37:52.559Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-05-07T14:37:53.941Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-05-07T14:37:54.874Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:37:54.874Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:37:54.874Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:37:54.874Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:38:07.064Z] [NbConvertApp] Writing 205512 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-05-07T14:38:07.064Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-07T14:38:07.064Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-07T14:38:07.064Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-07T14:38:07.064Z] + sed s/.ipynb$// +[2024-05-07T14:38:07.064Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-05-07T14:38:07.064Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-05-07T14:38:07.064Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-07T14:38:08.001Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-05-07T14:38:09.380Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:38:09.380Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:38:09.380Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:38:09.380Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:42:15.858Z] [NbConvertApp] Writing 249082 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-05-07T14:42:15.858Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-07T14:42:15.858Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-07T14:42:15.858Z] + sed s/.ipynb$// +[2024-05-07T14:42:15.858Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-07T14:42:15.858Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-05-07T14:42:15.858Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-05-07T14:42:15.858Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-07T14:42:15.858Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-05-07T14:42:15.858Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:42:15.858Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:42:15.858Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:42:15.858Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:42:25.887Z] [NbConvertApp] Writing 128174 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-05-07T14:42:25.887Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb +[2024-05-07T14:42:25.887Z] + filename=10_Data_assimilation.ipynb +[2024-05-07T14:42:25.887Z] + echo 10_Data_assimilation.ipynb +[2024-05-07T14:42:25.887Z] + sed s/.ipynb$// +[2024-05-07T14:42:25.887Z] + filename=10_Data_assimilation +[2024-05-07T14:42:25.887Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-05-07T14:42:25.887Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb +[2024-05-07T14:42:26.818Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-05-07T14:42:27.750Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:42:27.750Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:42:27.750Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:42:27.750Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:43:35.393Z] [NbConvertApp] Writing 432765 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-05-07T14:43:35.393Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-05-07T14:43:35.393Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-05-07T14:43:35.393Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-05-07T14:43:35.393Z] + sed s/.ipynb$// +[2024-05-07T14:43:35.393Z] + filename=11_Climatological_ESP_forecasting +[2024-05-07T14:43:35.393Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-05-07T14:43:35.393Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-05-07T14:43:35.393Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-05-07T14:43:35.393Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:43:35.393Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:43:35.393Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:43:35.393Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:44:14.168Z] [NbConvertApp] Writing 176184 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-05-07T14:44:14.168Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-05-07T14:44:14.168Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-05-07T14:44:14.168Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-05-07T14:44:14.168Z] + sed s/.ipynb$// +[2024-05-07T14:44:14.168Z] + filename=12_Performing_hindcasting_experiments +[2024-05-07T14:44:14.168Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-05-07T14:44:14.168Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-05-07T14:44:14.168Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-05-07T14:44:14.168Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:44:14.168Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:44:14.168Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:44:14.168Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:44:29.017Z] [NbConvertApp] Writing 150539 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-05-07T14:44:29.017Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-05-07T14:44:29.017Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-05-07T14:44:29.017Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-05-07T14:44:29.017Z] + sed s/.ipynb$// +[2024-05-07T14:44:29.017Z] + filename=Assess_probabilistic_flood_risk +[2024-05-07T14:44:29.017Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-05-07T14:44:29.017Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-05-07T14:44:30.395Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-05-07T14:44:31.771Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:44:31.771Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:44:31.771Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:44:31.771Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:44:58.296Z] [NbConvertApp] Writing 163111 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-05-07T14:44:58.296Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-07T14:44:58.296Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-07T14:44:58.296Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-07T14:44:58.296Z] + sed s/.ipynb$// +[2024-05-07T14:44:58.296Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-05-07T14:44:58.296Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-05-07T14:44:58.296Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-07T14:44:59.228Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-05-07T14:45:00.164Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:45:00.164Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:45:00.164Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:45:00.164Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:45:38.909Z] [NbConvertApp] Writing 314030 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-05-07T14:45:38.909Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-05-07T14:45:38.909Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-05-07T14:45:38.909Z] + sed s/.ipynb$// +[2024-05-07T14:45:38.909Z] + echo Distributed_hydrological_modelling.ipynb +[2024-05-07T14:45:38.909Z] + filename=Distributed_hydrological_modelling +[2024-05-07T14:45:38.909Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-05-07T14:45:38.909Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-05-07T14:45:38.909Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-05-07T14:45:38.909Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:45:38.909Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:45:38.909Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:45:38.909Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:46:10.998Z] [NbConvertApp] Writing 102750 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-05-07T14:46:10.999Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb +[2024-05-07T14:46:10.999Z] + filename=HydroShare_integration.ipynb +[2024-05-07T14:46:10.999Z] + echo HydroShare_integration.ipynb +[2024-05-07T14:46:10.999Z] + sed s/.ipynb$// +[2024-05-07T14:46:10.999Z] + filename=HydroShare_integration +[2024-05-07T14:46:10.999Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-05-07T14:46:10.999Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb +[2024-05-07T14:46:10.999Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-05-07T14:46:10.999Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:46:10.999Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:46:10.999Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:46:10.999Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:46:14.288Z] [NbConvertApp] Writing 11583 bytes to buildout/HydroShare_integration.output.ipynb +[2024-05-07T14:46:14.550Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-05-07T14:46:14.550Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-05-07T14:46:14.550Z] + sed s/.ipynb$//+ +[2024-05-07T14:46:14.550Z] echo Hydrological_realtime_forecasting.ipynb +[2024-05-07T14:46:14.550Z] + filename=Hydrological_realtime_forecasting +[2024-05-07T14:46:14.550Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-05-07T14:46:14.550Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-05-07T14:46:16.459Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-05-07T14:46:17.021Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:46:17.021Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:46:17.021Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:46:17.021Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:46:38.996Z] [NbConvertApp] Writing 153509 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-05-07T14:46:38.996Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-05-07T14:46:38.996Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-05-07T14:46:38.996Z] + sed s/.ipynb$// +[2024-05-07T14:46:38.996Z] + echo Managing_Jupyter_Environments.ipynb +[2024-05-07T14:46:38.996Z] + filename=Managing_Jupyter_Environments +[2024-05-07T14:46:38.996Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-05-07T14:46:38.996Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-05-07T14:46:38.996Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-05-07T14:46:38.996Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:46:38.996Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:46:38.996Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:46:38.996Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:46:47.130Z] [NbConvertApp] Writing 7996 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-05-07T14:46:47.130Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb +[2024-05-07T14:46:47.130Z] + filename=Perform_Regionalization.ipynb +[2024-05-07T14:46:47.130Z] + + echo Perform_Regionalization.ipynbsed +[2024-05-07T14:46:47.130Z] s/.ipynb$// +[2024-05-07T14:46:47.130Z] + filename=Perform_Regionalization +[2024-05-07T14:46:47.130Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-05-07T14:46:47.130Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb +[2024-05-07T14:46:48.517Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-05-07T14:46:49.453Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:46:49.453Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:46:49.453Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:46:49.453Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:47:21.616Z] [NbConvertApp] Writing 120973 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-05-07T14:47:21.616Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-07T14:47:21.616Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-07T14:47:21.616Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-07T14:47:21.616Z] + sed s/.ipynb$// +[2024-05-07T14:47:21.616Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-05-07T14:47:21.616Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-05-07T14:47:21.617Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-07T14:47:21.617Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-05-07T14:47:21.617Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:47:21.617Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:47:21.617Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:47:21.617Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:47:36.522Z] [NbConvertApp] Writing 118105 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-05-07T14:47:36.522Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb +[2024-05-07T14:47:36.522Z] + filename=Sensitivity_analysis.ipynb +[2024-05-07T14:47:36.522Z] + + echosed Sensitivity_analysis.ipynb s/.ipynb$// +[2024-05-07T14:47:36.522Z] +[2024-05-07T14:47:36.522Z] + filename=Sensitivity_analysis +[2024-05-07T14:47:36.522Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-05-07T14:47:36.522Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb +[2024-05-07T14:47:37.468Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-05-07T14:47:38.407Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:47:38.407Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:47:38.407Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:47:38.407Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:47:56.643Z] [NbConvertApp] Writing 28129 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-05-07T14:47:56.643Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb +[2024-05-07T14:47:56.643Z] + filename=time_series_analysis.ipynb +[2024-05-07T14:47:56.643Z] + sed s/.ipynb$// +[2024-05-07T14:47:56.643Z] + echo time_series_analysis.ipynb +[2024-05-07T14:47:56.643Z] + filename=time_series_analysis +[2024-05-07T14:47:56.643Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-05-07T14:47:56.643Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb +[2024-05-07T14:47:56.643Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-05-07T14:47:57.581Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:47:57.581Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:47:57.581Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:47:57.581Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:48:07.569Z] [NbConvertApp] Writing 190794 bytes to buildout/time_series_analysis.output.ipynb +[2024-05-07T14:48:07.569Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-07T14:48:07.569Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-07T14:48:07.569Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-07T14:48:07.569Z] + sed s/.ipynb$// +[2024-05-07T14:48:07.569Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-05-07T14:48:07.569Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-05-07T14:48:07.569Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-07T14:48:08.940Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-05-07T14:48:09.867Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-07T14:48:09.867Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-07T14:48:09.867Z] 0.00s - to python to disable frozen modules. +[2024-05-07T14:48:09.867Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-07T14:52:46.597Z] [NbConvertApp] Writing 431897 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-05-07T14:52:46.597Z] + exit 1 +[2024-05-07T14:52:46.597Z] + EXIT_CODE=1 +[2024-05-07T14:52:46.597Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-05-07T14:52:46.597Z] + mkdir -p buildout/env-dump +[2024-05-07T14:52:46.597Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-05-07T14:52:46.597Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-05-07T14:52:46.597Z] + conda env export -n birdy +[2024-05-07T14:53:04.662Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-07T14:53:04.662Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-07T14:53:04.662Z] + conda list -n birdy --explicit +[2024-05-07T14:53:16.847Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-07T14:53:16.847Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-07T14:53:16.847Z] + pip freeze +[2024-05-07T14:53:16.847Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -2123,41 +1085,41 @@ $ docker top ae24da1edc4a0194e9cb52ccec1a5c5e632c26abb05fdd192b5a4b435686a8c4 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-04-30T15:27:02.434Z] Archiving artifacts -[2024-04-30T15:27:02.510Z] Recording fingerprints +[2024-05-07T14:53:18.488Z] Archiving artifacts +[2024-05-07T14:53:18.591Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:02.753Z] Archiving artifacts -[2024-04-30T15:27:05.152Z] Recording fingerprints +[2024-05-07T14:53:19.233Z] Archiving artifacts +[2024-05-07T14:53:21.511Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:06.085Z] Archiving artifacts -[2024-04-30T15:27:06.098Z] Recording fingerprints +[2024-05-07T14:53:22.017Z] Archiving artifacts +[2024-05-07T14:53:22.235Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:06.224Z] Archiving artifacts -[2024-04-30T15:27:06.283Z] Recording fingerprints +[2024-05-07T14:53:22.299Z] Archiving artifacts +[2024-05-07T14:53:22.321Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:06.696Z] Archiving artifacts -[2024-04-30T15:27:06.744Z] Recording fingerprints +[2024-05-07T14:53:23.101Z] Archiving artifacts +[2024-05-07T14:53:23.242Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:06.912Z] Archiving artifacts -[2024-04-30T15:27:06.949Z] Recording fingerprints +[2024-05-07T14:53:23.448Z] Archiving artifacts +[2024-05-07T14:53:23.499Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:07.748Z] Archiving artifacts -[2024-04-30T15:27:07.873Z] Recording fingerprints +[2024-05-07T14:53:25.256Z] Archiving artifacts +[2024-05-07T14:53:25.308Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:07.974Z] Archiving artifacts -[2024-04-30T15:27:08.020Z] Recording fingerprints +[2024-05-07T14:53:25.566Z] Archiving artifacts +[2024-05-07T14:53:25.695Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:08.366Z] Archiving artifacts -[2024-04-30T15:27:08.803Z] Recording fingerprints +[2024-05-07T14:53:26.315Z] Archiving artifacts +[2024-05-07T14:53:26.881Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:09.047Z] Archiving artifacts -[2024-04-30T15:27:09.539Z] Recording fingerprints +[2024-05-07T14:53:26.963Z] Archiving artifacts +[2024-05-07T14:53:27.471Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-04-30T15:27:13.698Z] Archiving artifacts -[2024-04-30T15:27:13.714Z] Recording fingerprints +[2024-05-07T14:53:30.121Z] Archiving artifacts +[2024-05-07T14:53:30.243Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-04-30T15:27:14.160Z] Sending e-mails to: vu.long@ouranos.ca +[2024-05-07T14:53:31.051Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -2167,8 +1129,8 @@ $ docker top ae24da1edc4a0194e9cb52ccec1a5c5e632c26abb05fdd192b5a4b435686a8c4 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 ae24da1edc4a0194e9cb52ccec1a5c5e632c26abb05fdd192b5a4b435686a8c4 -$ docker rm -f ae24da1edc4a0194e9cb52ccec1a5c5e632c26abb05fdd192b5a4b435686a8c4 +$ docker stop --time=1 8f2a7bfc267b19242a9dc42bf8abcee78073955e0fdf9521c0c7665da96d5f01 +$ docker rm -f 8f2a7bfc267b19242a9dc42bf8abcee78073955e0fdf9521c0c7665da96d5f01 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From 2cd37ececce7d8f50423ce20c245ca35e0a29627 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 7 May 2024 11:48:56 -0400 Subject: [PATCH 091/104] docker: backport RavenPy/pull/360 to fix nb '04_Emulating...' --- docker/Dockerfile.testing | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 07f5f9d..0f951c0 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -1,6 +1,6 @@ # For testing quickly without having to do a full rebuild. -FROM pavics/workflow-tests:py310-231107-update240130 +FROM pavics/workflow-tests:py311-240506 #ENV ESMFMKFILE="/opt/conda/envs/birdy/lib/esmf.mk" @@ -11,9 +11,10 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.2 ravenpy==0.13.0 pydantic==2.6.3 \ - && mamba clean --all --yes \ - && pip install --no-cache-dir --upgrade figanos + && pip install --no-cache-dir git+https://github.com/CSHS-CWRA/RavenPy.git@8f7fb441f1ff11d0992d46d35ba85150667803c5 +# && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.2 ravenpy==0.13.0 pydantic==2.6.3 \ +# && mamba clean --all --yes \ +# && pip install --no-cache-dir --upgrade figanos # && pip uninstall -y ravenpy \ # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy ravenpy aiohttp From 06645a7cd272d31a28de3ea61c78cd785651f5c6 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 7 May 2024 11:57:22 -0400 Subject: [PATCH 092/104] docker: use official ravenpy 0.13.1 backport branch --- docker/Dockerfile.testing | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 0f951c0..264a06f 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -11,7 +11,7 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && pip install --no-cache-dir git+https://github.com/CSHS-CWRA/RavenPy.git@8f7fb441f1ff11d0992d46d35ba85150667803c5 + && pip install --no-cache-dir git+https://github.com/CSHS-CWRA/RavenPy.git@1977732c8dbf39ea7d563e7e30052707ba8fb2ec # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.2 ravenpy==0.13.0 pydantic==2.6.3 \ # && mamba clean --all --yes \ # && pip install --no-cache-dir --upgrade figanos From 8f69876d7bd32ebddca50251b8cb20565e3dedff Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 7 May 2024 15:37:24 -0400 Subject: [PATCH 093/104] docker: need to force uninstall ravenpy before installing it from source Otherwise the new install did not install anything because it's the same version. --- docker/Dockerfile.testing | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 264a06f..9faac6c 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -11,6 +11,7 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ + && pip uninstall -y ravenpy \ && pip install --no-cache-dir git+https://github.com/CSHS-CWRA/RavenPy.git@1977732c8dbf39ea7d563e7e30052707ba8fb2ec # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.2 ravenpy==0.13.0 pydantic==2.6.3 \ # && mamba clean --all --yes \ From 3d3b14d830664a5411819b484a58461e5855dd16 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 7 May 2024 16:21:13 -0400 Subject: [PATCH 094/104] docker: prevent unknown jupyterlab-git downgrade to 0.8.2 See docker/saved_buildout/conda-env-export.yml. --- docker/Dockerfile.testing | 6 +++--- docker/environment.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 9faac6c..1354724 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -12,9 +12,9 @@ USER root # Keep same channel ordering to not revert anything. RUN umask 0000 \ && pip uninstall -y ravenpy \ - && pip install --no-cache-dir git+https://github.com/CSHS-CWRA/RavenPy.git@1977732c8dbf39ea7d563e7e30052707ba8fb2ec -# && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy xscen==0.8.2 ravenpy==0.13.0 pydantic==2.6.3 \ -# && mamba clean --all --yes \ + && pip install --no-cache-dir git+https://github.com/CSHS-CWRA/RavenPy.git@1977732c8dbf39ea7d563e7e30052707ba8fb2ec \ + && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.50.0 \ + && mamba clean --all --yes # && pip install --no-cache-dir --upgrade figanos # && pip uninstall -y ravenpy \ # && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c defaults -n birdy ravenpy aiohttp diff --git a/docker/environment.yml b/docker/environment.yml index b23f238..ebf7cbc 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -175,7 +175,7 @@ dependencies: # extension to produce .py files from notebook .ipynb files - jupytext # jupyterlab extension for git - - jupyterlab-git + - jupyterlab-git >= 0.50.0 # Voilà turns Jupyter notebooks into standalone web applications - voila # PIN jupyter-archive due to From 008928f1d140202ef46931bca9e3f46e1fe96d9a Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 7 May 2024 16:25:42 -0400 Subject: [PATCH 095/104] docker: jupyterlab-git 0.50.0 seems to conflict jupyterlab-topbar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Using the latest 0.4x series, hopefully it is compatible. ``` Could not solve for environment specs The following packages are incompatible ├─ jupyterlab-git 0.50.0 is installable with the potential options │ ├─ jupyterlab-git 0.50.0 would require │ │ └─ jupyterlab >=4,<5 , which can be installed; │ └─ jupyterlab-git 0.50.0 conflicts with any installable versions previously reported; └─ jupyterlab-topbar is not installable because there are no viable options ├─ jupyterlab-topbar 0.6.1 would require │ └─ jupyterlab >=3.0.0,<4 , which conflicts with any installable versions previously reported; └─ jupyterlab-topbar 0.6.1 would require └─ jupyterlab >=3.0.0rc10,==3.* , which does not exist (perhaps a missing channel). The command '/bin/sh -c umask 0000 && pip uninstall -y ravenpy && pip install --no-cache-dir git+https://github.com/CSHS-CWRA/RavenPy.git@1977732c8dbf39ea7d563e7e30052707ba8fb2ec && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.50.0 && mamba clean --all --yes' returned a non-zero code: 1 ``` --- docker/Dockerfile.testing | 2 +- docker/environment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index 1354724..dfe4644 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -13,7 +13,7 @@ USER root RUN umask 0000 \ && pip uninstall -y ravenpy \ && pip install --no-cache-dir git+https://github.com/CSHS-CWRA/RavenPy.git@1977732c8dbf39ea7d563e7e30052707ba8fb2ec \ - && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.50.0 \ + && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.44.0 \ && mamba clean --all --yes # && pip install --no-cache-dir --upgrade figanos # && pip uninstall -y ravenpy \ diff --git a/docker/environment.yml b/docker/environment.yml index ebf7cbc..99dd9b8 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -175,7 +175,7 @@ dependencies: # extension to produce .py files from notebook .ipynb files - jupytext # jupyterlab extension for git - - jupyterlab-git >= 0.50.0 + - jupyterlab-git >= 0.44.0 # Voilà turns Jupyter notebooks into standalone web applications - voila # PIN jupyter-archive due to From a44255e22b5df7dc089436f3c1917934eb0374b8 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Tue, 7 May 2024 17:10:20 -0400 Subject: [PATCH 096/104] docker: use official ravenpy==0.13.1 from PyPI --- docker/Dockerfile.testing | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index dfe4644..f09168a 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -12,7 +12,7 @@ USER root # Keep same channel ordering to not revert anything. RUN umask 0000 \ && pip uninstall -y ravenpy \ - && pip install --no-cache-dir git+https://github.com/CSHS-CWRA/RavenPy.git@1977732c8dbf39ea7d563e7e30052707ba8fb2ec \ + && pip install --no-cache-dir --no-deps ravenpy==0.13.1 \ && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.44.0 \ && mamba clean --all --yes # && pip install --no-cache-dir --upgrade figanos From 20c7b5eef697477641a997eaccbe3b319d47525c Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 8 May 2024 13:22:26 -0400 Subject: [PATCH 097/104] docker: install birdy.git@v0.8.7 from source To fix notebook 02_Extract_geographical_watershed_properties.ipynb. --- docker/Dockerfile.testing | 4 ++-- docker/environment.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index f09168a..ea9bb8c 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -11,8 +11,8 @@ USER root # Use 'update' for existing and 'install' for new package. # Keep same channel ordering to not revert anything. RUN umask 0000 \ - && pip uninstall -y ravenpy \ - && pip install --no-cache-dir --no-deps ravenpy==0.13.1 \ + && pip uninstall -y ravenpy birdhouse-birdy \ + && pip install --no-cache-dir --no-deps ravenpy==0.13.1 git+https://github.com/bird-house/birdy.git@v0.8.7 \ && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.44.0 \ && mamba clean --all --yes # && pip install --no-cache-dir --upgrade figanos diff --git a/docker/environment.yml b/docker/environment.yml index 99dd9b8..eaaa5e5 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -40,7 +40,7 @@ dependencies: - numpy # TODO: unpin cf_xarray due to https://github.com/xarray-contrib/cf-xarray/issues/442 - cf_xarray != 0.8.1 - - birdy >= 0.8.5 + - birdy >= 0.8.7 # - owslib>=0.23.0 # from ravenpy # - netcdf4 # from ravenpy # TODO: remove libnetcdf PIN because https://github.com/Ouranosinc/PAVICS-landing/issues/66 From 5533c894d7e93ba4164022a766cc696459c51283 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 8 May 2024 18:03:39 -0400 Subject: [PATCH 098/104] docker: use official birdhouse-birdy==0.8.7 from PyPI --- docker/Dockerfile.testing | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.testing b/docker/Dockerfile.testing index ea9bb8c..94fe5de 100644 --- a/docker/Dockerfile.testing +++ b/docker/Dockerfile.testing @@ -12,7 +12,7 @@ USER root # Keep same channel ordering to not revert anything. RUN umask 0000 \ && pip uninstall -y ravenpy birdhouse-birdy \ - && pip install --no-cache-dir --no-deps ravenpy==0.13.1 git+https://github.com/bird-house/birdy.git@v0.8.7 \ + && pip install --no-cache-dir --no-deps ravenpy==0.13.1 birdhouse-birdy==0.8.7 \ && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.44.0 \ && mamba clean --all --yes # && pip install --no-cache-dir --upgrade figanos From d205720f3c2e2b336896cab950fc94a6d81c8ad8 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 8 May 2024 18:08:10 -0400 Subject: [PATCH 099/104] release: update to use image pavics/workflow-tests:py311-240506-update240508 --- Jenkinsfile | 2 +- binder/Dockerfile | 2 +- launchcontainer | 2 +- launchnotebook | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c96ea81..6d87f8a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { // https://jenkins.io/doc/book/pipeline/syntax/ agent { docker { - image "pavics/workflow-tests:py311-240506" + image "pavics/workflow-tests:py311-240506-update240508" label 'linux && docker' } } diff --git a/binder/Dockerfile b/binder/Dockerfile index 14afbef..a1bb326 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -1,4 +1,4 @@ -FROM pavics/workflow-tests:py311-240506 +FROM pavics/workflow-tests:py311-240506-update240508 USER root diff --git a/launchcontainer b/launchcontainer index 2fbaf74..dbdaaa7 100755 --- a/launchcontainer +++ b/launchcontainer @@ -1,7 +1,7 @@ #!/bin/sh -x if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py311-240506" + DOCKER_IMAGE="pavics/workflow-tests:py311-240506-update240508" fi if [ -z "$CONTAINER_NAME" ]; then diff --git a/launchnotebook b/launchnotebook index e120288..2392d9d 100755 --- a/launchnotebook +++ b/launchnotebook @@ -7,7 +7,7 @@ if [ -z "$PORT" ]; then fi if [ -z "$DOCKER_IMAGE" ]; then - DOCKER_IMAGE="pavics/workflow-tests:py311-240506" + DOCKER_IMAGE="pavics/workflow-tests:py311-240506-update240508" fi if [ -z "$CONTAINER_NAME" ]; then From 5e281609ac95ec34311db01c2b68874178799178 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 8 May 2024 18:58:13 -0400 Subject: [PATCH 100/104] docker: py311-240506-update240508: DockerHub build log --- docker/saved_buildout/docker-buildlogs.txt | 6705 ++------------------ 1 file changed, 374 insertions(+), 6331 deletions(-) diff --git a/docker/saved_buildout/docker-buildlogs.txt b/docker/saved_buildout/docker-buildlogs.txt index 1f66413..f347c78 100644 --- a/docker/saved_buildout/docker-buildlogs.txt +++ b/docker/saved_buildout/docker-buildlogs.txt @@ -1,6331 +1,374 @@ -2024-05-06T16:42:54Z Building in Docker Cloud's infrastructure... -2024-05-06T16:42:54Z Cloning into '.'... -2024-05-06T16:42:55Z Warning: Permanently added the RSA host key for IP address '140.82.114.4' to the list of known hosts. -2024-05-06T16:42:56Z Switched to a new branch 'docker-py311-240506' -2024-05-06T16:42:56Z KernelVersion: 5.4.0-1068-aws -2024-05-06T16:42:56Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] -2024-05-06T16:42:56Z Arch: amd64 -2024-05-06T16:42:56Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 -2024-05-06T16:42:56Z ApiVersion: 1.41 -2024-05-06T16:42:56Z Platform: {u'Name': u'Docker Engine - Community'} -2024-05-06T16:42:56Z Version: 20.10.15 -2024-05-06T16:42:56Z MinAPIVersion: 1.12 -2024-05-06T16:42:56Z GitCommit: 4433bf6 -2024-05-06T16:42:56Z Os: linux -2024-05-06T16:42:56Z GoVersion: go1.17.9 -2024-05-06T16:42:56Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py311-240506... -2024-05-06T16:43:02Z #1 [internal] load build definition from Dockerfile -2024-05-06T16:43:02Z #1 transferring dockerfile: 6.99kB done -2024-05-06T16:43:02Z #1 DONE 0.1s -2024-05-06T16:43:02Z -2024-05-06T16:43:02Z #2 [internal] load .dockerignore -2024-05-06T16:43:02Z #2 transferring context: 2B done -2024-05-06T16:43:02Z #2 DONE 0.1s -2024-05-06T16:43:03Z -2024-05-06T16:43:03Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-05-06T16:43:03Z #3 ... -2024-05-06T16:43:03Z -2024-05-06T16:43:03Z #4 [auth] continuumio/miniconda3:pull token for registry-1.docker.io -2024-05-06T16:43:03Z #4 DONE 0.0s -2024-05-06T16:43:03Z -2024-05-06T16:43:03Z #3 [internal] load metadata for docker.io/continuumio/miniconda3:latest -2024-05-06T16:43:03Z #3 DONE 0.9s -2024-05-06T16:43:03Z -2024-05-06T16:43:03Z #5 [internal] load build context -2024-05-06T16:43:03Z #5 transferring context: 9.89kB done -2024-05-06T16:43:03Z #5 DONE 0.0s -2024-05-06T16:43:03Z -2024-05-06T16:43:03Z #6 [ 1/10] FROM docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b -2024-05-06T16:43:03Z #6 resolve docker.io/continuumio/miniconda3@sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b done -2024-05-06T16:43:03Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 0B / 50.08MB 0.1s -2024-05-06T16:43:03Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0B / 150.89MB 0.1s -2024-05-06T16:43:03Z #6 sha256:2016f249cdae34692a20d90fdb17432d07cf312992345d0e1e492bc36a12a35b 2.36kB / 2.36kB done -2024-05-06T16:43:03Z #6 sha256:2f63021fb73070c52ff804d164a9802b54e89ce9734eeb3c4236bddc57c75617 869B / 869B done -2024-05-06T16:43:04Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.24MB / 50.08MB 0.2s -2024-05-06T16:43:04Z #6 sha256:1f702ef68adb9e4c2b71bdec2ef2cf775120cee7edc02a8e46c4388e259d431c 5.62kB / 5.62kB done -2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 2.10MB / 31.43MB 0.2s -2024-05-06T16:43:04Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 8.39MB / 50.08MB 0.4s -2024-05-06T16:43:04Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 9.44MB / 150.89MB 0.4s -2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.24MB / 31.43MB 0.4s -2024-05-06T16:43:04Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 15.73MB / 50.08MB 0.6s -2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 9.44MB / 31.43MB 0.6s -2024-05-06T16:43:04Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 17.83MB / 150.89MB 0.7s -2024-05-06T16:43:04Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 22.02MB / 50.08MB 0.9s -2024-05-06T16:43:04Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 26.21MB / 150.89MB 0.9s -2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 13.65MB / 31.43MB 0.9s -2024-05-06T16:43:04Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 16.38MB / 31.43MB 1.0s -2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 26.21MB / 50.08MB 1.1s -2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 34.60MB / 150.89MB 1.1s -2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 29.36MB / 50.08MB 1.3s -2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 42.99MB / 150.89MB 1.3s -2024-05-06T16:43:05Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 20.97MB / 31.43MB 1.3s -2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 36.70MB / 50.08MB 1.6s -2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 52.43MB / 150.89MB 1.6s -2024-05-06T16:43:05Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.6s -2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 39.85MB / 50.08MB 1.7s -2024-05-06T16:43:05Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 1.9s -2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 65.01MB / 150.89MB 1.9s -2024-05-06T16:43:05Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 74.45MB / 150.89MB 2.0s -2024-05-06T16:43:06Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 85.98MB / 150.89MB 2.2s -2024-05-06T16:43:06Z #6 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 2.0s done -2024-05-06T16:43:06Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 -2024-05-06T16:43:06Z #6 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 2.6s done -2024-05-06T16:43:06Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 94.37MB / 150.89MB 2.7s -2024-05-06T16:43:06Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 102.76MB / 150.89MB 3.0s -2024-05-06T16:43:07Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 112.20MB / 150.89MB 3.3s -2024-05-06T16:43:07Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 120.74MB / 150.89MB 3.8s -2024-05-06T16:43:08Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 128.97MB / 150.89MB 4.3s -2024-05-06T16:43:08Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 137.36MB / 150.89MB 4.6s -2024-05-06T16:43:08Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 146.80MB / 150.89MB 4.9s -2024-05-06T16:43:09Z #6 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 150.89MB / 150.89MB 5.8s done -2024-05-06T16:43:11Z #6 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 4.9s done -2024-05-06T16:43:11Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 -2024-05-06T16:43:16Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.1s -2024-05-06T16:43:17Z #6 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 6.1s done -2024-05-06T16:43:17Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc -2024-05-06T16:43:22Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 5.1s -2024-05-06T16:43:27Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.2s -2024-05-06T16:43:31Z #6 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 14.1s done -2024-05-06T16:43:32Z #6 DONE 28.4s -2024-05-06T16:43:32Z -2024-05-06T16:43:32Z #7 [ 2/10] RUN conda update conda -n base && conda install mamba conda-pack -n base -c conda-forge -c defaults && conda clean --all --yes && conda config --set channel_priority strict && wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -C /usr/local -xvj bin/micromamba -2024-05-06T16:43:33Z #7 1.472 Channels: -2024-05-06T16:43:33Z #7 1.472 - defaults -2024-05-06T16:43:33Z #7 1.472 Platform: linux-64 -2024-05-06T16:43:38Z #7 1.472 Collecting package metadata (repodata.json): ...working... done -2024-05-06T16:43:38Z #7 5.839 Solving environment: ...working... done -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 ## Package Plan ## -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 environment location: /opt/conda -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 added / updated specs: -2024-05-06T16:43:38Z #7 6.177 - conda -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 The following packages will be downloaded: -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 package | build -2024-05-06T16:43:38Z #7 6.177 ---------------------------|----------------- -2024-05-06T16:43:38Z #7 6.177 conda-24.4.0 | py312h06a4308_0 1.2 MB -2024-05-06T16:43:38Z #7 6.177 openssl-3.0.13 | h7f8727e_1 5.2 MB -2024-05-06T16:43:38Z #7 6.177 ------------------------------------------------------------ -2024-05-06T16:43:38Z #7 6.177 Total: 6.4 MB -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 The following packages will be UPDATED: -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 conda 24.3.0-py312h06a4308_0 --> 24.4.0-py312h06a4308_0 -2024-05-06T16:43:38Z #7 6.177 openssl 3.0.13-h7f8727e_0 --> 3.0.13-h7f8727e_1 -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 -2024-05-06T16:43:38Z #7 6.177 Proceed ([y]/n)? -2024-05-06T16:43:39Z #7 6.824 -2024-05-06T16:43:39Z #7 6.824 Downloading and Extracting Packages: ...working... done -2024-05-06T16:43:39Z #7 6.824 Preparing transaction: ...working... done -2024-05-06T16:43:39Z #7 6.865 Verifying transaction: ...working... done -2024-05-06T16:43:46Z #7 7.292 Executing transaction: ...working... done -2024-05-06T16:43:48Z #7 16.29 Channels: -2024-05-06T16:43:48Z #7 16.29 - conda-forge -2024-05-06T16:43:48Z #7 16.29 - defaults -2024-05-06T16:43:48Z #7 16.29 Platform: linux-64 -2024-05-06T16:44:15Z #7 16.29 Collecting package metadata (repodata.json): ...working... done -2024-05-06T16:44:17Z #7 42.86 Solving environment: ...working... done -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 ## Package Plan ## -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 environment location: /opt/conda -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 added / updated specs: -2024-05-06T16:44:17Z #7 45.19 - conda-pack -2024-05-06T16:44:17Z #7 45.19 - mamba -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 The following packages will be downloaded: -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 package | build -2024-05-06T16:44:17Z #7 45.19 ---------------------------|----------------- -2024-05-06T16:44:17Z #7 45.19 _libgcc_mutex-0.1 | conda_forge 3 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 _openmp_mutex-4.5 | 2_gnu 23 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 c-ares-1.28.1 | hd590300_0 165 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 certifi-2024.2.2 | pyhd8ed1ab_0 157 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 conda-24.4.0 | py312h7900ff3_0 1.1 MB conda-forge -2024-05-06T16:44:17Z #7 45.19 conda-pack-0.7.1 | pyhd8ed1ab_0 32 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 fmt-10.2.1 | h00ab1b0_0 189 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 icu-73.2 | h59595ed_0 11.5 MB conda-forge -2024-05-06T16:44:17Z #7 45.19 keyutils-1.6.1 | h166bdaf_0 115 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 krb5-1.21.2 | h659d440_0 1.3 MB conda-forge -2024-05-06T16:44:17Z #7 45.19 libarchive-3.7.2 | h2aa1ff5_1 846 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libcurl-8.7.1 | hca28451_0 389 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libexpat-2.5.0 | hcb278e6_1 76 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libgcc-ng-13.2.0 | h77fa898_6 759 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libgomp-13.2.0 | h77fa898_6 410 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libiconv-1.17 | hd590300_2 689 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libmamba-1.5.8 | had39da4_0 1.6 MB conda-forge -2024-05-06T16:44:17Z #7 45.19 libmambapy-1.5.8 | py312hd9e9ff6_0 299 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libnghttp2-1.58.0 | h47da74e_1 617 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libnsl-2.0.1 | hd590300_0 33 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libsqlite-3.45.3 | h2797004_0 840 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libssh2-1.11.0 | h0841786_0 265 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libstdcxx-ng-13.2.0 | hc0a3c3a_6 3.7 MB conda-forge -2024-05-06T16:44:17Z #7 45.19 libuuid-2.38.1 | h0b41bf4_0 33 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libxcrypt-4.4.36 | hd590300_1 98 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libxml2-2.12.6 | h232c23b_2 688 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 libzlib-1.2.13 | hd590300_5 60 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 lzo-2.10 | hd590300_1001 167 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 mamba-1.5.8 | py312h9460a1c_0 63 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 openssl-3.3.0 | hd590300_0 2.8 MB conda-forge -2024-05-06T16:44:17Z #7 45.19 python-3.12.2 |hab00c5b_0_cpython 30.8 MB conda-forge -2024-05-06T16:44:17Z #7 45.19 python_abi-3.12 | 4_cp312 6 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 tk-8.6.13 |noxft_h4845f30_101 3.2 MB conda-forge -2024-05-06T16:44:17Z #7 45.19 zlib-1.2.13 | hd590300_5 91 KB conda-forge -2024-05-06T16:44:17Z #7 45.19 ------------------------------------------------------------ -2024-05-06T16:44:17Z #7 45.19 Total: 62.9 MB -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 The following NEW packages will be INSTALLED: -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 conda-pack conda-forge/noarch::conda-pack-0.7.1-pyhd8ed1ab_0 -2024-05-06T16:44:17Z #7 45.19 keyutils conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 -2024-05-06T16:44:17Z #7 45.19 libexpat conda-forge/linux-64::libexpat-2.5.0-hcb278e6_1 -2024-05-06T16:44:17Z #7 45.19 libiconv conda-forge/linux-64::libiconv-1.17-hd590300_2 -2024-05-06T16:44:17Z #7 45.19 libnsl conda-forge/linux-64::libnsl-2.0.1-hd590300_0 -2024-05-06T16:44:17Z #7 45.19 libsqlite conda-forge/linux-64::libsqlite-3.45.3-h2797004_0 -2024-05-06T16:44:17Z #7 45.19 libxcrypt conda-forge/linux-64::libxcrypt-4.4.36-hd590300_1 -2024-05-06T16:44:17Z #7 45.19 libzlib conda-forge/linux-64::libzlib-1.2.13-hd590300_5 -2024-05-06T16:44:17Z #7 45.19 lzo conda-forge/linux-64::lzo-2.10-hd590300_1001 -2024-05-06T16:44:17Z #7 45.19 mamba conda-forge/linux-64::mamba-1.5.8-py312h9460a1c_0 -2024-05-06T16:44:17Z #7 45.19 python_abi conda-forge/linux-64::python_abi-3.12-4_cp312 -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 The following packages will be UPDATED: -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 c-ares pkgs/main::c-ares-1.19.1-h5eee18b_0 --> conda-forge::c-ares-1.28.1-hd590300_0 -2024-05-06T16:44:17Z #7 45.19 fmt pkgs/main::fmt-9.1.0-hdb19cb5_0 --> conda-forge::fmt-10.2.1-h00ab1b0_0 -2024-05-06T16:44:17Z #7 45.19 icu pkgs/main::icu-73.1-h6a678d5_0 --> conda-forge::icu-73.2-h59595ed_0 -2024-05-06T16:44:17Z #7 45.19 krb5 pkgs/main::krb5-1.20.1-h143b758_1 --> conda-forge::krb5-1.21.2-h659d440_0 -2024-05-06T16:44:17Z #7 45.19 libarchive pkgs/main::libarchive-3.6.2-h6ac8c49_2 --> conda-forge::libarchive-3.7.2-h2aa1ff5_1 -2024-05-06T16:44:17Z #7 45.19 libcurl pkgs/main::libcurl-8.5.0-h251f7ec_0 --> conda-forge::libcurl-8.7.1-hca28451_0 -2024-05-06T16:44:17Z #7 45.19 libgcc-ng pkgs/main::libgcc-ng-11.2.0-h1234567_1 --> conda-forge::libgcc-ng-13.2.0-h77fa898_6 -2024-05-06T16:44:17Z #7 45.19 libgomp pkgs/main::libgomp-11.2.0-h1234567_1 --> conda-forge::libgomp-13.2.0-h77fa898_6 -2024-05-06T16:44:17Z #7 45.19 libnghttp2 pkgs/main::libnghttp2-1.57.0-h2d74bed~ --> conda-forge::libnghttp2-1.58.0-h47da74e_1 -2024-05-06T16:44:17Z #7 45.19 libssh2 pkgs/main::libssh2-1.10.0-hdbd6064_2 --> conda-forge::libssh2-1.11.0-h0841786_0 -2024-05-06T16:44:17Z #7 45.19 libstdcxx-ng pkgs/main::libstdcxx-ng-11.2.0-h12345~ --> conda-forge::libstdcxx-ng-13.2.0-hc0a3c3a_6 -2024-05-06T16:44:17Z #7 45.19 libuuid pkgs/main::libuuid-1.41.5-h5eee18b_0 --> conda-forge::libuuid-2.38.1-h0b41bf4_0 -2024-05-06T16:44:17Z #7 45.19 libxml2 pkgs/main::libxml2-2.10.4-hf1b16e4_1 --> conda-forge::libxml2-2.12.6-h232c23b_2 -2024-05-06T16:44:17Z #7 45.19 openssl pkgs/main::openssl-3.0.13-h7f8727e_1 --> conda-forge::openssl-3.3.0-hd590300_0 -2024-05-06T16:44:17Z #7 45.19 tk pkgs/main::tk-8.6.12-h1ccaba5_0 --> conda-forge::tk-8.6.13-noxft_h4845f30_101 -2024-05-06T16:44:17Z #7 45.19 zlib pkgs/main::zlib-1.2.13-h5eee18b_0 --> conda-forge::zlib-1.2.13-hd590300_5 -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 The following packages will be SUPERSEDED by a higher-priority channel: -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 _libgcc_mutex pkgs/main::_libgcc_mutex-0.1-main --> conda-forge::_libgcc_mutex-0.1-conda_forge -2024-05-06T16:44:17Z #7 45.19 _openmp_mutex pkgs/main::_openmp_mutex-5.1-1_gnu --> conda-forge::_openmp_mutex-4.5-2_gnu -2024-05-06T16:44:17Z #7 45.19 certifi pkgs/main/linux-64::certifi-2024.2.2-~ --> conda-forge/noarch::certifi-2024.2.2-pyhd8ed1ab_0 -2024-05-06T16:44:17Z #7 45.19 conda pkgs/main::conda-24.4.0-py312h06a4308~ --> conda-forge::conda-24.4.0-py312h7900ff3_0 -2024-05-06T16:44:17Z #7 45.19 libmamba pkgs/main::libmamba-1.5.8-hfe524e5_1 --> conda-forge::libmamba-1.5.8-had39da4_0 -2024-05-06T16:44:17Z #7 45.19 libmambapy pkgs/main::libmambapy-1.5.8-py312h2da~ --> conda-forge::libmambapy-1.5.8-py312hd9e9ff6_0 -2024-05-06T16:44:17Z #7 45.19 python pkgs/main::python-3.12.2-h996f2a0_0 --> conda-forge::python-3.12.2-hab00c5b_0_cpython -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 -2024-05-06T16:44:17Z #7 45.19 Proceed ([y]/n)? -2024-05-06T16:44:22Z #7 50.03 -2024-05-06T16:44:22Z #7 50.03 Downloading and Extracting Packages: ...working... done -2024-05-06T16:44:22Z #7 50.03 Preparing transaction: ...working... done -2024-05-06T16:44:24Z #7 50.34 Verifying transaction: ...working... done -2024-05-06T16:44:46Z #7 52.15 Executing transaction: ...working... done -2024-05-06T16:44:49Z #7 77.64 Will remove 36 (69.3 MB) tarball(s). -2024-05-06T16:44:49Z #7 77.64 Will remove 1 index cache(s). -2024-05-06T16:44:49Z #7 77.64 Will remove 5 (25.6 MB) package(s). -2024-05-06T16:44:49Z #7 77.64 There are no tempfile(s) to remove. -2024-05-06T16:44:49Z #7 77.64 There are no logfile(s) to remove. -2024-05-06T16:44:51Z #7 79.33 bin/micromamba -2024-05-06T16:44:53Z #7 DONE 81.5s -2024-05-06T16:44:53Z -2024-05-06T16:44:53Z #8 [ 3/10] RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y git mercurial gcc unzip patch fonts-humor-sans firefox-esr x11-utils && apt-get clean -2024-05-06T16:44:54Z #8 0.520 Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB] -2024-05-06T16:44:54Z #8 0.542 Get:2 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB] -2024-05-06T16:44:54Z #8 0.543 Get:3 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB] -2024-05-06T16:44:54Z #8 0.712 Get:4 http://deb.debian.org/debian bullseye/main amd64 Packages [8068 kB] -2024-05-06T16:44:54Z #8 1.006 Get:5 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [271 kB] -2024-05-06T16:44:55Z #8 1.641 Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] -2024-05-06T16:44:57Z #8 3.251 Fetched 8566 kB in 3s (3132 kB/s) -2024-05-06T16:44:58Z #8 3.251 Reading package lists... -2024-05-06T16:44:59Z #8 4.361 Reading package lists... -2024-05-06T16:44:59Z #8 5.432 Building dependency tree... -2024-05-06T16:44:59Z #8 5.699 Reading state information... -2024-05-06T16:44:59Z #8 6.126 git is already the newest version (1:2.30.2-1+deb11u2). -2024-05-06T16:44:59Z #8 6.126 mercurial is already the newest version (5.6.1-4). -2024-05-06T16:44:59Z #8 6.126 The following additional packages will be installed: -2024-05-06T16:44:59Z #8 6.128 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-05-06T16:44:59Z #8 6.128 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-05-06T16:44:59Z #8 6.129 dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config -2024-05-06T16:44:59Z #8 6.129 fonts-dejavu-core gcc-10 glib-networking glib-networking-common -2024-05-06T16:44:59Z #8 6.130 glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache -2024-05-06T16:44:59Z #8 6.130 hicolor-icon-theme i965-va-driver intel-media-va-driver libaom0 libapparmor1 -2024-05-06T16:44:59Z #8 6.131 libargon2-1 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 -2024-05-06T16:44:59Z #8 6.139 libatk1.0-0 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-05-06T16:44:59Z #8 6.139 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-05-06T16:44:59Z #8 6.139 libc-dev-bin libc-devtools libc6 libc6-dev libcairo-gobject2 libcairo2 -2024-05-06T16:44:59Z #8 6.139 libcap2 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 -2024-05-06T16:44:59Z #8 6.139 libctf-nobfd0 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 -2024-05-06T16:44:59Z #8 6.139 libdbus-glib-1-2 libdconf1 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 -2024-05-06T16:44:59Z #8 6.139 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 -2024-05-06T16:44:59Z #8 6.139 libepoxy0 libevent-2.1-7 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 -2024-05-06T16:44:59Z #8 6.139 libgcc-10-dev libgd3 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin -2024-05-06T16:44:59Z #8 6.139 libgdk-pixbuf2.0-common libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 -2024-05-06T16:44:59Z #8 6.139 libglx-mesa0 libglx0 libgomp1 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin -2024-05-06T16:44:59Z #8 6.139 libgtk-3-common libharfbuzz0b libicu67 libigdgmm11 libip4tc2 libisl23 -2024-05-06T16:44:59Z #8 6.139 libitm1 libjbig0 libjpeg62-turbo libjson-c5 libjson-glib-1.0-0 -2024-05-06T16:44:59Z #8 6.139 libjson-glib-1.0-common libkmod2 liblcms2-2 libllvm11 liblsan0 libmfx1 -2024-05-06T16:44:59Z #8 6.139 libmp3lame0 libmpc3 libmpfr6 libnsl-dev libnss-systemd libnuma1 libogg0 -2024-05-06T16:44:59Z #8 6.139 libopenjp2-7 libopus0 libpam-systemd libpango-1.0-0 libpangocairo-1.0-0 -2024-05-06T16:44:59Z #8 6.139 libpangoft2-1.0-0 libpciaccess0 libpixman-1-0 libpng16-16 libproxy1v5 -2024-05-06T16:44:59Z #8 6.139 libquadmath0 librest-0.7-0 librsvg2-2 librsvg2-common libsensors-config -2024-05-06T16:44:59Z #8 6.139 libsensors5 libshine3 libsnappy1v5 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 -2024-05-06T16:44:59Z #8 6.139 libspeex1 libswresample3 libthai-data libthai0 libtheora0 libtiff5 -2024-05-06T16:44:59Z #8 6.139 libtirpc-dev libtsan0 libtwolame0 libubsan1 libva-drm2 libva-x11-2 libva2 -2024-05-06T16:44:59Z #8 6.139 libvdpau-va-gl1 libvdpau1 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 -2024-05-06T16:45:00Z #8 6.139 libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwebp6 -2024-05-06T16:45:00Z #8 6.139 libwebpmux3 libx11-xcb1 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 -2024-05-06T16:45:00Z #8 6.139 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 -2024-05-06T16:45:00Z #8 6.139 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcomposite1 -2024-05-06T16:45:00Z #8 6.139 libxcursor1 libxdamage1 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 -2024-05-06T16:45:00Z #8 6.139 libxkbfile1 libxml2 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 -2024-05-06T16:45:00Z #8 6.139 libxtst6 libxv1 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common -2024-05-06T16:45:00Z #8 6.139 libzvbi0 linux-libc-dev manpages manpages-dev mesa-va-drivers -2024-05-06T16:45:00Z #8 6.139 mesa-vdpau-drivers mesa-vulkan-drivers ocl-icd-libopencl1 shared-mime-info -2024-05-06T16:45:00Z #8 6.139 systemd systemd-sysv systemd-timesyncd va-driver-all vdpau-driver-all -2024-05-06T16:45:00Z #8 6.139 xkb-data -2024-05-06T16:45:00Z #8 6.139 Suggested packages: -2024-05-06T16:45:00Z #8 6.139 binutils-doc cpp-doc gcc-10-locales fonts-stix | otf-stix fonts-lmodern -2024-05-06T16:45:00Z #8 6.139 libcanberra0 pulseaudio gcc-multilib make autoconf automake libtool flex -2024-05-06T16:45:00Z #8 6.139 bison gdb gcc-doc gcc-10-multilib gcc-10-doc i965-va-driver-shaders -2024-05-06T16:45:00Z #8 6.139 libasound2-plugins alsa-utils glibc-doc libc-l10n locales colord cups-common -2024-05-06T16:45:00Z #8 6.139 libgd-tools gvfs liblcms2-utils opus-tools pciutils librsvg2-bin lm-sensors -2024-05-06T16:45:00Z #8 6.139 speex man-browser opencl-icd ed diffutils-doc systemd-container policykit-1 -2024-05-06T16:45:00Z #8 6.139 zip nvidia-vdpau-driver nvidia-tesla-440-vdpau-driver -2024-05-06T16:45:00Z #8 6.139 nvidia-tesla-418-vdpau-driver nvidia-legacy-390xx-vdpau-driver -2024-05-06T16:45:00Z #8 6.139 nvidia-legacy-340xx-vdpau-driver mesa-utils -2024-05-06T16:45:00Z #8 6.139 Recommended packages: -2024-05-06T16:45:00Z #8 6.139 libnss-nis libnss-nisplus -2024-05-06T16:45:01Z #8 7.993 The following NEW packages will be installed: -2024-05-06T16:45:01Z #8 7.994 adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-core binutils -2024-05-06T16:45:01Z #8 7.995 binutils-common binutils-x86-64-linux-gnu cpp cpp-10 dbus dbus-user-session -2024-05-06T16:45:01Z #8 7.995 dconf-gsettings-backend dconf-service dmsetup firefox-esr fontconfig -2024-05-06T16:45:01Z #8 7.996 fontconfig-config fonts-dejavu-core fonts-humor-sans gcc gcc-10 -2024-05-06T16:45:01Z #8 7.996 glib-networking glib-networking-common glib-networking-services -2024-05-06T16:45:01Z #8 8.003 gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme -2024-05-06T16:45:01Z #8 8.003 i965-va-driver intel-media-va-driver libaom0 libapparmor1 libargon2-1 -2024-05-06T16:45:01Z #8 8.003 libasan6 libasound2 libasound2-data libatk-bridge2.0-0 libatk1.0-0 -2024-05-06T16:45:01Z #8 8.003 libatk1.0-data libatomic1 libatspi2.0-0 libavahi-client3 -2024-05-06T16:45:01Z #8 8.003 libavahi-common-data libavahi-common3 libavcodec58 libavutil56 libbinutils -2024-05-06T16:45:01Z #8 8.003 libc-dev-bin libc-devtools libc6-dev libcairo-gobject2 libcairo2 libcap2 -2024-05-06T16:45:01Z #8 8.003 libcc1-0 libcodec2-0.9 libcolord2 libcrypt-dev libcryptsetup12 libctf-nobfd0 -2024-05-06T16:45:01Z #8 8.003 libctf0 libcups2 libdatrie1 libdav1d4 libdbus-1-3 libdbus-glib-1-2 libdconf1 -2024-05-06T16:45:01Z #8 8.003 libdeflate0 libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-intel1 -2024-05-06T16:45:01Z #8 8.003 libdrm-nouveau2 libdrm-radeon1 libdrm2 libelf1 libepoxy0 libevent-2.1-7 -2024-05-06T16:45:01Z #8 8.003 libfontconfig1 libfontenc1 libfreetype6 libfribidi0 libgcc-10-dev libgd3 -2024-05-06T16:45:01Z #8 8.003 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl1 -2024-05-06T16:45:01Z #8 8.003 libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgomp1 -2024-05-06T16:45:01Z #8 8.003 libgraphite2-3 libgsm1 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b -2024-05-06T16:45:01Z #8 8.003 libicu67 libigdgmm11 libip4tc2 libisl23 libitm1 libjbig0 libjpeg62-turbo -2024-05-06T16:45:01Z #8 8.003 libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libkmod2 liblcms2-2 -2024-05-06T16:45:01Z #8 8.003 libllvm11 liblsan0 libmfx1 libmp3lame0 libmpc3 libmpfr6 libnsl-dev -2024-05-06T16:45:01Z #8 8.003 libnss-systemd libnuma1 libogg0 libopenjp2-7 libopus0 libpam-systemd -2024-05-06T16:45:01Z #8 8.003 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 -2024-05-06T16:45:01Z #8 8.003 libpixman-1-0 libpng16-16 libproxy1v5 libquadmath0 librest-0.7-0 librsvg2-2 -2024-05-06T16:45:01Z #8 8.003 librsvg2-common libsensors-config libsensors5 libshine3 libsnappy1v5 -2024-05-06T16:45:01Z #8 8.003 libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libswresample3 -2024-05-06T16:45:01Z #8 8.003 libthai-data libthai0 libtheora0 libtiff5 libtirpc-dev libtsan0 libtwolame0 -2024-05-06T16:45:01Z #8 8.003 libubsan1 libva-drm2 libva-x11-2 libva2 libvdpau-va-gl1 libvdpau1 -2024-05-06T16:45:01Z #8 8.003 libvorbis0a libvorbisenc2 libvpx6 libvulkan1 libwavpack1 libwayland-client0 -2024-05-06T16:45:01Z #8 8.003 libwayland-cursor0 libwayland-egl1 libwebp6 libwebpmux3 libx11-xcb1 -2024-05-06T16:45:01Z #8 8.003 libx264-160 libx265-192 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 -2024-05-06T16:45:01Z #8 8.003 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 -2024-05-06T16:45:01Z #8 8.003 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 -2024-05-06T16:45:01Z #8 8.003 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0 libxkbfile1 libxml2 -2024-05-06T16:45:01Z #8 8.003 libxmu6 libxmuu1 libxpm4 libxrandr2 libxshmfence1 libxt6 libxtst6 libxv1 -2024-05-06T16:45:01Z #8 8.003 libxvidcore4 libxxf86dga1 libxxf86vm1 libz3-4 libzvbi-common libzvbi0 -2024-05-06T16:45:01Z #8 8.003 linux-libc-dev manpages manpages-dev mesa-va-drivers mesa-vdpau-drivers -2024-05-06T16:45:01Z #8 8.003 mesa-vulkan-drivers ocl-icd-libopencl1 patch shared-mime-info systemd -2024-05-06T16:45:01Z #8 8.003 systemd-sysv systemd-timesyncd unzip va-driver-all vdpau-driver-all -2024-05-06T16:45:01Z #8 8.003 x11-utils xkb-data -2024-05-06T16:45:01Z #8 8.003 The following packages will be upgraded: -2024-05-06T16:45:01Z #8 8.003 libc6 -2024-05-06T16:45:01Z #8 8.043 1 upgraded, 221 newly installed, 0 to remove and 1 not upgraded. -2024-05-06T16:45:01Z #8 8.043 Need to get 238 MB of archives. -2024-05-06T16:45:01Z #8 8.043 After this operation, 891 MB of additional disk space will be used. -2024-05-06T16:45:01Z #8 8.043 Get:1 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6 amd64 2.31-13+deb11u10 [2825 kB] -2024-05-06T16:45:01Z #8 8.138 Get:2 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB] -2024-05-06T16:45:01Z #8 8.141 Get:3 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB] -2024-05-06T16:45:01Z #8 8.142 Get:4 http://deb.debian.org/debian bullseye/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB] -2024-05-06T16:45:01Z #8 8.144 Get:5 http://deb.debian.org/debian bullseye/main amd64 dmsetup amd64 2:1.02.175-2.1 [92.1 kB] -2024-05-06T16:45:01Z #8 8.149 Get:6 http://deb.debian.org/debian bullseye/main amd64 libdevmapper1.02.1 amd64 2:1.02.175-2.1 [143 kB] -2024-05-06T16:45:01Z #8 8.153 Get:7 http://deb.debian.org/debian bullseye/main amd64 libjson-c5 amd64 0.15-2+deb11u1 [42.9 kB] -2024-05-06T16:45:01Z #8 8.155 Get:8 http://deb.debian.org/debian bullseye/main amd64 libcryptsetup12 amd64 2:2.3.7-1+deb11u1 [248 kB] -2024-05-06T16:45:01Z #8 8.162 Get:9 http://deb.debian.org/debian bullseye/main amd64 libip4tc2 amd64 1.8.7-1 [34.6 kB] -2024-05-06T16:45:01Z #8 8.165 Get:10 http://deb.debian.org/debian bullseye/main amd64 libkmod2 amd64 28-1 [55.6 kB] -2024-05-06T16:45:01Z #8 8.168 Get:11 http://deb.debian.org/debian bullseye/main amd64 systemd amd64 247.3-7+deb11u4 [4502 kB] -2024-05-06T16:45:01Z #8 8.269 Get:12 http://deb.debian.org/debian bullseye/main amd64 systemd-sysv amd64 247.3-7+deb11u4 [114 kB] -2024-05-06T16:45:02Z #8 8.274 Get:13 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.28-0+deb11u1 [223 kB] -2024-05-06T16:45:02Z #8 8.278 Get:14 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.28-0+deb11u1 [244 kB] -2024-05-06T16:45:02Z #8 8.282 Get:15 http://deb.debian.org/debian bullseye/main amd64 libnss-systemd amd64 247.3-7+deb11u4 [199 kB] -2024-05-06T16:45:02Z #8 8.286 Get:16 http://deb.debian.org/debian bullseye/main amd64 libpam-systemd amd64 247.3-7+deb11u4 [283 kB] -2024-05-06T16:45:02Z #8 8.297 Get:17 http://deb.debian.org/debian bullseye/main amd64 manpages all 5.10-1 [1412 kB] -2024-05-06T16:45:02Z #8 8.316 Get:18 http://deb.debian.org/debian bullseye/main amd64 systemd-timesyncd amd64 247.3-7+deb11u4 [131 kB] -2024-05-06T16:45:02Z #8 8.320 Get:19 http://deb.debian.org/debian bullseye/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB] -2024-05-06T16:45:02Z #8 8.330 Get:20 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-common all 2.42.2+dfsg-1+deb11u1 [320 kB] -2024-05-06T16:45:02Z #8 8.338 Get:21 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] -2024-05-06T16:45:02Z #8 8.618 Get:22 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u4 [693 kB] -2024-05-06T16:45:02Z #8 8.630 Get:23 http://deb.debian.org/debian bullseye/main amd64 shared-mime-info amd64 2.0-1 [701 kB] -2024-05-06T16:45:02Z #8 8.644 Get:24 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB] -2024-05-06T16:45:02Z #8 8.668 Get:25 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB] -2024-05-06T16:45:02Z #8 8.675 Get:26 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB] -2024-05-06T16:45:02Z #8 8.681 Get:27 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] -2024-05-06T16:45:02Z #8 8.684 Get:28 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1+deb11u2 [259 kB] -2024-05-06T16:45:02Z #8 8.690 Get:29 http://deb.debian.org/debian bullseye/main amd64 libtiff5 amd64 4.2.0-1+deb11u5 [290 kB] -2024-05-06T16:45:02Z #8 8.695 Get:30 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.2+dfsg-1+deb11u1 [147 kB] -2024-05-06T16:45:02Z #8 8.700 Get:31 http://deb.debian.org/debian bullseye/main amd64 gtk-update-icon-cache amd64 3.24.24-4+deb11u3 [88.4 kB] -2024-05-06T16:45:02Z #8 8.703 Get:32 http://deb.debian.org/debian bullseye/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB] -2024-05-06T16:45:02Z #8 9.050 Get:33 http://deb.debian.org/debian bullseye/main amd64 alsa-topology-conf all 1.2.4-1 [12.8 kB] -2024-05-06T16:45:02Z #8 9.052 Get:34 http://deb.debian.org/debian bullseye/main amd64 libasound2-data all 1.2.4-1.1 [38.2 kB] -2024-05-06T16:45:02Z #8 9.054 Get:35 http://deb.debian.org/debian bullseye/main amd64 libasound2 amd64 1.2.4-1.1 [356 kB] -2024-05-06T16:45:02Z #8 9.062 Get:36 http://deb.debian.org/debian bullseye/main amd64 alsa-ucm-conf all 1.2.4-2 [28.1 kB] -2024-05-06T16:45:02Z #8 9.065 Get:37 http://deb.debian.org/debian bullseye/main amd64 libatspi2.0-0 amd64 2.38.0-4+deb11u1 [72.4 kB] -2024-05-06T16:45:02Z #8 9.069 Get:38 http://deb.debian.org/debian bullseye/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB] -2024-05-06T16:45:02Z #8 9.071 Get:39 http://deb.debian.org/debian bullseye/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB] -2024-05-06T16:45:02Z #8 9.072 Get:40 http://deb.debian.org/debian bullseye/main amd64 at-spi2-core amd64 2.38.0-4+deb11u1 [72.5 kB] -2024-05-06T16:45:02Z #8 9.074 Get:41 http://deb.debian.org/debian bullseye/main amd64 binutils-common amd64 2.35.2-2 [2220 kB] -2024-05-06T16:45:02Z #8 9.108 Get:42 http://deb.debian.org/debian bullseye/main amd64 libbinutils amd64 2.35.2-2 [570 kB] -2024-05-06T16:45:02Z #8 9.122 Get:43 http://deb.debian.org/debian bullseye/main amd64 libctf-nobfd0 amd64 2.35.2-2 [110 kB] -2024-05-06T16:45:02Z #8 9.126 Get:44 http://deb.debian.org/debian bullseye/main amd64 libctf0 amd64 2.35.2-2 [53.2 kB] -2024-05-06T16:45:02Z #8 9.139 Get:45 http://deb.debian.org/debian bullseye/main amd64 binutils-x86-64-linux-gnu amd64 2.35.2-2 [1809 kB] -2024-05-06T16:45:02Z #8 9.165 Get:46 http://deb.debian.org/debian bullseye/main amd64 binutils amd64 2.35.2-2 [61.2 kB] -2024-05-06T16:45:02Z #8 9.167 Get:47 http://deb.debian.org/debian bullseye/main amd64 libisl23 amd64 0.23-1 [676 kB] -2024-05-06T16:45:02Z #8 9.179 Get:48 http://deb.debian.org/debian bullseye/main amd64 libmpfr6 amd64 4.1.0-3 [2012 kB] -2024-05-06T16:45:02Z #8 9.213 Get:49 http://deb.debian.org/debian bullseye/main amd64 libmpc3 amd64 1.2.0-1 [45.0 kB] -2024-05-06T16:45:03Z #8 9.218 Get:50 http://deb.debian.org/debian bullseye/main amd64 cpp-10 amd64 10.2.1-6 [8528 kB] -2024-05-06T16:45:03Z #8 9.447 Get:51 http://deb.debian.org/debian bullseye/main amd64 cpp amd64 4:10.2.1-1 [19.7 kB] -2024-05-06T16:45:03Z #8 9.450 Get:52 http://deb.debian.org/debian bullseye/main amd64 dbus-user-session amd64 1.12.28-0+deb11u1 [100 kB] -2024-05-06T16:45:03Z #8 9.454 Get:53 http://deb.debian.org/debian bullseye/main amd64 libdconf1 amd64 0.38.0-2 [43.5 kB] -2024-05-06T16:45:03Z #8 9.457 Get:54 http://deb.debian.org/debian bullseye/main amd64 dconf-service amd64 0.38.0-2 [37.4 kB] -2024-05-06T16:45:03Z #8 9.458 Get:55 http://deb.debian.org/debian bullseye/main amd64 dconf-gsettings-backend amd64 0.38.0-2 [30.6 kB] -2024-05-06T16:45:03Z #8 9.460 Get:56 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-data all 2.36.0-2 [149 kB] -2024-05-06T16:45:03Z #8 9.464 Get:57 http://deb.debian.org/debian bullseye/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB] -2024-05-06T16:45:03Z #8 9.470 Get:58 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB] -2024-05-06T16:45:03Z #8 9.480 Get:59 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB] -2024-05-06T16:45:03Z #8 9.498 Get:60 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB] -2024-05-06T16:45:03Z #8 9.505 Get:61 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB] -2024-05-06T16:45:03Z #8 9.512 Get:62 http://deb.debian.org/debian bullseye/main amd64 libpixman-1-0 amd64 0.40.0-1.1~deb11u1 [543 kB] -2024-05-06T16:45:03Z #8 9.534 Get:63 http://deb.debian.org/debian bullseye/main amd64 libxcb-render0 amd64 1.14-3 [111 kB] -2024-05-06T16:45:03Z #8 9.537 Get:64 http://deb.debian.org/debian bullseye/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB] -2024-05-06T16:45:03Z #8 9.539 Get:65 http://deb.debian.org/debian bullseye/main amd64 libcairo2 amd64 1.16.0-5 [694 kB] -2024-05-06T16:45:03Z #8 9.549 Get:66 http://deb.debian.org/debian bullseye/main amd64 libcairo-gobject2 amd64 1.16.0-5 [125 kB] -2024-05-06T16:45:03Z #8 9.551 Get:67 http://deb.debian.org/debian bullseye/main amd64 libdbus-glib-1-2 amd64 0.110-6 [73.0 kB] -2024-05-06T16:45:03Z #8 9.554 Get:68 http://deb.debian.org/debian bullseye/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1 [188 kB] -2024-05-06T16:45:03Z #8 9.557 Get:69 http://deb.debian.org/debian bullseye/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB] -2024-05-06T16:45:03Z #8 9.559 Get:70 http://deb.debian.org/debian bullseye/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB] -2024-05-06T16:45:03Z #8 9.562 Get:71 http://deb.debian.org/debian bullseye/main amd64 libcolord2 amd64 1.4.5-3 [144 kB] -2024-05-06T16:45:03Z #8 9.566 Get:72 http://deb.debian.org/debian bullseye/main amd64 libavahi-common-data amd64 0.8-5+deb11u2 [124 kB] -2024-05-06T16:45:03Z #8 9.577 Get:73 http://deb.debian.org/debian bullseye/main amd64 libavahi-common3 amd64 0.8-5+deb11u2 [58.7 kB] -2024-05-06T16:45:03Z #8 9.581 Get:74 http://deb.debian.org/debian bullseye/main amd64 libavahi-client3 amd64 0.8-5+deb11u2 [62.6 kB] -2024-05-06T16:45:03Z #8 9.584 Get:75 http://deb.debian.org/debian bullseye/main amd64 libcups2 amd64 2.3.3op2-3+deb11u6 [351 kB] -2024-05-06T16:45:03Z #8 9.590 Get:76 http://deb.debian.org/debian bullseye/main amd64 libepoxy0 amd64 1.5.5-1 [193 kB] -2024-05-06T16:45:03Z #8 9.593 Get:77 http://deb.debian.org/debian bullseye/main amd64 libfribidi0 amd64 1.0.8-2+deb11u1 [64.9 kB] -2024-05-06T16:45:03Z #8 9.595 Get:78 http://deb.debian.org/debian bullseye/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB] -2024-05-06T16:45:03Z #8 9.597 Get:79 http://deb.debian.org/debian bullseye/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB] -2024-05-06T16:45:03Z #8 9.620 Get:80 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-common all 1.6.2-1 [56.9 kB] -2024-05-06T16:45:03Z #8 9.622 Get:81 http://deb.debian.org/debian bullseye/main amd64 libjson-glib-1.0-0 amd64 1.6.2-1 [65.4 kB] -2024-05-06T16:45:03Z #8 9.637 Get:82 http://deb.debian.org/debian bullseye/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB] -2024-05-06T16:45:03Z #8 9.647 Get:83 http://deb.debian.org/debian bullseye/main amd64 libthai-data all 0.1.28-3 [170 kB] -2024-05-06T16:45:03Z #8 9.650 Get:84 http://deb.debian.org/debian bullseye/main amd64 libdatrie1 amd64 0.2.13-1 [42.7 kB] -2024-05-06T16:45:03Z #8 9.653 Get:85 http://deb.debian.org/debian bullseye/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB] -2024-05-06T16:45:03Z #8 9.654 Get:86 http://deb.debian.org/debian bullseye/main amd64 libpango-1.0-0 amd64 1.46.2-3 [191 kB] -2024-05-06T16:45:03Z #8 9.658 Get:87 http://deb.debian.org/debian bullseye/main amd64 libpangoft2-1.0-0 amd64 1.46.2-3 [62.2 kB] -2024-05-06T16:45:03Z #8 9.660 Get:88 http://deb.debian.org/debian bullseye/main amd64 libpangocairo-1.0-0 amd64 1.46.2-3 [50.6 kB] -2024-05-06T16:45:03Z #8 9.662 Get:89 http://deb.debian.org/debian bullseye/main amd64 libproxy1v5 amd64 0.4.17-1 [59.5 kB] -2024-05-06T16:45:03Z #8 9.665 Get:90 http://deb.debian.org/debian bullseye/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB] -2024-05-06T16:45:03Z #8 9.668 Get:91 http://deb.debian.org/debian bullseye/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB] -2024-05-06T16:45:03Z #8 9.680 Get:92 http://deb.debian.org/debian bullseye/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB] -2024-05-06T16:45:03Z #8 9.689 Get:93 http://deb.debian.org/debian bullseye/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB] -2024-05-06T16:45:03Z #8 9.691 Get:94 http://deb.debian.org/debian bullseye/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB] -2024-05-06T16:45:03Z #8 9.695 Get:95 http://deb.debian.org/debian bullseye/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB] -2024-05-06T16:45:03Z #8 9.697 Get:96 http://deb.debian.org/debian bullseye/main amd64 librest-0.7-0 amd64 0.8.1-1.1 [33.8 kB] -2024-05-06T16:45:03Z #8 9.698 Get:97 http://deb.debian.org/debian bullseye/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB] -2024-05-06T16:45:03Z #8 9.700 Get:98 http://deb.debian.org/debian bullseye/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB] -2024-05-06T16:45:03Z #8 9.702 Get:99 http://deb.debian.org/debian bullseye/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B] -2024-05-06T16:45:03Z #8 9.704 Get:100 http://deb.debian.org/debian bullseye/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB] -2024-05-06T16:45:03Z #8 9.705 Get:101 http://deb.debian.org/debian bullseye/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB] -2024-05-06T16:45:03Z #8 9.706 Get:102 http://deb.debian.org/debian bullseye/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB] -2024-05-06T16:45:03Z #8 9.708 Get:103 http://deb.debian.org/debian bullseye/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB] -2024-05-06T16:45:03Z #8 9.710 Get:104 http://deb.debian.org/debian bullseye/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB] -2024-05-06T16:45:03Z #8 9.712 Get:105 http://deb.debian.org/debian bullseye/main amd64 xkb-data all 2.29-2 [655 kB] -2024-05-06T16:45:03Z #8 9.721 Get:106 http://deb.debian.org/debian bullseye/main amd64 libxkbcommon0 amd64 1.0.3-2 [101 kB] -2024-05-06T16:45:03Z #8 9.723 Get:107 http://deb.debian.org/debian bullseye/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB] -2024-05-06T16:45:03Z #8 9.725 Get:108 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-common all 3.24.24-4+deb11u3 [3757 kB] -2024-05-06T16:45:03Z #8 9.810 Get:109 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-0 amd64 3.24.24-4+deb11u3 [2716 kB] -2024-05-06T16:45:03Z #8 9.861 Get:110 http://deb.debian.org/debian bullseye/main amd64 libx11-xcb1 amd64 2:1.7.2-1+deb11u2 [204 kB] -2024-05-06T16:45:03Z #8 9.867 Get:111 http://deb.debian.org/debian-security bullseye-security/main amd64 firefox-esr amd64 115.10.0esr-1~deb11u1 [63.7 MB] -2024-05-06T16:45:05Z #8 11.35 Get:112 http://deb.debian.org/debian bullseye/main amd64 fonts-humor-sans all 1.0-4 [14.0 kB] -2024-05-06T16:45:05Z #8 11.35 Get:113 http://deb.debian.org/debian bullseye/main amd64 libcc1-0 amd64 10.2.1-6 [47.0 kB] -2024-05-06T16:45:05Z #8 11.35 Get:114 http://deb.debian.org/debian bullseye/main amd64 libgomp1 amd64 10.2.1-6 [99.9 kB] -2024-05-06T16:45:05Z #8 11.36 Get:115 http://deb.debian.org/debian bullseye/main amd64 libitm1 amd64 10.2.1-6 [25.8 kB] -2024-05-06T16:45:05Z #8 11.36 Get:116 http://deb.debian.org/debian bullseye/main amd64 libatomic1 amd64 10.2.1-6 [9008 B] -2024-05-06T16:45:05Z #8 11.36 Get:117 http://deb.debian.org/debian bullseye/main amd64 libasan6 amd64 10.2.1-6 [2065 kB] -2024-05-06T16:45:05Z #8 11.39 Get:118 http://deb.debian.org/debian bullseye/main amd64 liblsan0 amd64 10.2.1-6 [828 kB] -2024-05-06T16:45:05Z #8 11.42 Get:119 http://deb.debian.org/debian bullseye/main amd64 libtsan0 amd64 10.2.1-6 [2000 kB] -2024-05-06T16:45:05Z #8 11.45 Get:120 http://deb.debian.org/debian bullseye/main amd64 libubsan1 amd64 10.2.1-6 [777 kB] -2024-05-06T16:45:05Z #8 11.46 Get:121 http://deb.debian.org/debian bullseye/main amd64 libquadmath0 amd64 10.2.1-6 [145 kB] -2024-05-06T16:45:05Z #8 11.46 Get:122 http://deb.debian.org/debian bullseye/main amd64 libgcc-10-dev amd64 10.2.1-6 [2328 kB] -2024-05-06T16:45:05Z #8 11.50 Get:123 http://deb.debian.org/debian bullseye/main amd64 gcc-10 amd64 10.2.1-6 [17.0 MB] -2024-05-06T16:45:05Z #8 11.90 Get:124 http://deb.debian.org/debian bullseye/main amd64 gcc amd64 4:10.2.1-1 [5192 B] -2024-05-06T16:45:05Z #8 11.90 Get:125 http://deb.debian.org/debian bullseye/main amd64 libva2 amd64 2.10.0-1 [68.7 kB] -2024-05-06T16:45:05Z #8 11.90 Get:126 http://deb.debian.org/debian bullseye/main amd64 libdrm-common all 2.4.104-1 [14.9 kB] -2024-05-06T16:45:05Z #8 11.90 Get:127 http://deb.debian.org/debian bullseye/main amd64 libdrm2 amd64 2.4.104-1 [41.5 kB] -2024-05-06T16:45:05Z #8 11.90 Get:128 http://deb.debian.org/debian bullseye/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB] -2024-05-06T16:45:05Z #8 11.91 Get:129 http://deb.debian.org/debian bullseye/main amd64 libdrm-intel1 amd64 2.4.104-1 [71.8 kB] -2024-05-06T16:45:05Z #8 11.91 Get:130 http://deb.debian.org/debian bullseye/main amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [309 kB] -2024-05-06T16:45:05Z #8 11.92 Get:131 http://deb.debian.org/debian bullseye/main amd64 libigdgmm11 amd64 20.4.1+ds1-1 [112 kB] -2024-05-06T16:45:05Z #8 11.92 Get:132 http://deb.debian.org/debian bullseye/main amd64 intel-media-va-driver amd64 21.1.1+dfsg1-1 [1915 kB] -2024-05-06T16:45:05Z #8 11.95 Get:133 http://deb.debian.org/debian bullseye/main amd64 libaom0 amd64 1.0.0.errata1-3+deb11u1 [1120 kB] -2024-05-06T16:45:05Z #8 11.98 Get:134 http://deb.debian.org/debian bullseye/main amd64 libmfx1 amd64 21.1.0-1 [3289 kB] -2024-05-06T16:45:05Z #8 12.07 Get:135 http://deb.debian.org/debian bullseye/main amd64 libva-drm2 amd64 2.10.0-1 [19.0 kB] -2024-05-06T16:45:05Z #8 12.07 Get:136 http://deb.debian.org/debian bullseye/main amd64 libva-x11-2 amd64 2.10.0-1 [24.0 kB] -2024-05-06T16:45:05Z #8 12.07 Get:137 http://deb.debian.org/debian bullseye/main amd64 libvdpau1 amd64 1.4-3 [29.4 kB] -2024-05-06T16:45:05Z #8 12.08 Get:138 http://deb.debian.org/debian bullseye/main amd64 ocl-icd-libopencl1 amd64 2.2.14-2 [42.5 kB] -2024-05-06T16:45:05Z #8 12.08 Get:139 http://deb.debian.org/debian bullseye/main amd64 libavutil56 amd64 7:4.3.6-0+deb11u1 [312 kB] -2024-05-06T16:45:05Z #8 12.08 Get:140 http://deb.debian.org/debian bullseye/main amd64 libcodec2-0.9 amd64 0.9.2-4 [7890 kB] -2024-05-06T16:45:05Z #8 12.28 Get:141 http://deb.debian.org/debian bullseye/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB] -2024-05-06T16:45:06Z #8 12.29 Get:142 http://deb.debian.org/debian bullseye/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB] -2024-05-06T16:45:06Z #8 12.29 Get:143 http://deb.debian.org/debian bullseye/main amd64 libmp3lame0 amd64 3.100-3 [364 kB] -2024-05-06T16:45:06Z #8 12.30 Get:144 http://deb.debian.org/debian bullseye/main amd64 libopenjp2-7 amd64 2.4.0-3 [172 kB] -2024-05-06T16:45:06Z #8 12.31 Get:145 http://deb.debian.org/debian bullseye/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB] -2024-05-06T16:45:06Z #8 12.31 Get:146 http://deb.debian.org/debian bullseye/main amd64 librsvg2-2 amd64 2.50.3+dfsg-1+deb11u1 [2462 kB] -2024-05-06T16:45:06Z #8 12.37 Get:147 http://deb.debian.org/debian bullseye/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB] -2024-05-06T16:45:06Z #8 12.37 Get:148 http://deb.debian.org/debian bullseye/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB] -2024-05-06T16:45:06Z #8 12.38 Get:149 http://deb.debian.org/debian bullseye/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB] -2024-05-06T16:45:06Z #8 12.38 Get:150 http://deb.debian.org/debian bullseye/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB] -2024-05-06T16:45:06Z #8 12.39 Get:151 http://deb.debian.org/debian bullseye/main amd64 libswresample3 amd64 7:4.3.6-0+deb11u1 [110 kB] -2024-05-06T16:45:06Z #8 12.39 Get:152 http://deb.debian.org/debian bullseye/main amd64 libogg0 amd64 1.3.4-0.1 [27.3 kB] -2024-05-06T16:45:06Z #8 12.40 Get:153 http://deb.debian.org/debian bullseye/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB] -2024-05-06T16:45:06Z #8 12.40 Get:154 http://deb.debian.org/debian bullseye/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB] -2024-05-06T16:45:06Z #8 12.40 Get:155 http://deb.debian.org/debian bullseye/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB] -2024-05-06T16:45:06Z #8 12.41 Get:156 http://deb.debian.org/debian bullseye/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB] -2024-05-06T16:45:06Z #8 12.41 Get:157 http://deb.debian.org/debian bullseye/main amd64 libvpx6 amd64 1.9.0-1+deb11u2 [829 kB] -2024-05-06T16:45:06Z #8 12.43 Get:158 http://deb.debian.org/debian bullseye/main amd64 libwavpack1 amd64 5.4.0-1 [87.8 kB] -2024-05-06T16:45:06Z #8 12.43 Get:159 http://deb.debian.org/debian bullseye/main amd64 libwebpmux3 amd64 0.6.1-2.1+deb11u2 [97.7 kB] -2024-05-06T16:45:06Z #8 12.43 Get:160 http://deb.debian.org/debian bullseye/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2.1 [539 kB] -2024-05-06T16:45:06Z #8 12.45 Get:161 http://deb.debian.org/debian bullseye/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB] -2024-05-06T16:45:06Z #8 12.45 Get:162 http://deb.debian.org/debian bullseye/main amd64 libx265-192 amd64 3.4-2 [1095 kB] -2024-05-06T16:45:06Z #8 12.46 Get:163 http://deb.debian.org/debian bullseye/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB] -2024-05-06T16:45:06Z #8 12.47 Get:164 http://deb.debian.org/debian bullseye/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB] -2024-05-06T16:45:06Z #8 12.47 Get:165 http://deb.debian.org/debian bullseye/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB] -2024-05-06T16:45:06Z #8 12.48 Get:166 http://deb.debian.org/debian bullseye/main amd64 libavcodec58 amd64 7:4.3.6-0+deb11u1 [4961 kB] -2024-05-06T16:45:06Z #8 12.58 Get:167 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-dev-bin amd64 2.31-13+deb11u10 [276 kB] -2024-05-06T16:45:06Z #8 12.58 Get:168 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1.1+deb11u1 [50.0 kB] -2024-05-06T16:45:06Z #8 12.58 Get:169 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB] -2024-05-06T16:45:06Z #8 12.59 Get:170 http://deb.debian.org/debian-security bullseye-security/main amd64 libc-devtools amd64 2.31-13+deb11u10 [246 kB] -2024-05-06T16:45:06Z #8 12.59 Get:171 http://deb.debian.org/debian bullseye/main amd64 linux-libc-dev amd64 5.10.209-2 [1698 kB] -2024-05-06T16:45:06Z #8 12.61 Get:172 http://deb.debian.org/debian bullseye/main amd64 libcrypt-dev amd64 1:4.4.18-4 [104 kB] -2024-05-06T16:45:06Z #8 12.62 Get:173 http://deb.debian.org/debian bullseye/main amd64 libtirpc-dev amd64 1.3.1-1+deb11u1 [191 kB] -2024-05-06T16:45:06Z #8 12.62 Get:174 http://deb.debian.org/debian bullseye/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB] -2024-05-06T16:45:06Z #8 12.62 Get:175 http://deb.debian.org/debian-security bullseye-security/main amd64 libc6-dev amd64 2.31-13+deb11u10 [2362 kB] -2024-05-06T16:45:06Z #8 12.67 Get:176 http://deb.debian.org/debian bullseye/main amd64 libdrm-amdgpu1 amd64 2.4.104-1 [28.5 kB] -2024-05-06T16:45:06Z #8 12.68 Get:177 http://deb.debian.org/debian bullseye/main amd64 libdrm-nouveau2 amd64 2.4.104-1 [26.8 kB] -2024-05-06T16:45:06Z #8 12.68 Get:178 http://deb.debian.org/debian bullseye/main amd64 libdrm-radeon1 amd64 2.4.104-1 [30.2 kB] -2024-05-06T16:45:06Z #8 12.68 Get:179 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB] -2024-05-06T16:45:06Z #8 12.68 Get:180 http://deb.debian.org/debian bullseye/main amd64 libfontenc1 amd64 1:1.1.4-1 [24.3 kB] -2024-05-06T16:45:06Z #8 12.69 Get:181 http://deb.debian.org/debian bullseye/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.2+dfsg-1+deb11u1 [25.7 kB] -2024-05-06T16:45:06Z #8 12.69 Get:182 http://deb.debian.org/debian bullseye/main amd64 libglapi-mesa amd64 20.3.5-1 [71.7 kB] -2024-05-06T16:45:06Z #8 12.69 Get:183 http://deb.debian.org/debian bullseye/main amd64 libz3-4 amd64 4.8.10-1 [6949 kB] -2024-05-06T16:45:06Z #8 12.86 Get:184 http://deb.debian.org/debian bullseye/main amd64 libllvm11 amd64 1:11.0.1-2 [17.9 MB] -2024-05-06T16:45:06Z #8 13.26 Get:185 http://deb.debian.org/debian bullseye/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB] -2024-05-06T16:45:07Z #8 13.26 Get:186 http://deb.debian.org/debian bullseye/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB] -2024-05-06T16:45:07Z #8 13.27 Get:187 http://deb.debian.org/debian bullseye/main amd64 libvulkan1 amd64 1.2.162.0-1 [103 kB] -2024-05-06T16:45:07Z #8 13.27 Get:188 http://deb.debian.org/debian bullseye/main amd64 libgl1-mesa-dri amd64 20.3.5-1 [9633 kB] -2024-05-06T16:45:07Z #8 13.50 Get:189 http://deb.debian.org/debian bullseye/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB] -2024-05-06T16:45:07Z #8 13.50 Get:190 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB] -2024-05-06T16:45:07Z #8 13.50 Get:191 http://deb.debian.org/debian bullseye/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB] -2024-05-06T16:45:07Z #8 13.50 Get:192 http://deb.debian.org/debian bullseye/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB] -2024-05-06T16:45:07Z #8 13.51 Get:193 http://deb.debian.org/debian bullseye/main amd64 libxcb-present0 amd64 1.14-3 [101 kB] -2024-05-06T16:45:07Z #8 13.51 Get:194 http://deb.debian.org/debian bullseye/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB] -2024-05-06T16:45:07Z #8 13.52 Get:195 http://deb.debian.org/debian bullseye/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB] -2024-05-06T16:45:07Z #8 13.52 Get:196 http://deb.debian.org/debian bullseye/main amd64 libxshmfence1 amd64 1.3-1 [8820 B] -2024-05-06T16:45:07Z #8 13.52 Get:197 http://deb.debian.org/debian bullseye/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB] -2024-05-06T16:45:07Z #8 13.52 Get:198 http://deb.debian.org/debian bullseye/main amd64 libglx-mesa0 amd64 20.3.5-1 [186 kB] -2024-05-06T16:45:07Z #8 13.53 Get:199 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB] -2024-05-06T16:45:07Z #8 13.53 Get:200 http://deb.debian.org/debian bullseye/main amd64 librsvg2-common amd64 2.50.3+dfsg-1+deb11u1 [31.2 kB] -2024-05-06T16:45:07Z #8 13.53 Get:201 http://deb.debian.org/debian bullseye/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB] -2024-05-06T16:45:07Z #8 13.53 Get:202 http://deb.debian.org/debian bullseye/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB] -2024-05-06T16:45:07Z #8 13.54 Get:203 http://deb.debian.org/debian bullseye/main amd64 libvdpau-va-gl1 amd64 0.4.2-1+b1 [71.3 kB] -2024-05-06T16:45:07Z #8 13.54 Get:204 http://deb.debian.org/debian bullseye/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB] -2024-05-06T16:45:07Z #8 13.54 Get:205 http://deb.debian.org/debian bullseye/main amd64 libxmu6 amd64 2:1.1.2-2+b3 [60.8 kB] -2024-05-06T16:45:07Z #8 13.55 Get:206 http://deb.debian.org/debian bullseye/main amd64 libxaw7 amd64 2:1.0.13-1.1 [202 kB] -2024-05-06T16:45:07Z #8 13.55 Get:207 http://deb.debian.org/debian bullseye/main amd64 libxcb-randr0 amd64 1.14-3 [113 kB] -2024-05-06T16:45:07Z #8 13.55 Get:208 http://deb.debian.org/debian bullseye/main amd64 libxcb-shape0 amd64 1.14-3 [102 kB] -2024-05-06T16:45:07Z #8 13.56 Get:209 http://deb.debian.org/debian bullseye/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB] -2024-05-06T16:45:07Z #8 13.56 Get:210 http://deb.debian.org/debian bullseye/main amd64 libxkbfile1 amd64 1:1.1.0-1 [75.2 kB] -2024-05-06T16:45:07Z #8 13.56 Get:211 http://deb.debian.org/debian bullseye/main amd64 libxmuu1 amd64 2:1.1.2-2+b3 [23.9 kB] -2024-05-06T16:45:07Z #8 13.56 Get:212 http://deb.debian.org/debian bullseye/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB] -2024-05-06T16:45:07Z #8 13.56 Get:213 http://deb.debian.org/debian bullseye/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB] -2024-05-06T16:45:07Z #8 13.56 Get:214 http://deb.debian.org/debian bullseye/main amd64 manpages-dev all 5.10-1 [2309 kB] -2024-05-06T16:45:07Z #8 13.59 Get:215 http://deb.debian.org/debian bullseye/main amd64 mesa-va-drivers amd64 20.3.5-1 [2623 kB] -2024-05-06T16:45:07Z #8 13.65 Get:216 http://deb.debian.org/debian bullseye/main amd64 mesa-vdpau-drivers amd64 20.3.5-1 [2744 kB] -2024-05-06T16:45:07Z #8 13.70 Get:217 http://deb.debian.org/debian bullseye/main amd64 mesa-vulkan-drivers amd64 20.3.5-1 [4086 kB] -2024-05-06T16:45:07Z #8 13.78 Get:218 http://deb.debian.org/debian bullseye/main amd64 patch amd64 2.7.6-7 [128 kB] -2024-05-06T16:45:07Z #8 13.78 Get:219 http://deb.debian.org/debian bullseye/main amd64 unzip amd64 6.0-26+deb11u1 [172 kB] -2024-05-06T16:45:07Z #8 13.79 Get:220 http://deb.debian.org/debian bullseye/main amd64 va-driver-all amd64 2.10.0-1 [15.3 kB] -2024-05-06T16:45:07Z #8 13.79 Get:221 http://deb.debian.org/debian bullseye/main amd64 vdpau-driver-all amd64 1.4-3 [8540 B] -2024-05-06T16:45:07Z #8 13.79 Get:222 http://deb.debian.org/debian bullseye/main amd64 x11-utils amd64 7.7+5 [202 kB] -2024-05-06T16:45:07Z #8 14.13 debconf: delaying package configuration, since apt-utils is not installed -2024-05-06T16:45:07Z #8 14.19 Fetched 238 MB in 6s (41.4 MB/s) -2024-05-06T16:45:08Z #8 14.24 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-05-06T16:45:08Z #8 14.26 Preparing to unpack .../libc6_2.31-13+deb11u10_amd64.deb ... -2024-05-06T16:45:08Z #8 14.49 Unpacking libc6:amd64 (2.31-13+deb11u10) over (2.31-13+deb11u8) ... -2024-05-06T16:45:09Z #8 16.13 Setting up libc6:amd64 (2.31-13+deb11u10) ... -2024-05-06T16:45:11Z #8 17.35 Selecting previously unselected package libapparmor1:amd64. -2024-05-06T16:45:11Z #8 17.35 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12450 files and directories currently installed.) -2024-05-06T16:45:11Z #8 17.37 Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... -2024-05-06T16:45:11Z #8 17.37 Unpacking libapparmor1:amd64 (2.13.6-10) ... -2024-05-06T16:45:11Z #8 17.42 Selecting previously unselected package libcap2:amd64. -2024-05-06T16:45:11Z #8 17.42 Preparing to unpack .../1-libcap2_1%3a2.44-1_amd64.deb ... -2024-05-06T16:45:11Z #8 17.43 Unpacking libcap2:amd64 (1:2.44-1) ... -2024-05-06T16:45:11Z #8 17.48 Selecting previously unselected package libargon2-1:amd64. -2024-05-06T16:45:11Z #8 17.48 Preparing to unpack .../2-libargon2-1_0~20171227-0.2_amd64.deb ... -2024-05-06T16:45:11Z #8 17.49 Unpacking libargon2-1:amd64 (0~20171227-0.2) ... -2024-05-06T16:45:11Z #8 17.52 Selecting previously unselected package dmsetup. -2024-05-06T16:45:11Z #8 17.53 Preparing to unpack .../3-dmsetup_2%3a1.02.175-2.1_amd64.deb ... -2024-05-06T16:45:11Z #8 17.53 Unpacking dmsetup (2:1.02.175-2.1) ... -2024-05-06T16:45:11Z #8 17.59 Selecting previously unselected package libdevmapper1.02.1:amd64. -2024-05-06T16:45:11Z #8 17.59 Preparing to unpack .../4-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... -2024-05-06T16:45:11Z #8 17.59 Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-05-06T16:45:11Z #8 17.65 Selecting previously unselected package libjson-c5:amd64. -2024-05-06T16:45:11Z #8 17.65 Preparing to unpack .../5-libjson-c5_0.15-2+deb11u1_amd64.deb ... -2024-05-06T16:45:11Z #8 17.66 Unpacking libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-05-06T16:45:11Z #8 17.70 Selecting previously unselected package libcryptsetup12:amd64. -2024-05-06T16:45:11Z #8 17.70 Preparing to unpack .../6-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... -2024-05-06T16:45:11Z #8 17.71 Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-05-06T16:45:11Z #8 17.78 Selecting previously unselected package libip4tc2:amd64. -2024-05-06T16:45:11Z #8 17.79 Preparing to unpack .../7-libip4tc2_1.8.7-1_amd64.deb ... -2024-05-06T16:45:11Z #8 17.80 Unpacking libip4tc2:amd64 (1.8.7-1) ... -2024-05-06T16:45:11Z #8 17.84 Selecting previously unselected package libkmod2:amd64. -2024-05-06T16:45:11Z #8 17.84 Preparing to unpack .../8-libkmod2_28-1_amd64.deb ... -2024-05-06T16:45:11Z #8 17.85 Unpacking libkmod2:amd64 (28-1) ... -2024-05-06T16:45:11Z #8 17.90 Selecting previously unselected package systemd. -2024-05-06T16:45:11Z #8 17.91 Preparing to unpack .../9-systemd_247.3-7+deb11u4_amd64.deb ... -2024-05-06T16:45:11Z #8 17.97 Unpacking systemd (247.3-7+deb11u4) ... -2024-05-06T16:45:12Z #8 18.93 Setting up libapparmor1:amd64 (2.13.6-10) ... -2024-05-06T16:45:12Z #8 18.94 Setting up libcap2:amd64 (1:2.44-1) ... -2024-05-06T16:45:12Z #8 18.99 Setting up libargon2-1:amd64 (0~20171227-0.2) ... -2024-05-06T16:45:12Z #8 19.01 Setting up libjson-c5:amd64 (0.15-2+deb11u1) ... -2024-05-06T16:45:12Z #8 19.02 Setting up libip4tc2:amd64 (1.8.7-1) ... -2024-05-06T16:45:12Z #8 19.03 Setting up libkmod2:amd64 (28-1) ... -2024-05-06T16:45:12Z #8 19.04 Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... -2024-05-06T16:45:12Z #8 19.05 Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... -2024-05-06T16:45:12Z #8 19.06 Setting up systemd (247.3-7+deb11u4) ... -2024-05-06T16:45:12Z #8 19.10 Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. -2024-05-06T16:45:12Z #8 19.11 Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. -2024-05-06T16:45:12Z #8 19.11 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. -2024-05-06T16:45:12Z #8 19.13 Initializing machine ID from KVM UUID. -2024-05-06T16:45:13Z #8 19.57 Setting up dmsetup (2:1.02.175-2.1) ... -2024-05-06T16:45:13Z #8 19.64 Selecting previously unselected package systemd-sysv. -2024-05-06T16:45:13Z #8 19.64 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13301 files and directories currently installed.) -2024-05-06T16:45:13Z #8 19.67 Preparing to unpack .../000-systemd-sysv_247.3-7+deb11u4_amd64.deb ... -2024-05-06T16:45:13Z #8 19.67 Unpacking systemd-sysv (247.3-7+deb11u4) ... -2024-05-06T16:45:13Z #8 19.73 Selecting previously unselected package libdbus-1-3:amd64. -2024-05-06T16:45:13Z #8 19.74 Preparing to unpack .../001-libdbus-1-3_1.12.28-0+deb11u1_amd64.deb ... -2024-05-06T16:45:13Z #8 19.74 Unpacking libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-05-06T16:45:13Z #8 19.82 Selecting previously unselected package dbus. -2024-05-06T16:45:13Z #8 19.82 Preparing to unpack .../002-dbus_1.12.28-0+deb11u1_amd64.deb ... -2024-05-06T16:45:13Z #8 19.83 Unpacking dbus (1.12.28-0+deb11u1) ... -2024-05-06T16:45:13Z #8 19.93 Selecting previously unselected package libnss-systemd:amd64. -2024-05-06T16:45:13Z #8 19.93 Preparing to unpack .../003-libnss-systemd_247.3-7+deb11u4_amd64.deb ... -2024-05-06T16:45:13Z #8 19.93 Unpacking libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-05-06T16:45:13Z #8 19.99 Selecting previously unselected package libpam-systemd:amd64. -2024-05-06T16:45:13Z #8 20.00 Preparing to unpack .../004-libpam-systemd_247.3-7+deb11u4_amd64.deb ... -2024-05-06T16:45:13Z #8 20.00 Unpacking libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-05-06T16:45:13Z #8 20.08 Selecting previously unselected package manpages. -2024-05-06T16:45:13Z #8 20.08 Preparing to unpack .../005-manpages_5.10-1_all.deb ... -2024-05-06T16:45:13Z #8 20.09 Unpacking manpages (5.10-1) ... -2024-05-06T16:45:14Z #8 20.31 Selecting previously unselected package systemd-timesyncd. -2024-05-06T16:45:14Z #8 20.32 Preparing to unpack .../006-systemd-timesyncd_247.3-7+deb11u4_amd64.deb ... -2024-05-06T16:45:14Z #8 20.32 Unpacking systemd-timesyncd (247.3-7+deb11u4) ... -2024-05-06T16:45:14Z #8 20.38 Selecting previously unselected package hicolor-icon-theme. -2024-05-06T16:45:14Z #8 20.38 Preparing to unpack .../007-hicolor-icon-theme_0.17-2_all.deb ... -2024-05-06T16:45:14Z #8 20.38 Unpacking hicolor-icon-theme (0.17-2) ... -2024-05-06T16:45:14Z #8 20.48 Selecting previously unselected package libgdk-pixbuf2.0-common. -2024-05-06T16:45:14Z #8 20.48 Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.42.2+dfsg-1+deb11u1_all.deb ... -2024-05-06T16:45:14Z #8 20.49 Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-05-06T16:45:14Z #8 20.61 Selecting previously unselected package libicu67:amd64. -2024-05-06T16:45:14Z #8 20.61 Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... -2024-05-06T16:45:14Z #8 20.61 Unpacking libicu67:amd64 (67.1-7) ... -2024-05-06T16:45:16Z #8 22.30 Selecting previously unselected package libxml2:amd64. -2024-05-06T16:45:16Z #8 22.30 Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u4_amd64.deb ... -2024-05-06T16:45:16Z #8 22.31 Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-05-06T16:45:16Z #8 22.45 Selecting previously unselected package shared-mime-info. -2024-05-06T16:45:16Z #8 22.45 Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... -2024-05-06T16:45:16Z #8 22.45 Unpacking shared-mime-info (2.0-1) ... -2024-05-06T16:45:16Z #8 22.65 Selecting previously unselected package libjpeg62-turbo:amd64. -2024-05-06T16:45:16Z #8 22.65 Preparing to unpack .../012-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ... -2024-05-06T16:45:16Z #8 22.65 Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-05-06T16:45:16Z #8 22.72 Selecting previously unselected package libpng16-16:amd64. -2024-05-06T16:45:16Z #8 22.72 Preparing to unpack .../013-libpng16-16_1.6.37-3_amd64.deb ... -2024-05-06T16:45:16Z #8 22.73 Unpacking libpng16-16:amd64 (1.6.37-3) ... -2024-05-06T16:45:16Z #8 22.81 Selecting previously unselected package libdeflate0:amd64. -2024-05-06T16:45:16Z #8 22.81 Preparing to unpack .../014-libdeflate0_1.7-1_amd64.deb ... -2024-05-06T16:45:16Z #8 22.82 Unpacking libdeflate0:amd64 (1.7-1) ... -2024-05-06T16:45:16Z #8 22.87 Selecting previously unselected package libjbig0:amd64. -2024-05-06T16:45:16Z #8 22.87 Preparing to unpack .../015-libjbig0_2.1-3.1+b2_amd64.deb ... -2024-05-06T16:45:16Z #8 22.87 Unpacking libjbig0:amd64 (2.1-3.1+b2) ... -2024-05-06T16:45:16Z #8 22.92 Selecting previously unselected package libwebp6:amd64. -2024-05-06T16:45:16Z #8 22.92 Preparing to unpack .../016-libwebp6_0.6.1-2.1+deb11u2_amd64.deb ... -2024-05-06T16:45:16Z #8 22.93 Unpacking libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-05-06T16:45:16Z #8 23.01 Selecting previously unselected package libtiff5:amd64. -2024-05-06T16:45:16Z #8 23.01 Preparing to unpack .../017-libtiff5_4.2.0-1+deb11u5_amd64.deb ... -2024-05-06T16:45:16Z #8 23.01 Unpacking libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-05-06T16:45:16Z #8 23.09 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. -2024-05-06T16:45:16Z #8 23.09 Preparing to unpack .../018-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-05-06T16:45:16Z #8 23.10 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-05-06T16:45:16Z #8 23.17 Selecting previously unselected package gtk-update-icon-cache. -2024-05-06T16:45:16Z #8 23.17 Preparing to unpack .../019-gtk-update-icon-cache_3.24.24-4+deb11u3_amd64.deb ... -2024-05-06T16:45:16Z #8 23.17 Unpacking gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-05-06T16:45:17Z #8 23.26 Selecting previously unselected package adwaita-icon-theme. -2024-05-06T16:45:17Z #8 23.26 Preparing to unpack .../020-adwaita-icon-theme_3.38.0-1_all.deb ... -2024-05-06T16:45:17Z #8 23.26 Unpacking adwaita-icon-theme (3.38.0-1) ... -2024-05-06T16:45:19Z #8 26.00 Selecting previously unselected package alsa-topology-conf. -2024-05-06T16:45:19Z #8 26.00 Preparing to unpack .../021-alsa-topology-conf_1.2.4-1_all.deb ... -2024-05-06T16:45:19Z #8 26.01 Unpacking alsa-topology-conf (1.2.4-1) ... -2024-05-06T16:45:19Z #8 26.04 Selecting previously unselected package libasound2-data. -2024-05-06T16:45:19Z #8 26.04 Preparing to unpack .../022-libasound2-data_1.2.4-1.1_all.deb ... -2024-05-06T16:45:19Z #8 26.05 Unpacking libasound2-data (1.2.4-1.1) ... -2024-05-06T16:45:19Z #8 26.10 Selecting previously unselected package libasound2:amd64. -2024-05-06T16:45:19Z #8 26.10 Preparing to unpack .../023-libasound2_1.2.4-1.1_amd64.deb ... -2024-05-06T16:45:19Z #8 26.11 Unpacking libasound2:amd64 (1.2.4-1.1) ... -2024-05-06T16:45:19Z #8 26.21 Selecting previously unselected package alsa-ucm-conf. -2024-05-06T16:45:19Z #8 26.21 Preparing to unpack .../024-alsa-ucm-conf_1.2.4-2_all.deb ... -2024-05-06T16:45:19Z #8 26.21 Unpacking alsa-ucm-conf (1.2.4-2) ... -2024-05-06T16:45:19Z #8 26.28 Selecting previously unselected package libatspi2.0-0:amd64. -2024-05-06T16:45:19Z #8 26.29 Preparing to unpack .../025-libatspi2.0-0_2.38.0-4+deb11u1_amd64.deb ... -2024-05-06T16:45:19Z #8 26.29 Unpacking libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-05-06T16:45:20Z #8 26.34 Selecting previously unselected package libxi6:amd64. -2024-05-06T16:45:20Z #8 26.34 Preparing to unpack .../026-libxi6_2%3a1.7.10-1_amd64.deb ... -2024-05-06T16:45:20Z #8 26.35 Unpacking libxi6:amd64 (2:1.7.10-1) ... -2024-05-06T16:45:20Z #8 26.39 Selecting previously unselected package libxtst6:amd64. -2024-05-06T16:45:20Z #8 26.40 Preparing to unpack .../027-libxtst6_2%3a1.2.3-1_amd64.deb ... -2024-05-06T16:45:20Z #8 26.40 Unpacking libxtst6:amd64 (2:1.2.3-1) ... -2024-05-06T16:45:20Z #8 26.44 Selecting previously unselected package at-spi2-core. -2024-05-06T16:45:20Z #8 26.44 Preparing to unpack .../028-at-spi2-core_2.38.0-4+deb11u1_amd64.deb ... -2024-05-06T16:45:20Z #8 26.45 Unpacking at-spi2-core (2.38.0-4+deb11u1) ... -2024-05-06T16:45:20Z #8 26.50 Selecting previously unselected package binutils-common:amd64. -2024-05-06T16:45:20Z #8 26.50 Preparing to unpack .../029-binutils-common_2.35.2-2_amd64.deb ... -2024-05-06T16:45:20Z #8 26.51 Unpacking binutils-common:amd64 (2.35.2-2) ... -2024-05-06T16:45:20Z #8 26.89 Selecting previously unselected package libbinutils:amd64. -2024-05-06T16:45:20Z #8 26.89 Preparing to unpack .../030-libbinutils_2.35.2-2_amd64.deb ... -2024-05-06T16:45:20Z #8 26.91 Unpacking libbinutils:amd64 (2.35.2-2) ... -2024-05-06T16:45:20Z #8 27.07 Selecting previously unselected package libctf-nobfd0:amd64. -2024-05-06T16:45:20Z #8 27.07 Preparing to unpack .../031-libctf-nobfd0_2.35.2-2_amd64.deb ... -2024-05-06T16:45:20Z #8 27.08 Unpacking libctf-nobfd0:amd64 (2.35.2-2) ... -2024-05-06T16:45:20Z #8 27.13 Selecting previously unselected package libctf0:amd64. -2024-05-06T16:45:20Z #8 27.13 Preparing to unpack .../032-libctf0_2.35.2-2_amd64.deb ... -2024-05-06T16:45:20Z #8 27.14 Unpacking libctf0:amd64 (2.35.2-2) ... -2024-05-06T16:45:21Z #8 27.17 Selecting previously unselected package binutils-x86-64-linux-gnu. -2024-05-06T16:45:21Z #8 27.18 Preparing to unpack .../033-binutils-x86-64-linux-gnu_2.35.2-2_amd64.deb ... -2024-05-06T16:45:21Z #8 27.18 Unpacking binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-05-06T16:45:21Z #8 27.60 Selecting previously unselected package binutils. -2024-05-06T16:45:21Z #8 27.60 Preparing to unpack .../034-binutils_2.35.2-2_amd64.deb ... -2024-05-06T16:45:21Z #8 27.61 Unpacking binutils (2.35.2-2) ... -2024-05-06T16:45:21Z #8 27.67 Selecting previously unselected package libisl23:amd64. -2024-05-06T16:45:21Z #8 27.67 Preparing to unpack .../035-libisl23_0.23-1_amd64.deb ... -2024-05-06T16:45:21Z #8 27.68 Unpacking libisl23:amd64 (0.23-1) ... -2024-05-06T16:45:21Z #8 27.90 Selecting previously unselected package libmpfr6:amd64. -2024-05-06T16:45:21Z #8 27.91 Preparing to unpack .../036-libmpfr6_4.1.0-3_amd64.deb ... -2024-05-06T16:45:21Z #8 27.91 Unpacking libmpfr6:amd64 (4.1.0-3) ... -2024-05-06T16:45:21Z #8 28.15 Selecting previously unselected package libmpc3:amd64. -2024-05-06T16:45:21Z #8 28.15 Preparing to unpack .../037-libmpc3_1.2.0-1_amd64.deb ... -2024-05-06T16:45:22Z #8 28.15 Unpacking libmpc3:amd64 (1.2.0-1) ... -2024-05-06T16:45:22Z #8 28.20 Selecting previously unselected package cpp-10. -2024-05-06T16:45:22Z #8 28.20 Preparing to unpack .../038-cpp-10_10.2.1-6_amd64.deb ... -2024-05-06T16:45:22Z #8 28.21 Unpacking cpp-10 (10.2.1-6) ... -2024-05-06T16:45:23Z #8 29.58 Selecting previously unselected package cpp. -2024-05-06T16:45:23Z #8 29.59 Preparing to unpack .../039-cpp_4%3a10.2.1-1_amd64.deb ... -2024-05-06T16:45:23Z #8 29.59 Unpacking cpp (4:10.2.1-1) ... -2024-05-06T16:45:23Z #8 29.62 Selecting previously unselected package dbus-user-session. -2024-05-06T16:45:23Z #8 29.63 Preparing to unpack .../040-dbus-user-session_1.12.28-0+deb11u1_amd64.deb ... -2024-05-06T16:45:23Z #8 29.63 Unpacking dbus-user-session (1.12.28-0+deb11u1) ... -2024-05-06T16:45:23Z #8 29.68 Selecting previously unselected package libdconf1:amd64. -2024-05-06T16:45:23Z #8 29.68 Preparing to unpack .../041-libdconf1_0.38.0-2_amd64.deb ... -2024-05-06T16:45:23Z #8 29.69 Unpacking libdconf1:amd64 (0.38.0-2) ... -2024-05-06T16:45:23Z #8 29.72 Selecting previously unselected package dconf-service. -2024-05-06T16:45:23Z #8 29.72 Preparing to unpack .../042-dconf-service_0.38.0-2_amd64.deb ... -2024-05-06T16:45:23Z #8 29.73 Unpacking dconf-service (0.38.0-2) ... -2024-05-06T16:45:23Z #8 29.76 Selecting previously unselected package dconf-gsettings-backend:amd64. -2024-05-06T16:45:23Z #8 29.77 Preparing to unpack .../043-dconf-gsettings-backend_0.38.0-2_amd64.deb ... -2024-05-06T16:45:23Z #8 29.77 Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-05-06T16:45:23Z #8 29.81 Selecting previously unselected package libatk1.0-data. -2024-05-06T16:45:23Z #8 29.81 Preparing to unpack .../044-libatk1.0-data_2.36.0-2_all.deb ... -2024-05-06T16:45:23Z #8 29.81 Unpacking libatk1.0-data (2.36.0-2) ... -2024-05-06T16:45:23Z #8 29.90 Selecting previously unselected package libatk1.0-0:amd64. -2024-05-06T16:45:23Z #8 29.90 Preparing to unpack .../045-libatk1.0-0_2.36.0-2_amd64.deb ... -2024-05-06T16:45:23Z #8 29.91 Unpacking libatk1.0-0:amd64 (2.36.0-2) ... -2024-05-06T16:45:23Z #8 29.95 Selecting previously unselected package libfreetype6:amd64. -2024-05-06T16:45:23Z #8 29.95 Preparing to unpack .../046-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ... -2024-05-06T16:45:23Z #8 29.96 Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-05-06T16:45:23Z #8 30.05 Selecting previously unselected package fonts-dejavu-core. -2024-05-06T16:45:23Z #8 30.05 Preparing to unpack .../047-fonts-dejavu-core_2.37-2_all.deb ... -2024-05-06T16:45:23Z #8 30.06 Unpacking fonts-dejavu-core (2.37-2) ... -2024-05-06T16:45:24Z #8 30.27 Selecting previously unselected package fontconfig-config. -2024-05-06T16:45:24Z #8 30.27 Preparing to unpack .../048-fontconfig-config_2.13.1-4.2_all.deb ... -2024-05-06T16:45:24Z #8 30.45 Unpacking fontconfig-config (2.13.1-4.2) ... -2024-05-06T16:45:24Z #8 30.52 Selecting previously unselected package libfontconfig1:amd64. -2024-05-06T16:45:24Z #8 30.52 Preparing to unpack .../049-libfontconfig1_2.13.1-4.2_amd64.deb ... -2024-05-06T16:45:24Z #8 30.53 Unpacking libfontconfig1:amd64 (2.13.1-4.2) ... -2024-05-06T16:45:24Z #8 30.59 Selecting previously unselected package libpixman-1-0:amd64. -2024-05-06T16:45:24Z #8 30.59 Preparing to unpack .../050-libpixman-1-0_0.40.0-1.1~deb11u1_amd64.deb ... -2024-05-06T16:45:24Z #8 30.60 Unpacking libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-05-06T16:45:24Z #8 30.68 Selecting previously unselected package libxcb-render0:amd64. -2024-05-06T16:45:24Z #8 30.69 Preparing to unpack .../051-libxcb-render0_1.14-3_amd64.deb ... -2024-05-06T16:45:24Z #8 30.69 Unpacking libxcb-render0:amd64 (1.14-3) ... -2024-05-06T16:45:24Z #8 30.75 Selecting previously unselected package libxcb-shm0:amd64. -2024-05-06T16:45:24Z #8 30.75 Preparing to unpack .../052-libxcb-shm0_1.14-3_amd64.deb ... -2024-05-06T16:45:24Z #8 30.76 Unpacking libxcb-shm0:amd64 (1.14-3) ... -2024-05-06T16:45:24Z #8 30.81 Selecting previously unselected package libcairo2:amd64. -2024-05-06T16:45:24Z #8 30.81 Preparing to unpack .../053-libcairo2_1.16.0-5_amd64.deb ... -2024-05-06T16:45:24Z #8 30.82 Unpacking libcairo2:amd64 (1.16.0-5) ... -2024-05-06T16:45:24Z #8 30.94 Selecting previously unselected package libcairo-gobject2:amd64. -2024-05-06T16:45:24Z #8 30.95 Preparing to unpack .../054-libcairo-gobject2_1.16.0-5_amd64.deb ... -2024-05-06T16:45:24Z #8 30.95 Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... -2024-05-06T16:45:24Z #8 31.00 Selecting previously unselected package libdbus-glib-1-2:amd64. -2024-05-06T16:45:24Z #8 31.01 Preparing to unpack .../055-libdbus-glib-1-2_0.110-6_amd64.deb ... -2024-05-06T16:45:24Z #8 31.01 Unpacking libdbus-glib-1-2:amd64 (0.110-6) ... -2024-05-06T16:45:24Z #8 31.06 Selecting previously unselected package libevent-2.1-7:amd64. -2024-05-06T16:45:24Z #8 31.06 Preparing to unpack .../056-libevent-2.1-7_2.1.12-stable-1_amd64.deb ... -2024-05-06T16:45:24Z #8 31.07 Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-05-06T16:45:24Z #8 31.13 Selecting previously unselected package libatk-bridge2.0-0:amd64. -2024-05-06T16:45:24Z #8 31.13 Preparing to unpack .../057-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... -2024-05-06T16:45:24Z #8 31.14 Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-05-06T16:45:24Z #8 31.18 Selecting previously unselected package liblcms2-2:amd64. -2024-05-06T16:45:25Z #8 31.19 Preparing to unpack .../058-liblcms2-2_2.12~rc1-2_amd64.deb ... -2024-05-06T16:45:25Z #8 31.19 Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... -2024-05-06T16:45:25Z #8 31.25 Selecting previously unselected package libcolord2:amd64. -2024-05-06T16:45:25Z #8 31.26 Preparing to unpack .../059-libcolord2_1.4.5-3_amd64.deb ... -2024-05-06T16:45:25Z #8 31.26 Unpacking libcolord2:amd64 (1.4.5-3) ... -2024-05-06T16:45:25Z #8 31.31 Selecting previously unselected package libavahi-common-data:amd64. -2024-05-06T16:45:25Z #8 31.31 Preparing to unpack .../060-libavahi-common-data_0.8-5+deb11u2_amd64.deb ... -2024-05-06T16:45:25Z #8 31.32 Unpacking libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-05-06T16:45:25Z #8 31.38 Selecting previously unselected package libavahi-common3:amd64. -2024-05-06T16:45:25Z #8 31.38 Preparing to unpack .../061-libavahi-common3_0.8-5+deb11u2_amd64.deb ... -2024-05-06T16:45:25Z #8 31.38 Unpacking libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-05-06T16:45:25Z #8 31.42 Selecting previously unselected package libavahi-client3:amd64. -2024-05-06T16:45:25Z #8 31.43 Preparing to unpack .../062-libavahi-client3_0.8-5+deb11u2_amd64.deb ... -2024-05-06T16:45:25Z #8 31.43 Unpacking libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-05-06T16:45:25Z #8 31.48 Selecting previously unselected package libcups2:amd64. -2024-05-06T16:45:25Z #8 31.48 Preparing to unpack .../063-libcups2_2.3.3op2-3+deb11u6_amd64.deb ... -2024-05-06T16:45:25Z #8 31.48 Unpacking libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-05-06T16:45:25Z #8 31.60 Selecting previously unselected package libepoxy0:amd64. -2024-05-06T16:45:25Z #8 31.61 Preparing to unpack .../064-libepoxy0_1.5.5-1_amd64.deb ... -2024-05-06T16:45:25Z #8 31.61 Unpacking libepoxy0:amd64 (1.5.5-1) ... -2024-05-06T16:45:25Z #8 31.68 Selecting previously unselected package libfribidi0:amd64. -2024-05-06T16:45:25Z #8 31.68 Preparing to unpack .../065-libfribidi0_1.0.8-2+deb11u1_amd64.deb ... -2024-05-06T16:45:25Z #8 31.69 Unpacking libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-05-06T16:45:25Z #8 31.73 Selecting previously unselected package libgraphite2-3:amd64. -2024-05-06T16:45:25Z #8 31.73 Preparing to unpack .../066-libgraphite2-3_1.3.14-1_amd64.deb ... -2024-05-06T16:45:25Z #8 31.74 Unpacking libgraphite2-3:amd64 (1.3.14-1) ... -2024-05-06T16:45:25Z #8 31.78 Selecting previously unselected package libharfbuzz0b:amd64. -2024-05-06T16:45:25Z #8 31.79 Preparing to unpack .../067-libharfbuzz0b_2.7.4-1_amd64.deb ... -2024-05-06T16:45:25Z #8 31.79 Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... -2024-05-06T16:45:25Z #8 31.89 Selecting previously unselected package libjson-glib-1.0-common. -2024-05-06T16:45:25Z #8 31.89 Preparing to unpack .../068-libjson-glib-1.0-common_1.6.2-1_all.deb ... -2024-05-06T16:45:25Z #8 31.89 Unpacking libjson-glib-1.0-common (1.6.2-1) ... -2024-05-06T16:45:25Z #8 31.95 Selecting previously unselected package libjson-glib-1.0-0:amd64. -2024-05-06T16:45:25Z #8 31.95 Preparing to unpack .../069-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... -2024-05-06T16:45:25Z #8 31.95 Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-05-06T16:45:25Z #8 32.00 Selecting previously unselected package fontconfig. -2024-05-06T16:45:25Z #8 32.00 Preparing to unpack .../070-fontconfig_2.13.1-4.2_amd64.deb ... -2024-05-06T16:45:25Z #8 32.01 Unpacking fontconfig (2.13.1-4.2) ... -2024-05-06T16:45:25Z #8 32.07 Selecting previously unselected package libthai-data. -2024-05-06T16:45:25Z #8 32.07 Preparing to unpack .../071-libthai-data_0.1.28-3_all.deb ... -2024-05-06T16:45:25Z #8 32.07 Unpacking libthai-data (0.1.28-3) ... -2024-05-06T16:45:25Z #8 32.14 Selecting previously unselected package libdatrie1:amd64. -2024-05-06T16:45:25Z #8 32.15 Preparing to unpack .../072-libdatrie1_0.2.13-1_amd64.deb ... -2024-05-06T16:45:25Z #8 32.15 Unpacking libdatrie1:amd64 (0.2.13-1) ... -2024-05-06T16:45:25Z #8 32.20 Selecting previously unselected package libthai0:amd64. -2024-05-06T16:45:25Z #8 32.20 Preparing to unpack .../073-libthai0_0.1.28-3_amd64.deb ... -2024-05-06T16:45:25Z #8 32.20 Unpacking libthai0:amd64 (0.1.28-3) ... -2024-05-06T16:45:25Z #8 32.25 Selecting previously unselected package libpango-1.0-0:amd64. -2024-05-06T16:45:26Z #8 32.25 Preparing to unpack .../074-libpango-1.0-0_1.46.2-3_amd64.deb ... -2024-05-06T16:45:26Z #8 32.25 Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... -2024-05-06T16:45:26Z #8 32.32 Selecting previously unselected package libpangoft2-1.0-0:amd64. -2024-05-06T16:45:26Z #8 32.32 Preparing to unpack .../075-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... -2024-05-06T16:45:26Z #8 32.32 Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-05-06T16:45:26Z #8 32.37 Selecting previously unselected package libpangocairo-1.0-0:amd64. -2024-05-06T16:45:26Z #8 32.38 Preparing to unpack .../076-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... -2024-05-06T16:45:26Z #8 32.38 Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-05-06T16:45:26Z #8 32.43 Selecting previously unselected package libproxy1v5:amd64. -2024-05-06T16:45:26Z #8 32.43 Preparing to unpack .../077-libproxy1v5_0.4.17-1_amd64.deb ... -2024-05-06T16:45:26Z #8 32.43 Unpacking libproxy1v5:amd64 (0.4.17-1) ... -2024-05-06T16:45:26Z #8 32.48 Selecting previously unselected package glib-networking-common. -2024-05-06T16:45:26Z #8 32.49 Preparing to unpack .../078-glib-networking-common_2.66.0-2_all.deb ... -2024-05-06T16:45:26Z #8 32.49 Unpacking glib-networking-common (2.66.0-2) ... -2024-05-06T16:45:26Z #8 32.55 Selecting previously unselected package glib-networking-services. -2024-05-06T16:45:26Z #8 32.55 Preparing to unpack .../079-glib-networking-services_2.66.0-2_amd64.deb ... -2024-05-06T16:45:26Z #8 32.55 Unpacking glib-networking-services (2.66.0-2) ... -2024-05-06T16:45:26Z #8 32.59 Selecting previously unselected package gsettings-desktop-schemas. -2024-05-06T16:45:26Z #8 32.59 Preparing to unpack .../080-gsettings-desktop-schemas_3.38.0-2_all.deb ... -2024-05-06T16:45:26Z #8 32.60 Unpacking gsettings-desktop-schemas (3.38.0-2) ... -2024-05-06T16:45:26Z #8 32.75 Selecting previously unselected package glib-networking:amd64. -2024-05-06T16:45:26Z #8 32.76 Preparing to unpack .../081-glib-networking_2.66.0-2_amd64.deb ... -2024-05-06T16:45:26Z #8 32.76 Unpacking glib-networking:amd64 (2.66.0-2) ... -2024-05-06T16:45:26Z #8 32.82 Selecting previously unselected package libsoup2.4-1:amd64. -2024-05-06T16:45:26Z #8 32.82 Preparing to unpack .../082-libsoup2.4-1_2.72.0-2_amd64.deb ... -2024-05-06T16:45:26Z #8 32.82 Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... -2024-05-06T16:45:26Z #8 32.91 Selecting previously unselected package libsoup-gnome2.4-1:amd64. -2024-05-06T16:45:26Z #8 32.92 Preparing to unpack .../083-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... -2024-05-06T16:45:26Z #8 32.92 Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-05-06T16:45:26Z #8 32.96 Selecting previously unselected package librest-0.7-0:amd64. -2024-05-06T16:45:26Z #8 32.97 Preparing to unpack .../084-librest-0.7-0_0.8.1-1.1_amd64.deb ... -2024-05-06T16:45:26Z #8 32.97 Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-05-06T16:45:26Z #8 33.01 Selecting previously unselected package libwayland-client0:amd64. -2024-05-06T16:45:26Z #8 33.02 Preparing to unpack .../085-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... -2024-05-06T16:45:26Z #8 33.02 Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-05-06T16:45:26Z #8 33.06 Selecting previously unselected package libwayland-cursor0:amd64. -2024-05-06T16:45:26Z #8 33.07 Preparing to unpack .../086-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... -2024-05-06T16:45:26Z #8 33.07 Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-05-06T16:45:26Z #8 33.11 Selecting previously unselected package libwayland-egl1:amd64. -2024-05-06T16:45:26Z #8 33.12 Preparing to unpack .../087-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... -2024-05-06T16:45:26Z #8 33.13 Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-05-06T16:45:26Z #8 33.16 Selecting previously unselected package libxcomposite1:amd64. -2024-05-06T16:45:26Z #8 33.16 Preparing to unpack .../088-libxcomposite1_1%3a0.4.5-1_amd64.deb ... -2024-05-06T16:45:26Z #8 33.17 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... -2024-05-06T16:45:26Z #8 33.20 Selecting previously unselected package libxfixes3:amd64. -2024-05-06T16:45:26Z #8 33.21 Preparing to unpack .../089-libxfixes3_1%3a5.0.3-2_amd64.deb ... -2024-05-06T16:45:27Z #8 33.22 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... -2024-05-06T16:45:27Z #8 33.26 Selecting previously unselected package libxcursor1:amd64. -2024-05-06T16:45:27Z #8 33.26 Preparing to unpack .../090-libxcursor1_1%3a1.2.0-2_amd64.deb ... -2024-05-06T16:45:27Z #8 33.27 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... -2024-05-06T16:45:27Z #8 33.31 Selecting previously unselected package libxdamage1:amd64. -2024-05-06T16:45:27Z #8 33.31 Preparing to unpack .../091-libxdamage1_1%3a1.1.5-2_amd64.deb ... -2024-05-06T16:45:27Z #8 33.31 Unpacking libxdamage1:amd64 (1:1.1.5-2) ... -2024-05-06T16:45:27Z #8 33.36 Selecting previously unselected package libxinerama1:amd64. -2024-05-06T16:45:27Z #8 33.37 Preparing to unpack .../092-libxinerama1_2%3a1.1.4-2_amd64.deb ... -2024-05-06T16:45:27Z #8 33.37 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... -2024-05-06T16:45:27Z #8 33.41 Selecting previously unselected package xkb-data. -2024-05-06T16:45:27Z #8 33.41 Preparing to unpack .../093-xkb-data_2.29-2_all.deb ... -2024-05-06T16:45:27Z #8 33.42 Unpacking xkb-data (2.29-2) ... -2024-05-06T16:45:27Z #8 33.63 Selecting previously unselected package libxkbcommon0:amd64. -2024-05-06T16:45:27Z #8 33.63 Preparing to unpack .../094-libxkbcommon0_1.0.3-2_amd64.deb ... -2024-05-06T16:45:27Z #8 33.64 Unpacking libxkbcommon0:amd64 (1.0.3-2) ... -2024-05-06T16:45:27Z #8 33.70 Selecting previously unselected package libxrandr2:amd64. -2024-05-06T16:45:27Z #8 33.71 Preparing to unpack .../095-libxrandr2_2%3a1.5.1-1_amd64.deb ... -2024-05-06T16:45:27Z #8 33.71 Unpacking libxrandr2:amd64 (2:1.5.1-1) ... -2024-05-06T16:45:27Z #8 33.76 Selecting previously unselected package libgtk-3-common. -2024-05-06T16:45:27Z #8 33.76 Preparing to unpack .../096-libgtk-3-common_3.24.24-4+deb11u3_all.deb ... -2024-05-06T16:45:27Z #8 33.77 Unpacking libgtk-3-common (3.24.24-4+deb11u3) ... -2024-05-06T16:45:28Z #8 34.46 Selecting previously unselected package libgtk-3-0:amd64. -2024-05-06T16:45:28Z #8 34.47 Preparing to unpack .../097-libgtk-3-0_3.24.24-4+deb11u3_amd64.deb ... -2024-05-06T16:45:28Z #8 34.47 Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-05-06T16:45:28Z #8 34.95 Selecting previously unselected package libx11-xcb1:amd64. -2024-05-06T16:45:28Z #8 34.95 Preparing to unpack .../098-libx11-xcb1_2%3a1.7.2-1+deb11u2_amd64.deb ... -2024-05-06T16:45:28Z #8 34.97 Unpacking libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-05-06T16:45:28Z #8 35.03 Selecting previously unselected package firefox-esr. -2024-05-06T16:45:28Z #8 35.03 Preparing to unpack .../099-firefox-esr_115.10.0esr-1~deb11u1_amd64.deb ... -2024-05-06T16:45:28Z #8 35.05 Adding 'diversion of /usr/bin/firefox to /usr/bin/firefox.real by firefox-esr' -2024-05-06T16:45:28Z #8 35.06 Unpacking firefox-esr (115.10.0esr-1~deb11u1) ... -2024-05-06T16:45:38Z #8 44.77 Selecting previously unselected package fonts-humor-sans. -2024-05-06T16:45:38Z #8 44.77 Preparing to unpack .../100-fonts-humor-sans_1.0-4_all.deb ... -2024-05-06T16:45:38Z #8 44.78 Unpacking fonts-humor-sans (1.0-4) ... -2024-05-06T16:45:38Z #8 44.82 Selecting previously unselected package libcc1-0:amd64. -2024-05-06T16:45:38Z #8 44.82 Preparing to unpack .../101-libcc1-0_10.2.1-6_amd64.deb ... -2024-05-06T16:45:38Z #8 44.83 Unpacking libcc1-0:amd64 (10.2.1-6) ... -2024-05-06T16:45:38Z #8 44.87 Selecting previously unselected package libgomp1:amd64. -2024-05-06T16:45:38Z #8 44.88 Preparing to unpack .../102-libgomp1_10.2.1-6_amd64.deb ... -2024-05-06T16:45:38Z #8 44.88 Unpacking libgomp1:amd64 (10.2.1-6) ... -2024-05-06T16:45:38Z #8 44.93 Selecting previously unselected package libitm1:amd64. -2024-05-06T16:45:38Z #8 44.93 Preparing to unpack .../103-libitm1_10.2.1-6_amd64.deb ... -2024-05-06T16:45:38Z #8 44.94 Unpacking libitm1:amd64 (10.2.1-6) ... -2024-05-06T16:45:38Z #8 44.98 Selecting previously unselected package libatomic1:amd64. -2024-05-06T16:45:38Z #8 44.98 Preparing to unpack .../104-libatomic1_10.2.1-6_amd64.deb ... -2024-05-06T16:45:38Z #8 44.99 Unpacking libatomic1:amd64 (10.2.1-6) ... -2024-05-06T16:45:38Z #8 45.03 Selecting previously unselected package libasan6:amd64. -2024-05-06T16:45:38Z #8 45.03 Preparing to unpack .../105-libasan6_10.2.1-6_amd64.deb ... -2024-05-06T16:45:38Z #8 45.04 Unpacking libasan6:amd64 (10.2.1-6) ... -2024-05-06T16:45:39Z #8 45.42 Selecting previously unselected package liblsan0:amd64. -2024-05-06T16:45:39Z #8 45.42 Preparing to unpack .../106-liblsan0_10.2.1-6_amd64.deb ... -2024-05-06T16:45:39Z #8 45.43 Unpacking liblsan0:amd64 (10.2.1-6) ... -2024-05-06T16:45:39Z #8 45.60 Selecting previously unselected package libtsan0:amd64. -2024-05-06T16:45:39Z #8 45.60 Preparing to unpack .../107-libtsan0_10.2.1-6_amd64.deb ... -2024-05-06T16:45:39Z #8 45.60 Unpacking libtsan0:amd64 (10.2.1-6) ... -2024-05-06T16:45:39Z #8 45.98 Selecting previously unselected package libubsan1:amd64. -2024-05-06T16:45:39Z #8 45.99 Preparing to unpack .../108-libubsan1_10.2.1-6_amd64.deb ... -2024-05-06T16:45:39Z #8 45.99 Unpacking libubsan1:amd64 (10.2.1-6) ... -2024-05-06T16:45:39Z #8 46.15 Selecting previously unselected package libquadmath0:amd64. -2024-05-06T16:45:39Z #8 46.15 Preparing to unpack .../109-libquadmath0_10.2.1-6_amd64.deb ... -2024-05-06T16:45:39Z #8 46.16 Unpacking libquadmath0:amd64 (10.2.1-6) ... -2024-05-06T16:45:39Z #8 46.21 Selecting previously unselected package libgcc-10-dev:amd64. -2024-05-06T16:45:39Z #8 46.21 Preparing to unpack .../110-libgcc-10-dev_10.2.1-6_amd64.deb ... -2024-05-06T16:45:39Z #8 46.22 Unpacking libgcc-10-dev:amd64 (10.2.1-6) ... -2024-05-06T16:45:40Z #8 46.63 Selecting previously unselected package gcc-10. -2024-05-06T16:45:40Z #8 46.63 Preparing to unpack .../111-gcc-10_10.2.1-6_amd64.deb ... -2024-05-06T16:45:40Z #8 46.64 Unpacking gcc-10 (10.2.1-6) ... -2024-05-06T16:45:42Z #8 49.10 Selecting previously unselected package gcc. -2024-05-06T16:45:42Z #8 49.11 Preparing to unpack .../112-gcc_4%3a10.2.1-1_amd64.deb ... -2024-05-06T16:45:42Z #8 49.11 Unpacking gcc (4:10.2.1-1) ... -2024-05-06T16:45:42Z #8 49.15 Selecting previously unselected package libva2:amd64. -2024-05-06T16:45:42Z #8 49.16 Preparing to unpack .../113-libva2_2.10.0-1_amd64.deb ... -2024-05-06T16:45:42Z #8 49.16 Unpacking libva2:amd64 (2.10.0-1) ... -2024-05-06T16:45:42Z #8 49.20 Selecting previously unselected package libdrm-common. -2024-05-06T16:45:43Z #8 49.21 Preparing to unpack .../114-libdrm-common_2.4.104-1_all.deb ... -2024-05-06T16:45:43Z #8 49.21 Unpacking libdrm-common (2.4.104-1) ... -2024-05-06T16:45:43Z #8 49.25 Selecting previously unselected package libdrm2:amd64. -2024-05-06T16:45:43Z #8 49.26 Preparing to unpack .../115-libdrm2_2.4.104-1_amd64.deb ... -2024-05-06T16:45:43Z #8 49.26 Unpacking libdrm2:amd64 (2.4.104-1) ... -2024-05-06T16:45:43Z #8 49.34 Selecting previously unselected package libpciaccess0:amd64. -2024-05-06T16:45:43Z #8 49.34 Preparing to unpack .../116-libpciaccess0_0.16-1_amd64.deb ... -2024-05-06T16:45:43Z #8 49.35 Unpacking libpciaccess0:amd64 (0.16-1) ... -2024-05-06T16:45:43Z #8 49.40 Selecting previously unselected package libdrm-intel1:amd64. -2024-05-06T16:45:43Z #8 49.41 Preparing to unpack .../117-libdrm-intel1_2.4.104-1_amd64.deb ... -2024-05-06T16:45:43Z #8 49.41 Unpacking libdrm-intel1:amd64 (2.4.104-1) ... -2024-05-06T16:45:43Z #8 49.46 Selecting previously unselected package i965-va-driver:amd64. -2024-05-06T16:45:43Z #8 49.46 Preparing to unpack .../118-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ... -2024-05-06T16:45:43Z #8 49.47 Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-05-06T16:45:43Z #8 49.55 Selecting previously unselected package libigdgmm11:amd64. -2024-05-06T16:45:43Z #8 49.55 Preparing to unpack .../119-libigdgmm11_20.4.1+ds1-1_amd64.deb ... -2024-05-06T16:45:43Z #8 49.56 Unpacking libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-05-06T16:45:43Z #8 49.61 Selecting previously unselected package intel-media-va-driver:amd64. -2024-05-06T16:45:43Z #8 49.61 Preparing to unpack .../120-intel-media-va-driver_21.1.1+dfsg1-1_amd64.deb ... -2024-05-06T16:45:43Z #8 49.61 Unpacking intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-05-06T16:45:43Z #8 49.94 Selecting previously unselected package libaom0:amd64. -2024-05-06T16:45:43Z #8 49.95 Preparing to unpack .../121-libaom0_1.0.0.errata1-3+deb11u1_amd64.deb ... -2024-05-06T16:45:43Z #8 49.95 Unpacking libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-05-06T16:45:43Z #8 50.15 Selecting previously unselected package libmfx1:amd64. -2024-05-06T16:45:43Z #8 50.16 Preparing to unpack .../122-libmfx1_21.1.0-1_amd64.deb ... -2024-05-06T16:45:44Z #8 50.16 Unpacking libmfx1:amd64 (21.1.0-1) ... -2024-05-06T16:45:44Z #8 50.86 Selecting previously unselected package libva-drm2:amd64. -2024-05-06T16:45:44Z #8 50.86 Preparing to unpack .../123-libva-drm2_2.10.0-1_amd64.deb ... -2024-05-06T16:45:44Z #8 50.87 Unpacking libva-drm2:amd64 (2.10.0-1) ... -2024-05-06T16:45:44Z #8 50.90 Selecting previously unselected package libva-x11-2:amd64. -2024-05-06T16:45:44Z #8 50.91 Preparing to unpack .../124-libva-x11-2_2.10.0-1_amd64.deb ... -2024-05-06T16:45:44Z #8 50.91 Unpacking libva-x11-2:amd64 (2.10.0-1) ... -2024-05-06T16:45:44Z #8 50.95 Selecting previously unselected package libvdpau1:amd64. -2024-05-06T16:45:44Z #8 50.95 Preparing to unpack .../125-libvdpau1_1.4-3_amd64.deb ... -2024-05-06T16:45:44Z #8 50.96 Unpacking libvdpau1:amd64 (1.4-3) ... -2024-05-06T16:45:44Z #8 51.00 Selecting previously unselected package ocl-icd-libopencl1:amd64. -2024-05-06T16:45:44Z #8 51.01 Preparing to unpack .../126-ocl-icd-libopencl1_2.2.14-2_amd64.deb ... -2024-05-06T16:45:44Z #8 51.01 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-05-06T16:45:44Z #8 51.06 Selecting previously unselected package libavutil56:amd64. -2024-05-06T16:45:44Z #8 51.06 Preparing to unpack .../127-libavutil56_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-05-06T16:45:44Z #8 51.06 Unpacking libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-05-06T16:45:44Z #8 51.15 Selecting previously unselected package libcodec2-0.9:amd64. -2024-05-06T16:45:44Z #8 51.15 Preparing to unpack .../128-libcodec2-0.9_0.9.2-4_amd64.deb ... -2024-05-06T16:45:44Z #8 51.15 Unpacking libcodec2-0.9:amd64 (0.9.2-4) ... -2024-05-06T16:45:46Z #8 52.24 Selecting previously unselected package libdav1d4:amd64. -2024-05-06T16:45:46Z #8 52.25 Preparing to unpack .../129-libdav1d4_0.7.1-3_amd64.deb ... -2024-05-06T16:45:46Z #8 52.25 Unpacking libdav1d4:amd64 (0.7.1-3) ... -2024-05-06T16:45:46Z #8 52.34 Selecting previously unselected package libgsm1:amd64. -2024-05-06T16:45:46Z #8 52.35 Preparing to unpack .../130-libgsm1_1.0.18-2_amd64.deb ... -2024-05-06T16:45:46Z #8 52.35 Unpacking libgsm1:amd64 (1.0.18-2) ... -2024-05-06T16:45:46Z #8 52.39 Selecting previously unselected package libmp3lame0:amd64. -2024-05-06T16:45:46Z #8 52.40 Preparing to unpack .../131-libmp3lame0_3.100-3_amd64.deb ... -2024-05-06T16:45:46Z #8 52.40 Unpacking libmp3lame0:amd64 (3.100-3) ... -2024-05-06T16:45:46Z #8 52.47 Selecting previously unselected package libopenjp2-7:amd64. -2024-05-06T16:45:46Z #8 52.48 Preparing to unpack .../132-libopenjp2-7_2.4.0-3_amd64.deb ... -2024-05-06T16:45:46Z #8 52.48 Unpacking libopenjp2-7:amd64 (2.4.0-3) ... -2024-05-06T16:45:46Z #8 52.55 Selecting previously unselected package libopus0:amd64. -2024-05-06T16:45:46Z #8 52.55 Preparing to unpack .../133-libopus0_1.3.1-0.1_amd64.deb ... -2024-05-06T16:45:46Z #8 52.56 Unpacking libopus0:amd64 (1.3.1-0.1) ... -2024-05-06T16:45:46Z #8 52.63 Selecting previously unselected package librsvg2-2:amd64. -2024-05-06T16:45:46Z #8 52.63 Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-05-06T16:45:46Z #8 52.64 Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-05-06T16:45:46Z #8 53.13 Selecting previously unselected package libshine3:amd64. -2024-05-06T16:45:46Z #8 53.13 Preparing to unpack .../135-libshine3_3.1.1-2_amd64.deb ... -2024-05-06T16:45:46Z #8 53.14 Unpacking libshine3:amd64 (3.1.1-2) ... -2024-05-06T16:45:46Z #8 53.18 Selecting previously unselected package libsnappy1v5:amd64. -2024-05-06T16:45:46Z #8 53.18 Preparing to unpack .../136-libsnappy1v5_1.1.8-1_amd64.deb ... -2024-05-06T16:45:46Z #8 53.18 Unpacking libsnappy1v5:amd64 (1.1.8-1) ... -2024-05-06T16:45:46Z #8 53.22 Selecting previously unselected package libspeex1:amd64. -2024-05-06T16:45:46Z #8 53.23 Preparing to unpack .../137-libspeex1_1.2~rc1.2-1.1_amd64.deb ... -2024-05-06T16:45:46Z #8 53.23 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-05-06T16:45:46Z #8 53.27 Selecting previously unselected package libsoxr0:amd64. -2024-05-06T16:45:47Z #8 53.28 Preparing to unpack .../138-libsoxr0_0.1.3-4_amd64.deb ... -2024-05-06T16:45:47Z #8 53.29 Unpacking libsoxr0:amd64 (0.1.3-4) ... -2024-05-06T16:45:47Z #8 53.34 Selecting previously unselected package libswresample3:amd64. -2024-05-06T16:45:47Z #8 53.35 Preparing to unpack .../139-libswresample3_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-05-06T16:45:47Z #8 53.35 Unpacking libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-05-06T16:45:47Z #8 53.40 Selecting previously unselected package libogg0:amd64. -2024-05-06T16:45:47Z #8 53.41 Preparing to unpack .../140-libogg0_1.3.4-0.1_amd64.deb ... -2024-05-06T16:45:47Z #8 53.41 Unpacking libogg0:amd64 (1.3.4-0.1) ... -2024-05-06T16:45:47Z #8 53.46 Selecting previously unselected package libtheora0:amd64. -2024-05-06T16:45:47Z #8 53.46 Preparing to unpack .../141-libtheora0_1.1.1+dfsg.1-15_amd64.deb ... -2024-05-06T16:45:47Z #8 53.46 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-05-06T16:45:47Z #8 53.54 Selecting previously unselected package libtwolame0:amd64. -2024-05-06T16:45:47Z #8 53.54 Preparing to unpack .../142-libtwolame0_0.4.0-2_amd64.deb ... -2024-05-06T16:45:47Z #8 53.55 Unpacking libtwolame0:amd64 (0.4.0-2) ... -2024-05-06T16:45:47Z #8 53.59 Selecting previously unselected package libvorbis0a:amd64. -2024-05-06T16:45:47Z #8 53.60 Preparing to unpack .../143-libvorbis0a_1.3.7-1_amd64.deb ... -2024-05-06T16:45:47Z #8 53.60 Unpacking libvorbis0a:amd64 (1.3.7-1) ... -2024-05-06T16:45:47Z #8 53.65 Selecting previously unselected package libvorbisenc2:amd64. -2024-05-06T16:45:47Z #8 53.66 Preparing to unpack .../144-libvorbisenc2_1.3.7-1_amd64.deb ... -2024-05-06T16:45:47Z #8 53.67 Unpacking libvorbisenc2:amd64 (1.3.7-1) ... -2024-05-06T16:45:47Z #8 53.71 Selecting previously unselected package libvpx6:amd64. -2024-05-06T16:45:47Z #8 53.72 Preparing to unpack .../145-libvpx6_1.9.0-1+deb11u2_amd64.deb ... -2024-05-06T16:45:47Z #8 53.72 Unpacking libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-05-06T16:45:47Z #8 53.88 Selecting previously unselected package libwavpack1:amd64. -2024-05-06T16:45:47Z #8 53.88 Preparing to unpack .../146-libwavpack1_5.4.0-1_amd64.deb ... -2024-05-06T16:45:47Z #8 53.89 Unpacking libwavpack1:amd64 (5.4.0-1) ... -2024-05-06T16:45:47Z #8 53.93 Selecting previously unselected package libwebpmux3:amd64. -2024-05-06T16:45:47Z #8 53.94 Preparing to unpack .../147-libwebpmux3_0.6.1-2.1+deb11u2_amd64.deb ... -2024-05-06T16:45:47Z #8 53.94 Unpacking libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-05-06T16:45:47Z #8 54.00 Selecting previously unselected package libx264-160:amd64. -2024-05-06T16:45:47Z #8 54.00 Preparing to unpack .../148-libx264-160_2%3a0.160.3011+gitcde9a93-2.1_amd64.deb ... -2024-05-06T16:45:47Z #8 54.01 Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-05-06T16:45:47Z #8 54.13 Selecting previously unselected package libnuma1:amd64. -2024-05-06T16:45:47Z #8 54.13 Preparing to unpack .../149-libnuma1_2.0.12-1+b1_amd64.deb ... -2024-05-06T16:45:47Z #8 54.14 Unpacking libnuma1:amd64 (2.0.12-1+b1) ... -2024-05-06T16:45:47Z #8 54.18 Selecting previously unselected package libx265-192:amd64. -2024-05-06T16:45:47Z #8 54.18 Preparing to unpack .../150-libx265-192_3.4-2_amd64.deb ... -2024-05-06T16:45:47Z #8 54.19 Unpacking libx265-192:amd64 (3.4-2) ... -2024-05-06T16:45:48Z #8 54.49 Selecting previously unselected package libxvidcore4:amd64. -2024-05-06T16:45:48Z #8 54.50 Preparing to unpack .../151-libxvidcore4_2%3a1.3.7-1_amd64.deb ... -2024-05-06T16:45:48Z #8 54.50 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... -2024-05-06T16:45:48Z #8 54.57 Selecting previously unselected package libzvbi-common. -2024-05-06T16:45:48Z #8 54.57 Preparing to unpack .../152-libzvbi-common_0.2.35-18_all.deb ... -2024-05-06T16:45:48Z #8 54.57 Unpacking libzvbi-common (0.2.35-18) ... -2024-05-06T16:45:48Z #8 54.62 Selecting previously unselected package libzvbi0:amd64. -2024-05-06T16:45:48Z #8 54.62 Preparing to unpack .../153-libzvbi0_0.2.35-18_amd64.deb ... -2024-05-06T16:45:48Z #8 54.63 Unpacking libzvbi0:amd64 (0.2.35-18) ... -2024-05-06T16:45:48Z #8 54.71 Selecting previously unselected package libavcodec58:amd64. -2024-05-06T16:45:48Z #8 54.71 Preparing to unpack .../154-libavcodec58_7%3a4.3.6-0+deb11u1_amd64.deb ... -2024-05-06T16:45:48Z #8 54.71 Unpacking libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-05-06T16:45:49Z #8 55.47 Selecting previously unselected package libc-dev-bin. -2024-05-06T16:45:49Z #8 55.48 Preparing to unpack .../155-libc-dev-bin_2.31-13+deb11u10_amd64.deb ... -2024-05-06T16:45:49Z #8 55.48 Unpacking libc-dev-bin (2.31-13+deb11u10) ... -2024-05-06T16:45:49Z #8 55.53 Selecting previously unselected package libxpm4:amd64. -2024-05-06T16:45:49Z #8 55.53 Preparing to unpack .../156-libxpm4_1%3a3.5.12-1.1+deb11u1_amd64.deb ... -2024-05-06T16:45:49Z #8 55.53 Unpacking libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-05-06T16:45:49Z #8 55.58 Selecting previously unselected package libgd3:amd64. -2024-05-06T16:45:49Z #8 55.58 Preparing to unpack .../157-libgd3_2.3.0-2_amd64.deb ... -2024-05-06T16:45:49Z #8 55.59 Unpacking libgd3:amd64 (2.3.0-2) ... -2024-05-06T16:45:49Z #8 55.64 Selecting previously unselected package libc-devtools. -2024-05-06T16:45:49Z #8 55.64 Preparing to unpack .../158-libc-devtools_2.31-13+deb11u10_amd64.deb ... -2024-05-06T16:45:49Z #8 55.65 Unpacking libc-devtools (2.31-13+deb11u10) ... -2024-05-06T16:45:49Z #8 55.70 Selecting previously unselected package linux-libc-dev:amd64. -2024-05-06T16:45:49Z #8 55.70 Preparing to unpack .../159-linux-libc-dev_5.10.209-2_amd64.deb ... -2024-05-06T16:45:49Z #8 55.71 Unpacking linux-libc-dev:amd64 (5.10.209-2) ... -2024-05-06T16:45:49Z #8 56.07 Selecting previously unselected package libcrypt-dev:amd64. -2024-05-06T16:45:49Z #8 56.07 Preparing to unpack .../160-libcrypt-dev_1%3a4.4.18-4_amd64.deb ... -2024-05-06T16:45:49Z #8 56.08 Unpacking libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-05-06T16:45:49Z #8 56.12 Selecting previously unselected package libtirpc-dev:amd64. -2024-05-06T16:45:49Z #8 56.13 Preparing to unpack .../161-libtirpc-dev_1.3.1-1+deb11u1_amd64.deb ... -2024-05-06T16:45:49Z #8 56.13 Unpacking libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-05-06T16:45:49Z #8 56.21 Selecting previously unselected package libnsl-dev:amd64. -2024-05-06T16:45:49Z #8 56.21 Preparing to unpack .../162-libnsl-dev_1.3.0-2_amd64.deb ... -2024-05-06T16:45:49Z #8 56.21 Unpacking libnsl-dev:amd64 (1.3.0-2) ... -2024-05-06T16:45:50Z #8 56.26 Selecting previously unselected package libc6-dev:amd64. -2024-05-06T16:45:50Z #8 56.27 Preparing to unpack .../163-libc6-dev_2.31-13+deb11u10_amd64.deb ... -2024-05-06T16:45:50Z #8 56.27 Unpacking libc6-dev:amd64 (2.31-13+deb11u10) ... -2024-05-06T16:45:50Z #8 56.79 Selecting previously unselected package libdrm-amdgpu1:amd64. -2024-05-06T16:45:50Z #8 56.79 Preparing to unpack .../164-libdrm-amdgpu1_2.4.104-1_amd64.deb ... -2024-05-06T16:45:50Z #8 56.80 Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-05-06T16:45:50Z #8 56.84 Selecting previously unselected package libdrm-nouveau2:amd64. -2024-05-06T16:45:50Z #8 56.84 Preparing to unpack .../165-libdrm-nouveau2_2.4.104-1_amd64.deb ... -2024-05-06T16:45:50Z #8 56.85 Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-05-06T16:45:50Z #8 56.96 Selecting previously unselected package libdrm-radeon1:amd64. -2024-05-06T16:45:50Z #8 56.96 Preparing to unpack .../166-libdrm-radeon1_2.4.104-1_amd64.deb ... -2024-05-06T16:45:50Z #8 56.99 Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... -2024-05-06T16:45:50Z #8 57.10 Selecting previously unselected package libelf1:amd64. -2024-05-06T16:45:50Z #8 57.10 Preparing to unpack .../167-libelf1_0.183-1_amd64.deb ... -2024-05-06T16:45:50Z #8 57.11 Unpacking libelf1:amd64 (0.183-1) ... -2024-05-06T16:45:50Z #8 57.20 Selecting previously unselected package libfontenc1:amd64. -2024-05-06T16:45:51Z #8 57.21 Preparing to unpack .../168-libfontenc1_1%3a1.1.4-1_amd64.deb ... -2024-05-06T16:45:51Z #8 57.21 Unpacking libfontenc1:amd64 (1:1.1.4-1) ... -2024-05-06T16:45:51Z #8 57.25 Selecting previously unselected package libgdk-pixbuf2.0-bin. -2024-05-06T16:45:51Z #8 57.25 Preparing to unpack .../169-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1+deb11u1_amd64.deb ... -2024-05-06T16:45:51Z #8 57.25 Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-05-06T16:45:51Z #8 57.29 Selecting previously unselected package libglapi-mesa:amd64. -2024-05-06T16:45:51Z #8 57.30 Preparing to unpack .../170-libglapi-mesa_20.3.5-1_amd64.deb ... -2024-05-06T16:45:51Z #8 57.30 Unpacking libglapi-mesa:amd64 (20.3.5-1) ... -2024-05-06T16:45:51Z #8 57.35 Selecting previously unselected package libz3-4:amd64. -2024-05-06T16:45:51Z #8 57.35 Preparing to unpack .../171-libz3-4_4.8.10-1_amd64.deb ... -2024-05-06T16:45:51Z #8 57.36 Unpacking libz3-4:amd64 (4.8.10-1) ... -2024-05-06T16:45:52Z #8 58.42 Selecting previously unselected package libllvm11:amd64. -2024-05-06T16:45:52Z #8 58.42 Preparing to unpack .../172-libllvm11_1%3a11.0.1-2_amd64.deb ... -2024-05-06T16:45:52Z #8 58.42 Unpacking libllvm11:amd64 (1:11.0.1-2) ... -2024-05-06T16:45:55Z #8 61.35 Selecting previously unselected package libsensors-config. -2024-05-06T16:45:55Z #8 61.35 Preparing to unpack .../173-libsensors-config_1%3a3.6.0-7_all.deb ... -2024-05-06T16:45:55Z #8 61.36 Unpacking libsensors-config (1:3.6.0-7) ... -2024-05-06T16:45:55Z #8 61.40 Selecting previously unselected package libsensors5:amd64. -2024-05-06T16:45:55Z #8 61.40 Preparing to unpack .../174-libsensors5_1%3a3.6.0-7_amd64.deb ... -2024-05-06T16:45:55Z #8 61.44 Unpacking libsensors5:amd64 (1:3.6.0-7) ... -2024-05-06T16:45:55Z #8 61.49 Selecting previously unselected package libvulkan1:amd64. -2024-05-06T16:45:55Z #8 61.50 Preparing to unpack .../175-libvulkan1_1.2.162.0-1_amd64.deb ... -2024-05-06T16:45:55Z #8 61.50 Unpacking libvulkan1:amd64 (1.2.162.0-1) ... -2024-05-06T16:45:55Z #8 61.56 Selecting previously unselected package libgl1-mesa-dri:amd64. -2024-05-06T16:45:55Z #8 61.56 Preparing to unpack .../176-libgl1-mesa-dri_20.3.5-1_amd64.deb ... -2024-05-06T16:45:55Z #8 61.57 Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-05-06T16:45:56Z #8 63.07 Selecting previously unselected package libglvnd0:amd64. -2024-05-06T16:45:56Z #8 63.07 Preparing to unpack .../177-libglvnd0_1.3.2-1_amd64.deb ... -2024-05-06T16:45:56Z #8 63.08 Unpacking libglvnd0:amd64 (1.3.2-1) ... -2024-05-06T16:45:56Z #8 63.13 Selecting previously unselected package libxcb-dri2-0:amd64. -2024-05-06T16:45:56Z #8 63.14 Preparing to unpack .../178-libxcb-dri2-0_1.14-3_amd64.deb ... -2024-05-06T16:45:56Z #8 63.14 Unpacking libxcb-dri2-0:amd64 (1.14-3) ... -2024-05-06T16:45:56Z #8 63.19 Selecting previously unselected package libxcb-dri3-0:amd64. -2024-05-06T16:45:56Z #8 63.19 Preparing to unpack .../179-libxcb-dri3-0_1.14-3_amd64.deb ... -2024-05-06T16:45:56Z #8 63.20 Unpacking libxcb-dri3-0:amd64 (1.14-3) ... -2024-05-06T16:45:57Z #8 63.25 Selecting previously unselected package libxcb-glx0:amd64. -2024-05-06T16:45:57Z #8 63.26 Preparing to unpack .../180-libxcb-glx0_1.14-3_amd64.deb ... -2024-05-06T16:45:57Z #8 63.26 Unpacking libxcb-glx0:amd64 (1.14-3) ... -2024-05-06T16:45:57Z #8 63.32 Selecting previously unselected package libxcb-present0:amd64. -2024-05-06T16:45:57Z #8 63.32 Preparing to unpack .../181-libxcb-present0_1.14-3_amd64.deb ... -2024-05-06T16:45:57Z #8 63.33 Unpacking libxcb-present0:amd64 (1.14-3) ... -2024-05-06T16:45:57Z #8 63.37 Selecting previously unselected package libxcb-sync1:amd64. -2024-05-06T16:45:57Z #8 63.38 Preparing to unpack .../182-libxcb-sync1_1.14-3_amd64.deb ... -2024-05-06T16:45:57Z #8 63.38 Unpacking libxcb-sync1:amd64 (1.14-3) ... -2024-05-06T16:45:57Z #8 63.43 Selecting previously unselected package libxcb-xfixes0:amd64. -2024-05-06T16:45:57Z #8 63.44 Preparing to unpack .../183-libxcb-xfixes0_1.14-3_amd64.deb ... -2024-05-06T16:45:57Z #8 63.44 Unpacking libxcb-xfixes0:amd64 (1.14-3) ... -2024-05-06T16:45:57Z #8 63.49 Selecting previously unselected package libxshmfence1:amd64. -2024-05-06T16:45:57Z #8 63.50 Preparing to unpack .../184-libxshmfence1_1.3-1_amd64.deb ... -2024-05-06T16:45:57Z #8 63.50 Unpacking libxshmfence1:amd64 (1.3-1) ... -2024-05-06T16:45:57Z #8 63.54 Selecting previously unselected package libxxf86vm1:amd64. -2024-05-06T16:45:57Z #8 63.55 Preparing to unpack .../185-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... -2024-05-06T16:45:57Z #8 63.55 Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-05-06T16:45:57Z #8 63.59 Selecting previously unselected package libglx-mesa0:amd64. -2024-05-06T16:45:57Z #8 63.60 Preparing to unpack .../186-libglx-mesa0_20.3.5-1_amd64.deb ... -2024-05-06T16:45:57Z #8 63.61 Unpacking libglx-mesa0:amd64 (20.3.5-1) ... -2024-05-06T16:45:57Z #8 63.66 Selecting previously unselected package libgtk-3-bin. -2024-05-06T16:45:57Z #8 63.67 Preparing to unpack .../187-libgtk-3-bin_3.24.24-4+deb11u3_amd64.deb ... -2024-05-06T16:45:57Z #8 63.67 Unpacking libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-05-06T16:45:57Z #8 63.72 Selecting previously unselected package librsvg2-common:amd64. -2024-05-06T16:45:57Z #8 63.73 Preparing to unpack .../188-librsvg2-common_2.50.3+dfsg-1+deb11u1_amd64.deb ... -2024-05-06T16:45:57Z #8 63.73 Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-05-06T16:45:57Z #8 63.78 Selecting previously unselected package libglx0:amd64. -2024-05-06T16:45:57Z #8 63.78 Preparing to unpack .../189-libglx0_1.3.2-1_amd64.deb ... -2024-05-06T16:45:57Z #8 63.78 Unpacking libglx0:amd64 (1.3.2-1) ... -2024-05-06T16:45:57Z #8 63.84 Selecting previously unselected package libgl1:amd64. -2024-05-06T16:45:57Z #8 63.84 Preparing to unpack .../190-libgl1_1.3.2-1_amd64.deb ... -2024-05-06T16:45:57Z #8 63.85 Unpacking libgl1:amd64 (1.3.2-1) ... -2024-05-06T16:45:57Z #8 63.90 Selecting previously unselected package libvdpau-va-gl1:amd64. -2024-05-06T16:45:57Z #8 63.90 Preparing to unpack .../191-libvdpau-va-gl1_0.4.2-1+b1_amd64.deb ... -2024-05-06T16:45:57Z #8 63.91 Unpacking libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-05-06T16:45:57Z #8 63.96 Selecting previously unselected package libxt6:amd64. -2024-05-06T16:45:57Z #8 63.97 Preparing to unpack .../192-libxt6_1%3a1.2.0-1_amd64.deb ... -2024-05-06T16:45:57Z #8 63.97 Unpacking libxt6:amd64 (1:1.2.0-1) ... -2024-05-06T16:45:57Z #8 64.03 Selecting previously unselected package libxmu6:amd64. -2024-05-06T16:45:57Z #8 64.03 Preparing to unpack .../193-libxmu6_2%3a1.1.2-2+b3_amd64.deb ... -2024-05-06T16:45:57Z #8 64.04 Unpacking libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-05-06T16:45:57Z #8 64.09 Selecting previously unselected package libxaw7:amd64. -2024-05-06T16:45:57Z #8 64.09 Preparing to unpack .../194-libxaw7_2%3a1.0.13-1.1_amd64.deb ... -2024-05-06T16:45:57Z #8 64.10 Unpacking libxaw7:amd64 (2:1.0.13-1.1) ... -2024-05-06T16:45:57Z #8 64.16 Selecting previously unselected package libxcb-randr0:amd64. -2024-05-06T16:45:57Z #8 64.16 Preparing to unpack .../195-libxcb-randr0_1.14-3_amd64.deb ... -2024-05-06T16:45:57Z #8 64.17 Unpacking libxcb-randr0:amd64 (1.14-3) ... -2024-05-06T16:45:57Z #8 64.22 Selecting previously unselected package libxcb-shape0:amd64. -2024-05-06T16:45:58Z #8 64.23 Preparing to unpack .../196-libxcb-shape0_1.14-3_amd64.deb ... -2024-05-06T16:45:58Z #8 64.23 Unpacking libxcb-shape0:amd64 (1.14-3) ... -2024-05-06T16:45:58Z #8 64.28 Selecting previously unselected package libxft2:amd64. -2024-05-06T16:45:58Z #8 64.28 Preparing to unpack .../197-libxft2_2.3.2-2_amd64.deb ... -2024-05-06T16:45:58Z #8 64.28 Unpacking libxft2:amd64 (2.3.2-2) ... -2024-05-06T16:45:58Z #8 64.33 Selecting previously unselected package libxkbfile1:amd64. -2024-05-06T16:45:58Z #8 64.33 Preparing to unpack .../198-libxkbfile1_1%3a1.1.0-1_amd64.deb ... -2024-05-06T16:45:58Z #8 64.33 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... -2024-05-06T16:45:58Z #8 64.39 Selecting previously unselected package libxmuu1:amd64. -2024-05-06T16:45:58Z #8 64.39 Preparing to unpack .../199-libxmuu1_2%3a1.1.2-2+b3_amd64.deb ... -2024-05-06T16:45:58Z #8 64.39 Unpacking libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-05-06T16:45:58Z #8 64.43 Selecting previously unselected package libxv1:amd64. -2024-05-06T16:45:58Z #8 64.44 Preparing to unpack .../200-libxv1_2%3a1.0.11-1_amd64.deb ... -2024-05-06T16:45:58Z #8 64.44 Unpacking libxv1:amd64 (2:1.0.11-1) ... -2024-05-06T16:45:58Z #8 64.48 Selecting previously unselected package libxxf86dga1:amd64. -2024-05-06T16:45:58Z #8 64.48 Preparing to unpack .../201-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ... -2024-05-06T16:45:58Z #8 64.49 Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-05-06T16:45:58Z #8 64.53 Selecting previously unselected package manpages-dev. -2024-05-06T16:45:58Z #8 64.53 Preparing to unpack .../202-manpages-dev_5.10-1_all.deb ... -2024-05-06T16:45:58Z #8 64.53 Unpacking manpages-dev (5.10-1) ... -2024-05-06T16:45:58Z #8 64.99 Selecting previously unselected package mesa-va-drivers:amd64. -2024-05-06T16:45:58Z #8 64.99 Preparing to unpack .../203-mesa-va-drivers_20.3.5-1_amd64.deb ... -2024-05-06T16:45:58Z #8 65.00 Unpacking mesa-va-drivers:amd64 (20.3.5-1) ... -2024-05-06T16:45:59Z #8 65.44 Selecting previously unselected package mesa-vdpau-drivers:amd64. -2024-05-06T16:45:59Z #8 65.44 Preparing to unpack .../204-mesa-vdpau-drivers_20.3.5-1_amd64.deb ... -2024-05-06T16:45:59Z #8 65.45 Unpacking mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-05-06T16:45:59Z #8 65.89 Selecting previously unselected package mesa-vulkan-drivers:amd64. -2024-05-06T16:45:59Z #8 65.90 Preparing to unpack .../205-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... -2024-05-06T16:45:59Z #8 65.90 Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-05-06T16:46:00Z #8 66.60 Selecting previously unselected package patch. -2024-05-06T16:46:00Z #8 66.60 Preparing to unpack .../206-patch_2.7.6-7_amd64.deb ... -2024-05-06T16:46:00Z #8 66.60 Unpacking patch (2.7.6-7) ... -2024-05-06T16:46:00Z #8 66.66 Selecting previously unselected package unzip. -2024-05-06T16:46:00Z #8 66.66 Preparing to unpack .../207-unzip_6.0-26+deb11u1_amd64.deb ... -2024-05-06T16:46:00Z #8 66.66 Unpacking unzip (6.0-26+deb11u1) ... -2024-05-06T16:46:00Z #8 66.72 Selecting previously unselected package va-driver-all:amd64. -2024-05-06T16:46:00Z #8 66.73 Preparing to unpack .../208-va-driver-all_2.10.0-1_amd64.deb ... -2024-05-06T16:46:00Z #8 66.73 Unpacking va-driver-all:amd64 (2.10.0-1) ... -2024-05-06T16:46:00Z #8 66.77 Selecting previously unselected package vdpau-driver-all:amd64. -2024-05-06T16:46:00Z #8 66.77 Preparing to unpack .../209-vdpau-driver-all_1.4-3_amd64.deb ... -2024-05-06T16:46:00Z #8 66.78 Unpacking vdpau-driver-all:amd64 (1.4-3) ... -2024-05-06T16:46:00Z #8 66.81 Selecting previously unselected package x11-utils. -2024-05-06T16:46:00Z #8 66.82 Preparing to unpack .../210-x11-utils_7.7+5_amd64.deb ... -2024-05-06T16:46:00Z #8 66.82 Unpacking x11-utils (7.7+5) ... -2024-05-06T16:46:00Z #8 66.94 Setting up libgraphite2-3:amd64 (1.3.14-1) ... -2024-05-06T16:46:00Z #8 66.95 Setting up libxcb-dri3-0:amd64 (1.14-3) ... -2024-05-06T16:46:00Z #8 66.96 Setting up liblcms2-2:amd64 (2.12~rc1-2) ... -2024-05-06T16:46:00Z #8 66.97 Setting up libpixman-1-0:amd64 (0.40.0-1.1~deb11u1) ... -2024-05-06T16:46:00Z #8 66.98 Setting up libx11-xcb1:amd64 (2:1.7.2-1+deb11u2) ... -2024-05-06T16:46:00Z #8 66.99 Setting up libpciaccess0:amd64 (0.16-1) ... -2024-05-06T16:46:00Z #8 67.00 Setting up systemd-sysv (247.3-7+deb11u4) ... -2024-05-06T16:46:00Z #8 67.02 Setting up libproxy1v5:amd64 (0.4.17-1) ... -2024-05-06T16:46:00Z #8 67.03 Setting up libxdamage1:amd64 (1:1.1.5-2) ... -2024-05-06T16:46:00Z #8 67.04 Setting up libxcb-xfixes0:amd64 (1.14-3) ... -2024-05-06T16:46:00Z #8 67.05 Setting up libogg0:amd64 (1.3.4-0.1) ... -2024-05-06T16:46:00Z #8 67.06 Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ... -2024-05-06T16:46:00Z #8 67.07 Setting up libshine3:amd64 (3.1.1-2) ... -2024-05-06T16:46:00Z #8 67.08 Setting up libxpm4:amd64 (1:3.5.12-1.1+deb11u1) ... -2024-05-06T16:46:00Z #8 67.09 Setting up hicolor-icon-theme (0.17-2) ... -2024-05-06T16:46:00Z #8 67.12 Setting up libxi6:amd64 (2:1.7.10-1) ... -2024-05-06T16:46:00Z #8 67.13 Setting up libtwolame0:amd64 (0.4.0-2) ... -2024-05-06T16:46:00Z #8 67.14 Setting up libicu67:amd64 (67.1-7) ... -2024-05-06T16:46:00Z #8 67.15 Setting up libdatrie1:amd64 (0.2.13-1) ... -2024-05-06T16:46:00Z #8 67.16 Setting up libgsm1:amd64 (1.0.18-2) ... -2024-05-06T16:46:00Z #8 67.17 Setting up libxcb-render0:amd64 (1.14-3) ... -2024-05-06T16:46:00Z #8 67.18 Setting up manpages (5.10-1) ... -2024-05-06T16:46:00Z #8 67.19 Setting up libglvnd0:amd64 (1.3.2-1) ... -2024-05-06T16:46:00Z #8 67.21 Setting up libxtst6:amd64 (2:1.2.3-1) ... -2024-05-06T16:46:00Z #8 67.22 Setting up libxcb-glx0:amd64 (1.14-3) ... -2024-05-06T16:46:00Z #8 67.23 Setting up unzip (6.0-26+deb11u1) ... -2024-05-06T16:46:01Z #8 67.24 Setting up libaom0:amd64 (1.0.0.errata1-3+deb11u1) ... -2024-05-06T16:46:01Z #8 67.26 Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1+deb11u1) ... -2024-05-06T16:46:01Z #8 67.27 Setting up libxcb-shape0:amd64 (1.14-3) ... -2024-05-06T16:46:01Z #8 67.28 Setting up binutils-common:amd64 (2.35.2-2) ... -2024-05-06T16:46:01Z #8 67.29 Setting up libsensors-config (1:3.6.0-7) ... -2024-05-06T16:46:01Z #8 67.31 Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ... -2024-05-06T16:46:01Z #8 67.32 Setting up libdeflate0:amd64 (1.7-1) ... -2024-05-06T16:46:01Z #8 67.33 Setting up linux-libc-dev:amd64 (5.10.209-2) ... -2024-05-06T16:46:01Z #8 67.35 Setting up libctf-nobfd0:amd64 (2.35.2-2) ... -2024-05-06T16:46:01Z #8 67.36 Setting up libnss-systemd:amd64 (247.3-7+deb11u4) ... -2024-05-06T16:46:01Z #8 67.37 First installation detected... -2024-05-06T16:46:01Z #8 67.37 Checking NSS setup... -2024-05-06T16:46:01Z #8 67.38 Setting up xkb-data (2.29-2) ... -2024-05-06T16:46:01Z #8 67.39 Setting up libxcb-shm0:amd64 (1.14-3) ... -2024-05-06T16:46:01Z #8 67.40 Setting up libgomp1:amd64 (10.2.1-6) ... -2024-05-06T16:46:01Z #8 67.42 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... -2024-05-06T16:46:01Z #8 67.43 Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2.1) ... -2024-05-06T16:46:01Z #8 67.44 Setting up libjbig0:amd64 (2.1-3.1+b2) ... -2024-05-06T16:46:01Z #8 67.45 Setting up libcolord2:amd64 (1.4.5-3) ... -2024-05-06T16:46:01Z #8 67.46 Setting up libasan6:amd64 (10.2.1-6) ... -2024-05-06T16:46:01Z #8 67.47 Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... -2024-05-06T16:46:01Z #8 67.49 Setting up libsnappy1v5:amd64 (1.1.8-1) ... -2024-05-06T16:46:01Z #8 67.50 Setting up libxcb-present0:amd64 (1.14-3) ... -2024-05-06T16:46:01Z #8 67.51 Setting up libdconf1:amd64 (0.38.0-2) ... -2024-05-06T16:46:01Z #8 67.52 Setting up libasound2-data (1.2.4-1.1) ... -2024-05-06T16:46:01Z #8 67.54 Setting up libfontenc1:amd64 (1:1.1.4-1) ... -2024-05-06T16:46:01Z #8 67.55 Setting up libz3-4:amd64 (4.8.10-1) ... -2024-05-06T16:46:01Z #8 67.56 Setting up libtirpc-dev:amd64 (1.3.1-1+deb11u1) ... -2024-05-06T16:46:01Z #8 67.57 Setting up libllvm11:amd64 (1:11.0.1-2) ... -2024-05-06T16:46:01Z #8 67.59 Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ... -2024-05-06T16:46:01Z #8 67.60 Setting up libva2:amd64 (2.10.0-1) ... -2024-05-06T16:46:01Z #8 67.61 Setting up libigdgmm11:amd64 (20.4.1+ds1-1) ... -2024-05-06T16:46:01Z #8 67.62 Setting up libepoxy0:amd64 (1.5.5-1) ... -2024-05-06T16:46:01Z #8 67.63 Setting up libmpfr6:amd64 (4.1.0-3) ... -2024-05-06T16:46:01Z #8 67.64 Setting up libxfixes3:amd64 (1:5.0.3-2) ... -2024-05-06T16:46:01Z #8 67.65 Setting up libxcb-sync1:amd64 (1.14-3) ... -2024-05-06T16:46:01Z #8 67.66 Setting up libcodec2-0.9:amd64 (0.9.2-4) ... -2024-05-06T16:46:01Z #8 67.68 Setting up libavahi-common-data:amd64 (0.8-5+deb11u2) ... -2024-05-06T16:46:01Z #8 67.69 Setting up libdbus-1-3:amd64 (1.12.28-0+deb11u1) ... -2024-05-06T16:46:01Z #8 67.70 Setting up dbus (1.12.28-0+deb11u1) ... -2024-05-06T16:46:01Z #8 67.85 invoke-rc.d: could not determine current runlevel -2024-05-06T16:46:01Z #8 67.85 invoke-rc.d: policy-rc.d denied execution of start. -2024-05-06T16:46:01Z #8 67.86 Setting up libfribidi0:amd64 (1.0.8-2+deb11u1) ... -2024-05-06T16:46:01Z #8 67.87 Setting up libopus0:amd64 (1.3.1-0.1) ... -2024-05-06T16:46:01Z #8 67.88 Setting up libquadmath0:amd64 (10.2.1-6) ... -2024-05-06T16:46:01Z #8 67.90 Setting up libxinerama1:amd64 (2:1.1.4-2) ... -2024-05-06T16:46:01Z #8 67.91 Setting up intel-media-va-driver:amd64 (21.1.1+dfsg1-1) ... -2024-05-06T16:46:01Z #8 67.92 Setting up libxv1:amd64 (2:1.0.11-1) ... -2024-05-06T16:46:01Z #8 67.93 Setting up libpng16-16:amd64 (1.6.37-3) ... -2024-05-06T16:46:01Z #8 67.95 Setting up libmpc3:amd64 (1.2.0-1) ... -2024-05-06T16:46:01Z #8 67.96 Setting up systemd-timesyncd (247.3-7+deb11u4) ... -2024-05-06T16:46:03Z #8 70.08 Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. -2024-05-06T16:46:03Z #8 70.08 Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. -2024-05-06T16:46:04Z #8 70.29 Setting up libatomic1:amd64 (10.2.1-6) ... -2024-05-06T16:46:04Z #8 70.40 Setting up libvorbis0a:amd64 (1.3.7-1) ... -2024-05-06T16:46:04Z #8 70.41 Setting up libevent-2.1-7:amd64 (2.1.12-stable-1) ... -2024-05-06T16:46:04Z #8 70.42 Setting up libxrandr2:amd64 (2:1.5.1-1) ... -2024-05-06T16:46:04Z #8 70.43 Setting up patch (2.7.6-7) ... -2024-05-06T16:46:04Z #8 70.44 Setting up libwebp6:amd64 (0.6.1-2.1+deb11u2) ... -2024-05-06T16:46:04Z #8 70.46 Setting up fonts-dejavu-core (2.37-2) ... -2024-05-06T16:46:04Z #8 70.57 Setting up libsensors5:amd64 (1:3.6.0-7) ... -2024-05-06T16:46:04Z #8 70.58 Setting up libxt6:amd64 (1:1.2.0-1) ... -2024-05-06T16:46:04Z #8 70.59 Setting up libglapi-mesa:amd64 (20.3.5-1) ... -2024-05-06T16:46:04Z #8 70.60 Setting up libvulkan1:amd64 (1.2.162.0-1) ... -2024-05-06T16:46:04Z #8 70.61 Setting up libubsan1:amd64 (10.2.1-6) ... -2024-05-06T16:46:04Z #8 70.62 Setting up libxcb-dri2-0:amd64 (1.14-3) ... -2024-05-06T16:46:04Z #8 70.63 Setting up libatk1.0-data (2.36.0-2) ... -2024-05-06T16:46:04Z #8 70.64 Setting up libnuma1:amd64 (2.0.12-1+b1) ... -2024-05-06T16:46:04Z #8 70.66 Setting up alsa-topology-conf (1.2.4-1) ... -2024-05-06T16:46:04Z #8 70.67 Setting up libnsl-dev:amd64 (1.3.0-2) ... -2024-05-06T16:46:04Z #8 70.68 Setting up ocl-icd-libopencl1:amd64 (2.2.14-2) ... -2024-05-06T16:46:04Z #8 70.69 Setting up libxshmfence1:amd64 (1.3-1) ... -2024-05-06T16:46:04Z #8 70.71 Setting up libvpx6:amd64 (1.9.0-1+deb11u2) ... -2024-05-06T16:46:04Z #8 70.72 Setting up libvdpau1:amd64 (1.4-3) ... -2024-05-06T16:46:04Z #8 70.73 Setting up libcrypt-dev:amd64 (1:4.4.18-4) ... -2024-05-06T16:46:04Z #8 70.74 Setting up libwavpack1:amd64 (5.4.0-1) ... -2024-05-06T16:46:04Z #8 70.75 Setting up libxcb-randr0:amd64 (1.14-3) ... -2024-05-06T16:46:04Z #8 70.77 Setting up libasound2:amd64 (1.2.4-1.1) ... -2024-05-06T16:46:04Z #8 70.78 Setting up libpam-systemd:amd64 (247.3-7+deb11u4) ... -2024-05-06T16:46:04Z #8 71.00 Setting up libdav1d4:amd64 (0.7.1-3) ... -2024-05-06T16:46:04Z #8 71.02 Setting up libopenjp2-7:amd64 (2.4.0-3) ... -2024-05-06T16:46:04Z #8 71.03 Setting up libthai-data (0.1.28-3) ... -2024-05-06T16:46:04Z #8 71.04 Setting up fonts-humor-sans (1.0-4) ... -2024-05-06T16:46:04Z #8 71.05 Setting up libjson-glib-1.0-common (1.6.2-1) ... -2024-05-06T16:46:04Z #8 71.06 Setting up libatk1.0-0:amd64 (2.36.0-2) ... -2024-05-06T16:46:04Z #8 71.07 Setting up libtiff5:amd64 (4.2.0-1+deb11u5) ... -2024-05-06T16:46:04Z #8 71.08 Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... -2024-05-06T16:46:04Z #8 71.09 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... -2024-05-06T16:46:04Z #8 71.10 Setting up glib-networking-common (2.66.0-2) ... -2024-05-06T16:46:04Z #8 71.11 Setting up libbinutils:amd64 (2.35.2-2) ... -2024-05-06T16:46:04Z #8 71.12 Setting up libmfx1:amd64 (21.1.0-1) ... -2024-05-06T16:46:04Z #8 71.14 Setting up libisl23:amd64 (0.23-1) ... -2024-05-06T16:46:04Z #8 71.15 Setting up libc-dev-bin (2.31-13+deb11u10) ... -2024-05-06T16:46:04Z #8 71.16 Setting up libwebpmux3:amd64 (0.6.1-2.1+deb11u2) ... -2024-05-06T16:46:04Z #8 71.17 Setting up libdrm-common (2.4.104-1) ... -2024-05-06T16:46:04Z #8 71.18 Setting up libelf1:amd64 (0.183-1) ... -2024-05-06T16:46:04Z #8 71.19 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... -2024-05-06T16:46:04Z #8 71.20 Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u4) ... -2024-05-06T16:46:04Z #8 71.21 Setting up libcc1-0:amd64 (10.2.1-6) ... -2024-05-06T16:46:04Z #8 71.22 Setting up libxmuu1:amd64 (2:1.1.2-2+b3) ... -2024-05-06T16:46:05Z #8 71.23 Setting up libzvbi-common (0.2.35-18) ... -2024-05-06T16:46:05Z #8 71.24 Setting up liblsan0:amd64 (10.2.1-6) ... -2024-05-06T16:46:05Z #8 71.26 Setting up cpp-10 (10.2.1-6) ... -2024-05-06T16:46:05Z #8 71.27 Setting up libmp3lame0:amd64 (3.100-3) ... -2024-05-06T16:46:05Z #8 71.28 Setting up libitm1:amd64 (10.2.1-6) ... -2024-05-06T16:46:05Z #8 71.29 Setting up libvorbisenc2:amd64 (1.3.7-1) ... -2024-05-06T16:46:05Z #8 71.30 Setting up libtsan0:amd64 (10.2.1-6) ... -2024-05-06T16:46:05Z #8 71.31 Setting up libxkbcommon0:amd64 (1.0.3-2) ... -2024-05-06T16:46:05Z #8 71.32 Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... -2024-05-06T16:46:05Z #8 71.33 Setting up libctf0:amd64 (2.35.2-2) ... -2024-05-06T16:46:05Z #8 71.35 Setting up glib-networking-services (2.66.0-2) ... -2024-05-06T16:46:05Z #8 71.36 Setting up libzvbi0:amd64 (0.2.35-18) ... -2024-05-06T16:46:05Z #8 71.37 Setting up manpages-dev (5.10-1) ... -2024-05-06T16:46:05Z #8 71.38 Setting up libxmu6:amd64 (2:1.1.2-2+b3) ... -2024-05-06T16:46:05Z #8 71.39 Setting up alsa-ucm-conf (1.2.4-2) ... -2024-05-06T16:46:05Z #8 71.40 Setting up libsoxr0:amd64 (0.1.3-4) ... -2024-05-06T16:46:05Z #8 71.41 Setting up fontconfig-config (2.13.1-4.2) ... -2024-05-06T16:46:05Z #8 71.73 Setting up libgcc-10-dev:amd64 (10.2.1-6) ... -2024-05-06T16:46:05Z #8 71.74 Setting up libxcursor1:amd64 (1:1.2.0-2) ... -2024-05-06T16:46:05Z #8 71.76 Setting up libavahi-common3:amd64 (0.8-5+deb11u2) ... -2024-05-06T16:46:05Z #8 71.77 Setting up libx265-192:amd64 (3.4-2) ... -2024-05-06T16:46:05Z #8 71.78 Setting up libxaw7:amd64 (2:1.0.13-1.1) ... -2024-05-06T16:46:05Z #8 71.79 Setting up libatspi2.0-0:amd64 (2.38.0-4+deb11u1) ... -2024-05-06T16:46:05Z #8 71.80 Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... -2024-05-06T16:46:05Z #8 71.81 Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... -2024-05-06T16:46:05Z #8 71.83 Setting up libthai0:amd64 (0.1.28-3) ... -2024-05-06T16:46:05Z #8 71.84 Setting up dbus-user-session (1.12.28-0+deb11u1) ... -2024-05-06T16:46:05Z #8 71.85 Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ... -2024-05-06T16:46:05Z #8 71.86 Setting up libdbus-glib-1-2:amd64 (0.110-6) ... -2024-05-06T16:46:05Z #8 71.88 Setting up shared-mime-info (2.0-1) ... -2024-05-06T16:46:08Z #8 74.22 Setting up libdrm2:amd64 (2.4.104-1) ... -2024-05-06T16:46:08Z #8 74.23 Setting up libva-drm2:amd64 (2.10.0-1) ... -2024-05-06T16:46:08Z #8 74.24 Setting up at-spi2-core (2.38.0-4+deb11u1) ... -2024-05-06T16:46:08Z #8 74.26 Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... -2024-05-06T16:46:08Z #8 74.27 Setting up cpp (4:10.2.1-1) ... -2024-05-06T16:46:08Z #8 74.29 Setting up libc6-dev:amd64 (2.31-13+deb11u10) ... -2024-05-06T16:46:08Z #8 74.30 Setting up libharfbuzz0b:amd64 (2.7.4-1) ... -2024-05-06T16:46:08Z #8 74.31 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-05-06T16:46:08Z #8 74.34 Setting up libfontconfig1:amd64 (2.13.1-4.2) ... -2024-05-06T16:46:08Z #8 74.41 Setting up libva-x11-2:amd64 (2.10.0-1) ... -2024-05-06T16:46:08Z #8 74.42 Setting up libavahi-client3:amd64 (0.8-5+deb11u2) ... -2024-05-06T16:46:08Z #8 74.43 Setting up binutils-x86-64-linux-gnu (2.35.2-2) ... -2024-05-06T16:46:08Z #8 74.44 Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... -2024-05-06T16:46:08Z #8 74.46 Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... -2024-05-06T16:46:08Z #8 74.47 Setting up gtk-update-icon-cache (3.24.24-4+deb11u3) ... -2024-05-06T16:46:08Z #8 74.48 Setting up fontconfig (2.13.1-4.2) ... -2024-05-06T16:46:10Z #8 74.49 Regenerating fonts cache... done. -2024-05-06T16:46:10Z #8 76.53 Setting up libxft2:amd64 (2.3.2-2) ... -2024-05-06T16:46:10Z #8 76.54 Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... -2024-05-06T16:46:10Z #8 76.55 Setting up libdrm-radeon1:amd64 (2.4.104-1) ... -2024-05-06T16:46:10Z #8 76.56 Setting up libpango-1.0-0:amd64 (1.46.2-3) ... -2024-05-06T16:46:10Z #8 76.57 Setting up libdrm-intel1:amd64 (2.4.104-1) ... -2024-05-06T16:46:10Z #8 76.58 Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... -2024-05-06T16:46:10Z #8 76.60 Setting up dconf-service (0.38.0-2) ... -2024-05-06T16:46:10Z #8 76.61 Setting up binutils (2.35.2-2) ... -2024-05-06T16:46:10Z #8 76.62 Setting up libcairo2:amd64 (1.16.0-5) ... -2024-05-06T16:46:10Z #8 76.63 Setting up libavutil56:amd64 (7:4.3.6-0+deb11u1) ... -2024-05-06T16:46:10Z #8 76.64 Setting up adwaita-icon-theme (3.38.0-1) ... -2024-05-06T16:46:10Z #8 76.73 update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode -2024-05-06T16:46:10Z #8 76.74 Setting up libgd3:amd64 (2.3.0-2) ... -2024-05-06T16:46:10Z #8 76.75 Setting up gcc-10 (10.2.1-6) ... -2024-05-06T16:46:10Z #8 76.76 Setting up libcups2:amd64 (2.3.3op2-3+deb11u6) ... -2024-05-06T16:46:10Z #8 76.77 Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1+deb11u1) ... -2024-05-06T16:46:10Z #8 76.78 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ... -2024-05-06T16:46:10Z #8 76.79 Setting up libcairo-gobject2:amd64 (1.16.0-5) ... -2024-05-06T16:46:10Z #8 76.80 Setting up mesa-va-drivers:amd64 (20.3.5-1) ... -2024-05-06T16:46:10Z #8 76.82 Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... -2024-05-06T16:46:10Z #8 76.83 Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ... -2024-05-06T16:46:10Z #8 76.84 Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... -2024-05-06T16:46:10Z #8 76.85 Setting up libc-devtools (2.31-13+deb11u10) ... -2024-05-06T16:46:10Z #8 76.86 Setting up mesa-vdpau-drivers:amd64 (20.3.5-1) ... -2024-05-06T16:46:10Z #8 76.87 Setting up libglx-mesa0:amd64 (20.3.5-1) ... -2024-05-06T16:46:10Z #8 76.89 Setting up libglx0:amd64 (1.3.2-1) ... -2024-05-06T16:46:10Z #8 76.90 Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... -2024-05-06T16:46:10Z #8 76.91 Setting up libswresample3:amd64 (7:4.3.6-0+deb11u1) ... -2024-05-06T16:46:10Z #8 76.92 Setting up gcc (4:10.2.1-1) ... -2024-05-06T16:46:10Z #8 76.94 Setting up librsvg2-2:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-05-06T16:46:10Z #8 76.95 Setting up libgl1:amd64 (1.3.2-1) ... -2024-05-06T16:46:10Z #8 76.97 Setting up va-driver-all:amd64 (2.10.0-1) ... -2024-05-06T16:46:10Z #8 76.98 Setting up librsvg2-common:amd64 (2.50.3+dfsg-1+deb11u1) ... -2024-05-06T16:46:10Z #8 77.00 Setting up x11-utils (7.7+5) ... -2024-05-06T16:46:10Z #8 77.03 Setting up libavcodec58:amd64 (7:4.3.6-0+deb11u1) ... -2024-05-06T16:46:10Z #8 77.04 Setting up libvdpau-va-gl1:amd64 (0.4.2-1+b1) ... -2024-05-06T16:46:10Z #8 77.06 Setting up libgtk-3-common (3.24.24-4+deb11u3) ... -2024-05-06T16:46:10Z #8 77.08 Setting up gsettings-desktop-schemas (3.38.0-2) ... -2024-05-06T16:46:10Z #8 77.09 Setting up vdpau-driver-all:amd64 (1.4-3) ... -2024-05-06T16:46:10Z #8 77.11 Processing triggers for libglib2.0-0:amd64 (2.66.8-1+deb11u1) ... -2024-05-06T16:46:10Z #8 77.14 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-05-06T16:46:10Z #8 77.18 Setting up glib-networking:amd64 (2.66.0-2) ... -2024-05-06T16:46:10Z #8 77.19 Setting up libsoup2.4-1:amd64 (2.72.0-2) ... -2024-05-06T16:46:10Z #8 77.21 Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... -2024-05-06T16:46:10Z #8 77.23 Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... -2024-05-06T16:46:10Z #8 77.24 Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u3) ... -2024-05-06T16:46:10Z #8 77.27 Setting up libgtk-3-bin (3.24.24-4+deb11u3) ... -2024-05-06T16:46:11Z #8 77.28 Setting up firefox-esr (115.10.0esr-1~deb11u1) ... -2024-05-06T16:46:11Z #8 77.30 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/x-www-browser (x-www-browser) in auto mode -2024-05-06T16:46:11Z #8 77.30 update-alternatives: warning: skip creation of /usr/share/man/man1/x-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group x-www-browser) doesn't exist -2024-05-06T16:46:11Z #8 77.31 update-alternatives: using /usr/bin/firefox-esr to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode -2024-05-06T16:46:11Z #8 77.31 update-alternatives: warning: skip creation of /usr/share/man/man1/gnome-www-browser.1.gz because associated file /usr/share/man/man1/firefox-esr.1.gz (of link group gnome-www-browser) doesn't exist -2024-05-06T16:46:11Z #8 77.32 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1+deb11u1) ... -2024-05-06T16:46:11Z #8 77.35 Processing triggers for libc-bin (2.31-13+deb11u8) ... -2024-05-06T16:46:15Z #8 DONE 81.6s -2024-05-06T16:46:15Z -2024-05-06T16:46:15Z #9 [ 4/10] RUN groupadd --gid 1000 jenkins && useradd --uid 1000 --gid jenkins --shell /bin/bash --create-home jenkins && chmod -R a+rwX /opt/conda -2024-05-06T16:47:04Z #9 DONE 48.8s -2024-05-06T16:47:04Z -2024-05-06T16:47:04Z #10 [ 5/10] COPY environment.yml /environment.yml -2024-05-06T16:47:04Z #10 DONE 0.1s -2024-05-06T16:47:04Z -2024-05-06T16:47:04Z #11 [ 6/10] RUN umask 0000 && mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.11 --yes && mamba env update --name birdy --file /environment.yml && mamba clean --all --yes -2024-05-06T16:49:35Z #11 151.8 Transaction -2024-05-06T16:49:35Z #11 151.8 -2024-05-06T16:49:35Z #11 151.8 Prefix: /opt/conda/envs/birdy -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 Updating specs: -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 - xclim -2024-05-06T16:49:36Z #11 151.8 - ravenpy -2024-05-06T16:49:36Z #11 151.8 - python=3.11 -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 Package Version Build Channel Size -2024-05-06T16:49:36Z #11 151.8 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-05-06T16:49:36Z #11 151.8 Install: -2024-05-06T16:49:36Z #11 151.8 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge 397kB -2024-05-06T16:49:36Z #11 151.8 + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge 97kB -2024-05-06T16:49:36Z #11 151.8 + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge 701kB -2024-05-06T16:49:36Z #11 151.8 + font-ttf-ubuntu 0.83 h77eed37_2 conda-forge 2MB -2024-05-06T16:49:36Z #11 151.8 + tzdata 2024a h0c530f3_0 conda-forge 120kB -2024-05-06T16:49:36Z #11 151.8 + poppler-data 0.4.12 hd8ed1ab_0 conda-forge 2MB -2024-05-06T16:49:36Z #11 151.8 + fonts-conda-forge 1 0 conda-forge 4kB -2024-05-06T16:49:36Z #11 151.8 + fonts-conda-ecosystem 1 0 conda-forge 4kB -2024-05-06T16:49:36Z #11 151.8 + python_abi 3.11 4_cp311 conda-forge 6kB -2024-05-06T16:49:36Z #11 151.8 + _libgcc_mutex 0.1 conda_forge conda-forge 3kB -2024-05-06T16:49:36Z #11 151.8 + ca-certificates 2024.2.2 hbcca054_0 conda-forge 155kB -2024-05-06T16:49:36Z #11 151.8 + libboost-headers 1.84.0 ha770c72_2 conda-forge 14MB -2024-05-06T16:49:36Z #11 151.8 + libstdcxx-ng 13.2.0 hc0a3c3a_6 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + ld_impl_linux-64 2.40 h55db66e_0 conda-forge 713kB -2024-05-06T16:49:36Z #11 151.8 + mpi 1.0 impi conda-forge 7kB -2024-05-06T16:49:36Z #11 151.8 + libgomp 13.2.0 h77fa898_6 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + impi_rt 2021.12.0 ha770c72_535 conda-forge 37MB -2024-05-06T16:49:36Z #11 151.8 + _openmp_mutex 4.5 2_gnu conda-forge 24kB -2024-05-06T16:49:36Z #11 151.8 + libgcc-ng 13.2.0 h77fa898_6 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libnl 3.9.0 hd590300_0 conda-forge 733kB -2024-05-06T16:49:36Z #11 151.8 + uriparser 0.9.7 h59595ed_1 conda-forge 48kB -2024-05-06T16:49:36Z #11 151.8 + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge 19kB -2024-05-06T16:49:36Z #11 151.8 + pthread-stubs 0.4 h36c2ea0_1001 conda-forge 6kB -2024-05-06T16:49:36Z #11 151.8 + xorg-xproto 7.0.31 h7f98852_1007 conda-forge 75kB -2024-05-06T16:49:36Z #11 151.8 + xorg-kbproto 1.0.7 h7f98852_1002 conda-forge 27kB -2024-05-06T16:49:36Z #11 151.8 + xorg-renderproto 0.11.1 h7f98852_1002 conda-forge 10kB -2024-05-06T16:49:36Z #11 151.8 + libev 4.33 hd590300_2 conda-forge 113kB -2024-05-06T16:49:36Z #11 151.8 + tzcode 2024a h3f72095_0 conda-forge 70kB -2024-05-06T16:49:36Z #11 151.8 + pixman 0.43.2 h59595ed_0 conda-forge 387kB -2024-05-06T16:49:36Z #11 151.8 + lzo 2.10 hd590300_1001 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libcrc32c 1.1.2 h9c3ff4c_0 conda-forge 20kB -2024-05-06T16:49:36Z #11 151.8 + libbrotlicommon 1.1.0 hd590300_1 conda-forge 69kB -2024-05-06T16:49:36Z #11 151.8 + aws-c-common 0.9.15 hd590300_0 conda-forge 227kB -2024-05-06T16:49:36Z #11 151.8 + fmt 10.2.1 h00ab1b0_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + gflags 2.2.2 he1b5a44_1004 conda-forge 117kB -2024-05-06T16:49:36Z #11 151.8 + xorg-libxau 1.0.11 hd590300_0 conda-forge 14kB -2024-05-06T16:49:36Z #11 151.8 + lz4-c 1.9.4 hcb278e6_0 conda-forge 143kB -2024-05-06T16:49:36Z #11 151.8 + libjpeg-turbo 3.0.0 hd590300_1 conda-forge 619kB -2024-05-06T16:49:36Z #11 151.8 + libiconv 1.17 hd590300_2 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + openssl 3.3.0 hd590300_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libxcrypt 4.4.36 hd590300_1 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libffi 3.4.2 h7f98852_5 conda-forge 58kB -2024-05-06T16:49:36Z #11 151.8 + bzip2 1.0.8 hd590300_5 conda-forge 254kB -2024-05-06T16:49:36Z #11 151.8 + yaml 0.2.5 h7f98852_2 conda-forge 89kB -2024-05-06T16:49:36Z #11 151.8 + libzlib 1.2.13 hd590300_5 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libspatialindex 1.9.3 h9c3ff4c_4 conda-forge 5MB -2024-05-06T16:49:36Z #11 151.8 + libgfortran5 13.2.0 h43f5ff8_6 conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + xorg-xextproto 7.3.0 h0b41bf4_1003 conda-forge 30kB -2024-05-06T16:49:36Z #11 151.8 + xorg-libice 1.1.1 hd590300_0 conda-forge 58kB -2024-05-06T16:49:36Z #11 151.8 + keyutils 1.6.1 h166bdaf_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + icu 73.2 h59595ed_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + nspr 4.35 h27087fc_0 conda-forge 227kB -2024-05-06T16:49:36Z #11 151.8 + libwebp-base 1.4.0 hd590300_0 conda-forge 439kB -2024-05-06T16:49:36Z #11 151.8 + libdeflate 1.20 hd590300_0 conda-forge 72kB -2024-05-06T16:49:36Z #11 151.8 + libaec 1.1.3 h59595ed_0 conda-forge 35kB -2024-05-06T16:49:36Z #11 151.8 + json-c 0.17 h7ab15ed_0 conda-forge 83kB -2024-05-06T16:49:36Z #11 151.8 + giflib 5.2.2 hd590300_0 conda-forge 77kB -2024-05-06T16:49:36Z #11 151.8 + geos 3.12.1 h59595ed_0 conda-forge 2MB -2024-05-06T16:49:36Z #11 151.8 + lerc 4.0.0 h27087fc_0 conda-forge 282kB -2024-05-06T16:49:36Z #11 151.8 + c-ares 1.28.1 hd590300_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + snappy 1.2.0 hdb0a2a9_1 conda-forge 42kB -2024-05-06T16:49:36Z #11 151.8 + libabseil 20240116.2 cxx17_h59595ed_0 conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + libutf8proc 2.8.0 h166bdaf_0 conda-forge 101kB -2024-05-06T16:49:36Z #11 151.8 + ncurses 6.4.20240210 h59595ed_0 conda-forge 896kB -2024-05-06T16:49:36Z #11 151.8 + libuuid 2.38.1 h0b41bf4_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libnsl 2.0.1 hd590300_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libexpat 2.6.2 h59595ed_0 conda-forge 74kB -2024-05-06T16:49:36Z #11 151.8 + xz 5.2.6 h166bdaf_0 conda-forge 418kB -2024-05-06T16:49:36Z #11 151.8 + rdma-core 51.0 hd3aeb46_0 conda-forge 5MB -2024-05-06T16:49:36Z #11 151.8 + libbrotlienc 1.1.0 hd590300_1 conda-forge 283kB -2024-05-06T16:49:36Z #11 151.8 + libbrotlidec 1.1.0 hd590300_1 conda-forge 33kB -2024-05-06T16:49:36Z #11 151.8 + aws-c-compression 0.2.18 hce8ee76_3 conda-forge 19kB -2024-05-06T16:49:36Z #11 151.8 + aws-c-sdkutils 0.1.15 hce8ee76_3 conda-forge 55kB -2024-05-06T16:49:36Z #11 151.8 + aws-checksums 0.1.18 hce8ee76_3 conda-forge 50kB -2024-05-06T16:49:36Z #11 151.8 + spdlog 1.13.0 hd2e6256_0 conda-forge 188kB -2024-05-06T16:49:36Z #11 151.8 + glog 0.7.0 hed5481d_0 conda-forge 144kB -2024-05-06T16:49:36Z #11 151.8 + libxcb 1.15 h0b41bf4_0 conda-forge 384kB -2024-05-06T16:49:36Z #11 151.8 + libevent 2.1.12 hf998b51_1 conda-forge 427kB -2024-05-06T16:49:36Z #11 151.8 + s2n 1.4.12 h06160fa_0 conda-forge 347kB -2024-05-06T16:49:36Z #11 151.8 + aws-c-cal 0.6.11 heb1d5e4_0 conda-forge 46kB -2024-05-06T16:49:36Z #11 151.8 + libzip 1.10.1 h2629f0a_3 conda-forge 107kB -2024-05-06T16:49:36Z #11 151.8 + libllvm14 14.0.6 hcd5def8_4 conda-forge 31MB -2024-05-06T16:49:36Z #11 151.8 + zstd 1.5.6 ha6fb4c9_0 conda-forge 555kB -2024-05-06T16:49:36Z #11 151.8 + hdf4 4.2.15 h2a13503_7 conda-forge 757kB -2024-05-06T16:49:36Z #11 151.8 + tk 8.6.13 noxft_h4845f30_101 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + zlib 1.2.13 hd590300_5 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libssh2 1.11.0 h0841786_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + pcre2 10.43 hcad00b1_0 conda-forge 951kB -2024-05-06T16:49:36Z #11 151.8 + libpng 1.6.43 h2797004_0 conda-forge 288kB -2024-05-06T16:49:36Z #11 151.8 + libsqlite 3.45.3 h2797004_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libgfortran-ng 13.2.0 h69a702a_6 conda-forge 24kB -2024-05-06T16:49:36Z #11 151.8 + librttopo 1.1.0 h8917695_15 conda-forge 233kB -2024-05-06T16:49:36Z #11 151.8 + libnghttp2 1.58.0 h47da74e_1 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libre2-11 2023.09.01 h5a48ba9_2 conda-forge 233kB -2024-05-06T16:49:36Z #11 151.8 + libprotobuf 4.25.3 h08a7969_0 conda-forge 3MB -2024-05-06T16:49:36Z #11 151.8 + libedit 3.1.20191231 he28a2e2_2 conda-forge 124kB -2024-05-06T16:49:36Z #11 151.8 + readline 8.2 h8228510_1 conda-forge 281kB -2024-05-06T16:49:36Z #11 151.8 + xorg-libsm 1.2.4 h7391055_0 conda-forge 27kB -2024-05-06T16:49:36Z #11 151.8 + libkml 1.3.0 h01aab08_1018 conda-forge 514kB -2024-05-06T16:49:36Z #11 151.8 + expat 2.6.2 h59595ed_0 conda-forge 138kB -2024-05-06T16:49:36Z #11 151.8 + libxml2 2.12.6 h232c23b_2 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + ucx 1.15.0 ha691c75_8 conda-forge 7MB -2024-05-06T16:49:36Z #11 151.8 + brotli-bin 1.1.0 hd590300_1 conda-forge 19kB -2024-05-06T16:49:36Z #11 151.8 + xorg-libx11 1.8.9 h8ee46fc_0 conda-forge 828kB -2024-05-06T16:49:36Z #11 151.8 + libthrift 0.19.0 hb90f79a_1 conda-forge 409kB -2024-05-06T16:49:36Z #11 151.8 + aws-c-io 0.14.7 hbfbeace_6 conda-forge 158kB -2024-05-06T16:49:36Z #11 151.8 + minizip 4.0.5 h0ab5242_0 conda-forge 91kB -2024-05-06T16:49:36Z #11 151.8 + libtiff 4.6.0 h1dd3fc0_3 conda-forge 283kB -2024-05-06T16:49:36Z #11 151.8 + blosc 1.21.5 hc2324a3_1 conda-forge 49kB -2024-05-06T16:49:36Z #11 151.8 + libglib 2.80.0 hf2295e7_6 conda-forge 4MB -2024-05-06T16:49:36Z #11 151.8 + freetype 2.12.1 h267a509_2 conda-forge 635kB -2024-05-06T16:49:36Z #11 151.8 + nss 3.98 h1d7d5a4_0 conda-forge 2MB -2024-05-06T16:49:36Z #11 151.8 + libopenblas 0.3.27 pthreads_h413a1c8_0 conda-forge 6MB -2024-05-06T16:49:36Z #11 151.8 + re2 2023.09.01 h7f4b329_2 conda-forge 27kB -2024-05-06T16:49:36Z #11 151.8 + orc 2.0.0 h17fec99_1 conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + krb5 1.21.2 h659d440_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + sqlite 3.45.3 h2c6b66d_0 conda-forge 849kB -2024-05-06T16:49:36Z #11 151.8 + python 3.11.9 hb806964_0_cpython conda-forge 31MB -2024-05-06T16:49:36Z #11 151.8 + libllvm16 16.0.6 hb3ce162_3 conda-forge 35MB -2024-05-06T16:49:36Z #11 151.8 + libarchive 3.7.2 h2aa1ff5_1 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + libxslt 1.1.39 h76b75d6_0 conda-forge 254kB -2024-05-06T16:49:36Z #11 151.8 + brotli 1.1.0 hd590300_1 conda-forge 19kB -2024-05-06T16:49:36Z #11 151.8 + xorg-libxext 1.3.4 h0b41bf4_2 conda-forge 50kB -2024-05-06T16:49:36Z #11 151.8 + xorg-libxrender 0.9.11 hd590300_0 conda-forge 38kB -2024-05-06T16:49:36Z #11 151.8 + aws-c-http 0.8.1 hdb68c23_10 conda-forge 195kB -2024-05-06T16:49:36Z #11 151.8 + aws-c-event-stream 0.4.2 h01f5eca_8 conda-forge 54kB -2024-05-06T16:49:36Z #11 151.8 + freexl 2.0.0 h743c826_0 conda-forge 60kB -2024-05-06T16:49:36Z #11 151.8 + lcms2 2.16 hb7c19ff_0 conda-forge 245kB -2024-05-06T16:49:36Z #11 151.8 + openjpeg 2.5.2 h488ebb8_0 conda-forge 342kB -2024-05-06T16:49:36Z #11 151.8 + fontconfig 2.14.2 h14ed4e7_0 conda-forge 272kB -2024-05-06T16:49:36Z #11 151.8 + libblas 3.9.0 22_linux64_openblas conda-forge 15kB -2024-05-06T16:49:36Z #11 151.8 + libgrpc 1.62.2 h15f2491_0 conda-forge 7MB -2024-05-06T16:49:36Z #11 151.8 + libpq 16.2 h33b98f1_1 conda-forge 3MB -2024-05-06T16:49:36Z #11 151.8 + libcurl 8.7.1 hca28451_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + aws-c-auth 0.7.18 he0b1f16_0 conda-forge 105kB -2024-05-06T16:49:36Z #11 151.8 + aws-c-mqtt 0.10.4 h50844eb_0 conda-forge 163kB -2024-05-06T16:49:36Z #11 151.8 + cairo 1.18.0 h3faef2a_0 conda-forge 982kB -2024-05-06T16:49:36Z #11 151.8 + libcblas 3.9.0 22_linux64_openblas conda-forge 14kB -2024-05-06T16:49:36Z #11 151.8 + liblapack 3.9.0 22_linux64_openblas conda-forge 14kB -2024-05-06T16:49:36Z #11 151.8 + postgresql 16.2 h82ecc9d_1 conda-forge 5MB -2024-05-06T16:49:36Z #11 151.8 + azure-core-cpp 1.11.1 h91d86a7_1 conda-forge 343kB -2024-05-06T16:49:36Z #11 151.8 + libgoogle-cloud 2.23.0 h9be4e54_1 conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + cfitsio 4.4.0 hbdc6101_1 conda-forge 914kB -2024-05-06T16:49:36Z #11 151.8 + hdf5 1.14.3 nompi_h4f84152_101 conda-forge 4MB -2024-05-06T16:49:36Z #11 151.8 + proj 9.4.0 h1d62c97_1 conda-forge 3MB -2024-05-06T16:49:36Z #11 151.8 + xerces-c 3.2.5 hac6953d_0 conda-forge 2MB -2024-05-06T16:49:36Z #11 151.8 + aws-c-s3 0.5.7 h6be9164_2 conda-forge 108kB -2024-05-06T16:49:36Z #11 151.8 + poppler 24.04.0 hb6cd0d7_0 conda-forge 2MB -2024-05-06T16:49:36Z #11 151.8 + azure-storage-common-cpp 12.5.0 h94269e2_4 conda-forge 132kB -2024-05-06T16:49:36Z #11 151.8 + azure-identity-cpp 1.6.0 hf1915f5_1 conda-forge 191kB -2024-05-06T16:49:36Z #11 151.8 + libgoogle-cloud-storage 2.23.0 hc7a4891_1 conda-forge 753kB -2024-05-06T16:49:36Z #11 151.8 + libnetcdf 4.9.2 nompi_h9612171_113 conda-forge 849kB -2024-05-06T16:49:36Z #11 151.8 + kealib 1.5.3 h2f55d51_0 conda-forge 173kB -2024-05-06T16:49:36Z #11 151.8 + libspatialite 5.1.0 h6f065fc_5 conda-forge 4MB -2024-05-06T16:49:36Z #11 151.8 + geotiff 1.7.1 h6cf1f90_16 conda-forge 134kB -2024-05-06T16:49:36Z #11 151.8 + aws-crt-cpp 0.26.8 h2150271_2 conda-forge 340kB -2024-05-06T16:49:36Z #11 151.8 + azure-storage-blobs-cpp 12.10.0 h00ab1b0_1 conda-forge 517kB -2024-05-06T16:49:36Z #11 151.8 + netcdf-fortran 4.6.1 nompi_hacb5139_103 conda-forge 432kB -2024-05-06T16:49:36Z #11 151.8 + aws-sdk-cpp 1.11.267 hddb5a97_7 conda-forge 4MB -2024-05-06T16:49:36Z #11 151.8 + esmf 8.6.1 nompi_h7b237b1_0 conda-forge 24MB -2024-05-06T16:49:36Z #11 151.8 + tiledb 2.22.0 h27f064a_3 conda-forge 4MB -2024-05-06T16:49:36Z #11 151.8 + libarrow 15.0.2 hefa796f_6_cpu conda-forge 8MB -2024-05-06T16:49:36Z #11 151.8 + libgdal 3.8.5 hf9625ee_2 conda-forge 11MB -2024-05-06T16:49:36Z #11 151.8 + libparquet 15.0.2 hacf5a1f_6_cpu conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + libarrow-gandiva 15.0.2 hc1954e9_6_cpu conda-forge 898kB -2024-05-06T16:49:36Z #11 151.8 + libarrow-flight 15.0.2 hc4f8a93_6_cpu conda-forge 509kB -2024-05-06T16:49:36Z #11 151.8 + libarrow-acero 15.0.2 hbabe93e_6_cpu conda-forge 601kB -2024-05-06T16:49:36Z #11 151.8 + libarrow-flight-sql 15.0.2 he4f5ca8_6_cpu conda-forge 197kB -2024-05-06T16:49:36Z #11 151.8 + libarrow-dataset 15.0.2 hbabe93e_6_cpu conda-forge 588kB -2024-05-06T16:49:36Z #11 151.8 + libarrow-substrait 15.0.2 he4f5ca8_6_cpu conda-forge 521kB -2024-05-06T16:49:36Z #11 151.8 + wheel 0.43.0 pyhd8ed1ab_1 conda-forge 58kB -2024-05-06T16:49:36Z #11 151.8 + setuptools 69.5.1 pyhd8ed1ab_0 conda-forge 502kB -2024-05-06T16:49:36Z #11 151.8 + pip 24.0 pyhd8ed1ab_0 conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + cached_property 1.5.2 pyha770c72_1 conda-forge 11kB -2024-05-06T16:49:36Z #11 151.8 + networkx 3.3 pyhd8ed1ab_1 conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + charset-normalizer 3.3.2 pyhd8ed1ab_0 conda-forge 47kB -2024-05-06T16:49:36Z #11 151.8 + idna 3.7 pyhd8ed1ab_0 conda-forge 53kB -2024-05-06T16:49:36Z #11 151.8 + ppft 1.7.6.8 pyhd8ed1ab_0 conda-forge 34kB -2024-05-06T16:49:36Z #11 151.8 + pox 0.3.4 pyhd8ed1ab_0 conda-forge 27kB -2024-05-06T16:49:36Z #11 151.8 + dill 0.3.8 pyhd8ed1ab_0 conda-forge 88kB -2024-05-06T16:49:36Z #11 151.8 + future 1.0.0 pyhd8ed1ab_0 conda-forge 364kB -2024-05-06T16:49:36Z #11 151.8 + six 1.16.0 pyh6c4a22f_0 conda-forge 14kB -2024-05-06T16:49:36Z #11 151.8 + munkres 1.1.4 pyh9f0ad1d_0 conda-forge 12kB -2024-05-06T16:49:36Z #11 151.8 + pyparsing 3.1.2 pyhd8ed1ab_0 conda-forge 89kB -2024-05-06T16:49:36Z #11 151.8 + cycler 0.12.1 pyhd8ed1ab_0 conda-forge 13kB -2024-05-06T16:49:36Z #11 151.8 + python-tzdata 2024.1 pyhd8ed1ab_0 conda-forge 144kB -2024-05-06T16:49:36Z #11 151.8 + certifi 2024.2.2 pyhd8ed1ab_0 conda-forge Cached -2024-05-06T16:49:36Z #11 151.8 + attrs 23.2.0 pyh71513ae_0 conda-forge 55kB -2024-05-06T16:49:36Z #11 151.8 + threadpoolctl 3.5.0 pyhc1e730c_0 conda-forge 24kB -2024-05-06T16:49:36Z #11 151.8 + joblib 1.4.2 pyhd8ed1ab_0 conda-forge 220kB -2024-05-06T16:49:36Z #11 151.8 + fsspec 2024.3.1 pyhca7485f_0 conda-forge 129kB -2024-05-06T16:49:36Z #11 151.8 + toolz 0.12.1 pyhd8ed1ab_0 conda-forge 52kB -2024-05-06T16:49:36Z #11 151.8 + tblib 3.0.0 pyhd8ed1ab_0 conda-forge 17kB -2024-05-06T16:49:36Z #11 151.8 + sortedcontainers 2.4.0 pyhd8ed1ab_0 conda-forge 26kB -2024-05-06T16:49:36Z #11 151.8 + cloudpickle 3.0.0 pyhd8ed1ab_0 conda-forge 25kB -2024-05-06T16:49:36Z #11 151.8 + pysocks 1.7.1 pyha2e5f31_6 conda-forge 19kB -2024-05-06T16:49:36Z #11 151.8 + xyzservices 2024.4.0 pyhd8ed1ab_0 conda-forge 46kB -2024-05-06T16:49:36Z #11 151.8 + zipp 3.17.0 pyhd8ed1ab_0 conda-forge 19kB -2024-05-06T16:49:36Z #11 151.8 + pytz 2024.1 pyhd8ed1ab_0 conda-forge 189kB -2024-05-06T16:49:36Z #11 151.8 + dataclasses 0.8 pyhc8e2a94_3 conda-forge 10kB -2024-05-06T16:49:36Z #11 151.8 + platformdirs 4.2.1 pyhd8ed1ab_0 conda-forge 20kB -2024-05-06T16:49:36Z #11 151.8 + typing_extensions 4.11.0 pyha770c72_0 conda-forge 38kB -2024-05-06T16:49:36Z #11 151.8 + haversine 2.8.1 pyhd8ed1ab_0 conda-forge 14kB -2024-05-06T16:49:36Z #11 151.8 + affine 2.4.0 pyhd8ed1ab_0 conda-forge 19kB -2024-05-06T16:49:36Z #11 151.8 + packaging 24.0 pyhd8ed1ab_0 conda-forge 50kB -2024-05-06T16:49:36Z #11 151.8 + zict 3.0.0 pyhd8ed1ab_0 conda-forge 36kB -2024-05-06T16:49:36Z #11 151.8 + locket 1.0.0 pyhd8ed1ab_0 conda-forge 8kB -2024-05-06T16:49:36Z #11 151.8 + boltons 24.0.0 pyhd8ed1ab_0 conda-forge 298kB -2024-05-06T16:49:36Z #11 151.8 + click 8.1.7 unix_pyh707e725_0 conda-forge 84kB -2024-05-06T16:49:36Z #11 151.8 + cached-property 1.5.2 hd8ed1ab_1 conda-forge 4kB -2024-05-06T16:49:36Z #11 151.8 + docrep 0.3.2 pyh44b312d_0 conda-forge 19kB -2024-05-06T16:49:36Z #11 151.8 + python-dateutil 2.9.0 pyhd8ed1ab_0 conda-forge 223kB -2024-05-06T16:49:36Z #11 151.8 + importlib-metadata 7.1.0 pyha770c72_0 conda-forge 27kB -2024-05-06T16:49:36Z #11 151.8 + pytools 2024.1.2 pyhd8ed1ab_0 conda-forge 72kB -2024-05-06T16:49:36Z #11 151.8 + typing-extensions 4.11.0 hd8ed1ab_0 conda-forge 10kB -2024-05-06T16:49:36Z #11 151.8 + pint 0.23 pyhd8ed1ab_0 conda-forge 237kB -2024-05-06T16:49:36Z #11 151.8 + partd 1.4.1 pyhd8ed1ab_0 conda-forge 21kB -2024-05-06T16:49:36Z #11 151.8 + cligj 0.7.2 pyhd8ed1ab_1 conda-forge 10kB -2024-05-06T16:49:36Z #11 151.8 + click-plugins 1.1.1 py_0 conda-forge 9kB -2024-05-06T16:49:36Z #11 151.8 + importlib_metadata 7.1.0 hd8ed1ab_0 conda-forge 9kB -2024-05-06T16:49:36Z #11 151.8 + annotated-types 0.6.0 pyhd8ed1ab_0 conda-forge 17kB -2024-05-06T16:49:36Z #11 151.8 + jsonpickle 3.0.4 pyhd8ed1ab_0 conda-forge 39kB -2024-05-06T16:49:36Z #11 151.8 + mpi4py 3.1.6 py311he9ffdee_0 conda-forge 567kB -2024-05-06T16:49:36Z #11 151.8 + markupsafe 2.1.5 py311h459d7ec_0 conda-forge 28kB -2024-05-06T16:49:36Z #11 151.8 + brotli-python 1.1.0 py311hb755f60_1 conda-forge 351kB -2024-05-06T16:49:36Z #11 151.8 + kiwisolver 1.4.5 py311h9547e67_1 conda-forge 73kB -2024-05-06T16:49:36Z #11 151.8 + llvmlite 0.42.0 py311ha6695c7_1 conda-forge 3MB -2024-05-06T16:49:36Z #11 151.8 + pillow 10.3.0 py311h18e6fac_0 conda-forge 43MB -2024-05-06T16:49:36Z #11 151.8 + lz4 4.3.3 py311h38e4bf4_0 conda-forge 40kB -2024-05-06T16:49:36Z #11 151.8 + tornado 6.4 py311h459d7ec_0 conda-forge 853kB -2024-05-06T16:49:36Z #11 151.8 + psutil 5.9.8 py311h459d7ec_0 conda-forge 506kB -2024-05-06T16:49:36Z #11 151.8 + msgpack-python 1.0.7 py311h9547e67_0 conda-forge 204kB -2024-05-06T16:49:36Z #11 151.8 + rtree 1.2.0 py311h3bb2b0f_0 conda-forge 64kB -2024-05-06T16:49:36Z #11 151.8 + raven-hydro 0.2.4 py311h14de304_1 conda-forge 786kB -2024-05-06T16:49:36Z #11 151.8 + lxml 5.2.1 py311hc0a218f_0 conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + pyyaml 6.0.1 py311h459d7ec_1 conda-forge 201kB -2024-05-06T16:49:36Z #11 151.8 + numpy 1.26.4 py311h64a7726_0 conda-forge 8MB -2024-05-06T16:49:36Z #11 151.8 + multiprocess 0.70.16 py311h459d7ec_0 conda-forge 348kB -2024-05-06T16:49:36Z #11 151.8 + fonttools 4.51.0 py311h459d7ec_0 conda-forge 3MB -2024-05-06T16:49:36Z #11 151.8 + pyproj 3.6.1 py311hb3a3e68_6 conda-forge 553kB -2024-05-06T16:49:36Z #11 151.8 + cytoolz 0.12.3 py311h459d7ec_0 conda-forge 396kB -2024-05-06T16:49:36Z #11 151.8 + pydantic-core 2.18.2 py311h5ecf98a_0 conda-forge 2MB -2024-05-06T16:49:36Z #11 151.8 + contourpy 1.2.1 py311h9547e67_0 conda-forge 259kB -2024-05-06T16:49:36Z #11 151.8 + h5py 3.11.0 nompi_py311hebc2b07_100 conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + shapely 2.0.4 py311h2032efe_0 conda-forge 577kB -2024-05-06T16:49:36Z #11 151.8 + gdal 3.8.5 py311hd032c08_2 conda-forge 2MB -2024-05-06T16:49:36Z #11 151.8 + pandas 2.2.2 py311h320fe9a_0 conda-forge 16MB -2024-05-06T16:49:36Z #11 151.8 + scipy 1.13.0 py311h517d4fd_1 conda-forge 17MB -2024-05-06T16:49:36Z #11 151.8 + pyarrow 15.0.2 py311hd5e4297_6_cpu conda-forge 5MB -2024-05-06T16:49:36Z #11 151.8 + numba 0.59.1 py311h96b013e_0 conda-forge 6MB -2024-05-06T16:49:36Z #11 151.8 + cftime 1.6.3 py311h1f0f07a_0 conda-forge 248kB -2024-05-06T16:49:36Z #11 151.8 + bottleneck 1.3.8 py311h1f0f07a_0 conda-forge 143kB -2024-05-06T16:49:36Z #11 151.8 + matplotlib-base 3.8.4 py311h54ef318_0 conda-forge 8MB -2024-05-06T16:49:36Z #11 151.8 + fiona 1.9.6 py311hf8e0aa6_0 conda-forge 993kB -2024-05-06T16:49:36Z #11 151.8 + pyogrio 0.7.2 py311hf8e0aa6_1 conda-forge 663kB -2024-05-06T16:49:36Z #11 151.8 + scikit-learn 1.4.2 py311hc009520_0 conda-forge 10MB -2024-05-06T16:49:36Z #11 151.8 + netcdf4 1.6.5 nompi_py311he8ad708_100 conda-forge 556kB -2024-05-06T16:49:36Z #11 151.8 + jinja2 3.1.3 pyhd8ed1ab_0 conda-forge 112kB -2024-05-06T16:49:36Z #11 151.8 + urllib3 2.2.1 pyhd8ed1ab_0 conda-forge 95kB -2024-05-06T16:49:36Z #11 151.8 + yamale 5.0.0 pyhca7485f_0 conda-forge 45kB -2024-05-06T16:49:36Z #11 151.8 + dask-core 2024.5.0 pyhd8ed1ab_0 conda-forge 881kB -2024-05-06T16:49:36Z #11 151.8 + esmpy 8.6.1 pyhc1e730c_0 conda-forge 2MB -2024-05-06T16:49:36Z #11 151.8 + snuggs 1.4.7 py_0 conda-forge 8kB -2024-05-06T16:49:36Z #11 151.8 + patsy 0.5.6 pyhd8ed1ab_0 conda-forge 187kB -2024-05-06T16:49:36Z #11 151.8 + eofs 1.4.1 pyhd8ed1ab_1 conda-forge 863kB -2024-05-06T16:49:36Z #11 151.8 + pymbolic 2022.2 pyhd8ed1ab_0 conda-forge 90kB -2024-05-06T16:49:36Z #11 151.8 + pathos 0.3.2 pyhd8ed1ab_1 conda-forge 53kB -2024-05-06T16:49:36Z #11 151.8 + pydantic 2.7.1 pyhd8ed1ab_0 conda-forge 282kB -2024-05-06T16:49:36Z #11 151.8 + h5netcdf 1.3.0 pyhd8ed1ab_0 conda-forge 42kB -2024-05-06T16:49:36Z #11 151.8 + geopandas-base 0.14.4 pyha770c72_0 conda-forge 1MB -2024-05-06T16:49:36Z #11 151.8 + xarray 2024.3.0 pyhd8ed1ab_0 conda-forge 765kB -2024-05-06T16:49:36Z #11 151.8 + properscoring 0.1 py_0 conda-forge 22kB -2024-05-06T16:49:36Z #11 151.8 + pyarrow-hotfix 0.6 pyhd8ed1ab_0 conda-forge 14kB -2024-05-06T16:49:36Z #11 151.8 + sparse 0.15.1 pyhd8ed1ab_1 conda-forge 92kB -2024-05-06T16:49:36Z #11 151.8 + nc-time-axis 1.4.1 pyhd8ed1ab_0 conda-forge 19kB -2024-05-06T16:49:36Z #11 151.8 + mapclassify 2.6.1 pyhd8ed1ab_0 conda-forge 39kB -2024-05-06T16:49:36Z #11 151.8 + bokeh 3.4.1 pyhd8ed1ab_0 conda-forge 5MB -2024-05-06T16:49:36Z #11 151.8 + branca 0.7.2 pyhd8ed1ab_0 conda-forge 29kB -2024-05-06T16:49:36Z #11 151.8 + requests 2.31.0 pyhd8ed1ab_0 conda-forge 57kB -2024-05-06T16:49:36Z #11 151.8 + distributed 2024.5.0 pyhd8ed1ab_0 conda-forge 795kB -2024-05-06T16:49:36Z #11 151.8 + dask-expr 1.1.0 pyhd8ed1ab_0 conda-forge 158kB -2024-05-06T16:49:36Z #11 151.8 + spotpy 1.6.2 pyhd8ed1ab_0 conda-forge 5MB -2024-05-06T16:49:36Z #11 151.8 + cf_xarray 0.9.0 pyhd8ed1ab_0 conda-forge 56kB -2024-05-06T16:49:36Z #11 151.8 + pooch 1.8.1 pyhd8ed1ab_0 conda-forge 53kB -2024-05-06T16:49:36Z #11 151.8 + folium 0.16.0 pyhd8ed1ab_0 conda-forge 74kB -2024-05-06T16:49:36Z #11 151.8 + owslib 0.28.1 pyhd8ed1ab_0 conda-forge 137kB -2024-05-06T16:49:36Z #11 151.8 + dask 2024.5.0 pyhd8ed1ab_0 conda-forge 8kB -2024-05-06T16:49:36Z #11 151.8 + xesmf 0.8.5 pyhd8ed1ab_0 conda-forge 45kB -2024-05-06T16:49:36Z #11 151.8 + geopandas 0.14.4 pyhd8ed1ab_0 conda-forge 8kB -2024-05-06T16:49:36Z #11 151.8 + xhistogram 0.3.2 pyhd8ed1ab_0 conda-forge 21kB -2024-05-06T16:49:36Z #11 151.8 + xrft 1.0.1 pyhd8ed1ab_0 conda-forge 33kB -2024-05-06T16:49:36Z #11 151.8 + rasterio 1.3.10 py311h375a7ea_0 conda-forge 7MB -2024-05-06T16:49:36Z #11 151.8 + statsmodels 0.14.1 py311h1f0f07a_0 conda-forge 12MB -2024-05-06T16:49:36Z #11 151.8 + rioxarray 0.15.5 pyhd8ed1ab_0 conda-forge 51kB -2024-05-06T16:49:36Z #11 151.8 + xskillscore 0.0.26 pyhd8ed1ab_0 conda-forge 68kB -2024-05-06T16:49:36Z #11 151.8 + bias_correction 0.4 pyhd8ed1ab_0 conda-forge 8kB -2024-05-06T16:49:36Z #11 151.8 + xclim 0.49.0 pyhd8ed1ab_0 conda-forge 692kB -2024-05-06T16:49:36Z #11 151.8 + climpred 2.4.0 pyhd8ed1ab_0 conda-forge 131kB -2024-05-06T16:49:36Z #11 151.8 + ravenpy 0.14.0 pyhd8ed1ab_1 conda-forge 6MB -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 Summary: -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 Install: 299 packages -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 Total download: 485MB -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 ────────────────────────────────────────────────────────────────────────────────────────────── -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:49:36Z #11 151.8 -2024-05-06T16:51:12Z #11 247.7 -2024-05-06T16:51:12Z #11 247.7 Looking for: ['xclim', 'ravenpy', 'python=3.11'] -2024-05-06T16:51:12Z #11 247.7 -2024-05-06T16:51:12Z #11 247.7 -2024-05-06T16:51:12Z #11 247.7 Downloading and Extracting Packages: ...working... done -2024-05-06T16:51:16Z #11 247.7 Preparing transaction: ...working... done -2024-05-06T16:51:30Z #11 252.1 Verifying transaction: ...working... done -2024-05-06T16:52:05Z #11 266.6 Executing transaction: ...working... done -2024-05-06T16:52:05Z #11 300.9 -2024-05-06T16:52:05Z #11 300.9 To activate this environment, use -2024-05-06T16:52:05Z #11 300.9 -2024-05-06T16:52:05Z #11 300.9 $ mamba activate birdy -2024-05-06T16:52:05Z #11 300.9 -2024-05-06T16:52:05Z #11 300.9 To deactivate an active environment, use -2024-05-06T16:52:05Z #11 300.9 -2024-05-06T16:52:05Z #11 300.9 $ mamba deactivate -2024-05-06T16:52:05Z #11 300.9 -2024-05-06T16:52:08Z #11 304.4 Channels: -2024-05-06T16:52:08Z #11 304.4 - conda-forge -2024-05-06T16:52:08Z #11 304.4 - cdat -2024-05-06T16:52:08Z #11 304.4 - bokeh -2024-05-06T16:52:08Z #11 304.4 - pyviz/label/dev -2024-05-06T16:52:08Z #11 304.4 - defaults -2024-05-06T16:52:08Z #11 304.4 Platform: linux-64 -2024-05-06T16:53:11Z #11 304.4 Collecting package metadata (repodata.json): ...working... Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='conda.anaconda.org', port=443): Read timed out. (read timeout=60.0)")': /pyviz/label/dev/noarch/repodata.json.zst -2024-05-06T16:53:11Z #11 367.5 -2024-05-06T16:53:36Z #11 392.7 done -2024-05-06T16:54:39Z #11 392.7 Solving environment: ...working... warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:39Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.7 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 455.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:54:40Z #11 456.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:36Z #11 512.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 512.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:37Z #11 513.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:38Z #11 514.2 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:39Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:39Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:39Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.6 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.8 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 515.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:40Z #11 516.5 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 516.9 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T16:55:41Z #11 517.0 warning libmamba Problem type not implemented SOLVER_RULE_STRICT_REPO_PRIORITY -2024-05-06T17:01:55Z #11 891.1 done -2024-05-06T17:03:38Z #11 994.3 -2024-05-06T17:03:38Z #11 994.3 Downloading and Extracting Packages: ...working... done -2024-05-06T17:03:45Z #11 994.3 Preparing transaction: ...working... done -2024-05-06T17:04:08Z #11 1001.3 Verifying transaction: ...working... done -2024-05-06T17:05:02Z #11 1024.5 Executing transaction: ...working... /opt/conda/envs/birdy/lib/python3.11/site-packages/jupyter_core/command.py:23: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs -2024-05-06T17:05:02Z #11 1078.6 given by the platformdirs library. To remove this warning and -2024-05-06T17:05:02Z #11 1078.6 see the appropriate new directories, set the environment variable -2024-05-06T17:05:02Z #11 1078.6 `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. -2024-05-06T17:05:02Z #11 1078.6 The use of platformdirs will be the default in `jupyter_core` v6 -2024-05-06T17:05:02Z #11 1078.6 from . import paths -2024-05-06T17:05:02Z #11 1078.6 Enabling: jupyterlab_git -2024-05-06T17:05:02Z #11 1078.6 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-05-06T17:05:02Z #11 1078.6 - Validating... -2024-05-06T17:05:02Z #11 1078.6 jupyterlab_git OK -2024-05-06T17:05:02Z #11 1078.6 -2024-05-06T17:05:02Z #11 1078.6 done -2024-05-06T17:05:51Z #11 1086.1 Installing pip dependencies: ...working... Ran pip subprocess with arguments: -2024-05-06T17:05:51Z #11 1127.2 ['/opt/conda/envs/birdy/bin/python', '-m', 'pip', 'install', '-U', '-r', '/condaenv.51lssouf.requirements.txt', '--exists-action=b'] -2024-05-06T17:05:51Z #11 1127.2 Pip subprocess output: -2024-05-06T17:05:51Z #11 1127.2 Collecting xncml (from -r /condaenv.51lssouf.requirements.txt (line 1)) -2024-05-06T17:05:51Z #11 1127.2 Downloading xncml-0.4.0-py2.py3-none-any.whl.metadata (1.3 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting hsclient (from -r /condaenv.51lssouf.requirements.txt (line 2)) -2024-05-06T17:05:51Z #11 1127.2 Downloading hsclient-1.0.0-py3-none-any.whl.metadata (4.7 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting fstd2nc (from -r /condaenv.51lssouf.requirements.txt (line 3)) -2024-05-06T17:05:51Z #11 1127.2 Downloading fstd2nc-0.20240401.1.tar.gz (168 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 168.0/168.0 kB 8.2 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Installing build dependencies: started -2024-05-06T17:05:51Z #11 1127.2 Installing build dependencies: finished with status 'done' -2024-05-06T17:05:51Z #11 1127.2 Getting requirements to build wheel: started -2024-05-06T17:05:51Z #11 1127.2 Getting requirements to build wheel: finished with status 'done' -2024-05-06T17:05:51Z #11 1127.2 Installing backend dependencies: started -2024-05-06T17:05:51Z #11 1127.2 Installing backend dependencies: finished with status 'done' -2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (pyproject.toml): started -2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (pyproject.toml): finished with status 'done' -2024-05-06T17:05:51Z #11 1127.2 Collecting figanos (from -r /condaenv.51lssouf.requirements.txt (line 4)) -2024-05-06T17:05:51Z #11 1127.2 Downloading figanos-0.3.0-py3-none-any.whl.metadata (7.4 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting pixiedust (from -r /condaenv.51lssouf.requirements.txt (line 5)) -2024-05-06T17:05:51Z #11 1127.2 Downloading pixiedust-1.1.19.tar.gz (197 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 197.6/197.6 kB 25.1 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (setup.py): started -2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (setup.py): finished with status 'done' -2024-05-06T17:05:51Z #11 1127.2 Collecting ipython_blocking (from -r /condaenv.51lssouf.requirements.txt (line 6)) -2024-05-06T17:05:51Z #11 1127.2 Downloading ipython_blocking-0.3.1-py3-none-any.whl.metadata (5.8 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting jupyternotify (from -r /condaenv.51lssouf.requirements.txt (line 7)) -2024-05-06T17:05:51Z #11 1127.2 Downloading jupyternotify-0.1.15.tar.gz (7.2 kB) -2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (setup.py): started -2024-05-06T17:05:51Z #11 1127.2 Preparing metadata (setup.py): finished with status 'done' -2024-05-06T17:05:51Z #11 1127.2 Collecting jupyterlab-logout (from -r /condaenv.51lssouf.requirements.txt (line 8)) -2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_logout-1.0.0-py3-none-any.whl.metadata (4.8 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting jupyterlab-tabular-data-editor (from -r /condaenv.51lssouf.requirements.txt (line 9)) -2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl.metadata (6.0 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting pytest-tornasync (from -r /condaenv.51lssouf.requirements.txt (line 10)) -2024-05-06T17:05:51Z #11 1127.2 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl.metadata (4.8 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting xmltodict (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) -2024-05-06T17:05:51Z #11 1127.2 Downloading xmltodict-0.13.0-py2.py3-none-any.whl.metadata (7.7 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting xsdata (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) -2024-05-06T17:05:51Z #11 1127.2 Downloading xsdata-24.4-py3-none-any.whl.metadata (7.0 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: xarray in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (2023.8.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cftime in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (1.6.3) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: netCDF4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (1.6.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: dask in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (2024.5.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: psutil in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (5.9.8) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: setuptools in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (69.5.1) -2024-05-06T17:05:51Z #11 1127.2 Collecting hsmodels>=1.0.0 (from hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) -2024-05-06T17:05:51Z #11 1127.2 Downloading hsmodels-1.0.3-py3-none-any.whl.metadata (716 bytes) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: requests in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.31.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: requests-oauthlib in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.0.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: numpy!=1.15.3,>=1.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fstd2nc->-r /condaenv.51lssouf.requirements.txt (line 3)) (1.24.4) -2024-05-06T17:05:51Z #11 1127.2 Collecting fstd2nc-deps>=0.20200304.0 (from fstd2nc->-r /condaenv.51lssouf.requirements.txt (line 3)) -2024-05-06T17:05:51Z #11 1127.2 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl.metadata (424 bytes) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cartopy in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.23.0) -2024-05-06T17:05:51Z #11 1127.2 Collecting cairosvg (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) -2024-05-06T17:05:51Z #11 1127.2 Downloading CairoSVG-2.7.1-py3-none-any.whl.metadata (2.7 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: geopandas in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.14.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: matplotlib in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.8.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pandas in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.1.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: platformdirs in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (4.2.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyyaml in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (6.0.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: seaborn in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.13.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: scikit-image in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.22.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: xclim>=0.38 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.47.0) -2024-05-06T17:05:51Z #11 1127.2 Collecting geojson (from pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) -2024-05-06T17:05:51Z #11 1127.2 Downloading geojson-3.1.0-py3-none-any.whl.metadata (16 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting astunparse (from pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) -2024-05-06T17:05:51Z #11 1127.2 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: markdown in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) (3.6) -2024-05-06T17:05:51Z #11 1127.2 Collecting colour (from pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) -2024-05-06T17:05:51Z #11 1127.2 Downloading colour-0.1.5-py2.py3-none-any.whl.metadata (18 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: IPython in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (8.22.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ipywidgets in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (8.1.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nbclient in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.7.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (1.0.0) -2024-05-06T17:05:51Z #11 1127.2 Collecting jupyterlab<5,>=4.0.0 (from jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) -2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab-4.2.0-py3-none-any.whl.metadata (16 kB) -2024-05-06T17:05:51Z #11 1127.2 INFO: pip is looking at multiple versions of jupyterlab-tabular-data-editor to determine which version is compatible with other requirements. This could take a while. -2024-05-06T17:05:51Z #11 1127.2 Collecting jupyterlab-logout (from -r /condaenv.51lssouf.requirements.txt (line 8)) -2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl.metadata (2.7 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab-topbar>=0.6.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.6.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab~=3.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (3.6.7) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: packaging in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (24.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: tornado>=6.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (6.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-core in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (5.7.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab-server~=2.19 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.27.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-server<3,>=1.16.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.14.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-ydoc~=0.2.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.2.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-server-ydoc~=0.8.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.8.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nbclassic in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.0.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: notebook<7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (6.5.6) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jinja2>=2.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (3.1.3) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pytest>=3.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest-tornasync->-r /condaenv.51lssouf.requirements.txt (line 10)) (8.2.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pytz in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fstd2nc-deps>=0.20200304.0->fstd2nc->-r /condaenv.51lssouf.requirements.txt (line 3)) (2024.1) -2024-05-06T17:05:51Z #11 1127.2 Collecting rdflib<6.0.0 (from hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) -2024-05-06T17:05:51Z #11 1127.2 Downloading rdflib-5.0.0-py3-none-any.whl.metadata (2.3 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pydantic==2.7.* in /opt/conda/envs/birdy/lib/python3.11/site-packages (from hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.7.1) -2024-05-06T17:05:51Z #11 1127.2 Collecting email-validator (from hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) -2024-05-06T17:05:51Z #11 1127.2 Downloading email_validator-2.1.1-py3-none-any.whl.metadata (26 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: annotated-types>=0.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.7.*->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (0.6.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pydantic-core==2.18.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.7.*->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.18.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: typing-extensions>=4.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pydantic==2.7.*->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (4.11.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: iniconfig in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.51lssouf.requirements.txt (line 10)) (2.0.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pluggy<2.0,>=1.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pytest>=3.0->pytest-tornasync->-r /condaenv.51lssouf.requirements.txt (line 10)) (1.5.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: boltons>=20.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (24.0.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: bottleneck>=1.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.3.8) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cf-xarray>=0.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.9.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: Click>=8.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (8.1.7) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jsonpickle in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.0.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: lmoments3>=1.0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.0.6) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: numba in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.59.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pint>=0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.23) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: scikit-learn>=0.21.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.4.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: scipy>=1.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.13.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: statsmodels in /opt/conda/envs/birdy/lib/python3.11/site-packages (from xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.14.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cloudpickle>=1.5.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (3.0.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fsspec>=2021.09.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (2024.3.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: partd>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (1.4.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: toolz>=0.10.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (0.12.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: importlib-metadata>=4.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (7.1.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.9.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: tzdata>=2022.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2024.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: wheel<1.0,>=0.23.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from astunparse->pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) (0.43.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: six<2.0,>=1.6.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from astunparse->pixiedust->-r /condaenv.51lssouf.requirements.txt (line 5)) (1.16.0) -2024-05-06T17:05:51Z #11 1127.2 Collecting cairocffi (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) -2024-05-06T17:05:51Z #11 1127.2 Downloading cairocffi-1.7.0-py3-none-any.whl.metadata (3.3 kB) -2024-05-06T17:05:51Z #11 1127.2 Collecting cssselect2 (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) -2024-05-06T17:05:51Z #11 1127.2 Downloading cssselect2-0.7.0-py3-none-any.whl.metadata (2.9 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: defusedxml in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.7.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pillow in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (9.4.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: tinycss2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.3.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: shapely>=1.7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.0.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyshp>=2.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.3.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyproj>=3.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cartopy->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.5.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.2.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cycler>=0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.12.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (4.51.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.4.5) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from matplotlib->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.1.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fiona>=1.8.21 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.9.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: decorator in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (5.1.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jedi>=0.16 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.19.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: matplotlib-inline in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.1.7) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: prompt-toolkit<3.1.0,>=3.0.41 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (3.0.42) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pygments>=2.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (2.18.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: stack-data in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.6.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: traitlets>=5.13.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (5.14.3) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pexpect>4.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (4.9.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: comm>=0.1.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.2.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: widgetsnbextension~=4.0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (4.0.10) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab-widgets~=3.0.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipywidgets->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (3.0.10) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: qtconsole in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (5.5.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-console in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (6.6.3) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nbconvert in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (7.16.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ipykernel in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (6.29.3) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-client>=6.1.12 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (7.4.9) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nbformat>=5.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (5.10.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (3.3.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (3.7) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2.0.7) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (2024.2.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: oauthlib>=3.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from requests-oauthlib->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) (3.2.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: networkx>=2.8 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.3) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: imageio>=2.27 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.34.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2023.8.12) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: lazy_loader>=0.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-image->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: attrs>=19.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (23.2.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: click-plugins>=1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.1.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cligj>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.7.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: munch>=2.3.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from fiona>=1.8.21->geopandas->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (4.0.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: zipp>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from importlib-metadata>=4.13.0->dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (3.17.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: parso<0.9.0,>=0.8.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jedi>=0.16->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.8.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jinja2>=2.1->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.1.5) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: entrypoints in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: nest-asyncio>=1.5.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (1.6.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pyzmq>=23.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-client>=6.1.12->nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (24.0.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: anyio>=3.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (4.3.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: argon2-cffi>=21.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (23.1.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-events>=0.9.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.10.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-server-terminals>=0.4.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.5.3) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: overrides>=5.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (7.7.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: prometheus-client>=0.9 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.20.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: send2trash>=1.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.8.3) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: terminado>=0.8.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.18.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: websocket-client>=1.7 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.8.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyter-server-fileid<1,>=0.6.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.9.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ypy-websocket<0.9.0,>=0.8.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.8.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: y-py<0.6.0,>=0.5.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-ydoc~=0.2.4->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.5.9) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: babel>=2.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.14.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: json5>=0.9.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.9.25) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jsonschema>=4.18.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (4.22.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: beautifulsoup4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (4.12.3) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: bleach!=5.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (6.1.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jupyterlab-pygments in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (0.3.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: mistune<4,>=2.0.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (3.0.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pandocfilters>=1.4.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (1.5.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fastjsonschema>=2.15 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbformat>=5.1->nbclient->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (2.19.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ipython-genutils in /opt/conda/envs/birdy/lib/python3.11/site-packages (from notebook<7->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.2.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: notebook-shim>=0.2.3 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from nbclassic->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.2.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: locket in /opt/conda/envs/birdy/lib/python3.11/site-packages (from partd>=1.2.0->dask->xncml->-r /condaenv.51lssouf.requirements.txt (line 1)) (1.0.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: ptyprocess>=0.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from pexpect>4.3->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.7.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: wcwidth in /opt/conda/envs/birdy/lib/python3.11/site-packages (from prompt-toolkit<3.1.0,>=3.0.41->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.2.13) -2024-05-06T17:05:51Z #11 1127.2 Collecting isodate (from rdflib<6.0.0->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) -2024-05-06T17:05:51Z #11 1127.2 Downloading isodate-0.6.1-py2.py3-none-any.whl.metadata (9.6 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: joblib>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.4.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from scikit-learn>=0.21.3->xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (3.5.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: cffi>=1.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cairocffi->cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (1.16.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: webencodings in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cssselect2->cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.5.1) -2024-05-06T17:05:51Z #11 1127.2 Collecting dnspython>=2.0.0 (from email-validator->hsmodels>=1.0.0->hsclient->-r /condaenv.51lssouf.requirements.txt (line 2)) -2024-05-06T17:05:51Z #11 1127.2 Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: debugpy>=1.6.5 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ipykernel->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (1.8.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: llvmlite<0.43,>=0.42.0dev0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from numba->xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.42.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: qtpy>=2.4.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from qtconsole->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (2.4.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: executing>=1.2.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (2.0.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: asttokens>=2.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (2.4.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pure-eval in /opt/conda/envs/birdy/lib/python3.11/site-packages (from stack-data->IPython->ipython_blocking->-r /condaenv.51lssouf.requirements.txt (line 6)) (0.2.2) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: patsy>=0.5.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from statsmodels->xclim>=0.38->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (0.5.6) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: sniffio>=1.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from anyio>=3.1.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.3.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: argon2-cffi-bindings in /opt/conda/envs/birdy/lib/python3.11/site-packages (from argon2-cffi>=21.1->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (21.2.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: pycparser in /opt/conda/envs/birdy/lib/python3.11/site-packages (from cffi>=1.1.0->cairocffi->cairosvg->figanos->-r /condaenv.51lssouf.requirements.txt (line 4)) (2.22) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2023.12.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: referencing>=0.28.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.35.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema>=4.18.0->jupyterlab-server~=2.19->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.18.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: python-json-logger>=2.0.4 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.0.7) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: rfc3339-validator in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.1.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: rfc3986-validator>=0.1.1 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.1.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: aiofiles<23,>=22.1.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (22.1.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: aiosqlite<1,>=0.17.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from ypy-websocket<0.9.0,>=0.8.2->jupyter-server-ydoc~=0.8.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (0.19.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: soupsieve>1.2 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from beautifulsoup4->nbconvert->jupyter->jupyternotify->-r /condaenv.51lssouf.requirements.txt (line 7)) (2.5) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: fqdn in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.5.1) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: isoduration in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (20.11.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: jsonpointer>1.13 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.4) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: uri-template in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.3.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: webcolors>=1.11 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.13) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: arrow>=0.15.0 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (1.3.0) -2024-05-06T17:05:51Z #11 1127.2 Requirement already satisfied: types-python-dateutil>=2.8.10 in /opt/conda/envs/birdy/lib/python3.11/site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=1.16.0->jupyterlab~=3.0->jupyterlab-logout->-r /condaenv.51lssouf.requirements.txt (line 8)) (2.9.0.20240316) -2024-05-06T17:05:51Z #11 1127.2 Downloading xncml-0.4.0-py2.py3-none-any.whl (874 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 874.8/874.8 kB 43.5 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Downloading hsclient-1.0.0-py3-none-any.whl (19 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading figanos-0.3.0-py3-none-any.whl (78 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.1/78.1 kB 12.9 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Downloading ipython_blocking-0.3.1-py3-none-any.whl (7.2 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_logout-0.5.0-py3-none-any.whl (35 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading jupyterlab_tabular_data_editor-1.0.0-py3-none-any.whl (476 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 476.1/476.1 kB 36.2 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Downloading pytest_tornasync-0.6.0.post2-py3-none-any.whl (6.6 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading fstd2nc_deps-0.20200304.6-py2.py3-none-manylinux2010_x86_64.whl (1.8 MB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 67.0 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Downloading hsmodels-1.0.3-py3-none-any.whl (34 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading CairoSVG-2.7.1-py3-none-any.whl (43 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.2/43.2 kB 6.0 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Downloading colour-0.1.5-py2.py3-none-any.whl (23 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading geojson-3.1.0-py3-none-any.whl (15 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading xsdata-24.4-py3-none-any.whl (229 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.3/229.3 kB 28.5 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Downloading rdflib-5.0.0-py3-none-any.whl (231 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 231.1/231.1 kB 30.1 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Downloading cairocffi-1.7.0-py3-none-any.whl (75 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.4/75.4 kB 11.4 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading email_validator-2.1.1-py3-none-any.whl (30 kB) -2024-05-06T17:05:51Z #11 1127.2 Downloading dnspython-2.6.1-py3-none-any.whl (307 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 28.9 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Downloading isodate-0.6.1-py2.py3-none-any.whl (41 kB) -2024-05-06T17:05:51Z #11 1127.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.7/41.7 kB 5.7 MB/s eta 0:00:00 -2024-05-06T17:05:51Z #11 1127.2 Building wheels for collected packages: fstd2nc, pixiedust, jupyternotify -2024-05-06T17:05:51Z #11 1127.2 Building wheel for fstd2nc (pyproject.toml): started -2024-05-06T17:05:51Z #11 1127.2 Building wheel for fstd2nc (pyproject.toml): finished with status 'done' -2024-05-06T17:05:51Z #11 1127.2 Created wheel for fstd2nc: filename=fstd2nc-0.20240401.1-py3-none-any.whl size=169974 sha256=60eb3e9aa6704c8b20c9842182bcda22f08ff47ceb11aea34a2c6e1edbfd6a63 -2024-05-06T17:05:51Z #11 1127.2 Stored in directory: /root/.cache/pip/wheels/52/b1/d1/19426a76db1cc2cdf24ac5663fd82aad9b4824f44bd48ddd80 -2024-05-06T17:05:51Z #11 1127.2 Building wheel for pixiedust (setup.py): started -2024-05-06T17:05:51Z #11 1127.2 Building wheel for pixiedust (setup.py): finished with status 'done' -2024-05-06T17:05:51Z #11 1127.2 Created wheel for pixiedust: filename=pixiedust-1.1.19-py3-none-any.whl size=321786 sha256=7fb5dbd7483fc2af9104522acd74158db7f103cc0887aed57fd543a51e242244 -2024-05-06T17:05:51Z #11 1127.2 Stored in directory: /root/.cache/pip/wheels/95/07/18/a3e64aff394679af4a7ec0192ecae66f2725617c23dc8810fa -2024-05-06T17:05:51Z #11 1127.2 Building wheel for jupyternotify (setup.py): started -2024-05-06T17:05:51Z #11 1127.2 Building wheel for jupyternotify (setup.py): finished with status 'done' -2024-05-06T17:05:51Z #11 1127.2 Created wheel for jupyternotify: filename=jupyternotify-0.1.15-py3-none-any.whl size=8724 sha256=69372593d84aa40731d5b9e7bf3f756dc6121cfbc225b54fdd86c5b5c2c5e7da -2024-05-06T17:05:51Z #11 1127.2 Stored in directory: /root/.cache/pip/wheels/ed/19/e2/59939d0f3bcf11547b07e9af34df315f836561f0c2f59acc6c -2024-05-06T17:05:51Z #11 1127.2 Successfully built fstd2nc pixiedust jupyternotify -2024-05-06T17:05:51Z #11 1127.2 Installing collected packages: colour, xsdata, xmltodict, isodate, geojson, fstd2nc-deps, dnspython, astunparse, rdflib, pytest-tornasync, email-validator, cssselect2, cairocffi, pixiedust, hsmodels, fstd2nc, cairosvg, xncml, hsclient, ipython_blocking, figanos, jupyternotify, jupyterlab-tabular-data-editor, jupyterlab-logout -2024-05-06T17:05:51Z #11 1127.2 Successfully installed astunparse-1.6.3 cairocffi-1.7.0 cairosvg-2.7.1 colour-0.1.5 cssselect2-0.7.0 dnspython-2.6.1 email-validator-2.1.1 figanos-0.3.0 fstd2nc-0.20240401.1 fstd2nc-deps-0.20200304.6 geojson-3.1.0 hsclient-1.0.0 hsmodels-1.0.3 ipython_blocking-0.3.1 isodate-0.6.1 jupyterlab-logout-0.5.0 jupyterlab-tabular-data-editor-1.0.0 jupyternotify-0.1.15 pixiedust-1.1.19 pytest-tornasync-0.6.0.post2 rdflib-5.0.0 xmltodict-0.13.0 xncml-0.4.0 xsdata-24.4 -2024-05-06T17:05:51Z #11 1127.2 -2024-05-06T17:05:51Z #11 1127.2 done -2024-05-06T17:05:51Z #11 1127.2 # -2024-05-06T17:05:51Z #11 1127.2 # To activate this environment, use -2024-05-06T17:05:51Z #11 1127.2 # -2024-05-06T17:05:51Z #11 1127.2 # $ conda activate birdy -2024-05-06T17:05:51Z #11 1127.2 # -2024-05-06T17:05:51Z #11 1127.2 # To deactivate an active environment, use -2024-05-06T17:05:51Z #11 1127.2 # -2024-05-06T17:05:51Z #11 1127.2 # $ conda deactivate -2024-05-06T17:05:51Z #11 1127.2 -2024-05-06T17:06:03Z #11 1139.5 Will remove 774 (1.24 GB) tarball(s). -2024-05-06T17:06:03Z #11 1139.5 Will remove 1 index cache(s). -2024-05-06T17:06:03Z #11 1139.5 Will remove 148 (1.36 GB) package(s). -2024-05-06T17:06:03Z #11 1139.5 There are no tempfile(s) to remove. -2024-05-06T17:06:03Z #11 1139.5 There are no logfile(s) to remove. -2024-05-06T17:06:04Z #11 DONE 1140.3s -2024-05-06T17:06:04Z -2024-05-06T17:06:04Z #12 [ 7/10] RUN python -m ipykernel install --name birdy -2024-05-06T17:06:05Z #12 1.168 0.00s - Debugger warning: It seems that frozen modules are being used, which may -2024-05-06T17:06:05Z #12 1.168 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -2024-05-06T17:06:05Z #12 1.168 0.00s - to python to disable frozen modules. -2024-05-06T17:06:05Z #12 1.168 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -2024-05-06T17:06:05Z #12 1.236 Installed kernelspec birdy in /usr/local/share/jupyter/kernels/birdy -2024-05-06T17:06:05Z #12 DONE 1.4s -2024-05-06T17:06:05Z -2024-05-06T17:06:05Z #13 [ 8/10] RUN jupyter lab build -2024-05-06T17:06:08Z #13 1.964 [LabBuildApp] JupyterLab 3.6.7 -2024-05-06T17:06:08Z #13 1.965 [LabBuildApp] Building in /opt/conda/envs/birdy/share/jupyter/lab -2024-05-06T17:06:08Z #13 2.624 [LabBuildApp] Building jupyterlab assets (production, minimized) -2024-05-06T17:06:08Z #13 2.643 [LabBuildApp] WARNING | The extension "@jupyterlab/git" is outdated. -2024-05-06T17:06:08Z #13 2.643 -2024-05-06T17:08:25Z #13 2.647 -\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\|/-\ -2024-05-06T17:08:25Z #13 DONE 139.2s -2024-05-06T17:08:25Z -2024-05-06T17:08:25Z #14 [ 9/10] RUN jupyter serverextension enable voila --sys-prefix && jupyter serverextension enable panel.io.jupyter_server_extension --sys-prefix && jupyter serverextension list -2024-05-06T17:08:25Z #14 0.643 Enabling: voila -2024-05-06T17:08:25Z #14 0.643 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-05-06T17:08:25Z #14 0.645 - Validating... -2024-05-06T17:08:26Z #14 1.309 voila 0.5.6 OK -2024-05-06T17:08:26Z #14 1.686 Enabling: panel.io.jupyter_server_extension -2024-05-06T17:08:26Z #14 1.686 - Writing config: /opt/conda/envs/birdy/etc/jupyter -2024-05-06T17:08:26Z #14 1.688 - Validating... -2024-05-06T17:08:28Z #14 3.343 panel.io.jupyter_server_extension OK -2024-05-06T17:08:28Z #14 3.834 - Validating... -2024-05-06T17:08:29Z #14 4.664 dask_labextension 6.2.0 OK -2024-05-06T17:08:29Z #14 4.664 - Validating... -2024-05-06T17:08:29Z #14 4.667 jupyter_archive 3.3.4 OK -2024-05-06T17:08:29Z #14 4.667 - Validating... -2024-05-06T17:08:29Z #14 4.667 jupyter_server_proxy 4.1.1-0.dev OK -2024-05-06T17:08:29Z #14 4.667 - Validating... -2024-05-06T17:08:29Z #14 4.794 jupyter_resource_usage 0.7.1 OK -2024-05-06T17:08:29Z #14 4.794 - Validating... -2024-05-06T17:08:29Z #14 4.883  X is jupyter_server_ydoc importable? -2024-05-06T17:08:30Z #14 4.884 - Validating... -2024-05-06T17:08:30Z #14 4.952 jupyterlab 3.6.7 OK -2024-05-06T17:08:30Z #14 4.953 - Validating... -2024-05-06T17:08:30Z #14 5.126 jupyterlab_jupytext OK -2024-05-06T17:08:30Z #14 5.126 - Validating... -2024-05-06T17:08:30Z #14 5.130 mamba_gator 5.2.1 OK -2024-05-06T17:08:30Z #14 5.130 - Validating... -2024-05-06T17:08:30Z #14 5.146 nbdime 4.0.1 OK -2024-05-06T17:08:30Z #14 5.146 - Validating... -2024-05-06T17:08:31Z #14 6.145 panel.io.jupyter_server_extension OK -2024-05-06T17:08:31Z #14 6.145 - Validating... -2024-05-06T17:08:31Z #14 6.211 nbresuse OK -2024-05-06T17:08:31Z #14 6.211 - Validating... -2024-05-06T17:08:31Z #14 6.378 voila.server_extension OK -2024-05-06T17:08:31Z #14 6.378 - Validating... -2024-05-06T17:08:31Z #14 6.380 jupyterlab_git OK -2024-05-06T17:08:31Z #14 6.380 - Validating... -2024-05-06T17:08:31Z #14 6.380 voila 0.5.6 OK -2024-05-06T17:08:31Z #14 6.381 config dir: /opt/conda/envs/birdy/etc/jupyter -2024-05-06T17:08:31Z #14 6.381 dask_labextension  enabled  -2024-05-06T17:08:31Z #14 6.381 jupyter_archive  enabled  -2024-05-06T17:08:31Z #14 6.381 jupyter_server_proxy  enabled  -2024-05-06T17:08:31Z #14 6.381 jupyter_resource_usage  enabled  -2024-05-06T17:08:31Z #14 6.381 jupyter_server_ydoc  enabled  -2024-05-06T17:08:31Z #14 6.381 jupyterlab  enabled  -2024-05-06T17:08:31Z #14 6.381 jupyterlab_jupytext  enabled  -2024-05-06T17:08:31Z #14 6.381 mamba_gator  enabled  -2024-05-06T17:08:31Z #14 6.381 nbdime  enabled  -2024-05-06T17:08:31Z #14 6.381 panel.io.jupyter_server_extension  enabled  -2024-05-06T17:08:31Z #14 6.381 nbresuse  enabled  -2024-05-06T17:08:31Z #14 6.381 voila.server_extension  enabled  -2024-05-06T17:08:31Z #14 6.381 jupyterlab_git  enabled  -2024-05-06T17:08:31Z #14 6.381 voila  enabled  -2024-05-06T17:08:32Z #14 DONE 6.8s -2024-05-06T17:08:32Z -2024-05-06T17:08:32Z #15 [10/10] RUN wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh --output-document /usr/local/bin/start.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh --output-document /usr/local/bin/start-singleuser.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh --output-document /usr/local/bin/start-notebook.sh && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions --output-document /usr/local/bin/fix-permissions && mkdir /etc/jupyter && wget https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py --output-document /etc/jupyter/jupyter_notebook_config.py && chmod a+rx /usr/local/bin/start.sh /usr/local/bin/start-singleuser.sh /usr/local/bin/start-notebook.sh /usr/local/bin/fix-permissions && chmod a+r /etc/jupyter/jupyter_notebook_config.py && mkdir -p /notebook_dir/writable-workspace && chown jenkins /notebook_dir/writable-workspace && mkdir -p /notebook_dir/pavics-homepage && chown jenkins /notebook_dir/pavics-homepage && chown root:root /notebook_dir && chmod a-w /notebook_dir && chmod a+rwX -R /opt/conda/envs/birdy/fonts && mkdir /opt/conda/pkgs/cache && chown jenkins:jenkins -R /opt/conda/pkgs/cache && mkdir -p /usr/local/bin && wget https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -O /usr/local/bin/globusconnectpersonal-latest.tgz && tar xzf /usr/local/bin/globusconnectpersonal-latest.tgz -C /usr/local/bin/ && ln -vs /usr/local/bin/globusconnectpersonal*/globusconnectpersonal /usr/local/bin/globusconnectpersonal && rm -v /usr/local/bin/globusconnectpersonal-latest.tgz -2024-05-06T17:08:32Z #15 0.455 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start.sh -2024-05-06T17:08:32Z #15 0.481 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.110.133, 185.199.108.133, ... -2024-05-06T17:08:32Z #15 0.484 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-05-06T17:08:32Z #15 0.491 HTTP request sent, awaiting response... 200 OK -2024-05-06T17:08:32Z #15 0.591 Length: 9769 (9.5K) [text/plain] -2024-05-06T17:08:32Z #15 0.591 Saving to: ‘/usr/local/bin/start.sh’ -2024-05-06T17:08:32Z #15 0.595 -2024-05-06T17:08:32Z #15 0.595 0K ......... 100% 4.91M=0.002s -2024-05-06T17:08:32Z #15 0.595 -2024-05-06T17:08:32Z #15 0.595 2024-05-06 17:08:32 (4.91 MB/s) - ‘/usr/local/bin/start.sh’ saved [9769/9769] -2024-05-06T17:08:32Z #15 0.595 -2024-05-06T17:08:32Z #15 0.597 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-singleuser.sh -2024-05-06T17:08:32Z #15 0.621 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.108.133, 185.199.110.133, ... -2024-05-06T17:08:32Z #15 0.622 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected. -2024-05-06T17:08:32Z #15 0.628 HTTP request sent, awaiting response... 200 OK -2024-05-06T17:08:32Z #15 0.704 Length: 359 [text/plain] -2024-05-06T17:08:32Z #15 0.704 Saving to: ‘/usr/local/bin/start-singleuser.sh’ -2024-05-06T17:08:32Z #15 0.704 -2024-05-06T17:08:32Z #15 0.704 0K 100% 18.6M=0s -2024-05-06T17:08:32Z #15 0.705 -2024-05-06T17:08:32Z #15 0.705 2024-05-06 17:08:32 (18.6 MB/s) - ‘/usr/local/bin/start-singleuser.sh’ saved [359/359] -2024-05-06T17:08:32Z #15 0.705 -2024-05-06T17:08:32Z #15 0.709 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/start-notebook.sh -2024-05-06T17:08:32Z #15 0.733 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.111.133, 185.199.108.133, ... -2024-05-06T17:08:32Z #15 0.734 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. -2024-05-06T17:08:32Z #15 0.749 HTTP request sent, awaiting response... 200 OK -2024-05-06T17:08:32Z #15 0.842 Length: 852 [text/plain] -2024-05-06T17:08:32Z #15 0.842 Saving to: ‘/usr/local/bin/start-notebook.sh’ -2024-05-06T17:08:32Z #15 0.842 -2024-05-06T17:08:32Z #15 0.842 0K 100% 40.0M=0s -2024-05-06T17:08:32Z #15 0.842 -2024-05-06T17:08:32Z #15 0.842 2024-05-06 17:08:32 (40.0 MB/s) - ‘/usr/local/bin/start-notebook.sh’ saved [852/852] -2024-05-06T17:08:32Z #15 0.842 -2024-05-06T17:08:32Z #15 0.846 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/fix-permissions -2024-05-06T17:08:32Z #15 0.871 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.109.133, 185.199.111.133, ... -2024-05-06T17:08:32Z #15 0.872 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... connected. -2024-05-06T17:08:32Z #15 0.879 HTTP request sent, awaiting response... 200 OK -2024-05-06T17:08:32Z #15 0.963 Length: 1034 (1.0K) [text/plain] -2024-05-06T17:08:33Z #15 0.963 Saving to: ‘/usr/local/bin/fix-permissions’ -2024-05-06T17:08:33Z #15 0.963 -2024-05-06T17:08:33Z #15 0.963 0K . 100% 15.0M=0s -2024-05-06T17:08:33Z #15 0.965 -2024-05-06T17:08:33Z #15 0.965 2024-05-06 17:08:32 (15.0 MB/s) - ‘/usr/local/bin/fix-permissions’ saved [1034/1034] -2024-05-06T17:08:33Z #15 0.965 -2024-05-06T17:08:33Z #15 0.970 --2024-05-06 17:08:32-- https://raw.githubusercontent.com/jupyter/docker-stacks/709206ac8788475728cc9c992c25fb5f1501bc29/base-notebook/jupyter_notebook_config.py -2024-05-06T17:08:33Z #15 0.994 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.110.133, 185.199.109.133, ... -2024-05-06T17:08:33Z #15 0.995 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected. -2024-05-06T17:08:33Z #15 1.002 HTTP request sent, awaiting response... 200 OK -2024-05-06T17:08:33Z #15 1.133 Length: 1836 (1.8K) [text/plain] -2024-05-06T17:08:33Z #15 1.133 Saving to: ‘/etc/jupyter/jupyter_notebook_config.py’ -2024-05-06T17:08:33Z #15 1.133 -2024-05-06T17:08:33Z #15 1.133 0K . 100% 2.71M=0.001s -2024-05-06T17:08:33Z #15 1.136 -2024-05-06T17:08:33Z #15 1.136 2024-05-06 17:08:33 (2.71 MB/s) - ‘/etc/jupyter/jupyter_notebook_config.py’ saved [1836/1836] -2024-05-06T17:08:33Z #15 1.136 -2024-05-06T17:08:33Z #15 1.308 --2024-05-06 17:08:33-- https://downloads.globus.org/globus-connect-personal/linux/stable/globusconnectpersonal-latest.tgz -2024-05-06T17:08:33Z #15 1.333 Resolving downloads.globus.org (downloads.globus.org)... 18.67.65.101, 18.67.65.35, 18.67.65.105, ... -2024-05-06T17:08:33Z #15 1.342 Connecting to downloads.globus.org (downloads.globus.org)|18.67.65.101|:443... connected. -2024-05-06T17:08:33Z #15 1.347 HTTP request sent, awaiting response... 200 OK -2024-05-06T17:08:33Z #15 1.508 Length: 130857988 (125M) [application/x-tar] -2024-05-06T17:08:33Z #15 1.508 Saving to: ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ -2024-05-06T17:08:33Z #15 1.509 -2024-05-06T17:08:33Z #15 1.509 0K .......... .......... .......... .......... .......... 0% 22.7M 5s -2024-05-06T17:08:33Z #15 1.511 50K .......... .......... .......... .......... .......... 0% 16.9M 6s -2024-05-06T17:08:33Z #15 1.514 100K .......... .......... .......... .......... .......... 0% 19.2M 6s -2024-05-06T17:08:33Z #15 1.517 150K .......... .......... .......... .......... .......... 0% 21.5M 6s -2024-05-06T17:08:33Z #15 1.518 200K .......... .......... .......... .......... .......... 0% 16.4M 7s -2024-05-06T17:08:33Z #15 1.522 250K .......... .......... .......... .......... .......... 0% 43.1M 6s -2024-05-06T17:08:33Z #15 1.523 300K .......... .......... .......... .......... .......... 0% 22.7M 6s -2024-05-06T17:08:33Z #15 1.525 350K .......... .......... .......... .......... .......... 0% 37.2M 6s -2024-05-06T17:08:33Z #15 1.526 400K .......... .......... .......... .......... .......... 0% 125M 5s -2024-05-06T17:08:33Z #15 1.526 450K .......... .......... .......... .......... .......... 0% 130M 5s -2024-05-06T17:08:33Z #15 1.527 500K .......... .......... .......... .......... .......... 0% 134M 4s -2024-05-06T17:08:33Z #15 1.527 550K .......... .......... .......... .......... .......... 0% 123M 4s -2024-05-06T17:08:33Z #15 1.527 600K .......... .......... .......... .......... .......... 0% 114M 4s -2024-05-06T17:08:33Z #15 1.528 650K .......... .......... .......... .......... .......... 0% 110M 4s -2024-05-06T17:08:33Z #15 1.528 700K .......... .......... .......... .......... .......... 0% 144M 3s -2024-05-06T17:08:33Z #15 1.529 750K .......... .......... .......... .......... .......... 0% 112M 3s -2024-05-06T17:08:33Z #15 1.529 800K .......... .......... .......... .......... .......... 0% 136M 3s -2024-05-06T17:08:33Z #15 1.529 850K .......... .......... .......... .......... .......... 0% 112M 3s -2024-05-06T17:08:33Z #15 1.530 900K .......... .......... .......... .......... .......... 0% 120M 3s -2024-05-06T17:08:33Z #15 1.530 950K .......... .......... .......... .......... .......... 0% 108M 3s -2024-05-06T17:08:33Z #15 1.531 1000K .......... .......... .......... .......... .......... 0% 35.0M 3s -2024-05-06T17:08:33Z #15 1.532 1050K .......... .......... .......... .......... .......... 0% 52.0M 3s -2024-05-06T17:08:33Z #15 1.533 1100K .......... .......... .......... .......... .......... 0% 12.5M 3s -2024-05-06T17:08:33Z #15 1.537 1150K .......... .......... .......... .......... .......... 0% 20.2M 3s -2024-05-06T17:08:33Z #15 1.539 1200K .......... .......... .......... .......... .......... 0% 49.8M 3s -2024-05-06T17:08:33Z #15 1.540 1250K .......... .......... .......... .......... .......... 1% 45.7M 3s -2024-05-06T17:08:33Z #15 1.541 1300K .......... .......... .......... .......... .......... 1% 54.8M 3s -2024-05-06T17:08:33Z #15 1.542 1350K .......... .......... .......... .......... .......... 1% 90.5M 3s -2024-05-06T17:08:33Z #15 1.543 1400K .......... .......... .......... .......... .......... 1% 49.1M 3s -2024-05-06T17:08:33Z #15 1.544 1450K .......... .......... .......... .......... .......... 1% 51.1M 3s -2024-05-06T17:08:33Z #15 1.545 1500K .......... .......... .......... .......... .......... 1% 98.3M 3s -2024-05-06T17:08:33Z #15 1.545 1550K .......... .......... .......... .......... .......... 1% 63.7M 3s -2024-05-06T17:08:33Z #15 1.546 1600K .......... .......... .......... .......... .......... 1% 115M 3s -2024-05-06T17:08:33Z #15 1.546 1650K .......... .......... .......... .......... .......... 1% 117M 3s -2024-05-06T17:08:33Z #15 1.547 1700K .......... .......... .......... .......... .......... 1% 64.1M 3s -2024-05-06T17:08:33Z #15 1.548 1750K .......... .......... .......... .......... .......... 1% 84.7M 3s -2024-05-06T17:08:33Z #15 1.548 1800K .......... .......... .......... .......... .......... 1% 39.6M 3s -2024-05-06T17:08:33Z #15 1.549 1850K .......... .......... .......... .......... .......... 1% 60.2M 3s -2024-05-06T17:08:33Z #15 1.550 1900K .......... .......... .......... .......... .......... 1% 52.1M 3s -2024-05-06T17:08:33Z #15 1.551 1950K .......... .......... .......... .......... .......... 1% 126M 3s -2024-05-06T17:08:33Z #15 1.551 2000K .......... .......... .......... .......... .......... 1% 73.7M 3s -2024-05-06T17:08:33Z #15 1.552 2050K .......... .......... .......... .......... .......... 1% 131M 3s -2024-05-06T17:08:33Z #15 1.553 2100K .......... .......... .......... .......... .......... 1% 85.2M 3s -2024-05-06T17:08:33Z #15 1.553 2150K .......... .......... .......... .......... .......... 1% 141M 3s -2024-05-06T17:08:33Z #15 1.553 2200K .......... .......... .......... .......... .......... 1% 119M 3s -2024-05-06T17:08:33Z #15 1.554 2250K .......... .......... .......... .......... .......... 1% 142M 3s -2024-05-06T17:08:33Z #15 1.554 2300K .......... .......... .......... .......... .......... 1% 135M 2s -2024-05-06T17:08:33Z #15 1.555 2350K .......... .......... .......... .......... .......... 1% 60.4M 2s -2024-05-06T17:08:33Z #15 1.556 2400K .......... .......... .......... .......... .......... 1% 42.8M 2s -2024-05-06T17:08:33Z #15 1.556 2450K .......... .......... .......... .......... .......... 1% 138M 2s -2024-05-06T17:08:33Z #15 1.557 2500K .......... .......... .......... .......... .......... 1% 148M 2s -2024-05-06T17:08:33Z #15 1.557 2550K .......... .......... .......... .......... .......... 2% 106M 2s -2024-05-06T17:08:33Z #15 1.558 2600K .......... .......... .......... .......... .......... 2% 156M 2s -2024-05-06T17:08:33Z #15 1.558 2650K .......... .......... .......... .......... .......... 2% 135M 2s -2024-05-06T17:08:33Z #15 1.558 2700K .......... .......... .......... .......... .......... 2% 145M 2s -2024-05-06T17:08:33Z #15 1.559 2750K .......... .......... .......... .......... .......... 2% 83.0M 2s -2024-05-06T17:08:33Z #15 1.559 2800K .......... .......... .......... .......... .......... 2% 40.0M 2s -2024-05-06T17:08:33Z #15 1.561 2850K .......... .......... .......... .......... .......... 2% 52.0M 2s -2024-05-06T17:08:33Z #15 1.561 2900K .......... .......... .......... .......... .......... 2% 68.9M 2s -2024-05-06T17:08:33Z #15 1.562 2950K .......... .......... .......... .......... .......... 2% 35.5M 2s -2024-05-06T17:08:33Z #15 1.564 3000K .......... .......... .......... .......... .......... 2% 70.3M 2s -2024-05-06T17:08:33Z #15 1.564 3050K .......... .......... .......... .......... .......... 2% 40.9M 2s -2024-05-06T17:08:33Z #15 1.566 3100K .......... .......... .......... .......... .......... 2% 76.8M 2s -2024-05-06T17:08:33Z #15 1.566 3150K .......... .......... .......... .......... .......... 2% 124M 2s -2024-05-06T17:08:33Z #15 1.566 3200K .......... .......... .......... .......... .......... 2% 124M 2s -2024-05-06T17:08:33Z #15 1.567 3250K .......... .......... .......... .......... .......... 2% 132M 2s -2024-05-06T17:08:33Z #15 1.567 3300K .......... .......... .......... .......... .......... 2% 146M 2s -2024-05-06T17:08:33Z #15 1.568 3350K .......... .......... .......... .......... .......... 2% 95.8M 2s -2024-05-06T17:08:33Z #15 1.568 3400K .......... .......... .......... .......... .......... 2% 118M 2s -2024-05-06T17:08:33Z #15 1.569 3450K .......... .......... .......... .......... .......... 2% 132M 2s -2024-05-06T17:08:33Z #15 1.569 3500K .......... .......... .......... .......... .......... 2% 127M 2s -2024-05-06T17:08:33Z #15 1.569 3550K .......... .......... .......... .......... .......... 2% 99.9M 2s -2024-05-06T17:08:33Z #15 1.570 3600K .......... .......... .......... .......... .......... 2% 118M 2s -2024-05-06T17:08:33Z #15 1.570 3650K .......... .......... .......... .......... .......... 2% 136M 2s -2024-05-06T17:08:33Z #15 1.570 3700K .......... .......... .......... .......... .......... 2% 123M 2s -2024-05-06T17:08:33Z #15 1.571 3750K .......... .......... .......... .......... .......... 2% 26.1M 2s -2024-05-06T17:08:33Z #15 1.573 3800K .......... .......... .......... .......... .......... 3% 139M 2s -2024-05-06T17:08:33Z #15 1.573 3850K .......... .......... .......... .......... .......... 3% 153M 2s -2024-05-06T17:08:33Z #15 1.573 3900K .......... .......... .......... .......... .......... 3% 138M 2s -2024-05-06T17:08:33Z #15 1.574 3950K .......... .......... .......... .......... .......... 3% 109M 2s -2024-05-06T17:08:33Z #15 1.574 4000K .......... .......... .......... .......... .......... 3% 137M 2s -2024-05-06T17:08:33Z #15 1.575 4050K .......... .......... .......... .......... .......... 3% 146M 2s -2024-05-06T17:08:33Z #15 1.575 4100K .......... .......... .......... .......... .......... 3% 51.0M 2s -2024-05-06T17:08:33Z #15 1.576 4150K .......... .......... .......... .......... .......... 3% 42.3M 2s -2024-05-06T17:08:33Z #15 1.577 4200K .......... .......... .......... .......... .......... 3% 53.8M 2s -2024-05-06T17:08:33Z #15 1.578 4250K .......... .......... .......... .......... .......... 3% 50.9M 2s -2024-05-06T17:08:33Z #15 1.579 4300K .......... .......... .......... .......... .......... 3% 49.7M 2s -2024-05-06T17:08:33Z #15 1.580 4350K .......... .......... .......... .......... .......... 3% 46.1M 2s -2024-05-06T17:08:33Z #15 1.581 4400K .......... .......... .......... .......... .......... 3% 52.7M 2s -2024-05-06T17:08:33Z #15 1.582 4450K .......... .......... .......... .......... .......... 3% 105M 2s -2024-05-06T17:08:33Z #15 1.582 4500K .......... .......... .......... .......... .......... 3% 129M 2s -2024-05-06T17:08:33Z #15 1.583 4550K .......... .......... .......... .......... .......... 3% 64.7M 2s -2024-05-06T17:08:33Z #15 1.584 4600K .......... .......... .......... .......... .......... 3% 50.3M 2s -2024-05-06T17:08:33Z #15 1.585 4650K .......... .......... .......... .......... .......... 3% 51.5M 2s -2024-05-06T17:08:33Z #15 1.586 4700K .......... .......... .......... .......... .......... 3% 82.9M 2s -2024-05-06T17:08:33Z #15 1.586 4750K .......... .......... .......... .......... .......... 3% 99.4M 2s -2024-05-06T17:08:33Z #15 1.587 4800K .......... .......... .......... .......... .......... 3% 87.0M 2s -2024-05-06T17:08:33Z #15 1.587 4850K .......... .......... .......... .......... .......... 3% 146M 2s -2024-05-06T17:08:33Z #15 1.588 4900K .......... .......... .......... .......... .......... 3% 115M 2s -2024-05-06T17:08:33Z #15 1.588 4950K .......... .......... .......... .......... .......... 3% 117M 2s -2024-05-06T17:08:33Z #15 1.588 5000K .......... .......... .......... .......... .......... 3% 124M 2s -2024-05-06T17:08:33Z #15 1.589 5050K .......... .......... .......... .......... .......... 3% 125M 2s -2024-05-06T17:08:33Z #15 1.589 5100K .......... .......... .......... .......... .......... 4% 135M 2s -2024-05-06T17:08:33Z #15 1.589 5150K .......... .......... .......... .......... .......... 4% 137M 2s -2024-05-06T17:08:33Z #15 1.590 5200K .......... .......... .......... .......... .......... 4% 135M 2s -2024-05-06T17:08:33Z #15 1.590 5250K .......... .......... .......... .......... .......... 4% 157M 2s -2024-05-06T17:08:33Z #15 1.591 5300K .......... .......... .......... .......... .......... 4% 104M 2s -2024-05-06T17:08:33Z #15 1.591 5350K .......... .......... .......... .......... .......... 4% 124M 2s -2024-05-06T17:08:33Z #15 1.592 5400K .......... .......... .......... .......... .......... 4% 129M 2s -2024-05-06T17:08:33Z #15 1.592 5450K .......... .......... .......... .......... .......... 4% 111M 2s -2024-05-06T17:08:33Z #15 1.592 5500K .......... .......... .......... .......... .......... 4% 132M 2s -2024-05-06T17:08:33Z #15 1.592 5550K .......... .......... .......... .......... .......... 4% 123M 2s -2024-05-06T17:08:33Z #15 1.593 5600K .......... .......... .......... .......... .......... 4% 140M 2s -2024-05-06T17:08:33Z #15 1.593 5650K .......... .......... .......... .......... .......... 4% 131M 2s -2024-05-06T17:08:33Z #15 1.594 5700K .......... .......... .......... .......... .......... 4% 160M 2s -2024-05-06T17:08:33Z #15 1.594 5750K .......... .......... .......... .......... .......... 4% 127M 2s -2024-05-06T17:08:33Z #15 1.595 5800K .......... .......... .......... .......... .......... 4% 98.2M 2s -2024-05-06T17:08:33Z #15 1.595 5850K .......... .......... .......... .......... .......... 4% 114M 2s -2024-05-06T17:08:33Z #15 1.595 5900K .......... .......... .......... .......... .......... 4% 48.7M 2s -2024-05-06T17:08:33Z #15 1.599 5950K .......... .......... .......... .......... .......... 4% 105M 2s -2024-05-06T17:08:33Z #15 1.599 6000K .......... .......... .......... .......... .......... 4% 128M 2s -2024-05-06T17:08:33Z #15 1.599 6050K .......... .......... .......... .......... .......... 4% 121M 2s -2024-05-06T17:08:33Z #15 1.599 6100K .......... .......... .......... .......... .......... 4% 136M 2s -2024-05-06T17:08:33Z #15 1.599 6150K .......... .......... .......... .......... .......... 4% 98.5M 2s -2024-05-06T17:08:33Z #15 1.599 6200K .......... .......... .......... .......... .......... 4% 134M 2s -2024-05-06T17:08:33Z #15 1.599 6250K .......... .......... .......... .......... .......... 4% 83.1M 2s -2024-05-06T17:08:33Z #15 1.603 6300K .......... .......... .......... .......... .......... 4% 111M 2s -2024-05-06T17:08:33Z #15 1.603 6350K .......... .......... .......... .......... .......... 5% 115M 2s -2024-05-06T17:08:33Z #15 1.603 6400K .......... .......... .......... .......... .......... 5% 109M 2s -2024-05-06T17:08:33Z #15 1.603 6450K .......... .......... .......... .......... .......... 5% 118M 2s -2024-05-06T17:08:33Z #15 1.603 6500K .......... .......... .......... .......... .......... 5% 114M 2s -2024-05-06T17:08:33Z #15 1.603 6550K .......... .......... .......... .......... .......... 5% 110M 2s -2024-05-06T17:08:33Z #15 1.603 6600K .......... .......... .......... .......... .......... 5% 99.4M 2s -2024-05-06T17:08:33Z #15 1.603 6650K .......... .......... .......... .......... .......... 5% 128M 2s -2024-05-06T17:08:33Z #15 1.603 6700K .......... .......... .......... .......... .......... 5% 38.2M 2s -2024-05-06T17:08:33Z #15 1.607 6750K .......... .......... .......... .......... .......... 5% 112M 2s -2024-05-06T17:08:33Z #15 1.607 6800K .......... .......... .......... .......... .......... 5% 138M 2s -2024-05-06T17:08:33Z #15 1.607 6850K .......... .......... .......... .......... .......... 5% 111M 2s -2024-05-06T17:08:33Z #15 1.607 6900K .......... .......... .......... .......... .......... 5% 124M 2s -2024-05-06T17:08:33Z #15 1.607 6950K .......... .......... .......... .......... .......... 5% 105M 2s -2024-05-06T17:08:33Z #15 1.607 7000K .......... .......... .......... .......... .......... 5% 113M 2s -2024-05-06T17:08:33Z #15 1.607 7050K .......... .......... .......... .......... .......... 5% 131M 2s -2024-05-06T17:08:33Z #15 1.607 7100K .......... .......... .......... .......... .......... 5% 52.6M 2s -2024-05-06T17:08:33Z #15 1.608 7150K .......... .......... .......... .......... .......... 5% 46.1M 2s -2024-05-06T17:08:33Z #15 1.609 7200K .......... .......... .......... .......... .......... 5% 50.5M 2s -2024-05-06T17:08:33Z #15 1.610 7250K .......... .......... .......... .......... .......... 5% 99.7M 2s -2024-05-06T17:08:33Z #15 1.615 7300K .......... .......... .......... .......... .......... 5% 129M 2s -2024-05-06T17:08:33Z #15 1.615 7350K .......... .......... .......... .......... .......... 5% 89.4M 2s -2024-05-06T17:08:33Z #15 1.615 7400K .......... .......... .......... .......... .......... 5% 106M 2s -2024-05-06T17:08:33Z #15 1.615 7450K .......... .......... .......... .......... .......... 5% 131M 2s -2024-05-06T17:08:33Z #15 1.615 7500K .......... .......... .......... .......... .......... 5% 127M 2s -2024-05-06T17:08:33Z #15 1.615 7550K .......... .......... .......... .......... .......... 5% 113M 2s -2024-05-06T17:08:33Z #15 1.615 7600K .......... .......... .......... .......... .......... 5% 125M 2s -2024-05-06T17:08:33Z #15 1.615 7650K .......... .......... .......... .......... .......... 6% 122M 2s -2024-05-06T17:08:33Z #15 1.615 7700K .......... .......... .......... .......... .......... 6% 120M 2s -2024-05-06T17:08:33Z #15 1.615 7750K .......... .......... .......... .......... .......... 6% 99.6M 2s -2024-05-06T17:08:33Z #15 1.615 7800K .......... .......... .......... .......... .......... 6% 107M 2s -2024-05-06T17:08:33Z #15 1.615 7850K .......... .......... .......... .......... .......... 6% 47.4M 2s -2024-05-06T17:08:33Z #15 1.617 7900K .......... .......... .......... .......... .......... 6% 6.32M 2s -2024-05-06T17:08:33Z #15 1.636 7950K .......... .......... .......... .......... .......... 6% 134M 2s -2024-05-06T17:08:33Z #15 1.636 8000K .......... .......... .......... .......... .......... 6% 121M 2s -2024-05-06T17:08:33Z #15 1.636 8050K .......... .......... .......... .......... .......... 6% 116M 2s -2024-05-06T17:08:33Z #15 1.636 8100K .......... .......... .......... .......... .......... 6% 134M 2s -2024-05-06T17:08:33Z #15 1.636 8150K .......... .......... .......... .......... .......... 6% 102M 2s -2024-05-06T17:08:33Z #15 1.636 8200K .......... .......... .......... .......... .......... 6% 123M 2s -2024-05-06T17:08:33Z #15 1.636 8250K .......... .......... .......... .......... .......... 6% 126M 2s -2024-05-06T17:08:33Z #15 1.636 8300K .......... .......... .......... .......... .......... 6% 108M 2s -2024-05-06T17:08:33Z #15 1.636 8350K .......... .......... .......... .......... .......... 6% 48.3M 2s -2024-05-06T17:08:33Z #15 1.636 8400K .......... .......... .......... .......... .......... 6% 118M 2s -2024-05-06T17:08:33Z #15 1.636 8450K .......... .......... .......... .......... .......... 6% 169M 2s -2024-05-06T17:08:33Z #15 1.636 8500K .......... .......... .......... .......... .......... 6% 170M 2s -2024-05-06T17:08:33Z #15 1.636 8550K .......... .......... .......... .......... .......... 6% 143M 2s -2024-05-06T17:08:33Z #15 1.636 8600K .......... .......... .......... .......... .......... 6% 151M 2s -2024-05-06T17:08:33Z #15 1.636 8650K .......... .......... .......... .......... .......... 6% 171M 2s -2024-05-06T17:08:33Z #15 1.636 8700K .......... .......... .......... .......... .......... 6% 184M 2s -2024-05-06T17:08:33Z #15 1.636 8750K .......... .......... .......... .......... .......... 6% 150M 2s -2024-05-06T17:08:33Z #15 1.636 8800K .......... .......... .......... .......... .......... 6% 170M 2s -2024-05-06T17:08:33Z #15 1.636 8850K .......... .......... .......... .......... .......... 6% 63.5M 2s -2024-05-06T17:08:33Z #15 1.636 8900K .......... .......... .......... .......... .......... 7% 156M 2s -2024-05-06T17:08:33Z #15 1.636 8950K .......... .......... .......... .......... .......... 7% 115M 2s -2024-05-06T17:08:33Z #15 1.636 9000K .......... .......... .......... .......... .......... 7% 159M 2s -2024-05-06T17:08:33Z #15 1.636 9050K .......... .......... .......... .......... .......... 7% 157M 2s -2024-05-06T17:08:33Z #15 1.636 9100K .......... .......... .......... .......... .......... 7% 143M 2s -2024-05-06T17:08:33Z #15 1.636 9150K .......... .......... .......... .......... .......... 7% 143M 2s -2024-05-06T17:08:33Z #15 1.636 9200K .......... .......... .......... .......... .......... 7% 161M 2s -2024-05-06T17:08:33Z #15 1.636 9250K .......... .......... .......... .......... .......... 7% 123M 2s -2024-05-06T17:08:33Z #15 1.636 9300K .......... .......... .......... .......... .......... 7% 140M 2s -2024-05-06T17:08:33Z #15 1.636 9350K .......... .......... .......... .......... .......... 7% 115M 2s -2024-05-06T17:08:33Z #15 1.637 9400K .......... .......... .......... .......... .......... 7% 131M 2s -2024-05-06T17:08:33Z #15 1.637 9450K .......... .......... .......... .......... .......... 7% 144M 2s -2024-05-06T17:08:33Z #15 1.637 9500K .......... .......... .......... .......... .......... 7% 128M 2s -2024-05-06T17:08:33Z #15 1.637 9550K .......... .......... .......... .......... .......... 7% 97.4M 2s -2024-05-06T17:08:33Z #15 1.639 9600K .......... .......... .......... .......... .......... 7% 113M 2s -2024-05-06T17:08:33Z #15 1.639 9650K .......... .......... .......... .......... .......... 7% 122M 2s -2024-05-06T17:08:33Z #15 1.639 9700K .......... .......... .......... .......... .......... 7% 121M 2s -2024-05-06T17:08:33Z #15 1.639 9750K .......... .......... .......... .......... .......... 7% 90.6M 2s -2024-05-06T17:08:33Z #15 1.639 9800K .......... .......... .......... .......... .......... 7% 110M 2s -2024-05-06T17:08:33Z #15 1.643 9850K .......... .......... .......... .......... .......... 7% 88.4M 2s -2024-05-06T17:08:33Z #15 1.643 9900K .......... .......... .......... .......... .......... 7% 127M 2s -2024-05-06T17:08:33Z #15 1.643 9950K .......... .......... .......... .......... .......... 7% 102M 2s -2024-05-06T17:08:33Z #15 1.643 10000K .......... .......... .......... .......... .......... 7% 160M 2s -2024-05-06T17:08:33Z #15 1.643 10050K .......... .......... .......... .......... .......... 7% 114M 2s -2024-05-06T17:08:33Z #15 1.643 10100K .......... .......... .......... .......... .......... 7% 128M 2s -2024-05-06T17:08:33Z #15 1.643 10150K .......... .......... .......... .......... .......... 7% 99.8M 2s -2024-05-06T17:08:33Z #15 1.643 10200K .......... .......... .......... .......... .......... 8% 114M 2s -2024-05-06T17:08:33Z #15 1.643 10250K .......... .......... .......... .......... .......... 8% 130M 2s -2024-05-06T17:08:33Z #15 1.643 10300K .......... .......... .......... .......... .......... 8% 20.8M 2s -2024-05-06T17:08:33Z #15 1.647 10350K .......... .......... .......... .......... .......... 8% 111M 2s -2024-05-06T17:08:33Z #15 1.647 10400K .......... .......... .......... .......... .......... 8% 110M 2s -2024-05-06T17:08:33Z #15 1.647 10450K .......... .......... .......... .......... .......... 8% 123M 2s -2024-05-06T17:08:33Z #15 1.647 10500K .......... .......... .......... .......... .......... 8% 108M 2s -2024-05-06T17:08:33Z #15 1.647 10550K .......... .......... .......... .......... .......... 8% 19.1M 2s -2024-05-06T17:08:33Z #15 1.651 10600K .......... .......... .......... .......... .......... 8% 89.4M 2s -2024-05-06T17:08:33Z #15 1.651 10650K .......... .......... .......... .......... .......... 8% 119M 2s -2024-05-06T17:08:33Z #15 1.651 10700K .......... .......... .......... .......... .......... 8% 119M 2s -2024-05-06T17:08:33Z #15 1.651 10750K .......... .......... .......... .......... .......... 8% 17.6M 2s -2024-05-06T17:08:33Z #15 1.654 10800K .......... .......... .......... .......... .......... 8% 39.9M 2s -2024-05-06T17:08:33Z #15 1.655 10850K .......... .......... .......... .......... .......... 8% 38.4M 2s -2024-05-06T17:08:33Z #15 1.659 10900K .......... .......... .......... .......... .......... 8% 124M 2s -2024-05-06T17:08:33Z #15 1.659 10950K .......... .......... .......... .......... .......... 8% 119M 2s -2024-05-06T17:08:33Z #15 1.659 11000K .......... .......... .......... .......... .......... 8% 82.7M 2s -2024-05-06T17:08:33Z #15 1.659 11050K .......... .......... .......... .......... .......... 8% 113M 2s -2024-05-06T17:08:33Z #15 1.659 11100K .......... .......... .......... .......... .......... 8% 102M 2s -2024-05-06T17:08:33Z #15 1.659 11150K .......... .......... .......... .......... .......... 8% 111M 2s -2024-05-06T17:08:33Z #15 1.659 11200K .......... .......... .......... .......... .......... 8% 14.2M 2s -2024-05-06T17:08:33Z #15 1.663 11250K .......... .......... .......... .......... .......... 8% 131M 2s -2024-05-06T17:08:33Z #15 1.663 11300K .......... .......... .......... .......... .......... 8% 77.3M 2s -2024-05-06T17:08:33Z #15 1.663 11350K .......... .......... .......... .......... .......... 8% 21.5M 2s -2024-05-06T17:08:33Z #15 1.667 11400K .......... .......... .......... .......... .......... 8% 97.5M 2s -2024-05-06T17:08:33Z #15 1.667 11450K .......... .......... .......... .......... .......... 8% 127M 2s -2024-05-06T17:08:33Z #15 1.667 11500K .......... .......... .......... .......... .......... 9% 103M 2s -2024-05-06T17:08:33Z #15 1.667 11550K .......... .......... .......... .......... .......... 9% 11.0M 2s -2024-05-06T17:08:33Z #15 1.675 11600K .......... .......... .......... .......... .......... 9% 88.6M 2s -2024-05-06T17:08:33Z #15 1.675 11650K .......... .......... .......... .......... .......... 9% 121M 2s -2024-05-06T17:08:33Z #15 1.675 11700K .......... .......... .......... .......... .......... 9% 133M 2s -2024-05-06T17:08:33Z #15 1.675 11750K .......... .......... .......... .......... .......... 9% 130M 2s -2024-05-06T17:08:33Z #15 1.675 11800K .......... .......... .......... .......... .......... 9% 89.9M 2s -2024-05-06T17:08:33Z #15 1.675 11850K .......... .......... .......... .......... .......... 9% 109M 2s -2024-05-06T17:08:33Z #15 1.675 11900K .......... .......... .......... .......... .......... 9% 105M 2s -2024-05-06T17:08:33Z #15 1.675 11950K .......... .......... .......... .......... .......... 9% 109M 2s -2024-05-06T17:08:33Z #15 1.679 12000K .......... .......... .......... .......... .......... 9% 5.51M 2s -2024-05-06T17:08:33Z #15 1.687 12050K .......... .......... .......... .......... .......... 9% 110M 2s -2024-05-06T17:08:33Z #15 1.687 12100K .......... .......... .......... .......... .......... 9% 130M 2s -2024-05-06T17:08:33Z #15 1.687 12150K .......... .......... .......... .......... .......... 9% 100M 2s -2024-05-06T17:08:33Z #15 1.687 12200K .......... .......... .......... .......... .......... 9% 95.5M 2s -2024-05-06T17:08:33Z #15 1.687 12250K .......... .......... .......... .......... .......... 9% 110M 2s -2024-05-06T17:08:33Z #15 1.687 12300K .......... .......... .......... .......... .......... 9% 104M 2s -2024-05-06T17:08:33Z #15 1.687 12350K .......... .......... .......... .......... .......... 9% 49.4M 2s -2024-05-06T17:08:33Z #15 1.691 12400K .......... .......... .......... .......... .......... 9% 6.54M 2s -2024-05-06T17:08:33Z #15 1.699 12450K .......... .......... .......... .......... .......... 9% 132M 2s -2024-05-06T17:08:33Z #15 1.699 12500K .......... .......... .......... .......... .......... 9% 108M 2s -2024-05-06T17:08:33Z #15 1.699 12550K .......... .......... .......... .......... .......... 9% 114M 2s -2024-05-06T17:08:33Z #15 1.699 12600K .......... .......... .......... .......... .......... 9% 107M 2s -2024-05-06T17:08:33Z #15 1.699 12650K .......... .......... .......... .......... .......... 9% 120M 2s -2024-05-06T17:08:33Z #15 1.699 12700K .......... .......... .......... .......... .......... 9% 122M 2s -2024-05-06T17:08:33Z #15 1.699 12750K .......... .......... .......... .......... .......... 10% 127M 2s -2024-05-06T17:08:33Z #15 1.699 12800K .......... .......... .......... .......... .......... 10% 101M 2s -2024-05-06T17:08:33Z #15 1.699 12850K .......... .......... .......... .......... .......... 10% 104M 2s -2024-05-06T17:08:33Z #15 1.699 12900K .......... .......... .......... .......... .......... 10% 22.0M 2s -2024-05-06T17:08:33Z #15 1.702 12950K .......... .......... .......... .......... .......... 10% 21.6M 2s -2024-05-06T17:08:33Z #15 1.704 13000K .......... .......... .......... .......... .......... 10% 88.6M 2s -2024-05-06T17:08:33Z #15 1.704 13050K .......... .......... .......... .......... .......... 10% 107M 2s -2024-05-06T17:08:33Z #15 1.704 13100K .......... .......... .......... .......... .......... 10% 18.9M 2s -2024-05-06T17:08:33Z #15 1.711 13150K .......... .......... .......... .......... .......... 10% 111M 2s -2024-05-06T17:08:33Z #15 1.711 13200K .......... .......... .......... .......... .......... 10% 116M 2s -2024-05-06T17:08:33Z #15 1.711 13250K .......... .......... .......... .......... .......... 10% 108M 2s -2024-05-06T17:08:33Z #15 1.711 13300K .......... .......... .......... .......... .......... 10% 142M 2s -2024-05-06T17:08:33Z #15 1.711 13350K .......... .......... .......... .......... .......... 10% 144M 2s -2024-05-06T17:08:33Z #15 1.711 13400K .......... .......... .......... .......... .......... 10% 113M 2s -2024-05-06T17:08:33Z #15 1.711 13450K .......... .......... .......... .......... .......... 10% 130M 2s -2024-05-06T17:08:33Z #15 1.711 13500K .......... .......... .......... .......... .......... 10% 142M 2s -2024-05-06T17:08:33Z #15 1.711 13550K .......... .......... .......... .......... .......... 10% 133M 2s -2024-05-06T17:08:33Z #15 1.711 13600K .......... .......... .......... .......... .......... 10% 103M 2s -2024-05-06T17:08:33Z #15 1.711 13650K .......... .......... .......... .......... .......... 10% 13.3M 2s -2024-05-06T17:08:33Z #15 1.715 13700K .......... .......... .......... .......... .......... 10% 27.9M 2s -2024-05-06T17:08:33Z #15 1.719 13750K .......... .......... .......... .......... .......... 10% 124M 2s -2024-05-06T17:08:33Z #15 1.719 13800K .......... .......... .......... .......... .......... 10% 90.1M 2s -2024-05-06T17:08:33Z #15 1.719 13850K .......... .......... .......... .......... .......... 10% 120M 2s -2024-05-06T17:08:33Z #15 1.719 13900K .......... .......... .......... .......... .......... 10% 110M 2s -2024-05-06T17:08:33Z #15 1.719 13950K .......... .......... .......... .......... .......... 10% 117M 2s -2024-05-06T17:08:33Z #15 1.719 14000K .......... .......... .......... .......... .......... 10% 28.8M 2s -2024-05-06T17:08:33Z #15 1.721 14050K .......... .......... .......... .......... .......... 11% 18.4M 2s -2024-05-06T17:08:33Z #15 1.727 14100K .......... .......... .......... .......... .......... 11% 96.1M 2s -2024-05-06T17:08:33Z #15 1.727 14150K .......... .......... .......... .......... .......... 11% 109M 2s -2024-05-06T17:08:33Z #15 1.727 14200K .......... .......... .......... .......... .......... 11% 87.8M 2s -2024-05-06T17:08:33Z #15 1.727 14250K .......... .......... .......... .......... .......... 11% 107M 2s -2024-05-06T17:08:33Z #15 1.727 14300K .......... .......... .......... .......... .......... 11% 115M 2s -2024-05-06T17:08:33Z #15 1.727 14350K .......... .......... .......... .......... .......... 11% 100M 2s -2024-05-06T17:08:33Z #15 1.727 14400K .......... .......... .......... .......... .......... 11% 94.3M 2s -2024-05-06T17:08:33Z #15 1.727 14450K .......... .......... .......... .......... .......... 11% 121M 2s -2024-05-06T17:08:33Z #15 1.727 14500K .......... .......... .......... .......... .......... 11% 17.7M 2s -2024-05-06T17:08:33Z #15 1.730 14550K .......... .......... .......... .......... .......... 11% 33.4M 2s -2024-05-06T17:08:33Z #15 1.735 14600K .......... .......... .......... .......... .......... 11% 93.4M 2s -2024-05-06T17:08:33Z #15 1.735 14650K .......... .......... .......... .......... .......... 11% 118M 2s -2024-05-06T17:08:33Z #15 1.735 14700K .......... .......... .......... .......... .......... 11% 111M 2s -2024-05-06T17:08:33Z #15 1.735 14750K .......... .......... .......... .......... .......... 11% 113M 2s -2024-05-06T17:08:33Z #15 1.735 14800K .......... .......... .......... .......... .......... 11% 99.1M 2s -2024-05-06T17:08:33Z #15 1.735 14850K .......... .......... .......... .......... .......... 11% 120M 2s -2024-05-06T17:08:33Z #15 1.735 14900K .......... .......... .......... .......... .......... 11% 110M 2s -2024-05-06T17:08:33Z #15 1.735 14950K .......... .......... .......... .......... .......... 11% 113M 2s -2024-05-06T17:08:33Z #15 1.735 15000K .......... .......... .......... .......... .......... 11% 29.9M 2s -2024-05-06T17:08:33Z #15 1.737 15050K .......... .......... .......... .......... .......... 11% 14.1M 2s -2024-05-06T17:08:33Z #15 1.742 15100K .......... .......... .......... .......... .......... 11% 121M 2s -2024-05-06T17:08:33Z #15 1.742 15150K .......... .......... .......... .......... .......... 11% 139M 2s -2024-05-06T17:08:33Z #15 1.742 15200K .......... .......... .......... .......... .......... 11% 106M 2s -2024-05-06T17:08:33Z #15 1.742 15250K .......... .......... .......... .......... .......... 11% 100M 2s -2024-05-06T17:08:33Z #15 1.742 15300K .......... .......... .......... .......... .......... 12% 12.4M 2s -2024-05-06T17:08:33Z #15 1.751 15350K .......... .......... .......... .......... .......... 12% 120M 2s -2024-05-06T17:08:33Z #15 1.751 15400K .......... .......... .......... .......... .......... 12% 109M 2s -2024-05-06T17:08:33Z #15 1.751 15450K .......... .......... .......... .......... .......... 12% 111M 2s -2024-05-06T17:08:33Z #15 1.751 15500K .......... .......... .......... .......... .......... 12% 122M 2s -2024-05-06T17:08:33Z #15 1.751 15550K .......... .......... .......... .......... .......... 12% 107M 2s -2024-05-06T17:08:33Z #15 1.751 15600K .......... .......... .......... .......... .......... 12% 93.7M 2s -2024-05-06T17:08:33Z #15 1.751 15650K .......... .......... .......... .......... .......... 12% 120M 2s -2024-05-06T17:08:33Z #15 1.751 15700K .......... .......... .......... .......... .......... 12% 110M 2s -2024-05-06T17:08:33Z #15 1.751 15750K .......... .......... .......... .......... .......... 12% 140M 2s -2024-05-06T17:08:33Z #15 1.751 15800K .......... .......... .......... .......... .......... 12% 101M 2s -2024-05-06T17:08:33Z #15 1.751 15850K .......... .......... .......... .......... .......... 12% 118M 2s -2024-05-06T17:08:33Z #15 1.751 15900K .......... .......... .......... .......... .......... 12% 154M 2s -2024-05-06T17:08:33Z #15 1.751 15950K .......... .......... .......... .......... .......... 12% 106M 2s -2024-05-06T17:08:33Z #15 1.751 16000K .......... .......... .......... .......... .......... 12% 44.6M 2s -2024-05-06T17:08:33Z #15 1.755 16050K .......... .......... .......... .......... .......... 12% 130M 2s -2024-05-06T17:08:33Z #15 1.755 16100K .......... .......... .......... .......... .......... 12% 146M 2s -2024-05-06T17:08:33Z #15 1.755 16150K .......... .......... .......... .......... .......... 12% 128M 2s -2024-05-06T17:08:33Z #15 1.755 16200K .......... .......... .......... .......... .......... 12% 97.7M 2s -2024-05-06T17:08:33Z #15 1.755 16250K .......... .......... .......... .......... .......... 12% 125M 2s -2024-05-06T17:08:33Z #15 1.755 16300K .......... .......... .......... .......... .......... 12% 127M 2s -2024-05-06T17:08:33Z #15 1.755 16350K .......... .......... .......... .......... .......... 12% 133M 2s -2024-05-06T17:08:33Z #15 1.755 16400K .......... .......... .......... .......... .......... 12% 95.9M 2s -2024-05-06T17:08:33Z #15 1.755 16450K .......... .......... .......... .......... .......... 12% 30.1M 2s -2024-05-06T17:08:33Z #15 1.757 16500K .......... .......... .......... .......... .......... 12% 100M 2s -2024-05-06T17:08:33Z #15 1.757 16550K .......... .......... .......... .......... .......... 12% 46.6M 2s -2024-05-06T17:08:33Z #15 1.759 16600K .......... .......... .......... .......... .......... 13% 14.0M 2s -2024-05-06T17:08:33Z #15 1.762 16650K .......... .......... .......... .......... .......... 13% 26.5M 2s -2024-05-06T17:08:33Z #15 1.764 16700K .......... .......... .......... .......... .......... 13% 41.4M 2s -2024-05-06T17:08:33Z #15 1.767 16750K .......... .......... .......... .......... .......... 13% 105M 2s -2024-05-06T17:08:33Z #15 1.767 16800K .......... .......... .......... .......... .......... 13% 97.2M 2s -2024-05-06T17:08:33Z #15 1.767 16850K .......... .......... .......... .......... .......... 13% 119M 2s -2024-05-06T17:08:33Z #15 1.767 16900K .......... .......... .......... .......... .......... 13% 117M 2s -2024-05-06T17:08:33Z #15 1.767 16950K .......... .......... .......... .......... .......... 13% 88.3M 2s -2024-05-06T17:08:33Z #15 1.767 17000K .......... .......... .......... .......... .......... 13% 14.5M 2s -2024-05-06T17:08:33Z #15 1.771 17050K .......... .......... .......... .......... .......... 13% 56.6M 2s -2024-05-06T17:08:33Z #15 1.772 17100K .......... .......... .......... .......... .......... 13% 37.4M 2s -2024-05-06T17:08:33Z #15 1.773 17150K .......... .......... .......... .......... .......... 13% 37.6M 2s -2024-05-06T17:08:33Z #15 1.774 17200K .......... .......... .......... .......... .......... 13% 26.3M 2s -2024-05-06T17:08:33Z #15 1.779 17250K .......... .......... .......... .......... .......... 13% 114M 2s -2024-05-06T17:08:33Z #15 1.779 17300K .......... .......... .......... .......... .......... 13% 110M 2s -2024-05-06T17:08:33Z #15 1.779 17350K .......... .......... .......... .......... .......... 13% 114M 2s -2024-05-06T17:08:33Z #15 1.779 17400K .......... .......... .......... .......... .......... 13% 97.6M 2s -2024-05-06T17:08:33Z #15 1.779 17450K .......... .......... .......... .......... .......... 13% 115M 2s -2024-05-06T17:08:33Z #15 1.779 17500K .......... .......... .......... .......... .......... 13% 108M 2s -2024-05-06T17:08:33Z #15 1.779 17550K .......... .......... .......... .......... .......... 13% 118M 2s -2024-05-06T17:08:33Z #15 1.779 17600K .......... .......... .......... .......... .......... 13% 11.8M 2s -2024-05-06T17:08:33Z #15 1.787 17650K .......... .......... .......... .......... .......... 13% 142M 2s -2024-05-06T17:08:33Z #15 1.787 17700K .......... .......... .......... .......... .......... 13% 110M 2s -2024-05-06T17:08:33Z #15 1.787 17750K .......... .......... .......... .......... .......... 13% 130M 2s -2024-05-06T17:08:33Z #15 1.787 17800K .......... .......... .......... .......... .......... 13% 102M 2s -2024-05-06T17:08:33Z #15 1.787 17850K .......... .......... .......... .......... .......... 14% 157M 2s -2024-05-06T17:08:33Z #15 1.787 17900K .......... .......... .......... .......... .......... 14% 111M 2s -2024-05-06T17:08:33Z #15 1.787 17950K .......... .......... .......... .......... .......... 14% 147M 2s -2024-05-06T17:08:33Z #15 1.787 18000K .......... .......... .......... .......... .......... 14% 108M 2s -2024-05-06T17:08:33Z #15 1.787 18050K .......... .......... .......... .......... .......... 14% 115M 2s -2024-05-06T17:08:33Z #15 1.787 18100K .......... .......... .......... .......... .......... 14% 45.7M 2s -2024-05-06T17:08:33Z #15 1.789 18150K .......... .......... .......... .......... .......... 14% 15.4M 2s -2024-05-06T17:08:33Z #15 1.791 18200K .......... .......... .......... .......... .......... 14% 49.8M 2s -2024-05-06T17:08:33Z #15 1.795 18250K .......... .......... .......... .......... .......... 14% 111M 2s -2024-05-06T17:08:33Z #15 1.795 18300K .......... .......... .......... .......... .......... 14% 116M 2s -2024-05-06T17:08:33Z #15 1.795 18350K .......... .......... .......... .......... .......... 14% 145M 2s -2024-05-06T17:08:33Z #15 1.795 18400K .......... .......... .......... .......... .......... 14% 107M 2s -2024-05-06T17:08:33Z #15 1.795 18450K .......... .......... .......... .......... .......... 14% 118M 2s -2024-05-06T17:08:33Z #15 1.795 18500K .......... .......... .......... .......... .......... 14% 114M 2s -2024-05-06T17:08:33Z #15 1.795 18550K .......... .......... .......... .......... .......... 14% 111M 2s -2024-05-06T17:08:33Z #15 1.795 18600K .......... .......... .......... .......... .......... 14% 25.0M 2s -2024-05-06T17:08:33Z #15 1.799 18650K .......... .......... .......... .......... .......... 14% 119M 2s -2024-05-06T17:08:33Z #15 1.799 18700K .......... .......... .......... .......... .......... 14% 131M 2s -2024-05-06T17:08:33Z #15 1.799 18750K .......... .......... .......... .......... .......... 14% 116M 2s -2024-05-06T17:08:33Z #15 1.799 18800K .......... .......... .......... .......... .......... 14% 119M 2s -2024-05-06T17:08:33Z #15 1.799 18850K .......... .......... .......... .......... .......... 14% 119M 2s -2024-05-06T17:08:33Z #15 1.799 18900K .......... .......... .......... .......... .......... 14% 105M 2s -2024-05-06T17:08:33Z #15 1.803 18950K .......... .......... .......... .......... .......... 14% 115M 2s -2024-05-06T17:08:33Z #15 1.803 19000K .......... .......... .......... .......... .......... 14% 89.4M 2s -2024-05-06T17:08:33Z #15 1.803 19050K .......... .......... .......... .......... .......... 14% 125M 2s -2024-05-06T17:08:33Z #15 1.803 19100K .......... .......... .......... .......... .......... 14% 105M 2s -2024-05-06T17:08:33Z #15 1.803 19150K .......... .......... .......... .......... .......... 15% 107M 2s -2024-05-06T17:08:33Z #15 1.803 19200K .......... .......... .......... .......... .......... 15% 108M 2s -2024-05-06T17:08:33Z #15 1.803 19250K .......... .......... .......... .......... .......... 15% 110M 2s -2024-05-06T17:08:33Z #15 1.803 19300K .......... .......... .......... .......... .......... 15% 148M 2s -2024-05-06T17:08:33Z #15 1.803 19350K .......... .......... .......... .......... .......... 15% 101M 2s -2024-05-06T17:08:33Z #15 1.807 19400K .......... .......... .......... .......... .......... 15% 96.1M 2s -2024-05-06T17:08:33Z #15 1.807 19450K .......... .......... .......... .......... .......... 15% 116M 2s -2024-05-06T17:08:33Z #15 1.807 19500K .......... .......... .......... .......... .......... 15% 126M 2s -2024-05-06T17:08:33Z #15 1.807 19550K .......... .......... .......... .......... .......... 15% 105M 2s -2024-05-06T17:08:33Z #15 1.807 19600K .......... .......... .......... .......... .......... 15% 116M 2s -2024-05-06T17:08:33Z #15 1.807 19650K .......... .......... .......... .......... .......... 15% 123M 2s -2024-05-06T17:08:33Z #15 1.807 19700K .......... .......... .......... .......... .......... 15% 122M 2s -2024-05-06T17:08:33Z #15 1.807 19750K .......... .......... .......... .......... .......... 15% 115M 2s -2024-05-06T17:08:33Z #15 1.807 19800K .......... .......... .......... .......... .......... 15% 58.6M 2s -2024-05-06T17:08:33Z #15 1.808 19850K .......... .......... .......... .......... .......... 15% 42.4M 2s -2024-05-06T17:08:33Z #15 1.809 19900K .......... .......... .......... .......... .......... 15% 47.3M 2s -2024-05-06T17:08:33Z #15 1.811 19950K .......... .......... .......... .......... .......... 15% 51.2M 2s -2024-05-06T17:08:33Z #15 1.811 20000K .......... .......... .......... .......... .......... 15% 42.2M 2s -2024-05-06T17:08:33Z #15 1.812 20050K .......... .......... .......... .......... .......... 15% 45.9M 2s -2024-05-06T17:08:33Z #15 1.813 20100K .......... .......... .......... .......... .......... 15% 45.9M 2s -2024-05-06T17:08:33Z #15 1.814 20150K .......... .......... .......... .......... .......... 15% 52.0M 2s -2024-05-06T17:08:33Z #15 1.815 20200K .......... .......... .......... .......... .......... 15% 41.2M 2s -2024-05-06T17:08:33Z #15 1.816 20250K .......... .......... .......... .......... .......... 15% 46.4M 2s -2024-05-06T17:08:33Z #15 1.817 20300K .......... .......... .......... .......... .......... 15% 50.3M 2s -2024-05-06T17:08:33Z #15 1.818 20350K .......... .......... .......... .......... .......... 15% 45.0M 2s -2024-05-06T17:08:33Z #15 1.820 20400K .......... .......... .......... .......... .......... 16% 42.7M 2s -2024-05-06T17:08:33Z #15 1.820 20450K .......... .......... .......... .......... .......... 16% 44.7M 2s -2024-05-06T17:08:33Z #15 1.823 20500K .......... .......... .......... .......... .......... 16% 122M 2s -2024-05-06T17:08:33Z #15 1.823 20550K .......... .......... .......... .......... .......... 16% 133M 2s -2024-05-06T17:08:33Z #15 1.823 20600K .......... .......... .......... .......... .......... 16% 99.6M 2s -2024-05-06T17:08:33Z #15 1.823 20650K .......... .......... .......... .......... .......... 16% 51.9M 2s -2024-05-06T17:08:33Z #15 1.827 20700K .......... .......... .......... .......... .......... 16% 112M 2s -2024-05-06T17:08:33Z #15 1.827 20750K .......... .......... .......... .......... .......... 16% 113M 2s -2024-05-06T17:08:33Z #15 1.827 20800K .......... .......... .......... .......... .......... 16% 106M 2s -2024-05-06T17:08:33Z #15 1.827 20850K .......... .......... .......... .......... .......... 16% 109M 2s -2024-05-06T17:08:33Z #15 1.827 20900K .......... .......... .......... .......... .......... 16% 97.6M 2s -2024-05-06T17:08:33Z #15 1.827 20950K .......... .......... .......... .......... .......... 16% 102M 2s -2024-05-06T17:08:33Z #15 1.827 21000K .......... .......... .......... .......... .......... 16% 88.1M 2s -2024-05-06T17:08:33Z #15 1.827 21050K .......... .......... .......... .......... .......... 16% 93.3M 2s -2024-05-06T17:08:33Z #15 1.831 21100K .......... .......... .......... .......... .......... 16% 107M 2s -2024-05-06T17:08:33Z #15 1.831 21150K .......... .......... .......... .......... .......... 16% 108M 2s -2024-05-06T17:08:33Z #15 1.831 21200K .......... .......... .......... .......... .......... 16% 106M 2s -2024-05-06T17:08:33Z #15 1.831 21250K .......... .......... .......... .......... .......... 16% 109M 2s -2024-05-06T17:08:33Z #15 1.831 21300K .......... .......... .......... .......... .......... 16% 119M 2s -2024-05-06T17:08:33Z #15 1.831 21350K .......... .......... .......... .......... .......... 16% 115M 2s -2024-05-06T17:08:33Z #15 1.831 21400K .......... .......... .......... .......... .......... 16% 83.0M 2s -2024-05-06T17:08:33Z #15 1.831 21450K .......... .......... .......... .......... .......... 16% 77.2M 2s -2024-05-06T17:08:33Z #15 1.831 21500K .......... .......... .......... .......... .......... 16% 41.1M 2s -2024-05-06T17:08:33Z #15 1.834 21550K .......... .......... .......... .......... .......... 16% 113M 2s -2024-05-06T17:08:33Z #15 1.834 21600K .......... .......... .......... .......... .......... 16% 95.9M 2s -2024-05-06T17:08:33Z #15 1.834 21650K .......... .......... .......... .......... .......... 16% 54.6M 2s -2024-05-06T17:08:33Z #15 1.834 21700K .......... .......... .......... .......... .......... 17% 39.9M 2s -2024-05-06T17:08:33Z #15 1.839 21750K .......... .......... .......... .......... .......... 17% 138M 2s -2024-05-06T17:08:33Z #15 1.839 21800K .......... .......... .......... .......... .......... 17% 122M 2s -2024-05-06T17:08:33Z #15 1.839 21850K .......... .......... .......... .......... .......... 17% 133M 2s -2024-05-06T17:08:33Z #15 1.839 21900K .......... .......... .......... .......... .......... 17% 148M 2s -2024-05-06T17:08:33Z #15 1.839 21950K .......... .......... .......... .......... .......... 17% 132M 2s -2024-05-06T17:08:33Z #15 1.839 22000K .......... .......... .......... .......... .......... 17% 125M 2s -2024-05-06T17:08:33Z #15 1.839 22050K .......... .......... .......... .......... .......... 17% 136M 2s -2024-05-06T17:08:33Z #15 1.839 22100K .......... .......... .......... .......... .......... 17% 135M 2s -2024-05-06T17:08:33Z #15 1.839 22150K .......... .......... .......... .......... .......... 17% 131M 2s -2024-05-06T17:08:33Z #15 1.839 22200K .......... .......... .......... .......... .......... 17% 26.6M 2s -2024-05-06T17:08:33Z #15 1.841 22250K .......... .......... .......... .......... .......... 17% 32.6M 2s -2024-05-06T17:08:33Z #15 1.847 22300K .......... .......... .......... .......... .......... 17% 158M 2s -2024-05-06T17:08:33Z #15 1.847 22350K .......... .......... .......... .......... .......... 17% 140M 2s -2024-05-06T17:08:33Z #15 1.847 22400K .......... .......... .......... .......... .......... 17% 122M 2s -2024-05-06T17:08:33Z #15 1.847 22450K .......... .......... .......... .......... .......... 17% 128M 2s -2024-05-06T17:08:33Z #15 1.847 22500K .......... .......... .......... .......... .......... 17% 146M 2s -2024-05-06T17:08:33Z #15 1.847 22550K .......... .......... .......... .......... .......... 17% 155M 2s -2024-05-06T17:08:33Z #15 1.847 22600K .......... .......... .......... .......... .......... 17% 123M 2s -2024-05-06T17:08:34Z #15 1.847 22650K .......... .......... .......... .......... .......... 17% 140M 2s -2024-05-06T17:08:34Z #15 1.847 22700K .......... .......... .......... .......... .......... 17% 147M 2s -2024-05-06T17:08:34Z #15 1.847 22750K .......... .......... .......... .......... .......... 17% 168M 2s -2024-05-06T17:08:34Z #15 1.847 22800K .......... .......... .......... .......... .......... 17% 109M 2s -2024-05-06T17:08:34Z #15 1.847 22850K .......... .......... .......... .......... .......... 17% 159M 2s -2024-05-06T17:08:34Z #15 1.847 22900K .......... .......... .......... .......... .......... 17% 135M 2s -2024-05-06T17:08:34Z #15 1.847 22950K .......... .......... .......... .......... .......... 17% 61.0M 2s -2024-05-06T17:08:34Z #15 1.848 23000K .......... .......... .......... .......... .......... 18% 16.2M 2s -2024-05-06T17:08:34Z #15 1.855 23050K .......... .......... .......... .......... .......... 18% 154M 2s -2024-05-06T17:08:34Z #15 1.855 23100K .......... .......... .......... .......... .......... 18% 139M 2s -2024-05-06T17:08:34Z #15 1.855 23150K .......... .......... .......... .......... .......... 18% 142M 2s -2024-05-06T17:08:34Z #15 1.855 23200K .......... .......... .......... .......... .......... 18% 127M 2s -2024-05-06T17:08:34Z #15 1.855 23250K .......... .......... .......... .......... .......... 18% 133M 2s -2024-05-06T17:08:34Z #15 1.855 23300K .......... .......... .......... .......... .......... 18% 144M 2s -2024-05-06T17:08:34Z #15 1.855 23350K .......... .......... .......... .......... .......... 18% 127M 2s -2024-05-06T17:08:34Z #15 1.855 23400K .......... .......... .......... .......... .......... 18% 128M 2s -2024-05-06T17:08:34Z #15 1.855 23450K .......... .......... .......... .......... .......... 18% 139M 2s -2024-05-06T17:08:34Z #15 1.855 23500K .......... .......... .......... .......... .......... 18% 128M 2s -2024-05-06T17:08:34Z #15 1.855 23550K .......... .......... .......... .......... .......... 18% 139M 2s -2024-05-06T17:08:34Z #15 1.855 23600K .......... .......... .......... .......... .......... 18% 114M 2s -2024-05-06T17:08:34Z #15 1.855 23650K .......... .......... .......... .......... .......... 18% 27.6M 2s -2024-05-06T17:08:34Z #15 1.857 23700K .......... .......... .......... .......... .......... 18% 31.5M 2s -2024-05-06T17:08:34Z #15 1.858 23750K .......... .......... .......... .......... .......... 18% 52.4M 2s -2024-05-06T17:08:34Z #15 1.863 23800K .......... .......... .......... .......... .......... 18% 119M 2s -2024-05-06T17:08:34Z #15 1.863 23850K .......... .......... .......... .......... .......... 18% 131M 2s -2024-05-06T17:08:34Z #15 1.863 23900K .......... .......... .......... .......... .......... 18% 146M 2s -2024-05-06T17:08:34Z #15 1.863 23950K .......... .......... .......... .......... .......... 18% 166M 2s -2024-05-06T17:08:34Z #15 1.863 24000K .......... .......... .......... .......... .......... 18% 127M 2s -2024-05-06T17:08:34Z #15 1.863 24050K .......... .......... .......... .......... .......... 18% 149M 2s -2024-05-06T17:08:34Z #15 1.863 24100K .......... .......... .......... .......... .......... 18% 145M 2s -2024-05-06T17:08:34Z #15 1.863 24150K .......... .......... .......... .......... .......... 18% 165M 2s -2024-05-06T17:08:34Z #15 1.863 24200K .......... .......... .......... .......... .......... 18% 107M 2s -2024-05-06T17:08:34Z #15 1.863 24250K .......... .......... .......... .......... .......... 19% 162M 2s -2024-05-06T17:08:34Z #15 1.863 24300K .......... .......... .......... .......... .......... 19% 29.7M 2s -2024-05-06T17:08:34Z #15 1.865 24350K .......... .......... .......... .......... .......... 19% 9.92M 2s -2024-05-06T17:08:34Z #15 1.871 24400K .......... .......... .......... .......... .......... 19% 121M 2s -2024-05-06T17:08:34Z #15 1.871 24450K .......... .......... .......... .......... .......... 19% 167M 2s -2024-05-06T17:08:34Z #15 1.871 24500K .......... .......... .......... .......... .......... 19% 139M 2s -2024-05-06T17:08:34Z #15 1.871 24550K .......... .......... .......... .......... .......... 19% 139M 2s -2024-05-06T17:08:34Z #15 1.871 24600K .......... .......... .......... .......... .......... 19% 13.3M 2s -2024-05-06T17:08:34Z #15 1.879 24650K .......... .......... .......... .......... .......... 19% 42.7M 2s -2024-05-06T17:08:34Z #15 1.879 24700K .......... .......... .......... .......... .......... 19% 142M 2s -2024-05-06T17:08:34Z #15 1.879 24750K .......... .......... .......... .......... .......... 19% 151M 2s -2024-05-06T17:08:34Z #15 1.879 24800K .......... .......... .......... .......... .......... 19% 152M 2s -2024-05-06T17:08:34Z #15 1.879 24850K .......... .......... .......... .......... .......... 19% 128M 2s -2024-05-06T17:08:34Z #15 1.879 24900K .......... .......... .......... .......... .......... 19% 138M 2s -2024-05-06T17:08:34Z #15 1.879 24950K .......... .......... .......... .......... .......... 19% 139M 2s -2024-05-06T17:08:34Z #15 1.879 25000K .......... .......... .......... .......... .......... 19% 127M 2s -2024-05-06T17:08:34Z #15 1.879 25050K .......... .......... .......... .......... .......... 19% 136M 2s -2024-05-06T17:08:34Z #15 1.879 25100K .......... .......... .......... .......... .......... 19% 146M 2s -2024-05-06T17:08:34Z #15 1.879 25150K .......... .......... .......... .......... .......... 19% 13.6M 2s -2024-05-06T17:08:34Z #15 1.887 25200K .......... .......... .......... .......... .......... 19% 23.2M 2s -2024-05-06T17:08:34Z #15 1.887 25250K .......... .......... .......... .......... .......... 19% 147M 2s -2024-05-06T17:08:34Z #15 1.887 25300K .......... .......... .......... .......... .......... 19% 170M 2s -2024-05-06T17:08:34Z #15 1.887 25350K .......... .......... .......... .......... .......... 19% 149M 2s -2024-05-06T17:08:34Z #15 1.887 25400K .......... .......... .......... .......... .......... 19% 116M 2s -2024-05-06T17:08:34Z #15 1.887 25450K .......... .......... .......... .......... .......... 19% 114M 2s -2024-05-06T17:08:34Z #15 1.887 25500K .......... .......... .......... .......... .......... 19% 149M 2s -2024-05-06T17:08:34Z #15 1.887 25550K .......... .......... .......... .......... .......... 20% 134M 2s -2024-05-06T17:08:34Z #15 1.887 25600K .......... .......... .......... .......... .......... 20% 36.7M 2s -2024-05-06T17:08:34Z #15 1.895 25650K .......... .......... .......... .......... .......... 20% 49.0M 2s -2024-05-06T17:08:34Z #15 1.895 25700K .......... .......... .......... .......... .......... 20% 115M 2s -2024-05-06T17:08:34Z #15 1.895 25750K .......... .......... .......... .......... .......... 20% 116M 2s -2024-05-06T17:08:34Z #15 1.895 25800K .......... .......... .......... .......... .......... 20% 97.0M 2s -2024-05-06T17:08:34Z #15 1.895 25850K .......... .......... .......... .......... .......... 20% 118M 2s -2024-05-06T17:08:34Z #15 1.895 25900K .......... .......... .......... .......... .......... 20% 108M 2s -2024-05-06T17:08:34Z #15 1.895 25950K .......... .......... .......... .......... .......... 20% 116M 2s -2024-05-06T17:08:34Z #15 1.895 26000K .......... .......... .......... .......... .......... 20% 98.8M 1s -2024-05-06T17:08:34Z #15 1.895 26050K .......... .......... .......... .......... .......... 20% 143M 1s -2024-05-06T17:08:34Z #15 1.895 26100K .......... .......... .......... .......... .......... 20% 123M 1s -2024-05-06T17:08:34Z #15 1.895 26150K .......... .......... .......... .......... .......... 20% 122M 1s -2024-05-06T17:08:34Z #15 1.895 26200K .......... .......... .......... .......... .......... 20% 97.8M 1s -2024-05-06T17:08:34Z #15 1.895 26250K .......... .......... .......... .......... .......... 20% 123M 1s -2024-05-06T17:08:34Z #15 1.895 26300K .......... .......... .......... .......... .......... 20% 128M 1s -2024-05-06T17:08:34Z #15 1.895 26350K .......... .......... .......... .......... .......... 20% 35.6M 1s -2024-05-06T17:08:34Z #15 1.896 26400K .......... .......... .......... .......... .......... 20% 44.6M 1s -2024-05-06T17:08:34Z #15 1.897 26450K .......... .......... .......... .......... .......... 20% 146M 1s -2024-05-06T17:08:34Z #15 1.898 26500K .......... .......... .......... .......... .......... 20% 147M 1s -2024-05-06T17:08:34Z #15 1.898 26550K .......... .......... .......... .......... .......... 20% 145M 1s -2024-05-06T17:08:34Z #15 1.898 26600K .......... .......... .......... .......... .......... 20% 41.7M 1s -2024-05-06T17:08:34Z #15 1.899 26650K .......... .......... .......... .......... .......... 20% 33.1M 1s -2024-05-06T17:08:34Z #15 1.901 26700K .......... .......... .......... .......... .......... 20% 106M 1s -2024-05-06T17:08:34Z #15 1.901 26750K .......... .......... .......... .......... .......... 20% 64.6M 1s -2024-05-06T17:08:34Z #15 1.902 26800K .......... .......... .......... .......... .......... 21% 34.1M 1s -2024-05-06T17:08:34Z #15 1.904 26850K .......... .......... .......... .......... .......... 21% 72.0M 1s -2024-05-06T17:08:34Z #15 1.904 26900K .......... .......... .......... .......... .......... 21% 155M 1s -2024-05-06T17:08:34Z #15 1.904 26950K .......... .......... .......... .......... .......... 21% 132M 1s -2024-05-06T17:08:34Z #15 1.905 27000K .......... .......... .......... .......... .......... 21% 110M 1s -2024-05-06T17:08:34Z #15 1.905 27050K .......... .......... .......... .......... .......... 21% 128M 1s -2024-05-06T17:08:34Z #15 1.906 27100K .......... .......... .......... .......... .......... 21% 138M 1s -2024-05-06T17:08:34Z #15 1.906 27150K .......... .......... .......... .......... .......... 21% 135M 1s -2024-05-06T17:08:34Z #15 1.906 27200K .......... .......... .......... .......... .......... 21% 122M 1s -2024-05-06T17:08:34Z #15 1.907 27250K .......... .......... .......... .......... .......... 21% 116M 1s -2024-05-06T17:08:34Z #15 1.907 27300K .......... .......... .......... .......... .......... 21% 136M 1s -2024-05-06T17:08:34Z #15 1.908 27350K .......... .......... .......... .......... .......... 21% 141M 1s -2024-05-06T17:08:34Z #15 1.910 27400K .......... .......... .......... .......... .......... 21% 110M 1s -2024-05-06T17:08:34Z #15 1.910 27450K .......... .......... .......... .......... .......... 21% 172M 1s -2024-05-06T17:08:34Z #15 1.910 27500K .......... .......... .......... .......... .......... 21% 142M 1s -2024-05-06T17:08:34Z #15 1.910 27550K .......... .......... .......... .......... .......... 21% 138M 1s -2024-05-06T17:08:34Z #15 1.910 27600K .......... .......... .......... .......... .......... 21% 125M 1s -2024-05-06T17:08:34Z #15 1.910 27650K .......... .......... .......... .......... .......... 21% 133M 1s -2024-05-06T17:08:34Z #15 1.911 27700K .......... .......... .......... .......... .......... 21% 140M 1s -2024-05-06T17:08:34Z #15 1.911 27750K .......... .......... .......... .......... .......... 21% 130M 1s -2024-05-06T17:08:34Z #15 1.911 27800K .......... .......... .......... .......... .......... 21% 43.5M 1s -2024-05-06T17:08:34Z #15 1.912 27850K .......... .......... .......... .......... .......... 21% 83.1M 1s -2024-05-06T17:08:34Z #15 1.913 27900K .......... .......... .......... .......... .......... 21% 138M 1s -2024-05-06T17:08:34Z #15 1.913 27950K .......... .......... .......... .......... .......... 21% 72.1M 1s -2024-05-06T17:08:34Z #15 1.914 28000K .......... .......... .......... .......... .......... 21% 122M 1s -2024-05-06T17:08:34Z #15 1.914 28050K .......... .......... .......... .......... .......... 21% 154M 1s -2024-05-06T17:08:34Z #15 1.914 28100K .......... .......... .......... .......... .......... 22% 137M 1s -2024-05-06T17:08:34Z #15 1.915 28150K .......... .......... .......... .......... .......... 22% 81.2M 1s -2024-05-06T17:08:34Z #15 1.920 28200K .......... .......... .......... .......... .......... 22% 108M 1s -2024-05-06T17:08:34Z #15 1.920 28250K .......... .......... .......... .......... .......... 22% 153M 1s -2024-05-06T17:08:34Z #15 1.920 28300K .......... .......... .......... .......... .......... 22% 129M 1s -2024-05-06T17:08:34Z #15 1.920 28350K .......... .......... .......... .......... .......... 22% 141M 1s -2024-05-06T17:08:34Z #15 1.920 28400K .......... .......... .......... .......... .......... 22% 117M 1s -2024-05-06T17:08:34Z #15 1.920 28450K .......... .......... .......... .......... .......... 22% 147M 1s -2024-05-06T17:08:34Z #15 1.920 28500K .......... .......... .......... .......... .......... 22% 134M 1s -2024-05-06T17:08:34Z #15 1.920 28550K .......... .......... .......... .......... .......... 22% 142M 1s -2024-05-06T17:08:34Z #15 1.920 28600K .......... .......... .......... .......... .......... 22% 123M 1s -2024-05-06T17:08:34Z #15 1.920 28650K .......... .......... .......... .......... .......... 22% 170M 1s -2024-05-06T17:08:34Z #15 1.920 28700K .......... .......... .......... .......... .......... 22% 126M 1s -2024-05-06T17:08:34Z #15 1.920 28750K .......... .......... .......... .......... .......... 22% 96.6M 1s -2024-05-06T17:08:34Z #15 1.920 28800K .......... .......... .......... .......... .......... 22% 69.7M 1s -2024-05-06T17:08:34Z #15 1.921 28850K .......... .......... .......... .......... .......... 22% 99.2M 1s -2024-05-06T17:08:34Z #15 1.921 28900K .......... .......... .......... .......... .......... 22% 139M 1s -2024-05-06T17:08:34Z #15 1.921 28950K .......... .......... .......... .......... .......... 22% 167M 1s -2024-05-06T17:08:34Z #15 1.922 29000K .......... .......... .......... .......... .......... 22% 126M 1s -2024-05-06T17:08:34Z #15 1.922 29050K .......... .......... .......... .......... .......... 22% 142M 1s -2024-05-06T17:08:34Z #15 1.922 29100K .......... .......... .......... .......... .......... 22% 137M 1s -2024-05-06T17:08:34Z #15 1.923 29150K .......... .......... .......... .......... .......... 22% 35.8M 1s -2024-05-06T17:08:34Z #15 1.924 29200K .......... .......... .......... .......... .......... 22% 72.5M 1s -2024-05-06T17:08:34Z #15 1.925 29250K .......... .......... .......... .......... .......... 22% 120M 1s -2024-05-06T17:08:34Z #15 1.925 29300K .......... .......... .......... .......... .......... 22% 165M 1s -2024-05-06T17:08:34Z #15 1.926 29350K .......... .......... .......... .......... .......... 23% 133M 1s -2024-05-06T17:08:34Z #15 1.926 29400K .......... .......... .......... .......... .......... 23% 123M 1s -2024-05-06T17:08:34Z #15 1.926 29450K .......... .......... .......... .......... .......... 23% 140M 1s -2024-05-06T17:08:34Z #15 1.927 29500K .......... .......... .......... .......... .......... 23% 142M 1s -2024-05-06T17:08:34Z #15 1.927 29550K .......... .......... .......... .......... .......... 23% 53.4M 1s -2024-05-06T17:08:34Z #15 1.928 29600K .......... .......... .......... .......... .......... 23% 74.9M 1s -2024-05-06T17:08:34Z #15 1.929 29650K .......... .......... .......... .......... .......... 23% 98.5M 1s -2024-05-06T17:08:34Z #15 1.929 29700K .......... .......... .......... .......... .......... 23% 57.4M 1s -2024-05-06T17:08:34Z #15 1.930 29750K .......... .......... .......... .......... .......... 23% 105M 1s -2024-05-06T17:08:34Z #15 1.930 29800K .......... .......... .......... .......... .......... 23% 87.0M 1s -2024-05-06T17:08:34Z #15 1.931 29850K .......... .......... .......... .......... .......... 23% 69.9M 1s -2024-05-06T17:08:34Z #15 1.932 29900K .......... .......... .......... .......... .......... 23% 76.0M 1s -2024-05-06T17:08:34Z #15 1.932 29950K .......... .......... .......... .......... .......... 23% 87.8M 1s -2024-05-06T17:08:34Z #15 1.933 30000K .......... .......... .......... .......... .......... 23% 120M 1s -2024-05-06T17:08:34Z #15 1.933 30050K .......... .......... .......... .......... .......... 23% 144M 1s -2024-05-06T17:08:34Z #15 1.934 30100K .......... .......... .......... .......... .......... 23% 140M 1s -2024-05-06T17:08:34Z #15 1.939 30150K .......... .......... .......... .......... .......... 23% 157M 1s -2024-05-06T17:08:34Z #15 1.939 30200K .......... .......... .......... .......... .......... 23% 123M 1s -2024-05-06T17:08:34Z #15 1.939 30250K .......... .......... .......... .......... .......... 23% 138M 1s -2024-05-06T17:08:34Z #15 1.939 30300K .......... .......... .......... .......... .......... 23% 78.0M 1s -2024-05-06T17:08:34Z #15 1.939 30350K .......... .......... .......... .......... .......... 23% 128M 1s -2024-05-06T17:08:34Z #15 1.939 30400K .......... .......... .......... .......... .......... 23% 138M 1s -2024-05-06T17:08:34Z #15 1.939 30450K .......... .......... .......... .......... .......... 23% 144M 1s -2024-05-06T17:08:34Z #15 1.939 30500K .......... .......... .......... .......... .......... 23% 157M 1s -2024-05-06T17:08:34Z #15 1.939 30550K .......... .......... .......... .......... .......... 23% 126M 1s -2024-05-06T17:08:34Z #15 1.939 30600K .......... .......... .......... .......... .......... 23% 120M 1s -2024-05-06T17:08:34Z #15 1.939 30650K .......... .......... .......... .......... .......... 24% 119M 1s -2024-05-06T17:08:34Z #15 1.939 30700K .......... .......... .......... .......... .......... 24% 156M 1s -2024-05-06T17:08:34Z #15 1.939 30750K .......... .......... .......... .......... .......... 24% 147M 1s -2024-05-06T17:08:34Z #15 1.939 30800K .......... .......... .......... .......... .......... 24% 40.5M 1s -2024-05-06T17:08:34Z #15 1.940 30850K .......... .......... .......... .......... .......... 24% 13.6M 1s -2024-05-06T17:08:34Z #15 1.944 30900K .......... .......... .......... .......... .......... 24% 21.9M 1s -2024-05-06T17:08:34Z #15 1.946 30950K .......... .......... .......... .......... .......... 24% 26.1M 1s -2024-05-06T17:08:34Z #15 1.951 31000K .......... .......... .......... .......... .......... 24% 99.1M 1s -2024-05-06T17:08:34Z #15 1.951 31050K .......... .......... .......... .......... .......... 24% 147M 1s -2024-05-06T17:08:34Z #15 1.951 31100K .......... .......... .......... .......... .......... 24% 130M 1s -2024-05-06T17:08:34Z #15 1.951 31150K .......... .......... .......... .......... .......... 24% 170M 1s -2024-05-06T17:08:34Z #15 1.951 31200K .......... .......... .......... .......... .......... 24% 126M 1s -2024-05-06T17:08:34Z #15 1.951 31250K .......... .......... .......... .......... .......... 24% 136M 1s -2024-05-06T17:08:34Z #15 1.951 31300K .......... .......... .......... .......... .......... 24% 129M 1s -2024-05-06T17:08:34Z #15 1.951 31350K .......... .......... .......... .......... .......... 24% 171M 1s -2024-05-06T17:08:34Z #15 1.951 31400K .......... .......... .......... .......... .......... 24% 120M 1s -2024-05-06T17:08:34Z #15 1.951 31450K .......... .......... .......... .......... .......... 24% 27.0M 1s -2024-05-06T17:08:34Z #15 1.953 31500K .......... .......... .......... .......... .......... 24% 38.3M 1s -2024-05-06T17:08:34Z #15 1.959 31550K .......... .......... .......... .......... .......... 24% 124M 1s -2024-05-06T17:08:34Z #15 1.959 31600K .......... .......... .......... .......... .......... 24% 119M 1s -2024-05-06T17:08:34Z #15 1.959 31650K .......... .......... .......... .......... .......... 24% 112M 1s -2024-05-06T17:08:34Z #15 1.959 31700K .......... .......... .......... .......... .......... 24% 116M 1s -2024-05-06T17:08:34Z #15 1.959 31750K .......... .......... .......... .......... .......... 24% 119M 1s -2024-05-06T17:08:34Z #15 1.959 31800K .......... .......... .......... .......... .......... 24% 103M 1s -2024-05-06T17:08:34Z #15 1.959 31850K .......... .......... .......... .......... .......... 24% 122M 1s -2024-05-06T17:08:34Z #15 1.959 31900K .......... .......... .......... .......... .......... 25% 118M 1s -2024-05-06T17:08:34Z #15 1.959 31950K .......... .......... .......... .......... .......... 25% 124M 1s -2024-05-06T17:08:34Z #15 1.959 32000K .......... .......... .......... .......... .......... 25% 130M 1s -2024-05-06T17:08:34Z #15 1.959 32050K .......... .......... .......... .......... .......... 25% 116M 1s -2024-05-06T17:08:34Z #15 1.959 32100K .......... .......... .......... .......... .......... 25% 136M 1s -2024-05-06T17:08:34Z #15 1.959 32150K .......... .......... .......... .......... .......... 25% 19.8M 1s -2024-05-06T17:08:34Z #15 1.962 32200K .......... .......... .......... .......... .......... 25% 56.2M 1s -2024-05-06T17:08:34Z #15 1.962 32250K .......... .......... .......... .......... .......... 25% 120M 1s -2024-05-06T17:08:34Z #15 1.967 32300K .......... .......... .......... .......... .......... 25% 113M 1s -2024-05-06T17:08:34Z #15 1.967 32350K .......... .......... .......... .......... .......... 25% 100M 1s -2024-05-06T17:08:34Z #15 1.967 32400K .......... .......... .......... .......... .......... 25% 89.5M 1s -2024-05-06T17:08:34Z #15 1.967 32450K .......... .......... .......... .......... .......... 25% 128M 1s -2024-05-06T17:08:34Z #15 1.967 32500K .......... .......... .......... .......... .......... 25% 108M 1s -2024-05-06T17:08:34Z #15 1.967 32550K .......... .......... .......... .......... .......... 25% 110M 1s -2024-05-06T17:08:34Z #15 1.967 32600K .......... .......... .......... .......... .......... 25% 113M 1s -2024-05-06T17:08:34Z #15 1.967 32650K .......... .......... .......... .......... .......... 25% 96.1M 1s -2024-05-06T17:08:34Z #15 1.967 32700K .......... .......... .......... .......... .......... 25% 120M 1s -2024-05-06T17:08:34Z #15 1.967 32750K .......... .......... .......... .......... .......... 25% 60.7M 1s -2024-05-06T17:08:34Z #15 1.971 32800K .......... .......... .......... .......... .......... 25% 114M 1s -2024-05-06T17:08:34Z #15 1.971 32850K .......... .......... .......... .......... .......... 25% 116M 1s -2024-05-06T17:08:34Z #15 1.971 32900K .......... .......... .......... .......... .......... 25% 118M 1s -2024-05-06T17:08:34Z #15 1.971 32950K .......... .......... .......... .......... .......... 25% 115M 1s -2024-05-06T17:08:34Z #15 1.971 33000K .......... .......... .......... .......... .......... 25% 111M 1s -2024-05-06T17:08:34Z #15 1.971 33050K .......... .......... .......... .......... .......... 25% 120M 1s -2024-05-06T17:08:34Z #15 1.971 33100K .......... .......... .......... .......... .......... 25% 115M 1s -2024-05-06T17:08:34Z #15 1.971 33150K .......... .......... .......... .......... .......... 25% 105M 1s -2024-05-06T17:08:34Z #15 1.971 33200K .......... .......... .......... .......... .......... 26% 51.4M 1s -2024-05-06T17:08:34Z #15 1.975 33250K .......... .......... .......... .......... .......... 26% 112M 1s -2024-05-06T17:08:34Z #15 1.975 33300K .......... .......... .......... .......... .......... 26% 117M 1s -2024-05-06T17:08:34Z #15 1.975 33350K .......... .......... .......... .......... .......... 26% 107M 1s -2024-05-06T17:08:34Z #15 1.975 33400K .......... .......... .......... .......... .......... 26% 110M 1s -2024-05-06T17:08:34Z #15 1.975 33450K .......... .......... .......... .......... .......... 26% 110M 1s -2024-05-06T17:08:34Z #15 1.975 33500K .......... .......... .......... .......... .......... 26% 114M 1s -2024-05-06T17:08:34Z #15 1.975 33550K .......... .......... .......... .......... .......... 26% 72.9M 1s -2024-05-06T17:08:34Z #15 1.975 33600K .......... .......... .......... .......... .......... 26% 52.3M 1s -2024-05-06T17:08:34Z #15 1.979 33650K .......... .......... .......... .......... .......... 26% 136M 1s -2024-05-06T17:08:34Z #15 1.979 33700K .......... .......... .......... .......... .......... 26% 105M 1s -2024-05-06T17:08:34Z #15 1.979 33750K .......... .......... .......... .......... .......... 26% 114M 1s -2024-05-06T17:08:34Z #15 1.979 33800K .......... .......... .......... .......... .......... 26% 97.9M 1s -2024-05-06T17:08:34Z #15 1.979 33850K .......... .......... .......... .......... .......... 26% 110M 1s -2024-05-06T17:08:34Z #15 1.979 33900K .......... .......... .......... .......... .......... 26% 119M 1s -2024-05-06T17:08:34Z #15 1.979 33950K .......... .......... .......... .......... .......... 26% 58.0M 1s -2024-05-06T17:08:34Z #15 1.980 34000K .......... .......... .......... .......... .......... 26% 44.5M 1s -2024-05-06T17:08:34Z #15 1.981 34050K .......... .......... .......... .......... .......... 26% 47.1M 1s -2024-05-06T17:08:34Z #15 1.982 34100K .......... .......... .......... .......... .......... 26% 80.1M 1s -2024-05-06T17:08:34Z #15 1.987 34150K .......... .......... .......... .......... .......... 26% 142M 1s -2024-05-06T17:08:34Z #15 1.987 34200K .......... .......... .......... .......... .......... 26% 106M 1s -2024-05-06T17:08:34Z #15 1.987 34250K .......... .......... .......... .......... .......... 26% 136M 1s -2024-05-06T17:08:34Z #15 1.987 34300K .......... .......... .......... .......... .......... 26% 128M 1s -2024-05-06T17:08:34Z #15 1.987 34350K .......... .......... .......... .......... .......... 26% 110M 1s -2024-05-06T17:08:34Z #15 1.987 34400K .......... .......... .......... .......... .......... 26% 104M 1s -2024-05-06T17:08:34Z #15 1.987 34450K .......... .......... .......... .......... .......... 26% 152M 1s -2024-05-06T17:08:34Z #15 1.987 34500K .......... .......... .......... .......... .......... 27% 112M 1s -2024-05-06T17:08:34Z #15 1.987 34550K .......... .......... .......... .......... .......... 27% 130M 1s -2024-05-06T17:08:34Z #15 1.987 34600K .......... .......... .......... .......... .......... 27% 103M 1s -2024-05-06T17:08:34Z #15 1.987 34650K .......... .......... .......... .......... .......... 27% 110M 1s -2024-05-06T17:08:34Z #15 1.987 34700K .......... .......... .......... .......... .......... 27% 65.4M 1s -2024-05-06T17:08:34Z #15 1.991 34750K .......... .......... .......... .......... .......... 27% 121M 1s -2024-05-06T17:08:34Z #15 1.991 34800K .......... .......... .......... .......... .......... 27% 109M 1s -2024-05-06T17:08:34Z #15 1.991 34850K .......... .......... .......... .......... .......... 27% 103M 1s -2024-05-06T17:08:34Z #15 1.991 34900K .......... .......... .......... .......... .......... 27% 117M 1s -2024-05-06T17:08:34Z #15 1.991 34950K .......... .......... .......... .......... .......... 27% 124M 1s -2024-05-06T17:08:34Z #15 1.991 35000K .......... .......... .......... .......... .......... 27% 95.1M 1s -2024-05-06T17:08:34Z #15 1.991 35050K .......... .......... .......... .......... .......... 27% 111M 1s -2024-05-06T17:08:34Z #15 1.991 35100K .......... .......... .......... .......... .......... 27% 74.5M 1s -2024-05-06T17:08:34Z #15 1.991 35150K .......... .......... .......... .......... .......... 27% 92.3M 1s -2024-05-06T17:08:34Z #15 1.995 35200K .......... .......... .......... .......... .......... 27% 115M 1s -2024-05-06T17:08:34Z #15 1.995 35250K .......... .......... .......... .......... .......... 27% 130M 1s -2024-05-06T17:08:34Z #15 1.995 35300K .......... .......... .......... .......... .......... 27% 140M 1s -2024-05-06T17:08:34Z #15 1.995 35350K .......... .......... .......... .......... .......... 27% 126M 1s -2024-05-06T17:08:34Z #15 1.995 35400K .......... .......... .......... .......... .......... 27% 111M 1s -2024-05-06T17:08:34Z #15 1.995 35450K .......... .......... .......... .......... .......... 27% 108M 1s -2024-05-06T17:08:34Z #15 1.995 35500K .......... .......... .......... .......... .......... 27% 133M 1s -2024-05-06T17:08:34Z #15 1.995 35550K .......... .......... .......... .......... .......... 27% 70.1M 1s -2024-05-06T17:08:34Z #15 1.995 35600K .......... .......... .......... .......... .......... 27% 65.1M 1s -2024-05-06T17:08:34Z #15 1.999 35650K .......... .......... .......... .......... .......... 27% 143M 1s -2024-05-06T17:08:34Z #15 1.999 35700K .......... .......... .......... .......... .......... 27% 143M 1s -2024-05-06T17:08:34Z #15 1.999 35750K .......... .......... .......... .......... .......... 28% 150M 1s -2024-05-06T17:08:34Z #15 1.999 35800K .......... .......... .......... .......... .......... 28% 82.4M 1s -2024-05-06T17:08:34Z #15 1.999 35850K .......... .......... .......... .......... .......... 28% 130M 1s -2024-05-06T17:08:34Z #15 1.999 35900K .......... .......... .......... .......... .......... 28% 107M 1s -2024-05-06T17:08:34Z #15 1.999 35950K .......... .......... .......... .......... .......... 28% 140M 1s -2024-05-06T17:08:34Z #15 1.999 36000K .......... .......... .......... .......... .......... 28% 43.8M 1s -2024-05-06T17:08:34Z #15 2.003 36050K .......... .......... .......... .......... .......... 28% 121M 1s -2024-05-06T17:08:34Z #15 2.003 36100K .......... .......... .......... .......... .......... 28% 110M 1s -2024-05-06T17:08:34Z #15 2.003 36150K .......... .......... .......... .......... .......... 28% 113M 1s -2024-05-06T17:08:34Z #15 2.003 36200K .......... .......... .......... .......... .......... 28% 102M 1s -2024-05-06T17:08:34Z #15 2.003 36250K .......... .......... .......... .......... .......... 28% 111M 1s -2024-05-06T17:08:34Z #15 2.003 36300K .......... .......... .......... .......... .......... 28% 108M 1s -2024-05-06T17:08:34Z #15 2.003 36350K .......... .......... .......... .......... .......... 28% 72.8M 1s -2024-05-06T17:08:34Z #15 2.003 36400K .......... .......... .......... .......... .......... 28% 53.9M 1s -2024-05-06T17:08:34Z #15 2.007 36450K .......... .......... .......... .......... .......... 28% 135M 1s -2024-05-06T17:08:34Z #15 2.007 36500K .......... .......... .......... .......... .......... 28% 103M 1s -2024-05-06T17:08:34Z #15 2.007 36550K .......... .......... .......... .......... .......... 28% 117M 1s -2024-05-06T17:08:34Z #15 2.007 36600K .......... .......... .......... .......... .......... 28% 98.3M 1s -2024-05-06T17:08:34Z #15 2.007 36650K .......... .......... .......... .......... .......... 28% 121M 1s -2024-05-06T17:08:34Z #15 2.007 36700K .......... .......... .......... .......... .......... 28% 118M 1s -2024-05-06T17:08:34Z #15 2.007 36750K .......... .......... .......... .......... .......... 28% 65.0M 1s -2024-05-06T17:08:34Z #15 2.011 36800K .......... .......... .......... .......... .......... 28% 125M 1s -2024-05-06T17:08:34Z #15 2.011 36850K .......... .......... .......... .......... .......... 28% 104M 1s -2024-05-06T17:08:34Z #15 2.011 36900K .......... .......... .......... .......... .......... 28% 117M 1s -2024-05-06T17:08:34Z #15 2.011 36950K .......... .......... .......... .......... .......... 28% 119M 1s -2024-05-06T17:08:34Z #15 2.011 37000K .......... .......... .......... .......... .......... 28% 105M 1s -2024-05-06T17:08:34Z #15 2.011 37050K .......... .......... .......... .......... .......... 29% 119M 1s -2024-05-06T17:08:34Z #15 2.011 37100K .......... .......... .......... .......... .......... 29% 131M 1s -2024-05-06T17:08:34Z #15 2.011 37150K .......... .......... .......... .......... .......... 29% 117M 1s -2024-05-06T17:08:34Z #15 2.011 37200K .......... .......... .......... .......... .......... 29% 58.7M 1s -2024-05-06T17:08:34Z #15 2.015 37250K .......... .......... .......... .......... .......... 29% 125M 1s -2024-05-06T17:08:34Z #15 2.015 37300K .......... .......... .......... .......... .......... 29% 118M 1s -2024-05-06T17:08:34Z #15 2.015 37350K .......... .......... .......... .......... .......... 29% 118M 1s -2024-05-06T17:08:34Z #15 2.015 37400K .......... .......... .......... .......... .......... 29% 102M 1s -2024-05-06T17:08:34Z #15 2.015 37450K .......... .......... .......... .......... .......... 29% 126M 1s -2024-05-06T17:08:34Z #15 2.015 37500K .......... .......... .......... .......... .......... 29% 134M 1s -2024-05-06T17:08:34Z #15 2.015 37550K .......... .......... .......... .......... .......... 29% 145M 1s -2024-05-06T17:08:34Z #15 2.015 37600K .......... .......... .......... .......... .......... 29% 80.3M 1s -2024-05-06T17:08:34Z #15 2.015 37650K .......... .......... .......... .......... .......... 29% 50.6M 1s -2024-05-06T17:08:34Z #15 2.016 37700K .......... .......... .......... .......... .......... 29% 21.4M 1s -2024-05-06T17:08:34Z #15 2.019 37750K .......... .......... .......... .......... .......... 29% 73.4M 1s -2024-05-06T17:08:34Z #15 2.019 37800K .......... .......... .......... .......... .......... 29% 40.7M 1s -2024-05-06T17:08:34Z #15 2.020 37850K .......... .......... .......... .......... .......... 29% 28.0M 1s -2024-05-06T17:08:34Z #15 2.022 37900K .......... .......... .......... .......... .......... 29% 28.7M 1s -2024-05-06T17:08:34Z #15 2.024 37950K .......... .......... .......... .......... .......... 29% 28.1M 1s -2024-05-06T17:08:34Z #15 2.026 38000K .......... .......... .......... .......... .......... 29% 26.6M 1s -2024-05-06T17:08:34Z #15 2.027 38050K .......... .......... .......... .......... .......... 29% 28.4M 1s -2024-05-06T17:08:34Z #15 2.029 38100K .......... .......... .......... .......... .......... 29% 28.5M 1s -2024-05-06T17:08:34Z #15 2.031 38150K .......... .......... .......... .......... .......... 29% 26.8M 1s -2024-05-06T17:08:34Z #15 2.033 38200K .......... .......... .......... .......... .......... 29% 24.9M 1s -2024-05-06T17:08:34Z #15 2.035 38250K .......... .......... .......... .......... .......... 29% 28.4M 1s -2024-05-06T17:08:34Z #15 2.037 38300K .......... .......... .......... .......... .......... 30% 30.2M 1s -2024-05-06T17:08:34Z #15 2.038 38350K .......... .......... .......... .......... .......... 30% 27.9M 1s -2024-05-06T17:08:34Z #15 2.040 38400K .......... .......... .......... .......... .......... 30% 26.6M 1s -2024-05-06T17:08:34Z #15 2.042 38450K .......... .......... .......... .......... .......... 30% 26.7M 1s -2024-05-06T17:08:34Z #15 2.043 38500K .......... .......... .......... .......... .......... 30% 33.7M 1s -2024-05-06T17:08:34Z #15 2.045 38550K .......... .......... .......... .......... .......... 30% 29.8M 1s -2024-05-06T17:08:34Z #15 2.047 38600K .......... .......... .......... .......... .......... 30% 25.2M 1s -2024-05-06T17:08:34Z #15 2.048 38650K .......... .......... .......... .......... .......... 30% 27.8M 1s -2024-05-06T17:08:34Z #15 2.050 38700K .......... .......... .......... .......... .......... 30% 37.5M 1s -2024-05-06T17:08:34Z #15 2.051 38750K .......... .......... .......... .......... .......... 30% 28.8M 1s -2024-05-06T17:08:34Z #15 2.053 38800K .......... .......... .......... .......... .......... 30% 28.9M 1s -2024-05-06T17:08:34Z #15 2.055 38850K .......... .......... .......... .......... .......... 30% 31.3M 1s -2024-05-06T17:08:34Z #15 2.056 38900K .......... .......... .......... .......... .......... 30% 29.2M 1s -2024-05-06T17:08:34Z #15 2.058 38950K .......... .......... .......... .......... .......... 30% 31.1M 1s -2024-05-06T17:08:34Z #15 2.060 39000K .......... .......... .......... .......... .......... 30% 33.2M 1s -2024-05-06T17:08:34Z #15 2.061 39050K .......... .......... .......... .......... .......... 30% 29.8M 1s -2024-05-06T17:08:34Z #15 2.063 39100K .......... .......... .......... .......... .......... 30% 29.0M 1s -2024-05-06T17:08:34Z #15 2.064 39150K .......... .......... .......... .......... .......... 30% 29.7M 1s -2024-05-06T17:08:34Z #15 2.066 39200K .......... .......... .......... .......... .......... 30% 25.5M 1s -2024-05-06T17:08:34Z #15 2.068 39250K .......... .......... .......... .......... .......... 30% 28.8M 1s -2024-05-06T17:08:34Z #15 2.070 39300K .......... .......... .......... .......... .......... 30% 28.6M 1s -2024-05-06T17:08:34Z #15 2.071 39350K .......... .......... .......... .......... .......... 30% 26.6M 1s -2024-05-06T17:08:34Z #15 2.073 39400K .......... .......... .......... .......... .......... 30% 26.1M 1s -2024-05-06T17:08:34Z #15 2.075 39450K .......... .......... .......... .......... .......... 30% 29.6M 1s -2024-05-06T17:08:34Z #15 2.077 39500K .......... .......... .......... .......... .......... 30% 29.4M 1s -2024-05-06T17:08:34Z #15 2.078 39550K .......... .......... .......... .......... .......... 30% 29.7M 1s -2024-05-06T17:08:34Z #15 2.080 39600K .......... .......... .......... .......... .......... 31% 26.1M 1s -2024-05-06T17:08:34Z #15 2.082 39650K .......... .......... .......... .......... .......... 31% 26.8M 1s -2024-05-06T17:08:34Z #15 2.084 39700K .......... .......... .......... .......... .......... 31% 29.3M 1s -2024-05-06T17:08:34Z #15 2.085 39750K .......... .......... .......... .......... .......... 31% 28.1M 1s -2024-05-06T17:08:34Z #15 2.087 39800K .......... .......... .......... .......... .......... 31% 24.5M 1s -2024-05-06T17:08:34Z #15 2.089 39850K .......... .......... .......... .......... .......... 31% 27.9M 1s -2024-05-06T17:08:34Z #15 2.091 39900K .......... .......... .......... .......... .......... 31% 28.0M 1s -2024-05-06T17:08:34Z #15 2.093 39950K .......... .......... .......... .......... .......... 31% 29.0M 1s -2024-05-06T17:08:34Z #15 2.094 40000K .......... .......... .......... .......... .......... 31% 25.2M 1s -2024-05-06T17:08:34Z #15 2.096 40050K .......... .......... .......... .......... .......... 31% 28.5M 1s -2024-05-06T17:08:34Z #15 2.098 40100K .......... .......... .......... .......... .......... 31% 28.8M 1s -2024-05-06T17:08:34Z #15 2.100 40150K .......... .......... .......... .......... .......... 31% 28.2M 1s -2024-05-06T17:08:34Z #15 2.101 40200K .......... .......... .......... .......... .......... 31% 23.5M 1s -2024-05-06T17:08:34Z #15 2.104 40250K .......... .......... .......... .......... .......... 31% 19.5M 1s -2024-05-06T17:08:34Z #15 2.106 40300K .......... .......... .......... .......... .......... 31% 14.8M 1s -2024-05-06T17:08:34Z #15 2.109 40350K .......... .......... .......... .......... .......... 31% 21.2M 1s -2024-05-06T17:08:34Z #15 2.112 40400K .......... .......... .......... .......... .......... 31% 15.8M 1s -2024-05-06T17:08:34Z #15 2.115 40450K .......... .......... .......... .......... .......... 31% 27.7M 1s -2024-05-06T17:08:34Z #15 2.116 40500K .......... .......... .......... .......... .......... 31% 26.4M 1s -2024-05-06T17:08:34Z #15 2.118 40550K .......... .......... .......... .......... .......... 31% 27.0M 1s -2024-05-06T17:08:34Z #15 2.120 40600K .......... .......... .......... .......... .......... 31% 22.4M 1s -2024-05-06T17:08:34Z #15 2.123 40650K .......... .......... .......... .......... .......... 31% 30.2M 1s -2024-05-06T17:08:34Z #15 2.124 40700K .......... .......... .......... .......... .......... 31% 28.8M 1s -2024-05-06T17:08:34Z #15 2.126 40750K .......... .......... .......... .......... .......... 31% 30.1M 1s -2024-05-06T17:08:34Z #15 2.127 40800K .......... .......... .......... .......... .......... 31% 26.1M 1s -2024-05-06T17:08:34Z #15 2.130 40850K .......... .......... .......... .......... .......... 32% 33.0M 1s -2024-05-06T17:08:34Z #15 2.131 40900K .......... .......... .......... .......... .......... 32% 38.1M 1s -2024-05-06T17:08:34Z #15 2.132 40950K .......... .......... .......... .......... .......... 32% 32.4M 1s -2024-05-06T17:08:34Z #15 2.134 41000K .......... .......... .......... .......... .......... 32% 26.3M 1s -2024-05-06T17:08:34Z #15 2.135 41050K .......... .......... .......... .......... .......... 32% 29.8M 1s -2024-05-06T17:08:34Z #15 2.137 41100K .......... .......... .......... .......... .......... 32% 37.6M 1s -2024-05-06T17:08:34Z #15 2.138 41150K .......... .......... .......... .......... .......... 32% 38.6M 1s -2024-05-06T17:08:34Z #15 2.143 41200K .......... .......... .......... .......... .......... 32% 35.1M 1s -2024-05-06T17:08:34Z #15 2.143 41250K .......... .......... .......... .......... .......... 32% 41.1M 1s -2024-05-06T17:08:34Z #15 2.143 41300K .......... .......... .......... .......... .......... 32% 40.2M 1s -2024-05-06T17:08:34Z #15 2.147 41350K .......... .......... .......... .......... .......... 32% 129M 1s -2024-05-06T17:08:34Z #15 2.147 41400K .......... .......... .......... .......... .......... 32% 115M 1s -2024-05-06T17:08:34Z #15 2.147 41450K .......... .......... .......... .......... .......... 32% 157M 1s -2024-05-06T17:08:34Z #15 2.147 41500K .......... .......... .......... .......... .......... 32% 139M 1s -2024-05-06T17:08:34Z #15 2.147 41550K .......... .......... .......... .......... .......... 32% 160M 1s -2024-05-06T17:08:34Z #15 2.147 41600K .......... .......... .......... .......... .......... 32% 136M 1s -2024-05-06T17:08:34Z #15 2.147 41650K .......... .......... .......... .......... .......... 32% 127M 1s -2024-05-06T17:08:34Z #15 2.147 41700K .......... .......... .......... .......... .......... 32% 157M 1s -2024-05-06T17:08:34Z #15 2.147 41750K .......... .......... .......... .......... .......... 32% 148M 1s -2024-05-06T17:08:34Z #15 2.147 41800K .......... .......... .......... .......... .......... 32% 136M 1s -2024-05-06T17:08:34Z #15 2.147 41850K .......... .......... .......... .......... .......... 32% 150M 1s -2024-05-06T17:08:34Z #15 2.147 41900K .......... .......... .......... .......... .......... 32% 42.8M 1s -2024-05-06T17:08:34Z #15 2.148 41950K .......... .......... .......... .......... .......... 32% 38.8M 1s -2024-05-06T17:08:34Z #15 2.149 42000K .......... .......... .......... .......... .......... 32% 35.9M 1s -2024-05-06T17:08:34Z #15 2.151 42050K .......... .......... .......... .......... .......... 32% 40.6M 1s -2024-05-06T17:08:34Z #15 2.152 42100K .......... .......... .......... .......... .......... 32% 40.8M 1s -2024-05-06T17:08:34Z #15 2.159 42150K .......... .......... .......... .......... .......... 33% 39.9M 1s -2024-05-06T17:08:34Z #15 2.159 42200K .......... .......... .......... .......... .......... 33% 36.9M 1s -2024-05-06T17:08:34Z #15 2.159 42250K .......... .......... .......... .......... .......... 33% 41.3M 1s -2024-05-06T17:08:34Z #15 2.159 42300K .......... .......... .......... .......... .......... 33% 35.5M 1s -2024-05-06T17:08:34Z #15 2.159 42350K .......... .......... .......... .......... .......... 33% 31.0M 1s -2024-05-06T17:08:34Z #15 2.160 42400K .......... .......... .......... .......... .......... 33% 32.8M 1s -2024-05-06T17:08:34Z #15 2.161 42450K .......... .......... .......... .......... .......... 33% 39.0M 1s -2024-05-06T17:08:34Z #15 2.163 42500K .......... .......... .......... .......... .......... 33% 48.6M 1s -2024-05-06T17:08:34Z #15 2.164 42550K .......... .......... .......... .......... .......... 33% 50.4M 1s -2024-05-06T17:08:34Z #15 2.165 42600K .......... .......... .......... .......... .......... 33% 99.1M 1s -2024-05-06T17:08:34Z #15 2.165 42650K .......... .......... .......... .......... .......... 33% 53.3M 1s -2024-05-06T17:08:34Z #15 2.166 42700K .......... .......... .......... .......... .......... 33% 9.28M 1s -2024-05-06T17:08:34Z #15 2.171 42750K .......... .......... .......... .......... .......... 33% 119M 1s -2024-05-06T17:08:34Z #15 2.171 42800K .......... .......... .......... .......... .......... 33% 99.3M 1s -2024-05-06T17:08:34Z #15 2.172 42850K .......... .......... .......... .......... .......... 33% 138M 1s -2024-05-06T17:08:34Z #15 2.173 42900K .......... .......... .......... .......... .......... 33% 127M 1s -2024-05-06T17:08:34Z #15 2.173 42950K .......... .......... .......... .......... .......... 33% 133M 1s -2024-05-06T17:08:34Z #15 2.173 43000K .......... .......... .......... .......... .......... 33% 110M 1s -2024-05-06T17:08:34Z #15 2.174 43050K .......... .......... .......... .......... .......... 33% 156M 1s -2024-05-06T17:08:34Z #15 2.174 43100K .......... .......... .......... .......... .......... 33% 127M 1s -2024-05-06T17:08:34Z #15 2.178 43150K .......... .......... .......... .......... .......... 33% 167M 1s -2024-05-06T17:08:34Z #15 2.178 43200K .......... .......... .......... .......... .......... 33% 148M 1s -2024-05-06T17:08:34Z #15 2.178 43250K .......... .......... .......... .......... .......... 33% 15.9M 1s -2024-05-06T17:08:34Z #15 2.178 43300K .......... .......... .......... .......... .......... 33% 139M 1s -2024-05-06T17:08:34Z #15 2.178 43350K .......... .......... .......... .......... .......... 33% 156M 1s -2024-05-06T17:08:34Z #15 2.179 43400K .......... .......... .......... .......... .......... 34% 113M 1s -2024-05-06T17:08:34Z #15 2.179 43450K .......... .......... .......... .......... .......... 34% 124M 1s -2024-05-06T17:08:34Z #15 2.180 43500K .......... .......... .......... .......... .......... 34% 123M 1s -2024-05-06T17:08:34Z #15 2.181 43550K .......... .......... .......... .......... .......... 34% 126M 1s -2024-05-06T17:08:34Z #15 2.181 43600K .......... .......... .......... .......... .......... 34% 121M 1s -2024-05-06T17:08:34Z #15 2.181 43650K .......... .......... .......... .......... .......... 34% 137M 1s -2024-05-06T17:08:34Z #15 2.181 43700K .......... .......... .......... .......... .......... 34% 115M 1s -2024-05-06T17:08:34Z #15 2.182 43750K .......... .......... .......... .......... .......... 34% 115M 1s -2024-05-06T17:08:34Z #15 2.182 43800K .......... .......... .......... .......... .......... 34% 101M 1s -2024-05-06T17:08:34Z #15 2.183 43850K .......... .......... .......... .......... .......... 34% 118M 1s -2024-05-06T17:08:34Z #15 2.183 43900K .......... .......... .......... .......... .......... 34% 86.3M 1s -2024-05-06T17:08:34Z #15 2.184 43950K .......... .......... .......... .......... .......... 34% 101M 1s -2024-05-06T17:08:34Z #15 2.184 44000K .......... .......... .......... .......... .......... 34% 127M 1s -2024-05-06T17:08:34Z #15 2.184 44050K .......... .......... .......... .......... .......... 34% 109M 1s -2024-05-06T17:08:34Z #15 2.186 44100K .......... .......... .......... .......... .......... 34% 101M 1s -2024-05-06T17:08:34Z #15 2.186 44150K .......... .......... .......... .......... .......... 34% 112M 1s -2024-05-06T17:08:34Z #15 2.186 44200K .......... .......... .......... .......... .......... 34% 95.0M 1s -2024-05-06T17:08:34Z #15 2.186 44250K .......... .......... .......... .......... .......... 34% 102M 1s -2024-05-06T17:08:34Z #15 2.187 44300K .......... .......... .......... .......... .......... 34% 118M 1s -2024-05-06T17:08:34Z #15 2.190 44350K .......... .......... .......... .......... .......... 34% 20.8M 1s -2024-05-06T17:08:34Z #15 2.190 44400K .......... .......... .......... .......... .......... 34% 101M 1s -2024-05-06T17:08:34Z #15 2.190 44450K .......... .......... .......... .......... .......... 34% 117M 1s -2024-05-06T17:08:34Z #15 2.190 44500K .......... .......... .......... .......... .......... 34% 36.8M 1s -2024-05-06T17:08:34Z #15 2.194 44550K .......... .......... .......... .......... .......... 34% 120M 1s -2024-05-06T17:08:34Z #15 2.194 44600K .......... .......... .......... .......... .......... 34% 95.6M 1s -2024-05-06T17:08:34Z #15 2.194 44650K .......... .......... .......... .......... .......... 34% 114M 1s -2024-05-06T17:08:34Z #15 2.194 44700K .......... .......... .......... .......... .......... 35% 153M 1s -2024-05-06T17:08:34Z #15 2.194 44750K .......... .......... .......... .......... .......... 35% 101M 1s -2024-05-06T17:08:34Z #15 2.195 44800K .......... .......... .......... .......... .......... 35% 26.2M 1s -2024-05-06T17:08:34Z #15 2.195 44850K .......... .......... .......... .......... .......... 35% 110M 1s -2024-05-06T17:08:34Z #15 2.196 44900K .......... .......... .......... .......... .......... 35% 118M 1s -2024-05-06T17:08:34Z #15 2.196 44950K .......... .......... .......... .......... .......... 35% 32.7M 1s -2024-05-06T17:08:34Z #15 2.198 45000K .......... .......... .......... .......... .......... 35% 98.8M 1s -2024-05-06T17:08:34Z #15 2.199 45050K .......... .......... .......... .......... .......... 35% 144M 1s -2024-05-06T17:08:34Z #15 2.199 45100K .......... .......... .......... .......... .......... 35% 111M 1s -2024-05-06T17:08:34Z #15 2.199 45150K .......... .......... .......... .......... .......... 35% 118M 1s -2024-05-06T17:08:34Z #15 2.200 45200K .......... .......... .......... .......... .......... 35% 108M 1s -2024-05-06T17:08:34Z #15 2.200 45250K .......... .......... .......... .......... .......... 35% 114M 1s -2024-05-06T17:08:34Z #15 2.200 45300K .......... .......... .......... .......... .......... 35% 97.4M 1s -2024-05-06T17:08:34Z #15 2.201 45350K .......... .......... .......... .......... .......... 35% 158M 1s -2024-05-06T17:08:34Z #15 2.201 45400K .......... .......... .......... .......... .......... 35% 95.3M 1s -2024-05-06T17:08:34Z #15 2.202 45450K .......... .......... .......... .......... .......... 35% 100M 1s -2024-05-06T17:08:34Z #15 2.202 45500K .......... .......... .......... .......... .......... 35% 100M 1s -2024-05-06T17:08:34Z #15 2.204 45550K .......... .......... .......... .......... .......... 35% 12.3M 1s -2024-05-06T17:08:34Z #15 2.209 45600K .......... .......... .......... .......... .......... 35% 100M 1s -2024-05-06T17:08:34Z #15 2.209 45650K .......... .......... .......... .......... .......... 35% 114M 1s -2024-05-06T17:08:34Z #15 2.209 45700K .......... .......... .......... .......... .......... 35% 130M 1s -2024-05-06T17:08:34Z #15 2.209 45750K .......... .......... .......... .......... .......... 35% 120M 1s -2024-05-06T17:08:34Z #15 2.209 45800K .......... .......... .......... .......... .......... 35% 101M 1s -2024-05-06T17:08:34Z #15 2.209 45850K .......... .......... .......... .......... .......... 35% 108M 1s -2024-05-06T17:08:34Z #15 2.209 45900K .......... .......... .......... .......... .......... 35% 119M 1s -2024-05-06T17:08:34Z #15 2.210 45950K .......... .......... .......... .......... .......... 35% 119M 1s -2024-05-06T17:08:34Z #15 2.210 46000K .......... .......... .......... .......... .......... 36% 117M 1s -2024-05-06T17:08:34Z #15 2.211 46050K .......... .......... .......... .......... .......... 36% 14.6M 1s -2024-05-06T17:08:34Z #15 2.214 46100K .......... .......... .......... .......... .......... 36% 59.6M 1s -2024-05-06T17:08:34Z #15 2.215 46150K .......... .......... .......... .......... .......... 36% 123M 1s -2024-05-06T17:08:34Z #15 2.215 46200K .......... .......... .......... .......... .......... 36% 98.2M 1s -2024-05-06T17:08:34Z #15 2.216 46250K .......... .......... .......... .......... .......... 36% 111M 1s -2024-05-06T17:08:34Z #15 2.216 46300K .......... .......... .......... .......... .......... 36% 140M 1s -2024-05-06T17:08:34Z #15 2.216 46350K .......... .......... .......... .......... .......... 36% 119M 1s -2024-05-06T17:08:34Z #15 2.221 46400K .......... .......... .......... .......... .......... 36% 121M 1s -2024-05-06T17:08:34Z #15 2.221 46450K .......... .......... .......... .......... .......... 36% 113M 1s -2024-05-06T17:08:34Z #15 2.221 46500K .......... .......... .......... .......... .......... 36% 114M 1s -2024-05-06T17:08:34Z #15 2.221 46550K .......... .......... .......... .......... .......... 36% 127M 1s -2024-05-06T17:08:34Z #15 2.221 46600K .......... .......... .......... .......... .......... 36% 103M 1s -2024-05-06T17:08:34Z #15 2.222 46650K .......... .......... .......... .......... .......... 36% 15.2M 1s -2024-05-06T17:08:34Z #15 2.222 46700K .......... .......... .......... .......... .......... 36% 114M 1s -2024-05-06T17:08:34Z #15 2.223 46750K .......... .......... .......... .......... .......... 36% 115M 1s -2024-05-06T17:08:34Z #15 2.224 46800K .......... .......... .......... .......... .......... 36% 116M 1s -2024-05-06T17:08:34Z #15 2.224 46850K .......... .......... .......... .......... .......... 36% 105M 1s -2024-05-06T17:08:34Z #15 2.225 46900K .......... .......... .......... .......... .......... 36% 167M 1s -2024-05-06T17:08:34Z #15 2.225 46950K .......... .......... .......... .......... .......... 36% 156M 1s -2024-05-06T17:08:34Z #15 2.225 47000K .......... .......... .......... .......... .......... 36% 93.6M 1s -2024-05-06T17:08:34Z #15 2.225 47050K .......... .......... .......... .......... .......... 36% 111M 1s -2024-05-06T17:08:34Z #15 2.226 47100K .......... .......... .......... .......... .......... 36% 110M 1s -2024-05-06T17:08:34Z #15 2.226 47150K .......... .......... .......... .......... .......... 36% 99.5M 1s -2024-05-06T17:08:34Z #15 2.227 47200K .......... .......... .......... .......... .......... 36% 111M 1s -2024-05-06T17:08:34Z #15 2.228 47250K .......... .......... .......... .......... .......... 37% 10.2M 1s -2024-05-06T17:08:34Z #15 2.233 47300K .......... .......... .......... .......... .......... 37% 48.8M 1s -2024-05-06T17:08:34Z #15 2.233 47350K .......... .......... .......... .......... .......... 37% 42.5M 1s -2024-05-06T17:08:34Z #15 2.234 47400K .......... .......... .......... .......... .......... 37% 39.1M 1s -2024-05-06T17:08:34Z #15 2.251 47450K .......... .......... .......... .......... .......... 37% 112M 1s -2024-05-06T17:08:34Z #15 2.251 47500K .......... .......... .......... .......... .......... 37% 74.1M 1s -2024-05-06T17:08:34Z #15 2.251 47550K .......... .......... .......... .......... .......... 37% 89.8M 1s -2024-05-06T17:08:34Z #15 2.251 47600K .......... .......... .......... .......... .......... 37% 140M 1s -2024-05-06T17:08:34Z #15 2.251 47650K .......... .......... .......... .......... .......... 37% 156M 1s -2024-05-06T17:08:34Z #15 2.251 47700K .......... .......... .......... .......... .......... 37% 180M 1s -2024-05-06T17:08:34Z #15 2.251 47750K .......... .......... .......... .......... .......... 37% 48.1M 1s -2024-05-06T17:08:34Z #15 2.251 47800K .......... .......... .......... .......... .......... 37% 152M 1s -2024-05-06T17:08:34Z #15 2.251 47850K .......... .......... .......... .......... .......... 37% 175M 1s -2024-05-06T17:08:34Z #15 2.251 47900K .......... .......... .......... .......... .......... 37% 186M 1s -2024-05-06T17:08:34Z #15 2.251 47950K .......... .......... .......... .......... .......... 37% 145M 1s -2024-05-06T17:08:34Z #15 2.251 48000K .......... .......... .......... .......... .......... 37% 120M 1s -2024-05-06T17:08:34Z #15 2.251 48050K .......... .......... .......... .......... .......... 37% 28.2M 1s -2024-05-06T17:08:34Z #15 2.251 48100K .......... .......... .......... .......... .......... 37% 136M 1s -2024-05-06T17:08:34Z #15 2.251 48150K .......... .......... .......... .......... .......... 37% 123M 1s -2024-05-06T17:08:34Z #15 2.251 48200K .......... .......... .......... .......... .......... 37% 39.2M 1s -2024-05-06T17:08:34Z #15 2.251 48250K .......... .......... .......... .......... .......... 37% 124M 1s -2024-05-06T17:08:34Z #15 2.251 48300K .......... .......... .......... .......... .......... 37% 111M 1s -2024-05-06T17:08:34Z #15 2.251 48350K .......... .......... .......... .......... .......... 37% 111M 1s -2024-05-06T17:08:34Z #15 2.251 48400K .......... .......... .......... .......... .......... 37% 24.8M 1s -2024-05-06T17:08:34Z #15 2.251 48450K .......... .......... .......... .......... .......... 37% 56.3M 1s -2024-05-06T17:08:34Z #15 2.251 48500K .......... .......... .......... .......... .......... 37% 60.7M 1s -2024-05-06T17:08:34Z #15 2.251 48550K .......... .......... .......... .......... .......... 38% 42.0M 1s -2024-05-06T17:08:34Z #15 2.251 48600K .......... .......... .......... .......... .......... 38% 30.2M 1s -2024-05-06T17:08:34Z #15 2.252 48650K .......... .......... .......... .......... .......... 38% 50.2M 1s -2024-05-06T17:08:34Z #15 2.253 48700K .......... .......... .......... .......... .......... 38% 47.0M 1s -2024-05-06T17:08:34Z #15 2.256 48750K .......... .......... .......... .......... .......... 38% 144M 1s -2024-05-06T17:08:34Z #15 2.256 48800K .......... .......... .......... .......... .......... 38% 164M 1s -2024-05-06T17:08:34Z #15 2.256 48850K .......... .......... .......... .......... .......... 38% 55.4M 1s -2024-05-06T17:08:34Z #15 2.256 48900K .......... .......... .......... .......... .......... 38% 112M 1s -2024-05-06T17:08:34Z #15 2.256 48950K .......... .......... .......... .......... .......... 38% 57.4M 1s -2024-05-06T17:08:34Z #15 2.256 49000K .......... .......... .......... .......... .......... 38% 63.7M 1s -2024-05-06T17:08:34Z #15 2.257 49050K .......... .......... .......... .......... .......... 38% 108M 1s -2024-05-06T17:08:34Z #15 2.258 49100K .......... .......... .......... .......... .......... 38% 116M 1s -2024-05-06T17:08:34Z #15 2.258 49150K .......... .......... .......... .......... .......... 38% 31.5M 1s -2024-05-06T17:08:34Z #15 2.260 49200K .......... .......... .......... .......... .......... 38% 91.4M 1s -2024-05-06T17:08:34Z #15 2.260 49250K .......... .......... .......... .......... .......... 38% 113M 1s -2024-05-06T17:08:34Z #15 2.261 49300K .......... .......... .......... .......... .......... 38% 108M 1s -2024-05-06T17:08:34Z #15 2.261 49350K .......... .......... .......... .......... .......... 38% 110M 1s -2024-05-06T17:08:34Z #15 2.262 49400K .......... .......... .......... .......... .......... 38% 123M 1s -2024-05-06T17:08:34Z #15 2.262 49450K .......... .......... .......... .......... .......... 38% 113M 1s -2024-05-06T17:08:34Z #15 2.262 49500K .......... .......... .......... .......... .......... 38% 115M 1s -2024-05-06T17:08:34Z #15 2.263 49550K .......... .......... .......... .......... .......... 38% 16.7M 1s -2024-05-06T17:08:34Z #15 2.266 49600K .......... .......... .......... .......... .......... 38% 32.2M 1s -2024-05-06T17:08:34Z #15 2.267 49650K .......... .......... .......... .......... .......... 38% 47.2M 1s -2024-05-06T17:08:34Z #15 2.268 49700K .......... .......... .......... .......... .......... 38% 35.6M 1s -2024-05-06T17:08:34Z #15 2.270 49750K .......... .......... .......... .......... .......... 38% 46.9M 1s -2024-05-06T17:08:34Z #15 2.271 49800K .......... .......... .......... .......... .......... 39% 92.3M 1s -2024-05-06T17:08:34Z #15 2.271 49850K .......... .......... .......... .......... .......... 39% 110M 1s -2024-05-06T17:08:34Z #15 2.272 49900K .......... .......... .......... .......... .......... 39% 123M 1s -2024-05-06T17:08:34Z #15 2.272 49950K .......... .......... .......... .......... .......... 39% 119M 1s -2024-05-06T17:08:34Z #15 2.272 50000K .......... .......... .......... .......... .......... 39% 113M 1s -2024-05-06T17:08:34Z #15 2.273 50050K .......... .......... .......... .......... .......... 39% 105M 1s -2024-05-06T17:08:34Z #15 2.273 50100K .......... .......... .......... .......... .......... 39% 115M 1s -2024-05-06T17:08:34Z #15 2.274 50150K .......... .......... .......... .......... .......... 39% 114M 1s -2024-05-06T17:08:34Z #15 2.274 50200K .......... .......... .......... .......... .......... 39% 89.0M 1s -2024-05-06T17:08:34Z #15 2.275 50250K .......... .......... .......... .......... .......... 39% 10.9M 1s -2024-05-06T17:08:34Z #15 2.279 50300K .......... .......... .......... .......... .......... 39% 135M 1s -2024-05-06T17:08:34Z #15 2.280 50350K .......... .......... .......... .......... .......... 39% 109M 1s -2024-05-06T17:08:34Z #15 2.280 50400K .......... .......... .......... .......... .......... 39% 93.0M 1s -2024-05-06T17:08:34Z #15 2.281 50450K .......... .......... .......... .......... .......... 39% 118M 1s -2024-05-06T17:08:34Z #15 2.281 50500K .......... .......... .......... .......... .......... 39% 111M 1s -2024-05-06T17:08:34Z #15 2.281 50550K .......... .......... .......... .......... .......... 39% 110M 1s -2024-05-06T17:08:34Z #15 2.282 50600K .......... .......... .......... .......... .......... 39% 88.7M 1s -2024-05-06T17:08:34Z #15 2.282 50650K .......... .......... .......... .......... .......... 39% 107M 1s -2024-05-06T17:08:34Z #15 2.284 50700K .......... .......... .......... .......... .......... 39% 19.2M 1s -2024-05-06T17:08:34Z #15 2.285 50750K .......... .......... .......... .......... .......... 39% 100M 1s -2024-05-06T17:08:34Z #15 2.286 50800K .......... .......... .......... .......... .......... 39% 111M 1s -2024-05-06T17:08:34Z #15 2.286 50850K .......... .......... .......... .......... .......... 39% 115M 1s -2024-05-06T17:08:34Z #15 2.287 50900K .......... .......... .......... .......... .......... 39% 94.0M 1s -2024-05-06T17:08:34Z #15 2.287 50950K .......... .......... .......... .......... .......... 39% 110M 1s -2024-05-06T17:08:34Z #15 2.288 51000K .......... .......... .......... .......... .......... 39% 101M 1s -2024-05-06T17:08:34Z #15 2.288 51050K .......... .......... .......... .......... .......... 39% 106M 1s -2024-05-06T17:08:34Z #15 2.289 51100K .......... .......... .......... .......... .......... 40% 130M 1s -2024-05-06T17:08:34Z #15 2.289 51150K .......... .......... .......... .......... .......... 40% 117M 1s -2024-05-06T17:08:34Z #15 2.290 51200K .......... .......... .......... .......... .......... 40% 123M 1s -2024-05-06T17:08:34Z #15 2.290 51250K .......... .......... .......... .......... .......... 40% 126M 1s -2024-05-06T17:08:34Z #15 2.290 51300K .......... .......... .......... .......... .......... 40% 132M 1s -2024-05-06T17:08:34Z #15 2.291 51350K .......... .......... .......... .......... .......... 40% 11.0M 1s -2024-05-06T17:08:34Z #15 2.295 51400K .......... .......... .......... .......... .......... 40% 121M 1s -2024-05-06T17:08:34Z #15 2.295 51450K .......... .......... .......... .......... .......... 40% 137M 1s -2024-05-06T17:08:34Z #15 2.296 51500K .......... .......... .......... .......... .......... 40% 126M 1s -2024-05-06T17:08:34Z #15 2.296 51550K .......... .......... .......... .......... .......... 40% 144M 1s -2024-05-06T17:08:34Z #15 2.297 51600K .......... .......... .......... .......... .......... 40% 127M 1s -2024-05-06T17:08:34Z #15 2.297 51650K .......... .......... .......... .......... .......... 40% 129M 1s -2024-05-06T17:08:34Z #15 2.297 51700K .......... .......... .......... .......... .......... 40% 151M 1s -2024-05-06T17:08:34Z #15 2.298 51750K .......... .......... .......... .......... .......... 40% 129M 1s -2024-05-06T17:08:34Z #15 2.298 51800K .......... .......... .......... .......... .......... 40% 127M 1s -2024-05-06T17:08:34Z #15 2.300 51850K .......... .......... .......... .......... .......... 40% 129M 1s -2024-05-06T17:08:34Z #15 2.300 51900K .......... .......... .......... .......... .......... 40% 128M 1s -2024-05-06T17:08:34Z #15 2.300 51950K .......... .......... .......... .......... .......... 40% 134M 1s -2024-05-06T17:08:34Z #15 2.300 52000K .......... .......... .......... .......... .......... 40% 112M 1s -2024-05-06T17:08:34Z #15 2.300 52050K .......... .......... .......... .......... .......... 40% 149M 1s -2024-05-06T17:08:34Z #15 2.300 52100K .......... .......... .......... .......... .......... 40% 129M 1s -2024-05-06T17:08:34Z #15 2.301 52150K .......... .......... .......... .......... .......... 40% 144M 1s -2024-05-06T17:08:34Z #15 2.301 52200K .......... .......... .......... .......... .......... 40% 95.4M 1s -2024-05-06T17:08:34Z #15 2.301 52250K .......... .......... .......... .......... .......... 40% 149M 1s -2024-05-06T17:08:34Z #15 2.302 52300K .......... .......... .......... .......... .......... 40% 133M 1s -2024-05-06T17:08:34Z #15 2.302 52350K .......... .......... .......... .......... .......... 41% 165M 1s -2024-05-06T17:08:34Z #15 2.302 52400K .......... .......... .......... .......... .......... 41% 131M 1s -2024-05-06T17:08:34Z #15 2.303 52450K .......... .......... .......... .......... .......... 41% 135M 1s -2024-05-06T17:08:34Z #15 2.303 52500K .......... .......... .......... .......... .......... 41% 112M 1s -2024-05-06T17:08:34Z #15 2.304 52550K .......... .......... .......... .......... .......... 41% 133M 1s -2024-05-06T17:08:34Z #15 2.305 52600K .......... .......... .......... .......... .......... 41% 123M 1s -2024-05-06T17:08:34Z #15 2.305 52650K .......... .......... .......... .......... .......... 41% 140M 1s -2024-05-06T17:08:34Z #15 2.305 52700K .......... .......... .......... .......... .......... 41% 121M 1s -2024-05-06T17:08:34Z #15 2.305 52750K .......... .......... .......... .......... .......... 41% 150M 1s -2024-05-06T17:08:34Z #15 2.306 52800K .......... .......... .......... .......... .......... 41% 124M 1s -2024-05-06T17:08:34Z #15 2.306 52850K .......... .......... .......... .......... .......... 41% 157M 1s -2024-05-06T17:08:34Z #15 2.306 52900K .......... .......... .......... .......... .......... 41% 131M 1s -2024-05-06T17:08:34Z #15 2.307 52950K .......... .......... .......... .......... .......... 41% 162M 1s -2024-05-06T17:08:34Z #15 2.308 53000K .......... .......... .......... .......... .......... 41% 10.9M 1s -2024-05-06T17:08:34Z #15 2.311 53050K .......... .......... .......... .......... .......... 41% 155M 1s -2024-05-06T17:08:34Z #15 2.312 53100K .......... .......... .......... .......... .......... 41% 140M 1s -2024-05-06T17:08:34Z #15 2.312 53150K .......... .......... .......... .......... .......... 41% 148M 1s -2024-05-06T17:08:34Z #15 2.312 53200K .......... .......... .......... .......... .......... 41% 144M 1s -2024-05-06T17:08:34Z #15 2.313 53250K .......... .......... .......... .......... .......... 41% 129M 1s -2024-05-06T17:08:34Z #15 2.313 53300K .......... .......... .......... .......... .......... 41% 127M 1s -2024-05-06T17:08:34Z #15 2.314 53350K .......... .......... .......... .......... .......... 41% 125M 1s -2024-05-06T17:08:34Z #15 2.314 53400K .......... .......... .......... .......... .......... 41% 113M 1s -2024-05-06T17:08:34Z #15 2.314 53450K .......... .......... .......... .......... .......... 41% 141M 1s -2024-05-06T17:08:34Z #15 2.315 53500K .......... .......... .......... .......... .......... 41% 160M 1s -2024-05-06T17:08:34Z #15 2.315 53550K .......... .......... .......... .......... .......... 41% 110M 1s -2024-05-06T17:08:34Z #15 2.315 53600K .......... .......... .......... .......... .......... 41% 134M 1s -2024-05-06T17:08:34Z #15 2.316 53650K .......... .......... .......... .......... .......... 42% 119M 1s -2024-05-06T17:08:34Z #15 2.316 53700K .......... .......... .......... .......... .......... 42% 156M 1s -2024-05-06T17:08:34Z #15 2.317 53750K .......... .......... .......... .......... .......... 42% 144M 1s -2024-05-06T17:08:34Z #15 2.317 53800K .......... .......... .......... .......... .......... 42% 137M 1s -2024-05-06T17:08:34Z #15 2.317 53850K .......... .......... .......... .......... .......... 42% 131M 1s -2024-05-06T17:08:34Z #15 2.317 53900K .......... .......... .......... .......... .......... 42% 151M 1s -2024-05-06T17:08:34Z #15 2.318 53950K .......... .......... .......... .......... .......... 42% 124M 1s -2024-05-06T17:08:34Z #15 2.318 54000K .......... .......... .......... .......... .......... 42% 134M 1s -2024-05-06T17:08:34Z #15 2.319 54050K .......... .......... .......... .......... .......... 42% 110M 1s -2024-05-06T17:08:34Z #15 2.320 54100K .......... .......... .......... .......... .......... 42% 144M 1s -2024-05-06T17:08:34Z #15 2.320 54150K .......... .......... .......... .......... .......... 42% 147M 1s -2024-05-06T17:08:34Z #15 2.320 54200K .......... .......... .......... .......... .......... 42% 116M 1s -2024-05-06T17:08:34Z #15 2.320 54250K .......... .......... .......... .......... .......... 42% 149M 1s -2024-05-06T17:08:34Z #15 2.320 54300K .......... .......... .......... .......... .......... 42% 134M 1s -2024-05-06T17:08:34Z #15 2.321 54350K .......... .......... .......... .......... .......... 42% 144M 1s -2024-05-06T17:08:34Z #15 2.322 54400K .......... .......... .......... .......... .......... 42% 116M 1s -2024-05-06T17:08:34Z #15 2.322 54450K .......... .......... .......... .......... .......... 42% 159M 1s -2024-05-06T17:08:34Z #15 2.322 54500K .......... .......... .......... .......... .......... 42% 153M 1s -2024-05-06T17:08:34Z #15 2.322 54550K .......... .......... .......... .......... .......... 42% 122M 1s -2024-05-06T17:08:34Z #15 2.323 54600K .......... .......... .......... .......... .......... 42% 11.0M 1s -2024-05-06T17:08:34Z #15 2.327 54650K .......... .......... .......... .......... .......... 42% 144M 1s -2024-05-06T17:08:34Z #15 2.327 54700K .......... .......... .......... .......... .......... 42% 137M 1s -2024-05-06T17:08:34Z #15 2.328 54750K .......... .......... .......... .......... .......... 42% 148M 1s -2024-05-06T17:08:34Z #15 2.328 54800K .......... .......... .......... .......... .......... 42% 118M 1s -2024-05-06T17:08:34Z #15 2.328 54850K .......... .......... .......... .......... .......... 42% 154M 1s -2024-05-06T17:08:34Z #15 2.329 54900K .......... .......... .......... .......... .......... 42% 157M 1s -2024-05-06T17:08:34Z #15 2.329 54950K .......... .......... .......... .......... .......... 43% 128M 1s -2024-05-06T17:08:34Z #15 2.329 55000K .......... .......... .......... .......... .......... 43% 139M 1s -2024-05-06T17:08:34Z #15 2.330 55050K .......... .......... .......... .......... .......... 43% 125M 1s -2024-05-06T17:08:34Z #15 2.330 55100K .......... .......... .......... .......... .......... 43% 142M 1s -2024-05-06T17:08:34Z #15 2.331 55150K .......... .......... .......... .......... .......... 43% 136M 1s -2024-05-06T17:08:34Z #15 2.331 55200K .......... .......... .......... .......... .......... 43% 101M 1s -2024-05-06T17:08:34Z #15 2.332 55250K .......... .......... .......... .......... .......... 43% 146M 1s -2024-05-06T17:08:34Z #15 2.332 55300K .......... .......... .......... .......... .......... 43% 143M 1s -2024-05-06T17:08:34Z #15 2.332 55350K .......... .......... .......... .......... .......... 43% 143M 1s -2024-05-06T17:08:34Z #15 2.332 55400K .......... .......... .......... .......... .......... 43% 109M 1s -2024-05-06T17:08:34Z #15 2.333 55450K .......... .......... .......... .......... .......... 43% 148M 1s -2024-05-06T17:08:34Z #15 2.333 55500K .......... .......... .......... .......... .......... 43% 152M 1s -2024-05-06T17:08:34Z #15 2.334 55550K .......... .......... .......... .......... .......... 43% 140M 1s -2024-05-06T17:08:34Z #15 2.334 55600K .......... .......... .......... .......... .......... 43% 121M 1s -2024-05-06T17:08:34Z #15 2.334 55650K .......... .......... .......... .......... .......... 43% 151M 1s -2024-05-06T17:08:34Z #15 2.335 55700K .......... .......... .......... .......... .......... 43% 116M 1s -2024-05-06T17:08:34Z #15 2.335 55750K .......... .......... .......... .......... .......... 43% 134M 1s -2024-05-06T17:08:34Z #15 2.336 55800K .......... .......... .......... .......... .......... 43% 108M 1s -2024-05-06T17:08:34Z #15 2.336 55850K .......... .......... .......... .......... .......... 43% 128M 1s -2024-05-06T17:08:34Z #15 2.336 55900K .......... .......... .......... .......... .......... 43% 156M 1s -2024-05-06T17:08:34Z #15 2.337 55950K .......... .......... .......... .......... .......... 43% 149M 1s -2024-05-06T17:08:34Z #15 2.337 56000K .......... .......... .......... .......... .......... 43% 139M 1s -2024-05-06T17:08:34Z #15 2.337 56050K .......... .......... .......... .......... .......... 43% 132M 1s -2024-05-06T17:08:34Z #15 2.338 56100K .......... .......... .......... .......... .......... 43% 131M 1s -2024-05-06T17:08:34Z #15 2.338 56150K .......... .......... .......... .......... .......... 43% 141M 1s -2024-05-06T17:08:34Z #15 2.338 56200K .......... .......... .......... .......... .......... 44% 122M 1s -2024-05-06T17:08:34Z #15 2.339 56250K .......... .......... .......... .......... .......... 44% 10.9M 1s -2024-05-06T17:08:34Z #15 2.343 56300K .......... .......... .......... .......... .......... 44% 130M 1s -2024-05-06T17:08:34Z #15 2.344 56350K .......... .......... .......... .......... .......... 44% 138M 1s -2024-05-06T17:08:34Z #15 2.344 56400K .......... .......... .......... .......... .......... 44% 136M 1s -2024-05-06T17:08:34Z #15 2.344 56450K .......... .......... .......... .......... .......... 44% 165M 1s -2024-05-06T17:08:34Z #15 2.345 56500K .......... .......... .......... .......... .......... 44% 120M 1s -2024-05-06T17:08:34Z #15 2.345 56550K .......... .......... .......... .......... .......... 44% 158M 1s -2024-05-06T17:08:34Z #15 2.346 56600K .......... .......... .......... .......... .......... 44% 109M 1s -2024-05-06T17:08:34Z #15 2.346 56650K .......... .......... .......... .......... .......... 44% 152M 1s -2024-05-06T17:08:34Z #15 2.346 56700K .......... .......... .......... .......... .......... 44% 141M 1s -2024-05-06T17:08:34Z #15 2.346 56750K .......... .......... .......... .......... .......... 44% 161M 1s -2024-05-06T17:08:34Z #15 2.347 56800K .......... .......... .......... .......... .......... 44% 50.4M 1s -2024-05-06T17:08:34Z #15 2.348 56850K .......... .......... .......... .......... .......... 44% 149M 1s -2024-05-06T17:08:34Z #15 2.348 56900K .......... .......... .......... .......... .......... 44% 150M 1s -2024-05-06T17:08:34Z #15 2.348 56950K .......... .......... .......... .......... .......... 44% 153M 1s -2024-05-06T17:08:34Z #15 2.349 57000K .......... .......... .......... .......... .......... 44% 110M 1s -2024-05-06T17:08:34Z #15 2.349 57050K .......... .......... .......... .......... .......... 44% 147M 1s -2024-05-06T17:08:34Z #15 2.350 57100K .......... .......... .......... .......... .......... 44% 125M 1s -2024-05-06T17:08:34Z #15 2.350 57150K .......... .......... .......... .......... .......... 44% 157M 1s -2024-05-06T17:08:34Z #15 2.350 57200K .......... .......... .......... .......... .......... 44% 119M 1s -2024-05-06T17:08:34Z #15 2.350 57250K .......... .......... .......... .......... .......... 44% 142M 1s -2024-05-06T17:08:34Z #15 2.351 57300K .......... .......... .......... .......... .......... 44% 10.9M 1s -2024-05-06T17:08:34Z #15 2.355 57350K .......... .......... .......... .......... .......... 44% 112M 1s -2024-05-06T17:08:34Z #15 2.356 57400K .......... .......... .......... .......... .......... 44% 97.7M 1s -2024-05-06T17:08:34Z #15 2.357 57450K .......... .......... .......... .......... .......... 44% 122M 1s -2024-05-06T17:08:34Z #15 2.357 57500K .......... .......... .......... .......... .......... 45% 148M 1s -2024-05-06T17:08:34Z #15 2.357 57550K .......... .......... .......... .......... .......... 45% 134M 1s -2024-05-06T17:08:34Z #15 2.357 57600K .......... .......... .......... .......... .......... 45% 93.5M 1s -2024-05-06T17:08:34Z #15 2.358 57650K .......... .......... .......... .......... .......... 45% 118M 1s -2024-05-06T17:08:34Z #15 2.363 57700K .......... .......... .......... .......... .......... 45% 9.68M 1s -2024-05-06T17:08:34Z #15 2.363 57750K .......... .......... .......... .......... .......... 45% 123M 1s -2024-05-06T17:08:34Z #15 2.364 57800K .......... .......... .......... .......... .......... 45% 103M 1s -2024-05-06T17:08:34Z #15 2.364 57850K .......... .......... .......... .......... .......... 45% 130M 1s -2024-05-06T17:08:34Z #15 2.365 57900K .......... .......... .......... .......... .......... 45% 141M 1s -2024-05-06T17:08:34Z #15 2.365 57950K .......... .......... .......... .......... .......... 45% 111M 1s -2024-05-06T17:08:34Z #15 2.365 58000K .......... .......... .......... .......... .......... 45% 115M 1s -2024-05-06T17:08:34Z #15 2.366 58050K .......... .......... .......... .......... .......... 45% 139M 1s -2024-05-06T17:08:34Z #15 2.366 58100K .......... .......... .......... .......... .......... 45% 131M 1s -2024-05-06T17:08:34Z #15 2.367 58150K .......... .......... .......... .......... .......... 45% 130M 1s -2024-05-06T17:08:34Z #15 2.367 58200K .......... .......... .......... .......... .......... 45% 102M 1s -2024-05-06T17:08:34Z #15 2.368 58250K .......... .......... .......... .......... .......... 45% 125M 1s -2024-05-06T17:08:34Z #15 2.368 58300K .......... .......... .......... .......... .......... 45% 110M 1s -2024-05-06T17:08:34Z #15 2.368 58350K .......... .......... .......... .......... .......... 45% 135M 1s -2024-05-06T17:08:34Z #15 2.369 58400K .......... .......... .......... .......... .......... 45% 125M 1s -2024-05-06T17:08:34Z #15 2.369 58450K .......... .......... .......... .......... .......... 45% 137M 1s -2024-05-06T17:08:34Z #15 2.369 58500K .......... .......... .......... .......... .......... 45% 124M 1s -2024-05-06T17:08:34Z #15 2.370 58550K .......... .......... .......... .......... .......... 45% 133M 1s -2024-05-06T17:08:34Z #15 2.370 58600K .......... .......... .......... .......... .......... 45% 107M 1s -2024-05-06T17:08:34Z #15 2.371 58650K .......... .......... .......... .......... .......... 45% 163M 1s -2024-05-06T17:08:34Z #15 2.371 58700K .......... .......... .......... .......... .......... 45% 109M 1s -2024-05-06T17:08:34Z #15 2.371 58750K .......... .......... .......... .......... .......... 46% 128M 1s -2024-05-06T17:08:34Z #15 2.373 58800K .......... .......... .......... .......... .......... 46% 96.9M 1s -2024-05-06T17:08:34Z #15 2.373 58850K .......... .......... .......... .......... .......... 46% 136M 1s -2024-05-06T17:08:34Z #15 2.373 58900K .......... .......... .......... .......... .......... 46% 143M 1s -2024-05-06T17:08:34Z #15 2.373 58950K .......... .......... .......... .......... .......... 46% 133M 1s -2024-05-06T17:08:34Z #15 2.373 59000K .......... .......... .......... .......... .......... 46% 104M 1s -2024-05-06T17:08:34Z #15 2.374 59050K .......... .......... .......... .......... .......... 46% 117M 1s -2024-05-06T17:08:34Z #15 2.375 59100K .......... .......... .......... .......... .......... 46% 121M 1s -2024-05-06T17:08:34Z #15 2.375 59150K .......... .......... .......... .......... .......... 46% 99.0M 1s -2024-05-06T17:08:34Z #15 2.375 59200K .......... .......... .......... .......... .......... 46% 98.0M 1s -2024-05-06T17:08:34Z #15 2.376 59250K .......... .......... .......... .......... .......... 46% 127M 1s -2024-05-06T17:08:34Z #15 2.376 59300K .......... .......... .......... .......... .......... 46% 144M 1s -2024-05-06T17:08:34Z #15 2.377 59350K .......... .......... .......... .......... .......... 46% 129M 1s -2024-05-06T17:08:34Z #15 2.377 59400K .......... .......... .......... .......... .......... 46% 133M 1s -2024-05-06T17:08:34Z #15 2.377 59450K .......... .......... .......... .......... .......... 46% 128M 1s -2024-05-06T17:08:34Z #15 2.377 59500K .......... .......... .......... .......... .......... 46% 148M 1s -2024-05-06T17:08:34Z #15 2.378 59550K .......... .......... .......... .......... .......... 46% 141M 1s -2024-05-06T17:08:34Z #15 2.378 59600K .......... .......... .......... .......... .......... 46% 123M 1s -2024-05-06T17:08:34Z #15 2.378 59650K .......... .......... .......... .......... .......... 46% 133M 1s -2024-05-06T17:08:34Z #15 2.380 59700K .......... .......... .......... .......... .......... 46% 11.1M 1s -2024-05-06T17:08:34Z #15 2.383 59750K .......... .......... .......... .......... .......... 46% 137M 1s -2024-05-06T17:08:34Z #15 2.384 59800K .......... .......... .......... .......... .......... 46% 121M 1s -2024-05-06T17:08:34Z #15 2.384 59850K .......... .......... .......... .......... .......... 46% 130M 1s -2024-05-06T17:08:34Z #15 2.384 59900K .......... .......... .......... .......... .......... 46% 140M 1s -2024-05-06T17:08:34Z #15 2.385 59950K .......... .......... .......... .......... .......... 46% 126M 1s -2024-05-06T17:08:34Z #15 2.385 60000K .......... .......... .......... .......... .......... 46% 134M 1s -2024-05-06T17:08:34Z #15 2.386 60050K .......... .......... .......... .......... .......... 47% 135M 1s -2024-05-06T17:08:34Z #15 2.386 60100K .......... .......... .......... .......... .......... 47% 138M 1s -2024-05-06T17:08:34Z #15 2.386 60150K .......... .......... .......... .......... .......... 47% 141M 1s -2024-05-06T17:08:34Z #15 2.387 60200K .......... .......... .......... .......... .......... 47% 107M 1s -2024-05-06T17:08:34Z #15 2.387 60250K .......... .......... .......... .......... .......... 47% 144M 1s -2024-05-06T17:08:34Z #15 2.388 60300K .......... .......... .......... .......... .......... 47% 133M 1s -2024-05-06T17:08:34Z #15 2.388 60350K .......... .......... .......... .......... .......... 47% 152M 1s -2024-05-06T17:08:34Z #15 2.388 60400K .......... .......... .......... .......... .......... 47% 142M 1s -2024-05-06T17:08:34Z #15 2.389 60450K .......... .......... .......... .......... .......... 47% 120M 1s -2024-05-06T17:08:34Z #15 2.389 60500K .......... .......... .......... .......... .......... 47% 153M 1s -2024-05-06T17:08:34Z #15 2.389 60550K .......... .......... .......... .......... .......... 47% 116M 1s -2024-05-06T17:08:34Z #15 2.390 60600K .......... .......... .......... .......... .......... 47% 135M 1s -2024-05-06T17:08:34Z #15 2.390 60650K .......... .......... .......... .......... .......... 47% 137M 1s -2024-05-06T17:08:34Z #15 2.390 60700K .......... .......... .......... .......... .......... 47% 148M 1s -2024-05-06T17:08:34Z #15 2.391 60750K .......... .......... .......... .......... .......... 47% 113M 1s -2024-05-06T17:08:34Z #15 2.391 60800K .......... .......... .......... .......... .......... 47% 140M 1s -2024-05-06T17:08:34Z #15 2.392 60850K .......... .......... .......... .......... .......... 47% 125M 1s -2024-05-06T17:08:34Z #15 2.392 60900K .......... .......... .......... .......... .......... 47% 164M 1s -2024-05-06T17:08:34Z #15 2.392 60950K .......... .......... .......... .......... .......... 47% 119M 1s -2024-05-06T17:08:34Z #15 2.392 61000K .......... .......... .......... .......... .......... 47% 126M 1s -2024-05-06T17:08:34Z #15 2.393 61050K .......... .......... .......... .......... .......... 47% 120M 1s -2024-05-06T17:08:34Z #15 2.393 61100K .......... .......... .......... .......... .......... 47% 156M 1s -2024-05-06T17:08:34Z #15 2.394 61150K .......... .......... .......... .......... .......... 47% 131M 1s -2024-05-06T17:08:34Z #15 2.394 61200K .......... .......... .......... .......... .......... 47% 123M 1s -2024-05-06T17:08:34Z #15 2.394 61250K .......... .......... .......... .......... .......... 47% 141M 1s -2024-05-06T17:08:34Z #15 2.395 61300K .......... .......... .......... .......... .......... 48% 11.2M 1s -2024-05-06T17:08:34Z #15 2.399 61350K .......... .......... .......... .......... .......... 48% 144M 1s -2024-05-06T17:08:34Z #15 2.399 61400K .......... .......... .......... .......... .......... 48% 118M 1s -2024-05-06T17:08:34Z #15 2.400 61450K .......... .......... .......... .......... .......... 48% 146M 1s -2024-05-06T17:08:34Z #15 2.400 61500K .......... .......... .......... .......... .......... 48% 145M 1s -2024-05-06T17:08:34Z #15 2.401 61550K .......... .......... .......... .......... .......... 48% 136M 1s -2024-05-06T17:08:34Z #15 2.401 61600K .......... .......... .......... .......... .......... 48% 130M 1s -2024-05-06T17:08:34Z #15 2.401 61650K .......... .......... .......... .......... .......... 48% 154M 1s -2024-05-06T17:08:34Z #15 2.402 61700K .......... .......... .......... .......... .......... 48% 155M 1s -2024-05-06T17:08:34Z #15 2.402 61750K .......... .......... .......... .......... .......... 48% 136M 1s -2024-05-06T17:08:34Z #15 2.403 61800K .......... .......... .......... .......... .......... 48% 125M 1s -2024-05-06T17:08:34Z #15 2.403 61850K .......... .......... .......... .......... .......... 48% 120M 1s -2024-05-06T17:08:34Z #15 2.403 61900K .......... .......... .......... .......... .......... 48% 118M 1s -2024-05-06T17:08:34Z #15 2.403 61950K .......... .......... .......... .......... .......... 48% 137M 1s -2024-05-06T17:08:34Z #15 2.404 62000K .......... .......... .......... .......... .......... 48% 112M 1s -2024-05-06T17:08:34Z #15 2.404 62050K .......... .......... .......... .......... .......... 48% 110M 1s -2024-05-06T17:08:34Z #15 2.405 62100K .......... .......... .......... .......... .......... 48% 138M 1s -2024-05-06T17:08:34Z #15 2.405 62150K .......... .......... .......... .......... .......... 48% 144M 1s -2024-05-06T17:08:34Z #15 2.406 62200K .......... .......... .......... .......... .......... 48% 124M 1s -2024-05-06T17:08:34Z #15 2.406 62250K .......... .......... .......... .......... .......... 48% 130M 1s -2024-05-06T17:08:34Z #15 2.406 62300K .......... .......... .......... .......... .......... 48% 153M 1s -2024-05-06T17:08:34Z #15 2.407 62350K .......... .......... .......... .......... .......... 48% 168M 1s -2024-05-06T17:08:34Z #15 2.407 62400K .......... .......... .......... .......... .......... 48% 10.8M 1s -2024-05-06T17:08:34Z #15 2.411 62450K .......... .......... .......... .......... .......... 48% 148M 1s -2024-05-06T17:08:34Z #15 2.412 62500K .......... .......... .......... .......... .......... 48% 144M 1s -2024-05-06T17:08:34Z #15 2.412 62550K .......... .......... .......... .......... .......... 48% 158M 1s -2024-05-06T17:08:34Z #15 2.412 62600K .......... .......... .......... .......... .......... 49% 114M 1s -2024-05-06T17:08:34Z #15 2.413 62650K .......... .......... .......... .......... .......... 49% 137M 1s -2024-05-06T17:08:34Z #15 2.413 62700K .......... .......... .......... .......... .......... 49% 148M 1s -2024-05-06T17:08:34Z #15 2.413 62750K .......... .......... .......... .......... .......... 49% 115M 1s -2024-05-06T17:08:34Z #15 2.414 62800K .......... .......... .......... .......... .......... 49% 106M 1s -2024-05-06T17:08:34Z #15 2.414 62850K .......... .......... .......... .......... .......... 49% 157M 1s -2024-05-06T17:08:34Z #15 2.415 62900K .......... .......... .......... .......... .......... 49% 128M 1s -2024-05-06T17:08:34Z #15 2.418 62950K .......... .......... .......... .......... .......... 49% 33.3M 1s -2024-05-06T17:08:34Z #15 2.418 63000K .......... .......... .......... .......... .......... 49% 54.5M 1s -2024-05-06T17:08:34Z #15 2.418 63050K .......... .......... .......... .......... .......... 49% 147M 1s -2024-05-06T17:08:34Z #15 2.418 63100K .......... .......... .......... .......... .......... 49% 163M 1s -2024-05-06T17:08:34Z #15 2.418 63150K .......... .......... .......... .......... .......... 49% 169M 1s -2024-05-06T17:08:34Z #15 2.418 63200K .......... .......... .......... .......... .......... 49% 122M 1s -2024-05-06T17:08:34Z #15 2.419 63250K .......... .......... .......... .......... .......... 49% 145M 1s -2024-05-06T17:08:34Z #15 2.419 63300K .......... .......... .......... .......... .......... 49% 132M 1s -2024-05-06T17:08:34Z #15 2.419 63350K .......... .......... .......... .......... .......... 49% 140M 1s -2024-05-06T17:08:34Z #15 2.420 63400K .......... .......... .......... .......... .......... 49% 119M 1s -2024-05-06T17:08:34Z #15 2.420 63450K .......... .......... .......... .......... .......... 49% 144M 1s -2024-05-06T17:08:34Z #15 2.421 63500K .......... .......... .......... .......... .......... 49% 136M 1s -2024-05-06T17:08:34Z #15 2.421 63550K .......... .......... .......... .......... .......... 49% 136M 1s -2024-05-06T17:08:34Z #15 2.421 63600K .......... .......... .......... .......... .......... 49% 121M 1s -2024-05-06T17:08:34Z #15 2.422 63650K .......... .......... .......... .......... .......... 49% 148M 1s -2024-05-06T17:08:34Z #15 2.422 63700K .......... .......... .......... .......... .......... 49% 137M 1s -2024-05-06T17:08:34Z #15 2.422 63750K .......... .......... .......... .......... .......... 49% 138M 1s -2024-05-06T17:08:34Z #15 2.423 63800K .......... .......... .......... .......... .......... 49% 10.9M 1s -2024-05-06T17:08:34Z #15 2.427 63850K .......... .......... .......... .......... .......... 50% 128M 1s -2024-05-06T17:08:34Z #15 2.427 63900K .......... .......... .......... .......... .......... 50% 121M 1s -2024-05-06T17:08:34Z #15 2.428 63950K .......... .......... .......... .......... .......... 50% 121M 1s -2024-05-06T17:08:34Z #15 2.429 64000K .......... .......... .......... .......... .......... 50% 133M 1s -2024-05-06T17:08:34Z #15 2.430 64050K .......... .......... .......... .......... .......... 50% 168M 1s -2024-05-06T17:08:34Z #15 2.430 64100K .......... .......... .......... .......... .......... 50% 137M 1s -2024-05-06T17:08:34Z #15 2.430 64150K .......... .......... .......... .......... .......... 50% 120M 1s -2024-05-06T17:08:34Z #15 2.430 64200K .......... .......... .......... .......... .......... 50% 102M 1s -2024-05-06T17:08:34Z #15 2.430 64250K .......... .......... .......... .......... .......... 50% 109M 1s -2024-05-06T17:08:34Z #15 2.432 64300K .......... .......... .......... .......... .......... 50% 112M 1s -2024-05-06T17:08:34Z #15 2.432 64350K .......... .......... .......... .......... .......... 50% 119M 1s -2024-05-06T17:08:34Z #15 2.432 64400K .......... .......... .......... .......... .......... 50% 116M 1s -2024-05-06T17:08:34Z #15 2.432 64450K .......... .......... .......... .......... .......... 50% 118M 1s -2024-05-06T17:08:34Z #15 2.432 64500K .......... .......... .......... .......... .......... 50% 112M 1s -2024-05-06T17:08:34Z #15 2.433 64550K .......... .......... .......... .......... .......... 50% 124M 1s -2024-05-06T17:08:34Z #15 2.433 64600K .......... .......... .......... .......... .......... 50% 93.8M 1s -2024-05-06T17:08:34Z #15 2.434 64650K .......... .......... .......... .......... .......... 50% 127M 1s -2024-05-06T17:08:34Z #15 2.434 64700K .......... .......... .......... .......... .......... 50% 127M 1s -2024-05-06T17:08:34Z #15 2.434 64750K .......... .......... .......... .......... .......... 50% 129M 1s -2024-05-06T17:08:34Z #15 2.435 64800K .......... .......... .......... .......... .......... 50% 85.8M 1s -2024-05-06T17:08:34Z #15 2.435 64850K .......... .......... .......... .......... .......... 50% 122M 1s -2024-05-06T17:08:34Z #15 2.436 64900K .......... .......... .......... .......... .......... 50% 104M 1s -2024-05-06T17:08:34Z #15 2.437 64950K .......... .......... .......... .......... .......... 50% 138M 1s -2024-05-06T17:08:34Z #15 2.437 65000K .......... .......... .......... .......... .......... 50% 104M 1s -2024-05-06T17:08:34Z #15 2.437 65050K .......... .......... .......... .......... .......... 50% 113M 1s -2024-05-06T17:08:34Z #15 2.438 65100K .......... .......... .......... .......... .......... 50% 127M 1s -2024-05-06T17:08:34Z #15 2.438 65150K .......... .......... .......... .......... .......... 51% 129M 1s -2024-05-06T17:08:34Z #15 2.438 65200K .......... .......... .......... .......... .......... 51% 106M 1s -2024-05-06T17:08:34Z #15 2.439 65250K .......... .......... .......... .......... .......... 51% 10.8M 1s -2024-05-06T17:08:34Z #15 2.443 65300K .......... .......... .......... .......... .......... 51% 122M 1s -2024-05-06T17:08:34Z #15 2.444 65350K .......... .......... .......... .......... .......... 51% 110M 1s -2024-05-06T17:08:34Z #15 2.445 65400K .......... .......... .......... .......... .......... 51% 117M 1s -2024-05-06T17:08:34Z #15 2.445 65450K .......... .......... .......... .......... .......... 51% 120M 1s -2024-05-06T17:08:34Z #15 2.446 65500K .......... .......... .......... .......... .......... 51% 121M 1s -2024-05-06T17:08:34Z #15 2.446 65550K .......... .......... .......... .......... .......... 51% 129M 1s -2024-05-06T17:08:34Z #15 2.446 65600K .......... .......... .......... .......... .......... 51% 120M 1s -2024-05-06T17:08:34Z #15 2.446 65650K .......... .......... .......... .......... .......... 51% 127M 1s -2024-05-06T17:08:34Z #15 2.447 65700K .......... .......... .......... .......... .......... 51% 116M 1s -2024-05-06T17:08:34Z #15 2.448 65750K .......... .......... .......... .......... .......... 51% 114M 1s -2024-05-06T17:08:34Z #15 2.448 65800K .......... .......... .......... .......... .......... 51% 103M 1s -2024-05-06T17:08:34Z #15 2.449 65850K .......... .......... .......... .......... .......... 51% 124M 1s -2024-05-06T17:08:34Z #15 2.449 65900K .......... .......... .......... .......... .......... 51% 119M 1s -2024-05-06T17:08:34Z #15 2.449 65950K .......... .......... .......... .......... .......... 51% 127M 1s -2024-05-06T17:08:34Z #15 2.450 66000K .......... .......... .......... .......... .......... 51% 107M 1s -2024-05-06T17:08:34Z #15 2.451 66050K .......... .......... .......... .......... .......... 51% 117M 1s -2024-05-06T17:08:34Z #15 2.451 66100K .......... .......... .......... .......... .......... 51% 123M 1s -2024-05-06T17:08:34Z #15 2.451 66150K .......... .......... .......... .......... .......... 51% 125M 1s -2024-05-06T17:08:34Z #15 2.451 66200K .......... .......... .......... .......... .......... 51% 97.5M 1s -2024-05-06T17:08:34Z #15 2.451 66250K .......... .......... .......... .......... .......... 51% 113M 1s -2024-05-06T17:08:34Z #15 2.452 66300K .......... .......... .......... .......... .......... 51% 130M 1s -2024-05-06T17:08:34Z #15 2.453 66350K .......... .......... .......... .......... .......... 51% 148M 1s -2024-05-06T17:08:34Z #15 2.453 66400K .......... .......... .......... .......... .......... 51% 100M 1s -2024-05-06T17:08:34Z #15 2.453 66450K .......... .......... .......... .......... .......... 52% 126M 1s -2024-05-06T17:08:34Z #15 2.453 66500K .......... .......... .......... .......... .......... 52% 136M 1s -2024-05-06T17:08:34Z #15 2.455 66550K .......... .......... .......... .......... .......... 52% 143M 1s -2024-05-06T17:08:34Z #15 2.455 66600K .......... .......... .......... .......... .......... 52% 95.1M 1s -2024-05-06T17:08:34Z #15 2.455 66650K .......... .......... .......... .......... .......... 52% 134M 1s -2024-05-06T17:08:34Z #15 2.455 66700K .......... .......... .......... .......... .......... 52% 5.76M 1s -2024-05-06T17:08:34Z #15 2.463 66750K .......... .......... .......... .......... .......... 52% 107M 1s -2024-05-06T17:08:34Z #15 2.464 66800K .......... .......... .......... .......... .......... 52% 112M 1s -2024-05-06T17:08:34Z #15 2.465 66850K .......... .......... .......... .......... .......... 52% 125M 1s -2024-05-06T17:08:34Z #15 2.465 66900K .......... .......... .......... .......... .......... 52% 144M 1s -2024-05-06T17:08:34Z #15 2.465 66950K .......... .......... .......... .......... .......... 52% 128M 1s -2024-05-06T17:08:34Z #15 2.465 67000K .......... .......... .......... .......... .......... 52% 109M 1s -2024-05-06T17:08:34Z #15 2.466 67050K .......... .......... .......... .......... .......... 52% 109M 1s -2024-05-06T17:08:34Z #15 2.467 67100K .......... .......... .......... .......... .......... 52% 139M 1s -2024-05-06T17:08:34Z #15 2.468 67150K .......... .......... .......... .......... .......... 52% 129M 1s -2024-05-06T17:08:34Z #15 2.468 67200K .......... .......... .......... .......... .......... 52% 115M 1s -2024-05-06T17:08:34Z #15 2.468 67250K .......... .......... .......... .......... .......... 52% 131M 1s -2024-05-06T17:08:34Z #15 2.468 67300K .......... .......... .......... .......... .......... 52% 126M 1s -2024-05-06T17:08:34Z #15 2.468 67350K .......... .......... .......... .......... .......... 52% 114M 1s -2024-05-06T17:08:34Z #15 2.469 67400K .......... .......... .......... .......... .......... 52% 108M 1s -2024-05-06T17:08:34Z #15 2.469 67450K .......... .......... .......... .......... .......... 52% 143M 1s -2024-05-06T17:08:34Z #15 2.469 67500K .......... .......... .......... .......... .......... 52% 130M 1s -2024-05-06T17:08:34Z #15 2.470 67550K .......... .......... .......... .......... .......... 52% 117M 1s -2024-05-06T17:08:34Z #15 2.470 67600K .......... .......... .......... .......... .......... 52% 108M 1s -2024-05-06T17:08:34Z #15 2.471 67650K .......... .......... .......... .......... .......... 52% 107M 1s -2024-05-06T17:08:34Z #15 2.471 67700K .......... .......... .......... .......... .......... 53% 105M 1s -2024-05-06T17:08:34Z #15 2.472 67750K .......... .......... .......... .......... .......... 53% 112M 1s -2024-05-06T17:08:34Z #15 2.472 67800K .......... .......... .......... .......... .......... 53% 122M 1s -2024-05-06T17:08:34Z #15 2.473 67850K .......... .......... .......... .......... .......... 53% 129M 1s -2024-05-06T17:08:34Z #15 2.473 67900K .......... .......... .......... .......... .......... 53% 113M 1s -2024-05-06T17:08:34Z #15 2.473 67950K .......... .......... .......... .......... .......... 53% 129M 1s -2024-05-06T17:08:34Z #15 2.473 68000K .......... .......... .......... .......... .......... 53% 112M 1s -2024-05-06T17:08:34Z #15 2.474 68050K .......... .......... .......... .......... .......... 53% 139M 1s -2024-05-06T17:08:34Z #15 2.475 68100K .......... .......... .......... .......... .......... 53% 144M 1s -2024-05-06T17:08:34Z #15 2.475 68150K .......... .......... .......... .......... .......... 53% 111M 1s -2024-05-06T17:08:34Z #15 2.475 68200K .......... .......... .......... .......... .......... 53% 105M 1s -2024-05-06T17:08:34Z #15 2.476 68250K .......... .......... .......... .......... .......... 53% 118M 1s -2024-05-06T17:08:34Z #15 2.476 68300K .......... .......... .......... .......... .......... 53% 118M 1s -2024-05-06T17:08:34Z #15 2.476 68350K .......... .......... .......... .......... .......... 53% 108M 1s -2024-05-06T17:08:34Z #15 2.477 68400K .......... .......... .......... .......... .......... 53% 107M 1s -2024-05-06T17:08:34Z #15 2.478 68450K .......... .......... .......... .......... .......... 53% 157M 1s -2024-05-06T17:08:34Z #15 2.478 68500K .......... .......... .......... .......... .......... 53% 160M 1s -2024-05-06T17:08:34Z #15 2.478 68550K .......... .......... .......... .......... .......... 53% 120M 1s -2024-05-06T17:08:34Z #15 2.479 68600K .......... .......... .......... .......... .......... 53% 100M 1s -2024-05-06T17:08:34Z #15 2.479 68650K .......... .......... .......... .......... .......... 53% 5.75M 1s -2024-05-06T17:08:34Z #15 2.487 68700K .......... .......... .......... .......... .......... 53% 117M 1s -2024-05-06T17:08:34Z #15 2.488 68750K .......... .......... .......... .......... .......... 53% 124M 1s -2024-05-06T17:08:34Z #15 2.488 68800K .......... .......... .......... .......... .......... 53% 114M 1s -2024-05-06T17:08:34Z #15 2.488 68850K .......... .......... .......... .......... .......... 53% 108M 1s -2024-05-06T17:08:34Z #15 2.491 68900K .......... .......... .......... .......... .......... 53% 130M 1s -2024-05-06T17:08:34Z #15 2.491 68950K .......... .......... .......... .......... .......... 53% 123M 1s -2024-05-06T17:08:34Z #15 2.491 69000K .......... .......... .......... .......... .......... 54% 120M 1s -2024-05-06T17:08:34Z #15 2.491 69050K .......... .......... .......... .......... .......... 54% 135M 1s -2024-05-06T17:08:34Z #15 2.491 69100K .......... .......... .......... .......... .......... 54% 134M 1s -2024-05-06T17:08:34Z #15 2.491 69150K .......... .......... .......... .......... .......... 54% 110M 1s -2024-05-06T17:08:34Z #15 2.491 69200K .......... .......... .......... .......... .......... 54% 91.8M 1s -2024-05-06T17:08:34Z #15 2.492 69250K .......... .......... .......... .......... .......... 54% 111M 1s -2024-05-06T17:08:34Z #15 2.492 69300K .......... .......... .......... .......... .......... 54% 116M 1s -2024-05-06T17:08:34Z #15 2.493 69350K .......... .......... .......... .......... .......... 54% 125M 1s -2024-05-06T17:08:34Z #15 2.493 69400K .......... .......... .......... .......... .......... 54% 101M 1s -2024-05-06T17:08:34Z #15 2.494 69450K .......... .......... .......... .......... .......... 54% 121M 1s -2024-05-06T17:08:34Z #15 2.494 69500K .......... .......... .......... .......... .......... 54% 112M 1s -2024-05-06T17:08:34Z #15 2.496 69550K .......... .......... .......... .......... .......... 54% 119M 1s -2024-05-06T17:08:34Z #15 2.496 69600K .......... .......... .......... .......... .......... 54% 108M 1s -2024-05-06T17:08:34Z #15 2.496 69650K .......... .......... .......... .......... .......... 54% 122M 1s -2024-05-06T17:08:34Z #15 2.496 69700K .......... .......... .......... .......... .......... 54% 131M 1s -2024-05-06T17:08:34Z #15 2.497 69750K .......... .......... .......... .......... .......... 54% 134M 1s -2024-05-06T17:08:34Z #15 2.499 69800K .......... .......... .......... .......... .......... 54% 106M 1s -2024-05-06T17:08:34Z #15 2.499 69850K .......... .......... .......... .......... .......... 54% 140M 1s -2024-05-06T17:08:34Z #15 2.499 69900K .......... .......... .......... .......... .......... 54% 154M 1s -2024-05-06T17:08:34Z #15 2.499 69950K .......... .......... .......... .......... .......... 54% 128M 1s -2024-05-06T17:08:34Z #15 2.499 70000K .......... .......... .......... .......... .......... 54% 110M 1s -2024-05-06T17:08:34Z #15 2.499 70050K .......... .......... .......... .......... .......... 54% 150M 1s -2024-05-06T17:08:34Z #15 2.499 70100K .......... .......... .......... .......... .......... 54% 10.6M 1s -2024-05-06T17:08:34Z #15 2.503 70150K .......... .......... .......... .......... .......... 54% 116M 1s -2024-05-06T17:08:34Z #15 2.504 70200K .......... .......... .......... .......... .......... 54% 94.4M 1s -2024-05-06T17:08:34Z #15 2.504 70250K .......... .......... .......... .......... .......... 55% 116M 1s -2024-05-06T17:08:34Z #15 2.505 70300K .......... .......... .......... .......... .......... 55% 139M 1s -2024-05-06T17:08:34Z #15 2.505 70350K .......... .......... .......... .......... .......... 55% 126M 1s -2024-05-06T17:08:34Z #15 2.505 70400K .......... .......... .......... .......... .......... 55% 97.8M 1s -2024-05-06T17:08:34Z #15 2.507 70450K .......... .......... .......... .......... .......... 55% 142M 1s -2024-05-06T17:08:34Z #15 2.507 70500K .......... .......... .......... .......... .......... 55% 120M 1s -2024-05-06T17:08:34Z #15 2.507 70550K .......... .......... .......... .......... .......... 55% 145M 1s -2024-05-06T17:08:34Z #15 2.507 70600K .......... .......... .......... .......... .......... 55% 88.3M 1s -2024-05-06T17:08:34Z #15 2.508 70650K .......... .......... .......... .......... .......... 55% 91.5M 1s -2024-05-06T17:08:34Z #15 2.508 70700K .......... .......... .......... .......... .......... 55% 116M 1s -2024-05-06T17:08:34Z #15 2.509 70750K .......... .......... .......... .......... .......... 55% 134M 1s -2024-05-06T17:08:34Z #15 2.509 70800K .......... .......... .......... .......... .......... 55% 115M 1s -2024-05-06T17:08:34Z #15 2.509 70850K .......... .......... .......... .......... .......... 55% 124M 1s -2024-05-06T17:08:34Z #15 2.510 70900K .......... .......... .......... .......... .......... 55% 124M 1s -2024-05-06T17:08:34Z #15 2.510 70950K .......... .......... .......... .......... .......... 55% 106M 1s -2024-05-06T17:08:34Z #15 2.510 71000K .......... .......... .......... .......... .......... 55% 95.0M 1s -2024-05-06T17:08:34Z #15 2.511 71050K .......... .......... .......... .......... .......... 55% 131M 1s -2024-05-06T17:08:34Z #15 2.512 71100K .......... .......... .......... .......... .......... 55% 12.6M 1s -2024-05-06T17:08:34Z #15 2.515 71150K .......... .......... .......... .......... .......... 55% 136M 1s -2024-05-06T17:08:34Z #15 2.516 71200K .......... .......... .......... .......... .......... 55% 89.8M 1s -2024-05-06T17:08:34Z #15 2.516 71250K .......... .......... .......... .......... .......... 55% 123M 1s -2024-05-06T17:08:34Z #15 2.517 71300K .......... .......... .......... .......... .......... 55% 102M 1s -2024-05-06T17:08:34Z #15 2.518 71350K .......... .......... .......... .......... .......... 55% 142M 1s -2024-05-06T17:08:34Z #15 2.518 71400K .......... .......... .......... .......... .......... 55% 105M 1s -2024-05-06T17:08:34Z #15 2.518 71450K .......... .......... .......... .......... .......... 55% 117M 1s -2024-05-06T17:08:34Z #15 2.518 71500K .......... .......... .......... .......... .......... 55% 95.3M 1s -2024-05-06T17:08:34Z #15 2.519 71550K .......... .......... .......... .......... .......... 56% 109M 1s -2024-05-06T17:08:34Z #15 2.519 71600K .......... .......... .......... .......... .......... 56% 96.9M 1s -2024-05-06T17:08:34Z #15 2.520 71650K .......... .......... .......... .......... .......... 56% 113M 1s -2024-05-06T17:08:34Z #15 2.520 71700K .......... .......... .......... .......... .......... 56% 111M 1s -2024-05-06T17:08:34Z #15 2.522 71750K .......... .......... .......... .......... .......... 56% 169M 1s -2024-05-06T17:08:34Z #15 2.522 71800K .......... .......... .......... .......... .......... 56% 115M 1s -2024-05-06T17:08:34Z #15 2.522 71850K .......... .......... .......... .......... .......... 56% 37.9M 1s -2024-05-06T17:08:34Z #15 2.523 71900K .......... .......... .......... .......... .......... 56% 58.0M 1s -2024-05-06T17:08:34Z #15 2.523 71950K .......... .......... .......... .......... .......... 56% 105M 1s -2024-05-06T17:08:34Z #15 2.524 72000K .......... .......... .......... .......... .......... 56% 114M 1s -2024-05-06T17:08:34Z #15 2.524 72050K .......... .......... .......... .......... .......... 56% 110M 1s -2024-05-06T17:08:34Z #15 2.525 72100K .......... .......... .......... .......... .......... 56% 89.1M 1s -2024-05-06T17:08:34Z #15 2.525 72150K .......... .......... .......... .......... .......... 56% 117M 1s -2024-05-06T17:08:34Z #15 2.526 72200K .......... .......... .......... .......... .......... 56% 92.6M 1s -2024-05-06T17:08:34Z #15 2.527 72250K .......... .......... .......... .......... .......... 56% 128M 1s -2024-05-06T17:08:34Z #15 2.527 72300K .......... .......... .......... .......... .......... 56% 11.1M 1s -2024-05-06T17:08:34Z #15 2.531 72350K .......... .......... .......... .......... .......... 56% 94.7M 1s -2024-05-06T17:08:34Z #15 2.532 72400K .......... .......... .......... .......... .......... 56% 100M 1s -2024-05-06T17:08:34Z #15 2.533 72450K .......... .......... .......... .......... .......... 56% 149M 1s -2024-05-06T17:08:34Z #15 2.533 72500K .......... .......... .......... .......... .......... 56% 147M 1s -2024-05-06T17:08:34Z #15 2.533 72550K .......... .......... .......... .......... .......... 56% 146M 1s -2024-05-06T17:08:34Z #15 2.533 72600K .......... .......... .......... .......... .......... 56% 103M 1s -2024-05-06T17:08:34Z #15 2.534 72650K .......... .......... .......... .......... .......... 56% 112M 1s -2024-05-06T17:08:34Z #15 2.534 72700K .......... .......... .......... .......... .......... 56% 122M 1s -2024-05-06T17:08:34Z #15 2.534 72750K .......... .......... .......... .......... .......... 56% 132M 1s -2024-05-06T17:08:34Z #15 2.536 72800K .......... .......... .......... .......... .......... 57% 89.3M 1s -2024-05-06T17:08:34Z #15 2.536 72850K .......... .......... .......... .......... .......... 57% 99.5M 1s -2024-05-06T17:08:34Z #15 2.536 72900K .......... .......... .......... .......... .......... 57% 117M 1s -2024-05-06T17:08:34Z #15 2.537 72950K .......... .......... .......... .......... .......... 57% 138M 1s -2024-05-06T17:08:34Z #15 2.537 73000K .......... .......... .......... .......... .......... 57% 117M 1s -2024-05-06T17:08:34Z #15 2.537 73050K .......... .......... .......... .......... .......... 57% 102M 1s -2024-05-06T17:08:34Z #15 2.537 73100K .......... .......... .......... .......... .......... 57% 117M 1s -2024-05-06T17:08:34Z #15 2.538 73150K .......... .......... .......... .......... .......... 57% 110M 1s -2024-05-06T17:08:34Z #15 2.538 73200K .......... .......... .......... .......... .......... 57% 100M 1s -2024-05-06T17:08:34Z #15 2.539 73250K .......... .......... .......... .......... .......... 57% 10.9M 1s -2024-05-06T17:08:34Z #15 2.543 73300K .......... .......... .......... .......... .......... 57% 121M 1s -2024-05-06T17:08:34Z #15 2.544 73350K .......... .......... .......... .......... .......... 57% 125M 1s -2024-05-06T17:08:34Z #15 2.545 73400K .......... .......... .......... .......... .......... 57% 94.2M 1s -2024-05-06T17:08:34Z #15 2.545 73450K .......... .......... .......... .......... .......... 57% 127M 1s -2024-05-06T17:08:34Z #15 2.545 73500K .......... .......... .......... .......... .......... 57% 115M 1s -2024-05-06T17:08:34Z #15 2.546 73550K .......... .......... .......... .......... .......... 57% 138M 1s -2024-05-06T17:08:34Z #15 2.546 73600K .......... .......... .......... .......... .......... 57% 108M 1s -2024-05-06T17:08:34Z #15 2.546 73650K .......... .......... .......... .......... .......... 57% 131M 1s -2024-05-06T17:08:34Z #15 2.547 73700K .......... .......... .......... .......... .......... 57% 127M 1s -2024-05-06T17:08:34Z #15 2.547 73750K .......... .......... .......... .......... .......... 57% 122M 1s -2024-05-06T17:08:34Z #15 2.547 73800K .......... .......... .......... .......... .......... 57% 87.0M 1s -2024-05-06T17:08:34Z #15 2.548 73850K .......... .......... .......... .......... .......... 57% 112M 1s -2024-05-06T17:08:34Z #15 2.548 73900K .......... .......... .......... .......... .......... 57% 112M 1s -2024-05-06T17:08:34Z #15 2.549 73950K .......... .......... .......... .......... .......... 57% 123M 1s -2024-05-06T17:08:34Z #15 2.549 74000K .......... .......... .......... .......... .......... 57% 98.0M 1s -2024-05-06T17:08:34Z #15 2.550 74050K .......... .......... .......... .......... .......... 57% 114M 1s -2024-05-06T17:08:34Z #15 2.550 74100K .......... .......... .......... .......... .......... 58% 120M 1s -2024-05-06T17:08:34Z #15 2.551 74150K .......... .......... .......... .......... .......... 58% 123M 1s -2024-05-06T17:08:34Z #15 2.553 74200K .......... .......... .......... .......... .......... 58% 17.6M 1s -2024-05-06T17:08:34Z #15 2.554 74250K .......... .......... .......... .......... .......... 58% 117M 1s -2024-05-06T17:08:34Z #15 2.554 74300K .......... .......... .......... .......... .......... 58% 122M 1s -2024-05-06T17:08:34Z #15 2.555 74350K .......... .......... .......... .......... .......... 58% 126M 1s -2024-05-06T17:08:34Z #15 2.555 74400K .......... .......... .......... .......... .......... 58% 104M 1s -2024-05-06T17:08:34Z #15 2.556 74450K .......... .......... .......... .......... .......... 58% 122M 1s -2024-05-06T17:08:34Z #15 2.556 74500K .......... .......... .......... .......... .......... 58% 130M 1s -2024-05-06T17:08:34Z #15 2.556 74550K .......... .......... .......... .......... .......... 58% 121M 1s -2024-05-06T17:08:34Z #15 2.557 74600K .......... .......... .......... .......... .......... 58% 100M 1s -2024-05-06T17:08:34Z #15 2.557 74650K .......... .......... .......... .......... .......... 58% 114M 1s -2024-05-06T17:08:34Z #15 2.559 74700K .......... .......... .......... .......... .......... 58% 121M 1s -2024-05-06T17:08:34Z #15 2.559 74750K .......... .......... .......... .......... .......... 58% 131M 1s -2024-05-06T17:08:34Z #15 2.560 74800K .......... .......... .......... .......... .......... 58% 131M 1s -2024-05-06T17:08:34Z #15 2.560 74850K .......... .......... .......... .......... .......... 58% 157M 1s -2024-05-06T17:08:34Z #15 2.560 74900K .......... .......... .......... .......... .......... 58% 5.78M 1s -2024-05-06T17:08:34Z #15 2.567 74950K .......... .......... .......... .......... .......... 58% 110M 1s -2024-05-06T17:08:34Z #15 2.568 75000K .......... .......... .......... .......... .......... 58% 111M 1s -2024-05-06T17:08:34Z #15 2.568 75050K .......... .......... .......... .......... .......... 58% 116M 1s -2024-05-06T17:08:34Z #15 2.569 75100K .......... .......... .......... .......... .......... 58% 125M 1s -2024-05-06T17:08:34Z #15 2.570 75150K .......... .......... .......... .......... .......... 58% 139M 1s -2024-05-06T17:08:34Z #15 2.570 75200K .......... .......... .......... .......... .......... 58% 124M 1s -2024-05-06T17:08:34Z #15 2.570 75250K .......... .......... .......... .......... .......... 58% 126M 1s -2024-05-06T17:08:34Z #15 2.570 75300K .......... .......... .......... .......... .......... 58% 121M 1s -2024-05-06T17:08:34Z #15 2.571 75350K .......... .......... .......... .......... .......... 59% 116M 1s -2024-05-06T17:08:34Z #15 2.571 75400K .......... .......... .......... .......... .......... 59% 101M 1s -2024-05-06T17:08:34Z #15 2.573 75450K .......... .......... .......... .......... .......... 59% 126M 1s -2024-05-06T17:08:34Z #15 2.573 75500K .......... .......... .......... .......... .......... 59% 147M 1s -2024-05-06T17:08:34Z #15 2.573 75550K .......... .......... .......... .......... .......... 59% 116M 1s -2024-05-06T17:08:34Z #15 2.573 75600K .......... .......... .......... .......... .......... 59% 119M 1s -2024-05-06T17:08:34Z #15 2.574 75650K .......... .......... .......... .......... .......... 59% 132M 1s -2024-05-06T17:08:34Z #15 2.574 75700K .......... .......... .......... .......... .......... 59% 136M 1s -2024-05-06T17:08:34Z #15 2.575 75750K .......... .......... .......... .......... .......... 59% 128M 1s -2024-05-06T17:08:34Z #15 2.575 75800K .......... .......... .......... .......... .......... 59% 107M 1s -2024-05-06T17:08:34Z #15 2.575 75850K .......... .......... .......... .......... .......... 59% 107M 1s -2024-05-06T17:08:34Z #15 2.575 75900K .......... .......... .......... .......... .......... 59% 143M 1s -2024-05-06T17:08:34Z #15 2.575 75950K .......... .......... .......... .......... .......... 59% 126M 1s -2024-05-06T17:08:34Z #15 2.576 76000K .......... .......... .......... .......... .......... 59% 114M 1s -2024-05-06T17:08:34Z #15 2.576 76050K .......... .......... .......... .......... .......... 59% 145M 1s -2024-05-06T17:08:34Z #15 2.578 76100K .......... .......... .......... .......... .......... 59% 146M 1s -2024-05-06T17:08:34Z #15 2.578 76150K .......... .......... .......... .......... .......... 59% 124M 1s -2024-05-06T17:08:34Z #15 2.578 76200K .......... .......... .......... .......... .......... 59% 112M 1s -2024-05-06T17:08:34Z #15 2.578 76250K .......... .......... .......... .......... .......... 59% 141M 1s -2024-05-06T17:08:34Z #15 2.578 76300K .......... .......... .......... .......... .......... 59% 112M 1s -2024-05-06T17:08:34Z #15 2.579 76350K .......... .......... .......... .......... .......... 59% 127M 1s -2024-05-06T17:08:34Z #15 2.579 76400K .......... .......... .......... .......... .......... 59% 105M 1s -2024-05-06T17:08:34Z #15 2.580 76450K .......... .......... .......... .......... .......... 59% 133M 1s -2024-05-06T17:08:34Z #15 2.580 76500K .......... .......... .......... .......... .......... 59% 118M 1s -2024-05-06T17:08:34Z #15 2.581 76550K .......... .......... .......... .......... .......... 59% 123M 1s -2024-05-06T17:08:34Z #15 2.581 76600K .......... .......... .......... .......... .......... 59% 109M 1s -2024-05-06T17:08:34Z #15 2.581 76650K .......... .......... .......... .......... .......... 60% 115M 1s -2024-05-06T17:08:34Z #15 2.582 76700K .......... .......... .......... .......... .......... 60% 131M 1s -2024-05-06T17:08:34Z #15 2.582 76750K .......... .......... .......... .......... .......... 60% 120M 1s -2024-05-06T17:08:34Z #15 2.583 76800K .......... .......... .......... .......... .......... 60% 109M 1s -2024-05-06T17:08:34Z #15 2.584 76850K .......... .......... .......... .......... .......... 60% 11.1M 1s -2024-05-06T17:08:34Z #15 2.587 76900K .......... .......... .......... .......... .......... 60% 100M 1s -2024-05-06T17:08:34Z #15 2.588 76950K .......... .......... .......... .......... .......... 60% 147M 1s -2024-05-06T17:08:34Z #15 2.588 77000K .......... .......... .......... .......... .......... 60% 108M 1s -2024-05-06T17:08:34Z #15 2.589 77050K .......... .......... .......... .......... .......... 60% 127M 1s -2024-05-06T17:08:34Z #15 2.589 77100K .......... .......... .......... .......... .......... 60% 113M 1s -2024-05-06T17:08:34Z #15 2.589 77150K .......... .......... .......... .......... .......... 60% 141M 1s -2024-05-06T17:08:34Z #15 2.590 77200K .......... .......... .......... .......... .......... 60% 111M 1s -2024-05-06T17:08:34Z #15 2.590 77250K .......... .......... .......... .......... .......... 60% 157M 1s -2024-05-06T17:08:34Z #15 2.590 77300K .......... .......... .......... .......... .......... 60% 115M 1s -2024-05-06T17:08:34Z #15 2.591 77350K .......... .......... .......... .......... .......... 60% 114M 1s -2024-05-06T17:08:34Z #15 2.592 77400K .......... .......... .......... .......... .......... 60% 97.4M 1s -2024-05-06T17:08:34Z #15 2.592 77450K .......... .......... .......... .......... .......... 60% 140M 1s -2024-05-06T17:08:34Z #15 2.593 77500K .......... .......... .......... .......... .......... 60% 128M 1s -2024-05-06T17:08:34Z #15 2.593 77550K .......... .......... .......... .......... .......... 60% 142M 1s -2024-05-06T17:08:34Z #15 2.594 77600K .......... .......... .......... .......... .......... 60% 98.6M 1s -2024-05-06T17:08:34Z #15 2.594 77650K .......... .......... .......... .......... .......... 60% 144M 1s -2024-05-06T17:08:34Z #15 2.594 77700K .......... .......... .......... .......... .......... 60% 130M 1s -2024-05-06T17:08:34Z #15 2.594 77750K .......... .......... .......... .......... .......... 60% 109M 1s -2024-05-06T17:08:34Z #15 2.594 77800K .......... .......... .......... .......... .......... 60% 116M 1s -2024-05-06T17:08:34Z #15 2.597 77850K .......... .......... .......... .......... .......... 60% 5.77M 1s -2024-05-06T17:08:34Z #15 2.604 77900K .......... .......... .......... .......... .......... 60% 120M 1s -2024-05-06T17:08:34Z #15 2.605 77950K .......... .......... .......... .......... .......... 61% 122M 1s -2024-05-06T17:08:34Z #15 2.605 78000K .......... .......... .......... .......... .......... 61% 124M 1s -2024-05-06T17:08:34Z #15 2.606 78050K .......... .......... .......... .......... .......... 61% 124M 1s -2024-05-06T17:08:34Z #15 2.606 78100K .......... .......... .......... .......... .......... 61% 109M 1s -2024-05-06T17:08:34Z #15 2.607 78150K .......... .......... .......... .......... .......... 61% 132M 1s -2024-05-06T17:08:34Z #15 2.607 78200K .......... .......... .......... .......... .......... 61% 108M 1s -2024-05-06T17:08:34Z #15 2.607 78250K .......... .......... .......... .......... .......... 61% 149M 1s -2024-05-06T17:08:34Z #15 2.607 78300K .......... .......... .......... .......... .......... 61% 124M 1s -2024-05-06T17:08:34Z #15 2.608 78350K .......... .......... .......... .......... .......... 61% 132M 1s -2024-05-06T17:08:34Z #15 2.608 78400K .......... .......... .......... .......... .......... 61% 108M 1s -2024-05-06T17:08:34Z #15 2.609 78450K .......... .......... .......... .......... .......... 61% 146M 1s -2024-05-06T17:08:34Z #15 2.609 78500K .......... .......... .......... .......... .......... 61% 138M 1s -2024-05-06T17:08:34Z #15 2.610 78550K .......... .......... .......... .......... .......... 61% 118M 1s -2024-05-06T17:08:34Z #15 2.610 78600K .......... .......... .......... .......... .......... 61% 110M 1s -2024-05-06T17:08:34Z #15 2.610 78650K .......... .......... .......... .......... .......... 61% 136M 1s -2024-05-06T17:08:34Z #15 2.610 78700K .......... .......... .......... .......... .......... 61% 112M 1s -2024-05-06T17:08:34Z #15 2.611 78750K .......... .......... .......... .......... .......... 61% 150M 1s -2024-05-06T17:08:34Z #15 2.612 78800K .......... .......... .......... .......... .......... 61% 119M 1s -2024-05-06T17:08:34Z #15 2.612 78850K .......... .......... .......... .......... .......... 61% 126M 1s -2024-05-06T17:08:34Z #15 2.612 78900K .......... .......... .......... .......... .......... 61% 131M 1s -2024-05-06T17:08:34Z #15 2.613 78950K .......... .......... .......... .......... .......... 61% 123M 1s -2024-05-06T17:08:34Z #15 2.613 79000K .......... .......... .......... .......... .......... 61% 110M 1s -2024-05-06T17:08:34Z #15 2.614 79050K .......... .......... .......... .......... .......... 61% 138M 1s -2024-05-06T17:08:34Z #15 2.614 79100K .......... .......... .......... .......... .......... 61% 122M 1s -2024-05-06T17:08:34Z #15 2.614 79150K .......... .......... .......... .......... .......... 61% 121M 1s -2024-05-06T17:08:34Z #15 2.614 79200K .......... .......... .......... .......... .......... 62% 130M 1s -2024-05-06T17:08:34Z #15 2.614 79250K .......... .......... .......... .......... .......... 62% 130M 1s -2024-05-06T17:08:34Z #15 2.614 79300K .......... .......... .......... .......... .......... 62% 139M 1s -2024-05-06T17:08:34Z #15 2.615 79350K .......... .......... .......... .......... .......... 62% 103M 1s -2024-05-06T17:08:34Z #15 2.616 79400K .......... .......... .......... .......... .......... 62% 122M 1s -2024-05-06T17:08:34Z #15 2.616 79450K .......... .......... .......... .......... .......... 62% 131M 1s -2024-05-06T17:08:34Z #15 2.616 79500K .......... .......... .......... .......... .......... 62% 120M 1s -2024-05-06T17:08:34Z #15 2.617 79550K .......... .......... .......... .......... .......... 62% 128M 1s -2024-05-06T17:08:34Z #15 2.618 79600K .......... .......... .......... .......... .......... 62% 117M 1s -2024-05-06T17:08:34Z #15 2.618 79650K .......... .......... .......... .......... .......... 62% 137M 1s -2024-05-06T17:08:34Z #15 2.618 79700K .......... .......... .......... .......... .......... 62% 132M 1s -2024-05-06T17:08:34Z #15 2.619 79750K .......... .......... .......... .......... .......... 62% 143M 1s -2024-05-06T17:08:34Z #15 2.619 79800K .......... .......... .......... .......... .......... 62% 100M 1s -2024-05-06T17:08:34Z #15 2.620 79850K .......... .......... .......... .......... .......... 62% 129M 1s -2024-05-06T17:08:34Z #15 2.620 79900K .......... .......... .......... .......... .......... 62% 10.9M 1s -2024-05-06T17:08:34Z #15 2.624 79950K .......... .......... .......... .......... .......... 62% 126M 1s -2024-05-06T17:08:34Z #15 2.624 80000K .......... .......... .......... .......... .......... 62% 111M 1s -2024-05-06T17:08:34Z #15 2.624 80050K .......... .......... .......... .......... .......... 62% 115M 1s -2024-05-06T17:08:34Z #15 2.625 80100K .......... .......... .......... .......... .......... 62% 126M 1s -2024-05-06T17:08:34Z #15 2.626 80150K .......... .......... .......... .......... .......... 62% 140M 1s -2024-05-06T17:08:34Z #15 2.626 80200K .......... .......... .......... .......... .......... 62% 116M 1s -2024-05-06T17:08:34Z #15 2.626 80250K .......... .......... .......... .......... .......... 62% 118M 1s -2024-05-06T17:08:34Z #15 2.627 80300K .......... .......... .......... .......... .......... 62% 135M 1s -2024-05-06T17:08:34Z #15 2.627 80350K .......... .......... .......... .......... .......... 62% 146M 1s -2024-05-06T17:08:34Z #15 2.627 80400K .......... .......... .......... .......... .......... 62% 91.2M 1s -2024-05-06T17:08:34Z #15 2.628 80450K .......... .......... .......... .......... .......... 62% 137M 1s -2024-05-06T17:08:34Z #15 2.628 80500K .......... .......... .......... .......... .......... 63% 131M 1s -2024-05-06T17:08:34Z #15 2.629 80550K .......... .......... .......... .......... .......... 63% 127M 1s -2024-05-06T17:08:34Z #15 2.629 80600K .......... .......... .......... .......... .......... 63% 118M 1s -2024-05-06T17:08:34Z #15 2.629 80650K .......... .......... .......... .......... .......... 63% 146M 1s -2024-05-06T17:08:34Z #15 2.629 80700K .......... .......... .......... .......... .......... 63% 105M 1s -2024-05-06T17:08:34Z #15 2.630 80750K .......... .......... .......... .......... .......... 63% 144M 1s -2024-05-06T17:08:34Z #15 2.630 80800K .......... .......... .......... .......... .......... 63% 99.1M 1s -2024-05-06T17:08:34Z #15 2.631 80850K .......... .......... .......... .......... .......... 63% 129M 1s -2024-05-06T17:08:34Z #15 2.635 80900K .......... .......... .......... .......... .......... 63% 10.9M 1s -2024-05-06T17:08:34Z #15 2.635 80950K .......... .......... .......... .......... .......... 63% 120M 1s -2024-05-06T17:08:34Z #15 2.636 81000K .......... .......... .......... .......... .......... 63% 107M 1s -2024-05-06T17:08:34Z #15 2.636 81050K .......... .......... .......... .......... .......... 63% 122M 1s -2024-05-06T17:08:34Z #15 2.637 81100K .......... .......... .......... .......... .......... 63% 120M 1s -2024-05-06T17:08:34Z #15 2.638 81150K .......... .......... .......... .......... .......... 63% 177M 1s -2024-05-06T17:08:34Z #15 2.638 81200K .......... .......... .......... .......... .......... 63% 138M 1s -2024-05-06T17:08:34Z #15 2.638 81250K .......... .......... .......... .......... .......... 63% 123M 1s -2024-05-06T17:08:34Z #15 2.638 81300K .......... .......... .......... .......... .......... 63% 114M 1s -2024-05-06T17:08:34Z #15 2.639 81350K .......... .......... .......... .......... .......... 63% 131M 1s -2024-05-06T17:08:34Z #15 2.639 81400K .......... .......... .......... .......... .......... 63% 50.4M 1s -2024-05-06T17:08:34Z #15 2.640 81450K .......... .......... .......... .......... .......... 63% 123M 1s -2024-05-06T17:08:34Z #15 2.642 81500K .......... .......... .......... .......... .......... 63% 61.6M 1s -2024-05-06T17:08:34Z #15 2.642 81550K .......... .......... .......... .......... .......... 63% 115M 1s -2024-05-06T17:08:34Z #15 2.642 81600K .......... .......... .......... .......... .......... 63% 106M 1s -2024-05-06T17:08:34Z #15 2.642 81650K .......... .......... .......... .......... .......... 63% 147M 1s -2024-05-06T17:08:34Z #15 2.642 81700K .......... .......... .......... .......... .......... 63% 116M 1s -2024-05-06T17:08:34Z #15 2.643 81750K .......... .......... .......... .......... .......... 64% 121M 1s -2024-05-06T17:08:34Z #15 2.643 81800K .......... .......... .......... .......... .......... 64% 112M 1s -2024-05-06T17:08:34Z #15 2.644 81850K .......... .......... .......... .......... .......... 64% 119M 1s -2024-05-06T17:08:34Z #15 2.644 81900K .......... .......... .......... .......... .......... 64% 154M 1s -2024-05-06T17:08:34Z #15 2.644 81950K .......... .......... .......... .......... .......... 64% 121M 1s -2024-05-06T17:08:34Z #15 2.645 82000K .......... .......... .......... .......... .......... 64% 111M 1s -2024-05-06T17:08:34Z #15 2.646 82050K .......... .......... .......... .......... .......... 64% 129M 1s -2024-05-06T17:08:34Z #15 2.646 82100K .......... .......... .......... .......... .......... 64% 99.3M 1s -2024-05-06T17:08:34Z #15 2.647 82150K .......... .......... .......... .......... .......... 64% 124M 1s -2024-05-06T17:08:34Z #15 2.647 82200K .......... .......... .......... .......... .......... 64% 117M 1s -2024-05-06T17:08:34Z #15 2.647 82250K .......... .......... .......... .......... .......... 64% 11.9M 1s -2024-05-06T17:08:34Z #15 2.652 82300K .......... .......... .......... .......... .......... 64% 111M 1s -2024-05-06T17:08:34Z #15 2.652 82350K .......... .......... .......... .......... .......... 64% 127M 1s -2024-05-06T17:08:34Z #15 2.652 82400K .......... .......... .......... .......... .......... 64% 107M 1s -2024-05-06T17:08:34Z #15 2.652 82450K .......... .......... .......... .......... .......... 64% 128M 1s -2024-05-06T17:08:34Z #15 2.653 82500K .......... .......... .......... .......... .......... 64% 141M 1s -2024-05-06T17:08:34Z #15 2.653 82550K .......... .......... .......... .......... .......... 64% 144M 1s -2024-05-06T17:08:34Z #15 2.654 82600K .......... .......... .......... .......... .......... 64% 112M 1s -2024-05-06T17:08:34Z #15 2.654 82650K .......... .......... .......... .......... .......... 64% 140M 1s -2024-05-06T17:08:34Z #15 2.654 82700K .......... .......... .......... .......... .......... 64% 151M 1s -2024-05-06T17:08:34Z #15 2.655 82750K .......... .......... .......... .......... .......... 64% 109M 1s -2024-05-06T17:08:34Z #15 2.655 82800K .......... .......... .......... .......... .......... 64% 10.8M 1s -2024-05-06T17:08:34Z #15 2.660 82850K .......... .......... .......... .......... .......... 64% 122M 1s -2024-05-06T17:08:34Z #15 2.660 82900K .......... .......... .......... .......... .......... 64% 116M 1s -2024-05-06T17:08:34Z #15 2.660 82950K .......... .......... .......... .......... .......... 64% 137M 1s -2024-05-06T17:08:34Z #15 2.661 83000K .......... .......... .......... .......... .......... 64% 123M 1s -2024-05-06T17:08:34Z #15 2.661 83050K .......... .......... .......... .......... .......... 65% 117M 1s -2024-05-06T17:08:34Z #15 2.662 83100K .......... .......... .......... .......... .......... 65% 137M 1s -2024-05-06T17:08:34Z #15 2.662 83150K .......... .......... .......... .......... .......... 65% 106M 1s -2024-05-06T17:08:34Z #15 2.663 83200K .......... .......... .......... .......... .......... 65% 111M 1s -2024-05-06T17:08:34Z #15 2.663 83250K .......... .......... .......... .......... .......... 65% 105M 1s -2024-05-06T17:08:34Z #15 2.664 83300K .......... .......... .......... .......... .......... 65% 125M 1s -2024-05-06T17:08:34Z #15 2.664 83350K .......... .......... .......... .......... .......... 65% 117M 1s -2024-05-06T17:08:34Z #15 2.664 83400K .......... .......... .......... .......... .......... 65% 104M 1s -2024-05-06T17:08:34Z #15 2.665 83450K .......... .......... .......... .......... .......... 65% 111M 1s -2024-05-06T17:08:34Z #15 2.665 83500K .......... .......... .......... .......... .......... 65% 119M 1s -2024-05-06T17:08:34Z #15 2.665 83550K .......... .......... .......... .......... .......... 65% 124M 1s -2024-05-06T17:08:34Z #15 2.666 83600K .......... .......... .......... .......... .......... 65% 108M 1s -2024-05-06T17:08:34Z #15 2.667 83650K .......... .......... .......... .......... .......... 65% 141M 1s -2024-05-06T17:08:34Z #15 2.667 83700K .......... .......... .......... .......... .......... 65% 111M 1s -2024-05-06T17:08:34Z #15 2.667 83750K .......... .......... .......... .......... .......... 65% 128M 1s -2024-05-06T17:08:34Z #15 2.668 83800K .......... .......... .......... .......... .......... 65% 103M 1s -2024-05-06T17:08:34Z #15 2.668 83850K .......... .......... .......... .......... .......... 65% 124M 1s -2024-05-06T17:08:34Z #15 2.668 83900K .......... .......... .......... .......... .......... 65% 114M 1s -2024-05-06T17:08:34Z #15 2.669 83950K .......... .......... .......... .......... .......... 65% 127M 1s -2024-05-06T17:08:34Z #15 2.669 84000K .......... .......... .......... .......... .......... 65% 104M 1s -2024-05-06T17:08:34Z #15 2.670 84050K .......... .......... .......... .......... .......... 65% 120M 1s -2024-05-06T17:08:34Z #15 2.670 84100K .......... .......... .......... .......... .......... 65% 117M 1s -2024-05-06T17:08:34Z #15 2.670 84150K .......... .......... .......... .......... .......... 65% 122M 1s -2024-05-06T17:08:34Z #15 2.671 84200K .......... .......... .......... .......... .......... 65% 5.79M 1s -2024-05-06T17:08:34Z #15 2.679 84250K .......... .......... .......... .......... .......... 65% 110M 1s -2024-05-06T17:08:34Z #15 2.680 84300K .......... .......... .......... .......... .......... 66% 106M 1s -2024-05-06T17:08:34Z #15 2.680 84350K .......... .......... .......... .......... .......... 66% 128M 1s -2024-05-06T17:08:34Z #15 2.681 84400K .......... .......... .......... .......... .......... 66% 101M 1s -2024-05-06T17:08:34Z #15 2.682 84450K .......... .......... .......... .......... .......... 66% 111M 1s -2024-05-06T17:08:34Z #15 2.683 84500K .......... .......... .......... .......... .......... 66% 161M 1s -2024-05-06T17:08:34Z #15 2.683 84550K .......... .......... .......... .......... .......... 66% 118M 1s -2024-05-06T17:08:34Z #15 2.683 84600K .......... .......... .......... .......... .......... 66% 124M 1s -2024-05-06T17:08:34Z #15 2.683 84650K .......... .......... .......... .......... .......... 66% 100M 1s -2024-05-06T17:08:34Z #15 2.683 84700K .......... .......... .......... .......... .......... 66% 139M 1s -2024-05-06T17:08:34Z #15 2.684 84750K .......... .......... .......... .......... .......... 66% 108M 1s -2024-05-06T17:08:34Z #15 2.685 84800K .......... .......... .......... .......... .......... 66% 124M 1s -2024-05-06T17:08:34Z #15 2.685 84850K .......... .......... .......... .......... .......... 66% 118M 1s -2024-05-06T17:08:34Z #15 2.685 84900K .......... .......... .......... .......... .......... 66% 144M 1s -2024-05-06T17:08:34Z #15 2.686 84950K .......... .......... .......... .......... .......... 66% 118M 1s -2024-05-06T17:08:34Z #15 2.686 85000K .......... .......... .......... .......... .......... 66% 129M 1s -2024-05-06T17:08:34Z #15 2.687 85050K .......... .......... .......... .......... .......... 66% 115M 1s -2024-05-06T17:08:34Z #15 2.687 85100K .......... .......... .......... .......... .......... 66% 156M 1s -2024-05-06T17:08:34Z #15 2.687 85150K .......... .......... .......... .......... .......... 66% 131M 1s -2024-05-06T17:08:34Z #15 2.687 85200K .......... .......... .......... .......... .......... 66% 109M 1s -2024-05-06T17:08:34Z #15 2.688 85250K .......... .......... .......... .......... .......... 66% 111M 1s -2024-05-06T17:08:34Z #15 2.688 85300K .......... .......... .......... .......... .......... 66% 154M 1s -2024-05-06T17:08:34Z #15 2.688 85350K .......... .......... .......... .......... .......... 66% 127M 1s -2024-05-06T17:08:34Z #15 2.688 85400K .......... .......... .......... .......... .......... 66% 130M 1s -2024-05-06T17:08:34Z #15 2.689 85450K .......... .......... .......... .......... .......... 66% 108M 1s -2024-05-06T17:08:34Z #15 2.689 85500K .......... .......... .......... .......... .......... 66% 147M 1s -2024-05-06T17:08:34Z #15 2.690 85550K .......... .......... .......... .......... .......... 66% 115M 1s -2024-05-06T17:08:34Z #15 2.690 85600K .......... .......... .......... .......... .......... 67% 127M 1s -2024-05-06T17:08:34Z #15 2.691 85650K .......... .......... .......... .......... .......... 67% 119M 1s -2024-05-06T17:08:34Z #15 2.691 85700K .......... .......... .......... .......... .......... 67% 32.3M 1s -2024-05-06T17:08:34Z #15 2.693 85750K .......... .......... .......... .......... .......... 67% 114M 1s -2024-05-06T17:08:34Z #15 2.693 85800K .......... .......... .......... .......... .......... 67% 108M 1s -2024-05-06T17:08:34Z #15 2.694 85850K .......... .......... .......... .......... .......... 67% 133M 1s -2024-05-06T17:08:34Z #15 2.694 85900K .......... .......... .......... .......... .......... 67% 123M 1s -2024-05-06T17:08:34Z #15 2.695 85950K .......... .......... .......... .......... .......... 67% 141M 1s -2024-05-06T17:08:34Z #15 2.695 86000K .......... .......... .......... .......... .......... 67% 96.0M 1s -2024-05-06T17:08:34Z #15 2.696 86050K .......... .......... .......... .......... .......... 67% 130M 1s -2024-05-06T17:08:34Z #15 2.696 86100K .......... .......... .......... .......... .......... 67% 110M 1s -2024-05-06T17:08:34Z #15 2.696 86150K .......... .......... .......... .......... .......... 67% 123M 1s -2024-05-06T17:08:34Z #15 2.698 86200K .......... .......... .......... .......... .......... 67% 110M 1s -2024-05-06T17:08:34Z #15 2.698 86250K .......... .......... .......... .......... .......... 67% 139M 1s -2024-05-06T17:08:34Z #15 2.698 86300K .......... .......... .......... .......... .......... 67% 116M 1s -2024-05-06T17:08:34Z #15 2.698 86350K .......... .......... .......... .......... .......... 67% 135M 1s -2024-05-06T17:08:34Z #15 2.698 86400K .......... .......... .......... .......... .......... 67% 103M 1s -2024-05-06T17:08:34Z #15 2.698 86450K .......... .......... .......... .......... .......... 67% 124M 1s -2024-05-06T17:08:34Z #15 2.698 86500K .......... .......... .......... .......... .......... 67% 126M 1s -2024-05-06T17:08:34Z #15 2.699 86550K .......... .......... .......... .......... .......... 67% 10.9M 1s -2024-05-06T17:08:34Z #15 2.704 86600K .......... .......... .......... .......... .......... 67% 120M 1s -2024-05-06T17:08:34Z #15 2.704 86650K .......... .......... .......... .......... .......... 67% 113M 1s -2024-05-06T17:08:34Z #15 2.704 86700K .......... .......... .......... .......... .......... 67% 131M 1s -2024-05-06T17:08:34Z #15 2.704 86750K .......... .......... .......... .......... .......... 67% 130M 1s -2024-05-06T17:08:34Z #15 2.705 86800K .......... .......... .......... .......... .......... 67% 105M 1s -2024-05-06T17:08:34Z #15 2.706 86850K .......... .......... .......... .......... .......... 68% 128M 1s -2024-05-06T17:08:34Z #15 2.706 86900K .......... .......... .......... .......... .......... 68% 123M 1s -2024-05-06T17:08:34Z #15 2.706 86950K .......... .......... .......... .......... .......... 68% 116M 1s -2024-05-06T17:08:34Z #15 2.706 87000K .......... .......... .......... .......... .......... 68% 94.5M 1s -2024-05-06T17:08:34Z #15 2.707 87050K .......... .......... .......... .......... .......... 68% 29.4M 1s -2024-05-06T17:08:34Z #15 2.709 87100K .......... .......... .......... .......... .......... 68% 123M 1s -2024-05-06T17:08:34Z #15 2.709 87150K .......... .......... .......... .......... .......... 68% 117M 1s -2024-05-06T17:08:34Z #15 2.709 87200K .......... .......... .......... .......... .......... 68% 97.7M 1s -2024-05-06T17:08:34Z #15 2.711 87250K .......... .......... .......... .......... .......... 68% 136M 1s -2024-05-06T17:08:34Z #15 2.711 87300K .......... .......... .......... .......... .......... 68% 120M 1s -2024-05-06T17:08:34Z #15 2.711 87350K .......... .......... .......... .......... .......... 68% 129M 1s -2024-05-06T17:08:34Z #15 2.711 87400K .......... .......... .......... .......... .......... 68% 109M 1s -2024-05-06T17:08:34Z #15 2.711 87450K .......... .......... .......... .......... .......... 68% 115M 1s -2024-05-06T17:08:34Z #15 2.712 87500K .......... .......... .......... .......... .......... 68% 125M 1s -2024-05-06T17:08:34Z #15 2.712 87550K .......... .......... .......... .......... .......... 68% 124M 1s -2024-05-06T17:08:34Z #15 2.713 87600K .......... .......... .......... .......... .......... 68% 122M 1s -2024-05-06T17:08:34Z #15 2.713 87650K .......... .......... .......... .......... .......... 68% 129M 1s -2024-05-06T17:08:34Z #15 2.715 87700K .......... .......... .......... .......... .......... 68% 117M 1s -2024-05-06T17:08:34Z #15 2.715 87750K .......... .......... .......... .......... .......... 68% 134M 1s -2024-05-06T17:08:34Z #15 2.715 87800K .......... .......... .......... .......... .......... 68% 130M 1s -2024-05-06T17:08:34Z #15 2.715 87850K .......... .......... .......... .......... .......... 68% 5.72M 1s -2024-05-06T17:08:34Z #15 2.723 87900K .......... .......... .......... .......... .......... 68% 128M 1s -2024-05-06T17:08:34Z #15 2.724 87950K .......... .......... .......... .......... .......... 68% 125M 1s -2024-05-06T17:08:34Z #15 2.724 88000K .......... .......... .......... .......... .......... 68% 126M 1s -2024-05-06T17:08:34Z #15 2.725 88050K .......... .......... .......... .......... .......... 68% 121M 1s -2024-05-06T17:08:34Z #15 2.725 88100K .......... .......... .......... .......... .......... 68% 124M 1s -2024-05-06T17:08:34Z #15 2.726 88150K .......... .......... .......... .......... .......... 69% 116M 1s -2024-05-06T17:08:34Z #15 2.726 88200K .......... .......... .......... .......... .......... 69% 106M 1s -2024-05-06T17:08:34Z #15 2.727 88250K .......... .......... .......... .......... .......... 69% 161M 1s -2024-05-06T17:08:34Z #15 2.727 88300K .......... .......... .......... .......... .......... 69% 126M 1s -2024-05-06T17:08:34Z #15 2.728 88350K .......... .......... .......... .......... .......... 69% 121M 1s -2024-05-06T17:08:34Z #15 2.729 88400K .......... .......... .......... .......... .......... 69% 106M 1s -2024-05-06T17:08:34Z #15 2.729 88450K .......... .......... .......... .......... .......... 69% 145M 1s -2024-05-06T17:08:34Z #15 2.729 88500K .......... .......... .......... .......... .......... 69% 113M 1s -2024-05-06T17:08:34Z #15 2.730 88550K .......... .......... .......... .......... .......... 69% 129M 1s -2024-05-06T17:08:34Z #15 2.730 88600K .......... .......... .......... .......... .......... 69% 114M 1s -2024-05-06T17:08:34Z #15 2.731 88650K .......... .......... .......... .......... .......... 69% 151M 1s -2024-05-06T17:08:34Z #15 2.731 88700K .......... .......... .......... .......... .......... 69% 118M 1s -2024-05-06T17:08:34Z #15 2.731 88750K .......... .......... .......... .......... .......... 69% 121M 1s -2024-05-06T17:08:34Z #15 2.731 88800K .......... .......... .......... .......... .......... 69% 98.4M 1s -2024-05-06T17:08:35Z #15 2.731 88850K .......... .......... .......... .......... .......... 69% 113M 1s -2024-05-06T17:08:35Z #15 2.732 88900K .......... .......... .......... .......... .......... 69% 127M 1s -2024-05-06T17:08:35Z #15 2.732 88950K .......... .......... .......... .......... .......... 69% 147M 1s -2024-05-06T17:08:35Z #15 2.733 89000K .......... .......... .......... .......... .......... 69% 107M 1s -2024-05-06T17:08:35Z #15 2.733 89050K .......... .......... .......... .......... .......... 69% 132M 1s -2024-05-06T17:08:35Z #15 2.733 89100K .......... .......... .......... .......... .......... 69% 136M 1s -2024-05-06T17:08:35Z #15 2.734 89150K .......... .......... .......... .......... .......... 69% 129M 1s -2024-05-06T17:08:35Z #15 2.734 89200K .......... .......... .......... .......... .......... 69% 99.6M 1s -2024-05-06T17:08:35Z #15 2.736 89250K .......... .......... .......... .......... .......... 69% 128M 1s -2024-05-06T17:08:35Z #15 2.736 89300K .......... .......... .......... .......... .......... 69% 137M 1s -2024-05-06T17:08:35Z #15 2.736 89350K .......... .......... .......... .......... .......... 69% 103M 1s -2024-05-06T17:08:35Z #15 2.737 89400K .......... .......... .......... .......... .......... 69% 126M 1s -2024-05-06T17:08:35Z #15 2.737 89450K .......... .......... .......... .......... .......... 70% 144M 1s -2024-05-06T17:08:35Z #15 2.737 89500K .......... .......... .......... .......... .......... 70% 113M 1s -2024-05-06T17:08:35Z #15 2.737 89550K .......... .......... .......... .......... .......... 70% 128M 1s -2024-05-06T17:08:35Z #15 2.737 89600K .......... .......... .......... .......... .......... 70% 95.0M 1s -2024-05-06T17:08:35Z #15 2.738 89650K .......... .......... .......... .......... .......... 70% 134M 1s -2024-05-06T17:08:35Z #15 2.738 89700K .......... .......... .......... .......... .......... 70% 114M 1s -2024-05-06T17:08:35Z #15 2.740 89750K .......... .......... .......... .......... .......... 70% 127M 1s -2024-05-06T17:08:35Z #15 2.740 89800K .......... .......... .......... .......... .......... 70% 119M 1s -2024-05-06T17:08:35Z #15 2.740 89850K .......... .......... .......... .......... .......... 70% 11.1M 1s -2024-05-06T17:08:35Z #15 2.743 89900K .......... .......... .......... .......... .......... 70% 106M 1s -2024-05-06T17:08:35Z #15 2.744 89950K .......... .......... .......... .......... .......... 70% 121M 1s -2024-05-06T17:08:35Z #15 2.744 90000K .......... .......... .......... .......... .......... 70% 92.2M 1s -2024-05-06T17:08:35Z #15 2.745 90050K .......... .......... .......... .......... .......... 70% 134M 1s -2024-05-06T17:08:35Z #15 2.745 90100K .......... .......... .......... .......... .......... 70% 95.6M 1s -2024-05-06T17:08:35Z #15 2.746 90150K .......... .......... .......... .......... .......... 70% 100M 1s -2024-05-06T17:08:35Z #15 2.747 90200K .......... .......... .......... .......... .......... 70% 116M 1s -2024-05-06T17:08:35Z #15 2.747 90250K .......... .......... .......... .......... .......... 70% 113M 1s -2024-05-06T17:08:35Z #15 2.747 90300K .......... .......... .......... .......... .......... 70% 122M 1s -2024-05-06T17:08:35Z #15 2.747 90350K .......... .......... .......... .......... .......... 70% 99.0M 1s -2024-05-06T17:08:35Z #15 2.748 90400K .......... .......... .......... .......... .......... 70% 121M 1s -2024-05-06T17:08:35Z #15 2.748 90450K .......... .......... .......... .......... .......... 70% 113M 1s -2024-05-06T17:08:35Z #15 2.749 90500K .......... .......... .......... .......... .......... 70% 123M 1s -2024-05-06T17:08:35Z #15 2.750 90550K .......... .......... .......... .......... .......... 70% 106M 1s -2024-05-06T17:08:35Z #15 2.750 90600K .......... .......... .......... .......... .......... 70% 146M 1s -2024-05-06T17:08:35Z #15 2.750 90650K .......... .......... .......... .......... .......... 70% 122M 1s -2024-05-06T17:08:35Z #15 2.752 90700K .......... .......... .......... .......... .......... 71% 106M 1s -2024-05-06T17:08:35Z #15 2.752 90750K .......... .......... .......... .......... .......... 71% 15.2M 1s -2024-05-06T17:08:35Z #15 2.754 90800K .......... .......... .......... .......... .......... 71% 132M 1s -2024-05-06T17:08:35Z #15 2.755 90850K .......... .......... .......... .......... .......... 71% 124M 1s -2024-05-06T17:08:35Z #15 2.755 90900K .......... .......... .......... .......... .......... 71% 151M 1s -2024-05-06T17:08:35Z #15 2.756 90950K .......... .......... .......... .......... .......... 71% 103M 1s -2024-05-06T17:08:35Z #15 2.757 91000K .......... .......... .......... .......... .......... 71% 125M 1s -2024-05-06T17:08:35Z #15 2.757 91050K .......... .......... .......... .......... .......... 71% 110M 1s -2024-05-06T17:08:35Z #15 2.757 91100K .......... .......... .......... .......... .......... 71% 140M 1s -2024-05-06T17:08:35Z #15 2.757 91150K .......... .......... .......... .......... .......... 71% 118M 1s -2024-05-06T17:08:35Z #15 2.757 91200K .......... .......... .......... .......... .......... 71% 123M 1s -2024-05-06T17:08:35Z #15 2.759 91250K .......... .......... .......... .......... .......... 71% 115M 0s -2024-05-06T17:08:35Z #15 2.759 91300K .......... .......... .......... .......... .......... 71% 9.06M 1s -2024-05-06T17:08:35Z #15 2.764 91350K .......... .......... .......... .......... .......... 71% 106M 0s -2024-05-06T17:08:35Z #15 2.764 91400K .......... .......... .......... .......... .......... 71% 133M 0s -2024-05-06T17:08:35Z #15 2.765 91450K .......... .......... .......... .......... .......... 71% 122M 0s -2024-05-06T17:08:35Z #15 2.765 91500K .......... .......... .......... .......... .......... 71% 131M 0s -2024-05-06T17:08:35Z #15 2.765 91550K .......... .......... .......... .......... .......... 71% 109M 0s -2024-05-06T17:08:35Z #15 2.766 91600K .......... .......... .......... .......... .......... 71% 136M 0s -2024-05-06T17:08:35Z #15 2.766 91650K .......... .......... .......... .......... .......... 71% 114M 0s -2024-05-06T17:08:35Z #15 2.766 91700K .......... .......... .......... .......... .......... 71% 114M 0s -2024-05-06T17:08:35Z #15 2.767 91750K .......... .......... .......... .......... .......... 71% 93.6M 0s -2024-05-06T17:08:35Z #15 2.768 91800K .......... .......... .......... .......... .......... 71% 126M 0s -2024-05-06T17:08:35Z #15 2.768 91850K .......... .......... .......... .......... .......... 71% 104M 0s -2024-05-06T17:08:35Z #15 2.768 91900K .......... .......... .......... .......... .......... 71% 110M 0s -2024-05-06T17:08:35Z #15 2.771 91950K .......... .......... .......... .......... .......... 71% 104M 0s -2024-05-06T17:08:35Z #15 2.771 92000K .......... .......... .......... .......... .......... 72% 120M 0s -2024-05-06T17:08:35Z #15 2.771 92050K .......... .......... .......... .......... .......... 72% 112M 0s -2024-05-06T17:08:35Z #15 2.771 92100K .......... .......... .......... .......... .......... 72% 115M 0s -2024-05-06T17:08:35Z #15 2.771 92150K .......... .......... .......... .......... .......... 72% 103M 0s -2024-05-06T17:08:35Z #15 2.771 92200K .......... .......... .......... .......... .......... 72% 127M 0s -2024-05-06T17:08:35Z #15 2.771 92250K .......... .......... .......... .......... .......... 72% 15.3M 0s -2024-05-06T17:08:35Z #15 2.774 92300K .......... .......... .......... .......... .......... 72% 112M 0s -2024-05-06T17:08:35Z #15 2.775 92350K .......... .......... .......... .......... .......... 72% 117M 0s -2024-05-06T17:08:35Z #15 2.775 92400K .......... .......... .......... .......... .......... 72% 111M 0s -2024-05-06T17:08:35Z #15 2.776 92450K .......... .......... .......... .......... .......... 72% 133M 0s -2024-05-06T17:08:35Z #15 2.777 92500K .......... .......... .......... .......... .......... 72% 134M 0s -2024-05-06T17:08:35Z #15 2.777 92550K .......... .......... .......... .......... .......... 72% 95.0M 0s -2024-05-06T17:08:35Z #15 2.777 92600K .......... .......... .......... .......... .......... 72% 119M 0s -2024-05-06T17:08:35Z #15 2.777 92650K .......... .......... .......... .......... .......... 72% 116M 0s -2024-05-06T17:08:35Z #15 2.778 92700K .......... .......... .......... .......... .......... 72% 118M 0s -2024-05-06T17:08:35Z #15 2.778 92750K .......... .......... .......... .......... .......... 72% 112M 0s -2024-05-06T17:08:35Z #15 2.780 92800K .......... .......... .......... .......... .......... 72% 101M 0s -2024-05-06T17:08:35Z #15 2.780 92850K .......... .......... .......... .......... .......... 72% 10.9M 0s -2024-05-06T17:08:35Z #15 2.783 92900K .......... .......... .......... .......... .......... 72% 117M 0s -2024-05-06T17:08:35Z #15 2.784 92950K .......... .......... .......... .......... .......... 72% 101M 0s -2024-05-06T17:08:35Z #15 2.784 93000K .......... .......... .......... .......... .......... 72% 125M 0s -2024-05-06T17:08:35Z #15 2.785 93050K .......... .......... .......... .......... .......... 72% 152M 0s -2024-05-06T17:08:35Z #15 2.786 93100K .......... .......... .......... .......... .......... 72% 115M 0s -2024-05-06T17:08:35Z #15 2.786 93150K .......... .......... .......... .......... .......... 72% 129M 0s -2024-05-06T17:08:35Z #15 2.786 93200K .......... .......... .......... .......... .......... 72% 107M 0s -2024-05-06T17:08:35Z #15 2.786 93250K .......... .......... .......... .......... .......... 73% 144M 0s -2024-05-06T17:08:35Z #15 2.787 93300K .......... .......... .......... .......... .......... 73% 106M 0s -2024-05-06T17:08:35Z #15 2.787 93350K .......... .......... .......... .......... .......... 73% 99.5M 0s -2024-05-06T17:08:35Z #15 2.788 93400K .......... .......... .......... .......... .......... 73% 117M 0s -2024-05-06T17:08:35Z #15 2.788 93450K .......... .......... .......... .......... .......... 73% 120M 0s -2024-05-06T17:08:35Z #15 2.789 93500K .......... .......... .......... .......... .......... 73% 122M 0s -2024-05-06T17:08:35Z #15 2.789 93550K .......... .......... .......... .......... .......... 73% 106M 0s -2024-05-06T17:08:35Z #15 2.790 93600K .......... .......... .......... .......... .......... 73% 113M 0s -2024-05-06T17:08:35Z #15 2.790 93650K .......... .......... .......... .......... .......... 73% 126M 0s -2024-05-06T17:08:35Z #15 2.790 93700K .......... .......... .......... .......... .......... 73% 123M 0s -2024-05-06T17:08:35Z #15 2.791 93750K .......... .......... .......... .......... .......... 73% 97.1M 0s -2024-05-06T17:08:35Z #15 2.791 93800K .......... .......... .......... .......... .......... 73% 39.7M 0s -2024-05-06T17:08:35Z #15 2.792 93850K .......... .......... .......... .......... .......... 73% 117M 0s -2024-05-06T17:08:35Z #15 2.793 93900K .......... .......... .......... .......... .......... 73% 137M 0s -2024-05-06T17:08:35Z #15 2.793 93950K .......... .......... .......... .......... .......... 73% 99.8M 0s -2024-05-06T17:08:35Z #15 2.794 94000K .......... .......... .......... .......... .......... 73% 117M 0s -2024-05-06T17:08:35Z #15 2.795 94050K .......... .......... .......... .......... .......... 73% 127M 0s -2024-05-06T17:08:35Z #15 2.795 94100K .......... .......... .......... .......... .......... 73% 112M 0s -2024-05-06T17:08:35Z #15 2.795 94150K .......... .......... .......... .......... .......... 73% 10.6M 0s -2024-05-06T17:08:35Z #15 2.799 94200K .......... .......... .......... .......... .......... 73% 117M 0s -2024-05-06T17:08:35Z #15 2.800 94250K .......... .......... .......... .......... .......... 73% 116M 0s -2024-05-06T17:08:35Z #15 2.800 94300K .......... .......... .......... .......... .......... 73% 133M 0s -2024-05-06T17:08:35Z #15 2.801 94350K .......... .......... .......... .......... .......... 73% 116M 0s -2024-05-06T17:08:35Z #15 2.801 94400K .......... .......... .......... .......... .......... 73% 120M 0s -2024-05-06T17:08:35Z #15 2.802 94450K .......... .......... .......... .......... .......... 73% 135M 0s -2024-05-06T17:08:35Z #15 2.802 94500K .......... .......... .......... .......... .......... 73% 112M 0s -2024-05-06T17:08:35Z #15 2.802 94550K .......... .......... .......... .......... .......... 74% 107M 0s -2024-05-06T17:08:35Z #15 2.803 94600K .......... .......... .......... .......... .......... 74% 124M 0s -2024-05-06T17:08:35Z #15 2.803 94650K .......... .......... .......... .......... .......... 74% 94.7M 0s -2024-05-06T17:08:35Z #15 2.803 94700K .......... .......... .......... .......... .......... 74% 119M 0s -2024-05-06T17:08:35Z #15 2.804 94750K .......... .......... .......... .......... .......... 74% 129M 0s -2024-05-06T17:08:35Z #15 2.804 94800K .......... .......... .......... .......... .......... 74% 123M 0s -2024-05-06T17:08:35Z #15 2.805 94850K .......... .......... .......... .......... .......... 74% 134M 0s -2024-05-06T17:08:35Z #15 2.805 94900K .......... .......... .......... .......... .......... 74% 114M 0s -2024-05-06T17:08:35Z #15 2.805 94950K .......... .......... .......... .......... .......... 74% 115M 0s -2024-05-06T17:08:35Z #15 2.806 95000K .......... .......... .......... .......... .......... 74% 130M 0s -2024-05-06T17:08:35Z #15 2.806 95050K .......... .......... .......... .......... .......... 74% 120M 0s -2024-05-06T17:08:35Z #15 2.807 95100K .......... .......... .......... .......... .......... 74% 94.4M 0s -2024-05-06T17:08:35Z #15 2.807 95150K .......... .......... .......... .......... .......... 74% 122M 0s -2024-05-06T17:08:35Z #15 2.811 95200K .......... .......... .......... .......... .......... 74% 12.9M 0s -2024-05-06T17:08:35Z #15 2.815 95250K .......... .......... .......... .......... .......... 74% 146M 0s -2024-05-06T17:08:35Z #15 2.815 95300K .......... .......... .......... .......... .......... 74% 99.0M 0s -2024-05-06T17:08:35Z #15 2.815 95350K .......... .......... .......... .......... .......... 74% 116M 0s -2024-05-06T17:08:35Z #15 2.815 95400K .......... .......... .......... .......... .......... 74% 117M 0s -2024-05-06T17:08:35Z #15 2.815 95450K .......... .......... .......... .......... .......... 74% 129M 0s -2024-05-06T17:08:35Z #15 2.815 95500K .......... .......... .......... .......... .......... 74% 93.1M 0s -2024-05-06T17:08:35Z #15 2.815 95550K .......... .......... .......... .......... .......... 74% 128M 0s -2024-05-06T17:08:35Z #15 2.815 95600K .......... .......... .......... .......... .......... 74% 122M 0s -2024-05-06T17:08:35Z #15 2.815 95650K .......... .......... .......... .......... .......... 74% 89.0M 0s -2024-05-06T17:08:35Z #15 2.815 95700K .......... .......... .......... .......... .......... 74% 95.8M 0s -2024-05-06T17:08:35Z #15 2.816 95750K .......... .......... .......... .......... .......... 74% 132M 0s -2024-05-06T17:08:35Z #15 2.816 95800K .......... .......... .......... .......... .......... 75% 137M 0s -2024-05-06T17:08:35Z #15 2.817 95850K .......... .......... .......... .......... .......... 75% 132M 0s -2024-05-06T17:08:35Z #15 2.817 95900K .......... .......... .......... .......... .......... 75% 109M 0s -2024-05-06T17:08:35Z #15 2.817 95950K .......... .......... .......... .......... .......... 75% 128M 0s -2024-05-06T17:08:35Z #15 2.818 96000K .......... .......... .......... .......... .......... 75% 125M 0s -2024-05-06T17:08:35Z #15 2.818 96050K .......... .......... .......... .......... .......... 75% 125M 0s -2024-05-06T17:08:35Z #15 2.823 96100K .......... .......... .......... .......... .......... 75% 112M 0s -2024-05-06T17:08:35Z #15 2.823 96150K .......... .......... .......... .......... .......... 75% 10.6M 0s -2024-05-06T17:08:35Z #15 2.827 96200K .......... .......... .......... .......... .......... 75% 128M 0s -2024-05-06T17:08:35Z #15 2.827 96250K .......... .......... .......... .......... .......... 75% 124M 0s -2024-05-06T17:08:35Z #15 2.827 96300K .......... .......... .......... .......... .......... 75% 96.7M 0s -2024-05-06T17:08:35Z #15 2.827 96350K .......... .......... .......... .......... .......... 75% 132M 0s -2024-05-06T17:08:35Z #15 2.827 96400K .......... .......... .......... .......... .......... 75% 114M 0s -2024-05-06T17:08:35Z #15 2.827 96450K .......... .......... .......... .......... .......... 75% 114M 0s -2024-05-06T17:08:35Z #15 2.827 96500K .......... .......... .......... .......... .......... 75% 102M 0s -2024-05-06T17:08:35Z #15 2.827 96550K .......... .......... .......... .......... .......... 75% 115M 0s -2024-05-06T17:08:35Z #15 2.831 96600K .......... .......... .......... .......... .......... 75% 90.8M 0s -2024-05-06T17:08:35Z #15 2.831 96650K .......... .......... .......... .......... .......... 75% 127M 0s -2024-05-06T17:08:35Z #15 2.831 96700K .......... .......... .......... .......... .......... 75% 93.1M 0s -2024-05-06T17:08:35Z #15 2.831 96750K .......... .......... .......... .......... .......... 75% 134M 0s -2024-05-06T17:08:35Z #15 2.831 96800K .......... .......... .......... .......... .......... 75% 122M 0s -2024-05-06T17:08:35Z #15 2.831 96850K .......... .......... .......... .......... .......... 75% 118M 0s -2024-05-06T17:08:35Z #15 2.831 96900K .......... .......... .......... .......... .......... 75% 117M 0s -2024-05-06T17:08:35Z #15 2.831 96950K .......... .......... .......... .......... .......... 75% 118M 0s -2024-05-06T17:08:35Z #15 2.831 97000K .......... .......... .......... .......... .......... 75% 127M 0s -2024-05-06T17:08:35Z #15 2.831 97050K .......... .......... .......... .......... .......... 75% 10.3M 0s -2024-05-06T17:08:35Z #15 2.836 97100K .......... .......... .......... .......... .......... 76% 113M 0s -2024-05-06T17:08:35Z #15 2.837 97150K .......... .......... .......... .......... .......... 76% 138M 0s -2024-05-06T17:08:35Z #15 2.838 97200K .......... .......... .......... .......... .......... 76% 138M 0s -2024-05-06T17:08:35Z #15 2.838 97250K .......... .......... .......... .......... .......... 76% 122M 0s -2024-05-06T17:08:35Z #15 2.838 97300K .......... .......... .......... .......... .......... 76% 130M 0s -2024-05-06T17:08:35Z #15 2.838 97350K .......... .......... .......... .......... .......... 76% 112M 0s -2024-05-06T17:08:35Z #15 2.839 97400K .......... .......... .......... .......... .......... 76% 111M 0s -2024-05-06T17:08:35Z #15 2.839 97450K .......... .......... .......... .......... .......... 76% 137M 0s -2024-05-06T17:08:35Z #15 2.840 97500K .......... .......... .......... .......... .......... 76% 112M 0s -2024-05-06T17:08:35Z #15 2.840 97550K .......... .......... .......... .......... .......... 76% 129M 0s -2024-05-06T17:08:35Z #15 2.840 97600K .......... .......... .......... .......... .......... 76% 121M 0s -2024-05-06T17:08:35Z #15 2.840 97650K .......... .......... .......... .......... .......... 76% 125M 0s -2024-05-06T17:08:35Z #15 2.841 97700K .......... .......... .......... .......... .......... 76% 113M 0s -2024-05-06T17:08:35Z #15 2.841 97750K .......... .......... .......... .......... .......... 76% 117M 0s -2024-05-06T17:08:35Z #15 2.842 97800K .......... .......... .......... .......... .......... 76% 117M 0s -2024-05-06T17:08:35Z #15 2.842 97850K .......... .......... .......... .......... .......... 76% 135M 0s -2024-05-06T17:08:35Z #15 2.842 97900K .......... .......... .......... .......... .......... 76% 114M 0s -2024-05-06T17:08:35Z #15 2.843 97950K .......... .......... .......... .......... .......... 76% 133M 0s -2024-05-06T17:08:35Z #15 2.843 98000K .......... .......... .......... .......... .......... 76% 10.8M 0s -2024-05-06T17:08:35Z #15 2.847 98050K .......... .......... .......... .......... .......... 76% 119M 0s -2024-05-06T17:08:35Z #15 2.848 98100K .......... .......... .......... .......... .......... 76% 105M 0s -2024-05-06T17:08:35Z #15 2.848 98150K .......... .......... .......... .......... .......... 76% 120M 0s -2024-05-06T17:08:35Z #15 2.848 98200K .......... .......... .......... .......... .......... 76% 131M 0s -2024-05-06T17:08:35Z #15 2.850 98250K .......... .......... .......... .......... .......... 76% 145M 0s -2024-05-06T17:08:35Z #15 2.850 98300K .......... .......... .......... .......... .......... 76% 125M 0s -2024-05-06T17:08:35Z #15 2.850 98350K .......... .......... .......... .......... .......... 77% 102M 0s -2024-05-06T17:08:35Z #15 2.850 98400K .......... .......... .......... .......... .......... 77% 118M 0s -2024-05-06T17:08:35Z #15 2.850 98450K .......... .......... .......... .......... .......... 77% 125M 0s -2024-05-06T17:08:35Z #15 2.851 98500K .......... .......... .......... .......... .......... 77% 102M 0s -2024-05-06T17:08:35Z #15 2.851 98550K .......... .......... .......... .......... .......... 77% 130M 0s -2024-05-06T17:08:35Z #15 2.852 98600K .......... .......... .......... .......... .......... 77% 129M 0s -2024-05-06T17:08:35Z #15 2.852 98650K .......... .......... .......... .......... .......... 77% 116M 0s -2024-05-06T17:08:35Z #15 2.853 98700K .......... .......... .......... .......... .......... 77% 102M 0s -2024-05-06T17:08:35Z #15 2.854 98750K .......... .......... .......... .......... .......... 77% 135M 0s -2024-05-06T17:08:35Z #15 2.854 98800K .......... .......... .......... .......... .......... 77% 143M 0s -2024-05-06T17:08:35Z #15 2.854 98850K .......... .......... .......... .......... .......... 77% 116M 0s -2024-05-06T17:08:35Z #15 2.854 98900K .......... .......... .......... .......... .......... 77% 110M 0s -2024-05-06T17:08:35Z #15 2.854 98950K .......... .......... .......... .......... .......... 77% 122M 0s -2024-05-06T17:08:35Z #15 2.863 99000K .......... .......... .......... .......... .......... 77% 10.8M 0s -2024-05-06T17:08:35Z #15 2.863 99050K .......... .......... .......... .......... .......... 77% 121M 0s -2024-05-06T17:08:35Z #15 2.863 99100K .......... .......... .......... .......... .......... 77% 95.5M 0s -2024-05-06T17:08:35Z #15 2.863 99150K .......... .......... .......... .......... .......... 77% 124M 0s -2024-05-06T17:08:35Z #15 2.863 99200K .......... .......... .......... .......... .......... 77% 104M 0s -2024-05-06T17:08:35Z #15 2.863 99250K .......... .......... .......... .......... .......... 77% 129M 0s -2024-05-06T17:08:35Z #15 2.863 99300K .......... .......... .......... .......... .......... 77% 102M 0s -2024-05-06T17:08:35Z #15 2.863 99350K .......... .......... .......... .......... .......... 77% 125M 0s -2024-05-06T17:08:35Z #15 2.863 99400K .......... .......... .......... .......... .......... 77% 106M 0s -2024-05-06T17:08:35Z #15 2.875 99450K .......... .......... .......... .......... .......... 77% 102M 0s -2024-05-06T17:08:35Z #15 2.875 99500K .......... .......... .......... .......... .......... 77% 111M 0s -2024-05-06T17:08:35Z #15 2.875 99550K .......... .......... .......... .......... .......... 77% 134M 0s -2024-05-06T17:08:35Z #15 2.875 99600K .......... .......... .......... .......... .......... 77% 135M 0s -2024-05-06T17:08:35Z #15 2.875 99650K .......... .......... .......... .......... .......... 78% 151M 0s -2024-05-06T17:08:35Z #15 2.875 99700K .......... .......... .......... .......... .......... 78% 120M 0s -2024-05-06T17:08:35Z #15 2.875 99750K .......... .......... .......... .......... .......... 78% 169M 0s -2024-05-06T17:08:35Z #15 2.875 99800K .......... .......... .......... .......... .......... 78% 129M 0s -2024-05-06T17:08:35Z #15 2.875 99850K .......... .......... .......... .......... .......... 78% 138M 0s -2024-05-06T17:08:35Z #15 2.875 99900K .......... .......... .......... .......... .......... 78% 114M 0s -2024-05-06T17:08:35Z #15 2.875 99950K .......... .......... .......... .......... .......... 78% 120M 0s -2024-05-06T17:08:35Z #15 2.875 100000K .......... .......... .......... .......... .......... 78% 135M 0s -2024-05-06T17:08:35Z #15 2.875 100050K .......... .......... .......... .......... .......... 78% 151M 0s -2024-05-06T17:08:35Z #15 2.875 100100K .......... .......... .......... .......... .......... 78% 123M 0s -2024-05-06T17:08:35Z #15 2.875 100150K .......... .......... .......... .......... .......... 78% 152M 0s -2024-05-06T17:08:35Z #15 2.875 100200K .......... .......... .......... .......... .......... 78% 147M 0s -2024-05-06T17:08:35Z #15 2.875 100250K .......... .......... .......... .......... .......... 78% 124M 0s -2024-05-06T17:08:35Z #15 2.875 100300K .......... .......... .......... .......... .......... 78% 125M 0s -2024-05-06T17:08:35Z #15 2.875 100350K .......... .......... .......... .......... .......... 78% 141M 0s -2024-05-06T17:08:35Z #15 2.875 100400K .......... .......... .......... .......... .......... 78% 156M 0s -2024-05-06T17:08:35Z #15 2.875 100450K .......... .......... .......... .......... .......... 78% 175M 0s -2024-05-06T17:08:35Z #15 2.875 100500K .......... .......... .......... .......... .......... 78% 106M 0s -2024-05-06T17:08:35Z #15 2.875 100550K .......... .......... .......... .......... .......... 78% 137M 0s -2024-05-06T17:08:35Z #15 2.875 100600K .......... .......... .......... .......... .......... 78% 119M 0s -2024-05-06T17:08:35Z #15 2.875 100650K .......... .......... .......... .......... .......... 78% 126M 0s -2024-05-06T17:08:35Z #15 2.875 100700K .......... .......... .......... .......... .......... 78% 93.3M 0s -2024-05-06T17:08:35Z #15 2.875 100750K .......... .......... .......... .......... .......... 78% 121M 0s -2024-05-06T17:08:35Z #15 2.875 100800K .......... .......... .......... .......... .......... 78% 134M 0s -2024-05-06T17:08:35Z #15 2.875 100850K .......... .......... .......... .......... .......... 78% 110M 0s -2024-05-06T17:08:35Z #15 2.875 100900K .......... .......... .......... .......... .......... 78% 104M 0s -2024-05-06T17:08:35Z #15 2.875 100950K .......... .......... .......... .......... .......... 79% 131M 0s -2024-05-06T17:08:35Z #15 2.875 101000K .......... .......... .......... .......... .......... 79% 39.0M 0s -2024-05-06T17:08:35Z #15 2.876 101050K .......... .......... .......... .......... .......... 79% 71.4M 0s -2024-05-06T17:08:35Z #15 2.877 101100K .......... .......... .......... .......... .......... 79% 57.5M 0s -2024-05-06T17:08:35Z #15 2.878 101150K .......... .......... .......... .......... .......... 79% 121M 0s -2024-05-06T17:08:35Z #15 2.878 101200K .......... .......... .......... .......... .......... 79% 124M 0s -2024-05-06T17:08:35Z #15 2.878 101250K .......... .......... .......... .......... .......... 79% 70.2M 0s -2024-05-06T17:08:35Z #15 2.880 101300K .......... .......... .......... .......... .......... 79% 71.8M 0s -2024-05-06T17:08:35Z #15 2.880 101350K .......... .......... .......... .......... .......... 79% 68.8M 0s -2024-05-06T17:08:35Z #15 2.881 101400K .......... .......... .......... .......... .......... 79% 102M 0s -2024-05-06T17:08:35Z #15 2.881 101450K .......... .......... .......... .......... .......... 79% 68.1M 0s -2024-05-06T17:08:35Z #15 2.888 101500K .......... .......... .......... .......... .......... 79% 62.6M 0s -2024-05-06T17:08:35Z #15 2.888 101550K .......... .......... .......... .......... .......... 79% 124M 0s -2024-05-06T17:08:35Z #15 2.888 101600K .......... .......... .......... .......... .......... 79% 110M 0s -2024-05-06T17:08:35Z #15 2.888 101650K .......... .......... .......... .......... .......... 79% 107M 0s -2024-05-06T17:08:35Z #15 2.888 101700K .......... .......... .......... .......... .......... 79% 116M 0s -2024-05-06T17:08:35Z #15 2.888 101750K .......... .......... .......... .......... .......... 79% 127M 0s -2024-05-06T17:08:35Z #15 2.888 101800K .......... .......... .......... .......... .......... 79% 120M 0s -2024-05-06T17:08:35Z #15 2.888 101850K .......... .......... .......... .......... .......... 79% 131M 0s -2024-05-06T17:08:35Z #15 2.888 101900K .......... .......... .......... .......... .......... 79% 95.7M 0s -2024-05-06T17:08:35Z #15 2.888 101950K .......... .......... .......... .......... .......... 79% 116M 0s -2024-05-06T17:08:35Z #15 2.888 102000K .......... .......... .......... .......... .......... 79% 128M 0s -2024-05-06T17:08:35Z #15 2.888 102050K .......... .......... .......... .......... .......... 79% 91.8M 0s -2024-05-06T17:08:35Z #15 2.888 102100K .......... .......... .......... .......... .......... 79% 97.9M 0s -2024-05-06T17:08:35Z #15 2.888 102150K .......... .......... .......... .......... .......... 79% 119M 0s -2024-05-06T17:08:35Z #15 2.889 102200K .......... .......... .......... .......... .......... 80% 106M 0s -2024-05-06T17:08:35Z #15 2.890 102250K .......... .......... .......... .......... .......... 80% 129M 0s -2024-05-06T17:08:35Z #15 2.890 102300K .......... .......... .......... .......... .......... 80% 86.7M 0s -2024-05-06T17:08:35Z #15 2.890 102350K .......... .......... .......... .......... .......... 80% 122M 0s -2024-05-06T17:08:35Z #15 2.891 102400K .......... .......... .......... .......... .......... 80% 114M 0s -2024-05-06T17:08:35Z #15 2.891 102450K .......... .......... .......... .......... .......... 80% 113M 0s -2024-05-06T17:08:35Z #15 2.891 102500K .......... .......... .......... .......... .......... 80% 85.1M 0s -2024-05-06T17:08:35Z #15 2.891 102550K .......... .......... .......... .......... .......... 80% 114M 0s -2024-05-06T17:08:35Z #15 2.892 102600K .......... .......... .......... .......... .......... 80% 104M 0s -2024-05-06T17:08:35Z #15 2.892 102650K .......... .......... .......... .......... .......... 80% 127M 0s -2024-05-06T17:08:35Z #15 2.893 102700K .......... .......... .......... .......... .......... 80% 81.8M 0s -2024-05-06T17:08:35Z #15 2.893 102750K .......... .......... .......... .......... .......... 80% 104M 0s -2024-05-06T17:08:35Z #15 2.894 102800K .......... .......... .......... .......... .......... 80% 108M 0s -2024-05-06T17:08:35Z #15 2.894 102850K .......... .......... .......... .......... .......... 80% 118M 0s -2024-05-06T17:08:35Z #15 2.895 102900K .......... .......... .......... .......... .......... 80% 87.2M 0s -2024-05-06T17:08:35Z #15 2.895 102950K .......... .......... .......... .......... .......... 80% 115M 0s -2024-05-06T17:08:35Z #15 2.896 103000K .......... .......... .......... .......... .......... 80% 108M 0s -2024-05-06T17:08:35Z #15 2.896 103050K .......... .......... .......... .......... .......... 80% 113M 0s -2024-05-06T17:08:35Z #15 2.897 103100K .......... .......... .......... .......... .......... 80% 88.6M 0s -2024-05-06T17:08:35Z #15 2.897 103150K .......... .......... .......... .......... .......... 80% 110M 0s -2024-05-06T17:08:35Z #15 2.898 103200K .......... .......... .......... .......... .......... 80% 111M 0s -2024-05-06T17:08:35Z #15 2.898 103250K .......... .......... .......... .......... .......... 80% 109M 0s -2024-05-06T17:08:35Z #15 2.904 103300K .......... .......... .......... .......... .......... 80% 106M 0s -2024-05-06T17:08:35Z #15 2.904 103350K .......... .......... .......... .......... .......... 80% 126M 0s -2024-05-06T17:08:35Z #15 2.904 103400K .......... .......... .......... .......... .......... 80% 128M 0s -2024-05-06T17:08:35Z #15 2.904 103450K .......... .......... .......... .......... .......... 80% 117M 0s -2024-05-06T17:08:35Z #15 2.904 103500K .......... .......... .......... .......... .......... 81% 71.5M 0s -2024-05-06T17:08:35Z #15 2.904 103550K .......... .......... .......... .......... .......... 81% 96.6M 0s -2024-05-06T17:08:35Z #15 2.904 103600K .......... .......... .......... .......... .......... 81% 100M 0s -2024-05-06T17:08:35Z #15 2.904 103650K .......... .......... .......... .......... .......... 81% 90.3M 0s -2024-05-06T17:08:35Z #15 2.904 103700K .......... .......... .......... .......... .......... 81% 75.9M 0s -2024-05-06T17:08:35Z #15 2.904 103750K .......... .......... .......... .......... .......... 81% 106M 0s -2024-05-06T17:08:35Z #15 2.904 103800K .......... .......... .......... .......... .......... 81% 81.4M 0s -2024-05-06T17:08:35Z #15 2.904 103850K .......... .......... .......... .......... .......... 81% 108M 0s -2024-05-06T17:08:35Z #15 2.904 103900K .......... .......... .......... .......... .......... 81% 86.4M 0s -2024-05-06T17:08:35Z #15 2.905 103950K .......... .......... .......... .......... .......... 81% 113M 0s -2024-05-06T17:08:35Z #15 2.905 104000K .......... .......... .......... .......... .......... 81% 113M 0s -2024-05-06T17:08:35Z #15 2.906 104050K .......... .......... .......... .......... .......... 81% 110M 0s -2024-05-06T17:08:35Z #15 2.906 104100K .......... .......... .......... .......... .......... 81% 97.0M 0s -2024-05-06T17:08:35Z #15 2.907 104150K .......... .......... .......... .......... .......... 81% 99.9M 0s -2024-05-06T17:08:35Z #15 2.911 104200K .......... .......... .......... .......... .......... 81% 162M 0s -2024-05-06T17:08:35Z #15 2.911 104250K .......... .......... .......... .......... .......... 81% 114M 0s -2024-05-06T17:08:35Z #15 2.911 104300K .......... .......... .......... .......... .......... 81% 105M 0s -2024-05-06T17:08:35Z #15 2.911 104350K .......... .......... .......... .......... .......... 81% 122M 0s -2024-05-06T17:08:35Z #15 2.911 104400K .......... .......... .......... .......... .......... 81% 111M 0s -2024-05-06T17:08:35Z #15 2.911 104450K .......... .......... .......... .......... .......... 81% 110M 0s -2024-05-06T17:08:35Z #15 2.911 104500K .......... .......... .......... .......... .......... 81% 103M 0s -2024-05-06T17:08:35Z #15 2.911 104550K .......... .......... .......... .......... .......... 81% 119M 0s -2024-05-06T17:08:35Z #15 2.911 104600K .......... .......... .......... .......... .......... 81% 90.2M 0s -2024-05-06T17:08:35Z #15 2.911 104650K .......... .......... .......... .......... .......... 81% 97.7M 0s -2024-05-06T17:08:35Z #15 2.912 104700K .......... .......... .......... .......... .......... 81% 104M 0s -2024-05-06T17:08:35Z #15 2.912 104750K .......... .......... .......... .......... .......... 82% 101M 0s -2024-05-06T17:08:35Z #15 2.913 104800K .......... .......... .......... .......... .......... 82% 121M 0s -2024-05-06T17:08:35Z #15 2.913 104850K .......... .......... .......... .......... .......... 82% 136M 0s -2024-05-06T17:08:35Z #15 2.913 104900K .......... .......... .......... .......... .......... 82% 98.0M 0s -2024-05-06T17:08:35Z #15 2.914 104950K .......... .......... .......... .......... .......... 82% 120M 0s -2024-05-06T17:08:35Z #15 2.914 105000K .......... .......... .......... .......... .......... 82% 119M 0s -2024-05-06T17:08:35Z #15 2.915 105050K .......... .......... .......... .......... .......... 82% 92.5M 0s -2024-05-06T17:08:35Z #15 2.916 105100K .......... .......... .......... .......... .......... 82% 105M 0s -2024-05-06T17:08:35Z #15 2.917 105150K .......... .......... .......... .......... .......... 82% 146M 0s -2024-05-06T17:08:35Z #15 2.917 105200K .......... .......... .......... .......... .......... 82% 131M 0s -2024-05-06T17:08:35Z #15 2.917 105250K .......... .......... .......... .......... .......... 82% 119M 0s -2024-05-06T17:08:35Z #15 2.917 105300K .......... .......... .......... .......... .......... 82% 111M 0s -2024-05-06T17:08:35Z #15 2.917 105350K .......... .......... .......... .......... .......... 82% 120M 0s -2024-05-06T17:08:35Z #15 2.919 105400K .......... .......... .......... .......... .......... 82% 124M 0s -2024-05-06T17:08:35Z #15 2.919 105450K .......... .......... .......... .......... .......... 82% 108M 0s -2024-05-06T17:08:35Z #15 2.919 105500K .......... .......... .......... .......... .......... 82% 110M 0s -2024-05-06T17:08:35Z #15 2.920 105550K .......... .......... .......... .......... .......... 82% 119M 0s -2024-05-06T17:08:35Z #15 2.921 105600K .......... .......... .......... .......... .......... 82% 108M 0s -2024-05-06T17:08:35Z #15 2.921 105650K .......... .......... .......... .......... .......... 82% 135M 0s -2024-05-06T17:08:35Z #15 2.921 105700K .......... .......... .......... .......... .......... 82% 123M 0s -2024-05-06T17:08:35Z #15 2.921 105750K .......... .......... .......... .......... .......... 82% 131M 0s -2024-05-06T17:08:35Z #15 2.921 105800K .......... .......... .......... .......... .......... 82% 124M 0s -2024-05-06T17:08:35Z #15 2.922 105850K .......... .......... .......... .......... .......... 82% 129M 0s -2024-05-06T17:08:35Z #15 2.922 105900K .......... .......... .......... .......... .......... 82% 90.1M 0s -2024-05-06T17:08:35Z #15 2.923 105950K .......... .......... .......... .......... .......... 82% 117M 0s -2024-05-06T17:08:35Z #15 2.923 106000K .......... .......... .......... .......... .......... 82% 73.3M 0s -2024-05-06T17:08:35Z #15 2.924 106050K .......... .......... .......... .......... .......... 83% 35.8M 0s -2024-05-06T17:08:35Z #15 2.925 106100K .......... .......... .......... .......... .......... 83% 65.8M 0s -2024-05-06T17:08:35Z #15 2.925 106150K .......... .......... .......... .......... .......... 83% 36.6M 0s -2024-05-06T17:08:35Z #15 2.928 106200K .......... .......... .......... .......... .......... 83% 29.4M 0s -2024-05-06T17:08:35Z #15 2.929 106250K .......... .......... .......... .......... .......... 83% 41.1M 0s -2024-05-06T17:08:35Z #15 2.931 106300K .......... .......... .......... .......... .......... 83% 43.8M 0s -2024-05-06T17:08:35Z #15 2.931 106350K .......... .......... .......... .......... .......... 83% 91.3M 0s -2024-05-06T17:08:35Z #15 2.931 106400K .......... .......... .......... .......... .......... 83% 120M 0s -2024-05-06T17:08:35Z #15 2.932 106450K .......... .......... .......... .......... .......... 83% 118M 0s -2024-05-06T17:08:35Z #15 2.932 106500K .......... .......... .......... .......... .......... 83% 106M 0s -2024-05-06T17:08:35Z #15 2.933 106550K .......... .......... .......... .......... .......... 83% 107M 0s -2024-05-06T17:08:35Z #15 2.933 106600K .......... .......... .......... .......... .......... 83% 109M 0s -2024-05-06T17:08:35Z #15 2.933 106650K .......... .......... .......... .......... .......... 83% 94.0M 0s -2024-05-06T17:08:35Z #15 2.934 106700K .......... .......... .......... .......... .......... 83% 90.1M 0s -2024-05-06T17:08:35Z #15 2.935 106750K .......... .......... .......... .......... .......... 83% 112M 0s -2024-05-06T17:08:35Z #15 2.935 106800K .......... .......... .......... .......... .......... 83% 71.3M 0s -2024-05-06T17:08:35Z #15 2.940 106850K .......... .......... .......... .......... .......... 83% 74.0M 0s -2024-05-06T17:08:35Z #15 2.940 106900K .......... .......... .......... .......... .......... 83% 52.8M 0s -2024-05-06T17:08:35Z #15 2.940 106950K .......... .......... .......... .......... .......... 83% 51.8M 0s -2024-05-06T17:08:35Z #15 2.940 107000K .......... .......... .......... .......... .......... 83% 71.4M 0s -2024-05-06T17:08:35Z #15 2.940 107050K .......... .......... .......... .......... .......... 83% 74.9M 0s -2024-05-06T17:08:35Z #15 2.940 107100K .......... .......... .......... .......... .......... 83% 26.0M 0s -2024-05-06T17:08:35Z #15 2.941 107150K .......... .......... .......... .......... .......... 83% 34.1M 0s -2024-05-06T17:08:35Z #15 2.943 107200K .......... .......... .......... .......... .......... 83% 22.1M 0s -2024-05-06T17:08:35Z #15 2.945 107250K .......... .......... .......... .......... .......... 83% 44.6M 0s -2024-05-06T17:08:35Z #15 2.946 107300K .......... .......... .......... .......... .......... 84% 37.0M 0s -2024-05-06T17:08:35Z #15 2.949 107350K .......... .......... .......... .......... .......... 84% 130M 0s -2024-05-06T17:08:35Z #15 2.949 107400K .......... .......... .......... .......... .......... 84% 106M 0s -2024-05-06T17:08:35Z #15 2.949 107450K .......... .......... .......... .......... .......... 84% 112M 0s -2024-05-06T17:08:35Z #15 2.949 107500K .......... .......... .......... .......... .......... 84% 20.5M 0s -2024-05-06T17:08:35Z #15 2.951 107550K .......... .......... .......... .......... .......... 84% 25.8M 0s -2024-05-06T17:08:35Z #15 2.953 107600K .......... .......... .......... .......... .......... 84% 22.1M 0s -2024-05-06T17:08:35Z #15 2.956 107650K .......... .......... .......... .......... .......... 84% 66.2M 0s -2024-05-06T17:08:35Z #15 2.956 107700K .......... .......... .......... .......... .......... 84% 22.2M 0s -2024-05-06T17:08:35Z #15 2.958 107750K .......... .......... .......... .......... .......... 84% 37.8M 0s -2024-05-06T17:08:35Z #15 2.960 107800K .......... .......... .......... .......... .......... 84% 64.4M 0s -2024-05-06T17:08:35Z #15 2.960 107850K .......... .......... .......... .......... .......... 84% 105M 0s -2024-05-06T17:08:35Z #15 2.961 107900K .......... .......... .......... .......... .......... 84% 86.5M 0s -2024-05-06T17:08:35Z #15 2.961 107950K .......... .......... .......... .......... .......... 84% 116M 0s -2024-05-06T17:08:35Z #15 2.962 108000K .......... .......... .......... .......... .......... 84% 106M 0s -2024-05-06T17:08:35Z #15 2.963 108050K .......... .......... .......... .......... .......... 84% 122M 0s -2024-05-06T17:08:35Z #15 2.963 108100K .......... .......... .......... .......... .......... 84% 53.8M 0s -2024-05-06T17:08:35Z #15 2.963 108150K .......... .......... .......... .......... .......... 84% 37.7M 0s -2024-05-06T17:08:35Z #15 2.965 108200K .......... .......... .......... .......... .......... 84% 106M 0s -2024-05-06T17:08:35Z #15 2.965 108250K .......... .......... .......... .......... .......... 84% 112M 0s -2024-05-06T17:08:35Z #15 2.966 108300K .......... .......... .......... .......... .......... 84% 93.0M 0s -2024-05-06T17:08:35Z #15 2.967 108350K .......... .......... .......... .......... .......... 84% 158M 0s -2024-05-06T17:08:35Z #15 2.967 108400K .......... .......... .......... .......... .......... 84% 57.4M 0s -2024-05-06T17:08:35Z #15 2.968 108450K .......... .......... .......... .......... .......... 84% 114M 0s -2024-05-06T17:08:35Z #15 2.968 108500K .......... .......... .......... .......... .......... 84% 65.7M 0s -2024-05-06T17:08:35Z #15 2.969 108550K .......... .......... .......... .......... .......... 84% 114M 0s -2024-05-06T17:08:35Z #15 2.969 108600K .......... .......... .......... .......... .......... 85% 56.7M 0s -2024-05-06T17:08:35Z #15 2.970 108650K .......... .......... .......... .......... .......... 85% 58.4M 0s -2024-05-06T17:08:35Z #15 2.970 108700K .......... .......... .......... .......... .......... 85% 89.1M 0s -2024-05-06T17:08:35Z #15 2.971 108750K .......... .......... .......... .......... .......... 85% 92.4M 0s -2024-05-06T17:08:35Z #15 2.972 108800K .......... .......... .......... .......... .......... 85% 157M 0s -2024-05-06T17:08:35Z #15 2.972 108850K .......... .......... .......... .......... .......... 85% 133M 0s -2024-05-06T17:08:35Z #15 2.972 108900K .......... .......... .......... .......... .......... 85% 92.3M 0s -2024-05-06T17:08:35Z #15 2.973 108950K .......... .......... .......... .......... .......... 85% 81.6M 0s -2024-05-06T17:08:35Z #15 2.973 109000K .......... .......... .......... .......... .......... 85% 74.0M 0s -2024-05-06T17:08:35Z #15 2.974 109050K .......... .......... .......... .......... .......... 85% 80.6M 0s -2024-05-06T17:08:35Z #15 2.979 109100K .......... .......... .......... .......... .......... 85% 60.8M 0s -2024-05-06T17:08:35Z #15 2.979 109150K .......... .......... .......... .......... .......... 85% 78.9M 0s -2024-05-06T17:08:35Z #15 2.979 109200K .......... .......... .......... .......... .......... 85% 57.7M 0s -2024-05-06T17:08:35Z #15 2.979 109250K .......... .......... .......... .......... .......... 85% 77.8M 0s -2024-05-06T17:08:35Z #15 2.979 109300K .......... .......... .......... .......... .......... 85% 96.7M 0s -2024-05-06T17:08:35Z #15 2.979 109350K .......... .......... .......... .......... .......... 85% 118M 0s -2024-05-06T17:08:35Z #15 2.979 109400K .......... .......... .......... .......... .......... 85% 109M 0s -2024-05-06T17:08:35Z #15 2.979 109450K .......... .......... .......... .......... .......... 85% 45.5M 0s -2024-05-06T17:08:35Z #15 2.980 109500K .......... .......... .......... .......... .......... 85% 36.9M 0s -2024-05-06T17:08:35Z #15 2.981 109550K .......... .......... .......... .......... .......... 85% 36.1M 0s -2024-05-06T17:08:35Z #15 2.984 109600K .......... .......... .......... .......... .......... 85% 129M 0s -2024-05-06T17:08:35Z #15 2.984 109650K .......... .......... .......... .......... .......... 85% 114M 0s -2024-05-06T17:08:35Z #15 2.984 109700K .......... .......... .......... .......... .......... 85% 65.2M 0s -2024-05-06T17:08:35Z #15 2.984 109750K .......... .......... .......... .......... .......... 85% 34.7M 0s -2024-05-06T17:08:35Z #15 2.986 109800K .......... .......... .......... .......... .......... 85% 23.9M 0s -2024-05-06T17:08:35Z #15 2.988 109850K .......... .......... .......... .......... .......... 85% 81.5M 0s -2024-05-06T17:08:35Z #15 2.988 109900K .......... .......... .......... .......... .......... 86% 37.7M 0s -2024-05-06T17:08:35Z #15 2.990 109950K .......... .......... .......... .......... .......... 86% 29.8M 0s -2024-05-06T17:08:35Z #15 2.992 110000K .......... .......... .......... .......... .......... 86% 41.3M 0s -2024-05-06T17:08:35Z #15 2.993 110050K .......... .......... .......... .......... .......... 86% 104M 0s -2024-05-06T17:08:35Z #15 2.993 110100K .......... .......... .......... .......... .......... 86% 114M 0s -2024-05-06T17:08:35Z #15 2.993 110150K .......... .......... .......... .......... .......... 86% 34.2M 0s -2024-05-06T17:08:35Z #15 2.995 110200K .......... .......... .......... .......... .......... 86% 25.1M 0s -2024-05-06T17:08:35Z #15 2.997 110250K .......... .......... .......... .......... .......... 86% 74.1M 0s -2024-05-06T17:08:35Z #15 2.997 110300K .......... .......... .......... .......... .......... 86% 38.0M 0s -2024-05-06T17:08:35Z #15 2.999 110350K .......... .......... .......... .......... .......... 86% 116M 0s -2024-05-06T17:08:35Z #15 2.999 110400K .......... .......... .......... .......... .......... 86% 35.8M 0s -2024-05-06T17:08:35Z #15 3.001 110450K .......... .......... .......... .......... .......... 86% 120M 0s -2024-05-06T17:08:35Z #15 3.001 110500K .......... .......... .......... .......... .......... 86% 25.2M 0s -2024-05-06T17:08:35Z #15 3.003 110550K .......... .......... .......... .......... .......... 86% 49.9M 0s -2024-05-06T17:08:35Z #15 3.004 110600K .......... .......... .......... .......... .......... 86% 49.6M 0s -2024-05-06T17:08:35Z #15 3.005 110650K .......... .......... .......... .......... .......... 86% 41.6M 0s -2024-05-06T17:08:35Z #15 3.006 110700K .......... .......... .......... .......... .......... 86% 35.5M 0s -2024-05-06T17:08:35Z #15 3.007 110750K .......... .......... .......... .......... .......... 86% 25.3M 0s -2024-05-06T17:08:35Z #15 3.009 110800K .......... .......... .......... .......... .......... 86% 40.8M 0s -2024-05-06T17:08:35Z #15 3.010 110850K .......... .......... .......... .......... .......... 86% 31.2M 0s -2024-05-06T17:08:35Z #15 3.013 110900K .......... .......... .......... .......... .......... 86% 101M 0s -2024-05-06T17:08:35Z #15 3.013 110950K .......... .......... .......... .......... .......... 86% 51.3M 0s -2024-05-06T17:08:35Z #15 3.014 111000K .......... .......... .......... .......... .......... 86% 16.2M 0s -2024-05-06T17:08:35Z #15 3.017 111050K .......... .......... .......... .......... .......... 86% 47.9M 0s -2024-05-06T17:08:35Z #15 3.017 111100K .......... .......... .......... .......... .......... 86% 31.7M 0s -2024-05-06T17:08:35Z #15 3.020 111150K .......... .......... .......... .......... .......... 87% 51.7M 0s -2024-05-06T17:08:35Z #15 3.020 111200K .......... .......... .......... .......... .......... 87% 25.1M 0s -2024-05-06T17:08:35Z #15 3.022 111250K .......... .......... .......... .......... .......... 87% 40.4M 0s -2024-05-06T17:08:35Z #15 3.024 111300K .......... .......... .......... .......... .......... 87% 77.3M 0s -2024-05-06T17:08:35Z #15 3.024 111350K .......... .......... .......... .......... .......... 87% 26.3M 0s -2024-05-06T17:08:35Z #15 3.026 111400K .......... .......... .......... .......... .......... 87% 53.3M 0s -2024-05-06T17:08:35Z #15 3.027 111450K .......... .......... .......... .......... .......... 87% 48.3M 0s -2024-05-06T17:08:35Z #15 3.028 111500K .......... .......... .......... .......... .......... 87% 32.1M 0s -2024-05-06T17:08:35Z #15 3.029 111550K .......... .......... .......... .......... .......... 87% 55.6M 0s -2024-05-06T17:08:35Z #15 3.030 111600K .......... .......... .......... .......... .......... 87% 32.1M 0s -2024-05-06T17:08:35Z #15 3.032 111650K .......... .......... .......... .......... .......... 87% 41.4M 0s -2024-05-06T17:08:35Z #15 3.033 111700K .......... .......... .......... .......... .......... 87% 36.4M 0s -2024-05-06T17:08:35Z #15 3.034 111750K .......... .......... .......... .......... .......... 87% 30.7M 0s -2024-05-06T17:08:35Z #15 3.036 111800K .......... .......... .......... .......... .......... 87% 39.9M 0s -2024-05-06T17:08:35Z #15 3.037 111850K .......... .......... .......... .......... .......... 87% 50.9M 0s -2024-05-06T17:08:35Z #15 3.038 111900K .......... .......... .......... .......... .......... 87% 101M 0s -2024-05-06T17:08:35Z #15 3.038 111950K .......... .......... .......... .......... .......... 87% 106M 0s -2024-05-06T17:08:35Z #15 3.039 112000K .......... .......... .......... .......... .......... 87% 85.4M 0s -2024-05-06T17:08:35Z #15 3.039 112050K .......... .......... .......... .......... .......... 87% 64.6M 0s -2024-05-06T17:08:35Z #15 3.040 112100K .......... .......... .......... .......... .......... 87% 60.5M 0s -2024-05-06T17:08:35Z #15 3.041 112150K .......... .......... .......... .......... .......... 87% 36.9M 0s -2024-05-06T17:08:35Z #15 3.042 112200K .......... .......... .......... .......... .......... 87% 28.7M 0s -2024-05-06T17:08:35Z #15 3.044 112250K .......... .......... .......... .......... .......... 87% 61.0M 0s -2024-05-06T17:08:35Z #15 3.045 112300K .......... .......... .......... .......... .......... 87% 44.6M 0s -2024-05-06T17:08:35Z #15 3.046 112350K .......... .......... .......... .......... .......... 87% 47.5M 0s -2024-05-06T17:08:35Z #15 3.047 112400K .......... .......... .......... .......... .......... 87% 52.2M 0s -2024-05-06T17:08:35Z #15 3.048 112450K .......... .......... .......... .......... .......... 88% 82.3M 0s -2024-05-06T17:08:35Z #15 3.048 112500K .......... .......... .......... .......... .......... 88% 44.3M 0s -2024-05-06T17:08:35Z #15 3.050 112550K .......... .......... .......... .......... .......... 88% 52.0M 0s -2024-05-06T17:08:35Z #15 3.050 112600K .......... .......... .......... .......... .......... 88% 29.1M 0s -2024-05-06T17:08:35Z #15 3.052 112650K .......... .......... .......... .......... .......... 88% 40.0M 0s -2024-05-06T17:08:35Z #15 3.054 112700K .......... .......... .......... .......... .......... 88% 43.0M 0s -2024-05-06T17:08:35Z #15 3.055 112750K .......... .......... .......... .......... .......... 88% 57.4M 0s -2024-05-06T17:08:35Z #15 3.056 112800K .......... .......... .......... .......... .......... 88% 65.8M 0s -2024-05-06T17:08:35Z #15 3.056 112850K .......... .......... .......... .......... .......... 88% 36.7M 0s -2024-05-06T17:08:35Z #15 3.057 112900K .......... .......... .......... .......... .......... 88% 68.4M 0s -2024-05-06T17:08:35Z #15 3.058 112950K .......... .......... .......... .......... .......... 88% 74.6M 0s -2024-05-06T17:08:35Z #15 3.059 113000K .......... .......... .......... .......... .......... 88% 74.2M 0s -2024-05-06T17:08:35Z #15 3.059 113050K .......... .......... .......... .......... .......... 88% 66.7M 0s -2024-05-06T17:08:35Z #15 3.060 113100K .......... .......... .......... .......... .......... 88% 58.0M 0s -2024-05-06T17:08:35Z #15 3.063 113150K .......... .......... .......... .......... .......... 88% 110M 0s -2024-05-06T17:08:35Z #15 3.063 113200K .......... .......... .......... .......... .......... 88% 148M 0s -2024-05-06T17:08:35Z #15 3.063 113250K .......... .......... .......... .......... .......... 88% 125M 0s -2024-05-06T17:08:35Z #15 3.063 113300K .......... .......... .......... .......... .......... 88% 98.3M 0s -2024-05-06T17:08:35Z #15 3.063 113350K .......... .......... .......... .......... .......... 88% 111M 0s -2024-05-06T17:08:35Z #15 3.063 113400K .......... .......... .......... .......... .......... 88% 76.9M 0s -2024-05-06T17:08:35Z #15 3.064 113450K .......... .......... .......... .......... .......... 88% 63.3M 0s -2024-05-06T17:08:35Z #15 3.064 113500K .......... .......... .......... .......... .......... 88% 61.3M 0s -2024-05-06T17:08:35Z #15 3.065 113550K .......... .......... .......... .......... .......... 88% 70.7M 0s -2024-05-06T17:08:35Z #15 3.071 113600K .......... .......... .......... .......... .......... 88% 110M 0s -2024-05-06T17:08:35Z #15 3.071 113650K .......... .......... .......... .......... .......... 88% 127M 0s -2024-05-06T17:08:35Z #15 3.071 113700K .......... .......... .......... .......... .......... 89% 104M 0s -2024-05-06T17:08:35Z #15 3.071 113750K .......... .......... .......... .......... .......... 89% 106M 0s -2024-05-06T17:08:35Z #15 3.071 113800K .......... .......... .......... .......... .......... 89% 128M 0s -2024-05-06T17:08:35Z #15 3.071 113850K .......... .......... .......... .......... .......... 89% 107M 0s -2024-05-06T17:08:35Z #15 3.071 113900K .......... .......... .......... .......... .......... 89% 95.6M 0s -2024-05-06T17:08:35Z #15 3.071 113950K .......... .......... .......... .......... .......... 89% 112M 0s -2024-05-06T17:08:35Z #15 3.071 114000K .......... .......... .......... .......... .......... 89% 119M 0s -2024-05-06T17:08:35Z #15 3.071 114050K .......... .......... .......... .......... .......... 89% 155M 0s -2024-05-06T17:08:35Z #15 3.071 114100K .......... .......... .......... .......... .......... 89% 93.7M 0s -2024-05-06T17:08:35Z #15 3.071 114150K .......... .......... .......... .......... .......... 89% 124M 0s -2024-05-06T17:08:35Z #15 3.071 114200K .......... .......... .......... .......... .......... 89% 107M 0s -2024-05-06T17:08:35Z #15 3.072 114250K .......... .......... .......... .......... .......... 89% 109M 0s -2024-05-06T17:08:35Z #15 3.072 114300K .......... .......... .......... .......... .......... 89% 88.8M 0s -2024-05-06T17:08:35Z #15 3.072 114350K .......... .......... .......... .......... .......... 89% 107M 0s -2024-05-06T17:08:35Z #15 3.073 114400K .......... .......... .......... .......... .......... 89% 114M 0s -2024-05-06T17:08:35Z #15 3.073 114450K .......... .......... .......... .......... .......... 89% 110M 0s -2024-05-06T17:08:35Z #15 3.074 114500K .......... .......... .......... .......... .......... 89% 115M 0s -2024-05-06T17:08:35Z #15 3.074 114550K .......... .......... .......... .......... .......... 89% 113M 0s -2024-05-06T17:08:35Z #15 3.075 114600K .......... .......... .......... .......... .......... 89% 104M 0s -2024-05-06T17:08:35Z #15 3.075 114650K .......... .......... .......... .......... .......... 89% 119M 0s -2024-05-06T17:08:35Z #15 3.076 114700K .......... .......... .......... .......... .......... 89% 89.9M 0s -2024-05-06T17:08:35Z #15 3.076 114750K .......... .......... .......... .......... .......... 89% 108M 0s -2024-05-06T17:08:35Z #15 3.077 114800K .......... .......... .......... .......... .......... 89% 107M 0s -2024-05-06T17:08:35Z #15 3.078 114850K .......... .......... .......... .......... .......... 89% 144M 0s -2024-05-06T17:08:35Z #15 3.078 114900K .......... .......... .......... .......... .......... 89% 124M 0s -2024-05-06T17:08:35Z #15 3.078 114950K .......... .......... .......... .......... .......... 89% 113M 0s -2024-05-06T17:08:35Z #15 3.079 115000K .......... .......... .......... .......... .......... 90% 128M 0s -2024-05-06T17:08:35Z #15 3.079 115050K .......... .......... .......... .......... .......... 90% 158M 0s -2024-05-06T17:08:35Z #15 3.079 115100K .......... .......... .......... .......... .......... 90% 85.0M 0s -2024-05-06T17:08:35Z #15 3.079 115150K .......... .......... .......... .......... .......... 90% 100M 0s -2024-05-06T17:08:35Z #15 3.080 115200K .......... .......... .......... .......... .......... 90% 112M 0s -2024-05-06T17:08:35Z #15 3.080 115250K .......... .......... .......... .......... .......... 90% 130M 0s -2024-05-06T17:08:35Z #15 3.081 115300K .......... .......... .......... .......... .......... 90% 99.2M 0s -2024-05-06T17:08:35Z #15 3.081 115350K .......... .......... .......... .......... .......... 90% 109M 0s -2024-05-06T17:08:35Z #15 3.084 115400K .......... .......... .......... .......... .......... 90% 134M 0s -2024-05-06T17:08:35Z #15 3.084 115450K .......... .......... .......... .......... .......... 90% 181M 0s -2024-05-06T17:08:35Z #15 3.084 115500K .......... .......... .......... .......... .......... 90% 130M 0s -2024-05-06T17:08:35Z #15 3.084 115550K .......... .......... .......... .......... .......... 90% 140M 0s -2024-05-06T17:08:35Z #15 3.084 115600K .......... .......... .......... .......... .......... 90% 148M 0s -2024-05-06T17:08:35Z #15 3.084 115650K .......... .......... .......... .......... .......... 90% 133M 0s -2024-05-06T17:08:35Z #15 3.084 115700K .......... .......... .......... .......... .......... 90% 132M 0s -2024-05-06T17:08:35Z #15 3.084 115750K .......... .......... .......... .......... .......... 90% 109M 0s -2024-05-06T17:08:35Z #15 3.085 115800K .......... .......... .......... .......... .......... 90% 109M 0s -2024-05-06T17:08:35Z #15 3.085 115850K .......... .......... .......... .......... .......... 90% 115M 0s -2024-05-06T17:08:35Z #15 3.086 115900K .......... .......... .......... .......... .......... 90% 86.2M 0s -2024-05-06T17:08:35Z #15 3.086 115950K .......... .......... .......... .......... .......... 90% 106M 0s -2024-05-06T17:08:35Z #15 3.086 116000K .......... .......... .......... .......... .......... 90% 114M 0s -2024-05-06T17:08:35Z #15 3.087 116050K .......... .......... .......... .......... .......... 90% 10.7M 0s -2024-05-06T17:08:35Z #15 3.092 116100K .......... .......... .......... .......... .......... 90% 98.2M 0s -2024-05-06T17:08:35Z #15 3.092 116150K .......... .......... .......... .......... .......... 90% 123M 0s -2024-05-06T17:08:35Z #15 3.092 116200K .......... .......... .......... .......... .......... 90% 120M 0s -2024-05-06T17:08:35Z #15 3.093 116250K .......... .......... .......... .......... .......... 91% 131M 0s -2024-05-06T17:08:35Z #15 3.093 116300K .......... .......... .......... .......... .......... 91% 93.1M 0s -2024-05-06T17:08:35Z #15 3.094 116350K .......... .......... .......... .......... .......... 91% 111M 0s -2024-05-06T17:08:35Z #15 3.096 116400K .......... .......... .......... .......... .......... 91% 128M 0s -2024-05-06T17:08:35Z #15 3.096 116450K .......... .......... .......... .......... .......... 91% 169M 0s -2024-05-06T17:08:35Z #15 3.096 116500K .......... .......... .......... .......... .......... 91% 11.0M 0s -2024-05-06T17:08:35Z #15 3.099 116550K .......... .......... .......... .......... .......... 91% 125M 0s -2024-05-06T17:08:35Z #15 3.099 116600K .......... .......... .......... .......... .......... 91% 112M 0s -2024-05-06T17:08:35Z #15 3.100 116650K .......... .......... .......... .......... .......... 91% 129M 0s -2024-05-06T17:08:35Z #15 3.100 116700K .......... .......... .......... .......... .......... 91% 90.3M 0s -2024-05-06T17:08:35Z #15 3.101 116750K .......... .......... .......... .......... .......... 91% 126M 0s -2024-05-06T17:08:35Z #15 3.101 116800K .......... .......... .......... .......... .......... 91% 140M 0s -2024-05-06T17:08:35Z #15 3.102 116850K .......... .......... .......... .......... .......... 91% 116M 0s -2024-05-06T17:08:35Z #15 3.103 116900K .......... .......... .......... .......... .......... 91% 107M 0s -2024-05-06T17:08:35Z #15 3.103 116950K .......... .......... .......... .......... .......... 91% 117M 0s -2024-05-06T17:08:35Z #15 3.103 117000K .......... .......... .......... .......... .......... 91% 105M 0s -2024-05-06T17:08:35Z #15 3.104 117050K .......... .......... .......... .......... .......... 91% 108M 0s -2024-05-06T17:08:35Z #15 3.104 117100K .......... .......... .......... .......... .......... 91% 107M 0s -2024-05-06T17:08:35Z #15 3.105 117150K .......... .......... .......... .......... .......... 91% 124M 0s -2024-05-06T17:08:35Z #15 3.105 117200K .......... .......... .......... .......... .......... 91% 133M 0s -2024-05-06T17:08:35Z #15 3.105 117250K .......... .......... .......... .......... .......... 91% 121M 0s -2024-05-06T17:08:35Z #15 3.106 117300K .......... .......... .......... .......... .......... 91% 107M 0s -2024-05-06T17:08:35Z #15 3.106 117350K .......... .......... .......... .......... .......... 91% 125M 0s -2024-05-06T17:08:35Z #15 3.107 117400K .......... .......... .......... .......... .......... 91% 124M 0s -2024-05-06T17:08:35Z #15 3.107 117450K .......... .......... .......... .......... .......... 91% 10.8M 0s -2024-05-06T17:08:35Z #15 3.116 117500K .......... .......... .......... .......... .......... 91% 129M 0s -2024-05-06T17:08:35Z #15 3.116 117550K .......... .......... .......... .......... .......... 92% 168M 0s -2024-05-06T17:08:35Z #15 3.116 117600K .......... .......... .......... .......... .......... 92% 163M 0s -2024-05-06T17:08:35Z #15 3.116 117650K .......... .......... .......... .......... .......... 92% 96.0M 0s -2024-05-06T17:08:35Z #15 3.116 117700K .......... .......... .......... .......... .......... 92% 77.3M 0s -2024-05-06T17:08:35Z #15 3.116 117750K .......... .......... .......... .......... .......... 92% 116M 0s -2024-05-06T17:08:35Z #15 3.116 117800K .......... .......... .......... .......... .......... 92% 152M 0s -2024-05-06T17:08:35Z #15 3.116 117850K .......... .......... .......... .......... .......... 92% 161M 0s -2024-05-06T17:08:35Z #15 3.116 117900K .......... .......... .......... .......... .......... 92% 107M 0s -2024-05-06T17:08:35Z #15 3.116 117950K .......... .......... .......... .......... .......... 92% 16.3M 0s -2024-05-06T17:08:35Z #15 3.119 118000K .......... .......... .......... .......... .......... 92% 60.4M 0s -2024-05-06T17:08:35Z #15 3.119 118050K .......... .......... .......... .......... .......... 92% 62.3M 0s -2024-05-06T17:08:35Z #15 3.120 118100K .......... .......... .......... .......... .......... 92% 28.8M 0s -2024-05-06T17:08:35Z #15 3.123 118150K .......... .......... .......... .......... .......... 92% 53.2M 0s -2024-05-06T17:08:35Z #15 3.123 118200K .......... .......... .......... .......... .......... 92% 39.5M 0s -2024-05-06T17:08:35Z #15 3.124 118250K .......... .......... .......... .......... .......... 92% 69.0M 0s -2024-05-06T17:08:35Z #15 3.124 118300K .......... .......... .......... .......... .......... 92% 70.4M 0s -2024-05-06T17:08:35Z #15 3.127 118350K .......... .......... .......... .......... .......... 92% 37.8M 0s -2024-05-06T17:08:35Z #15 3.127 118400K .......... .......... .......... .......... .......... 92% 52.2M 0s -2024-05-06T17:08:35Z #15 3.129 118450K .......... .......... .......... .......... .......... 92% 13.7M 0s -2024-05-06T17:08:35Z #15 3.135 118500K .......... .......... .......... .......... .......... 92% 36.5M 0s -2024-05-06T17:08:35Z #15 3.135 118550K .......... .......... .......... .......... .......... 92% 32.9M 0s -2024-05-06T17:08:35Z #15 3.135 118600K .......... .......... .......... .......... .......... 92% 38.8M 0s -2024-05-06T17:08:35Z #15 3.135 118650K .......... .......... .......... .......... .......... 92% 66.9M 0s -2024-05-06T17:08:35Z #15 3.136 118700K .......... .......... .......... .......... .......... 92% 129M 0s -2024-05-06T17:08:35Z #15 3.136 118750K .......... .......... .......... .......... .......... 92% 25.8M 0s -2024-05-06T17:08:35Z #15 3.139 118800K .......... .......... .......... .......... .......... 93% 56.9M 0s -2024-05-06T17:08:35Z #15 3.139 118850K .......... .......... .......... .......... .......... 93% 53.4M 0s -2024-05-06T17:08:35Z #15 3.139 118900K .......... .......... .......... .......... .......... 93% 48.9M 0s -2024-05-06T17:08:35Z #15 3.143 118950K .......... .......... .......... .......... .......... 93% 141M 0s -2024-05-06T17:08:35Z #15 3.143 119000K .......... .......... .......... .......... .......... 93% 31.2M 0s -2024-05-06T17:08:35Z #15 3.143 119050K .......... .......... .......... .......... .......... 93% 28.1M 0s -2024-05-06T17:08:35Z #15 3.144 119100K .......... .......... .......... .......... .......... 93% 42.7M 0s -2024-05-06T17:08:35Z #15 3.145 119150K .......... .......... .......... .......... .......... 93% 45.3M 0s -2024-05-06T17:08:35Z #15 3.147 119200K .......... .......... .......... .......... .......... 93% 112M 0s -2024-05-06T17:08:35Z #15 3.147 119250K .......... .......... .......... .......... .......... 93% 37.7M 0s -2024-05-06T17:08:35Z #15 3.148 119300K .......... .......... .......... .......... .......... 93% 25.4M 0s -2024-05-06T17:08:35Z #15 3.150 119350K .......... .......... .......... .......... .......... 93% 165M 0s -2024-05-06T17:08:35Z #15 3.150 119400K .......... .......... .......... .......... .......... 93% 22.5M 0s -2024-05-06T17:08:35Z #15 3.155 119450K .......... .......... .......... .......... .......... 93% 29.3M 0s -2024-05-06T17:08:35Z #15 3.155 119500K .......... .......... .......... .......... .......... 93% 44.6M 0s -2024-05-06T17:08:35Z #15 3.156 119550K .......... .......... .......... .......... .......... 93% 158M 0s -2024-05-06T17:08:35Z #15 3.156 119600K .......... .......... .......... .......... .......... 93% 37.7M 0s -2024-05-06T17:08:35Z #15 3.157 119650K .......... .......... .......... .......... .......... 93% 23.5M 0s -2024-05-06T17:08:35Z #15 3.159 119700K .......... .......... .......... .......... .......... 93% 26.3M 0s -2024-05-06T17:08:35Z #15 3.163 119750K .......... .......... .......... .......... .......... 93% 28.0M 0s -2024-05-06T17:08:35Z #15 3.163 119800K .......... .......... .......... .......... .......... 93% 55.3M 0s -2024-05-06T17:08:35Z #15 3.164 119850K .......... .......... .......... .......... .......... 93% 150M 0s -2024-05-06T17:08:35Z #15 3.164 119900K .......... .......... .......... .......... .......... 93% 46.3M 0s -2024-05-06T17:08:35Z #15 3.165 119950K .......... .......... .......... .......... .......... 93% 53.8M 0s -2024-05-06T17:08:35Z #15 3.166 120000K .......... .......... .......... .......... .......... 93% 38.0M 0s -2024-05-06T17:08:35Z #15 3.167 120050K .......... .......... .......... .......... .......... 93% 86.2M 0s -2024-05-06T17:08:35Z #15 3.168 120100K .......... .......... .......... .......... .......... 94% 132M 0s -2024-05-06T17:08:35Z #15 3.168 120150K .......... .......... .......... .......... .......... 94% 25.0M 0s -2024-05-06T17:08:35Z #15 3.170 120200K .......... .......... .......... .......... .......... 94% 33.6M 0s -2024-05-06T17:08:35Z #15 3.171 120250K .......... .......... .......... .......... .......... 94% 46.1M 0s -2024-05-06T17:08:35Z #15 3.172 120300K .......... .......... .......... .......... .......... 94% 27.9M 0s -2024-05-06T17:08:35Z #15 3.174 120350K .......... .......... .......... .......... .......... 94% 23.6M 0s -2024-05-06T17:08:35Z #15 3.176 120400K .......... .......... .......... .......... .......... 94% 40.0M 0s -2024-05-06T17:08:35Z #15 3.177 120450K .......... .......... .......... .......... .......... 94% 47.4M 0s -2024-05-06T17:08:35Z #15 3.179 120500K .......... .......... .......... .......... .......... 94% 38.8M 0s -2024-05-06T17:08:35Z #15 3.180 120550K .......... .......... .......... .......... .......... 94% 50.7M 0s -2024-05-06T17:08:35Z #15 3.181 120600K .......... .......... .......... .......... .......... 94% 51.7M 0s -2024-05-06T17:08:35Z #15 3.182 120650K .......... .......... .......... .......... .......... 94% 92.4M 0s -2024-05-06T17:08:35Z #15 3.182 120700K .......... .......... .......... .......... .......... 94% 51.5M 0s -2024-05-06T17:08:35Z #15 3.183 120750K .......... .......... .......... .......... .......... 94% 35.9M 0s -2024-05-06T17:08:35Z #15 3.184 120800K .......... .......... .......... .......... .......... 94% 48.0M 0s -2024-05-06T17:08:35Z #15 3.185 120850K .......... .......... .......... .......... .......... 94% 44.5M 0s -2024-05-06T17:08:35Z #15 3.187 120900K .......... .......... .......... .......... .......... 94% 40.9M 0s -2024-05-06T17:08:35Z #15 3.188 120950K .......... .......... .......... .......... .......... 94% 45.2M 0s -2024-05-06T17:08:35Z #15 3.189 121000K .......... .......... .......... .......... .......... 94% 32.6M 0s -2024-05-06T17:08:35Z #15 3.191 121050K .......... .......... .......... .......... .......... 94% 110M 0s -2024-05-06T17:08:35Z #15 3.191 121100K .......... .......... .......... .......... .......... 94% 15.2M 0s -2024-05-06T17:08:35Z #15 3.194 121150K .......... .......... .......... .......... .......... 94% 37.9M 0s -2024-05-06T17:08:35Z #15 3.196 121200K .......... .......... .......... .......... .......... 94% 83.7M 0s -2024-05-06T17:08:35Z #15 3.196 121250K .......... .......... .......... .......... .......... 94% 45.2M 0s -2024-05-06T17:08:35Z #15 3.197 121300K .......... .......... .......... .......... .......... 94% 39.0M 0s -2024-05-06T17:08:35Z #15 3.199 121350K .......... .......... .......... .......... .......... 94% 51.0M 0s -2024-05-06T17:08:35Z #15 3.200 121400K .......... .......... .......... .......... .......... 95% 115M 0s -2024-05-06T17:08:35Z #15 3.200 121450K .......... .......... .......... .......... .......... 95% 34.8M 0s -2024-05-06T17:08:35Z #15 3.202 121500K .......... .......... .......... .......... .......... 95% 19.3M 0s -2024-05-06T17:08:35Z #15 3.204 121550K .......... .......... .......... .......... .......... 95% 26.4M 0s -2024-05-06T17:08:35Z #15 3.206 121600K .......... .......... .......... .......... .......... 95% 31.6M 0s -2024-05-06T17:08:35Z #15 3.207 121650K .......... .......... .......... .......... .......... 95% 29.4M 0s -2024-05-06T17:08:35Z #15 3.209 121700K .......... .......... .......... .......... .......... 95% 31.9M 0s -2024-05-06T17:08:35Z #15 3.210 121750K .......... .......... .......... .......... .......... 95% 26.7M 0s -2024-05-06T17:08:35Z #15 3.213 121800K .......... .......... .......... .......... .......... 95% 35.3M 0s -2024-05-06T17:08:35Z #15 3.214 121850K .......... .......... .......... .......... .......... 95% 111M 0s -2024-05-06T17:08:35Z #15 3.214 121900K .......... .......... .......... .......... .......... 95% 17.3M 0s -2024-05-06T17:08:35Z #15 3.218 121950K .......... .......... .......... .......... .......... 95% 53.9M 0s -2024-05-06T17:08:35Z #15 3.218 122000K .......... .......... .......... .......... .......... 95% 23.6M 0s -2024-05-06T17:08:35Z #15 3.220 122050K .......... .......... .......... .......... .......... 95% 36.6M 0s -2024-05-06T17:08:35Z #15 3.222 122100K .......... .......... .......... .......... .......... 95% 98.1M 0s -2024-05-06T17:08:35Z #15 3.222 122150K .......... .......... .......... .......... .......... 95% 87.3M 0s -2024-05-06T17:08:35Z #15 3.222 122200K .......... .......... .......... .......... .......... 95% 11.8M 0s -2024-05-06T17:08:35Z #15 3.226 122250K .......... .......... .......... .......... .......... 95% 47.5M 0s -2024-05-06T17:08:35Z #15 3.228 122300K .......... .......... .......... .......... .......... 95% 25.8M 0s -2024-05-06T17:08:35Z #15 3.229 122350K .......... .......... .......... .......... .......... 95% 37.7M 0s -2024-05-06T17:08:35Z #15 3.231 122400K .......... .......... .......... .......... .......... 95% 26.9M 0s -2024-05-06T17:08:35Z #15 3.232 122450K .......... .......... .......... .......... .......... 95% 30.2M 0s -2024-05-06T17:08:35Z #15 3.234 122500K .......... .......... .......... .......... .......... 95% 39.2M 0s -2024-05-06T17:08:35Z #15 3.235 122550K .......... .......... .......... .......... .......... 95% 25.5M 0s -2024-05-06T17:08:35Z #15 3.237 122600K .......... .......... .......... .......... .......... 95% 23.6M 0s -2024-05-06T17:08:35Z #15 3.239 122650K .......... .......... .......... .......... .......... 96% 30.0M 0s -2024-05-06T17:08:35Z #15 3.241 122700K .......... .......... .......... .......... .......... 96% 43.7M 0s -2024-05-06T17:08:35Z #15 3.242 122750K .......... .......... .......... .......... .......... 96% 22.0M 0s -2024-05-06T17:08:35Z #15 3.244 122800K .......... .......... .......... .......... .......... 96% 16.2M 0s -2024-05-06T17:08:35Z #15 3.247 122850K .......... .......... .......... .......... .......... 96% 52.0M 0s -2024-05-06T17:08:35Z #15 3.248 122900K .......... .......... .......... .......... .......... 96% 117M 0s -2024-05-06T17:08:35Z #15 3.248 122950K .......... .......... .......... .......... .......... 96% 14.6M 0s -2024-05-06T17:08:35Z #15 3.252 123000K .......... .......... .......... .......... .......... 96% 132M 0s -2024-05-06T17:08:35Z #15 3.252 123050K .......... .......... .......... .......... .......... 96% 18.0M 0s -2024-05-06T17:08:35Z #15 3.255 123100K .......... .......... .......... .......... .......... 96% 33.5M 0s -2024-05-06T17:08:35Z #15 3.256 123150K .......... .......... .......... .......... .......... 96% 40.4M 0s -2024-05-06T17:08:35Z #15 3.257 123200K .......... .......... .......... .......... .......... 96% 22.3M 0s -2024-05-06T17:08:35Z #15 3.260 123250K .......... .......... .......... .......... .......... 96% 58.5M 0s -2024-05-06T17:08:35Z #15 3.260 123300K .......... .......... .......... .......... .......... 96% 40.9M 0s -2024-05-06T17:08:35Z #15 3.262 123350K .......... .......... .......... .......... .......... 96% 22.6M 0s -2024-05-06T17:08:35Z #15 3.264 123400K .......... .......... .......... .......... .......... 96% 21.3M 0s -2024-05-06T17:08:35Z #15 3.267 123450K .......... .......... .......... .......... .......... 96% 60.7M 0s -2024-05-06T17:08:35Z #15 3.267 123500K .......... .......... .......... .......... .......... 96% 42.4M 0s -2024-05-06T17:08:35Z #15 3.268 123550K .......... .......... .......... .......... .......... 96% 97.5M 0s -2024-05-06T17:08:35Z #15 3.268 123600K .......... .......... .......... .......... .......... 96% 115M 0s -2024-05-06T17:08:35Z #15 3.269 123650K .......... .......... .......... .......... .......... 96% 116M 0s -2024-05-06T17:08:35Z #15 3.269 123700K .......... .......... .......... .......... .......... 96% 102M 0s -2024-05-06T17:08:35Z #15 3.270 123750K .......... .......... .......... .......... .......... 96% 44.9M 0s -2024-05-06T17:08:35Z #15 3.271 123800K .......... .......... .......... .......... .......... 96% 63.0M 0s -2024-05-06T17:08:35Z #15 3.272 123850K .......... .......... .......... .......... .......... 96% 98.3M 0s -2024-05-06T17:08:35Z #15 3.272 123900K .......... .......... .......... .......... .......... 96% 58.0M 0s -2024-05-06T17:08:35Z #15 3.273 123950K .......... .......... .......... .......... .......... 97% 35.2M 0s -2024-05-06T17:08:35Z #15 3.275 124000K .......... .......... .......... .......... .......... 97% 56.1M 0s -2024-05-06T17:08:35Z #15 3.275 124050K .......... .......... .......... .......... .......... 97% 46.0M 0s -2024-05-06T17:08:35Z #15 3.276 124100K .......... .......... .......... .......... .......... 97% 29.4M 0s -2024-05-06T17:08:35Z #15 3.278 124150K .......... .......... .......... .......... .......... 97% 56.3M 0s -2024-05-06T17:08:35Z #15 3.279 124200K .......... .......... .......... .......... .......... 97% 72.7M 0s -2024-05-06T17:08:35Z #15 3.283 124250K .......... .......... .......... .......... .......... 97% 88.2M 0s -2024-05-06T17:08:35Z #15 3.283 124300K .......... .......... .......... .......... .......... 97% 138M 0s -2024-05-06T17:08:35Z #15 3.283 124350K .......... .......... .......... .......... .......... 97% 104M 0s -2024-05-06T17:08:35Z #15 3.283 124400K .......... .......... .......... .......... .......... 97% 120M 0s -2024-05-06T17:08:35Z #15 3.283 124450K .......... .......... .......... .......... .......... 97% 107M 0s -2024-05-06T17:08:35Z #15 3.283 124500K .......... .......... .......... .......... .......... 97% 106M 0s -2024-05-06T17:08:35Z #15 3.283 124550K .......... .......... .......... .......... .......... 97% 98.7M 0s -2024-05-06T17:08:35Z #15 3.283 124600K .......... .......... .......... .......... .......... 97% 69.5M 0s -2024-05-06T17:08:35Z #15 3.283 124650K .......... .......... .......... .......... .......... 97% 53.8M 0s -2024-05-06T17:08:35Z #15 3.284 124700K .......... .......... .......... .......... .......... 97% 48.4M 0s -2024-05-06T17:08:35Z #15 3.285 124750K .......... .......... .......... .......... .......... 97% 70.7M 0s -2024-05-06T17:08:35Z #15 3.286 124800K .......... .......... .......... .......... .......... 97% 65.5M 0s -2024-05-06T17:08:35Z #15 3.287 124850K .......... .......... .......... .......... .......... 97% 59.1M 0s -2024-05-06T17:08:35Z #15 3.288 124900K .......... .......... .......... .......... .......... 97% 160M 0s -2024-05-06T17:08:35Z #15 3.288 124950K .......... .......... .......... .......... .......... 97% 41.3M 0s -2024-05-06T17:08:35Z #15 3.289 125000K .......... .......... .......... .......... .......... 97% 74.6M 0s -2024-05-06T17:08:35Z #15 3.290 125050K .......... .......... .......... .......... .......... 97% 55.1M 0s -2024-05-06T17:08:35Z #15 3.291 125100K .......... .......... .......... .......... .......... 97% 47.8M 0s -2024-05-06T17:08:35Z #15 3.292 125150K .......... .......... .......... .......... .......... 97% 37.5M 0s -2024-05-06T17:08:35Z #15 3.293 125200K .......... .......... .......... .......... .......... 98% 114M 0s -2024-05-06T17:08:35Z #15 3.293 125250K .......... .......... .......... .......... .......... 98% 99.6M 0s -2024-05-06T17:08:35Z #15 3.294 125300K .......... .......... .......... .......... .......... 98% 107M 0s -2024-05-06T17:08:35Z #15 3.294 125350K .......... .......... .......... .......... .......... 98% 104M 0s -2024-05-06T17:08:35Z #15 3.296 125400K .......... .......... .......... .......... .......... 98% 95.8M 0s -2024-05-06T17:08:35Z #15 3.296 125450K .......... .......... .......... .......... .......... 98% 64.3M 0s -2024-05-06T17:08:35Z #15 3.297 125500K .......... .......... .......... .......... .......... 98% 67.3M 0s -2024-05-06T17:08:35Z #15 3.297 125550K .......... .......... .......... .......... .......... 98% 77.5M 0s -2024-05-06T17:08:35Z #15 3.298 125600K .......... .......... .......... .......... .......... 98% 57.5M 0s -2024-05-06T17:08:35Z #15 3.298 125650K .......... .......... .......... .......... .......... 98% 54.0M 0s -2024-05-06T17:08:35Z #15 3.299 125700K .......... .......... .......... .......... .......... 98% 64.3M 0s -2024-05-06T17:08:35Z #15 3.300 125750K .......... .......... .......... .......... .......... 98% 101M 0s -2024-05-06T17:08:35Z #15 3.300 125800K .......... .......... .......... .......... .......... 98% 135M 0s -2024-05-06T17:08:35Z #15 3.301 125850K .......... .......... .......... .......... .......... 98% 117M 0s -2024-05-06T17:08:35Z #15 3.301 125900K .......... .......... .......... .......... .......... 98% 135M 0s -2024-05-06T17:08:35Z #15 3.302 125950K .......... .......... .......... .......... .......... 98% 106M 0s -2024-05-06T17:08:35Z #15 3.302 126000K .......... .......... .......... .......... .......... 98% 122M 0s -2024-05-06T17:08:35Z #15 3.302 126050K .......... .......... .......... .......... .......... 98% 124M 0s -2024-05-06T17:08:35Z #15 3.303 126100K .......... .......... .......... .......... .......... 98% 103M 0s -2024-05-06T17:08:35Z #15 3.308 126150K .......... .......... .......... .......... .......... 98% 63.3M 0s -2024-05-06T17:08:35Z #15 3.308 126200K .......... .......... .......... .......... .......... 98% 107M 0s -2024-05-06T17:08:35Z #15 3.308 126250K .......... .......... .......... .......... .......... 98% 90.7M 0s -2024-05-06T17:08:35Z #15 3.308 126300K .......... .......... .......... .......... .......... 98% 109M 0s -2024-05-06T17:08:35Z #15 3.308 126350K .......... .......... .......... .......... .......... 98% 77.4M 0s -2024-05-06T17:08:35Z #15 3.308 126400K .......... .......... .......... .......... .......... 98% 101M 0s -2024-05-06T17:08:35Z #15 3.308 126450K .......... .......... .......... .......... .......... 98% 85.4M 0s -2024-05-06T17:08:35Z #15 3.308 126500K .......... .......... .......... .......... .......... 99% 93.0M 0s -2024-05-06T17:08:35Z #15 3.308 126550K .......... .......... .......... .......... .......... 99% 106M 0s -2024-05-06T17:08:35Z #15 3.308 126600K .......... .......... .......... .......... .......... 99% 123M 0s -2024-05-06T17:08:35Z #15 3.309 126650K .......... .......... .......... .......... .......... 99% 116M 0s -2024-05-06T17:08:35Z #15 3.309 126700K .......... .......... .......... .......... .......... 99% 121M 0s -2024-05-06T17:08:35Z #15 3.309 126750K .......... .......... .......... .......... .......... 99% 109M 0s -2024-05-06T17:08:35Z #15 3.310 126800K .......... .......... .......... .......... .......... 99% 109M 0s -2024-05-06T17:08:35Z #15 3.310 126850K .......... .......... .......... .......... .......... 99% 121M 0s -2024-05-06T17:08:35Z #15 3.311 126900K .......... .......... .......... .......... .......... 99% 89.6M 0s -2024-05-06T17:08:35Z #15 3.311 126950K .......... .......... .......... .......... .......... 99% 95.0M 0s -2024-05-06T17:08:35Z #15 3.312 127000K .......... .......... .......... .......... .......... 99% 112M 0s -2024-05-06T17:08:35Z #15 3.312 127050K .......... .......... .......... .......... .......... 99% 117M 0s -2024-05-06T17:08:35Z #15 3.312 127100K .......... .......... .......... .......... .......... 99% 121M 0s -2024-05-06T17:08:35Z #15 3.313 127150K .......... .......... .......... .......... .......... 99% 109M 0s -2024-05-06T17:08:35Z #15 3.313 127200K .......... .......... .......... .......... .......... 99% 109M 0s -2024-05-06T17:08:35Z #15 3.314 127250K .......... .......... .......... .......... .......... 99% 129M 0s -2024-05-06T17:08:35Z #15 3.314 127300K .......... .......... .......... .......... .......... 99% 117M 0s -2024-05-06T17:08:35Z #15 3.315 127350K .......... .......... .......... .......... .......... 99% 5.73M 0s -2024-05-06T17:08:35Z #15 3.323 127400K .......... .......... .......... .......... .......... 99% 118M 0s -2024-05-06T17:08:35Z #15 3.324 127450K .......... .......... .......... .......... .......... 99% 127M 0s -2024-05-06T17:08:35Z #15 3.324 127500K .......... .......... .......... .......... .......... 99% 121M 0s -2024-05-06T17:08:35Z #15 3.324 127550K .......... .......... .......... .......... .......... 99% 134M 0s -2024-05-06T17:08:35Z #15 3.325 127600K .......... .......... .......... .......... .......... 99% 122M 0s -2024-05-06T17:08:35Z #15 3.325 127650K .......... .......... .......... .......... .......... 99% 132M 0s -2024-05-06T17:08:35Z #15 3.325 127700K .......... .......... .......... .......... .......... 99% 128M 0s -2024-05-06T17:08:35Z #15 3.326 127750K .......... .......... .......... .......... . 100% 108M=1.8s -2024-05-06T17:08:35Z #15 3.326 -2024-05-06T17:08:35Z #15 3.326 2024-05-06 17:08:35 (68.7 MB/s) - ‘/usr/local/bin/globusconnectpersonal-latest.tgz’ saved [130857988/130857988] -2024-05-06T17:08:35Z #15 3.326 -2024-05-06T17:08:38Z #15 6.694 '/usr/local/bin/globusconnectpersonal' -> '/usr/local/bin/globusconnectpersonal-3.2.5/globusconnectpersonal' -2024-05-06T17:08:38Z #15 6.717 removed '/usr/local/bin/globusconnectpersonal-latest.tgz' -2024-05-06T17:08:40Z #15 DONE 8.2s -2024-05-06T17:08:40Z -2024-05-06T17:08:40Z #16 exporting to image -2024-05-06T17:08:40Z #16 exporting layers -2024-05-06T17:11:18Z #16 exporting layers 158.2s done -2024-05-06T17:11:18Z #16 writing image sha256:a3f70e8faafb7f43f614ecb6de243945dfbfc5bbc8232cb3119687a1fd107366 done -2024-05-06T17:11:18Z #16 naming to docker.io/pavics/workflow-tests:py311-240506 done -2024-05-06T17:11:18Z #16 DONE 158.2s -2024-05-06T17:11:18Z Pushing index.docker.io/pavics/workflow-tests:py311-240506... -2024-05-06T17:19:28Z Done! -2024-05-06T17:19:28Z Build finished +2024-05-08T22:10:08Z Building in Docker Cloud's infrastructure... +2024-05-08T22:10:08Z Cloning into '.'... +2024-05-08T22:10:09Z Warning: Permanently added the RSA host key for IP address '140.82.112.4' to the list of known hosts. +2024-05-08T22:10:11Z Switched to a new branch 'dockerupdate-py311-240506-update240508' +2024-05-08T22:10:11Z KernelVersion: 5.4.0-1068-aws +2024-05-08T22:10:11Z Components: [{u'Version': u'20.10.15', u'Name': u'Engine', u'Details': {u'KernelVersion': u'5.4.0-1068-aws', u'Os': u'linux', u'BuildTime': u'2022-05-05T13:17:24.000000000+00:00', u'ApiVersion': u'1.41', u'MinAPIVersion': u'1.12', u'GitCommit': u'4433bf6', u'Arch': u'amd64', u'Experimental': u'false', u'GoVersion': u'go1.17.9'}}, {u'Version': u'1.6.21', u'Name': u'containerd', u'Details': {u'GitCommit': u'3dce8eb055cbb6872793272b4f20ed16117344f8'}}, {u'Version': u'1.1.7', u'Name': u'runc', u'Details': {u'GitCommit': u'v1.1.7-0-g860f061'}}, {u'Version': u'0.19.0', u'Name': u'docker-init', u'Details': {u'GitCommit': u'de40ad0'}}] +2024-05-08T22:10:11Z Arch: amd64 +2024-05-08T22:10:11Z BuildTime: 2022-05-05T13:17:24.000000000+00:00 +2024-05-08T22:10:11Z ApiVersion: 1.41 +2024-05-08T22:10:11Z Platform: {u'Name': u'Docker Engine - Community'} +2024-05-08T22:10:11Z Version: 20.10.15 +2024-05-08T22:10:11Z MinAPIVersion: 1.12 +2024-05-08T22:10:11Z GitCommit: 4433bf6 +2024-05-08T22:10:11Z Os: linux +2024-05-08T22:10:11Z GoVersion: go1.17.9 +2024-05-08T22:10:11Z Buildkit: Starting build for index.docker.io/pavics/workflow-tests:py311-240506-update240508... +2024-05-08T22:10:17Z #1 [internal] load build definition from Dockerfile.testing +2024-05-08T22:10:17Z #1 transferring dockerfile: 1.31kB done +2024-05-08T22:10:17Z #1 DONE 0.1s +2024-05-08T22:10:17Z +2024-05-08T22:10:17Z #2 [internal] load .dockerignore +2024-05-08T22:10:17Z #2 transferring context: 2B done +2024-05-08T22:10:17Z #2 DONE 0.1s +2024-05-08T22:10:17Z +2024-05-08T22:10:17Z #3 [auth] pavics/workflow-tests:pull token for registry-1.docker.io +2024-05-08T22:10:17Z #3 DONE 0.0s +2024-05-08T22:10:17Z +2024-05-08T22:10:17Z #4 [internal] load metadata for docker.io/pavics/workflow-tests:py311-240506 +2024-05-08T22:10:18Z #4 DONE 0.7s +2024-05-08T22:10:18Z +2024-05-08T22:10:18Z #5 [1/2] FROM docker.io/pavics/workflow-tests:py311-240506@sha256:a9484357f753689b6bccb8c3d59bea9fae6a30407520048c87475ef553d00bbe +2024-05-08T22:10:18Z #5 resolve docker.io/pavics/workflow-tests:py311-240506@sha256:a9484357f753689b6bccb8c3d59bea9fae6a30407520048c87475ef553d00bbe done +2024-05-08T22:10:18Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 0B / 50.08MB 0.1s +2024-05-08T22:10:18Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 0B / 150.89MB 0.1s +2024-05-08T22:10:18Z #5 sha256:a9484357f753689b6bccb8c3d59bea9fae6a30407520048c87475ef553d00bbe 2.86kB / 2.86kB done +2024-05-08T22:10:18Z #5 sha256:a3f70e8faafb7f43f614ecb6de243945dfbfc5bbc8232cb3119687a1fd107366 12.36kB / 12.36kB done +2024-05-08T22:10:18Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 8.39MB / 31.43MB 0.2s +2024-05-08T22:10:18Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 4.19MB / 50.08MB 0.3s +2024-05-08T22:10:18Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 11.53MB / 31.43MB 0.3s +2024-05-08T22:10:18Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 9.44MB / 50.08MB 0.4s +2024-05-08T22:10:18Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 14.68MB / 31.43MB 0.4s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 22.02MB / 50.08MB 0.6s +2024-05-08T22:10:19Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.59MB / 150.89MB 0.6s +2024-05-08T22:10:19Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 20.97MB / 31.43MB 0.6s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 28.31MB / 50.08MB 0.9s +2024-05-08T22:10:19Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 28.31MB / 150.89MB 0.9s +2024-05-08T22:10:19Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 26.33MB / 31.43MB 0.9s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 31.46MB / 50.08MB 1.0s +2024-05-08T22:10:19Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 28.98MB / 31.43MB 1.0s +2024-05-08T22:10:19Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 36.70MB / 150.89MB 1.1s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 41.94MB / 50.08MB 1.2s +2024-05-08T22:10:19Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.2s +2024-05-08T22:10:19Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 1.4s +2024-05-08T22:10:19Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 55.57MB / 150.89MB 1.4s +2024-05-08T22:10:20Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 67.11MB / 150.89MB 1.5s +2024-05-08T22:10:20Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 80.78MB / 150.89MB 1.7s +2024-05-08T22:10:20Z #5 sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 31.43MB / 31.43MB 1.6s done +2024-05-08T22:10:20Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 +2024-05-08T22:10:20Z #5 sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 50.08MB / 50.08MB 1.9s done +2024-05-08T22:10:20Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 0B / 130.25MB 2.0s +2024-05-08T22:10:20Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 0B / 320.61MB 2.0s +2024-05-08T22:10:20Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 89.13MB / 150.89MB 2.3s +2024-05-08T22:10:21Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 8.39MB / 130.25MB 2.5s +2024-05-08T22:10:21Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 15.47MB / 130.25MB 2.8s +2024-05-08T22:10:21Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 98.19MB / 150.89MB 2.9s +2024-05-08T22:10:21Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 108.77MB / 150.89MB 3.4s +2024-05-08T22:10:21Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 17.83MB / 320.61MB 3.4s +2024-05-08T22:10:22Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 28.31MB / 130.25MB 3.7s +2024-05-08T22:10:22Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 118.49MB / 150.89MB 3.9s +2024-05-08T22:10:22Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 35.02MB / 130.25MB 4.0s +2024-05-08T22:10:22Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 38.80MB / 320.61MB 4.1s +2024-05-08T22:10:23Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 42.99MB / 130.25MB 4.6s +2024-05-08T22:10:23Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 136.31MB / 150.89MB 4.9s +2024-05-08T22:10:23Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 53.48MB / 130.25MB 4.9s +2024-05-08T22:10:23Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 55.57MB / 320.61MB 4.9s +2024-05-08T22:10:23Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 61.87MB / 130.25MB 5.2s +2024-05-08T22:10:24Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 147.85MB / 150.89MB 5.6s +2024-05-08T22:10:24Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 69.56MB / 130.25MB 5.6s +2024-05-08T22:10:24Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 82.84MB / 130.25MB 6.0s +2024-05-08T22:10:24Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 72.35MB / 320.61MB 6.0s +2024-05-08T22:10:24Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 92.27MB / 130.25MB 6.4s +2024-05-08T22:10:24Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 90.18MB / 320.61MB 6.5s +2024-05-08T22:10:25Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 102.76MB / 130.25MB 6.7s +2024-05-08T22:10:25Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 5.1s +2024-05-08T22:10:25Z #5 sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 150.89MB / 150.89MB 7.3s done +2024-05-08T22:10:25Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 111.15MB / 130.25MB 7.4s +2024-05-08T22:10:25Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 110.10MB / 320.61MB 7.4s +2024-05-08T22:10:25Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 0B / 235.72MB 7.5s +2024-05-08T22:10:26Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 120.59MB / 130.25MB 7.6s +2024-05-08T22:10:26Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 128.97MB / 130.25MB 8.0s +2024-05-08T22:10:27Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 126.89MB / 320.61MB 8.7s +2024-05-08T22:10:27Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 14.68MB / 235.72MB 8.7s +2024-05-08T22:10:27Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 144.70MB / 320.61MB 9.5s +2024-05-08T22:10:28Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 34.60MB / 235.72MB 9.6s +2024-05-08T22:10:28Z #5 sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 130.25MB / 130.25MB 10.0s done +2024-05-08T22:10:28Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 161.50MB / 320.61MB 10.1s +2024-05-08T22:10:28Z #5 sha256:100efee3a6df091b03edf096a2e2220ec3108ad889958b23e6f4dcd5fe096312 3.86kB / 3.86kB 10.1s done +2024-05-08T22:10:28Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 0B / 1.69GB 10.2s +2024-05-08T22:10:29Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 47.19MB / 235.72MB 10.5s +2024-05-08T22:10:29Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 177.90MB / 320.61MB 11.2s +2024-05-08T22:10:29Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 61.83MB / 235.72MB 11.2s +2024-05-08T22:10:30Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 76.55MB / 235.72MB 11.7s +2024-05-08T22:10:30Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 194.74MB / 320.61MB 12.1s +2024-05-08T22:10:30Z #5 extracting sha256:04e7578caeaa5a84ad5d534aabbb307a37c85f9444b94949d37544a1c69c8f15 10.5s done +2024-05-08T22:10:30Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 88.36MB / 235.72MB 12.4s +2024-05-08T22:10:31Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 214.02MB / 320.61MB 12.9s +2024-05-08T22:10:31Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 102.76MB / 235.72MB 12.9s +2024-05-08T22:10:31Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 87.03MB / 1.69GB 13.4s +2024-05-08T22:10:32Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 240.12MB / 320.61MB 13.6s +2024-05-08T22:10:32Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 115.13MB / 235.72MB 13.6s +2024-05-08T22:10:32Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 +2024-05-08T22:10:32Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 131.07MB / 235.72MB 14.5s +2024-05-08T22:10:33Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 257.95MB / 320.61MB 15.1s +2024-05-08T22:10:33Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 148.90MB / 235.72MB 15.3s +2024-05-08T22:10:34Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 278.92MB / 320.61MB 15.7s +2024-05-08T22:10:34Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 161.48MB / 235.72MB 16.2s +2024-05-08T22:10:35Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 297.38MB / 320.61MB 16.5s +2024-05-08T22:10:35Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 173.02MB / 1.69GB 16.8s +2024-05-08T22:10:35Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 175.11MB / 235.72MB 17.0s +2024-05-08T22:10:36Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 315.62MB / 320.61MB 17.7s +2024-05-08T22:10:36Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 191.89MB / 235.72MB 17.7s +2024-05-08T22:10:36Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 205.46MB / 235.72MB 18.2s +2024-05-08T22:10:37Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 221.25MB / 235.72MB 18.6s +2024-05-08T22:10:37Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 234.88MB / 235.72MB 18.8s +2024-05-08T22:10:37Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 5.0s +2024-05-08T22:10:38Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 259.15MB / 1.69GB 20.2s +2024-05-08T22:10:40Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 345.33MB / 1.69GB 22.0s +2024-05-08T22:10:41Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 320.61MB / 320.61MB 22.8s +2024-05-08T22:10:42Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 235.72MB / 235.72MB 23.8s +2024-05-08T22:10:42Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 10.0s +2024-05-08T22:10:42Z #5 sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 320.61MB / 320.61MB 23.9s done +2024-05-08T22:10:42Z #5 sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 0B / 6.76kB 24.3s +2024-05-08T22:10:42Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 436.97MB / 1.69GB 24.4s +2024-05-08T22:10:42Z #5 sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 6.76kB / 6.76kB 24.4s +2024-05-08T22:10:44Z #5 extracting sha256:c893f9326bb9508af1010564ed7e77b867db6c8e519903bfe99877ff8e376da9 11.6s done +2024-05-08T22:10:44Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 529.53MB / 1.69GB 26.4s +2024-05-08T22:10:45Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 635.44MB / 1.69GB 27.5s +2024-05-08T22:10:47Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 235.72MB / 235.72MB 29.0s +2024-05-08T22:10:47Z #5 sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 235.72MB / 235.72MB 29.0s done +2024-05-08T22:10:47Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc +2024-05-08T22:10:47Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 729.81MB / 1.69GB 29.2s +2024-05-08T22:10:47Z #5 sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 6.76kB / 6.76kB 29.4s done +2024-05-08T22:10:47Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 0B / 199.42MB 29.5s +2024-05-08T22:10:48Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 13.63MB / 199.42MB 30.4s +2024-05-08T22:10:48Z #5 sha256:b711a56866a1fafdab36f25e9cba33f645f7bd936509284c3075bf2cec6d6b5e 3.95kB / 3.95kB 30.4s +2024-05-08T22:10:49Z #5 sha256:b711a56866a1fafdab36f25e9cba33f645f7bd936509284c3075bf2cec6d6b5e 3.95kB / 3.95kB 30.5s done +2024-05-08T22:10:49Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 26.21MB / 199.42MB 30.8s +2024-05-08T22:10:49Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 0B / 137.99MB 30.9s +2024-05-08T22:10:49Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 48.23MB / 199.42MB 31.2s +2024-05-08T22:10:50Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 65.01MB / 199.42MB 31.6s +2024-05-08T22:10:50Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 17.83MB / 137.99MB 31.9s +2024-05-08T22:10:50Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 77.71MB / 199.42MB 32.1s +2024-05-08T22:10:50Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 815.73MB / 1.69GB 32.2s +2024-05-08T22:10:50Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 26.21MB / 137.99MB 32.2s +2024-05-08T22:10:50Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 39.85MB / 137.99MB 32.5s +2024-05-08T22:10:51Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 88.08MB / 199.42MB 32.6s +2024-05-08T22:10:51Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 52.43MB / 137.99MB 32.8s +2024-05-08T22:10:51Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 61.87MB / 137.99MB 33.0s +2024-05-08T22:10:51Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 70.25MB / 137.99MB 33.1s +2024-05-08T22:10:51Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 106.95MB / 199.42MB 33.4s +2024-05-08T22:10:51Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 77.59MB / 137.99MB 33.4s +2024-05-08T22:10:52Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 119.54MB / 199.42MB 33.7s +2024-05-08T22:10:52Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 92.39MB / 137.99MB 33.7s +2024-05-08T22:10:52Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 105.91MB / 137.99MB 34.1s +2024-05-08T22:10:52Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 5.2s +2024-05-08T22:10:52Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 115.34MB / 137.99MB 34.4s +2024-05-08T22:10:52Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 131.07MB / 199.42MB 34.5s +2024-05-08T22:10:53Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 122.53MB / 137.99MB 34.6s +2024-05-08T22:10:53Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 130.02MB / 137.99MB 34.9s +2024-05-08T22:10:54Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 137.99MB / 137.99MB 35.6s +2024-05-08T22:10:54Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 141.36MB / 199.42MB 35.8s +2024-05-08T22:10:54Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 153.95MB / 199.42MB 36.3s +2024-05-08T22:10:55Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 902.82MB / 1.69GB 36.6s +2024-05-08T22:10:55Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 167.77MB / 199.42MB 36.6s +2024-05-08T22:10:55Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 184.55MB / 199.42MB 36.9s +2024-05-08T22:10:55Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 198.18MB / 199.42MB 37.4s +2024-05-08T22:10:56Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 988.81MB / 1.69GB 38.4s +2024-05-08T22:10:57Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 10.2s +2024-05-08T22:10:59Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 137.99MB / 137.99MB 40.8s +2024-05-08T22:10:59Z #5 sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 137.99MB / 137.99MB 40.9s done +2024-05-08T22:10:59Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.08GB / 1.69GB 41.1s +2024-05-08T22:11:00Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 199.42MB / 199.42MB 42.4s +2024-05-08T22:11:02Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.17GB / 1.69GB 44.1s +2024-05-08T22:11:02Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 15.4s +2024-05-08T22:11:04Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.26GB / 1.69GB 46.0s +2024-05-08T22:11:05Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 199.42MB / 199.42MB 47.5s +2024-05-08T22:11:06Z #5 sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 199.42MB / 199.42MB 47.7s done +2024-05-08T22:11:07Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.34GB / 1.69GB 48.7s +2024-05-08T22:11:07Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 20.4s +2024-05-08T22:11:10Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.43GB / 1.69GB 51.5s +2024-05-08T22:11:11Z #5 extracting sha256:9548983a4b0b9f7022bd4c20cd827257acb430f31e5297d9bfa986fab178c7cc 23.6s done +2024-05-08T22:11:11Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.52GB / 1.69GB 53.3s +2024-05-08T22:11:12Z #5 extracting sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c +2024-05-08T22:11:13Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.60GB / 1.69GB 54.7s +2024-05-08T22:11:16Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.69GB / 1.69GB 58.4s +2024-05-08T22:11:17Z #5 extracting sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 5.1s +2024-05-08T22:11:22Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.69GB / 1.69GB 63.6s +2024-05-08T22:11:23Z #5 extracting sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 10.2s +2024-05-08T22:11:26Z #5 extracting sha256:6b1242eace50b08addebc6cf987e4ae7d3734e132f31510c7de5dbf4de70631c 13.6s done +2024-05-08T22:11:26Z #5 sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 1.69GB / 1.69GB 68.4s done +2024-05-08T22:11:27Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 0.1s +2024-05-08T22:11:32Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 5.2s +2024-05-08T22:11:37Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 10.2s +2024-05-08T22:11:42Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 15.2s +2024-05-08T22:11:47Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 20.3s +2024-05-08T22:11:52Z #5 extracting sha256:b3c441f134c2bebb623331e28c64e8e88614119b9c79e5ff045213511e62e6f5 25.6s done +2024-05-08T22:11:53Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f +2024-05-08T22:11:58Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 5.1s +2024-05-08T22:12:03Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 10.1s +2024-05-08T22:12:08Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 15.2s +2024-05-08T22:12:13Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 20.3s +2024-05-08T22:12:17Z #5 extracting sha256:12d9606062ee9c588b6a34a4b6af03683a3c5c9ede5bb830e3eab4060e342f6f 23.5s done +2024-05-08T22:12:17Z #5 extracting sha256:100efee3a6df091b03edf096a2e2220ec3108ad889958b23e6f4dcd5fe096312 done +2024-05-08T22:12:17Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 +2024-05-08T22:12:22Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 5.0s +2024-05-08T22:12:28Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 10.1s +2024-05-08T22:12:33Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 15.4s +2024-05-08T22:12:38Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 20.9s +2024-05-08T22:12:44Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 26.2s +2024-05-08T22:12:49Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 31.8s +2024-05-08T22:12:54Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 37.0s +2024-05-08T22:12:59Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 42.1s +2024-05-08T22:13:05Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 47.1s +2024-05-08T22:13:10Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 52.2s +2024-05-08T22:13:15Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 57.3s +2024-05-08T22:13:20Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 62.3s +2024-05-08T22:13:25Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 67.4s +2024-05-08T22:13:30Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 72.4s +2024-05-08T22:13:35Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 77.5s +2024-05-08T22:13:40Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 82.6s +2024-05-08T22:13:45Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 87.7s +2024-05-08T22:13:50Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 92.7s +2024-05-08T22:13:55Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 97.8s +2024-05-08T22:14:01Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 103.1s +2024-05-08T22:14:06Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 108.1s +2024-05-08T22:14:11Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 113.3s +2024-05-08T22:14:16Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 118.3s +2024-05-08T22:14:21Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 123.7s +2024-05-08T22:14:26Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 128.8s +2024-05-08T22:14:31Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 133.9s +2024-05-08T22:14:36Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 139.0s +2024-05-08T22:14:42Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 144.1s +2024-05-08T22:14:47Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 149.2s +2024-05-08T22:14:52Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 154.3s +2024-05-08T22:14:58Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 160.1s +2024-05-08T22:15:03Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 166.0s +2024-05-08T22:15:09Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 171.0s +2024-05-08T22:15:14Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 176.1s +2024-05-08T22:15:19Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 181.2s +2024-05-08T22:15:24Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 186.4s +2024-05-08T22:15:29Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 191.4s +2024-05-08T22:15:34Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 196.5s +2024-05-08T22:15:39Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 201.9s +2024-05-08T22:15:44Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 207.0s +2024-05-08T22:15:50Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 212.3s +2024-05-08T22:15:56Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 219.1s +2024-05-08T22:16:04Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 226.1s +2024-05-08T22:16:09Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 231.3s +2024-05-08T22:16:14Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 236.4s +2024-05-08T22:16:19Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 241.7s +2024-05-08T22:16:24Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 246.9s +2024-05-08T22:16:31Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 253.7s +2024-05-08T22:16:36Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 258.7s +2024-05-08T22:16:41Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 263.8s +2024-05-08T22:16:47Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 269.1s +2024-05-08T22:16:48Z #5 extracting sha256:d625d8dcfe900407f6d31b92bff64dd3998fd660f95c20ae748485b59390bd50 270.1s done +2024-05-08T22:16:53Z #5 extracting sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 +2024-05-08T22:16:53Z #5 extracting sha256:58e650e9749ecd76550878630948c65046e1ed589ab8453c6257ce5a31e58c36 done +2024-05-08T22:16:54Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e +2024-05-08T22:16:59Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 5.4s +2024-05-08T22:17:06Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 12.6s +2024-05-08T22:17:12Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 17.8s +2024-05-08T22:17:17Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 22.9s +2024-05-08T22:17:22Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 28.1s +2024-05-08T22:17:27Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 33.2s +2024-05-08T22:17:33Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 39.3s +2024-05-08T22:17:38Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 44.4s +2024-05-08T22:17:43Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 49.4s +2024-05-08T22:17:48Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 54.4s +2024-05-08T22:17:50Z #5 extracting sha256:249747b42d9a281e9ae69e8568ee63f13b716ceb50d51a75a5d56e8c1011751e 56.5s done +2024-05-08T22:17:51Z #5 extracting sha256:b711a56866a1fafdab36f25e9cba33f645f7bd936509284c3075bf2cec6d6b5e done +2024-05-08T22:17:51Z #5 extracting sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d +2024-05-08T22:17:56Z #5 extracting sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 5.0s +2024-05-08T22:18:00Z #5 extracting sha256:cc46212f9b5d2f32e76eb929e93efb4e0669d2898d6d4b36042740a713edb90d 8.4s done +2024-05-08T22:18:01Z #5 DONE 463.0s +2024-05-08T22:18:01Z +2024-05-08T22:18:01Z #6 [2/2] RUN umask 0000 && pip uninstall -y ravenpy birdhouse-birdy && pip install --no-cache-dir --no-deps ravenpy==0.13.1 birdhouse-birdy==0.8.7 && mamba install -c conda-forge -c cdat -c bokeh -c plotly -c pyviz/label/dev -c defaults -n birdy jupyterlab-git==0.44.0 && mamba clean --all --yes +2024-05-08T22:18:03Z #6 1.842 Found existing installation: ravenpy 0.13.0 +2024-05-08T22:18:03Z #6 1.855 Uninstalling ravenpy-0.13.0: +2024-05-08T22:18:03Z #6 1.916 Successfully uninstalled ravenpy-0.13.0 +2024-05-08T22:18:03Z #6 2.249 Found existing installation: birdhouse-birdy 0.8.6 +2024-05-08T22:18:03Z #6 2.262 Uninstalling birdhouse-birdy-0.8.6: +2024-05-08T22:18:03Z #6 2.335 Successfully uninstalled birdhouse-birdy-0.8.6 +2024-05-08T22:18:03Z #6 2.339 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +2024-05-08T22:18:05Z #6 3.658 Collecting ravenpy==0.13.1 +2024-05-08T22:18:05Z #6 3.700 Downloading ravenpy-0.13.1-py3-none-any.whl.metadata (8.5 kB) +2024-05-08T22:18:05Z #6 3.729 Collecting birdhouse-birdy==0.8.7 +2024-05-08T22:18:05Z #6 3.739 Downloading birdhouse_birdy-0.8.7-py3-none-any.whl.metadata (13 kB) +2024-05-08T22:18:05Z #6 3.752 Downloading ravenpy-0.13.1-py3-none-any.whl (6.3 MB) +2024-05-08T22:18:05Z #6 3.839 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.3/6.3 MB 91.7 MB/s eta 0:00:00 +2024-05-08T22:18:05Z #6 3.847 Downloading birdhouse_birdy-0.8.7-py3-none-any.whl (46 kB) +2024-05-08T22:18:05Z #6 3.850 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 47.0/47.0 kB 140.8 MB/s eta 0:00:00 +2024-05-08T22:18:05Z #6 3.872 Installing collected packages: ravenpy, birdhouse-birdy +2024-05-08T22:18:06Z #6 4.744 Successfully installed birdhouse-birdy-0.8.7 ravenpy-0.13.1 +2024-05-08T22:18:06Z #6 4.745 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +2024-05-08T22:19:27Z #6 86.48 Transaction +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.48 Prefix: /opt/conda/envs/birdy +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.48 Updating specs: +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.48 - jupyterlab-git==0.44.0 +2024-05-08T22:19:27Z #6 86.48 - ca-certificates +2024-05-08T22:19:27Z #6 86.48 - certifi +2024-05-08T22:19:27Z #6 86.48 - openssl +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.48 +2024-05-08T22:19:27Z #6 86.50 Package Version Build Channel Size +2024-05-08T22:19:27Z #6 86.50 ─────────────────────────────────────────────────────────────────── +2024-05-08T22:19:27Z #6 86.50 Upgrade: +2024-05-08T22:19:27Z #6 86.50 ─────────────────────────────────────────────────────────────────── +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 - jupyterlab-git 0.8.2 py_0 conda-forge Cached +2024-05-08T22:19:27Z #6 86.50 + jupyterlab-git 0.44.0 pyhd8ed1ab_0 conda-forge 543kB +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 Downgrade: +2024-05-08T22:19:27Z #6 86.50 ─────────────────────────────────────────────────────────────────── +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 - nbdime 4.0.1 pyhd8ed1ab_0 conda-forge Cached +2024-05-08T22:19:27Z #6 86.50 + nbdime 3.2.1 pyhd8ed1ab_0 conda-forge 4MB +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 Summary: +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 Upgrade: 1 packages +2024-05-08T22:19:27Z #6 86.50 Downgrade: 1 packages +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 Total download: 5MB +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 ─────────────────────────────────────────────────────────────────── +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:27Z #6 86.50 +2024-05-08T22:19:50Z #6 86.51 Confirm changes: [Y/n] +2024-05-08T22:19:50Z #6 108.9 Looking for: ['jupyterlab-git==0.44.0'] +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 Pinned packages: +2024-05-08T22:19:50Z #6 108.9 - python 3.11.* +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 +2024-05-08T22:19:50Z #6 108.9 Downloading and Extracting Packages: ...working... done +2024-05-08T22:19:50Z #6 108.9 Preparing transaction: ...working... done +2024-05-08T22:19:50Z #6 108.9 Verifying transaction: ...working... done +2024-05-08T22:19:57Z #6 109.3 Executing transaction: ...working... Disabling: jupyterlab_git +2024-05-08T22:19:57Z #6 115.6 - Writing config: /opt/conda/envs/birdy/etc/jupyter +2024-05-08T22:19:57Z #6 115.6 +2024-05-08T22:19:57Z #6 115.6 done +2024-05-08T22:20:01Z #6 120.2 Will remove 2 (4.3 MB) tarball(s). +2024-05-08T22:20:01Z #6 120.2 Will remove 1 index cache(s). +2024-05-08T22:20:01Z #6 120.2 There are no unused package(s) to remove. +2024-05-08T22:20:01Z #6 120.2 There are no tempfile(s) to remove. +2024-05-08T22:20:01Z #6 120.2 There are no logfile(s) to remove. +2024-05-08T22:20:02Z #6 DONE 121.1s +2024-05-08T22:20:02Z +2024-05-08T22:20:02Z #7 exporting to image +2024-05-08T22:20:02Z #7 exporting layers +2024-05-08T22:20:03Z #7 exporting layers 0.7s done +2024-05-08T22:20:03Z #7 writing image sha256:4c426e57d3384620f4d7cd758f878ae96c0747daf45ba5b38ba7313d1b481bef +2024-05-08T22:20:03Z #7 writing image sha256:4c426e57d3384620f4d7cd758f878ae96c0747daf45ba5b38ba7313d1b481bef done +2024-05-08T22:20:03Z #7 naming to docker.io/pavics/workflow-tests:py311-240506-update240508 done +2024-05-08T22:20:03Z #7 DONE 0.7s +2024-05-08T22:20:03Z Pushing index.docker.io/pavics/workflow-tests:py311-240506-update240508... +2024-05-08T22:20:09Z Done! +2024-05-08T22:20:09Z Build finished From 448a347bce6c206d6d245ef8fce67a7e1602c20b Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 8 May 2024 20:09:26 -0400 Subject: [PATCH 101/104] docker: py311-240506-update240508: conda env export --- docker/saved_buildout/conda-env-export.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/saved_buildout/conda-env-export.yml b/docker/saved_buildout/conda-env-export.yml index aa9c5e8..1ddf2b8 100644 --- a/docker/saved_buildout/conda-env-export.yml +++ b/docker/saved_buildout/conda-env-export.yml @@ -48,7 +48,6 @@ dependencies: - bcrypt=4.1.2=py311h46250e7_0 - beautifulsoup4=4.12.3=pyha770c72_0 - bias_correction=0.4=pyhd8ed1ab_0 - - birdy=0.8.6=pyhd8ed1ab_0 - bleach=6.1.0=pyhd8ed1ab_0 - blinker=1.8.1=pyhd8ed1ab_0 - blosc=1.21.5=h0f2a231_0 @@ -255,7 +254,7 @@ dependencies: - jupyterhub=4.1.5=pyh31011fe_0 - jupyterhub-base=4.1.5=pyh31011fe_0 - jupyterlab=3.6.7=pyhd8ed1ab_0 - - jupyterlab-git=0.8.2=py_0 + - jupyterlab-git=0.44.0=pyhd8ed1ab_0 - jupyterlab-system-monitor=0.8.0=pyhd8ed1ab_2 - jupyterlab-topbar=0.6.1=pyhd8ed1ab_2 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_0 @@ -403,7 +402,7 @@ dependencies: - nbconvert=7.16.4=hd8ed1ab_0 - nbconvert-core=7.16.4=pyhd8ed1ab_0 - nbconvert-pandoc=7.16.4=hd8ed1ab_0 - - nbdime=4.0.1=pyhd8ed1ab_0 + - nbdime=3.2.1=pyhd8ed1ab_0 - nbformat=5.10.4=pyhd8ed1ab_0 - nbresuse=0.4.0=pyhd8ed1ab_0 - nbval=0.11.0=pyhd8ed1ab_0 @@ -529,7 +528,6 @@ dependencies: - qtpy=2.4.1=pyhd8ed1ab_0 - rasterio=1.3.6=py311h567e639_0 - raven-hydro=0.2.4=py311h64a4d7b_0 - - ravenpy=0.13.0=py311h38be061_0 - rdma-core=51.0=hd3aeb46_0 - re2=2023.02.02=hcb278e6_0 - readline=8.2=h8228510_1 @@ -695,6 +693,7 @@ dependencies: - zstd=1.5.6=ha6fb4c9_0 - pip: - astunparse==1.6.3 + - birdhouse-birdy==0.8.7 - cairocffi==1.7.0 - cairosvg==2.7.1 - colour==0.1.5 @@ -714,6 +713,7 @@ dependencies: - jupyternotify==0.1.15 - pixiedust==1.1.19 - pytest-tornasync==0.6.0.post2 + - ravenpy==0.13.1 - rdflib==5.0.0 - xmltodict==0.13.0 - xncml==0.4.0 From 931cfc924a147d07b59e88badff9f170e852a03b Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 8 May 2024 21:32:24 -0400 Subject: [PATCH 102/104] docker: py311-240506-update240508: jenkins build, raven nb, only known HydroShare_integration failure --- .../jenkins-buildlogs-raven.txt | 1906 ++++++++--------- 1 file changed, 860 insertions(+), 1046 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-raven.txt b/docker/saved_buildout/jenkins-buildlogs-raven.txt index f319653..8d0a7d4 100644 --- a/docker/saved_buildout/jenkins-buildlogs-raven.txt +++ b/docker/saved_buildout/jenkins-buildlogs-raven.txt @@ -1,5 +1,5 @@ Started by user Long Vu -Replayed #327 +Replayed #5 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -15,14 +15,16 @@ Seen branch in repository origin/master Seen branch in repository origin/new-build-no-jupyter-dash Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build +Seen branch in repository origin/new-docker-build-with-jenkins-override +Seen branch in repository origin/override-jenkins-config Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 9 remote branches -Obtained Jenkinsfile from 54698f17a9ebcb5054a12ab2dbdd43fb5d0c9f3e +Seen 11 remote branches +Obtained Jenkinsfile from ca65e709adbfc074ee946c260be793fdca08d1b9 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 +Running on linux1 in /home/jenkins/agent/workspace/cker-build-with-jenkins-override [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -30,1052 +32,864 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags +Checking out Revision ca65e709adbfc074ee946c260be793fdca08d1b9 (new-docker-build-with-jenkins-override) +Commit message: "Merge remote-tracking branch 'origin/new-docker-build' into new-docker-build-with-jenkins-override" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision b81376901a3df4e786fb234eb1c50f96b084ab18 (new-docker-build) -Commit message: "docker: py311-240506: dockerhub build log" > git config core.sparsecheckout # timeout=10 - > git checkout -f b81376901a3df4e786fb234eb1c50f96b084ab18 # timeout=10 - > git rev-list --no-walk b81376901a3df4e786fb234eb1c50f96b084ab18 # timeout=10 + > git checkout -f ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 + > git rev-list --no-walk ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py311-240506 ++ docker inspect -f . pavics/workflow-tests:py311-240506-update240508 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240506 cat -$ docker top 8f2a7bfc267b19242a9dc42bf8abcee78073955e0fdf9521c0c7665da96d5f01 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/cker-build-with-jenkins-override --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240506-update240508 cat +$ docker top a3275acd14887a1929af7f5e4b800188281d27befd51e92b8ec9f8b8dd84d2df -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-05-07T14:15:09.238Z] Timeout set to expire in 2 hr 0 min +[2024-05-09T00:02:04.036Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-05-07T14:15:10.491Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-05-09T00:02:04.778Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-05-07T14:15:11.173Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-05-07T14:15:11.449Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-05-07T14:15:11.449Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-05-07T14:15:11.449Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-05-07T14:15:11.449Z] TEST_FINCH_REPO has been set to 'false' -[2024-05-07T14:15:11.449Z] FINCH_BRANCH has been set to 'master' -[2024-05-07T14:15:11.449Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-05-07T14:15:11.449Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-05-07T14:15:11.449Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-05-07T14:15:11.449Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-05-07T14:15:11.449Z] TEST_RAVEN_REPO has been set to 'true' -[2024-05-07T14:15:11.449Z] RAVEN_BRANCH has been set to 'main' -[2024-05-07T14:15:11.449Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-05-07T14:15:11.449Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-05-07T14:15:11.449Z] RAVENPY_BRANCH has been set to 'fixnbs_pavics_betaimage' -[2024-05-07T14:15:11.449Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-05-07T14:15:11.449Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-05-07T14:15:11.449Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-05-07T14:15:11.449Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-05-07T14:15:11.449Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-05-07T14:15:11.449Z] + git clean -fdx -[2024-05-07T14:15:14.019Z] Removing .pytest_cache/ -[2024-05-07T14:15:14.019Z] Removing PAVICS-landing-master/ -[2024-05-07T14:15:14.019Z] Removing RavenPy-fixnbs_pavics_betaimage/ -[2024-05-07T14:15:14.019Z] Removing __pycache__/ -[2024-05-07T14:15:14.019Z] Removing buildout/ -[2024-05-07T14:15:14.019Z] Removing esgf-compute-api-devel/ -[2024-05-07T14:15:14.019Z] Removing finch-master/ -[2024-05-07T14:15:14.019Z] Removing pavics-sdi-master/ -[2024-05-07T14:15:14.019Z] Removing raven-main/ -[2024-05-07T14:15:14.019Z] + ./downloadrepos -[2024-05-07T14:15:14.019Z] TEST_PAVICS_SDI_REPO has been set to 'false' -[2024-05-07T14:15:14.019Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-05-07T14:15:14.019Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-05-07T14:15:14.019Z] TEST_FINCH_REPO has been set to 'false' -[2024-05-07T14:15:14.019Z] FINCH_BRANCH has been set to 'master' -[2024-05-07T14:15:14.019Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-05-07T14:15:14.019Z] TEST_PAVICS_LANDING_REPO has been set to 'false' -[2024-05-07T14:15:14.019Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-05-07T14:15:14.019Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-05-07T14:15:14.019Z] TEST_RAVEN_REPO has been set to 'true' -[2024-05-07T14:15:14.019Z] RAVEN_BRANCH has been set to 'main' -[2024-05-07T14:15:14.019Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-05-07T14:15:14.019Z] TEST_RAVENPY_REPO has been set to 'true' -[2024-05-07T14:15:14.019Z] RAVENPY_BRANCH has been set to 'fixnbs_pavics_betaimage' -[2024-05-07T14:15:14.019Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-05-07T14:15:14.020Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-05-07T14:15:14.020Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-05-07T14:15:14.020Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-05-07T14:15:14.020Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' -[2024-05-07T14:15:14.020Z] + rm -rf pavics-sdi-* -[2024-05-07T14:15:14.020Z] + + grep pavics-sdi -[2024-05-07T14:15:14.020Z] ls -[2024-05-07T14:15:14.020Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master -[2024-05-07T14:15:14.020Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-05-07T14:15:14.020Z] + shift -[2024-05-07T14:15:14.020Z] + branch=master -[2024-05-07T14:15:14.020Z] + shift -[2024-05-07T14:15:14.020Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz -[2024-05-07T14:15:14.020Z] + tar xz -[2024-05-07T14:15:36.105Z] + ls -[2024-05-07T14:15:36.105Z] + grep pavics-sdi -[2024-05-07T14:15:36.105Z] pavics-sdi-master -[2024-05-07T14:15:36.105Z] + set +x -[2024-05-07T14:15:36.105Z] + rm -rf finch-* -[2024-05-07T14:15:36.105Z] + ls -[2024-05-07T14:15:36.105Z] + grep finch -[2024-05-07T14:15:36.105Z] + downloadrepos https://github.com/bird-house/finch master -[2024-05-07T14:15:36.105Z] + github_repo=https://github.com/bird-house/finch -[2024-05-07T14:15:36.105Z] + shift -[2024-05-07T14:15:36.105Z] + branch=master -[2024-05-07T14:15:36.105Z] + shift -[2024-05-07T14:15:36.105Z] + tar xz -[2024-05-07T14:15:36.105Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-05-07T14:15:37.519Z] + ls -[2024-05-07T14:15:37.519Z] + grep finch -[2024-05-07T14:15:37.519Z] finch-master -[2024-05-07T14:15:37.519Z] + set +x -[2024-05-07T14:15:37.519Z] + rm -rf PAVICS-landing-* -[2024-05-07T14:15:37.519Z] + + grep PAVICS-landingls -[2024-05-07T14:15:37.519Z] -[2024-05-07T14:15:37.519Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master -[2024-05-07T14:15:37.519Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-05-07T14:15:37.519Z] + shift -[2024-05-07T14:15:37.519Z] + branch=master -[2024-05-07T14:15:37.519Z] + shift -[2024-05-07T14:15:37.519Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz -[2024-05-07T14:15:37.519Z] + tar xz -[2024-05-07T14:16:04.121Z] + ls -[2024-05-07T14:16:04.121Z] + grep PAVICS-landing -[2024-05-07T14:16:04.121Z] PAVICS-landing-master -[2024-05-07T14:16:04.121Z] + set +x -[2024-05-07T14:16:04.121Z] + rm -rf raven-* -[2024-05-07T14:16:04.121Z] + ls -[2024-05-07T14:16:04.121Z] + grep raven -[2024-05-07T14:16:04.121Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-05-07T14:16:04.121Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-05-07T14:16:04.121Z] + shift -[2024-05-07T14:16:04.121Z] + branch=main -[2024-05-07T14:16:04.121Z] + shift -[2024-05-07T14:16:04.121Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-05-07T14:16:04.121Z] + tar xz -[2024-05-07T14:16:04.121Z] + ls -[2024-05-07T14:16:04.121Z] + grep raven -[2024-05-07T14:16:04.121Z] raven-main -[2024-05-07T14:16:04.121Z] + set +x -[2024-05-07T14:16:04.121Z] + rm -rf RavenPy-* -[2024-05-07T14:16:04.121Z] + ls -[2024-05-07T14:16:04.121Z] + grep RavenPy -[2024-05-07T14:16:04.121Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy fixnbs_pavics_betaimage -[2024-05-07T14:16:04.121Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-05-07T14:16:04.121Z] + shift -[2024-05-07T14:16:04.121Z] + branch=fixnbs_pavics_betaimage -[2024-05-07T14:16:04.121Z] + shift -[2024-05-07T14:16:04.121Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/fixnbs_pavics_betaimage.tar.gz -[2024-05-07T14:16:04.121Z] + tar xz -[2024-05-07T14:16:04.121Z] + grep RavenPy -[2024-05-07T14:16:04.121Z] + ls -[2024-05-07T14:16:04.121Z] RavenPy-fixnbs_pavics_betaimage -[2024-05-07T14:16:04.121Z] + set +x -[2024-05-07T14:16:04.121Z] + rm -rf esgf-compute-api-* -[2024-05-07T14:16:04.121Z] + grep esgf-compute-api -[2024-05-07T14:16:04.121Z] + ls -[2024-05-07T14:16:04.121Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-05-07T14:16:04.121Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-05-07T14:16:04.121Z] + shift -[2024-05-07T14:16:04.121Z] + branch=devel -[2024-05-07T14:16:04.121Z] + shift -[2024-05-07T14:16:04.121Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-05-07T14:16:04.121Z] + tar xz -[2024-05-07T14:16:05.086Z] + ls -[2024-05-07T14:16:05.086Z] + grep esgf-compute-api -[2024-05-07T14:16:05.086Z] esgf-compute-api-devel -[2024-05-07T14:16:05.086Z] + set +x -[2024-05-07T14:16:05.086Z] + echo master -[2024-05-07T14:16:05.086Z] + sed s@/@-@g -[2024-05-07T14:16:05.086Z] + PAVICS_SDI_BRANCH=master -[2024-05-07T14:16:05.086Z] + echo Ouranosinc/pavics-sdi -[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g -[2024-05-07T14:16:05.086Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-05-07T14:16:05.086Z] + sed s@/@-@g -[2024-05-07T14:16:05.086Z] + echo master -[2024-05-07T14:16:05.086Z] + FINCH_BRANCH=master -[2024-05-07T14:16:05.086Z] + echo bird-house/finch -[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g -[2024-05-07T14:16:05.086Z] + FINCH_REPO_NAME=finch -[2024-05-07T14:16:05.086Z] + echo master -[2024-05-07T14:16:05.086Z] + sed s@/@-@g -[2024-05-07T14:16:05.086Z] + PAVICS_LANDING_BRANCH=master -[2024-05-07T14:16:05.086Z] + echo Ouranosinc/PAVICS-landing -[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g -[2024-05-07T14:16:05.086Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-05-07T14:16:05.086Z] + sed s@/@-@g -[2024-05-07T14:16:05.086Z] + echo main -[2024-05-07T14:16:05.086Z] + RAVEN_BRANCH=main -[2024-05-07T14:16:05.086Z] + echo Ouranosinc/raven -[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g -[2024-05-07T14:16:05.086Z] + RAVEN_REPO_NAME=raven -[2024-05-07T14:16:05.086Z] + echo fixnbs_pavics_betaimage -[2024-05-07T14:16:05.086Z] + sed s@/@-@g -[2024-05-07T14:16:05.086Z] + RAVENPY_BRANCH=fixnbs_pavics_betaimage -[2024-05-07T14:16:05.086Z] + echo CSHS-CWRA/RavenPy -[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g -[2024-05-07T14:16:05.086Z] + RAVENPY_REPO_NAME=RavenPy -[2024-05-07T14:16:05.086Z] + echo devel -[2024-05-07T14:16:05.086Z] + sed s@/@-@g -[2024-05-07T14:16:05.086Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-05-07T14:16:05.086Z] + sed s@^.*/@@g -[2024-05-07T14:16:05.086Z] + echo ESGF/esgf-compute-api -[2024-05-07T14:16:05.086Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-05-07T14:16:05.086Z] + echo pavics-sdi-master -[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-07T14:16:05.086Z] + PAVICS_SDI_DIR=pavics-sdi-master -[2024-05-07T14:16:05.086Z] + + echo finch-master -[2024-05-07T14:16:05.086Z] sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-07T14:16:05.086Z] + FINCH_DIR=finch-master -[2024-05-07T14:16:05.086Z] + echo PAVICS-landing-master -[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-07T14:16:05.086Z] + PAVICS_LANDING_DIR=PAVICS-landing-master -[2024-05-07T14:16:05.086Z] + echo raven-main -[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-07T14:16:05.086Z] + RAVEN_DIR=raven-main -[2024-05-07T14:16:05.086Z] + echo RavenPy-fixnbs_pavics_betaimage -[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-07T14:16:05.086Z] + RAVENPY_DIR=RavenPy-fixnbs_pavics_betaimage -[2024-05-07T14:16:05.086Z] + echo esgf-compute-api-devel -[2024-05-07T14:16:05.086Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-07T14:16:05.086Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-05-07T14:16:05.086Z] + echo true -[2024-05-07T14:16:05.086Z] + tr [:upper:] [:lower:] -[2024-05-07T14:16:05.086Z] + VERIFY_SSL=true -[2024-05-07T14:16:05.086Z] + [ xtrue = xfalse ] -[2024-05-07T14:16:05.086Z] + rm -v finch-master/setup.cfg -[2024-05-07T14:16:05.086Z] removed 'finch-master/setup.cfg' -[2024-05-07T14:16:05.086Z] + rm -v raven-main/setup.cfg -[2024-05-07T14:16:05.086Z] removed 'raven-main/setup.cfg' -[2024-05-07T14:16:05.086Z] + rm -v raven-main/pyproject.toml -[2024-05-07T14:16:05.086Z] removed 'raven-main/pyproject.toml' -[2024-05-07T14:16:05.086Z] + rm -v RavenPy-fixnbs_pavics_betaimage/setup.cfg -[2024-05-07T14:16:05.086Z] removed 'RavenPy-fixnbs_pavics_betaimage/setup.cfg' -[2024-05-07T14:16:05.087Z] + rm -v RavenPy-fixnbs_pavics_betaimage/tox.ini -[2024-05-07T14:16:05.087Z] removed 'RavenPy-fixnbs_pavics_betaimage/tox.ini' -[2024-05-07T14:16:05.087Z] + rm -v RavenPy-fixnbs_pavics_betaimage/pyproject.toml -[2024-05-07T14:16:05.087Z] removed 'RavenPy-fixnbs_pavics_betaimage/pyproject.toml' -[2024-05-07T14:16:05.087Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-05-07T14:16:05.087Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-05-07T14:16:05.087Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-05-07T14:16:05.087Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] -[2024-05-07T14:16:05.087Z] + echo false -[2024-05-07T14:16:05.087Z] + TEST_MAGPIE_AUTH=false -[2024-05-07T14:16:05.087Z] + echo false -[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] -[2024-05-07T14:16:05.087Z] + TEST_PAVICS_SDI_REPO=false -[2024-05-07T14:16:05.087Z] + echo false -[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] -[2024-05-07T14:16:05.087Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-05-07T14:16:05.087Z] + + echo false -[2024-05-07T14:16:05.087Z] tr [:upper:] [:lower:] -[2024-05-07T14:16:05.087Z] + TEST_FINCH_REPO=false -[2024-05-07T14:16:05.087Z] + echo false -[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] -[2024-05-07T14:16:05.087Z] + TEST_PAVICS_LANDING_REPO=false -[2024-05-07T14:16:05.087Z] + echo true -[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] -[2024-05-07T14:16:05.087Z] + TEST_RAVEN_REPO=true -[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] -[2024-05-07T14:16:05.087Z] + echo true -[2024-05-07T14:16:05.087Z] + TEST_RAVENPY_REPO=true -[2024-05-07T14:16:05.087Z] + echo false -[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] -[2024-05-07T14:16:05.087Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-05-07T14:16:05.087Z] + tr [:upper:] [:lower:] -[2024-05-07T14:16:05.087Z] + echo false -[2024-05-07T14:16:05.087Z] + TEST_LOCAL_NOTEBOOKS=false -[2024-05-07T14:16:05.087Z] + NOTEBOOKS_TO_TEST= -[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] -[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] -[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] -[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] -[2024-05-07T14:16:05.087Z] + [ xtrue = xtrue ] -[2024-05-07T14:16:05.087Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb -[2024-05-07T14:16:05.087Z] + [ xtrue = xtrue ] -[2024-05-07T14:16:05.087Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb -[2024-05-07T14:16:05.087Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/*.ipynb -[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] -[2024-05-07T14:16:05.087Z] + [ xfalse = xtrue ] -[2024-05-07T14:16:05.087Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/*.ipynb -[2024-05-07T14:16:05.370Z] + [ -n ] -[2024-05-07T14:16:05.370Z] + [ ! -z pavics.ouranos.ca ] -[2024-05-07T14:16:05.370Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-05-07T14:16:05.370Z] Will run notebooks against pavics.ouranos.ca -[2024-05-07T14:16:05.370Z] + [ -z ] -[2024-05-07T14:16:05.370Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-05-07T14:16:05.370Z] + git diff -[2024-05-07T14:16:05.370Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-05-07T14:16:05.370Z] + [ -n ] -[2024-05-07T14:16:05.370Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax -[2024-05-07T14:16:07.922Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-05-07T14:16:07.922Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-05-07T14:16:07.922Z] ============================= test session starts ============================== -[2024-05-07T14:16:07.922Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 -[2024-05-07T14:16:07.922Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@3 -[2024-05-07T14:16:07.922Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-05-07T14:16:07.922Z] collected 243 items -[2024-05-07T14:16:07.922Z] -[2024-05-07T14:16:20.900Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] -[2024-05-07T14:16:24.282Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] -[2024-05-07T14:16:40.324Z] ...... [ 6%] -[2024-05-07T14:16:44.571Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb . [ 6%] -[2024-05-07T14:16:44.571Z] ..... [ 9%] -[2024-05-07T14:16:47.265Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb . [ 9%] -[2024-05-07T14:16:57.556Z] ....... [ 12%] -[2024-05-07T14:17:04.440Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] -[2024-05-07T14:17:13.891Z] .............. [ 18%] -[2024-05-07T14:17:24.221Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb . [ 18%] -[2024-05-07T14:19:07.724Z] .......... [ 23%] -[2024-05-07T14:19:07.724Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb . [ 23%] -[2024-05-07T14:19:16.722Z] ....FFFFFFFF....... [ 31%] -[2024-05-07T14:19:21.998Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb . [ 31%] -[2024-05-07T14:19:33.358Z] ............ [ 36%] -[2024-05-07T14:19:37.700Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb . [ 37%] -[2024-05-07T14:19:41.923Z] ..... [ 39%] -[2024-05-07T14:19:47.216Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] -[2024-05-07T14:19:52.418Z] ..... [ 41%] -[2024-05-07T14:19:53.800Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] -[2024-05-07T14:23:55.062Z] ................. [ 48%] -[2024-05-07T14:24:00.314Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] -[2024-05-07T14:24:07.257Z] .... [ 51%] -[2024-05-07T14:24:08.631Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb . [ 51%] -[2024-05-07T14:25:11.218Z] ....... [ 54%] -[2024-05-07T14:25:19.308Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb . [ 54%] -[2024-05-07T14:25:50.052Z] ....... [ 57%] -[2024-05-07T14:25:58.195Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 58%] -[2024-05-07T14:26:06.497Z] ....... [ 60%] -[2024-05-07T14:26:07.869Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb . [ 61%] -[2024-05-07T14:26:31.052Z] ....... [ 64%] -[2024-05-07T14:26:39.168Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] -[2024-05-07T14:27:01.672Z] ....... [ 67%] -[2024-05-07T14:27:04.941Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] -[2024-05-07T14:27:33.059Z] ....... [ 70%] -[2024-05-07T14:27:35.600Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb F [ 71%] -[2024-05-07T14:27:35.600Z] FFF [ 72%] -[2024-05-07T14:27:43.705Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb . [ 72%] -[2024-05-07T14:27:53.789Z] ..... [ 74%] -[2024-05-07T14:27:55.157Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb . [ 75%] -[2024-05-07T14:28:41.820Z] .. [ 76%] -[2024-05-07T14:28:42.077Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb . [ 76%] -[2024-05-07T14:29:06.636Z] ...... [ 79%] -[2024-05-07T14:29:06.636Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] -[2024-05-07T14:29:17.939Z] ............. [ 84%] -[2024-05-07T14:29:23.186Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb . [ 85%] -[2024-05-07T14:29:35.368Z] .... [ 86%] -[2024-05-07T14:29:40.639Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb . [ 87%] -[2024-05-07T14:29:42.283Z] .......... [ 91%] -[2024-05-07T14:29:52.259Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] -[2024-05-07T14:34:14.492Z] .................... [100%] -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] =================================== FAILURES =================================== -[2024-05-07T14:34:14.492Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 _ -[2024-05-07T14:34:14.492Z] Notebook cell execution failed -[2024-05-07T14:34:14.492Z] Cell 5: Cell execution caused an exception -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] Input: -[2024-05-07T14:34:14.492Z] # If we want to import our own raven configuration files and forcing data, we can do so by importing them -[2024-05-07T14:34:14.492Z] # using the ravenpy.run method. This will run the model exactly as the users will have designed it. -[2024-05-07T14:34:14.492Z] from ravenpy import OutputReader -[2024-05-07T14:34:14.492Z] from ravenpy.ravenpy import run -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] # This is used to specify the raven configuration files prefixes. In this case, we will retake the previously created files -[2024-05-07T14:34:14.492Z] run_name = run_name -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] # This is the path where the files were uploaded by the user. Model outputs will also be placed there in a -[2024-05-07T14:34:14.492Z] # subfolder called "outputs" -[2024-05-07T14:34:14.492Z] configdir = workdir -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-05-07T14:34:14.492Z] outputs_path = run(modelname=run_name, configdir=configdir) -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] # Get the outputs using the Output Reader object. -[2024-05-07T14:34:14.492Z] outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] Traceback: -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.492Z] RavenError Traceback (most recent call last) -[2024-05-07T14:34:14.492Z] Cell In[1], line 14 -[2024-05-07T14:34:14.492Z]  11 configdir = workdir -[2024-05-07T14:34:14.492Z]  13 # Run the model and get the path to the outputs folder that can be used in the output reader. -[2024-05-07T14:34:14.492Z] ---> 14 outputs_path = run(modelname=run_name, configdir=configdir) -[2024-05-07T14:34:14.492Z]  16 # Get the outputs using the Output Reader object. -[2024-05-07T14:34:14.492Z]  17 outputs = OutputReader(run_name=run_name, path=outputs_path) -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-05-07T14:34:14.492Z]  320 warn(msg, category=RavenWarning) -[2024-05-07T14:34:14.492Z]  322 if messages["ERROR"]: -[2024-05-07T14:34:14.492Z] --> 323 raise RavenError( -[2024-05-07T14:34:14.492Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-05-07T14:34:14.492Z]  325 ) -[2024-05-07T14:34:14.492Z]  327 if returncode != 0: -[2024-05-07T14:34:14.492Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] RavenError: Config directory: /tmp/NB457mm4g63 -[2024-05-07T14:34:14.492Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 _ -[2024-05-07T14:34:14.492Z] Notebook cell execution failed -[2024-05-07T14:34:14.492Z] Cell 6: Cell execution caused an exception -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] Input: -[2024-05-07T14:34:14.492Z] # If we already have a model configuration that we built in-memory (such as the "m" GR4JCN model we built above), -[2024-05-07T14:34:14.492Z] # then we can use the Emulator object to simply emulate the model we were working on and get outputs directly -[2024-05-07T14:34:14.492Z] from ravenpy import Emulator -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] # Prepare the emulator by writing files on disk -[2024-05-07T14:34:14.492Z] e = Emulator(config=m) -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] # Run the model and get the outputs. -[2024-05-07T14:34:14.492Z] outputs = e.run() -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] Traceback: -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.492Z] RavenError Traceback (most recent call last) -[2024-05-07T14:34:14.492Z] Cell In[1], line 9 -[2024-05-07T14:34:14.492Z]  6 e = Emulator(config=m) -[2024-05-07T14:34:14.492Z]  8 # Run the model and get the outputs. -[2024-05-07T14:34:14.492Z] ----> 9 outputs = e.run() -[2024-05-07T14:34:14.492Z] -[2024-05-07T14:34:14.492Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:68, in Emulator.run(self, overwrite) -[2024-05-07T14:34:14.492Z]  64 if not (self.workdir / f"{self.modelname}.rvi").exists(): -[2024-05-07T14:34:14.492Z]  65 # FIXME: No attribute 'write_rv' on Emulator [attribute-error] -[2024-05-07T14:34:14.493Z]  66 self.write_rv(overwrite=overwrite) -[2024-05-07T14:34:14.493Z] ---> 68 self._output_path = run( -[2024-05-07T14:34:14.493Z]  69  self.modelname, self.workdir, "output", overwrite=overwrite -[2024-05-07T14:34:14.493Z]  70 ) -[2024-05-07T14:34:14.493Z]  71 self._output = OutputReader(self.config.run_name, path=self._output_path) -[2024-05-07T14:34:14.493Z]  72 return self._output -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/ravenpy/ravenpy.py:323, in run(modelname, configdir, outputdir, overwrite, verbose) -[2024-05-07T14:34:14.493Z]  320 warn(msg, category=RavenWarning) -[2024-05-07T14:34:14.493Z]  322 if messages["ERROR"]: -[2024-05-07T14:34:14.493Z] --> 323 raise RavenError( -[2024-05-07T14:34:14.493Z]  324 "\n".join([f"Config directory: {configdir}"] + messages["ERROR"]) -[2024-05-07T14:34:14.493Z]  325 ) -[2024-05-07T14:34:14.493Z]  327 if returncode != 0: -[2024-05-07T14:34:14.493Z]  328 raise OSError(f"Raven segfaulted : \n{stdout}") -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] RavenError: Config directory: /tmp/tmppo6gsqmq -[2024-05-07T14:34:14.493Z] :CustomOutput command: Unrecognized custom output temporal aggregation method -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 _ -[2024-05-07T14:34:14.493Z] Notebook cell execution failed -[2024-05-07T14:34:14.493Z] Cell 7: Cell execution caused an exception -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] Input: -[2024-05-07T14:34:14.493Z] # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-05-07T14:34:14.493Z] outputs.files -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] Traceback: -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.493Z] NameError Traceback (most recent call last) -[2024-05-07T14:34:14.493Z] Cell In[1], line 2 -[2024-05-07T14:34:14.493Z]  1 # Show the files available in the outputs. Each of these can be accessed to get information about the simulation. -[2024-05-07T14:34:14.493Z] ----> 2 outputs.files -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] NameError: name 'outputs' is not defined -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 _ -[2024-05-07T14:34:14.493Z] Notebook cell execution failed -[2024-05-07T14:34:14.493Z] Cell 8: Cell execution caused an exception -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] Input: -[2024-05-07T14:34:14.493Z] # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-05-07T14:34:14.493Z] print("----------------HYDROGRAPH----------------") -[2024-05-07T14:34:14.493Z] display(outputs.hydrograph) -[2024-05-07T14:34:14.493Z] print("") -[2024-05-07T14:34:14.493Z] print("-----------------STORAGE------------------") -[2024-05-07T14:34:14.493Z] display(outputs.storage) -[2024-05-07T14:34:14.493Z] print("") -[2024-05-07T14:34:14.493Z] print("-----------------SOLUTION-----------------") -[2024-05-07T14:34:14.493Z] display(outputs.solution) -[2024-05-07T14:34:14.493Z] print("") -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] Traceback: -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.493Z] NameError Traceback (most recent call last) -[2024-05-07T14:34:14.493Z] Cell In[1], line 3 -[2024-05-07T14:34:14.493Z]  1 # The model outputs are actually already loaded as Python objects in memory, thus we can access the data directly. -[2024-05-07T14:34:14.493Z]  2 print("----------------HYDROGRAPH----------------") -[2024-05-07T14:34:14.493Z] ----> 3 display(outputs.hydrograph) -[2024-05-07T14:34:14.493Z]  4 print("") -[2024-05-07T14:34:14.493Z]  5 print("-----------------STORAGE------------------") -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] NameError: name 'outputs' is not defined -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 _ -[2024-05-07T14:34:14.493Z] Notebook cell execution failed -[2024-05-07T14:34:14.493Z] Cell 9: Cell execution caused an exception -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] Input: -[2024-05-07T14:34:14.493Z] # Import the graphing utility built to handle Raven model outputs -[2024-05-07T14:34:14.493Z] from ravenpy.utilities.nb_graphs import hydrographs -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] hydrograph_objects = outputs.hydrograph -[2024-05-07T14:34:14.493Z] hydrographs(hydrograph_objects) -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] Traceback: -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.493Z] NameError Traceback (most recent call last) -[2024-05-07T14:34:14.493Z] Cell In[1], line 4 -[2024-05-07T14:34:14.493Z]  1 # Import the graphing utility built to handle Raven model outputs -[2024-05-07T14:34:14.493Z]  2 from ravenpy.utilities.nb_graphs import hydrographs -[2024-05-07T14:34:14.493Z] ----> 4 hydrograph_objects = outputs.hydrograph -[2024-05-07T14:34:14.493Z]  5 hydrographs(hydrograph_objects) -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] NameError: name 'outputs' is not defined -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 _ -[2024-05-07T14:34:14.493Z] Notebook cell execution failed -[2024-05-07T14:34:14.493Z] Cell 10: Cell execution caused an exception -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] Input: -[2024-05-07T14:34:14.493Z] outputs.hydrograph.q_sim.plot() -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] Traceback: -[2024-05-07T14:34:14.493Z] -[2024-05-07T14:34:14.493Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.494Z] NameError Traceback (most recent call last) -[2024-05-07T14:34:14.494Z] Cell In[1], line 1 -[2024-05-07T14:34:14.494Z] ----> 1 outputs.hydrograph.q_sim.plot() -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] NameError: name 'outputs' is not defined -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 _ -[2024-05-07T14:34:14.494Z] Notebook cell execution failed -[2024-05-07T14:34:14.494Z] Cell 11: Cell execution caused an exception -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] Input: -[2024-05-07T14:34:14.494Z] print(list(outputs.storage.keys())) -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] Traceback: -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.494Z] NameError Traceback (most recent call last) -[2024-05-07T14:34:14.494Z] Cell In[1], line 1 -[2024-05-07T14:34:14.494Z] ----> 1 print(list(outputs.storage.keys())) -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] NameError: name 'outputs' is not defined -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 _ -[2024-05-07T14:34:14.494Z] Notebook cell execution failed -[2024-05-07T14:34:14.494Z] Cell 12: Cell execution caused an exception -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] Input: -[2024-05-07T14:34:14.494Z] # Plot the "Snow" variable -[2024-05-07T14:34:14.494Z] outputs.storage["Snow"].plot() -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] Traceback: -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.494Z] NameError Traceback (most recent call last) -[2024-05-07T14:34:14.494Z] Cell In[1], line 2 -[2024-05-07T14:34:14.494Z]  1 # Plot the "Snow" variable -[2024-05-07T14:34:14.494Z] ----> 2 outputs.storage["Snow"].plot() -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] NameError: name 'outputs' is not defined -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 0 _ -[2024-05-07T14:34:14.494Z] Notebook cell execution failed -[2024-05-07T14:34:14.494Z] Cell 0: Cell execution caused an exception -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] Input: -[2024-05-07T14:34:14.494Z] import os -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] from hsclient import HydroShare, Token -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] # Authentication method using username and password -[2024-05-07T14:34:14.494Z] """ -[2024-05-07T14:34:14.494Z] username = 'XXXXX' -[2024-05-07T14:34:14.494Z] password = 'XXXXX' -[2024-05-07T14:34:14.494Z] hs = HydroShare(username=username, password=password) -[2024-05-07T14:34:14.494Z] """ -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-05-07T14:34:14.494Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] token = Token(access_token=access_token, token_type="bearer") -[2024-05-07T14:34:14.494Z] hs = HydroShare(client_id=client_id, token=token) -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] Traceback: -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.494Z] ValidationError Traceback (most recent call last) -[2024-05-07T14:34:14.494Z] Cell In[1], line 15 -[2024-05-07T14:34:14.494Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") -[2024-05-07T14:34:14.494Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") -[2024-05-07T14:34:14.494Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") -[2024-05-07T14:34:14.494Z]  16 hs = HydroShare(client_id=client_id, token=token) -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/pydantic/main.py:176, in BaseModel.__init__(self, **data) -[2024-05-07T14:34:14.494Z]  174 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks -[2024-05-07T14:34:14.494Z]  175 __tracebackhide__ = True -[2024-05-07T14:34:14.494Z] --> 176 self.__pydantic_validator__.validate_python(data, self_instance=self) -[2024-05-07T14:34:14.494Z] -[2024-05-07T14:34:14.494Z] ValidationError: 4 validation errors for Token -[2024-05-07T14:34:14.494Z] scope -[2024-05-07T14:34:14.494Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) -[2024-05-07T14:34:14.495Z]  2 for r in results: -[2024-05-07T14:34:14.495Z]  3 print(r.resource_title, ": ", r.resource_id) -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.495Z] NameError: name 'hs' is not defined -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.495Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 2 _ -[2024-05-07T14:34:14.495Z] Notebook cell execution failed -[2024-05-07T14:34:14.495Z] Cell 2: Cell execution caused an exception -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.495Z] Input: -[2024-05-07T14:34:14.495Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-05-07T14:34:14.495Z] res.files() -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.495Z] Traceback: -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.495Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.495Z] NameError Traceback (most recent call last) -[2024-05-07T14:34:14.495Z] Cell In[1], line 1 -[2024-05-07T14:34:14.495Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) -[2024-05-07T14:34:14.495Z]  2 res.files() -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.495Z] NameError: name 'hs' is not defined -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.495Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 3 _ -[2024-05-07T14:34:14.495Z] Notebook cell execution failed -[2024-05-07T14:34:14.495Z] Cell 3: Cell execution caused an exception -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.495Z] Input: -[2024-05-07T14:34:14.495Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.495Z] Traceback: -[2024-05-07T14:34:14.495Z] -[2024-05-07T14:34:14.496Z] --------------------------------------------------------------------------- -[2024-05-07T14:34:14.496Z] NameError Traceback (most recent call last) -[2024-05-07T14:34:14.496Z] Cell In[1], line 1 -[2024-05-07T14:34:14.496Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") -[2024-05-07T14:34:14.496Z] -[2024-05-07T14:34:14.496Z] NameError: name 'res' is not defined -[2024-05-07T14:34:14.496Z] -[2024-05-07T14:34:14.496Z] =========================== short test summary info ============================ -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 5 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 6 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 7 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 8 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 9 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 10 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 11 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb::Cell 12 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 0 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 1 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 2 -[2024-05-07T14:34:14.496Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 3 -[2024-05-07T14:34:14.496Z] ================= 12 failed, 231 passed in 1087.06s (0:18:07) ================== -[2024-05-07T14:34:14.758Z] + EXIT_CODE=1 -[2024-05-07T14:34:14.758Z] + echo true -[2024-05-07T14:34:14.758Z] + tr [:upper:] [:lower:] -[2024-05-07T14:34:14.758Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-05-07T14:34:14.758Z] + [ xtrue = xtrue ] -[2024-05-07T14:34:14.758Z] + mkdir -p buildout -[2024-05-07T14:34:14.758Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-05-07T14:34:14.758Z] + filename=Region_selection.ipynb -[2024-05-07T14:34:14.758Z] + echo Region_selection.ipynb -[2024-05-07T14:34:14.758Z] + sed s/.ipynb$// -[2024-05-07T14:34:14.758Z] + filename=Region_selection -[2024-05-07T14:34:14.758Z] + [ -e buildout/Region_selection.output.ipynb ] -[2024-05-07T14:34:14.759Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb -[2024-05-07T14:34:16.726Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook -[2024-05-07T14:34:17.662Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:34:17.662Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:34:17.662Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:34:17.662Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:34:29.877Z] [NbConvertApp] Writing 107223 bytes to buildout/Region_selection.output.ipynb -[2024-05-07T14:34:29.877Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-05-07T14:34:29.877Z] + filename=Subset_climate_data_over_watershed.ipynb -[2024-05-07T14:34:29.877Z] + echo Subset_climate_data_over_watershed.ipynb -[2024-05-07T14:34:29.877Z] + sed s/.ipynb$// -[2024-05-07T14:34:29.877Z] + filename=Subset_climate_data_over_watershed -[2024-05-07T14:34:29.877Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] -[2024-05-07T14:34:29.877Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb -[2024-05-07T14:34:31.261Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook -[2024-05-07T14:34:31.835Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:34:31.835Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:34:31.835Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:34:31.835Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:34:49.941Z] [NbConvertApp] Writing 97069 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb -[2024-05-07T14:34:49.941Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-05-07T14:34:49.941Z] + filename=00_Introduction_to_JupyterLab.ipynb -[2024-05-07T14:34:49.941Z] + + echo 00_Introduction_to_JupyterLab.ipynb -[2024-05-07T14:34:49.941Z] sed s/.ipynb$// -[2024-05-07T14:34:49.941Z] + filename=00_Introduction_to_JupyterLab -[2024-05-07T14:34:49.941Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] -[2024-05-07T14:34:49.941Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb -[2024-05-07T14:34:49.941Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook -[2024-05-07T14:34:50.874Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:34:50.874Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:34:50.874Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:34:50.874Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:34:52.771Z] [NbConvertApp] Writing 13178 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb -[2024-05-07T14:34:52.771Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-05-07T14:34:52.771Z] + filename=01_Getting_watershed_boundaries.ipynb -[2024-05-07T14:34:52.771Z] + echo 01_Getting_watershed_boundaries.ipynb -[2024-05-07T14:34:52.771Z] + sed s/.ipynb$// -[2024-05-07T14:34:52.771Z] + filename=01_Getting_watershed_boundaries -[2024-05-07T14:34:52.771Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] -[2024-05-07T14:34:52.771Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb -[2024-05-07T14:34:54.670Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook -[2024-05-07T14:34:55.681Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:34:55.681Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:34:55.681Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:34:55.681Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:35:07.873Z] [NbConvertApp] Writing 109426 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb -[2024-05-07T14:35:07.873Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-05-07T14:35:07.873Z] + filename=02_Extract_geographical_watershed_properties.ipynb -[2024-05-07T14:35:07.873Z] + sed s/.ipynb$// -[2024-05-07T14:35:07.873Z] + echo 02_Extract_geographical_watershed_properties.ipynb -[2024-05-07T14:35:07.873Z] + filename=02_Extract_geographical_watershed_properties -[2024-05-07T14:35:07.873Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] -[2024-05-07T14:35:07.873Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb -[2024-05-07T14:35:09.240Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook -[2024-05-07T14:35:10.168Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:35:10.168Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:35:10.168Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:35:10.168Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:35:25.030Z] [NbConvertApp] Writing 278051 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb -[2024-05-07T14:35:25.030Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-05-07T14:35:25.030Z] + filename=03_Extracting_forcing_data.ipynb -[2024-05-07T14:35:25.030Z] + echo 03_Extracting_forcing_data.ipynb -[2024-05-07T14:35:25.030Z] + sed s/.ipynb$// -[2024-05-07T14:35:25.030Z] + filename=03_Extracting_forcing_data -[2024-05-07T14:35:25.030Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] -[2024-05-07T14:35:25.030Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb -[2024-05-07T14:35:25.969Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook -[2024-05-07T14:35:27.343Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:35:27.343Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:35:27.343Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:35:27.343Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:37:03.769Z] [NbConvertApp] Writing 107673 bytes to buildout/03_Extracting_forcing_data.output.ipynb -[2024-05-07T14:37:04.027Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-05-07T14:37:04.027Z] + filename=04_Emulating_hydrological_models.ipynb -[2024-05-07T14:37:04.027Z] + sed s/.ipynb$// -[2024-05-07T14:37:04.027Z] + echo 04_Emulating_hydrological_models.ipynb -[2024-05-07T14:37:04.027Z] + filename=04_Emulating_hydrological_models -[2024-05-07T14:37:04.027Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] -[2024-05-07T14:37:04.027Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb -[2024-05-07T14:37:05.935Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook -[2024-05-07T14:37:06.868Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:37:06.868Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:37:06.868Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:37:06.868Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:37:21.730Z] [NbConvertApp] Writing 137339 bytes to buildout/04_Emulating_hydrological_models.output.ipynb -[2024-05-07T14:37:21.730Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-05-07T14:37:21.730Z] + filename=05_Advanced_RavenPy_configuration.ipynb -[2024-05-07T14:37:21.730Z] + echo 05_Advanced_RavenPy_configuration.ipynb -[2024-05-07T14:37:21.730Z] + sed s/.ipynb$// -[2024-05-07T14:37:21.730Z] + filename=05_Advanced_RavenPy_configuration -[2024-05-07T14:37:21.730Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] -[2024-05-07T14:37:21.730Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb -[2024-05-07T14:37:22.301Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook -[2024-05-07T14:37:23.231Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:37:23.231Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:37:23.231Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:37:23.231Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:37:41.290Z] [NbConvertApp] Writing 313551 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb -[2024-05-07T14:37:41.290Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb -[2024-05-07T14:37:41.290Z] + filename=06_Raven_calibration.ipynb -[2024-05-07T14:37:41.290Z] + echo 06_Raven_calibration.ipynb -[2024-05-07T14:37:41.290Z] + sed s/.ipynb$// -[2024-05-07T14:37:41.290Z] + filename=06_Raven_calibration -[2024-05-07T14:37:41.290Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] -[2024-05-07T14:37:41.290Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb -[2024-05-07T14:37:41.548Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb to notebook -[2024-05-07T14:37:42.598Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:37:42.598Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:37:42.598Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:37:42.598Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:37:52.559Z] [NbConvertApp] Writing 16340 bytes to buildout/06_Raven_calibration.output.ipynb -[2024-05-07T14:37:52.559Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-05-07T14:37:52.559Z] + filename=07_Making_and_using_hotstart_files.ipynb -[2024-05-07T14:37:52.559Z] + echo 07_Making_and_using_hotstart_files.ipynb -[2024-05-07T14:37:52.559Z] + sed s/.ipynb$// -[2024-05-07T14:37:52.559Z] + filename=07_Making_and_using_hotstart_files -[2024-05-07T14:37:52.559Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] -[2024-05-07T14:37:52.559Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb -[2024-05-07T14:37:53.941Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook -[2024-05-07T14:37:54.874Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:37:54.874Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:37:54.874Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:37:54.874Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:38:07.064Z] [NbConvertApp] Writing 205512 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb -[2024-05-07T14:38:07.064Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-05-07T14:38:07.064Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-05-07T14:38:07.064Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-05-07T14:38:07.064Z] + sed s/.ipynb$// -[2024-05-07T14:38:07.064Z] + filename=08_Getting_and_bias_correcting_CMIP6_data -[2024-05-07T14:38:07.064Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] -[2024-05-07T14:38:07.064Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb -[2024-05-07T14:38:08.001Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook -[2024-05-07T14:38:09.380Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:38:09.380Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:38:09.380Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:38:09.380Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:42:15.858Z] [NbConvertApp] Writing 249082 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb -[2024-05-07T14:42:15.858Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-05-07T14:42:15.858Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb -[2024-05-07T14:42:15.858Z] + sed s/.ipynb$// -[2024-05-07T14:42:15.858Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb -[2024-05-07T14:42:15.858Z] + filename=09_Hydrological_impacts_of_climate_change -[2024-05-07T14:42:15.858Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] -[2024-05-07T14:42:15.858Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb -[2024-05-07T14:42:15.858Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook -[2024-05-07T14:42:15.858Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:42:15.858Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:42:15.858Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:42:15.858Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:42:25.887Z] [NbConvertApp] Writing 128174 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb -[2024-05-07T14:42:25.887Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb -[2024-05-07T14:42:25.887Z] + filename=10_Data_assimilation.ipynb -[2024-05-07T14:42:25.887Z] + echo 10_Data_assimilation.ipynb -[2024-05-07T14:42:25.887Z] + sed s/.ipynb$// -[2024-05-07T14:42:25.887Z] + filename=10_Data_assimilation -[2024-05-07T14:42:25.887Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] -[2024-05-07T14:42:25.887Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb -[2024-05-07T14:42:26.818Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb to notebook -[2024-05-07T14:42:27.750Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:42:27.750Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:42:27.750Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:42:27.750Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:43:35.393Z] [NbConvertApp] Writing 432765 bytes to buildout/10_Data_assimilation.output.ipynb -[2024-05-07T14:43:35.393Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-05-07T14:43:35.393Z] + filename=11_Climatological_ESP_forecasting.ipynb -[2024-05-07T14:43:35.393Z] + echo 11_Climatological_ESP_forecasting.ipynb -[2024-05-07T14:43:35.393Z] + sed s/.ipynb$// -[2024-05-07T14:43:35.393Z] + filename=11_Climatological_ESP_forecasting -[2024-05-07T14:43:35.393Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] -[2024-05-07T14:43:35.393Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb -[2024-05-07T14:43:35.393Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook -[2024-05-07T14:43:35.393Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:43:35.393Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:43:35.393Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:43:35.393Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:44:14.168Z] [NbConvertApp] Writing 176184 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb -[2024-05-07T14:44:14.168Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-05-07T14:44:14.168Z] + filename=12_Performing_hindcasting_experiments.ipynb -[2024-05-07T14:44:14.168Z] + echo 12_Performing_hindcasting_experiments.ipynb -[2024-05-07T14:44:14.168Z] + sed s/.ipynb$// -[2024-05-07T14:44:14.168Z] + filename=12_Performing_hindcasting_experiments -[2024-05-07T14:44:14.168Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] -[2024-05-07T14:44:14.168Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb -[2024-05-07T14:44:14.168Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook -[2024-05-07T14:44:14.168Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:44:14.168Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:44:14.168Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:44:14.168Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:44:29.017Z] [NbConvertApp] Writing 150539 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb -[2024-05-07T14:44:29.017Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-05-07T14:44:29.017Z] + filename=Assess_probabilistic_flood_risk.ipynb -[2024-05-07T14:44:29.017Z] + echo Assess_probabilistic_flood_risk.ipynb -[2024-05-07T14:44:29.017Z] + sed s/.ipynb$// -[2024-05-07T14:44:29.017Z] + filename=Assess_probabilistic_flood_risk -[2024-05-07T14:44:29.017Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] -[2024-05-07T14:44:29.017Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb -[2024-05-07T14:44:30.395Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook -[2024-05-07T14:44:31.771Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:44:31.771Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:44:31.771Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:44:31.771Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:44:58.296Z] [NbConvertApp] Writing 163111 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb -[2024-05-07T14:44:58.296Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-05-07T14:44:58.296Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-05-07T14:44:58.296Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-05-07T14:44:58.296Z] + sed s/.ipynb$// -[2024-05-07T14:44:58.296Z] + filename=Comparing_hindcasts_and_ESP_forecasts -[2024-05-07T14:44:58.296Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] -[2024-05-07T14:44:58.296Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb -[2024-05-07T14:44:59.228Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook -[2024-05-07T14:45:00.164Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:45:00.164Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:45:00.164Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:45:00.164Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:45:38.909Z] [NbConvertApp] Writing 314030 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb -[2024-05-07T14:45:38.909Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-05-07T14:45:38.909Z] + filename=Distributed_hydrological_modelling.ipynb -[2024-05-07T14:45:38.909Z] + sed s/.ipynb$// -[2024-05-07T14:45:38.909Z] + echo Distributed_hydrological_modelling.ipynb -[2024-05-07T14:45:38.909Z] + filename=Distributed_hydrological_modelling -[2024-05-07T14:45:38.909Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] -[2024-05-07T14:45:38.909Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb -[2024-05-07T14:45:38.909Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook -[2024-05-07T14:45:38.909Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:45:38.909Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:45:38.909Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:45:38.909Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:46:10.998Z] [NbConvertApp] Writing 102750 bytes to buildout/Distributed_hydrological_modelling.output.ipynb -[2024-05-07T14:46:10.999Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb -[2024-05-07T14:46:10.999Z] + filename=HydroShare_integration.ipynb -[2024-05-07T14:46:10.999Z] + echo HydroShare_integration.ipynb -[2024-05-07T14:46:10.999Z] + sed s/.ipynb$// -[2024-05-07T14:46:10.999Z] + filename=HydroShare_integration -[2024-05-07T14:46:10.999Z] + [ -e buildout/HydroShare_integration.output.ipynb ] -[2024-05-07T14:46:10.999Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb -[2024-05-07T14:46:10.999Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb to notebook -[2024-05-07T14:46:10.999Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:46:10.999Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:46:10.999Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:46:10.999Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:46:14.288Z] [NbConvertApp] Writing 11583 bytes to buildout/HydroShare_integration.output.ipynb -[2024-05-07T14:46:14.550Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-05-07T14:46:14.550Z] + filename=Hydrological_realtime_forecasting.ipynb -[2024-05-07T14:46:14.550Z] + sed s/.ipynb$//+ -[2024-05-07T14:46:14.550Z] echo Hydrological_realtime_forecasting.ipynb -[2024-05-07T14:46:14.550Z] + filename=Hydrological_realtime_forecasting -[2024-05-07T14:46:14.550Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] -[2024-05-07T14:46:14.550Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb -[2024-05-07T14:46:16.459Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook -[2024-05-07T14:46:17.021Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:46:17.021Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:46:17.021Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:46:17.021Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:46:38.996Z] [NbConvertApp] Writing 153509 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb -[2024-05-07T14:46:38.996Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-05-07T14:46:38.996Z] + filename=Managing_Jupyter_Environments.ipynb -[2024-05-07T14:46:38.996Z] + sed s/.ipynb$// -[2024-05-07T14:46:38.996Z] + echo Managing_Jupyter_Environments.ipynb -[2024-05-07T14:46:38.996Z] + filename=Managing_Jupyter_Environments -[2024-05-07T14:46:38.996Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] -[2024-05-07T14:46:38.996Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb -[2024-05-07T14:46:38.996Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook -[2024-05-07T14:46:38.996Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:46:38.996Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:46:38.996Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:46:38.996Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:46:47.130Z] [NbConvertApp] Writing 7996 bytes to buildout/Managing_Jupyter_Environments.output.ipynb -[2024-05-07T14:46:47.130Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb -[2024-05-07T14:46:47.130Z] + filename=Perform_Regionalization.ipynb -[2024-05-07T14:46:47.130Z] + + echo Perform_Regionalization.ipynbsed -[2024-05-07T14:46:47.130Z] s/.ipynb$// -[2024-05-07T14:46:47.130Z] + filename=Perform_Regionalization -[2024-05-07T14:46:47.130Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] -[2024-05-07T14:46:47.130Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb -[2024-05-07T14:46:48.517Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb to notebook -[2024-05-07T14:46:49.453Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:46:49.453Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:46:49.453Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:46:49.453Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:47:21.616Z] [NbConvertApp] Writing 120973 bytes to buildout/Perform_Regionalization.output.ipynb -[2024-05-07T14:47:21.616Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-05-07T14:47:21.616Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-05-07T14:47:21.616Z] + echo Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-05-07T14:47:21.616Z] + sed s/.ipynb$// -[2024-05-07T14:47:21.616Z] + filename=Running_HMETS_with_CANOPEX_dataset -[2024-05-07T14:47:21.616Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] -[2024-05-07T14:47:21.617Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb -[2024-05-07T14:47:21.617Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook -[2024-05-07T14:47:21.617Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:47:21.617Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:47:21.617Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:47:21.617Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:47:36.522Z] [NbConvertApp] Writing 118105 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb -[2024-05-07T14:47:36.522Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb -[2024-05-07T14:47:36.522Z] + filename=Sensitivity_analysis.ipynb -[2024-05-07T14:47:36.522Z] + + echosed Sensitivity_analysis.ipynb s/.ipynb$// -[2024-05-07T14:47:36.522Z] -[2024-05-07T14:47:36.522Z] + filename=Sensitivity_analysis -[2024-05-07T14:47:36.522Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] -[2024-05-07T14:47:36.522Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb -[2024-05-07T14:47:37.468Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb to notebook -[2024-05-07T14:47:38.407Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:47:38.407Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:47:38.407Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:47:38.407Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:47:56.643Z] [NbConvertApp] Writing 28129 bytes to buildout/Sensitivity_analysis.output.ipynb -[2024-05-07T14:47:56.643Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb -[2024-05-07T14:47:56.643Z] + filename=time_series_analysis.ipynb -[2024-05-07T14:47:56.643Z] + sed s/.ipynb$// -[2024-05-07T14:47:56.643Z] + echo time_series_analysis.ipynb -[2024-05-07T14:47:56.643Z] + filename=time_series_analysis -[2024-05-07T14:47:56.643Z] + [ -e buildout/time_series_analysis.output.ipynb ] -[2024-05-07T14:47:56.643Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb -[2024-05-07T14:47:56.643Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb to notebook -[2024-05-07T14:47:57.581Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:47:57.581Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:47:57.581Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:47:57.581Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:48:07.569Z] [NbConvertApp] Writing 190794 bytes to buildout/time_series_analysis.output.ipynb -[2024-05-07T14:48:07.569Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-05-07T14:48:07.569Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-05-07T14:48:07.569Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-05-07T14:48:07.569Z] + sed s/.ipynb$// -[2024-05-07T14:48:07.569Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed -[2024-05-07T14:48:07.569Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] -[2024-05-07T14:48:07.569Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb -[2024-05-07T14:48:08.940Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook -[2024-05-07T14:48:09.867Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-07T14:48:09.867Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-07T14:48:09.867Z] 0.00s - to python to disable frozen modules. -[2024-05-07T14:48:09.867Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-07T14:52:46.597Z] [NbConvertApp] Writing 431897 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb -[2024-05-07T14:52:46.597Z] + exit 1 -[2024-05-07T14:52:46.597Z] + EXIT_CODE=1 -[2024-05-07T14:52:46.597Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-05-07T14:52:46.597Z] + mkdir -p buildout/env-dump -[2024-05-07T14:52:46.597Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-05-07T14:52:46.597Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-05-07T14:52:46.597Z] + conda env export -n birdy -[2024-05-07T14:53:04.662Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-05-07T14:53:04.662Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-05-07T14:53:04.662Z] + conda list -n birdy --explicit -[2024-05-07T14:53:16.847Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-05-07T14:53:16.847Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-05-07T14:53:16.847Z] + pip freeze -[2024-05-07T14:53:16.847Z] + exit 1 +[2024-05-09T00:02:05.072Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-05-09T00:02:05.072Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-09T00:02:05.072Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-05-09T00:02:05.072Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T00:02:05.072Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-09T00:02:05.072Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T00:02:05.072Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T00:02:05.072Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-09T00:02:05.072Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-05-09T00:02:05.072Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T00:02:05.072Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-09T00:02:05.072Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T00:02:05.072Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T00:02:05.072Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-09T00:02:05.072Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-09T00:02:05.072Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T00:02:05.072Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T00:02:05.072Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T00:02:05.072Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T00:02:05.072Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-09T00:02:05.072Z] + [ -n https://gist.githubusercontent.com/tlvu/813a1bcd325d753664c09526e4a5b759/raw/0728b32c6c8521fd9cc4b149919bb872563c3caa/jenkins-params-raven-nb-only.include.sh ] +[2024-05-09T00:02:05.072Z] + TMP_CONF_OVERRIDE=/tmp/jenkins_conf_override +[2024-05-09T00:02:05.072Z] + rm -vf /tmp/jenkins_conf_override +[2024-05-09T00:02:05.072Z] removed '/tmp/jenkins_conf_override' +[2024-05-09T00:02:05.072Z] + curl --silent https://gist.githubusercontent.com/tlvu/813a1bcd325d753664c09526e4a5b759/raw/0728b32c6c8521fd9cc4b149919bb872563c3caa/jenkins-params-raven-nb-only.include.sh +[2024-05-09T00:02:05.072Z] + tee /tmp/jenkins_conf_override +[2024-05-09T00:02:05.328Z] #!/bin/sh +[2024-05-09T00:02:05.328Z] # Sample Jenkins params override script to only run Raven notebooks +[2024-05-09T00:02:05.328Z] # with the proper --nbval-lax switch. +[2024-05-09T00:02:05.328Z] +[2024-05-09T00:02:05.328Z] TEST_PAVICS_SDI_REPO="false" +[2024-05-09T00:02:05.328Z] TEST_FINCH_REPO="false" +[2024-05-09T00:02:05.328Z] TEST_PAVICS_LANDING_REPO="false" +[2024-05-09T00:02:05.328Z] TEST_LOCAL_NOTEBOOKS="false" +[2024-05-09T00:02:05.328Z] TEST_RAVEN_REPO="true" +[2024-05-09T00:02:05.328Z] TEST_RAVENPY_REPO="true" +[2024-05-09T00:02:05.328Z] +[2024-05-09T00:02:05.328Z] PYTEST_EXTRA_OPTS="$PYTEST_EXTRA_OPTS --nbval-lax" +[2024-05-09T00:02:05.328Z] +[2024-05-09T00:02:05.328Z] SAVE_RESULTING_NOTEBOOK_TIMEOUT="600" +[2024-05-09T00:02:05.328Z] +[2024-05-09T00:02:05.328Z] # Set different test branch if required. +[2024-05-09T00:02:05.328Z] #RAVEN_BRANCH="" +[2024-05-09T00:02:05.328Z] RAVENPY_BRANCH="fixnbs_pavics_betaimage" +[2024-05-09T00:02:05.328Z] + . /tmp/jenkins_conf_override +[2024-05-09T00:02:05.328Z] + TEST_PAVICS_SDI_REPO=false +[2024-05-09T00:02:05.328Z] + TEST_FINCH_REPO=false +[2024-05-09T00:02:05.328Z] + TEST_PAVICS_LANDING_REPO=false +[2024-05-09T00:02:05.328Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-05-09T00:02:05.328Z] + TEST_RAVEN_REPO=true +[2024-05-09T00:02:05.328Z] + TEST_RAVENPY_REPO=true +[2024-05-09T00:02:05.328Z] + PYTEST_EXTRA_OPTS=--dist=loadscope --numprocesses=0 --nbval-lax +[2024-05-09T00:02:05.328Z] + SAVE_RESULTING_NOTEBOOK_TIMEOUT=600 +[2024-05-09T00:02:05.328Z] + RAVENPY_BRANCH=fixnbs_pavics_betaimage +[2024-05-09T00:02:05.328Z] + git clean -fdx +[2024-05-09T00:02:05.328Z] Removing .pytest_cache/ +[2024-05-09T00:02:05.328Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha/ +[2024-05-09T00:02:05.328Z] Removing RavenPy-master/ +[2024-05-09T00:02:05.328Z] Removing __pycache__/ +[2024-05-09T00:02:05.328Z] Removing buildout/ +[2024-05-09T00:02:05.328Z] Removing esgf-compute-api-devel/ +[2024-05-09T00:02:05.328Z] Removing finch-master/ +[2024-05-09T00:02:05.328Z] Removing pavics-sdi-fix_nbs_jupyter_alpha/ +[2024-05-09T00:02:05.328Z] Removing raven-main/ +[2024-05-09T00:02:05.328Z] + ./downloadrepos +[2024-05-09T00:02:05.328Z] TEST_PAVICS_SDI_REPO has been set to 'false' +[2024-05-09T00:02:05.328Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-05-09T00:02:05.328Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T00:02:05.328Z] TEST_FINCH_REPO has been set to 'false' +[2024-05-09T00:02:05.328Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T00:02:05.328Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T00:02:05.328Z] TEST_PAVICS_LANDING_REPO has been set to 'false' +[2024-05-09T00:02:05.328Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-05-09T00:02:05.328Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T00:02:05.328Z] TEST_RAVEN_REPO has been set to 'true' +[2024-05-09T00:02:05.328Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T00:02:05.328Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T00:02:05.328Z] TEST_RAVENPY_REPO has been set to 'true' +[2024-05-09T00:02:05.328Z] RAVENPY_BRANCH has been set to 'fixnbs_pavics_betaimage' +[2024-05-09T00:02:05.328Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T00:02:05.328Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T00:02:05.328Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T00:02:05.328Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T00:02:05.328Z] TEST_LOCAL_NOTEBOOKS has been set to 'false' +[2024-05-09T00:02:05.328Z] + rm -rf pavics-sdi-* +[2024-05-09T00:02:05.328Z] + ls +[2024-05-09T00:02:05.328Z] + grep pavics-sdi +[2024-05-09T00:02:05.328Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi master +[2024-05-09T00:02:05.328Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-05-09T00:02:05.328Z] + shift +[2024-05-09T00:02:05.328Z] + branch=master +[2024-05-09T00:02:05.328Z] + shift +[2024-05-09T00:02:05.328Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/master.tar.gz +[2024-05-09T00:02:05.328Z] + tar xz +[2024-05-09T00:02:09.495Z] + ls +[2024-05-09T00:02:09.495Z] + grep pavics-sdi +[2024-05-09T00:02:09.495Z] pavics-sdi-master +[2024-05-09T00:02:09.495Z] + set +x +[2024-05-09T00:02:09.495Z] + rm -rf finch-* +[2024-05-09T00:02:09.495Z] + ls +[2024-05-09T00:02:09.495Z] + grep finch +[2024-05-09T00:02:09.495Z] + downloadrepos https://github.com/bird-house/finch master +[2024-05-09T00:02:09.495Z] + github_repo=https://github.com/bird-house/finch +[2024-05-09T00:02:09.495Z] + shift +[2024-05-09T00:02:09.495Z] + branch=master +[2024-05-09T00:02:09.495Z] + shift +[2024-05-09T00:02:09.495Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-05-09T00:02:09.495Z] + tar xz +[2024-05-09T00:02:10.862Z] + ls +[2024-05-09T00:02:10.862Z] + grep finch +[2024-05-09T00:02:10.862Z] finch-master +[2024-05-09T00:02:10.862Z] + set +x +[2024-05-09T00:02:10.862Z] + rm -rf PAVICS-landing-* +[2024-05-09T00:02:10.862Z] + ls +[2024-05-09T00:02:10.862Z] + grep PAVICS-landing +[2024-05-09T00:02:10.862Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing master +[2024-05-09T00:02:10.862Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-05-09T00:02:10.862Z] + shift +[2024-05-09T00:02:10.862Z] + branch=master +[2024-05-09T00:02:10.862Z] + shift +[2024-05-09T00:02:10.862Z] + + wget --quiet --output-document -tar https://github.com/Ouranosinc/PAVICS-landing/archive/master.tar.gz xz +[2024-05-09T00:02:10.862Z] +[2024-05-09T00:02:23.028Z] + ls +[2024-05-09T00:02:23.028Z] + grep PAVICS-landing +[2024-05-09T00:02:23.028Z] PAVICS-landing-master +[2024-05-09T00:02:23.028Z] + set +x +[2024-05-09T00:02:23.028Z] + rm -rf raven-* +[2024-05-09T00:02:23.028Z] + ls +[2024-05-09T00:02:23.028Z] + grep raven +[2024-05-09T00:02:23.028Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-05-09T00:02:23.028Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-05-09T00:02:23.028Z] + shift +[2024-05-09T00:02:23.028Z] + branch=main +[2024-05-09T00:02:23.028Z] + shift +[2024-05-09T00:02:23.028Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-05-09T00:02:23.028Z] + tar xz +[2024-05-09T00:02:23.028Z] + ls +[2024-05-09T00:02:23.028Z] + grep raven +[2024-05-09T00:02:23.028Z] raven-main +[2024-05-09T00:02:23.028Z] + set +x +[2024-05-09T00:02:23.028Z] + rm -rf RavenPy-* +[2024-05-09T00:02:23.028Z] + ls +[2024-05-09T00:02:23.028Z] + grep RavenPy +[2024-05-09T00:02:23.028Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy fixnbs_pavics_betaimage +[2024-05-09T00:02:23.028Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-05-09T00:02:23.028Z] + shift +[2024-05-09T00:02:23.028Z] + branch=fixnbs_pavics_betaimage +[2024-05-09T00:02:23.028Z] + shift +[2024-05-09T00:02:23.028Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/fixnbs_pavics_betaimage.tar.gz +[2024-05-09T00:02:23.028Z] + tar xz +[2024-05-09T00:02:24.917Z] + + ls +[2024-05-09T00:02:24.917Z] grep RavenPy +[2024-05-09T00:02:24.917Z] RavenPy-fixnbs_pavics_betaimage +[2024-05-09T00:02:24.917Z] + set +x +[2024-05-09T00:02:24.917Z] + rm -rf esgf-compute-api-* +[2024-05-09T00:02:24.917Z] + ls +[2024-05-09T00:02:24.917Z] + grep esgf-compute-api +[2024-05-09T00:02:24.917Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-05-09T00:02:24.917Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-05-09T00:02:24.917Z] + shift +[2024-05-09T00:02:24.917Z] + branch=devel +[2024-05-09T00:02:24.917Z] + shift +[2024-05-09T00:02:24.917Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-05-09T00:02:24.917Z] + tar xz +[2024-05-09T00:02:25.844Z] + ls +[2024-05-09T00:02:25.844Z] + grep esgf-compute-api +[2024-05-09T00:02:25.844Z] esgf-compute-api-devel +[2024-05-09T00:02:25.844Z] + set +x +[2024-05-09T00:02:25.844Z] + echo master +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + PAVICS_SDI_BRANCH=master +[2024-05-09T00:02:25.844Z] + echo Ouranosinc/pavics-sdi +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-05-09T00:02:25.844Z] + echo master +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + FINCH_BRANCH=master +[2024-05-09T00:02:25.844Z] + echo bird-house/finch +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + FINCH_REPO_NAME=finch +[2024-05-09T00:02:25.844Z] + echo master +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + PAVICS_LANDING_BRANCH=master +[2024-05-09T00:02:25.844Z] + echo Ouranosinc/PAVICS-landing +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-05-09T00:02:25.844Z] + echo main +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + RAVEN_BRANCH=main +[2024-05-09T00:02:25.844Z] + echo Ouranosinc/raven +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + RAVEN_REPO_NAME=raven +[2024-05-09T00:02:25.844Z] + echo fixnbs_pavics_betaimage +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + RAVENPY_BRANCH=fixnbs_pavics_betaimage +[2024-05-09T00:02:25.844Z] + echo CSHS-CWRA/RavenPy +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + RAVENPY_REPO_NAME=RavenPy +[2024-05-09T00:02:25.844Z] + echo devel +[2024-05-09T00:02:25.844Z] + sed s@/@-@g +[2024-05-09T00:02:25.844Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-05-09T00:02:25.844Z] + echo ESGF/esgf-compute-api +[2024-05-09T00:02:25.844Z] + sed s@^.*/@@g +[2024-05-09T00:02:25.844Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-05-09T00:02:25.844Z] + echo pavics-sdi-master +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + PAVICS_SDI_DIR=pavics-sdi-master +[2024-05-09T00:02:25.844Z] + echo finch-master +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + FINCH_DIR=finch-master +[2024-05-09T00:02:25.844Z] + echo PAVICS-landing-master +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + PAVICS_LANDING_DIR=PAVICS-landing-master +[2024-05-09T00:02:25.844Z] + echo raven-main +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + RAVEN_DIR=raven-main +[2024-05-09T00:02:25.844Z] + echo RavenPy-fixnbs_pavics_betaimage +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + RAVENPY_DIR=RavenPy-fixnbs_pavics_betaimage +[2024-05-09T00:02:25.844Z] + echo esgf-compute-api-devel +[2024-05-09T00:02:25.844Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T00:02:25.844Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-05-09T00:02:25.844Z] + echo true +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + VERIFY_SSL=true +[2024-05-09T00:02:25.844Z] + [ xtrue = xfalse ] +[2024-05-09T00:02:25.844Z] + rm -v finch-master/setup.cfg +[2024-05-09T00:02:25.844Z] removed 'finch-master/setup.cfg' +[2024-05-09T00:02:25.844Z] + rm -v raven-main/setup.cfg +[2024-05-09T00:02:25.844Z] removed 'raven-main/setup.cfg' +[2024-05-09T00:02:25.844Z] + rm -v raven-main/pyproject.toml +[2024-05-09T00:02:25.844Z] removed 'raven-main/pyproject.toml' +[2024-05-09T00:02:25.844Z] + rm -v RavenPy-fixnbs_pavics_betaimage/setup.cfg +[2024-05-09T00:02:25.844Z] removed 'RavenPy-fixnbs_pavics_betaimage/setup.cfg' +[2024-05-09T00:02:25.844Z] + rm -v RavenPy-fixnbs_pavics_betaimage/tox.ini +[2024-05-09T00:02:25.844Z] removed 'RavenPy-fixnbs_pavics_betaimage/tox.ini' +[2024-05-09T00:02:25.844Z] + rm -v RavenPy-fixnbs_pavics_betaimage/pyproject.toml +[2024-05-09T00:02:25.844Z] removed 'RavenPy-fixnbs_pavics_betaimage/pyproject.toml' +[2024-05-09T00:02:25.844Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-05-09T00:02:25.844Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-05-09T00:02:25.844Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-05-09T00:02:25.844Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_MAGPIE_AUTH=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_PAVICS_SDI_REPO=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_FINCH_REPO=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_PAVICS_LANDING_REPO=false +[2024-05-09T00:02:25.844Z] + echo true +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_RAVEN_REPO=true +[2024-05-09T00:02:25.844Z] + echo true +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_RAVENPY_REPO=true +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-05-09T00:02:25.844Z] + echo false +[2024-05-09T00:02:25.844Z] + tr [:upper:] [:lower:] +[2024-05-09T00:02:25.844Z] + TEST_LOCAL_NOTEBOOKS=false +[2024-05-09T00:02:25.844Z] + NOTEBOOKS_TO_TEST= +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xtrue = xtrue ] +[2024-05-09T00:02:25.844Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb +[2024-05-09T00:02:25.844Z] + [ xtrue = xtrue ] +[2024-05-09T00:02:25.844Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb +[2024-05-09T00:02:25.844Z] + NOTEBOOKS_TO_TEST= raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/*.ipynb +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + [ xfalse = xtrue ] +[2024-05-09T00:02:25.844Z] + ./runtest raven-main/docs/source/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/*.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/*.ipynb +[2024-05-09T00:02:25.844Z] + [ -n ] +[2024-05-09T00:02:25.844Z] + [ ! -z pavics.ouranos.ca ] +[2024-05-09T00:02:25.844Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-05-09T00:02:25.844Z] Will run notebooks against pavics.ouranos.ca +[2024-05-09T00:02:25.844Z] + [ -z ] +[2024-05-09T00:02:25.845Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:02:26.102Z] + git diff +[2024-05-09T00:02:26.102Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-05-09T00:02:26.102Z] + [ -n ] +[2024-05-09T00:02:26.103Z] + py.test --nbval raven-main/docs/source/notebooks/Region_selection.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb --nbval-sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 --nbval-lax +[2024-05-09T00:02:29.380Z] ============================= test session starts ============================== +[2024-05-09T00:02:29.380Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 +[2024-05-09T00:02:29.380Z] rootdir: /home/jenkins/agent/workspace/cker-build-with-jenkins-override +[2024-05-09T00:02:29.380Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-05-09T00:02:29.380Z] collected 243 items +[2024-05-09T00:02:29.380Z] +[2024-05-09T00:02:39.384Z] raven-main/docs/source/notebooks/Region_selection.ipynb ......... [ 3%] +[2024-05-09T00:02:41.900Z] raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb . [ 4%] +[2024-05-09T00:02:54.270Z] ...... [ 6%] +[2024-05-09T00:02:56.166Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb . [ 6%] +[2024-05-09T00:02:56.166Z] ..... [ 9%] +[2024-05-09T00:02:58.111Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb . [ 9%] +[2024-05-09T00:03:08.311Z] ....... [ 12%] +[2024-05-09T00:03:13.571Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb . [ 12%] +[2024-05-09T00:03:22.368Z] .............. [ 18%] +[2024-05-09T00:03:30.461Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb . [ 18%] +[2024-05-09T00:05:04.928Z] .......... [ 23%] +[2024-05-09T00:05:07.448Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb . [ 23%] +[2024-05-09T00:05:19.502Z] ................... [ 31%] +[2024-05-09T00:05:23.673Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb . [ 31%] +[2024-05-09T00:05:36.320Z] ............ [ 36%] +[2024-05-09T00:05:41.597Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb . [ 37%] +[2024-05-09T00:05:46.142Z] ..... [ 39%] +[2024-05-09T00:05:51.455Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb . [ 39%] +[2024-05-09T00:05:58.190Z] ..... [ 41%] +[2024-05-09T00:05:59.559Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb . [ 41%] +[2024-05-09T00:11:21.529Z] ................. [ 48%] +[2024-05-09T00:11:28.101Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb . [ 49%] +[2024-05-09T00:11:35.606Z] .... [ 51%] +[2024-05-09T00:11:36.981Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb . [ 51%] +[2024-05-09T00:12:50.246Z] ....... [ 54%] +[2024-05-09T00:12:55.526Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb . [ 54%] +[2024-05-09T00:13:31.411Z] ....... [ 57%] +[2024-05-09T00:13:41.403Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb . [ 58%] +[2024-05-09T00:13:50.248Z] ....... [ 60%] +[2024-05-09T00:13:51.649Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb . [ 61%] +[2024-05-09T00:14:21.040Z] ....... [ 64%] +[2024-05-09T00:14:31.067Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb . [ 64%] +[2024-05-09T00:14:54.530Z] ....... [ 67%] +[2024-05-09T00:14:57.817Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb . [ 67%] +[2024-05-09T00:15:26.926Z] ....... [ 70%] +[2024-05-09T00:15:28.829Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb F [ 71%] +[2024-05-09T00:15:28.829Z] FFF [ 72%] +[2024-05-09T00:15:36.945Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb . [ 72%] +[2024-05-09T00:15:47.270Z] ..... [ 74%] +[2024-05-09T00:15:48.212Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb . [ 75%] +[2024-05-09T00:16:34.909Z] .. [ 76%] +[2024-05-09T00:16:35.474Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb . [ 76%] +[2024-05-09T00:16:59.922Z] ...... [ 79%] +[2024-05-09T00:16:59.922Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb . [ 79%] +[2024-05-09T00:17:13.583Z] ............. [ 84%] +[2024-05-09T00:17:18.962Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb . [ 85%] +[2024-05-09T00:17:31.149Z] .... [ 86%] +[2024-05-09T00:17:37.693Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb . [ 87%] +[2024-05-09T00:17:38.883Z] .......... [ 91%] +[2024-05-09T00:17:51.071Z] RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb . [ 91%] +[2024-05-09T00:22:57.433Z] .................... [100%] +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] =================================== FAILURES =================================== +[2024-05-09T00:22:57.433Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 0 _ +[2024-05-09T00:22:57.433Z] Notebook cell execution failed +[2024-05-09T00:22:57.433Z] Cell 0: Cell execution caused an exception +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] Input: +[2024-05-09T00:22:57.433Z] import os +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] from hsclient import HydroShare, Token +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] # Authentication method using username and password +[2024-05-09T00:22:57.433Z] """ +[2024-05-09T00:22:57.433Z] username = 'XXXXX' +[2024-05-09T00:22:57.433Z] password = 'XXXXX' +[2024-05-09T00:22:57.433Z] hs = HydroShare(username=username, password=password) +[2024-05-09T00:22:57.433Z] """ +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-05-09T00:22:57.433Z] access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] token = Token(access_token=access_token, token_type="bearer") +[2024-05-09T00:22:57.433Z] hs = HydroShare(client_id=client_id, token=token) +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] Traceback: +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] --------------------------------------------------------------------------- +[2024-05-09T00:22:57.433Z] ValidationError Traceback (most recent call last) +[2024-05-09T00:22:57.433Z] Cell In[1], line 15 +[2024-05-09T00:22:57.433Z]  12 client_id = os.environ.get("HYDROSHARE_AUTH_CLIENT_ID", "") +[2024-05-09T00:22:57.433Z]  13 access_token = os.environ.get("HYDROSHARE_AUTH_TOKEN", "") +[2024-05-09T00:22:57.433Z] ---> 15 token = Token(access_token=access_token, token_type="bearer") +[2024-05-09T00:22:57.433Z]  16 hs = HydroShare(client_id=client_id, token=token) +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.433Z] File /opt/conda/envs/birdy/lib/python3.11/site-packages/pydantic/main.py:176, in BaseModel.__init__(self, **data) +[2024-05-09T00:22:57.433Z]  174 # `__tracebackhide__` tells pytest and some other tools to omit this function from tracebacks +[2024-05-09T00:22:57.433Z]  175 __tracebackhide__ = True +[2024-05-09T00:22:57.433Z] --> 176 self.__pydantic_validator__.validate_python(data, self_instance=self) +[2024-05-09T00:22:57.433Z] +[2024-05-09T00:22:57.434Z] ValidationError: 4 validation errors for Token +[2024-05-09T00:22:57.434Z] scope +[2024-05-09T00:22:57.434Z] Field required [type=missing, input_value={'access_token': ' 1 results = hs.search(subject=["Harvey"]) +[2024-05-09T00:22:57.434Z]  2 for r in results: +[2024-05-09T00:22:57.434Z]  3 print(r.resource_title, ": ", r.resource_id) +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] NameError: name 'hs' is not defined +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 2 _ +[2024-05-09T00:22:57.434Z] Notebook cell execution failed +[2024-05-09T00:22:57.434Z] Cell 2: Cell execution caused an exception +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] Input: +[2024-05-09T00:22:57.434Z] res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-05-09T00:22:57.434Z] res.files() +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] Traceback: +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] --------------------------------------------------------------------------- +[2024-05-09T00:22:57.434Z] NameError Traceback (most recent call last) +[2024-05-09T00:22:57.434Z] Cell In[1], line 1 +[2024-05-09T00:22:57.434Z] ----> 1 res = hs.resource("51d1539bf6e94b15ac33f7631228118c", validate=False) +[2024-05-09T00:22:57.434Z]  2 res.files() +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] NameError: name 'hs' is not defined +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] _ RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 3 _ +[2024-05-09T00:22:57.434Z] Notebook cell execution failed +[2024-05-09T00:22:57.434Z] Cell 3: Cell execution caused an exception +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] Input: +[2024-05-09T00:22:57.434Z] res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] Traceback: +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] --------------------------------------------------------------------------- +[2024-05-09T00:22:57.434Z] NameError Traceback (most recent call last) +[2024-05-09T00:22:57.434Z] Cell In[1], line 1 +[2024-05-09T00:22:57.434Z] ----> 1 res.file_download("USGS_Harvey_gages_TxLaMsAr.csv", save_path="/tmp") +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] NameError: name 'res' is not defined +[2024-05-09T00:22:57.434Z] +[2024-05-09T00:22:57.434Z] =========================== short test summary info ============================ +[2024-05-09T00:22:57.434Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 0 +[2024-05-09T00:22:57.434Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 1 +[2024-05-09T00:22:57.434Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 2 +[2024-05-09T00:22:57.434Z] FAILED RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb::Cell 3 +[2024-05-09T00:22:57.434Z] ================== 4 failed, 239 passed in 1228.80s (0:20:28) ================== +[2024-05-09T00:22:57.690Z] + EXIT_CODE=1 +[2024-05-09T00:22:57.690Z] + echo true +[2024-05-09T00:22:57.690Z] + tr [:upper:] [:lower:] +[2024-05-09T00:22:57.690Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-05-09T00:22:57.690Z] + [ xtrue = xtrue ] +[2024-05-09T00:22:57.690Z] + mkdir -p buildout +[2024-05-09T00:22:57.690Z] + basename raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-05-09T00:22:57.690Z] + filename=Region_selection.ipynb +[2024-05-09T00:22:57.690Z] + echo Region_selection.ipynb +[2024-05-09T00:22:57.690Z] + sed s/.ipynb$// +[2024-05-09T00:22:57.690Z] + filename=Region_selection +[2024-05-09T00:22:57.690Z] + [ -e buildout/Region_selection.output.ipynb ] +[2024-05-09T00:22:57.690Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Region_selection.output.ipynb raven-main/docs/source/notebooks/Region_selection.ipynb +[2024-05-09T00:22:59.584Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Region_selection.ipynb to notebook +[2024-05-09T00:23:00.513Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:00.513Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:00.513Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:00.513Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:23:12.733Z] [NbConvertApp] Writing 107223 bytes to buildout/Region_selection.output.ipynb +[2024-05-09T00:23:12.733Z] + basename raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-05-09T00:23:12.733Z] + filename=Subset_climate_data_over_watershed.ipynb +[2024-05-09T00:23:12.733Z] + echo Subset_climate_data_over_watershed.ipynb +[2024-05-09T00:23:12.733Z] + sed s/.ipynb$// +[2024-05-09T00:23:12.733Z] + filename=Subset_climate_data_over_watershed +[2024-05-09T00:23:12.733Z] + [ -e buildout/Subset_climate_data_over_watershed.output.ipynb ] +[2024-05-09T00:23:12.733Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Subset_climate_data_over_watershed.output.ipynb raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb +[2024-05-09T00:23:14.629Z] [NbConvertApp] Converting notebook raven-main/docs/source/notebooks/Subset_climate_data_over_watershed.ipynb to notebook +[2024-05-09T00:23:15.556Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:15.556Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:15.556Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:15.556Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:23:33.760Z] [NbConvertApp] Writing 97069 bytes to buildout/Subset_climate_data_over_watershed.output.ipynb +[2024-05-09T00:23:33.761Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-05-09T00:23:33.761Z] + filename=00_Introduction_to_JupyterLab.ipynb +[2024-05-09T00:23:33.761Z] + echo 00_Introduction_to_JupyterLab.ipynb +[2024-05-09T00:23:33.761Z] + sed s/.ipynb$// +[2024-05-09T00:23:33.761Z] + filename=00_Introduction_to_JupyterLab +[2024-05-09T00:23:33.761Z] + [ -e buildout/00_Introduction_to_JupyterLab.output.ipynb ] +[2024-05-09T00:23:33.761Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 00_Introduction_to_JupyterLab.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb +[2024-05-09T00:23:34.017Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/00_Introduction_to_JupyterLab.ipynb to notebook +[2024-05-09T00:23:34.951Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:34.951Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:34.951Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:34.951Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:23:36.839Z] [NbConvertApp] Writing 13178 bytes to buildout/00_Introduction_to_JupyterLab.output.ipynb +[2024-05-09T00:23:36.839Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-05-09T00:23:36.839Z] + filename=01_Getting_watershed_boundaries.ipynb +[2024-05-09T00:23:36.839Z] + sed s/.ipynb$// +[2024-05-09T00:23:36.839Z] + echo 01_Getting_watershed_boundaries.ipynb +[2024-05-09T00:23:36.839Z] + filename=01_Getting_watershed_boundaries +[2024-05-09T00:23:36.839Z] + [ -e buildout/01_Getting_watershed_boundaries.output.ipynb ] +[2024-05-09T00:23:36.839Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 01_Getting_watershed_boundaries.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb +[2024-05-09T00:23:38.732Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/01_Getting_watershed_boundaries.ipynb to notebook +[2024-05-09T00:23:39.661Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:39.661Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:39.661Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:39.661Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:23:51.855Z] [NbConvertApp] Writing 109426 bytes to buildout/01_Getting_watershed_boundaries.output.ipynb +[2024-05-09T00:23:51.855Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-05-09T00:23:51.855Z] + filename=02_Extract_geographical_watershed_properties.ipynb +[2024-05-09T00:23:51.855Z] + echo 02_Extract_geographical_watershed_properties.ipynb +[2024-05-09T00:23:51.855Z] + sed s/.ipynb$// +[2024-05-09T00:23:51.855Z] + filename=02_Extract_geographical_watershed_properties +[2024-05-09T00:23:51.855Z] + [ -e buildout/02_Extract_geographical_watershed_properties.output.ipynb ] +[2024-05-09T00:23:51.855Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 02_Extract_geographical_watershed_properties.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb +[2024-05-09T00:23:53.219Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/02_Extract_geographical_watershed_properties.ipynb to notebook +[2024-05-09T00:23:54.154Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:23:54.154Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:23:54.154Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:23:54.154Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:24:09.006Z] [NbConvertApp] Writing 279631 bytes to buildout/02_Extract_geographical_watershed_properties.output.ipynb +[2024-05-09T00:24:09.282Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-05-09T00:24:09.282Z] + filename=03_Extracting_forcing_data.ipynb +[2024-05-09T00:24:09.282Z] + echo 03_Extracting_forcing_data.ipynb +[2024-05-09T00:24:09.282Z] + sed s/.ipynb$// +[2024-05-09T00:24:09.282Z] + filename=03_Extracting_forcing_data +[2024-05-09T00:24:09.282Z] + [ -e buildout/03_Extracting_forcing_data.output.ipynb ] +[2024-05-09T00:24:09.282Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 03_Extracting_forcing_data.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb +[2024-05-09T00:24:11.200Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/03_Extracting_forcing_data.ipynb to notebook +[2024-05-09T00:24:12.138Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:24:12.138Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:24:12.138Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:24:12.138Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:26:03.532Z] [NbConvertApp] Writing 107673 bytes to buildout/03_Extracting_forcing_data.output.ipynb +[2024-05-09T00:26:03.532Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-05-09T00:26:03.532Z] + filename=04_Emulating_hydrological_models.ipynb +[2024-05-09T00:26:03.532Z] + echo 04_Emulating_hydrological_models.ipynb +[2024-05-09T00:26:03.532Z] + sed s/.ipynb$// +[2024-05-09T00:26:03.532Z] + filename=04_Emulating_hydrological_models +[2024-05-09T00:26:03.532Z] + [ -e buildout/04_Emulating_hydrological_models.output.ipynb ] +[2024-05-09T00:26:03.533Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 04_Emulating_hydrological_models.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb +[2024-05-09T00:26:03.533Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/04_Emulating_hydrological_models.ipynb to notebook +[2024-05-09T00:26:04.906Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:26:04.906Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:26:04.906Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:26:04.906Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:26:22.979Z] [NbConvertApp] Writing 388626 bytes to buildout/04_Emulating_hydrological_models.output.ipynb +[2024-05-09T00:26:22.979Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-05-09T00:26:22.979Z] + filename=05_Advanced_RavenPy_configuration.ipynb +[2024-05-09T00:26:22.979Z] + echo 05_Advanced_RavenPy_configuration.ipynb +[2024-05-09T00:26:22.979Z] + sed s/.ipynb$// +[2024-05-09T00:26:22.979Z] + filename=05_Advanced_RavenPy_configuration +[2024-05-09T00:26:22.979Z] + [ -e buildout/05_Advanced_RavenPy_configuration.output.ipynb ] +[2024-05-09T00:26:22.979Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 05_Advanced_RavenPy_configuration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb +[2024-05-09T00:26:22.979Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/05_Advanced_RavenPy_configuration.ipynb to notebook +[2024-05-09T00:26:23.236Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:26:23.236Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:26:23.236Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:26:23.236Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:26:41.343Z] [NbConvertApp] Writing 313551 bytes to buildout/05_Advanced_RavenPy_configuration.output.ipynb +[2024-05-09T00:26:41.343Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb +[2024-05-09T00:26:41.343Z] + filename=06_Raven_calibration.ipynb +[2024-05-09T00:26:41.343Z] + echo 06_Raven_calibration.ipynb +[2024-05-09T00:26:41.343Z] + sed s/.ipynb$// +[2024-05-09T00:26:41.343Z] + filename=06_Raven_calibration +[2024-05-09T00:26:41.343Z] + [ -e buildout/06_Raven_calibration.output.ipynb ] +[2024-05-09T00:26:41.343Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 06_Raven_calibration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb +[2024-05-09T00:26:43.242Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/06_Raven_calibration.ipynb to notebook +[2024-05-09T00:26:44.177Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:26:44.177Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:26:44.177Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:26:44.177Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:26:54.133Z] [NbConvertApp] Writing 16331 bytes to buildout/06_Raven_calibration.output.ipynb +[2024-05-09T00:26:54.134Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-05-09T00:26:54.134Z] + filename=07_Making_and_using_hotstart_files.ipynb +[2024-05-09T00:26:54.134Z] + echo 07_Making_and_using_hotstart_files.ipynb +[2024-05-09T00:26:54.134Z] + sed s/.ipynb$// +[2024-05-09T00:26:54.134Z] + filename=07_Making_and_using_hotstart_files +[2024-05-09T00:26:54.134Z] + [ -e buildout/07_Making_and_using_hotstart_files.output.ipynb ] +[2024-05-09T00:26:54.134Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 07_Making_and_using_hotstart_files.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb +[2024-05-09T00:26:56.028Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/07_Making_and_using_hotstart_files.ipynb to notebook +[2024-05-09T00:26:56.964Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:26:56.964Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:26:56.964Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:26:56.964Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:27:09.136Z] [NbConvertApp] Writing 205512 bytes to buildout/07_Making_and_using_hotstart_files.output.ipynb +[2024-05-09T00:27:09.136Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-09T00:27:09.136Z] + filename=08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-09T00:27:09.136Z] + echo 08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-09T00:27:09.136Z] + sed s/.ipynb$// +[2024-05-09T00:27:09.136Z] + filename=08_Getting_and_bias_correcting_CMIP6_data +[2024-05-09T00:27:09.136Z] + [ -e buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb ] +[2024-05-09T00:27:09.136Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 08_Getting_and_bias_correcting_CMIP6_data.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb +[2024-05-09T00:27:09.699Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/08_Getting_and_bias_correcting_CMIP6_data.ipynb to notebook +[2024-05-09T00:27:10.638Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:27:10.639Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:27:10.639Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:27:10.639Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:31:32.206Z] [NbConvertApp] Writing 249082 bytes to buildout/08_Getting_and_bias_correcting_CMIP6_data.output.ipynb +[2024-05-09T00:31:32.206Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-09T00:31:32.206Z] + filename=09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-09T00:31:32.206Z] + echo 09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-09T00:31:32.206Z] + sed s/.ipynb$// +[2024-05-09T00:31:32.206Z] + filename=09_Hydrological_impacts_of_climate_change +[2024-05-09T00:31:32.206Z] + [ -e buildout/09_Hydrological_impacts_of_climate_change.output.ipynb ] +[2024-05-09T00:31:32.206Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 09_Hydrological_impacts_of_climate_change.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb +[2024-05-09T00:31:32.206Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/09_Hydrological_impacts_of_climate_change.ipynb to notebook +[2024-05-09T00:31:32.206Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:31:32.206Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:31:32.206Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:31:32.206Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:31:42.170Z] [NbConvertApp] Writing 128174 bytes to buildout/09_Hydrological_impacts_of_climate_change.output.ipynb +[2024-05-09T00:31:42.170Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb +[2024-05-09T00:31:42.170Z] + filename=10_Data_assimilation.ipynb +[2024-05-09T00:31:42.170Z] + echo 10_Data_assimilation.ipynb +[2024-05-09T00:31:42.170Z] + sed s/.ipynb$// +[2024-05-09T00:31:42.170Z] + filename=10_Data_assimilation +[2024-05-09T00:31:42.170Z] + [ -e buildout/10_Data_assimilation.output.ipynb ] +[2024-05-09T00:31:42.170Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 10_Data_assimilation.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb +[2024-05-09T00:31:42.732Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/10_Data_assimilation.ipynb to notebook +[2024-05-09T00:31:43.659Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:31:43.659Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:31:43.659Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:31:43.659Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:32:51.320Z] [NbConvertApp] Writing 432765 bytes to buildout/10_Data_assimilation.output.ipynb +[2024-05-09T00:32:51.321Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-05-09T00:32:51.321Z] + filename=11_Climatological_ESP_forecasting.ipynb +[2024-05-09T00:32:51.321Z] + echo 11_Climatological_ESP_forecasting.ipynb +[2024-05-09T00:32:51.321Z] + sed s/.ipynb$// +[2024-05-09T00:32:51.321Z] + filename=11_Climatological_ESP_forecasting +[2024-05-09T00:32:51.321Z] + [ -e buildout/11_Climatological_ESP_forecasting.output.ipynb ] +[2024-05-09T00:32:51.321Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 11_Climatological_ESP_forecasting.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb +[2024-05-09T00:32:53.304Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/11_Climatological_ESP_forecasting.ipynb to notebook +[2024-05-09T00:32:53.869Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:32:53.869Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:32:53.870Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:32:53.870Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:33:40.528Z] [NbConvertApp] Writing 176184 bytes to buildout/11_Climatological_ESP_forecasting.output.ipynb +[2024-05-09T00:33:40.528Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-05-09T00:33:40.528Z] + filename=12_Performing_hindcasting_experiments.ipynb +[2024-05-09T00:33:40.528Z] + echo 12_Performing_hindcasting_experiments.ipynb +[2024-05-09T00:33:40.528Z] + sed s/.ipynb$// +[2024-05-09T00:33:40.528Z] + filename=12_Performing_hindcasting_experiments +[2024-05-09T00:33:40.528Z] + [ -e buildout/12_Performing_hindcasting_experiments.output.ipynb ] +[2024-05-09T00:33:40.528Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output 12_Performing_hindcasting_experiments.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb +[2024-05-09T00:33:40.528Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/12_Performing_hindcasting_experiments.ipynb to notebook +[2024-05-09T00:33:40.528Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:33:40.528Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:33:40.528Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:33:40.528Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:33:58.596Z] [NbConvertApp] Writing 150539 bytes to buildout/12_Performing_hindcasting_experiments.output.ipynb +[2024-05-09T00:33:58.596Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-05-09T00:33:58.596Z] + filename=Assess_probabilistic_flood_risk.ipynb +[2024-05-09T00:33:58.596Z] + echo Assess_probabilistic_flood_risk.ipynb +[2024-05-09T00:33:58.596Z] + sed s/.ipynb$// +[2024-05-09T00:33:58.596Z] + filename=Assess_probabilistic_flood_risk +[2024-05-09T00:33:58.596Z] + [ -e buildout/Assess_probabilistic_flood_risk.output.ipynb ] +[2024-05-09T00:33:58.596Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Assess_probabilistic_flood_risk.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb +[2024-05-09T00:33:59.523Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Assess_probabilistic_flood_risk.ipynb to notebook +[2024-05-09T00:34:00.460Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:34:00.460Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:34:00.460Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:34:00.460Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:34:27.332Z] [NbConvertApp] Writing 163111 bytes to buildout/Assess_probabilistic_flood_risk.output.ipynb +[2024-05-09T00:34:27.332Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-09T00:34:27.332Z] + filename=Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-09T00:34:27.332Z] + sed s/.ipynb$// +[2024-05-09T00:34:27.332Z] + echo Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-09T00:34:27.332Z] + filename=Comparing_hindcasts_and_ESP_forecasts +[2024-05-09T00:34:27.332Z] + [ -e buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb ] +[2024-05-09T00:34:27.332Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Comparing_hindcasts_and_ESP_forecasts.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb +[2024-05-09T00:34:28.260Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Comparing_hindcasts_and_ESP_forecasts.ipynb to notebook +[2024-05-09T00:34:29.627Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:34:29.627Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:34:29.627Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:34:29.627Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:35:01.687Z] [NbConvertApp] Writing 314030 bytes to buildout/Comparing_hindcasts_and_ESP_forecasts.output.ipynb +[2024-05-09T00:35:01.687Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-05-09T00:35:01.687Z] + filename=Distributed_hydrological_modelling.ipynb +[2024-05-09T00:35:01.687Z] + echo Distributed_hydrological_modelling.ipynb +[2024-05-09T00:35:01.687Z] + sed s/.ipynb$// +[2024-05-09T00:35:01.687Z] + filename=Distributed_hydrological_modelling +[2024-05-09T00:35:01.687Z] + [ -e buildout/Distributed_hydrological_modelling.output.ipynb ] +[2024-05-09T00:35:01.687Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Distributed_hydrological_modelling.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb +[2024-05-09T00:35:01.687Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Distributed_hydrological_modelling.ipynb to notebook +[2024-05-09T00:35:02.688Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:35:02.688Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:35:02.688Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:35:02.688Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:35:41.419Z] [NbConvertApp] Writing 102750 bytes to buildout/Distributed_hydrological_modelling.output.ipynb +[2024-05-09T00:35:41.419Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb +[2024-05-09T00:35:41.419Z] + filename=HydroShare_integration.ipynb +[2024-05-09T00:35:41.419Z] + echo HydroShare_integration.ipynb +[2024-05-09T00:35:41.419Z] + sed s/.ipynb$// +[2024-05-09T00:35:41.419Z] + filename=HydroShare_integration +[2024-05-09T00:35:41.419Z] + [ -e buildout/HydroShare_integration.output.ipynb ] +[2024-05-09T00:35:41.419Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output HydroShare_integration.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb +[2024-05-09T00:35:41.419Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/HydroShare_integration.ipynb to notebook +[2024-05-09T00:35:41.419Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:35:41.419Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:35:41.419Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:35:41.419Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:35:41.419Z] [NbConvertApp] Writing 11583 bytes to buildout/HydroShare_integration.output.ipynb +[2024-05-09T00:35:41.675Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-05-09T00:35:41.675Z] + filename=Hydrological_realtime_forecasting.ipynb +[2024-05-09T00:35:41.675Z] + echo Hydrological_realtime_forecasting.ipynb +[2024-05-09T00:35:41.675Z] + sed s/.ipynb$// +[2024-05-09T00:35:41.675Z] + filename=Hydrological_realtime_forecasting +[2024-05-09T00:35:41.675Z] + [ -e buildout/Hydrological_realtime_forecasting.output.ipynb ] +[2024-05-09T00:35:41.675Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Hydrological_realtime_forecasting.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb +[2024-05-09T00:35:43.583Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Hydrological_realtime_forecasting.ipynb to notebook +[2024-05-09T00:35:44.524Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:35:44.524Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:35:44.524Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:35:44.524Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:36:06.454Z] [NbConvertApp] Writing 154578 bytes to buildout/Hydrological_realtime_forecasting.output.ipynb +[2024-05-09T00:36:06.454Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-05-09T00:36:06.454Z] + filename=Managing_Jupyter_Environments.ipynb +[2024-05-09T00:36:06.454Z] + echo Managing_Jupyter_Environments.ipynb +[2024-05-09T00:36:06.454Z] + sed s/.ipynb$// +[2024-05-09T00:36:06.454Z] + filename=Managing_Jupyter_Environments +[2024-05-09T00:36:06.454Z] + [ -e buildout/Managing_Jupyter_Environments.output.ipynb ] +[2024-05-09T00:36:06.454Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Managing_Jupyter_Environments.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb +[2024-05-09T00:36:06.454Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Managing_Jupyter_Environments.ipynb to notebook +[2024-05-09T00:36:07.420Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:36:07.420Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:36:07.420Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:36:07.420Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:36:17.450Z] [NbConvertApp] Writing 8669 bytes to buildout/Managing_Jupyter_Environments.output.ipynb +[2024-05-09T00:36:17.450Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb +[2024-05-09T00:36:17.450Z] + filename=Perform_Regionalization.ipynb +[2024-05-09T00:36:17.450Z] + echo Perform_Regionalization.ipynb +[2024-05-09T00:36:17.450Z] + sed s/.ipynb$// +[2024-05-09T00:36:17.450Z] + filename=Perform_Regionalization +[2024-05-09T00:36:17.450Z] + [ -e buildout/Perform_Regionalization.output.ipynb ] +[2024-05-09T00:36:17.450Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_Regionalization.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb +[2024-05-09T00:36:18.866Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Perform_Regionalization.ipynb to notebook +[2024-05-09T00:36:19.820Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:36:19.820Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:36:19.820Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:36:19.820Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:36:52.013Z] [NbConvertApp] Writing 120973 bytes to buildout/Perform_Regionalization.output.ipynb +[2024-05-09T00:36:52.013Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-09T00:36:52.013Z] + filename=Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-09T00:36:52.013Z] + + sed s/.ipynb$// +[2024-05-09T00:36:52.013Z] echo Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-09T00:36:52.013Z] + filename=Running_HMETS_with_CANOPEX_dataset +[2024-05-09T00:36:52.013Z] + [ -e buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb ] +[2024-05-09T00:36:52.013Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Running_HMETS_with_CANOPEX_dataset.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb +[2024-05-09T00:36:52.602Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Running_HMETS_with_CANOPEX_dataset.ipynb to notebook +[2024-05-09T00:36:54.061Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:36:54.061Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:36:54.061Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:36:54.061Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:37:12.540Z] [NbConvertApp] Writing 100759 bytes to buildout/Running_HMETS_with_CANOPEX_dataset.output.ipynb +[2024-05-09T00:37:12.540Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb +[2024-05-09T00:37:12.540Z] + filename=Sensitivity_analysis.ipynb +[2024-05-09T00:37:12.540Z] + echo Sensitivity_analysis.ipynb +[2024-05-09T00:37:12.540Z] + sed s/.ipynb$// +[2024-05-09T00:37:12.540Z] + filename=Sensitivity_analysis +[2024-05-09T00:37:12.540Z] + [ -e buildout/Sensitivity_analysis.output.ipynb ] +[2024-05-09T00:37:12.540Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Sensitivity_analysis.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb +[2024-05-09T00:37:14.490Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/Sensitivity_analysis.ipynb to notebook +[2024-05-09T00:37:15.878Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:37:15.878Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:37:15.878Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:37:15.878Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:37:37.864Z] [NbConvertApp] Writing 28175 bytes to buildout/Sensitivity_analysis.output.ipynb +[2024-05-09T00:37:37.864Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb +[2024-05-09T00:37:37.864Z] + filename=time_series_analysis.ipynb +[2024-05-09T00:37:37.864Z] + sed s/.ipynb$// +[2024-05-09T00:37:37.864Z] + echo time_series_analysis.ipynb +[2024-05-09T00:37:37.864Z] + filename=time_series_analysis +[2024-05-09T00:37:37.864Z] + [ -e buildout/time_series_analysis.output.ipynb ] +[2024-05-09T00:37:37.864Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output time_series_analysis.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb +[2024-05-09T00:37:37.864Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/time_series_analysis.ipynb to notebook +[2024-05-09T00:37:38.137Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:37:38.137Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:37:38.137Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:37:38.137Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:37:50.387Z] [NbConvertApp] Writing 190794 bytes to buildout/time_series_analysis.output.ipynb +[2024-05-09T00:37:50.387Z] + basename RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:37:50.387Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:37:50.387Z] + echo Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:37:50.387Z] + sed s/.ipynb$// +[2024-05-09T00:37:50.387Z] + filename=Perform_a_climate_change_impact_study_on_a_watershed +[2024-05-09T00:37:50.387Z] + [ -e buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb ] +[2024-05-09T00:37:50.387Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb +[2024-05-09T00:37:51.830Z] [NbConvertApp] Converting notebook RavenPy-fixnbs_pavics_betaimage/docs/notebooks/paper/Perform_a_climate_change_impact_study_on_a_watershed.ipynb to notebook +[2024-05-09T00:37:52.800Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T00:37:52.800Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T00:37:52.800Z] 0.00s - to python to disable frozen modules. +[2024-05-09T00:37:52.800Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T00:43:29.556Z] [NbConvertApp] Writing 463905 bytes to buildout/Perform_a_climate_change_impact_study_on_a_watershed.output.ipynb +[2024-05-09T00:43:29.556Z] + exit 1 +[2024-05-09T00:43:29.556Z] + EXIT_CODE=1 +[2024-05-09T00:43:29.556Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-05-09T00:43:29.556Z] + mkdir -p buildout/env-dump +[2024-05-09T00:43:29.556Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-05-09T00:43:29.556Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-05-09T00:43:29.556Z] + conda env export -n birdy +[2024-05-09T00:43:47.652Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T00:43:47.652Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T00:43:47.652Z] + conda list -n birdy --explicit +[2024-05-09T00:43:55.739Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T00:43:55.739Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T00:43:55.739Z] + pip freeze +[2024-05-09T00:43:56.669Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -1085,41 +899,41 @@ $ docker top 8f2a7bfc267b19242a9dc42bf8abcee78073955e0fdf9521c0c7665da96d5f01 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-05-07T14:53:18.488Z] Archiving artifacts -[2024-05-07T14:53:18.591Z] Recording fingerprints +[2024-05-09T00:43:57.610Z] Archiving artifacts +[2024-05-09T00:43:57.717Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:19.233Z] Archiving artifacts -[2024-05-07T14:53:21.511Z] Recording fingerprints +[2024-05-09T00:43:58.182Z] Archiving artifacts +[2024-05-09T00:44:00.540Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:22.017Z] Archiving artifacts -[2024-05-07T14:53:22.235Z] Recording fingerprints +[2024-05-09T00:44:01.066Z] Archiving artifacts +[2024-05-09T00:44:01.080Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:22.299Z] Archiving artifacts -[2024-05-07T14:53:22.321Z] Recording fingerprints +[2024-05-09T00:44:01.102Z] Archiving artifacts +[2024-05-09T00:44:01.123Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:23.101Z] Archiving artifacts -[2024-05-07T14:53:23.242Z] Recording fingerprints +[2024-05-09T00:44:01.319Z] Archiving artifacts +[2024-05-09T00:44:01.435Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:23.448Z] Archiving artifacts -[2024-05-07T14:53:23.499Z] Recording fingerprints +[2024-05-09T00:44:01.511Z] Archiving artifacts +[2024-05-09T00:44:01.543Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:25.256Z] Archiving artifacts -[2024-05-07T14:53:25.308Z] Recording fingerprints +[2024-05-09T00:44:03.091Z] Archiving artifacts +[2024-05-09T00:44:03.123Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:25.566Z] Archiving artifacts -[2024-05-07T14:53:25.695Z] Recording fingerprints +[2024-05-09T00:44:03.147Z] Archiving artifacts +[2024-05-09T00:44:03.272Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:26.315Z] Archiving artifacts -[2024-05-07T14:53:26.881Z] Recording fingerprints +[2024-05-09T00:44:03.433Z] Archiving artifacts +[2024-05-09T00:44:03.817Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:26.963Z] Archiving artifacts -[2024-05-07T14:53:27.471Z] Recording fingerprints +[2024-05-09T00:44:05.439Z] Archiving artifacts +[2024-05-09T00:44:05.848Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-07T14:53:30.121Z] Archiving artifacts -[2024-05-07T14:53:30.243Z] Recording fingerprints +[2024-05-09T00:44:09.179Z] Archiving artifacts +[2024-05-09T00:44:09.445Z] Recording fingerprints [Pipeline] emailextrecipients [Pipeline] step -[2024-05-07T14:53:31.051Z] Sending e-mails to: vu.long@ouranos.ca +[2024-05-09T00:44:10.765Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -1129,8 +943,8 @@ $ docker top 8f2a7bfc267b19242a9dc42bf8abcee78073955e0fdf9521c0c7665da96d5f01 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 8f2a7bfc267b19242a9dc42bf8abcee78073955e0fdf9521c0c7665da96d5f01 -$ docker rm -f 8f2a7bfc267b19242a9dc42bf8abcee78073955e0fdf9521c0c7665da96d5f01 +$ docker stop --time=1 a3275acd14887a1929af7f5e4b800188281d27befd51e92b8ec9f8b8dd84d2df +$ docker rm -f a3275acd14887a1929af7f5e4b800188281d27befd51e92b8ec9f8b8dd84d2df [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv From c805eae253bd437dd879f5503529fc1b83ca9b0b Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 8 May 2024 22:45:37 -0400 Subject: [PATCH 103/104] docker: py311-240506-update240508: jenkins build, default nb, only intermittent opendap.ipynb failure --- .../jenkins-buildlogs-default.txt | 1723 +++++++++-------- 1 file changed, 940 insertions(+), 783 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index 1c9eb78..e88f08b 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -1,4 +1,5 @@ Started by user Long Vu +Replayed #4 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -14,14 +15,16 @@ Seen branch in repository origin/master Seen branch in repository origin/new-build-no-jupyter-dash Seen branch in repository origin/new-build-no-ravenpy Seen branch in repository origin/new-docker-build +Seen branch in repository origin/new-docker-build-with-jenkins-override +Seen branch in repository origin/override-jenkins-config Seen branch in repository origin/test-dockerhub-build Seen branch in repository origin/twitcher_perf_test_notebook -Seen 9 remote branches -Obtained Jenkinsfile from b81376901a3df4e786fb234eb1c50f96b084ab18 +Seen 11 remote branches +Obtained Jenkinsfile from ca65e709adbfc074ee946c260be793fdca08d1b9 Running in Durability level: MAX_SURVIVABILITY [Pipeline] Start of Pipeline [Pipeline] node -Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 +Running on linux1 in /home/jenkins/agent/workspace/cker-build-with-jenkins-override [Pipeline] { [Pipeline] stage [Pipeline] { (Declarative: Checkout SCM) @@ -29,790 +32,940 @@ Running on linux1 in /home/jenkins/agent/workspace/_workflow-tests_new-docker-bu No credentials specified Fetching changes from the remote Git repository Fetching without tags +Checking out Revision ca65e709adbfc074ee946c260be793fdca08d1b9 (new-docker-build-with-jenkins-override) +Commit message: "Merge remote-tracking branch 'origin/new-docker-build' into new-docker-build-with-jenkins-override" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 -Checking out Revision b81376901a3df4e786fb234eb1c50f96b084ab18 (new-docker-build) -Commit message: "docker: py311-240506: dockerhub build log" > git config core.sparsecheckout # timeout=10 - > git checkout -f b81376901a3df4e786fb234eb1c50f96b084ab18 # timeout=10 - > git rev-list --no-walk f12f9179b392341ac1a0a3f496ccae0bea00797f # timeout=10 + > git checkout -f ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 + > git rev-list --no-walk ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 [Pipeline] } [Pipeline] // stage [Pipeline] withEnv [Pipeline] { [Pipeline] isUnix [Pipeline] sh -+ docker inspect -f . pavics/workflow-tests:py311-240506 ++ docker inspect -f . pavics/workflow-tests:py311-240506-update240508 . [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240506 cat -$ docker top 3e373716f2b2bbbf0530ef594f7112c08b675b075d030f3a0aafce0c30376af0 -eo pid,comm +$ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/cker-build-with-jenkins-override --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240506-update240508 cat +$ docker top 4c7fe1c70b0ab1d443f74e257e09736c874f7f9c390f6f4b0bd645fe301d5c96 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-05-06T18:38:34.472Z] Timeout set to expire in 2 hr 0 min +[2024-05-09T01:35:57.220Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-05-06T18:38:34.703Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-05-09T01:35:57.990Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-05-06T18:38:35.177Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-05-06T18:38:35.177Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-05-06T18:38:35.177Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-05-06T18:38:35.177Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-05-06T18:38:35.177Z] TEST_FINCH_REPO has been set to 'true' -[2024-05-06T18:38:35.177Z] FINCH_BRANCH has been set to 'master' -[2024-05-06T18:38:35.177Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-05-06T18:38:35.177Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-05-06T18:38:35.177Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-05-06T18:38:35.177Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-05-06T18:38:35.177Z] TEST_RAVEN_REPO has been set to 'false' -[2024-05-06T18:38:35.177Z] RAVEN_BRANCH has been set to 'main' -[2024-05-06T18:38:35.177Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-05-06T18:38:35.177Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-05-06T18:38:35.177Z] RAVENPY_BRANCH has been set to 'master' -[2024-05-06T18:38:35.177Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-05-06T18:38:35.177Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-05-06T18:38:35.177Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-05-06T18:38:35.177Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-05-06T18:38:35.177Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-05-06T18:38:35.177Z] + git clean -fdx -[2024-05-06T18:38:35.745Z] Removing .pytest_cache/ -[2024-05-06T18:38:35.745Z] Removing PAVICS-landing-master/ -[2024-05-06T18:38:35.745Z] Removing RavenPy-master/ -[2024-05-06T18:38:35.745Z] Removing __pycache__/ -[2024-05-06T18:38:35.745Z] Removing buildout/ -[2024-05-06T18:38:35.745Z] Removing esgf-compute-api-devel/ -[2024-05-06T18:38:35.745Z] Removing finch-master/ -[2024-05-06T18:38:35.745Z] Removing pavics-sdi-master/ -[2024-05-06T18:38:35.745Z] Removing raven-main/ -[2024-05-06T18:38:35.745Z] + ./downloadrepos -[2024-05-06T18:38:35.745Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-05-06T18:38:35.745Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-05-06T18:38:35.745Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-05-06T18:38:35.745Z] TEST_FINCH_REPO has been set to 'true' -[2024-05-06T18:38:35.745Z] FINCH_BRANCH has been set to 'master' -[2024-05-06T18:38:35.745Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-05-06T18:38:35.745Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-05-06T18:38:35.745Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha_refresh_output' -[2024-05-06T18:38:35.745Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-05-06T18:38:35.745Z] TEST_RAVEN_REPO has been set to 'false' -[2024-05-06T18:38:35.745Z] RAVEN_BRANCH has been set to 'main' -[2024-05-06T18:38:35.745Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-05-06T18:38:35.745Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-05-06T18:38:35.745Z] RAVENPY_BRANCH has been set to 'master' -[2024-05-06T18:38:35.745Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-05-06T18:38:35.745Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-05-06T18:38:35.745Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-05-06T18:38:35.745Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-05-06T18:38:35.745Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-05-06T18:38:35.745Z] + rm -rf pavics-sdi-* -[2024-05-06T18:38:35.745Z] + ls -[2024-05-06T18:38:35.745Z] + grep pavics-sdi -[2024-05-06T18:38:35.745Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:35.745Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-05-06T18:38:35.745Z] + shift -[2024-05-06T18:38:35.745Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:35.745Z] + shift -[2024-05-06T18:38:35.745Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-05-06T18:38:35.745Z] + tar xz -[2024-05-06T18:38:38.264Z] + ls -[2024-05-06T18:38:38.264Z] + grep pavics-sdi -[2024-05-06T18:38:38.264Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:38.264Z] + set +x -[2024-05-06T18:38:38.264Z] + rm -rf finch-* -[2024-05-06T18:38:38.264Z] + ls -[2024-05-06T18:38:38.264Z] + grep finch -[2024-05-06T18:38:38.264Z] + downloadrepos https://github.com/bird-house/finch master -[2024-05-06T18:38:38.264Z] + github_repo=https://github.com/bird-house/finch -[2024-05-06T18:38:38.264Z] + shift -[2024-05-06T18:38:38.264Z] + branch=master -[2024-05-06T18:38:38.264Z] + shift -[2024-05-06T18:38:38.264Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-05-06T18:38:38.264Z] + tar xz -[2024-05-06T18:38:39.632Z] + ls -[2024-05-06T18:38:39.632Z] + grep finch -[2024-05-06T18:38:39.632Z] finch-master -[2024-05-06T18:38:39.632Z] + set +x -[2024-05-06T18:38:39.632Z] + rm -rf PAVICS-landing-* -[2024-05-06T18:38:39.632Z] + ls -[2024-05-06T18:38:39.632Z] + grep PAVICS-landing -[2024-05-06T18:38:39.632Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:39.632Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-05-06T18:38:39.632Z] + shift -[2024-05-06T18:38:39.632Z] + branch=fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:39.632Z] + shift -[2024-05-06T18:38:39.632Z] + wget+ --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha_refresh_output.tar.gz -[2024-05-06T18:38:39.632Z] tar xz -[2024-05-06T18:38:49.573Z] + ls -[2024-05-06T18:38:49.573Z] + grep PAVICS-landing -[2024-05-06T18:38:49.573Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:49.573Z] + set +x -[2024-05-06T18:38:49.573Z] + rm -rf raven-* -[2024-05-06T18:38:49.573Z] + ls -[2024-05-06T18:38:49.573Z] + grep raven -[2024-05-06T18:38:49.573Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-05-06T18:38:49.573Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-05-06T18:38:49.573Z] + shift -[2024-05-06T18:38:49.573Z] + branch=main -[2024-05-06T18:38:49.573Z] + shift -[2024-05-06T18:38:49.573Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-05-06T18:38:49.573Z] + tar xz -[2024-05-06T18:38:50.938Z] + ls -[2024-05-06T18:38:50.938Z] + grep raven -[2024-05-06T18:38:50.938Z] raven-main -[2024-05-06T18:38:50.938Z] + set +x -[2024-05-06T18:38:50.938Z] + rm -rf RavenPy-* -[2024-05-06T18:38:50.938Z] + ls -[2024-05-06T18:38:50.938Z] + grep RavenPy -[2024-05-06T18:38:50.938Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-05-06T18:38:50.938Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-05-06T18:38:50.938Z] + shift -[2024-05-06T18:38:50.938Z] + branch=master -[2024-05-06T18:38:50.938Z] + shift -[2024-05-06T18:38:50.938Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-05-06T18:38:50.938Z] + tar xz -[2024-05-06T18:38:52.827Z] + ls -[2024-05-06T18:38:52.827Z] + grep RavenPy -[2024-05-06T18:38:52.827Z] RavenPy-master -[2024-05-06T18:38:52.827Z] + set +x -[2024-05-06T18:38:52.827Z] + rm -rf esgf-compute-api-* -[2024-05-06T18:38:52.827Z] + ls -[2024-05-06T18:38:52.827Z] + grep esgf-compute-api -[2024-05-06T18:38:52.827Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-05-06T18:38:52.827Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-05-06T18:38:52.827Z] + shift -[2024-05-06T18:38:52.827Z] + branch=devel -[2024-05-06T18:38:52.827Z] + shift -[2024-05-06T18:38:52.827Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-05-06T18:38:52.827Z] + tar xz -[2024-05-06T18:38:53.757Z] + ls -[2024-05-06T18:38:53.757Z] + grep esgf-compute-api -[2024-05-06T18:38:53.757Z] esgf-compute-api-devel -[2024-05-06T18:38:53.757Z] + set +x -[2024-05-06T18:38:53.757Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:53.757Z] + sed s@/@-@g -[2024-05-06T18:38:53.757Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:53.757Z] + echo Ouranosinc/pavics-sdi -[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g -[2024-05-06T18:38:53.757Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-05-06T18:38:53.757Z] + echo master -[2024-05-06T18:38:53.757Z] + sed s@/@-@g -[2024-05-06T18:38:53.757Z] + FINCH_BRANCH=master -[2024-05-06T18:38:53.757Z] + echo bird-house/finch -[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g -[2024-05-06T18:38:53.757Z] + FINCH_REPO_NAME=finch -[2024-05-06T18:38:53.757Z] + echo fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:53.757Z] + sed s@/@-@g -[2024-05-06T18:38:53.757Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:53.757Z] + echo Ouranosinc/PAVICS-landing -[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g -[2024-05-06T18:38:53.757Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-05-06T18:38:53.757Z] + echo main -[2024-05-06T18:38:53.757Z] + sed s@/@-@g -[2024-05-06T18:38:53.757Z] + RAVEN_BRANCH=main -[2024-05-06T18:38:53.757Z] + echo Ouranosinc/raven -[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g -[2024-05-06T18:38:53.757Z] + RAVEN_REPO_NAME=raven -[2024-05-06T18:38:53.757Z] + echo master -[2024-05-06T18:38:53.757Z] + sed s@/@-@g -[2024-05-06T18:38:53.757Z] + RAVENPY_BRANCH=master -[2024-05-06T18:38:53.757Z] + echo CSHS-CWRA/RavenPy -[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g -[2024-05-06T18:38:53.757Z] + RAVENPY_REPO_NAME=RavenPy -[2024-05-06T18:38:53.757Z] + echo devel -[2024-05-06T18:38:53.757Z] + sed s@/@-@g -[2024-05-06T18:38:53.757Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-05-06T18:38:53.757Z] + echo ESGF/esgf-compute-api -[2024-05-06T18:38:53.757Z] + sed s@^.*/@@g -[2024-05-06T18:38:53.757Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-05-06T18:38:53.757Z] + echo pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:53.757Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-06T18:38:53.757Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:53.757Z] + echo finch-master -[2024-05-06T18:38:53.757Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-06T18:38:53.757Z] + FINCH_DIR=finch-master -[2024-05-06T18:38:53.757Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:53.757Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-06T18:38:54.017Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output -[2024-05-06T18:38:54.017Z] + echo raven-main -[2024-05-06T18:38:54.017Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-06T18:38:54.017Z] + RAVEN_DIR=raven-main -[2024-05-06T18:38:54.017Z] + echo RavenPy-master -[2024-05-06T18:38:54.017Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-06T18:38:54.017Z] + RAVENPY_DIR=RavenPy-master -[2024-05-06T18:38:54.017Z] + echo esgf-compute-api-devel -[2024-05-06T18:38:54.017Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-06T18:38:54.017Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-05-06T18:38:54.017Z] + echo true -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + VERIFY_SSL=true -[2024-05-06T18:38:54.017Z] + [ xtrue = xfalse ] -[2024-05-06T18:38:54.017Z] + rm -v finch-master/setup.cfg -[2024-05-06T18:38:54.017Z] removed 'finch-master/setup.cfg' -[2024-05-06T18:38:54.017Z] + rm -v raven-main/setup.cfg -[2024-05-06T18:38:54.017Z] removed 'raven-main/setup.cfg' -[2024-05-06T18:38:54.017Z] + rm -v raven-main/pyproject.toml -[2024-05-06T18:38:54.017Z] removed 'raven-main/pyproject.toml' -[2024-05-06T18:38:54.017Z] + rm -v RavenPy-master/setup.cfg -[2024-05-06T18:38:54.017Z] removed 'RavenPy-master/setup.cfg' -[2024-05-06T18:38:54.017Z] + rm -v RavenPy-master/tox.ini -[2024-05-06T18:38:54.017Z] removed 'RavenPy-master/tox.ini' -[2024-05-06T18:38:54.017Z] + rm -v RavenPy-master/pyproject.toml -[2024-05-06T18:38:54.017Z] removed 'RavenPy-master/pyproject.toml' -[2024-05-06T18:38:54.017Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-05-06T18:38:54.017Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-05-06T18:38:54.017Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-05-06T18:38:54.017Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-05-06T18:38:54.017Z] + echo false -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + TEST_MAGPIE_AUTH=false -[2024-05-06T18:38:54.017Z] + echo true -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + TEST_PAVICS_SDI_REPO=true -[2024-05-06T18:38:54.017Z] + echo false -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-05-06T18:38:54.017Z] + echo true -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + TEST_FINCH_REPO=true -[2024-05-06T18:38:54.017Z] + echo true -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + TEST_PAVICS_LANDING_REPO=true -[2024-05-06T18:38:54.017Z] + echo false -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + TEST_RAVEN_REPO=false -[2024-05-06T18:38:54.017Z] + echo false -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + TEST_RAVENPY_REPO=false -[2024-05-06T18:38:54.017Z] + echo false -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-05-06T18:38:54.017Z] + echo true -[2024-05-06T18:38:54.017Z] + tr [:upper:] [:lower:] -[2024-05-06T18:38:54.017Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-05-06T18:38:54.017Z] + NOTEBOOKS_TO_TEST= -[2024-05-06T18:38:54.017Z] + [ xfalse = xtrue ] -[2024-05-06T18:38:54.017Z] + [ xtrue = xtrue ] -[2024-05-06T18:38:54.017Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb -[2024-05-06T18:38:54.017Z] + [ xfalse = xtrue ] -[2024-05-06T18:38:54.017Z] + [ xtrue = xtrue ] -[2024-05-06T18:38:54.017Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-05-06T18:38:54.017Z] + [ xtrue = xtrue ] -[2024-05-06T18:38:54.017Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb -[2024-05-06T18:38:54.017Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-06T18:38:54.017Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-05-06T18:38:54.017Z] + PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-06T18:38:54.017Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-06T18:38:54.017Z] + THIS_FILE=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-06T18:38:54.017Z] + dirname /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-06T18:38:54.017Z] + THIS_DIR=/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators -[2024-05-06T18:38:54.017Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-05-06T18:38:54.017Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-05-06T18:38:54.017Z] + unzip /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-05-06T18:38:54.017Z] Archive: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/output.zip -[2024-05-06T18:38:54.017Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.017Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.017Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.017Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.018Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.282Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.283Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.544Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-06T18:38:54.805Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-05-06T18:38:54.805Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-05-06T18:38:54.805Z] + ln -sv /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-05-06T18:38:54.805Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2/PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/tutorial_data' -[2024-05-06T18:38:54.805Z] + [ xfalse = xtrue ] -[2024-05-06T18:38:54.805Z] + [ xfalse = xtrue ] -[2024-05-06T18:38:54.805Z] + [ xfalse = xtrue ] -[2024-05-06T18:38:54.805Z] + [ xtrue = xtrue ] -[2024-05-06T18:38:54.805Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-05-06T18:38:54.805Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-05-06T18:38:54.805Z] + [ -n ] -[2024-05-06T18:38:54.805Z] + [ ! -z pavics.ouranos.ca ] -[2024-05-06T18:38:54.805Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-05-06T18:38:54.805Z] Will run notebooks against pavics.ouranos.ca -[2024-05-06T18:38:54.805Z] + [ -z ] -[2024-05-06T18:38:54.806Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-05-06T18:38:55.068Z] + git diff -[2024-05-06T18:38:55.068Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-05-06T18:38:55.068Z] + [ -n ] -[2024-05-06T18:38:55.069Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-05-06T18:38:56.974Z] /opt/conda/envs/birdy/lib/python3.11/site-packages/nbval/plugin.py:122: DeprecationWarning: --sanitize-with has been renamed to --nbval-sanitize-with -[2024-05-06T18:38:56.974Z] warnings.warn("--sanitize-with has been renamed to --nbval-sanitize-with", DeprecationWarning) -[2024-05-06T18:38:57.554Z] ============================= test session starts ============================== -[2024-05-06T18:38:57.554Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 -[2024-05-06T18:38:57.554Z] rootdir: /home/jenkins/agent/workspace/_workflow-tests_new-docker-build@2 -[2024-05-06T18:38:57.554Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-05-06T18:38:57.554Z] collected 219 items -[2024-05-06T18:38:57.554Z] -[2024-05-06T18:39:00.228Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] -[2024-05-06T18:39:28.363Z] ..... [ 2%] -[2024-05-06T18:39:30.250Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb . [ 3%] -[2024-05-06T18:39:36.300Z] ...... [ 5%] -[2024-05-06T18:39:38.209Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb . [ 6%] -[2024-05-06T18:39:44.679Z] ..... [ 8%] -[2024-05-06T18:39:45.251Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb . [ 9%] -[2024-05-06T18:39:50.660Z] ....... [ 12%] -[2024-05-06T18:40:00.636Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb . [ 12%] -[2024-05-06T18:43:09.441Z] ........... [ 17%] -[2024-05-06T18:43:09.441Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] -[2024-05-06T18:43:09.441Z] ............... [ 25%] -[2024-05-06T18:43:11.360Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] -[2024-05-06T18:43:16.973Z] .... [ 27%] -[2024-05-06T18:43:18.885Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb . [ 27%] -[2024-05-06T18:43:23.608Z] ..... [ 30%] -[2024-05-06T18:43:31.726Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb . [ 30%] -[2024-05-06T18:43:39.852Z] ..... [ 32%] -[2024-05-06T18:43:41.225Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb . [ 33%] -[2024-05-06T18:43:45.525Z] ...... [ 36%] -[2024-05-06T18:43:46.891Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] -[2024-05-06T18:43:51.352Z] .... [ 38%] -[2024-05-06T18:44:09.462Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb . [ 38%] -[2024-05-06T18:45:46.875Z] ........................... [ 51%] -[2024-05-06T18:45:46.875Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb . [ 51%] -[2024-05-06T18:45:47.137Z] ... [ 52%] -[2024-05-06T18:45:48.085Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb . [ 53%] -[2024-05-06T18:46:07.688Z] ........................ [ 64%] -[2024-05-06T18:46:10.978Z] pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb . [ 64%] -[2024-05-06T18:46:16.397Z] ..... [ 67%] -[2024-05-06T18:46:26.135Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 72%] -[2024-05-06T18:46:35.394Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] -[2024-05-06T18:46:36.760Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] -[2024-05-06T18:46:39.814Z] ...... [ 78%] -[2024-05-06T18:46:47.946Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] -[2024-05-06T18:47:03.149Z] ............. [ 84%] -[2024-05-06T18:47:11.240Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-05-06T18:47:45.481Z] ....s [ 87%] -[2024-05-06T18:47:53.613Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] -[2024-05-06T18:48:05.555Z] .. [ 88%] -[2024-05-06T18:48:17.772Z] PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] -[2024-05-06T18:49:05.831Z] ...... [ 91%] -[2024-05-06T18:49:05.831Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-05-06T18:51:38.530Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-05-06T18:51:38.530Z] -[2024-05-06T18:51:38.530Z] ================== 218 passed, 1 skipped in 753.79s (0:12:33) ================== -[2024-05-06T18:51:38.530Z] + EXIT_CODE=0 -[2024-05-06T18:51:38.530Z] + echo true -[2024-05-06T18:51:38.530Z] + tr [:upper:] [:lower:] -[2024-05-06T18:51:38.530Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-05-06T18:51:38.530Z] + [ xtrue = xtrue ] -[2024-05-06T18:51:38.530Z] + mkdir -p buildout -[2024-05-06T18:51:38.530Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-05-06T18:51:38.530Z] + filename=CaSR_basic.ipynb -[2024-05-06T18:51:38.530Z] + sed+ s/.ipynb$// -[2024-05-06T18:51:38.530Z] echo CaSR_basic.ipynb -[2024-05-06T18:51:38.530Z] + filename=CaSR_basic -[2024-05-06T18:51:38.530Z] + [ -e buildout/CaSR_basic.output.ipynb ] -[2024-05-06T18:51:38.530Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb -[2024-05-06T18:51:38.530Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/CaSR_basic.ipynb to notebook -[2024-05-06T18:52:17.299Z] [NbConvertApp] Writing 732952 bytes to buildout/CaSR_basic.output.ipynb -[2024-05-06T18:52:17.299Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-05-06T18:52:17.299Z] + filename=WCS_example.ipynb -[2024-05-06T18:52:17.299Z] + sed s/.ipynb$// -[2024-05-06T18:52:17.299Z] + echo WCS_example.ipynb -[2024-05-06T18:52:17.299Z] + filename=WCS_example -[2024-05-06T18:52:17.299Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-05-06T18:52:17.299Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb -[2024-05-06T18:52:17.299Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-05-06T18:52:17.299Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:52:17.299Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:52:17.299Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:52:17.300Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:52:27.323Z] [NbConvertApp] Writing 145025 bytes to buildout/WCS_example.output.ipynb -[2024-05-06T18:52:27.323Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-05-06T18:52:27.323Z] + filename=WFS_example.ipynb -[2024-05-06T18:52:27.323Z] + + sed s/.ipynb$// -[2024-05-06T18:52:27.323Z] echo WFS_example.ipynb -[2024-05-06T18:52:27.323Z] + filename=WFS_example -[2024-05-06T18:52:27.323Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-05-06T18:52:27.323Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb -[2024-05-06T18:52:28.261Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-05-06T18:52:29.205Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:52:29.205Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:52:29.205Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:52:29.205Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:52:37.334Z] [NbConvertApp] Writing 44572 bytes to buildout/WFS_example.output.ipynb -[2024-05-06T18:52:37.599Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-05-06T18:52:37.599Z] + filename=WMS_example.ipynb -[2024-05-06T18:52:37.599Z] + echo WMS_example.ipynb -[2024-05-06T18:52:37.599Z] + sed s/.ipynb$// -[2024-05-06T18:52:37.599Z] + filename=WMS_example -[2024-05-06T18:52:37.599Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-05-06T18:52:37.599Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb -[2024-05-06T18:52:39.512Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-05-06T18:52:40.082Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:52:40.082Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:52:40.082Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:52:40.082Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:52:46.668Z] [NbConvertApp] Writing 2048326 bytes to buildout/WMS_example.output.ipynb -[2024-05-06T18:52:46.668Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-05-06T18:52:46.668Z] + filename=climex.ipynb -[2024-05-06T18:52:46.668Z] + sed s/.ipynb$// -[2024-05-06T18:52:46.668Z] + echo climex.ipynb -[2024-05-06T18:52:46.668Z] + filename=climex -[2024-05-06T18:52:46.668Z] + [ -e buildout/climex.output.ipynb ] -[2024-05-06T18:52:46.668Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb -[2024-05-06T18:52:48.050Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/climex.ipynb to notebook -[2024-05-06T18:52:48.985Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:52:48.985Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:52:48.985Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:52:48.985Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:55:55.650Z] [NbConvertApp] Writing 1781814 bytes to buildout/climex.output.ipynb -[2024-05-06T18:55:55.650Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-05-06T18:55:55.650Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-05-06T18:55:55.650Z] + sed s/.ipynb$// -[2024-05-06T18:55:55.650Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-05-06T18:55:55.650Z] + filename=eccc-geoapi-climate-stations -[2024-05-06T18:55:55.650Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-05-06T18:55:55.650Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-05-06T18:55:55.650Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-05-06T18:55:55.650Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:55:55.650Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:55:55.650Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:55:55.650Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:56:00.933Z] [NbConvertApp] Writing 278703 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-05-06T18:56:00.933Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-05-06T18:56:00.933Z] + filename=eccc-geoapi-xclim.ipynb -[2024-05-06T18:56:00.933Z] + echo eccc-geoapi-xclim.ipynb -[2024-05-06T18:56:00.933Z] + sed s/.ipynb$// -[2024-05-06T18:56:00.933Z] + filename=eccc-geoapi-xclim -[2024-05-06T18:56:00.933Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-05-06T18:56:00.933Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-05-06T18:56:02.323Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-05-06T18:56:03.269Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:56:03.270Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:56:03.270Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:56:03.270Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:56:13.252Z] [NbConvertApp] Writing 108041 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-05-06T18:56:13.252Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-05-06T18:56:13.252Z] + filename=esgf-dap.ipynb -[2024-05-06T18:56:13.252Z] + sed s/.ipynb$// -[2024-05-06T18:56:13.252Z] + echo esgf-dap.ipynb -[2024-05-06T18:56:13.252Z] + filename=esgf-dap -[2024-05-06T18:56:13.252Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-05-06T18:56:13.252Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb -[2024-05-06T18:56:13.517Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-05-06T18:56:14.465Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:56:14.465Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:56:14.465Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:56:14.465Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:56:22.631Z] [NbConvertApp] Writing 63631 bytes to buildout/esgf-dap.output.ipynb -[2024-05-06T18:56:22.631Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-05-06T18:56:22.631Z] + filename=forecasts.ipynb -[2024-05-06T18:56:22.631Z] + sed s/.ipynb$// -[2024-05-06T18:56:22.631Z] + echo forecasts.ipynb -[2024-05-06T18:56:22.631Z] + filename=forecasts -[2024-05-06T18:56:22.631Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-05-06T18:56:22.631Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb -[2024-05-06T18:56:23.201Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/forecasts.ipynb to notebook -[2024-05-06T18:56:24.137Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:56:24.137Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:56:24.137Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:56:24.137Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:56:42.244Z] [NbConvertApp] Writing 164984 bytes to buildout/forecasts.output.ipynb -[2024-05-06T18:56:42.244Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-05-06T18:56:42.244Z] + filename=jupyter_extensions.ipynb -[2024-05-06T18:56:42.244Z] + echo jupyter_extensions.ipynb -[2024-05-06T18:56:42.245Z] + sed s/.ipynb$// -[2024-05-06T18:56:42.245Z] + filename=jupyter_extensions -[2024-05-06T18:56:42.245Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-05-06T18:56:42.245Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb -[2024-05-06T18:56:42.511Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-05-06T18:56:43.456Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:56:43.456Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:56:43.456Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:56:43.456Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:56:47.694Z] [NbConvertApp] Writing 7996 bytes to buildout/jupyter_extensions.output.ipynb -[2024-05-06T18:56:47.694Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-05-06T18:56:47.694Z] + filename=opendap.ipynb -[2024-05-06T18:56:47.694Z] + sed s/.ipynb$// -[2024-05-06T18:56:47.694Z] + echo opendap.ipynb -[2024-05-06T18:56:47.694Z] + filename=opendap -[2024-05-06T18:56:47.694Z] + [ -e buildout/opendap.output.ipynb ] -[2024-05-06T18:56:47.694Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb -[2024-05-06T18:56:49.081Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/opendap.ipynb to notebook -[2024-05-06T18:56:51.635Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:56:51.635Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:56:51.635Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:56:51.635Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:56:58.220Z] [NbConvertApp] Writing 95159 bytes to buildout/opendap.output.ipynb -[2024-05-06T18:56:58.220Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-05-06T18:56:58.220Z] + filename=pavics_thredds.ipynb -[2024-05-06T18:56:58.220Z] + echo pavics_thredds.ipynb -[2024-05-06T18:56:58.220Z] + sed s/.ipynb$// -[2024-05-06T18:56:58.220Z] + filename=pavics_thredds -[2024-05-06T18:56:58.220Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-05-06T18:56:58.220Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb -[2024-05-06T18:56:59.168Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-05-06T18:57:00.104Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:57:00.104Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:57:00.104Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:57:00.104Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:57:02.637Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-05-06T18:57:02.637Z] context: Access to service is forbidden. -[2024-05-06T18:57:02.637Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-05-06T18:57:02.638Z] context: Access to service is forbidden. -[2024-05-06T18:57:05.165Z] [NbConvertApp] Writing 90749 bytes to buildout/pavics_thredds.output.ipynb -[2024-05-06T18:57:05.165Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-05-06T18:57:05.165Z] + filename=regridding.ipynb -[2024-05-06T18:57:05.165Z] + sed s/.ipynb$// -[2024-05-06T18:57:05.165Z] + echo regridding.ipynb -[2024-05-06T18:57:05.165Z] + filename=regridding -[2024-05-06T18:57:05.165Z] + [ -e buildout/regridding.output.ipynb ] -[2024-05-06T18:57:05.165Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb -[2024-05-06T18:57:07.068Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/regridding.ipynb to notebook -[2024-05-06T18:57:07.999Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:57:07.999Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:57:07.999Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:57:07.999Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:58:44.519Z] [NbConvertApp] Writing 1239616 bytes to buildout/regridding.output.ipynb -[2024-05-06T18:58:44.519Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-05-06T18:58:44.519Z] + filename=rendering.ipynb -[2024-05-06T18:58:44.519Z] + sed s/.ipynb$// -[2024-05-06T18:58:44.519Z] + echo rendering.ipynb -[2024-05-06T18:58:44.519Z] + filename=rendering -[2024-05-06T18:58:44.519Z] + [ -e buildout/rendering.output.ipynb ] -[2024-05-06T18:58:44.519Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb -[2024-05-06T18:58:44.519Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/rendering.ipynb to notebook -[2024-05-06T18:58:44.519Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:58:44.519Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:58:44.519Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:58:44.519Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:58:45.905Z] [NbConvertApp] Writing 11800 bytes to buildout/rendering.output.ipynb -[2024-05-06T18:58:46.170Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-05-06T18:58:46.170Z] + filename=subset-user-input.ipynb -[2024-05-06T18:58:46.170Z] + echo subset-user-input.ipynb -[2024-05-06T18:58:46.171Z] + sed s/.ipynb$// -[2024-05-06T18:58:46.171Z] + filename=subset-user-input -[2024-05-06T18:58:46.171Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-05-06T18:58:46.171Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb -[2024-05-06T18:58:48.087Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-05-06T18:58:49.501Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:58:49.501Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:58:49.501Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:58:49.501Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:59:11.438Z] [NbConvertApp] Writing 255278 bytes to buildout/subset-user-input.output.ipynb -[2024-05-06T18:59:11.438Z] + basename pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-05-06T18:59:11.438Z] + filename=subsetting.ipynb -[2024-05-06T18:59:11.438Z] + echo subsetting.ipynb -[2024-05-06T18:59:11.438Z] + sed s/.ipynb$// -[2024-05-06T18:59:11.438Z] + filename=subsetting -[2024-05-06T18:59:11.438Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-05-06T18:59:11.438Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb -[2024-05-06T18:59:11.439Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha_refresh_output/docs/source/notebooks/subsetting.ipynb to notebook -[2024-05-06T18:59:11.700Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:59:11.700Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:59:11.700Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:59:11.700Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:59:21.682Z] [NbConvertApp] Writing 93311 bytes to buildout/subsetting.output.ipynb -[2024-05-06T18:59:21.682Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-05-06T18:59:21.682Z] + filename=dap_subset.ipynb -[2024-05-06T18:59:21.682Z] + echo dap_subset.ipynb -[2024-05-06T18:59:21.682Z] + sed s/.ipynb$// -[2024-05-06T18:59:21.682Z] + filename=dap_subset -[2024-05-06T18:59:21.682Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-05-06T18:59:21.682Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-05-06T18:59:22.252Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-05-06T18:59:23.192Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:59:23.192Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:59:23.192Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:59:23.192Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:59:33.252Z] [NbConvertApp] Writing 162913 bytes to buildout/dap_subset.output.ipynb -[2024-05-06T18:59:33.252Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-05-06T18:59:33.252Z] + filename=finch-usage.ipynb -[2024-05-06T18:59:33.252Z] + echo finch-usage.ipynb -[2024-05-06T18:59:33.252Z] + sed s/.ipynb$// -[2024-05-06T18:59:33.252Z] + filename=finch-usage -[2024-05-06T18:59:33.252Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-05-06T18:59:33.252Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-05-06T18:59:34.183Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-05-06T18:59:35.122Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:59:35.122Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:59:35.122Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:59:35.122Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:59:45.118Z] [NbConvertApp] Writing 65072 bytes to buildout/finch-usage.output.ipynb -[2024-05-06T18:59:45.118Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-05-06T18:59:45.118Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-05-06T18:59:45.118Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-05-06T18:59:45.118Z] + sed s/.ipynb$// -[2024-05-06T18:59:45.118Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-05-06T18:59:45.118Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-05-06T18:59:45.118Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-05-06T18:59:46.061Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-05-06T18:59:47.005Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:59:47.005Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:59:47.005Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:59:47.005Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T18:59:52.275Z] [NbConvertApp] Writing 173052 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-05-06T18:59:52.275Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-05-06T18:59:52.275Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-05-06T18:59:52.275Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-05-06T18:59:52.275Z] + sed s/.ipynb$// -[2024-05-06T18:59:52.275Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-05-06T18:59:52.275Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-05-06T18:59:52.275Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-05-06T18:59:53.653Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-05-06T18:59:54.592Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T18:59:54.592Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T18:59:54.592Z] 0.00s - to python to disable frozen modules. -[2024-05-06T18:59:54.592Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T19:00:16.552Z] [NbConvertApp] Writing 1481203 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-05-06T19:00:16.552Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-05-06T19:00:16.552Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-05-06T19:00:16.552Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-05-06T19:00:16.552Z] + sed s/.ipynb$// -[2024-05-06T19:00:16.552Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-05-06T19:00:16.552Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-05-06T19:00:16.552Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-05-06T19:00:16.552Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-05-06T19:10:38.495Z] [NbConvertApp] Writing 576745 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb -[2024-05-06T19:10:38.495Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-05-06T19:10:38.495Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-05-06T19:10:38.495Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-05-06T19:10:38.495Z] + sed s/.ipynb$// -[2024-05-06T19:10:38.495Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-05-06T19:10:38.495Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-05-06T19:10:38.495Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-05-06T19:10:38.495Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-05-06T19:11:00.437Z] [NbConvertApp] Writing 785209 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-05-06T19:11:00.437Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-05-06T19:11:00.437Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-05-06T19:11:00.437Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-05-06T19:11:00.437Z] + sed s/.ipynb$// -[2024-05-06T19:11:00.437Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-05-06T19:11:00.437Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-05-06T19:11:00.437Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-05-06T19:11:00.437Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha_refresh_output/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-05-06T19:12:08.146Z] [NbConvertApp] Writing 1051936 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-05-06T19:12:08.146Z] + basename notebooks/hummingbird.ipynb -[2024-05-06T19:12:08.146Z] + filename=hummingbird.ipynb -[2024-05-06T19:12:08.146Z] + + sed s/.ipynb$// -[2024-05-06T19:12:08.146Z] echo hummingbird.ipynb -[2024-05-06T19:12:08.146Z] + filename=hummingbird -[2024-05-06T19:12:08.146Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-05-06T19:12:08.147Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-05-06T19:12:08.147Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-05-06T19:12:08.147Z] [NbConvertApp] Writing 15960 bytes to buildout/hummingbird.output.ipynb -[2024-05-06T19:12:08.407Z] + basename notebooks/stress-tests.ipynb -[2024-05-06T19:12:08.407Z] + filename=stress-tests.ipynb -[2024-05-06T19:12:08.407Z] + echo stress-tests.ipynb -[2024-05-06T19:12:08.407Z] + sed s/.ipynb$// -[2024-05-06T19:12:08.407Z] + filename=stress-tests -[2024-05-06T19:12:08.407Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-05-06T19:12:08.407Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-05-06T19:12:10.318Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-05-06T19:12:10.887Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-06T19:12:10.887Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-06T19:12:10.887Z] 0.00s - to python to disable frozen modules. -[2024-05-06T19:12:10.887Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-06T19:14:32.404Z] [NbConvertApp] Writing 428562 bytes to buildout/stress-tests.output.ipynb -[2024-05-06T19:14:32.404Z] + exit 0 -[2024-05-06T19:14:32.404Z] + EXIT_CODE=0 -[2024-05-06T19:14:32.404Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-05-06T19:14:32.404Z] + mkdir -p buildout/env-dump -[2024-05-06T19:14:32.404Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-05-06T19:14:32.404Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-05-06T19:14:32.404Z] + conda env export -n birdy -[2024-05-06T19:14:47.312Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-05-06T19:14:47.312Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-05-06T19:14:47.312Z] + conda list -n birdy --explicit -[2024-05-06T19:14:57.315Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-05-06T19:14:57.315Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-05-06T19:14:57.315Z] + pip freeze -[2024-05-06T19:14:57.315Z] + exit 0 +[2024-05-09T01:35:58.506Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-05-09T01:35:58.506Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-09T01:35:58.506Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-05-09T01:35:58.506Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T01:35:58.506Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-09T01:35:58.506Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T01:35:58.506Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T01:35:58.506Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-09T01:35:58.506Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-05-09T01:35:58.506Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T01:35:58.506Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-09T01:35:58.506Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T01:35:58.506Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T01:35:58.506Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-09T01:35:58.506Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-09T01:35:58.506Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T01:35:58.506Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T01:35:58.506Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T01:35:58.506Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T01:35:58.506Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-09T01:35:58.506Z] + [ -n https://gist.githubusercontent.com/tlvu/89115c6586e9d7b91262a68e9c4bc00b/raw/89707c3cbc983dac79e673943bb87e3de1579f22/jenkins-params-custom-branch.include.sh ] +[2024-05-09T01:35:58.506Z] + TMP_CONF_OVERRIDE=/tmp/jenkins_conf_override +[2024-05-09T01:35:58.506Z] + rm -vf /tmp/jenkins_conf_override +[2024-05-09T01:35:58.506Z] removed '/tmp/jenkins_conf_override' +[2024-05-09T01:35:58.506Z] + curl --silent https://gist.githubusercontent.com/tlvu/89115c6586e9d7b91262a68e9c4bc00b/raw/89707c3cbc983dac79e673943bb87e3de1579f22/jenkins-params-custom-branch.include.sh +[2024-05-09T01:35:58.506Z] + tee /tmp/jenkins_conf_override +[2024-05-09T01:35:58.776Z] #!/bin/sh +[2024-05-09T01:35:58.776Z] # Jenkins params override script to test custom branch, +[2024-05-09T01:35:58.776Z] # good for testing notebook fixes for new Jupyter env build. +[2024-05-09T01:35:58.776Z] +[2024-05-09T01:35:58.776Z] PAVICS_SDI_BRANCH="fix_nbs_jupyter_alpha" +[2024-05-09T01:35:58.776Z] #FINCH_BRANCH="" +[2024-05-09T01:35:58.776Z] PAVICS_LANDING_BRANCH="fix_nbs_jupyter_alpha" +[2024-05-09T01:35:58.776Z] +[2024-05-09T01:35:58.776Z] # Good for refreshing notebook output. +[2024-05-09T01:35:58.776Z] SAVE_RESULTING_NOTEBOOK_TIMEOUT="600"+ . /tmp/jenkins_conf_override +[2024-05-09T01:35:58.776Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T01:35:58.776Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T01:35:58.776Z] + SAVE_RESULTING_NOTEBOOK_TIMEOUT=600 +[2024-05-09T01:35:58.776Z] + git clean -fdx +[2024-05-09T01:35:58.776Z] Removing .pytest_cache/ +[2024-05-09T01:35:58.776Z] Removing PAVICS-landing-master/ +[2024-05-09T01:35:58.776Z] Removing RavenPy-fixnbs_pavics_betaimage/ +[2024-05-09T01:35:58.776Z] Removing __pycache__/ +[2024-05-09T01:35:58.776Z] Removing buildout/ +[2024-05-09T01:35:58.776Z] Removing esgf-compute-api-devel/ +[2024-05-09T01:35:58.776Z] Removing finch-master/ +[2024-05-09T01:35:58.776Z] Removing pavics-sdi-master/ +[2024-05-09T01:35:58.776Z] Removing raven-main/ +[2024-05-09T01:35:58.776Z] + ./downloadrepos +[2024-05-09T01:35:58.776Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-09T01:35:58.776Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-05-09T01:35:58.776Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T01:35:58.776Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-09T01:35:58.776Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T01:35:58.776Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T01:35:58.776Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-09T01:35:58.776Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-05-09T01:35:58.776Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T01:35:58.776Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-09T01:35:58.776Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T01:35:58.776Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T01:35:58.776Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-09T01:35:58.776Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-09T01:35:58.776Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T01:35:58.776Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T01:35:58.776Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T01:35:58.776Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T01:35:58.776Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-09T01:35:58.776Z] + rm -rf pavics-sdi-* +[2024-05-09T01:35:58.776Z] + + grep pavics-sdi +[2024-05-09T01:35:58.776Z] ls +[2024-05-09T01:35:58.776Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha +[2024-05-09T01:35:58.776Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-05-09T01:35:58.776Z] + shift +[2024-05-09T01:35:58.776Z] + branch=fix_nbs_jupyter_alpha +[2024-05-09T01:35:58.776Z] + shift +[2024-05-09T01:35:58.776Z] + + tar xz +[2024-05-09T01:35:58.776Z] wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-05-09T01:36:08.751Z] + ls +[2024-05-09T01:36:08.751Z] + grep pavics-sdi +[2024-05-09T01:36:08.751Z] pavics-sdi-fix_nbs_jupyter_alpha +[2024-05-09T01:36:08.751Z] + set +x +[2024-05-09T01:36:08.751Z] + rm -rf finch-* +[2024-05-09T01:36:08.751Z] + ls +[2024-05-09T01:36:08.751Z] + grep finch +[2024-05-09T01:36:08.751Z] + downloadrepos https://github.com/bird-house/finch master +[2024-05-09T01:36:08.751Z] + github_repo=https://github.com/bird-house/finch +[2024-05-09T01:36:08.751Z] + shift +[2024-05-09T01:36:08.751Z] + branch=master +[2024-05-09T01:36:08.752Z] + shift +[2024-05-09T01:36:08.752Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-05-09T01:36:08.752Z] + tar xz +[2024-05-09T01:36:09.678Z] + ls +[2024-05-09T01:36:09.678Z] + grep finch +[2024-05-09T01:36:09.678Z] finch-master +[2024-05-09T01:36:09.678Z] + set +x +[2024-05-09T01:36:09.678Z] + rm -rf PAVICS-landing-* +[2024-05-09T01:36:09.678Z] + ls +[2024-05-09T01:36:09.678Z] + grep PAVICS-landing +[2024-05-09T01:36:09.678Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha +[2024-05-09T01:36:09.678Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-05-09T01:36:09.678Z] + shift +[2024-05-09T01:36:09.678Z] + branch=fix_nbs_jupyter_alpha +[2024-05-09T01:36:09.678Z] + shift +[2024-05-09T01:36:09.678Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-05-09T01:36:09.678Z] + tar xz +[2024-05-09T01:37:17.320Z] + ls +[2024-05-09T01:37:17.320Z] + grep PAVICS-landing +[2024-05-09T01:37:17.320Z] PAVICS-landing-fix_nbs_jupyter_alpha +[2024-05-09T01:37:17.320Z] + set +x +[2024-05-09T01:37:17.320Z] + rm -rf raven-* +[2024-05-09T01:37:17.320Z] + ls +[2024-05-09T01:37:17.320Z] + grep raven +[2024-05-09T01:37:17.320Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-05-09T01:37:17.320Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-05-09T01:37:17.320Z] + shift +[2024-05-09T01:37:17.320Z] + branch=main +[2024-05-09T01:37:17.320Z] + shift +[2024-05-09T01:37:17.320Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-05-09T01:37:17.320Z] + tar xz +[2024-05-09T01:37:17.320Z] + ls +[2024-05-09T01:37:17.320Z] + grep raven +[2024-05-09T01:37:17.320Z] raven-main +[2024-05-09T01:37:17.320Z] + set +x +[2024-05-09T01:37:17.320Z] + rm -rf RavenPy-* +[2024-05-09T01:37:17.320Z] + ls +[2024-05-09T01:37:17.320Z] + grep RavenPy +[2024-05-09T01:37:17.320Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-05-09T01:37:17.320Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-05-09T01:37:17.320Z] + shift +[2024-05-09T01:37:17.320Z] + branch=master +[2024-05-09T01:37:17.320Z] + shift +[2024-05-09T01:37:17.320Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-05-09T01:37:17.320Z] + tar xz +[2024-05-09T01:37:17.320Z] + ls +[2024-05-09T01:37:17.320Z] + grep RavenPy +[2024-05-09T01:37:17.320Z] RavenPy-master +[2024-05-09T01:37:17.320Z] + set +x +[2024-05-09T01:37:17.320Z] + rm -rf esgf-compute-api-* +[2024-05-09T01:37:17.320Z] + ls +[2024-05-09T01:37:17.320Z] + grep esgf-compute-api +[2024-05-09T01:37:17.320Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-05-09T01:37:17.320Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-05-09T01:37:17.320Z] + shift +[2024-05-09T01:37:17.320Z] + branch=devel +[2024-05-09T01:37:17.320Z] + shift +[2024-05-09T01:37:17.320Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-05-09T01:37:17.320Z] + tar xz +[2024-05-09T01:37:17.320Z] + ls +[2024-05-09T01:37:17.320Z] + grep esgf-compute-api +[2024-05-09T01:37:17.320Z] esgf-compute-api-devel +[2024-05-09T01:37:17.320Z] + set +x +[2024-05-09T01:37:17.320Z] + echo fix_nbs_jupyter_alpha +[2024-05-09T01:37:17.320Z] + sed s@/@-@g +[2024-05-09T01:37:17.320Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T01:37:17.320Z] + echo Ouranosinc/pavics-sdi +[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g +[2024-05-09T01:37:17.320Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-05-09T01:37:17.320Z] + echo master +[2024-05-09T01:37:17.320Z] + sed s@/@-@g +[2024-05-09T01:37:17.320Z] + FINCH_BRANCH=master +[2024-05-09T01:37:17.320Z] + echo bird-house/finch +[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g +[2024-05-09T01:37:17.320Z] + FINCH_REPO_NAME=finch +[2024-05-09T01:37:17.320Z] + echo fix_nbs_jupyter_alpha +[2024-05-09T01:37:17.320Z] + sed s@/@-@g +[2024-05-09T01:37:17.320Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T01:37:17.320Z] + echo Ouranosinc/PAVICS-landing +[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g +[2024-05-09T01:37:17.320Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-05-09T01:37:17.320Z] + echo main +[2024-05-09T01:37:17.320Z] + sed s@/@-@g +[2024-05-09T01:37:17.320Z] + RAVEN_BRANCH=main +[2024-05-09T01:37:17.320Z] + echo Ouranosinc/raven +[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g +[2024-05-09T01:37:17.320Z] + RAVEN_REPO_NAME=raven +[2024-05-09T01:37:17.320Z] + echo master +[2024-05-09T01:37:17.320Z] + sed s@/@-@g +[2024-05-09T01:37:17.320Z] + RAVENPY_BRANCH=master +[2024-05-09T01:37:17.320Z] + echo CSHS-CWRA/RavenPy +[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g +[2024-05-09T01:37:17.320Z] + RAVENPY_REPO_NAME=RavenPy +[2024-05-09T01:37:17.320Z] + echo devel +[2024-05-09T01:37:17.320Z] + sed s@/@-@g +[2024-05-09T01:37:17.320Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-05-09T01:37:17.320Z] + echo ESGF/esgf-compute-api +[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g +[2024-05-09T01:37:17.320Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-05-09T01:37:17.320Z] + echo pavics-sdi-fix_nbs_jupyter_alpha +[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T01:37:17.320Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha +[2024-05-09T01:37:17.320Z] + echo finch-master +[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T01:37:17.320Z] + FINCH_DIR=finch-master +[2024-05-09T01:37:17.320Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha +[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T01:37:17.320Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha +[2024-05-09T01:37:17.320Z] + echo raven-main +[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T01:37:17.320Z] + RAVEN_DIR=raven-main +[2024-05-09T01:37:17.320Z] + echo RavenPy-master +[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T01:37:17.320Z] + RAVENPY_DIR=RavenPy-master +[2024-05-09T01:37:17.320Z] + echo esgf-compute-api-devel +[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T01:37:17.320Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-05-09T01:37:17.320Z] + echo true +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + VERIFY_SSL=true +[2024-05-09T01:37:17.320Z] + [ xtrue = xfalse ] +[2024-05-09T01:37:17.320Z] + rm -v finch-master/setup.cfg +[2024-05-09T01:37:17.320Z] removed 'finch-master/setup.cfg' +[2024-05-09T01:37:17.320Z] + rm -v raven-main/setup.cfg +[2024-05-09T01:37:17.320Z] removed 'raven-main/setup.cfg' +[2024-05-09T01:37:17.320Z] + rm -v raven-main/pyproject.toml +[2024-05-09T01:37:17.320Z] removed 'raven-main/pyproject.toml' +[2024-05-09T01:37:17.320Z] + rm -v RavenPy-master/setup.cfg +[2024-05-09T01:37:17.320Z] removed 'RavenPy-master/setup.cfg' +[2024-05-09T01:37:17.320Z] + rm -v RavenPy-master/tox.ini +[2024-05-09T01:37:17.320Z] removed 'RavenPy-master/tox.ini' +[2024-05-09T01:37:17.320Z] + rm -v RavenPy-master/pyproject.toml +[2024-05-09T01:37:17.320Z] removed 'RavenPy-master/pyproject.toml' +[2024-05-09T01:37:17.320Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-05-09T01:37:17.320Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-05-09T01:37:17.320Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-05-09T01:37:17.320Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-05-09T01:37:17.320Z] + echo false +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + TEST_MAGPIE_AUTH=false +[2024-05-09T01:37:17.320Z] + echo true +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + TEST_PAVICS_SDI_REPO=true +[2024-05-09T01:37:17.320Z] + echo false +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-05-09T01:37:17.320Z] + echo true +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + TEST_FINCH_REPO=true +[2024-05-09T01:37:17.320Z] + echo true +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + TEST_PAVICS_LANDING_REPO=true +[2024-05-09T01:37:17.320Z] + echo false +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + TEST_RAVEN_REPO=false +[2024-05-09T01:37:17.320Z] + echo false +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + TEST_RAVENPY_REPO=false +[2024-05-09T01:37:17.320Z] + echo false +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-05-09T01:37:17.320Z] + echo true +[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] +[2024-05-09T01:37:17.320Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-05-09T01:37:17.320Z] + NOTEBOOKS_TO_TEST= +[2024-05-09T01:37:17.320Z] + [ xfalse = xtrue ] +[2024-05-09T01:37:17.320Z] + [ xtrue = xtrue ] +[2024-05-09T01:37:17.320Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb +[2024-05-09T01:37:17.320Z] + [ xfalse = xtrue ] +[2024-05-09T01:37:17.320Z] + [ xtrue = xtrue ] +[2024-05-09T01:37:17.320Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-05-09T01:37:17.320Z] + [ xtrue = xtrue ] +[2024-05-09T01:37:17.320Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb +[2024-05-09T01:37:17.320Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T01:37:17.320Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-05-09T01:37:17.320Z] + PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T01:37:17.320Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T01:37:17.320Z] + THIS_FILE=/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T01:37:17.320Z] + dirname /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T01:37:17.320Z] + THIS_DIR=/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators +[2024-05-09T01:37:17.320Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-05-09T01:37:17.321Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-05-09T01:37:17.321Z] + unzip /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-05-09T01:37:17.321Z] Archive: /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T01:37:17.323Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-05-09T01:37:17.323Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-05-09T01:37:17.323Z] + ln -sv /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-05-09T01:37:17.323Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data' +[2024-05-09T01:37:17.323Z] + [ xfalse = xtrue ] +[2024-05-09T01:37:17.323Z] + [ xfalse = xtrue ] +[2024-05-09T01:37:17.323Z] + [ xfalse = xtrue ] +[2024-05-09T01:37:17.323Z] + [ xtrue = xtrue ] +[2024-05-09T01:37:17.323Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-05-09T01:37:17.323Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-05-09T01:37:17.323Z] + [ -n ] +[2024-05-09T01:37:17.323Z] + [ ! -z pavics.ouranos.ca ] +[2024-05-09T01:37:17.323Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-05-09T01:37:17.323Z] Will run notebooks against pavics.ouranos.ca +[2024-05-09T01:37:17.323Z] + [ -z ] +[2024-05-09T01:37:17.323Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-05-09T01:37:17.323Z] + git diff +[2024-05-09T01:37:17.323Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-05-09T01:37:17.323Z] + [ -n ] +[2024-05-09T01:37:17.324Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --nbval-sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-05-09T01:37:18.249Z] ============================= test session starts ============================== +[2024-05-09T01:37:18.249Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 +[2024-05-09T01:37:18.249Z] rootdir: /home/jenkins/agent/workspace/cker-build-with-jenkins-override +[2024-05-09T01:37:18.249Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-05-09T01:37:18.249Z] collected 219 items +[2024-05-09T01:37:18.249Z] +[2024-05-09T01:37:21.525Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-05-09T01:37:50.167Z] ..... [ 2%] +[2024-05-09T01:37:52.069Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-05-09T01:37:58.467Z] ...... [ 5%] +[2024-05-09T01:38:00.998Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-05-09T01:38:06.826Z] ..... [ 8%] +[2024-05-09T01:38:07.395Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-05-09T01:38:13.427Z] ....... [ 12%] +[2024-05-09T01:38:25.095Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb .... [ 14%] +[2024-05-09T01:41:30.970Z] ........ [ 17%] +[2024-05-09T01:41:30.970Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-05-09T01:41:33.701Z] ............... [ 25%] +[2024-05-09T01:41:36.256Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-05-09T01:41:41.386Z] .... [ 27%] +[2024-05-09T01:41:43.291Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb .. [ 28%] +[2024-05-09T01:41:49.063Z] .... [ 30%] +[2024-05-09T01:41:57.227Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-05-09T01:42:03.556Z] ..... [ 32%] +[2024-05-09T01:47:12.126Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb .FF [ 34%] +[2024-05-09T01:47:12.126Z] FFFF [ 36%] +[2024-05-09T01:47:12.126Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-05-09T01:47:12.126Z] .... [ 38%] +[2024-05-09T01:47:27.020Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-05-09T01:48:57.189Z] ........................... [ 51%] +[2024-05-09T01:48:58.565Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-05-09T01:49:00.207Z] ... [ 52%] +[2024-05-09T01:49:01.160Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-05-09T01:49:18.544Z] ........................ [ 64%] +[2024-05-09T01:49:21.884Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-05-09T01:49:26.365Z] ..... [ 67%] +[2024-05-09T01:49:35.696Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 72%] +[2024-05-09T01:49:43.888Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-05-09T01:49:44.847Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-05-09T01:49:47.982Z] ...... [ 78%] +[2024-05-09T01:49:54.559Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] +[2024-05-09T01:50:06.527Z] ............. [ 84%] +[2024-05-09T01:50:14.635Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-05-09T01:50:36.711Z] ....s [ 87%] +[2024-05-09T01:50:43.268Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-05-09T01:50:53.917Z] .. [ 88%] +[2024-05-09T01:51:06.129Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-05-09T01:51:49.315Z] ...... [ 91%] +[2024-05-09T01:51:51.726Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-05-09T01:53:47.480Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] =================================== FAILURES =================================== +[2024-05-09T01:53:47.480Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 1 _ +[2024-05-09T01:53:47.480Z] Notebook cell execution failed +[2024-05-09T01:53:47.480Z] Cell 1: Cell execution caused an exception +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] Input: +[2024-05-09T01:53:47.480Z] url = "http://test.opendap.org:80/opendap/data/nc/20070917-MODIS_A-JPL-L2P-A2007260000000.L2_LAC_GHRSST-v01.nc" +[2024-05-09T01:53:47.480Z] D = nc.Dataset(url) +[2024-05-09T01:53:47.480Z] print(D.ncattrs()) +[2024-05-09T01:53:47.480Z] D.variables.keys() +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] Traceback: +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] --------------------------------------------------------------------------- +[2024-05-09T01:53:47.480Z] OSError Traceback (most recent call last) +[2024-05-09T01:53:47.480Z] Cell In[1], line 2 +[2024-05-09T01:53:47.480Z]  1 url = "http://test.opendap.org:80/opendap/data/nc/20070917-MODIS_A-JPL-L2P-A2007260000000.L2_LAC_GHRSST-v01.nc" +[2024-05-09T01:53:47.480Z] ----> 2 D = nc.Dataset(url) +[2024-05-09T01:53:47.480Z]  3 print(D.ncattrs()) +[2024-05-09T01:53:47.480Z]  4 D.variables.keys() +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] File src/netCDF4/_netCDF4.pyx:2463, in netCDF4._netCDF4.Dataset.__init__() +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] File src/netCDF4/_netCDF4.pyx:2026, in netCDF4._netCDF4._ensure_nc_success() +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] OSError: [Errno -70] NetCDF: DAP server error: b'http://test.opendap.org:80/opendap/data/nc/20070917-MODIS_A-JPL-L2P-A2007260000000.L2_LAC_GHRSST-v01.nc' +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 2 _ +[2024-05-09T01:53:47.480Z] Notebook cell execution failed +[2024-05-09T01:53:47.480Z] Cell 2: Cell execution caused an exception +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] Input: +[2024-05-09T01:53:47.480Z] lat = D.variables["lat"][:] +[2024-05-09T01:53:47.480Z] lon = D.variables["lon"][:] +[2024-05-09T01:53:47.480Z] time = D.variables["time"] +[2024-05-09T01:53:47.480Z] print(time.units, time[0], nc.num2date(time[0], time.units)) +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] Traceback: +[2024-05-09T01:53:47.480Z] +[2024-05-09T01:53:47.480Z] --------------------------------------------------------------------------- +[2024-05-09T01:53:47.480Z] NameError Traceback (most recent call last) +[2024-05-09T01:53:47.480Z] Cell In[1], line 1 +[2024-05-09T01:53:47.481Z] ----> 1 lat = D.variables["lat"][:] +[2024-05-09T01:53:47.481Z]  2 lon = D.variables["lon"][:] +[2024-05-09T01:53:47.481Z]  3 time = D.variables["time"] +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] NameError: name 'D' is not defined +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 3 _ +[2024-05-09T01:53:47.481Z] Notebook cell execution failed +[2024-05-09T01:53:47.481Z] Cell 3: Cell execution caused an exception +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] Input: +[2024-05-09T01:53:47.481Z] sst = D.variables["sea_surface_temperature"] +[2024-05-09T01:53:47.481Z] print(sst.long_name) +[2024-05-09T01:53:47.481Z] print(sst.units) +[2024-05-09T01:53:47.481Z] print(sst.dimensions, sst.shape) +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] Traceback: +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] --------------------------------------------------------------------------- +[2024-05-09T01:53:47.481Z] NameError Traceback (most recent call last) +[2024-05-09T01:53:47.481Z] Cell In[1], line 1 +[2024-05-09T01:53:47.481Z] ----> 1 sst = D.variables["sea_surface_temperature"] +[2024-05-09T01:53:47.481Z]  2 print(sst.long_name) +[2024-05-09T01:53:47.481Z]  3 print(sst.units) +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] NameError: name 'D' is not defined +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 4 _ +[2024-05-09T01:53:47.481Z] Notebook cell execution failed +[2024-05-09T01:53:47.481Z] Cell 4: Cell execution caused an exception +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] Input: +[2024-05-09T01:53:47.481Z] a = sst[:] +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] Traceback: +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] --------------------------------------------------------------------------- +[2024-05-09T01:53:47.481Z] NameError Traceback (most recent call last) +[2024-05-09T01:53:47.481Z] Cell In[1], line 1 +[2024-05-09T01:53:47.481Z] ----> 1 a = sst[:] +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] NameError: name 'sst' is not defined +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 5 _ +[2024-05-09T01:53:47.481Z] Notebook cell execution failed +[2024-05-09T01:53:47.481Z] Cell 5: Cell execution caused an exception +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] Input: +[2024-05-09T01:53:47.481Z] a.data +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] Traceback: +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] --------------------------------------------------------------------------- +[2024-05-09T01:53:47.481Z] NameError Traceback (most recent call last) +[2024-05-09T01:53:47.481Z] Cell In[1], line 1 +[2024-05-09T01:53:47.481Z] ----> 1 a.data +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] NameError: name 'a' is not defined +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 6 _ +[2024-05-09T01:53:47.481Z] Notebook cell execution failed +[2024-05-09T01:53:47.481Z] Cell 6: Cell execution caused an exception +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] Input: +[2024-05-09T01:53:47.481Z] from matplotlib import pyplot as plt +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] plt.imshow(a.data[0]) +[2024-05-09T01:53:47.481Z] plt.show() +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] Traceback: +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] --------------------------------------------------------------------------- +[2024-05-09T01:53:47.481Z] NameError Traceback (most recent call last) +[2024-05-09T01:53:47.481Z] Cell In[1], line 3 +[2024-05-09T01:53:47.481Z]  1 from matplotlib import pyplot as plt +[2024-05-09T01:53:47.481Z] ----> 3 plt.imshow(a.data[0]) +[2024-05-09T01:53:47.481Z]  4 plt.show() +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] NameError: name 'a' is not defined +[2024-05-09T01:53:47.481Z] +[2024-05-09T01:53:47.481Z] =========================== short test summary info ============================ +[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 1 +[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 2 +[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 3 +[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 4 +[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 5 +[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 6 +[2024-05-09T01:53:47.481Z] ============= 6 failed, 212 passed, 1 skipped in 986.41s (0:16:26) ============= +[2024-05-09T01:53:47.481Z] + EXIT_CODE=1 +[2024-05-09T01:53:47.481Z] + echo true +[2024-05-09T01:53:47.481Z] + tr [:upper:] [:lower:] +[2024-05-09T01:53:47.481Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-05-09T01:53:47.481Z] + [ xtrue = xtrue ] +[2024-05-09T01:53:47.481Z] + mkdir -p buildout +[2024-05-09T01:53:47.481Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb +[2024-05-09T01:53:47.481Z] + filename=CaSR_basic.ipynb +[2024-05-09T01:53:47.481Z] + echo CaSR_basic.ipynb +[2024-05-09T01:53:47.481Z] + sed s/.ipynb$// +[2024-05-09T01:53:47.481Z] + filename=CaSR_basic +[2024-05-09T01:53:47.481Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-05-09T01:53:47.481Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb +[2024-05-09T01:53:47.481Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-05-09T01:54:19.553Z] [NbConvertApp] Writing 732952 bytes to buildout/CaSR_basic.output.ipynb +[2024-05-09T01:54:19.553Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-05-09T01:54:19.553Z] + filename=WCS_example.ipynb +[2024-05-09T01:54:19.553Z] + echo WCS_example.ipynb +[2024-05-09T01:54:19.553Z] + sed s/.ipynb$// +[2024-05-09T01:54:19.553Z] + filename=WCS_example +[2024-05-09T01:54:19.553Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-05-09T01:54:19.553Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-05-09T01:54:20.924Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-05-09T01:54:21.852Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:54:21.852Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:54:21.852Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:54:21.852Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T01:54:31.799Z] [NbConvertApp] Writing 145337 bytes to buildout/WCS_example.output.ipynb +[2024-05-09T01:54:31.799Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-05-09T01:54:31.799Z] + filename=WFS_example.ipynb +[2024-05-09T01:54:31.799Z] + echo WFS_example.ipynb +[2024-05-09T01:54:31.799Z] + sed s/.ipynb$// +[2024-05-09T01:54:31.799Z] + filename=WFS_example +[2024-05-09T01:54:31.799Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-05-09T01:54:31.799Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-05-09T01:54:32.054Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-05-09T01:54:33.427Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:54:33.427Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:54:33.427Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:54:33.427Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T01:54:41.621Z] [NbConvertApp] Writing 44572 bytes to buildout/WFS_example.output.ipynb +[2024-05-09T01:54:41.621Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-05-09T01:54:41.621Z] + filename=WMS_example.ipynb +[2024-05-09T01:54:41.622Z] + echo WMS_example.ipynb +[2024-05-09T01:54:41.622Z] + sed s/.ipynb$// +[2024-05-09T01:54:41.622Z] + filename=WMS_example +[2024-05-09T01:54:41.622Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-05-09T01:54:41.622Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-05-09T01:54:42.986Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-05-09T01:54:44.359Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:54:44.359Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:54:44.359Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:54:44.359Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T01:54:50.904Z] [NbConvertApp] Writing 2048326 bytes to buildout/WMS_example.output.ipynb +[2024-05-09T01:54:50.904Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-05-09T01:54:50.904Z] + filename=climex.ipynb +[2024-05-09T01:54:50.904Z] + echo climex.ipynb +[2024-05-09T01:54:50.904Z] + sed s/.ipynb$// +[2024-05-09T01:54:50.904Z] + filename=climex +[2024-05-09T01:54:50.904Z] + [ -e buildout/climex.output.ipynb ] +[2024-05-09T01:54:50.904Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-05-09T01:54:52.805Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb to notebook +[2024-05-09T01:54:53.373Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:54:53.373Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:54:53.373Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:54:53.373Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T01:57:29.858Z] [NbConvertApp] Writing 1781112 bytes to buildout/climex.output.ipynb +[2024-05-09T01:57:29.858Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-05-09T01:57:29.858Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-05-09T01:57:29.858Z] + echo eccc-geoapi-climate-stations.ipynb +[2024-05-09T01:57:29.858Z] + sed s/.ipynb$// +[2024-05-09T01:57:29.858Z] + filename=eccc-geoapi-climate-stations +[2024-05-09T01:57:29.858Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-05-09T01:57:29.858Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-05-09T01:57:29.858Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-05-09T01:57:29.858Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:57:29.858Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:57:29.858Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:57:29.858Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T01:57:33.170Z] [NbConvertApp] Writing 278952 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-05-09T01:57:33.170Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-05-09T01:57:33.170Z] + filename=eccc-geoapi-xclim.ipynb +[2024-05-09T01:57:33.170Z] + echo eccc-geoapi-xclim.ipynb +[2024-05-09T01:57:33.170Z] + sed s/.ipynb$// +[2024-05-09T01:57:33.170Z] + filename=eccc-geoapi-xclim +[2024-05-09T01:57:33.170Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-05-09T01:57:33.170Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-05-09T01:57:34.542Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-05-09T01:57:35.479Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:57:35.479Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:57:35.479Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:57:35.479Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T01:57:45.433Z] [NbConvertApp] Writing 108112 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-05-09T01:57:45.433Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-05-09T01:57:45.433Z] + filename=esgf-dap.ipynb +[2024-05-09T01:57:45.433Z] + sed s/.ipynb$// +[2024-05-09T01:57:45.433Z] + echo esgf-dap.ipynb +[2024-05-09T01:57:45.433Z] + filename=esgf-dap +[2024-05-09T01:57:45.433Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-05-09T01:57:45.433Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-05-09T01:57:45.693Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-05-09T01:57:46.621Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:57:46.621Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:57:46.621Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:57:46.621Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T01:57:54.721Z] [NbConvertApp] Writing 63631 bytes to buildout/esgf-dap.output.ipynb +[2024-05-09T01:57:54.721Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-05-09T01:57:54.721Z] + filename=forecasts.ipynb +[2024-05-09T01:57:54.721Z] + echo forecasts.ipynb+ +[2024-05-09T01:57:54.721Z] sed s/.ipynb$// +[2024-05-09T01:57:54.721Z] + filename=forecasts +[2024-05-09T01:57:54.721Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-05-09T01:57:54.721Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-05-09T01:57:55.651Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb to notebook +[2024-05-09T01:57:57.024Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:57:57.024Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:57:57.024Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:57:57.024Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T01:58:15.094Z] [NbConvertApp] Writing 164988 bytes to buildout/forecasts.output.ipynb +[2024-05-09T01:58:15.094Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-05-09T01:58:15.094Z] + filename=jupyter_extensions.ipynb +[2024-05-09T01:58:15.094Z] + echo jupyter_extensions.ipynb +[2024-05-09T01:58:15.094Z] + sed s/.ipynb$// +[2024-05-09T01:58:15.094Z] + filename=jupyter_extensions +[2024-05-09T01:58:15.094Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-05-09T01:58:15.094Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-05-09T01:58:15.094Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-05-09T01:58:15.094Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:58:15.094Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:58:15.094Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:58:15.094Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T01:58:19.310Z] [NbConvertApp] Writing 7996 bytes to buildout/jupyter_extensions.output.ipynb +[2024-05-09T01:58:19.310Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-05-09T01:58:19.310Z] + filename=opendap.ipynb +[2024-05-09T01:58:19.310Z] + echo opendap.ipynb +[2024-05-09T01:58:19.310Z] + sed s/.ipynb$// +[2024-05-09T01:58:19.310Z] + filename=opendap +[2024-05-09T01:58:19.310Z] + [ -e buildout/opendap.output.ipynb ] +[2024-05-09T01:58:19.310Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-05-09T01:58:20.685Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb to notebook +[2024-05-09T01:58:21.616Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T01:58:21.616Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T01:58:21.616Z] 0.00s - to python to disable frozen modules. +[2024-05-09T01:58:21.616Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:03:28.100Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-05-09T02:03:28.100Z] context: 503 Service Unavailable

Service Unavailable

The server is temporarily unable to service yourrequest due to maintenance downtime or capacityproblems. Please try again later.

+[2024-05-09T02:03:28.100Z] [NbConvertApp] Writing 11727 bytes to buildout/opendap.output.ipynb +[2024-05-09T02:03:28.100Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-05-09T02:03:28.100Z] + filename=pavics_thredds.ipynb +[2024-05-09T02:03:28.100Z] + echo pavics_thredds.ipynb +[2024-05-09T02:03:28.100Z] + sed s/.ipynb$// +[2024-05-09T02:03:28.100Z] + filename=pavics_thredds +[2024-05-09T02:03:28.100Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-05-09T02:03:28.100Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-05-09T02:03:28.100Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-05-09T02:03:28.100Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:03:28.100Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:03:28.100Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:03:28.100Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:03:28.672Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-05-09T02:03:28.672Z] context: Access to service is forbidden. +[2024-05-09T02:03:28.672Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-05-09T02:03:28.672Z] context: Access to service is forbidden. +[2024-05-09T02:03:30.574Z] [NbConvertApp] Writing 90749 bytes to buildout/pavics_thredds.output.ipynb +[2024-05-09T02:03:30.574Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-05-09T02:03:30.574Z] + filename=regridding.ipynb +[2024-05-09T02:03:30.574Z] + sed s/.ipynb$// +[2024-05-09T02:03:30.574Z] + echo regridding.ipynb +[2024-05-09T02:03:30.574Z] + filename=regridding +[2024-05-09T02:03:30.574Z] + [ -e buildout/regridding.output.ipynb ] +[2024-05-09T02:03:30.574Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-05-09T02:03:32.460Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb to notebook +[2024-05-09T02:03:33.390Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:03:33.390Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:03:33.390Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:03:33.390Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:05:09.835Z] [NbConvertApp] Writing 1239616 bytes to buildout/regridding.output.ipynb +[2024-05-09T02:05:09.835Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-05-09T02:05:09.835Z] + filename=rendering.ipynb +[2024-05-09T02:05:09.835Z] + echo rendering.ipynb +[2024-05-09T02:05:09.835Z] + sed s/.ipynb$// +[2024-05-09T02:05:09.835Z] + filename=rendering +[2024-05-09T02:05:09.835Z] + [ -e buildout/rendering.output.ipynb ] +[2024-05-09T02:05:09.835Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-05-09T02:05:09.835Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb to notebook +[2024-05-09T02:05:09.835Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:05:09.835Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:05:09.835Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:05:09.835Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:05:11.203Z] [NbConvertApp] Writing 11800 bytes to buildout/rendering.output.ipynb +[2024-05-09T02:05:11.203Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-05-09T02:05:11.203Z] + filename=subset-user-input.ipynb +[2024-05-09T02:05:11.203Z] + sed s/.ipynb$// +[2024-05-09T02:05:11.203Z] + echo subset-user-input.ipynb +[2024-05-09T02:05:11.203Z] + filename=subset-user-input +[2024-05-09T02:05:11.203Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-05-09T02:05:11.203Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-05-09T02:05:13.091Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-05-09T02:05:13.656Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:05:13.656Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:05:13.656Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:05:13.656Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:05:35.555Z] [NbConvertApp] Writing 255278 bytes to buildout/subset-user-input.output.ipynb +[2024-05-09T02:05:35.555Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-05-09T02:05:35.555Z] + filename=subsetting.ipynb +[2024-05-09T02:05:35.555Z] + echo subsetting.ipynb +[2024-05-09T02:05:35.555Z] + sed s/.ipynb$// +[2024-05-09T02:05:35.555Z] + filename=subsetting +[2024-05-09T02:05:35.555Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-05-09T02:05:35.555Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-05-09T02:05:35.555Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb to notebook +[2024-05-09T02:05:35.811Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:05:35.811Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:05:35.811Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:05:35.811Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:05:45.855Z] [NbConvertApp] Writing 93311 bytes to buildout/subsetting.output.ipynb +[2024-05-09T02:05:45.855Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-05-09T02:05:45.855Z] + filename=dap_subset.ipynb +[2024-05-09T02:05:45.855Z] + echo dap_subset.ipynb +[2024-05-09T02:05:45.855Z] + sed s/.ipynb$// +[2024-05-09T02:05:45.855Z] + filename=dap_subset +[2024-05-09T02:05:45.855Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-05-09T02:05:45.855Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-05-09T02:05:46.115Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-05-09T02:05:47.046Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:05:47.046Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:05:47.046Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:05:47.046Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:06:01.902Z] [NbConvertApp] Writing 162913 bytes to buildout/dap_subset.output.ipynb +[2024-05-09T02:06:01.902Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-05-09T02:06:01.902Z] + filename=finch-usage.ipynb +[2024-05-09T02:06:01.902Z] + echo finch-usage.ipynb +[2024-05-09T02:06:01.902Z] + sed s/.ipynb$// +[2024-05-09T02:06:01.902Z] + filename=finch-usage +[2024-05-09T02:06:01.902Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-05-09T02:06:01.902Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-05-09T02:06:01.902Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-05-09T02:06:03.274Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:06:03.274Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:06:03.274Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:06:03.274Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:06:13.215Z] [NbConvertApp] Writing 65072 bytes to buildout/finch-usage.output.ipynb +[2024-05-09T02:06:13.215Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T02:06:13.215Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T02:06:13.215Z] + sed s/.ipynb$// +[2024-05-09T02:06:13.215Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T02:06:13.215Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-05-09T02:06:13.215Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-05-09T02:06:13.215Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T02:06:14.145Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-05-09T02:06:15.080Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:06:15.080Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:06:15.080Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:06:15.080Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:06:19.266Z] [NbConvertApp] Writing 173042 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-05-09T02:06:19.522Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T02:06:19.522Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T02:06:19.522Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T02:06:19.522Z] + sed s/.ipynb$// +[2024-05-09T02:06:19.522Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-05-09T02:06:19.523Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-05-09T02:06:19.523Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T02:06:21.410Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-05-09T02:06:22.339Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:06:22.339Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:06:22.339Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:06:22.339Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:06:40.400Z] [NbConvertApp] Writing 1481193 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-05-09T02:06:40.401Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T02:06:40.401Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T02:06:40.401Z] + sed s/.ipynb$// +[2024-05-09T02:06:40.401Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T02:06:40.401Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-05-09T02:06:40.401Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-05-09T02:06:40.401Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T02:06:42.287Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-05-09T02:10:03.747Z] /opt/conda/envs/birdy/lib/python3.11/contextlib.py:144: UserWarning: Creating scratch directories is taking a surprisingly long time. (1.76s) This is often due to running workers on a network file system. Consider specifying a local-directory to point workers to write scratch data to a local disk. +[2024-05-09T02:10:03.747Z] next(self.gen) +[2024-05-09T02:17:10.488Z] [NbConvertApp] Writing 557860 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb +[2024-05-09T02:17:10.488Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T02:17:10.488Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T02:17:10.488Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T02:17:10.488Z] + sed s/.ipynb$// +[2024-05-09T02:17:10.488Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-05-09T02:17:10.488Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-05-09T02:17:10.488Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T02:17:10.488Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-05-09T02:17:25.356Z] [NbConvertApp] Writing 785214 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-05-09T02:17:25.356Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T02:17:25.356Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T02:17:25.356Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T02:17:25.356Z] + sed s/.ipynb$// +[2024-05-09T02:17:25.356Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-05-09T02:17:25.356Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-05-09T02:17:25.356Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T02:17:26.286Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-05-09T02:18:33.933Z] [NbConvertApp] Writing 1051936 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-05-09T02:18:33.933Z] + basename notebooks/hummingbird.ipynb +[2024-05-09T02:18:33.933Z] + filename=hummingbird.ipynb +[2024-05-09T02:18:33.933Z] + echo hummingbird.ipynb +[2024-05-09T02:18:33.933Z] + sed s/.ipynb$// +[2024-05-09T02:18:33.933Z] + filename=hummingbird +[2024-05-09T02:18:33.933Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-05-09T02:18:33.933Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-05-09T02:18:33.933Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-05-09T02:18:33.933Z] [NbConvertApp] Writing 15863 bytes to buildout/hummingbird.output.ipynb +[2024-05-09T02:18:33.933Z] + basename notebooks/stress-tests.ipynb +[2024-05-09T02:18:33.933Z] + filename=stress-tests.ipynb +[2024-05-09T02:18:33.933Z] + echo stress-tests.ipynb +[2024-05-09T02:18:33.933Z] + sed s/.ipynb$// +[2024-05-09T02:18:33.933Z] + filename=stress-tests +[2024-05-09T02:18:33.933Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-05-09T02:18:33.933Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-05-09T02:18:34.864Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-05-09T02:18:35.794Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T02:18:35.794Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T02:18:35.794Z] 0.00s - to python to disable frozen modules. +[2024-05-09T02:18:35.794Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T02:20:42.209Z] [NbConvertApp] Writing 428127 bytes to buildout/stress-tests.output.ipynb +[2024-05-09T02:20:42.209Z] + exit 1 +[2024-05-09T02:20:42.209Z] + EXIT_CODE=1 +[2024-05-09T02:20:42.209Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-05-09T02:20:42.209Z] + mkdir -p buildout/env-dump +[2024-05-09T02:20:42.209Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-05-09T02:20:42.209Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-05-09T02:20:42.209Z] + conda env export -n birdy +[2024-05-09T02:20:50.319Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T02:20:50.319Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T02:20:50.319Z] + conda list -n birdy --explicit +[2024-05-09T02:21:00.283Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T02:21:00.283Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T02:21:00.283Z] + pip freeze +[2024-05-09T02:21:00.903Z] + exit 1 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -822,38 +975,41 @@ $ docker top 3e373716f2b2bbbf0530ef594f7112c08b675b075d030f3a0aafce0c30376af0 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-05-06T19:14:58.089Z] Archiving artifacts -[2024-05-06T19:14:58.119Z] Recording fingerprints +[2024-05-09T02:21:03.086Z] Archiving artifacts +[2024-05-09T02:21:03.299Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:14:58.441Z] Archiving artifacts -[2024-05-06T19:14:59.270Z] Recording fingerprints +[2024-05-09T02:21:03.397Z] Archiving artifacts +[2024-05-09T02:21:04.069Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:15:00.226Z] Archiving artifacts -[2024-05-06T19:15:00.463Z] Recording fingerprints +[2024-05-09T02:21:05.703Z] Archiving artifacts +[2024-05-09T02:21:05.913Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:15:00.569Z] Archiving artifacts -[2024-05-06T19:15:00.621Z] Recording fingerprints +[2024-05-09T02:21:06.457Z] Archiving artifacts +[2024-05-09T02:21:06.473Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:15:00.644Z] Archiving artifacts -[2024-05-06T19:15:00.911Z] Recording fingerprints +[2024-05-09T02:21:06.709Z] Archiving artifacts +[2024-05-09T02:21:06.729Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:15:00.952Z] Archiving artifacts -[2024-05-06T19:15:00.994Z] Recording fingerprints +[2024-05-09T02:21:06.976Z] Archiving artifacts +[2024-05-09T02:21:07.006Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:15:02.107Z] Archiving artifacts -[2024-05-06T19:15:02.122Z] Recording fingerprints +[2024-05-09T02:21:08.560Z] Archiving artifacts +[2024-05-09T02:21:08.572Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:15:02.141Z] Archiving artifacts -[2024-05-06T19:15:02.181Z] Recording fingerprints +[2024-05-09T02:21:08.718Z] Archiving artifacts +[2024-05-09T02:21:09.040Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:15:02.443Z] Archiving artifacts -[2024-05-06T19:15:02.891Z] Recording fingerprints +[2024-05-09T02:21:09.445Z] Archiving artifacts +[2024-05-09T02:21:09.849Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:15:02.982Z] Archiving artifacts -[2024-05-06T19:15:04.240Z] Recording fingerprints +[2024-05-09T02:21:09.960Z] Archiving artifacts +[2024-05-09T02:21:11.076Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-06T19:15:04.455Z] Archiving artifacts -[2024-05-06T19:15:04.475Z] Recording fingerprints +[2024-05-09T02:21:13.476Z] Archiving artifacts +[2024-05-09T02:21:13.493Z] Recording fingerprints +[Pipeline] emailextrecipients +[Pipeline] step +[2024-05-09T02:21:13.801Z] Sending e-mails to: vu.long@ouranos.ca [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -863,12 +1019,13 @@ $ docker top 3e373716f2b2bbbf0530ef594f7112c08b675b075d030f3a0aafce0c30376af0 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 3e373716f2b2bbbf0530ef594f7112c08b675b075d030f3a0aafce0c30376af0 -$ docker rm -f 3e373716f2b2bbbf0530ef594f7112c08b675b075d030f3a0aafce0c30376af0 +$ docker stop --time=1 4c7fe1c70b0ab1d443f74e257e09736c874f7f9c390f6f4b0bd645fe301d5c96 +$ docker rm -f 4c7fe1c70b0ab1d443f74e257e09736c874f7f9c390f6f4b0bd645fe301d5c96 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] End of Pipeline -Finished: SUCCESS +ERROR: script returned exit code 1 +Finished: FAILURE From 54792e6510adfcd1bb21e1bd31fdfa36c5c634e0 Mon Sep 17 00:00:00 2001 From: Long Vu Date: Thu, 9 May 2024 13:11:48 -0400 Subject: [PATCH 104/104] docker: py311-240506-update240508: jenkins build, default nb, all passed --- .../jenkins-buildlogs-default.txt | 1725 ++++++++--------- 1 file changed, 794 insertions(+), 931 deletions(-) diff --git a/docker/saved_buildout/jenkins-buildlogs-default.txt b/docker/saved_buildout/jenkins-buildlogs-default.txt index e88f08b..ad4941c 100644 --- a/docker/saved_buildout/jenkins-buildlogs-default.txt +++ b/docker/saved_buildout/jenkins-buildlogs-default.txt @@ -1,5 +1,5 @@ Started by user Long Vu -Replayed #4 +Replayed #8 > git rev-parse --is-inside-work-tree # timeout=10 Setting origin to https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 @@ -32,13 +32,13 @@ Running on linux1 in /home/jenkins/agent/workspace/cker-build-with-jenkins-overr No credentials specified Fetching changes from the remote Git repository Fetching without tags -Checking out Revision ca65e709adbfc074ee946c260be793fdca08d1b9 (new-docker-build-with-jenkins-override) -Commit message: "Merge remote-tracking branch 'origin/new-docker-build' into new-docker-build-with-jenkins-override" > git rev-parse --is-inside-work-tree # timeout=10 > git config remote.origin.url https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git # timeout=10 Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git > git --version # timeout=10 > git fetch --no-tags --progress -- https://github.com/Ouranosinc/PAVICS-e2e-workflow-tests.git +refs/heads/*:refs/remotes/origin/* # timeout=10 +Checking out Revision ca65e709adbfc074ee946c260be793fdca08d1b9 (new-docker-build-with-jenkins-override) +Commit message: "Merge remote-tracking branch 'origin/new-docker-build' into new-docker-build-with-jenkins-override" > git config core.sparsecheckout # timeout=10 > git checkout -f ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 > git rev-list --no-walk ca65e709adbfc074ee946c260be793fdca08d1b9 # timeout=10 @@ -53,919 +53,786 @@ Fetching upstream changes from https://github.com/Ouranosinc/PAVICS-e2e-workflow [Pipeline] withDockerContainer linux1 seems to be running inside container c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b $ docker run -t -d -u 1000:1000 -w /home/jenkins/agent/workspace/cker-build-with-jenkins-override --volumes-from c7b47b12d037a55684325ed6aba8c5cdbf14095a9ef2302738499cdd57ccd08b -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** pavics/workflow-tests:py311-240506-update240508 cat -$ docker top 4c7fe1c70b0ab1d443f74e257e09736c874f7f9c390f6f4b0bd645fe301d5c96 -eo pid,comm +$ docker top e7df9406a5158c78f2d19b6e5ddb3af8f42f0a02b0d40ca6aa64da61603d97e6 -eo pid,comm [Pipeline] { [Pipeline] ansiColor [Pipeline] { [Pipeline] timestamps [Pipeline] { [Pipeline] timeout -[2024-05-09T01:35:57.220Z] Timeout set to expire in 2 hr 0 min +[2024-05-09T16:12:44.737Z] Timeout set to expire in 2 hr 0 min [Pipeline] { [Pipeline] stage [Pipeline] { (Run tests) [Pipeline] script [Pipeline] { [Pipeline] withCredentials -[2024-05-09T01:35:57.990Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN +[2024-05-09T16:12:45.537Z] Masking supported pattern matches of $ESGF_AUTH_USERNAME or $ESGF_AUTH_PASSWORD or $ESGF_AUTH_TOKEN or $COMPUTE_TOKEN [Pipeline] { [Pipeline] sh -[2024-05-09T01:35:58.506Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall -[2024-05-09T01:35:58.506Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-05-09T01:35:58.506Z] PAVICS_SDI_BRANCH has been set to 'master' -[2024-05-09T01:35:58.506Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-05-09T01:35:58.506Z] TEST_FINCH_REPO has been set to 'true' -[2024-05-09T01:35:58.506Z] FINCH_BRANCH has been set to 'master' -[2024-05-09T01:35:58.506Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-05-09T01:35:58.506Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-05-09T01:35:58.506Z] PAVICS_LANDING_BRANCH has been set to 'master' -[2024-05-09T01:35:58.506Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-05-09T01:35:58.506Z] TEST_RAVEN_REPO has been set to 'false' -[2024-05-09T01:35:58.506Z] RAVEN_BRANCH has been set to 'main' -[2024-05-09T01:35:58.506Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-05-09T01:35:58.506Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-05-09T01:35:58.506Z] RAVENPY_BRANCH has been set to 'master' -[2024-05-09T01:35:58.506Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-05-09T01:35:58.506Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-05-09T01:35:58.506Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-05-09T01:35:58.506Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-05-09T01:35:58.506Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-05-09T01:35:58.506Z] + [ -n https://gist.githubusercontent.com/tlvu/89115c6586e9d7b91262a68e9c4bc00b/raw/89707c3cbc983dac79e673943bb87e3de1579f22/jenkins-params-custom-branch.include.sh ] -[2024-05-09T01:35:58.506Z] + TMP_CONF_OVERRIDE=/tmp/jenkins_conf_override -[2024-05-09T01:35:58.506Z] + rm -vf /tmp/jenkins_conf_override -[2024-05-09T01:35:58.506Z] removed '/tmp/jenkins_conf_override' -[2024-05-09T01:35:58.506Z] + curl --silent https://gist.githubusercontent.com/tlvu/89115c6586e9d7b91262a68e9c4bc00b/raw/89707c3cbc983dac79e673943bb87e3de1579f22/jenkins-params-custom-branch.include.sh -[2024-05-09T01:35:58.506Z] + tee /tmp/jenkins_conf_override -[2024-05-09T01:35:58.776Z] #!/bin/sh -[2024-05-09T01:35:58.776Z] # Jenkins params override script to test custom branch, -[2024-05-09T01:35:58.776Z] # good for testing notebook fixes for new Jupyter env build. -[2024-05-09T01:35:58.776Z] -[2024-05-09T01:35:58.776Z] PAVICS_SDI_BRANCH="fix_nbs_jupyter_alpha" -[2024-05-09T01:35:58.776Z] #FINCH_BRANCH="" -[2024-05-09T01:35:58.776Z] PAVICS_LANDING_BRANCH="fix_nbs_jupyter_alpha" -[2024-05-09T01:35:58.776Z] -[2024-05-09T01:35:58.776Z] # Good for refreshing notebook output. -[2024-05-09T01:35:58.776Z] SAVE_RESULTING_NOTEBOOK_TIMEOUT="600"+ . /tmp/jenkins_conf_override -[2024-05-09T01:35:58.776Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha -[2024-05-09T01:35:58.776Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha -[2024-05-09T01:35:58.776Z] + SAVE_RESULTING_NOTEBOOK_TIMEOUT=600 -[2024-05-09T01:35:58.776Z] + git clean -fdx -[2024-05-09T01:35:58.776Z] Removing .pytest_cache/ -[2024-05-09T01:35:58.776Z] Removing PAVICS-landing-master/ -[2024-05-09T01:35:58.776Z] Removing RavenPy-fixnbs_pavics_betaimage/ -[2024-05-09T01:35:58.776Z] Removing __pycache__/ -[2024-05-09T01:35:58.776Z] Removing buildout/ -[2024-05-09T01:35:58.776Z] Removing esgf-compute-api-devel/ -[2024-05-09T01:35:58.776Z] Removing finch-master/ -[2024-05-09T01:35:58.776Z] Removing pavics-sdi-master/ -[2024-05-09T01:35:58.776Z] Removing raven-main/ -[2024-05-09T01:35:58.776Z] + ./downloadrepos -[2024-05-09T01:35:58.776Z] TEST_PAVICS_SDI_REPO has been set to 'true' -[2024-05-09T01:35:58.776Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-05-09T01:35:58.776Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' -[2024-05-09T01:35:58.776Z] TEST_FINCH_REPO has been set to 'true' -[2024-05-09T01:35:58.776Z] FINCH_BRANCH has been set to 'master' -[2024-05-09T01:35:58.776Z] FINCH_REPO has been set to 'bird-house/finch' -[2024-05-09T01:35:58.776Z] TEST_PAVICS_LANDING_REPO has been set to 'true' -[2024-05-09T01:35:58.776Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' -[2024-05-09T01:35:58.776Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' -[2024-05-09T01:35:58.776Z] TEST_RAVEN_REPO has been set to 'false' -[2024-05-09T01:35:58.776Z] RAVEN_BRANCH has been set to 'main' -[2024-05-09T01:35:58.776Z] RAVEN_REPO has been set to 'Ouranosinc/raven' -[2024-05-09T01:35:58.776Z] TEST_RAVENPY_REPO has been set to 'false' -[2024-05-09T01:35:58.776Z] RAVENPY_BRANCH has been set to 'master' -[2024-05-09T01:35:58.776Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' -[2024-05-09T01:35:58.776Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' -[2024-05-09T01:35:58.776Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' -[2024-05-09T01:35:58.776Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' -[2024-05-09T01:35:58.776Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' -[2024-05-09T01:35:58.776Z] + rm -rf pavics-sdi-* -[2024-05-09T01:35:58.776Z] + + grep pavics-sdi -[2024-05-09T01:35:58.776Z] ls -[2024-05-09T01:35:58.776Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha -[2024-05-09T01:35:58.776Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi -[2024-05-09T01:35:58.776Z] + shift -[2024-05-09T01:35:58.776Z] + branch=fix_nbs_jupyter_alpha -[2024-05-09T01:35:58.776Z] + shift -[2024-05-09T01:35:58.776Z] + + tar xz -[2024-05-09T01:35:58.776Z] wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha.tar.gz -[2024-05-09T01:36:08.751Z] + ls -[2024-05-09T01:36:08.751Z] + grep pavics-sdi -[2024-05-09T01:36:08.751Z] pavics-sdi-fix_nbs_jupyter_alpha -[2024-05-09T01:36:08.751Z] + set +x -[2024-05-09T01:36:08.751Z] + rm -rf finch-* -[2024-05-09T01:36:08.751Z] + ls -[2024-05-09T01:36:08.751Z] + grep finch -[2024-05-09T01:36:08.751Z] + downloadrepos https://github.com/bird-house/finch master -[2024-05-09T01:36:08.751Z] + github_repo=https://github.com/bird-house/finch -[2024-05-09T01:36:08.751Z] + shift -[2024-05-09T01:36:08.751Z] + branch=master -[2024-05-09T01:36:08.752Z] + shift -[2024-05-09T01:36:08.752Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz -[2024-05-09T01:36:08.752Z] + tar xz -[2024-05-09T01:36:09.678Z] + ls -[2024-05-09T01:36:09.678Z] + grep finch -[2024-05-09T01:36:09.678Z] finch-master -[2024-05-09T01:36:09.678Z] + set +x -[2024-05-09T01:36:09.678Z] + rm -rf PAVICS-landing-* -[2024-05-09T01:36:09.678Z] + ls -[2024-05-09T01:36:09.678Z] + grep PAVICS-landing -[2024-05-09T01:36:09.678Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha -[2024-05-09T01:36:09.678Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing -[2024-05-09T01:36:09.678Z] + shift -[2024-05-09T01:36:09.678Z] + branch=fix_nbs_jupyter_alpha -[2024-05-09T01:36:09.678Z] + shift -[2024-05-09T01:36:09.678Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha.tar.gz -[2024-05-09T01:36:09.678Z] + tar xz -[2024-05-09T01:37:17.320Z] + ls -[2024-05-09T01:37:17.320Z] + grep PAVICS-landing -[2024-05-09T01:37:17.320Z] PAVICS-landing-fix_nbs_jupyter_alpha -[2024-05-09T01:37:17.320Z] + set +x -[2024-05-09T01:37:17.320Z] + rm -rf raven-* -[2024-05-09T01:37:17.320Z] + ls -[2024-05-09T01:37:17.320Z] + grep raven -[2024-05-09T01:37:17.320Z] + downloadrepos https://github.com/Ouranosinc/raven main -[2024-05-09T01:37:17.320Z] + github_repo=https://github.com/Ouranosinc/raven -[2024-05-09T01:37:17.320Z] + shift -[2024-05-09T01:37:17.320Z] + branch=main -[2024-05-09T01:37:17.320Z] + shift -[2024-05-09T01:37:17.320Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz -[2024-05-09T01:37:17.320Z] + tar xz -[2024-05-09T01:37:17.320Z] + ls -[2024-05-09T01:37:17.320Z] + grep raven -[2024-05-09T01:37:17.320Z] raven-main -[2024-05-09T01:37:17.320Z] + set +x -[2024-05-09T01:37:17.320Z] + rm -rf RavenPy-* -[2024-05-09T01:37:17.320Z] + ls -[2024-05-09T01:37:17.320Z] + grep RavenPy -[2024-05-09T01:37:17.320Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master -[2024-05-09T01:37:17.320Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy -[2024-05-09T01:37:17.320Z] + shift -[2024-05-09T01:37:17.320Z] + branch=master -[2024-05-09T01:37:17.320Z] + shift -[2024-05-09T01:37:17.320Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz -[2024-05-09T01:37:17.320Z] + tar xz -[2024-05-09T01:37:17.320Z] + ls -[2024-05-09T01:37:17.320Z] + grep RavenPy -[2024-05-09T01:37:17.320Z] RavenPy-master -[2024-05-09T01:37:17.320Z] + set +x -[2024-05-09T01:37:17.320Z] + rm -rf esgf-compute-api-* -[2024-05-09T01:37:17.320Z] + ls -[2024-05-09T01:37:17.320Z] + grep esgf-compute-api -[2024-05-09T01:37:17.320Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel -[2024-05-09T01:37:17.320Z] + github_repo=https://github.com/ESGF/esgf-compute-api -[2024-05-09T01:37:17.320Z] + shift -[2024-05-09T01:37:17.320Z] + branch=devel -[2024-05-09T01:37:17.320Z] + shift -[2024-05-09T01:37:17.320Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz -[2024-05-09T01:37:17.320Z] + tar xz -[2024-05-09T01:37:17.320Z] + ls -[2024-05-09T01:37:17.320Z] + grep esgf-compute-api -[2024-05-09T01:37:17.320Z] esgf-compute-api-devel -[2024-05-09T01:37:17.320Z] + set +x -[2024-05-09T01:37:17.320Z] + echo fix_nbs_jupyter_alpha -[2024-05-09T01:37:17.320Z] + sed s@/@-@g -[2024-05-09T01:37:17.320Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha -[2024-05-09T01:37:17.320Z] + echo Ouranosinc/pavics-sdi -[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g -[2024-05-09T01:37:17.320Z] + PAVICS_SDI_REPO_NAME=pavics-sdi -[2024-05-09T01:37:17.320Z] + echo master -[2024-05-09T01:37:17.320Z] + sed s@/@-@g -[2024-05-09T01:37:17.320Z] + FINCH_BRANCH=master -[2024-05-09T01:37:17.320Z] + echo bird-house/finch -[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g -[2024-05-09T01:37:17.320Z] + FINCH_REPO_NAME=finch -[2024-05-09T01:37:17.320Z] + echo fix_nbs_jupyter_alpha -[2024-05-09T01:37:17.320Z] + sed s@/@-@g -[2024-05-09T01:37:17.320Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha -[2024-05-09T01:37:17.320Z] + echo Ouranosinc/PAVICS-landing -[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g -[2024-05-09T01:37:17.320Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing -[2024-05-09T01:37:17.320Z] + echo main -[2024-05-09T01:37:17.320Z] + sed s@/@-@g -[2024-05-09T01:37:17.320Z] + RAVEN_BRANCH=main -[2024-05-09T01:37:17.320Z] + echo Ouranosinc/raven -[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g -[2024-05-09T01:37:17.320Z] + RAVEN_REPO_NAME=raven -[2024-05-09T01:37:17.320Z] + echo master -[2024-05-09T01:37:17.320Z] + sed s@/@-@g -[2024-05-09T01:37:17.320Z] + RAVENPY_BRANCH=master -[2024-05-09T01:37:17.320Z] + echo CSHS-CWRA/RavenPy -[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g -[2024-05-09T01:37:17.320Z] + RAVENPY_REPO_NAME=RavenPy -[2024-05-09T01:37:17.320Z] + echo devel -[2024-05-09T01:37:17.320Z] + sed s@/@-@g -[2024-05-09T01:37:17.320Z] + ESGF_COMPUTE_API_BRANCH=devel -[2024-05-09T01:37:17.320Z] + echo ESGF/esgf-compute-api -[2024-05-09T01:37:17.320Z] + sed s@^.*/@@g -[2024-05-09T01:37:17.320Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api -[2024-05-09T01:37:17.320Z] + echo pavics-sdi-fix_nbs_jupyter_alpha -[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-09T01:37:17.320Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha -[2024-05-09T01:37:17.320Z] + echo finch-master -[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-09T01:37:17.320Z] + FINCH_DIR=finch-master -[2024-05-09T01:37:17.320Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha -[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-09T01:37:17.320Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha -[2024-05-09T01:37:17.320Z] + echo raven-main -[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-09T01:37:17.320Z] + RAVEN_DIR=raven-main -[2024-05-09T01:37:17.320Z] + echo RavenPy-master -[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-09T01:37:17.320Z] + RAVENPY_DIR=RavenPy-master -[2024-05-09T01:37:17.320Z] + echo esgf-compute-api-devel -[2024-05-09T01:37:17.320Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g -[2024-05-09T01:37:17.320Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel -[2024-05-09T01:37:17.320Z] + echo true -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + VERIFY_SSL=true -[2024-05-09T01:37:17.320Z] + [ xtrue = xfalse ] -[2024-05-09T01:37:17.320Z] + rm -v finch-master/setup.cfg -[2024-05-09T01:37:17.320Z] removed 'finch-master/setup.cfg' -[2024-05-09T01:37:17.320Z] + rm -v raven-main/setup.cfg -[2024-05-09T01:37:17.320Z] removed 'raven-main/setup.cfg' -[2024-05-09T01:37:17.320Z] + rm -v raven-main/pyproject.toml -[2024-05-09T01:37:17.320Z] removed 'raven-main/pyproject.toml' -[2024-05-09T01:37:17.320Z] + rm -v RavenPy-master/setup.cfg -[2024-05-09T01:37:17.320Z] removed 'RavenPy-master/setup.cfg' -[2024-05-09T01:37:17.320Z] + rm -v RavenPy-master/tox.ini -[2024-05-09T01:37:17.320Z] removed 'RavenPy-master/tox.ini' -[2024-05-09T01:37:17.320Z] + rm -v RavenPy-master/pyproject.toml -[2024-05-09T01:37:17.320Z] removed 'RavenPy-master/pyproject.toml' -[2024-05-09T01:37:17.320Z] + rm -v esgf-compute-api-devel/setup.cfg -[2024-05-09T01:37:17.320Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory -[2024-05-09T01:37:17.320Z] + rm -v esgf-compute-api-devel/tox.ini -[2024-05-09T01:37:17.320Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory -[2024-05-09T01:37:17.320Z] + echo false -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + TEST_MAGPIE_AUTH=false -[2024-05-09T01:37:17.320Z] + echo true -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + TEST_PAVICS_SDI_REPO=true -[2024-05-09T01:37:17.320Z] + echo false -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + TEST_PAVICS_SDI_WEAVER=false -[2024-05-09T01:37:17.320Z] + echo true -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + TEST_FINCH_REPO=true -[2024-05-09T01:37:17.320Z] + echo true -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + TEST_PAVICS_LANDING_REPO=true -[2024-05-09T01:37:17.320Z] + echo false -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + TEST_RAVEN_REPO=false -[2024-05-09T01:37:17.320Z] + echo false -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + TEST_RAVENPY_REPO=false -[2024-05-09T01:37:17.320Z] + echo false -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + TEST_ESGF_COMPUTE_API_REPO=false -[2024-05-09T01:37:17.320Z] + echo true -[2024-05-09T01:37:17.320Z] + tr [:upper:] [:lower:] -[2024-05-09T01:37:17.320Z] + TEST_LOCAL_NOTEBOOKS=true -[2024-05-09T01:37:17.320Z] + NOTEBOOKS_TO_TEST= -[2024-05-09T01:37:17.320Z] + [ xfalse = xtrue ] -[2024-05-09T01:37:17.320Z] + [ xtrue = xtrue ] -[2024-05-09T01:37:17.320Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb -[2024-05-09T01:37:17.320Z] + [ xfalse = xtrue ] -[2024-05-09T01:37:17.320Z] + [ xtrue = xtrue ] -[2024-05-09T01:37:17.320Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb -[2024-05-09T01:37:17.320Z] + [ xtrue = xtrue ] -[2024-05-09T01:37:17.320Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb -[2024-05-09T01:37:17.320Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-09T01:37:17.320Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh ] -[2024-05-09T01:37:17.320Z] + PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-09T01:37:17.320Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-09T01:37:17.320Z] + THIS_FILE=/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-09T01:37:17.320Z] + dirname /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh -[2024-05-09T01:37:17.320Z] + THIS_DIR=/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators -[2024-05-09T01:37:17.320Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 -[2024-05-09T01:37:17.321Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 -[2024-05-09T01:37:17.321Z] + unzip /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ -[2024-05-09T01:37:17.321Z] Archive: /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.321Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.322Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc -[2024-05-09T01:37:17.323Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage -[2024-05-09T01:37:17.323Z] + mkdir -p /notebook_dir/pavics-homepage -[2024-05-09T01:37:17.323Z] + ln -sv /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data -[2024-05-09T01:37:17.323Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data' -[2024-05-09T01:37:17.323Z] + [ xfalse = xtrue ] -[2024-05-09T01:37:17.323Z] + [ xfalse = xtrue ] -[2024-05-09T01:37:17.323Z] + [ xfalse = xtrue ] -[2024-05-09T01:37:17.323Z] + [ xtrue = xtrue ] -[2024-05-09T01:37:17.323Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-05-09T01:37:17.323Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb -[2024-05-09T01:37:17.323Z] + [ -n ] -[2024-05-09T01:37:17.323Z] + [ ! -z pavics.ouranos.ca ] -[2024-05-09T01:37:17.323Z] + echo Will run notebooks against pavics.ouranos.ca -[2024-05-09T01:37:17.323Z] Will run notebooks against pavics.ouranos.ca -[2024-05-09T01:37:17.323Z] + [ -z ] -[2024-05-09T01:37:17.323Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb -[2024-05-09T01:37:17.323Z] + git diff -[2024-05-09T01:37:17.323Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request -[2024-05-09T01:37:17.323Z] + [ -n ] -[2024-05-09T01:37:17.324Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --nbval-sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 -[2024-05-09T01:37:18.249Z] ============================= test session starts ============================== -[2024-05-09T01:37:18.249Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 -[2024-05-09T01:37:18.249Z] rootdir: /home/jenkins/agent/workspace/cker-build-with-jenkins-override -[2024-05-09T01:37:18.249Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 -[2024-05-09T01:37:18.249Z] collected 219 items -[2024-05-09T01:37:18.249Z] -[2024-05-09T01:37:21.525Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] -[2024-05-09T01:37:50.167Z] ..... [ 2%] -[2024-05-09T01:37:52.069Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb . [ 3%] -[2024-05-09T01:37:58.467Z] ...... [ 5%] -[2024-05-09T01:38:00.998Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb . [ 6%] -[2024-05-09T01:38:06.826Z] ..... [ 8%] -[2024-05-09T01:38:07.395Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb . [ 9%] -[2024-05-09T01:38:13.427Z] ....... [ 12%] -[2024-05-09T01:38:25.095Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb .... [ 14%] -[2024-05-09T01:41:30.970Z] ........ [ 17%] -[2024-05-09T01:41:30.970Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] -[2024-05-09T01:41:33.701Z] ............... [ 25%] -[2024-05-09T01:41:36.256Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] -[2024-05-09T01:41:41.386Z] .... [ 27%] -[2024-05-09T01:41:43.291Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb .. [ 28%] -[2024-05-09T01:41:49.063Z] .... [ 30%] -[2024-05-09T01:41:57.227Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb . [ 30%] -[2024-05-09T01:42:03.556Z] ..... [ 32%] -[2024-05-09T01:47:12.126Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb .FF [ 34%] -[2024-05-09T01:47:12.126Z] FFFF [ 36%] -[2024-05-09T01:47:12.126Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] -[2024-05-09T01:47:12.126Z] .... [ 38%] -[2024-05-09T01:47:27.020Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb . [ 38%] -[2024-05-09T01:48:57.189Z] ........................... [ 51%] -[2024-05-09T01:48:58.565Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb . [ 51%] -[2024-05-09T01:49:00.207Z] ... [ 52%] -[2024-05-09T01:49:01.160Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb . [ 53%] -[2024-05-09T01:49:18.544Z] ........................ [ 64%] -[2024-05-09T01:49:21.884Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb . [ 64%] -[2024-05-09T01:49:26.365Z] ..... [ 67%] -[2024-05-09T01:49:35.696Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 72%] -[2024-05-09T01:49:43.888Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] -[2024-05-09T01:49:44.847Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] -[2024-05-09T01:49:47.982Z] ...... [ 78%] -[2024-05-09T01:49:54.559Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] -[2024-05-09T01:50:06.527Z] ............. [ 84%] -[2024-05-09T01:50:14.635Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] -[2024-05-09T01:50:36.711Z] ....s [ 87%] -[2024-05-09T01:50:43.268Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] -[2024-05-09T01:50:53.917Z] .. [ 88%] -[2024-05-09T01:51:06.129Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] -[2024-05-09T01:51:49.315Z] ...... [ 91%] -[2024-05-09T01:51:51.726Z] notebooks/hummingbird.ipynb ............ [ 97%] -[2024-05-09T01:53:47.480Z] notebooks/stress-tests.ipynb ...... [100%] -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] =================================== FAILURES =================================== -[2024-05-09T01:53:47.480Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 1 _ -[2024-05-09T01:53:47.480Z] Notebook cell execution failed -[2024-05-09T01:53:47.480Z] Cell 1: Cell execution caused an exception -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] Input: -[2024-05-09T01:53:47.480Z] url = "http://test.opendap.org:80/opendap/data/nc/20070917-MODIS_A-JPL-L2P-A2007260000000.L2_LAC_GHRSST-v01.nc" -[2024-05-09T01:53:47.480Z] D = nc.Dataset(url) -[2024-05-09T01:53:47.480Z] print(D.ncattrs()) -[2024-05-09T01:53:47.480Z] D.variables.keys() -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] Traceback: -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] --------------------------------------------------------------------------- -[2024-05-09T01:53:47.480Z] OSError Traceback (most recent call last) -[2024-05-09T01:53:47.480Z] Cell In[1], line 2 -[2024-05-09T01:53:47.480Z]  1 url = "http://test.opendap.org:80/opendap/data/nc/20070917-MODIS_A-JPL-L2P-A2007260000000.L2_LAC_GHRSST-v01.nc" -[2024-05-09T01:53:47.480Z] ----> 2 D = nc.Dataset(url) -[2024-05-09T01:53:47.480Z]  3 print(D.ncattrs()) -[2024-05-09T01:53:47.480Z]  4 D.variables.keys() -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] File src/netCDF4/_netCDF4.pyx:2463, in netCDF4._netCDF4.Dataset.__init__() -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] File src/netCDF4/_netCDF4.pyx:2026, in netCDF4._netCDF4._ensure_nc_success() -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] OSError: [Errno -70] NetCDF: DAP server error: b'http://test.opendap.org:80/opendap/data/nc/20070917-MODIS_A-JPL-L2P-A2007260000000.L2_LAC_GHRSST-v01.nc' -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 2 _ -[2024-05-09T01:53:47.480Z] Notebook cell execution failed -[2024-05-09T01:53:47.480Z] Cell 2: Cell execution caused an exception -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] Input: -[2024-05-09T01:53:47.480Z] lat = D.variables["lat"][:] -[2024-05-09T01:53:47.480Z] lon = D.variables["lon"][:] -[2024-05-09T01:53:47.480Z] time = D.variables["time"] -[2024-05-09T01:53:47.480Z] print(time.units, time[0], nc.num2date(time[0], time.units)) -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] Traceback: -[2024-05-09T01:53:47.480Z] -[2024-05-09T01:53:47.480Z] --------------------------------------------------------------------------- -[2024-05-09T01:53:47.480Z] NameError Traceback (most recent call last) -[2024-05-09T01:53:47.480Z] Cell In[1], line 1 -[2024-05-09T01:53:47.481Z] ----> 1 lat = D.variables["lat"][:] -[2024-05-09T01:53:47.481Z]  2 lon = D.variables["lon"][:] -[2024-05-09T01:53:47.481Z]  3 time = D.variables["time"] -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] NameError: name 'D' is not defined -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 3 _ -[2024-05-09T01:53:47.481Z] Notebook cell execution failed -[2024-05-09T01:53:47.481Z] Cell 3: Cell execution caused an exception -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] Input: -[2024-05-09T01:53:47.481Z] sst = D.variables["sea_surface_temperature"] -[2024-05-09T01:53:47.481Z] print(sst.long_name) -[2024-05-09T01:53:47.481Z] print(sst.units) -[2024-05-09T01:53:47.481Z] print(sst.dimensions, sst.shape) -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] Traceback: -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] --------------------------------------------------------------------------- -[2024-05-09T01:53:47.481Z] NameError Traceback (most recent call last) -[2024-05-09T01:53:47.481Z] Cell In[1], line 1 -[2024-05-09T01:53:47.481Z] ----> 1 sst = D.variables["sea_surface_temperature"] -[2024-05-09T01:53:47.481Z]  2 print(sst.long_name) -[2024-05-09T01:53:47.481Z]  3 print(sst.units) -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] NameError: name 'D' is not defined -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 4 _ -[2024-05-09T01:53:47.481Z] Notebook cell execution failed -[2024-05-09T01:53:47.481Z] Cell 4: Cell execution caused an exception -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] Input: -[2024-05-09T01:53:47.481Z] a = sst[:] -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] Traceback: -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] --------------------------------------------------------------------------- -[2024-05-09T01:53:47.481Z] NameError Traceback (most recent call last) -[2024-05-09T01:53:47.481Z] Cell In[1], line 1 -[2024-05-09T01:53:47.481Z] ----> 1 a = sst[:] -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] NameError: name 'sst' is not defined -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 5 _ -[2024-05-09T01:53:47.481Z] Notebook cell execution failed -[2024-05-09T01:53:47.481Z] Cell 5: Cell execution caused an exception -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] Input: -[2024-05-09T01:53:47.481Z] a.data -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] Traceback: -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] --------------------------------------------------------------------------- -[2024-05-09T01:53:47.481Z] NameError Traceback (most recent call last) -[2024-05-09T01:53:47.481Z] Cell In[1], line 1 -[2024-05-09T01:53:47.481Z] ----> 1 a.data -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] NameError: name 'a' is not defined -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] _ pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 6 _ -[2024-05-09T01:53:47.481Z] Notebook cell execution failed -[2024-05-09T01:53:47.481Z] Cell 6: Cell execution caused an exception -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] Input: -[2024-05-09T01:53:47.481Z] from matplotlib import pyplot as plt -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] plt.imshow(a.data[0]) -[2024-05-09T01:53:47.481Z] plt.show() -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] Traceback: -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] --------------------------------------------------------------------------- -[2024-05-09T01:53:47.481Z] NameError Traceback (most recent call last) -[2024-05-09T01:53:47.481Z] Cell In[1], line 3 -[2024-05-09T01:53:47.481Z]  1 from matplotlib import pyplot as plt -[2024-05-09T01:53:47.481Z] ----> 3 plt.imshow(a.data[0]) -[2024-05-09T01:53:47.481Z]  4 plt.show() -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] NameError: name 'a' is not defined -[2024-05-09T01:53:47.481Z] -[2024-05-09T01:53:47.481Z] =========================== short test summary info ============================ -[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 1 -[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 2 -[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 3 -[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 4 -[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 5 -[2024-05-09T01:53:47.481Z] FAILED pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb::Cell 6 -[2024-05-09T01:53:47.481Z] ============= 6 failed, 212 passed, 1 skipped in 986.41s (0:16:26) ============= -[2024-05-09T01:53:47.481Z] + EXIT_CODE=1 -[2024-05-09T01:53:47.481Z] + echo true -[2024-05-09T01:53:47.481Z] + tr [:upper:] [:lower:] -[2024-05-09T01:53:47.481Z] + SAVE_RESULTING_NOTEBOOK=true -[2024-05-09T01:53:47.481Z] + [ xtrue = xtrue ] -[2024-05-09T01:53:47.481Z] + mkdir -p buildout -[2024-05-09T01:53:47.481Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb -[2024-05-09T01:53:47.481Z] + filename=CaSR_basic.ipynb -[2024-05-09T01:53:47.481Z] + echo CaSR_basic.ipynb -[2024-05-09T01:53:47.481Z] + sed s/.ipynb$// -[2024-05-09T01:53:47.481Z] + filename=CaSR_basic -[2024-05-09T01:53:47.481Z] + [ -e buildout/CaSR_basic.output.ipynb ] -[2024-05-09T01:53:47.481Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb -[2024-05-09T01:53:47.481Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb to notebook -[2024-05-09T01:54:19.553Z] [NbConvertApp] Writing 732952 bytes to buildout/CaSR_basic.output.ipynb -[2024-05-09T01:54:19.553Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb -[2024-05-09T01:54:19.553Z] + filename=WCS_example.ipynb -[2024-05-09T01:54:19.553Z] + echo WCS_example.ipynb -[2024-05-09T01:54:19.553Z] + sed s/.ipynb$// -[2024-05-09T01:54:19.553Z] + filename=WCS_example -[2024-05-09T01:54:19.553Z] + [ -e buildout/WCS_example.output.ipynb ] -[2024-05-09T01:54:19.553Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb -[2024-05-09T01:54:20.924Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb to notebook -[2024-05-09T01:54:21.852Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:54:21.852Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:54:21.852Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:54:21.852Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T01:54:31.799Z] [NbConvertApp] Writing 145337 bytes to buildout/WCS_example.output.ipynb -[2024-05-09T01:54:31.799Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb -[2024-05-09T01:54:31.799Z] + filename=WFS_example.ipynb -[2024-05-09T01:54:31.799Z] + echo WFS_example.ipynb -[2024-05-09T01:54:31.799Z] + sed s/.ipynb$// -[2024-05-09T01:54:31.799Z] + filename=WFS_example -[2024-05-09T01:54:31.799Z] + [ -e buildout/WFS_example.output.ipynb ] -[2024-05-09T01:54:31.799Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb -[2024-05-09T01:54:32.054Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb to notebook -[2024-05-09T01:54:33.427Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:54:33.427Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:54:33.427Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:54:33.427Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T01:54:41.621Z] [NbConvertApp] Writing 44572 bytes to buildout/WFS_example.output.ipynb -[2024-05-09T01:54:41.621Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb -[2024-05-09T01:54:41.621Z] + filename=WMS_example.ipynb -[2024-05-09T01:54:41.622Z] + echo WMS_example.ipynb -[2024-05-09T01:54:41.622Z] + sed s/.ipynb$// -[2024-05-09T01:54:41.622Z] + filename=WMS_example -[2024-05-09T01:54:41.622Z] + [ -e buildout/WMS_example.output.ipynb ] -[2024-05-09T01:54:41.622Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb -[2024-05-09T01:54:42.986Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb to notebook -[2024-05-09T01:54:44.359Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:54:44.359Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:54:44.359Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:54:44.359Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T01:54:50.904Z] [NbConvertApp] Writing 2048326 bytes to buildout/WMS_example.output.ipynb -[2024-05-09T01:54:50.904Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb -[2024-05-09T01:54:50.904Z] + filename=climex.ipynb -[2024-05-09T01:54:50.904Z] + echo climex.ipynb -[2024-05-09T01:54:50.904Z] + sed s/.ipynb$// -[2024-05-09T01:54:50.904Z] + filename=climex -[2024-05-09T01:54:50.904Z] + [ -e buildout/climex.output.ipynb ] -[2024-05-09T01:54:50.904Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb -[2024-05-09T01:54:52.805Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb to notebook -[2024-05-09T01:54:53.373Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:54:53.373Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:54:53.373Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:54:53.373Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T01:57:29.858Z] [NbConvertApp] Writing 1781112 bytes to buildout/climex.output.ipynb -[2024-05-09T01:57:29.858Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-05-09T01:57:29.858Z] + filename=eccc-geoapi-climate-stations.ipynb -[2024-05-09T01:57:29.858Z] + echo eccc-geoapi-climate-stations.ipynb -[2024-05-09T01:57:29.858Z] + sed s/.ipynb$// -[2024-05-09T01:57:29.858Z] + filename=eccc-geoapi-climate-stations -[2024-05-09T01:57:29.858Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] -[2024-05-09T01:57:29.858Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb -[2024-05-09T01:57:29.858Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook -[2024-05-09T01:57:29.858Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:57:29.858Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:57:29.858Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:57:29.858Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T01:57:33.170Z] [NbConvertApp] Writing 278952 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb -[2024-05-09T01:57:33.170Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-05-09T01:57:33.170Z] + filename=eccc-geoapi-xclim.ipynb -[2024-05-09T01:57:33.170Z] + echo eccc-geoapi-xclim.ipynb -[2024-05-09T01:57:33.170Z] + sed s/.ipynb$// -[2024-05-09T01:57:33.170Z] + filename=eccc-geoapi-xclim -[2024-05-09T01:57:33.170Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] -[2024-05-09T01:57:33.170Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb -[2024-05-09T01:57:34.542Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook -[2024-05-09T01:57:35.479Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:57:35.479Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:57:35.479Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:57:35.479Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T01:57:45.433Z] [NbConvertApp] Writing 108112 bytes to buildout/eccc-geoapi-xclim.output.ipynb -[2024-05-09T01:57:45.433Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb -[2024-05-09T01:57:45.433Z] + filename=esgf-dap.ipynb -[2024-05-09T01:57:45.433Z] + sed s/.ipynb$// -[2024-05-09T01:57:45.433Z] + echo esgf-dap.ipynb -[2024-05-09T01:57:45.433Z] + filename=esgf-dap -[2024-05-09T01:57:45.433Z] + [ -e buildout/esgf-dap.output.ipynb ] -[2024-05-09T01:57:45.433Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb -[2024-05-09T01:57:45.693Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb to notebook -[2024-05-09T01:57:46.621Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:57:46.621Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:57:46.621Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:57:46.621Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T01:57:54.721Z] [NbConvertApp] Writing 63631 bytes to buildout/esgf-dap.output.ipynb -[2024-05-09T01:57:54.721Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb -[2024-05-09T01:57:54.721Z] + filename=forecasts.ipynb -[2024-05-09T01:57:54.721Z] + echo forecasts.ipynb+ -[2024-05-09T01:57:54.721Z] sed s/.ipynb$// -[2024-05-09T01:57:54.721Z] + filename=forecasts -[2024-05-09T01:57:54.721Z] + [ -e buildout/forecasts.output.ipynb ] -[2024-05-09T01:57:54.721Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb -[2024-05-09T01:57:55.651Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb to notebook -[2024-05-09T01:57:57.024Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:57:57.024Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:57:57.024Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:57:57.024Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T01:58:15.094Z] [NbConvertApp] Writing 164988 bytes to buildout/forecasts.output.ipynb -[2024-05-09T01:58:15.094Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb -[2024-05-09T01:58:15.094Z] + filename=jupyter_extensions.ipynb -[2024-05-09T01:58:15.094Z] + echo jupyter_extensions.ipynb -[2024-05-09T01:58:15.094Z] + sed s/.ipynb$// -[2024-05-09T01:58:15.094Z] + filename=jupyter_extensions -[2024-05-09T01:58:15.094Z] + [ -e buildout/jupyter_extensions.output.ipynb ] -[2024-05-09T01:58:15.094Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb -[2024-05-09T01:58:15.094Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb to notebook -[2024-05-09T01:58:15.094Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:58:15.094Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:58:15.094Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:58:15.094Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T01:58:19.310Z] [NbConvertApp] Writing 7996 bytes to buildout/jupyter_extensions.output.ipynb -[2024-05-09T01:58:19.310Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb -[2024-05-09T01:58:19.310Z] + filename=opendap.ipynb -[2024-05-09T01:58:19.310Z] + echo opendap.ipynb -[2024-05-09T01:58:19.310Z] + sed s/.ipynb$// -[2024-05-09T01:58:19.310Z] + filename=opendap -[2024-05-09T01:58:19.310Z] + [ -e buildout/opendap.output.ipynb ] -[2024-05-09T01:58:19.310Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb -[2024-05-09T01:58:20.685Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb to notebook -[2024-05-09T01:58:21.616Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T01:58:21.616Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T01:58:21.616Z] 0.00s - to python to disable frozen modules. -[2024-05-09T01:58:21.616Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:03:28.100Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-05-09T02:03:28.100Z] context: 503 Service Unavailable

Service Unavailable

The server is temporarily unable to service yourrequest due to maintenance downtime or capacityproblems. Please try again later.

-[2024-05-09T02:03:28.100Z] [NbConvertApp] Writing 11727 bytes to buildout/opendap.output.ipynb -[2024-05-09T02:03:28.100Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb -[2024-05-09T02:03:28.100Z] + filename=pavics_thredds.ipynb -[2024-05-09T02:03:28.100Z] + echo pavics_thredds.ipynb -[2024-05-09T02:03:28.100Z] + sed s/.ipynb$// -[2024-05-09T02:03:28.100Z] + filename=pavics_thredds -[2024-05-09T02:03:28.100Z] + [ -e buildout/pavics_thredds.output.ipynb ] -[2024-05-09T02:03:28.100Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb -[2024-05-09T02:03:28.100Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb to notebook -[2024-05-09T02:03:28.100Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:03:28.100Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:03:28.100Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:03:28.100Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:03:28.672Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-05-09T02:03:28.672Z] context: Access to service is forbidden. -[2024-05-09T02:03:28.672Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR -[2024-05-09T02:03:28.672Z] context: Access to service is forbidden. -[2024-05-09T02:03:30.574Z] [NbConvertApp] Writing 90749 bytes to buildout/pavics_thredds.output.ipynb -[2024-05-09T02:03:30.574Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb -[2024-05-09T02:03:30.574Z] + filename=regridding.ipynb -[2024-05-09T02:03:30.574Z] + sed s/.ipynb$// -[2024-05-09T02:03:30.574Z] + echo regridding.ipynb -[2024-05-09T02:03:30.574Z] + filename=regridding -[2024-05-09T02:03:30.574Z] + [ -e buildout/regridding.output.ipynb ] -[2024-05-09T02:03:30.574Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb -[2024-05-09T02:03:32.460Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb to notebook -[2024-05-09T02:03:33.390Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:03:33.390Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:03:33.390Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:03:33.390Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:05:09.835Z] [NbConvertApp] Writing 1239616 bytes to buildout/regridding.output.ipynb -[2024-05-09T02:05:09.835Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb -[2024-05-09T02:05:09.835Z] + filename=rendering.ipynb -[2024-05-09T02:05:09.835Z] + echo rendering.ipynb -[2024-05-09T02:05:09.835Z] + sed s/.ipynb$// -[2024-05-09T02:05:09.835Z] + filename=rendering -[2024-05-09T02:05:09.835Z] + [ -e buildout/rendering.output.ipynb ] -[2024-05-09T02:05:09.835Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb -[2024-05-09T02:05:09.835Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb to notebook -[2024-05-09T02:05:09.835Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:05:09.835Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:05:09.835Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:05:09.835Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:05:11.203Z] [NbConvertApp] Writing 11800 bytes to buildout/rendering.output.ipynb -[2024-05-09T02:05:11.203Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb -[2024-05-09T02:05:11.203Z] + filename=subset-user-input.ipynb -[2024-05-09T02:05:11.203Z] + sed s/.ipynb$// -[2024-05-09T02:05:11.203Z] + echo subset-user-input.ipynb -[2024-05-09T02:05:11.203Z] + filename=subset-user-input -[2024-05-09T02:05:11.203Z] + [ -e buildout/subset-user-input.output.ipynb ] -[2024-05-09T02:05:11.203Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb -[2024-05-09T02:05:13.091Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb to notebook -[2024-05-09T02:05:13.656Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:05:13.656Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:05:13.656Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:05:13.656Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:05:35.555Z] [NbConvertApp] Writing 255278 bytes to buildout/subset-user-input.output.ipynb -[2024-05-09T02:05:35.555Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb -[2024-05-09T02:05:35.555Z] + filename=subsetting.ipynb -[2024-05-09T02:05:35.555Z] + echo subsetting.ipynb -[2024-05-09T02:05:35.555Z] + sed s/.ipynb$// -[2024-05-09T02:05:35.555Z] + filename=subsetting -[2024-05-09T02:05:35.555Z] + [ -e buildout/subsetting.output.ipynb ] -[2024-05-09T02:05:35.555Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb -[2024-05-09T02:05:35.555Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb to notebook -[2024-05-09T02:05:35.811Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:05:35.811Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:05:35.811Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:05:35.811Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:05:45.855Z] [NbConvertApp] Writing 93311 bytes to buildout/subsetting.output.ipynb -[2024-05-09T02:05:45.855Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-05-09T02:05:45.855Z] + filename=dap_subset.ipynb -[2024-05-09T02:05:45.855Z] + echo dap_subset.ipynb -[2024-05-09T02:05:45.855Z] + sed s/.ipynb$// -[2024-05-09T02:05:45.855Z] + filename=dap_subset -[2024-05-09T02:05:45.855Z] + [ -e buildout/dap_subset.output.ipynb ] -[2024-05-09T02:05:45.855Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb -[2024-05-09T02:05:46.115Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook -[2024-05-09T02:05:47.046Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:05:47.046Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:05:47.046Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:05:47.046Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:06:01.902Z] [NbConvertApp] Writing 162913 bytes to buildout/dap_subset.output.ipynb -[2024-05-09T02:06:01.902Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-05-09T02:06:01.902Z] + filename=finch-usage.ipynb -[2024-05-09T02:06:01.902Z] + echo finch-usage.ipynb -[2024-05-09T02:06:01.902Z] + sed s/.ipynb$// -[2024-05-09T02:06:01.902Z] + filename=finch-usage -[2024-05-09T02:06:01.902Z] + [ -e buildout/finch-usage.output.ipynb ] -[2024-05-09T02:06:01.902Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb -[2024-05-09T02:06:01.902Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook -[2024-05-09T02:06:03.274Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:06:03.274Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:06:03.274Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:06:03.274Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:06:13.215Z] [NbConvertApp] Writing 65072 bytes to buildout/finch-usage.output.ipynb -[2024-05-09T02:06:13.215Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-05-09T02:06:13.215Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-05-09T02:06:13.215Z] + sed s/.ipynb$// -[2024-05-09T02:06:13.215Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-05-09T02:06:13.215Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess -[2024-05-09T02:06:13.215Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] -[2024-05-09T02:06:13.215Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb -[2024-05-09T02:06:14.145Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook -[2024-05-09T02:06:15.080Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:06:15.080Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:06:15.080Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:06:15.080Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:06:19.266Z] [NbConvertApp] Writing 173042 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb -[2024-05-09T02:06:19.522Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-05-09T02:06:19.522Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-05-09T02:06:19.522Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-05-09T02:06:19.522Z] + sed s/.ipynb$// -[2024-05-09T02:06:19.522Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting -[2024-05-09T02:06:19.523Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] -[2024-05-09T02:06:19.523Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb -[2024-05-09T02:06:21.410Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook -[2024-05-09T02:06:22.339Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:06:22.339Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:06:22.339Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:06:22.339Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:06:40.400Z] [NbConvertApp] Writing 1481193 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb -[2024-05-09T02:06:40.401Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-05-09T02:06:40.401Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-05-09T02:06:40.401Z] + sed s/.ipynb$// -[2024-05-09T02:06:40.401Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-05-09T02:06:40.401Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators -[2024-05-09T02:06:40.401Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] -[2024-05-09T02:06:40.401Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb -[2024-05-09T02:06:42.287Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook -[2024-05-09T02:10:03.747Z] /opt/conda/envs/birdy/lib/python3.11/contextlib.py:144: UserWarning: Creating scratch directories is taking a surprisingly long time. (1.76s) This is often due to running workers on a network file system. Consider specifying a local-directory to point workers to write scratch data to a local disk. -[2024-05-09T02:10:03.747Z] next(self.gen) -[2024-05-09T02:17:10.488Z] [NbConvertApp] Writing 557860 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb -[2024-05-09T02:17:10.488Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-05-09T02:17:10.488Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-05-09T02:17:10.488Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-05-09T02:17:10.488Z] + sed s/.ipynb$// -[2024-05-09T02:17:10.488Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles -[2024-05-09T02:17:10.488Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] -[2024-05-09T02:17:10.488Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb -[2024-05-09T02:17:10.488Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook -[2024-05-09T02:17:25.356Z] [NbConvertApp] Writing 785214 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb -[2024-05-09T02:17:25.356Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-05-09T02:17:25.356Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-05-09T02:17:25.356Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-05-09T02:17:25.356Z] + sed s/.ipynb$// -[2024-05-09T02:17:25.356Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization -[2024-05-09T02:17:25.356Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] -[2024-05-09T02:17:25.356Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb -[2024-05-09T02:17:26.286Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook -[2024-05-09T02:18:33.933Z] [NbConvertApp] Writing 1051936 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb -[2024-05-09T02:18:33.933Z] + basename notebooks/hummingbird.ipynb -[2024-05-09T02:18:33.933Z] + filename=hummingbird.ipynb -[2024-05-09T02:18:33.933Z] + echo hummingbird.ipynb -[2024-05-09T02:18:33.933Z] + sed s/.ipynb$// -[2024-05-09T02:18:33.933Z] + filename=hummingbird -[2024-05-09T02:18:33.933Z] + [ -e buildout/hummingbird.output.ipynb ] -[2024-05-09T02:18:33.933Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb -[2024-05-09T02:18:33.933Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook -[2024-05-09T02:18:33.933Z] [NbConvertApp] Writing 15863 bytes to buildout/hummingbird.output.ipynb -[2024-05-09T02:18:33.933Z] + basename notebooks/stress-tests.ipynb -[2024-05-09T02:18:33.933Z] + filename=stress-tests.ipynb -[2024-05-09T02:18:33.933Z] + echo stress-tests.ipynb -[2024-05-09T02:18:33.933Z] + sed s/.ipynb$// -[2024-05-09T02:18:33.933Z] + filename=stress-tests -[2024-05-09T02:18:33.933Z] + [ -e buildout/stress-tests.output.ipynb ] -[2024-05-09T02:18:33.933Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb -[2024-05-09T02:18:34.864Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook -[2024-05-09T02:18:35.794Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may -[2024-05-09T02:18:35.794Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off -[2024-05-09T02:18:35.794Z] 0.00s - to python to disable frozen modules. -[2024-05-09T02:18:35.794Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. -[2024-05-09T02:20:42.209Z] [NbConvertApp] Writing 428127 bytes to buildout/stress-tests.output.ipynb -[2024-05-09T02:20:42.209Z] + exit 1 -[2024-05-09T02:20:42.209Z] + EXIT_CODE=1 -[2024-05-09T02:20:42.209Z] + ENV_DUMP_DIR=buildout/env-dump -[2024-05-09T02:20:42.209Z] + mkdir -p buildout/env-dump -[2024-05-09T02:20:42.209Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml -[2024-05-09T02:20:42.209Z] + rm -fv buildout/env-dump/environment-export-birdy.yml -[2024-05-09T02:20:42.209Z] + conda env export -n birdy -[2024-05-09T02:20:50.319Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt -[2024-05-09T02:20:50.319Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt -[2024-05-09T02:20:50.319Z] + conda list -n birdy --explicit -[2024-05-09T02:21:00.283Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-05-09T02:21:00.283Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt -[2024-05-09T02:21:00.283Z] + pip freeze -[2024-05-09T02:21:00.903Z] + exit 1 +[2024-05-09T16:12:46.010Z] + VERIFY_SSL=true SAVE_RESULTING_NOTEBOOK=true ./testall +[2024-05-09T16:12:46.010Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-09T16:12:46.010Z] PAVICS_SDI_BRANCH has been set to 'master' +[2024-05-09T16:12:46.010Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T16:12:46.010Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-09T16:12:46.010Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T16:12:46.010Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T16:12:46.010Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-09T16:12:46.010Z] PAVICS_LANDING_BRANCH has been set to 'master' +[2024-05-09T16:12:46.010Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T16:12:46.010Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-09T16:12:46.010Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T16:12:46.010Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T16:12:46.010Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-09T16:12:46.010Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-09T16:12:46.010Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T16:12:46.010Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T16:12:46.010Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T16:12:46.010Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T16:12:46.010Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-09T16:12:46.010Z] + [ -n https://gist.githubusercontent.com/tlvu/89115c6586e9d7b91262a68e9c4bc00b/raw/89707c3cbc983dac79e673943bb87e3de1579f22/jenkins-params-custom-branch.include.sh ] +[2024-05-09T16:12:46.010Z] + TMP_CONF_OVERRIDE=/tmp/jenkins_conf_override +[2024-05-09T16:12:46.010Z] + rm -vf /tmp/jenkins_conf_override +[2024-05-09T16:12:46.010Z] removed '/tmp/jenkins_conf_override' +[2024-05-09T16:12:46.010Z] + curl --silent https://gist.githubusercontent.com/tlvu/89115c6586e9d7b91262a68e9c4bc00b/raw/89707c3cbc983dac79e673943bb87e3de1579f22/jenkins-params-custom-branch.include.sh +[2024-05-09T16:12:46.010Z] + tee /tmp/jenkins_conf_override +[2024-05-09T16:12:46.271Z] #!/bin/sh +[2024-05-09T16:12:46.271Z] # Jenkins params override script to test custom branch, +[2024-05-09T16:12:46.271Z] # good for testing notebook fixes for new Jupyter env build. +[2024-05-09T16:12:46.271Z] +[2024-05-09T16:12:46.271Z] PAVICS_SDI_BRANCH="fix_nbs_jupyter_alpha" +[2024-05-09T16:12:46.271Z] #FINCH_BRANCH="" +[2024-05-09T16:12:46.271Z] PAVICS_LANDING_BRANCH="fix_nbs_jupyter_alpha" +[2024-05-09T16:12:46.271Z] +[2024-05-09T16:12:46.271Z] # Good for refreshing notebook output. +[2024-05-09T16:12:46.271Z] SAVE_RESULTING_NOTEBOOK_TIMEOUT="600"+ . /tmp/jenkins_conf_override +[2024-05-09T16:12:46.271Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T16:12:46.271Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T16:12:46.271Z] + SAVE_RESULTING_NOTEBOOK_TIMEOUT=600 +[2024-05-09T16:12:46.271Z] + git clean -fdx +[2024-05-09T16:12:46.271Z] Removing .pytest_cache/ +[2024-05-09T16:12:46.271Z] Removing PAVICS-landing-fix_nbs_jupyter_alpha/ +[2024-05-09T16:12:46.271Z] Removing RavenPy-master/ +[2024-05-09T16:12:46.271Z] Removing __pycache__/ +[2024-05-09T16:12:46.271Z] Removing buildout/ +[2024-05-09T16:12:46.271Z] Removing esgf-compute-api-devel/ +[2024-05-09T16:12:46.271Z] Removing finch-master/ +[2024-05-09T16:12:46.271Z] Removing pavics-sdi-fix_nbs_jupyter_alpha/ +[2024-05-09T16:12:46.271Z] Removing raven-main/ +[2024-05-09T16:12:46.271Z] + ./downloadrepos +[2024-05-09T16:12:46.271Z] TEST_PAVICS_SDI_REPO has been set to 'true' +[2024-05-09T16:12:46.271Z] PAVICS_SDI_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-05-09T16:12:46.271Z] PAVICS_SDI_REPO has been set to 'Ouranosinc/pavics-sdi' +[2024-05-09T16:12:46.271Z] TEST_FINCH_REPO has been set to 'true' +[2024-05-09T16:12:46.271Z] FINCH_BRANCH has been set to 'master' +[2024-05-09T16:12:46.271Z] FINCH_REPO has been set to 'bird-house/finch' +[2024-05-09T16:12:46.271Z] TEST_PAVICS_LANDING_REPO has been set to 'true' +[2024-05-09T16:12:46.271Z] PAVICS_LANDING_BRANCH has been set to 'fix_nbs_jupyter_alpha' +[2024-05-09T16:12:46.271Z] PAVICS_LANDING_REPO has been set to 'Ouranosinc/PAVICS-landing' +[2024-05-09T16:12:46.271Z] TEST_RAVEN_REPO has been set to 'false' +[2024-05-09T16:12:46.271Z] RAVEN_BRANCH has been set to 'main' +[2024-05-09T16:12:46.271Z] RAVEN_REPO has been set to 'Ouranosinc/raven' +[2024-05-09T16:12:46.271Z] TEST_RAVENPY_REPO has been set to 'false' +[2024-05-09T16:12:46.271Z] RAVENPY_BRANCH has been set to 'master' +[2024-05-09T16:12:46.271Z] RAVENPY_REPO has been set to 'CSHS-CWRA/RavenPy' +[2024-05-09T16:12:46.272Z] TEST_ESGF_COMPUTE_API_REPO has been set to 'false' +[2024-05-09T16:12:46.272Z] ESGF_COMPUTE_API_BRANCH has been set to 'devel' +[2024-05-09T16:12:46.272Z] ESGF_COMPUTE_API_REPO has been set to 'ESGF/esgf-compute-api' +[2024-05-09T16:12:46.272Z] TEST_LOCAL_NOTEBOOKS has been set to 'true' +[2024-05-09T16:12:46.272Z] + rm -rf pavics-sdi-* +[2024-05-09T16:12:46.272Z] + ls +[2024-05-09T16:12:46.272Z] + grep pavics-sdi +[2024-05-09T16:12:46.272Z] + downloadrepos https://github.com/Ouranosinc/pavics-sdi fix_nbs_jupyter_alpha +[2024-05-09T16:12:46.272Z] + github_repo=https://github.com/Ouranosinc/pavics-sdi +[2024-05-09T16:12:46.272Z] + shift +[2024-05-09T16:12:46.272Z] + branch=fix_nbs_jupyter_alpha +[2024-05-09T16:12:46.272Z] + shift +[2024-05-09T16:12:46.272Z] + wget --quiet --output-document - https://github.com/Ouranosinc/pavics-sdi/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-05-09T16:12:46.272Z] + tar xz +[2024-05-09T16:12:49.540Z] + ls +[2024-05-09T16:12:49.540Z] + grep pavics-sdi +[2024-05-09T16:12:49.540Z] pavics-sdi-fix_nbs_jupyter_alpha +[2024-05-09T16:12:49.540Z] + set +x +[2024-05-09T16:12:49.540Z] + rm -rf finch-* +[2024-05-09T16:12:49.540Z] + ls +[2024-05-09T16:12:49.540Z] + grep finch +[2024-05-09T16:12:49.540Z] + downloadrepos https://github.com/bird-house/finch master +[2024-05-09T16:12:49.540Z] + github_repo=https://github.com/bird-house/finch +[2024-05-09T16:12:49.540Z] + shift +[2024-05-09T16:12:49.540Z] + branch=master +[2024-05-09T16:12:49.540Z] + shift +[2024-05-09T16:12:49.540Z] + wget --quiet --output-document - https://github.com/bird-house/finch/archive/master.tar.gz +[2024-05-09T16:12:49.540Z] + tar xz +[2024-05-09T16:12:50.471Z] + ls +[2024-05-09T16:12:50.471Z] + grep finch +[2024-05-09T16:12:50.471Z] finch-master +[2024-05-09T16:12:50.471Z] + set +x +[2024-05-09T16:12:50.471Z] + rm -rf PAVICS-landing-* +[2024-05-09T16:12:50.471Z] + ls +[2024-05-09T16:12:50.471Z] + grep PAVICS-landing +[2024-05-09T16:12:50.471Z] + downloadrepos https://github.com/Ouranosinc/PAVICS-landing fix_nbs_jupyter_alpha +[2024-05-09T16:12:50.471Z] + github_repo=https://github.com/Ouranosinc/PAVICS-landing +[2024-05-09T16:12:50.471Z] + shift +[2024-05-09T16:12:50.472Z] + branch=fix_nbs_jupyter_alpha +[2024-05-09T16:12:50.472Z] + shift +[2024-05-09T16:12:50.472Z] + wget --quiet --output-document - https://github.com/Ouranosinc/PAVICS-landing/archive/fix_nbs_jupyter_alpha.tar.gz +[2024-05-09T16:12:50.472Z] + tar xz +[2024-05-09T16:13:00.411Z] + ls +[2024-05-09T16:13:00.411Z] + grep PAVICS-landing +[2024-05-09T16:13:00.411Z] PAVICS-landing-fix_nbs_jupyter_alpha +[2024-05-09T16:13:00.411Z] + set +x +[2024-05-09T16:13:00.411Z] + rm -rf raven-* +[2024-05-09T16:13:00.411Z] + ls +[2024-05-09T16:13:00.411Z] + grep raven +[2024-05-09T16:13:00.411Z] + downloadrepos https://github.com/Ouranosinc/raven main +[2024-05-09T16:13:00.411Z] + github_repo=https://github.com/Ouranosinc/raven +[2024-05-09T16:13:00.411Z] + shift +[2024-05-09T16:13:00.411Z] + branch=main +[2024-05-09T16:13:00.411Z] + shift +[2024-05-09T16:13:00.411Z] + wget --quiet --output-document - https://github.com/Ouranosinc/raven/archive/main.tar.gz +[2024-05-09T16:13:00.411Z] + tar xz +[2024-05-09T16:13:01.340Z] + ls +[2024-05-09T16:13:01.340Z] + grep raven +[2024-05-09T16:13:01.340Z] raven-main +[2024-05-09T16:13:01.340Z] + set +x +[2024-05-09T16:13:01.340Z] + rm -rf RavenPy-* +[2024-05-09T16:13:01.340Z] + ls +[2024-05-09T16:13:01.340Z] + grep RavenPy +[2024-05-09T16:13:01.340Z] + downloadrepos https://github.com/CSHS-CWRA/RavenPy master +[2024-05-09T16:13:01.340Z] + github_repo=https://github.com/CSHS-CWRA/RavenPy +[2024-05-09T16:13:01.340Z] + shift +[2024-05-09T16:13:01.340Z] + branch=master +[2024-05-09T16:13:01.340Z] + shift +[2024-05-09T16:13:01.340Z] + wget --quiet --output-document - https://github.com/CSHS-CWRA/RavenPy/archive/master.tar.gz +[2024-05-09T16:13:01.340Z] + tar xz +[2024-05-09T16:13:03.229Z] + ls +[2024-05-09T16:13:03.229Z] + grep RavenPy +[2024-05-09T16:13:03.229Z] RavenPy-master +[2024-05-09T16:13:03.229Z] + set +x +[2024-05-09T16:13:03.229Z] + rm -rf esgf-compute-api-* +[2024-05-09T16:13:03.229Z] + ls +[2024-05-09T16:13:03.229Z] + grep esgf-compute-api +[2024-05-09T16:13:03.229Z] + downloadrepos https://github.com/ESGF/esgf-compute-api devel +[2024-05-09T16:13:03.229Z] + github_repo=https://github.com/ESGF/esgf-compute-api +[2024-05-09T16:13:03.229Z] + shift +[2024-05-09T16:13:03.229Z] + branch=devel +[2024-05-09T16:13:03.229Z] + shift +[2024-05-09T16:13:03.229Z] + wget --quiet --output-document - https://github.com/ESGF/esgf-compute-api/archive/devel.tar.gz +[2024-05-09T16:13:03.229Z] + tar xz +[2024-05-09T16:13:04.163Z] + ls +[2024-05-09T16:13:04.163Z] + grep esgf-compute-api +[2024-05-09T16:13:04.163Z] esgf-compute-api-devel +[2024-05-09T16:13:04.163Z] + set +x +[2024-05-09T16:13:04.163Z] + echo fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + PAVICS_SDI_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.163Z] + echo Ouranosinc/pavics-sdi +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + PAVICS_SDI_REPO_NAME=pavics-sdi +[2024-05-09T16:13:04.163Z] + echo master +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + FINCH_BRANCH=master +[2024-05-09T16:13:04.163Z] + echo bird-house/finch +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + FINCH_REPO_NAME=finch +[2024-05-09T16:13:04.163Z] + echo fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + PAVICS_LANDING_BRANCH=fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.163Z] + echo Ouranosinc/PAVICS-landing +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + PAVICS_LANDING_REPO_NAME=PAVICS-landing +[2024-05-09T16:13:04.163Z] + echo main +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + RAVEN_BRANCH=main +[2024-05-09T16:13:04.163Z] + echo Ouranosinc/raven +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + RAVEN_REPO_NAME=raven +[2024-05-09T16:13:04.163Z] + echo master +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + RAVENPY_BRANCH=master +[2024-05-09T16:13:04.163Z] + echo CSHS-CWRA/RavenPy +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + RAVENPY_REPO_NAME=RavenPy +[2024-05-09T16:13:04.163Z] + echo devel +[2024-05-09T16:13:04.163Z] + sed s@/@-@g +[2024-05-09T16:13:04.163Z] + ESGF_COMPUTE_API_BRANCH=devel +[2024-05-09T16:13:04.163Z] + echo ESGF/esgf-compute-api +[2024-05-09T16:13:04.163Z] + sed s@^.*/@@g +[2024-05-09T16:13:04.163Z] + ESGF_COMPUTE_API_REPO_NAME=esgf-compute-api +[2024-05-09T16:13:04.163Z] + echo pavics-sdi-fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + PAVICS_SDI_DIR=pavics-sdi-fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.164Z] + echo finch-master +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + FINCH_DIR=finch-master +[2024-05-09T16:13:04.164Z] + echo PAVICS-landing-fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + PAVICS_LANDING_DIR=PAVICS-landing-fix_nbs_jupyter_alpha +[2024-05-09T16:13:04.164Z] + echo raven-main +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + RAVEN_DIR=raven-main +[2024-05-09T16:13:04.164Z] + echo RavenPy-master +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + RAVENPY_DIR=RavenPy-master +[2024-05-09T16:13:04.164Z] + echo esgf-compute-api-devel +[2024-05-09T16:13:04.164Z] + sed s@[^a-zA-Z0-9_\-\.]@-@g +[2024-05-09T16:13:04.164Z] + ESGF_COMPUTE_API_DIR=esgf-compute-api-devel +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + VERIFY_SSL=true +[2024-05-09T16:13:04.164Z] + [ xtrue = xfalse ] +[2024-05-09T16:13:04.164Z] + rm -v finch-master/setup.cfg +[2024-05-09T16:13:04.164Z] removed 'finch-master/setup.cfg' +[2024-05-09T16:13:04.164Z] + rm -v raven-main/setup.cfg +[2024-05-09T16:13:04.164Z] removed 'raven-main/setup.cfg' +[2024-05-09T16:13:04.164Z] + rm -v raven-main/pyproject.toml +[2024-05-09T16:13:04.164Z] removed 'raven-main/pyproject.toml' +[2024-05-09T16:13:04.164Z] + rm -v RavenPy-master/setup.cfg +[2024-05-09T16:13:04.164Z] removed 'RavenPy-master/setup.cfg' +[2024-05-09T16:13:04.164Z] + rm -v RavenPy-master/tox.ini +[2024-05-09T16:13:04.164Z] removed 'RavenPy-master/tox.ini' +[2024-05-09T16:13:04.164Z] + rm -v RavenPy-master/pyproject.toml +[2024-05-09T16:13:04.164Z] removed 'RavenPy-master/pyproject.toml' +[2024-05-09T16:13:04.164Z] + rm -v esgf-compute-api-devel/setup.cfg +[2024-05-09T16:13:04.164Z] rm: cannot remove 'esgf-compute-api-devel/setup.cfg': No such file or directory +[2024-05-09T16:13:04.164Z] + rm -v esgf-compute-api-devel/tox.ini +[2024-05-09T16:13:04.164Z] rm: cannot remove 'esgf-compute-api-devel/tox.ini': No such file or directory +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_MAGPIE_AUTH=false +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_PAVICS_SDI_REPO=true +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_PAVICS_SDI_WEAVER=false +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_FINCH_REPO=true +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_PAVICS_LANDING_REPO=true +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_RAVEN_REPO=false +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_RAVENPY_REPO=false +[2024-05-09T16:13:04.164Z] + echo false +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_ESGF_COMPUTE_API_REPO=false +[2024-05-09T16:13:04.164Z] + echo true +[2024-05-09T16:13:04.164Z] + tr [:upper:] [:lower:] +[2024-05-09T16:13:04.164Z] + TEST_LOCAL_NOTEBOOKS=true +[2024-05-09T16:13:04.164Z] + NOTEBOOKS_TO_TEST= +[2024-05-09T16:13:04.164Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.164Z] + [ xtrue = xtrue ] +[2024-05-09T16:13:04.164Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb +[2024-05-09T16:13:04.164Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.164Z] + [ xtrue = xtrue ] +[2024-05-09T16:13:04.164Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb +[2024-05-09T16:13:04.164Z] + [ xtrue = xtrue ] +[2024-05-09T16:13:04.164Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb +[2024-05-09T16:13:04.164Z] + SETUP_SCRIPT=PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + [ -x PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh ] +[2024-05-09T16:13:04.164Z] + PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + realpath PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + THIS_FILE=/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + dirname /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/setup_dirlayout.sh +[2024-05-09T16:13:04.164Z] + THIS_DIR=/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators +[2024-05-09T16:13:04.164Z] + NOTEBOOK_3_OUTDIR_BASE=/notebook_dir/writable-workspace/tmp/tutorial3 +[2024-05-09T16:13:04.164Z] + mkdir -p /notebook_dir/writable-workspace/tmp/tutorial3 +[2024-05-09T16:13:04.164Z] + unzip /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip -d /notebook_dir/writable-workspace/tmp/tutorial3/ +[2024-05-09T16:13:04.164Z] Archive: /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/output.zip +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.164Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.165Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.423Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.423Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.423Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.423Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.424Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_days_above_27_degC-YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.680Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.681Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_QS-DEC_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_NorESM1-M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_MPI-ESM-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5B-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_IPSL-CM5A-LR_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_INM-CM4_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_HadGEM2-CC_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_GFDL-ESM2M_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CanESM2_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_CMCC-CMS_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_BNU-ESM_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp85_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] inflating: /notebook_dir/writable-workspace/tmp/tutorial3/output/tx_mean_YS_ACCESS1-3_historical+rcp45_r1i1p1_na10kgrid_qm-moving-50bins-detrend_1970-2100.nc +[2024-05-09T16:13:04.937Z] + HOMEPAGE_ROOT_DIR=/notebook_dir/pavics-homepage +[2024-05-09T16:13:04.937Z] + mkdir -p /notebook_dir/pavics-homepage +[2024-05-09T16:13:04.937Z] + ln -sv /home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data /notebook_dir/pavics-homepage/tutorial_data +[2024-05-09T16:13:04.937Z] '/notebook_dir/pavics-homepage/tutorial_data' -> '/home/jenkins/agent/workspace/cker-build-with-jenkins-override/PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/tutorial_data' +[2024-05-09T16:13:04.937Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.937Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.937Z] + [ xfalse = xtrue ] +[2024-05-09T16:13:04.937Z] + [ xtrue = xtrue ] +[2024-05-09T16:13:04.937Z] + NOTEBOOKS_TO_TEST= pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-05-09T16:13:04.937Z] + ./runtest pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/*.ipynb finch-master/docs/source/notebooks/*.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/*.ipynb notebooks/*.ipynb +[2024-05-09T16:13:04.937Z] + [ -n ] +[2024-05-09T16:13:04.937Z] + [ ! -z pavics.ouranos.ca ] +[2024-05-09T16:13:04.937Z] + echo Will run notebooks against pavics.ouranos.ca +[2024-05-09T16:13:04.937Z] Will run notebooks against pavics.ouranos.ca +[2024-05-09T16:13:04.937Z] + [ -z ] +[2024-05-09T16:13:04.938Z] + sed -i /\(\.ncml\|TEST_USE_PROD_DATA\)/!s/pavics.ouranos.ca/pavics.ouranos.ca/g pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb +[2024-05-09T16:13:06.302Z] + git diff +[2024-05-09T16:13:06.302Z] + export PYTHONWARNINGS=ignore:Unverified HTTPS request +[2024-05-09T16:13:06.302Z] + [ -n ] +[2024-05-09T16:13:06.302Z] + py.test --nbval pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb notebooks/hummingbird.ipynb notebooks/stress-tests.ipynb --nbval-sanitize-with notebooks/output-sanitize.cfg --dist=loadscope --numprocesses=0 +[2024-05-09T16:13:08.820Z] ============================= test session starts ============================== +[2024-05-09T16:13:08.820Z] platform linux -- Python 3.11.6, pytest-8.2.0, pluggy-1.5.0 +[2024-05-09T16:13:08.820Z] rootdir: /home/jenkins/agent/workspace/cker-build-with-jenkins-override +[2024-05-09T16:13:08.820Z] plugins: anyio-4.3.0, dash-2.17.0, nbval-0.11.0, tornasync-0.6.0.post2, xdist-3.5.0 +[2024-05-09T16:13:08.820Z] collected 219 items +[2024-05-09T16:13:08.820Z] +[2024-05-09T16:13:12.102Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb . [ 0%] +[2024-05-09T16:13:36.123Z] ..... [ 2%] +[2024-05-09T16:13:39.393Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb . [ 3%] +[2024-05-09T16:13:45.696Z] ...... [ 5%] +[2024-05-09T16:13:47.585Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb . [ 6%] +[2024-05-09T16:13:54.064Z] ..... [ 8%] +[2024-05-09T16:13:54.625Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb . [ 9%] +[2024-05-09T16:14:13.605Z] ....... [ 12%] +[2024-05-09T16:14:25.472Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb .... [ 14%] +[2024-05-09T16:16:38.024Z] ........ [ 17%] +[2024-05-09T16:16:39.952Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb . [ 18%] +[2024-05-09T16:16:47.043Z] ............... [ 25%] +[2024-05-09T16:16:49.608Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb . [ 25%] +[2024-05-09T16:16:55.169Z] .... [ 27%] +[2024-05-09T16:16:57.064Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb .. [ 28%] +[2024-05-09T16:17:02.005Z] .... [ 30%] +[2024-05-09T16:17:10.120Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb . [ 30%] +[2024-05-09T16:17:17.046Z] ..... [ 32%] +[2024-05-09T16:17:23.564Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb ... [ 34%] +[2024-05-09T16:17:25.448Z] .... [ 36%] +[2024-05-09T16:17:26.380Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb . [ 36%] +[2024-05-09T16:17:29.199Z] .... [ 38%] +[2024-05-09T16:17:47.257Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb . [ 38%] +[2024-05-09T16:19:24.289Z] ........................... [ 51%] +[2024-05-09T16:19:24.289Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb . [ 51%] +[2024-05-09T16:19:25.109Z] ... [ 52%] +[2024-05-09T16:19:26.035Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb . [ 53%] +[2024-05-09T16:19:43.609Z] ........................ [ 64%] +[2024-05-09T16:19:46.903Z] pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb . [ 64%] +[2024-05-09T16:19:51.369Z] ..... [ 67%] +[2024-05-09T16:20:00.407Z] finch-master/docs/source/notebooks/dap_subset.ipynb ........... [ 72%] +[2024-05-09T16:20:08.713Z] finch-master/docs/source/notebooks/finch-usage.ipynb ...... [ 74%] +[2024-05-09T16:20:09.670Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb . [ 75%] +[2024-05-09T16:20:12.773Z] ...... [ 78%] +[2024-05-09T16:20:19.314Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb . [ 78%] +[2024-05-09T16:20:29.243Z] ............. [ 84%] +[2024-05-09T16:20:37.368Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb . [ 84%] +[2024-05-09T16:20:54.177Z] ....s [ 87%] +[2024-05-09T16:21:02.263Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb . [ 87%] +[2024-05-09T16:21:14.111Z] .. [ 88%] +[2024-05-09T16:21:26.340Z] PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb . [ 89%] +[2024-05-09T16:22:13.895Z] ...... [ 91%] +[2024-05-09T16:22:13.895Z] notebooks/hummingbird.ipynb ............ [ 97%] +[2024-05-09T16:24:09.617Z] notebooks/stress-tests.ipynb ...... [100%] +[2024-05-09T16:24:09.617Z] +[2024-05-09T16:24:09.617Z] ================== 218 passed, 1 skipped in 653.96s (0:10:53) ================== +[2024-05-09T16:24:09.617Z] + EXIT_CODE=0 +[2024-05-09T16:24:09.617Z] + echo true +[2024-05-09T16:24:09.617Z] + tr [:upper:] [:lower:] +[2024-05-09T16:24:09.617Z] + SAVE_RESULTING_NOTEBOOK=true +[2024-05-09T16:24:09.617Z] + [ xtrue = xtrue ] +[2024-05-09T16:24:09.617Z] + mkdir -p buildout +[2024-05-09T16:24:09.617Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb +[2024-05-09T16:24:09.617Z] + filename=CaSR_basic.ipynb +[2024-05-09T16:24:09.617Z] + echo CaSR_basic.ipynb +[2024-05-09T16:24:09.617Z] + sed s/.ipynb$// +[2024-05-09T16:24:09.617Z] + filename=CaSR_basic +[2024-05-09T16:24:09.617Z] + [ -e buildout/CaSR_basic.output.ipynb ] +[2024-05-09T16:24:09.617Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output CaSR_basic.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb +[2024-05-09T16:24:09.617Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/CaSR_basic.ipynb to notebook +[2024-05-09T16:24:36.175Z] [NbConvertApp] Writing 732952 bytes to buildout/CaSR_basic.output.ipynb +[2024-05-09T16:24:36.175Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-05-09T16:24:36.175Z] + filename=WCS_example.ipynb +[2024-05-09T16:24:36.175Z] + echo WCS_example.ipynb +[2024-05-09T16:24:36.175Z] + sed s/.ipynb$// +[2024-05-09T16:24:36.175Z] + filename=WCS_example +[2024-05-09T16:24:36.175Z] + [ -e buildout/WCS_example.output.ipynb ] +[2024-05-09T16:24:36.176Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WCS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb +[2024-05-09T16:24:36.176Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WCS_example.ipynb to notebook +[2024-05-09T16:24:36.431Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:24:36.431Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:24:36.431Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:24:36.431Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:24:46.379Z] [NbConvertApp] Writing 144381 bytes to buildout/WCS_example.output.ipynb +[2024-05-09T16:24:46.379Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-05-09T16:24:46.379Z] + filename=WFS_example.ipynb +[2024-05-09T16:24:46.379Z] + echo+ WFS_example.ipynb +[2024-05-09T16:24:46.379Z] sed s/.ipynb$// +[2024-05-09T16:24:46.379Z] + filename=WFS_example +[2024-05-09T16:24:46.379Z] + [ -e buildout/WFS_example.output.ipynb ] +[2024-05-09T16:24:46.379Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WFS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb +[2024-05-09T16:24:48.279Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WFS_example.ipynb to notebook +[2024-05-09T16:24:49.207Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:24:49.207Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:24:49.207Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:24:49.207Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:24:57.327Z] [NbConvertApp] Writing 44572 bytes to buildout/WFS_example.output.ipynb +[2024-05-09T16:24:57.327Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-05-09T16:24:57.327Z] + filename=WMS_example.ipynb +[2024-05-09T16:24:57.327Z] + echo WMS_example.ipynb +[2024-05-09T16:24:57.327Z] + sed s/.ipynb$// +[2024-05-09T16:24:57.327Z] + filename=WMS_example +[2024-05-09T16:24:57.327Z] + [ -e buildout/WMS_example.output.ipynb ] +[2024-05-09T16:24:57.327Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output WMS_example.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb +[2024-05-09T16:24:59.296Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/WMS_example.ipynb to notebook +[2024-05-09T16:24:59.865Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:24:59.865Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:24:59.865Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:24:59.865Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:25:06.425Z] [NbConvertApp] Writing 2048326 bytes to buildout/WMS_example.output.ipynb +[2024-05-09T16:25:06.425Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-05-09T16:25:06.425Z] + filename=climex.ipynb +[2024-05-09T16:25:06.425Z] + echo climex.ipynb +[2024-05-09T16:25:06.425Z] + sed s/.ipynb$// +[2024-05-09T16:25:06.425Z] + filename=climex +[2024-05-09T16:25:06.425Z] + [ -e buildout/climex.output.ipynb ] +[2024-05-09T16:25:06.425Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output climex.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb +[2024-05-09T16:25:07.365Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/climex.ipynb to notebook +[2024-05-09T16:25:08.298Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:25:08.298Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:25:08.298Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:25:08.298Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:27:44.790Z] [NbConvertApp] Writing 1781288 bytes to buildout/climex.output.ipynb +[2024-05-09T16:27:44.790Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-05-09T16:27:44.790Z] + filename=eccc-geoapi-climate-stations.ipynb +[2024-05-09T16:27:44.790Z] + + sed s/.ipynb$// +[2024-05-09T16:27:44.790Z] echo eccc-geoapi-climate-stations.ipynb +[2024-05-09T16:27:44.790Z] + filename=eccc-geoapi-climate-stations +[2024-05-09T16:27:44.790Z] + [ -e buildout/eccc-geoapi-climate-stations.output.ipynb ] +[2024-05-09T16:27:44.790Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-climate-stations.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb +[2024-05-09T16:27:44.790Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-climate-stations.ipynb to notebook +[2024-05-09T16:27:44.790Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:27:44.790Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:27:44.790Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:27:44.790Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:27:45.357Z] [NbConvertApp] Writing 279392 bytes to buildout/eccc-geoapi-climate-stations.output.ipynb +[2024-05-09T16:27:45.617Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-05-09T16:27:45.617Z] + filename=eccc-geoapi-xclim.ipynb +[2024-05-09T16:27:45.617Z] + echo eccc-geoapi-xclim.ipynb +[2024-05-09T16:27:45.617Z] + sed s/.ipynb$// +[2024-05-09T16:27:45.617Z] + filename=eccc-geoapi-xclim +[2024-05-09T16:27:45.617Z] + [ -e buildout/eccc-geoapi-xclim.output.ipynb ] +[2024-05-09T16:27:45.617Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output eccc-geoapi-xclim.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb +[2024-05-09T16:27:47.519Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/eccc-geoapi-xclim.ipynb to notebook +[2024-05-09T16:27:48.543Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:27:48.543Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:27:48.543Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:27:48.543Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:27:56.665Z] [NbConvertApp] Writing 108114 bytes to buildout/eccc-geoapi-xclim.output.ipynb +[2024-05-09T16:27:56.665Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-05-09T16:27:56.665Z] + filename=esgf-dap.ipynb +[2024-05-09T16:27:56.665Z] + echo esgf-dap.ipynb +[2024-05-09T16:27:56.665Z] + sed s/.ipynb$// +[2024-05-09T16:27:56.665Z] + filename=esgf-dap +[2024-05-09T16:27:56.665Z] + [ -e buildout/esgf-dap.output.ipynb ] +[2024-05-09T16:27:56.665Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output esgf-dap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb +[2024-05-09T16:27:58.556Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/esgf-dap.ipynb to notebook +[2024-05-09T16:27:59.492Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:27:59.492Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:27:59.492Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:27:59.492Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:06.039Z] [NbConvertApp] Writing 63631 bytes to buildout/esgf-dap.output.ipynb +[2024-05-09T16:28:06.039Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-05-09T16:28:06.039Z] + filename=forecasts.ipynb +[2024-05-09T16:28:06.039Z] + echo forecasts.ipynb +[2024-05-09T16:28:06.039Z] + sed s/.ipynb$// +[2024-05-09T16:28:06.039Z] + filename=forecasts +[2024-05-09T16:28:06.039Z] + [ -e buildout/forecasts.output.ipynb ] +[2024-05-09T16:28:06.039Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output forecasts.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb +[2024-05-09T16:28:07.933Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/forecasts.ipynb to notebook +[2024-05-09T16:28:08.866Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:08.866Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:08.866Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:08.866Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:26.931Z] [NbConvertApp] Writing 164984 bytes to buildout/forecasts.output.ipynb +[2024-05-09T16:28:26.931Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-05-09T16:28:26.931Z] + filename=jupyter_extensions.ipynb +[2024-05-09T16:28:26.931Z] + echo jupyter_extensions.ipynb +[2024-05-09T16:28:26.931Z] + sed s/.ipynb$// +[2024-05-09T16:28:26.931Z] + filename=jupyter_extensions +[2024-05-09T16:28:26.931Z] + [ -e buildout/jupyter_extensions.output.ipynb ] +[2024-05-09T16:28:26.931Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output jupyter_extensions.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb +[2024-05-09T16:28:26.931Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/jupyter_extensions.ipynb to notebook +[2024-05-09T16:28:26.931Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:26.931Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:26.931Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:26.931Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:31.100Z] [NbConvertApp] Writing 7996 bytes to buildout/jupyter_extensions.output.ipynb +[2024-05-09T16:28:31.100Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-05-09T16:28:31.100Z] + filename=opendap.ipynb +[2024-05-09T16:28:31.100Z] + echo opendap.ipynb +[2024-05-09T16:28:31.100Z] + sed s/.ipynb$// +[2024-05-09T16:28:31.100Z] + filename=opendap +[2024-05-09T16:28:31.100Z] + [ -e buildout/opendap.output.ipynb ] +[2024-05-09T16:28:31.100Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output opendap.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb +[2024-05-09T16:28:32.520Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/opendap.ipynb to notebook +[2024-05-09T16:28:33.448Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:33.448Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:33.448Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:33.448Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:38.693Z] [NbConvertApp] Writing 95159 bytes to buildout/opendap.output.ipynb +[2024-05-09T16:28:38.693Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-05-09T16:28:38.693Z] + filename=pavics_thredds.ipynb +[2024-05-09T16:28:38.693Z] + echo pavics_thredds.ipynb +[2024-05-09T16:28:38.693Z] + sed s/.ipynb$// +[2024-05-09T16:28:38.693Z] + filename=pavics_thredds +[2024-05-09T16:28:38.693Z] + [ -e buildout/pavics_thredds.output.ipynb ] +[2024-05-09T16:28:38.693Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output pavics_thredds.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb +[2024-05-09T16:28:40.060Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/pavics_thredds.ipynb to notebook +[2024-05-09T16:28:40.995Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:40.995Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:40.995Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:40.995Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:28:43.510Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-05-09T16:28:43.510Z] context: Access to service is forbidden. +[2024-05-09T16:28:43.510Z] syntax error, unexpected WORD_WORD, expecting SCAN_ATTR or SCAN_DATASET or SCAN_ERROR +[2024-05-09T16:28:43.511Z] context: Access to service is forbidden. +[2024-05-09T16:28:45.399Z] [NbConvertApp] Writing 90749 bytes to buildout/pavics_thredds.output.ipynb +[2024-05-09T16:28:45.399Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-05-09T16:28:45.399Z] + filename=regridding.ipynb +[2024-05-09T16:28:45.399Z] + echo regridding.ipynb +[2024-05-09T16:28:45.399Z] + sed s/.ipynb$// +[2024-05-09T16:28:45.399Z] + filename=regridding +[2024-05-09T16:28:45.399Z] + [ -e buildout/regridding.output.ipynb ] +[2024-05-09T16:28:45.399Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output regridding.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb +[2024-05-09T16:28:46.765Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/regridding.ipynb to notebook +[2024-05-09T16:28:48.143Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:28:48.143Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:28:48.143Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:28:48.143Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:30:39.593Z] [NbConvertApp] Writing 1239616 bytes to buildout/regridding.output.ipynb +[2024-05-09T16:30:39.593Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-05-09T16:30:39.593Z] + filename=rendering.ipynb +[2024-05-09T16:30:39.593Z] + echo rendering.ipynb +[2024-05-09T16:30:39.593Z] + sed s/.ipynb$// +[2024-05-09T16:30:39.593Z] + filename=rendering +[2024-05-09T16:30:39.593Z] + [ -e buildout/rendering.output.ipynb ] +[2024-05-09T16:30:39.593Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output rendering.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb +[2024-05-09T16:30:39.593Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/rendering.ipynb to notebook +[2024-05-09T16:30:39.593Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:30:39.593Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:30:39.593Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:30:39.593Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:30:39.593Z] [NbConvertApp] Writing 11800 bytes to buildout/rendering.output.ipynb +[2024-05-09T16:30:39.593Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-05-09T16:30:39.593Z] + filename=subset-user-input.ipynb +[2024-05-09T16:30:39.593Z] + echo subset-user-input.ipynb +[2024-05-09T16:30:39.593Z] + sed s/.ipynb$// +[2024-05-09T16:30:39.593Z] + filename=subset-user-input +[2024-05-09T16:30:39.593Z] + [ -e buildout/subset-user-input.output.ipynb ] +[2024-05-09T16:30:39.593Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subset-user-input.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb +[2024-05-09T16:30:39.594Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subset-user-input.ipynb to notebook +[2024-05-09T16:30:39.594Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:30:39.594Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:30:39.594Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:30:39.594Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:30:57.648Z] [NbConvertApp] Writing 255278 bytes to buildout/subset-user-input.output.ipynb +[2024-05-09T16:30:57.649Z] + basename pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-05-09T16:30:57.649Z] + filename=subsetting.ipynb +[2024-05-09T16:30:57.649Z] + echo subsetting.ipynb +[2024-05-09T16:30:57.649Z] + sed s/.ipynb$// +[2024-05-09T16:30:57.649Z] + filename=subsetting +[2024-05-09T16:30:57.649Z] + [ -e buildout/subsetting.output.ipynb ] +[2024-05-09T16:30:57.649Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output subsetting.output.ipynb pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb +[2024-05-09T16:30:57.649Z] [NbConvertApp] Converting notebook pavics-sdi-fix_nbs_jupyter_alpha/docs/source/notebooks/subsetting.ipynb to notebook +[2024-05-09T16:30:57.906Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:30:57.906Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:30:57.906Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:30:57.906Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:06.018Z] [NbConvertApp] Writing 93311 bytes to buildout/subsetting.output.ipynb +[2024-05-09T16:31:06.018Z] + basename finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-05-09T16:31:06.018Z] + filename=dap_subset.ipynb +[2024-05-09T16:31:06.018Z] + echo dap_subset.ipynb +[2024-05-09T16:31:06.018Z] + sed s/.ipynb$// +[2024-05-09T16:31:06.018Z] + filename=dap_subset +[2024-05-09T16:31:06.018Z] + [ -e buildout/dap_subset.output.ipynb ] +[2024-05-09T16:31:06.018Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output dap_subset.output.ipynb finch-master/docs/source/notebooks/dap_subset.ipynb +[2024-05-09T16:31:07.907Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/dap_subset.ipynb to notebook +[2024-05-09T16:31:08.838Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:31:08.838Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:31:08.838Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:31:08.838Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:18.792Z] [NbConvertApp] Writing 162913 bytes to buildout/dap_subset.output.ipynb +[2024-05-09T16:31:18.792Z] + basename finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-05-09T16:31:18.792Z] + filename=finch-usage.ipynb +[2024-05-09T16:31:18.792Z] + sed s/.ipynb$// +[2024-05-09T16:31:18.792Z] + echo finch-usage.ipynb +[2024-05-09T16:31:18.792Z] + filename=finch-usage +[2024-05-09T16:31:18.792Z] + [ -e buildout/finch-usage.output.ipynb ] +[2024-05-09T16:31:18.792Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output finch-usage.output.ipynb finch-master/docs/source/notebooks/finch-usage.ipynb +[2024-05-09T16:31:19.362Z] [NbConvertApp] Converting notebook finch-master/docs/source/notebooks/finch-usage.ipynb to notebook +[2024-05-09T16:31:20.301Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:31:20.301Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:31:20.301Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:31:20.301Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:30.273Z] [NbConvertApp] Writing 65072 bytes to buildout/finch-usage.output.ipynb +[2024-05-09T16:31:30.273Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T16:31:30.273Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T16:31:30.273Z] + echo PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T16:31:30.273Z] + sed s/.ipynb$// +[2024-05-09T16:31:30.273Z] + filename=PAVICStutorial_ClimateDataAnalysis-1DataAccess +[2024-05-09T16:31:30.273Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb ] +[2024-05-09T16:31:30.273Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb +[2024-05-09T16:31:31.200Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-1DataAccess.ipynb to notebook +[2024-05-09T16:31:33.719Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:31:33.719Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:31:33.719Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:31:33.719Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:37.888Z] [NbConvertApp] Writing 173042 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-1DataAccess.output.ipynb +[2024-05-09T16:31:37.889Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T16:31:37.889Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T16:31:37.889Z] + echo PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T16:31:37.889Z] + sed s/.ipynb$// +[2024-05-09T16:31:37.889Z] + filename=PAVICStutorial_ClimateDataAnalysis-2Subsetting +[2024-05-09T16:31:37.889Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb ] +[2024-05-09T16:31:37.889Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb +[2024-05-09T16:31:39.782Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-2Subsetting.ipynb to notebook +[2024-05-09T16:31:40.709Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:31:40.709Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:31:40.709Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:31:40.709Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:31:58.769Z] [NbConvertApp] Writing 1481193 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-2Subsetting.output.ipynb +[2024-05-09T16:31:58.769Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T16:31:58.769Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T16:31:58.769Z] + echo PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T16:31:58.769Z] + sed s/.ipynb$// +[2024-05-09T16:31:58.769Z] + filename=PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators +[2024-05-09T16:31:58.769Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb ] +[2024-05-09T16:31:58.769Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb +[2024-05-09T16:31:59.331Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.ipynb to notebook +[2024-05-09T16:39:51.286Z] [NbConvertApp] Writing 556632 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-3Climate-Indicators.output.ipynb +[2024-05-09T16:39:51.286Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T16:39:51.286Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T16:39:51.286Z] + echo PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T16:39:51.286Z] + sed s/.ipynb$// +[2024-05-09T16:39:51.286Z] + filename=PAVICStutorial_ClimateDataAnalysis-4Ensembles +[2024-05-09T16:39:51.286Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb ] +[2024-05-09T16:39:51.286Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb +[2024-05-09T16:39:51.286Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-4Ensembles.ipynb to notebook +[2024-05-09T16:40:01.263Z] [NbConvertApp] Writing 785214 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-4Ensembles.output.ipynb +[2024-05-09T16:40:01.263Z] + basename PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T16:40:01.263Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T16:40:01.263Z] + sed s/.ipynb$// +[2024-05-09T16:40:01.263Z] + echo PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T16:40:01.263Z] + filename=PAVICStutorial_ClimateDataAnalysis-5Visualization +[2024-05-09T16:40:01.263Z] + [ -e buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb ] +[2024-05-09T16:40:01.263Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb +[2024-05-09T16:40:03.177Z] [NbConvertApp] Converting notebook PAVICS-landing-fix_nbs_jupyter_alpha/content/notebooks/climate_indicators/PAVICStutorial_ClimateDataAnalysis-5Visualization.ipynb to notebook +[2024-05-09T16:41:10.885Z] [NbConvertApp] Writing 1051936 bytes to buildout/PAVICStutorial_ClimateDataAnalysis-5Visualization.output.ipynb +[2024-05-09T16:41:10.885Z] + basename notebooks/hummingbird.ipynb +[2024-05-09T16:41:10.885Z] + filename=hummingbird.ipynb +[2024-05-09T16:41:10.885Z] + echo hummingbird.ipynb +[2024-05-09T16:41:10.885Z] + sed s/.ipynb$// +[2024-05-09T16:41:10.885Z] + filename=hummingbird +[2024-05-09T16:41:10.885Z] + [ -e buildout/hummingbird.output.ipynb ] +[2024-05-09T16:41:10.885Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output hummingbird.output.ipynb notebooks/hummingbird.ipynb +[2024-05-09T16:41:10.885Z] [NbConvertApp] Converting notebook notebooks/hummingbird.ipynb to notebook +[2024-05-09T16:41:10.885Z] [NbConvertApp] Writing 15863 bytes to buildout/hummingbird.output.ipynb +[2024-05-09T16:41:10.885Z] + basename notebooks/stress-tests.ipynb +[2024-05-09T16:41:10.885Z] + filename=stress-tests.ipynb +[2024-05-09T16:41:10.885Z] + echo stress-tests.ipynb +[2024-05-09T16:41:10.885Z] + sed s/.ipynb$// +[2024-05-09T16:41:10.885Z] + filename=stress-tests +[2024-05-09T16:41:10.885Z] + [ -e buildout/stress-tests.output.ipynb ] +[2024-05-09T16:41:10.885Z] + jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=600 --allow-errors --output-dir buildout --output stress-tests.output.ipynb notebooks/stress-tests.ipynb +[2024-05-09T16:41:10.885Z] [NbConvertApp] Converting notebook notebooks/stress-tests.ipynb to notebook +[2024-05-09T16:41:10.885Z] 0.00s - Debugger warning: It seems that frozen modules are being used, which may +[2024-05-09T16:41:10.885Z] 0.00s - make the debugger miss breakpoints. Please pass -Xfrozen_modules=off +[2024-05-09T16:41:10.885Z] 0.00s - to python to disable frozen modules. +[2024-05-09T16:41:10.885Z] 0.00s - Note: Debugging will proceed. Set PYDEVD_DISABLE_FILE_VALIDATION=1 to disable this validation. +[2024-05-09T16:43:02.304Z] [NbConvertApp] Writing 428997 bytes to buildout/stress-tests.output.ipynb +[2024-05-09T16:43:02.304Z] + exit 0 +[2024-05-09T16:43:02.304Z] + EXIT_CODE=0 +[2024-05-09T16:43:02.304Z] + ENV_DUMP_DIR=buildout/env-dump +[2024-05-09T16:43:02.304Z] + mkdir -p buildout/env-dump +[2024-05-09T16:43:02.304Z] + ENV_EXPORT_FILE=buildout/env-dump/environment-export-birdy.yml +[2024-05-09T16:43:02.304Z] + rm -fv buildout/env-dump/environment-export-birdy.yml +[2024-05-09T16:43:02.304Z] + conda env export -n birdy +[2024-05-09T16:43:20.353Z] + LIST_EXPLICIT_FILE=buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T16:43:20.353Z] + rm -fv buildout/env-dump/conda-list-explicit-birdy.txt +[2024-05-09T16:43:20.353Z] + conda list -n birdy --explicit +[2024-05-09T16:43:30.306Z] + PIP_FREEZE_FILE=buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T16:43:30.306Z] + rm -fv buildout/env-dump/pip-freeze-birdy-requirements.txt +[2024-05-09T16:43:30.306Z] + pip freeze +[2024-05-09T16:43:30.306Z] + exit 0 [Pipeline] } [Pipeline] // withCredentials [Pipeline] } @@ -975,41 +842,38 @@ $ docker top 4c7fe1c70b0ab1d443f74e257e09736c874f7f9c390f6f4b0bd645fe301d5c96 -e [Pipeline] stage [Pipeline] { (Declarative: Post Actions) [Pipeline] archiveArtifacts -[2024-05-09T02:21:03.086Z] Archiving artifacts -[2024-05-09T02:21:03.299Z] Recording fingerprints +[2024-05-09T16:43:31.494Z] Archiving artifacts +[2024-05-09T16:43:31.516Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:03.397Z] Archiving artifacts -[2024-05-09T02:21:04.069Z] Recording fingerprints +[2024-05-09T16:43:31.822Z] Archiving artifacts +[2024-05-09T16:43:32.707Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:05.703Z] Archiving artifacts -[2024-05-09T02:21:05.913Z] Recording fingerprints +[2024-05-09T16:43:33.431Z] Archiving artifacts +[2024-05-09T16:43:33.451Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:06.457Z] Archiving artifacts -[2024-05-09T02:21:06.473Z] Recording fingerprints +[2024-05-09T16:43:33.532Z] Archiving artifacts +[2024-05-09T16:43:33.760Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:06.709Z] Archiving artifacts -[2024-05-09T02:21:06.729Z] Recording fingerprints +[2024-05-09T16:43:34.034Z] Archiving artifacts +[2024-05-09T16:43:34.184Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:06.976Z] Archiving artifacts -[2024-05-09T02:21:07.006Z] Recording fingerprints +[2024-05-09T16:43:34.370Z] Archiving artifacts +[2024-05-09T16:43:34.620Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:08.560Z] Archiving artifacts -[2024-05-09T02:21:08.572Z] Recording fingerprints +[2024-05-09T16:43:36.142Z] Archiving artifacts +[2024-05-09T16:43:36.221Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:08.718Z] Archiving artifacts -[2024-05-09T02:21:09.040Z] Recording fingerprints +[2024-05-09T16:43:36.426Z] Archiving artifacts +[2024-05-09T16:43:36.537Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:09.445Z] Archiving artifacts -[2024-05-09T02:21:09.849Z] Recording fingerprints +[2024-05-09T16:43:36.811Z] Archiving artifacts +[2024-05-09T16:43:37.399Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:09.960Z] Archiving artifacts -[2024-05-09T02:21:11.076Z] Recording fingerprints +[2024-05-09T16:43:37.802Z] Archiving artifacts +[2024-05-09T16:43:38.908Z] Recording fingerprints [Pipeline] archiveArtifacts -[2024-05-09T02:21:13.476Z] Archiving artifacts -[2024-05-09T02:21:13.493Z] Recording fingerprints -[Pipeline] emailextrecipients -[Pipeline] step -[2024-05-09T02:21:13.801Z] Sending e-mails to: vu.long@ouranos.ca +[2024-05-09T16:43:40.966Z] Archiving artifacts +[2024-05-09T16:43:41.041Z] Recording fingerprints [Pipeline] } [Pipeline] // stage [Pipeline] } @@ -1019,13 +883,12 @@ $ docker top 4c7fe1c70b0ab1d443f74e257e09736c874f7f9c390f6f4b0bd645fe301d5c96 -e [Pipeline] } [Pipeline] // ansiColor [Pipeline] } -$ docker stop --time=1 4c7fe1c70b0ab1d443f74e257e09736c874f7f9c390f6f4b0bd645fe301d5c96 -$ docker rm -f 4c7fe1c70b0ab1d443f74e257e09736c874f7f9c390f6f4b0bd645fe301d5c96 +$ docker stop --time=1 e7df9406a5158c78f2d19b6e5ddb3af8f42f0a02b0d40ca6aa64da61603d97e6 +$ docker rm -f e7df9406a5158c78f2d19b6e5ddb3af8f42f0a02b0d40ca6aa64da61603d97e6 [Pipeline] // withDockerContainer [Pipeline] } [Pipeline] // withEnv [Pipeline] } [Pipeline] // node [Pipeline] End of Pipeline -ERROR: script returned exit code 1 -Finished: FAILURE +Finished: SUCCESS